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.
 
 
 

54998 lines
1.4 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity
  51. }
  52. }
  53. if (value.energyNeed) {
  54. views[key].attributes.capacity = {
  55. name: "Food Intake",
  56. power: 3 * 3 / 4,
  57. type: "energy",
  58. base: value.energyNeed
  59. }
  60. }
  61. if (value.extraAttributes) {
  62. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  63. views[key].attributes[attrKey] = attrValue
  64. })
  65. }
  66. });
  67. return createEntityMaker(info, views, defaultSizes, forms);
  68. }
  69. const speciesData = {
  70. animal: {
  71. name: "Animal"
  72. },
  73. dog: {
  74. name: "Dog",
  75. parents: [
  76. "canine"
  77. ]
  78. },
  79. canine: {
  80. name: "Canine",
  81. parents: [
  82. "mammal"
  83. ]
  84. },
  85. crux: {
  86. name: "Crux",
  87. parents: [
  88. "mammal"
  89. ]
  90. },
  91. mammal: {
  92. name: "Mammal",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. "rough-collie": {
  98. name: "Rough Collie",
  99. parents: [
  100. "dog"
  101. ]
  102. },
  103. dragon: {
  104. name: "Dragon",
  105. parents: [
  106. "reptile"
  107. ]
  108. },
  109. reptile: {
  110. name: "Reptile",
  111. parents: [
  112. "animal"
  113. ]
  114. },
  115. woodpecker: {
  116. name: "Woodpecker",
  117. parents: [
  118. "avian"
  119. ]
  120. },
  121. avian: {
  122. name: "Avian",
  123. parents: [
  124. "animal"
  125. ]
  126. },
  127. kitsune: {
  128. name: "Kitsune",
  129. parents: [
  130. "fox"
  131. ]
  132. },
  133. fox: {
  134. name: "Fox",
  135. parents: [
  136. "mammal"
  137. ]
  138. },
  139. pokemon: {
  140. name: "Pokemon",
  141. },
  142. tiger: {
  143. name: "Tiger",
  144. parents: [
  145. "cat"
  146. ]
  147. },
  148. cat: {
  149. name: "Cat",
  150. parents: [
  151. "feliform"
  152. ]
  153. },
  154. "blue-jay": {
  155. name: "Blue Jay",
  156. parents: [
  157. "corvid"
  158. ]
  159. },
  160. wolf: {
  161. name: "Wolf",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. coyote: {
  167. name: "Coyote",
  168. parents: [
  169. "mammal"
  170. ]
  171. },
  172. raccoon: {
  173. name: "Raccoon",
  174. parents: [
  175. "mammal"
  176. ]
  177. },
  178. weasel: {
  179. name: "Weasel",
  180. parents: [
  181. "mustelid"
  182. ]
  183. },
  184. "red-panda": {
  185. name: "Red Panda",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. dolphin: {
  191. name: "Dolphin",
  192. parents: [
  193. "mammal"
  194. ]
  195. },
  196. "african-wild-dog": {
  197. name: "African Wild Dog",
  198. parents: [
  199. "canine"
  200. ]
  201. },
  202. "hyena": {
  203. name: "Hyena",
  204. parents: [
  205. "feliform"
  206. ]
  207. },
  208. "carbuncle": {
  209. name: "Carbuncle",
  210. parents: [
  211. "animal"
  212. ]
  213. },
  214. bat: {
  215. name: "Bat",
  216. parents: [
  217. "mammal"
  218. ]
  219. },
  220. "leaf-nosed-bat": {
  221. name: "Leaf-Nosed Bat",
  222. parents: [
  223. "bat"
  224. ]
  225. },
  226. "fish": {
  227. name: "Fish",
  228. parents: [
  229. "animal"
  230. ]
  231. },
  232. "ram": {
  233. name: "Ram",
  234. parents: [
  235. "mammal"
  236. ]
  237. },
  238. "demon": {
  239. name: "Demon",
  240. parents: [
  241. "supernatural"
  242. ]
  243. },
  244. "cougar": {
  245. name: "Cougar",
  246. parents: [
  247. "cat"
  248. ]
  249. },
  250. "goat": {
  251. name: "Goat",
  252. parents: [
  253. "mammal"
  254. ]
  255. },
  256. "lion": {
  257. name: "Lion",
  258. parents: [
  259. "cat"
  260. ]
  261. },
  262. "harpy-eager": {
  263. name: "Harpy Eagle",
  264. parents: [
  265. "avian"
  266. ]
  267. },
  268. "deer": {
  269. name: "Deer",
  270. parents: [
  271. "mammal"
  272. ]
  273. },
  274. "phoenix": {
  275. name: "Phoenix",
  276. parents: [
  277. "avian"
  278. ]
  279. },
  280. "aeromorph": {
  281. name: "Aeromorph",
  282. parents: [
  283. "machine"
  284. ]
  285. },
  286. "machine": {
  287. name: "Machine",
  288. },
  289. "android": {
  290. name: "Android",
  291. parents: [
  292. "machine"
  293. ]
  294. },
  295. "jackal": {
  296. name: "Jackal",
  297. parents: [
  298. "canine"
  299. ]
  300. },
  301. "corvid": {
  302. name: "Corvid",
  303. parents: [
  304. "passerine"
  305. ]
  306. },
  307. "pharaoh-hound": {
  308. name: "Pharaoh Hound",
  309. parents: [
  310. "dog"
  311. ]
  312. },
  313. "skunk": {
  314. name: "Skunk",
  315. parents: [
  316. "mammal"
  317. ]
  318. },
  319. "shark": {
  320. name: "Shark",
  321. parents: [
  322. "fish"
  323. ]
  324. },
  325. "black-panther": {
  326. name: "Black Panther",
  327. parents: [
  328. "cat"
  329. ]
  330. },
  331. "umbra": {
  332. name: "Umbra",
  333. parents: [
  334. "animal"
  335. ]
  336. },
  337. "raven": {
  338. name: "Raven",
  339. parents: [
  340. "corvid"
  341. ]
  342. },
  343. "snow-leopard": {
  344. name: "Snow Leopard",
  345. parents: [
  346. "cat"
  347. ]
  348. },
  349. "barbary-lion": {
  350. name: "Barbary Lion",
  351. parents: [
  352. "lion"
  353. ]
  354. },
  355. "dra'gal": {
  356. name: "Dra'Gal",
  357. parents: [
  358. "mammal"
  359. ]
  360. },
  361. "german-shepherd": {
  362. name: "German Shepherd",
  363. parents: [
  364. "dog"
  365. ]
  366. },
  367. "bayleef": {
  368. name: "Bayleef",
  369. parents: [
  370. "pokemon",
  371. "plant",
  372. "animal"
  373. ]
  374. },
  375. "mouse": {
  376. name: "Mouse",
  377. parents: [
  378. "rodent"
  379. ]
  380. },
  381. "rat": {
  382. name: "Rat",
  383. parents: [
  384. "mammal"
  385. ]
  386. },
  387. "hoshiko-beast": {
  388. name: "Hoshiko Beast",
  389. parents: ["animal"]
  390. },
  391. "snow-jugani": {
  392. name: "Snow Jugani",
  393. parents: ["cat"]
  394. },
  395. "patamon": {
  396. name: "Patamon",
  397. parents: ["digimon", "guinea-pig"]
  398. },
  399. "digimon": {
  400. name: "Digimon",
  401. },
  402. "jugani": {
  403. name: "Jugani",
  404. parents: ["cat"]
  405. },
  406. "luxray": {
  407. name: "Luxray",
  408. parents: ["pokemon", "lion"]
  409. },
  410. "mech": {
  411. name: "Mech",
  412. parents: ["machine"]
  413. },
  414. "zoid": {
  415. name: "Zoid",
  416. parents: ["mech"]
  417. },
  418. "monster": {
  419. name: "Monster",
  420. parents: ["animal"]
  421. },
  422. "foo-dog": {
  423. name: "Foo Dog",
  424. parents: ["mammal"]
  425. },
  426. "elephant": {
  427. name: "Elephant",
  428. parents: ["mammal"]
  429. },
  430. "eagle": {
  431. name: "Eagle",
  432. parents: ["bird-of-prey"]
  433. },
  434. "cow": {
  435. name: "Cow",
  436. parents: ["mammal"]
  437. },
  438. "crocodile": {
  439. name: "Crocodile",
  440. parents: ["reptile"]
  441. },
  442. "borzoi": {
  443. name: "Borzoi",
  444. parents: ["dog"]
  445. },
  446. "snake": {
  447. name: "Snake",
  448. parents: ["reptile"]
  449. },
  450. "horned-bush-viper": {
  451. name: "Horned Bush Viper",
  452. parents: ["viper"]
  453. },
  454. "cobra": {
  455. name: "Cobra",
  456. parents: ["snake"]
  457. },
  458. "harpy-eagle": {
  459. name: "Harpy Eagle",
  460. parents: ["eagle"]
  461. },
  462. "raptor": {
  463. name: "Raptor",
  464. parents: ["dinosaur"]
  465. },
  466. "dinosaur": {
  467. name: "Dinosaur",
  468. parents: ["reptile"]
  469. },
  470. "veilhound": {
  471. name: "Veilhound",
  472. parents: ["hellhound"]
  473. },
  474. "hellhound": {
  475. name: "Hellhound",
  476. parents: ["canine", "demon"]
  477. },
  478. "insect": {
  479. name: "Insect",
  480. parents: ["animal"]
  481. },
  482. "beetle": {
  483. name: "Beetle",
  484. parents: ["insect"]
  485. },
  486. "moth": {
  487. name: "Moth",
  488. parents: ["insect"]
  489. },
  490. "eastern-dragon": {
  491. name: "Eastern Dragon",
  492. parents: ["dragon"]
  493. },
  494. "jaguar": {
  495. name: "Jaguar",
  496. parents: ["cat"]
  497. },
  498. "horse": {
  499. name: "Horse",
  500. parents: ["mammal"]
  501. },
  502. "sergal": {
  503. name: "Sergal",
  504. parents: ["mammal", "avian", "vilous"]
  505. },
  506. "gryphon": {
  507. name: "Gryphon",
  508. parents: ["lion", "eagle"]
  509. },
  510. "robot": {
  511. name: "Robot",
  512. parents: ["machine"]
  513. },
  514. "medihound": {
  515. name: "Medihound",
  516. parents: ["robot", "dog"]
  517. },
  518. "sylveon": {
  519. name: "Sylveon",
  520. parents: ["pokemon"]
  521. },
  522. "catgirl": {
  523. name: "Catgirl",
  524. parents: ["mammal"]
  525. },
  526. "cowgirl": {
  527. name: "Cowgirl",
  528. parents: ["mammal"]
  529. },
  530. "pony": {
  531. name: "Pony",
  532. parents: ["horse"]
  533. },
  534. "rabbit": {
  535. name: "Rabbit",
  536. parents: ["leporidae"]
  537. },
  538. "fennec-fox": {
  539. name: "Fennec Fox",
  540. parents: ["fox"]
  541. },
  542. "azodian": {
  543. name: "Azodian",
  544. parents: ["mouse"]
  545. },
  546. "shiba-inu": {
  547. name: "Shiba Inu",
  548. parents: ["dog"]
  549. },
  550. "changeling": {
  551. name: "Changeling",
  552. parents: ["insect"]
  553. },
  554. "cheetah": {
  555. name: "Cheetah",
  556. parents: ["cat"]
  557. },
  558. "golden-jackal": {
  559. name: "Golden Jackal",
  560. parents: ["jackal"]
  561. },
  562. "manectric": {
  563. name: "Manectric",
  564. parents: ["pokemon", "wolf"]
  565. },
  566. "rat": {
  567. name: "Rat",
  568. parents: ["rodent"]
  569. },
  570. "rodent": {
  571. name: "Rodent",
  572. parents: ["mammal"]
  573. },
  574. "octocoon": {
  575. name: "Octocoon",
  576. parents: ["raccoon", "octopus"]
  577. },
  578. "octopus": {
  579. name: "Octopus",
  580. parents: ["fish"]
  581. },
  582. "werewolf": {
  583. name: "Werewolf",
  584. parents: ["wolf", "werebeast"]
  585. },
  586. "werebeast": {
  587. name: "Werebeast",
  588. parents: ["monster"]
  589. },
  590. "meerkat": {
  591. name: "Meerkat",
  592. parents: ["mammal"]
  593. },
  594. "human": {
  595. name: "Human",
  596. parents: ["mammal"]
  597. },
  598. "geth": {
  599. name: "Geth",
  600. parents: ["android"]
  601. },
  602. "husky": {
  603. name: "Husky",
  604. parents: ["dog"]
  605. },
  606. "long-eared-bat": {
  607. name: "Long Eared Bat",
  608. parents: ["bat"]
  609. },
  610. "lizard": {
  611. name: "Lizard",
  612. parents: ["reptile"]
  613. },
  614. "salamander": {
  615. name: "Salamander",
  616. parents: ["lizard"]
  617. },
  618. "chameleon": {
  619. name: "Chameleon",
  620. parents: ["lizard"]
  621. },
  622. "gecko": {
  623. name: "Gecko",
  624. parents: ["lizard"]
  625. },
  626. "kobold": {
  627. name: "Kobold",
  628. parents: ["reptile"]
  629. },
  630. "charizard": {
  631. name: "Charizard",
  632. parents: ["pokemon", "dragon"]
  633. },
  634. "lugia": {
  635. name: "Lugia",
  636. parents: ["pokemon", "avian"]
  637. },
  638. "cerberus": {
  639. name: "Cerberus",
  640. parents: ["dog"]
  641. },
  642. "tyrantrum": {
  643. name: "Tyrantrum",
  644. parents: ["pokemon"]
  645. },
  646. "lemur": {
  647. name: "Lemur",
  648. parents: ["mammal"]
  649. },
  650. "kelpie": {
  651. name: "Kelpie",
  652. parents: ["horse", "monster"]
  653. },
  654. "labrador": {
  655. name: "Labrador",
  656. parents: ["dog"]
  657. },
  658. "sylveon": {
  659. name: "Sylveon",
  660. parents: ["eeveelution"]
  661. },
  662. "eeveelution": {
  663. name: "Eeveelution",
  664. parents: ["pokemon", "cat"]
  665. },
  666. "polar-bear": {
  667. name: "Polar Bear",
  668. parents: ["bear"]
  669. },
  670. "bear": {
  671. name: "Bear",
  672. parents: ["mammal"]
  673. },
  674. "absol": {
  675. name: "Absol",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "wolver": {
  679. name: "Wolver",
  680. parents: ["mammal"]
  681. },
  682. "rottweiler": {
  683. name: "Rottweiler",
  684. parents: ["dog"]
  685. },
  686. "zebra": {
  687. name: "Zebra",
  688. parents: ["horse"]
  689. },
  690. "yoshi": {
  691. name: "Yoshi",
  692. parents: ["lizard"]
  693. },
  694. "lynx": {
  695. name: "Lynx",
  696. parents: ["cat"]
  697. },
  698. "unknown": {
  699. name: "Unknown",
  700. parents: []
  701. },
  702. "thylacine": {
  703. name: "Thylacine",
  704. parents: ["mammal"]
  705. },
  706. "gabumon": {
  707. name: "Gabumon",
  708. parents: ["digimon"]
  709. },
  710. "border-collie": {
  711. name: "Border Collie",
  712. parents: ["dog"]
  713. },
  714. "imp": {
  715. name: "Imp",
  716. parents: ["demon"]
  717. },
  718. "kangaroo": {
  719. name: "Kangaroo",
  720. parents: ["marsupial"]
  721. },
  722. "renamon": {
  723. name: "Renamon",
  724. parents: ["digimon", "fox"]
  725. },
  726. "candy-orca-dragon": {
  727. name: "Candy Orca Dragon",
  728. parents: ["fish", "dragon", "candy"]
  729. },
  730. "sabertooth-tiger": {
  731. name: "Sabertooth Tiger",
  732. parents: ["cat"]
  733. },
  734. "espurr": {
  735. name: "Espurr",
  736. parents: ["pokemon", "cat"]
  737. },
  738. "otter": {
  739. name: "Otter",
  740. parents: ["mustelid"]
  741. },
  742. "elemental": {
  743. name: "Elemental",
  744. parents: ["mammal"]
  745. },
  746. "mew": {
  747. name: "Mew",
  748. parents: ["pokemon"]
  749. },
  750. "goodra": {
  751. name: "Goodra",
  752. parents: ["pokemon"]
  753. },
  754. "fairy": {
  755. name: "Fairy",
  756. parents: ["magical"]
  757. },
  758. "typhlosion": {
  759. name: "Typhlosion",
  760. parents: ["pokemon"]
  761. },
  762. "magical": {
  763. name: "Magical",
  764. parents: []
  765. },
  766. "xenomorph": {
  767. name: "Xenomorph",
  768. parents: ["monster", "alien"]
  769. },
  770. "charr": {
  771. name: "Charr",
  772. parents: ["cat"]
  773. },
  774. "siberian-husky": {
  775. name: "Siberian Husky",
  776. parents: ["husky"]
  777. },
  778. "alligator": {
  779. name: "Alligator",
  780. parents: ["reptile"]
  781. },
  782. "bernese-mountain-dog": {
  783. name: "Bernese Mountain Dog",
  784. parents: ["dog"]
  785. },
  786. "reshiram": {
  787. name: "Reshiram",
  788. parents: ["pokemon", "dragon"]
  789. },
  790. "grizzly-bear": {
  791. name: "Grizzly Bear",
  792. parents: ["bear"]
  793. },
  794. "water-monitor": {
  795. name: "Water Monitor",
  796. parents: ["lizard"]
  797. },
  798. "banchofossa": {
  799. name: "Banchofossa",
  800. parents: ["mammal"]
  801. },
  802. "kirin": {
  803. name: "Kirin",
  804. parents: ["monster"]
  805. },
  806. "quilava": {
  807. name: "Quilava",
  808. parents: ["pokemon"]
  809. },
  810. "seviper": {
  811. name: "Seviper",
  812. parents: ["pokemon", "viper"]
  813. },
  814. "flying-fox": {
  815. name: "Flying Fox",
  816. parents: ["bat"]
  817. },
  818. "keynain": {
  819. name: "Keynain",
  820. parents: ["avian"]
  821. },
  822. "lucario": {
  823. name: "Lucario",
  824. parents: ["pokemon", "jackal"]
  825. },
  826. "siamese-cat": {
  827. name: "Siamese Cat",
  828. parents: ["cat"]
  829. },
  830. "spider": {
  831. name: "Spider",
  832. parents: ["insect"]
  833. },
  834. "samurott": {
  835. name: "Samurott",
  836. parents: ["pokemon", "otter"]
  837. },
  838. "megalodon": {
  839. name: "Megalodon",
  840. parents: ["shark"]
  841. },
  842. "unicorn": {
  843. name: "Unicorn",
  844. parents: ["horse"]
  845. },
  846. "greninja": {
  847. name: "Greninja",
  848. parents: ["pokemon", "frog"]
  849. },
  850. "water-dragon": {
  851. name: "Water Dragon",
  852. parents: ["dragon"]
  853. },
  854. "cross-fox": {
  855. name: "Cross Fox",
  856. parents: ["fox"]
  857. },
  858. "synth": {
  859. name: "Synth",
  860. parents: ["machine"]
  861. },
  862. "construct": {
  863. name: "Construct",
  864. parents: []
  865. },
  866. "mexican-wolf": {
  867. name: "Mexican Wolf",
  868. parents: ["wolf"]
  869. },
  870. "leopard": {
  871. name: "Leopard",
  872. parents: ["cat"]
  873. },
  874. "pig": {
  875. name: "Pig",
  876. parents: ["mammal"]
  877. },
  878. "ampharos": {
  879. name: "Ampharos",
  880. parents: ["pokemon", "sheep"]
  881. },
  882. "orca": {
  883. name: "Orca",
  884. parents: ["fish"]
  885. },
  886. "lycanroc": {
  887. name: "Lycanroc",
  888. parents: ["pokemon", "wolf"]
  889. },
  890. "surkanu": {
  891. name: "Surkanu",
  892. parents: ["monster"]
  893. },
  894. "seal": {
  895. name: "Seal",
  896. parents: ["mammal"]
  897. },
  898. "keldeo": {
  899. name: "Keldeo",
  900. parents: ["pokemon"]
  901. },
  902. "great-dane": {
  903. name: "Great Dane",
  904. parents: ["dog"]
  905. },
  906. "black-backed-jackal": {
  907. name: "Black Backed Jackal",
  908. parents: ["jackal"]
  909. },
  910. "sheep": {
  911. name: "Sheep",
  912. parents: ["mammal"]
  913. },
  914. "leopard-seal": {
  915. name: "Leopard Seal",
  916. parents: ["seal"]
  917. },
  918. "zoroark": {
  919. name: "Zoroark",
  920. parents: ["pokemon", "fox"]
  921. },
  922. "maned-wolf": {
  923. name: "Maned Wolf",
  924. parents: ["canine"]
  925. },
  926. "dracha": {
  927. name: "Dracha",
  928. parents: ["dragon"]
  929. },
  930. "wolxi": {
  931. name: "Wolxi",
  932. parents: ["mammal", "alien"]
  933. },
  934. "dratini": {
  935. name: "Dratini",
  936. parents: ["pokemon", "dragon"]
  937. },
  938. "skaven": {
  939. name: "Skaven",
  940. parents: ["rat"]
  941. },
  942. "mongoose": {
  943. name: "Mongoose",
  944. parents: ["mammal"]
  945. },
  946. "lopunny": {
  947. name: "Lopunny",
  948. parents: ["pokemon", "rabbit"]
  949. },
  950. "feraligatr": {
  951. name: "Feraligatr",
  952. parents: ["pokemon", "alligator"]
  953. },
  954. "houndoom": {
  955. name: "Houndoom",
  956. parents: ["pokemon", "dog"]
  957. },
  958. "protogen": {
  959. name: "Protogen",
  960. parents: ["machine"]
  961. },
  962. "saint-bernard": {
  963. name: "Saint Bernard",
  964. parents: ["dog"]
  965. },
  966. "crow": {
  967. name: "Crow",
  968. parents: ["corvid"]
  969. },
  970. "delphox": {
  971. name: "Delphox",
  972. parents: ["pokemon", "fox"]
  973. },
  974. "moose": {
  975. name: "Moose",
  976. parents: ["mammal"]
  977. },
  978. "joraxian": {
  979. name: "Joraxian",
  980. parents: ["monster", "canine", "demon"]
  981. },
  982. "nimbat": {
  983. name: "Nimbat",
  984. parents: ["mammal"]
  985. },
  986. "aardwolf": {
  987. name: "Aardwolf",
  988. parents: ["canine"]
  989. },
  990. "fluudrani": {
  991. name: "Fluudrani",
  992. parents: ["animal"]
  993. },
  994. "arcanine": {
  995. name: "Arcanine",
  996. parents: ["pokemon", "dog"]
  997. },
  998. "inteleon": {
  999. name: "Inteleon",
  1000. parents: ["pokemon", "fish"]
  1001. },
  1002. "ninetales": {
  1003. name: "Ninetales",
  1004. parents: ["pokemon", "kitsune"]
  1005. },
  1006. "tigrex": {
  1007. name: "Tigrex",
  1008. parents: ["tiger"]
  1009. },
  1010. "zorua": {
  1011. name: "Zorua",
  1012. parents: ["pokemon", "fox"]
  1013. },
  1014. "vulpix": {
  1015. name: "Vulpix",
  1016. parents: ["pokemon", "fox"]
  1017. },
  1018. "barghest": {
  1019. name: "Barghest",
  1020. parents: ["monster"]
  1021. },
  1022. "gray-wolf": {
  1023. name: "Gray Wolf",
  1024. parents: ["wolf"]
  1025. },
  1026. "ruppells-fox": {
  1027. name: "Rüppell's Fox",
  1028. parents: ["fox"]
  1029. },
  1030. "bull-terrier": {
  1031. name: "Bull Terrier",
  1032. parents: ["dog"]
  1033. },
  1034. "european-honey-buzzard": {
  1035. name: "European Honey Buzzard",
  1036. parents: ["avian"]
  1037. },
  1038. "t-rex": {
  1039. name: "Tyrannosaurus Rex",
  1040. parents: ["dinosaur"]
  1041. },
  1042. "mactarian": {
  1043. name: "Mactarian",
  1044. parents: ["shark", "monster"]
  1045. },
  1046. "mewtwo-y": {
  1047. name: "Mewtwo Y",
  1048. parents: ["mewtwo"]
  1049. },
  1050. "mewtwo": {
  1051. name: "Mewtwo",
  1052. parents: ["pokemon"]
  1053. },
  1054. "eevee": {
  1055. name: "Eevee",
  1056. parents: ["eeveelution"]
  1057. },
  1058. "mienshao": {
  1059. name: "Mienshao",
  1060. parents: ["pokemon"]
  1061. },
  1062. "sugar-glider": {
  1063. name: "Sugar Glider",
  1064. parents: ["opossum"]
  1065. },
  1066. "spectral-bat": {
  1067. name: "Spectral Bat",
  1068. parents: ["bat"]
  1069. },
  1070. "scolipede": {
  1071. name: "Scolipede",
  1072. parents: ["pokemon", "insect"]
  1073. },
  1074. "jackalope": {
  1075. name: "Jackalope",
  1076. parents: ["rabbit", "antelope"]
  1077. },
  1078. "caracal": {
  1079. name: "Caracal",
  1080. parents: ["cat"]
  1081. },
  1082. "stoat": {
  1083. name: "Stoat",
  1084. parents: ["mammal"]
  1085. },
  1086. "african-golden-cat": {
  1087. name: "African Golden Cat",
  1088. parents: ["cat"]
  1089. },
  1090. "gigantosaurus": {
  1091. name: "Gigantosaurus",
  1092. parents: ["dinosaur"]
  1093. },
  1094. "zorgoia": {
  1095. name: "Zorgoia",
  1096. parents: ["mammal"]
  1097. },
  1098. "monitor-lizard": {
  1099. name: "Monitor Lizard",
  1100. parents: ["lizard"]
  1101. },
  1102. "ziralkia": {
  1103. name: "Ziralkia",
  1104. parents: ["mammal"]
  1105. },
  1106. "kiiasi": {
  1107. name: "Kiiasi",
  1108. parents: ["animal"]
  1109. },
  1110. "synx": {
  1111. name: "Synx",
  1112. parents: ["monster"]
  1113. },
  1114. "panther": {
  1115. name: "Panther",
  1116. parents: ["cat"]
  1117. },
  1118. "azumarill": {
  1119. name: "Azumarill",
  1120. parents: ["pokemon"]
  1121. },
  1122. "river-snaptail": {
  1123. name: "River Snaptail",
  1124. parents: ["otter", "crocodile"]
  1125. },
  1126. "great-blue-heron": {
  1127. name: "Great Blue Heron",
  1128. parents: ["avian"]
  1129. },
  1130. "smeargle": {
  1131. name: "Smeargle",
  1132. parents: ["pokemon"]
  1133. },
  1134. "vendeilen": {
  1135. name: "Vendeilen",
  1136. parents: ["monster"]
  1137. },
  1138. "ventura": {
  1139. name: "Ventura",
  1140. parents: ["canine"]
  1141. },
  1142. "clouded-leopard": {
  1143. name: "Clouded Leopard",
  1144. parents: ["leopard"]
  1145. },
  1146. "argonian": {
  1147. name: "Argonian",
  1148. parents: ["lizard"]
  1149. },
  1150. "salazzle": {
  1151. name: "Salazzle",
  1152. parents: ["pokemon", "lizard"]
  1153. },
  1154. "je-stoff-drachen": {
  1155. name: "Je-Stoff Drachen",
  1156. parents: ["dragon"]
  1157. },
  1158. "finnish-spitz-dog": {
  1159. name: "Finnish Spitz Dog",
  1160. parents: ["dog"]
  1161. },
  1162. "gray-fox": {
  1163. name: "Gray Fox",
  1164. parents: ["fox"]
  1165. },
  1166. "opossum": {
  1167. name: "Opossum",
  1168. parents: ["mammal"]
  1169. },
  1170. "antelope": {
  1171. name: "Antelope",
  1172. parents: ["mammal"]
  1173. },
  1174. "weavile": {
  1175. name: "Weavile",
  1176. parents: ["pokemon"]
  1177. },
  1178. "pikachu": {
  1179. name: "Pikachu",
  1180. parents: ["pokemon", "mouse"]
  1181. },
  1182. "grovyle": {
  1183. name: "Grovyle",
  1184. parents: ["pokemon", "plant"]
  1185. },
  1186. "sthara": {
  1187. name: "Sthara",
  1188. parents: ["snow-leopard", "reptile"]
  1189. },
  1190. "star-warrior": {
  1191. name: "Star Warrior",
  1192. parents: ["magical"]
  1193. },
  1194. "dragonoid": {
  1195. name: "Dragonoid",
  1196. parents: ["dragon"]
  1197. },
  1198. "suicune": {
  1199. name: "Suicune",
  1200. parents: ["pokemon"]
  1201. },
  1202. "vole": {
  1203. name: "Vole",
  1204. parents: ["mammal"]
  1205. },
  1206. "blaziken": {
  1207. name: "Blaziken",
  1208. parents: ["pokemon", "avian"]
  1209. },
  1210. "buizel": {
  1211. name: "Buizel",
  1212. parents: ["pokemon", "fish"]
  1213. },
  1214. "floatzel": {
  1215. name: "Floatzel",
  1216. parents: ["pokemon", "fish"]
  1217. },
  1218. "umok": {
  1219. name: "Umok",
  1220. parents: ["avian"]
  1221. },
  1222. "sea-monster": {
  1223. name: "Sea Monster",
  1224. parents: ["monster", "fish"]
  1225. },
  1226. "egyptian-vulture": {
  1227. name: "Egyptian Vulture",
  1228. parents: ["avian"]
  1229. },
  1230. "doberman": {
  1231. name: "Doberman",
  1232. parents: ["dog"]
  1233. },
  1234. "zangoose": {
  1235. name: "Zangoose",
  1236. parents: ["pokemon", "mongoose"]
  1237. },
  1238. "mongoose": {
  1239. name: "Mongoose",
  1240. parents: ["mammal"]
  1241. },
  1242. "wickerbeast": {
  1243. name: "Wickerbeast",
  1244. parents: ["monster"]
  1245. },
  1246. "zenari": {
  1247. name: "Zenari",
  1248. parents: ["lizard"]
  1249. },
  1250. "plant": {
  1251. name: "Plant",
  1252. parents: []
  1253. },
  1254. "raskatox": {
  1255. name: "Raskatox",
  1256. parents: ["raccoon", "skunk", "cat", "fox"]
  1257. },
  1258. "mikromare": {
  1259. name: "mikromare",
  1260. parents: ["alien"]
  1261. },
  1262. "alien": {
  1263. name: "Alien",
  1264. parents: ["animal"]
  1265. },
  1266. "deity": {
  1267. name: "Deity",
  1268. parents: []
  1269. },
  1270. "skarlan": {
  1271. name: "Skarlan",
  1272. parents: ["slug", "dragon"]
  1273. },
  1274. "slug": {
  1275. name: "Slug",
  1276. parents: ["mollusk"]
  1277. },
  1278. "mollusk": {
  1279. name: "Mollusk",
  1280. parents: ["animal"]
  1281. },
  1282. "chimera": {
  1283. name: "Chimera",
  1284. parents: ["monster"]
  1285. },
  1286. "gestalt": {
  1287. name: "Gestalt",
  1288. parents: ["construct"]
  1289. },
  1290. "mimic": {
  1291. name: "Mimic",
  1292. parents: ["monster"]
  1293. },
  1294. "calico-rat": {
  1295. name: "Calico Rat",
  1296. parents: ["rat"]
  1297. },
  1298. "panda": {
  1299. name: "Panda",
  1300. parents: ["mammal"]
  1301. },
  1302. "oni": {
  1303. name: "Oni",
  1304. parents: ["monster"]
  1305. },
  1306. "pegasus": {
  1307. name: "Pegasus",
  1308. parents: ["horse"]
  1309. },
  1310. "vulpera": {
  1311. name: "Vulpera",
  1312. parents: ["fennec-fox"]
  1313. },
  1314. "ceratosaurus": {
  1315. name: "Ceratosaurus",
  1316. parents: ["dinosaur"]
  1317. },
  1318. "nykur": {
  1319. name: "Nykur",
  1320. parents: ["horse", "monster"]
  1321. },
  1322. "giraffe": {
  1323. name: "Giraffe",
  1324. parents: ["mammal"]
  1325. },
  1326. "tauren": {
  1327. name: "Tauren",
  1328. parents: ["cow"]
  1329. },
  1330. "draconi": {
  1331. name: "Draconi",
  1332. parents: ["alien", "cat", "cyborg"]
  1333. },
  1334. "dire-wolf": {
  1335. name: "Dire Wolf",
  1336. parents: ["wolf"]
  1337. },
  1338. "ferromorph": {
  1339. name: "Ferromorph",
  1340. parents: ["construct"]
  1341. },
  1342. "meowth": {
  1343. name: "Meowth",
  1344. parents: ["cat", "pokemon"]
  1345. },
  1346. "pavodragon": {
  1347. name: "Pavodragon",
  1348. parents: ["dragon"]
  1349. },
  1350. "aaltranae": {
  1351. name: "Aaltranae",
  1352. parents: ["dragon"]
  1353. },
  1354. "cyborg": {
  1355. name: "Cyborg",
  1356. parents: ["machine"]
  1357. },
  1358. "draptor": {
  1359. name: "Draptor",
  1360. parents: ["dragon"]
  1361. },
  1362. "candy": {
  1363. name: "Candy",
  1364. parents: []
  1365. },
  1366. "drenath": {
  1367. name: "Drenath",
  1368. parents: ["dragon", "snake", "rabbit"]
  1369. },
  1370. "coyju": {
  1371. name: "Coyju",
  1372. parents: ["coyote", "kaiju"]
  1373. },
  1374. "kaiju": {
  1375. name: "Kaiju",
  1376. parents: ["monster"]
  1377. },
  1378. "nickit": {
  1379. name: "Nickit",
  1380. parents: ["pokemon", "cat"]
  1381. },
  1382. "lopunny": {
  1383. name: "Lopunny",
  1384. parents: ["pokemon", "rabbit"]
  1385. },
  1386. "korean-jindo-dog": {
  1387. name: "Korean Jindo Dog",
  1388. parents: ["dog"]
  1389. },
  1390. "naga": {
  1391. name: "Naga",
  1392. parents: ["snake", "monster"]
  1393. },
  1394. "undead": {
  1395. name: "Undead",
  1396. parents: ["monster"]
  1397. },
  1398. "whale": {
  1399. name: "Whale",
  1400. parents: ["fish"]
  1401. },
  1402. "gelato-bee": {
  1403. name: "Gelato Bee",
  1404. parents: ["bee"]
  1405. },
  1406. "bee": {
  1407. name: "Bee",
  1408. parents: ["insect"]
  1409. },
  1410. "gardevoir": {
  1411. name: "Gardevoir",
  1412. parents: ["pokemon"]
  1413. },
  1414. "ant": {
  1415. name: "Ant",
  1416. parents: ["insect"]
  1417. },
  1418. "frog": {
  1419. name: "Frog",
  1420. parents: ["amphibian"]
  1421. },
  1422. "amphibian": {
  1423. name: "Amphibian",
  1424. parents: ["animal"]
  1425. },
  1426. "pangolin": {
  1427. name: "Pangolin",
  1428. parents: ["mammal"]
  1429. },
  1430. "uragi'viidorn": {
  1431. name: "Uragi'viidorn",
  1432. parents: ["avian", "bear"]
  1433. },
  1434. "gryphdelphais": {
  1435. name: "Gryphdelphais",
  1436. parents: ["dolphin", "gryphon"]
  1437. },
  1438. "plush": {
  1439. name: "Plush",
  1440. parents: ["construct"]
  1441. },
  1442. "draiger": {
  1443. name: "Draiger",
  1444. parents: ["dragon","tiger"]
  1445. },
  1446. "foxsky": {
  1447. name: "Foxsky",
  1448. parents: ["fox", "husky"]
  1449. },
  1450. "umbreon": {
  1451. name: "Umbreon",
  1452. parents: ["eeveelution"]
  1453. },
  1454. "slime-dragon": {
  1455. name: "Slime Dragon",
  1456. parents: ["dragon", "goo"]
  1457. },
  1458. "enderman": {
  1459. name: "Enderman",
  1460. parents: ["monster"]
  1461. },
  1462. "gremlin": {
  1463. name: "Gremlin",
  1464. parents: ["monster"]
  1465. },
  1466. "dragonsune": {
  1467. name: "Dragonsune",
  1468. parents: ["dragon", "kitsune"]
  1469. },
  1470. "ghost": {
  1471. name: "Ghost",
  1472. parents: ["supernatural"]
  1473. },
  1474. "false-vampire-bat": {
  1475. name: "False Vampire Bat",
  1476. parents: ["bat"]
  1477. },
  1478. "succubus": {
  1479. name: "Succubus",
  1480. parents: ["demon"]
  1481. },
  1482. "mia": {
  1483. name: "Mia",
  1484. parents: ["canine"]
  1485. },
  1486. "rainbow": {
  1487. name: "Rainbow",
  1488. parents: ["monster"]
  1489. },
  1490. "solgaleo": {
  1491. name: "Solgaleo",
  1492. parents: ["pokemon"]
  1493. },
  1494. "lucent-nargacuga": {
  1495. name: "Lucent Nargacuga",
  1496. parents: ["nargacuga"]
  1497. },
  1498. "monster-hunter": {
  1499. name: "Monster Hunter",
  1500. parents: ["monster"]
  1501. },
  1502. "leviathan": {
  1503. "name": "Leviathan",
  1504. "url": "sea-monster"
  1505. },
  1506. "bull": {
  1507. name: "Bull",
  1508. parents: ["mammal"]
  1509. },
  1510. "tanuki": {
  1511. name: "Tanuki",
  1512. parents: ["monster"]
  1513. },
  1514. "chakat": {
  1515. name: "Chakat",
  1516. parents: ["cat"]
  1517. },
  1518. "hydra": {
  1519. name: "Hydra",
  1520. parents: ["monster"]
  1521. },
  1522. "zigzagoon": {
  1523. name: "Zigzagoon",
  1524. parents: ["raccoon", "pokemon"]
  1525. },
  1526. "vulture": {
  1527. name: "Vulture",
  1528. parents: ["avian"]
  1529. },
  1530. "eastern-dragon": {
  1531. name: "Eastern Dragon",
  1532. parents: ["dragon"]
  1533. },
  1534. "gryffon": {
  1535. name: "Gryffon",
  1536. parents: ["phoenix", "red-panda"]
  1537. },
  1538. "amtsvane": {
  1539. name: "Amtsvane",
  1540. parents: ["reptile"]
  1541. },
  1542. "kigavi": {
  1543. name: "Kigavi",
  1544. parents: ["avian"]
  1545. },
  1546. "turian": {
  1547. name: "Turian",
  1548. parents: ["avian"]
  1549. },
  1550. "zeraora": {
  1551. name: "Zeraora",
  1552. parents: ["pokemon", "cat"]
  1553. },
  1554. "sandshrew": {
  1555. name: "Sandshrew",
  1556. parents: ["pokemon", "pangolin"]
  1557. },
  1558. "valais-blacknose-sheep": {
  1559. name: "Valais Blacknose Sheep",
  1560. parents: ["sheep"]
  1561. },
  1562. "novaleit": {
  1563. name: "Novaleit",
  1564. parents: ["mammal"]
  1565. },
  1566. "dunnoh": {
  1567. name: "Dunnoh",
  1568. parents: ["mammal"]
  1569. },
  1570. "lunaral-dragon": {
  1571. name: "Lunaral Dragon",
  1572. parents: ["dragon"]
  1573. },
  1574. "arctic-wolf": {
  1575. name: "Arctic Wolf",
  1576. parents: ["wolf"]
  1577. },
  1578. "donkey": {
  1579. name: "Donkey",
  1580. parents: ["horse"]
  1581. },
  1582. "chinchilla": {
  1583. name: "Chinchilla",
  1584. parents: ["rodent"]
  1585. },
  1586. "felkin": {
  1587. name: "Felkin",
  1588. parents: ["dragon"]
  1589. },
  1590. "tykeriel": {
  1591. name: "Tykeriel",
  1592. parents: ["avian"]
  1593. },
  1594. "folf": {
  1595. name: "Folf",
  1596. parents: ["fox", "wolf"]
  1597. },
  1598. "pooltoy": {
  1599. name: "Pooltoy",
  1600. parents: ["construct"]
  1601. },
  1602. "demi": {
  1603. name: "Demi",
  1604. parents: ["human"]
  1605. },
  1606. "stegosaurus": {
  1607. name: "Stegosaurus",
  1608. parents: ["dinosaur"]
  1609. },
  1610. "computer-virus": {
  1611. name: "Computer Virus",
  1612. parents: ["program"]
  1613. },
  1614. "program": {
  1615. name: "Program",
  1616. parents: ["construct"]
  1617. },
  1618. "space-springhare": {
  1619. name: "Space Springhare",
  1620. parents: ["hare"]
  1621. },
  1622. "river-drake": {
  1623. name: "River Drake",
  1624. parents: ["dragon"]
  1625. },
  1626. "djinn": {
  1627. "name": "Djinn",
  1628. "url": "supernatural"
  1629. },
  1630. "supernatural": {
  1631. name: "Supernatural",
  1632. parents: ["monster"]
  1633. },
  1634. "grasshopper-mouse": {
  1635. name: "Grasshopper Mouse",
  1636. parents: ["mouse"]
  1637. },
  1638. "somali-cat": {
  1639. name: "Somali Cat",
  1640. parents: ["cat"]
  1641. },
  1642. "minccino": {
  1643. name: "Minccino",
  1644. parents: ["pokemon", "chinchilla"]
  1645. },
  1646. "pine-marten": {
  1647. name: "Pine Marten",
  1648. parents: ["marten"]
  1649. },
  1650. "marten": {
  1651. name: "Marten",
  1652. parents: ["mustelid"]
  1653. },
  1654. "mustelid": {
  1655. name: "Mustelid",
  1656. parents: ["mammal"]
  1657. },
  1658. "caribou": {
  1659. name: "Caribou",
  1660. parents: ["deer"]
  1661. },
  1662. "gnoll": {
  1663. name: "Gnoll",
  1664. parents: ["hyena", "monster"]
  1665. },
  1666. "peacekeeper": {
  1667. name: "Peacekeeper",
  1668. parents: ["human"]
  1669. },
  1670. "river-otter": {
  1671. name: "River Otter",
  1672. parents: ["otter"]
  1673. },
  1674. "dhole": {
  1675. name: "Dhole",
  1676. parents: ["canine"]
  1677. },
  1678. "springbok": {
  1679. name: "Springbok",
  1680. parents: ["antelope"]
  1681. },
  1682. "marsupial": {
  1683. name: "Marsupial",
  1684. parents: ["mammal"]
  1685. },
  1686. "townsend-big-eared-bat": {
  1687. name: "Townsend Big-eared Bat",
  1688. parents: ["bat"]
  1689. },
  1690. "squirrel": {
  1691. name: "Squirrel",
  1692. parents: ["rodent"]
  1693. },
  1694. "magpie": {
  1695. name: "Magpie",
  1696. parents: ["corvid"]
  1697. },
  1698. "civet": {
  1699. name: "Civet",
  1700. parents: ["feliform"]
  1701. },
  1702. "feliform": {
  1703. name: "Feliform",
  1704. parents: ["mammal"]
  1705. },
  1706. "tiefling": {
  1707. name: "Tiefling",
  1708. parents: ["devil"]
  1709. },
  1710. "devil": {
  1711. name: "Devil",
  1712. parents: ["supernatural"]
  1713. },
  1714. "sika-deer": {
  1715. name: "Sika Deer",
  1716. parents: ["deer"]
  1717. },
  1718. "vaporeon": {
  1719. name: "Vaporeon",
  1720. parents: ["eeveelution"]
  1721. },
  1722. "leafeon": {
  1723. name: "Leafeon",
  1724. parents: ["eeveelution"]
  1725. },
  1726. "jolteon": {
  1727. name: "Jolteon",
  1728. parents: ["eeveelution"]
  1729. },
  1730. "spireborn": {
  1731. name: "Spireborn",
  1732. parents: ["zorgoia"]
  1733. },
  1734. "vampire": {
  1735. name: "Vampire",
  1736. parents: ["monster"]
  1737. },
  1738. "extraplanar": {
  1739. name: "Extraplanar",
  1740. parents: []
  1741. },
  1742. "goo": {
  1743. name: "Goo",
  1744. parents: []
  1745. },
  1746. "skink": {
  1747. name: "Skink",
  1748. parents: ["lizard"]
  1749. },
  1750. "bat-eared-fox": {
  1751. name: "Bat-eared Fox",
  1752. parents: ["fox"]
  1753. },
  1754. "belted-kingfisher": {
  1755. name: "Belted Kingfisher",
  1756. parents: ["avian"]
  1757. },
  1758. "omnifalcon": {
  1759. name: "Omnifalcon",
  1760. parents: ["gryphon", "falcon", "harpy-eagle"]
  1761. },
  1762. "falcon": {
  1763. name: "Falcon",
  1764. parents: ["bird-of-prey"]
  1765. },
  1766. "avali": {
  1767. name: "Avali",
  1768. parents: ["avian", "alien"]
  1769. },
  1770. "arctic-fox": {
  1771. name: "Arctic Fox",
  1772. parents: ["fox"]
  1773. },
  1774. "snow-tiger": {
  1775. name: "Snow Tiger",
  1776. parents: ["tiger"]
  1777. },
  1778. "marble-fox": {
  1779. name: "Marble Fox",
  1780. parents: ["fox"]
  1781. },
  1782. "king-wickerbeast": {
  1783. name: "King Wickerbeast",
  1784. parents: ["wickerbeast"]
  1785. },
  1786. "wickerbeast": {
  1787. name: "Wickerbeast",
  1788. parents: ["mammal"]
  1789. },
  1790. "european-polecat": {
  1791. name: "European Polecat",
  1792. parents: ["mustelid"]
  1793. },
  1794. "teshari": {
  1795. name: "Teshari",
  1796. parents: ["avian", "raptor"]
  1797. },
  1798. "alicorn": {
  1799. name: "Alicorn",
  1800. parents: ["horse"]
  1801. },
  1802. "atlas-moth": {
  1803. name: "Atlas Moth",
  1804. parents: ["moth"]
  1805. },
  1806. "owlbear": {
  1807. name: "Owlbear",
  1808. parents: ["owl", "bear", "monster"]
  1809. },
  1810. "owl": {
  1811. name: "Owl",
  1812. parents: ["avian"]
  1813. },
  1814. "silvertongue": {
  1815. name: "Silvertongue",
  1816. parents: ["reptile"]
  1817. },
  1818. "ahuizotl": {
  1819. name: "Ahuizotl",
  1820. parents: ["monster"]
  1821. },
  1822. "ender-dragon": {
  1823. name: "Ender Dragon",
  1824. parents: ["dragon"]
  1825. },
  1826. "bruhathkayosaurus": {
  1827. name: "Bruhathkayosaurus",
  1828. parents: ["sauropod"]
  1829. },
  1830. "sauropod": {
  1831. name: "Sauropod",
  1832. parents: ["dinosaur"]
  1833. },
  1834. "black-sable-antelope": {
  1835. name: "Black Sable Antelope",
  1836. parents: ["antelope"]
  1837. },
  1838. "slime": {
  1839. name: "Slime",
  1840. parents: ["goo"]
  1841. },
  1842. "utahraptor": {
  1843. name: "Utahraptor",
  1844. parents: ["raptor"]
  1845. },
  1846. "indian-giant-squirrel": {
  1847. name: "Indian Giant Squirrel",
  1848. parents: ["squirrel"]
  1849. },
  1850. "golden-retriever": {
  1851. name: "Golden Retriever",
  1852. parents: ["dog"]
  1853. },
  1854. "triceratops": {
  1855. name: "Triceratops",
  1856. parents: ["dinosaur"]
  1857. },
  1858. "drake": {
  1859. name: "Drake",
  1860. parents: ["dragon"]
  1861. },
  1862. "okapi": {
  1863. name: "Okapi",
  1864. parents: ["giraffe"]
  1865. },
  1866. "arctic-hare": {
  1867. name: "Arctic Hare",
  1868. parents: ["hare"]
  1869. },
  1870. "hare": {
  1871. name: "Hare",
  1872. parents: ["leporidae"]
  1873. },
  1874. "leporidae": {
  1875. name: "Leporidae",
  1876. parents: ["mammal"]
  1877. },
  1878. "leopard-gecko": {
  1879. name: "Leopard Gecko",
  1880. parents: ["gecko"]
  1881. },
  1882. "dreamspawn": {
  1883. name: "Dreamspawn",
  1884. parents: ["illusion"]
  1885. },
  1886. "illusion": {
  1887. name: "Illusion",
  1888. parents: []
  1889. },
  1890. "purrloin": {
  1891. name: "Purrloin",
  1892. parents: ["cat", "pokemon"]
  1893. },
  1894. "noivern": {
  1895. name: "Noivern",
  1896. parents: ["bat", "dragon", "pokemon"]
  1897. },
  1898. "hedgehog": {
  1899. name: "Hedgehog",
  1900. parents: ["mammal"]
  1901. },
  1902. "liger": {
  1903. name: "Liger",
  1904. parents: ["lion", "tiger", "hybrid"]
  1905. },
  1906. "hybrid": {
  1907. name: "Hybrid",
  1908. parents: []
  1909. },
  1910. "drider": {
  1911. name: "Drider",
  1912. parents: ["spider"]
  1913. },
  1914. "sabresune": {
  1915. name: "Sabresune",
  1916. parents: ["kitsune", "sabertooth-tiger"]
  1917. },
  1918. "ditto": {
  1919. name: "Ditto",
  1920. parents: ["pokemon", "goo"]
  1921. },
  1922. "amogus": {
  1923. name: "Amogus",
  1924. parents: ["deity"]
  1925. },
  1926. "ferret": {
  1927. name: "Ferret",
  1928. parents: ["mustelid"]
  1929. },
  1930. "guinea-pig": {
  1931. name: "Guinea Pig",
  1932. parents: ["rodent"]
  1933. },
  1934. "viper": {
  1935. name: "Viper",
  1936. parents: ["snake"]
  1937. },
  1938. "cinderace": {
  1939. name: "Cinderace",
  1940. parents: ["pokemon", "rabbit"]
  1941. },
  1942. "caudin": {
  1943. name: "Caudin",
  1944. parents: ["dragon"]
  1945. },
  1946. "red-winged-blackbird": {
  1947. name: "Red-Winged Blackbird",
  1948. parents: ["avian"]
  1949. },
  1950. "hooded-wheater": {
  1951. name: "Hooded Wheater",
  1952. parents: ["passerine"]
  1953. },
  1954. "passerine": {
  1955. name: "Passerine",
  1956. parents: ["avian"]
  1957. },
  1958. "gieeg": {
  1959. name: "Gieeg",
  1960. parents: ["alien"]
  1961. },
  1962. "ringtail": {
  1963. name: "Ringtail",
  1964. parents: ["raccoon"]
  1965. },
  1966. "hisuian-zoroark": {
  1967. name: "Hisuian Zoroark",
  1968. parents: ["zoroark", "hisuian"]
  1969. },
  1970. "hisuian": {
  1971. name: "Hisuian",
  1972. parents: ["regional-pokemon"]
  1973. },
  1974. "regional-pokemon": {
  1975. name: "Regional Pokemon",
  1976. parents: ["pokemon"]
  1977. },
  1978. "cybeast": {
  1979. name: "Cybeast",
  1980. parents: ["computer-virus"]
  1981. },
  1982. "javira-dragon": {
  1983. name: "Javira Dragon",
  1984. parents: ["dragon"]
  1985. },
  1986. "koopew": {
  1987. name: "Koopew",
  1988. parents: ["dragon", "alien"]
  1989. },
  1990. "nevrean": {
  1991. name: "Nevrean",
  1992. parents: ["avian", "vilous"]
  1993. },
  1994. "vilous": {
  1995. name: "Vilous Species",
  1996. parents: []
  1997. },
  1998. "titanoboa": {
  1999. name: "Titanoboa",
  2000. parents: ["snake"]
  2001. },
  2002. "raichu": {
  2003. name: "Raichu",
  2004. parents: ["pikachu"]
  2005. },
  2006. "taur": {
  2007. name: "Taur",
  2008. parents: []
  2009. },
  2010. "continental-giant-rabbit": {
  2011. name: "Continental Giant Rabbit",
  2012. parents: ["rabbit"]
  2013. },
  2014. "demigryph": {
  2015. name: "Demigryph",
  2016. parents: ["lion", "eagle"]
  2017. },
  2018. "bald-eagle": {
  2019. name: "Bald Eagle",
  2020. parents: ["eagle"]
  2021. },
  2022. "kestrel": {
  2023. name: "Kestrel",
  2024. parents: ["falcon"]
  2025. },
  2026. "mockingbird": {
  2027. name: "Mockingbird",
  2028. parents: ["songbird"]
  2029. },
  2030. "songbird": {
  2031. name: "Songbird",
  2032. parents: ["avian"]
  2033. },
  2034. "bird-of-prey": {
  2035. name: "Bird of Prey",
  2036. parents: ["avian"]
  2037. },
  2038. "marowak": {
  2039. name: "Marowak",
  2040. parents: ["pokemon", "reptile"]
  2041. },
  2042. "joltik": {
  2043. name: "Joltik",
  2044. parents: ["pokemon", "insect"]
  2045. },
  2046. "mink": {
  2047. name: "Mink",
  2048. parents: ["mustelid"]
  2049. },
  2050. "sandcat": {
  2051. name: "Sandcat",
  2052. parents: ["cat"]
  2053. },
  2054. "hrothgar": {
  2055. name: "Hrothgar",
  2056. parents: ["cat"]
  2057. },
  2058. "garchomp": {
  2059. name: "Garchomp",
  2060. parents: ["dragon", "pokemon"]
  2061. },
  2062. "nargacuga": {
  2063. name: "Nargacuga",
  2064. parents: ["monster-hunter"]
  2065. },
  2066. "sable": {
  2067. name: "Sable",
  2068. parents: ["marten"]
  2069. },
  2070. "deino": {
  2071. name: "Deino",
  2072. parents: ["pokemon", "dinosaur"]
  2073. },
  2074. "housecat": {
  2075. name: "Housecat",
  2076. parents: ["cat"]
  2077. },
  2078. "bombay-cat": {
  2079. name: "Bombay Cat",
  2080. parents: ["housecat"]
  2081. },
  2082. }
  2083. //species
  2084. function getSpeciesInfo(speciesList) {
  2085. let result = new Set();
  2086. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2087. result.add(entry)
  2088. });
  2089. return Array.from(result);
  2090. };
  2091. function getSpeciesInfoHelper(species) {
  2092. if (!speciesData[species]) {
  2093. console.warn(species + " doesn't exist");
  2094. return [];
  2095. }
  2096. if (speciesData[species].parents) {
  2097. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2098. } else {
  2099. return [species];
  2100. }
  2101. }
  2102. characterMakers.push(() => makeCharacter(
  2103. {
  2104. name: "Fen",
  2105. species: ["crux"],
  2106. description: {
  2107. title: "Bio",
  2108. text: "Very furry. Sheds on everything."
  2109. },
  2110. tags: [
  2111. "anthro",
  2112. "goo"
  2113. ]
  2114. },
  2115. {
  2116. front: {
  2117. height: math.unit(12, "feet"),
  2118. weight: math.unit(2400, "lb"),
  2119. name: "Front",
  2120. image: {
  2121. source: "./media/characters/fen/front.svg",
  2122. extra: 1804/1562,
  2123. bottom: 205/2009
  2124. },
  2125. extraAttributes: {
  2126. pawSize: {
  2127. name: "Paw Size",
  2128. power: 2,
  2129. type: "area",
  2130. base: math.unit(0.35, "m^2")
  2131. }
  2132. }
  2133. },
  2134. diving: {
  2135. height: math.unit(4.9, "meters"),
  2136. weight: math.unit(2400, "lb"),
  2137. name: "Diving",
  2138. image: {
  2139. source: "./media/characters/fen/diving.svg"
  2140. }
  2141. },
  2142. sleeby: {
  2143. height: math.unit(3.45, "meters"),
  2144. weight: math.unit(2400, "lb"),
  2145. name: "Sleeby",
  2146. image: {
  2147. source: "./media/characters/fen/sleeby.svg"
  2148. }
  2149. },
  2150. goo: {
  2151. height: math.unit(12, "feet"),
  2152. weight: math.unit(3600, "lb"),
  2153. volume: math.unit(1000, "liters"),
  2154. preyCapacity: math.unit(6, "people"),
  2155. name: "Goo",
  2156. image: {
  2157. source: "./media/characters/fen/goo.svg",
  2158. extra: 1307/1071,
  2159. bottom: 134/1441
  2160. }
  2161. },
  2162. gooNsfw: {
  2163. height: math.unit(12, "feet"),
  2164. weight: math.unit(3750, "lb"),
  2165. volume: math.unit(1000, "liters"),
  2166. preyCapacity: math.unit(6, "people"),
  2167. name: "Goo (NSFW)",
  2168. image: {
  2169. source: "./media/characters/fen/goo-nsfw.svg",
  2170. extra: 1875/1734,
  2171. bottom: 122/1997
  2172. }
  2173. },
  2174. maw: {
  2175. height: math.unit(5.03, "feet"),
  2176. name: "Maw",
  2177. image: {
  2178. source: "./media/characters/fen/maw.svg"
  2179. }
  2180. },
  2181. gooCeiling: {
  2182. height: math.unit(6.6, "feet"),
  2183. weight: math.unit(3000, "lb"),
  2184. volume: math.unit(1000, "liters"),
  2185. preyCapacity: math.unit(6, "people"),
  2186. name: "Goo (Ceiling)",
  2187. image: {
  2188. source: "./media/characters/fen/goo-ceiling.svg"
  2189. }
  2190. },
  2191. paw: {
  2192. height: math.unit(3.77, "feet"),
  2193. name: "Paw",
  2194. image: {
  2195. source: "./media/characters/fen/paw.svg"
  2196. },
  2197. extraAttributes: {
  2198. "toeSize": {
  2199. name: "Toe Size",
  2200. power: 2,
  2201. type: "area",
  2202. base: math.unit(0.02875, "m^2")
  2203. },
  2204. "pawSize": {
  2205. name: "Paw Size",
  2206. power: 2,
  2207. type: "area",
  2208. base: math.unit(0.378, "m^2")
  2209. },
  2210. }
  2211. },
  2212. tail: {
  2213. height: math.unit(12.1, "feet"),
  2214. name: "Tail",
  2215. image: {
  2216. source: "./media/characters/fen/tail.svg"
  2217. }
  2218. },
  2219. tailFull: {
  2220. height: math.unit(12.1, "feet"),
  2221. name: "Full Tail",
  2222. image: {
  2223. source: "./media/characters/fen/tail-full.svg"
  2224. }
  2225. },
  2226. back: {
  2227. height: math.unit(12, "feet"),
  2228. weight: math.unit(2400, "lb"),
  2229. name: "Back",
  2230. image: {
  2231. source: "./media/characters/fen/back.svg",
  2232. },
  2233. info: {
  2234. description: {
  2235. mode: "append",
  2236. text: "\n\nHe is not currently looking at you."
  2237. }
  2238. }
  2239. },
  2240. full: {
  2241. height: math.unit(1.85, "meter"),
  2242. weight: math.unit(3200, "lb"),
  2243. name: "Full",
  2244. image: {
  2245. source: "./media/characters/fen/full.svg",
  2246. extra: 1133/859,
  2247. bottom: 145/1278
  2248. },
  2249. info: {
  2250. description: {
  2251. mode: "append",
  2252. text: "\n\nMunch."
  2253. }
  2254. }
  2255. },
  2256. gooLounging: {
  2257. height: math.unit(4.53, "feet"),
  2258. weight: math.unit(3000, "lb"),
  2259. preyCapacity: math.unit(6, "people"),
  2260. name: "Goo (Lounging)",
  2261. image: {
  2262. source: "./media/characters/fen/goo-lounging.svg",
  2263. bottom: 116 / 613
  2264. }
  2265. },
  2266. lounging: {
  2267. height: math.unit(10.52, "feet"),
  2268. weight: math.unit(2400, "lb"),
  2269. name: "Lounging",
  2270. image: {
  2271. source: "./media/characters/fen/lounging.svg"
  2272. }
  2273. },
  2274. },
  2275. [
  2276. {
  2277. name: "Small",
  2278. height: math.unit(2.2428, "meter")
  2279. },
  2280. {
  2281. name: "Normal",
  2282. height: math.unit(12, "feet"),
  2283. default: true,
  2284. },
  2285. {
  2286. name: "Big",
  2287. height: math.unit(20, "feet")
  2288. },
  2289. {
  2290. name: "Minimacro",
  2291. height: math.unit(40, "feet"),
  2292. info: {
  2293. description: {
  2294. mode: "append",
  2295. text: "\n\nTOO DAMN BIG"
  2296. }
  2297. }
  2298. },
  2299. {
  2300. name: "Macro",
  2301. height: math.unit(100, "feet"),
  2302. info: {
  2303. description: {
  2304. mode: "append",
  2305. text: "\n\nTOO DAMN BIG"
  2306. }
  2307. }
  2308. },
  2309. {
  2310. name: "Megamacro",
  2311. height: math.unit(2, "miles")
  2312. },
  2313. {
  2314. name: "Gigamacro",
  2315. height: math.unit(10, "earths")
  2316. },
  2317. ]
  2318. ))
  2319. characterMakers.push(() => makeCharacter(
  2320. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2321. {
  2322. front: {
  2323. height: math.unit(183, "cm"),
  2324. weight: math.unit(80, "kg"),
  2325. name: "Front",
  2326. image: {
  2327. source: "./media/characters/sofia-fluttertail/front.svg",
  2328. bottom: 0.01,
  2329. extra: 2154 / 2081
  2330. }
  2331. },
  2332. frontAlt: {
  2333. height: math.unit(183, "cm"),
  2334. weight: math.unit(80, "kg"),
  2335. name: "Front (alt)",
  2336. image: {
  2337. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2338. }
  2339. },
  2340. back: {
  2341. height: math.unit(183, "cm"),
  2342. weight: math.unit(80, "kg"),
  2343. name: "Back",
  2344. image: {
  2345. source: "./media/characters/sofia-fluttertail/back.svg"
  2346. }
  2347. },
  2348. kneeling: {
  2349. height: math.unit(125, "cm"),
  2350. weight: math.unit(80, "kg"),
  2351. name: "Kneeling",
  2352. image: {
  2353. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2354. extra: 1033 / 977,
  2355. bottom: 23.7 / 1057
  2356. }
  2357. },
  2358. maw: {
  2359. height: math.unit(183 / 5, "cm"),
  2360. name: "Maw",
  2361. image: {
  2362. source: "./media/characters/sofia-fluttertail/maw.svg"
  2363. }
  2364. },
  2365. mawcloseup: {
  2366. height: math.unit(183 / 5 * 0.41, "cm"),
  2367. name: "Maw (Closeup)",
  2368. image: {
  2369. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2370. }
  2371. },
  2372. paws: {
  2373. height: math.unit(1.17, "feet"),
  2374. name: "Paws",
  2375. image: {
  2376. source: "./media/characters/sofia-fluttertail/paws.svg",
  2377. extra: 851 / 851,
  2378. bottom: 17 / 868
  2379. }
  2380. },
  2381. },
  2382. [
  2383. {
  2384. name: "Normal",
  2385. height: math.unit(1.83, "meter")
  2386. },
  2387. {
  2388. name: "Size Thief",
  2389. height: math.unit(18, "feet")
  2390. },
  2391. {
  2392. name: "50 Foot Collie",
  2393. height: math.unit(50, "feet")
  2394. },
  2395. {
  2396. name: "Macro",
  2397. height: math.unit(96, "feet"),
  2398. default: true
  2399. },
  2400. {
  2401. name: "Megamerger",
  2402. height: math.unit(650, "feet")
  2403. },
  2404. ]
  2405. ))
  2406. characterMakers.push(() => makeCharacter(
  2407. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2408. {
  2409. front: {
  2410. height: math.unit(7, "feet"),
  2411. weight: math.unit(100, "kg"),
  2412. name: "Front",
  2413. image: {
  2414. source: "./media/characters/march/front.svg",
  2415. extra: 1992/1851,
  2416. bottom: 39/2031
  2417. }
  2418. },
  2419. foot: {
  2420. height: math.unit(0.9, "feet"),
  2421. name: "Foot",
  2422. image: {
  2423. source: "./media/characters/march/foot.svg"
  2424. }
  2425. },
  2426. },
  2427. [
  2428. {
  2429. name: "Normal",
  2430. height: math.unit(7.9, "feet")
  2431. },
  2432. {
  2433. name: "Macro",
  2434. height: math.unit(220, "meters")
  2435. },
  2436. {
  2437. name: "Megamacro",
  2438. height: math.unit(2.98, "km"),
  2439. default: true
  2440. },
  2441. {
  2442. name: "Gigamacro",
  2443. height: math.unit(15963, "km")
  2444. },
  2445. {
  2446. name: "Teramacro",
  2447. height: math.unit(2980000000, "km")
  2448. },
  2449. {
  2450. name: "Examacro",
  2451. height: math.unit(250, "parsecs")
  2452. },
  2453. ]
  2454. ))
  2455. characterMakers.push(() => makeCharacter(
  2456. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2457. {
  2458. front: {
  2459. height: math.unit(6, "feet"),
  2460. weight: math.unit(60, "kg"),
  2461. name: "Front",
  2462. image: {
  2463. source: "./media/characters/noir/front.svg",
  2464. extra: 1,
  2465. bottom: 0.032
  2466. }
  2467. },
  2468. },
  2469. [
  2470. {
  2471. name: "Normal",
  2472. height: math.unit(6.6, "feet")
  2473. },
  2474. {
  2475. name: "Macro",
  2476. height: math.unit(500, "feet")
  2477. },
  2478. {
  2479. name: "Megamacro",
  2480. height: math.unit(2.5, "km"),
  2481. default: true
  2482. },
  2483. {
  2484. name: "Gigamacro",
  2485. height: math.unit(22500, "km")
  2486. },
  2487. {
  2488. name: "Teramacro",
  2489. height: math.unit(2500000000, "km")
  2490. },
  2491. {
  2492. name: "Examacro",
  2493. height: math.unit(200, "parsecs")
  2494. },
  2495. ]
  2496. ))
  2497. characterMakers.push(() => makeCharacter(
  2498. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2499. {
  2500. front: {
  2501. height: math.unit(7, "feet"),
  2502. weight: math.unit(100, "kg"),
  2503. name: "Front",
  2504. image: {
  2505. source: "./media/characters/okuri/front.svg",
  2506. extra: 739/665,
  2507. bottom: 39/778
  2508. }
  2509. },
  2510. back: {
  2511. height: math.unit(7, "feet"),
  2512. weight: math.unit(100, "kg"),
  2513. name: "Back",
  2514. image: {
  2515. source: "./media/characters/okuri/back.svg",
  2516. extra: 734/653,
  2517. bottom: 13/747
  2518. }
  2519. },
  2520. sitting: {
  2521. height: math.unit(2.95, "feet"),
  2522. weight: math.unit(100, "kg"),
  2523. name: "Sitting",
  2524. image: {
  2525. source: "./media/characters/okuri/sitting.svg",
  2526. extra: 370/318,
  2527. bottom: 99/469
  2528. }
  2529. },
  2530. },
  2531. [
  2532. {
  2533. name: "Smallest",
  2534. height: math.unit(5 + 2/12, "feet")
  2535. },
  2536. {
  2537. name: "Smaller",
  2538. height: math.unit(300, "feet")
  2539. },
  2540. {
  2541. name: "Small",
  2542. height: math.unit(1000, "feet")
  2543. },
  2544. {
  2545. name: "Macro",
  2546. height: math.unit(1, "mile")
  2547. },
  2548. {
  2549. name: "Mega Macro (Small)",
  2550. height: math.unit(20, "km")
  2551. },
  2552. {
  2553. name: "Mega Macro (Large)",
  2554. height: math.unit(600, "km")
  2555. },
  2556. {
  2557. name: "Giga Macro",
  2558. height: math.unit(10000, "km")
  2559. },
  2560. {
  2561. name: "Normal",
  2562. height: math.unit(577560, "km"),
  2563. default: true
  2564. },
  2565. {
  2566. name: "Large",
  2567. height: math.unit(4, "galaxies")
  2568. },
  2569. {
  2570. name: "Largest",
  2571. height: math.unit(15, "multiverses")
  2572. },
  2573. ]
  2574. ))
  2575. characterMakers.push(() => makeCharacter(
  2576. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2577. {
  2578. front: {
  2579. height: math.unit(7, "feet"),
  2580. weight: math.unit(100, "kg"),
  2581. name: "Front",
  2582. image: {
  2583. source: "./media/characters/manny/front.svg",
  2584. extra: 1,
  2585. bottom: 0.06
  2586. }
  2587. },
  2588. back: {
  2589. height: math.unit(7, "feet"),
  2590. weight: math.unit(100, "kg"),
  2591. name: "Back",
  2592. image: {
  2593. source: "./media/characters/manny/back.svg",
  2594. extra: 1,
  2595. bottom: 0.014
  2596. }
  2597. },
  2598. },
  2599. [
  2600. {
  2601. name: "Normal",
  2602. height: math.unit(7, "feet"),
  2603. },
  2604. {
  2605. name: "Macro",
  2606. height: math.unit(78, "feet"),
  2607. default: true
  2608. },
  2609. {
  2610. name: "Macro+",
  2611. height: math.unit(300, "meters")
  2612. },
  2613. {
  2614. name: "Macro++",
  2615. height: math.unit(2400, "meters")
  2616. },
  2617. {
  2618. name: "Megamacro",
  2619. height: math.unit(5167, "meters")
  2620. },
  2621. {
  2622. name: "Gigamacro",
  2623. height: math.unit(41769, "miles")
  2624. },
  2625. ]
  2626. ))
  2627. characterMakers.push(() => makeCharacter(
  2628. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2629. {
  2630. front: {
  2631. height: math.unit(7, "feet"),
  2632. weight: math.unit(100, "kg"),
  2633. name: "Front",
  2634. image: {
  2635. source: "./media/characters/adake/front-1.svg"
  2636. }
  2637. },
  2638. frontAlt: {
  2639. height: math.unit(7, "feet"),
  2640. weight: math.unit(100, "kg"),
  2641. name: "Front (Alt)",
  2642. image: {
  2643. source: "./media/characters/adake/front-2.svg",
  2644. extra: 1,
  2645. bottom: 0.01
  2646. }
  2647. },
  2648. back: {
  2649. height: math.unit(7, "feet"),
  2650. weight: math.unit(100, "kg"),
  2651. name: "Back",
  2652. image: {
  2653. source: "./media/characters/adake/back.svg",
  2654. }
  2655. },
  2656. kneel: {
  2657. height: math.unit(5.385, "feet"),
  2658. weight: math.unit(100, "kg"),
  2659. name: "Kneeling",
  2660. image: {
  2661. source: "./media/characters/adake/kneel.svg",
  2662. bottom: 0.052
  2663. }
  2664. },
  2665. },
  2666. [
  2667. {
  2668. name: "Normal",
  2669. height: math.unit(7, "feet"),
  2670. },
  2671. {
  2672. name: "Macro",
  2673. height: math.unit(78, "feet"),
  2674. default: true
  2675. },
  2676. {
  2677. name: "Macro+",
  2678. height: math.unit(300, "meters")
  2679. },
  2680. {
  2681. name: "Macro++",
  2682. height: math.unit(2400, "meters")
  2683. },
  2684. {
  2685. name: "Megamacro",
  2686. height: math.unit(5167, "meters")
  2687. },
  2688. {
  2689. name: "Gigamacro",
  2690. height: math.unit(41769, "miles")
  2691. },
  2692. ]
  2693. ))
  2694. characterMakers.push(() => makeCharacter(
  2695. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2696. {
  2697. front: {
  2698. height: math.unit(1.65, "meters"),
  2699. weight: math.unit(50, "kg"),
  2700. name: "Front",
  2701. image: {
  2702. source: "./media/characters/elijah/front.svg",
  2703. extra: 858 / 830,
  2704. bottom: 95.5 / 953.8559
  2705. }
  2706. },
  2707. back: {
  2708. height: math.unit(1.65, "meters"),
  2709. weight: math.unit(50, "kg"),
  2710. name: "Back",
  2711. image: {
  2712. source: "./media/characters/elijah/back.svg",
  2713. extra: 895 / 850,
  2714. bottom: 5.3 / 897.956
  2715. }
  2716. },
  2717. frontNsfw: {
  2718. height: math.unit(1.65, "meters"),
  2719. weight: math.unit(50, "kg"),
  2720. name: "Front (NSFW)",
  2721. image: {
  2722. source: "./media/characters/elijah/front-nsfw.svg",
  2723. extra: 858 / 830,
  2724. bottom: 95.5 / 953.8559
  2725. }
  2726. },
  2727. backNsfw: {
  2728. height: math.unit(1.65, "meters"),
  2729. weight: math.unit(50, "kg"),
  2730. name: "Back (NSFW)",
  2731. image: {
  2732. source: "./media/characters/elijah/back-nsfw.svg",
  2733. extra: 895 / 850,
  2734. bottom: 5.3 / 897.956
  2735. }
  2736. },
  2737. dick: {
  2738. height: math.unit(1, "feet"),
  2739. name: "Dick",
  2740. image: {
  2741. source: "./media/characters/elijah/dick.svg"
  2742. }
  2743. },
  2744. beakOpen: {
  2745. height: math.unit(1.25, "feet"),
  2746. name: "Beak (Open)",
  2747. image: {
  2748. source: "./media/characters/elijah/beak-open.svg"
  2749. }
  2750. },
  2751. beakShut: {
  2752. height: math.unit(1.25, "feet"),
  2753. name: "Beak (Shut)",
  2754. image: {
  2755. source: "./media/characters/elijah/beak-shut.svg"
  2756. }
  2757. },
  2758. footFlexing: {
  2759. height: math.unit(1.61, "feet"),
  2760. name: "Foot (Flexing)",
  2761. image: {
  2762. source: "./media/characters/elijah/foot-flexing.svg"
  2763. }
  2764. },
  2765. footStepping: {
  2766. height: math.unit(1.44, "feet"),
  2767. name: "Foot (Stepping)",
  2768. image: {
  2769. source: "./media/characters/elijah/foot-stepping.svg"
  2770. }
  2771. },
  2772. plantigradeLeg: {
  2773. height: math.unit(2.34, "feet"),
  2774. name: "Plantigrade Leg",
  2775. image: {
  2776. source: "./media/characters/elijah/plantigrade-leg.svg"
  2777. }
  2778. },
  2779. plantigradeFootLeft: {
  2780. height: math.unit(0.9, "feet"),
  2781. name: "Plantigrade Foot (Left)",
  2782. image: {
  2783. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2784. }
  2785. },
  2786. plantigradeFootRight: {
  2787. height: math.unit(0.9, "feet"),
  2788. name: "Plantigrade Foot (Right)",
  2789. image: {
  2790. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2791. }
  2792. },
  2793. },
  2794. [
  2795. {
  2796. name: "Normal",
  2797. height: math.unit(1.65, "meters")
  2798. },
  2799. {
  2800. name: "Macro",
  2801. height: math.unit(55, "meters"),
  2802. default: true
  2803. },
  2804. {
  2805. name: "Macro+",
  2806. height: math.unit(105, "meters")
  2807. },
  2808. ]
  2809. ))
  2810. characterMakers.push(() => makeCharacter(
  2811. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2812. {
  2813. front: {
  2814. height: math.unit(7 + 2/12, "feet"),
  2815. weight: math.unit(320, "kg"),
  2816. name: "Front",
  2817. image: {
  2818. source: "./media/characters/rai/front.svg",
  2819. extra: 1802/1696,
  2820. bottom: 68/1870
  2821. }
  2822. },
  2823. frontDressed: {
  2824. height: math.unit(7 + 2/12, "feet"),
  2825. weight: math.unit(320, "kg"),
  2826. name: "Front (Dressed)",
  2827. image: {
  2828. source: "./media/characters/rai/front-dressed.svg",
  2829. extra: 1802/1696,
  2830. bottom: 68/1870
  2831. }
  2832. },
  2833. side: {
  2834. height: math.unit(7 + 2/12, "feet"),
  2835. weight: math.unit(320, "kg"),
  2836. name: "Side",
  2837. image: {
  2838. source: "./media/characters/rai/side.svg",
  2839. extra: 1789/1710,
  2840. bottom: 115/1904
  2841. }
  2842. },
  2843. back: {
  2844. height: math.unit(7 + 2/12, "feet"),
  2845. weight: math.unit(320, "kg"),
  2846. name: "Back",
  2847. image: {
  2848. source: "./media/characters/rai/back.svg",
  2849. extra: 1770/1707,
  2850. bottom: 28/1798
  2851. }
  2852. },
  2853. feral: {
  2854. height: math.unit(9.5, "feet"),
  2855. weight: math.unit(640, "kg"),
  2856. name: "Feral",
  2857. image: {
  2858. source: "./media/characters/rai/feral.svg",
  2859. extra: 945/553,
  2860. bottom: 176/1121
  2861. }
  2862. },
  2863. dragon: {
  2864. height: math.unit(23, "feet"),
  2865. weight: math.unit(50000, "lb"),
  2866. name: "Dragon",
  2867. image: {
  2868. source: "./media/characters/rai/dragon.svg",
  2869. extra: 2498 / 2030,
  2870. bottom: 85.2 / 2584
  2871. }
  2872. },
  2873. maw: {
  2874. height: math.unit(1.69, "feet"),
  2875. name: "Maw",
  2876. image: {
  2877. source: "./media/characters/rai/maw.svg"
  2878. }
  2879. },
  2880. },
  2881. [
  2882. {
  2883. name: "Normal",
  2884. height: math.unit(7 + 2/12, "feet")
  2885. },
  2886. {
  2887. name: "Big",
  2888. height: math.unit(11, "feet")
  2889. },
  2890. {
  2891. name: "Macro",
  2892. height: math.unit(302, "feet"),
  2893. default: true
  2894. },
  2895. ]
  2896. ))
  2897. characterMakers.push(() => makeCharacter(
  2898. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2899. {
  2900. frontDressed: {
  2901. height: math.unit(216, "feet"),
  2902. weight: math.unit(7000000, "lb"),
  2903. name: "Front (Dressed)",
  2904. image: {
  2905. source: "./media/characters/jazzy/front-dressed.svg",
  2906. extra: 2738 / 2651,
  2907. bottom: 41.8 / 2786
  2908. }
  2909. },
  2910. backDressed: {
  2911. height: math.unit(216, "feet"),
  2912. weight: math.unit(7000000, "lb"),
  2913. name: "Back (Dressed)",
  2914. image: {
  2915. source: "./media/characters/jazzy/back-dressed.svg",
  2916. extra: 2775 / 2673,
  2917. bottom: 36.8 / 2817
  2918. }
  2919. },
  2920. front: {
  2921. height: math.unit(216, "feet"),
  2922. weight: math.unit(7000000, "lb"),
  2923. name: "Front",
  2924. image: {
  2925. source: "./media/characters/jazzy/front.svg",
  2926. extra: 2738 / 2651,
  2927. bottom: 41.8 / 2786
  2928. }
  2929. },
  2930. back: {
  2931. height: math.unit(216, "feet"),
  2932. weight: math.unit(7000000, "lb"),
  2933. name: "Back",
  2934. image: {
  2935. source: "./media/characters/jazzy/back.svg",
  2936. extra: 2775 / 2673,
  2937. bottom: 36.8 / 2817
  2938. }
  2939. },
  2940. maw: {
  2941. height: math.unit(20, "feet"),
  2942. name: "Maw",
  2943. image: {
  2944. source: "./media/characters/jazzy/maw.svg"
  2945. }
  2946. },
  2947. paws: {
  2948. height: math.unit(27.5, "feet"),
  2949. name: "Paws",
  2950. image: {
  2951. source: "./media/characters/jazzy/paws.svg"
  2952. }
  2953. },
  2954. eye: {
  2955. height: math.unit(4.4, "feet"),
  2956. name: "Eye",
  2957. image: {
  2958. source: "./media/characters/jazzy/eye.svg"
  2959. }
  2960. },
  2961. droneOffense: {
  2962. height: math.unit(9.5, "inches"),
  2963. name: "Drone (Offense)",
  2964. image: {
  2965. source: "./media/characters/jazzy/drone-offense.svg"
  2966. }
  2967. },
  2968. droneRecon: {
  2969. height: math.unit(9.5, "inches"),
  2970. name: "Drone (Recon)",
  2971. image: {
  2972. source: "./media/characters/jazzy/drone-recon.svg"
  2973. }
  2974. },
  2975. droneDefense: {
  2976. height: math.unit(9.5, "inches"),
  2977. name: "Drone (Defense)",
  2978. image: {
  2979. source: "./media/characters/jazzy/drone-defense.svg"
  2980. }
  2981. },
  2982. },
  2983. [
  2984. {
  2985. name: "Macro",
  2986. height: math.unit(216, "feet"),
  2987. default: true
  2988. },
  2989. ]
  2990. ))
  2991. characterMakers.push(() => makeCharacter(
  2992. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2993. {
  2994. front: {
  2995. height: math.unit(9 + 6/12, "feet"),
  2996. weight: math.unit(700, "lb"),
  2997. name: "Front",
  2998. image: {
  2999. source: "./media/characters/flamm/front.svg",
  3000. extra: 1751/1632,
  3001. bottom: 46/1797
  3002. }
  3003. },
  3004. buff: {
  3005. height: math.unit(9 + 6/12, "feet"),
  3006. weight: math.unit(950, "lb"),
  3007. name: "Buff",
  3008. image: {
  3009. source: "./media/characters/flamm/buff.svg",
  3010. extra: 3018/2874,
  3011. bottom: 221/3239
  3012. }
  3013. },
  3014. },
  3015. [
  3016. {
  3017. name: "Normal",
  3018. height: math.unit(9.5, "feet")
  3019. },
  3020. {
  3021. name: "Macro",
  3022. height: math.unit(200, "feet"),
  3023. default: true
  3024. },
  3025. ]
  3026. ))
  3027. characterMakers.push(() => makeCharacter(
  3028. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3029. {
  3030. front: {
  3031. height: math.unit(5 + 3/12, "feet"),
  3032. weight: math.unit(60, "kg"),
  3033. name: "Front",
  3034. image: {
  3035. source: "./media/characters/zephiro/front.svg",
  3036. extra: 1873/1761,
  3037. bottom: 147/2020
  3038. }
  3039. },
  3040. side: {
  3041. height: math.unit(5 + 3/12, "feet"),
  3042. weight: math.unit(60, "kg"),
  3043. name: "Side",
  3044. image: {
  3045. source: "./media/characters/zephiro/side.svg",
  3046. extra: 1929/1827,
  3047. bottom: 65/1994
  3048. }
  3049. },
  3050. back: {
  3051. height: math.unit(5 + 3/12, "feet"),
  3052. weight: math.unit(60, "kg"),
  3053. name: "Back",
  3054. image: {
  3055. source: "./media/characters/zephiro/back.svg",
  3056. extra: 1926/1816,
  3057. bottom: 41/1967
  3058. }
  3059. },
  3060. hand: {
  3061. height: math.unit(0.68, "feet"),
  3062. name: "Hand",
  3063. image: {
  3064. source: "./media/characters/zephiro/hand.svg"
  3065. }
  3066. },
  3067. paw: {
  3068. height: math.unit(1, "feet"),
  3069. name: "Paw",
  3070. image: {
  3071. source: "./media/characters/zephiro/paw.svg"
  3072. }
  3073. },
  3074. beans: {
  3075. height: math.unit(0.93, "feet"),
  3076. name: "Beans",
  3077. image: {
  3078. source: "./media/characters/zephiro/beans.svg"
  3079. }
  3080. },
  3081. },
  3082. [
  3083. {
  3084. name: "Micro",
  3085. height: math.unit(3, "inches")
  3086. },
  3087. {
  3088. name: "Normal",
  3089. height: math.unit(5 + 3 / 12, "feet"),
  3090. default: true
  3091. },
  3092. {
  3093. name: "Macro",
  3094. height: math.unit(118, "feet")
  3095. },
  3096. ]
  3097. ))
  3098. characterMakers.push(() => makeCharacter(
  3099. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3100. {
  3101. front: {
  3102. height: math.unit(5, "feet"),
  3103. weight: math.unit(90, "kg"),
  3104. name: "Front",
  3105. image: {
  3106. source: "./media/characters/fory/front.svg",
  3107. extra: 2862 / 2674,
  3108. bottom: 180 / 3043.8
  3109. }
  3110. },
  3111. back: {
  3112. height: math.unit(5, "feet"),
  3113. weight: math.unit(90, "kg"),
  3114. name: "Back",
  3115. image: {
  3116. source: "./media/characters/fory/back.svg",
  3117. extra: 2962 / 2791,
  3118. bottom: 106 / 3071.8
  3119. }
  3120. },
  3121. foot: {
  3122. height: math.unit(2.14, "feet"),
  3123. name: "Foot",
  3124. image: {
  3125. source: "./media/characters/fory/foot.svg"
  3126. }
  3127. },
  3128. },
  3129. [
  3130. {
  3131. name: "Normal",
  3132. height: math.unit(5, "feet")
  3133. },
  3134. {
  3135. name: "Macro",
  3136. height: math.unit(50, "feet"),
  3137. default: true
  3138. },
  3139. {
  3140. name: "Megamacro",
  3141. height: math.unit(10, "miles")
  3142. },
  3143. {
  3144. name: "Gigamacro",
  3145. height: math.unit(5, "earths")
  3146. },
  3147. ]
  3148. ))
  3149. characterMakers.push(() => makeCharacter(
  3150. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3151. {
  3152. front: {
  3153. height: math.unit(7, "feet"),
  3154. weight: math.unit(90, "kg"),
  3155. name: "Front",
  3156. image: {
  3157. source: "./media/characters/kurrikage/front.svg",
  3158. extra: 1845/1733,
  3159. bottom: 119/1964
  3160. }
  3161. },
  3162. back: {
  3163. height: math.unit(7, "feet"),
  3164. weight: math.unit(90, "kg"),
  3165. name: "Back",
  3166. image: {
  3167. source: "./media/characters/kurrikage/back.svg",
  3168. extra: 1790/1677,
  3169. bottom: 61/1851
  3170. }
  3171. },
  3172. dressed: {
  3173. height: math.unit(7, "feet"),
  3174. weight: math.unit(90, "kg"),
  3175. name: "Dressed",
  3176. image: {
  3177. source: "./media/characters/kurrikage/dressed.svg",
  3178. extra: 1845/1733,
  3179. bottom: 119/1964
  3180. }
  3181. },
  3182. foot: {
  3183. height: math.unit(1.5, "feet"),
  3184. name: "Foot",
  3185. image: {
  3186. source: "./media/characters/kurrikage/foot.svg"
  3187. }
  3188. },
  3189. staff: {
  3190. height: math.unit(6.7, "feet"),
  3191. name: "Staff",
  3192. image: {
  3193. source: "./media/characters/kurrikage/staff.svg"
  3194. }
  3195. },
  3196. peek: {
  3197. height: math.unit(1.05, "feet"),
  3198. name: "Peeking",
  3199. image: {
  3200. source: "./media/characters/kurrikage/peek.svg",
  3201. bottom: 0.08
  3202. }
  3203. },
  3204. },
  3205. [
  3206. {
  3207. name: "Normal",
  3208. height: math.unit(12, "feet"),
  3209. default: true
  3210. },
  3211. {
  3212. name: "Big",
  3213. height: math.unit(20, "feet")
  3214. },
  3215. {
  3216. name: "Macro",
  3217. height: math.unit(500, "feet")
  3218. },
  3219. {
  3220. name: "Megamacro",
  3221. height: math.unit(20, "miles")
  3222. },
  3223. ]
  3224. ))
  3225. characterMakers.push(() => makeCharacter(
  3226. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3227. {
  3228. front: {
  3229. height: math.unit(6, "feet"),
  3230. weight: math.unit(75, "kg"),
  3231. name: "Front",
  3232. image: {
  3233. source: "./media/characters/shingo/front.svg",
  3234. extra: 1900/1825,
  3235. bottom: 82/1982
  3236. }
  3237. },
  3238. side: {
  3239. height: math.unit(6, "feet"),
  3240. weight: math.unit(75, "kg"),
  3241. name: "Side",
  3242. image: {
  3243. source: "./media/characters/shingo/side.svg",
  3244. extra: 1930/1865,
  3245. bottom: 16/1946
  3246. }
  3247. },
  3248. back: {
  3249. height: math.unit(6, "feet"),
  3250. weight: math.unit(75, "kg"),
  3251. name: "Back",
  3252. image: {
  3253. source: "./media/characters/shingo/back.svg",
  3254. extra: 1922/1852,
  3255. bottom: 16/1938
  3256. }
  3257. },
  3258. frontDressed: {
  3259. height: math.unit(6, "feet"),
  3260. weight: math.unit(150, "lb"),
  3261. name: "Front-dressed",
  3262. image: {
  3263. source: "./media/characters/shingo/front-dressed.svg",
  3264. extra: 1900/1825,
  3265. bottom: 82/1982
  3266. }
  3267. },
  3268. paw: {
  3269. height: math.unit(1.29, "feet"),
  3270. name: "Paw",
  3271. image: {
  3272. source: "./media/characters/shingo/paw.svg"
  3273. }
  3274. },
  3275. hand: {
  3276. height: math.unit(1.07, "feet"),
  3277. name: "Hand",
  3278. image: {
  3279. source: "./media/characters/shingo/hand.svg"
  3280. }
  3281. },
  3282. frontAlt: {
  3283. height: math.unit(6, "feet"),
  3284. weight: math.unit(75, "kg"),
  3285. name: "Front (Alt)",
  3286. image: {
  3287. source: "./media/characters/shingo/front-alt.svg",
  3288. extra: 3511 / 3338,
  3289. bottom: 0.005
  3290. }
  3291. },
  3292. frontAlt2: {
  3293. height: math.unit(6, "feet"),
  3294. weight: math.unit(75, "kg"),
  3295. name: "Front (Alt 2)",
  3296. image: {
  3297. source: "./media/characters/shingo/front-alt-2.svg",
  3298. extra: 706/681,
  3299. bottom: 11/717
  3300. }
  3301. },
  3302. pawAlt: {
  3303. height: math.unit(1, "feet"),
  3304. name: "Paw (Alt)",
  3305. image: {
  3306. source: "./media/characters/shingo/paw-alt.svg"
  3307. }
  3308. },
  3309. },
  3310. [
  3311. {
  3312. name: "Micro",
  3313. height: math.unit(4, "inches")
  3314. },
  3315. {
  3316. name: "Normal",
  3317. height: math.unit(6, "feet"),
  3318. default: true
  3319. },
  3320. {
  3321. name: "Macro",
  3322. height: math.unit(108, "feet")
  3323. },
  3324. {
  3325. name: "Macro+",
  3326. height: math.unit(1500, "feet")
  3327. },
  3328. ]
  3329. ))
  3330. characterMakers.push(() => makeCharacter(
  3331. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3332. {
  3333. side: {
  3334. height: math.unit(6, "feet"),
  3335. weight: math.unit(75, "kg"),
  3336. name: "Side",
  3337. image: {
  3338. source: "./media/characters/aigey/side.svg"
  3339. }
  3340. },
  3341. },
  3342. [
  3343. {
  3344. name: "Macro",
  3345. height: math.unit(200, "feet"),
  3346. default: true
  3347. },
  3348. {
  3349. name: "Megamacro",
  3350. height: math.unit(100, "miles")
  3351. },
  3352. ]
  3353. )
  3354. )
  3355. characterMakers.push(() => makeCharacter(
  3356. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3357. {
  3358. front: {
  3359. height: math.unit(5 + 5 / 12, "feet"),
  3360. weight: math.unit(75, "kg"),
  3361. name: "Front",
  3362. image: {
  3363. source: "./media/characters/natasha/front.svg",
  3364. extra: 859 / 824,
  3365. bottom: 23 / 879.6
  3366. }
  3367. },
  3368. frontNsfw: {
  3369. height: math.unit(5 + 5 / 12, "feet"),
  3370. weight: math.unit(75, "kg"),
  3371. name: "Front (NSFW)",
  3372. image: {
  3373. source: "./media/characters/natasha/front-nsfw.svg",
  3374. extra: 859 / 824,
  3375. bottom: 23 / 879.6
  3376. }
  3377. },
  3378. frontErect: {
  3379. height: math.unit(5 + 5 / 12, "feet"),
  3380. weight: math.unit(75, "kg"),
  3381. name: "Front (Erect)",
  3382. image: {
  3383. source: "./media/characters/natasha/front-erect.svg",
  3384. extra: 859 / 824,
  3385. bottom: 23 / 879.6
  3386. }
  3387. },
  3388. back: {
  3389. height: math.unit(5 + 5 / 12, "feet"),
  3390. weight: math.unit(75, "kg"),
  3391. name: "Back",
  3392. image: {
  3393. source: "./media/characters/natasha/back.svg",
  3394. extra: 887.9 / 852.6,
  3395. bottom: 9.7 / 896.4
  3396. }
  3397. },
  3398. backAlt: {
  3399. height: math.unit(5 + 5 / 12, "feet"),
  3400. weight: math.unit(75, "kg"),
  3401. name: "Back (Alt)",
  3402. image: {
  3403. source: "./media/characters/natasha/back-alt.svg",
  3404. extra: 1236.7 / 1192,
  3405. bottom: 22.3 / 1258.2
  3406. }
  3407. },
  3408. dick: {
  3409. height: math.unit(1.772, "feet"),
  3410. name: "Dick",
  3411. image: {
  3412. source: "./media/characters/natasha/dick.svg"
  3413. }
  3414. },
  3415. paw: {
  3416. height: math.unit(0.250, "meters"),
  3417. name: "Paw",
  3418. image: {
  3419. source: "./media/characters/natasha/paw.svg"
  3420. },
  3421. extraAttributes: {
  3422. "toeSize": {
  3423. name: "Toe Size",
  3424. power: 2,
  3425. type: "area",
  3426. base: math.unit(0.0024, "m^2")
  3427. },
  3428. "padSize": {
  3429. name: "Pad Size",
  3430. power: 2,
  3431. type: "area",
  3432. base: math.unit(0.00889, "m^2")
  3433. },
  3434. "pawSize": {
  3435. name: "Paw Size",
  3436. power: 2,
  3437. type: "area",
  3438. base: math.unit(0.023667, "m^2")
  3439. },
  3440. }
  3441. },
  3442. },
  3443. [
  3444. {
  3445. name: "Shortstack",
  3446. height: math.unit(3, "feet"),
  3447. default: true
  3448. },
  3449. {
  3450. name: "Normal",
  3451. height: math.unit(5 + 5 / 12, "feet")
  3452. },
  3453. {
  3454. name: "Large",
  3455. height: math.unit(12, "feet")
  3456. },
  3457. {
  3458. name: "Macro",
  3459. height: math.unit(100, "feet")
  3460. },
  3461. {
  3462. name: "Macro+",
  3463. height: math.unit(260, "feet")
  3464. },
  3465. {
  3466. name: "Macro++",
  3467. height: math.unit(1, "mile")
  3468. },
  3469. ]
  3470. ))
  3471. characterMakers.push(() => makeCharacter(
  3472. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3473. {
  3474. front: {
  3475. height: math.unit(6, "feet"),
  3476. weight: math.unit(75, "kg"),
  3477. name: "Front",
  3478. image: {
  3479. source: "./media/characters/malik/front.svg",
  3480. extra: 1750/1561,
  3481. bottom: 80/1830
  3482. },
  3483. extraAttributes: {
  3484. "toeSize": {
  3485. name: "Toe Size",
  3486. power: 2,
  3487. type: "area",
  3488. base: math.unit(0.0159, "m^2")
  3489. },
  3490. "pawSize": {
  3491. name: "Paw Size",
  3492. power: 2,
  3493. type: "area",
  3494. base: math.unit(0.09834, "m^2")
  3495. },
  3496. }
  3497. },
  3498. side: {
  3499. height: math.unit(6, "feet"),
  3500. weight: math.unit(75, "kg"),
  3501. name: "Side",
  3502. image: {
  3503. source: "./media/characters/malik/side.svg",
  3504. extra: 1802/1685,
  3505. bottom: 42/1844
  3506. },
  3507. extraAttributes: {
  3508. "toeSize": {
  3509. name: "Toe Size",
  3510. power: 2,
  3511. type: "area",
  3512. base: math.unit(0.0159, "m^2")
  3513. },
  3514. "pawSize": {
  3515. name: "Paw Size",
  3516. power: 2,
  3517. type: "area",
  3518. base: math.unit(0.09834, "m^2")
  3519. },
  3520. }
  3521. },
  3522. back: {
  3523. height: math.unit(6, "feet"),
  3524. weight: math.unit(75, "kg"),
  3525. name: "Back",
  3526. image: {
  3527. source: "./media/characters/malik/back.svg",
  3528. extra: 1803/1607,
  3529. bottom: 33/1836
  3530. },
  3531. extraAttributes: {
  3532. "toeSize": {
  3533. name: "Toe Size",
  3534. power: 2,
  3535. type: "area",
  3536. base: math.unit(0.0159, "m^2")
  3537. },
  3538. "pawSize": {
  3539. name: "Paw Size",
  3540. power: 2,
  3541. type: "area",
  3542. base: math.unit(0.09834, "m^2")
  3543. },
  3544. }
  3545. },
  3546. },
  3547. [
  3548. {
  3549. name: "Macro",
  3550. height: math.unit(156, "feet"),
  3551. default: true
  3552. },
  3553. {
  3554. name: "Macro+",
  3555. height: math.unit(1188, "feet")
  3556. },
  3557. ]
  3558. ))
  3559. characterMakers.push(() => makeCharacter(
  3560. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3561. {
  3562. front: {
  3563. height: math.unit(6, "feet"),
  3564. weight: math.unit(75, "kg"),
  3565. name: "Front",
  3566. image: {
  3567. source: "./media/characters/sefer/front.svg",
  3568. extra: 848 / 659,
  3569. bottom: 28.3 / 876.442
  3570. }
  3571. },
  3572. back: {
  3573. height: math.unit(6, "feet"),
  3574. weight: math.unit(75, "kg"),
  3575. name: "Back",
  3576. image: {
  3577. source: "./media/characters/sefer/back.svg",
  3578. extra: 864 / 695,
  3579. bottom: 10 / 871
  3580. }
  3581. },
  3582. frontDressed: {
  3583. height: math.unit(6, "feet"),
  3584. weight: math.unit(75, "kg"),
  3585. name: "Dressed",
  3586. image: {
  3587. source: "./media/characters/sefer/dressed.svg",
  3588. extra: 839 / 653,
  3589. bottom: 37.6 / 878
  3590. }
  3591. },
  3592. },
  3593. [
  3594. {
  3595. name: "Normal",
  3596. height: math.unit(6, "feet"),
  3597. default: true
  3598. },
  3599. {
  3600. name: "Big",
  3601. height: math.unit(8, "meters")
  3602. },
  3603. ]
  3604. ))
  3605. characterMakers.push(() => makeCharacter(
  3606. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3607. {
  3608. body: {
  3609. height: math.unit(2.2428, "meter"),
  3610. weight: math.unit(124.738, "kg"),
  3611. name: "Body",
  3612. image: {
  3613. extra: 1225 / 1050,
  3614. source: "./media/characters/north/front.svg"
  3615. }
  3616. }
  3617. },
  3618. [
  3619. {
  3620. name: "Micro",
  3621. height: math.unit(4, "inches")
  3622. },
  3623. {
  3624. name: "Macro",
  3625. height: math.unit(63, "meters")
  3626. },
  3627. {
  3628. name: "Megamacro",
  3629. height: math.unit(101, "miles"),
  3630. default: true
  3631. }
  3632. ]
  3633. ))
  3634. characterMakers.push(() => makeCharacter(
  3635. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3636. {
  3637. angled: {
  3638. height: math.unit(4, "meter"),
  3639. weight: math.unit(150, "kg"),
  3640. name: "Angled",
  3641. image: {
  3642. source: "./media/characters/talan/angled-sfw.svg",
  3643. bottom: 29 / 3734
  3644. }
  3645. },
  3646. angledNsfw: {
  3647. height: math.unit(4, "meter"),
  3648. weight: math.unit(150, "kg"),
  3649. name: "Angled (NSFW)",
  3650. image: {
  3651. source: "./media/characters/talan/angled-nsfw.svg",
  3652. bottom: 29 / 3734
  3653. }
  3654. },
  3655. frontNsfw: {
  3656. height: math.unit(4, "meter"),
  3657. weight: math.unit(150, "kg"),
  3658. name: "Front (NSFW)",
  3659. image: {
  3660. source: "./media/characters/talan/front-nsfw.svg",
  3661. bottom: 29 / 3734
  3662. }
  3663. },
  3664. sideNsfw: {
  3665. height: math.unit(4, "meter"),
  3666. weight: math.unit(150, "kg"),
  3667. name: "Side (NSFW)",
  3668. image: {
  3669. source: "./media/characters/talan/side-nsfw.svg",
  3670. bottom: 29 / 3734
  3671. }
  3672. },
  3673. back: {
  3674. height: math.unit(4, "meter"),
  3675. weight: math.unit(150, "kg"),
  3676. name: "Back",
  3677. image: {
  3678. source: "./media/characters/talan/back.svg"
  3679. }
  3680. },
  3681. dickBottom: {
  3682. height: math.unit(0.621, "meter"),
  3683. name: "Dick (Bottom)",
  3684. image: {
  3685. source: "./media/characters/talan/dick-bottom.svg"
  3686. }
  3687. },
  3688. dickTop: {
  3689. height: math.unit(0.621, "meter"),
  3690. name: "Dick (Top)",
  3691. image: {
  3692. source: "./media/characters/talan/dick-top.svg"
  3693. }
  3694. },
  3695. dickSide: {
  3696. height: math.unit(0.305, "meter"),
  3697. name: "Dick (Side)",
  3698. image: {
  3699. source: "./media/characters/talan/dick-side.svg"
  3700. }
  3701. },
  3702. dickFront: {
  3703. height: math.unit(0.305, "meter"),
  3704. name: "Dick (Front)",
  3705. image: {
  3706. source: "./media/characters/talan/dick-front.svg"
  3707. }
  3708. },
  3709. },
  3710. [
  3711. {
  3712. name: "Normal",
  3713. height: math.unit(4, "meters")
  3714. },
  3715. {
  3716. name: "Macro",
  3717. height: math.unit(100, "meters")
  3718. },
  3719. {
  3720. name: "Megamacro",
  3721. height: math.unit(2, "miles"),
  3722. default: true
  3723. },
  3724. {
  3725. name: "Gigamacro",
  3726. height: math.unit(5000, "miles")
  3727. },
  3728. {
  3729. name: "Teramacro",
  3730. height: math.unit(100, "parsecs")
  3731. }
  3732. ]
  3733. ))
  3734. characterMakers.push(() => makeCharacter(
  3735. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3736. {
  3737. front: {
  3738. height: math.unit(2, "meter"),
  3739. weight: math.unit(90, "kg"),
  3740. name: "Front",
  3741. image: {
  3742. source: "./media/characters/gael'rathus/front.svg"
  3743. }
  3744. },
  3745. frontAlt: {
  3746. height: math.unit(2, "meter"),
  3747. weight: math.unit(90, "kg"),
  3748. name: "Front (alt)",
  3749. image: {
  3750. source: "./media/characters/gael'rathus/front-alt.svg"
  3751. }
  3752. },
  3753. frontAlt2: {
  3754. height: math.unit(2, "meter"),
  3755. weight: math.unit(90, "kg"),
  3756. name: "Front (alt 2)",
  3757. image: {
  3758. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3759. }
  3760. }
  3761. },
  3762. [
  3763. {
  3764. name: "Normal",
  3765. height: math.unit(9, "feet"),
  3766. default: true
  3767. },
  3768. {
  3769. name: "Large",
  3770. height: math.unit(25, "feet")
  3771. },
  3772. {
  3773. name: "Macro",
  3774. height: math.unit(0.25, "miles")
  3775. },
  3776. {
  3777. name: "Megamacro",
  3778. height: math.unit(10, "miles")
  3779. }
  3780. ]
  3781. ))
  3782. characterMakers.push(() => makeCharacter(
  3783. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3784. {
  3785. side: {
  3786. height: math.unit(2, "meter"),
  3787. weight: math.unit(140, "kg"),
  3788. name: "Side",
  3789. image: {
  3790. source: "./media/characters/sosha/side.svg",
  3791. extra: 1170/1006,
  3792. bottom: 94/1264
  3793. }
  3794. },
  3795. maw: {
  3796. height: math.unit(2.87, "feet"),
  3797. name: "Maw",
  3798. image: {
  3799. source: "./media/characters/sosha/maw.svg",
  3800. extra: 966/865,
  3801. bottom: 0/966
  3802. }
  3803. },
  3804. cooch: {
  3805. height: math.unit(5.6, "feet"),
  3806. name: "Cooch",
  3807. image: {
  3808. source: "./media/characters/sosha/cooch.svg"
  3809. }
  3810. },
  3811. },
  3812. [
  3813. {
  3814. name: "Normal",
  3815. height: math.unit(12, "feet"),
  3816. default: true
  3817. }
  3818. ]
  3819. ))
  3820. characterMakers.push(() => makeCharacter(
  3821. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3822. {
  3823. side: {
  3824. height: math.unit(5 + 5 / 12, "feet"),
  3825. weight: math.unit(170, "kg"),
  3826. name: "Side",
  3827. image: {
  3828. source: "./media/characters/runnola/side.svg",
  3829. extra: 741 / 448,
  3830. bottom: 0.05
  3831. }
  3832. },
  3833. },
  3834. [
  3835. {
  3836. name: "Small",
  3837. height: math.unit(3, "feet")
  3838. },
  3839. {
  3840. name: "Normal",
  3841. height: math.unit(5 + 5 / 12, "feet"),
  3842. default: true
  3843. },
  3844. {
  3845. name: "Big",
  3846. height: math.unit(10, "feet")
  3847. },
  3848. ]
  3849. ))
  3850. characterMakers.push(() => makeCharacter(
  3851. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3852. {
  3853. front: {
  3854. height: math.unit(2, "meter"),
  3855. weight: math.unit(50, "kg"),
  3856. name: "Front",
  3857. image: {
  3858. source: "./media/characters/kurribird/front.svg",
  3859. bottom: 0.015
  3860. }
  3861. },
  3862. frontAlt: {
  3863. height: math.unit(1.5, "meter"),
  3864. weight: math.unit(50, "kg"),
  3865. name: "Front (Alt)",
  3866. image: {
  3867. source: "./media/characters/kurribird/front-alt.svg",
  3868. extra: 1.45
  3869. }
  3870. },
  3871. },
  3872. [
  3873. {
  3874. name: "Normal",
  3875. height: math.unit(7, "feet")
  3876. },
  3877. {
  3878. name: "Big",
  3879. height: math.unit(12, "feet"),
  3880. default: true
  3881. },
  3882. {
  3883. name: "Macro",
  3884. height: math.unit(1500, "feet")
  3885. },
  3886. {
  3887. name: "Megamacro",
  3888. height: math.unit(2, "miles")
  3889. }
  3890. ]
  3891. ))
  3892. characterMakers.push(() => makeCharacter(
  3893. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3894. {
  3895. front: {
  3896. height: math.unit(2, "meter"),
  3897. weight: math.unit(80, "kg"),
  3898. name: "Front",
  3899. image: {
  3900. source: "./media/characters/elbial/front.svg",
  3901. extra: 1643 / 1556,
  3902. bottom: 60.2 / 1696
  3903. }
  3904. },
  3905. side: {
  3906. height: math.unit(2, "meter"),
  3907. weight: math.unit(80, "kg"),
  3908. name: "Side",
  3909. image: {
  3910. source: "./media/characters/elbial/side.svg",
  3911. extra: 1601/1528,
  3912. bottom: 97/1698
  3913. }
  3914. },
  3915. back: {
  3916. height: math.unit(2, "meter"),
  3917. weight: math.unit(80, "kg"),
  3918. name: "Back",
  3919. image: {
  3920. source: "./media/characters/elbial/back.svg",
  3921. extra: 1653/1569,
  3922. bottom: 20/1673
  3923. }
  3924. },
  3925. frontDressed: {
  3926. height: math.unit(2, "meter"),
  3927. weight: math.unit(80, "kg"),
  3928. name: "Front (Dressed)",
  3929. image: {
  3930. source: "./media/characters/elbial/front-dressed.svg",
  3931. extra: 1638/1569,
  3932. bottom: 70/1708
  3933. }
  3934. },
  3935. genitals: {
  3936. height: math.unit(2 / 3.367, "meter"),
  3937. name: "Genitals",
  3938. image: {
  3939. source: "./media/characters/elbial/genitals.svg"
  3940. }
  3941. },
  3942. },
  3943. [
  3944. {
  3945. name: "Large",
  3946. height: math.unit(100, "feet")
  3947. },
  3948. {
  3949. name: "Macro",
  3950. height: math.unit(500, "feet"),
  3951. default: true
  3952. },
  3953. {
  3954. name: "Megamacro",
  3955. height: math.unit(10, "miles")
  3956. },
  3957. {
  3958. name: "Gigamacro",
  3959. height: math.unit(25000, "miles")
  3960. },
  3961. {
  3962. name: "Full-Size",
  3963. height: math.unit(8000000, "gigaparsecs")
  3964. }
  3965. ]
  3966. ))
  3967. characterMakers.push(() => makeCharacter(
  3968. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3969. {
  3970. front: {
  3971. height: math.unit(2, "meter"),
  3972. weight: math.unit(60, "kg"),
  3973. name: "Front",
  3974. image: {
  3975. source: "./media/characters/noah/front.svg"
  3976. }
  3977. },
  3978. talons: {
  3979. height: math.unit(0.315, "meter"),
  3980. name: "Talons",
  3981. image: {
  3982. source: "./media/characters/noah/talons.svg"
  3983. }
  3984. }
  3985. },
  3986. [
  3987. {
  3988. name: "Large",
  3989. height: math.unit(50, "feet")
  3990. },
  3991. {
  3992. name: "Macro",
  3993. height: math.unit(750, "feet"),
  3994. default: true
  3995. },
  3996. {
  3997. name: "Megamacro",
  3998. height: math.unit(50, "miles")
  3999. },
  4000. {
  4001. name: "Gigamacro",
  4002. height: math.unit(100000, "miles")
  4003. },
  4004. {
  4005. name: "Full-Size",
  4006. height: math.unit(3000000000, "miles")
  4007. }
  4008. ]
  4009. ))
  4010. characterMakers.push(() => makeCharacter(
  4011. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4012. {
  4013. front: {
  4014. height: math.unit(2, "meter"),
  4015. weight: math.unit(80, "kg"),
  4016. name: "Front",
  4017. image: {
  4018. source: "./media/characters/natalya/front.svg"
  4019. }
  4020. },
  4021. back: {
  4022. height: math.unit(2, "meter"),
  4023. weight: math.unit(80, "kg"),
  4024. name: "Back",
  4025. image: {
  4026. source: "./media/characters/natalya/back.svg"
  4027. }
  4028. }
  4029. },
  4030. [
  4031. {
  4032. name: "Normal",
  4033. height: math.unit(150, "feet"),
  4034. default: true
  4035. },
  4036. {
  4037. name: "Megamacro",
  4038. height: math.unit(5, "miles")
  4039. },
  4040. {
  4041. name: "Full-Size",
  4042. height: math.unit(600, "kiloparsecs")
  4043. }
  4044. ]
  4045. ))
  4046. characterMakers.push(() => makeCharacter(
  4047. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4048. {
  4049. front: {
  4050. height: math.unit(2, "meter"),
  4051. weight: math.unit(50, "kg"),
  4052. name: "Front",
  4053. image: {
  4054. source: "./media/characters/erestrebah/front.svg",
  4055. extra: 1262/1162,
  4056. bottom: 96/1358
  4057. }
  4058. },
  4059. back: {
  4060. height: math.unit(2, "meter"),
  4061. weight: math.unit(50, "kg"),
  4062. name: "Back",
  4063. image: {
  4064. source: "./media/characters/erestrebah/back.svg",
  4065. extra: 1257/1139,
  4066. bottom: 13/1270
  4067. }
  4068. },
  4069. wing: {
  4070. height: math.unit(2, "meter"),
  4071. weight: math.unit(50, "kg"),
  4072. name: "Wing",
  4073. image: {
  4074. source: "./media/characters/erestrebah/wing.svg",
  4075. extra: 1262/1162,
  4076. bottom: 96/1358
  4077. }
  4078. },
  4079. mouth: {
  4080. height: math.unit(0.39, "feet"),
  4081. name: "Mouth",
  4082. image: {
  4083. source: "./media/characters/erestrebah/mouth.svg"
  4084. }
  4085. }
  4086. },
  4087. [
  4088. {
  4089. name: "Normal",
  4090. height: math.unit(10, "feet")
  4091. },
  4092. {
  4093. name: "Large",
  4094. height: math.unit(50, "feet"),
  4095. default: true
  4096. },
  4097. {
  4098. name: "Macro",
  4099. height: math.unit(300, "feet")
  4100. },
  4101. {
  4102. name: "Macro+",
  4103. height: math.unit(750, "feet")
  4104. },
  4105. {
  4106. name: "Megamacro",
  4107. height: math.unit(3, "miles")
  4108. }
  4109. ]
  4110. ))
  4111. characterMakers.push(() => makeCharacter(
  4112. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4113. {
  4114. front: {
  4115. height: math.unit(2, "meter"),
  4116. weight: math.unit(80, "kg"),
  4117. name: "Front",
  4118. image: {
  4119. source: "./media/characters/jennifer/front.svg",
  4120. bottom: 0.11,
  4121. extra: 1.16
  4122. }
  4123. },
  4124. frontAlt: {
  4125. height: math.unit(2, "meter"),
  4126. weight: math.unit(80, "kg"),
  4127. name: "Front (Alt)",
  4128. image: {
  4129. source: "./media/characters/jennifer/front-alt.svg"
  4130. }
  4131. }
  4132. },
  4133. [
  4134. {
  4135. name: "Canon Height",
  4136. height: math.unit(120, "feet"),
  4137. default: true
  4138. },
  4139. {
  4140. name: "Macro+",
  4141. height: math.unit(300, "feet")
  4142. },
  4143. {
  4144. name: "Megamacro",
  4145. height: math.unit(20000, "feet")
  4146. }
  4147. ]
  4148. ))
  4149. characterMakers.push(() => makeCharacter(
  4150. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4151. {
  4152. front: {
  4153. height: math.unit(2, "meter"),
  4154. weight: math.unit(50, "kg"),
  4155. name: "Front",
  4156. image: {
  4157. source: "./media/characters/kalista/front.svg",
  4158. extra: 1314/1145,
  4159. bottom: 101/1415
  4160. }
  4161. },
  4162. back: {
  4163. height: math.unit(2, "meter"),
  4164. weight: math.unit(50, "kg"),
  4165. name: "Back",
  4166. image: {
  4167. source: "./media/characters/kalista/back.svg",
  4168. extra: 1366 / 1156,
  4169. bottom: 33.9 / 1362.78
  4170. }
  4171. }
  4172. },
  4173. [
  4174. {
  4175. name: "Uncomfortably Small",
  4176. height: math.unit(10, "feet")
  4177. },
  4178. {
  4179. name: "Small",
  4180. height: math.unit(30, "feet")
  4181. },
  4182. {
  4183. name: "Macro",
  4184. height: math.unit(100, "feet"),
  4185. default: true
  4186. },
  4187. {
  4188. name: "Macro+",
  4189. height: math.unit(2000, "feet")
  4190. },
  4191. {
  4192. name: "True Form",
  4193. height: math.unit(8924, "miles")
  4194. }
  4195. ]
  4196. ))
  4197. characterMakers.push(() => makeCharacter(
  4198. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4199. {
  4200. front: {
  4201. height: math.unit(2, "meter"),
  4202. weight: math.unit(120, "kg"),
  4203. name: "Front",
  4204. image: {
  4205. source: "./media/characters/ggv/front.svg"
  4206. }
  4207. },
  4208. side: {
  4209. height: math.unit(2, "meter"),
  4210. weight: math.unit(120, "kg"),
  4211. name: "Side",
  4212. image: {
  4213. source: "./media/characters/ggv/side.svg"
  4214. }
  4215. }
  4216. },
  4217. [
  4218. {
  4219. name: "Extremely Puny",
  4220. height: math.unit(9 + 5 / 12, "feet")
  4221. },
  4222. {
  4223. name: "Horribly Small",
  4224. height: math.unit(47.7, "miles"),
  4225. default: true
  4226. },
  4227. {
  4228. name: "Reasonably Sized",
  4229. height: math.unit(25000, "parsecs")
  4230. },
  4231. {
  4232. name: "Slightly Uncompressed",
  4233. height: math.unit(7.77e31, "parsecs")
  4234. },
  4235. {
  4236. name: "Omniversal",
  4237. height: math.unit(1e300, "meters")
  4238. },
  4239. ]
  4240. ))
  4241. characterMakers.push(() => makeCharacter(
  4242. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4243. {
  4244. front: {
  4245. height: math.unit(2, "meter"),
  4246. weight: math.unit(75, "lb"),
  4247. name: "Front",
  4248. image: {
  4249. source: "./media/characters/napalm/front.svg"
  4250. }
  4251. },
  4252. back: {
  4253. height: math.unit(2, "meter"),
  4254. weight: math.unit(75, "lb"),
  4255. name: "Back",
  4256. image: {
  4257. source: "./media/characters/napalm/back.svg"
  4258. }
  4259. }
  4260. },
  4261. [
  4262. {
  4263. name: "Standard",
  4264. height: math.unit(55, "feet"),
  4265. default: true
  4266. }
  4267. ]
  4268. ))
  4269. characterMakers.push(() => makeCharacter(
  4270. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4271. {
  4272. front: {
  4273. height: math.unit(7 + 5 / 6, "feet"),
  4274. weight: math.unit(325, "lb"),
  4275. name: "Front",
  4276. image: {
  4277. source: "./media/characters/asana/front.svg",
  4278. extra: 1133 / 1060,
  4279. bottom: 15.2 / 1148.6
  4280. }
  4281. },
  4282. back: {
  4283. height: math.unit(7 + 5 / 6, "feet"),
  4284. weight: math.unit(325, "lb"),
  4285. name: "Back",
  4286. image: {
  4287. source: "./media/characters/asana/back.svg",
  4288. extra: 1114 / 1043,
  4289. bottom: 5 / 1120
  4290. }
  4291. },
  4292. dressedDark: {
  4293. height: math.unit(7 + 5 / 6, "feet"),
  4294. weight: math.unit(325, "lb"),
  4295. name: "Dressed (Dark)",
  4296. image: {
  4297. source: "./media/characters/asana/dressed-dark.svg",
  4298. extra: 1133 / 1060,
  4299. bottom: 15.2 / 1148.6
  4300. }
  4301. },
  4302. dressedLight: {
  4303. height: math.unit(7 + 5 / 6, "feet"),
  4304. weight: math.unit(325, "lb"),
  4305. name: "Dressed (Light)",
  4306. image: {
  4307. source: "./media/characters/asana/dressed-light.svg",
  4308. extra: 1133 / 1060,
  4309. bottom: 15.2 / 1148.6
  4310. }
  4311. },
  4312. },
  4313. [
  4314. {
  4315. name: "Standard",
  4316. height: math.unit(7 + 5 / 6, "feet"),
  4317. default: true
  4318. },
  4319. {
  4320. name: "Large",
  4321. height: math.unit(10, "meters")
  4322. },
  4323. {
  4324. name: "Macro",
  4325. height: math.unit(2500, "meters")
  4326. },
  4327. {
  4328. name: "Megamacro",
  4329. height: math.unit(5e6, "meters")
  4330. },
  4331. {
  4332. name: "Examacro",
  4333. height: math.unit(5e12, "lightyears")
  4334. },
  4335. {
  4336. name: "Max Size",
  4337. height: math.unit(1e31, "lightyears")
  4338. }
  4339. ]
  4340. ))
  4341. characterMakers.push(() => makeCharacter(
  4342. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4343. {
  4344. front: {
  4345. height: math.unit(2, "meter"),
  4346. weight: math.unit(60, "kg"),
  4347. name: "Front",
  4348. image: {
  4349. source: "./media/characters/ebony/front.svg",
  4350. bottom: 0.03,
  4351. extra: 1045 / 810 + 0.03
  4352. }
  4353. },
  4354. side: {
  4355. height: math.unit(2, "meter"),
  4356. weight: math.unit(60, "kg"),
  4357. name: "Side",
  4358. image: {
  4359. source: "./media/characters/ebony/side.svg",
  4360. bottom: 0.03,
  4361. extra: 1045 / 810 + 0.03
  4362. }
  4363. },
  4364. back: {
  4365. height: math.unit(2, "meter"),
  4366. weight: math.unit(60, "kg"),
  4367. name: "Back",
  4368. image: {
  4369. source: "./media/characters/ebony/back.svg",
  4370. bottom: 0.01,
  4371. extra: 1045 / 810 + 0.01
  4372. }
  4373. },
  4374. },
  4375. [
  4376. // TODO check why I did this lol
  4377. {
  4378. name: "Standard",
  4379. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4380. default: true
  4381. },
  4382. {
  4383. name: "Macro",
  4384. height: math.unit(200, "feet")
  4385. },
  4386. {
  4387. name: "Gigamacro",
  4388. height: math.unit(13000, "km")
  4389. }
  4390. ]
  4391. ))
  4392. characterMakers.push(() => makeCharacter(
  4393. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4394. {
  4395. front: {
  4396. height: math.unit(6, "feet"),
  4397. weight: math.unit(175, "lb"),
  4398. name: "Front",
  4399. image: {
  4400. source: "./media/characters/mountain/front.svg",
  4401. extra: 972 / 955,
  4402. bottom: 64 / 1036.6
  4403. }
  4404. },
  4405. back: {
  4406. height: math.unit(6, "feet"),
  4407. weight: math.unit(175, "lb"),
  4408. name: "Back",
  4409. image: {
  4410. source: "./media/characters/mountain/back.svg",
  4411. extra: 970 / 950,
  4412. bottom: 28.25 / 999
  4413. }
  4414. },
  4415. },
  4416. [
  4417. {
  4418. name: "Large",
  4419. height: math.unit(20, "meters")
  4420. },
  4421. {
  4422. name: "Macro",
  4423. height: math.unit(300, "meters")
  4424. },
  4425. {
  4426. name: "Gigamacro",
  4427. height: math.unit(10000, "km"),
  4428. default: true
  4429. },
  4430. {
  4431. name: "Examacro",
  4432. height: math.unit(10e9, "lightyears")
  4433. }
  4434. ]
  4435. ))
  4436. characterMakers.push(() => makeCharacter(
  4437. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4438. {
  4439. front: {
  4440. height: math.unit(8, "feet"),
  4441. weight: math.unit(500, "lb"),
  4442. name: "Front",
  4443. image: {
  4444. source: "./media/characters/rick/front.svg"
  4445. }
  4446. }
  4447. },
  4448. [
  4449. {
  4450. name: "Normal",
  4451. height: math.unit(8, "feet"),
  4452. default: true
  4453. },
  4454. {
  4455. name: "Macro",
  4456. height: math.unit(5, "km")
  4457. }
  4458. ]
  4459. ))
  4460. characterMakers.push(() => makeCharacter(
  4461. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4462. {
  4463. front: {
  4464. height: math.unit(8, "feet"),
  4465. weight: math.unit(120, "lb"),
  4466. name: "Front",
  4467. image: {
  4468. source: "./media/characters/ona/front.svg"
  4469. }
  4470. },
  4471. frontAlt: {
  4472. height: math.unit(8, "feet"),
  4473. weight: math.unit(120, "lb"),
  4474. name: "Front (Alt)",
  4475. image: {
  4476. source: "./media/characters/ona/front-alt.svg"
  4477. }
  4478. },
  4479. back: {
  4480. height: math.unit(8, "feet"),
  4481. weight: math.unit(120, "lb"),
  4482. name: "Back",
  4483. image: {
  4484. source: "./media/characters/ona/back.svg"
  4485. }
  4486. },
  4487. foot: {
  4488. height: math.unit(1.1, "feet"),
  4489. name: "Foot",
  4490. image: {
  4491. source: "./media/characters/ona/foot.svg"
  4492. }
  4493. }
  4494. },
  4495. [
  4496. {
  4497. name: "Megamacro",
  4498. height: math.unit(70, "km"),
  4499. default: true
  4500. },
  4501. {
  4502. name: "Gigamacro",
  4503. height: math.unit(681818, "miles")
  4504. },
  4505. {
  4506. name: "Examacro",
  4507. height: math.unit(3800000, "lightyears")
  4508. },
  4509. ]
  4510. ))
  4511. characterMakers.push(() => makeCharacter(
  4512. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4513. {
  4514. front: {
  4515. height: math.unit(12, "feet"),
  4516. weight: math.unit(3000, "lb"),
  4517. name: "Front",
  4518. image: {
  4519. source: "./media/characters/mech/front.svg",
  4520. extra: 2900 / 2770,
  4521. bottom: 110 / 3010
  4522. }
  4523. },
  4524. back: {
  4525. height: math.unit(12, "feet"),
  4526. weight: math.unit(3000, "lb"),
  4527. name: "Back",
  4528. image: {
  4529. source: "./media/characters/mech/back.svg",
  4530. extra: 3011 / 2890,
  4531. bottom: 94 / 3105
  4532. }
  4533. },
  4534. maw: {
  4535. height: math.unit(3.07, "feet"),
  4536. name: "Maw",
  4537. image: {
  4538. source: "./media/characters/mech/maw.svg"
  4539. }
  4540. },
  4541. head: {
  4542. height: math.unit(3.07, "feet"),
  4543. name: "Head",
  4544. image: {
  4545. source: "./media/characters/mech/head.svg"
  4546. }
  4547. },
  4548. dick: {
  4549. height: math.unit(1.43, "feet"),
  4550. name: "Dick",
  4551. image: {
  4552. source: "./media/characters/mech/dick.svg"
  4553. }
  4554. },
  4555. },
  4556. [
  4557. {
  4558. name: "Normal",
  4559. height: math.unit(12, "feet")
  4560. },
  4561. {
  4562. name: "Macro",
  4563. height: math.unit(300, "feet"),
  4564. default: true
  4565. },
  4566. {
  4567. name: "Macro+",
  4568. height: math.unit(1500, "feet")
  4569. },
  4570. ]
  4571. ))
  4572. characterMakers.push(() => makeCharacter(
  4573. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4574. {
  4575. front: {
  4576. height: math.unit(1.3, "meter"),
  4577. weight: math.unit(30, "kg"),
  4578. name: "Front",
  4579. image: {
  4580. source: "./media/characters/gregory/front.svg",
  4581. }
  4582. }
  4583. },
  4584. [
  4585. {
  4586. name: "Normal",
  4587. height: math.unit(1.3, "meter"),
  4588. default: true
  4589. },
  4590. {
  4591. name: "Macro",
  4592. height: math.unit(20, "meter")
  4593. }
  4594. ]
  4595. ))
  4596. characterMakers.push(() => makeCharacter(
  4597. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4598. {
  4599. front: {
  4600. height: math.unit(2.8, "meter"),
  4601. weight: math.unit(200, "kg"),
  4602. name: "Front",
  4603. image: {
  4604. source: "./media/characters/elory/front.svg",
  4605. }
  4606. }
  4607. },
  4608. [
  4609. {
  4610. name: "Normal",
  4611. height: math.unit(2.8, "meter"),
  4612. default: true
  4613. },
  4614. {
  4615. name: "Macro",
  4616. height: math.unit(38, "meter")
  4617. }
  4618. ]
  4619. ))
  4620. characterMakers.push(() => makeCharacter(
  4621. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4622. {
  4623. front: {
  4624. height: math.unit(470, "feet"),
  4625. weight: math.unit(924, "tons"),
  4626. name: "Front",
  4627. image: {
  4628. source: "./media/characters/angelpatamon/front.svg",
  4629. }
  4630. }
  4631. },
  4632. [
  4633. {
  4634. name: "Normal",
  4635. height: math.unit(470, "feet"),
  4636. default: true
  4637. },
  4638. {
  4639. name: "Deity Size I",
  4640. height: math.unit(28651.2, "km")
  4641. },
  4642. {
  4643. name: "Deity Size II",
  4644. height: math.unit(171907.2, "km")
  4645. }
  4646. ]
  4647. ))
  4648. characterMakers.push(() => makeCharacter(
  4649. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4650. {
  4651. side: {
  4652. height: math.unit(7.2, "meter"),
  4653. weight: math.unit(8.2, "tons"),
  4654. name: "Side",
  4655. image: {
  4656. source: "./media/characters/cryae/side.svg",
  4657. extra: 3500 / 1500
  4658. }
  4659. }
  4660. },
  4661. [
  4662. {
  4663. name: "Normal",
  4664. height: math.unit(7.2, "meter"),
  4665. default: true
  4666. }
  4667. ]
  4668. ))
  4669. characterMakers.push(() => makeCharacter(
  4670. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4671. {
  4672. front: {
  4673. height: math.unit(6, "feet"),
  4674. weight: math.unit(175, "lb"),
  4675. name: "Front",
  4676. image: {
  4677. source: "./media/characters/xera/front.svg",
  4678. extra: 2377 / 1972,
  4679. bottom: 75.5 / 2452
  4680. }
  4681. },
  4682. side: {
  4683. height: math.unit(6, "feet"),
  4684. weight: math.unit(175, "lb"),
  4685. name: "Side",
  4686. image: {
  4687. source: "./media/characters/xera/side.svg",
  4688. extra: 2345 / 2019,
  4689. bottom: 39.7 / 2384
  4690. }
  4691. },
  4692. back: {
  4693. height: math.unit(6, "feet"),
  4694. weight: math.unit(175, "lb"),
  4695. name: "Back",
  4696. image: {
  4697. source: "./media/characters/xera/back.svg",
  4698. extra: 2095 / 1984,
  4699. bottom: 67 / 2166
  4700. }
  4701. },
  4702. },
  4703. [
  4704. {
  4705. name: "Small",
  4706. height: math.unit(10, "feet")
  4707. },
  4708. {
  4709. name: "Macro",
  4710. height: math.unit(500, "meters"),
  4711. default: true
  4712. },
  4713. {
  4714. name: "Macro+",
  4715. height: math.unit(10, "km")
  4716. },
  4717. {
  4718. name: "Gigamacro",
  4719. height: math.unit(25000, "km")
  4720. },
  4721. {
  4722. name: "Teramacro",
  4723. height: math.unit(3e6, "km")
  4724. }
  4725. ]
  4726. ))
  4727. characterMakers.push(() => makeCharacter(
  4728. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4729. {
  4730. front: {
  4731. height: math.unit(6, "feet"),
  4732. weight: math.unit(175, "lb"),
  4733. name: "Front",
  4734. image: {
  4735. source: "./media/characters/nebula/front.svg",
  4736. extra: 2566 / 2362,
  4737. bottom: 81 / 2644
  4738. }
  4739. }
  4740. },
  4741. [
  4742. {
  4743. name: "Small",
  4744. height: math.unit(4.5, "meters")
  4745. },
  4746. {
  4747. name: "Macro",
  4748. height: math.unit(1500, "meters"),
  4749. default: true
  4750. },
  4751. {
  4752. name: "Megamacro",
  4753. height: math.unit(150, "km")
  4754. },
  4755. {
  4756. name: "Gigamacro",
  4757. height: math.unit(27000, "km")
  4758. }
  4759. ]
  4760. ))
  4761. characterMakers.push(() => makeCharacter(
  4762. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4763. {
  4764. front: {
  4765. height: math.unit(6, "feet"),
  4766. weight: math.unit(225, "lb"),
  4767. name: "Front",
  4768. image: {
  4769. source: "./media/characters/abysgar/front.svg",
  4770. extra: 1739/1614,
  4771. bottom: 71/1810
  4772. }
  4773. },
  4774. frontNsfw: {
  4775. height: math.unit(6, "feet"),
  4776. weight: math.unit(225, "lb"),
  4777. name: "Front (NSFW)",
  4778. image: {
  4779. source: "./media/characters/abysgar/front-nsfw.svg",
  4780. extra: 1739/1614,
  4781. bottom: 71/1810
  4782. }
  4783. },
  4784. back: {
  4785. height: math.unit(4.6, "feet"),
  4786. weight: math.unit(225, "lb"),
  4787. name: "Back",
  4788. image: {
  4789. source: "./media/characters/abysgar/back.svg",
  4790. extra: 1384/1327,
  4791. bottom: 0/1384
  4792. }
  4793. },
  4794. head: {
  4795. height: math.unit(1.25, "feet"),
  4796. name: "Head",
  4797. image: {
  4798. source: "./media/characters/abysgar/head.svg",
  4799. extra: 669/569,
  4800. bottom: 0/669
  4801. }
  4802. },
  4803. },
  4804. [
  4805. {
  4806. name: "Small",
  4807. height: math.unit(4.5, "meters")
  4808. },
  4809. {
  4810. name: "Macro",
  4811. height: math.unit(1250, "meters"),
  4812. default: true
  4813. },
  4814. {
  4815. name: "Megamacro",
  4816. height: math.unit(125, "km")
  4817. },
  4818. {
  4819. name: "Gigamacro",
  4820. height: math.unit(26000, "km")
  4821. }
  4822. ]
  4823. ))
  4824. characterMakers.push(() => makeCharacter(
  4825. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4826. {
  4827. front: {
  4828. height: math.unit(6, "feet"),
  4829. weight: math.unit(180, "lb"),
  4830. name: "Front",
  4831. image: {
  4832. source: "./media/characters/yakuz/front.svg"
  4833. }
  4834. }
  4835. },
  4836. [
  4837. {
  4838. name: "Small",
  4839. height: math.unit(5, "meters")
  4840. },
  4841. {
  4842. name: "Macro",
  4843. height: math.unit(1500, "meters"),
  4844. default: true
  4845. },
  4846. {
  4847. name: "Megamacro",
  4848. height: math.unit(200, "km")
  4849. },
  4850. {
  4851. name: "Gigamacro",
  4852. height: math.unit(100000, "km")
  4853. }
  4854. ]
  4855. ))
  4856. characterMakers.push(() => makeCharacter(
  4857. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4858. {
  4859. front: {
  4860. height: math.unit(6, "feet"),
  4861. weight: math.unit(175, "lb"),
  4862. name: "Front",
  4863. image: {
  4864. source: "./media/characters/mirova/front.svg",
  4865. extra: 3334 / 3071,
  4866. bottom: 42 / 3375.6
  4867. }
  4868. }
  4869. },
  4870. [
  4871. {
  4872. name: "Small",
  4873. height: math.unit(5, "meters")
  4874. },
  4875. {
  4876. name: "Macro",
  4877. height: math.unit(900, "meters"),
  4878. default: true
  4879. },
  4880. {
  4881. name: "Megamacro",
  4882. height: math.unit(135, "km")
  4883. },
  4884. {
  4885. name: "Gigamacro",
  4886. height: math.unit(20000, "km")
  4887. }
  4888. ]
  4889. ))
  4890. characterMakers.push(() => makeCharacter(
  4891. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4892. {
  4893. side: {
  4894. height: math.unit(28.35, "feet"),
  4895. weight: math.unit(99.75, "tons"),
  4896. name: "Side",
  4897. image: {
  4898. source: "./media/characters/asana-mech/side.svg",
  4899. extra: 923 / 699,
  4900. bottom: 50 / 975
  4901. }
  4902. },
  4903. chaingun: {
  4904. height: math.unit(7, "feet"),
  4905. weight: math.unit(2400, "lb"),
  4906. name: "Chaingun",
  4907. image: {
  4908. source: "./media/characters/asana-mech/chaingun.svg"
  4909. }
  4910. },
  4911. laser: {
  4912. height: math.unit(7.12, "feet"),
  4913. weight: math.unit(2000, "lb"),
  4914. name: "Laser",
  4915. image: {
  4916. source: "./media/characters/asana-mech/laser.svg"
  4917. }
  4918. },
  4919. },
  4920. [
  4921. {
  4922. name: "Normal",
  4923. height: math.unit(28.35, "feet"),
  4924. default: true
  4925. },
  4926. {
  4927. name: "Macro",
  4928. height: math.unit(2500, "feet")
  4929. },
  4930. {
  4931. name: "Megamacro",
  4932. height: math.unit(25, "miles")
  4933. },
  4934. {
  4935. name: "Examacro",
  4936. height: math.unit(6e8, "lightyears")
  4937. },
  4938. ]
  4939. ))
  4940. characterMakers.push(() => makeCharacter(
  4941. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4942. {
  4943. front: {
  4944. height: math.unit(5, "meters"),
  4945. weight: math.unit(1000, "kg"),
  4946. name: "Front",
  4947. image: {
  4948. source: "./media/characters/asche/front.svg",
  4949. extra: 1258 / 1190,
  4950. bottom: 47 / 1305
  4951. }
  4952. },
  4953. frontUnderwear: {
  4954. height: math.unit(5, "meters"),
  4955. weight: math.unit(1000, "kg"),
  4956. name: "Front (Underwear)",
  4957. image: {
  4958. source: "./media/characters/asche/front-underwear.svg",
  4959. extra: 1258 / 1190,
  4960. bottom: 47 / 1305
  4961. }
  4962. },
  4963. frontDressed: {
  4964. height: math.unit(5, "meters"),
  4965. weight: math.unit(1000, "kg"),
  4966. name: "Front (Dressed)",
  4967. image: {
  4968. source: "./media/characters/asche/front-dressed.svg",
  4969. extra: 1258 / 1190,
  4970. bottom: 47 / 1305
  4971. }
  4972. },
  4973. frontArmor: {
  4974. height: math.unit(5, "meters"),
  4975. weight: math.unit(1000, "kg"),
  4976. name: "Front (Armored)",
  4977. image: {
  4978. source: "./media/characters/asche/front-armored.svg",
  4979. extra: 1374 / 1308,
  4980. bottom: 23 / 1397
  4981. }
  4982. },
  4983. mp724: {
  4984. height: math.unit(0.96, "meters"),
  4985. weight: math.unit(38, "kg"),
  4986. name: "H&K MP724",
  4987. image: {
  4988. source: "./media/characters/asche/h&k-mp724.svg"
  4989. }
  4990. },
  4991. side: {
  4992. height: math.unit(5, "meters"),
  4993. weight: math.unit(1000, "kg"),
  4994. name: "Side",
  4995. image: {
  4996. source: "./media/characters/asche/side.svg",
  4997. extra: 1717 / 1609,
  4998. bottom: 0.005
  4999. }
  5000. },
  5001. back: {
  5002. height: math.unit(5, "meters"),
  5003. weight: math.unit(1000, "kg"),
  5004. name: "Back",
  5005. image: {
  5006. source: "./media/characters/asche/back.svg",
  5007. extra: 1570 / 1501
  5008. }
  5009. },
  5010. },
  5011. [
  5012. {
  5013. name: "DEFCON 5",
  5014. height: math.unit(5, "meters")
  5015. },
  5016. {
  5017. name: "DEFCON 4",
  5018. height: math.unit(500, "meters"),
  5019. default: true
  5020. },
  5021. {
  5022. name: "DEFCON 3",
  5023. height: math.unit(5, "km")
  5024. },
  5025. {
  5026. name: "DEFCON 2",
  5027. height: math.unit(500, "km")
  5028. },
  5029. {
  5030. name: "DEFCON 1",
  5031. height: math.unit(500000, "km")
  5032. },
  5033. {
  5034. name: "DEFCON 0",
  5035. height: math.unit(3, "gigaparsecs")
  5036. },
  5037. ]
  5038. ))
  5039. characterMakers.push(() => makeCharacter(
  5040. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5041. {
  5042. front: {
  5043. height: math.unit(2, "meters"),
  5044. weight: math.unit(76, "kg"),
  5045. name: "Front",
  5046. image: {
  5047. source: "./media/characters/gale/front.svg"
  5048. }
  5049. },
  5050. frontAlt1: {
  5051. height: math.unit(2, "meters"),
  5052. weight: math.unit(76, "kg"),
  5053. name: "Front (Alt 1)",
  5054. image: {
  5055. source: "./media/characters/gale/front-alt-1.svg"
  5056. }
  5057. },
  5058. frontAlt2: {
  5059. height: math.unit(2, "meters"),
  5060. weight: math.unit(76, "kg"),
  5061. name: "Front (Alt 2)",
  5062. image: {
  5063. source: "./media/characters/gale/front-alt-2.svg"
  5064. }
  5065. },
  5066. },
  5067. [
  5068. {
  5069. name: "Normal",
  5070. height: math.unit(7, "feet")
  5071. },
  5072. {
  5073. name: "Macro",
  5074. height: math.unit(150, "feet"),
  5075. default: true
  5076. },
  5077. {
  5078. name: "Macro+",
  5079. height: math.unit(300, "feet")
  5080. },
  5081. ]
  5082. ))
  5083. characterMakers.push(() => makeCharacter(
  5084. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5085. {
  5086. front: {
  5087. height: math.unit(5 + 10/12, "feet"),
  5088. weight: math.unit(67, "kg"),
  5089. name: "Front",
  5090. image: {
  5091. source: "./media/characters/draylen/front.svg",
  5092. extra: 832/777,
  5093. bottom: 85/917
  5094. }
  5095. }
  5096. },
  5097. [
  5098. {
  5099. name: "Normal",
  5100. height: math.unit(5 + 10/12, "feet")
  5101. },
  5102. {
  5103. name: "Macro",
  5104. height: math.unit(150, "feet"),
  5105. default: true
  5106. }
  5107. ]
  5108. ))
  5109. characterMakers.push(() => makeCharacter(
  5110. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5111. {
  5112. front: {
  5113. height: math.unit(7 + 9 / 12, "feet"),
  5114. weight: math.unit(379, "lbs"),
  5115. name: "Front",
  5116. image: {
  5117. source: "./media/characters/chez/front.svg"
  5118. }
  5119. },
  5120. side: {
  5121. height: math.unit(7 + 9 / 12, "feet"),
  5122. weight: math.unit(379, "lbs"),
  5123. name: "Side",
  5124. image: {
  5125. source: "./media/characters/chez/side.svg"
  5126. }
  5127. }
  5128. },
  5129. [
  5130. {
  5131. name: "Normal",
  5132. height: math.unit(7 + 9 / 12, "feet"),
  5133. default: true
  5134. },
  5135. {
  5136. name: "God King",
  5137. height: math.unit(9750000, "meters")
  5138. }
  5139. ]
  5140. ))
  5141. characterMakers.push(() => makeCharacter(
  5142. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5143. {
  5144. front: {
  5145. height: math.unit(6, "feet"),
  5146. weight: math.unit(275, "lbs"),
  5147. name: "Front",
  5148. image: {
  5149. source: "./media/characters/kaylum/front.svg",
  5150. bottom: 0.01,
  5151. extra: 1166 / 1031
  5152. }
  5153. },
  5154. frontWingless: {
  5155. height: math.unit(6, "feet"),
  5156. weight: math.unit(275, "lbs"),
  5157. name: "Front (Wingless)",
  5158. image: {
  5159. source: "./media/characters/kaylum/front-wingless.svg",
  5160. bottom: 0.01,
  5161. extra: 1117 / 1031
  5162. }
  5163. }
  5164. },
  5165. [
  5166. {
  5167. name: "Normal",
  5168. height: math.unit(3.05, "meters")
  5169. },
  5170. {
  5171. name: "Master",
  5172. height: math.unit(5.5, "meters")
  5173. },
  5174. {
  5175. name: "Rampage",
  5176. height: math.unit(19, "meters")
  5177. },
  5178. {
  5179. name: "Macro Lite",
  5180. height: math.unit(37, "meters")
  5181. },
  5182. {
  5183. name: "Hyper Predator",
  5184. height: math.unit(61, "meters")
  5185. },
  5186. {
  5187. name: "Macro",
  5188. height: math.unit(138, "meters"),
  5189. default: true
  5190. }
  5191. ]
  5192. ))
  5193. characterMakers.push(() => makeCharacter(
  5194. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5195. {
  5196. front: {
  5197. height: math.unit(5 + 5 / 12, "feet"),
  5198. weight: math.unit(120, "lbs"),
  5199. name: "Front",
  5200. image: {
  5201. source: "./media/characters/geta/front.svg",
  5202. extra: 1003/933,
  5203. bottom: 21/1024
  5204. }
  5205. },
  5206. paw: {
  5207. height: math.unit(0.35, "feet"),
  5208. name: "Paw",
  5209. image: {
  5210. source: "./media/characters/geta/paw.svg"
  5211. }
  5212. },
  5213. },
  5214. [
  5215. {
  5216. name: "Micro",
  5217. height: math.unit(3, "inches"),
  5218. default: true
  5219. },
  5220. {
  5221. name: "Normal",
  5222. height: math.unit(5 + 5 / 12, "feet")
  5223. }
  5224. ]
  5225. ))
  5226. characterMakers.push(() => makeCharacter(
  5227. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5228. {
  5229. front: {
  5230. height: math.unit(6, "feet"),
  5231. weight: math.unit(300, "lbs"),
  5232. name: "Front",
  5233. image: {
  5234. source: "./media/characters/tyrnn/front.svg"
  5235. }
  5236. }
  5237. },
  5238. [
  5239. {
  5240. name: "Main Height",
  5241. height: math.unit(355, "feet"),
  5242. default: true
  5243. },
  5244. {
  5245. name: "Fave. Height",
  5246. height: math.unit(2400, "feet")
  5247. }
  5248. ]
  5249. ))
  5250. characterMakers.push(() => makeCharacter(
  5251. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5252. {
  5253. front: {
  5254. height: math.unit(6, "feet"),
  5255. weight: math.unit(300, "lbs"),
  5256. name: "Front",
  5257. image: {
  5258. source: "./media/characters/appledectomy/front.svg"
  5259. }
  5260. }
  5261. },
  5262. [
  5263. {
  5264. name: "Macro",
  5265. height: math.unit(2500, "feet")
  5266. },
  5267. {
  5268. name: "Megamacro",
  5269. height: math.unit(50, "miles"),
  5270. default: true
  5271. },
  5272. {
  5273. name: "Gigamacro",
  5274. height: math.unit(5000, "miles")
  5275. },
  5276. {
  5277. name: "Teramacro",
  5278. height: math.unit(250000, "miles")
  5279. },
  5280. ]
  5281. ))
  5282. characterMakers.push(() => makeCharacter(
  5283. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5284. {
  5285. front: {
  5286. height: math.unit(6, "feet"),
  5287. weight: math.unit(200, "lbs"),
  5288. name: "Front",
  5289. image: {
  5290. source: "./media/characters/vulpes/front.svg",
  5291. extra: 573 / 543,
  5292. bottom: 0.033
  5293. }
  5294. },
  5295. side: {
  5296. height: math.unit(6, "feet"),
  5297. weight: math.unit(200, "lbs"),
  5298. name: "Side",
  5299. image: {
  5300. source: "./media/characters/vulpes/side.svg",
  5301. extra: 577 / 549,
  5302. bottom: 11 / 588
  5303. }
  5304. },
  5305. back: {
  5306. height: math.unit(6, "feet"),
  5307. weight: math.unit(200, "lbs"),
  5308. name: "Back",
  5309. image: {
  5310. source: "./media/characters/vulpes/back.svg",
  5311. extra: 573 / 549,
  5312. bottom: 20 / 593
  5313. }
  5314. },
  5315. feet: {
  5316. height: math.unit(1.276, "feet"),
  5317. name: "Feet",
  5318. image: {
  5319. source: "./media/characters/vulpes/feet.svg"
  5320. }
  5321. },
  5322. maw: {
  5323. height: math.unit(1.18, "feet"),
  5324. name: "Maw",
  5325. image: {
  5326. source: "./media/characters/vulpes/maw.svg"
  5327. }
  5328. },
  5329. },
  5330. [
  5331. {
  5332. name: "Micro",
  5333. height: math.unit(2, "inches")
  5334. },
  5335. {
  5336. name: "Normal",
  5337. height: math.unit(6.3, "feet")
  5338. },
  5339. {
  5340. name: "Macro",
  5341. height: math.unit(850, "feet")
  5342. },
  5343. {
  5344. name: "Megamacro",
  5345. height: math.unit(7500, "feet"),
  5346. default: true
  5347. },
  5348. {
  5349. name: "Gigamacro",
  5350. height: math.unit(570000, "miles")
  5351. }
  5352. ]
  5353. ))
  5354. characterMakers.push(() => makeCharacter(
  5355. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5356. {
  5357. front: {
  5358. height: math.unit(6, "feet"),
  5359. weight: math.unit(210, "lbs"),
  5360. name: "Front",
  5361. image: {
  5362. source: "./media/characters/rain-fallen/front.svg"
  5363. }
  5364. },
  5365. side: {
  5366. height: math.unit(6, "feet"),
  5367. weight: math.unit(210, "lbs"),
  5368. name: "Side",
  5369. image: {
  5370. source: "./media/characters/rain-fallen/side.svg"
  5371. }
  5372. },
  5373. back: {
  5374. height: math.unit(6, "feet"),
  5375. weight: math.unit(210, "lbs"),
  5376. name: "Back",
  5377. image: {
  5378. source: "./media/characters/rain-fallen/back.svg"
  5379. }
  5380. },
  5381. feral: {
  5382. height: math.unit(9, "feet"),
  5383. weight: math.unit(700, "lbs"),
  5384. name: "Feral",
  5385. image: {
  5386. source: "./media/characters/rain-fallen/feral.svg"
  5387. }
  5388. },
  5389. },
  5390. [
  5391. {
  5392. name: "Meddling with Mortals",
  5393. height: math.unit(8 + 8/12, "feet")
  5394. },
  5395. {
  5396. name: "Normal",
  5397. height: math.unit(5, "meter")
  5398. },
  5399. {
  5400. name: "Macro",
  5401. height: math.unit(150, "meter"),
  5402. default: true
  5403. },
  5404. {
  5405. name: "Megamacro",
  5406. height: math.unit(278e6, "meter")
  5407. },
  5408. {
  5409. name: "Gigamacro",
  5410. height: math.unit(2e9, "meter")
  5411. },
  5412. {
  5413. name: "Teramacro",
  5414. height: math.unit(8e12, "meter")
  5415. },
  5416. {
  5417. name: "Devourer",
  5418. height: math.unit(14, "zettameters")
  5419. },
  5420. {
  5421. name: "Scarlet King",
  5422. height: math.unit(18, "yottameters")
  5423. },
  5424. {
  5425. name: "Void",
  5426. height: math.unit(1e88, "yottameters")
  5427. }
  5428. ]
  5429. ))
  5430. characterMakers.push(() => makeCharacter(
  5431. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5432. {
  5433. standing: {
  5434. height: math.unit(6, "feet"),
  5435. weight: math.unit(180, "lbs"),
  5436. name: "Standing",
  5437. image: {
  5438. source: "./media/characters/zaakira/standing.svg",
  5439. extra: 1599/1504,
  5440. bottom: 39/1638
  5441. }
  5442. },
  5443. laying: {
  5444. height: math.unit(3.3, "feet"),
  5445. weight: math.unit(180, "lbs"),
  5446. name: "Laying",
  5447. image: {
  5448. source: "./media/characters/zaakira/laying.svg"
  5449. }
  5450. },
  5451. },
  5452. [
  5453. {
  5454. name: "Normal",
  5455. height: math.unit(12, "feet")
  5456. },
  5457. {
  5458. name: "Macro",
  5459. height: math.unit(279, "feet"),
  5460. default: true
  5461. }
  5462. ]
  5463. ))
  5464. characterMakers.push(() => makeCharacter(
  5465. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5466. {
  5467. femSfw: {
  5468. height: math.unit(8, "feet"),
  5469. weight: math.unit(350, "lb"),
  5470. name: "Fem",
  5471. image: {
  5472. source: "./media/characters/sigvald/fem-sfw.svg",
  5473. extra: 182 / 164,
  5474. bottom: 8.7 / 190.5
  5475. }
  5476. },
  5477. femNsfw: {
  5478. height: math.unit(8, "feet"),
  5479. weight: math.unit(350, "lb"),
  5480. name: "Fem (NSFW)",
  5481. image: {
  5482. source: "./media/characters/sigvald/fem-nsfw.svg",
  5483. extra: 182 / 164,
  5484. bottom: 8.7 / 190.5
  5485. }
  5486. },
  5487. maleNsfw: {
  5488. height: math.unit(8, "feet"),
  5489. weight: math.unit(350, "lb"),
  5490. name: "Male (NSFW)",
  5491. image: {
  5492. source: "./media/characters/sigvald/male-nsfw.svg",
  5493. extra: 182 / 164,
  5494. bottom: 8.7 / 190.5
  5495. }
  5496. },
  5497. hermNsfw: {
  5498. height: math.unit(8, "feet"),
  5499. weight: math.unit(350, "lb"),
  5500. name: "Herm (NSFW)",
  5501. image: {
  5502. source: "./media/characters/sigvald/herm-nsfw.svg",
  5503. extra: 182 / 164,
  5504. bottom: 8.7 / 190.5
  5505. }
  5506. },
  5507. dick: {
  5508. height: math.unit(2.36, "feet"),
  5509. name: "Dick",
  5510. image: {
  5511. source: "./media/characters/sigvald/dick.svg"
  5512. }
  5513. },
  5514. eye: {
  5515. height: math.unit(0.31, "feet"),
  5516. name: "Eye",
  5517. image: {
  5518. source: "./media/characters/sigvald/eye.svg"
  5519. }
  5520. },
  5521. mouth: {
  5522. height: math.unit(0.92, "feet"),
  5523. name: "Mouth",
  5524. image: {
  5525. source: "./media/characters/sigvald/mouth.svg"
  5526. }
  5527. },
  5528. paws: {
  5529. height: math.unit(2.2, "feet"),
  5530. name: "Paws",
  5531. image: {
  5532. source: "./media/characters/sigvald/paws.svg"
  5533. }
  5534. }
  5535. },
  5536. [
  5537. {
  5538. name: "Normal",
  5539. height: math.unit(8, "feet")
  5540. },
  5541. {
  5542. name: "Large",
  5543. height: math.unit(12, "feet")
  5544. },
  5545. {
  5546. name: "Larger",
  5547. height: math.unit(20, "feet")
  5548. },
  5549. {
  5550. name: "Macro",
  5551. height: math.unit(150, "feet")
  5552. },
  5553. {
  5554. name: "Macro+",
  5555. height: math.unit(200, "feet"),
  5556. default: true
  5557. },
  5558. ]
  5559. ))
  5560. characterMakers.push(() => makeCharacter(
  5561. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5562. {
  5563. side: {
  5564. height: math.unit(12, "feet"),
  5565. weight: math.unit(2000, "kg"),
  5566. name: "Side",
  5567. image: {
  5568. source: "./media/characters/scott/side.svg",
  5569. extra: 754 / 724,
  5570. bottom: 0.069
  5571. }
  5572. },
  5573. upright: {
  5574. height: math.unit(12, "feet"),
  5575. weight: math.unit(2000, "kg"),
  5576. name: "Upright",
  5577. image: {
  5578. source: "./media/characters/scott/upright.svg",
  5579. extra: 3881 / 3722,
  5580. bottom: 0.05
  5581. }
  5582. },
  5583. },
  5584. [
  5585. {
  5586. name: "Normal",
  5587. height: math.unit(12, "feet"),
  5588. default: true
  5589. },
  5590. ]
  5591. ))
  5592. characterMakers.push(() => makeCharacter(
  5593. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5594. {
  5595. side: {
  5596. height: math.unit(8, "meters"),
  5597. weight: math.unit(84755, "lbs"),
  5598. name: "Side",
  5599. image: {
  5600. source: "./media/characters/tobias/side.svg",
  5601. extra: 1474 / 1096,
  5602. bottom: 38.9 / 1513.1235
  5603. }
  5604. },
  5605. },
  5606. [
  5607. {
  5608. name: "Normal",
  5609. height: math.unit(8, "meters"),
  5610. default: true
  5611. },
  5612. ]
  5613. ))
  5614. characterMakers.push(() => makeCharacter(
  5615. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5616. {
  5617. front: {
  5618. height: math.unit(5.5, "feet"),
  5619. weight: math.unit(400, "lbs"),
  5620. name: "Front",
  5621. image: {
  5622. source: "./media/characters/kieran/front.svg",
  5623. extra: 2694 / 2364,
  5624. bottom: 217 / 2908
  5625. }
  5626. },
  5627. side: {
  5628. height: math.unit(5.5, "feet"),
  5629. weight: math.unit(400, "lbs"),
  5630. name: "Side",
  5631. image: {
  5632. source: "./media/characters/kieran/side.svg",
  5633. extra: 875 / 777,
  5634. bottom: 84.6 / 959
  5635. }
  5636. },
  5637. },
  5638. [
  5639. {
  5640. name: "Normal",
  5641. height: math.unit(5.5, "feet"),
  5642. default: true
  5643. },
  5644. ]
  5645. ))
  5646. characterMakers.push(() => makeCharacter(
  5647. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5648. {
  5649. side: {
  5650. height: math.unit(2, "meters"),
  5651. weight: math.unit(70, "kg"),
  5652. name: "Side",
  5653. image: {
  5654. source: "./media/characters/sanya/side.svg",
  5655. bottom: 0.02,
  5656. extra: 1.02
  5657. }
  5658. },
  5659. },
  5660. [
  5661. {
  5662. name: "Small",
  5663. height: math.unit(2, "meters")
  5664. },
  5665. {
  5666. name: "Normal",
  5667. height: math.unit(3, "meters")
  5668. },
  5669. {
  5670. name: "Macro",
  5671. height: math.unit(16, "meters"),
  5672. default: true
  5673. },
  5674. ]
  5675. ))
  5676. characterMakers.push(() => makeCharacter(
  5677. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5678. {
  5679. front: {
  5680. height: math.unit(2, "meters"),
  5681. weight: math.unit(120, "kg"),
  5682. name: "Front",
  5683. image: {
  5684. source: "./media/characters/miranda/front.svg",
  5685. extra: 195 / 185,
  5686. bottom: 10.9 / 206.5
  5687. }
  5688. },
  5689. back: {
  5690. height: math.unit(2, "meters"),
  5691. weight: math.unit(120, "kg"),
  5692. name: "Back",
  5693. image: {
  5694. source: "./media/characters/miranda/back.svg",
  5695. extra: 201 / 193,
  5696. bottom: 2.3 / 203.7
  5697. }
  5698. },
  5699. },
  5700. [
  5701. {
  5702. name: "Normal",
  5703. height: math.unit(10, "feet"),
  5704. default: true
  5705. }
  5706. ]
  5707. ))
  5708. characterMakers.push(() => makeCharacter(
  5709. { name: "James", species: ["deer"], tags: ["anthro"] },
  5710. {
  5711. side: {
  5712. height: math.unit(2, "meters"),
  5713. weight: math.unit(100, "kg"),
  5714. name: "Front",
  5715. image: {
  5716. source: "./media/characters/james/front.svg",
  5717. extra: 10 / 8.5
  5718. }
  5719. },
  5720. },
  5721. [
  5722. {
  5723. name: "Normal",
  5724. height: math.unit(8.5, "feet"),
  5725. default: true
  5726. }
  5727. ]
  5728. ))
  5729. characterMakers.push(() => makeCharacter(
  5730. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5731. {
  5732. side: {
  5733. height: math.unit(9.5, "feet"),
  5734. weight: math.unit(2500, "lbs"),
  5735. name: "Side",
  5736. image: {
  5737. source: "./media/characters/heather/side.svg"
  5738. }
  5739. },
  5740. },
  5741. [
  5742. {
  5743. name: "Normal",
  5744. height: math.unit(9.5, "feet"),
  5745. default: true
  5746. }
  5747. ]
  5748. ))
  5749. characterMakers.push(() => makeCharacter(
  5750. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5751. {
  5752. side: {
  5753. height: math.unit(6.5, "feet"),
  5754. weight: math.unit(400, "lbs"),
  5755. name: "Side",
  5756. image: {
  5757. source: "./media/characters/lukas/side.svg",
  5758. extra: 7.25 / 6.5
  5759. }
  5760. },
  5761. },
  5762. [
  5763. {
  5764. name: "Normal",
  5765. height: math.unit(6.5, "feet"),
  5766. default: true
  5767. }
  5768. ]
  5769. ))
  5770. characterMakers.push(() => makeCharacter(
  5771. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5772. {
  5773. side: {
  5774. height: math.unit(5, "feet"),
  5775. weight: math.unit(3000, "lbs"),
  5776. name: "Side",
  5777. image: {
  5778. source: "./media/characters/louise/side.svg"
  5779. }
  5780. },
  5781. },
  5782. [
  5783. {
  5784. name: "Normal",
  5785. height: math.unit(5, "feet"),
  5786. default: true
  5787. }
  5788. ]
  5789. ))
  5790. characterMakers.push(() => makeCharacter(
  5791. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5792. {
  5793. side: {
  5794. height: math.unit(6, "feet"),
  5795. weight: math.unit(150, "lbs"),
  5796. name: "Side",
  5797. image: {
  5798. source: "./media/characters/ramona/side.svg",
  5799. extra: 871/854,
  5800. bottom: 41/912
  5801. }
  5802. },
  5803. },
  5804. [
  5805. {
  5806. name: "Normal",
  5807. height: math.unit(6 + 4/12, "feet")
  5808. },
  5809. {
  5810. name: "Minimacro",
  5811. height: math.unit(5.3, "meters"),
  5812. default: true
  5813. },
  5814. {
  5815. name: "Macro",
  5816. height: math.unit(20, "stories")
  5817. },
  5818. {
  5819. name: "Macro+",
  5820. height: math.unit(50, "stories")
  5821. },
  5822. ]
  5823. ))
  5824. characterMakers.push(() => makeCharacter(
  5825. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5826. {
  5827. standing: {
  5828. height: math.unit(5.75, "feet"),
  5829. weight: math.unit(160, "lbs"),
  5830. name: "Standing",
  5831. image: {
  5832. source: "./media/characters/deerpuff/standing.svg",
  5833. extra: 682 / 624
  5834. }
  5835. },
  5836. sitting: {
  5837. height: math.unit(5.75 / 1.79, "feet"),
  5838. weight: math.unit(160, "lbs"),
  5839. name: "Sitting",
  5840. image: {
  5841. source: "./media/characters/deerpuff/sitting.svg",
  5842. bottom: 44 / 400,
  5843. extra: 1
  5844. }
  5845. },
  5846. taurLaying: {
  5847. height: math.unit(6, "feet"),
  5848. weight: math.unit(400, "lbs"),
  5849. name: "Taur (Laying)",
  5850. image: {
  5851. source: "./media/characters/deerpuff/taur-laying.svg"
  5852. }
  5853. },
  5854. },
  5855. [
  5856. {
  5857. name: "Puffball",
  5858. height: math.unit(6, "inches")
  5859. },
  5860. {
  5861. name: "Normalpuff",
  5862. height: math.unit(5.75, "feet")
  5863. },
  5864. {
  5865. name: "Macropuff",
  5866. height: math.unit(1500, "feet"),
  5867. default: true
  5868. },
  5869. {
  5870. name: "Megapuff",
  5871. height: math.unit(500, "miles")
  5872. },
  5873. {
  5874. name: "Gigapuff",
  5875. height: math.unit(250000, "miles")
  5876. },
  5877. {
  5878. name: "Omegapuff",
  5879. height: math.unit(1000, "lightyears")
  5880. },
  5881. ]
  5882. ))
  5883. characterMakers.push(() => makeCharacter(
  5884. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5885. {
  5886. stomping: {
  5887. height: math.unit(6, "feet"),
  5888. weight: math.unit(170, "lbs"),
  5889. name: "Stomping",
  5890. image: {
  5891. source: "./media/characters/vivian/stomping.svg"
  5892. }
  5893. },
  5894. sitting: {
  5895. height: math.unit(6 / 1.75, "feet"),
  5896. weight: math.unit(170, "lbs"),
  5897. name: "Sitting",
  5898. image: {
  5899. source: "./media/characters/vivian/sitting.svg",
  5900. bottom: 1 / 6.4,
  5901. extra: 1,
  5902. }
  5903. },
  5904. },
  5905. [
  5906. {
  5907. name: "Normal",
  5908. height: math.unit(7, "feet"),
  5909. default: true
  5910. },
  5911. {
  5912. name: "Macro",
  5913. height: math.unit(10, "stories")
  5914. },
  5915. {
  5916. name: "Macro+",
  5917. height: math.unit(30, "stories")
  5918. },
  5919. {
  5920. name: "Megamacro",
  5921. height: math.unit(10, "miles")
  5922. },
  5923. {
  5924. name: "Megamacro+",
  5925. height: math.unit(2750000, "meters")
  5926. },
  5927. ]
  5928. ))
  5929. characterMakers.push(() => makeCharacter(
  5930. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5931. {
  5932. front: {
  5933. height: math.unit(6, "feet"),
  5934. weight: math.unit(160, "lbs"),
  5935. name: "Front",
  5936. image: {
  5937. source: "./media/characters/prince/front.svg",
  5938. extra: 3400 / 3000
  5939. }
  5940. },
  5941. jumping: {
  5942. height: math.unit(6, "feet"),
  5943. weight: math.unit(160, "lbs"),
  5944. name: "Jumping",
  5945. image: {
  5946. source: "./media/characters/prince/jump.svg",
  5947. extra: 2555 / 2134
  5948. }
  5949. },
  5950. },
  5951. [
  5952. {
  5953. name: "Normal",
  5954. height: math.unit(7.75, "feet"),
  5955. default: true
  5956. },
  5957. {
  5958. name: "Not cute",
  5959. height: math.unit(17, "feet")
  5960. },
  5961. {
  5962. name: "I said NOT",
  5963. height: math.unit(91, "feet")
  5964. },
  5965. {
  5966. name: "Please stop",
  5967. height: math.unit(560, "feet")
  5968. },
  5969. {
  5970. name: "What have you done",
  5971. height: math.unit(2200, "feet")
  5972. },
  5973. {
  5974. name: "Deer God",
  5975. height: math.unit(3.6, "miles")
  5976. },
  5977. ]
  5978. ))
  5979. characterMakers.push(() => makeCharacter(
  5980. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5981. {
  5982. standing: {
  5983. height: math.unit(6, "feet"),
  5984. weight: math.unit(300, "lbs"),
  5985. name: "Standing",
  5986. image: {
  5987. source: "./media/characters/psymon/standing.svg",
  5988. extra: 1888 / 1810,
  5989. bottom: 0.05
  5990. }
  5991. },
  5992. slithering: {
  5993. height: math.unit(6, "feet"),
  5994. weight: math.unit(300, "lbs"),
  5995. name: "Slithering",
  5996. image: {
  5997. source: "./media/characters/psymon/slithering.svg",
  5998. extra: 1330 / 1224
  5999. }
  6000. },
  6001. slitheringAlt: {
  6002. height: math.unit(6, "feet"),
  6003. weight: math.unit(300, "lbs"),
  6004. name: "Slithering (Alt)",
  6005. image: {
  6006. source: "./media/characters/psymon/slithering-alt.svg",
  6007. extra: 1330 / 1224
  6008. }
  6009. },
  6010. },
  6011. [
  6012. {
  6013. name: "Normal",
  6014. height: math.unit(11.25, "feet"),
  6015. default: true
  6016. },
  6017. {
  6018. name: "Large",
  6019. height: math.unit(27, "feet")
  6020. },
  6021. {
  6022. name: "Giant",
  6023. height: math.unit(87, "feet")
  6024. },
  6025. {
  6026. name: "Macro",
  6027. height: math.unit(365, "feet")
  6028. },
  6029. {
  6030. name: "Megamacro",
  6031. height: math.unit(3, "miles")
  6032. },
  6033. {
  6034. name: "World Serpent",
  6035. height: math.unit(8000, "miles")
  6036. },
  6037. ]
  6038. ))
  6039. characterMakers.push(() => makeCharacter(
  6040. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6041. {
  6042. front: {
  6043. height: math.unit(6, "feet"),
  6044. weight: math.unit(180, "lbs"),
  6045. name: "Front",
  6046. image: {
  6047. source: "./media/characters/daimos/front.svg",
  6048. extra: 4160 / 3897,
  6049. bottom: 0.021
  6050. }
  6051. }
  6052. },
  6053. [
  6054. {
  6055. name: "Normal",
  6056. height: math.unit(8, "feet"),
  6057. default: true
  6058. },
  6059. {
  6060. name: "Big Dog",
  6061. height: math.unit(22, "feet")
  6062. },
  6063. {
  6064. name: "Macro",
  6065. height: math.unit(127, "feet")
  6066. },
  6067. {
  6068. name: "Megamacro",
  6069. height: math.unit(3600, "feet")
  6070. },
  6071. ]
  6072. ))
  6073. characterMakers.push(() => makeCharacter(
  6074. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6075. {
  6076. side: {
  6077. height: math.unit(6, "feet"),
  6078. weight: math.unit(180, "lbs"),
  6079. name: "Side",
  6080. image: {
  6081. source: "./media/characters/blake/side.svg",
  6082. extra: 1212 / 1120,
  6083. bottom: 0.05
  6084. }
  6085. },
  6086. crouched: {
  6087. height: math.unit(6 * 0.57, "feet"),
  6088. weight: math.unit(180, "lbs"),
  6089. name: "Crouched",
  6090. image: {
  6091. source: "./media/characters/blake/crouched.svg",
  6092. extra: 840 / 587,
  6093. bottom: 0.04
  6094. }
  6095. },
  6096. bent: {
  6097. height: math.unit(6 * 0.75, "feet"),
  6098. weight: math.unit(180, "lbs"),
  6099. name: "Bent",
  6100. image: {
  6101. source: "./media/characters/blake/bent.svg",
  6102. extra: 592 / 544,
  6103. bottom: 0.035
  6104. }
  6105. },
  6106. },
  6107. [
  6108. {
  6109. name: "Normal",
  6110. height: math.unit(8 + 1 / 6, "feet"),
  6111. default: true
  6112. },
  6113. {
  6114. name: "Big Backside",
  6115. height: math.unit(37, "feet")
  6116. },
  6117. {
  6118. name: "Subway Shredder",
  6119. height: math.unit(72, "feet")
  6120. },
  6121. {
  6122. name: "City Carver",
  6123. height: math.unit(1675, "feet")
  6124. },
  6125. {
  6126. name: "Tectonic Tweaker",
  6127. height: math.unit(2300, "miles")
  6128. },
  6129. ]
  6130. ))
  6131. characterMakers.push(() => makeCharacter(
  6132. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6133. {
  6134. front: {
  6135. height: math.unit(6, "feet"),
  6136. weight: math.unit(180, "lbs"),
  6137. name: "Front",
  6138. image: {
  6139. source: "./media/characters/guisetto/front.svg",
  6140. extra: 856 / 817,
  6141. bottom: 0.06
  6142. }
  6143. },
  6144. airborne: {
  6145. height: math.unit(6, "feet"),
  6146. weight: math.unit(180, "lbs"),
  6147. name: "Airborne",
  6148. image: {
  6149. source: "./media/characters/guisetto/airborne.svg",
  6150. extra: 584 / 525
  6151. }
  6152. },
  6153. },
  6154. [
  6155. {
  6156. name: "Normal",
  6157. height: math.unit(10 + 11 / 12, "feet"),
  6158. default: true
  6159. },
  6160. {
  6161. name: "Large",
  6162. height: math.unit(35, "feet")
  6163. },
  6164. {
  6165. name: "Macro",
  6166. height: math.unit(475, "feet")
  6167. },
  6168. ]
  6169. ))
  6170. characterMakers.push(() => makeCharacter(
  6171. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6172. {
  6173. front: {
  6174. height: math.unit(6, "feet"),
  6175. weight: math.unit(180, "lbs"),
  6176. name: "Front",
  6177. image: {
  6178. source: "./media/characters/luxor/front.svg",
  6179. extra: 2940 / 2152
  6180. }
  6181. },
  6182. back: {
  6183. height: math.unit(6, "feet"),
  6184. weight: math.unit(180, "lbs"),
  6185. name: "Back",
  6186. image: {
  6187. source: "./media/characters/luxor/back.svg",
  6188. extra: 1083 / 960
  6189. }
  6190. },
  6191. },
  6192. [
  6193. {
  6194. name: "Normal",
  6195. height: math.unit(5 + 5 / 6, "feet"),
  6196. default: true
  6197. },
  6198. {
  6199. name: "Lamp",
  6200. height: math.unit(50, "feet")
  6201. },
  6202. {
  6203. name: "Lämp",
  6204. height: math.unit(300, "feet")
  6205. },
  6206. {
  6207. name: "The sun is a lamp",
  6208. height: math.unit(250000, "miles")
  6209. },
  6210. ]
  6211. ))
  6212. characterMakers.push(() => makeCharacter(
  6213. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6214. {
  6215. front: {
  6216. height: math.unit(6, "feet"),
  6217. weight: math.unit(50, "lbs"),
  6218. name: "Front",
  6219. image: {
  6220. source: "./media/characters/huoyan/front.svg"
  6221. }
  6222. },
  6223. side: {
  6224. height: math.unit(6, "feet"),
  6225. weight: math.unit(180, "lbs"),
  6226. name: "Side",
  6227. image: {
  6228. source: "./media/characters/huoyan/side.svg"
  6229. }
  6230. },
  6231. },
  6232. [
  6233. {
  6234. name: "Chef",
  6235. height: math.unit(9, "feet")
  6236. },
  6237. {
  6238. name: "Normal",
  6239. height: math.unit(65, "feet"),
  6240. default: true
  6241. },
  6242. {
  6243. name: "Macro",
  6244. height: math.unit(780, "feet")
  6245. },
  6246. {
  6247. name: "Flaming Mountain",
  6248. height: math.unit(4.8, "miles")
  6249. },
  6250. {
  6251. name: "Celestial",
  6252. height: math.unit(765000, "miles")
  6253. },
  6254. ]
  6255. ))
  6256. characterMakers.push(() => makeCharacter(
  6257. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6258. {
  6259. front: {
  6260. height: math.unit(5 + 3 / 4, "feet"),
  6261. weight: math.unit(120, "lbs"),
  6262. name: "Front",
  6263. image: {
  6264. source: "./media/characters/tails/front.svg"
  6265. }
  6266. }
  6267. },
  6268. [
  6269. {
  6270. name: "Normal",
  6271. height: math.unit(5 + 3 / 4, "feet"),
  6272. default: true
  6273. }
  6274. ]
  6275. ))
  6276. characterMakers.push(() => makeCharacter(
  6277. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6278. {
  6279. front: {
  6280. height: math.unit(4, "feet"),
  6281. weight: math.unit(50, "lbs"),
  6282. name: "Front",
  6283. image: {
  6284. source: "./media/characters/rainy/front.svg"
  6285. }
  6286. }
  6287. },
  6288. [
  6289. {
  6290. name: "Macro",
  6291. height: math.unit(800, "feet"),
  6292. default: true
  6293. }
  6294. ]
  6295. ))
  6296. characterMakers.push(() => makeCharacter(
  6297. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6298. {
  6299. front: {
  6300. height: math.unit(6, "feet"),
  6301. weight: math.unit(150, "lbs"),
  6302. name: "Front",
  6303. image: {
  6304. source: "./media/characters/rainier/front.svg"
  6305. }
  6306. }
  6307. },
  6308. [
  6309. {
  6310. name: "Micro",
  6311. height: math.unit(2, "mm"),
  6312. default: true
  6313. }
  6314. ]
  6315. ))
  6316. characterMakers.push(() => makeCharacter(
  6317. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6318. {
  6319. front: {
  6320. height: math.unit(8 + 4/12, "feet"),
  6321. weight: math.unit(450, "kilograms"),
  6322. volume: math.unit(5, "cups"),
  6323. name: "Front",
  6324. image: {
  6325. source: "./media/characters/andy-renard/front.svg",
  6326. extra: 1839/1726,
  6327. bottom: 134/1973
  6328. }
  6329. },
  6330. back: {
  6331. height: math.unit(8 + 4/12, "feet"),
  6332. weight: math.unit(450, "kilograms"),
  6333. volume: math.unit(5, "cups"),
  6334. name: "Back",
  6335. image: {
  6336. source: "./media/characters/andy-renard/back.svg",
  6337. extra: 1838/1710,
  6338. bottom: 105/1943
  6339. }
  6340. },
  6341. },
  6342. [
  6343. {
  6344. name: "Tall",
  6345. height: math.unit(8 + 4/12, "feet")
  6346. },
  6347. {
  6348. name: "Mini Macro",
  6349. height: math.unit(15, "feet"),
  6350. default: true
  6351. },
  6352. {
  6353. name: "Macro",
  6354. height: math.unit(100, "feet")
  6355. },
  6356. {
  6357. name: "Mega Macro",
  6358. height: math.unit(1000, "feet")
  6359. },
  6360. {
  6361. name: "Giga Macro",
  6362. height: math.unit(10, "miles")
  6363. },
  6364. {
  6365. name: "God Macro",
  6366. height: math.unit(1, "multiverse")
  6367. },
  6368. ]
  6369. ))
  6370. characterMakers.push(() => makeCharacter(
  6371. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6372. {
  6373. front: {
  6374. height: math.unit(6, "feet"),
  6375. weight: math.unit(210, "lbs"),
  6376. name: "Front",
  6377. image: {
  6378. source: "./media/characters/cimmaron/front-sfw.svg",
  6379. extra: 701 / 676,
  6380. bottom: 0.046
  6381. }
  6382. },
  6383. back: {
  6384. height: math.unit(6, "feet"),
  6385. weight: math.unit(210, "lbs"),
  6386. name: "Back",
  6387. image: {
  6388. source: "./media/characters/cimmaron/back-sfw.svg",
  6389. extra: 701 / 676,
  6390. bottom: 0.046
  6391. }
  6392. },
  6393. frontNsfw: {
  6394. height: math.unit(6, "feet"),
  6395. weight: math.unit(210, "lbs"),
  6396. name: "Front (NSFW)",
  6397. image: {
  6398. source: "./media/characters/cimmaron/front-nsfw.svg",
  6399. extra: 701 / 676,
  6400. bottom: 0.046
  6401. }
  6402. },
  6403. backNsfw: {
  6404. height: math.unit(6, "feet"),
  6405. weight: math.unit(210, "lbs"),
  6406. name: "Back (NSFW)",
  6407. image: {
  6408. source: "./media/characters/cimmaron/back-nsfw.svg",
  6409. extra: 701 / 676,
  6410. bottom: 0.046
  6411. }
  6412. },
  6413. dick: {
  6414. height: math.unit(1.714, "feet"),
  6415. name: "Dick",
  6416. image: {
  6417. source: "./media/characters/cimmaron/dick.svg"
  6418. }
  6419. },
  6420. },
  6421. [
  6422. {
  6423. name: "Normal",
  6424. height: math.unit(6, "feet"),
  6425. default: true
  6426. },
  6427. {
  6428. name: "Macro Mayor",
  6429. height: math.unit(350, "meters")
  6430. },
  6431. ]
  6432. ))
  6433. characterMakers.push(() => makeCharacter(
  6434. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6435. {
  6436. front: {
  6437. height: math.unit(6, "feet"),
  6438. weight: math.unit(200, "lbs"),
  6439. name: "Front",
  6440. image: {
  6441. source: "./media/characters/akari/front.svg",
  6442. extra: 962 / 901,
  6443. bottom: 0.04
  6444. }
  6445. }
  6446. },
  6447. [
  6448. {
  6449. name: "Micro",
  6450. height: math.unit(5, "inches"),
  6451. default: true
  6452. },
  6453. {
  6454. name: "Normal",
  6455. height: math.unit(7, "feet")
  6456. },
  6457. ]
  6458. ))
  6459. characterMakers.push(() => makeCharacter(
  6460. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6461. {
  6462. front: {
  6463. height: math.unit(6, "feet"),
  6464. weight: math.unit(140, "lbs"),
  6465. name: "Front",
  6466. image: {
  6467. source: "./media/characters/cynosura/front.svg",
  6468. extra: 896 / 847
  6469. }
  6470. },
  6471. back: {
  6472. height: math.unit(6, "feet"),
  6473. weight: math.unit(140, "lbs"),
  6474. name: "Back",
  6475. image: {
  6476. source: "./media/characters/cynosura/back.svg",
  6477. extra: 1365 / 1250
  6478. }
  6479. },
  6480. },
  6481. [
  6482. {
  6483. name: "Micro",
  6484. height: math.unit(4, "inches")
  6485. },
  6486. {
  6487. name: "Normal",
  6488. height: math.unit(5.75, "feet"),
  6489. default: true
  6490. },
  6491. {
  6492. name: "Tall",
  6493. height: math.unit(10, "feet")
  6494. },
  6495. {
  6496. name: "Big",
  6497. height: math.unit(20, "feet")
  6498. },
  6499. {
  6500. name: "Macro",
  6501. height: math.unit(50, "feet")
  6502. },
  6503. ]
  6504. ))
  6505. characterMakers.push(() => makeCharacter(
  6506. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6507. {
  6508. front: {
  6509. height: math.unit(13 + 2/12, "feet"),
  6510. weight: math.unit(800, "kg"),
  6511. name: "Front",
  6512. image: {
  6513. source: "./media/characters/gin/front.svg",
  6514. extra: 1312/1191,
  6515. bottom: 45/1357
  6516. }
  6517. },
  6518. mouth: {
  6519. height: math.unit(2.39 * 1.8, "feet"),
  6520. name: "Mouth",
  6521. image: {
  6522. source: "./media/characters/gin/mouth.svg"
  6523. }
  6524. },
  6525. hand: {
  6526. height: math.unit(1.57 * 2.19, "feet"),
  6527. name: "Hand",
  6528. image: {
  6529. source: "./media/characters/gin/hand.svg"
  6530. }
  6531. },
  6532. foot: {
  6533. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6534. name: "Foot",
  6535. image: {
  6536. source: "./media/characters/gin/foot.svg"
  6537. }
  6538. },
  6539. sole: {
  6540. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6541. name: "Sole",
  6542. image: {
  6543. source: "./media/characters/gin/sole.svg"
  6544. }
  6545. },
  6546. },
  6547. [
  6548. {
  6549. name: "Very Small",
  6550. height: math.unit(13 + 2 / 12, "feet")
  6551. },
  6552. {
  6553. name: "Micro",
  6554. height: math.unit(600, "miles")
  6555. },
  6556. {
  6557. name: "Regular",
  6558. height: math.unit(20, "earths"),
  6559. default: true
  6560. },
  6561. {
  6562. name: "Macro",
  6563. height: math.unit(2.2, "solarradii")
  6564. },
  6565. {
  6566. name: "Teramacro",
  6567. height: math.unit(1.2, "galaxies")
  6568. },
  6569. {
  6570. name: "Omegamacro",
  6571. height: math.unit(200, "universes")
  6572. },
  6573. ]
  6574. ))
  6575. characterMakers.push(() => makeCharacter(
  6576. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6577. {
  6578. front: {
  6579. height: math.unit(6 + 1 / 6, "feet"),
  6580. weight: math.unit(178, "lbs"),
  6581. name: "Front",
  6582. image: {
  6583. source: "./media/characters/guy/front.svg"
  6584. }
  6585. }
  6586. },
  6587. [
  6588. {
  6589. name: "Normal",
  6590. height: math.unit(6 + 1 / 6, "feet"),
  6591. default: true
  6592. },
  6593. {
  6594. name: "Large",
  6595. height: math.unit(25 + 7 / 12, "feet")
  6596. },
  6597. {
  6598. name: "Macro",
  6599. height: math.unit(60 + 9 / 12, "feet")
  6600. },
  6601. {
  6602. name: "Macro+",
  6603. height: math.unit(246, "feet")
  6604. },
  6605. {
  6606. name: "Macro++",
  6607. height: math.unit(878, "feet")
  6608. }
  6609. ]
  6610. ))
  6611. characterMakers.push(() => makeCharacter(
  6612. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6613. {
  6614. front: {
  6615. height: math.unit(9, "feet"),
  6616. weight: math.unit(800, "lbs"),
  6617. name: "Front",
  6618. image: {
  6619. source: "./media/characters/tiberius/front.svg",
  6620. extra: 2295 / 2071
  6621. }
  6622. },
  6623. back: {
  6624. height: math.unit(9, "feet"),
  6625. weight: math.unit(800, "lbs"),
  6626. name: "Back",
  6627. image: {
  6628. source: "./media/characters/tiberius/back.svg",
  6629. extra: 2373 / 2160
  6630. }
  6631. },
  6632. },
  6633. [
  6634. {
  6635. name: "Normal",
  6636. height: math.unit(9, "feet"),
  6637. default: true
  6638. }
  6639. ]
  6640. ))
  6641. characterMakers.push(() => makeCharacter(
  6642. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6643. {
  6644. front: {
  6645. height: math.unit(6, "feet"),
  6646. weight: math.unit(600, "lbs"),
  6647. name: "Front",
  6648. image: {
  6649. source: "./media/characters/surgo/front.svg",
  6650. extra: 3591 / 2227
  6651. }
  6652. },
  6653. back: {
  6654. height: math.unit(6, "feet"),
  6655. weight: math.unit(600, "lbs"),
  6656. name: "Back",
  6657. image: {
  6658. source: "./media/characters/surgo/back.svg",
  6659. extra: 3557 / 2228
  6660. }
  6661. },
  6662. laying: {
  6663. height: math.unit(6 * 0.85, "feet"),
  6664. weight: math.unit(600, "lbs"),
  6665. name: "Laying",
  6666. image: {
  6667. source: "./media/characters/surgo/laying.svg"
  6668. }
  6669. },
  6670. },
  6671. [
  6672. {
  6673. name: "Normal",
  6674. height: math.unit(6, "feet"),
  6675. default: true
  6676. }
  6677. ]
  6678. ))
  6679. characterMakers.push(() => makeCharacter(
  6680. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6681. {
  6682. side: {
  6683. height: math.unit(6, "feet"),
  6684. weight: math.unit(150, "lbs"),
  6685. name: "Side",
  6686. image: {
  6687. source: "./media/characters/cibus/side.svg",
  6688. extra: 800 / 400
  6689. }
  6690. },
  6691. },
  6692. [
  6693. {
  6694. name: "Normal",
  6695. height: math.unit(6, "feet"),
  6696. default: true
  6697. }
  6698. ]
  6699. ))
  6700. characterMakers.push(() => makeCharacter(
  6701. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6702. {
  6703. front: {
  6704. height: math.unit(6, "feet"),
  6705. weight: math.unit(240, "lbs"),
  6706. name: "Front",
  6707. image: {
  6708. source: "./media/characters/nibbles/front.svg"
  6709. }
  6710. },
  6711. side: {
  6712. height: math.unit(6, "feet"),
  6713. weight: math.unit(240, "lbs"),
  6714. name: "Side",
  6715. image: {
  6716. source: "./media/characters/nibbles/side.svg"
  6717. }
  6718. },
  6719. },
  6720. [
  6721. {
  6722. name: "Normal",
  6723. height: math.unit(9, "feet"),
  6724. default: true
  6725. }
  6726. ]
  6727. ))
  6728. characterMakers.push(() => makeCharacter(
  6729. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6730. {
  6731. side: {
  6732. height: math.unit(5 + 1 / 6, "feet"),
  6733. weight: math.unit(130, "lbs"),
  6734. name: "Side",
  6735. image: {
  6736. source: "./media/characters/rikky/side.svg",
  6737. extra: 851 / 801
  6738. }
  6739. },
  6740. },
  6741. [
  6742. {
  6743. name: "Normal",
  6744. height: math.unit(5 + 1 / 6, "feet")
  6745. },
  6746. {
  6747. name: "Macro",
  6748. height: math.unit(152, "feet"),
  6749. default: true
  6750. },
  6751. {
  6752. name: "Megamacro",
  6753. height: math.unit(7, "miles")
  6754. }
  6755. ]
  6756. ))
  6757. characterMakers.push(() => makeCharacter(
  6758. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6759. {
  6760. side: {
  6761. height: math.unit(370, "cm"),
  6762. weight: math.unit(350, "lbs"),
  6763. name: "Side",
  6764. image: {
  6765. source: "./media/characters/malfressa/side.svg"
  6766. }
  6767. },
  6768. walking: {
  6769. height: math.unit(370, "cm"),
  6770. weight: math.unit(350, "lbs"),
  6771. name: "Walking",
  6772. image: {
  6773. source: "./media/characters/malfressa/walking.svg"
  6774. }
  6775. },
  6776. feral: {
  6777. height: math.unit(2500, "cm"),
  6778. weight: math.unit(100000, "lbs"),
  6779. name: "Feral",
  6780. image: {
  6781. source: "./media/characters/malfressa/feral.svg",
  6782. extra: 2108 / 837,
  6783. bottom: 0.02
  6784. }
  6785. },
  6786. },
  6787. [
  6788. {
  6789. name: "Normal",
  6790. height: math.unit(370, "cm")
  6791. },
  6792. {
  6793. name: "Macro",
  6794. height: math.unit(300, "meters"),
  6795. default: true
  6796. }
  6797. ]
  6798. ))
  6799. characterMakers.push(() => makeCharacter(
  6800. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6801. {
  6802. front: {
  6803. height: math.unit(6, "feet"),
  6804. weight: math.unit(60, "kg"),
  6805. name: "Front",
  6806. image: {
  6807. source: "./media/characters/jaro/front.svg",
  6808. extra: 845/817,
  6809. bottom: 45/890
  6810. }
  6811. },
  6812. back: {
  6813. height: math.unit(6, "feet"),
  6814. weight: math.unit(60, "kg"),
  6815. name: "Back",
  6816. image: {
  6817. source: "./media/characters/jaro/back.svg",
  6818. extra: 847/817,
  6819. bottom: 34/881
  6820. }
  6821. },
  6822. },
  6823. [
  6824. {
  6825. name: "Micro",
  6826. height: math.unit(7, "inches")
  6827. },
  6828. {
  6829. name: "Normal",
  6830. height: math.unit(5.5, "feet"),
  6831. default: true
  6832. },
  6833. {
  6834. name: "Minimacro",
  6835. height: math.unit(20, "feet")
  6836. },
  6837. {
  6838. name: "Macro",
  6839. height: math.unit(200, "meters")
  6840. }
  6841. ]
  6842. ))
  6843. characterMakers.push(() => makeCharacter(
  6844. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6845. {
  6846. front: {
  6847. height: math.unit(6, "feet"),
  6848. weight: math.unit(195, "lb"),
  6849. name: "Front",
  6850. image: {
  6851. source: "./media/characters/rogue/front.svg"
  6852. }
  6853. },
  6854. },
  6855. [
  6856. {
  6857. name: "Macro",
  6858. height: math.unit(90, "feet"),
  6859. default: true
  6860. },
  6861. ]
  6862. ))
  6863. characterMakers.push(() => makeCharacter(
  6864. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6865. {
  6866. standing: {
  6867. height: math.unit(5 + 8 / 12, "feet"),
  6868. weight: math.unit(140, "lb"),
  6869. name: "Standing",
  6870. image: {
  6871. source: "./media/characters/piper/standing.svg",
  6872. extra: 1440/1284,
  6873. bottom: 66/1506
  6874. }
  6875. },
  6876. running: {
  6877. height: math.unit(5 + 8 / 12, "feet"),
  6878. weight: math.unit(140, "lb"),
  6879. name: "Running",
  6880. image: {
  6881. source: "./media/characters/piper/running.svg",
  6882. extra: 3948/3655,
  6883. bottom: 0/3948
  6884. }
  6885. },
  6886. sole: {
  6887. height: math.unit(0.81, "feet"),
  6888. weight: math.unit(2, "kg"),
  6889. name: "Sole",
  6890. image: {
  6891. source: "./media/characters/piper/sole.svg"
  6892. }
  6893. },
  6894. nipple: {
  6895. height: math.unit(0.25, "feet"),
  6896. weight: math.unit(1.5, "lb"),
  6897. name: "Nipple",
  6898. image: {
  6899. source: "./media/characters/piper/nipple.svg"
  6900. }
  6901. },
  6902. head: {
  6903. height: math.unit(1.1, "feet"),
  6904. name: "Head",
  6905. image: {
  6906. source: "./media/characters/piper/head.svg"
  6907. }
  6908. },
  6909. },
  6910. [
  6911. {
  6912. name: "Micro",
  6913. height: math.unit(2, "inches")
  6914. },
  6915. {
  6916. name: "Normal",
  6917. height: math.unit(5 + 8 / 12, "feet")
  6918. },
  6919. {
  6920. name: "Macro",
  6921. height: math.unit(250, "feet"),
  6922. default: true
  6923. },
  6924. {
  6925. name: "Megamacro",
  6926. height: math.unit(7, "miles")
  6927. },
  6928. ]
  6929. ))
  6930. characterMakers.push(() => makeCharacter(
  6931. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6932. {
  6933. front: {
  6934. height: math.unit(6, "feet"),
  6935. weight: math.unit(220, "lb"),
  6936. name: "Front",
  6937. image: {
  6938. source: "./media/characters/gemini/front.svg"
  6939. }
  6940. },
  6941. back: {
  6942. height: math.unit(6, "feet"),
  6943. weight: math.unit(220, "lb"),
  6944. name: "Back",
  6945. image: {
  6946. source: "./media/characters/gemini/back.svg"
  6947. }
  6948. },
  6949. kneeling: {
  6950. height: math.unit(6 / 1.5, "feet"),
  6951. weight: math.unit(220, "lb"),
  6952. name: "Kneeling",
  6953. image: {
  6954. source: "./media/characters/gemini/kneeling.svg",
  6955. bottom: 0.02
  6956. }
  6957. },
  6958. },
  6959. [
  6960. {
  6961. name: "Macro",
  6962. height: math.unit(300, "meters"),
  6963. default: true
  6964. },
  6965. {
  6966. name: "Megamacro",
  6967. height: math.unit(6900, "meters")
  6968. },
  6969. ]
  6970. ))
  6971. characterMakers.push(() => makeCharacter(
  6972. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6973. {
  6974. anthro: {
  6975. height: math.unit(2.35, "meters"),
  6976. weight: math.unit(73, "kg"),
  6977. name: "Anthro",
  6978. image: {
  6979. source: "./media/characters/alicia/anthro.svg",
  6980. extra: 2571 / 2385,
  6981. bottom: 75 / 2648
  6982. }
  6983. },
  6984. paw: {
  6985. height: math.unit(1.32, "feet"),
  6986. name: "Paw",
  6987. image: {
  6988. source: "./media/characters/alicia/paw.svg"
  6989. }
  6990. },
  6991. feral: {
  6992. height: math.unit(1.69, "meters"),
  6993. weight: math.unit(73, "kg"),
  6994. name: "Feral",
  6995. image: {
  6996. source: "./media/characters/alicia/feral.svg",
  6997. extra: 2123 / 1715,
  6998. bottom: 222 / 2349
  6999. }
  7000. },
  7001. },
  7002. [
  7003. {
  7004. name: "Normal",
  7005. height: math.unit(2.35, "meters")
  7006. },
  7007. {
  7008. name: "Macro",
  7009. height: math.unit(60, "meters"),
  7010. default: true
  7011. },
  7012. {
  7013. name: "Megamacro",
  7014. height: math.unit(10000, "kilometers")
  7015. },
  7016. ]
  7017. ))
  7018. characterMakers.push(() => makeCharacter(
  7019. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7020. {
  7021. front: {
  7022. height: math.unit(7, "feet"),
  7023. weight: math.unit(250, "lbs"),
  7024. name: "Front",
  7025. image: {
  7026. source: "./media/characters/archy/front.svg"
  7027. }
  7028. }
  7029. },
  7030. [
  7031. {
  7032. name: "Micro",
  7033. height: math.unit(1, "inch")
  7034. },
  7035. {
  7036. name: "Shorty",
  7037. height: math.unit(5, "feet")
  7038. },
  7039. {
  7040. name: "Normal",
  7041. height: math.unit(7, "feet")
  7042. },
  7043. {
  7044. name: "Macro",
  7045. height: math.unit(600, "meters"),
  7046. default: true
  7047. },
  7048. {
  7049. name: "Megamacro",
  7050. height: math.unit(1, "mile")
  7051. },
  7052. ]
  7053. ))
  7054. characterMakers.push(() => makeCharacter(
  7055. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7056. {
  7057. front: {
  7058. height: math.unit(1.65, "meters"),
  7059. weight: math.unit(74, "kg"),
  7060. name: "Front",
  7061. image: {
  7062. source: "./media/characters/berri/front.svg",
  7063. extra: 857 / 837,
  7064. bottom: 18 / 877
  7065. }
  7066. },
  7067. bum: {
  7068. height: math.unit(1.46, "feet"),
  7069. name: "Bum",
  7070. image: {
  7071. source: "./media/characters/berri/bum.svg"
  7072. }
  7073. },
  7074. mouth: {
  7075. height: math.unit(0.44, "feet"),
  7076. name: "Mouth",
  7077. image: {
  7078. source: "./media/characters/berri/mouth.svg"
  7079. }
  7080. },
  7081. paw: {
  7082. height: math.unit(0.826, "feet"),
  7083. name: "Paw",
  7084. image: {
  7085. source: "./media/characters/berri/paw.svg"
  7086. }
  7087. },
  7088. },
  7089. [
  7090. {
  7091. name: "Normal",
  7092. height: math.unit(1.65, "meters")
  7093. },
  7094. {
  7095. name: "Macro",
  7096. height: math.unit(60, "m"),
  7097. default: true
  7098. },
  7099. {
  7100. name: "Megamacro",
  7101. height: math.unit(9.213, "km")
  7102. },
  7103. {
  7104. name: "Planet Eater",
  7105. height: math.unit(489, "megameters")
  7106. },
  7107. {
  7108. name: "Teramacro",
  7109. height: math.unit(2471635000000, "meters")
  7110. },
  7111. {
  7112. name: "Examacro",
  7113. height: math.unit(8.0624e+26, "meters")
  7114. }
  7115. ]
  7116. ))
  7117. characterMakers.push(() => makeCharacter(
  7118. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7119. {
  7120. front: {
  7121. height: math.unit(1.72, "meters"),
  7122. weight: math.unit(68, "kg"),
  7123. name: "Front",
  7124. image: {
  7125. source: "./media/characters/lexi/front.svg"
  7126. }
  7127. }
  7128. },
  7129. [
  7130. {
  7131. name: "Very Smol",
  7132. height: math.unit(10, "mm")
  7133. },
  7134. {
  7135. name: "Micro",
  7136. height: math.unit(6.8, "cm"),
  7137. default: true
  7138. },
  7139. {
  7140. name: "Normal",
  7141. height: math.unit(1.72, "m")
  7142. }
  7143. ]
  7144. ))
  7145. characterMakers.push(() => makeCharacter(
  7146. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7147. {
  7148. front: {
  7149. height: math.unit(1.69, "meters"),
  7150. weight: math.unit(68, "kg"),
  7151. name: "Front",
  7152. image: {
  7153. source: "./media/characters/martin/front.svg",
  7154. extra: 596 / 581
  7155. }
  7156. }
  7157. },
  7158. [
  7159. {
  7160. name: "Micro",
  7161. height: math.unit(6.85, "cm"),
  7162. default: true
  7163. },
  7164. {
  7165. name: "Normal",
  7166. height: math.unit(1.69, "m")
  7167. }
  7168. ]
  7169. ))
  7170. characterMakers.push(() => makeCharacter(
  7171. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7172. {
  7173. front: {
  7174. height: math.unit(1.69, "meters"),
  7175. weight: math.unit(68, "kg"),
  7176. name: "Front",
  7177. image: {
  7178. source: "./media/characters/juno/front.svg"
  7179. }
  7180. }
  7181. },
  7182. [
  7183. {
  7184. name: "Micro",
  7185. height: math.unit(7, "cm")
  7186. },
  7187. {
  7188. name: "Normal",
  7189. height: math.unit(1.89, "m")
  7190. },
  7191. {
  7192. name: "Macro",
  7193. height: math.unit(353, "meters"),
  7194. default: true
  7195. }
  7196. ]
  7197. ))
  7198. characterMakers.push(() => makeCharacter(
  7199. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7200. {
  7201. front: {
  7202. height: math.unit(1.93, "meters"),
  7203. weight: math.unit(83, "kg"),
  7204. name: "Front",
  7205. image: {
  7206. source: "./media/characters/samantha/front.svg"
  7207. }
  7208. },
  7209. frontClothed: {
  7210. height: math.unit(1.93, "meters"),
  7211. weight: math.unit(83, "kg"),
  7212. name: "Front (Clothed)",
  7213. image: {
  7214. source: "./media/characters/samantha/front-clothed.svg"
  7215. }
  7216. },
  7217. back: {
  7218. height: math.unit(1.93, "meters"),
  7219. weight: math.unit(83, "kg"),
  7220. name: "Back",
  7221. image: {
  7222. source: "./media/characters/samantha/back.svg"
  7223. }
  7224. },
  7225. },
  7226. [
  7227. {
  7228. name: "Normal",
  7229. height: math.unit(1.93, "m")
  7230. },
  7231. {
  7232. name: "Macro",
  7233. height: math.unit(74, "meters"),
  7234. default: true
  7235. },
  7236. {
  7237. name: "Macro+",
  7238. height: math.unit(223, "meters"),
  7239. },
  7240. {
  7241. name: "Megamacro",
  7242. height: math.unit(8381, "meters"),
  7243. },
  7244. {
  7245. name: "Megamacro+",
  7246. height: math.unit(12000, "kilometers")
  7247. },
  7248. ]
  7249. ))
  7250. characterMakers.push(() => makeCharacter(
  7251. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7252. {
  7253. front: {
  7254. height: math.unit(1.92, "meters"),
  7255. weight: math.unit(80, "kg"),
  7256. name: "Front",
  7257. image: {
  7258. source: "./media/characters/dr-clay/front.svg"
  7259. }
  7260. },
  7261. frontClothed: {
  7262. height: math.unit(1.92, "meters"),
  7263. weight: math.unit(80, "kg"),
  7264. name: "Front (Clothed)",
  7265. image: {
  7266. source: "./media/characters/dr-clay/front-clothed.svg"
  7267. }
  7268. }
  7269. },
  7270. [
  7271. {
  7272. name: "Normal",
  7273. height: math.unit(1.92, "m")
  7274. },
  7275. {
  7276. name: "Macro",
  7277. height: math.unit(214, "meters"),
  7278. default: true
  7279. },
  7280. {
  7281. name: "Macro+",
  7282. height: math.unit(12.237, "meters"),
  7283. },
  7284. {
  7285. name: "Megamacro",
  7286. height: math.unit(557, "megameters"),
  7287. },
  7288. {
  7289. name: "Unimaginable",
  7290. height: math.unit(120e9, "lightyears")
  7291. },
  7292. ]
  7293. ))
  7294. characterMakers.push(() => makeCharacter(
  7295. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7296. {
  7297. front: {
  7298. height: math.unit(2, "meters"),
  7299. weight: math.unit(80, "kg"),
  7300. name: "Front",
  7301. image: {
  7302. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7303. }
  7304. }
  7305. },
  7306. [
  7307. {
  7308. name: "Teramacro",
  7309. height: math.unit(500000, "lightyears"),
  7310. default: true
  7311. },
  7312. ]
  7313. ))
  7314. characterMakers.push(() => makeCharacter(
  7315. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7316. {
  7317. crux: {
  7318. height: math.unit(2, "meters"),
  7319. weight: math.unit(150, "kg"),
  7320. name: "Crux",
  7321. image: {
  7322. source: "./media/characters/vemus/crux.svg",
  7323. extra: 1074/936,
  7324. bottom: 23/1097
  7325. }
  7326. },
  7327. skunkTanuki: {
  7328. height: math.unit(2, "meters"),
  7329. weight: math.unit(150, "kg"),
  7330. name: "Skunk-Tanuki",
  7331. image: {
  7332. source: "./media/characters/vemus/skunk-tanuki.svg",
  7333. extra: 926/893,
  7334. bottom: 20/946
  7335. }
  7336. },
  7337. },
  7338. [
  7339. {
  7340. name: "Normal",
  7341. height: math.unit(4, "meters"),
  7342. default: true
  7343. },
  7344. {
  7345. name: "Big",
  7346. height: math.unit(8, "meters")
  7347. },
  7348. {
  7349. name: "Macro",
  7350. height: math.unit(100, "meters")
  7351. },
  7352. {
  7353. name: "Macro+",
  7354. height: math.unit(1500, "meters")
  7355. },
  7356. {
  7357. name: "Stellar",
  7358. height: math.unit(14e8, "meters")
  7359. },
  7360. ]
  7361. ))
  7362. characterMakers.push(() => makeCharacter(
  7363. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7364. {
  7365. front: {
  7366. height: math.unit(2, "meters"),
  7367. weight: math.unit(70, "kg"),
  7368. name: "Front",
  7369. image: {
  7370. source: "./media/characters/beherit/front.svg",
  7371. extra: 1234/1109,
  7372. bottom: 55/1289
  7373. }
  7374. }
  7375. },
  7376. [
  7377. {
  7378. name: "Normal",
  7379. height: math.unit(6, "feet")
  7380. },
  7381. {
  7382. name: "Lorg",
  7383. height: math.unit(25, "feet"),
  7384. default: true
  7385. },
  7386. {
  7387. name: "Lorger",
  7388. height: math.unit(75, "feet")
  7389. },
  7390. {
  7391. name: "Macro",
  7392. height: math.unit(200, "meters")
  7393. },
  7394. ]
  7395. ))
  7396. characterMakers.push(() => makeCharacter(
  7397. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7398. {
  7399. front: {
  7400. height: math.unit(2, "meters"),
  7401. weight: math.unit(150, "kg"),
  7402. name: "Front",
  7403. image: {
  7404. source: "./media/characters/everett/front.svg",
  7405. extra: 1017/866,
  7406. bottom: 86/1103
  7407. }
  7408. },
  7409. paw: {
  7410. height: math.unit(2 / 3.6, "meters"),
  7411. name: "Paw",
  7412. image: {
  7413. source: "./media/characters/everett/paw.svg"
  7414. }
  7415. },
  7416. },
  7417. [
  7418. {
  7419. name: "Normal",
  7420. height: math.unit(15, "feet"),
  7421. default: true
  7422. },
  7423. {
  7424. name: "Lorg",
  7425. height: math.unit(70, "feet"),
  7426. default: true
  7427. },
  7428. {
  7429. name: "Lorger",
  7430. height: math.unit(250, "feet")
  7431. },
  7432. {
  7433. name: "Macro",
  7434. height: math.unit(500, "meters")
  7435. },
  7436. ]
  7437. ))
  7438. characterMakers.push(() => makeCharacter(
  7439. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7440. {
  7441. front: {
  7442. height: math.unit(2, "meters"),
  7443. weight: math.unit(86, "kg"),
  7444. name: "Front",
  7445. image: {
  7446. source: "./media/characters/rose/front.svg",
  7447. extra: 1785/1636,
  7448. bottom: 30/1815
  7449. },
  7450. form: "liom",
  7451. default: true
  7452. },
  7453. frontSporty: {
  7454. height: math.unit(2, "meters"),
  7455. weight: math.unit(86, "kg"),
  7456. name: "Front (Sporty)",
  7457. image: {
  7458. source: "./media/characters/rose/front-sporty.svg",
  7459. extra: 350/335,
  7460. bottom: 10/360
  7461. },
  7462. form: "liom"
  7463. },
  7464. frontAlt: {
  7465. height: math.unit(1.6, "meters"),
  7466. weight: math.unit(86, "kg"),
  7467. name: "Front (Alt)",
  7468. image: {
  7469. source: "./media/characters/rose/front-alt.svg",
  7470. extra: 299/283,
  7471. bottom: 3/302
  7472. },
  7473. form: "liom"
  7474. },
  7475. plush: {
  7476. height: math.unit(2, "meters"),
  7477. weight: math.unit(86/3, "kg"),
  7478. name: "Plush",
  7479. image: {
  7480. source: "./media/characters/rose/plush.svg",
  7481. extra: 361/337,
  7482. bottom: 11/372
  7483. },
  7484. form: "plush",
  7485. default: true
  7486. },
  7487. faeStanding: {
  7488. height: math.unit(10, "cm"),
  7489. weight: math.unit(10, "grams"),
  7490. name: "Standing",
  7491. image: {
  7492. source: "./media/characters/rose/fae-standing.svg",
  7493. extra: 1189/1060,
  7494. bottom: 27/1216
  7495. },
  7496. form: "fae",
  7497. default: true
  7498. },
  7499. faeSitting: {
  7500. height: math.unit(5, "cm"),
  7501. weight: math.unit(10, "grams"),
  7502. name: "Sitting",
  7503. image: {
  7504. source: "./media/characters/rose/fae-sitting.svg",
  7505. extra: 737/577,
  7506. bottom: 356/1093
  7507. },
  7508. form: "fae"
  7509. },
  7510. faePaw: {
  7511. height: math.unit(1.35, "cm"),
  7512. name: "Paw",
  7513. image: {
  7514. source: "./media/characters/rose/fae-paw.svg"
  7515. },
  7516. form: "fae"
  7517. },
  7518. },
  7519. [
  7520. {
  7521. name: "True Micro",
  7522. height: math.unit(9, "cm"),
  7523. form: "liom"
  7524. },
  7525. {
  7526. name: "Micro",
  7527. height: math.unit(16, "cm"),
  7528. form: "liom"
  7529. },
  7530. {
  7531. name: "Normal",
  7532. height: math.unit(1.85, "meters"),
  7533. default: true,
  7534. form: "liom"
  7535. },
  7536. {
  7537. name: "Mini-Macro",
  7538. height: math.unit(5, "meters"),
  7539. form: "liom"
  7540. },
  7541. {
  7542. name: "Macro",
  7543. height: math.unit(15, "meters"),
  7544. form: "liom"
  7545. },
  7546. {
  7547. name: "True Macro",
  7548. height: math.unit(40, "meters"),
  7549. form: "liom"
  7550. },
  7551. {
  7552. name: "City Scale",
  7553. height: math.unit(1, "km"),
  7554. form: "liom"
  7555. },
  7556. {
  7557. name: "Plushie",
  7558. height: math.unit(9, "cm"),
  7559. form: "plush",
  7560. default: true
  7561. },
  7562. {
  7563. name: "Fae",
  7564. height: math.unit(10, "cm"),
  7565. form: "fae",
  7566. default: true
  7567. },
  7568. ],
  7569. {
  7570. "liom": {
  7571. name: "Liom"
  7572. },
  7573. "plush": {
  7574. name: "Plush"
  7575. },
  7576. "fae": {
  7577. name: "Fae Fox",
  7578. default: true
  7579. }
  7580. }
  7581. ))
  7582. characterMakers.push(() => makeCharacter(
  7583. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7584. {
  7585. front: {
  7586. height: math.unit(2, "meters"),
  7587. weight: math.unit(350, "lbs"),
  7588. name: "Front",
  7589. image: {
  7590. source: "./media/characters/regal/front.svg"
  7591. }
  7592. },
  7593. back: {
  7594. height: math.unit(2, "meters"),
  7595. weight: math.unit(350, "lbs"),
  7596. name: "Back",
  7597. image: {
  7598. source: "./media/characters/regal/back.svg"
  7599. }
  7600. },
  7601. },
  7602. [
  7603. {
  7604. name: "Macro",
  7605. height: math.unit(350, "feet"),
  7606. default: true
  7607. }
  7608. ]
  7609. ))
  7610. characterMakers.push(() => makeCharacter(
  7611. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7612. {
  7613. front: {
  7614. height: math.unit(4 + 11 / 12, "feet"),
  7615. weight: math.unit(100, "lbs"),
  7616. name: "Front",
  7617. image: {
  7618. source: "./media/characters/opal/front.svg"
  7619. }
  7620. },
  7621. frontAlt: {
  7622. height: math.unit(4 + 11 / 12, "feet"),
  7623. weight: math.unit(100, "lbs"),
  7624. name: "Front (Alt)",
  7625. image: {
  7626. source: "./media/characters/opal/front-alt.svg"
  7627. }
  7628. },
  7629. },
  7630. [
  7631. {
  7632. name: "Small",
  7633. height: math.unit(4 + 11 / 12, "feet")
  7634. },
  7635. {
  7636. name: "Normal",
  7637. height: math.unit(20, "feet"),
  7638. default: true
  7639. },
  7640. {
  7641. name: "Macro",
  7642. height: math.unit(120, "feet")
  7643. },
  7644. {
  7645. name: "Megamacro",
  7646. height: math.unit(80, "miles")
  7647. },
  7648. {
  7649. name: "True Size",
  7650. height: math.unit(100000, "lightyears")
  7651. },
  7652. ]
  7653. ))
  7654. characterMakers.push(() => makeCharacter(
  7655. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7656. {
  7657. front: {
  7658. height: math.unit(6, "feet"),
  7659. weight: math.unit(200, "lbs"),
  7660. name: "Front",
  7661. image: {
  7662. source: "./media/characters/vector-wuff/front.svg"
  7663. }
  7664. }
  7665. },
  7666. [
  7667. {
  7668. name: "Normal",
  7669. height: math.unit(2.8, "meters")
  7670. },
  7671. {
  7672. name: "Macro",
  7673. height: math.unit(450, "meters"),
  7674. default: true
  7675. },
  7676. {
  7677. name: "Megamacro",
  7678. height: math.unit(15, "kilometers")
  7679. }
  7680. ]
  7681. ))
  7682. characterMakers.push(() => makeCharacter(
  7683. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7684. {
  7685. front: {
  7686. height: math.unit(6, "feet"),
  7687. weight: math.unit(256, "lbs"),
  7688. name: "Front",
  7689. image: {
  7690. source: "./media/characters/dannik/front.svg"
  7691. }
  7692. }
  7693. },
  7694. [
  7695. {
  7696. name: "Macro",
  7697. height: math.unit(69.57, "meters"),
  7698. default: true
  7699. },
  7700. ]
  7701. ))
  7702. characterMakers.push(() => makeCharacter(
  7703. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7704. {
  7705. front: {
  7706. height: math.unit(6, "feet"),
  7707. weight: math.unit(120, "lbs"),
  7708. name: "Front",
  7709. image: {
  7710. source: "./media/characters/azura-saharah/front.svg"
  7711. }
  7712. },
  7713. back: {
  7714. height: math.unit(6, "feet"),
  7715. weight: math.unit(120, "lbs"),
  7716. name: "Back",
  7717. image: {
  7718. source: "./media/characters/azura-saharah/back.svg"
  7719. }
  7720. },
  7721. },
  7722. [
  7723. {
  7724. name: "Macro",
  7725. height: math.unit(100, "feet"),
  7726. default: true
  7727. },
  7728. ]
  7729. ))
  7730. characterMakers.push(() => makeCharacter(
  7731. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7732. {
  7733. side: {
  7734. height: math.unit(5 + 4 / 12, "feet"),
  7735. weight: math.unit(163, "lbs"),
  7736. name: "Side",
  7737. image: {
  7738. source: "./media/characters/kennedy/side.svg"
  7739. }
  7740. }
  7741. },
  7742. [
  7743. {
  7744. name: "Standard Doggo",
  7745. height: math.unit(5 + 4 / 12, "feet")
  7746. },
  7747. {
  7748. name: "Big Doggo",
  7749. height: math.unit(25 + 3 / 12, "feet"),
  7750. default: true
  7751. },
  7752. ]
  7753. ))
  7754. characterMakers.push(() => makeCharacter(
  7755. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7756. {
  7757. front: {
  7758. height: math.unit(5 + 5/12, "feet"),
  7759. weight: math.unit(100, "lbs"),
  7760. name: "Front",
  7761. image: {
  7762. source: "./media/characters/odios-de-lunar/front.svg",
  7763. extra: 1468/1323,
  7764. bottom: 22/1490
  7765. }
  7766. }
  7767. },
  7768. [
  7769. {
  7770. name: "Micro",
  7771. height: math.unit(3, "inches")
  7772. },
  7773. {
  7774. name: "Normal",
  7775. height: math.unit(5.5, "feet"),
  7776. default: true
  7777. },
  7778. {
  7779. name: "Macro",
  7780. height: math.unit(100, "feet")
  7781. },
  7782. ]
  7783. ))
  7784. characterMakers.push(() => makeCharacter(
  7785. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7786. {
  7787. back: {
  7788. height: math.unit(6, "feet"),
  7789. weight: math.unit(220, "lbs"),
  7790. name: "Back",
  7791. image: {
  7792. source: "./media/characters/mandake/back.svg"
  7793. }
  7794. }
  7795. },
  7796. [
  7797. {
  7798. name: "Normal",
  7799. height: math.unit(7, "feet"),
  7800. default: true
  7801. },
  7802. {
  7803. name: "Macro",
  7804. height: math.unit(78, "feet")
  7805. },
  7806. {
  7807. name: "Macro+",
  7808. height: math.unit(300, "meters")
  7809. },
  7810. {
  7811. name: "Macro++",
  7812. height: math.unit(2400, "feet")
  7813. },
  7814. {
  7815. name: "Megamacro",
  7816. height: math.unit(5167, "meters")
  7817. },
  7818. {
  7819. name: "Gigamacro",
  7820. height: math.unit(41769, "miles")
  7821. },
  7822. ]
  7823. ))
  7824. characterMakers.push(() => makeCharacter(
  7825. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7826. {
  7827. front: {
  7828. height: math.unit(6, "feet"),
  7829. weight: math.unit(120, "lbs"),
  7830. name: "Front",
  7831. image: {
  7832. source: "./media/characters/yozey/front.svg"
  7833. }
  7834. },
  7835. frontAlt: {
  7836. height: math.unit(6, "feet"),
  7837. weight: math.unit(120, "lbs"),
  7838. name: "Front (Alt)",
  7839. image: {
  7840. source: "./media/characters/yozey/front-alt.svg"
  7841. }
  7842. },
  7843. side: {
  7844. height: math.unit(6, "feet"),
  7845. weight: math.unit(120, "lbs"),
  7846. name: "Side",
  7847. image: {
  7848. source: "./media/characters/yozey/side.svg"
  7849. }
  7850. },
  7851. },
  7852. [
  7853. {
  7854. name: "Micro",
  7855. height: math.unit(3, "inches"),
  7856. default: true
  7857. },
  7858. {
  7859. name: "Normal",
  7860. height: math.unit(6, "feet")
  7861. }
  7862. ]
  7863. ))
  7864. characterMakers.push(() => makeCharacter(
  7865. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7866. {
  7867. front: {
  7868. height: math.unit(6, "feet"),
  7869. weight: math.unit(103, "lbs"),
  7870. name: "Front",
  7871. image: {
  7872. source: "./media/characters/valeska-voss/front.svg"
  7873. }
  7874. }
  7875. },
  7876. [
  7877. {
  7878. name: "Mini-Sized Sub",
  7879. height: math.unit(3.1, "inches")
  7880. },
  7881. {
  7882. name: "Mid-Sized Sub",
  7883. height: math.unit(6.2, "inches")
  7884. },
  7885. {
  7886. name: "Full-Sized Sub",
  7887. height: math.unit(9.3, "inches")
  7888. },
  7889. {
  7890. name: "Normal",
  7891. height: math.unit(5 + 2 / 12, "foot"),
  7892. default: true
  7893. },
  7894. ]
  7895. ))
  7896. characterMakers.push(() => makeCharacter(
  7897. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7898. {
  7899. front: {
  7900. height: math.unit(6, "feet"),
  7901. weight: math.unit(160, "lbs"),
  7902. name: "Front",
  7903. image: {
  7904. source: "./media/characters/gene-zeta/front.svg",
  7905. extra: 3006 / 2826,
  7906. bottom: 182 / 3188
  7907. }
  7908. }
  7909. },
  7910. [
  7911. {
  7912. name: "Micro",
  7913. height: math.unit(6, "inches")
  7914. },
  7915. {
  7916. name: "Normal",
  7917. height: math.unit(5 + 11 / 12, "foot"),
  7918. default: true
  7919. },
  7920. {
  7921. name: "Macro",
  7922. height: math.unit(140, "feet")
  7923. },
  7924. {
  7925. name: "Supercharged",
  7926. height: math.unit(2500, "feet")
  7927. },
  7928. ]
  7929. ))
  7930. characterMakers.push(() => makeCharacter(
  7931. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7932. {
  7933. front: {
  7934. height: math.unit(6, "feet"),
  7935. weight: math.unit(350, "lbs"),
  7936. name: "Front",
  7937. image: {
  7938. source: "./media/characters/razinox/front.svg",
  7939. extra: 1686 / 1548,
  7940. bottom: 28.2 / 1868
  7941. }
  7942. },
  7943. back: {
  7944. height: math.unit(6, "feet"),
  7945. weight: math.unit(350, "lbs"),
  7946. name: "Back",
  7947. image: {
  7948. source: "./media/characters/razinox/back.svg",
  7949. extra: 1660 / 1590,
  7950. bottom: 15 / 1665
  7951. }
  7952. },
  7953. },
  7954. [
  7955. {
  7956. name: "Normal",
  7957. height: math.unit(10 + 8 / 12, "foot")
  7958. },
  7959. {
  7960. name: "Minimacro",
  7961. height: math.unit(15, "foot")
  7962. },
  7963. {
  7964. name: "Macro",
  7965. height: math.unit(60, "foot"),
  7966. default: true
  7967. },
  7968. {
  7969. name: "Megamacro",
  7970. height: math.unit(5, "miles")
  7971. },
  7972. {
  7973. name: "Gigamacro",
  7974. height: math.unit(6000, "miles")
  7975. },
  7976. ]
  7977. ))
  7978. characterMakers.push(() => makeCharacter(
  7979. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7980. {
  7981. front: {
  7982. height: math.unit(6, "feet"),
  7983. weight: math.unit(150, "lbs"),
  7984. name: "Front",
  7985. image: {
  7986. source: "./media/characters/cobalt/front.svg"
  7987. }
  7988. }
  7989. },
  7990. [
  7991. {
  7992. name: "Normal",
  7993. height: math.unit(8 + 1 / 12, "foot")
  7994. },
  7995. {
  7996. name: "Macro",
  7997. height: math.unit(111, "foot"),
  7998. default: true
  7999. },
  8000. {
  8001. name: "Supracosmic",
  8002. height: math.unit(1e42, "feet")
  8003. },
  8004. ]
  8005. ))
  8006. characterMakers.push(() => makeCharacter(
  8007. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8008. {
  8009. front: {
  8010. height: math.unit(5, "inches"),
  8011. name: "Front",
  8012. image: {
  8013. source: "./media/characters/amanda/front.svg",
  8014. extra: 926/791,
  8015. bottom: 38/964
  8016. }
  8017. },
  8018. back: {
  8019. height: math.unit(5, "inches"),
  8020. name: "Back",
  8021. image: {
  8022. source: "./media/characters/amanda/back.svg",
  8023. extra: 909/805,
  8024. bottom: 43/952
  8025. }
  8026. },
  8027. },
  8028. [
  8029. {
  8030. name: "Micro",
  8031. height: math.unit(5, "inches"),
  8032. default: true
  8033. },
  8034. ]
  8035. ))
  8036. characterMakers.push(() => makeCharacter(
  8037. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8038. {
  8039. front: {
  8040. height: math.unit(2.75, "meters"),
  8041. weight: math.unit(1200, "lb"),
  8042. name: "Front",
  8043. image: {
  8044. source: "./media/characters/teal/front.svg",
  8045. extra: 2463 / 2320,
  8046. bottom: 166 / 2629
  8047. }
  8048. },
  8049. back: {
  8050. height: math.unit(2.75, "meters"),
  8051. weight: math.unit(1200, "lb"),
  8052. name: "Back",
  8053. image: {
  8054. source: "./media/characters/teal/back.svg",
  8055. extra: 2580 / 2489,
  8056. bottom: 151 / 2731
  8057. }
  8058. },
  8059. sitting: {
  8060. height: math.unit(1.9, "meters"),
  8061. weight: math.unit(1200, "lb"),
  8062. name: "Sitting",
  8063. image: {
  8064. source: "./media/characters/teal/sitting.svg",
  8065. extra: 623 / 590,
  8066. bottom: 121 / 744
  8067. }
  8068. },
  8069. standing: {
  8070. height: math.unit(2.75, "meters"),
  8071. weight: math.unit(1200, "lb"),
  8072. name: "Standing",
  8073. image: {
  8074. source: "./media/characters/teal/standing.svg",
  8075. extra: 923 / 893,
  8076. bottom: 60 / 983
  8077. }
  8078. },
  8079. stretching: {
  8080. height: math.unit(3.65, "meters"),
  8081. weight: math.unit(1200, "lb"),
  8082. name: "Stretching",
  8083. image: {
  8084. source: "./media/characters/teal/stretching.svg",
  8085. extra: 1276 / 1244,
  8086. bottom: 0 / 1276
  8087. }
  8088. },
  8089. legged: {
  8090. height: math.unit(1.3, "meters"),
  8091. weight: math.unit(100, "lb"),
  8092. name: "Legged",
  8093. image: {
  8094. source: "./media/characters/teal/legged.svg",
  8095. extra: 462 / 437,
  8096. bottom: 24 / 486
  8097. }
  8098. },
  8099. naga: {
  8100. height: math.unit(5.4, "meters"),
  8101. weight: math.unit(4000, "lb"),
  8102. name: "Naga",
  8103. image: {
  8104. source: "./media/characters/teal/naga.svg",
  8105. extra: 1902 / 1858,
  8106. bottom: 0 / 1902
  8107. }
  8108. },
  8109. hand: {
  8110. height: math.unit(0.52, "meters"),
  8111. name: "Hand",
  8112. image: {
  8113. source: "./media/characters/teal/hand.svg"
  8114. }
  8115. },
  8116. maw: {
  8117. height: math.unit(0.43, "meters"),
  8118. name: "Maw",
  8119. image: {
  8120. source: "./media/characters/teal/maw.svg"
  8121. }
  8122. },
  8123. slit: {
  8124. height: math.unit(0.25, "meters"),
  8125. name: "Slit",
  8126. image: {
  8127. source: "./media/characters/teal/slit.svg"
  8128. }
  8129. },
  8130. },
  8131. [
  8132. {
  8133. name: "Normal",
  8134. height: math.unit(2.75, "meters"),
  8135. default: true
  8136. },
  8137. {
  8138. name: "Macro",
  8139. height: math.unit(300, "feet")
  8140. },
  8141. {
  8142. name: "Macro+",
  8143. height: math.unit(2000, "feet")
  8144. },
  8145. ]
  8146. ))
  8147. characterMakers.push(() => makeCharacter(
  8148. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8149. {
  8150. frontCat: {
  8151. height: math.unit(6, "feet"),
  8152. weight: math.unit(180, "lbs"),
  8153. name: "Front (Cat)",
  8154. image: {
  8155. source: "./media/characters/ravin-amulet/front-cat.svg"
  8156. }
  8157. },
  8158. frontCatAlt: {
  8159. height: math.unit(6, "feet"),
  8160. weight: math.unit(180, "lbs"),
  8161. name: "Front (Alt, Cat)",
  8162. image: {
  8163. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8164. }
  8165. },
  8166. frontWerewolf: {
  8167. height: math.unit(6 * 1.2, "feet"),
  8168. weight: math.unit(225, "lbs"),
  8169. name: "Front (Werewolf)",
  8170. image: {
  8171. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8172. }
  8173. },
  8174. backWerewolf: {
  8175. height: math.unit(6 * 1.2, "feet"),
  8176. weight: math.unit(225, "lbs"),
  8177. name: "Back (Werewolf)",
  8178. image: {
  8179. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8180. }
  8181. },
  8182. },
  8183. [
  8184. {
  8185. name: "Nano",
  8186. height: math.unit(1, "micrometer")
  8187. },
  8188. {
  8189. name: "Micro",
  8190. height: math.unit(1, "inch")
  8191. },
  8192. {
  8193. name: "Normal",
  8194. height: math.unit(6, "feet"),
  8195. default: true
  8196. },
  8197. {
  8198. name: "Macro",
  8199. height: math.unit(60, "feet")
  8200. }
  8201. ]
  8202. ))
  8203. characterMakers.push(() => makeCharacter(
  8204. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8205. {
  8206. front: {
  8207. height: math.unit(6, "feet"),
  8208. weight: math.unit(165, "lbs"),
  8209. name: "Front",
  8210. image: {
  8211. source: "./media/characters/fluoresce/front.svg"
  8212. }
  8213. }
  8214. },
  8215. [
  8216. {
  8217. name: "Micro",
  8218. height: math.unit(6, "cm")
  8219. },
  8220. {
  8221. name: "Normal",
  8222. height: math.unit(5 + 7 / 12, "feet"),
  8223. default: true
  8224. },
  8225. {
  8226. name: "Macro",
  8227. height: math.unit(56, "feet")
  8228. },
  8229. {
  8230. name: "Megamacro",
  8231. height: math.unit(1.9, "miles")
  8232. },
  8233. ]
  8234. ))
  8235. characterMakers.push(() => makeCharacter(
  8236. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8237. {
  8238. front: {
  8239. height: math.unit(9 + 6 / 12, "feet"),
  8240. weight: math.unit(523, "lbs"),
  8241. name: "Side",
  8242. image: {
  8243. source: "./media/characters/aurora/side.svg"
  8244. }
  8245. }
  8246. },
  8247. [
  8248. {
  8249. name: "Normal",
  8250. height: math.unit(9 + 6 / 12, "feet")
  8251. },
  8252. {
  8253. name: "Macro",
  8254. height: math.unit(96, "feet"),
  8255. default: true
  8256. },
  8257. {
  8258. name: "Macro+",
  8259. height: math.unit(243, "feet")
  8260. },
  8261. ]
  8262. ))
  8263. characterMakers.push(() => makeCharacter(
  8264. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8265. {
  8266. front: {
  8267. height: math.unit(194, "cm"),
  8268. weight: math.unit(90, "kg"),
  8269. name: "Front",
  8270. image: {
  8271. source: "./media/characters/ranek/front.svg",
  8272. extra: 1862/1791,
  8273. bottom: 80/1942
  8274. }
  8275. },
  8276. back: {
  8277. height: math.unit(194, "cm"),
  8278. weight: math.unit(90, "kg"),
  8279. name: "Back",
  8280. image: {
  8281. source: "./media/characters/ranek/back.svg",
  8282. extra: 1853/1787,
  8283. bottom: 74/1927
  8284. }
  8285. },
  8286. feral: {
  8287. height: math.unit(30, "cm"),
  8288. weight: math.unit(1.6, "lbs"),
  8289. name: "Feral",
  8290. image: {
  8291. source: "./media/characters/ranek/feral.svg",
  8292. extra: 990/631,
  8293. bottom: 29/1019
  8294. }
  8295. },
  8296. },
  8297. [
  8298. {
  8299. name: "Normal",
  8300. height: math.unit(194, "cm"),
  8301. default: true
  8302. },
  8303. {
  8304. name: "Macro",
  8305. height: math.unit(100, "meters")
  8306. },
  8307. ]
  8308. ))
  8309. characterMakers.push(() => makeCharacter(
  8310. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8311. {
  8312. front: {
  8313. height: math.unit(5 + 6 / 12, "feet"),
  8314. weight: math.unit(153, "lbs"),
  8315. name: "Front",
  8316. image: {
  8317. source: "./media/characters/andrew-cooper/front.svg"
  8318. }
  8319. },
  8320. },
  8321. [
  8322. {
  8323. name: "Nano",
  8324. height: math.unit(1, "mm")
  8325. },
  8326. {
  8327. name: "Micro",
  8328. height: math.unit(2, "inches")
  8329. },
  8330. {
  8331. name: "Normal",
  8332. height: math.unit(5 + 6 / 12, "feet"),
  8333. default: true
  8334. }
  8335. ]
  8336. ))
  8337. characterMakers.push(() => makeCharacter(
  8338. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8339. {
  8340. front: {
  8341. height: math.unit(6, "feet"),
  8342. weight: math.unit(180, "lbs"),
  8343. name: "Front",
  8344. image: {
  8345. source: "./media/characters/akane-sato/front.svg",
  8346. extra: 1219 / 1140
  8347. }
  8348. },
  8349. back: {
  8350. height: math.unit(6, "feet"),
  8351. weight: math.unit(180, "lbs"),
  8352. name: "Back",
  8353. image: {
  8354. source: "./media/characters/akane-sato/back.svg",
  8355. extra: 1219 / 1170
  8356. }
  8357. },
  8358. },
  8359. [
  8360. {
  8361. name: "Normal",
  8362. height: math.unit(2.5, "meters")
  8363. },
  8364. {
  8365. name: "Macro",
  8366. height: math.unit(250, "meters"),
  8367. default: true
  8368. },
  8369. {
  8370. name: "Megamacro",
  8371. height: math.unit(25, "km")
  8372. },
  8373. ]
  8374. ))
  8375. characterMakers.push(() => makeCharacter(
  8376. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8377. {
  8378. front: {
  8379. height: math.unit(6, "feet"),
  8380. weight: math.unit(65, "kg"),
  8381. name: "Front",
  8382. image: {
  8383. source: "./media/characters/rook/front.svg",
  8384. extra: 960 / 950
  8385. }
  8386. }
  8387. },
  8388. [
  8389. {
  8390. name: "Normal",
  8391. height: math.unit(8.8, "feet")
  8392. },
  8393. {
  8394. name: "Macro",
  8395. height: math.unit(88, "feet"),
  8396. default: true
  8397. },
  8398. {
  8399. name: "Megamacro",
  8400. height: math.unit(8, "miles")
  8401. },
  8402. ]
  8403. ))
  8404. characterMakers.push(() => makeCharacter(
  8405. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8406. {
  8407. front: {
  8408. height: math.unit(12 + 2 / 12, "feet"),
  8409. weight: math.unit(808, "lbs"),
  8410. name: "Front",
  8411. image: {
  8412. source: "./media/characters/prodigy/front.svg"
  8413. }
  8414. }
  8415. },
  8416. [
  8417. {
  8418. name: "Normal",
  8419. height: math.unit(12 + 2 / 12, "feet"),
  8420. default: true
  8421. },
  8422. {
  8423. name: "Macro",
  8424. height: math.unit(143, "feet")
  8425. },
  8426. {
  8427. name: "Macro+",
  8428. height: math.unit(400, "feet")
  8429. },
  8430. ]
  8431. ))
  8432. characterMakers.push(() => makeCharacter(
  8433. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8434. {
  8435. front: {
  8436. height: math.unit(6, "feet"),
  8437. weight: math.unit(225, "lbs"),
  8438. name: "Front",
  8439. image: {
  8440. source: "./media/characters/daniel/front.svg"
  8441. }
  8442. },
  8443. leaning: {
  8444. height: math.unit(6, "feet"),
  8445. weight: math.unit(225, "lbs"),
  8446. name: "Leaning",
  8447. image: {
  8448. source: "./media/characters/daniel/leaning.svg"
  8449. }
  8450. },
  8451. },
  8452. [
  8453. {
  8454. name: "Macro",
  8455. height: math.unit(1000, "feet"),
  8456. default: true
  8457. },
  8458. ]
  8459. ))
  8460. characterMakers.push(() => makeCharacter(
  8461. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8462. {
  8463. front: {
  8464. height: math.unit(6, "feet"),
  8465. weight: math.unit(88, "lbs"),
  8466. name: "Front",
  8467. image: {
  8468. source: "./media/characters/chiros/front.svg",
  8469. extra: 306 / 226
  8470. }
  8471. },
  8472. side: {
  8473. height: math.unit(6, "feet"),
  8474. weight: math.unit(88, "lbs"),
  8475. name: "Side",
  8476. image: {
  8477. source: "./media/characters/chiros/side.svg",
  8478. extra: 306 / 226
  8479. }
  8480. },
  8481. },
  8482. [
  8483. {
  8484. name: "Normal",
  8485. height: math.unit(6, "cm"),
  8486. default: true
  8487. },
  8488. ]
  8489. ))
  8490. characterMakers.push(() => makeCharacter(
  8491. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8492. {
  8493. front: {
  8494. height: math.unit(6, "feet"),
  8495. weight: math.unit(100, "lbs"),
  8496. name: "Front",
  8497. image: {
  8498. source: "./media/characters/selka/front.svg",
  8499. extra: 947 / 887
  8500. }
  8501. }
  8502. },
  8503. [
  8504. {
  8505. name: "Normal",
  8506. height: math.unit(5, "cm"),
  8507. default: true
  8508. },
  8509. ]
  8510. ))
  8511. characterMakers.push(() => makeCharacter(
  8512. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8513. {
  8514. front: {
  8515. height: math.unit(8 + 3 / 12, "feet"),
  8516. weight: math.unit(424, "lbs"),
  8517. name: "Front",
  8518. image: {
  8519. source: "./media/characters/verin/front.svg",
  8520. extra: 1845 / 1550
  8521. }
  8522. },
  8523. frontArmored: {
  8524. height: math.unit(8 + 3 / 12, "feet"),
  8525. weight: math.unit(424, "lbs"),
  8526. name: "Front (Armored)",
  8527. image: {
  8528. source: "./media/characters/verin/front-armor.svg",
  8529. extra: 1845 / 1550,
  8530. bottom: 0.01
  8531. }
  8532. },
  8533. back: {
  8534. height: math.unit(8 + 3 / 12, "feet"),
  8535. weight: math.unit(424, "lbs"),
  8536. name: "Back",
  8537. image: {
  8538. source: "./media/characters/verin/back.svg",
  8539. bottom: 0.1,
  8540. extra: 1
  8541. }
  8542. },
  8543. foot: {
  8544. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8545. name: "Foot",
  8546. image: {
  8547. source: "./media/characters/verin/foot.svg"
  8548. }
  8549. },
  8550. },
  8551. [
  8552. {
  8553. name: "Normal",
  8554. height: math.unit(8 + 3 / 12, "feet")
  8555. },
  8556. {
  8557. name: "Minimacro",
  8558. height: math.unit(21, "feet"),
  8559. default: true
  8560. },
  8561. {
  8562. name: "Macro",
  8563. height: math.unit(626, "feet")
  8564. },
  8565. ]
  8566. ))
  8567. characterMakers.push(() => makeCharacter(
  8568. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8569. {
  8570. front: {
  8571. height: math.unit(2.718, "meters"),
  8572. weight: math.unit(150, "lbs"),
  8573. name: "Front",
  8574. image: {
  8575. source: "./media/characters/sovrim-terraquian/front.svg",
  8576. extra: 1752/1689,
  8577. bottom: 36/1788
  8578. }
  8579. },
  8580. back: {
  8581. height: math.unit(2.718, "meters"),
  8582. weight: math.unit(150, "lbs"),
  8583. name: "Back",
  8584. image: {
  8585. source: "./media/characters/sovrim-terraquian/back.svg",
  8586. extra: 1698/1657,
  8587. bottom: 58/1756
  8588. }
  8589. },
  8590. tongue: {
  8591. height: math.unit(2.865, "feet"),
  8592. name: "Tongue",
  8593. image: {
  8594. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8595. }
  8596. },
  8597. hand: {
  8598. height: math.unit(1.61, "feet"),
  8599. name: "Hand",
  8600. image: {
  8601. source: "./media/characters/sovrim-terraquian/hand.svg"
  8602. }
  8603. },
  8604. foot: {
  8605. height: math.unit(1.05, "feet"),
  8606. name: "Foot",
  8607. image: {
  8608. source: "./media/characters/sovrim-terraquian/foot.svg"
  8609. }
  8610. },
  8611. footAlt: {
  8612. height: math.unit(0.88, "feet"),
  8613. name: "Foot (Alt)",
  8614. image: {
  8615. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8616. }
  8617. },
  8618. },
  8619. [
  8620. {
  8621. name: "Micro",
  8622. height: math.unit(2, "inches")
  8623. },
  8624. {
  8625. name: "Small",
  8626. height: math.unit(1, "meter")
  8627. },
  8628. {
  8629. name: "Normal",
  8630. height: math.unit(Math.E, "meters"),
  8631. default: true
  8632. },
  8633. {
  8634. name: "Macro",
  8635. height: math.unit(20, "meters")
  8636. },
  8637. {
  8638. name: "Macro+",
  8639. height: math.unit(400, "meters")
  8640. },
  8641. ]
  8642. ))
  8643. characterMakers.push(() => makeCharacter(
  8644. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8645. {
  8646. front: {
  8647. height: math.unit(7, "feet"),
  8648. weight: math.unit(489, "lbs"),
  8649. name: "Front",
  8650. image: {
  8651. source: "./media/characters/reece-silvermane/front.svg",
  8652. bottom: 0.02,
  8653. extra: 1
  8654. }
  8655. },
  8656. },
  8657. [
  8658. {
  8659. name: "Macro",
  8660. height: math.unit(1.5, "miles"),
  8661. default: true
  8662. },
  8663. ]
  8664. ))
  8665. characterMakers.push(() => makeCharacter(
  8666. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8667. {
  8668. front: {
  8669. height: math.unit(6, "feet"),
  8670. weight: math.unit(78, "kg"),
  8671. name: "Front",
  8672. image: {
  8673. source: "./media/characters/kane/front.svg",
  8674. extra: 978 / 899
  8675. }
  8676. },
  8677. },
  8678. [
  8679. {
  8680. name: "Normal",
  8681. height: math.unit(2.1, "m"),
  8682. },
  8683. {
  8684. name: "Macro",
  8685. height: math.unit(1, "km"),
  8686. default: true
  8687. },
  8688. ]
  8689. ))
  8690. characterMakers.push(() => makeCharacter(
  8691. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8692. {
  8693. front: {
  8694. height: math.unit(6, "feet"),
  8695. weight: math.unit(200, "kg"),
  8696. name: "Front",
  8697. image: {
  8698. source: "./media/characters/tegon/front.svg",
  8699. bottom: 0.01,
  8700. extra: 1
  8701. }
  8702. },
  8703. },
  8704. [
  8705. {
  8706. name: "Micro",
  8707. height: math.unit(1, "inch")
  8708. },
  8709. {
  8710. name: "Normal",
  8711. height: math.unit(6 + 3 / 12, "feet"),
  8712. default: true
  8713. },
  8714. {
  8715. name: "Macro",
  8716. height: math.unit(300, "feet")
  8717. },
  8718. {
  8719. name: "Megamacro",
  8720. height: math.unit(69, "miles")
  8721. },
  8722. ]
  8723. ))
  8724. characterMakers.push(() => makeCharacter(
  8725. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8726. {
  8727. side: {
  8728. height: math.unit(6, "feet"),
  8729. weight: math.unit(2304, "lbs"),
  8730. name: "Side",
  8731. image: {
  8732. source: "./media/characters/arcturax/side.svg",
  8733. extra: 790 / 376,
  8734. bottom: 0.01
  8735. }
  8736. },
  8737. },
  8738. [
  8739. {
  8740. name: "Micro",
  8741. height: math.unit(2, "inch")
  8742. },
  8743. {
  8744. name: "Normal",
  8745. height: math.unit(6, "feet")
  8746. },
  8747. {
  8748. name: "Macro",
  8749. height: math.unit(39, "feet"),
  8750. default: true
  8751. },
  8752. {
  8753. name: "Megamacro",
  8754. height: math.unit(7, "miles")
  8755. },
  8756. ]
  8757. ))
  8758. characterMakers.push(() => makeCharacter(
  8759. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8760. {
  8761. front: {
  8762. height: math.unit(6, "feet"),
  8763. weight: math.unit(50, "lbs"),
  8764. name: "Front",
  8765. image: {
  8766. source: "./media/characters/sentri/front.svg",
  8767. extra: 1750 / 1570,
  8768. bottom: 0.025
  8769. }
  8770. },
  8771. frontAlt: {
  8772. height: math.unit(6, "feet"),
  8773. weight: math.unit(50, "lbs"),
  8774. name: "Front (Alt)",
  8775. image: {
  8776. source: "./media/characters/sentri/front-alt.svg",
  8777. extra: 1750 / 1570,
  8778. bottom: 0.025
  8779. }
  8780. },
  8781. },
  8782. [
  8783. {
  8784. name: "Normal",
  8785. height: math.unit(15, "feet"),
  8786. default: true
  8787. },
  8788. {
  8789. name: "Macro",
  8790. height: math.unit(2500, "feet")
  8791. }
  8792. ]
  8793. ))
  8794. characterMakers.push(() => makeCharacter(
  8795. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8796. {
  8797. front: {
  8798. height: math.unit(5 + 8 / 12, "feet"),
  8799. weight: math.unit(130, "lbs"),
  8800. name: "Front",
  8801. image: {
  8802. source: "./media/characters/corvin/front.svg",
  8803. extra: 1803 / 1629
  8804. }
  8805. },
  8806. frontShirt: {
  8807. height: math.unit(5 + 8 / 12, "feet"),
  8808. weight: math.unit(130, "lbs"),
  8809. name: "Front (Shirt)",
  8810. image: {
  8811. source: "./media/characters/corvin/front-shirt.svg",
  8812. extra: 1803 / 1629
  8813. }
  8814. },
  8815. frontPoncho: {
  8816. height: math.unit(5 + 8 / 12, "feet"),
  8817. weight: math.unit(130, "lbs"),
  8818. name: "Front (Poncho)",
  8819. image: {
  8820. source: "./media/characters/corvin/front-poncho.svg",
  8821. extra: 1803 / 1629
  8822. }
  8823. },
  8824. side: {
  8825. height: math.unit(5 + 8 / 12, "feet"),
  8826. weight: math.unit(130, "lbs"),
  8827. name: "Side",
  8828. image: {
  8829. source: "./media/characters/corvin/side.svg",
  8830. extra: 1012 / 945
  8831. }
  8832. },
  8833. back: {
  8834. height: math.unit(5 + 8 / 12, "feet"),
  8835. weight: math.unit(130, "lbs"),
  8836. name: "Back",
  8837. image: {
  8838. source: "./media/characters/corvin/back.svg",
  8839. extra: 1803 / 1629
  8840. }
  8841. },
  8842. },
  8843. [
  8844. {
  8845. name: "Micro",
  8846. height: math.unit(3, "inches")
  8847. },
  8848. {
  8849. name: "Normal",
  8850. height: math.unit(5 + 8 / 12, "feet")
  8851. },
  8852. {
  8853. name: "Macro",
  8854. height: math.unit(300, "feet"),
  8855. default: true
  8856. },
  8857. {
  8858. name: "Megamacro",
  8859. height: math.unit(500, "miles")
  8860. }
  8861. ]
  8862. ))
  8863. characterMakers.push(() => makeCharacter(
  8864. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8865. {
  8866. front: {
  8867. height: math.unit(6, "feet"),
  8868. weight: math.unit(135, "lbs"),
  8869. name: "Front",
  8870. image: {
  8871. source: "./media/characters/q/front.svg",
  8872. extra: 854 / 752,
  8873. bottom: 0.005
  8874. }
  8875. },
  8876. back: {
  8877. height: math.unit(6, "feet"),
  8878. weight: math.unit(130, "lbs"),
  8879. name: "Back",
  8880. image: {
  8881. source: "./media/characters/q/back.svg",
  8882. extra: 854 / 752
  8883. }
  8884. },
  8885. },
  8886. [
  8887. {
  8888. name: "Macro",
  8889. height: math.unit(90, "feet"),
  8890. default: true
  8891. },
  8892. {
  8893. name: "Extra Macro",
  8894. height: math.unit(300, "feet"),
  8895. },
  8896. {
  8897. name: "BIG WALF",
  8898. height: math.unit(750, "feet"),
  8899. },
  8900. ]
  8901. ))
  8902. characterMakers.push(() => makeCharacter(
  8903. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8904. {
  8905. front: {
  8906. height: math.unit(3, "feet"),
  8907. weight: math.unit(28, "lbs"),
  8908. name: "Front",
  8909. image: {
  8910. source: "./media/characters/citrine/front.svg"
  8911. }
  8912. }
  8913. },
  8914. [
  8915. {
  8916. name: "Normal",
  8917. height: math.unit(3, "feet"),
  8918. default: true
  8919. }
  8920. ]
  8921. ))
  8922. characterMakers.push(() => makeCharacter(
  8923. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8924. {
  8925. front: {
  8926. height: math.unit(14, "feet"),
  8927. weight: math.unit(1450, "kg"),
  8928. preyCapacity: math.unit(15, "people"),
  8929. name: "Front",
  8930. image: {
  8931. source: "./media/characters/aura-starwind/front.svg",
  8932. extra: 1440/1327,
  8933. bottom: 11/1451
  8934. }
  8935. },
  8936. side: {
  8937. height: math.unit(14, "feet"),
  8938. weight: math.unit(1450, "kg"),
  8939. preyCapacity: math.unit(15, "people"),
  8940. name: "Side",
  8941. image: {
  8942. source: "./media/characters/aura-starwind/side.svg",
  8943. extra: 1654 / 1497
  8944. }
  8945. },
  8946. taur: {
  8947. height: math.unit(18, "feet"),
  8948. weight: math.unit(5500, "kg"),
  8949. preyCapacity: math.unit(50, "people"),
  8950. name: "Taur",
  8951. image: {
  8952. source: "./media/characters/aura-starwind/taur.svg",
  8953. extra: 1760 / 1650
  8954. }
  8955. },
  8956. feral: {
  8957. height: math.unit(46, "feet"),
  8958. weight: math.unit(25000, "kg"),
  8959. preyCapacity: math.unit(120, "people"),
  8960. name: "Feral",
  8961. image: {
  8962. source: "./media/characters/aura-starwind/feral.svg"
  8963. }
  8964. },
  8965. },
  8966. [
  8967. {
  8968. name: "Normal",
  8969. height: math.unit(14, "feet"),
  8970. default: true
  8971. },
  8972. {
  8973. name: "Macro",
  8974. height: math.unit(50, "meters")
  8975. },
  8976. {
  8977. name: "Megamacro",
  8978. height: math.unit(5000, "meters")
  8979. },
  8980. {
  8981. name: "Gigamacro",
  8982. height: math.unit(100000, "kilometers")
  8983. },
  8984. ]
  8985. ))
  8986. characterMakers.push(() => makeCharacter(
  8987. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8988. {
  8989. front: {
  8990. height: math.unit(2 + 7 / 12, "feet"),
  8991. weight: math.unit(32, "lbs"),
  8992. name: "Front",
  8993. image: {
  8994. source: "./media/characters/rivet/front.svg",
  8995. extra: 1716 / 1658,
  8996. bottom: 0.03
  8997. }
  8998. },
  8999. foot: {
  9000. height: math.unit(0.551, "feet"),
  9001. name: "Rivet's Foot",
  9002. image: {
  9003. source: "./media/characters/rivet/foot.svg"
  9004. },
  9005. rename: true
  9006. }
  9007. },
  9008. [
  9009. {
  9010. name: "Micro",
  9011. height: math.unit(1.5, "inches"),
  9012. },
  9013. {
  9014. name: "Normal",
  9015. height: math.unit(2 + 7 / 12, "feet"),
  9016. default: true
  9017. },
  9018. {
  9019. name: "Macro",
  9020. height: math.unit(85, "feet")
  9021. },
  9022. {
  9023. name: "Megamacro",
  9024. height: math.unit(2.2, "km")
  9025. }
  9026. ]
  9027. ))
  9028. characterMakers.push(() => makeCharacter(
  9029. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9030. {
  9031. front: {
  9032. height: math.unit(5 + 9 / 12, "feet"),
  9033. weight: math.unit(150, "lbs"),
  9034. name: "Front",
  9035. image: {
  9036. source: "./media/characters/coffee/front.svg",
  9037. extra: 946/880,
  9038. bottom: 66/1012
  9039. }
  9040. },
  9041. foot: {
  9042. height: math.unit(1.29, "feet"),
  9043. name: "Foot",
  9044. image: {
  9045. source: "./media/characters/coffee/foot.svg"
  9046. }
  9047. },
  9048. },
  9049. [
  9050. {
  9051. name: "Micro",
  9052. height: math.unit(2, "inches"),
  9053. },
  9054. {
  9055. name: "Normal",
  9056. height: math.unit(5 + 9 / 12, "feet"),
  9057. default: true
  9058. },
  9059. {
  9060. name: "Macro",
  9061. height: math.unit(800, "feet")
  9062. },
  9063. {
  9064. name: "Megamacro",
  9065. height: math.unit(25, "miles")
  9066. }
  9067. ]
  9068. ))
  9069. characterMakers.push(() => makeCharacter(
  9070. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9071. {
  9072. front: {
  9073. height: math.unit(6, "feet"),
  9074. weight: math.unit(200, "lbs"),
  9075. name: "Front",
  9076. image: {
  9077. source: "./media/characters/chari-gal/front.svg",
  9078. extra: 1568 / 1385,
  9079. bottom: 0.047
  9080. }
  9081. },
  9082. gigantamax: {
  9083. height: math.unit(6 * 16, "feet"),
  9084. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9085. name: "Gigantamax",
  9086. image: {
  9087. source: "./media/characters/chari-gal/gigantamax.svg",
  9088. extra: 1124 / 888,
  9089. bottom: 0.03
  9090. }
  9091. },
  9092. },
  9093. [
  9094. {
  9095. name: "Normal",
  9096. height: math.unit(5 + 7 / 12, "feet")
  9097. },
  9098. {
  9099. name: "Macro",
  9100. height: math.unit(200, "feet"),
  9101. default: true
  9102. }
  9103. ]
  9104. ))
  9105. characterMakers.push(() => makeCharacter(
  9106. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9107. {
  9108. front: {
  9109. height: math.unit(6, "feet"),
  9110. weight: math.unit(150, "lbs"),
  9111. name: "Front",
  9112. image: {
  9113. source: "./media/characters/nova/front.svg",
  9114. extra: 5000 / 4722,
  9115. bottom: 0.02
  9116. }
  9117. }
  9118. },
  9119. [
  9120. {
  9121. name: "Micro-",
  9122. height: math.unit(0.8, "inches")
  9123. },
  9124. {
  9125. name: "Micro",
  9126. height: math.unit(2, "inches"),
  9127. default: true
  9128. },
  9129. ]
  9130. ))
  9131. characterMakers.push(() => makeCharacter(
  9132. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9133. {
  9134. koboldFront: {
  9135. height: math.unit(3 + 1 / 12, "feet"),
  9136. weight: math.unit(21.7, "lbs"),
  9137. name: "Front",
  9138. image: {
  9139. source: "./media/characters/argent/kobold-front.svg",
  9140. extra: 1471 / 1331,
  9141. bottom: 100.8 / 1575.5
  9142. },
  9143. form: "kobold",
  9144. default: true
  9145. },
  9146. dragonFront: {
  9147. height: math.unit(75, "inches"),
  9148. name: "Front",
  9149. image: {
  9150. source: "./media/characters/argent/dragon-front.svg",
  9151. extra: 1389/1248,
  9152. bottom: 54/1443
  9153. },
  9154. form: "dragon",
  9155. },
  9156. dragonBack: {
  9157. height: math.unit(75, "inches"),
  9158. name: "Back",
  9159. image: {
  9160. source: "./media/characters/argent/dragon-back.svg",
  9161. extra: 1399/1271,
  9162. bottom: 23/1422
  9163. },
  9164. form: "dragon",
  9165. },
  9166. dragonDressed: {
  9167. height: math.unit(75, "inches"),
  9168. name: "Dressed",
  9169. image: {
  9170. source: "./media/characters/argent/dragon-dressed.svg",
  9171. extra: 1350/1215,
  9172. bottom: 26/1376
  9173. },
  9174. form: "dragon"
  9175. },
  9176. dragonHead: {
  9177. height: math.unit(23.5, "inches"),
  9178. name: "Head",
  9179. image: {
  9180. source: "./media/characters/argent/dragon-head.svg"
  9181. },
  9182. form: "dragon",
  9183. },
  9184. },
  9185. [
  9186. {
  9187. name: "Micro",
  9188. height: math.unit(2, "inches"),
  9189. form: "kobold",
  9190. },
  9191. {
  9192. name: "Normal",
  9193. height: math.unit(3 + 1 / 12, "feet"),
  9194. form: "kobold",
  9195. default: true
  9196. },
  9197. {
  9198. name: "Macro",
  9199. height: math.unit(120, "feet"),
  9200. form: "kobold",
  9201. },
  9202. {
  9203. name: "Speck",
  9204. height: math.unit(1, "mm"),
  9205. form: "dragon",
  9206. },
  9207. {
  9208. name: "Tiny",
  9209. height: math.unit(1, "cm"),
  9210. form: "dragon",
  9211. },
  9212. {
  9213. name: "Micro",
  9214. height: math.unit(5, "cm"),
  9215. form: "dragon",
  9216. },
  9217. {
  9218. name: "Normal",
  9219. height: math.unit(75, "inches"),
  9220. form: "dragon",
  9221. default: true
  9222. },
  9223. {
  9224. name: "Extra Tall",
  9225. height: math.unit(9, "feet"),
  9226. form: "dragon",
  9227. },
  9228. {
  9229. name: "Inconvenient",
  9230. height: math.unit(5, "meters"),
  9231. form: "dragon",
  9232. },
  9233. {
  9234. name: "Macro",
  9235. height: math.unit(70, "meters"),
  9236. form: "dragon",
  9237. },
  9238. {
  9239. name: "Macro+",
  9240. height: math.unit(250, "meters"),
  9241. form: "dragon",
  9242. },
  9243. {
  9244. name: "Megamacro",
  9245. height: math.unit(20, "km"),
  9246. form: "dragon",
  9247. },
  9248. {
  9249. name: "Mountainous",
  9250. height: math.unit(100, "km"),
  9251. form: "dragon",
  9252. },
  9253. {
  9254. name: "Continental",
  9255. height: math.unit(2, "megameters"),
  9256. form: "dragon",
  9257. },
  9258. {
  9259. name: "Too Big",
  9260. height: math.unit(900, "megameters"),
  9261. form: "dragon",
  9262. },
  9263. ],
  9264. {
  9265. "kobold": {
  9266. name: "Kobold",
  9267. default: true
  9268. },
  9269. "dragon": {
  9270. name: "Dragon",
  9271. },
  9272. }
  9273. ))
  9274. characterMakers.push(() => makeCharacter(
  9275. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9276. {
  9277. lamp: {
  9278. height: math.unit(7 * 1559 / 989, "feet"),
  9279. name: "Magic Lamp",
  9280. image: {
  9281. source: "./media/characters/mira-al-cul/lamp.svg",
  9282. extra: 1617 / 1559
  9283. }
  9284. },
  9285. front: {
  9286. height: math.unit(7, "feet"),
  9287. name: "Front",
  9288. image: {
  9289. source: "./media/characters/mira-al-cul/front.svg",
  9290. extra: 1044 / 990
  9291. }
  9292. },
  9293. },
  9294. [
  9295. {
  9296. name: "Heavily Restricted",
  9297. height: math.unit(7 * 1559 / 989, "feet")
  9298. },
  9299. {
  9300. name: "Freshly Freed",
  9301. height: math.unit(50 * 1559 / 989, "feet")
  9302. },
  9303. {
  9304. name: "World Encompassing",
  9305. height: math.unit(10000 * 1559 / 989, "miles")
  9306. },
  9307. {
  9308. name: "Galactic",
  9309. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9310. },
  9311. {
  9312. name: "Palmed Universe",
  9313. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9314. default: true
  9315. },
  9316. {
  9317. name: "Multiversal Matriarch",
  9318. height: math.unit(8.87e10, "yottameters")
  9319. },
  9320. {
  9321. name: "Void Mother",
  9322. height: math.unit(3.14e110, "yottaparsecs")
  9323. },
  9324. {
  9325. name: "Toying with Transcendence",
  9326. height: math.unit(1e307, "meters")
  9327. },
  9328. ]
  9329. ))
  9330. characterMakers.push(() => makeCharacter(
  9331. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9332. {
  9333. front: {
  9334. height: math.unit(17 + 1 / 12, "feet"),
  9335. weight: math.unit(476.2 * 5, "lbs"),
  9336. name: "Front",
  9337. image: {
  9338. source: "./media/characters/kuro-shi-uchū/front.svg",
  9339. extra: 2329 / 1835,
  9340. bottom: 0.02
  9341. }
  9342. },
  9343. },
  9344. [
  9345. {
  9346. name: "Micro",
  9347. height: math.unit(2, "inches")
  9348. },
  9349. {
  9350. name: "Normal",
  9351. height: math.unit(12, "meters")
  9352. },
  9353. {
  9354. name: "Planetary",
  9355. height: math.unit(0.00929, "AU"),
  9356. default: true
  9357. },
  9358. {
  9359. name: "Universal",
  9360. height: math.unit(20, "gigaparsecs")
  9361. },
  9362. ]
  9363. ))
  9364. characterMakers.push(() => makeCharacter(
  9365. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9366. {
  9367. front: {
  9368. height: math.unit(5 + 2 / 12, "feet"),
  9369. weight: math.unit(120, "lbs"),
  9370. name: "Front",
  9371. image: {
  9372. source: "./media/characters/katherine/front.svg",
  9373. extra: 2075 / 1969
  9374. }
  9375. },
  9376. dress: {
  9377. height: math.unit(5 + 2 / 12, "feet"),
  9378. weight: math.unit(120, "lbs"),
  9379. name: "Dress",
  9380. image: {
  9381. source: "./media/characters/katherine/dress.svg",
  9382. extra: 2258 / 2064
  9383. }
  9384. },
  9385. },
  9386. [
  9387. {
  9388. name: "Micro",
  9389. height: math.unit(1, "inches"),
  9390. default: true
  9391. },
  9392. {
  9393. name: "Normal",
  9394. height: math.unit(5 + 2 / 12, "feet")
  9395. },
  9396. {
  9397. name: "Macro",
  9398. height: math.unit(100, "meters")
  9399. },
  9400. {
  9401. name: "Megamacro",
  9402. height: math.unit(80, "miles")
  9403. },
  9404. ]
  9405. ))
  9406. characterMakers.push(() => makeCharacter(
  9407. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9408. {
  9409. front: {
  9410. height: math.unit(7 + 8 / 12, "feet"),
  9411. weight: math.unit(250, "lbs"),
  9412. name: "Front",
  9413. image: {
  9414. source: "./media/characters/yevis/front.svg",
  9415. extra: 1938 / 1755
  9416. }
  9417. }
  9418. },
  9419. [
  9420. {
  9421. name: "Mortal",
  9422. height: math.unit(7 + 8 / 12, "feet")
  9423. },
  9424. {
  9425. name: "Battle",
  9426. height: math.unit(25 + 11 / 12, "feet")
  9427. },
  9428. {
  9429. name: "Wrath",
  9430. height: math.unit(1654 + 11 / 12, "feet")
  9431. },
  9432. {
  9433. name: "Planet Destroyer",
  9434. height: math.unit(12000, "miles")
  9435. },
  9436. {
  9437. name: "Galaxy Conqueror",
  9438. height: math.unit(1.45, "zettameters"),
  9439. default: true
  9440. },
  9441. {
  9442. name: "Universal War",
  9443. height: math.unit(184, "gigaparsecs")
  9444. },
  9445. {
  9446. name: "Eternity War",
  9447. height: math.unit(1.98e55, "yottaparsecs")
  9448. },
  9449. ]
  9450. ))
  9451. characterMakers.push(() => makeCharacter(
  9452. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9453. {
  9454. front: {
  9455. height: math.unit(5 + 8 / 12, "feet"),
  9456. weight: math.unit(63, "kg"),
  9457. name: "Front",
  9458. image: {
  9459. source: "./media/characters/xavier/front.svg",
  9460. extra: 944 / 883
  9461. }
  9462. },
  9463. frontStretch: {
  9464. height: math.unit(5 + 8 / 12, "feet"),
  9465. weight: math.unit(63, "kg"),
  9466. name: "Stretching",
  9467. image: {
  9468. source: "./media/characters/xavier/front-stretch.svg",
  9469. extra: 962 / 820
  9470. }
  9471. },
  9472. },
  9473. [
  9474. {
  9475. name: "Normal",
  9476. height: math.unit(5 + 8 / 12, "feet")
  9477. },
  9478. {
  9479. name: "Macro",
  9480. height: math.unit(100, "meters"),
  9481. default: true
  9482. },
  9483. {
  9484. name: "McLargeHuge",
  9485. height: math.unit(10, "miles")
  9486. },
  9487. ]
  9488. ))
  9489. characterMakers.push(() => makeCharacter(
  9490. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9491. {
  9492. front: {
  9493. height: math.unit(5 + 5 / 12, "feet"),
  9494. weight: math.unit(150, "lb"),
  9495. name: "Front",
  9496. image: {
  9497. source: "./media/characters/joshii/front.svg",
  9498. extra: 765 / 653,
  9499. bottom: 51 / 816
  9500. }
  9501. },
  9502. foot: {
  9503. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9504. name: "Foot",
  9505. image: {
  9506. source: "./media/characters/joshii/foot.svg"
  9507. }
  9508. },
  9509. },
  9510. [
  9511. {
  9512. name: "Micro",
  9513. height: math.unit(2, "inches")
  9514. },
  9515. {
  9516. name: "Normal",
  9517. height: math.unit(5 + 5 / 12, "feet")
  9518. },
  9519. {
  9520. name: "Macro",
  9521. height: math.unit(785, "feet"),
  9522. default: true
  9523. },
  9524. {
  9525. name: "Megamacro",
  9526. height: math.unit(24.5, "miles")
  9527. },
  9528. ]
  9529. ))
  9530. characterMakers.push(() => makeCharacter(
  9531. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9532. {
  9533. front: {
  9534. height: math.unit(6, "feet"),
  9535. weight: math.unit(150, "lb"),
  9536. name: "Front",
  9537. image: {
  9538. source: "./media/characters/goddess-elizabeth/front.svg",
  9539. extra: 1800 / 1525,
  9540. bottom: 0.005
  9541. }
  9542. },
  9543. foot: {
  9544. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9545. name: "Foot",
  9546. image: {
  9547. source: "./media/characters/goddess-elizabeth/foot.svg"
  9548. }
  9549. },
  9550. mouth: {
  9551. height: math.unit(6, "feet"),
  9552. name: "Mouth",
  9553. image: {
  9554. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9555. }
  9556. },
  9557. },
  9558. [
  9559. {
  9560. name: "Micro",
  9561. height: math.unit(12, "feet")
  9562. },
  9563. {
  9564. name: "Normal",
  9565. height: math.unit(80, "miles"),
  9566. default: true
  9567. },
  9568. {
  9569. name: "Macro",
  9570. height: math.unit(15000, "parsecs")
  9571. },
  9572. ]
  9573. ))
  9574. characterMakers.push(() => makeCharacter(
  9575. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9576. {
  9577. front: {
  9578. height: math.unit(5 + 9 / 12, "feet"),
  9579. weight: math.unit(144, "lb"),
  9580. name: "Front",
  9581. image: {
  9582. source: "./media/characters/kara/front.svg"
  9583. }
  9584. },
  9585. feet: {
  9586. height: math.unit(6 / 6.765, "feet"),
  9587. name: "Kara's Feet",
  9588. rename: true,
  9589. image: {
  9590. source: "./media/characters/kara/feet.svg"
  9591. }
  9592. },
  9593. },
  9594. [
  9595. {
  9596. name: "Normal",
  9597. height: math.unit(5 + 9 / 12, "feet")
  9598. },
  9599. {
  9600. name: "Macro",
  9601. height: math.unit(174, "feet"),
  9602. default: true
  9603. },
  9604. ]
  9605. ))
  9606. characterMakers.push(() => makeCharacter(
  9607. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9608. {
  9609. front: {
  9610. height: math.unit(18, "feet"),
  9611. weight: math.unit(4050, "lb"),
  9612. name: "Front",
  9613. image: {
  9614. source: "./media/characters/tyrone/front.svg",
  9615. extra: 2405 / 2270,
  9616. bottom: 182 / 2587
  9617. }
  9618. },
  9619. },
  9620. [
  9621. {
  9622. name: "Normal",
  9623. height: math.unit(18, "feet"),
  9624. default: true
  9625. },
  9626. {
  9627. name: "Macro",
  9628. height: math.unit(300, "feet")
  9629. },
  9630. {
  9631. name: "Megamacro",
  9632. height: math.unit(15, "km")
  9633. },
  9634. {
  9635. name: "Gigamacro",
  9636. height: math.unit(500, "km")
  9637. },
  9638. {
  9639. name: "Teramacro",
  9640. height: math.unit(0.5, "gigameters")
  9641. },
  9642. {
  9643. name: "Omnimacro",
  9644. height: math.unit(1e252, "yottauniverse")
  9645. },
  9646. ]
  9647. ))
  9648. characterMakers.push(() => makeCharacter(
  9649. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9650. {
  9651. front: {
  9652. height: math.unit(7 + 8 / 12, "feet"),
  9653. weight: math.unit(120, "lb"),
  9654. name: "Front",
  9655. image: {
  9656. source: "./media/characters/danny/front.svg",
  9657. extra: 1490 / 1350
  9658. }
  9659. },
  9660. back: {
  9661. height: math.unit(7 + 8 / 12, "feet"),
  9662. weight: math.unit(120, "lb"),
  9663. name: "Back",
  9664. image: {
  9665. source: "./media/characters/danny/back.svg",
  9666. extra: 1490 / 1350
  9667. }
  9668. },
  9669. },
  9670. [
  9671. {
  9672. name: "Normal",
  9673. height: math.unit(7 + 8 / 12, "feet"),
  9674. default: true
  9675. },
  9676. ]
  9677. ))
  9678. characterMakers.push(() => makeCharacter(
  9679. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9680. {
  9681. front: {
  9682. height: math.unit(3.5, "inches"),
  9683. weight: math.unit(19, "grams"),
  9684. name: "Front",
  9685. image: {
  9686. source: "./media/characters/mallow/front.svg",
  9687. extra: 471 / 431
  9688. }
  9689. },
  9690. back: {
  9691. height: math.unit(3.5, "inches"),
  9692. weight: math.unit(19, "grams"),
  9693. name: "Back",
  9694. image: {
  9695. source: "./media/characters/mallow/back.svg",
  9696. extra: 471 / 431
  9697. }
  9698. },
  9699. },
  9700. [
  9701. {
  9702. name: "Normal",
  9703. height: math.unit(3.5, "inches"),
  9704. default: true
  9705. },
  9706. ]
  9707. ))
  9708. characterMakers.push(() => makeCharacter(
  9709. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9710. {
  9711. front: {
  9712. height: math.unit(9, "feet"),
  9713. weight: math.unit(230, "kg"),
  9714. name: "Front",
  9715. image: {
  9716. source: "./media/characters/starry-aqua/front.svg"
  9717. }
  9718. },
  9719. back: {
  9720. height: math.unit(9, "feet"),
  9721. weight: math.unit(230, "kg"),
  9722. name: "Back",
  9723. image: {
  9724. source: "./media/characters/starry-aqua/back.svg"
  9725. }
  9726. },
  9727. hand: {
  9728. height: math.unit(9 * 0.1168, "feet"),
  9729. name: "Hand",
  9730. image: {
  9731. source: "./media/characters/starry-aqua/hand.svg"
  9732. }
  9733. },
  9734. foot: {
  9735. height: math.unit(9 * 0.18, "feet"),
  9736. name: "Foot",
  9737. image: {
  9738. source: "./media/characters/starry-aqua/foot.svg"
  9739. }
  9740. }
  9741. },
  9742. [
  9743. {
  9744. name: "Micro",
  9745. height: math.unit(3, "inches")
  9746. },
  9747. {
  9748. name: "Normal",
  9749. height: math.unit(9, "feet")
  9750. },
  9751. {
  9752. name: "Macro",
  9753. height: math.unit(300, "feet"),
  9754. default: true
  9755. },
  9756. {
  9757. name: "Megamacro",
  9758. height: math.unit(3200, "feet")
  9759. }
  9760. ]
  9761. ))
  9762. characterMakers.push(() => makeCharacter(
  9763. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9764. {
  9765. front: {
  9766. height: math.unit(15, "feet"),
  9767. weight: math.unit(5026, "lb"),
  9768. name: "Front",
  9769. image: {
  9770. source: "./media/characters/luka-towers/front.svg",
  9771. extra: 1269/1133,
  9772. bottom: 51/1320
  9773. }
  9774. },
  9775. },
  9776. [
  9777. {
  9778. name: "Normal",
  9779. height: math.unit(15, "feet"),
  9780. default: true
  9781. },
  9782. {
  9783. name: "Minimacro",
  9784. height: math.unit(25, "feet")
  9785. },
  9786. {
  9787. name: "Macro",
  9788. height: math.unit(320, "feet")
  9789. },
  9790. {
  9791. name: "Megamacro",
  9792. height: math.unit(35000, "feet")
  9793. },
  9794. {
  9795. name: "Gigamacro",
  9796. height: math.unit(4000, "miles")
  9797. },
  9798. {
  9799. name: "Teramacro",
  9800. height: math.unit(15000, "miles")
  9801. },
  9802. ]
  9803. ))
  9804. characterMakers.push(() => makeCharacter(
  9805. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9806. {
  9807. front: {
  9808. height: math.unit(6, "feet"),
  9809. weight: math.unit(150, "lb"),
  9810. name: "Front",
  9811. image: {
  9812. source: "./media/characters/natalie-nightring/front.svg",
  9813. extra: 1,
  9814. bottom: 0.06
  9815. }
  9816. },
  9817. },
  9818. [
  9819. {
  9820. name: "Uh Oh",
  9821. height: math.unit(0.1, "mm")
  9822. },
  9823. {
  9824. name: "Small",
  9825. height: math.unit(3, "inches")
  9826. },
  9827. {
  9828. name: "Human Scale",
  9829. height: math.unit(6, "feet")
  9830. },
  9831. {
  9832. name: "Librarian",
  9833. height: math.unit(50, "feet"),
  9834. default: true
  9835. },
  9836. {
  9837. name: "Immense",
  9838. height: math.unit(200, "miles")
  9839. },
  9840. ]
  9841. ))
  9842. characterMakers.push(() => makeCharacter(
  9843. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9844. {
  9845. front: {
  9846. height: math.unit(6, "feet"),
  9847. weight: math.unit(180, "lbs"),
  9848. name: "Front",
  9849. image: {
  9850. source: "./media/characters/danni-rosie/front.svg",
  9851. extra: 1260 / 1128,
  9852. bottom: 0.022
  9853. }
  9854. },
  9855. },
  9856. [
  9857. {
  9858. name: "Micro",
  9859. height: math.unit(2, "inches"),
  9860. default: true
  9861. },
  9862. ]
  9863. ))
  9864. characterMakers.push(() => makeCharacter(
  9865. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9866. {
  9867. front: {
  9868. height: math.unit(5 + 9 / 12, "feet"),
  9869. weight: math.unit(220, "lb"),
  9870. name: "Front",
  9871. image: {
  9872. source: "./media/characters/samantha-kruse/front.svg",
  9873. extra: (985 / 935),
  9874. bottom: 0.03
  9875. }
  9876. },
  9877. frontUndressed: {
  9878. height: math.unit(5 + 9 / 12, "feet"),
  9879. weight: math.unit(220, "lb"),
  9880. name: "Front (Undressed)",
  9881. image: {
  9882. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9883. extra: (973 / 923),
  9884. bottom: 0.025
  9885. }
  9886. },
  9887. fat: {
  9888. height: math.unit(5 + 9 / 12, "feet"),
  9889. weight: math.unit(900, "lb"),
  9890. name: "Front (Fat)",
  9891. image: {
  9892. source: "./media/characters/samantha-kruse/fat.svg",
  9893. extra: 2688 / 2561
  9894. }
  9895. },
  9896. },
  9897. [
  9898. {
  9899. name: "Normal",
  9900. height: math.unit(5 + 9 / 12, "feet"),
  9901. default: true
  9902. }
  9903. ]
  9904. ))
  9905. characterMakers.push(() => makeCharacter(
  9906. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9907. {
  9908. back: {
  9909. height: math.unit(5 + 4 / 12, "feet"),
  9910. weight: math.unit(4963, "lb"),
  9911. name: "Back",
  9912. image: {
  9913. source: "./media/characters/amelia-rosie/back.svg",
  9914. extra: 1113 / 963,
  9915. bottom: 0.01
  9916. }
  9917. },
  9918. },
  9919. [
  9920. {
  9921. name: "Level 0",
  9922. height: math.unit(5 + 4 / 12, "feet")
  9923. },
  9924. {
  9925. name: "Level 1",
  9926. height: math.unit(164597, "feet"),
  9927. default: true
  9928. },
  9929. {
  9930. name: "Level 2",
  9931. height: math.unit(956243, "miles")
  9932. },
  9933. {
  9934. name: "Level 3",
  9935. height: math.unit(29421709423, "miles")
  9936. },
  9937. {
  9938. name: "Level 4",
  9939. height: math.unit(154, "lightyears")
  9940. },
  9941. {
  9942. name: "Level 5",
  9943. height: math.unit(4738272, "lightyears")
  9944. },
  9945. {
  9946. name: "Level 6",
  9947. height: math.unit(145787152896, "lightyears")
  9948. },
  9949. ]
  9950. ))
  9951. characterMakers.push(() => makeCharacter(
  9952. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9953. {
  9954. front: {
  9955. height: math.unit(5 + 11 / 12, "feet"),
  9956. weight: math.unit(65, "kg"),
  9957. name: "Front",
  9958. image: {
  9959. source: "./media/characters/rook-kitara/front.svg",
  9960. extra: 1347 / 1274,
  9961. bottom: 0.005
  9962. }
  9963. },
  9964. },
  9965. [
  9966. {
  9967. name: "Totally Unfair",
  9968. height: math.unit(1.8, "mm")
  9969. },
  9970. {
  9971. name: "Lap Rookie",
  9972. height: math.unit(1.4, "feet")
  9973. },
  9974. {
  9975. name: "Normal",
  9976. height: math.unit(5 + 11 / 12, "feet"),
  9977. default: true
  9978. },
  9979. {
  9980. name: "How Did This Happen",
  9981. height: math.unit(80, "miles")
  9982. }
  9983. ]
  9984. ))
  9985. characterMakers.push(() => makeCharacter(
  9986. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9987. {
  9988. front: {
  9989. height: math.unit(7, "feet"),
  9990. weight: math.unit(300, "lb"),
  9991. name: "Front",
  9992. image: {
  9993. source: "./media/characters/pisces/front.svg",
  9994. extra: 2255 / 2115,
  9995. bottom: 0.03
  9996. }
  9997. },
  9998. back: {
  9999. height: math.unit(7, "feet"),
  10000. weight: math.unit(300, "lb"),
  10001. name: "Back",
  10002. image: {
  10003. source: "./media/characters/pisces/back.svg",
  10004. extra: 2146 / 2055,
  10005. bottom: 0.04
  10006. }
  10007. },
  10008. },
  10009. [
  10010. {
  10011. name: "Normal",
  10012. height: math.unit(7, "feet"),
  10013. default: true
  10014. },
  10015. {
  10016. name: "Swimming Pool",
  10017. height: math.unit(12.2, "meters")
  10018. },
  10019. {
  10020. name: "Olympic Swimming Pool",
  10021. height: math.unit(56.3, "meters")
  10022. },
  10023. {
  10024. name: "Lake Superior",
  10025. height: math.unit(93900, "meters")
  10026. },
  10027. {
  10028. name: "Mediterranean Sea",
  10029. height: math.unit(644457, "meters")
  10030. },
  10031. {
  10032. name: "World's Oceans",
  10033. height: math.unit(4567491, "meters")
  10034. },
  10035. ]
  10036. ))
  10037. characterMakers.push(() => makeCharacter(
  10038. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10039. {
  10040. front: {
  10041. height: math.unit(2.3, "meters"),
  10042. weight: math.unit(120, "kg"),
  10043. name: "Front",
  10044. image: {
  10045. source: "./media/characters/zelas/front.svg"
  10046. }
  10047. },
  10048. side: {
  10049. height: math.unit(2.3, "meters"),
  10050. weight: math.unit(120, "kg"),
  10051. name: "Side",
  10052. image: {
  10053. source: "./media/characters/zelas/side.svg"
  10054. }
  10055. },
  10056. back: {
  10057. height: math.unit(2.3, "meters"),
  10058. weight: math.unit(120, "kg"),
  10059. name: "Back",
  10060. image: {
  10061. source: "./media/characters/zelas/back.svg"
  10062. }
  10063. },
  10064. foot: {
  10065. height: math.unit(1.116, "feet"),
  10066. name: "Foot",
  10067. image: {
  10068. source: "./media/characters/zelas/foot.svg"
  10069. }
  10070. },
  10071. },
  10072. [
  10073. {
  10074. name: "Normal",
  10075. height: math.unit(2.3, "meters")
  10076. },
  10077. {
  10078. name: "Macro",
  10079. height: math.unit(30, "meters"),
  10080. default: true
  10081. },
  10082. ]
  10083. ))
  10084. characterMakers.push(() => makeCharacter(
  10085. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10086. {
  10087. front: {
  10088. height: math.unit(1, "inch"),
  10089. weight: math.unit(0.21, "grams"),
  10090. name: "Front",
  10091. image: {
  10092. source: "./media/characters/talbot/front.svg",
  10093. extra: 594 / 544
  10094. }
  10095. },
  10096. },
  10097. [
  10098. {
  10099. name: "Micro",
  10100. height: math.unit(1, "inch"),
  10101. default: true
  10102. },
  10103. ]
  10104. ))
  10105. characterMakers.push(() => makeCharacter(
  10106. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10107. {
  10108. front: {
  10109. height: math.unit(3 + 3 / 12, "feet"),
  10110. weight: math.unit(51.8, "lb"),
  10111. name: "Front",
  10112. image: {
  10113. source: "./media/characters/fliss/front.svg",
  10114. extra: 840 / 640
  10115. }
  10116. },
  10117. },
  10118. [
  10119. {
  10120. name: "Teeny Tiny",
  10121. height: math.unit(1, "mm")
  10122. },
  10123. {
  10124. name: "Small",
  10125. height: math.unit(1, "inch"),
  10126. default: true
  10127. },
  10128. {
  10129. name: "Standard Sylveon",
  10130. height: math.unit(3 + 3 / 12, "feet")
  10131. },
  10132. {
  10133. name: "Large Nuisance",
  10134. height: math.unit(33, "feet")
  10135. },
  10136. {
  10137. name: "City Filler",
  10138. height: math.unit(3000, "feet")
  10139. },
  10140. {
  10141. name: "New Horizon",
  10142. height: math.unit(6000, "miles")
  10143. },
  10144. ]
  10145. ))
  10146. characterMakers.push(() => makeCharacter(
  10147. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10148. {
  10149. front: {
  10150. height: math.unit(5, "cm"),
  10151. weight: math.unit(1.94, "g"),
  10152. name: "Front",
  10153. image: {
  10154. source: "./media/characters/fleta/front.svg",
  10155. extra: 835 / 803
  10156. }
  10157. },
  10158. back: {
  10159. height: math.unit(5, "cm"),
  10160. weight: math.unit(1.94, "g"),
  10161. name: "Back",
  10162. image: {
  10163. source: "./media/characters/fleta/back.svg",
  10164. extra: 835 / 803
  10165. }
  10166. },
  10167. },
  10168. [
  10169. {
  10170. name: "Micro",
  10171. height: math.unit(5, "cm"),
  10172. default: true
  10173. },
  10174. ]
  10175. ))
  10176. characterMakers.push(() => makeCharacter(
  10177. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10178. {
  10179. front: {
  10180. height: math.unit(6, "feet"),
  10181. weight: math.unit(225, "lb"),
  10182. name: "Front",
  10183. image: {
  10184. source: "./media/characters/dominic/front.svg",
  10185. extra: 1770 / 1620,
  10186. bottom: 0.025
  10187. }
  10188. },
  10189. back: {
  10190. height: math.unit(6, "feet"),
  10191. weight: math.unit(225, "lb"),
  10192. name: "Back",
  10193. image: {
  10194. source: "./media/characters/dominic/back.svg",
  10195. extra: 1745 / 1620,
  10196. bottom: 0.065
  10197. }
  10198. },
  10199. },
  10200. [
  10201. {
  10202. name: "Nano",
  10203. height: math.unit(0.1, "mm")
  10204. },
  10205. {
  10206. name: "Micro-",
  10207. height: math.unit(1, "mm")
  10208. },
  10209. {
  10210. name: "Micro",
  10211. height: math.unit(4, "inches")
  10212. },
  10213. {
  10214. name: "Normal",
  10215. height: math.unit(6 + 4 / 12, "feet"),
  10216. default: true
  10217. },
  10218. {
  10219. name: "Macro",
  10220. height: math.unit(115, "feet")
  10221. },
  10222. {
  10223. name: "Macro+",
  10224. height: math.unit(955, "feet")
  10225. },
  10226. {
  10227. name: "Megamacro",
  10228. height: math.unit(8990, "feet")
  10229. },
  10230. {
  10231. name: "Gigmacro",
  10232. height: math.unit(9310, "miles")
  10233. },
  10234. {
  10235. name: "Teramacro",
  10236. height: math.unit(1567005010, "miles")
  10237. },
  10238. {
  10239. name: "Examacro",
  10240. height: math.unit(1425, "parsecs")
  10241. },
  10242. ]
  10243. ))
  10244. characterMakers.push(() => makeCharacter(
  10245. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10246. {
  10247. front: {
  10248. height: math.unit(400, "feet"),
  10249. weight: math.unit(44444444, "lb"),
  10250. name: "Front",
  10251. image: {
  10252. source: "./media/characters/major-colonel/front.svg"
  10253. }
  10254. },
  10255. back: {
  10256. height: math.unit(400, "feet"),
  10257. weight: math.unit(44444444, "lb"),
  10258. name: "Back",
  10259. image: {
  10260. source: "./media/characters/major-colonel/back.svg"
  10261. }
  10262. },
  10263. },
  10264. [
  10265. {
  10266. name: "Macro",
  10267. height: math.unit(400, "feet"),
  10268. default: true
  10269. },
  10270. ]
  10271. ))
  10272. characterMakers.push(() => makeCharacter(
  10273. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10274. {
  10275. catFront: {
  10276. height: math.unit(6, "feet"),
  10277. weight: math.unit(120, "lb"),
  10278. name: "Front (Cat Side)",
  10279. image: {
  10280. source: "./media/characters/axel-lycan/cat-front.svg",
  10281. extra: 430 / 402,
  10282. bottom: 43 / 472.35
  10283. }
  10284. },
  10285. catBack: {
  10286. height: math.unit(6, "feet"),
  10287. weight: math.unit(120, "lb"),
  10288. name: "Back (Cat Side)",
  10289. image: {
  10290. source: "./media/characters/axel-lycan/cat-back.svg",
  10291. extra: 447 / 419,
  10292. bottom: 23.3 / 469
  10293. }
  10294. },
  10295. wolfFront: {
  10296. height: math.unit(6, "feet"),
  10297. weight: math.unit(120, "lb"),
  10298. name: "Front (Wolf Side)",
  10299. image: {
  10300. source: "./media/characters/axel-lycan/wolf-front.svg",
  10301. extra: 485 / 456,
  10302. bottom: 19 / 504
  10303. }
  10304. },
  10305. wolfBack: {
  10306. height: math.unit(6, "feet"),
  10307. weight: math.unit(120, "lb"),
  10308. name: "Back (Wolf Side)",
  10309. image: {
  10310. source: "./media/characters/axel-lycan/wolf-back.svg",
  10311. extra: 475 / 438,
  10312. bottom: 39.2 / 514
  10313. }
  10314. },
  10315. },
  10316. [
  10317. {
  10318. name: "Macro",
  10319. height: math.unit(1, "km"),
  10320. default: true
  10321. },
  10322. ]
  10323. ))
  10324. characterMakers.push(() => makeCharacter(
  10325. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10326. {
  10327. front: {
  10328. height: math.unit(5 + 9 / 12, "feet"),
  10329. weight: math.unit(175, "lb"),
  10330. name: "Front",
  10331. image: {
  10332. source: "./media/characters/vanrel-hyena/front.svg",
  10333. extra: 1086 / 1010,
  10334. bottom: 0.04
  10335. }
  10336. },
  10337. },
  10338. [
  10339. {
  10340. name: "Normal",
  10341. height: math.unit(5 + 9 / 12, "feet"),
  10342. default: true
  10343. },
  10344. ]
  10345. ))
  10346. characterMakers.push(() => makeCharacter(
  10347. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10348. {
  10349. front: {
  10350. height: math.unit(6, "feet"),
  10351. weight: math.unit(103, "lb"),
  10352. name: "Front",
  10353. image: {
  10354. source: "./media/characters/abbott-absol/front.svg",
  10355. extra: 2010 / 1842
  10356. }
  10357. },
  10358. },
  10359. [
  10360. {
  10361. name: "Megamicro",
  10362. height: math.unit(0.1, "mm")
  10363. },
  10364. {
  10365. name: "Micro",
  10366. height: math.unit(1, "inch")
  10367. },
  10368. {
  10369. name: "Normal",
  10370. height: math.unit(6, "feet"),
  10371. default: true
  10372. },
  10373. ]
  10374. ))
  10375. characterMakers.push(() => makeCharacter(
  10376. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10377. {
  10378. front: {
  10379. height: math.unit(6, "feet"),
  10380. weight: math.unit(264, "lb"),
  10381. name: "Front",
  10382. image: {
  10383. source: "./media/characters/hector/front.svg",
  10384. extra: 2280 / 2130,
  10385. bottom: 0.07
  10386. }
  10387. },
  10388. },
  10389. [
  10390. {
  10391. name: "Normal",
  10392. height: math.unit(12.25, "foot"),
  10393. default: true
  10394. },
  10395. {
  10396. name: "Macro",
  10397. height: math.unit(160, "feet")
  10398. },
  10399. ]
  10400. ))
  10401. characterMakers.push(() => makeCharacter(
  10402. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10403. {
  10404. front: {
  10405. height: math.unit(6, "feet"),
  10406. weight: math.unit(150, "lb"),
  10407. name: "Front",
  10408. image: {
  10409. source: "./media/characters/sal/front.svg",
  10410. extra: 1846 / 1699,
  10411. bottom: 0.04
  10412. }
  10413. },
  10414. },
  10415. [
  10416. {
  10417. name: "Megamacro",
  10418. height: math.unit(10, "miles"),
  10419. default: true
  10420. },
  10421. ]
  10422. ))
  10423. characterMakers.push(() => makeCharacter(
  10424. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10425. {
  10426. front: {
  10427. height: math.unit(3, "meters"),
  10428. weight: math.unit(450, "kg"),
  10429. name: "front",
  10430. image: {
  10431. source: "./media/characters/ranger/front.svg",
  10432. extra: 2401 / 2243,
  10433. bottom: 0.05
  10434. }
  10435. },
  10436. },
  10437. [
  10438. {
  10439. name: "Normal",
  10440. height: math.unit(3, "meters"),
  10441. default: true
  10442. },
  10443. ]
  10444. ))
  10445. characterMakers.push(() => makeCharacter(
  10446. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10447. {
  10448. front: {
  10449. height: math.unit(14, "feet"),
  10450. weight: math.unit(800, "kg"),
  10451. name: "Front",
  10452. image: {
  10453. source: "./media/characters/theresa/front.svg",
  10454. extra: 3575 / 3346,
  10455. bottom: 0.03
  10456. }
  10457. },
  10458. },
  10459. [
  10460. {
  10461. name: "Normal",
  10462. height: math.unit(14, "feet"),
  10463. default: true
  10464. },
  10465. ]
  10466. ))
  10467. characterMakers.push(() => makeCharacter(
  10468. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10469. {
  10470. front: {
  10471. height: math.unit(6, "feet"),
  10472. weight: math.unit(3, "kg"),
  10473. name: "Front",
  10474. image: {
  10475. source: "./media/characters/ine/front.svg",
  10476. extra: 678 / 539,
  10477. bottom: 0.023
  10478. }
  10479. },
  10480. },
  10481. [
  10482. {
  10483. name: "Normal",
  10484. height: math.unit(2.265, "feet"),
  10485. default: true
  10486. },
  10487. ]
  10488. ))
  10489. characterMakers.push(() => makeCharacter(
  10490. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10491. {
  10492. front: {
  10493. height: math.unit(5, "feet"),
  10494. weight: math.unit(30, "kg"),
  10495. name: "Front",
  10496. image: {
  10497. source: "./media/characters/vial/front.svg",
  10498. extra: 1365 / 1277,
  10499. bottom: 0.04
  10500. }
  10501. },
  10502. },
  10503. [
  10504. {
  10505. name: "Normal",
  10506. height: math.unit(5, "feet"),
  10507. default: true
  10508. },
  10509. ]
  10510. ))
  10511. characterMakers.push(() => makeCharacter(
  10512. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10513. {
  10514. side: {
  10515. height: math.unit(3.4, "meters"),
  10516. weight: math.unit(1000, "lb"),
  10517. name: "Side",
  10518. image: {
  10519. source: "./media/characters/rovoska/side.svg",
  10520. extra: 4403 / 1515
  10521. }
  10522. },
  10523. },
  10524. [
  10525. {
  10526. name: "Normal",
  10527. height: math.unit(3.4, "meters"),
  10528. default: true
  10529. },
  10530. ]
  10531. ))
  10532. characterMakers.push(() => makeCharacter(
  10533. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10534. {
  10535. front: {
  10536. height: math.unit(8, "feet"),
  10537. weight: math.unit(315, "lb"),
  10538. name: "Front",
  10539. image: {
  10540. source: "./media/characters/gunner-rotthbauer/front.svg"
  10541. }
  10542. },
  10543. back: {
  10544. height: math.unit(8, "feet"),
  10545. weight: math.unit(315, "lb"),
  10546. name: "Back",
  10547. image: {
  10548. source: "./media/characters/gunner-rotthbauer/back.svg"
  10549. }
  10550. },
  10551. },
  10552. [
  10553. {
  10554. name: "Micro",
  10555. height: math.unit(3.5, "inches")
  10556. },
  10557. {
  10558. name: "Normal",
  10559. height: math.unit(8, "feet"),
  10560. default: true
  10561. },
  10562. {
  10563. name: "Macro",
  10564. height: math.unit(250, "feet")
  10565. },
  10566. {
  10567. name: "Megamacro",
  10568. height: math.unit(1, "AU")
  10569. },
  10570. ]
  10571. ))
  10572. characterMakers.push(() => makeCharacter(
  10573. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10574. {
  10575. front: {
  10576. height: math.unit(5 + 5 / 12, "feet"),
  10577. weight: math.unit(140, "lb"),
  10578. name: "Front",
  10579. image: {
  10580. source: "./media/characters/allatia/front.svg",
  10581. extra: 1227 / 1180,
  10582. bottom: 0.027
  10583. }
  10584. },
  10585. },
  10586. [
  10587. {
  10588. name: "Normal",
  10589. height: math.unit(5 + 5 / 12, "feet")
  10590. },
  10591. {
  10592. name: "Macro",
  10593. height: math.unit(250, "feet"),
  10594. default: true
  10595. },
  10596. {
  10597. name: "Megamacro",
  10598. height: math.unit(8, "miles")
  10599. }
  10600. ]
  10601. ))
  10602. characterMakers.push(() => makeCharacter(
  10603. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10604. {
  10605. front: {
  10606. height: math.unit(6, "feet"),
  10607. weight: math.unit(120, "lb"),
  10608. name: "Front",
  10609. image: {
  10610. source: "./media/characters/tene/front.svg",
  10611. extra: 814/750,
  10612. bottom: 36/850
  10613. }
  10614. },
  10615. stomping: {
  10616. height: math.unit(2.025, "meters"),
  10617. weight: math.unit(120, "lb"),
  10618. name: "Stomping",
  10619. image: {
  10620. source: "./media/characters/tene/stomping.svg",
  10621. extra: 885/821,
  10622. bottom: 15/900
  10623. }
  10624. },
  10625. sitting: {
  10626. height: math.unit(1, "meter"),
  10627. weight: math.unit(120, "lb"),
  10628. name: "Sitting",
  10629. image: {
  10630. source: "./media/characters/tene/sitting.svg",
  10631. extra: 396/366,
  10632. bottom: 79/475
  10633. }
  10634. },
  10635. smiling: {
  10636. height: math.unit(1.2, "feet"),
  10637. name: "Smiling",
  10638. image: {
  10639. source: "./media/characters/tene/smiling.svg",
  10640. extra: 1364/1071,
  10641. bottom: 0/1364
  10642. }
  10643. },
  10644. smug: {
  10645. height: math.unit(1.3, "feet"),
  10646. name: "Smug",
  10647. image: {
  10648. source: "./media/characters/tene/smug.svg",
  10649. extra: 1323/1082,
  10650. bottom: 0/1323
  10651. }
  10652. },
  10653. feral: {
  10654. height: math.unit(3.9, "feet"),
  10655. weight: math.unit(250, "lb"),
  10656. name: "Feral",
  10657. image: {
  10658. source: "./media/characters/tene/feral.svg",
  10659. extra: 717 / 458,
  10660. bottom: 0.179
  10661. }
  10662. },
  10663. },
  10664. [
  10665. {
  10666. name: "Normal",
  10667. height: math.unit(6, "feet")
  10668. },
  10669. {
  10670. name: "Macro",
  10671. height: math.unit(300, "feet"),
  10672. default: true
  10673. },
  10674. {
  10675. name: "Megamacro",
  10676. height: math.unit(5, "miles")
  10677. },
  10678. ]
  10679. ))
  10680. characterMakers.push(() => makeCharacter(
  10681. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10682. {
  10683. side: {
  10684. height: math.unit(6, "feet"),
  10685. name: "Side",
  10686. image: {
  10687. source: "./media/characters/evander/side.svg",
  10688. extra: 877 / 477
  10689. }
  10690. },
  10691. },
  10692. [
  10693. {
  10694. name: "Normal",
  10695. height: math.unit(0.83, "meters"),
  10696. default: true
  10697. },
  10698. ]
  10699. ))
  10700. characterMakers.push(() => makeCharacter(
  10701. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10702. {
  10703. front: {
  10704. height: math.unit(12, "feet"),
  10705. weight: math.unit(1000, "lb"),
  10706. name: "Front",
  10707. image: {
  10708. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10709. extra: 1762 / 1611
  10710. }
  10711. },
  10712. back: {
  10713. height: math.unit(12, "feet"),
  10714. weight: math.unit(1000, "lb"),
  10715. name: "Back",
  10716. image: {
  10717. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10718. extra: 1762 / 1611
  10719. }
  10720. },
  10721. },
  10722. [
  10723. {
  10724. name: "Normal",
  10725. height: math.unit(12, "feet"),
  10726. default: true
  10727. },
  10728. {
  10729. name: "Kaiju",
  10730. height: math.unit(150, "feet")
  10731. },
  10732. ]
  10733. ))
  10734. characterMakers.push(() => makeCharacter(
  10735. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10736. {
  10737. front: {
  10738. height: math.unit(6, "feet"),
  10739. weight: math.unit(150, "lb"),
  10740. name: "Front",
  10741. image: {
  10742. source: "./media/characters/zero-alurus/front.svg"
  10743. }
  10744. },
  10745. back: {
  10746. height: math.unit(6, "feet"),
  10747. weight: math.unit(150, "lb"),
  10748. name: "Back",
  10749. image: {
  10750. source: "./media/characters/zero-alurus/back.svg"
  10751. }
  10752. },
  10753. },
  10754. [
  10755. {
  10756. name: "Normal",
  10757. height: math.unit(5 + 10 / 12, "feet")
  10758. },
  10759. {
  10760. name: "Macro",
  10761. height: math.unit(60, "feet"),
  10762. default: true
  10763. },
  10764. {
  10765. name: "Macro+",
  10766. height: math.unit(450, "feet")
  10767. },
  10768. ]
  10769. ))
  10770. characterMakers.push(() => makeCharacter(
  10771. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10772. {
  10773. front: {
  10774. height: math.unit(6, "feet"),
  10775. weight: math.unit(200, "lb"),
  10776. name: "Front",
  10777. image: {
  10778. source: "./media/characters/mega-shi/front.svg",
  10779. extra: 1279 / 1250,
  10780. bottom: 0.02
  10781. }
  10782. },
  10783. back: {
  10784. height: math.unit(6, "feet"),
  10785. weight: math.unit(200, "lb"),
  10786. name: "Back",
  10787. image: {
  10788. source: "./media/characters/mega-shi/back.svg",
  10789. extra: 1279 / 1250,
  10790. bottom: 0.02
  10791. }
  10792. },
  10793. },
  10794. [
  10795. {
  10796. name: "Micro",
  10797. height: math.unit(16 + 6 / 12, "feet")
  10798. },
  10799. {
  10800. name: "Third Dimension",
  10801. height: math.unit(40, "meters")
  10802. },
  10803. {
  10804. name: "Normal",
  10805. height: math.unit(660, "feet"),
  10806. default: true
  10807. },
  10808. {
  10809. name: "Megamacro",
  10810. height: math.unit(10, "miles")
  10811. },
  10812. {
  10813. name: "Planetary Launch",
  10814. height: math.unit(500, "miles")
  10815. },
  10816. {
  10817. name: "Interstellar",
  10818. height: math.unit(1e9, "miles")
  10819. },
  10820. {
  10821. name: "Leaving the Universe",
  10822. height: math.unit(1, "gigaparsec")
  10823. },
  10824. {
  10825. name: "Travelling Universes",
  10826. height: math.unit(30e15, "parsecs")
  10827. },
  10828. ]
  10829. ))
  10830. characterMakers.push(() => makeCharacter(
  10831. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10832. {
  10833. front: {
  10834. height: math.unit(5 + 4/12, "feet"),
  10835. weight: math.unit(120, "lb"),
  10836. name: "Front",
  10837. image: {
  10838. source: "./media/characters/odyssey/front.svg",
  10839. extra: 1747/1571,
  10840. bottom: 47/1794
  10841. }
  10842. },
  10843. side: {
  10844. height: math.unit(5.1, "feet"),
  10845. weight: math.unit(120, "lb"),
  10846. name: "Side",
  10847. image: {
  10848. source: "./media/characters/odyssey/side.svg",
  10849. extra: 1847/1619,
  10850. bottom: 47/1894
  10851. }
  10852. },
  10853. lounging: {
  10854. height: math.unit(1.464, "feet"),
  10855. weight: math.unit(120, "lb"),
  10856. name: "Lounging",
  10857. image: {
  10858. source: "./media/characters/odyssey/lounging.svg",
  10859. extra: 1235/837,
  10860. bottom: 551/1786
  10861. }
  10862. },
  10863. },
  10864. [
  10865. {
  10866. name: "Normal",
  10867. height: math.unit(5 + 4 / 12, "feet")
  10868. },
  10869. {
  10870. name: "Macro",
  10871. height: math.unit(1, "km")
  10872. },
  10873. {
  10874. name: "Megamacro",
  10875. height: math.unit(3000, "km")
  10876. },
  10877. {
  10878. name: "Gigamacro",
  10879. height: math.unit(1, "AU"),
  10880. default: true
  10881. },
  10882. {
  10883. name: "Omniversal",
  10884. height: math.unit(100e14, "lightyears")
  10885. },
  10886. ]
  10887. ))
  10888. characterMakers.push(() => makeCharacter(
  10889. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10890. {
  10891. front: {
  10892. height: math.unit(6, "feet"),
  10893. weight: math.unit(300, "lb"),
  10894. name: "Front",
  10895. image: {
  10896. source: "./media/characters/mekuto/front.svg",
  10897. extra: 921 / 832,
  10898. bottom: 0.03
  10899. }
  10900. },
  10901. hand: {
  10902. height: math.unit(6 / 10.24, "feet"),
  10903. name: "Hand",
  10904. image: {
  10905. source: "./media/characters/mekuto/hand.svg"
  10906. }
  10907. },
  10908. foot: {
  10909. height: math.unit(6 / 5.05, "feet"),
  10910. name: "Foot",
  10911. image: {
  10912. source: "./media/characters/mekuto/foot.svg"
  10913. }
  10914. },
  10915. },
  10916. [
  10917. {
  10918. name: "Minimicro",
  10919. height: math.unit(0.2, "inches")
  10920. },
  10921. {
  10922. name: "Micro",
  10923. height: math.unit(1.5, "inches")
  10924. },
  10925. {
  10926. name: "Normal",
  10927. height: math.unit(5 + 11 / 12, "feet"),
  10928. default: true
  10929. },
  10930. {
  10931. name: "Minimacro",
  10932. height: math.unit(17 + 9 / 12, "feet")
  10933. },
  10934. {
  10935. name: "Macro",
  10936. height: math.unit(177.5, "feet")
  10937. },
  10938. {
  10939. name: "Megamacro",
  10940. height: math.unit(152, "miles")
  10941. },
  10942. ]
  10943. ))
  10944. characterMakers.push(() => makeCharacter(
  10945. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10946. {
  10947. front: {
  10948. height: math.unit(6.5, "inches"),
  10949. weight: math.unit(13, "oz"),
  10950. name: "Front",
  10951. image: {
  10952. source: "./media/characters/dafydd-tomos/front.svg",
  10953. extra: 2990 / 2603,
  10954. bottom: 0.03
  10955. }
  10956. },
  10957. },
  10958. [
  10959. {
  10960. name: "Micro",
  10961. height: math.unit(6.5, "inches"),
  10962. default: true
  10963. },
  10964. ]
  10965. ))
  10966. characterMakers.push(() => makeCharacter(
  10967. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10968. {
  10969. front: {
  10970. height: math.unit(6, "feet"),
  10971. weight: math.unit(150, "lb"),
  10972. name: "Front",
  10973. image: {
  10974. source: "./media/characters/splinter/front.svg",
  10975. extra: 2990 / 2882,
  10976. bottom: 0.04
  10977. }
  10978. },
  10979. back: {
  10980. height: math.unit(6, "feet"),
  10981. weight: math.unit(150, "lb"),
  10982. name: "Back",
  10983. image: {
  10984. source: "./media/characters/splinter/back.svg",
  10985. extra: 2990 / 2882,
  10986. bottom: 0.04
  10987. }
  10988. },
  10989. },
  10990. [
  10991. {
  10992. name: "Normal",
  10993. height: math.unit(6, "feet")
  10994. },
  10995. {
  10996. name: "Macro",
  10997. height: math.unit(230, "meters"),
  10998. default: true
  10999. },
  11000. ]
  11001. ))
  11002. characterMakers.push(() => makeCharacter(
  11003. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11004. {
  11005. front: {
  11006. height: math.unit(4 + 10 / 12, "feet"),
  11007. weight: math.unit(480, "lb"),
  11008. name: "Front",
  11009. image: {
  11010. source: "./media/characters/snow-gabumon/front.svg",
  11011. extra: 1140 / 963,
  11012. bottom: 0.058
  11013. }
  11014. },
  11015. back: {
  11016. height: math.unit(4 + 10 / 12, "feet"),
  11017. weight: math.unit(480, "lb"),
  11018. name: "Back",
  11019. image: {
  11020. source: "./media/characters/snow-gabumon/back.svg",
  11021. extra: 1115 / 962,
  11022. bottom: 0.041
  11023. }
  11024. },
  11025. frontUndresed: {
  11026. height: math.unit(4 + 10 / 12, "feet"),
  11027. weight: math.unit(480, "lb"),
  11028. name: "Front (Undressed)",
  11029. image: {
  11030. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11031. extra: 1061 / 960,
  11032. bottom: 0.045
  11033. }
  11034. },
  11035. },
  11036. [
  11037. {
  11038. name: "Micro",
  11039. height: math.unit(1, "inch")
  11040. },
  11041. {
  11042. name: "Normal",
  11043. height: math.unit(4 + 10 / 12, "feet"),
  11044. default: true
  11045. },
  11046. {
  11047. name: "Macro",
  11048. height: math.unit(200, "feet")
  11049. },
  11050. {
  11051. name: "Megamacro",
  11052. height: math.unit(120, "miles")
  11053. },
  11054. {
  11055. name: "Gigamacro",
  11056. height: math.unit(9800, "miles")
  11057. },
  11058. ]
  11059. ))
  11060. characterMakers.push(() => makeCharacter(
  11061. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11062. {
  11063. front: {
  11064. height: math.unit(1.7, "meters"),
  11065. weight: math.unit(140, "lb"),
  11066. name: "Front",
  11067. image: {
  11068. source: "./media/characters/moody/front.svg",
  11069. extra: 3226 / 3007,
  11070. bottom: 0.087
  11071. }
  11072. },
  11073. },
  11074. [
  11075. {
  11076. name: "Micro",
  11077. height: math.unit(1, "mm")
  11078. },
  11079. {
  11080. name: "Normal",
  11081. height: math.unit(1.7, "meters"),
  11082. default: true
  11083. },
  11084. {
  11085. name: "Macro",
  11086. height: math.unit(80, "meters")
  11087. },
  11088. {
  11089. name: "Macro+",
  11090. height: math.unit(500, "meters")
  11091. },
  11092. ]
  11093. ))
  11094. characterMakers.push(() => makeCharacter(
  11095. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11096. {
  11097. front: {
  11098. height: math.unit(6, "feet"),
  11099. weight: math.unit(150, "lb"),
  11100. name: "Front",
  11101. image: {
  11102. source: "./media/characters/zyas/front.svg",
  11103. extra: 1180 / 1120,
  11104. bottom: 0.045
  11105. }
  11106. },
  11107. },
  11108. [
  11109. {
  11110. name: "Normal",
  11111. height: math.unit(10, "feet"),
  11112. default: true
  11113. },
  11114. {
  11115. name: "Macro",
  11116. height: math.unit(500, "feet")
  11117. },
  11118. {
  11119. name: "Megamacro",
  11120. height: math.unit(5, "miles")
  11121. },
  11122. {
  11123. name: "Teramacro",
  11124. height: math.unit(150000, "miles")
  11125. },
  11126. ]
  11127. ))
  11128. characterMakers.push(() => makeCharacter(
  11129. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11130. {
  11131. front: {
  11132. height: math.unit(6, "feet"),
  11133. weight: math.unit(150, "lb"),
  11134. name: "Front",
  11135. image: {
  11136. source: "./media/characters/cuon/front.svg",
  11137. extra: 1390 / 1320,
  11138. bottom: 0.008
  11139. }
  11140. },
  11141. },
  11142. [
  11143. {
  11144. name: "Micro",
  11145. height: math.unit(3, "inches")
  11146. },
  11147. {
  11148. name: "Normal",
  11149. height: math.unit(18 + 9 / 12, "feet"),
  11150. default: true
  11151. },
  11152. {
  11153. name: "Macro",
  11154. height: math.unit(360, "feet")
  11155. },
  11156. {
  11157. name: "Megamacro",
  11158. height: math.unit(360, "miles")
  11159. },
  11160. ]
  11161. ))
  11162. characterMakers.push(() => makeCharacter(
  11163. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11164. {
  11165. front: {
  11166. height: math.unit(2.4, "meters"),
  11167. weight: math.unit(70, "kg"),
  11168. name: "Front",
  11169. image: {
  11170. source: "./media/characters/nyanuxk/front.svg",
  11171. extra: 1172 / 1084,
  11172. bottom: 0.065
  11173. }
  11174. },
  11175. side: {
  11176. height: math.unit(2.4, "meters"),
  11177. weight: math.unit(70, "kg"),
  11178. name: "Side",
  11179. image: {
  11180. source: "./media/characters/nyanuxk/side.svg",
  11181. extra: 1190 / 1132,
  11182. bottom: 0.007
  11183. }
  11184. },
  11185. back: {
  11186. height: math.unit(2.4, "meters"),
  11187. weight: math.unit(70, "kg"),
  11188. name: "Back",
  11189. image: {
  11190. source: "./media/characters/nyanuxk/back.svg",
  11191. extra: 1200 / 1141,
  11192. bottom: 0.015
  11193. }
  11194. },
  11195. foot: {
  11196. height: math.unit(0.52, "meters"),
  11197. name: "Foot",
  11198. image: {
  11199. source: "./media/characters/nyanuxk/foot.svg"
  11200. }
  11201. },
  11202. },
  11203. [
  11204. {
  11205. name: "Micro",
  11206. height: math.unit(2, "cm")
  11207. },
  11208. {
  11209. name: "Normal",
  11210. height: math.unit(2.4, "meters"),
  11211. default: true
  11212. },
  11213. {
  11214. name: "Smaller Macro",
  11215. height: math.unit(120, "meters")
  11216. },
  11217. {
  11218. name: "Bigger Macro",
  11219. height: math.unit(1.2, "km")
  11220. },
  11221. {
  11222. name: "Megamacro",
  11223. height: math.unit(15, "kilometers")
  11224. },
  11225. {
  11226. name: "Gigamacro",
  11227. height: math.unit(2000, "km")
  11228. },
  11229. {
  11230. name: "Teramacro",
  11231. height: math.unit(500000, "km")
  11232. },
  11233. ]
  11234. ))
  11235. characterMakers.push(() => makeCharacter(
  11236. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11237. {
  11238. side: {
  11239. height: math.unit(6, "feet"),
  11240. name: "Side",
  11241. image: {
  11242. source: "./media/characters/ailbhe/side.svg",
  11243. extra: 757 / 464,
  11244. bottom: 0.041
  11245. }
  11246. },
  11247. },
  11248. [
  11249. {
  11250. name: "Normal",
  11251. height: math.unit(1.07, "meters"),
  11252. default: true
  11253. },
  11254. ]
  11255. ))
  11256. characterMakers.push(() => makeCharacter(
  11257. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11258. {
  11259. front: {
  11260. height: math.unit(6, "feet"),
  11261. weight: math.unit(120, "kg"),
  11262. name: "Front",
  11263. image: {
  11264. source: "./media/characters/zevulfius/front.svg",
  11265. extra: 965 / 903
  11266. }
  11267. },
  11268. side: {
  11269. height: math.unit(6, "feet"),
  11270. weight: math.unit(120, "kg"),
  11271. name: "Side",
  11272. image: {
  11273. source: "./media/characters/zevulfius/side.svg",
  11274. extra: 939 / 900
  11275. }
  11276. },
  11277. back: {
  11278. height: math.unit(6, "feet"),
  11279. weight: math.unit(120, "kg"),
  11280. name: "Back",
  11281. image: {
  11282. source: "./media/characters/zevulfius/back.svg",
  11283. extra: 918 / 854,
  11284. bottom: 0.005
  11285. }
  11286. },
  11287. foot: {
  11288. height: math.unit(6 / 3.72, "feet"),
  11289. name: "Foot",
  11290. image: {
  11291. source: "./media/characters/zevulfius/foot.svg"
  11292. }
  11293. },
  11294. },
  11295. [
  11296. {
  11297. name: "Macro",
  11298. height: math.unit(750, "meters")
  11299. },
  11300. {
  11301. name: "Megamacro",
  11302. height: math.unit(20, "km"),
  11303. default: true
  11304. },
  11305. {
  11306. name: "Gigamacro",
  11307. height: math.unit(2000, "km")
  11308. },
  11309. {
  11310. name: "Teramacro",
  11311. height: math.unit(250000, "km")
  11312. },
  11313. ]
  11314. ))
  11315. characterMakers.push(() => makeCharacter(
  11316. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11317. {
  11318. front: {
  11319. height: math.unit(100, "feet"),
  11320. weight: math.unit(350, "kg"),
  11321. name: "Front",
  11322. image: {
  11323. source: "./media/characters/rikes/front.svg",
  11324. extra: 1565 / 1483,
  11325. bottom: 0.017
  11326. }
  11327. },
  11328. },
  11329. [
  11330. {
  11331. name: "Macro",
  11332. height: math.unit(100, "feet"),
  11333. default: true
  11334. },
  11335. ]
  11336. ))
  11337. characterMakers.push(() => makeCharacter(
  11338. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11339. {
  11340. front: {
  11341. height: math.unit(8, "feet"),
  11342. weight: math.unit(356, "lb"),
  11343. name: "Front",
  11344. image: {
  11345. source: "./media/characters/adam-silver-mane/front.svg",
  11346. extra: 1036/937,
  11347. bottom: 63/1099
  11348. }
  11349. },
  11350. side: {
  11351. height: math.unit(8, "feet"),
  11352. weight: math.unit(356, "lb"),
  11353. name: "Side",
  11354. image: {
  11355. source: "./media/characters/adam-silver-mane/side.svg",
  11356. extra: 997/901,
  11357. bottom: 59/1056
  11358. }
  11359. },
  11360. frontNsfw: {
  11361. height: math.unit(8, "feet"),
  11362. weight: math.unit(356, "lb"),
  11363. name: "Front (NSFW)",
  11364. image: {
  11365. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11366. extra: 1036/937,
  11367. bottom: 63/1099
  11368. }
  11369. },
  11370. sideNsfw: {
  11371. height: math.unit(8, "feet"),
  11372. weight: math.unit(356, "lb"),
  11373. name: "Side (NSFW)",
  11374. image: {
  11375. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11376. extra: 997/901,
  11377. bottom: 59/1056
  11378. }
  11379. },
  11380. dick: {
  11381. height: math.unit(2.1, "feet"),
  11382. name: "Dick",
  11383. image: {
  11384. source: "./media/characters/adam-silver-mane/dick.svg"
  11385. }
  11386. },
  11387. taur: {
  11388. height: math.unit(16, "feet"),
  11389. weight: math.unit(1500, "kg"),
  11390. name: "Taur",
  11391. image: {
  11392. source: "./media/characters/adam-silver-mane/taur.svg",
  11393. extra: 1713 / 1571,
  11394. bottom: 0.01
  11395. }
  11396. },
  11397. },
  11398. [
  11399. {
  11400. name: "Normal",
  11401. height: math.unit(8, "feet")
  11402. },
  11403. {
  11404. name: "Minimacro",
  11405. height: math.unit(80, "feet")
  11406. },
  11407. {
  11408. name: "MDA",
  11409. height: math.unit(80, "meters")
  11410. },
  11411. {
  11412. name: "Macro",
  11413. height: math.unit(800, "feet"),
  11414. default: true
  11415. },
  11416. {
  11417. name: "Megamacro",
  11418. height: math.unit(8000, "feet")
  11419. },
  11420. {
  11421. name: "Gigamacro",
  11422. height: math.unit(800, "miles")
  11423. },
  11424. {
  11425. name: "Teramacro",
  11426. height: math.unit(80000, "miles")
  11427. },
  11428. {
  11429. name: "Celestial",
  11430. height: math.unit(8e6, "miles")
  11431. },
  11432. {
  11433. name: "Star Dragon",
  11434. height: math.unit(800000, "parsecs")
  11435. },
  11436. {
  11437. name: "Godly",
  11438. height: math.unit(800, "teraparsecs")
  11439. },
  11440. ]
  11441. ))
  11442. characterMakers.push(() => makeCharacter(
  11443. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11444. {
  11445. front: {
  11446. height: math.unit(6, "feet"),
  11447. weight: math.unit(150, "lb"),
  11448. name: "Front",
  11449. image: {
  11450. source: "./media/characters/ky'owin/front.svg",
  11451. extra: 3888 / 3068,
  11452. bottom: 0.015
  11453. }
  11454. },
  11455. },
  11456. [
  11457. {
  11458. name: "Normal",
  11459. height: math.unit(6 + 8 / 12, "feet")
  11460. },
  11461. {
  11462. name: "Large",
  11463. height: math.unit(68, "feet")
  11464. },
  11465. {
  11466. name: "Macro",
  11467. height: math.unit(132, "feet")
  11468. },
  11469. {
  11470. name: "Macro+",
  11471. height: math.unit(340, "feet")
  11472. },
  11473. {
  11474. name: "Macro++",
  11475. height: math.unit(680, "feet"),
  11476. default: true
  11477. },
  11478. {
  11479. name: "Megamacro",
  11480. height: math.unit(1, "mile")
  11481. },
  11482. {
  11483. name: "Megamacro+",
  11484. height: math.unit(10, "miles")
  11485. },
  11486. ]
  11487. ))
  11488. characterMakers.push(() => makeCharacter(
  11489. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11490. {
  11491. front: {
  11492. height: math.unit(4, "feet"),
  11493. weight: math.unit(50, "lb"),
  11494. name: "Front",
  11495. image: {
  11496. source: "./media/characters/mal/front.svg",
  11497. extra: 785 / 724,
  11498. bottom: 0.07
  11499. }
  11500. },
  11501. },
  11502. [
  11503. {
  11504. name: "Micro",
  11505. height: math.unit(4, "inches")
  11506. },
  11507. {
  11508. name: "Normal",
  11509. height: math.unit(4, "feet"),
  11510. default: true
  11511. },
  11512. {
  11513. name: "Macro",
  11514. height: math.unit(200, "feet")
  11515. },
  11516. ]
  11517. ))
  11518. characterMakers.push(() => makeCharacter(
  11519. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11520. {
  11521. front: {
  11522. height: math.unit(6, "feet"),
  11523. weight: math.unit(150, "lb"),
  11524. name: "Front",
  11525. image: {
  11526. source: "./media/characters/jordan-deware/front.svg",
  11527. extra: 1191 / 1012
  11528. }
  11529. },
  11530. },
  11531. [
  11532. {
  11533. name: "Nano",
  11534. height: math.unit(0.01, "mm")
  11535. },
  11536. {
  11537. name: "Minimicro",
  11538. height: math.unit(1, "mm")
  11539. },
  11540. {
  11541. name: "Micro",
  11542. height: math.unit(0.5, "inches")
  11543. },
  11544. {
  11545. name: "Normal",
  11546. height: math.unit(4, "feet"),
  11547. default: true
  11548. },
  11549. {
  11550. name: "Minimacro",
  11551. height: math.unit(40, "meters")
  11552. },
  11553. {
  11554. name: "Small Macro",
  11555. height: math.unit(400, "meters")
  11556. },
  11557. {
  11558. name: "Macro",
  11559. height: math.unit(4, "miles")
  11560. },
  11561. {
  11562. name: "Megamacro",
  11563. height: math.unit(40, "miles")
  11564. },
  11565. {
  11566. name: "Megamacro+",
  11567. height: math.unit(400, "miles")
  11568. },
  11569. {
  11570. name: "Gigamacro",
  11571. height: math.unit(400000, "miles")
  11572. },
  11573. ]
  11574. ))
  11575. characterMakers.push(() => makeCharacter(
  11576. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11577. {
  11578. side: {
  11579. height: math.unit(6, "feet"),
  11580. weight: math.unit(150, "lb"),
  11581. name: "Side",
  11582. image: {
  11583. source: "./media/characters/kimiko/side.svg",
  11584. extra: 600 / 358
  11585. }
  11586. },
  11587. },
  11588. [
  11589. {
  11590. name: "Normal",
  11591. height: math.unit(15, "feet"),
  11592. default: true
  11593. },
  11594. {
  11595. name: "Macro",
  11596. height: math.unit(220, "feet")
  11597. },
  11598. {
  11599. name: "Macro+",
  11600. height: math.unit(1450, "feet")
  11601. },
  11602. {
  11603. name: "Megamacro",
  11604. height: math.unit(11500, "feet")
  11605. },
  11606. {
  11607. name: "Gigamacro",
  11608. height: math.unit(9500, "miles")
  11609. },
  11610. {
  11611. name: "Teramacro",
  11612. height: math.unit(2208005005, "miles")
  11613. },
  11614. {
  11615. name: "Examacro",
  11616. height: math.unit(2750, "parsecs")
  11617. },
  11618. {
  11619. name: "Zettamacro",
  11620. height: math.unit(101500, "parsecs")
  11621. },
  11622. ]
  11623. ))
  11624. characterMakers.push(() => makeCharacter(
  11625. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11626. {
  11627. front: {
  11628. height: math.unit(6, "feet"),
  11629. weight: math.unit(70, "kg"),
  11630. name: "Front",
  11631. image: {
  11632. source: "./media/characters/andrew-sleepy/front.svg"
  11633. }
  11634. },
  11635. side: {
  11636. height: math.unit(6, "feet"),
  11637. weight: math.unit(70, "kg"),
  11638. name: "Side",
  11639. image: {
  11640. source: "./media/characters/andrew-sleepy/side.svg"
  11641. }
  11642. },
  11643. },
  11644. [
  11645. {
  11646. name: "Micro",
  11647. height: math.unit(1, "mm"),
  11648. default: true
  11649. },
  11650. ]
  11651. ))
  11652. characterMakers.push(() => makeCharacter(
  11653. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11654. {
  11655. front: {
  11656. height: math.unit(6, "feet"),
  11657. weight: math.unit(150, "lb"),
  11658. name: "Front",
  11659. image: {
  11660. source: "./media/characters/judio/front.svg",
  11661. extra: 1258 / 1110
  11662. }
  11663. },
  11664. },
  11665. [
  11666. {
  11667. name: "Normal",
  11668. height: math.unit(5 + 6 / 12, "feet")
  11669. },
  11670. {
  11671. name: "Macro",
  11672. height: math.unit(1000, "feet"),
  11673. default: true
  11674. },
  11675. {
  11676. name: "Megamacro",
  11677. height: math.unit(10, "miles")
  11678. },
  11679. ]
  11680. ))
  11681. characterMakers.push(() => makeCharacter(
  11682. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11683. {
  11684. frontDressed: {
  11685. height: math.unit(6, "feet"),
  11686. weight: math.unit(68, "kg"),
  11687. name: "Front (Dressed)",
  11688. image: {
  11689. source: "./media/characters/nomaxice/front-dressed.svg",
  11690. extra: 1137/824,
  11691. bottom: 74/1211
  11692. }
  11693. },
  11694. frontShorts: {
  11695. height: math.unit(6, "feet"),
  11696. weight: math.unit(68, "kg"),
  11697. name: "Front (Shorts)",
  11698. image: {
  11699. source: "./media/characters/nomaxice/front-shorts.svg",
  11700. extra: 1137/824,
  11701. bottom: 74/1211
  11702. }
  11703. },
  11704. back: {
  11705. height: math.unit(6, "feet"),
  11706. weight: math.unit(68, "kg"),
  11707. name: "Back",
  11708. image: {
  11709. source: "./media/characters/nomaxice/back.svg",
  11710. extra: 822/786,
  11711. bottom: 39/861
  11712. }
  11713. },
  11714. hand: {
  11715. height: math.unit(0.565, "feet"),
  11716. name: "Hand",
  11717. image: {
  11718. source: "./media/characters/nomaxice/hand.svg"
  11719. }
  11720. },
  11721. foot: {
  11722. height: math.unit(1, "feet"),
  11723. name: "Foot",
  11724. image: {
  11725. source: "./media/characters/nomaxice/foot.svg"
  11726. }
  11727. },
  11728. },
  11729. [
  11730. {
  11731. name: "Micro",
  11732. height: math.unit(8, "cm")
  11733. },
  11734. {
  11735. name: "Norm",
  11736. height: math.unit(1.82, "m")
  11737. },
  11738. {
  11739. name: "Norm+",
  11740. height: math.unit(8.8, "feet"),
  11741. default: true
  11742. },
  11743. {
  11744. name: "Big",
  11745. height: math.unit(8, "meters")
  11746. },
  11747. {
  11748. name: "Macro",
  11749. height: math.unit(18, "meters")
  11750. },
  11751. {
  11752. name: "Macro+",
  11753. height: math.unit(88, "meters")
  11754. },
  11755. ]
  11756. ))
  11757. characterMakers.push(() => makeCharacter(
  11758. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11759. {
  11760. front: {
  11761. height: math.unit(12, "feet"),
  11762. weight: math.unit(1.5, "tons"),
  11763. name: "Front",
  11764. image: {
  11765. source: "./media/characters/dydros/front.svg",
  11766. extra: 863 / 800,
  11767. bottom: 0.015
  11768. }
  11769. },
  11770. back: {
  11771. height: math.unit(12, "feet"),
  11772. weight: math.unit(1.5, "tons"),
  11773. name: "Back",
  11774. image: {
  11775. source: "./media/characters/dydros/back.svg",
  11776. extra: 900 / 843,
  11777. bottom: 0.005
  11778. }
  11779. },
  11780. },
  11781. [
  11782. {
  11783. name: "Normal",
  11784. height: math.unit(12, "feet"),
  11785. default: true
  11786. },
  11787. ]
  11788. ))
  11789. characterMakers.push(() => makeCharacter(
  11790. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11791. {
  11792. front: {
  11793. height: math.unit(6, "feet"),
  11794. weight: math.unit(100, "kg"),
  11795. name: "Front",
  11796. image: {
  11797. source: "./media/characters/riggi/front.svg",
  11798. extra: 5787 / 5303
  11799. }
  11800. },
  11801. hyper: {
  11802. height: math.unit(6 * 5 / 3, "feet"),
  11803. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11804. name: "Hyper",
  11805. image: {
  11806. source: "./media/characters/riggi/hyper.svg",
  11807. extra: 3595 / 3485
  11808. }
  11809. },
  11810. },
  11811. [
  11812. {
  11813. name: "Small Macro",
  11814. height: math.unit(50, "feet")
  11815. },
  11816. {
  11817. name: "Default",
  11818. height: math.unit(200, "feet"),
  11819. default: true
  11820. },
  11821. {
  11822. name: "Loom",
  11823. height: math.unit(10000, "feet")
  11824. },
  11825. {
  11826. name: "Cruising Altitude",
  11827. height: math.unit(30000, "feet")
  11828. },
  11829. {
  11830. name: "Megamacro",
  11831. height: math.unit(100, "miles")
  11832. },
  11833. {
  11834. name: "Continent Sized",
  11835. height: math.unit(2800, "miles")
  11836. },
  11837. {
  11838. name: "Earth Sized",
  11839. height: math.unit(8000, "miles")
  11840. },
  11841. ]
  11842. ))
  11843. characterMakers.push(() => makeCharacter(
  11844. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11845. {
  11846. front: {
  11847. height: math.unit(6, "feet"),
  11848. weight: math.unit(250, "lb"),
  11849. name: "Front",
  11850. image: {
  11851. source: "./media/characters/alexi/front.svg",
  11852. extra: 3483 / 3291,
  11853. bottom: 0.04
  11854. }
  11855. },
  11856. back: {
  11857. height: math.unit(6, "feet"),
  11858. weight: math.unit(250, "lb"),
  11859. name: "Back",
  11860. image: {
  11861. source: "./media/characters/alexi/back.svg",
  11862. extra: 3533 / 3356,
  11863. bottom: 0.021
  11864. }
  11865. },
  11866. frontTransforming: {
  11867. height: math.unit(8.58, "feet"),
  11868. weight: math.unit(1300, "lb"),
  11869. name: "Transforming",
  11870. image: {
  11871. source: "./media/characters/alexi/front-transforming.svg",
  11872. extra: 437 / 409,
  11873. bottom: 19 / 458.66
  11874. }
  11875. },
  11876. frontTransformed: {
  11877. height: math.unit(12.5, "feet"),
  11878. weight: math.unit(4000, "lb"),
  11879. name: "Transformed",
  11880. image: {
  11881. source: "./media/characters/alexi/front-transformed.svg",
  11882. extra: 639 / 614,
  11883. bottom: 30.55 / 671
  11884. }
  11885. },
  11886. },
  11887. [
  11888. {
  11889. name: "Normal",
  11890. height: math.unit(14, "feet"),
  11891. default: true
  11892. },
  11893. {
  11894. name: "Minimacro",
  11895. height: math.unit(30, "meters")
  11896. },
  11897. {
  11898. name: "Macro",
  11899. height: math.unit(500, "meters")
  11900. },
  11901. {
  11902. name: "Megamacro",
  11903. height: math.unit(9000, "km")
  11904. },
  11905. {
  11906. name: "Teramacro",
  11907. height: math.unit(384000, "km")
  11908. },
  11909. ]
  11910. ))
  11911. characterMakers.push(() => makeCharacter(
  11912. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11913. {
  11914. front: {
  11915. height: math.unit(6, "feet"),
  11916. weight: math.unit(150, "lb"),
  11917. name: "Front",
  11918. image: {
  11919. source: "./media/characters/kayroo/front.svg",
  11920. extra: 1153 / 1038,
  11921. bottom: 0.06
  11922. }
  11923. },
  11924. foot: {
  11925. height: math.unit(6, "feet"),
  11926. weight: math.unit(150, "lb"),
  11927. name: "Foot",
  11928. image: {
  11929. source: "./media/characters/kayroo/foot.svg"
  11930. }
  11931. },
  11932. },
  11933. [
  11934. {
  11935. name: "Normal",
  11936. height: math.unit(8, "feet"),
  11937. default: true
  11938. },
  11939. {
  11940. name: "Minimacro",
  11941. height: math.unit(250, "feet")
  11942. },
  11943. {
  11944. name: "Macro",
  11945. height: math.unit(2800, "feet")
  11946. },
  11947. {
  11948. name: "Megamacro",
  11949. height: math.unit(5200, "feet")
  11950. },
  11951. {
  11952. name: "Gigamacro",
  11953. height: math.unit(27000, "feet")
  11954. },
  11955. {
  11956. name: "Omega",
  11957. height: math.unit(45000, "feet")
  11958. },
  11959. ]
  11960. ))
  11961. characterMakers.push(() => makeCharacter(
  11962. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11963. {
  11964. front: {
  11965. height: math.unit(18, "feet"),
  11966. weight: math.unit(5800, "lb"),
  11967. name: "Front",
  11968. image: {
  11969. source: "./media/characters/rhys/front.svg",
  11970. extra: 3386 / 3090,
  11971. bottom: 0.07
  11972. }
  11973. },
  11974. },
  11975. [
  11976. {
  11977. name: "Normal",
  11978. height: math.unit(18, "feet"),
  11979. default: true
  11980. },
  11981. {
  11982. name: "Working Size",
  11983. height: math.unit(200, "feet")
  11984. },
  11985. {
  11986. name: "Demolition Size",
  11987. height: math.unit(2000, "feet")
  11988. },
  11989. {
  11990. name: "Maximum Licensed Size",
  11991. height: math.unit(5, "miles")
  11992. },
  11993. {
  11994. name: "Maximum Observed Size",
  11995. height: math.unit(10, "yottameters")
  11996. },
  11997. ]
  11998. ))
  11999. characterMakers.push(() => makeCharacter(
  12000. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12001. {
  12002. front: {
  12003. height: math.unit(6, "feet"),
  12004. weight: math.unit(250, "lb"),
  12005. name: "Front",
  12006. image: {
  12007. source: "./media/characters/toto/front.svg",
  12008. extra: 527 / 479,
  12009. bottom: 0.05
  12010. }
  12011. },
  12012. },
  12013. [
  12014. {
  12015. name: "Micro",
  12016. height: math.unit(3, "feet")
  12017. },
  12018. {
  12019. name: "Normal",
  12020. height: math.unit(10, "feet")
  12021. },
  12022. {
  12023. name: "Macro",
  12024. height: math.unit(150, "feet"),
  12025. default: true
  12026. },
  12027. {
  12028. name: "Megamacro",
  12029. height: math.unit(1200, "feet")
  12030. },
  12031. ]
  12032. ))
  12033. characterMakers.push(() => makeCharacter(
  12034. { name: "King", species: ["lion"], tags: ["anthro"] },
  12035. {
  12036. back: {
  12037. height: math.unit(6, "feet"),
  12038. weight: math.unit(150, "lb"),
  12039. name: "Back",
  12040. image: {
  12041. source: "./media/characters/king/back.svg"
  12042. }
  12043. },
  12044. },
  12045. [
  12046. {
  12047. name: "Micro",
  12048. height: math.unit(2, "inches")
  12049. },
  12050. {
  12051. name: "Normal",
  12052. height: math.unit(8, "feet")
  12053. },
  12054. {
  12055. name: "Macro",
  12056. height: math.unit(200, "feet"),
  12057. default: true
  12058. },
  12059. {
  12060. name: "Megamacro",
  12061. height: math.unit(50, "miles")
  12062. },
  12063. ]
  12064. ))
  12065. characterMakers.push(() => makeCharacter(
  12066. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12067. {
  12068. front: {
  12069. height: math.unit(11, "feet"),
  12070. weight: math.unit(1400, "lb"),
  12071. name: "Front",
  12072. image: {
  12073. source: "./media/characters/cordite/front.svg",
  12074. extra: 1919/1827,
  12075. bottom: 40/1959
  12076. }
  12077. },
  12078. side: {
  12079. height: math.unit(11, "feet"),
  12080. weight: math.unit(1400, "lb"),
  12081. name: "Side",
  12082. image: {
  12083. source: "./media/characters/cordite/side.svg",
  12084. extra: 1908/1793,
  12085. bottom: 38/1946
  12086. }
  12087. },
  12088. back: {
  12089. height: math.unit(11, "feet"),
  12090. weight: math.unit(1400, "lb"),
  12091. name: "Back",
  12092. image: {
  12093. source: "./media/characters/cordite/back.svg",
  12094. extra: 1938/1837,
  12095. bottom: 10/1948
  12096. }
  12097. },
  12098. feral: {
  12099. height: math.unit(2, "feet"),
  12100. weight: math.unit(90, "lb"),
  12101. name: "Feral",
  12102. image: {
  12103. source: "./media/characters/cordite/feral.svg",
  12104. extra: 1260 / 755,
  12105. bottom: 0.05
  12106. }
  12107. },
  12108. },
  12109. [
  12110. {
  12111. name: "Normal",
  12112. height: math.unit(11, "feet"),
  12113. default: true
  12114. },
  12115. ]
  12116. ))
  12117. characterMakers.push(() => makeCharacter(
  12118. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12119. {
  12120. front: {
  12121. height: math.unit(6, "feet"),
  12122. weight: math.unit(150, "lb"),
  12123. name: "Front",
  12124. image: {
  12125. source: "./media/characters/pianostrong/front.svg",
  12126. extra: 6577 / 6254,
  12127. bottom: 0.02
  12128. }
  12129. },
  12130. side: {
  12131. height: math.unit(6, "feet"),
  12132. weight: math.unit(150, "lb"),
  12133. name: "Side",
  12134. image: {
  12135. source: "./media/characters/pianostrong/side.svg",
  12136. extra: 6106 / 5730
  12137. }
  12138. },
  12139. back: {
  12140. height: math.unit(6, "feet"),
  12141. weight: math.unit(150, "lb"),
  12142. name: "Back",
  12143. image: {
  12144. source: "./media/characters/pianostrong/back.svg",
  12145. extra: 6085 / 5733,
  12146. bottom: 0.01
  12147. }
  12148. },
  12149. },
  12150. [
  12151. {
  12152. name: "Macro",
  12153. height: math.unit(100, "feet")
  12154. },
  12155. {
  12156. name: "Macro+",
  12157. height: math.unit(300, "feet"),
  12158. default: true
  12159. },
  12160. {
  12161. name: "Macro++",
  12162. height: math.unit(1000, "feet")
  12163. },
  12164. ]
  12165. ))
  12166. characterMakers.push(() => makeCharacter(
  12167. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12168. {
  12169. front: {
  12170. height: math.unit(6, "feet"),
  12171. weight: math.unit(150, "lb"),
  12172. name: "Front",
  12173. image: {
  12174. source: "./media/characters/kona/front.svg",
  12175. extra: 2960 / 2629,
  12176. bottom: 0.005
  12177. }
  12178. },
  12179. },
  12180. [
  12181. {
  12182. name: "Normal",
  12183. height: math.unit(11 + 8 / 12, "feet")
  12184. },
  12185. {
  12186. name: "Macro",
  12187. height: math.unit(850, "feet"),
  12188. default: true
  12189. },
  12190. {
  12191. name: "Macro+",
  12192. height: math.unit(1.5, "km"),
  12193. default: true
  12194. },
  12195. {
  12196. name: "Megamacro",
  12197. height: math.unit(80, "miles")
  12198. },
  12199. {
  12200. name: "Gigamacro",
  12201. height: math.unit(3500, "miles")
  12202. },
  12203. ]
  12204. ))
  12205. characterMakers.push(() => makeCharacter(
  12206. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12207. {
  12208. side: {
  12209. height: math.unit(1.9, "meters"),
  12210. weight: math.unit(326, "kg"),
  12211. name: "Side",
  12212. image: {
  12213. source: "./media/characters/levi/side.svg",
  12214. extra: 1704 / 1334,
  12215. bottom: 0.02
  12216. }
  12217. },
  12218. },
  12219. [
  12220. {
  12221. name: "Normal",
  12222. height: math.unit(1.9, "meters"),
  12223. default: true
  12224. },
  12225. {
  12226. name: "Macro",
  12227. height: math.unit(20, "meters")
  12228. },
  12229. {
  12230. name: "Macro+",
  12231. height: math.unit(200, "meters")
  12232. },
  12233. {
  12234. name: "Megamacro",
  12235. height: math.unit(2, "km")
  12236. },
  12237. {
  12238. name: "Megamacro+",
  12239. height: math.unit(20, "km")
  12240. },
  12241. {
  12242. name: "Gigamacro",
  12243. height: math.unit(2500, "km")
  12244. },
  12245. {
  12246. name: "Gigamacro+",
  12247. height: math.unit(120000, "km")
  12248. },
  12249. {
  12250. name: "Teramacro",
  12251. height: math.unit(7.77e6, "km")
  12252. },
  12253. ]
  12254. ))
  12255. characterMakers.push(() => makeCharacter(
  12256. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12257. {
  12258. front: {
  12259. height: math.unit(6 + 4/12, "feet"),
  12260. weight: math.unit(190, "lb"),
  12261. name: "Front",
  12262. image: {
  12263. source: "./media/characters/bmc/front.svg",
  12264. extra: 1626/1472,
  12265. bottom: 79/1705
  12266. }
  12267. },
  12268. back: {
  12269. height: math.unit(6 + 4/12, "feet"),
  12270. weight: math.unit(190, "lb"),
  12271. name: "Back",
  12272. image: {
  12273. source: "./media/characters/bmc/back.svg",
  12274. extra: 1640/1479,
  12275. bottom: 45/1685
  12276. }
  12277. },
  12278. frontArmor: {
  12279. height: math.unit(6 + 4/12, "feet"),
  12280. weight: math.unit(190, "lb"),
  12281. name: "Front-armor",
  12282. image: {
  12283. source: "./media/characters/bmc/front-armor.svg",
  12284. extra: 1538/1468,
  12285. bottom: 79/1617
  12286. }
  12287. },
  12288. },
  12289. [
  12290. {
  12291. name: "Human-sized",
  12292. height: math.unit(6 + 4 / 12, "feet")
  12293. },
  12294. {
  12295. name: "Interactive Size",
  12296. height: math.unit(25, "feet")
  12297. },
  12298. {
  12299. name: "Small",
  12300. height: math.unit(250, "feet")
  12301. },
  12302. {
  12303. name: "Normal",
  12304. height: math.unit(1250, "feet"),
  12305. default: true
  12306. },
  12307. {
  12308. name: "Good Day",
  12309. height: math.unit(88, "miles")
  12310. },
  12311. {
  12312. name: "Largest Measured Size",
  12313. height: math.unit(105.960, "galaxies")
  12314. },
  12315. ]
  12316. ))
  12317. characterMakers.push(() => makeCharacter(
  12318. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12319. {
  12320. front: {
  12321. height: math.unit(20, "feet"),
  12322. weight: math.unit(2016, "kg"),
  12323. name: "Front",
  12324. image: {
  12325. source: "./media/characters/sven-the-kaiju/front.svg",
  12326. extra: 1277/1250,
  12327. bottom: 35/1312
  12328. }
  12329. },
  12330. mouth: {
  12331. height: math.unit(1.85, "feet"),
  12332. name: "Mouth",
  12333. image: {
  12334. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12335. }
  12336. },
  12337. },
  12338. [
  12339. {
  12340. name: "Fairy",
  12341. height: math.unit(6, "inches")
  12342. },
  12343. {
  12344. name: "Normal",
  12345. height: math.unit(20, "feet"),
  12346. default: true
  12347. },
  12348. {
  12349. name: "Rampage",
  12350. height: math.unit(200, "feet")
  12351. },
  12352. {
  12353. name: "Archfey Forest Guardian",
  12354. height: math.unit(1, "mile")
  12355. },
  12356. ]
  12357. ))
  12358. characterMakers.push(() => makeCharacter(
  12359. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12360. {
  12361. front: {
  12362. height: math.unit(4, "meters"),
  12363. weight: math.unit(2, "tons"),
  12364. name: "Front",
  12365. image: {
  12366. source: "./media/characters/marik/front.svg",
  12367. extra: 1057 / 1003,
  12368. bottom: 0.08
  12369. }
  12370. },
  12371. },
  12372. [
  12373. {
  12374. name: "Normal",
  12375. height: math.unit(4, "meters"),
  12376. default: true
  12377. },
  12378. {
  12379. name: "Macro",
  12380. height: math.unit(20, "meters")
  12381. },
  12382. {
  12383. name: "Megamacro",
  12384. height: math.unit(50, "km")
  12385. },
  12386. {
  12387. name: "Gigamacro",
  12388. height: math.unit(100, "km")
  12389. },
  12390. {
  12391. name: "Alpha Macro",
  12392. height: math.unit(7.88e7, "yottameters")
  12393. },
  12394. ]
  12395. ))
  12396. characterMakers.push(() => makeCharacter(
  12397. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12398. {
  12399. front: {
  12400. height: math.unit(6, "feet"),
  12401. weight: math.unit(110, "lb"),
  12402. name: "Front",
  12403. image: {
  12404. source: "./media/characters/mel/front.svg",
  12405. extra: 736 / 617,
  12406. bottom: 0.017
  12407. }
  12408. },
  12409. },
  12410. [
  12411. {
  12412. name: "Pico",
  12413. height: math.unit(3, "pm")
  12414. },
  12415. {
  12416. name: "Nano",
  12417. height: math.unit(3, "nm")
  12418. },
  12419. {
  12420. name: "Micro",
  12421. height: math.unit(0.3, "mm"),
  12422. default: true
  12423. },
  12424. {
  12425. name: "Micro+",
  12426. height: math.unit(3, "mm")
  12427. },
  12428. {
  12429. name: "Normal",
  12430. height: math.unit(5 + 10.5 / 12, "feet")
  12431. },
  12432. ]
  12433. ))
  12434. characterMakers.push(() => makeCharacter(
  12435. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12436. {
  12437. kaiju: {
  12438. height: math.unit(1.75, "meters"),
  12439. weight: math.unit(55, "kg"),
  12440. name: "Kaiju",
  12441. image: {
  12442. source: "./media/characters/lykonous/kaiju.svg",
  12443. extra: 1055 / 946,
  12444. bottom: 0.135
  12445. }
  12446. },
  12447. },
  12448. [
  12449. {
  12450. name: "Normal",
  12451. height: math.unit(2.5, "meters"),
  12452. default: true
  12453. },
  12454. {
  12455. name: "Kaiju Dragon",
  12456. height: math.unit(60, "meters")
  12457. },
  12458. {
  12459. name: "Mega Kaiju",
  12460. height: math.unit(120, "km")
  12461. },
  12462. {
  12463. name: "Giga Kaiju",
  12464. height: math.unit(200, "megameters")
  12465. },
  12466. {
  12467. name: "Terra Kaiju",
  12468. height: math.unit(400, "gigameters")
  12469. },
  12470. {
  12471. name: "Kaiju Dragon God",
  12472. height: math.unit(13000, "exaparsecs")
  12473. },
  12474. ]
  12475. ))
  12476. characterMakers.push(() => makeCharacter(
  12477. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12478. {
  12479. front: {
  12480. height: math.unit(6, "feet"),
  12481. weight: math.unit(150, "lb"),
  12482. name: "Front",
  12483. image: {
  12484. source: "./media/characters/blü/front.svg",
  12485. extra: 1883 / 1564,
  12486. bottom: 0.031
  12487. }
  12488. },
  12489. },
  12490. [
  12491. {
  12492. name: "Normal",
  12493. height: math.unit(13, "feet"),
  12494. default: true
  12495. },
  12496. {
  12497. name: "Big Boi",
  12498. height: math.unit(150, "meters")
  12499. },
  12500. {
  12501. name: "Mini Stomper",
  12502. height: math.unit(300, "meters")
  12503. },
  12504. {
  12505. name: "Macro",
  12506. height: math.unit(1000, "meters")
  12507. },
  12508. {
  12509. name: "Megamacro",
  12510. height: math.unit(11000, "meters")
  12511. },
  12512. {
  12513. name: "Gigamacro",
  12514. height: math.unit(11000, "km")
  12515. },
  12516. {
  12517. name: "Teramacro",
  12518. height: math.unit(420000, "km")
  12519. },
  12520. {
  12521. name: "Examacro",
  12522. height: math.unit(120, "parsecs")
  12523. },
  12524. {
  12525. name: "God Tho",
  12526. height: math.unit(98000000000, "parsecs")
  12527. },
  12528. ]
  12529. ))
  12530. characterMakers.push(() => makeCharacter(
  12531. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12532. {
  12533. taurFront: {
  12534. height: math.unit(6, "feet"),
  12535. weight: math.unit(200, "lb"),
  12536. name: "Taur (Front)",
  12537. image: {
  12538. source: "./media/characters/scales/taur-front.svg",
  12539. extra: 1,
  12540. bottom: 0.05
  12541. }
  12542. },
  12543. taurBack: {
  12544. height: math.unit(6, "feet"),
  12545. weight: math.unit(200, "lb"),
  12546. name: "Taur (Back)",
  12547. image: {
  12548. source: "./media/characters/scales/taur-back.svg",
  12549. extra: 1,
  12550. bottom: 0.08
  12551. }
  12552. },
  12553. anthro: {
  12554. height: math.unit(6 * 7 / 12, "feet"),
  12555. weight: math.unit(100, "lb"),
  12556. name: "Anthro",
  12557. image: {
  12558. source: "./media/characters/scales/anthro.svg",
  12559. extra: 1,
  12560. bottom: 0.06
  12561. }
  12562. },
  12563. },
  12564. [
  12565. {
  12566. name: "Normal",
  12567. height: math.unit(12, "feet"),
  12568. default: true
  12569. },
  12570. ]
  12571. ))
  12572. characterMakers.push(() => makeCharacter(
  12573. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12574. {
  12575. front: {
  12576. height: math.unit(6, "feet"),
  12577. weight: math.unit(150, "lb"),
  12578. name: "Front",
  12579. image: {
  12580. source: "./media/characters/koragos/front.svg",
  12581. extra: 841 / 794,
  12582. bottom: 0.035
  12583. }
  12584. },
  12585. back: {
  12586. height: math.unit(6, "feet"),
  12587. weight: math.unit(150, "lb"),
  12588. name: "Back",
  12589. image: {
  12590. source: "./media/characters/koragos/back.svg",
  12591. extra: 841 / 810,
  12592. bottom: 0.022
  12593. }
  12594. },
  12595. },
  12596. [
  12597. {
  12598. name: "Normal",
  12599. height: math.unit(6 + 11 / 12, "feet"),
  12600. default: true
  12601. },
  12602. {
  12603. name: "Macro",
  12604. height: math.unit(490, "feet")
  12605. },
  12606. {
  12607. name: "Megamacro",
  12608. height: math.unit(10, "miles")
  12609. },
  12610. {
  12611. name: "Gigamacro",
  12612. height: math.unit(50, "miles")
  12613. },
  12614. ]
  12615. ))
  12616. characterMakers.push(() => makeCharacter(
  12617. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12618. {
  12619. front: {
  12620. height: math.unit(6, "feet"),
  12621. weight: math.unit(250, "lb"),
  12622. name: "Front",
  12623. image: {
  12624. source: "./media/characters/xylrem/front.svg",
  12625. extra: 3323 / 3050,
  12626. bottom: 0.065
  12627. }
  12628. },
  12629. },
  12630. [
  12631. {
  12632. name: "Micro",
  12633. height: math.unit(4, "feet")
  12634. },
  12635. {
  12636. name: "Normal",
  12637. height: math.unit(16, "feet"),
  12638. default: true
  12639. },
  12640. {
  12641. name: "Macro",
  12642. height: math.unit(2720, "feet")
  12643. },
  12644. {
  12645. name: "Megamacro",
  12646. height: math.unit(25000, "miles")
  12647. },
  12648. ]
  12649. ))
  12650. characterMakers.push(() => makeCharacter(
  12651. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12652. {
  12653. front: {
  12654. height: math.unit(8, "feet"),
  12655. weight: math.unit(250, "kg"),
  12656. name: "Front",
  12657. image: {
  12658. source: "./media/characters/ikideru/front.svg",
  12659. extra: 930 / 870,
  12660. bottom: 0.087
  12661. }
  12662. },
  12663. back: {
  12664. height: math.unit(8, "feet"),
  12665. weight: math.unit(250, "kg"),
  12666. name: "Back",
  12667. image: {
  12668. source: "./media/characters/ikideru/back.svg",
  12669. extra: 919 / 852,
  12670. bottom: 0.055
  12671. }
  12672. },
  12673. },
  12674. [
  12675. {
  12676. name: "Rare",
  12677. height: math.unit(8, "feet"),
  12678. default: true
  12679. },
  12680. {
  12681. name: "Playful Loom",
  12682. height: math.unit(80, "feet")
  12683. },
  12684. {
  12685. name: "City Leaner",
  12686. height: math.unit(230, "feet")
  12687. },
  12688. {
  12689. name: "Megamacro",
  12690. height: math.unit(2500, "feet")
  12691. },
  12692. {
  12693. name: "Gigamacro",
  12694. height: math.unit(26400, "feet")
  12695. },
  12696. {
  12697. name: "Tectonic Shifter",
  12698. height: math.unit(1.7, "megameters")
  12699. },
  12700. {
  12701. name: "Planet Carer",
  12702. height: math.unit(21, "megameters")
  12703. },
  12704. {
  12705. name: "God",
  12706. height: math.unit(11157.22, "parsecs")
  12707. },
  12708. ]
  12709. ))
  12710. characterMakers.push(() => makeCharacter(
  12711. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12712. {
  12713. front: {
  12714. height: math.unit(6, "feet"),
  12715. weight: math.unit(120, "lb"),
  12716. name: "Front",
  12717. image: {
  12718. source: "./media/characters/neo/front.svg"
  12719. }
  12720. },
  12721. },
  12722. [
  12723. {
  12724. name: "Micro",
  12725. height: math.unit(2, "inches"),
  12726. default: true
  12727. },
  12728. {
  12729. name: "Human Size",
  12730. height: math.unit(5 + 8 / 12, "feet")
  12731. },
  12732. ]
  12733. ))
  12734. characterMakers.push(() => makeCharacter(
  12735. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12736. {
  12737. front: {
  12738. height: math.unit(13 + 10 / 12, "feet"),
  12739. weight: math.unit(5320, "lb"),
  12740. name: "Front",
  12741. image: {
  12742. source: "./media/characters/chauncey-chantz/front.svg",
  12743. extra: 1587 / 1435,
  12744. bottom: 0.02
  12745. }
  12746. },
  12747. },
  12748. [
  12749. {
  12750. name: "Normal",
  12751. height: math.unit(13 + 10 / 12, "feet"),
  12752. default: true
  12753. },
  12754. {
  12755. name: "Macro",
  12756. height: math.unit(45, "feet")
  12757. },
  12758. {
  12759. name: "Megamacro",
  12760. height: math.unit(250, "miles")
  12761. },
  12762. {
  12763. name: "Planetary",
  12764. height: math.unit(10000, "miles")
  12765. },
  12766. {
  12767. name: "Galactic",
  12768. height: math.unit(40000, "parsecs")
  12769. },
  12770. {
  12771. name: "Universal",
  12772. height: math.unit(1, "yottameter")
  12773. },
  12774. ]
  12775. ))
  12776. characterMakers.push(() => makeCharacter(
  12777. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12778. {
  12779. front: {
  12780. height: math.unit(6, "feet"),
  12781. weight: math.unit(150, "lb"),
  12782. name: "Front",
  12783. image: {
  12784. source: "./media/characters/epifox/front.svg",
  12785. extra: 1,
  12786. bottom: 0.075
  12787. }
  12788. },
  12789. },
  12790. [
  12791. {
  12792. name: "Micro",
  12793. height: math.unit(6, "inches")
  12794. },
  12795. {
  12796. name: "Normal",
  12797. height: math.unit(12, "feet"),
  12798. default: true
  12799. },
  12800. {
  12801. name: "Macro",
  12802. height: math.unit(3810, "feet")
  12803. },
  12804. {
  12805. name: "Megamacro",
  12806. height: math.unit(500, "miles")
  12807. },
  12808. ]
  12809. ))
  12810. characterMakers.push(() => makeCharacter(
  12811. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12812. {
  12813. front: {
  12814. height: math.unit(1.8796, "m"),
  12815. weight: math.unit(230, "lb"),
  12816. name: "Front",
  12817. image: {
  12818. source: "./media/characters/colin-t/front.svg",
  12819. extra: 1272 / 1193,
  12820. bottom: 0.07
  12821. }
  12822. },
  12823. },
  12824. [
  12825. {
  12826. name: "Micro",
  12827. height: math.unit(0.571, "meters")
  12828. },
  12829. {
  12830. name: "Normal",
  12831. height: math.unit(1.8796, "meters"),
  12832. default: true
  12833. },
  12834. {
  12835. name: "Tall",
  12836. height: math.unit(4, "meters")
  12837. },
  12838. {
  12839. name: "Macro",
  12840. height: math.unit(67.241, "meters")
  12841. },
  12842. {
  12843. name: "Megamacro",
  12844. height: math.unit(371.856, "meters")
  12845. },
  12846. {
  12847. name: "Planetary",
  12848. height: math.unit(12631.5689, "km")
  12849. },
  12850. ]
  12851. ))
  12852. characterMakers.push(() => makeCharacter(
  12853. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12854. {
  12855. front: {
  12856. height: math.unit(1.85, "meters"),
  12857. weight: math.unit(80, "kg"),
  12858. name: "Front",
  12859. image: {
  12860. source: "./media/characters/matvei/front.svg",
  12861. extra: 614 / 594,
  12862. bottom: 0.01
  12863. }
  12864. },
  12865. },
  12866. [
  12867. {
  12868. name: "Normal",
  12869. height: math.unit(1.85, "meters"),
  12870. default: true
  12871. },
  12872. ]
  12873. ))
  12874. characterMakers.push(() => makeCharacter(
  12875. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12876. {
  12877. front: {
  12878. height: math.unit(5 + 9 / 12, "feet"),
  12879. weight: math.unit(70, "lb"),
  12880. name: "Front",
  12881. image: {
  12882. source: "./media/characters/quincy/front.svg",
  12883. extra: 3041 / 2751
  12884. }
  12885. },
  12886. back: {
  12887. height: math.unit(5 + 9 / 12, "feet"),
  12888. weight: math.unit(70, "lb"),
  12889. name: "Back",
  12890. image: {
  12891. source: "./media/characters/quincy/back.svg",
  12892. extra: 3041 / 2751
  12893. }
  12894. },
  12895. flying: {
  12896. height: math.unit(5 + 4 / 12, "feet"),
  12897. weight: math.unit(70, "lb"),
  12898. name: "Flying",
  12899. image: {
  12900. source: "./media/characters/quincy/flying.svg",
  12901. extra: 1044 / 930
  12902. }
  12903. },
  12904. },
  12905. [
  12906. {
  12907. name: "Micro",
  12908. height: math.unit(3, "cm")
  12909. },
  12910. {
  12911. name: "Normal",
  12912. height: math.unit(5 + 9 / 12, "feet")
  12913. },
  12914. {
  12915. name: "Macro",
  12916. height: math.unit(200, "meters"),
  12917. default: true
  12918. },
  12919. {
  12920. name: "Megamacro",
  12921. height: math.unit(1000, "meters")
  12922. },
  12923. ]
  12924. ))
  12925. characterMakers.push(() => makeCharacter(
  12926. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12927. {
  12928. front: {
  12929. height: math.unit(3 + 11/12, "feet"),
  12930. weight: math.unit(50, "lb"),
  12931. name: "Front",
  12932. image: {
  12933. source: "./media/characters/vanrel/front.svg",
  12934. extra: 1104/949,
  12935. bottom: 52/1156
  12936. }
  12937. },
  12938. back: {
  12939. height: math.unit(3 + 11/12, "feet"),
  12940. weight: math.unit(50, "lb"),
  12941. name: "Back",
  12942. image: {
  12943. source: "./media/characters/vanrel/back.svg",
  12944. extra: 1119/976,
  12945. bottom: 37/1156
  12946. }
  12947. },
  12948. tome: {
  12949. height: math.unit(1.35, "feet"),
  12950. weight: math.unit(10, "lb"),
  12951. name: "Vanrel's Tome",
  12952. rename: true,
  12953. image: {
  12954. source: "./media/characters/vanrel/tome.svg"
  12955. }
  12956. },
  12957. beans: {
  12958. height: math.unit(0.89, "feet"),
  12959. name: "Beans",
  12960. image: {
  12961. source: "./media/characters/vanrel/beans.svg"
  12962. }
  12963. },
  12964. },
  12965. [
  12966. {
  12967. name: "Normal",
  12968. height: math.unit(3 + 11/12, "feet"),
  12969. default: true
  12970. },
  12971. ]
  12972. ))
  12973. characterMakers.push(() => makeCharacter(
  12974. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12975. {
  12976. front: {
  12977. height: math.unit(7 + 5 / 12, "feet"),
  12978. name: "Front",
  12979. image: {
  12980. source: "./media/characters/kuiper-vanrel/front.svg",
  12981. extra: 1219/1169,
  12982. bottom: 69/1288
  12983. }
  12984. },
  12985. back: {
  12986. height: math.unit(7 + 5 / 12, "feet"),
  12987. name: "Back",
  12988. image: {
  12989. source: "./media/characters/kuiper-vanrel/back.svg",
  12990. extra: 1236/1193,
  12991. bottom: 27/1263
  12992. }
  12993. },
  12994. foot: {
  12995. height: math.unit(0.55, "meters"),
  12996. name: "Foot",
  12997. image: {
  12998. source: "./media/characters/kuiper-vanrel/foot.svg",
  12999. }
  13000. },
  13001. battle: {
  13002. height: math.unit(6.824, "feet"),
  13003. name: "Battle",
  13004. image: {
  13005. source: "./media/characters/kuiper-vanrel/battle.svg",
  13006. extra: 1466 / 1327,
  13007. bottom: 29 / 1492.5
  13008. }
  13009. },
  13010. meerkui: {
  13011. height: math.unit(18, "inches"),
  13012. name: "Meerkui",
  13013. image: {
  13014. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13015. extra: 1354/1289,
  13016. bottom: 69/1423
  13017. }
  13018. },
  13019. },
  13020. [
  13021. {
  13022. name: "Normal",
  13023. height: math.unit(7 + 5 / 12, "feet"),
  13024. default: true
  13025. },
  13026. ]
  13027. ))
  13028. characterMakers.push(() => makeCharacter(
  13029. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13030. {
  13031. front: {
  13032. height: math.unit(8 + 5 / 12, "feet"),
  13033. name: "Front",
  13034. image: {
  13035. source: "./media/characters/keset-vanrel/front.svg",
  13036. extra: 1231/1148,
  13037. bottom: 82/1313
  13038. }
  13039. },
  13040. back: {
  13041. height: math.unit(8 + 5 / 12, "feet"),
  13042. name: "Back",
  13043. image: {
  13044. source: "./media/characters/keset-vanrel/back.svg",
  13045. extra: 1240/1174,
  13046. bottom: 33/1273
  13047. }
  13048. },
  13049. hand: {
  13050. height: math.unit(0.6, "meters"),
  13051. name: "Hand",
  13052. image: {
  13053. source: "./media/characters/keset-vanrel/hand.svg"
  13054. }
  13055. },
  13056. foot: {
  13057. height: math.unit(0.94978, "meters"),
  13058. name: "Foot",
  13059. image: {
  13060. source: "./media/characters/keset-vanrel/foot.svg"
  13061. }
  13062. },
  13063. battle: {
  13064. height: math.unit(7.408, "feet"),
  13065. name: "Battle",
  13066. image: {
  13067. source: "./media/characters/keset-vanrel/battle.svg",
  13068. extra: 1890 / 1386,
  13069. bottom: 73.28 / 1970
  13070. }
  13071. },
  13072. },
  13073. [
  13074. {
  13075. name: "Normal",
  13076. height: math.unit(8 + 5 / 12, "feet"),
  13077. default: true
  13078. },
  13079. ]
  13080. ))
  13081. characterMakers.push(() => makeCharacter(
  13082. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13083. {
  13084. front: {
  13085. height: math.unit(6, "feet"),
  13086. weight: math.unit(150, "lb"),
  13087. name: "Front",
  13088. image: {
  13089. source: "./media/characters/neos/front.svg",
  13090. extra: 1696 / 992,
  13091. bottom: 0.14
  13092. }
  13093. },
  13094. },
  13095. [
  13096. {
  13097. name: "Normal",
  13098. height: math.unit(54, "cm"),
  13099. default: true
  13100. },
  13101. {
  13102. name: "Macro",
  13103. height: math.unit(100, "m")
  13104. },
  13105. {
  13106. name: "Megamacro",
  13107. height: math.unit(10, "km")
  13108. },
  13109. {
  13110. name: "Megamacro+",
  13111. height: math.unit(100, "km")
  13112. },
  13113. {
  13114. name: "Gigamacro",
  13115. height: math.unit(100, "Mm")
  13116. },
  13117. {
  13118. name: "Teramacro",
  13119. height: math.unit(100, "Gm")
  13120. },
  13121. {
  13122. name: "Examacro",
  13123. height: math.unit(100, "Em")
  13124. },
  13125. {
  13126. name: "Godly",
  13127. height: math.unit(10000, "Ym")
  13128. },
  13129. {
  13130. name: "Beyond Godly",
  13131. height: math.unit(25, "multiverses")
  13132. },
  13133. ]
  13134. ))
  13135. characterMakers.push(() => makeCharacter(
  13136. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13137. {
  13138. feminine: {
  13139. height: math.unit(5, "feet"),
  13140. weight: math.unit(100, "lb"),
  13141. name: "Feminine",
  13142. image: {
  13143. source: "./media/characters/sammy-mouse/feminine.svg",
  13144. extra: 2526 / 2425,
  13145. bottom: 0.123
  13146. }
  13147. },
  13148. masculine: {
  13149. height: math.unit(5, "feet"),
  13150. weight: math.unit(100, "lb"),
  13151. name: "Masculine",
  13152. image: {
  13153. source: "./media/characters/sammy-mouse/masculine.svg",
  13154. extra: 2526 / 2425,
  13155. bottom: 0.123
  13156. }
  13157. },
  13158. },
  13159. [
  13160. {
  13161. name: "Micro",
  13162. height: math.unit(5, "inches")
  13163. },
  13164. {
  13165. name: "Normal",
  13166. height: math.unit(5, "feet"),
  13167. default: true
  13168. },
  13169. {
  13170. name: "Macro",
  13171. height: math.unit(60, "feet")
  13172. },
  13173. ]
  13174. ))
  13175. characterMakers.push(() => makeCharacter(
  13176. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13177. {
  13178. front: {
  13179. height: math.unit(4, "feet"),
  13180. weight: math.unit(50, "lb"),
  13181. name: "Front",
  13182. image: {
  13183. source: "./media/characters/kole/front.svg",
  13184. extra: 1423 / 1303,
  13185. bottom: 0.025
  13186. }
  13187. },
  13188. back: {
  13189. height: math.unit(4, "feet"),
  13190. weight: math.unit(50, "lb"),
  13191. name: "Back",
  13192. image: {
  13193. source: "./media/characters/kole/back.svg",
  13194. extra: 1426 / 1280,
  13195. bottom: 0.02
  13196. }
  13197. },
  13198. },
  13199. [
  13200. {
  13201. name: "Normal",
  13202. height: math.unit(4, "feet"),
  13203. default: true
  13204. },
  13205. ]
  13206. ))
  13207. characterMakers.push(() => makeCharacter(
  13208. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13209. {
  13210. front: {
  13211. height: math.unit(2.5, "feet"),
  13212. weight: math.unit(32, "lb"),
  13213. name: "Front",
  13214. image: {
  13215. source: "./media/characters/rufran/front.svg",
  13216. extra: 1313/885,
  13217. bottom: 94/1407
  13218. }
  13219. },
  13220. side: {
  13221. height: math.unit(2.5, "feet"),
  13222. weight: math.unit(32, "lb"),
  13223. name: "Side",
  13224. image: {
  13225. source: "./media/characters/rufran/side.svg",
  13226. extra: 1109/852,
  13227. bottom: 118/1227
  13228. }
  13229. },
  13230. back: {
  13231. height: math.unit(2.5, "feet"),
  13232. weight: math.unit(32, "lb"),
  13233. name: "Back",
  13234. image: {
  13235. source: "./media/characters/rufran/back.svg",
  13236. extra: 1280/878,
  13237. bottom: 131/1411
  13238. }
  13239. },
  13240. mouth: {
  13241. height: math.unit(1.13, "feet"),
  13242. name: "Mouth",
  13243. image: {
  13244. source: "./media/characters/rufran/mouth.svg"
  13245. }
  13246. },
  13247. foot: {
  13248. height: math.unit(1.33, "feet"),
  13249. name: "Foot",
  13250. image: {
  13251. source: "./media/characters/rufran/foot.svg"
  13252. }
  13253. },
  13254. koboldFront: {
  13255. height: math.unit(2 + 6 / 12, "feet"),
  13256. weight: math.unit(20, "lb"),
  13257. name: "Front (Kobold)",
  13258. image: {
  13259. source: "./media/characters/rufran/kobold-front.svg",
  13260. extra: 2041 / 1839,
  13261. bottom: 0.055
  13262. }
  13263. },
  13264. koboldBack: {
  13265. height: math.unit(2 + 6 / 12, "feet"),
  13266. weight: math.unit(20, "lb"),
  13267. name: "Back (Kobold)",
  13268. image: {
  13269. source: "./media/characters/rufran/kobold-back.svg",
  13270. extra: 2054 / 1839,
  13271. bottom: 0.01
  13272. }
  13273. },
  13274. koboldHand: {
  13275. height: math.unit(0.2166, "meters"),
  13276. name: "Hand (Kobold)",
  13277. image: {
  13278. source: "./media/characters/rufran/kobold-hand.svg"
  13279. }
  13280. },
  13281. koboldFoot: {
  13282. height: math.unit(0.185, "meters"),
  13283. name: "Foot (Kobold)",
  13284. image: {
  13285. source: "./media/characters/rufran/kobold-foot.svg"
  13286. }
  13287. },
  13288. },
  13289. [
  13290. {
  13291. name: "Micro",
  13292. height: math.unit(1, "inch")
  13293. },
  13294. {
  13295. name: "Normal",
  13296. height: math.unit(2 + 6 / 12, "feet"),
  13297. default: true
  13298. },
  13299. {
  13300. name: "Big",
  13301. height: math.unit(60, "feet")
  13302. },
  13303. {
  13304. name: "Macro",
  13305. height: math.unit(325, "feet")
  13306. },
  13307. ]
  13308. ))
  13309. characterMakers.push(() => makeCharacter(
  13310. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13311. {
  13312. front: {
  13313. height: math.unit(0.3, "meters"),
  13314. weight: math.unit(3.5, "kg"),
  13315. name: "Front",
  13316. image: {
  13317. source: "./media/characters/chip/front.svg",
  13318. extra: 748 / 674
  13319. }
  13320. },
  13321. },
  13322. [
  13323. {
  13324. name: "Micro",
  13325. height: math.unit(1, "inch"),
  13326. default: true
  13327. },
  13328. ]
  13329. ))
  13330. characterMakers.push(() => makeCharacter(
  13331. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13332. {
  13333. side: {
  13334. height: math.unit(2.3, "meters"),
  13335. weight: math.unit(3500, "lb"),
  13336. name: "Side",
  13337. image: {
  13338. source: "./media/characters/torvid/side.svg",
  13339. extra: 1972 / 722,
  13340. bottom: 0.035
  13341. }
  13342. },
  13343. },
  13344. [
  13345. {
  13346. name: "Normal",
  13347. height: math.unit(2.3, "meters"),
  13348. default: true
  13349. },
  13350. ]
  13351. ))
  13352. characterMakers.push(() => makeCharacter(
  13353. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13354. {
  13355. front: {
  13356. height: math.unit(2, "meters"),
  13357. weight: math.unit(150.5, "kg"),
  13358. name: "Front",
  13359. image: {
  13360. source: "./media/characters/susan/front.svg",
  13361. extra: 693 / 635,
  13362. bottom: 0.05
  13363. }
  13364. },
  13365. },
  13366. [
  13367. {
  13368. name: "Megamacro",
  13369. height: math.unit(505, "miles"),
  13370. default: true
  13371. },
  13372. ]
  13373. ))
  13374. characterMakers.push(() => makeCharacter(
  13375. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13376. {
  13377. front: {
  13378. height: math.unit(6, "feet"),
  13379. weight: math.unit(150, "lb"),
  13380. name: "Front",
  13381. image: {
  13382. source: "./media/characters/raindrops/front.svg",
  13383. extra: 2655 / 2461,
  13384. bottom: 49 / 2705
  13385. }
  13386. },
  13387. back: {
  13388. height: math.unit(6, "feet"),
  13389. weight: math.unit(150, "lb"),
  13390. name: "Back",
  13391. image: {
  13392. source: "./media/characters/raindrops/back.svg",
  13393. extra: 2574 / 2400,
  13394. bottom: 65 / 2634
  13395. }
  13396. },
  13397. },
  13398. [
  13399. {
  13400. name: "Micro",
  13401. height: math.unit(6, "inches")
  13402. },
  13403. {
  13404. name: "Normal",
  13405. height: math.unit(6 + 2 / 12, "feet")
  13406. },
  13407. {
  13408. name: "Macro",
  13409. height: math.unit(131, "feet"),
  13410. default: true
  13411. },
  13412. {
  13413. name: "Megamacro",
  13414. height: math.unit(15, "miles")
  13415. },
  13416. {
  13417. name: "Gigamacro",
  13418. height: math.unit(4000, "miles")
  13419. },
  13420. {
  13421. name: "Teramacro",
  13422. height: math.unit(315000, "miles")
  13423. },
  13424. ]
  13425. ))
  13426. characterMakers.push(() => makeCharacter(
  13427. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13428. {
  13429. front: {
  13430. height: math.unit(2.794, "meters"),
  13431. weight: math.unit(325, "kg"),
  13432. name: "Front",
  13433. image: {
  13434. source: "./media/characters/tezwa/front.svg",
  13435. extra: 2083 / 1906,
  13436. bottom: 0.031
  13437. }
  13438. },
  13439. foot: {
  13440. height: math.unit(0.687, "meters"),
  13441. name: "Foot",
  13442. image: {
  13443. source: "./media/characters/tezwa/foot.svg"
  13444. }
  13445. },
  13446. },
  13447. [
  13448. {
  13449. name: "Normal",
  13450. height: math.unit(9 + 2 / 12, "feet"),
  13451. default: true
  13452. },
  13453. ]
  13454. ))
  13455. characterMakers.push(() => makeCharacter(
  13456. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13457. {
  13458. front: {
  13459. height: math.unit(58, "feet"),
  13460. weight: math.unit(89000, "lb"),
  13461. name: "Front",
  13462. image: {
  13463. source: "./media/characters/typhus/front.svg",
  13464. extra: 816 / 800,
  13465. bottom: 0.065
  13466. }
  13467. },
  13468. },
  13469. [
  13470. {
  13471. name: "Macro",
  13472. height: math.unit(58, "feet"),
  13473. default: true
  13474. },
  13475. ]
  13476. ))
  13477. characterMakers.push(() => makeCharacter(
  13478. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13479. {
  13480. front: {
  13481. height: math.unit(12, "feet"),
  13482. weight: math.unit(6, "tonnes"),
  13483. name: "Front",
  13484. image: {
  13485. source: "./media/characters/lyra-von-wulf/front.svg",
  13486. extra: 1,
  13487. bottom: 0.10
  13488. }
  13489. },
  13490. frontMecha: {
  13491. height: math.unit(12, "feet"),
  13492. weight: math.unit(12, "tonnes"),
  13493. name: "Front (Mecha)",
  13494. image: {
  13495. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13496. extra: 1,
  13497. bottom: 0.042
  13498. }
  13499. },
  13500. maw: {
  13501. height: math.unit(2.2, "feet"),
  13502. name: "Maw",
  13503. image: {
  13504. source: "./media/characters/lyra-von-wulf/maw.svg"
  13505. }
  13506. },
  13507. },
  13508. [
  13509. {
  13510. name: "Normal",
  13511. height: math.unit(12, "feet"),
  13512. default: true
  13513. },
  13514. {
  13515. name: "Classic",
  13516. height: math.unit(50, "feet")
  13517. },
  13518. {
  13519. name: "Macro",
  13520. height: math.unit(500, "feet")
  13521. },
  13522. {
  13523. name: "Megamacro",
  13524. height: math.unit(1, "mile")
  13525. },
  13526. {
  13527. name: "Gigamacro",
  13528. height: math.unit(400, "miles")
  13529. },
  13530. {
  13531. name: "Teramacro",
  13532. height: math.unit(22000, "miles")
  13533. },
  13534. {
  13535. name: "Solarmacro",
  13536. height: math.unit(8600000, "miles")
  13537. },
  13538. {
  13539. name: "Galactic",
  13540. height: math.unit(1057000, "lightyears")
  13541. },
  13542. ]
  13543. ))
  13544. characterMakers.push(() => makeCharacter(
  13545. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13546. {
  13547. front: {
  13548. height: math.unit(6 + 10 / 12, "feet"),
  13549. weight: math.unit(150, "lb"),
  13550. name: "Front",
  13551. image: {
  13552. source: "./media/characters/dixon/front.svg",
  13553. extra: 3361 / 3209,
  13554. bottom: 0.01
  13555. }
  13556. },
  13557. },
  13558. [
  13559. {
  13560. name: "Normal",
  13561. height: math.unit(6 + 10 / 12, "feet"),
  13562. default: true
  13563. },
  13564. {
  13565. name: "Big",
  13566. height: math.unit(12, "meters")
  13567. },
  13568. {
  13569. name: "Macro",
  13570. height: math.unit(500, "meters")
  13571. },
  13572. {
  13573. name: "Megamacro",
  13574. height: math.unit(2, "km")
  13575. },
  13576. ]
  13577. ))
  13578. characterMakers.push(() => makeCharacter(
  13579. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13580. {
  13581. front: {
  13582. height: math.unit(185, "cm"),
  13583. weight: math.unit(68, "kg"),
  13584. name: "Front",
  13585. image: {
  13586. source: "./media/characters/kauko/front.svg",
  13587. extra: 1455 / 1421,
  13588. bottom: 0.03
  13589. }
  13590. },
  13591. back: {
  13592. height: math.unit(185, "cm"),
  13593. weight: math.unit(68, "kg"),
  13594. name: "Back",
  13595. image: {
  13596. source: "./media/characters/kauko/back.svg",
  13597. extra: 1455 / 1421,
  13598. bottom: 0.004
  13599. }
  13600. },
  13601. },
  13602. [
  13603. {
  13604. name: "Normal",
  13605. height: math.unit(185, "cm"),
  13606. default: true
  13607. },
  13608. ]
  13609. ))
  13610. characterMakers.push(() => makeCharacter(
  13611. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13612. {
  13613. front: {
  13614. height: math.unit(6, "feet"),
  13615. weight: math.unit(150, "kg"),
  13616. name: "Front",
  13617. image: {
  13618. source: "./media/characters/varg/front.svg",
  13619. extra: 1108 / 1018,
  13620. bottom: 0.0375
  13621. }
  13622. },
  13623. },
  13624. [
  13625. {
  13626. name: "Normal",
  13627. height: math.unit(5, "meters")
  13628. },
  13629. {
  13630. name: "Macro",
  13631. height: math.unit(200, "meters")
  13632. },
  13633. {
  13634. name: "Megamacro",
  13635. height: math.unit(20, "kilometers")
  13636. },
  13637. {
  13638. name: "True Size",
  13639. height: math.unit(211, "km"),
  13640. default: true
  13641. },
  13642. {
  13643. name: "Gigamacro",
  13644. height: math.unit(1000, "km")
  13645. },
  13646. {
  13647. name: "Gigamacro+",
  13648. height: math.unit(8000, "km")
  13649. },
  13650. {
  13651. name: "Teramacro",
  13652. height: math.unit(1000000, "km")
  13653. },
  13654. ]
  13655. ))
  13656. characterMakers.push(() => makeCharacter(
  13657. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13658. {
  13659. front: {
  13660. height: math.unit(7 + 7 / 12, "feet"),
  13661. weight: math.unit(267, "lb"),
  13662. name: "Front",
  13663. image: {
  13664. source: "./media/characters/dayza/front.svg",
  13665. extra: 1262 / 1200,
  13666. bottom: 0.035
  13667. }
  13668. },
  13669. side: {
  13670. height: math.unit(7 + 7 / 12, "feet"),
  13671. weight: math.unit(267, "lb"),
  13672. name: "Side",
  13673. image: {
  13674. source: "./media/characters/dayza/side.svg",
  13675. extra: 1295 / 1245,
  13676. bottom: 0.05
  13677. }
  13678. },
  13679. back: {
  13680. height: math.unit(7 + 7 / 12, "feet"),
  13681. weight: math.unit(267, "lb"),
  13682. name: "Back",
  13683. image: {
  13684. source: "./media/characters/dayza/back.svg",
  13685. extra: 1241 / 1170
  13686. }
  13687. },
  13688. },
  13689. [
  13690. {
  13691. name: "Normal",
  13692. height: math.unit(7 + 7 / 12, "feet"),
  13693. default: true
  13694. },
  13695. {
  13696. name: "Macro",
  13697. height: math.unit(155, "feet")
  13698. },
  13699. ]
  13700. ))
  13701. characterMakers.push(() => makeCharacter(
  13702. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13703. {
  13704. front: {
  13705. height: math.unit(6 + 5 / 12, "feet"),
  13706. weight: math.unit(160, "lb"),
  13707. name: "Front",
  13708. image: {
  13709. source: "./media/characters/xanthos/front.svg",
  13710. extra: 1,
  13711. bottom: 0.04
  13712. }
  13713. },
  13714. back: {
  13715. height: math.unit(6 + 5 / 12, "feet"),
  13716. weight: math.unit(160, "lb"),
  13717. name: "Back",
  13718. image: {
  13719. source: "./media/characters/xanthos/back.svg",
  13720. extra: 1,
  13721. bottom: 0.03
  13722. }
  13723. },
  13724. hand: {
  13725. height: math.unit(0.928, "feet"),
  13726. name: "Hand",
  13727. image: {
  13728. source: "./media/characters/xanthos/hand.svg"
  13729. }
  13730. },
  13731. foot: {
  13732. height: math.unit(1.286, "feet"),
  13733. name: "Foot",
  13734. image: {
  13735. source: "./media/characters/xanthos/foot.svg"
  13736. }
  13737. },
  13738. },
  13739. [
  13740. {
  13741. name: "Normal",
  13742. height: math.unit(6 + 5 / 12, "feet"),
  13743. default: true
  13744. },
  13745. {
  13746. name: "Normal+",
  13747. height: math.unit(6, "meters")
  13748. },
  13749. {
  13750. name: "Macro",
  13751. height: math.unit(40, "feet")
  13752. },
  13753. {
  13754. name: "Macro+",
  13755. height: math.unit(200, "meters")
  13756. },
  13757. {
  13758. name: "Megamacro",
  13759. height: math.unit(20, "km")
  13760. },
  13761. {
  13762. name: "Megamacro+",
  13763. height: math.unit(100, "km")
  13764. },
  13765. {
  13766. name: "Gigamacro",
  13767. height: math.unit(200, "megameters")
  13768. },
  13769. {
  13770. name: "Gigamacro+",
  13771. height: math.unit(1.5, "gigameters")
  13772. },
  13773. ]
  13774. ))
  13775. characterMakers.push(() => makeCharacter(
  13776. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13777. {
  13778. front: {
  13779. height: math.unit(6 + 3 / 12, "feet"),
  13780. weight: math.unit(215, "lb"),
  13781. name: "Front",
  13782. image: {
  13783. source: "./media/characters/grynn/front.svg",
  13784. extra: 4627 / 4209,
  13785. bottom: 0.047
  13786. }
  13787. },
  13788. },
  13789. [
  13790. {
  13791. name: "Micro",
  13792. height: math.unit(6, "inches")
  13793. },
  13794. {
  13795. name: "Normal",
  13796. height: math.unit(6 + 3 / 12, "feet"),
  13797. default: true
  13798. },
  13799. {
  13800. name: "Big",
  13801. height: math.unit(104, "feet")
  13802. },
  13803. {
  13804. name: "Macro",
  13805. height: math.unit(944, "feet")
  13806. },
  13807. {
  13808. name: "Macro+",
  13809. height: math.unit(9480, "feet")
  13810. },
  13811. {
  13812. name: "Megamacro",
  13813. height: math.unit(78752, "feet")
  13814. },
  13815. {
  13816. name: "Megamacro+",
  13817. height: math.unit(630128, "feet")
  13818. },
  13819. {
  13820. name: "Megamacro++",
  13821. height: math.unit(3150695, "feet")
  13822. },
  13823. ]
  13824. ))
  13825. characterMakers.push(() => makeCharacter(
  13826. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13827. {
  13828. front: {
  13829. height: math.unit(7 + 5 / 12, "feet"),
  13830. weight: math.unit(450, "lb"),
  13831. name: "Front",
  13832. image: {
  13833. source: "./media/characters/mocha-aura/front.svg",
  13834. extra: 1907 / 1817,
  13835. bottom: 0.04
  13836. }
  13837. },
  13838. back: {
  13839. height: math.unit(7 + 5 / 12, "feet"),
  13840. weight: math.unit(450, "lb"),
  13841. name: "Back",
  13842. image: {
  13843. source: "./media/characters/mocha-aura/back.svg",
  13844. extra: 1900 / 1825,
  13845. bottom: 0.045
  13846. }
  13847. },
  13848. },
  13849. [
  13850. {
  13851. name: "Nano",
  13852. height: math.unit(1, "nm")
  13853. },
  13854. {
  13855. name: "Megamicro",
  13856. height: math.unit(1, "mm")
  13857. },
  13858. {
  13859. name: "Micro",
  13860. height: math.unit(3, "inches")
  13861. },
  13862. {
  13863. name: "Normal",
  13864. height: math.unit(7 + 5 / 12, "feet"),
  13865. default: true
  13866. },
  13867. {
  13868. name: "Macro",
  13869. height: math.unit(30, "feet")
  13870. },
  13871. {
  13872. name: "Megamacro",
  13873. height: math.unit(3500, "feet")
  13874. },
  13875. {
  13876. name: "Teramacro",
  13877. height: math.unit(500000, "miles")
  13878. },
  13879. {
  13880. name: "Petamacro",
  13881. height: math.unit(50000000000000000, "parsecs")
  13882. },
  13883. ]
  13884. ))
  13885. characterMakers.push(() => makeCharacter(
  13886. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13887. {
  13888. front: {
  13889. height: math.unit(6, "feet"),
  13890. weight: math.unit(150, "lb"),
  13891. name: "Front",
  13892. image: {
  13893. source: "./media/characters/ilisha-devya/front.svg",
  13894. extra: 1053/1049,
  13895. bottom: 270/1323
  13896. }
  13897. },
  13898. back: {
  13899. height: math.unit(6, "feet"),
  13900. weight: math.unit(150, "lb"),
  13901. name: "Back",
  13902. image: {
  13903. source: "./media/characters/ilisha-devya/back.svg",
  13904. extra: 1131/1128,
  13905. bottom: 39/1170
  13906. }
  13907. },
  13908. },
  13909. [
  13910. {
  13911. name: "Macro",
  13912. height: math.unit(500, "feet"),
  13913. default: true
  13914. },
  13915. {
  13916. name: "Megamacro",
  13917. height: math.unit(10, "miles")
  13918. },
  13919. {
  13920. name: "Gigamacro",
  13921. height: math.unit(100000, "miles")
  13922. },
  13923. {
  13924. name: "Examacro",
  13925. height: math.unit(1e9, "lightyears")
  13926. },
  13927. {
  13928. name: "Omniversal",
  13929. height: math.unit(1e33, "lightyears")
  13930. },
  13931. {
  13932. name: "Beyond Infinite",
  13933. height: math.unit(1e100, "lightyears")
  13934. },
  13935. ]
  13936. ))
  13937. characterMakers.push(() => makeCharacter(
  13938. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13939. {
  13940. Side: {
  13941. height: math.unit(6, "feet"),
  13942. weight: math.unit(150, "lb"),
  13943. name: "Side",
  13944. image: {
  13945. source: "./media/characters/mira/side.svg",
  13946. extra: 900 / 799,
  13947. bottom: 0.02
  13948. }
  13949. },
  13950. },
  13951. [
  13952. {
  13953. name: "Human Size",
  13954. height: math.unit(6, "feet")
  13955. },
  13956. {
  13957. name: "Macro",
  13958. height: math.unit(100, "feet"),
  13959. default: true
  13960. },
  13961. {
  13962. name: "Megamacro",
  13963. height: math.unit(10, "miles")
  13964. },
  13965. {
  13966. name: "Gigamacro",
  13967. height: math.unit(25000, "miles")
  13968. },
  13969. {
  13970. name: "Teramacro",
  13971. height: math.unit(300, "AU")
  13972. },
  13973. {
  13974. name: "Full Size",
  13975. height: math.unit(4.5e10, "lightyears")
  13976. },
  13977. ]
  13978. ))
  13979. characterMakers.push(() => makeCharacter(
  13980. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13981. {
  13982. front: {
  13983. height: math.unit(6, "feet"),
  13984. weight: math.unit(150, "lb"),
  13985. name: "Front",
  13986. image: {
  13987. source: "./media/characters/holly/front.svg",
  13988. extra: 639 / 606
  13989. }
  13990. },
  13991. back: {
  13992. height: math.unit(6, "feet"),
  13993. weight: math.unit(150, "lb"),
  13994. name: "Back",
  13995. image: {
  13996. source: "./media/characters/holly/back.svg",
  13997. extra: 623 / 598
  13998. }
  13999. },
  14000. frontWorking: {
  14001. height: math.unit(6, "feet"),
  14002. weight: math.unit(150, "lb"),
  14003. name: "Front (Working)",
  14004. image: {
  14005. source: "./media/characters/holly/front-working.svg",
  14006. extra: 607 / 577,
  14007. bottom: 0.048
  14008. }
  14009. },
  14010. },
  14011. [
  14012. {
  14013. name: "Normal",
  14014. height: math.unit(12 + 3 / 12, "feet"),
  14015. default: true
  14016. },
  14017. ]
  14018. ))
  14019. characterMakers.push(() => makeCharacter(
  14020. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14021. {
  14022. front: {
  14023. height: math.unit(6, "feet"),
  14024. weight: math.unit(150, "lb"),
  14025. name: "Front",
  14026. image: {
  14027. source: "./media/characters/porter/front.svg",
  14028. extra: 1,
  14029. bottom: 0.01
  14030. }
  14031. },
  14032. frontRobes: {
  14033. height: math.unit(6, "feet"),
  14034. weight: math.unit(150, "lb"),
  14035. name: "Front (Robes)",
  14036. image: {
  14037. source: "./media/characters/porter/front-robes.svg",
  14038. extra: 1.01,
  14039. bottom: 0.01
  14040. }
  14041. },
  14042. },
  14043. [
  14044. {
  14045. name: "Normal",
  14046. height: math.unit(11 + 9 / 12, "feet"),
  14047. default: true
  14048. },
  14049. ]
  14050. ))
  14051. characterMakers.push(() => makeCharacter(
  14052. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14053. {
  14054. legendary: {
  14055. height: math.unit(6, "feet"),
  14056. weight: math.unit(150, "lb"),
  14057. name: "Legendary",
  14058. image: {
  14059. source: "./media/characters/lucy/legendary.svg",
  14060. extra: 1355 / 1100,
  14061. bottom: 0.045
  14062. }
  14063. },
  14064. },
  14065. [
  14066. {
  14067. name: "Legendary",
  14068. height: math.unit(86882 * 2, "miles"),
  14069. default: true
  14070. },
  14071. ]
  14072. ))
  14073. characterMakers.push(() => makeCharacter(
  14074. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14075. {
  14076. front: {
  14077. height: math.unit(6, "feet"),
  14078. weight: math.unit(150, "lb"),
  14079. name: "Front",
  14080. image: {
  14081. source: "./media/characters/drusilla/front.svg",
  14082. extra: 678 / 635,
  14083. bottom: 0.03
  14084. }
  14085. },
  14086. back: {
  14087. height: math.unit(6, "feet"),
  14088. weight: math.unit(150, "lb"),
  14089. name: "Back",
  14090. image: {
  14091. source: "./media/characters/drusilla/back.svg",
  14092. extra: 678 / 635,
  14093. bottom: 0.005
  14094. }
  14095. },
  14096. },
  14097. [
  14098. {
  14099. name: "Macro",
  14100. height: math.unit(100, "feet")
  14101. },
  14102. {
  14103. name: "Canon Height",
  14104. height: math.unit(2000, "feet"),
  14105. default: true
  14106. },
  14107. ]
  14108. ))
  14109. characterMakers.push(() => makeCharacter(
  14110. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14111. {
  14112. front: {
  14113. height: math.unit(6, "feet"),
  14114. weight: math.unit(180, "lb"),
  14115. name: "Front",
  14116. image: {
  14117. source: "./media/characters/renard-thatch/front.svg",
  14118. extra: 2411 / 2275,
  14119. bottom: 0.01
  14120. }
  14121. },
  14122. frontPosing: {
  14123. height: math.unit(6, "feet"),
  14124. weight: math.unit(180, "lb"),
  14125. name: "Front (Posing)",
  14126. image: {
  14127. source: "./media/characters/renard-thatch/front-posing.svg",
  14128. extra: 2381 / 2261,
  14129. bottom: 0.01
  14130. }
  14131. },
  14132. back: {
  14133. height: math.unit(6, "feet"),
  14134. weight: math.unit(180, "lb"),
  14135. name: "Back",
  14136. image: {
  14137. source: "./media/characters/renard-thatch/back.svg",
  14138. extra: 2428 / 2288
  14139. }
  14140. },
  14141. },
  14142. [
  14143. {
  14144. name: "Micro",
  14145. height: math.unit(3, "inches")
  14146. },
  14147. {
  14148. name: "Default",
  14149. height: math.unit(6, "feet"),
  14150. default: true
  14151. },
  14152. {
  14153. name: "Macro",
  14154. height: math.unit(75, "feet")
  14155. },
  14156. ]
  14157. ))
  14158. characterMakers.push(() => makeCharacter(
  14159. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14160. {
  14161. front: {
  14162. height: math.unit(1450, "feet"),
  14163. weight: math.unit(1.21e6, "tons"),
  14164. name: "Front",
  14165. image: {
  14166. source: "./media/characters/sekvra/front.svg",
  14167. extra: 1193/1190,
  14168. bottom: 78/1271
  14169. }
  14170. },
  14171. side: {
  14172. height: math.unit(1450, "feet"),
  14173. weight: math.unit(1.21e6, "tons"),
  14174. name: "Side",
  14175. image: {
  14176. source: "./media/characters/sekvra/side.svg",
  14177. extra: 1193/1190,
  14178. bottom: 52/1245
  14179. }
  14180. },
  14181. back: {
  14182. height: math.unit(1450, "feet"),
  14183. weight: math.unit(1.21e6, "tons"),
  14184. name: "Back",
  14185. image: {
  14186. source: "./media/characters/sekvra/back.svg",
  14187. extra: 1219/1216,
  14188. bottom: 21/1240
  14189. }
  14190. },
  14191. frontClothed: {
  14192. height: math.unit(1450, "feet"),
  14193. weight: math.unit(1.21e6, "tons"),
  14194. name: "Front (Clothed)",
  14195. image: {
  14196. source: "./media/characters/sekvra/front-clothed.svg",
  14197. extra: 1192/1189,
  14198. bottom: 79/1271
  14199. }
  14200. },
  14201. },
  14202. [
  14203. {
  14204. name: "Macro",
  14205. height: math.unit(1450, "feet"),
  14206. default: true
  14207. },
  14208. {
  14209. name: "Megamacro",
  14210. height: math.unit(15000, "feet")
  14211. },
  14212. ]
  14213. ))
  14214. characterMakers.push(() => makeCharacter(
  14215. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14216. {
  14217. front: {
  14218. height: math.unit(6, "feet"),
  14219. weight: math.unit(150, "lb"),
  14220. name: "Front",
  14221. image: {
  14222. source: "./media/characters/carmine/front.svg",
  14223. extra: 1,
  14224. bottom: 0.035
  14225. }
  14226. },
  14227. frontArmor: {
  14228. height: math.unit(6, "feet"),
  14229. weight: math.unit(150, "lb"),
  14230. name: "Front (Armor)",
  14231. image: {
  14232. source: "./media/characters/carmine/front-armor.svg",
  14233. extra: 1,
  14234. bottom: 0.035
  14235. }
  14236. },
  14237. },
  14238. [
  14239. {
  14240. name: "Large",
  14241. height: math.unit(1, "mile")
  14242. },
  14243. {
  14244. name: "Huge",
  14245. height: math.unit(40, "miles"),
  14246. default: true
  14247. },
  14248. {
  14249. name: "Colossal",
  14250. height: math.unit(2500, "miles")
  14251. },
  14252. ]
  14253. ))
  14254. characterMakers.push(() => makeCharacter(
  14255. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14256. {
  14257. front: {
  14258. height: math.unit(6, "feet"),
  14259. weight: math.unit(150, "lb"),
  14260. name: "Front",
  14261. image: {
  14262. source: "./media/characters/elyssia/front.svg",
  14263. extra: 2201 / 2035,
  14264. bottom: 0.05
  14265. }
  14266. },
  14267. frontClothed: {
  14268. height: math.unit(6, "feet"),
  14269. weight: math.unit(150, "lb"),
  14270. name: "Front (Clothed)",
  14271. image: {
  14272. source: "./media/characters/elyssia/front-clothed.svg",
  14273. extra: 2201 / 2035,
  14274. bottom: 0.05
  14275. }
  14276. },
  14277. back: {
  14278. height: math.unit(6, "feet"),
  14279. weight: math.unit(150, "lb"),
  14280. name: "Back",
  14281. image: {
  14282. source: "./media/characters/elyssia/back.svg",
  14283. extra: 2201 / 2035,
  14284. bottom: 0.013
  14285. }
  14286. },
  14287. },
  14288. [
  14289. {
  14290. name: "Smaller",
  14291. height: math.unit(150, "feet")
  14292. },
  14293. {
  14294. name: "Standard",
  14295. height: math.unit(1400, "feet"),
  14296. default: true
  14297. },
  14298. {
  14299. name: "Distracted",
  14300. height: math.unit(15000, "feet")
  14301. },
  14302. ]
  14303. ))
  14304. characterMakers.push(() => makeCharacter(
  14305. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14306. {
  14307. front: {
  14308. height: math.unit(7 + 4/12, "feet"),
  14309. weight: math.unit(690, "lb"),
  14310. name: "Front",
  14311. image: {
  14312. source: "./media/characters/geno-maxwell/front.svg",
  14313. extra: 984/856,
  14314. bottom: 87/1071
  14315. }
  14316. },
  14317. back: {
  14318. height: math.unit(7 + 4/12, "feet"),
  14319. weight: math.unit(690, "lb"),
  14320. name: "Back",
  14321. image: {
  14322. source: "./media/characters/geno-maxwell/back.svg",
  14323. extra: 981/854,
  14324. bottom: 57/1038
  14325. }
  14326. },
  14327. frontCostume: {
  14328. height: math.unit(7 + 4/12, "feet"),
  14329. weight: math.unit(690, "lb"),
  14330. name: "Front (Costume)",
  14331. image: {
  14332. source: "./media/characters/geno-maxwell/front-costume.svg",
  14333. extra: 984/856,
  14334. bottom: 87/1071
  14335. }
  14336. },
  14337. backcostume: {
  14338. height: math.unit(7 + 4/12, "feet"),
  14339. weight: math.unit(690, "lb"),
  14340. name: "Back (Costume)",
  14341. image: {
  14342. source: "./media/characters/geno-maxwell/back-costume.svg",
  14343. extra: 981/854,
  14344. bottom: 57/1038
  14345. }
  14346. },
  14347. },
  14348. [
  14349. {
  14350. name: "Micro",
  14351. height: math.unit(3, "inches")
  14352. },
  14353. {
  14354. name: "Normal",
  14355. height: math.unit(7 + 4 / 12, "feet"),
  14356. default: true
  14357. },
  14358. {
  14359. name: "Macro",
  14360. height: math.unit(220, "feet")
  14361. },
  14362. {
  14363. name: "Megamacro",
  14364. height: math.unit(11, "miles")
  14365. },
  14366. ]
  14367. ))
  14368. characterMakers.push(() => makeCharacter(
  14369. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14370. {
  14371. front: {
  14372. height: math.unit(7 + 4/12, "feet"),
  14373. weight: math.unit(750, "lb"),
  14374. name: "Front",
  14375. image: {
  14376. source: "./media/characters/regena-maxwell/front.svg",
  14377. extra: 984/856,
  14378. bottom: 87/1071
  14379. }
  14380. },
  14381. back: {
  14382. height: math.unit(7 + 4/12, "feet"),
  14383. weight: math.unit(750, "lb"),
  14384. name: "Back",
  14385. image: {
  14386. source: "./media/characters/regena-maxwell/back.svg",
  14387. extra: 981/854,
  14388. bottom: 57/1038
  14389. }
  14390. },
  14391. frontCostume: {
  14392. height: math.unit(7 + 4/12, "feet"),
  14393. weight: math.unit(750, "lb"),
  14394. name: "Front (Costume)",
  14395. image: {
  14396. source: "./media/characters/regena-maxwell/front-costume.svg",
  14397. extra: 984/856,
  14398. bottom: 87/1071
  14399. }
  14400. },
  14401. backcostume: {
  14402. height: math.unit(7 + 4/12, "feet"),
  14403. weight: math.unit(750, "lb"),
  14404. name: "Back (Costume)",
  14405. image: {
  14406. source: "./media/characters/regena-maxwell/back-costume.svg",
  14407. extra: 981/854,
  14408. bottom: 57/1038
  14409. }
  14410. },
  14411. },
  14412. [
  14413. {
  14414. name: "Normal",
  14415. height: math.unit(7 + 4 / 12, "feet"),
  14416. default: true
  14417. },
  14418. {
  14419. name: "Macro",
  14420. height: math.unit(220, "feet")
  14421. },
  14422. {
  14423. name: "Megamacro",
  14424. height: math.unit(11, "miles")
  14425. },
  14426. ]
  14427. ))
  14428. characterMakers.push(() => makeCharacter(
  14429. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14430. {
  14431. front: {
  14432. height: math.unit(6, "feet"),
  14433. weight: math.unit(150, "lb"),
  14434. name: "Front",
  14435. image: {
  14436. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14437. extra: 860 / 690,
  14438. bottom: 0.03
  14439. }
  14440. },
  14441. },
  14442. [
  14443. {
  14444. name: "Normal",
  14445. height: math.unit(1.7, "meters"),
  14446. default: true
  14447. },
  14448. ]
  14449. ))
  14450. characterMakers.push(() => makeCharacter(
  14451. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14452. {
  14453. front: {
  14454. height: math.unit(6, "feet"),
  14455. weight: math.unit(150, "lb"),
  14456. name: "Front",
  14457. image: {
  14458. source: "./media/characters/quilly/front.svg",
  14459. extra: 890 / 776
  14460. }
  14461. },
  14462. },
  14463. [
  14464. {
  14465. name: "Gigamacro",
  14466. height: math.unit(404090, "miles"),
  14467. default: true
  14468. },
  14469. ]
  14470. ))
  14471. characterMakers.push(() => makeCharacter(
  14472. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14473. {
  14474. front: {
  14475. height: math.unit(7 + 8 / 12, "feet"),
  14476. weight: math.unit(350, "lb"),
  14477. name: "Front",
  14478. image: {
  14479. source: "./media/characters/tempest/front.svg",
  14480. extra: 1175 / 1086,
  14481. bottom: 0.02
  14482. }
  14483. },
  14484. },
  14485. [
  14486. {
  14487. name: "Normal",
  14488. height: math.unit(7 + 8 / 12, "feet"),
  14489. default: true
  14490. },
  14491. ]
  14492. ))
  14493. characterMakers.push(() => makeCharacter(
  14494. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14495. {
  14496. side: {
  14497. height: math.unit(4 + 5 / 12, "feet"),
  14498. weight: math.unit(80, "lb"),
  14499. name: "Side",
  14500. image: {
  14501. source: "./media/characters/rodger/side.svg",
  14502. extra: 1235 / 1118
  14503. }
  14504. },
  14505. },
  14506. [
  14507. {
  14508. name: "Micro",
  14509. height: math.unit(1, "inch")
  14510. },
  14511. {
  14512. name: "Normal",
  14513. height: math.unit(4 + 5 / 12, "feet"),
  14514. default: true
  14515. },
  14516. {
  14517. name: "Macro",
  14518. height: math.unit(120, "feet")
  14519. },
  14520. ]
  14521. ))
  14522. characterMakers.push(() => makeCharacter(
  14523. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14524. {
  14525. front: {
  14526. height: math.unit(6, "feet"),
  14527. weight: math.unit(150, "lb"),
  14528. name: "Front",
  14529. image: {
  14530. source: "./media/characters/danyel/front.svg",
  14531. extra: 1185 / 1123,
  14532. bottom: 0.05
  14533. }
  14534. },
  14535. },
  14536. [
  14537. {
  14538. name: "Shrunken",
  14539. height: math.unit(0.5, "mm")
  14540. },
  14541. {
  14542. name: "Micro",
  14543. height: math.unit(1, "mm"),
  14544. default: true
  14545. },
  14546. {
  14547. name: "Upsized",
  14548. height: math.unit(5 + 5 / 12, "feet")
  14549. },
  14550. ]
  14551. ))
  14552. characterMakers.push(() => makeCharacter(
  14553. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14554. {
  14555. front: {
  14556. height: math.unit(5 + 6 / 12, "feet"),
  14557. weight: math.unit(200, "lb"),
  14558. name: "Front",
  14559. image: {
  14560. source: "./media/characters/vivian-bijoux/front.svg",
  14561. extra: 1217/1209,
  14562. bottom: 76/1293
  14563. }
  14564. },
  14565. back: {
  14566. height: math.unit(5 + 6 / 12, "feet"),
  14567. weight: math.unit(200, "lb"),
  14568. name: "Back",
  14569. image: {
  14570. source: "./media/characters/vivian-bijoux/back.svg",
  14571. extra: 1214/1208,
  14572. bottom: 51/1265
  14573. }
  14574. },
  14575. dressed: {
  14576. height: math.unit(5 + 6 / 12, "feet"),
  14577. weight: math.unit(200, "lb"),
  14578. name: "Dressed",
  14579. image: {
  14580. source: "./media/characters/vivian-bijoux/dressed.svg",
  14581. extra: 1217/1209,
  14582. bottom: 76/1293
  14583. }
  14584. },
  14585. },
  14586. [
  14587. {
  14588. name: "Normal",
  14589. height: math.unit(5 + 6 / 12, "feet"),
  14590. default: true
  14591. },
  14592. {
  14593. name: "Bad Dream",
  14594. height: math.unit(500, "feet")
  14595. },
  14596. {
  14597. name: "Nightmare",
  14598. height: math.unit(500, "miles")
  14599. },
  14600. ]
  14601. ))
  14602. characterMakers.push(() => makeCharacter(
  14603. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14604. {
  14605. front: {
  14606. height: math.unit(6 + 1 / 12, "feet"),
  14607. weight: math.unit(260, "lb"),
  14608. name: "Front",
  14609. image: {
  14610. source: "./media/characters/zeta/front.svg",
  14611. extra: 1968 / 1889,
  14612. bottom: 0.06
  14613. }
  14614. },
  14615. back: {
  14616. height: math.unit(6 + 1 / 12, "feet"),
  14617. weight: math.unit(260, "lb"),
  14618. name: "Back",
  14619. image: {
  14620. source: "./media/characters/zeta/back.svg",
  14621. extra: 1944 / 1858,
  14622. bottom: 0.03
  14623. }
  14624. },
  14625. hand: {
  14626. height: math.unit(1.112, "feet"),
  14627. name: "Hand",
  14628. image: {
  14629. source: "./media/characters/zeta/hand.svg"
  14630. }
  14631. },
  14632. foot: {
  14633. height: math.unit(1.48, "feet"),
  14634. name: "Foot",
  14635. image: {
  14636. source: "./media/characters/zeta/foot.svg"
  14637. }
  14638. },
  14639. },
  14640. [
  14641. {
  14642. name: "Micro",
  14643. height: math.unit(6, "inches")
  14644. },
  14645. {
  14646. name: "Normal",
  14647. height: math.unit(6 + 1 / 12, "feet"),
  14648. default: true
  14649. },
  14650. {
  14651. name: "Macro",
  14652. height: math.unit(20, "feet")
  14653. },
  14654. ]
  14655. ))
  14656. characterMakers.push(() => makeCharacter(
  14657. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14658. {
  14659. front: {
  14660. height: math.unit(6, "feet"),
  14661. weight: math.unit(150, "lb"),
  14662. name: "Front",
  14663. image: {
  14664. source: "./media/characters/jamie-larsen/front.svg",
  14665. extra: 962 / 933,
  14666. bottom: 0.02
  14667. }
  14668. },
  14669. back: {
  14670. height: math.unit(6, "feet"),
  14671. weight: math.unit(150, "lb"),
  14672. name: "Back",
  14673. image: {
  14674. source: "./media/characters/jamie-larsen/back.svg",
  14675. extra: 997 / 946
  14676. }
  14677. },
  14678. },
  14679. [
  14680. {
  14681. name: "Macro",
  14682. height: math.unit(28 + 7 / 12, "feet"),
  14683. default: true
  14684. },
  14685. {
  14686. name: "Macro+",
  14687. height: math.unit(180, "feet")
  14688. },
  14689. {
  14690. name: "Megamacro",
  14691. height: math.unit(10, "miles")
  14692. },
  14693. {
  14694. name: "Gigamacro",
  14695. height: math.unit(200000, "miles")
  14696. },
  14697. ]
  14698. ))
  14699. characterMakers.push(() => makeCharacter(
  14700. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14701. {
  14702. front: {
  14703. height: math.unit(6, "feet"),
  14704. weight: math.unit(120, "lb"),
  14705. name: "Front",
  14706. image: {
  14707. source: "./media/characters/vance/front.svg",
  14708. extra: 1980 / 1890,
  14709. bottom: 0.09
  14710. }
  14711. },
  14712. back: {
  14713. height: math.unit(6, "feet"),
  14714. weight: math.unit(120, "lb"),
  14715. name: "Back",
  14716. image: {
  14717. source: "./media/characters/vance/back.svg",
  14718. extra: 2081 / 1994,
  14719. bottom: 0.014
  14720. }
  14721. },
  14722. hand: {
  14723. height: math.unit(0.88, "feet"),
  14724. name: "Hand",
  14725. image: {
  14726. source: "./media/characters/vance/hand.svg"
  14727. }
  14728. },
  14729. foot: {
  14730. height: math.unit(0.64, "feet"),
  14731. name: "Foot",
  14732. image: {
  14733. source: "./media/characters/vance/foot.svg"
  14734. }
  14735. },
  14736. },
  14737. [
  14738. {
  14739. name: "Small",
  14740. height: math.unit(90, "feet"),
  14741. default: true
  14742. },
  14743. {
  14744. name: "Macro",
  14745. height: math.unit(100, "meters")
  14746. },
  14747. {
  14748. name: "Megamacro",
  14749. height: math.unit(15, "miles")
  14750. },
  14751. ]
  14752. ))
  14753. characterMakers.push(() => makeCharacter(
  14754. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14755. {
  14756. front: {
  14757. height: math.unit(6, "feet"),
  14758. weight: math.unit(180, "lb"),
  14759. name: "Front",
  14760. image: {
  14761. source: "./media/characters/xochitl/front.svg",
  14762. extra: 2297 / 2261,
  14763. bottom: 0.065
  14764. }
  14765. },
  14766. back: {
  14767. height: math.unit(6, "feet"),
  14768. weight: math.unit(180, "lb"),
  14769. name: "Back",
  14770. image: {
  14771. source: "./media/characters/xochitl/back.svg",
  14772. extra: 2386 / 2354,
  14773. bottom: 0.01
  14774. }
  14775. },
  14776. foot: {
  14777. height: math.unit(6 / 5 * 1.15, "feet"),
  14778. weight: math.unit(150, "lb"),
  14779. name: "Foot",
  14780. image: {
  14781. source: "./media/characters/xochitl/foot.svg"
  14782. }
  14783. },
  14784. },
  14785. [
  14786. {
  14787. name: "Macro",
  14788. height: math.unit(80, "feet")
  14789. },
  14790. {
  14791. name: "Macro+",
  14792. height: math.unit(400, "feet"),
  14793. default: true
  14794. },
  14795. {
  14796. name: "Gigamacro",
  14797. height: math.unit(80000, "miles")
  14798. },
  14799. {
  14800. name: "Gigamacro+",
  14801. height: math.unit(400000, "miles")
  14802. },
  14803. {
  14804. name: "Teramacro",
  14805. height: math.unit(300, "AU")
  14806. },
  14807. ]
  14808. ))
  14809. characterMakers.push(() => makeCharacter(
  14810. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14811. {
  14812. front: {
  14813. height: math.unit(6, "feet"),
  14814. weight: math.unit(150, "lb"),
  14815. name: "Front",
  14816. image: {
  14817. source: "./media/characters/vincent/front.svg",
  14818. extra: 1130 / 1080,
  14819. bottom: 0.055
  14820. }
  14821. },
  14822. beak: {
  14823. height: math.unit(6 * 0.1, "feet"),
  14824. name: "Beak",
  14825. image: {
  14826. source: "./media/characters/vincent/beak.svg"
  14827. }
  14828. },
  14829. hand: {
  14830. height: math.unit(6 * 0.85, "feet"),
  14831. weight: math.unit(150, "lb"),
  14832. name: "Hand",
  14833. image: {
  14834. source: "./media/characters/vincent/hand.svg"
  14835. }
  14836. },
  14837. foot: {
  14838. height: math.unit(6 * 0.19, "feet"),
  14839. weight: math.unit(150, "lb"),
  14840. name: "Foot",
  14841. image: {
  14842. source: "./media/characters/vincent/foot.svg"
  14843. }
  14844. },
  14845. },
  14846. [
  14847. {
  14848. name: "Base",
  14849. height: math.unit(6 + 5 / 12, "feet"),
  14850. default: true
  14851. },
  14852. {
  14853. name: "Macro",
  14854. height: math.unit(300, "feet")
  14855. },
  14856. {
  14857. name: "Megamacro",
  14858. height: math.unit(2, "miles")
  14859. },
  14860. {
  14861. name: "Gigamacro",
  14862. height: math.unit(1000, "miles")
  14863. },
  14864. ]
  14865. ))
  14866. characterMakers.push(() => makeCharacter(
  14867. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14868. {
  14869. front: {
  14870. height: math.unit(2, "meters"),
  14871. weight: math.unit(500, "kg"),
  14872. name: "Front",
  14873. image: {
  14874. source: "./media/characters/coatl/front.svg",
  14875. extra: 3948 / 3500,
  14876. bottom: 0.082
  14877. }
  14878. },
  14879. },
  14880. [
  14881. {
  14882. name: "Normal",
  14883. height: math.unit(4, "meters")
  14884. },
  14885. {
  14886. name: "Macro",
  14887. height: math.unit(100, "meters"),
  14888. default: true
  14889. },
  14890. {
  14891. name: "Macro+",
  14892. height: math.unit(300, "meters")
  14893. },
  14894. {
  14895. name: "Megamacro",
  14896. height: math.unit(3, "gigameters")
  14897. },
  14898. {
  14899. name: "Megamacro+",
  14900. height: math.unit(300, "terameters")
  14901. },
  14902. {
  14903. name: "Megamacro++",
  14904. height: math.unit(3, "lightyears")
  14905. },
  14906. ]
  14907. ))
  14908. characterMakers.push(() => makeCharacter(
  14909. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14910. {
  14911. front: {
  14912. height: math.unit(6, "feet"),
  14913. weight: math.unit(50, "kg"),
  14914. name: "front",
  14915. image: {
  14916. source: "./media/characters/shiroryu/front.svg",
  14917. extra: 1990 / 1935
  14918. }
  14919. },
  14920. },
  14921. [
  14922. {
  14923. name: "Mortal Mingling",
  14924. height: math.unit(3, "meters")
  14925. },
  14926. {
  14927. name: "Kaiju-ish",
  14928. height: math.unit(250, "meters")
  14929. },
  14930. {
  14931. name: "Somewhat Godly",
  14932. height: math.unit(400, "km"),
  14933. default: true
  14934. },
  14935. {
  14936. name: "Planetary",
  14937. height: math.unit(300, "megameters")
  14938. },
  14939. {
  14940. name: "Galaxy-dwarfing",
  14941. height: math.unit(450, "kiloparsecs")
  14942. },
  14943. {
  14944. name: "Universe Eater",
  14945. height: math.unit(150, "gigaparsecs")
  14946. },
  14947. {
  14948. name: "Almost Immeasurable",
  14949. height: math.unit(1.3e266, "yottaparsecs")
  14950. },
  14951. ]
  14952. ))
  14953. characterMakers.push(() => makeCharacter(
  14954. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14955. {
  14956. front: {
  14957. height: math.unit(6, "feet"),
  14958. weight: math.unit(150, "lb"),
  14959. name: "Front",
  14960. image: {
  14961. source: "./media/characters/umeko/front.svg",
  14962. extra: 1,
  14963. bottom: 0.019
  14964. }
  14965. },
  14966. frontArmored: {
  14967. height: math.unit(6, "feet"),
  14968. weight: math.unit(150, "lb"),
  14969. name: "Front (Armored)",
  14970. image: {
  14971. source: "./media/characters/umeko/front-armored.svg",
  14972. extra: 1,
  14973. bottom: 0.021
  14974. }
  14975. },
  14976. },
  14977. [
  14978. {
  14979. name: "Macro",
  14980. height: math.unit(220, "feet"),
  14981. default: true
  14982. },
  14983. {
  14984. name: "Guardian Dragon",
  14985. height: math.unit(50, "miles")
  14986. },
  14987. {
  14988. name: "Cosmic",
  14989. height: math.unit(800000, "miles")
  14990. },
  14991. ]
  14992. ))
  14993. characterMakers.push(() => makeCharacter(
  14994. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14995. {
  14996. front: {
  14997. height: math.unit(6, "feet"),
  14998. weight: math.unit(150, "lb"),
  14999. name: "Front",
  15000. image: {
  15001. source: "./media/characters/cassidy/front.svg",
  15002. extra: 810/808,
  15003. bottom: 41/851
  15004. }
  15005. },
  15006. },
  15007. [
  15008. {
  15009. name: "Canon Height",
  15010. height: math.unit(120, "feet"),
  15011. default: true
  15012. },
  15013. {
  15014. name: "Macro+",
  15015. height: math.unit(400, "feet")
  15016. },
  15017. {
  15018. name: "Macro++",
  15019. height: math.unit(4000, "feet")
  15020. },
  15021. {
  15022. name: "Megamacro",
  15023. height: math.unit(3, "miles")
  15024. },
  15025. ]
  15026. ))
  15027. characterMakers.push(() => makeCharacter(
  15028. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15029. {
  15030. front: {
  15031. height: math.unit(6, "feet"),
  15032. weight: math.unit(150, "lb"),
  15033. name: "Front",
  15034. image: {
  15035. source: "./media/characters/isaac/front.svg",
  15036. extra: 896 / 815,
  15037. bottom: 0.11
  15038. }
  15039. },
  15040. },
  15041. [
  15042. {
  15043. name: "Human Size",
  15044. height: math.unit(8, "feet"),
  15045. default: true
  15046. },
  15047. {
  15048. name: "Macro",
  15049. height: math.unit(400, "feet")
  15050. },
  15051. {
  15052. name: "Megamacro",
  15053. height: math.unit(50, "miles")
  15054. },
  15055. {
  15056. name: "Canon Height",
  15057. height: math.unit(200, "AU")
  15058. },
  15059. ]
  15060. ))
  15061. characterMakers.push(() => makeCharacter(
  15062. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15063. {
  15064. front: {
  15065. height: math.unit(6, "feet"),
  15066. weight: math.unit(72, "kg"),
  15067. name: "Front",
  15068. image: {
  15069. source: "./media/characters/sleekit/front.svg",
  15070. extra: 4693 / 4487,
  15071. bottom: 0.012
  15072. }
  15073. },
  15074. },
  15075. [
  15076. {
  15077. name: "Minimum Height",
  15078. height: math.unit(10, "meters")
  15079. },
  15080. {
  15081. name: "Smaller",
  15082. height: math.unit(25, "meters")
  15083. },
  15084. {
  15085. name: "Larger",
  15086. height: math.unit(38, "meters"),
  15087. default: true
  15088. },
  15089. {
  15090. name: "Maximum height",
  15091. height: math.unit(100, "meters")
  15092. },
  15093. ]
  15094. ))
  15095. characterMakers.push(() => makeCharacter(
  15096. { name: "Nillia", species: ["caracal"], 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/nillia/front.svg",
  15104. extra: 2195 / 2037,
  15105. bottom: 0.005
  15106. }
  15107. },
  15108. back: {
  15109. height: math.unit(6, "feet"),
  15110. weight: math.unit(150, "lb"),
  15111. name: "Back",
  15112. image: {
  15113. source: "./media/characters/nillia/back.svg",
  15114. extra: 2195 / 2037,
  15115. bottom: 0.005
  15116. }
  15117. },
  15118. },
  15119. [
  15120. {
  15121. name: "Canon Height",
  15122. height: math.unit(489, "feet"),
  15123. default: true
  15124. }
  15125. ]
  15126. ))
  15127. characterMakers.push(() => makeCharacter(
  15128. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15129. {
  15130. front: {
  15131. height: math.unit(6, "feet"),
  15132. weight: math.unit(150, "lb"),
  15133. name: "Front",
  15134. image: {
  15135. source: "./media/characters/mesmyriza/front.svg",
  15136. extra: 2067 / 1784,
  15137. bottom: 0.035
  15138. }
  15139. },
  15140. foot: {
  15141. height: math.unit(6 / (250 / 35), "feet"),
  15142. name: "Foot",
  15143. image: {
  15144. source: "./media/characters/mesmyriza/foot.svg"
  15145. }
  15146. },
  15147. },
  15148. [
  15149. {
  15150. name: "Macro",
  15151. height: math.unit(457, "meters"),
  15152. default: true
  15153. },
  15154. {
  15155. name: "Megamacro",
  15156. height: math.unit(8, "megameters")
  15157. },
  15158. ]
  15159. ))
  15160. characterMakers.push(() => makeCharacter(
  15161. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15162. {
  15163. front: {
  15164. height: math.unit(6, "feet"),
  15165. weight: math.unit(250, "lb"),
  15166. name: "Front",
  15167. image: {
  15168. source: "./media/characters/saudade/front.svg",
  15169. extra: 1172 / 1139,
  15170. bottom: 0.035
  15171. }
  15172. },
  15173. },
  15174. [
  15175. {
  15176. name: "Micro",
  15177. height: math.unit(3, "inches")
  15178. },
  15179. {
  15180. name: "Normal",
  15181. height: math.unit(6, "feet"),
  15182. default: true
  15183. },
  15184. {
  15185. name: "Macro",
  15186. height: math.unit(50, "feet")
  15187. },
  15188. {
  15189. name: "Megamacro",
  15190. height: math.unit(2800, "feet")
  15191. },
  15192. ]
  15193. ))
  15194. characterMakers.push(() => makeCharacter(
  15195. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15196. {
  15197. front: {
  15198. height: math.unit(5 + 4 / 12, "feet"),
  15199. weight: math.unit(100, "lb"),
  15200. name: "Front",
  15201. image: {
  15202. source: "./media/characters/keireer/front.svg",
  15203. extra: 716 / 666,
  15204. bottom: 0.05
  15205. }
  15206. },
  15207. },
  15208. [
  15209. {
  15210. name: "Normal",
  15211. height: math.unit(5 + 4 / 12, "feet"),
  15212. default: true
  15213. },
  15214. ]
  15215. ))
  15216. characterMakers.push(() => makeCharacter(
  15217. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15218. {
  15219. front: {
  15220. height: math.unit(5.5, "feet"),
  15221. weight: math.unit(90, "kg"),
  15222. name: "Front",
  15223. image: {
  15224. source: "./media/characters/mirja/front.svg",
  15225. extra: 1452/1262,
  15226. bottom: 67/1519
  15227. }
  15228. },
  15229. frontDressed: {
  15230. height: math.unit(5.5, "feet"),
  15231. weight: math.unit(90, "lb"),
  15232. name: "Front (Dressed)",
  15233. image: {
  15234. source: "./media/characters/mirja/dressed.svg",
  15235. extra: 1452/1262,
  15236. bottom: 67/1519
  15237. }
  15238. },
  15239. back: {
  15240. height: math.unit(6, "feet"),
  15241. weight: math.unit(90, "lb"),
  15242. name: "Back",
  15243. image: {
  15244. source: "./media/characters/mirja/back.svg",
  15245. extra: 1892/1795,
  15246. bottom: 48/1940
  15247. }
  15248. },
  15249. maw: {
  15250. height: math.unit(1.312, "feet"),
  15251. name: "Maw",
  15252. image: {
  15253. source: "./media/characters/mirja/maw.svg"
  15254. }
  15255. },
  15256. paw: {
  15257. height: math.unit(1.15, "feet"),
  15258. name: "Paw",
  15259. image: {
  15260. source: "./media/characters/mirja/paw.svg"
  15261. }
  15262. },
  15263. },
  15264. [
  15265. {
  15266. name: "\"Incognito\"",
  15267. height: math.unit(3, "meters")
  15268. },
  15269. {
  15270. name: "Strolling Size",
  15271. height: math.unit(15, "km")
  15272. },
  15273. {
  15274. name: "Larger Strolling Size",
  15275. height: math.unit(400, "km")
  15276. },
  15277. {
  15278. name: "Preferred Size",
  15279. height: math.unit(5000, "km"),
  15280. default: true
  15281. },
  15282. {
  15283. name: "True Size",
  15284. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15285. },
  15286. ]
  15287. ))
  15288. characterMakers.push(() => makeCharacter(
  15289. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15290. {
  15291. front: {
  15292. height: math.unit(15, "feet"),
  15293. weight: math.unit(880, "kg"),
  15294. name: "Front",
  15295. image: {
  15296. source: "./media/characters/nightraver/front.svg",
  15297. extra: 2444 / 2160,
  15298. bottom: 0.027
  15299. }
  15300. },
  15301. back: {
  15302. height: math.unit(15, "feet"),
  15303. weight: math.unit(880, "kg"),
  15304. name: "Back",
  15305. image: {
  15306. source: "./media/characters/nightraver/back.svg",
  15307. extra: 2309 / 2180,
  15308. bottom: 0.005
  15309. }
  15310. },
  15311. sole: {
  15312. height: math.unit(2.878, "feet"),
  15313. name: "Sole",
  15314. image: {
  15315. source: "./media/characters/nightraver/sole.svg"
  15316. }
  15317. },
  15318. foot: {
  15319. height: math.unit(2.285, "feet"),
  15320. name: "Foot",
  15321. image: {
  15322. source: "./media/characters/nightraver/foot.svg"
  15323. }
  15324. },
  15325. maw: {
  15326. height: math.unit(2.67, "feet"),
  15327. name: "Maw",
  15328. image: {
  15329. source: "./media/characters/nightraver/maw.svg"
  15330. }
  15331. },
  15332. },
  15333. [
  15334. {
  15335. name: "Micro",
  15336. height: math.unit(1, "cm")
  15337. },
  15338. {
  15339. name: "Normal",
  15340. height: math.unit(15, "feet"),
  15341. default: true
  15342. },
  15343. {
  15344. name: "Macro",
  15345. height: math.unit(300, "feet")
  15346. },
  15347. {
  15348. name: "Megamacro",
  15349. height: math.unit(300, "miles")
  15350. },
  15351. {
  15352. name: "Gigamacro",
  15353. height: math.unit(10000, "miles")
  15354. },
  15355. ]
  15356. ))
  15357. characterMakers.push(() => makeCharacter(
  15358. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15359. {
  15360. side: {
  15361. height: math.unit(2, "inches"),
  15362. weight: math.unit(5, "grams"),
  15363. name: "Side",
  15364. image: {
  15365. source: "./media/characters/arc/side.svg"
  15366. }
  15367. },
  15368. },
  15369. [
  15370. {
  15371. name: "Micro",
  15372. height: math.unit(2, "inches"),
  15373. default: true
  15374. },
  15375. ]
  15376. ))
  15377. characterMakers.push(() => makeCharacter(
  15378. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15379. {
  15380. front: {
  15381. height: math.unit(1.1938, "meters"),
  15382. weight: math.unit(54, "kg"),
  15383. name: "Front",
  15384. image: {
  15385. source: "./media/characters/nebula-shahar/front.svg",
  15386. extra: 1642 / 1436,
  15387. bottom: 0.06
  15388. }
  15389. },
  15390. },
  15391. [
  15392. {
  15393. name: "Megamicro",
  15394. height: math.unit(0.3, "mm")
  15395. },
  15396. {
  15397. name: "Micro",
  15398. height: math.unit(3, "cm")
  15399. },
  15400. {
  15401. name: "Normal",
  15402. height: math.unit(138, "cm"),
  15403. default: true
  15404. },
  15405. {
  15406. name: "Macro",
  15407. height: math.unit(30, "m")
  15408. },
  15409. ]
  15410. ))
  15411. characterMakers.push(() => makeCharacter(
  15412. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15413. {
  15414. front: {
  15415. height: math.unit(5.24, "feet"),
  15416. weight: math.unit(150, "lb"),
  15417. name: "Front",
  15418. image: {
  15419. source: "./media/characters/shayla/front.svg",
  15420. extra: 1512 / 1414,
  15421. bottom: 0.01
  15422. }
  15423. },
  15424. back: {
  15425. height: math.unit(5.24, "feet"),
  15426. weight: math.unit(150, "lb"),
  15427. name: "Back",
  15428. image: {
  15429. source: "./media/characters/shayla/back.svg",
  15430. extra: 1512 / 1414
  15431. }
  15432. },
  15433. hand: {
  15434. height: math.unit(0.7781496062992126, "feet"),
  15435. name: "Hand",
  15436. image: {
  15437. source: "./media/characters/shayla/hand.svg"
  15438. }
  15439. },
  15440. foot: {
  15441. height: math.unit(1.4206036745406823, "feet"),
  15442. name: "Foot",
  15443. image: {
  15444. source: "./media/characters/shayla/foot.svg"
  15445. }
  15446. },
  15447. },
  15448. [
  15449. {
  15450. name: "Micro",
  15451. height: math.unit(0.32, "feet")
  15452. },
  15453. {
  15454. name: "Normal",
  15455. height: math.unit(5.24, "feet"),
  15456. default: true
  15457. },
  15458. {
  15459. name: "Macro",
  15460. height: math.unit(492.12, "feet")
  15461. },
  15462. {
  15463. name: "Megamacro",
  15464. height: math.unit(186.41, "miles")
  15465. },
  15466. ]
  15467. ))
  15468. characterMakers.push(() => makeCharacter(
  15469. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15470. {
  15471. front: {
  15472. height: math.unit(2.2, "m"),
  15473. weight: math.unit(120, "kg"),
  15474. name: "Front",
  15475. image: {
  15476. source: "./media/characters/pia-jr/front.svg",
  15477. extra: 1000 / 970,
  15478. bottom: 0.035
  15479. }
  15480. },
  15481. hand: {
  15482. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15483. name: "Hand",
  15484. image: {
  15485. source: "./media/characters/pia-jr/hand.svg"
  15486. }
  15487. },
  15488. paw: {
  15489. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15490. name: "Paw",
  15491. image: {
  15492. source: "./media/characters/pia-jr/paw.svg"
  15493. }
  15494. },
  15495. },
  15496. [
  15497. {
  15498. name: "Micro",
  15499. height: math.unit(1.2, "cm")
  15500. },
  15501. {
  15502. name: "Normal",
  15503. height: math.unit(2.2, "m"),
  15504. default: true
  15505. },
  15506. {
  15507. name: "Macro",
  15508. height: math.unit(180, "m")
  15509. },
  15510. {
  15511. name: "Megamacro",
  15512. height: math.unit(420, "km")
  15513. },
  15514. ]
  15515. ))
  15516. characterMakers.push(() => makeCharacter(
  15517. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15518. {
  15519. front: {
  15520. height: math.unit(2, "m"),
  15521. weight: math.unit(115, "kg"),
  15522. name: "Front",
  15523. image: {
  15524. source: "./media/characters/pia-sr/front.svg",
  15525. extra: 760 / 730,
  15526. bottom: 0.015
  15527. }
  15528. },
  15529. back: {
  15530. height: math.unit(2, "m"),
  15531. weight: math.unit(115, "kg"),
  15532. name: "Back",
  15533. image: {
  15534. source: "./media/characters/pia-sr/back.svg",
  15535. extra: 760 / 730,
  15536. bottom: 0.01
  15537. }
  15538. },
  15539. hand: {
  15540. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15541. name: "Hand",
  15542. image: {
  15543. source: "./media/characters/pia-sr/hand.svg"
  15544. }
  15545. },
  15546. foot: {
  15547. height: math.unit(1.83, "feet"),
  15548. name: "Foot",
  15549. image: {
  15550. source: "./media/characters/pia-sr/foot.svg"
  15551. }
  15552. },
  15553. },
  15554. [
  15555. {
  15556. name: "Micro",
  15557. height: math.unit(88, "mm")
  15558. },
  15559. {
  15560. name: "Normal",
  15561. height: math.unit(2, "m"),
  15562. default: true
  15563. },
  15564. {
  15565. name: "Macro",
  15566. height: math.unit(200, "m")
  15567. },
  15568. {
  15569. name: "Megamacro",
  15570. height: math.unit(420, "km")
  15571. },
  15572. ]
  15573. ))
  15574. characterMakers.push(() => makeCharacter(
  15575. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15576. {
  15577. front: {
  15578. height: math.unit(8 + 2 / 12, "feet"),
  15579. weight: math.unit(300, "lb"),
  15580. name: "Front",
  15581. image: {
  15582. source: "./media/characters/kibibyte/front.svg",
  15583. extra: 2221 / 2098,
  15584. bottom: 0.04
  15585. }
  15586. },
  15587. },
  15588. [
  15589. {
  15590. name: "Normal",
  15591. height: math.unit(8 + 2 / 12, "feet"),
  15592. default: true
  15593. },
  15594. {
  15595. name: "Socialable Macro",
  15596. height: math.unit(50, "feet")
  15597. },
  15598. {
  15599. name: "Macro",
  15600. height: math.unit(300, "feet")
  15601. },
  15602. {
  15603. name: "Megamacro",
  15604. height: math.unit(500, "miles")
  15605. },
  15606. ]
  15607. ))
  15608. characterMakers.push(() => makeCharacter(
  15609. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15610. {
  15611. front: {
  15612. height: math.unit(6, "feet"),
  15613. weight: math.unit(150, "lb"),
  15614. name: "Front",
  15615. image: {
  15616. source: "./media/characters/felix/front.svg",
  15617. extra: 762 / 722,
  15618. bottom: 0.02
  15619. }
  15620. },
  15621. frontClothed: {
  15622. height: math.unit(6, "feet"),
  15623. weight: math.unit(150, "lb"),
  15624. name: "Front (Clothed)",
  15625. image: {
  15626. source: "./media/characters/felix/front-clothed.svg",
  15627. extra: 762 / 722,
  15628. bottom: 0.02
  15629. }
  15630. },
  15631. },
  15632. [
  15633. {
  15634. name: "Normal",
  15635. height: math.unit(6 + 8 / 12, "feet"),
  15636. default: true
  15637. },
  15638. {
  15639. name: "Macro",
  15640. height: math.unit(2600, "feet")
  15641. },
  15642. {
  15643. name: "Megamacro",
  15644. height: math.unit(450, "miles")
  15645. },
  15646. ]
  15647. ))
  15648. characterMakers.push(() => makeCharacter(
  15649. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15650. {
  15651. front: {
  15652. height: math.unit(6 + 1 / 12, "feet"),
  15653. weight: math.unit(250, "lb"),
  15654. name: "Front",
  15655. image: {
  15656. source: "./media/characters/tobo/front.svg",
  15657. extra: 608 / 586,
  15658. bottom: 0.023
  15659. }
  15660. },
  15661. back: {
  15662. height: math.unit(6 + 1 / 12, "feet"),
  15663. weight: math.unit(250, "lb"),
  15664. name: "Back",
  15665. image: {
  15666. source: "./media/characters/tobo/back.svg",
  15667. extra: 608 / 586
  15668. }
  15669. },
  15670. },
  15671. [
  15672. {
  15673. name: "Nano",
  15674. height: math.unit(2, "nm")
  15675. },
  15676. {
  15677. name: "Megamicro",
  15678. height: math.unit(0.1, "mm")
  15679. },
  15680. {
  15681. name: "Micro",
  15682. height: math.unit(1, "inch"),
  15683. default: true
  15684. },
  15685. {
  15686. name: "Human-sized",
  15687. height: math.unit(6 + 1 / 12, "feet")
  15688. },
  15689. {
  15690. name: "Macro",
  15691. height: math.unit(250, "feet")
  15692. },
  15693. {
  15694. name: "Megamacro",
  15695. height: math.unit(75, "miles")
  15696. },
  15697. {
  15698. name: "Texas-sized",
  15699. height: math.unit(750, "miles")
  15700. },
  15701. {
  15702. name: "Teramacro",
  15703. height: math.unit(50000, "miles")
  15704. },
  15705. ]
  15706. ))
  15707. characterMakers.push(() => makeCharacter(
  15708. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15709. {
  15710. front: {
  15711. height: math.unit(6, "feet"),
  15712. weight: math.unit(269, "lb"),
  15713. name: "Front",
  15714. image: {
  15715. source: "./media/characters/danny-kapowsky/front.svg",
  15716. extra: 766 / 736,
  15717. bottom: 0.044
  15718. }
  15719. },
  15720. back: {
  15721. height: math.unit(6, "feet"),
  15722. weight: math.unit(269, "lb"),
  15723. name: "Back",
  15724. image: {
  15725. source: "./media/characters/danny-kapowsky/back.svg",
  15726. extra: 797 / 760,
  15727. bottom: 0.025
  15728. }
  15729. },
  15730. },
  15731. [
  15732. {
  15733. name: "Macro",
  15734. height: math.unit(150, "feet"),
  15735. default: true
  15736. },
  15737. {
  15738. name: "Macro+",
  15739. height: math.unit(200, "feet")
  15740. },
  15741. {
  15742. name: "Macro++",
  15743. height: math.unit(300, "feet")
  15744. },
  15745. {
  15746. name: "Macro+++",
  15747. height: math.unit(400, "feet")
  15748. },
  15749. ]
  15750. ))
  15751. characterMakers.push(() => makeCharacter(
  15752. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15753. {
  15754. side: {
  15755. height: math.unit(6, "feet"),
  15756. weight: math.unit(170, "lb"),
  15757. name: "Side",
  15758. image: {
  15759. source: "./media/characters/finn/side.svg",
  15760. extra: 1953 / 1807,
  15761. bottom: 0.057
  15762. }
  15763. },
  15764. },
  15765. [
  15766. {
  15767. name: "Megamacro",
  15768. height: math.unit(14445, "feet"),
  15769. default: true
  15770. },
  15771. ]
  15772. ))
  15773. characterMakers.push(() => makeCharacter(
  15774. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15775. {
  15776. front: {
  15777. height: math.unit(5 + 6 / 12, "feet"),
  15778. weight: math.unit(125, "lb"),
  15779. name: "Front",
  15780. image: {
  15781. source: "./media/characters/roy/front.svg",
  15782. extra: 1,
  15783. bottom: 0.11
  15784. }
  15785. },
  15786. },
  15787. [
  15788. {
  15789. name: "Micro",
  15790. height: math.unit(3, "inches"),
  15791. default: true
  15792. },
  15793. {
  15794. name: "Normal",
  15795. height: math.unit(5 + 6 / 12, "feet")
  15796. },
  15797. {
  15798. name: "Lesser Macro",
  15799. height: math.unit(60, "feet")
  15800. },
  15801. {
  15802. name: "Greater Macro",
  15803. height: math.unit(120, "feet")
  15804. },
  15805. ]
  15806. ))
  15807. characterMakers.push(() => makeCharacter(
  15808. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15809. {
  15810. front: {
  15811. height: math.unit(6, "feet"),
  15812. weight: math.unit(100, "lb"),
  15813. name: "Front",
  15814. image: {
  15815. source: "./media/characters/aevsivs/front.svg",
  15816. extra: 1,
  15817. bottom: 0.03
  15818. }
  15819. },
  15820. back: {
  15821. height: math.unit(6, "feet"),
  15822. weight: math.unit(100, "lb"),
  15823. name: "Back",
  15824. image: {
  15825. source: "./media/characters/aevsivs/back.svg"
  15826. }
  15827. },
  15828. },
  15829. [
  15830. {
  15831. name: "Micro",
  15832. height: math.unit(2, "inches"),
  15833. default: true
  15834. },
  15835. {
  15836. name: "Normal",
  15837. height: math.unit(5, "feet")
  15838. },
  15839. ]
  15840. ))
  15841. characterMakers.push(() => makeCharacter(
  15842. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15843. {
  15844. front: {
  15845. height: math.unit(5 + 7 / 12, "feet"),
  15846. weight: math.unit(159, "lb"),
  15847. name: "Front",
  15848. image: {
  15849. source: "./media/characters/hildegard/front.svg",
  15850. extra: 289 / 269,
  15851. bottom: 7.63 / 297.8
  15852. }
  15853. },
  15854. back: {
  15855. height: math.unit(5 + 7 / 12, "feet"),
  15856. weight: math.unit(159, "lb"),
  15857. name: "Back",
  15858. image: {
  15859. source: "./media/characters/hildegard/back.svg",
  15860. extra: 280 / 260,
  15861. bottom: 2.3 / 282
  15862. }
  15863. },
  15864. },
  15865. [
  15866. {
  15867. name: "Normal",
  15868. height: math.unit(5 + 7 / 12, "feet"),
  15869. default: true
  15870. },
  15871. ]
  15872. ))
  15873. characterMakers.push(() => makeCharacter(
  15874. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15875. {
  15876. bernard: {
  15877. height: math.unit(2 + 7 / 12, "feet"),
  15878. weight: math.unit(66, "lb"),
  15879. name: "Bernard",
  15880. rename: true,
  15881. image: {
  15882. source: "./media/characters/bernard-wilder/bernard.svg",
  15883. extra: 192 / 128,
  15884. bottom: 0.05
  15885. }
  15886. },
  15887. wilder: {
  15888. height: math.unit(5 + 8 / 12, "feet"),
  15889. weight: math.unit(143, "lb"),
  15890. name: "Wilder",
  15891. rename: true,
  15892. image: {
  15893. source: "./media/characters/bernard-wilder/wilder.svg",
  15894. extra: 361 / 312,
  15895. bottom: 0.02
  15896. }
  15897. },
  15898. },
  15899. [
  15900. {
  15901. name: "Normal",
  15902. height: math.unit(2 + 7 / 12, "feet"),
  15903. default: true
  15904. },
  15905. ]
  15906. ))
  15907. characterMakers.push(() => makeCharacter(
  15908. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15909. {
  15910. anthro: {
  15911. height: math.unit(6 + 1 / 12, "feet"),
  15912. weight: math.unit(155, "lb"),
  15913. name: "Anthro",
  15914. image: {
  15915. source: "./media/characters/hearth/anthro.svg",
  15916. extra: 1178/1136,
  15917. bottom: 28/1206
  15918. }
  15919. },
  15920. feral: {
  15921. height: math.unit(3.78, "feet"),
  15922. weight: math.unit(35, "kg"),
  15923. name: "Feral",
  15924. image: {
  15925. source: "./media/characters/hearth/feral.svg",
  15926. extra: 153 / 135,
  15927. bottom: 0.03
  15928. }
  15929. },
  15930. },
  15931. [
  15932. {
  15933. name: "Normal",
  15934. height: math.unit(6 + 1 / 12, "feet"),
  15935. default: true
  15936. },
  15937. ]
  15938. ))
  15939. characterMakers.push(() => makeCharacter(
  15940. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15941. {
  15942. front: {
  15943. height: math.unit(6, "feet"),
  15944. weight: math.unit(182, "lb"),
  15945. name: "Front",
  15946. image: {
  15947. source: "./media/characters/ingrid/front.svg",
  15948. extra: 294 / 268,
  15949. bottom: 0.027
  15950. }
  15951. },
  15952. },
  15953. [
  15954. {
  15955. name: "Normal",
  15956. height: math.unit(6, "feet"),
  15957. default: true
  15958. },
  15959. ]
  15960. ))
  15961. characterMakers.push(() => makeCharacter(
  15962. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15963. {
  15964. eevee: {
  15965. height: math.unit(2 + 10 / 12, "feet"),
  15966. weight: math.unit(86, "lb"),
  15967. name: "Malgam",
  15968. image: {
  15969. source: "./media/characters/malgam/eevee.svg",
  15970. extra: 952/784,
  15971. bottom: 38/990
  15972. }
  15973. },
  15974. sylveon: {
  15975. height: math.unit(4, "feet"),
  15976. weight: math.unit(101, "lb"),
  15977. name: "Future Malgam",
  15978. rename: true,
  15979. image: {
  15980. source: "./media/characters/malgam/sylveon.svg",
  15981. extra: 371 / 325,
  15982. bottom: 0.015
  15983. }
  15984. },
  15985. gigantamax: {
  15986. height: math.unit(50, "feet"),
  15987. name: "Gigantamax Malgam",
  15988. rename: true,
  15989. image: {
  15990. source: "./media/characters/malgam/gigantamax.svg"
  15991. }
  15992. },
  15993. },
  15994. [
  15995. {
  15996. name: "Normal",
  15997. height: math.unit(2 + 10 / 12, "feet"),
  15998. default: true
  15999. },
  16000. ]
  16001. ))
  16002. characterMakers.push(() => makeCharacter(
  16003. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16004. {
  16005. front: {
  16006. height: math.unit(5 + 11 / 12, "feet"),
  16007. weight: math.unit(188, "lb"),
  16008. name: "Front",
  16009. image: {
  16010. source: "./media/characters/fleur/front.svg",
  16011. extra: 309 / 283,
  16012. bottom: 0.007
  16013. }
  16014. },
  16015. },
  16016. [
  16017. {
  16018. name: "Normal",
  16019. height: math.unit(5 + 11 / 12, "feet"),
  16020. default: true
  16021. },
  16022. ]
  16023. ))
  16024. characterMakers.push(() => makeCharacter(
  16025. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16026. {
  16027. front: {
  16028. height: math.unit(5 + 4 / 12, "feet"),
  16029. weight: math.unit(122, "lb"),
  16030. name: "Front",
  16031. image: {
  16032. source: "./media/characters/jude/front.svg",
  16033. extra: 288 / 273,
  16034. bottom: 0.03
  16035. }
  16036. },
  16037. },
  16038. [
  16039. {
  16040. name: "Normal",
  16041. height: math.unit(5 + 4 / 12, "feet"),
  16042. default: true
  16043. },
  16044. ]
  16045. ))
  16046. characterMakers.push(() => makeCharacter(
  16047. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16048. {
  16049. front: {
  16050. height: math.unit(5 + 11 / 12, "feet"),
  16051. weight: math.unit(190, "lb"),
  16052. name: "Front",
  16053. image: {
  16054. source: "./media/characters/seara/front.svg",
  16055. extra: 1,
  16056. bottom: 0.05
  16057. }
  16058. },
  16059. },
  16060. [
  16061. {
  16062. name: "Normal",
  16063. height: math.unit(5 + 11 / 12, "feet"),
  16064. default: true
  16065. },
  16066. ]
  16067. ))
  16068. characterMakers.push(() => makeCharacter(
  16069. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16070. {
  16071. front: {
  16072. height: math.unit(16 + 5 / 12, "feet"),
  16073. weight: math.unit(524, "lb"),
  16074. name: "Front",
  16075. image: {
  16076. source: "./media/characters/caspian-lugia/front.svg",
  16077. extra: 1,
  16078. bottom: 0.04
  16079. }
  16080. },
  16081. },
  16082. [
  16083. {
  16084. name: "Normal",
  16085. height: math.unit(16 + 5 / 12, "feet"),
  16086. default: true
  16087. },
  16088. ]
  16089. ))
  16090. characterMakers.push(() => makeCharacter(
  16091. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16092. {
  16093. front: {
  16094. height: math.unit(5 + 7 / 12, "feet"),
  16095. weight: math.unit(170, "lb"),
  16096. name: "Front",
  16097. image: {
  16098. source: "./media/characters/mika/front.svg",
  16099. extra: 1,
  16100. bottom: 0.016
  16101. }
  16102. },
  16103. },
  16104. [
  16105. {
  16106. name: "Normal",
  16107. height: math.unit(5 + 7 / 12, "feet"),
  16108. default: true
  16109. },
  16110. ]
  16111. ))
  16112. characterMakers.push(() => makeCharacter(
  16113. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16114. {
  16115. front: {
  16116. height: math.unit(6 + 2 / 12, "feet"),
  16117. weight: math.unit(268, "lb"),
  16118. name: "Front",
  16119. image: {
  16120. source: "./media/characters/sol/front.svg",
  16121. extra: 247 / 231,
  16122. bottom: 0.05
  16123. }
  16124. },
  16125. },
  16126. [
  16127. {
  16128. name: "Normal",
  16129. height: math.unit(6 + 2 / 12, "feet"),
  16130. default: true
  16131. },
  16132. ]
  16133. ))
  16134. characterMakers.push(() => makeCharacter(
  16135. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16136. {
  16137. buizel: {
  16138. height: math.unit(2 + 5 / 12, "feet"),
  16139. weight: math.unit(87, "lb"),
  16140. name: "Front",
  16141. image: {
  16142. source: "./media/characters/umiko/buizel.svg",
  16143. extra: 172 / 157,
  16144. bottom: 0.01
  16145. },
  16146. form: "buizel",
  16147. default: true
  16148. },
  16149. floatzel: {
  16150. height: math.unit(5 + 9 / 12, "feet"),
  16151. weight: math.unit(250, "lb"),
  16152. name: "Front",
  16153. image: {
  16154. source: "./media/characters/umiko/floatzel.svg",
  16155. extra: 1076/1006,
  16156. bottom: 15/1091
  16157. },
  16158. form: "floatzel",
  16159. default: true
  16160. },
  16161. },
  16162. [
  16163. {
  16164. name: "Normal",
  16165. height: math.unit(2 + 5 / 12, "feet"),
  16166. form: "buizel",
  16167. default: true
  16168. },
  16169. {
  16170. name: "Normal",
  16171. height: math.unit(5 + 9 / 12, "feet"),
  16172. form: "floatzel",
  16173. default: true
  16174. },
  16175. ],
  16176. {
  16177. "buizel": {
  16178. name: "Buizel"
  16179. },
  16180. "floatzel": {
  16181. name: "Floatzel",
  16182. default: true
  16183. }
  16184. }
  16185. ))
  16186. characterMakers.push(() => makeCharacter(
  16187. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16188. {
  16189. front: {
  16190. height: math.unit(6 + 2 / 12, "feet"),
  16191. weight: math.unit(146, "lb"),
  16192. name: "Front",
  16193. image: {
  16194. source: "./media/characters/iliac/front.svg",
  16195. extra: 389 / 365,
  16196. bottom: 0.035
  16197. }
  16198. },
  16199. },
  16200. [
  16201. {
  16202. name: "Normal",
  16203. height: math.unit(6 + 2 / 12, "feet"),
  16204. default: true
  16205. },
  16206. ]
  16207. ))
  16208. characterMakers.push(() => makeCharacter(
  16209. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16210. {
  16211. front: {
  16212. height: math.unit(6, "feet"),
  16213. weight: math.unit(170, "lb"),
  16214. name: "Front",
  16215. image: {
  16216. source: "./media/characters/topaz/front.svg",
  16217. extra: 317 / 303,
  16218. bottom: 0.055
  16219. }
  16220. },
  16221. },
  16222. [
  16223. {
  16224. name: "Normal",
  16225. height: math.unit(6, "feet"),
  16226. default: true
  16227. },
  16228. ]
  16229. ))
  16230. characterMakers.push(() => makeCharacter(
  16231. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16232. {
  16233. front: {
  16234. height: math.unit(5 + 11 / 12, "feet"),
  16235. weight: math.unit(144, "lb"),
  16236. name: "Front",
  16237. image: {
  16238. source: "./media/characters/gabriel/front.svg",
  16239. extra: 285 / 262,
  16240. bottom: 0.004
  16241. }
  16242. },
  16243. },
  16244. [
  16245. {
  16246. name: "Normal",
  16247. height: math.unit(5 + 11 / 12, "feet"),
  16248. default: true
  16249. },
  16250. ]
  16251. ))
  16252. characterMakers.push(() => makeCharacter(
  16253. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16254. {
  16255. side: {
  16256. height: math.unit(6 + 5 / 12, "feet"),
  16257. weight: math.unit(300, "lb"),
  16258. name: "Side",
  16259. image: {
  16260. source: "./media/characters/tempest-suicune/side.svg",
  16261. extra: 195 / 154,
  16262. bottom: 0.04
  16263. }
  16264. },
  16265. },
  16266. [
  16267. {
  16268. name: "Normal",
  16269. height: math.unit(6 + 5 / 12, "feet"),
  16270. default: true
  16271. },
  16272. ]
  16273. ))
  16274. characterMakers.push(() => makeCharacter(
  16275. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16276. {
  16277. front: {
  16278. height: math.unit(7 + 2 / 12, "feet"),
  16279. weight: math.unit(322, "lb"),
  16280. name: "Front",
  16281. image: {
  16282. source: "./media/characters/vulcan/front.svg",
  16283. extra: 154 / 147,
  16284. bottom: 0.04
  16285. }
  16286. },
  16287. },
  16288. [
  16289. {
  16290. name: "Normal",
  16291. height: math.unit(7 + 2 / 12, "feet"),
  16292. default: true
  16293. },
  16294. ]
  16295. ))
  16296. characterMakers.push(() => makeCharacter(
  16297. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16298. {
  16299. front: {
  16300. height: math.unit(5 + 10 / 12, "feet"),
  16301. weight: math.unit(264, "lb"),
  16302. name: "Front",
  16303. image: {
  16304. source: "./media/characters/gault/front.svg",
  16305. extra: 161 / 140,
  16306. bottom: 0.028
  16307. }
  16308. },
  16309. },
  16310. [
  16311. {
  16312. name: "Normal",
  16313. height: math.unit(5 + 10 / 12, "feet"),
  16314. default: true
  16315. },
  16316. ]
  16317. ))
  16318. characterMakers.push(() => makeCharacter(
  16319. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16320. {
  16321. front: {
  16322. height: math.unit(6, "feet"),
  16323. weight: math.unit(150, "lb"),
  16324. name: "Front",
  16325. image: {
  16326. source: "./media/characters/shard/front.svg",
  16327. extra: 273 / 238,
  16328. bottom: 0.02
  16329. }
  16330. },
  16331. },
  16332. [
  16333. {
  16334. name: "Normal",
  16335. height: math.unit(3 + 6 / 12, "feet"),
  16336. default: true
  16337. },
  16338. ]
  16339. ))
  16340. characterMakers.push(() => makeCharacter(
  16341. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16342. {
  16343. front: {
  16344. height: math.unit(5 + 11 / 12, "feet"),
  16345. weight: math.unit(146, "lb"),
  16346. name: "Front",
  16347. image: {
  16348. source: "./media/characters/ashe/front.svg",
  16349. extra: 400 / 373,
  16350. bottom: 0.01
  16351. }
  16352. },
  16353. },
  16354. [
  16355. {
  16356. name: "Normal",
  16357. height: math.unit(5 + 11 / 12, "feet"),
  16358. default: true
  16359. },
  16360. ]
  16361. ))
  16362. characterMakers.push(() => makeCharacter(
  16363. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16364. {
  16365. front: {
  16366. height: math.unit(5 + 5 / 12, "feet"),
  16367. weight: math.unit(135, "lb"),
  16368. name: "Front",
  16369. image: {
  16370. source: "./media/characters/beatrix/front.svg",
  16371. extra: 392 / 379,
  16372. bottom: 0.01
  16373. }
  16374. },
  16375. },
  16376. [
  16377. {
  16378. name: "Normal",
  16379. height: math.unit(6, "feet"),
  16380. default: true
  16381. },
  16382. ]
  16383. ))
  16384. characterMakers.push(() => makeCharacter(
  16385. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16386. {
  16387. front: {
  16388. height: math.unit(6 + 2/12, "feet"),
  16389. weight: math.unit(135, "lb"),
  16390. name: "Front",
  16391. image: {
  16392. source: "./media/characters/ignatius/front.svg",
  16393. extra: 1380/1259,
  16394. bottom: 27/1407
  16395. }
  16396. },
  16397. },
  16398. [
  16399. {
  16400. name: "Normal",
  16401. height: math.unit(6 + 2/12, "feet"),
  16402. default: true
  16403. },
  16404. ]
  16405. ))
  16406. characterMakers.push(() => makeCharacter(
  16407. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16408. {
  16409. front: {
  16410. height: math.unit(6 + 2 / 12, "feet"),
  16411. weight: math.unit(138, "lb"),
  16412. name: "Front",
  16413. image: {
  16414. source: "./media/characters/mei-li/front.svg",
  16415. extra: 237 / 229,
  16416. bottom: 0.03
  16417. }
  16418. },
  16419. },
  16420. [
  16421. {
  16422. name: "Normal",
  16423. height: math.unit(6 + 2 / 12, "feet"),
  16424. default: true
  16425. },
  16426. ]
  16427. ))
  16428. characterMakers.push(() => makeCharacter(
  16429. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16430. {
  16431. front: {
  16432. height: math.unit(2 + 4 / 12, "feet"),
  16433. weight: math.unit(62, "lb"),
  16434. name: "Front",
  16435. image: {
  16436. source: "./media/characters/puru/front.svg",
  16437. extra: 206 / 149,
  16438. bottom: 0.06
  16439. }
  16440. },
  16441. },
  16442. [
  16443. {
  16444. name: "Normal",
  16445. height: math.unit(2 + 4 / 12, "feet"),
  16446. default: true
  16447. },
  16448. ]
  16449. ))
  16450. characterMakers.push(() => makeCharacter(
  16451. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16452. {
  16453. anthro: {
  16454. height: math.unit(5 + 8/12, "feet"),
  16455. weight: math.unit(200, "lb"),
  16456. energyNeed: math.unit(2000, "kcal"),
  16457. name: "Anthro",
  16458. image: {
  16459. source: "./media/characters/kee/anthro.svg",
  16460. extra: 3251/3184,
  16461. bottom: 250/3501
  16462. }
  16463. },
  16464. taur: {
  16465. height: math.unit(11, "feet"),
  16466. weight: math.unit(500, "lb"),
  16467. energyNeed: math.unit(5000, "kcal"),
  16468. name: "Taur",
  16469. image: {
  16470. source: "./media/characters/kee/taur.svg",
  16471. extra: 1362/1320,
  16472. bottom: 83/1445
  16473. }
  16474. },
  16475. },
  16476. [
  16477. {
  16478. name: "Normal",
  16479. height: math.unit(5 + 8/12, "feet"),
  16480. default: true
  16481. },
  16482. {
  16483. name: "Macro",
  16484. height: math.unit(35, "feet")
  16485. },
  16486. ]
  16487. ))
  16488. characterMakers.push(() => makeCharacter(
  16489. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16490. {
  16491. anthro: {
  16492. height: math.unit(7, "feet"),
  16493. weight: math.unit(190, "lb"),
  16494. name: "Anthro",
  16495. image: {
  16496. source: "./media/characters/cobalt-dracha/anthro.svg",
  16497. extra: 231 / 225,
  16498. bottom: 0.04
  16499. }
  16500. },
  16501. feral: {
  16502. height: math.unit(9 + 7 / 12, "feet"),
  16503. weight: math.unit(294, "lb"),
  16504. name: "Feral",
  16505. image: {
  16506. source: "./media/characters/cobalt-dracha/feral.svg",
  16507. extra: 692 / 633,
  16508. bottom: 0.05
  16509. }
  16510. },
  16511. },
  16512. [
  16513. {
  16514. name: "Normal",
  16515. height: math.unit(7, "feet"),
  16516. default: true
  16517. },
  16518. ]
  16519. ))
  16520. characterMakers.push(() => makeCharacter(
  16521. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16522. {
  16523. fallen: {
  16524. height: math.unit(11 + 8 / 12, "feet"),
  16525. weight: math.unit(485, "lb"),
  16526. name: "Java (Fallen)",
  16527. rename: true,
  16528. image: {
  16529. source: "./media/characters/java/fallen.svg",
  16530. extra: 226 / 208,
  16531. bottom: 0.005
  16532. }
  16533. },
  16534. godkin: {
  16535. height: math.unit(10 + 6 / 12, "feet"),
  16536. weight: math.unit(328, "lb"),
  16537. name: "Java (Godkin)",
  16538. rename: true,
  16539. image: {
  16540. source: "./media/characters/java/godkin.svg",
  16541. extra: 1104/1068,
  16542. bottom: 36/1140
  16543. }
  16544. },
  16545. },
  16546. [
  16547. {
  16548. name: "Normal",
  16549. height: math.unit(11 + 8 / 12, "feet"),
  16550. default: true
  16551. },
  16552. ]
  16553. ))
  16554. characterMakers.push(() => makeCharacter(
  16555. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16556. {
  16557. front: {
  16558. height: math.unit(5 + 9 / 12, "feet"),
  16559. weight: math.unit(170, "lb"),
  16560. name: "Front",
  16561. image: {
  16562. source: "./media/characters/purna/front.svg",
  16563. extra: 239 / 229,
  16564. bottom: 0.01
  16565. }
  16566. },
  16567. },
  16568. [
  16569. {
  16570. name: "Normal",
  16571. height: math.unit(5 + 9 / 12, "feet"),
  16572. default: true
  16573. },
  16574. ]
  16575. ))
  16576. characterMakers.push(() => makeCharacter(
  16577. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16578. {
  16579. front: {
  16580. height: math.unit(5 + 9 / 12, "feet"),
  16581. weight: math.unit(142, "lb"),
  16582. name: "Front",
  16583. image: {
  16584. source: "./media/characters/kuva/front.svg",
  16585. extra: 281 / 271,
  16586. bottom: 0.006
  16587. }
  16588. },
  16589. },
  16590. [
  16591. {
  16592. name: "Normal",
  16593. height: math.unit(5 + 9 / 12, "feet"),
  16594. default: true
  16595. },
  16596. ]
  16597. ))
  16598. characterMakers.push(() => makeCharacter(
  16599. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16600. {
  16601. anthro: {
  16602. height: math.unit(9 + 2 / 12, "feet"),
  16603. weight: math.unit(270, "lb"),
  16604. name: "Anthro",
  16605. image: {
  16606. source: "./media/characters/embra/anthro.svg",
  16607. extra: 200 / 187,
  16608. bottom: 0.02
  16609. }
  16610. },
  16611. feral: {
  16612. height: math.unit(18 + 8 / 12, "feet"),
  16613. weight: math.unit(576, "lb"),
  16614. name: "Feral",
  16615. image: {
  16616. source: "./media/characters/embra/feral.svg",
  16617. extra: 152 / 137,
  16618. bottom: 0.037
  16619. }
  16620. },
  16621. },
  16622. [
  16623. {
  16624. name: "Normal",
  16625. height: math.unit(9 + 2 / 12, "feet"),
  16626. default: true
  16627. },
  16628. ]
  16629. ))
  16630. characterMakers.push(() => makeCharacter(
  16631. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16632. {
  16633. anthro: {
  16634. height: math.unit(10 + 9 / 12, "feet"),
  16635. weight: math.unit(224, "lb"),
  16636. name: "Anthro",
  16637. image: {
  16638. source: "./media/characters/grottos/anthro.svg",
  16639. extra: 350 / 332,
  16640. bottom: 0.045
  16641. }
  16642. },
  16643. feral: {
  16644. height: math.unit(20 + 7 / 12, "feet"),
  16645. weight: math.unit(629, "lb"),
  16646. name: "Feral",
  16647. image: {
  16648. source: "./media/characters/grottos/feral.svg",
  16649. extra: 207 / 190,
  16650. bottom: 0.05
  16651. }
  16652. },
  16653. },
  16654. [
  16655. {
  16656. name: "Normal",
  16657. height: math.unit(10 + 9 / 12, "feet"),
  16658. default: true
  16659. },
  16660. ]
  16661. ))
  16662. characterMakers.push(() => makeCharacter(
  16663. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16664. {
  16665. anthro: {
  16666. height: math.unit(9 + 6 / 12, "feet"),
  16667. weight: math.unit(298, "lb"),
  16668. name: "Anthro",
  16669. image: {
  16670. source: "./media/characters/frifna/anthro.svg",
  16671. extra: 282 / 269,
  16672. bottom: 0.015
  16673. }
  16674. },
  16675. feral: {
  16676. height: math.unit(16 + 2 / 12, "feet"),
  16677. weight: math.unit(624, "lb"),
  16678. name: "Feral",
  16679. image: {
  16680. source: "./media/characters/frifna/feral.svg"
  16681. }
  16682. },
  16683. },
  16684. [
  16685. {
  16686. name: "Normal",
  16687. height: math.unit(9 + 6 / 12, "feet"),
  16688. default: true
  16689. },
  16690. ]
  16691. ))
  16692. characterMakers.push(() => makeCharacter(
  16693. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16694. {
  16695. front: {
  16696. height: math.unit(6 + 2 / 12, "feet"),
  16697. weight: math.unit(168, "lb"),
  16698. name: "Front",
  16699. image: {
  16700. source: "./media/characters/elise/front.svg",
  16701. extra: 276 / 271
  16702. }
  16703. },
  16704. },
  16705. [
  16706. {
  16707. name: "Normal",
  16708. height: math.unit(6 + 2 / 12, "feet"),
  16709. default: true
  16710. },
  16711. ]
  16712. ))
  16713. characterMakers.push(() => makeCharacter(
  16714. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16715. {
  16716. front: {
  16717. height: math.unit(5 + 10 / 12, "feet"),
  16718. weight: math.unit(210, "lb"),
  16719. name: "Front",
  16720. image: {
  16721. source: "./media/characters/glade/front.svg",
  16722. extra: 258 / 247,
  16723. bottom: 0.008
  16724. }
  16725. },
  16726. },
  16727. [
  16728. {
  16729. name: "Normal",
  16730. height: math.unit(5 + 10 / 12, "feet"),
  16731. default: true
  16732. },
  16733. ]
  16734. ))
  16735. characterMakers.push(() => makeCharacter(
  16736. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16737. {
  16738. front: {
  16739. height: math.unit(5 + 10 / 12, "feet"),
  16740. weight: math.unit(129, "lb"),
  16741. name: "Front",
  16742. image: {
  16743. source: "./media/characters/rina/front.svg",
  16744. extra: 266 / 255,
  16745. bottom: 0.005
  16746. }
  16747. },
  16748. },
  16749. [
  16750. {
  16751. name: "Normal",
  16752. height: math.unit(5 + 10 / 12, "feet"),
  16753. default: true
  16754. },
  16755. ]
  16756. ))
  16757. characterMakers.push(() => makeCharacter(
  16758. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16759. {
  16760. front: {
  16761. height: math.unit(6 + 1 / 12, "feet"),
  16762. weight: math.unit(192, "lb"),
  16763. name: "Front",
  16764. image: {
  16765. source: "./media/characters/veronica/front.svg",
  16766. extra: 319 / 309,
  16767. bottom: 0.005
  16768. }
  16769. },
  16770. },
  16771. [
  16772. {
  16773. name: "Normal",
  16774. height: math.unit(6 + 1 / 12, "feet"),
  16775. default: true
  16776. },
  16777. ]
  16778. ))
  16779. characterMakers.push(() => makeCharacter(
  16780. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16781. {
  16782. front: {
  16783. height: math.unit(9 + 3 / 12, "feet"),
  16784. weight: math.unit(1100, "lb"),
  16785. name: "Front",
  16786. image: {
  16787. source: "./media/characters/braxton/front.svg",
  16788. extra: 1057 / 984,
  16789. bottom: 0.05
  16790. }
  16791. },
  16792. },
  16793. [
  16794. {
  16795. name: "Normal",
  16796. height: math.unit(9 + 3 / 12, "feet")
  16797. },
  16798. {
  16799. name: "Giant",
  16800. height: math.unit(300, "feet"),
  16801. default: true
  16802. },
  16803. {
  16804. name: "Macro",
  16805. height: math.unit(700, "feet")
  16806. },
  16807. {
  16808. name: "Megamacro",
  16809. height: math.unit(6000, "feet")
  16810. },
  16811. ]
  16812. ))
  16813. characterMakers.push(() => makeCharacter(
  16814. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16815. {
  16816. front: {
  16817. height: math.unit(6 + 7 / 12, "feet"),
  16818. weight: math.unit(150, "lb"),
  16819. name: "Front",
  16820. image: {
  16821. source: "./media/characters/blue-feyonics/front.svg",
  16822. extra: 1403 / 1306,
  16823. bottom: 0.047
  16824. }
  16825. },
  16826. },
  16827. [
  16828. {
  16829. name: "Normal",
  16830. height: math.unit(6 + 7 / 12, "feet"),
  16831. default: true
  16832. },
  16833. ]
  16834. ))
  16835. characterMakers.push(() => makeCharacter(
  16836. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16837. {
  16838. front: {
  16839. height: math.unit(1.8, "meters"),
  16840. weight: math.unit(60, "kg"),
  16841. name: "Front",
  16842. image: {
  16843. source: "./media/characters/maxwell/front.svg",
  16844. extra: 2060 / 1873
  16845. }
  16846. },
  16847. },
  16848. [
  16849. {
  16850. name: "Micro",
  16851. height: math.unit(1, "mm")
  16852. },
  16853. {
  16854. name: "Normal",
  16855. height: math.unit(1.8, "meter"),
  16856. default: true
  16857. },
  16858. {
  16859. name: "Macro",
  16860. height: math.unit(30, "meters")
  16861. },
  16862. {
  16863. name: "Megamacro",
  16864. height: math.unit(10, "km")
  16865. },
  16866. ]
  16867. ))
  16868. characterMakers.push(() => makeCharacter(
  16869. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16870. {
  16871. front: {
  16872. height: math.unit(6, "feet"),
  16873. weight: math.unit(150, "lb"),
  16874. name: "Front",
  16875. image: {
  16876. source: "./media/characters/jack/front.svg",
  16877. extra: 1754 / 1640,
  16878. bottom: 0.01
  16879. }
  16880. },
  16881. },
  16882. [
  16883. {
  16884. name: "Normal",
  16885. height: math.unit(80000, "feet"),
  16886. default: true
  16887. },
  16888. {
  16889. name: "Max size",
  16890. height: math.unit(10, "lightyears")
  16891. },
  16892. ]
  16893. ))
  16894. characterMakers.push(() => makeCharacter(
  16895. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16896. {
  16897. urban: {
  16898. height: math.unit(5, "feet"),
  16899. weight: math.unit(240, "lb"),
  16900. name: "Urban",
  16901. image: {
  16902. source: "./media/characters/cafat/urban.svg",
  16903. extra: 1223/1126,
  16904. bottom: 205/1428
  16905. }
  16906. },
  16907. summer: {
  16908. height: math.unit(5, "feet"),
  16909. weight: math.unit(240, "lb"),
  16910. name: "Summer",
  16911. image: {
  16912. source: "./media/characters/cafat/summer.svg",
  16913. extra: 1223/1126,
  16914. bottom: 205/1428
  16915. }
  16916. },
  16917. winter: {
  16918. height: math.unit(5, "feet"),
  16919. weight: math.unit(240, "lb"),
  16920. name: "Winter",
  16921. image: {
  16922. source: "./media/characters/cafat/winter.svg",
  16923. extra: 1223/1126,
  16924. bottom: 205/1428
  16925. }
  16926. },
  16927. lingerie: {
  16928. height: math.unit(5, "feet"),
  16929. weight: math.unit(240, "lb"),
  16930. name: "Lingerie",
  16931. image: {
  16932. source: "./media/characters/cafat/lingerie.svg",
  16933. extra: 1223/1126,
  16934. bottom: 205/1428
  16935. }
  16936. },
  16937. upright: {
  16938. height: math.unit(6.3, "feet"),
  16939. weight: math.unit(240, "lb"),
  16940. name: "Upright",
  16941. image: {
  16942. source: "./media/characters/cafat/upright.svg",
  16943. bottom: 0.01
  16944. }
  16945. },
  16946. uprightFull: {
  16947. height: math.unit(6.3, "feet"),
  16948. weight: math.unit(240, "lb"),
  16949. name: "Upright (Full)",
  16950. image: {
  16951. source: "./media/characters/cafat/upright-full.svg",
  16952. bottom: 0.01
  16953. }
  16954. },
  16955. },
  16956. [
  16957. {
  16958. name: "Small",
  16959. height: math.unit(5, "feet"),
  16960. default: true
  16961. },
  16962. {
  16963. name: "Large",
  16964. height: math.unit(13, "feet")
  16965. },
  16966. ]
  16967. ))
  16968. characterMakers.push(() => makeCharacter(
  16969. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16970. {
  16971. front: {
  16972. height: math.unit(6, "feet"),
  16973. weight: math.unit(150, "lb"),
  16974. name: "Front",
  16975. image: {
  16976. source: "./media/characters/verin-raharra/front.svg",
  16977. extra: 5019 / 4835,
  16978. bottom: 0.023
  16979. }
  16980. },
  16981. },
  16982. [
  16983. {
  16984. name: "Normal",
  16985. height: math.unit(7 + 5 / 12, "feet"),
  16986. default: true
  16987. },
  16988. {
  16989. name: "Upsized",
  16990. height: math.unit(20, "feet")
  16991. },
  16992. ]
  16993. ))
  16994. characterMakers.push(() => makeCharacter(
  16995. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16996. {
  16997. front: {
  16998. height: math.unit(7, "feet"),
  16999. weight: math.unit(230, "lb"),
  17000. name: "Front",
  17001. image: {
  17002. source: "./media/characters/nakata/front.svg",
  17003. extra: 1.005,
  17004. bottom: 0.01
  17005. }
  17006. },
  17007. },
  17008. [
  17009. {
  17010. name: "Normal",
  17011. height: math.unit(7, "feet"),
  17012. default: true
  17013. },
  17014. {
  17015. name: "Big",
  17016. height: math.unit(14, "feet")
  17017. },
  17018. {
  17019. name: "Macro",
  17020. height: math.unit(400, "feet")
  17021. },
  17022. ]
  17023. ))
  17024. characterMakers.push(() => makeCharacter(
  17025. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17026. {
  17027. front: {
  17028. height: math.unit(4.91, "feet"),
  17029. weight: math.unit(100, "lb"),
  17030. name: "Front",
  17031. image: {
  17032. source: "./media/characters/lily/front.svg",
  17033. extra: 1585 / 1415,
  17034. bottom: 0.02
  17035. }
  17036. },
  17037. },
  17038. [
  17039. {
  17040. name: "Normal",
  17041. height: math.unit(4.91, "feet"),
  17042. default: true
  17043. },
  17044. ]
  17045. ))
  17046. characterMakers.push(() => makeCharacter(
  17047. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17048. {
  17049. laying: {
  17050. height: math.unit(4 + 4 / 12, "feet"),
  17051. weight: math.unit(600, "lb"),
  17052. name: "Laying",
  17053. image: {
  17054. source: "./media/characters/sheila/laying.svg",
  17055. extra: 1333 / 1265,
  17056. bottom: 0.16
  17057. }
  17058. },
  17059. },
  17060. [
  17061. {
  17062. name: "Normal",
  17063. height: math.unit(4 + 4 / 12, "feet"),
  17064. default: true
  17065. },
  17066. ]
  17067. ))
  17068. characterMakers.push(() => makeCharacter(
  17069. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17070. {
  17071. front: {
  17072. height: math.unit(6, "feet"),
  17073. weight: math.unit(190, "lb"),
  17074. name: "Front",
  17075. image: {
  17076. source: "./media/characters/sax/front.svg",
  17077. extra: 1187 / 973,
  17078. bottom: 0.042
  17079. }
  17080. },
  17081. },
  17082. [
  17083. {
  17084. name: "Micro",
  17085. height: math.unit(4, "inches"),
  17086. default: true
  17087. },
  17088. ]
  17089. ))
  17090. characterMakers.push(() => makeCharacter(
  17091. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17092. {
  17093. front: {
  17094. height: math.unit(6, "feet"),
  17095. weight: math.unit(150, "lb"),
  17096. name: "Front",
  17097. image: {
  17098. source: "./media/characters/pandora/front.svg",
  17099. extra: 2720 / 2556,
  17100. bottom: 0.015
  17101. }
  17102. },
  17103. back: {
  17104. height: math.unit(6, "feet"),
  17105. weight: math.unit(150, "lb"),
  17106. name: "Back",
  17107. image: {
  17108. source: "./media/characters/pandora/back.svg",
  17109. extra: 2720 / 2556,
  17110. bottom: 0.01
  17111. }
  17112. },
  17113. beans: {
  17114. height: math.unit(6 / 8, "feet"),
  17115. name: "Beans",
  17116. image: {
  17117. source: "./media/characters/pandora/beans.svg"
  17118. }
  17119. },
  17120. collar: {
  17121. height: math.unit(0.31, "feet"),
  17122. name: "Collar",
  17123. image: {
  17124. source: "./media/characters/pandora/collar.svg"
  17125. }
  17126. },
  17127. skirt: {
  17128. height: math.unit(6, "feet"),
  17129. weight: math.unit(150, "lb"),
  17130. name: "Skirt",
  17131. image: {
  17132. source: "./media/characters/pandora/skirt.svg",
  17133. extra: 1622 / 1525,
  17134. bottom: 0.015
  17135. }
  17136. },
  17137. hoodie: {
  17138. height: math.unit(6, "feet"),
  17139. weight: math.unit(150, "lb"),
  17140. name: "Hoodie",
  17141. image: {
  17142. source: "./media/characters/pandora/hoodie.svg",
  17143. extra: 1622 / 1525,
  17144. bottom: 0.015
  17145. }
  17146. },
  17147. casual: {
  17148. height: math.unit(6, "feet"),
  17149. weight: math.unit(150, "lb"),
  17150. name: "Casual",
  17151. image: {
  17152. source: "./media/characters/pandora/casual.svg",
  17153. extra: 1622 / 1525,
  17154. bottom: 0.015
  17155. }
  17156. },
  17157. },
  17158. [
  17159. {
  17160. name: "Normal",
  17161. height: math.unit(6, "feet")
  17162. },
  17163. {
  17164. name: "Big Steppy",
  17165. height: math.unit(1, "km"),
  17166. default: true
  17167. },
  17168. {
  17169. name: "Galactic Steppy",
  17170. height: math.unit(2, "gigameters")
  17171. },
  17172. ]
  17173. ))
  17174. characterMakers.push(() => makeCharacter(
  17175. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17176. {
  17177. side: {
  17178. height: math.unit(10, "feet"),
  17179. weight: math.unit(800, "kg"),
  17180. name: "Side",
  17181. image: {
  17182. source: "./media/characters/venio-darcony/side.svg",
  17183. extra: 1373 / 1003,
  17184. bottom: 0.037
  17185. }
  17186. },
  17187. front: {
  17188. height: math.unit(19, "feet"),
  17189. weight: math.unit(800, "kg"),
  17190. name: "Front",
  17191. image: {
  17192. source: "./media/characters/venio-darcony/front.svg"
  17193. }
  17194. },
  17195. back: {
  17196. height: math.unit(19, "feet"),
  17197. weight: math.unit(800, "kg"),
  17198. name: "Back",
  17199. image: {
  17200. source: "./media/characters/venio-darcony/back.svg"
  17201. }
  17202. },
  17203. sideNsfw: {
  17204. height: math.unit(10, "feet"),
  17205. weight: math.unit(800, "kg"),
  17206. name: "Side (NSFW)",
  17207. image: {
  17208. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17209. extra: 1373 / 1003,
  17210. bottom: 0.037
  17211. }
  17212. },
  17213. frontNsfw: {
  17214. height: math.unit(19, "feet"),
  17215. weight: math.unit(800, "kg"),
  17216. name: "Front (NSFW)",
  17217. image: {
  17218. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17219. }
  17220. },
  17221. backNsfw: {
  17222. height: math.unit(19, "feet"),
  17223. weight: math.unit(800, "kg"),
  17224. name: "Back (NSFW)",
  17225. image: {
  17226. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17227. }
  17228. },
  17229. sideArmored: {
  17230. height: math.unit(10, "feet"),
  17231. weight: math.unit(800, "kg"),
  17232. name: "Side (Armored)",
  17233. image: {
  17234. source: "./media/characters/venio-darcony/side-armored.svg",
  17235. extra: 1373 / 1003,
  17236. bottom: 0.037
  17237. }
  17238. },
  17239. frontArmored: {
  17240. height: math.unit(19, "feet"),
  17241. weight: math.unit(900, "kg"),
  17242. name: "Front (Armored)",
  17243. image: {
  17244. source: "./media/characters/venio-darcony/front-armored.svg"
  17245. }
  17246. },
  17247. backArmored: {
  17248. height: math.unit(19, "feet"),
  17249. weight: math.unit(900, "kg"),
  17250. name: "Back (Armored)",
  17251. image: {
  17252. source: "./media/characters/venio-darcony/back-armored.svg"
  17253. }
  17254. },
  17255. sword: {
  17256. height: math.unit(10, "feet"),
  17257. weight: math.unit(50, "lb"),
  17258. name: "Sword",
  17259. image: {
  17260. source: "./media/characters/venio-darcony/sword.svg"
  17261. }
  17262. },
  17263. },
  17264. [
  17265. {
  17266. name: "Normal",
  17267. height: math.unit(10, "feet")
  17268. },
  17269. {
  17270. name: "Macro",
  17271. height: math.unit(130, "feet"),
  17272. default: true
  17273. },
  17274. {
  17275. name: "Macro+",
  17276. height: math.unit(240, "feet")
  17277. },
  17278. ]
  17279. ))
  17280. characterMakers.push(() => makeCharacter(
  17281. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17282. {
  17283. front: {
  17284. height: math.unit(6, "feet"),
  17285. weight: math.unit(150, "lb"),
  17286. name: "Front",
  17287. image: {
  17288. source: "./media/characters/veski/front.svg",
  17289. extra: 1299 / 1225,
  17290. bottom: 0.04
  17291. }
  17292. },
  17293. back: {
  17294. height: math.unit(6, "feet"),
  17295. weight: math.unit(150, "lb"),
  17296. name: "Back",
  17297. image: {
  17298. source: "./media/characters/veski/back.svg",
  17299. extra: 1299 / 1225,
  17300. bottom: 0.008
  17301. }
  17302. },
  17303. maw: {
  17304. height: math.unit(1.5 * 1.21, "feet"),
  17305. name: "Maw",
  17306. image: {
  17307. source: "./media/characters/veski/maw.svg"
  17308. }
  17309. },
  17310. },
  17311. [
  17312. {
  17313. name: "Macro",
  17314. height: math.unit(2, "km"),
  17315. default: true
  17316. },
  17317. ]
  17318. ))
  17319. characterMakers.push(() => makeCharacter(
  17320. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17321. {
  17322. front: {
  17323. height: math.unit(5 + 7 / 12, "feet"),
  17324. name: "Front",
  17325. image: {
  17326. source: "./media/characters/isabelle/front.svg",
  17327. extra: 2130 / 1976,
  17328. bottom: 0.05
  17329. }
  17330. },
  17331. },
  17332. [
  17333. {
  17334. name: "Supermicro",
  17335. height: math.unit(10, "micrometers")
  17336. },
  17337. {
  17338. name: "Micro",
  17339. height: math.unit(1, "inch")
  17340. },
  17341. {
  17342. name: "Tiny",
  17343. height: math.unit(5, "inches")
  17344. },
  17345. {
  17346. name: "Standard",
  17347. height: math.unit(5 + 7 / 12, "inches")
  17348. },
  17349. {
  17350. name: "Macro",
  17351. height: math.unit(80, "meters"),
  17352. default: true
  17353. },
  17354. {
  17355. name: "Megamacro",
  17356. height: math.unit(250, "meters")
  17357. },
  17358. {
  17359. name: "Gigamacro",
  17360. height: math.unit(5, "km")
  17361. },
  17362. {
  17363. name: "Cosmic",
  17364. height: math.unit(2.5e6, "miles")
  17365. },
  17366. ]
  17367. ))
  17368. characterMakers.push(() => makeCharacter(
  17369. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17370. {
  17371. front: {
  17372. height: math.unit(6, "feet"),
  17373. weight: math.unit(150, "lb"),
  17374. name: "Front",
  17375. image: {
  17376. source: "./media/characters/hanzo/front.svg",
  17377. extra: 374 / 344,
  17378. bottom: 0.02
  17379. }
  17380. },
  17381. },
  17382. [
  17383. {
  17384. name: "Normal",
  17385. height: math.unit(8, "feet"),
  17386. default: true
  17387. },
  17388. ]
  17389. ))
  17390. characterMakers.push(() => makeCharacter(
  17391. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17392. {
  17393. front: {
  17394. height: math.unit(7, "feet"),
  17395. weight: math.unit(130, "lb"),
  17396. name: "Front",
  17397. image: {
  17398. source: "./media/characters/anna/front.svg",
  17399. extra: 169 / 145,
  17400. bottom: 0.06
  17401. }
  17402. },
  17403. full: {
  17404. height: math.unit(4.96, "feet"),
  17405. weight: math.unit(220, "lb"),
  17406. name: "Full",
  17407. image: {
  17408. source: "./media/characters/anna/full.svg",
  17409. extra: 138 / 114,
  17410. bottom: 0.15
  17411. }
  17412. },
  17413. tongue: {
  17414. height: math.unit(2.53, "feet"),
  17415. name: "Tongue",
  17416. image: {
  17417. source: "./media/characters/anna/tongue.svg"
  17418. }
  17419. },
  17420. },
  17421. [
  17422. {
  17423. name: "Normal",
  17424. height: math.unit(7, "feet"),
  17425. default: true
  17426. },
  17427. ]
  17428. ))
  17429. characterMakers.push(() => makeCharacter(
  17430. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17431. {
  17432. front: {
  17433. height: math.unit(7, "feet"),
  17434. weight: math.unit(150, "lb"),
  17435. name: "Front",
  17436. image: {
  17437. source: "./media/characters/ian-corvid/front.svg",
  17438. extra: 150 / 142,
  17439. bottom: 0.02
  17440. }
  17441. },
  17442. back: {
  17443. height: math.unit(7, "feet"),
  17444. weight: math.unit(150, "lb"),
  17445. name: "Back",
  17446. image: {
  17447. source: "./media/characters/ian-corvid/back.svg",
  17448. extra: 150 / 143,
  17449. bottom: 0.01
  17450. }
  17451. },
  17452. stomping: {
  17453. height: math.unit(7, "feet"),
  17454. weight: math.unit(150, "lb"),
  17455. name: "Stomping",
  17456. image: {
  17457. source: "./media/characters/ian-corvid/stomping.svg",
  17458. extra: 76 / 72
  17459. }
  17460. },
  17461. sitting: {
  17462. height: math.unit(7 / 1.8, "feet"),
  17463. weight: math.unit(150, "lb"),
  17464. name: "Sitting",
  17465. image: {
  17466. source: "./media/characters/ian-corvid/sitting.svg",
  17467. extra: 1400 / 1269,
  17468. bottom: 0.15
  17469. }
  17470. },
  17471. },
  17472. [
  17473. {
  17474. name: "Tiny Microw",
  17475. height: math.unit(1, "inch")
  17476. },
  17477. {
  17478. name: "Microw",
  17479. height: math.unit(6, "inches")
  17480. },
  17481. {
  17482. name: "Crow",
  17483. height: math.unit(7 + 1 / 12, "feet"),
  17484. default: true
  17485. },
  17486. {
  17487. name: "Macrow",
  17488. height: math.unit(176, "feet")
  17489. },
  17490. ]
  17491. ))
  17492. characterMakers.push(() => makeCharacter(
  17493. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17494. {
  17495. front: {
  17496. height: math.unit(5 + 7 / 12, "feet"),
  17497. weight: math.unit(147, "lb"),
  17498. name: "Front",
  17499. image: {
  17500. source: "./media/characters/natalie-kellon/front.svg",
  17501. extra: 1214 / 1141,
  17502. bottom: 0.02
  17503. }
  17504. },
  17505. },
  17506. [
  17507. {
  17508. name: "Micro",
  17509. height: math.unit(1 / 16, "inch")
  17510. },
  17511. {
  17512. name: "Tiny",
  17513. height: math.unit(4, "inches")
  17514. },
  17515. {
  17516. name: "Normal",
  17517. height: math.unit(5 + 7 / 12, "feet"),
  17518. default: true
  17519. },
  17520. {
  17521. name: "Amazon",
  17522. height: math.unit(12, "feet")
  17523. },
  17524. {
  17525. name: "Giantess",
  17526. height: math.unit(160, "meters")
  17527. },
  17528. {
  17529. name: "Titaness",
  17530. height: math.unit(800, "meters")
  17531. },
  17532. ]
  17533. ))
  17534. characterMakers.push(() => makeCharacter(
  17535. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17536. {
  17537. front: {
  17538. height: math.unit(6, "feet"),
  17539. weight: math.unit(150, "lb"),
  17540. name: "Front",
  17541. image: {
  17542. source: "./media/characters/alluria/front.svg",
  17543. extra: 806 / 738,
  17544. bottom: 0.01
  17545. }
  17546. },
  17547. side: {
  17548. height: math.unit(6, "feet"),
  17549. weight: math.unit(150, "lb"),
  17550. name: "Side",
  17551. image: {
  17552. source: "./media/characters/alluria/side.svg",
  17553. extra: 800 / 750,
  17554. }
  17555. },
  17556. back: {
  17557. height: math.unit(6, "feet"),
  17558. weight: math.unit(150, "lb"),
  17559. name: "Back",
  17560. image: {
  17561. source: "./media/characters/alluria/back.svg",
  17562. extra: 806 / 738,
  17563. }
  17564. },
  17565. frontMaid: {
  17566. height: math.unit(6, "feet"),
  17567. weight: math.unit(150, "lb"),
  17568. name: "Front (Maid)",
  17569. image: {
  17570. source: "./media/characters/alluria/front-maid.svg",
  17571. extra: 806 / 738,
  17572. bottom: 0.01
  17573. }
  17574. },
  17575. sideMaid: {
  17576. height: math.unit(6, "feet"),
  17577. weight: math.unit(150, "lb"),
  17578. name: "Side (Maid)",
  17579. image: {
  17580. source: "./media/characters/alluria/side-maid.svg",
  17581. extra: 800 / 750,
  17582. bottom: 0.005
  17583. }
  17584. },
  17585. backMaid: {
  17586. height: math.unit(6, "feet"),
  17587. weight: math.unit(150, "lb"),
  17588. name: "Back (Maid)",
  17589. image: {
  17590. source: "./media/characters/alluria/back-maid.svg",
  17591. extra: 806 / 738,
  17592. }
  17593. },
  17594. },
  17595. [
  17596. {
  17597. name: "Micro",
  17598. height: math.unit(6, "inches"),
  17599. default: true
  17600. },
  17601. ]
  17602. ))
  17603. characterMakers.push(() => makeCharacter(
  17604. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17605. {
  17606. front: {
  17607. height: math.unit(6, "feet"),
  17608. weight: math.unit(150, "lb"),
  17609. name: "Front",
  17610. image: {
  17611. source: "./media/characters/kyle/front.svg",
  17612. extra: 1069 / 962,
  17613. bottom: 77.228 / 1727.45
  17614. }
  17615. },
  17616. },
  17617. [
  17618. {
  17619. name: "Macro",
  17620. height: math.unit(150, "feet"),
  17621. default: true
  17622. },
  17623. ]
  17624. ))
  17625. characterMakers.push(() => makeCharacter(
  17626. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17627. {
  17628. front: {
  17629. height: math.unit(6, "feet"),
  17630. weight: math.unit(300, "lb"),
  17631. name: "Front",
  17632. image: {
  17633. source: "./media/characters/duncan/front.svg",
  17634. extra: 1650 / 1482,
  17635. bottom: 0.05
  17636. }
  17637. },
  17638. },
  17639. [
  17640. {
  17641. name: "Macro",
  17642. height: math.unit(100, "feet"),
  17643. default: true
  17644. },
  17645. ]
  17646. ))
  17647. characterMakers.push(() => makeCharacter(
  17648. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17649. {
  17650. front: {
  17651. height: math.unit(5 + 4 / 12, "feet"),
  17652. weight: math.unit(220, "lb"),
  17653. name: "Front",
  17654. image: {
  17655. source: "./media/characters/memory/front.svg",
  17656. extra: 3641 / 3545,
  17657. bottom: 0.03
  17658. }
  17659. },
  17660. back: {
  17661. height: math.unit(5 + 4 / 12, "feet"),
  17662. weight: math.unit(220, "lb"),
  17663. name: "Back",
  17664. image: {
  17665. source: "./media/characters/memory/back.svg",
  17666. extra: 3641 / 3545,
  17667. bottom: 0.025
  17668. }
  17669. },
  17670. frontSkirt: {
  17671. height: math.unit(5 + 4 / 12, "feet"),
  17672. weight: math.unit(220, "lb"),
  17673. name: "Front (Skirt)",
  17674. image: {
  17675. source: "./media/characters/memory/front-skirt.svg",
  17676. extra: 3641 / 3545,
  17677. bottom: 0.03
  17678. }
  17679. },
  17680. frontDress: {
  17681. height: math.unit(5 + 4 / 12, "feet"),
  17682. weight: math.unit(220, "lb"),
  17683. name: "Front (Dress)",
  17684. image: {
  17685. source: "./media/characters/memory/front-dress.svg",
  17686. extra: 3641 / 3545,
  17687. bottom: 0.03
  17688. }
  17689. },
  17690. },
  17691. [
  17692. {
  17693. name: "Micro",
  17694. height: math.unit(6, "inches"),
  17695. default: true
  17696. },
  17697. {
  17698. name: "Normal",
  17699. height: math.unit(5 + 4 / 12, "feet")
  17700. },
  17701. ]
  17702. ))
  17703. characterMakers.push(() => makeCharacter(
  17704. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17705. {
  17706. front: {
  17707. height: math.unit(4 + 11 / 12, "feet"),
  17708. weight: math.unit(100, "lb"),
  17709. name: "Front",
  17710. image: {
  17711. source: "./media/characters/luno/front.svg",
  17712. extra: 1535 / 1487,
  17713. bottom: 0.03
  17714. }
  17715. },
  17716. },
  17717. [
  17718. {
  17719. name: "Micro",
  17720. height: math.unit(3, "inches")
  17721. },
  17722. {
  17723. name: "Normal",
  17724. height: math.unit(4 + 11 / 12, "feet"),
  17725. default: true
  17726. },
  17727. {
  17728. name: "Macro",
  17729. height: math.unit(300, "feet")
  17730. },
  17731. {
  17732. name: "Megamacro",
  17733. height: math.unit(700, "miles")
  17734. },
  17735. ]
  17736. ))
  17737. characterMakers.push(() => makeCharacter(
  17738. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17739. {
  17740. front: {
  17741. height: math.unit(6 + 2 / 12, "feet"),
  17742. weight: math.unit(170, "lb"),
  17743. name: "Front",
  17744. image: {
  17745. source: "./media/characters/jamesy/front.svg",
  17746. extra: 440 / 382,
  17747. bottom: 0.005
  17748. }
  17749. },
  17750. },
  17751. [
  17752. {
  17753. name: "Micro",
  17754. height: math.unit(3, "inches")
  17755. },
  17756. {
  17757. name: "Normal",
  17758. height: math.unit(6 + 2 / 12, "feet"),
  17759. default: true
  17760. },
  17761. {
  17762. name: "Macro",
  17763. height: math.unit(300, "feet")
  17764. },
  17765. {
  17766. name: "Megamacro",
  17767. height: math.unit(700, "miles")
  17768. },
  17769. ]
  17770. ))
  17771. characterMakers.push(() => makeCharacter(
  17772. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17773. {
  17774. front: {
  17775. height: math.unit(6, "feet"),
  17776. weight: math.unit(160, "lb"),
  17777. name: "Front",
  17778. image: {
  17779. source: "./media/characters/mark/front.svg",
  17780. extra: 3300 / 3100,
  17781. bottom: 136.42 / 3440.47
  17782. }
  17783. },
  17784. },
  17785. [
  17786. {
  17787. name: "Macro",
  17788. height: math.unit(120, "meters")
  17789. },
  17790. {
  17791. name: "Bigger Macro",
  17792. height: math.unit(350, "meters")
  17793. },
  17794. {
  17795. name: "Megamacro",
  17796. height: math.unit(8, "km"),
  17797. default: true
  17798. },
  17799. {
  17800. name: "Continental",
  17801. height: math.unit(4550, "km")
  17802. },
  17803. {
  17804. name: "Planetary",
  17805. height: math.unit(65000, "km")
  17806. },
  17807. ]
  17808. ))
  17809. characterMakers.push(() => makeCharacter(
  17810. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17811. {
  17812. front: {
  17813. height: math.unit(6, "feet"),
  17814. weight: math.unit(400, "lb"),
  17815. name: "Front",
  17816. image: {
  17817. source: "./media/characters/mac/front.svg",
  17818. extra: 1048 / 987.7,
  17819. bottom: 60 / 1107.6,
  17820. }
  17821. },
  17822. },
  17823. [
  17824. {
  17825. name: "Macro",
  17826. height: math.unit(500, "feet"),
  17827. default: true
  17828. },
  17829. ]
  17830. ))
  17831. characterMakers.push(() => makeCharacter(
  17832. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17833. {
  17834. front: {
  17835. height: math.unit(5 + 2 / 12, "feet"),
  17836. weight: math.unit(190, "lb"),
  17837. name: "Front",
  17838. image: {
  17839. source: "./media/characters/bari/front.svg",
  17840. extra: 3156 / 2880,
  17841. bottom: 0.03
  17842. }
  17843. },
  17844. back: {
  17845. height: math.unit(5 + 2 / 12, "feet"),
  17846. weight: math.unit(190, "lb"),
  17847. name: "Back",
  17848. image: {
  17849. source: "./media/characters/bari/back.svg",
  17850. extra: 3260 / 2834,
  17851. bottom: 0.025
  17852. }
  17853. },
  17854. frontPlush: {
  17855. height: math.unit(5 + 2 / 12, "feet"),
  17856. weight: math.unit(190, "lb"),
  17857. name: "Front (Plush)",
  17858. image: {
  17859. source: "./media/characters/bari/front-plush.svg",
  17860. extra: 1112 / 1061,
  17861. bottom: 0.002
  17862. }
  17863. },
  17864. },
  17865. [
  17866. {
  17867. name: "Micro",
  17868. height: math.unit(3, "inches")
  17869. },
  17870. {
  17871. name: "Normal",
  17872. height: math.unit(5 + 2 / 12, "feet"),
  17873. default: true
  17874. },
  17875. {
  17876. name: "Macro",
  17877. height: math.unit(20, "feet")
  17878. },
  17879. ]
  17880. ))
  17881. characterMakers.push(() => makeCharacter(
  17882. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17883. {
  17884. front: {
  17885. height: math.unit(6 + 1 / 12, "feet"),
  17886. weight: math.unit(275, "lb"),
  17887. name: "Front",
  17888. image: {
  17889. source: "./media/characters/hunter-misha-raven/front.svg"
  17890. }
  17891. },
  17892. },
  17893. [
  17894. {
  17895. name: "Mortal",
  17896. height: math.unit(6 + 1 / 12, "feet")
  17897. },
  17898. {
  17899. name: "Divine",
  17900. height: math.unit(1.12134e34, "parsecs"),
  17901. default: true
  17902. },
  17903. ]
  17904. ))
  17905. characterMakers.push(() => makeCharacter(
  17906. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17907. {
  17908. front: {
  17909. height: math.unit(6 + 3 / 12, "feet"),
  17910. weight: math.unit(220, "lb"),
  17911. name: "Front",
  17912. image: {
  17913. source: "./media/characters/max-calore/front.svg",
  17914. extra: 1700 / 1648,
  17915. bottom: 0.01
  17916. }
  17917. },
  17918. back: {
  17919. height: math.unit(6 + 3 / 12, "feet"),
  17920. weight: math.unit(220, "lb"),
  17921. name: "Back",
  17922. image: {
  17923. source: "./media/characters/max-calore/back.svg",
  17924. extra: 1700 / 1648,
  17925. bottom: 0.01
  17926. }
  17927. },
  17928. },
  17929. [
  17930. {
  17931. name: "Normal",
  17932. height: math.unit(6 + 3 / 12, "feet"),
  17933. default: true
  17934. },
  17935. ]
  17936. ))
  17937. characterMakers.push(() => makeCharacter(
  17938. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17939. {
  17940. side: {
  17941. height: math.unit(2 + 8 / 12, "feet"),
  17942. weight: math.unit(99, "lb"),
  17943. name: "Side",
  17944. image: {
  17945. source: "./media/characters/aspen/side.svg",
  17946. extra: 152 / 138,
  17947. bottom: 0.032
  17948. }
  17949. },
  17950. },
  17951. [
  17952. {
  17953. name: "Normal",
  17954. height: math.unit(2 + 8 / 12, "feet"),
  17955. default: true
  17956. },
  17957. ]
  17958. ))
  17959. characterMakers.push(() => makeCharacter(
  17960. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17961. {
  17962. side: {
  17963. height: math.unit(3 + 2 / 12, "feet"),
  17964. weight: math.unit(224, "lb"),
  17965. name: "Side",
  17966. image: {
  17967. source: "./media/characters/sheila-feral-wolf/side.svg",
  17968. extra: 179 / 166,
  17969. bottom: 0.03
  17970. }
  17971. },
  17972. },
  17973. [
  17974. {
  17975. name: "Normal",
  17976. height: math.unit(3 + 2 / 12, "feet"),
  17977. default: true
  17978. },
  17979. ]
  17980. ))
  17981. characterMakers.push(() => makeCharacter(
  17982. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17983. {
  17984. side: {
  17985. height: math.unit(1 + 9 / 12, "feet"),
  17986. weight: math.unit(38, "lb"),
  17987. name: "Side",
  17988. image: {
  17989. source: "./media/characters/michelle/side.svg",
  17990. extra: 147 / 136.7,
  17991. bottom: 0.03
  17992. }
  17993. },
  17994. },
  17995. [
  17996. {
  17997. name: "Normal",
  17998. height: math.unit(1 + 9 / 12, "feet"),
  17999. default: true
  18000. },
  18001. ]
  18002. ))
  18003. characterMakers.push(() => makeCharacter(
  18004. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18005. {
  18006. front: {
  18007. height: math.unit(1.54, "feet"),
  18008. weight: math.unit(50, "lb"),
  18009. name: "Front",
  18010. image: {
  18011. source: "./media/characters/nino/front.svg"
  18012. }
  18013. },
  18014. },
  18015. [
  18016. {
  18017. name: "Normal",
  18018. height: math.unit(1.54, "feet"),
  18019. default: true
  18020. },
  18021. ]
  18022. ))
  18023. characterMakers.push(() => makeCharacter(
  18024. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18025. {
  18026. front: {
  18027. height: math.unit(1.49, "feet"),
  18028. weight: math.unit(45, "lb"),
  18029. name: "Front",
  18030. image: {
  18031. source: "./media/characters/viola/front.svg"
  18032. }
  18033. },
  18034. },
  18035. [
  18036. {
  18037. name: "Normal",
  18038. height: math.unit(1.49, "feet"),
  18039. default: true
  18040. },
  18041. ]
  18042. ))
  18043. characterMakers.push(() => makeCharacter(
  18044. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18045. {
  18046. front: {
  18047. height: math.unit(6 + 5 / 12, "feet"),
  18048. weight: math.unit(580, "lb"),
  18049. name: "Front",
  18050. image: {
  18051. source: "./media/characters/atlas/front.svg",
  18052. extra: 298.5 / 290,
  18053. bottom: 0.015
  18054. }
  18055. },
  18056. },
  18057. [
  18058. {
  18059. name: "Normal",
  18060. height: math.unit(6 + 5 / 12, "feet"),
  18061. default: true
  18062. },
  18063. ]
  18064. ))
  18065. characterMakers.push(() => makeCharacter(
  18066. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18067. {
  18068. side: {
  18069. height: math.unit(15.6, "inches"),
  18070. weight: math.unit(10, "lb"),
  18071. name: "Side",
  18072. image: {
  18073. source: "./media/characters/davy/side.svg",
  18074. extra: 200 / 170,
  18075. bottom: 0.01
  18076. }
  18077. },
  18078. },
  18079. [
  18080. {
  18081. name: "Normal",
  18082. height: math.unit(15.6, "inches"),
  18083. default: true
  18084. },
  18085. ]
  18086. ))
  18087. characterMakers.push(() => makeCharacter(
  18088. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18089. {
  18090. side: {
  18091. height: math.unit(4 + 8 / 12, "feet"),
  18092. weight: math.unit(166, "lb"),
  18093. name: "Side",
  18094. image: {
  18095. source: "./media/characters/fiona/side.svg",
  18096. extra: 232 / 220,
  18097. bottom: 0.03
  18098. }
  18099. },
  18100. },
  18101. [
  18102. {
  18103. name: "Normal",
  18104. height: math.unit(4 + 8 / 12, "feet"),
  18105. default: true
  18106. },
  18107. ]
  18108. ))
  18109. characterMakers.push(() => makeCharacter(
  18110. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18111. {
  18112. front: {
  18113. height: math.unit(26, "inches"),
  18114. weight: math.unit(35, "lb"),
  18115. name: "Front",
  18116. image: {
  18117. source: "./media/characters/lyla/front.svg",
  18118. bottom: 0.1
  18119. }
  18120. },
  18121. },
  18122. [
  18123. {
  18124. name: "Normal",
  18125. height: math.unit(3, "feet"),
  18126. default: true
  18127. },
  18128. ]
  18129. ))
  18130. characterMakers.push(() => makeCharacter(
  18131. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18132. {
  18133. side: {
  18134. height: math.unit(1.8, "feet"),
  18135. weight: math.unit(44, "lb"),
  18136. name: "Side",
  18137. image: {
  18138. source: "./media/characters/perseus/side.svg",
  18139. bottom: 0.21
  18140. }
  18141. },
  18142. },
  18143. [
  18144. {
  18145. name: "Normal",
  18146. height: math.unit(1.8, "feet"),
  18147. default: true
  18148. },
  18149. ]
  18150. ))
  18151. characterMakers.push(() => makeCharacter(
  18152. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18153. {
  18154. side: {
  18155. height: math.unit(4 + 2 / 12, "feet"),
  18156. weight: math.unit(20, "lb"),
  18157. name: "Side",
  18158. image: {
  18159. source: "./media/characters/remus/side.svg"
  18160. }
  18161. },
  18162. },
  18163. [
  18164. {
  18165. name: "Normal",
  18166. height: math.unit(4 + 2 / 12, "feet"),
  18167. default: true
  18168. },
  18169. ]
  18170. ))
  18171. characterMakers.push(() => makeCharacter(
  18172. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18173. {
  18174. front: {
  18175. height: math.unit(4 + 11 / 12, "feet"),
  18176. weight: math.unit(114, "lb"),
  18177. name: "Front",
  18178. image: {
  18179. source: "./media/characters/raf/front.svg",
  18180. extra: 1504/1339,
  18181. bottom: 26/1530
  18182. }
  18183. },
  18184. side: {
  18185. height: math.unit(4 + 11 / 12, "feet"),
  18186. weight: math.unit(114, "lb"),
  18187. name: "Side",
  18188. image: {
  18189. source: "./media/characters/raf/side.svg",
  18190. extra: 1466/1316,
  18191. bottom: 29/1495
  18192. }
  18193. },
  18194. paw: {
  18195. height: math.unit(1.45, "feet"),
  18196. name: "Paw",
  18197. image: {
  18198. source: "./media/characters/raf/paw.svg"
  18199. },
  18200. extraAttributes: {
  18201. "toeSize": {
  18202. name: "Toe Size",
  18203. power: 2,
  18204. type: "area",
  18205. base: math.unit(0.004, "m^2")
  18206. },
  18207. "padSize": {
  18208. name: "Pad Size",
  18209. power: 2,
  18210. type: "area",
  18211. base: math.unit(0.04, "m^2")
  18212. },
  18213. "footSize": {
  18214. name: "Foot Size",
  18215. power: 2,
  18216. type: "area",
  18217. base: math.unit(0.08, "m^2")
  18218. },
  18219. }
  18220. },
  18221. },
  18222. [
  18223. {
  18224. name: "Micro",
  18225. height: math.unit(2, "inches")
  18226. },
  18227. {
  18228. name: "Normal",
  18229. height: math.unit(4 + 11 / 12, "feet"),
  18230. default: true
  18231. },
  18232. {
  18233. name: "Macro",
  18234. height: math.unit(70, "feet")
  18235. },
  18236. ]
  18237. ))
  18238. characterMakers.push(() => makeCharacter(
  18239. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18240. {
  18241. front: {
  18242. height: math.unit(1.5, "meters"),
  18243. weight: math.unit(68, "kg"),
  18244. name: "Front",
  18245. image: {
  18246. source: "./media/characters/liam-einarr/front.svg",
  18247. extra: 2822 / 2666
  18248. }
  18249. },
  18250. back: {
  18251. height: math.unit(1.5, "meters"),
  18252. weight: math.unit(68, "kg"),
  18253. name: "Back",
  18254. image: {
  18255. source: "./media/characters/liam-einarr/back.svg",
  18256. extra: 2822 / 2666,
  18257. bottom: 0.015
  18258. }
  18259. },
  18260. },
  18261. [
  18262. {
  18263. name: "Normal",
  18264. height: math.unit(1.5, "meters"),
  18265. default: true
  18266. },
  18267. {
  18268. name: "Macro",
  18269. height: math.unit(150, "meters")
  18270. },
  18271. {
  18272. name: "Megamacro",
  18273. height: math.unit(35, "km")
  18274. },
  18275. ]
  18276. ))
  18277. characterMakers.push(() => makeCharacter(
  18278. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18279. {
  18280. front: {
  18281. height: math.unit(6, "feet"),
  18282. weight: math.unit(75, "kg"),
  18283. name: "Front",
  18284. image: {
  18285. source: "./media/characters/linda/front.svg",
  18286. extra: 930 / 874,
  18287. bottom: 0.004
  18288. }
  18289. },
  18290. },
  18291. [
  18292. {
  18293. name: "Normal",
  18294. height: math.unit(6, "feet"),
  18295. default: true
  18296. },
  18297. ]
  18298. ))
  18299. characterMakers.push(() => makeCharacter(
  18300. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18301. {
  18302. front: {
  18303. height: math.unit(6 + 8 / 12, "feet"),
  18304. weight: math.unit(220, "lb"),
  18305. name: "Front",
  18306. image: {
  18307. source: "./media/characters/caylex/front.svg",
  18308. extra: 821 / 772,
  18309. bottom: 0.07
  18310. }
  18311. },
  18312. back: {
  18313. height: math.unit(6 + 8 / 12, "feet"),
  18314. weight: math.unit(220, "lb"),
  18315. name: "Back",
  18316. image: {
  18317. source: "./media/characters/caylex/back.svg",
  18318. extra: 821 / 772,
  18319. bottom: 0.022
  18320. }
  18321. },
  18322. hand: {
  18323. height: math.unit(1.25, "feet"),
  18324. name: "Hand",
  18325. image: {
  18326. source: "./media/characters/caylex/hand.svg"
  18327. }
  18328. },
  18329. foot: {
  18330. height: math.unit(1.6, "feet"),
  18331. name: "Foot",
  18332. image: {
  18333. source: "./media/characters/caylex/foot.svg"
  18334. }
  18335. },
  18336. armored: {
  18337. height: math.unit(6 + 8 / 12, "feet"),
  18338. weight: math.unit(250, "lb"),
  18339. name: "Armored",
  18340. image: {
  18341. source: "./media/characters/caylex/armored.svg",
  18342. extra: 1420 / 1310,
  18343. bottom: 0.045
  18344. }
  18345. },
  18346. },
  18347. [
  18348. {
  18349. name: "Normal",
  18350. height: math.unit(6 + 8 / 12, "feet"),
  18351. default: true
  18352. },
  18353. {
  18354. name: "Normal+",
  18355. height: math.unit(12, "feet")
  18356. },
  18357. ]
  18358. ))
  18359. characterMakers.push(() => makeCharacter(
  18360. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18361. {
  18362. front: {
  18363. height: math.unit(7 + 6 / 12, "feet"),
  18364. weight: math.unit(288, "lb"),
  18365. name: "Front",
  18366. image: {
  18367. source: "./media/characters/alana/front.svg",
  18368. extra: 679 / 653,
  18369. bottom: 22.5 / 701
  18370. }
  18371. },
  18372. },
  18373. [
  18374. {
  18375. name: "Normal",
  18376. height: math.unit(7 + 6 / 12, "feet")
  18377. },
  18378. {
  18379. name: "Large",
  18380. height: math.unit(50, "feet")
  18381. },
  18382. {
  18383. name: "Macro",
  18384. height: math.unit(100, "feet"),
  18385. default: true
  18386. },
  18387. {
  18388. name: "Macro+",
  18389. height: math.unit(200, "feet")
  18390. },
  18391. ]
  18392. ))
  18393. characterMakers.push(() => makeCharacter(
  18394. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18395. {
  18396. front: {
  18397. height: math.unit(6 + 1 / 12, "feet"),
  18398. weight: math.unit(210, "lb"),
  18399. name: "Front",
  18400. image: {
  18401. source: "./media/characters/hasani/front.svg",
  18402. extra: 244 / 232,
  18403. bottom: 0.01
  18404. }
  18405. },
  18406. back: {
  18407. height: math.unit(6 + 1 / 12, "feet"),
  18408. weight: math.unit(210, "lb"),
  18409. name: "Back",
  18410. image: {
  18411. source: "./media/characters/hasani/back.svg",
  18412. extra: 244 / 232,
  18413. bottom: 0.01
  18414. }
  18415. },
  18416. },
  18417. [
  18418. {
  18419. name: "Normal",
  18420. height: math.unit(6 + 1 / 12, "feet")
  18421. },
  18422. {
  18423. name: "Macro",
  18424. height: math.unit(175, "feet"),
  18425. default: true
  18426. },
  18427. ]
  18428. ))
  18429. characterMakers.push(() => makeCharacter(
  18430. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18431. {
  18432. front: {
  18433. height: math.unit(1.82, "meters"),
  18434. weight: math.unit(140, "lb"),
  18435. name: "Front",
  18436. image: {
  18437. source: "./media/characters/nita/front.svg",
  18438. extra: 2473 / 2363,
  18439. bottom: 0.01
  18440. }
  18441. },
  18442. },
  18443. [
  18444. {
  18445. name: "Normal",
  18446. height: math.unit(1.82, "m")
  18447. },
  18448. {
  18449. name: "Macro",
  18450. height: math.unit(300, "m")
  18451. },
  18452. {
  18453. name: "Mistake Canon",
  18454. height: math.unit(0.5, "miles"),
  18455. default: true
  18456. },
  18457. {
  18458. name: "Big Mistake",
  18459. height: math.unit(13, "miles")
  18460. },
  18461. {
  18462. name: "Playing God",
  18463. height: math.unit(2450, "miles")
  18464. },
  18465. ]
  18466. ))
  18467. characterMakers.push(() => makeCharacter(
  18468. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18469. {
  18470. front: {
  18471. height: math.unit(4, "feet"),
  18472. weight: math.unit(120, "lb"),
  18473. name: "Front",
  18474. image: {
  18475. source: "./media/characters/shiriko/front.svg",
  18476. extra: 970/934,
  18477. bottom: 5/975
  18478. }
  18479. },
  18480. },
  18481. [
  18482. {
  18483. name: "Normal",
  18484. height: math.unit(4, "feet"),
  18485. default: true
  18486. },
  18487. ]
  18488. ))
  18489. characterMakers.push(() => makeCharacter(
  18490. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18491. {
  18492. front: {
  18493. height: math.unit(6, "feet"),
  18494. name: "front",
  18495. image: {
  18496. source: "./media/characters/deja/front.svg",
  18497. extra: 926 / 840,
  18498. bottom: 0.07
  18499. }
  18500. },
  18501. },
  18502. [
  18503. {
  18504. name: "Planck Length",
  18505. height: math.unit(1.6e-35, "meters")
  18506. },
  18507. {
  18508. name: "Normal",
  18509. height: math.unit(30.48, "meters"),
  18510. default: true
  18511. },
  18512. {
  18513. name: "Universal",
  18514. height: math.unit(8.8e26, "meters")
  18515. },
  18516. ]
  18517. ))
  18518. characterMakers.push(() => makeCharacter(
  18519. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18520. {
  18521. side: {
  18522. height: math.unit(8, "feet"),
  18523. weight: math.unit(6300, "lb"),
  18524. name: "Side",
  18525. image: {
  18526. source: "./media/characters/anima/side.svg",
  18527. bottom: 0.035
  18528. }
  18529. },
  18530. },
  18531. [
  18532. {
  18533. name: "Normal",
  18534. height: math.unit(8, "feet"),
  18535. default: true
  18536. },
  18537. ]
  18538. ))
  18539. characterMakers.push(() => makeCharacter(
  18540. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18541. {
  18542. front: {
  18543. height: math.unit(8, "feet"),
  18544. weight: math.unit(350, "lb"),
  18545. name: "Front",
  18546. image: {
  18547. source: "./media/characters/bianca/front.svg",
  18548. extra: 234 / 225,
  18549. bottom: 0.03
  18550. }
  18551. },
  18552. },
  18553. [
  18554. {
  18555. name: "Normal",
  18556. height: math.unit(8, "feet"),
  18557. default: true
  18558. },
  18559. ]
  18560. ))
  18561. characterMakers.push(() => makeCharacter(
  18562. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18563. {
  18564. front: {
  18565. height: math.unit(11 + 5/12, "feet"),
  18566. weight: math.unit(1200, "lb"),
  18567. name: "Front",
  18568. image: {
  18569. source: "./media/characters/adinia/front.svg",
  18570. extra: 1767/1641,
  18571. bottom: 44/1811
  18572. },
  18573. extraAttributes: {
  18574. "energyIntake": {
  18575. name: "Energy Intake",
  18576. power: 3,
  18577. type: "energy",
  18578. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18579. },
  18580. }
  18581. },
  18582. back: {
  18583. height: math.unit(11 + 5/12, "feet"),
  18584. weight: math.unit(1200, "lb"),
  18585. name: "Back",
  18586. image: {
  18587. source: "./media/characters/adinia/back.svg",
  18588. extra: 1834/1684,
  18589. bottom: 14/1848
  18590. },
  18591. extraAttributes: {
  18592. "energyIntake": {
  18593. name: "Energy Intake",
  18594. power: 3,
  18595. type: "energy",
  18596. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18597. },
  18598. }
  18599. },
  18600. maw: {
  18601. height: math.unit(3.79, "feet"),
  18602. name: "Maw",
  18603. image: {
  18604. source: "./media/characters/adinia/maw.svg"
  18605. }
  18606. },
  18607. rump: {
  18608. height: math.unit(4.6, "feet"),
  18609. name: "Rump",
  18610. image: {
  18611. source: "./media/characters/adinia/rump.svg"
  18612. }
  18613. },
  18614. },
  18615. [
  18616. {
  18617. name: "Normal",
  18618. height: math.unit(11 + 5 / 12, "feet"),
  18619. default: true
  18620. },
  18621. ]
  18622. ))
  18623. characterMakers.push(() => makeCharacter(
  18624. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18625. {
  18626. front: {
  18627. height: math.unit(3, "meters"),
  18628. weight: math.unit(200, "kg"),
  18629. name: "Front",
  18630. image: {
  18631. source: "./media/characters/lykasa/front.svg",
  18632. extra: 1076 / 976,
  18633. bottom: 0.06
  18634. }
  18635. },
  18636. },
  18637. [
  18638. {
  18639. name: "Normal",
  18640. height: math.unit(3, "meters")
  18641. },
  18642. {
  18643. name: "Kaiju",
  18644. height: math.unit(120, "meters"),
  18645. default: true
  18646. },
  18647. {
  18648. name: "Mega Kaiju",
  18649. height: math.unit(240, "km")
  18650. },
  18651. {
  18652. name: "Giga Kaiju",
  18653. height: math.unit(400, "megameters")
  18654. },
  18655. {
  18656. name: "Tera Kaiju",
  18657. height: math.unit(800, "gigameters")
  18658. },
  18659. {
  18660. name: "Kaiju Dragon Goddess",
  18661. height: math.unit(26, "zettaparsecs")
  18662. },
  18663. ]
  18664. ))
  18665. characterMakers.push(() => makeCharacter(
  18666. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18667. {
  18668. side: {
  18669. height: math.unit(283 / 124 * 6, "feet"),
  18670. weight: math.unit(35000, "lb"),
  18671. name: "Side",
  18672. image: {
  18673. source: "./media/characters/malfaren/side.svg",
  18674. extra: 1310/529,
  18675. bottom: 24/1334
  18676. }
  18677. },
  18678. front: {
  18679. height: math.unit(22.36, "feet"),
  18680. weight: math.unit(35000, "lb"),
  18681. name: "Front",
  18682. image: {
  18683. source: "./media/characters/malfaren/front.svg",
  18684. extra: 1237/1115,
  18685. bottom: 32/1269
  18686. }
  18687. },
  18688. maw: {
  18689. height: math.unit(6.9, "feet"),
  18690. name: "Maw",
  18691. image: {
  18692. source: "./media/characters/malfaren/maw.svg"
  18693. }
  18694. },
  18695. dick: {
  18696. height: math.unit(6.19, "feet"),
  18697. name: "Dick",
  18698. image: {
  18699. source: "./media/characters/malfaren/dick.svg"
  18700. }
  18701. },
  18702. eye: {
  18703. height: math.unit(0.69, "feet"),
  18704. name: "Eye",
  18705. image: {
  18706. source: "./media/characters/malfaren/eye.svg"
  18707. }
  18708. },
  18709. },
  18710. [
  18711. {
  18712. name: "Big",
  18713. height: math.unit(283 / 162 * 6, "feet"),
  18714. },
  18715. {
  18716. name: "Bigger",
  18717. height: math.unit(283 / 124 * 6, "feet")
  18718. },
  18719. {
  18720. name: "Massive",
  18721. height: math.unit(283 / 92 * 6, "feet"),
  18722. default: true
  18723. },
  18724. {
  18725. name: "👀💦",
  18726. height: math.unit(283 / 73 * 6, "feet"),
  18727. },
  18728. ]
  18729. ))
  18730. characterMakers.push(() => makeCharacter(
  18731. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18732. {
  18733. front: {
  18734. height: math.unit(1.7, "m"),
  18735. weight: math.unit(70, "kg"),
  18736. name: "Front",
  18737. image: {
  18738. source: "./media/characters/kernel/front.svg",
  18739. extra: 222 / 210,
  18740. bottom: 0.007
  18741. }
  18742. },
  18743. },
  18744. [
  18745. {
  18746. name: "Nano",
  18747. height: math.unit(17, "micrometers")
  18748. },
  18749. {
  18750. name: "Micro",
  18751. height: math.unit(1.7, "mm")
  18752. },
  18753. {
  18754. name: "Small",
  18755. height: math.unit(1.7, "cm")
  18756. },
  18757. {
  18758. name: "Normal",
  18759. height: math.unit(1.7, "m"),
  18760. default: true
  18761. },
  18762. ]
  18763. ))
  18764. characterMakers.push(() => makeCharacter(
  18765. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18766. {
  18767. front: {
  18768. height: math.unit(1.75, "meters"),
  18769. weight: math.unit(65, "kg"),
  18770. name: "Front",
  18771. image: {
  18772. source: "./media/characters/jayne-folest/front.svg",
  18773. extra: 2115 / 2007,
  18774. bottom: 0.02
  18775. }
  18776. },
  18777. back: {
  18778. height: math.unit(1.75, "meters"),
  18779. weight: math.unit(65, "kg"),
  18780. name: "Back",
  18781. image: {
  18782. source: "./media/characters/jayne-folest/back.svg",
  18783. extra: 2115 / 2007,
  18784. bottom: 0.005
  18785. }
  18786. },
  18787. frontClothed: {
  18788. height: math.unit(1.75, "meters"),
  18789. weight: math.unit(65, "kg"),
  18790. name: "Front (Clothed)",
  18791. image: {
  18792. source: "./media/characters/jayne-folest/front-clothed.svg",
  18793. extra: 2115 / 2007,
  18794. bottom: 0.035
  18795. }
  18796. },
  18797. hand: {
  18798. height: math.unit(1 / 1.260, "feet"),
  18799. name: "Hand",
  18800. image: {
  18801. source: "./media/characters/jayne-folest/hand.svg"
  18802. }
  18803. },
  18804. foot: {
  18805. height: math.unit(1 / 0.918, "feet"),
  18806. name: "Foot",
  18807. image: {
  18808. source: "./media/characters/jayne-folest/foot.svg"
  18809. }
  18810. },
  18811. },
  18812. [
  18813. {
  18814. name: "Micro",
  18815. height: math.unit(4, "cm")
  18816. },
  18817. {
  18818. name: "Normal",
  18819. height: math.unit(1.75, "meters")
  18820. },
  18821. {
  18822. name: "Macro",
  18823. height: math.unit(47.5, "meters"),
  18824. default: true
  18825. },
  18826. ]
  18827. ))
  18828. characterMakers.push(() => makeCharacter(
  18829. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18830. {
  18831. front: {
  18832. height: math.unit(180, "cm"),
  18833. weight: math.unit(70, "kg"),
  18834. name: "Front",
  18835. image: {
  18836. source: "./media/characters/algier/front.svg",
  18837. extra: 596 / 572,
  18838. bottom: 0.04
  18839. }
  18840. },
  18841. back: {
  18842. height: math.unit(180, "cm"),
  18843. weight: math.unit(70, "kg"),
  18844. name: "Back",
  18845. image: {
  18846. source: "./media/characters/algier/back.svg",
  18847. extra: 596 / 572,
  18848. bottom: 0.025
  18849. }
  18850. },
  18851. frontdressed: {
  18852. height: math.unit(180, "cm"),
  18853. weight: math.unit(150, "kg"),
  18854. name: "Front-dressed",
  18855. image: {
  18856. source: "./media/characters/algier/front-dressed.svg",
  18857. extra: 596 / 572,
  18858. bottom: 0.038
  18859. }
  18860. },
  18861. },
  18862. [
  18863. {
  18864. name: "Micro",
  18865. height: math.unit(5, "cm")
  18866. },
  18867. {
  18868. name: "Normal",
  18869. height: math.unit(180, "cm"),
  18870. default: true
  18871. },
  18872. {
  18873. name: "Macro",
  18874. height: math.unit(64, "m")
  18875. },
  18876. ]
  18877. ))
  18878. characterMakers.push(() => makeCharacter(
  18879. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18880. {
  18881. upright: {
  18882. height: math.unit(7, "feet"),
  18883. weight: math.unit(300, "lb"),
  18884. name: "Upright",
  18885. image: {
  18886. source: "./media/characters/pretzel/upright.svg",
  18887. extra: 534 / 522,
  18888. bottom: 0.065
  18889. }
  18890. },
  18891. sprawling: {
  18892. height: math.unit(3.75, "feet"),
  18893. weight: math.unit(300, "lb"),
  18894. name: "Sprawling",
  18895. image: {
  18896. source: "./media/characters/pretzel/sprawling.svg",
  18897. extra: 314 / 281,
  18898. bottom: 0.1
  18899. }
  18900. },
  18901. tongue: {
  18902. height: math.unit(2, "feet"),
  18903. name: "Tongue",
  18904. image: {
  18905. source: "./media/characters/pretzel/tongue.svg"
  18906. }
  18907. },
  18908. },
  18909. [
  18910. {
  18911. name: "Normal",
  18912. height: math.unit(7, "feet"),
  18913. default: true
  18914. },
  18915. {
  18916. name: "Oversized",
  18917. height: math.unit(15, "feet")
  18918. },
  18919. {
  18920. name: "Huge",
  18921. height: math.unit(30, "feet")
  18922. },
  18923. {
  18924. name: "Macro",
  18925. height: math.unit(250, "feet")
  18926. },
  18927. ]
  18928. ))
  18929. characterMakers.push(() => makeCharacter(
  18930. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18931. {
  18932. sideFront: {
  18933. height: math.unit(5 + 2 / 12, "feet"),
  18934. weight: math.unit(120, "lb"),
  18935. name: "Front Side",
  18936. image: {
  18937. source: "./media/characters/roxi/side-front.svg",
  18938. extra: 2924 / 2717,
  18939. bottom: 0.08
  18940. }
  18941. },
  18942. sideBack: {
  18943. height: math.unit(5 + 2 / 12, "feet"),
  18944. weight: math.unit(120, "lb"),
  18945. name: "Back Side",
  18946. image: {
  18947. source: "./media/characters/roxi/side-back.svg",
  18948. extra: 2904 / 2693,
  18949. bottom: 0.06
  18950. }
  18951. },
  18952. front: {
  18953. height: math.unit(5 + 2 / 12, "feet"),
  18954. weight: math.unit(120, "lb"),
  18955. name: "Front",
  18956. image: {
  18957. source: "./media/characters/roxi/front.svg",
  18958. extra: 2028 / 1907,
  18959. bottom: 0.01
  18960. }
  18961. },
  18962. frontAlt: {
  18963. height: math.unit(5 + 2 / 12, "feet"),
  18964. weight: math.unit(120, "lb"),
  18965. name: "Front (Alt)",
  18966. image: {
  18967. source: "./media/characters/roxi/front-alt.svg",
  18968. extra: 1828 / 1798,
  18969. bottom: 0.01
  18970. }
  18971. },
  18972. sitting: {
  18973. height: math.unit(2.8, "feet"),
  18974. weight: math.unit(120, "lb"),
  18975. name: "Sitting",
  18976. image: {
  18977. source: "./media/characters/roxi/sitting.svg",
  18978. extra: 2660 / 2462,
  18979. bottom: 0.1
  18980. }
  18981. },
  18982. },
  18983. [
  18984. {
  18985. name: "Normal",
  18986. height: math.unit(5 + 2 / 12, "feet"),
  18987. default: true
  18988. },
  18989. ]
  18990. ))
  18991. characterMakers.push(() => makeCharacter(
  18992. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18993. {
  18994. side: {
  18995. height: math.unit(55, "feet"),
  18996. weight: math.unit(153, "tons"),
  18997. name: "Side",
  18998. image: {
  18999. source: "./media/characters/shadow/side.svg",
  19000. extra: 701 / 628,
  19001. bottom: 0.02
  19002. }
  19003. },
  19004. flying: {
  19005. height: math.unit(145, "feet"),
  19006. weight: math.unit(153, "tons"),
  19007. name: "Flying",
  19008. image: {
  19009. source: "./media/characters/shadow/flying.svg"
  19010. }
  19011. },
  19012. },
  19013. [
  19014. {
  19015. name: "Normal",
  19016. height: math.unit(55, "feet"),
  19017. default: true
  19018. },
  19019. ]
  19020. ))
  19021. characterMakers.push(() => makeCharacter(
  19022. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19023. {
  19024. front: {
  19025. height: math.unit(6, "feet"),
  19026. weight: math.unit(200, "lb"),
  19027. name: "Front",
  19028. image: {
  19029. source: "./media/characters/marcie/front.svg",
  19030. extra: 960 / 876,
  19031. bottom: 58 / 1017.87
  19032. }
  19033. },
  19034. },
  19035. [
  19036. {
  19037. name: "Macro",
  19038. height: math.unit(1, "mile"),
  19039. default: true
  19040. },
  19041. ]
  19042. ))
  19043. characterMakers.push(() => makeCharacter(
  19044. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19045. {
  19046. front: {
  19047. height: math.unit(7, "feet"),
  19048. weight: math.unit(200, "lb"),
  19049. name: "Front",
  19050. image: {
  19051. source: "./media/characters/kachina/front.svg",
  19052. extra: 1290.68 / 1119,
  19053. bottom: 36.5 / 1327.18
  19054. }
  19055. },
  19056. },
  19057. [
  19058. {
  19059. name: "Normal",
  19060. height: math.unit(7, "feet"),
  19061. default: true
  19062. },
  19063. ]
  19064. ))
  19065. characterMakers.push(() => makeCharacter(
  19066. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19067. {
  19068. looking: {
  19069. height: math.unit(2, "meters"),
  19070. weight: math.unit(300, "kg"),
  19071. name: "Looking",
  19072. image: {
  19073. source: "./media/characters/kash/looking.svg",
  19074. extra: 474 / 344,
  19075. bottom: 0.03
  19076. }
  19077. },
  19078. side: {
  19079. height: math.unit(2, "meters"),
  19080. weight: math.unit(300, "kg"),
  19081. name: "Side",
  19082. image: {
  19083. source: "./media/characters/kash/side.svg",
  19084. extra: 302 / 251,
  19085. bottom: 0.03
  19086. }
  19087. },
  19088. front: {
  19089. height: math.unit(2, "meters"),
  19090. weight: math.unit(300, "kg"),
  19091. name: "Front",
  19092. image: {
  19093. source: "./media/characters/kash/front.svg",
  19094. extra: 495 / 360,
  19095. bottom: 0.015
  19096. }
  19097. },
  19098. },
  19099. [
  19100. {
  19101. name: "Normal",
  19102. height: math.unit(2, "meters"),
  19103. default: true
  19104. },
  19105. {
  19106. name: "Big",
  19107. height: math.unit(3, "meters")
  19108. },
  19109. {
  19110. name: "Large",
  19111. height: math.unit(5, "meters")
  19112. },
  19113. ]
  19114. ))
  19115. characterMakers.push(() => makeCharacter(
  19116. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19117. {
  19118. feeding: {
  19119. height: math.unit(6.7, "feet"),
  19120. weight: math.unit(350, "lb"),
  19121. name: "Feeding",
  19122. image: {
  19123. source: "./media/characters/lalim/feeding.svg",
  19124. }
  19125. },
  19126. },
  19127. [
  19128. {
  19129. name: "Normal",
  19130. height: math.unit(6.7, "feet"),
  19131. default: true
  19132. },
  19133. ]
  19134. ))
  19135. characterMakers.push(() => makeCharacter(
  19136. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19137. {
  19138. front: {
  19139. height: math.unit(9.5, "feet"),
  19140. weight: math.unit(600, "lb"),
  19141. name: "Front",
  19142. image: {
  19143. source: "./media/characters/de'vout/front.svg",
  19144. extra: 1443 / 1328,
  19145. bottom: 0.025
  19146. }
  19147. },
  19148. back: {
  19149. height: math.unit(9.5, "feet"),
  19150. weight: math.unit(600, "lb"),
  19151. name: "Back",
  19152. image: {
  19153. source: "./media/characters/de'vout/back.svg",
  19154. extra: 1443 / 1328
  19155. }
  19156. },
  19157. frontDressed: {
  19158. height: math.unit(9.5, "feet"),
  19159. weight: math.unit(600, "lb"),
  19160. name: "Front (Dressed",
  19161. image: {
  19162. source: "./media/characters/de'vout/front-dressed.svg",
  19163. extra: 1443 / 1328,
  19164. bottom: 0.025
  19165. }
  19166. },
  19167. backDressed: {
  19168. height: math.unit(9.5, "feet"),
  19169. weight: math.unit(600, "lb"),
  19170. name: "Back (Dressed",
  19171. image: {
  19172. source: "./media/characters/de'vout/back-dressed.svg",
  19173. extra: 1443 / 1328
  19174. }
  19175. },
  19176. },
  19177. [
  19178. {
  19179. name: "Normal",
  19180. height: math.unit(9.5, "feet"),
  19181. default: true
  19182. },
  19183. ]
  19184. ))
  19185. characterMakers.push(() => makeCharacter(
  19186. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19187. {
  19188. front: {
  19189. height: math.unit(8, "feet"),
  19190. weight: math.unit(225, "lb"),
  19191. name: "Front",
  19192. image: {
  19193. source: "./media/characters/talana/front.svg",
  19194. extra: 1410 / 1300,
  19195. bottom: 0.015
  19196. }
  19197. },
  19198. frontDressed: {
  19199. height: math.unit(8, "feet"),
  19200. weight: math.unit(225, "lb"),
  19201. name: "Front (Dressed",
  19202. image: {
  19203. source: "./media/characters/talana/front-dressed.svg",
  19204. extra: 1410 / 1300,
  19205. bottom: 0.015
  19206. }
  19207. },
  19208. },
  19209. [
  19210. {
  19211. name: "Normal",
  19212. height: math.unit(8, "feet"),
  19213. default: true
  19214. },
  19215. ]
  19216. ))
  19217. characterMakers.push(() => makeCharacter(
  19218. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19219. {
  19220. side: {
  19221. height: math.unit(7.2, "feet"),
  19222. weight: math.unit(150, "lb"),
  19223. name: "Side",
  19224. image: {
  19225. source: "./media/characters/xeauvok/side.svg",
  19226. extra: 1975 / 1523,
  19227. bottom: 0.07
  19228. }
  19229. },
  19230. },
  19231. [
  19232. {
  19233. name: "Normal",
  19234. height: math.unit(7.2, "feet"),
  19235. default: true
  19236. },
  19237. ]
  19238. ))
  19239. characterMakers.push(() => makeCharacter(
  19240. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19241. {
  19242. side: {
  19243. height: math.unit(4, "meters"),
  19244. weight: math.unit(2200, "kg"),
  19245. name: "Side",
  19246. image: {
  19247. source: "./media/characters/zara/side.svg",
  19248. extra: 765/744,
  19249. bottom: 156/921
  19250. }
  19251. },
  19252. },
  19253. [
  19254. {
  19255. name: "Normal",
  19256. height: math.unit(4, "meters"),
  19257. default: true
  19258. },
  19259. ]
  19260. ))
  19261. characterMakers.push(() => makeCharacter(
  19262. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19263. {
  19264. side: {
  19265. height: math.unit(6, "feet"),
  19266. weight: math.unit(150, "lb"),
  19267. name: "Side",
  19268. image: {
  19269. source: "./media/characters/richard-dragon/side.svg",
  19270. extra: 845 / 340,
  19271. bottom: 0.017
  19272. }
  19273. },
  19274. maw: {
  19275. height: math.unit(2.97, "feet"),
  19276. name: "Maw",
  19277. image: {
  19278. source: "./media/characters/richard-dragon/maw.svg"
  19279. }
  19280. },
  19281. },
  19282. [
  19283. ]
  19284. ))
  19285. characterMakers.push(() => makeCharacter(
  19286. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19287. {
  19288. front: {
  19289. height: math.unit(4, "feet"),
  19290. weight: math.unit(100, "lb"),
  19291. name: "Front",
  19292. image: {
  19293. source: "./media/characters/richard-smeargle/front.svg",
  19294. extra: 2952 / 2820,
  19295. bottom: 0.028
  19296. }
  19297. },
  19298. },
  19299. [
  19300. {
  19301. name: "Normal",
  19302. height: math.unit(4, "feet"),
  19303. default: true
  19304. },
  19305. {
  19306. name: "Dynamax",
  19307. height: math.unit(20, "meters")
  19308. },
  19309. ]
  19310. ))
  19311. characterMakers.push(() => makeCharacter(
  19312. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19313. {
  19314. front: {
  19315. height: math.unit(6, "feet"),
  19316. weight: math.unit(110, "lb"),
  19317. name: "Front",
  19318. image: {
  19319. source: "./media/characters/klay/front.svg",
  19320. extra: 962 / 883,
  19321. bottom: 0.04
  19322. }
  19323. },
  19324. back: {
  19325. height: math.unit(6, "feet"),
  19326. weight: math.unit(110, "lb"),
  19327. name: "Back",
  19328. image: {
  19329. source: "./media/characters/klay/back.svg",
  19330. extra: 962 / 883
  19331. }
  19332. },
  19333. beans: {
  19334. height: math.unit(1.15, "feet"),
  19335. name: "Beans",
  19336. image: {
  19337. source: "./media/characters/klay/beans.svg"
  19338. }
  19339. },
  19340. },
  19341. [
  19342. {
  19343. name: "Micro",
  19344. height: math.unit(6, "inches")
  19345. },
  19346. {
  19347. name: "Mini",
  19348. height: math.unit(3, "feet")
  19349. },
  19350. {
  19351. name: "Normal",
  19352. height: math.unit(6, "feet"),
  19353. default: true
  19354. },
  19355. {
  19356. name: "Big",
  19357. height: math.unit(25, "feet")
  19358. },
  19359. {
  19360. name: "Macro",
  19361. height: math.unit(100, "feet")
  19362. },
  19363. {
  19364. name: "Megamacro",
  19365. height: math.unit(400, "feet")
  19366. },
  19367. ]
  19368. ))
  19369. characterMakers.push(() => makeCharacter(
  19370. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19371. {
  19372. front: {
  19373. height: math.unit(6, "feet"),
  19374. weight: math.unit(160, "lb"),
  19375. name: "Front",
  19376. image: {
  19377. source: "./media/characters/marcus/front.svg",
  19378. extra: 734 / 676,
  19379. bottom: 0.03
  19380. }
  19381. },
  19382. },
  19383. [
  19384. {
  19385. name: "Little",
  19386. height: math.unit(6, "feet")
  19387. },
  19388. {
  19389. name: "Normal",
  19390. height: math.unit(110, "feet"),
  19391. default: true
  19392. },
  19393. {
  19394. name: "Macro",
  19395. height: math.unit(250, "feet")
  19396. },
  19397. {
  19398. name: "Megamacro",
  19399. height: math.unit(1000, "feet")
  19400. },
  19401. ]
  19402. ))
  19403. characterMakers.push(() => makeCharacter(
  19404. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19405. {
  19406. front: {
  19407. height: math.unit(7, "feet"),
  19408. weight: math.unit(275, "lb"),
  19409. name: "Front",
  19410. image: {
  19411. source: "./media/characters/claude-delroute/front.svg",
  19412. extra: 902/827,
  19413. bottom: 26/928
  19414. }
  19415. },
  19416. side: {
  19417. height: math.unit(7, "feet"),
  19418. weight: math.unit(275, "lb"),
  19419. name: "Side",
  19420. image: {
  19421. source: "./media/characters/claude-delroute/side.svg",
  19422. extra: 908/853,
  19423. bottom: 16/924
  19424. }
  19425. },
  19426. back: {
  19427. height: math.unit(7, "feet"),
  19428. weight: math.unit(275, "lb"),
  19429. name: "Back",
  19430. image: {
  19431. source: "./media/characters/claude-delroute/back.svg",
  19432. extra: 911/829,
  19433. bottom: 18/929
  19434. }
  19435. },
  19436. maw: {
  19437. height: math.unit(0.6407, "meters"),
  19438. name: "Maw",
  19439. image: {
  19440. source: "./media/characters/claude-delroute/maw.svg"
  19441. }
  19442. },
  19443. },
  19444. [
  19445. {
  19446. name: "Normal",
  19447. height: math.unit(7, "feet"),
  19448. default: true
  19449. },
  19450. {
  19451. name: "Lorge",
  19452. height: math.unit(20, "feet")
  19453. },
  19454. ]
  19455. ))
  19456. characterMakers.push(() => makeCharacter(
  19457. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19458. {
  19459. front: {
  19460. height: math.unit(8 + 4 / 12, "feet"),
  19461. weight: math.unit(600, "lb"),
  19462. name: "Front",
  19463. image: {
  19464. source: "./media/characters/dragonien/front.svg",
  19465. extra: 100 / 94,
  19466. bottom: 3.3 / 103.3445
  19467. }
  19468. },
  19469. back: {
  19470. height: math.unit(8 + 4 / 12, "feet"),
  19471. weight: math.unit(600, "lb"),
  19472. name: "Back",
  19473. image: {
  19474. source: "./media/characters/dragonien/back.svg",
  19475. extra: 776 / 746,
  19476. bottom: 6.4 / 782.0616
  19477. }
  19478. },
  19479. foot: {
  19480. height: math.unit(1.54, "feet"),
  19481. name: "Foot",
  19482. image: {
  19483. source: "./media/characters/dragonien/foot.svg",
  19484. }
  19485. },
  19486. },
  19487. [
  19488. {
  19489. name: "Normal",
  19490. height: math.unit(8 + 4 / 12, "feet"),
  19491. default: true
  19492. },
  19493. {
  19494. name: "Macro",
  19495. height: math.unit(200, "feet")
  19496. },
  19497. {
  19498. name: "Megamacro",
  19499. height: math.unit(1, "mile")
  19500. },
  19501. {
  19502. name: "Gigamacro",
  19503. height: math.unit(1000, "miles")
  19504. },
  19505. ]
  19506. ))
  19507. characterMakers.push(() => makeCharacter(
  19508. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19509. {
  19510. front: {
  19511. height: math.unit(5 + 2 / 12, "feet"),
  19512. weight: math.unit(110, "lb"),
  19513. name: "Front",
  19514. image: {
  19515. source: "./media/characters/desta/front.svg",
  19516. extra: 767 / 726,
  19517. bottom: 11.7 / 779
  19518. }
  19519. },
  19520. back: {
  19521. height: math.unit(5 + 2 / 12, "feet"),
  19522. weight: math.unit(110, "lb"),
  19523. name: "Back",
  19524. image: {
  19525. source: "./media/characters/desta/back.svg",
  19526. extra: 777 / 728,
  19527. bottom: 6 / 784
  19528. }
  19529. },
  19530. frontAlt: {
  19531. height: math.unit(5 + 2 / 12, "feet"),
  19532. weight: math.unit(110, "lb"),
  19533. name: "Front",
  19534. image: {
  19535. source: "./media/characters/desta/front-alt.svg",
  19536. extra: 1482 / 1417
  19537. }
  19538. },
  19539. side: {
  19540. height: math.unit(5 + 2 / 12, "feet"),
  19541. weight: math.unit(110, "lb"),
  19542. name: "Side",
  19543. image: {
  19544. source: "./media/characters/desta/side.svg",
  19545. extra: 2579 / 2491,
  19546. bottom: 0.053
  19547. }
  19548. },
  19549. },
  19550. [
  19551. {
  19552. name: "Micro",
  19553. height: math.unit(6, "inches")
  19554. },
  19555. {
  19556. name: "Normal",
  19557. height: math.unit(5 + 2 / 12, "feet"),
  19558. default: true
  19559. },
  19560. {
  19561. name: "Macro",
  19562. height: math.unit(62, "feet")
  19563. },
  19564. {
  19565. name: "Megamacro",
  19566. height: math.unit(1800, "feet")
  19567. },
  19568. ]
  19569. ))
  19570. characterMakers.push(() => makeCharacter(
  19571. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19572. {
  19573. front: {
  19574. height: math.unit(10, "feet"),
  19575. weight: math.unit(700, "lb"),
  19576. name: "Front",
  19577. image: {
  19578. source: "./media/characters/storm-alystar/front.svg",
  19579. extra: 2112 / 1898,
  19580. bottom: 0.034
  19581. }
  19582. },
  19583. },
  19584. [
  19585. {
  19586. name: "Micro",
  19587. height: math.unit(3.5, "inches")
  19588. },
  19589. {
  19590. name: "Normal",
  19591. height: math.unit(10, "feet"),
  19592. default: true
  19593. },
  19594. {
  19595. name: "Macro",
  19596. height: math.unit(400, "feet")
  19597. },
  19598. {
  19599. name: "Deific",
  19600. height: math.unit(60, "miles")
  19601. },
  19602. ]
  19603. ))
  19604. characterMakers.push(() => makeCharacter(
  19605. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19606. {
  19607. front: {
  19608. height: math.unit(2.35, "meters"),
  19609. weight: math.unit(119, "kg"),
  19610. name: "Front",
  19611. image: {
  19612. source: "./media/characters/ilia/front.svg",
  19613. extra: 1285 / 1255,
  19614. bottom: 0.06
  19615. }
  19616. },
  19617. },
  19618. [
  19619. {
  19620. name: "Normal",
  19621. height: math.unit(2.35, "meters")
  19622. },
  19623. {
  19624. name: "Macro",
  19625. height: math.unit(140, "meters"),
  19626. default: true
  19627. },
  19628. {
  19629. name: "Megamacro",
  19630. height: math.unit(100, "miles")
  19631. },
  19632. ]
  19633. ))
  19634. characterMakers.push(() => makeCharacter(
  19635. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19636. {
  19637. front: {
  19638. height: math.unit(6 + 5 / 12, "feet"),
  19639. weight: math.unit(190, "lb"),
  19640. name: "Front",
  19641. image: {
  19642. source: "./media/characters/kingdead/front.svg",
  19643. extra: 1228 / 1177
  19644. }
  19645. },
  19646. },
  19647. [
  19648. {
  19649. name: "Micro",
  19650. height: math.unit(7, "inches")
  19651. },
  19652. {
  19653. name: "Normal",
  19654. height: math.unit(6 + 5 / 12, "feet")
  19655. },
  19656. {
  19657. name: "Macro",
  19658. height: math.unit(150, "feet"),
  19659. default: true
  19660. },
  19661. {
  19662. name: "Megamacro",
  19663. height: math.unit(200, "miles")
  19664. },
  19665. ]
  19666. ))
  19667. characterMakers.push(() => makeCharacter(
  19668. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19669. {
  19670. front: {
  19671. height: math.unit(8, "feet"),
  19672. weight: math.unit(600, "lb"),
  19673. name: "Front",
  19674. image: {
  19675. source: "./media/characters/kyrehx/front.svg",
  19676. extra: 1195 / 1095,
  19677. bottom: 0.034
  19678. }
  19679. },
  19680. },
  19681. [
  19682. {
  19683. name: "Micro",
  19684. height: math.unit(2, "inches")
  19685. },
  19686. {
  19687. name: "Normal",
  19688. height: math.unit(8, "feet"),
  19689. default: true
  19690. },
  19691. {
  19692. name: "Macro",
  19693. height: math.unit(255, "feet")
  19694. },
  19695. ]
  19696. ))
  19697. characterMakers.push(() => makeCharacter(
  19698. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19699. {
  19700. front: {
  19701. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19702. weight: math.unit(184, "lb"),
  19703. name: "Front",
  19704. image: {
  19705. source: "./media/characters/xang/front.svg",
  19706. extra: 845 / 755
  19707. }
  19708. },
  19709. },
  19710. [
  19711. {
  19712. name: "Normal",
  19713. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19714. default: true
  19715. },
  19716. {
  19717. name: "Macro",
  19718. height: math.unit(0.935 * 146, "feet")
  19719. },
  19720. {
  19721. name: "Megamacro",
  19722. height: math.unit(0.935 * 3, "miles")
  19723. },
  19724. ]
  19725. ))
  19726. characterMakers.push(() => makeCharacter(
  19727. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19728. {
  19729. frontDressed: {
  19730. height: math.unit(5 + 7 / 12, "feet"),
  19731. weight: math.unit(140, "lb"),
  19732. name: "Front (Dressed)",
  19733. image: {
  19734. source: "./media/characters/doc-weardno/front-dressed.svg",
  19735. extra: 263 / 234
  19736. }
  19737. },
  19738. backDressed: {
  19739. height: math.unit(5 + 7 / 12, "feet"),
  19740. weight: math.unit(140, "lb"),
  19741. name: "Back (Dressed)",
  19742. image: {
  19743. source: "./media/characters/doc-weardno/back-dressed.svg",
  19744. extra: 266 / 238
  19745. }
  19746. },
  19747. front: {
  19748. height: math.unit(5 + 7 / 12, "feet"),
  19749. weight: math.unit(140, "lb"),
  19750. name: "Front",
  19751. image: {
  19752. source: "./media/characters/doc-weardno/front.svg",
  19753. extra: 254 / 233
  19754. }
  19755. },
  19756. },
  19757. [
  19758. {
  19759. name: "Micro",
  19760. height: math.unit(3, "inches")
  19761. },
  19762. {
  19763. name: "Normal",
  19764. height: math.unit(5 + 7 / 12, "feet"),
  19765. default: true
  19766. },
  19767. {
  19768. name: "Macro",
  19769. height: math.unit(25, "feet")
  19770. },
  19771. {
  19772. name: "Megamacro",
  19773. height: math.unit(2, "miles")
  19774. },
  19775. ]
  19776. ))
  19777. characterMakers.push(() => makeCharacter(
  19778. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19779. {
  19780. front: {
  19781. height: math.unit(6 + 2 / 12, "feet"),
  19782. weight: math.unit(153, "lb"),
  19783. name: "Front",
  19784. image: {
  19785. source: "./media/characters/seth-whilst/front.svg",
  19786. bottom: 0.07
  19787. }
  19788. },
  19789. },
  19790. [
  19791. {
  19792. name: "Micro",
  19793. height: math.unit(5, "inches")
  19794. },
  19795. {
  19796. name: "Normal",
  19797. height: math.unit(6 + 2 / 12, "feet"),
  19798. default: true
  19799. },
  19800. ]
  19801. ))
  19802. characterMakers.push(() => makeCharacter(
  19803. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19804. {
  19805. front: {
  19806. height: math.unit(3, "inches"),
  19807. weight: math.unit(8, "grams"),
  19808. name: "Front",
  19809. image: {
  19810. source: "./media/characters/pocket-jabari/front.svg",
  19811. extra: 1024 / 974,
  19812. bottom: 0.039
  19813. }
  19814. },
  19815. },
  19816. [
  19817. {
  19818. name: "Minimicro",
  19819. height: math.unit(8, "mm")
  19820. },
  19821. {
  19822. name: "Micro",
  19823. height: math.unit(3, "inches"),
  19824. default: true
  19825. },
  19826. {
  19827. name: "Normal",
  19828. height: math.unit(3, "feet")
  19829. },
  19830. ]
  19831. ))
  19832. characterMakers.push(() => makeCharacter(
  19833. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19834. {
  19835. frontDressed: {
  19836. height: math.unit(15, "feet"),
  19837. weight: math.unit(3280, "lb"),
  19838. name: "Front (Dressed)",
  19839. image: {
  19840. source: "./media/characters/sapphy/front-dressed.svg",
  19841. extra: 1951/1654,
  19842. bottom: 194/2145
  19843. },
  19844. form: "anthro",
  19845. default: true
  19846. },
  19847. backDressed: {
  19848. height: math.unit(15, "feet"),
  19849. weight: math.unit(3280, "lb"),
  19850. name: "Back (Dressed)",
  19851. image: {
  19852. source: "./media/characters/sapphy/back-dressed.svg",
  19853. extra: 2058/1918,
  19854. bottom: 125/2183
  19855. },
  19856. form: "anthro"
  19857. },
  19858. frontNude: {
  19859. height: math.unit(15, "feet"),
  19860. weight: math.unit(3280, "lb"),
  19861. name: "Front (Nude)",
  19862. image: {
  19863. source: "./media/characters/sapphy/front-nude.svg",
  19864. extra: 1951/1654,
  19865. bottom: 194/2145
  19866. },
  19867. form: "anthro"
  19868. },
  19869. backNude: {
  19870. height: math.unit(15, "feet"),
  19871. weight: math.unit(3280, "lb"),
  19872. name: "Back (Nude)",
  19873. image: {
  19874. source: "./media/characters/sapphy/back-nude.svg",
  19875. extra: 2058/1918,
  19876. bottom: 125/2183
  19877. },
  19878. form: "anthro"
  19879. },
  19880. full: {
  19881. height: math.unit(15, "feet"),
  19882. weight: math.unit(3280, "lb"),
  19883. name: "Full",
  19884. image: {
  19885. source: "./media/characters/sapphy/full.svg",
  19886. extra: 1396/1317,
  19887. bottom: 44/1440
  19888. },
  19889. form: "anthro"
  19890. },
  19891. dick: {
  19892. height: math.unit(3.8, "feet"),
  19893. name: "Dick",
  19894. image: {
  19895. source: "./media/characters/sapphy/dick.svg"
  19896. },
  19897. form: "anthro"
  19898. },
  19899. feral: {
  19900. height: math.unit(35, "feet"),
  19901. weight: math.unit(160, "tons"),
  19902. name: "Feral",
  19903. image: {
  19904. source: "./media/characters/sapphy/feral.svg",
  19905. extra: 1050/573,
  19906. bottom: 60/1110
  19907. },
  19908. form: "feral",
  19909. default: true
  19910. },
  19911. },
  19912. [
  19913. {
  19914. name: "Normal",
  19915. height: math.unit(15, "feet"),
  19916. form: "anthro"
  19917. },
  19918. {
  19919. name: "Casual Macro",
  19920. height: math.unit(120, "feet"),
  19921. form: "anthro"
  19922. },
  19923. {
  19924. name: "Macro",
  19925. height: math.unit(2150, "feet"),
  19926. default: true,
  19927. form: "anthro"
  19928. },
  19929. {
  19930. name: "Megamacro",
  19931. height: math.unit(8, "miles"),
  19932. form: "anthro"
  19933. },
  19934. {
  19935. name: "Galaxy Mom",
  19936. height: math.unit(6, "megalightyears"),
  19937. form: "anthro"
  19938. },
  19939. {
  19940. name: "Normal",
  19941. height: math.unit(35, "feet"),
  19942. form: "feral",
  19943. default: true
  19944. },
  19945. {
  19946. name: "Macro",
  19947. height: math.unit(300, "feet"),
  19948. form: "feral"
  19949. },
  19950. {
  19951. name: "Galaxy Mom",
  19952. height: math.unit(10, "megalightyears"),
  19953. form: "feral"
  19954. },
  19955. ],
  19956. {
  19957. "anthro": {
  19958. name: "Anthro",
  19959. default: true
  19960. },
  19961. "feral": {
  19962. name: "Feral"
  19963. }
  19964. }
  19965. ))
  19966. characterMakers.push(() => makeCharacter(
  19967. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  19968. {
  19969. hyenaFront: {
  19970. height: math.unit(6, "feet"),
  19971. weight: math.unit(190, "lb"),
  19972. name: "Front",
  19973. image: {
  19974. source: "./media/characters/kiro/hyena-front.svg",
  19975. extra: 927/839,
  19976. bottom: 91/1018
  19977. },
  19978. form: "hyena",
  19979. default: true
  19980. },
  19981. front: {
  19982. height: math.unit(6, "feet"),
  19983. weight: math.unit(170, "lb"),
  19984. name: "Front",
  19985. image: {
  19986. source: "./media/characters/kiro/front.svg",
  19987. extra: 1064 / 1012,
  19988. bottom: 0.052
  19989. },
  19990. form: "folf",
  19991. default: true
  19992. },
  19993. },
  19994. [
  19995. {
  19996. name: "Micro",
  19997. height: math.unit(6, "inches"),
  19998. form: "folf"
  19999. },
  20000. {
  20001. name: "Normal",
  20002. height: math.unit(6, "feet"),
  20003. form: "folf",
  20004. default: true
  20005. },
  20006. {
  20007. name: "Macro",
  20008. height: math.unit(72, "feet"),
  20009. form: "folf"
  20010. },
  20011. {
  20012. name: "Micro",
  20013. height: math.unit(6, "inches"),
  20014. form: "hyena"
  20015. },
  20016. {
  20017. name: "Normal",
  20018. height: math.unit(6, "feet"),
  20019. form: "hyena",
  20020. default: true
  20021. },
  20022. {
  20023. name: "Macro",
  20024. height: math.unit(72, "feet"),
  20025. form: "hyena"
  20026. },
  20027. ],
  20028. {
  20029. "hyena": {
  20030. name: "Hyena",
  20031. default: true
  20032. },
  20033. "folf": {
  20034. name: "Folf",
  20035. },
  20036. }
  20037. ))
  20038. characterMakers.push(() => makeCharacter(
  20039. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20040. {
  20041. front: {
  20042. height: math.unit(5 + 9 / 12, "feet"),
  20043. weight: math.unit(175, "lb"),
  20044. name: "Front",
  20045. image: {
  20046. source: "./media/characters/irishfox/front.svg",
  20047. extra: 1912 / 1680,
  20048. bottom: 0.02
  20049. }
  20050. },
  20051. },
  20052. [
  20053. {
  20054. name: "Nano",
  20055. height: math.unit(1, "mm")
  20056. },
  20057. {
  20058. name: "Micro",
  20059. height: math.unit(2, "inches")
  20060. },
  20061. {
  20062. name: "Normal",
  20063. height: math.unit(5 + 9 / 12, "feet"),
  20064. default: true
  20065. },
  20066. {
  20067. name: "Macro",
  20068. height: math.unit(45, "feet")
  20069. },
  20070. ]
  20071. ))
  20072. characterMakers.push(() => makeCharacter(
  20073. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20074. {
  20075. front: {
  20076. height: math.unit(6 + 1 / 12, "feet"),
  20077. weight: math.unit(75, "lb"),
  20078. name: "Front",
  20079. image: {
  20080. source: "./media/characters/aronai-sieyes/front.svg",
  20081. extra: 1532/1450,
  20082. bottom: 42/1574
  20083. }
  20084. },
  20085. side: {
  20086. height: math.unit(6 + 1 / 12, "feet"),
  20087. weight: math.unit(75, "lb"),
  20088. name: "Side",
  20089. image: {
  20090. source: "./media/characters/aronai-sieyes/side.svg",
  20091. extra: 1422/1365,
  20092. bottom: 148/1570
  20093. }
  20094. },
  20095. back: {
  20096. height: math.unit(6 + 1 / 12, "feet"),
  20097. weight: math.unit(75, "lb"),
  20098. name: "Back",
  20099. image: {
  20100. source: "./media/characters/aronai-sieyes/back.svg",
  20101. extra: 1526/1464,
  20102. bottom: 51/1577
  20103. }
  20104. },
  20105. dressed: {
  20106. height: math.unit(6 + 1 / 12, "feet"),
  20107. weight: math.unit(75, "lb"),
  20108. name: "Dressed",
  20109. image: {
  20110. source: "./media/characters/aronai-sieyes/dressed.svg",
  20111. extra: 1559/1483,
  20112. bottom: 39/1598
  20113. }
  20114. },
  20115. slit: {
  20116. height: math.unit(1.3, "feet"),
  20117. name: "Slit",
  20118. image: {
  20119. source: "./media/characters/aronai-sieyes/slit.svg"
  20120. }
  20121. },
  20122. slitSpread: {
  20123. height: math.unit(0.9, "feet"),
  20124. name: "Slit (Spread)",
  20125. image: {
  20126. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20127. }
  20128. },
  20129. rump: {
  20130. height: math.unit(1.3, "feet"),
  20131. name: "Rump",
  20132. image: {
  20133. source: "./media/characters/aronai-sieyes/rump.svg"
  20134. }
  20135. },
  20136. maw: {
  20137. height: math.unit(1.25, "feet"),
  20138. name: "Maw",
  20139. image: {
  20140. source: "./media/characters/aronai-sieyes/maw.svg"
  20141. }
  20142. },
  20143. feral: {
  20144. height: math.unit(18, "feet"),
  20145. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20146. name: "Feral",
  20147. image: {
  20148. source: "./media/characters/aronai-sieyes/feral.svg",
  20149. extra: 1530 / 1240,
  20150. bottom: 0.035
  20151. }
  20152. },
  20153. },
  20154. [
  20155. {
  20156. name: "Micro",
  20157. height: math.unit(2, "inches")
  20158. },
  20159. {
  20160. name: "Normal",
  20161. height: math.unit(6 + 1 / 12, "feet"),
  20162. default: true
  20163. }
  20164. ]
  20165. ))
  20166. characterMakers.push(() => makeCharacter(
  20167. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20168. {
  20169. front: {
  20170. height: math.unit(12, "feet"),
  20171. weight: math.unit(410, "kg"),
  20172. name: "Front",
  20173. image: {
  20174. source: "./media/characters/xuna/front.svg",
  20175. extra: 2184 / 1980
  20176. }
  20177. },
  20178. side: {
  20179. height: math.unit(12, "feet"),
  20180. weight: math.unit(410, "kg"),
  20181. name: "Side",
  20182. image: {
  20183. source: "./media/characters/xuna/side.svg",
  20184. extra: 2184 / 1980
  20185. }
  20186. },
  20187. back: {
  20188. height: math.unit(12, "feet"),
  20189. weight: math.unit(410, "kg"),
  20190. name: "Back",
  20191. image: {
  20192. source: "./media/characters/xuna/back.svg",
  20193. extra: 2184 / 1980
  20194. }
  20195. },
  20196. },
  20197. [
  20198. {
  20199. name: "Nano glow",
  20200. height: math.unit(10, "nm")
  20201. },
  20202. {
  20203. name: "Micro floof",
  20204. height: math.unit(0.3, "m")
  20205. },
  20206. {
  20207. name: "Huggable softy boi",
  20208. height: math.unit(3.6576, "m"),
  20209. default: true
  20210. },
  20211. {
  20212. name: "Admirable floof",
  20213. height: math.unit(80, "meters")
  20214. },
  20215. {
  20216. name: "Gentle macro",
  20217. height: math.unit(300, "meters")
  20218. },
  20219. {
  20220. name: "Very careful floof",
  20221. height: math.unit(3200, "meters")
  20222. },
  20223. {
  20224. name: "The mega floof",
  20225. height: math.unit(36000, "meters")
  20226. },
  20227. {
  20228. name: "Giga-fur-Wicker",
  20229. height: math.unit(4800000, "meters")
  20230. },
  20231. {
  20232. name: "Licky world",
  20233. height: math.unit(20000000, "meters")
  20234. },
  20235. {
  20236. name: "Floofy cyan sun",
  20237. height: math.unit(1500000000, "meters")
  20238. },
  20239. {
  20240. name: "Milky Wicker",
  20241. height: math.unit(1000000000000000000000, "meters")
  20242. },
  20243. {
  20244. name: "The observing Wicker",
  20245. height: math.unit(999999999999999999999999999, "meters")
  20246. },
  20247. ]
  20248. ))
  20249. characterMakers.push(() => makeCharacter(
  20250. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20251. {
  20252. front: {
  20253. height: math.unit(5 + 9 / 12, "feet"),
  20254. weight: math.unit(150, "lb"),
  20255. name: "Front",
  20256. image: {
  20257. source: "./media/characters/arokha-sieyes/front.svg",
  20258. extra: 1425 / 1284,
  20259. bottom: 0.05
  20260. }
  20261. },
  20262. },
  20263. [
  20264. {
  20265. name: "Normal",
  20266. height: math.unit(5 + 9 / 12, "feet")
  20267. },
  20268. {
  20269. name: "Macro",
  20270. height: math.unit(30, "meters"),
  20271. default: true
  20272. },
  20273. ]
  20274. ))
  20275. characterMakers.push(() => makeCharacter(
  20276. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20277. {
  20278. front: {
  20279. height: math.unit(6, "feet"),
  20280. weight: math.unit(180, "lb"),
  20281. name: "Front",
  20282. image: {
  20283. source: "./media/characters/arokh-sieyes/front.svg",
  20284. extra: 1830 / 1769,
  20285. bottom: 0.01
  20286. }
  20287. },
  20288. },
  20289. [
  20290. {
  20291. name: "Normal",
  20292. height: math.unit(6, "feet")
  20293. },
  20294. {
  20295. name: "Macro",
  20296. height: math.unit(30, "meters"),
  20297. default: true
  20298. },
  20299. ]
  20300. ))
  20301. characterMakers.push(() => makeCharacter(
  20302. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20303. {
  20304. side: {
  20305. height: math.unit(13 + 1 / 12, "feet"),
  20306. weight: math.unit(8.5, "tonnes"),
  20307. name: "Side",
  20308. image: {
  20309. source: "./media/characters/goldeneye/side.svg",
  20310. extra: 1139/741,
  20311. bottom: 98/1237
  20312. }
  20313. },
  20314. front: {
  20315. height: math.unit(5.1, "feet"),
  20316. weight: math.unit(8.5, "tonnes"),
  20317. name: "Front",
  20318. image: {
  20319. source: "./media/characters/goldeneye/front.svg",
  20320. extra: 635/365,
  20321. bottom: 598/1233
  20322. }
  20323. },
  20324. maw: {
  20325. height: math.unit(6.6, "feet"),
  20326. name: "Maw",
  20327. image: {
  20328. source: "./media/characters/goldeneye/maw.svg"
  20329. }
  20330. },
  20331. headFront: {
  20332. height: math.unit(8, "feet"),
  20333. name: "Head (Front)",
  20334. image: {
  20335. source: "./media/characters/goldeneye/head-front.svg"
  20336. }
  20337. },
  20338. headSide: {
  20339. height: math.unit(6, "feet"),
  20340. name: "Head (Side)",
  20341. image: {
  20342. source: "./media/characters/goldeneye/head-side.svg"
  20343. }
  20344. },
  20345. headBack: {
  20346. height: math.unit(8, "feet"),
  20347. name: "Head (Back)",
  20348. image: {
  20349. source: "./media/characters/goldeneye/head-back.svg"
  20350. }
  20351. },
  20352. paw: {
  20353. height: math.unit(3.4, "feet"),
  20354. name: "Paw",
  20355. image: {
  20356. source: "./media/characters/goldeneye/paw.svg"
  20357. }
  20358. },
  20359. toering: {
  20360. height: math.unit(0.45, "feet"),
  20361. name: "Toering",
  20362. image: {
  20363. source: "./media/characters/goldeneye/toering.svg"
  20364. }
  20365. },
  20366. eyes: {
  20367. height: math.unit(0.5, "feet"),
  20368. name: "Eyes",
  20369. image: {
  20370. source: "./media/characters/goldeneye/eyes.svg"
  20371. }
  20372. },
  20373. },
  20374. [
  20375. {
  20376. name: "Normal",
  20377. height: math.unit(13 + 1 / 12, "feet"),
  20378. default: true
  20379. },
  20380. ]
  20381. ))
  20382. characterMakers.push(() => makeCharacter(
  20383. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20384. {
  20385. front: {
  20386. height: math.unit(6 + 1 / 12, "feet"),
  20387. weight: math.unit(210, "lb"),
  20388. name: "Front",
  20389. image: {
  20390. source: "./media/characters/leonardo-lycheborne/front.svg",
  20391. extra: 776/723,
  20392. bottom: 34/810
  20393. }
  20394. },
  20395. side: {
  20396. height: math.unit(6 + 1 / 12, "feet"),
  20397. weight: math.unit(210, "lb"),
  20398. name: "Side",
  20399. image: {
  20400. source: "./media/characters/leonardo-lycheborne/side.svg",
  20401. extra: 780/728,
  20402. bottom: 12/792
  20403. }
  20404. },
  20405. back: {
  20406. height: math.unit(6 + 1 / 12, "feet"),
  20407. weight: math.unit(210, "lb"),
  20408. name: "Back",
  20409. image: {
  20410. source: "./media/characters/leonardo-lycheborne/back.svg",
  20411. extra: 775/721,
  20412. bottom: 17/792
  20413. }
  20414. },
  20415. hand: {
  20416. height: math.unit(1.08, "feet"),
  20417. name: "Hand",
  20418. image: {
  20419. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20420. }
  20421. },
  20422. foot: {
  20423. height: math.unit(1.32, "feet"),
  20424. name: "Foot",
  20425. image: {
  20426. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20427. }
  20428. },
  20429. maw: {
  20430. height: math.unit(1, "feet"),
  20431. name: "Maw",
  20432. image: {
  20433. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20434. }
  20435. },
  20436. were: {
  20437. height: math.unit(20, "feet"),
  20438. weight: math.unit(7800, "lb"),
  20439. name: "Were",
  20440. image: {
  20441. source: "./media/characters/leonardo-lycheborne/were.svg",
  20442. extra: 1224/1165,
  20443. bottom: 72/1296
  20444. }
  20445. },
  20446. feral: {
  20447. height: math.unit(7.5, "feet"),
  20448. weight: math.unit(600, "lb"),
  20449. name: "Feral",
  20450. image: {
  20451. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20452. extra: 797/702,
  20453. bottom: 139/936
  20454. }
  20455. },
  20456. taur: {
  20457. height: math.unit(11, "feet"),
  20458. weight: math.unit(3300, "lb"),
  20459. name: "Taur",
  20460. image: {
  20461. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20462. extra: 1271/1197,
  20463. bottom: 47/1318
  20464. }
  20465. },
  20466. barghest: {
  20467. height: math.unit(11, "feet"),
  20468. weight: math.unit(1300, "lb"),
  20469. name: "Barghest",
  20470. image: {
  20471. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20472. extra: 1291/1204,
  20473. bottom: 37/1328
  20474. }
  20475. },
  20476. dick: {
  20477. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20478. name: "Dick",
  20479. image: {
  20480. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20481. }
  20482. },
  20483. dickWere: {
  20484. height: math.unit((20) / 3.8, "feet"),
  20485. name: "Dick (Were)",
  20486. image: {
  20487. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20488. }
  20489. },
  20490. },
  20491. [
  20492. {
  20493. name: "Normal",
  20494. height: math.unit(6 + 1 / 12, "feet"),
  20495. default: true
  20496. },
  20497. ]
  20498. ))
  20499. characterMakers.push(() => makeCharacter(
  20500. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20501. {
  20502. front: {
  20503. height: math.unit(10, "feet"),
  20504. weight: math.unit(350, "lb"),
  20505. name: "Front",
  20506. image: {
  20507. source: "./media/characters/jet/front.svg",
  20508. extra: 2050 / 1980,
  20509. bottom: 0.013
  20510. }
  20511. },
  20512. back: {
  20513. height: math.unit(10, "feet"),
  20514. weight: math.unit(350, "lb"),
  20515. name: "Back",
  20516. image: {
  20517. source: "./media/characters/jet/back.svg",
  20518. extra: 2050 / 1980,
  20519. bottom: 0.013
  20520. }
  20521. },
  20522. },
  20523. [
  20524. {
  20525. name: "Micro",
  20526. height: math.unit(6, "inches")
  20527. },
  20528. {
  20529. name: "Normal",
  20530. height: math.unit(10, "feet"),
  20531. default: true
  20532. },
  20533. {
  20534. name: "Macro",
  20535. height: math.unit(100, "feet")
  20536. },
  20537. ]
  20538. ))
  20539. characterMakers.push(() => makeCharacter(
  20540. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20541. {
  20542. front: {
  20543. height: math.unit(15, "feet"),
  20544. weight: math.unit(2800, "lb"),
  20545. name: "Front",
  20546. image: {
  20547. source: "./media/characters/tanarath/front.svg",
  20548. extra: 2392 / 2220,
  20549. bottom: 0.03
  20550. }
  20551. },
  20552. back: {
  20553. height: math.unit(15, "feet"),
  20554. weight: math.unit(2800, "lb"),
  20555. name: "Back",
  20556. image: {
  20557. source: "./media/characters/tanarath/back.svg",
  20558. extra: 2392 / 2220,
  20559. bottom: 0.03
  20560. }
  20561. },
  20562. },
  20563. [
  20564. {
  20565. name: "Normal",
  20566. height: math.unit(15, "feet"),
  20567. default: true
  20568. },
  20569. ]
  20570. ))
  20571. characterMakers.push(() => makeCharacter(
  20572. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20573. {
  20574. front: {
  20575. height: math.unit(7 + 1 / 12, "feet"),
  20576. weight: math.unit(175, "lb"),
  20577. name: "Front",
  20578. image: {
  20579. source: "./media/characters/patty-cattybatty/front.svg",
  20580. extra: 908 / 874,
  20581. bottom: 0.025
  20582. }
  20583. },
  20584. },
  20585. [
  20586. {
  20587. name: "Micro",
  20588. height: math.unit(1, "inch")
  20589. },
  20590. {
  20591. name: "Normal",
  20592. height: math.unit(7 + 1 / 12, "feet")
  20593. },
  20594. {
  20595. name: "Mini Macro",
  20596. height: math.unit(155, "feet")
  20597. },
  20598. {
  20599. name: "Macro",
  20600. height: math.unit(1077, "feet")
  20601. },
  20602. {
  20603. name: "Mega Macro",
  20604. height: math.unit(47650, "feet"),
  20605. default: true
  20606. },
  20607. {
  20608. name: "Giga Macro",
  20609. height: math.unit(440, "miles")
  20610. },
  20611. {
  20612. name: "Tera Macro",
  20613. height: math.unit(8700, "miles")
  20614. },
  20615. {
  20616. name: "Planetary Macro",
  20617. height: math.unit(32700, "miles")
  20618. },
  20619. {
  20620. name: "Solar Macro",
  20621. height: math.unit(550000, "miles")
  20622. },
  20623. {
  20624. name: "Celestial Macro",
  20625. height: math.unit(2.5, "AU")
  20626. },
  20627. ]
  20628. ))
  20629. characterMakers.push(() => makeCharacter(
  20630. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20631. {
  20632. front: {
  20633. height: math.unit(4 + 5 / 12, "feet"),
  20634. weight: math.unit(90, "lb"),
  20635. name: "Front",
  20636. image: {
  20637. source: "./media/characters/cappu/front.svg",
  20638. extra: 1247 / 1152,
  20639. bottom: 0.012
  20640. }
  20641. },
  20642. },
  20643. [
  20644. {
  20645. name: "Normal",
  20646. height: math.unit(4 + 5 / 12, "feet"),
  20647. default: true
  20648. },
  20649. ]
  20650. ))
  20651. characterMakers.push(() => makeCharacter(
  20652. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20653. {
  20654. frontDressed: {
  20655. height: math.unit(70, "cm"),
  20656. weight: math.unit(6, "kg"),
  20657. name: "Front (Dressed)",
  20658. image: {
  20659. source: "./media/characters/sebi/front-dressed.svg",
  20660. extra: 713.5 / 686.5,
  20661. bottom: 0.003
  20662. }
  20663. },
  20664. front: {
  20665. height: math.unit(70, "cm"),
  20666. weight: math.unit(5, "kg"),
  20667. name: "Front",
  20668. image: {
  20669. source: "./media/characters/sebi/front.svg",
  20670. extra: 713.5 / 686.5,
  20671. bottom: 0.003
  20672. }
  20673. }
  20674. },
  20675. [
  20676. {
  20677. name: "Normal",
  20678. height: math.unit(70, "cm"),
  20679. default: true
  20680. },
  20681. {
  20682. name: "Macro",
  20683. height: math.unit(8, "meters")
  20684. },
  20685. ]
  20686. ))
  20687. characterMakers.push(() => makeCharacter(
  20688. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20689. {
  20690. front: {
  20691. height: math.unit(6, "feet"),
  20692. weight: math.unit(150, "lb"),
  20693. name: "Front",
  20694. image: {
  20695. source: "./media/characters/typhek/front.svg",
  20696. extra: 1948 / 1929,
  20697. bottom: 0.025
  20698. }
  20699. },
  20700. side: {
  20701. height: math.unit(6, "feet"),
  20702. weight: math.unit(150, "lb"),
  20703. name: "Side",
  20704. image: {
  20705. source: "./media/characters/typhek/side.svg",
  20706. extra: 2034 / 2010,
  20707. bottom: 0.003
  20708. }
  20709. },
  20710. back: {
  20711. height: math.unit(6, "feet"),
  20712. weight: math.unit(150, "lb"),
  20713. name: "Back",
  20714. image: {
  20715. source: "./media/characters/typhek/back.svg",
  20716. extra: 2005 / 1978,
  20717. bottom: 0.004
  20718. }
  20719. },
  20720. palm: {
  20721. height: math.unit(1.2, "feet"),
  20722. name: "Palm",
  20723. image: {
  20724. source: "./media/characters/typhek/palm.svg"
  20725. }
  20726. },
  20727. fist: {
  20728. height: math.unit(1.1, "feet"),
  20729. name: "Fist",
  20730. image: {
  20731. source: "./media/characters/typhek/fist.svg"
  20732. }
  20733. },
  20734. foot: {
  20735. height: math.unit(1.57, "feet"),
  20736. name: "Foot",
  20737. image: {
  20738. source: "./media/characters/typhek/foot.svg"
  20739. }
  20740. },
  20741. sole: {
  20742. height: math.unit(2.05, "feet"),
  20743. name: "Sole",
  20744. image: {
  20745. source: "./media/characters/typhek/sole.svg"
  20746. }
  20747. },
  20748. },
  20749. [
  20750. {
  20751. name: "Macro",
  20752. height: math.unit(40, "stories"),
  20753. default: true
  20754. },
  20755. {
  20756. name: "Megamacro",
  20757. height: math.unit(1, "mile")
  20758. },
  20759. {
  20760. name: "Gigamacro",
  20761. height: math.unit(4000, "solarradii")
  20762. },
  20763. {
  20764. name: "Universal",
  20765. height: math.unit(1.1, "universes")
  20766. }
  20767. ]
  20768. ))
  20769. characterMakers.push(() => makeCharacter(
  20770. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20771. {
  20772. side: {
  20773. height: math.unit(5 + 7 / 12, "feet"),
  20774. weight: math.unit(150, "lb"),
  20775. name: "Side",
  20776. image: {
  20777. source: "./media/characters/kassy/side.svg",
  20778. extra: 1280 / 1225,
  20779. bottom: 0.002
  20780. }
  20781. },
  20782. front: {
  20783. height: math.unit(5 + 7 / 12, "feet"),
  20784. weight: math.unit(150, "lb"),
  20785. name: "Front",
  20786. image: {
  20787. source: "./media/characters/kassy/front.svg",
  20788. extra: 1280 / 1225,
  20789. bottom: 0.025
  20790. }
  20791. },
  20792. back: {
  20793. height: math.unit(5 + 7 / 12, "feet"),
  20794. weight: math.unit(150, "lb"),
  20795. name: "Back",
  20796. image: {
  20797. source: "./media/characters/kassy/back.svg",
  20798. extra: 1280 / 1225,
  20799. bottom: 0.002
  20800. }
  20801. },
  20802. foot: {
  20803. height: math.unit(1.266, "feet"),
  20804. name: "Foot",
  20805. image: {
  20806. source: "./media/characters/kassy/foot.svg"
  20807. }
  20808. },
  20809. },
  20810. [
  20811. {
  20812. name: "Normal",
  20813. height: math.unit(5 + 7 / 12, "feet")
  20814. },
  20815. {
  20816. name: "Macro",
  20817. height: math.unit(137, "feet"),
  20818. default: true
  20819. },
  20820. {
  20821. name: "Megamacro",
  20822. height: math.unit(1, "mile")
  20823. },
  20824. ]
  20825. ))
  20826. characterMakers.push(() => makeCharacter(
  20827. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20828. {
  20829. front: {
  20830. height: math.unit(6 + 1 / 12, "feet"),
  20831. weight: math.unit(200, "lb"),
  20832. name: "Front",
  20833. image: {
  20834. source: "./media/characters/neil/front.svg",
  20835. extra: 1326 / 1250,
  20836. bottom: 0.023
  20837. }
  20838. },
  20839. },
  20840. [
  20841. {
  20842. name: "Normal",
  20843. height: math.unit(6 + 1 / 12, "feet"),
  20844. default: true
  20845. },
  20846. {
  20847. name: "Macro",
  20848. height: math.unit(200, "feet")
  20849. },
  20850. ]
  20851. ))
  20852. characterMakers.push(() => makeCharacter(
  20853. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20854. {
  20855. front: {
  20856. height: math.unit(5 + 9 / 12, "feet"),
  20857. weight: math.unit(190, "lb"),
  20858. name: "Front",
  20859. image: {
  20860. source: "./media/characters/atticus/front.svg",
  20861. extra: 2934 / 2785,
  20862. bottom: 0.025
  20863. }
  20864. },
  20865. },
  20866. [
  20867. {
  20868. name: "Normal",
  20869. height: math.unit(5 + 9 / 12, "feet"),
  20870. default: true
  20871. },
  20872. {
  20873. name: "Macro",
  20874. height: math.unit(180, "feet")
  20875. },
  20876. ]
  20877. ))
  20878. characterMakers.push(() => makeCharacter(
  20879. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20880. {
  20881. side: {
  20882. height: math.unit(9, "feet"),
  20883. weight: math.unit(650, "lb"),
  20884. name: "Side",
  20885. image: {
  20886. source: "./media/characters/milo/side.svg",
  20887. extra: 2644 / 2310,
  20888. bottom: 0.032
  20889. }
  20890. },
  20891. },
  20892. [
  20893. {
  20894. name: "Normal",
  20895. height: math.unit(9, "feet"),
  20896. default: true
  20897. },
  20898. {
  20899. name: "Macro",
  20900. height: math.unit(300, "feet")
  20901. },
  20902. ]
  20903. ))
  20904. characterMakers.push(() => makeCharacter(
  20905. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20906. {
  20907. side: {
  20908. height: math.unit(8, "meters"),
  20909. weight: math.unit(90000, "kg"),
  20910. name: "Side",
  20911. image: {
  20912. source: "./media/characters/ijzer/side.svg",
  20913. extra: 2756 / 1600,
  20914. bottom: 0.01
  20915. }
  20916. },
  20917. },
  20918. [
  20919. {
  20920. name: "Small",
  20921. height: math.unit(3, "meters")
  20922. },
  20923. {
  20924. name: "Normal",
  20925. height: math.unit(8, "meters"),
  20926. default: true
  20927. },
  20928. {
  20929. name: "Normal+",
  20930. height: math.unit(10, "meters")
  20931. },
  20932. {
  20933. name: "Bigger",
  20934. height: math.unit(24, "meters")
  20935. },
  20936. {
  20937. name: "Huge",
  20938. height: math.unit(80, "meters")
  20939. },
  20940. ]
  20941. ))
  20942. characterMakers.push(() => makeCharacter(
  20943. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20944. {
  20945. front: {
  20946. height: math.unit(6 + 2 / 12, "feet"),
  20947. weight: math.unit(153, "lb"),
  20948. name: "Front",
  20949. image: {
  20950. source: "./media/characters/luca-cervicum/front.svg",
  20951. extra: 370 / 327,
  20952. bottom: 0.015
  20953. }
  20954. },
  20955. back: {
  20956. height: math.unit(6 + 2 / 12, "feet"),
  20957. weight: math.unit(153, "lb"),
  20958. name: "Back",
  20959. image: {
  20960. source: "./media/characters/luca-cervicum/back.svg",
  20961. extra: 367 / 333,
  20962. bottom: 0.005
  20963. }
  20964. },
  20965. frontGear: {
  20966. height: math.unit(6 + 2 / 12, "feet"),
  20967. weight: math.unit(173, "lb"),
  20968. name: "Front (Gear)",
  20969. image: {
  20970. source: "./media/characters/luca-cervicum/front-gear.svg",
  20971. extra: 377 / 333,
  20972. bottom: 0.006
  20973. }
  20974. },
  20975. },
  20976. [
  20977. {
  20978. name: "Normal",
  20979. height: math.unit(6 + 2 / 12, "feet"),
  20980. default: true
  20981. },
  20982. ]
  20983. ))
  20984. characterMakers.push(() => makeCharacter(
  20985. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20986. {
  20987. front: {
  20988. height: math.unit(6 + 1 / 12, "feet"),
  20989. weight: math.unit(304, "lb"),
  20990. name: "Front",
  20991. image: {
  20992. source: "./media/characters/oliver/front.svg",
  20993. extra: 157 / 143,
  20994. bottom: 0.08
  20995. }
  20996. },
  20997. },
  20998. [
  20999. {
  21000. name: "Normal",
  21001. height: math.unit(6 + 1 / 12, "feet"),
  21002. default: true
  21003. },
  21004. ]
  21005. ))
  21006. characterMakers.push(() => makeCharacter(
  21007. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21008. {
  21009. front: {
  21010. height: math.unit(5 + 7 / 12, "feet"),
  21011. weight: math.unit(140, "lb"),
  21012. name: "Front",
  21013. image: {
  21014. source: "./media/characters/shane/front.svg",
  21015. extra: 304 / 289,
  21016. bottom: 0.005
  21017. }
  21018. },
  21019. },
  21020. [
  21021. {
  21022. name: "Normal",
  21023. height: math.unit(5 + 7 / 12, "feet"),
  21024. default: true
  21025. },
  21026. ]
  21027. ))
  21028. characterMakers.push(() => makeCharacter(
  21029. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21030. {
  21031. front: {
  21032. height: math.unit(5 + 9 / 12, "feet"),
  21033. weight: math.unit(178, "lb"),
  21034. name: "Front",
  21035. image: {
  21036. source: "./media/characters/shin/front.svg",
  21037. extra: 159 / 151,
  21038. bottom: 0.015
  21039. }
  21040. },
  21041. },
  21042. [
  21043. {
  21044. name: "Normal",
  21045. height: math.unit(5 + 9 / 12, "feet"),
  21046. default: true
  21047. },
  21048. ]
  21049. ))
  21050. characterMakers.push(() => makeCharacter(
  21051. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21052. {
  21053. front: {
  21054. height: math.unit(5 + 10 / 12, "feet"),
  21055. weight: math.unit(168, "lb"),
  21056. name: "Front",
  21057. image: {
  21058. source: "./media/characters/xerxes/front.svg",
  21059. extra: 282 / 260,
  21060. bottom: 0.045
  21061. }
  21062. },
  21063. },
  21064. [
  21065. {
  21066. name: "Normal",
  21067. height: math.unit(5 + 10 / 12, "feet"),
  21068. default: true
  21069. },
  21070. ]
  21071. ))
  21072. characterMakers.push(() => makeCharacter(
  21073. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21074. {
  21075. front: {
  21076. height: math.unit(6 + 7 / 12, "feet"),
  21077. weight: math.unit(208, "lb"),
  21078. name: "Front",
  21079. image: {
  21080. source: "./media/characters/chaska/front.svg",
  21081. extra: 332 / 319,
  21082. bottom: 0.015
  21083. }
  21084. },
  21085. },
  21086. [
  21087. {
  21088. name: "Normal",
  21089. height: math.unit(6 + 7 / 12, "feet"),
  21090. default: true
  21091. },
  21092. ]
  21093. ))
  21094. characterMakers.push(() => makeCharacter(
  21095. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21096. {
  21097. front: {
  21098. height: math.unit(5 + 8 / 12, "feet"),
  21099. weight: math.unit(208, "lb"),
  21100. name: "Front",
  21101. image: {
  21102. source: "./media/characters/enuk/front.svg",
  21103. extra: 437 / 406,
  21104. bottom: 0.02
  21105. }
  21106. },
  21107. },
  21108. [
  21109. {
  21110. name: "Normal",
  21111. height: math.unit(5 + 8 / 12, "feet"),
  21112. default: true
  21113. },
  21114. ]
  21115. ))
  21116. characterMakers.push(() => makeCharacter(
  21117. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21118. {
  21119. front: {
  21120. height: math.unit(5 + 10 / 12, "feet"),
  21121. weight: math.unit(252, "lb"),
  21122. name: "Front",
  21123. image: {
  21124. source: "./media/characters/bruun/front.svg",
  21125. extra: 197 / 187,
  21126. bottom: 0.012
  21127. }
  21128. },
  21129. },
  21130. [
  21131. {
  21132. name: "Normal",
  21133. height: math.unit(5 + 10 / 12, "feet"),
  21134. default: true
  21135. },
  21136. ]
  21137. ))
  21138. characterMakers.push(() => makeCharacter(
  21139. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21140. {
  21141. front: {
  21142. height: math.unit(6 + 10 / 12, "feet"),
  21143. weight: math.unit(255, "lb"),
  21144. name: "Front",
  21145. image: {
  21146. source: "./media/characters/alexeev/front.svg",
  21147. extra: 213 / 200,
  21148. bottom: 0.05
  21149. }
  21150. },
  21151. },
  21152. [
  21153. {
  21154. name: "Normal",
  21155. height: math.unit(6 + 10 / 12, "feet"),
  21156. default: true
  21157. },
  21158. ]
  21159. ))
  21160. characterMakers.push(() => makeCharacter(
  21161. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21162. {
  21163. front: {
  21164. height: math.unit(2 + 8 / 12, "feet"),
  21165. weight: math.unit(22, "lb"),
  21166. name: "Front",
  21167. image: {
  21168. source: "./media/characters/evelyn/front.svg",
  21169. extra: 208 / 180
  21170. }
  21171. },
  21172. },
  21173. [
  21174. {
  21175. name: "Normal",
  21176. height: math.unit(2 + 8 / 12, "feet"),
  21177. default: true
  21178. },
  21179. ]
  21180. ))
  21181. characterMakers.push(() => makeCharacter(
  21182. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21183. {
  21184. front: {
  21185. height: math.unit(5 + 9 / 12, "feet"),
  21186. weight: math.unit(139, "lb"),
  21187. name: "Front",
  21188. image: {
  21189. source: "./media/characters/inca/front.svg",
  21190. extra: 294 / 291,
  21191. bottom: 0.03
  21192. }
  21193. },
  21194. },
  21195. [
  21196. {
  21197. name: "Normal",
  21198. height: math.unit(5 + 9 / 12, "feet"),
  21199. default: true
  21200. },
  21201. ]
  21202. ))
  21203. characterMakers.push(() => makeCharacter(
  21204. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21205. {
  21206. front: {
  21207. height: math.unit(6 + 3 / 12, "feet"),
  21208. weight: math.unit(185, "lb"),
  21209. name: "Front",
  21210. image: {
  21211. source: "./media/characters/mera/front.svg",
  21212. extra: 291 / 277,
  21213. bottom: 0.03
  21214. }
  21215. },
  21216. },
  21217. [
  21218. {
  21219. name: "Normal",
  21220. height: math.unit(6 + 3 / 12, "feet"),
  21221. default: true
  21222. },
  21223. ]
  21224. ))
  21225. characterMakers.push(() => makeCharacter(
  21226. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21227. {
  21228. front: {
  21229. height: math.unit(6 + 7 / 12, "feet"),
  21230. weight: math.unit(160, "lb"),
  21231. name: "Front",
  21232. image: {
  21233. source: "./media/characters/ceres/front.svg",
  21234. extra: 1023 / 950,
  21235. bottom: 0.027
  21236. }
  21237. },
  21238. back: {
  21239. height: math.unit(6 + 7 / 12, "feet"),
  21240. weight: math.unit(160, "lb"),
  21241. name: "Back",
  21242. image: {
  21243. source: "./media/characters/ceres/back.svg",
  21244. extra: 1023 / 950
  21245. }
  21246. },
  21247. },
  21248. [
  21249. {
  21250. name: "Normal",
  21251. height: math.unit(6 + 7 / 12, "feet"),
  21252. default: true
  21253. },
  21254. ]
  21255. ))
  21256. characterMakers.push(() => makeCharacter(
  21257. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21258. {
  21259. front: {
  21260. height: math.unit(5 + 10 / 12, "feet"),
  21261. weight: math.unit(150, "lb"),
  21262. name: "Front",
  21263. image: {
  21264. source: "./media/characters/kris/front.svg",
  21265. extra: 885 / 803,
  21266. bottom: 0.03
  21267. }
  21268. },
  21269. },
  21270. [
  21271. {
  21272. name: "Normal",
  21273. height: math.unit(5 + 10 / 12, "feet"),
  21274. default: true
  21275. },
  21276. ]
  21277. ))
  21278. characterMakers.push(() => makeCharacter(
  21279. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21280. {
  21281. front: {
  21282. height: math.unit(7, "feet"),
  21283. weight: math.unit(120, "kg"),
  21284. name: "Front",
  21285. image: {
  21286. source: "./media/characters/taluthus/front.svg",
  21287. extra: 903 / 833,
  21288. bottom: 0.015
  21289. }
  21290. },
  21291. },
  21292. [
  21293. {
  21294. name: "Normal",
  21295. height: math.unit(7, "feet"),
  21296. default: true
  21297. },
  21298. {
  21299. name: "Macro",
  21300. height: math.unit(300, "feet")
  21301. },
  21302. ]
  21303. ))
  21304. characterMakers.push(() => makeCharacter(
  21305. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21306. {
  21307. front: {
  21308. height: math.unit(5 + 9 / 12, "feet"),
  21309. weight: math.unit(145, "lb"),
  21310. name: "Front",
  21311. image: {
  21312. source: "./media/characters/dawn/front.svg",
  21313. extra: 2094 / 2016,
  21314. bottom: 0.025
  21315. }
  21316. },
  21317. back: {
  21318. height: math.unit(5 + 9 / 12, "feet"),
  21319. weight: math.unit(160, "lb"),
  21320. name: "Back",
  21321. image: {
  21322. source: "./media/characters/dawn/back.svg",
  21323. extra: 2112 / 2080,
  21324. bottom: 0.005
  21325. }
  21326. },
  21327. },
  21328. [
  21329. {
  21330. name: "Normal",
  21331. height: math.unit(6 + 7 / 12, "feet"),
  21332. default: true
  21333. },
  21334. ]
  21335. ))
  21336. characterMakers.push(() => makeCharacter(
  21337. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21338. {
  21339. anthro: {
  21340. height: math.unit(8 + 3 / 12, "feet"),
  21341. weight: math.unit(450, "lb"),
  21342. name: "Anthro",
  21343. image: {
  21344. source: "./media/characters/arador/anthro.svg",
  21345. extra: 1835 / 1718,
  21346. bottom: 0.025
  21347. }
  21348. },
  21349. feral: {
  21350. height: math.unit(4, "feet"),
  21351. weight: math.unit(200, "lb"),
  21352. name: "Feral",
  21353. image: {
  21354. source: "./media/characters/arador/feral.svg",
  21355. extra: 1683 / 1514,
  21356. bottom: 0.07
  21357. }
  21358. },
  21359. },
  21360. [
  21361. {
  21362. name: "Normal",
  21363. height: math.unit(8 + 3 / 12, "feet")
  21364. },
  21365. {
  21366. name: "Macro",
  21367. height: math.unit(82.5, "feet"),
  21368. default: true
  21369. },
  21370. ]
  21371. ))
  21372. characterMakers.push(() => makeCharacter(
  21373. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21374. {
  21375. front: {
  21376. height: math.unit(5 + 10 / 12, "feet"),
  21377. weight: math.unit(125, "lb"),
  21378. name: "Front",
  21379. image: {
  21380. source: "./media/characters/dharsi/front.svg",
  21381. extra: 716 / 630,
  21382. bottom: 0.035
  21383. }
  21384. },
  21385. },
  21386. [
  21387. {
  21388. name: "Nano",
  21389. height: math.unit(100, "nm")
  21390. },
  21391. {
  21392. name: "Micro",
  21393. height: math.unit(2, "inches")
  21394. },
  21395. {
  21396. name: "Normal",
  21397. height: math.unit(5 + 10 / 12, "feet"),
  21398. default: true
  21399. },
  21400. {
  21401. name: "Macro",
  21402. height: math.unit(1000, "feet")
  21403. },
  21404. {
  21405. name: "Megamacro",
  21406. height: math.unit(10, "miles")
  21407. },
  21408. {
  21409. name: "Gigamacro",
  21410. height: math.unit(3000, "miles")
  21411. },
  21412. {
  21413. name: "Teramacro",
  21414. height: math.unit(500000, "miles")
  21415. },
  21416. {
  21417. name: "Teramacro+",
  21418. height: math.unit(30, "galaxies")
  21419. },
  21420. ]
  21421. ))
  21422. characterMakers.push(() => makeCharacter(
  21423. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21424. {
  21425. front: {
  21426. height: math.unit(6, "feet"),
  21427. weight: math.unit(150, "lb"),
  21428. name: "Front",
  21429. image: {
  21430. source: "./media/characters/deathy/front.svg",
  21431. extra: 1552 / 1463,
  21432. bottom: 0.025
  21433. }
  21434. },
  21435. side: {
  21436. height: math.unit(6, "feet"),
  21437. weight: math.unit(150, "lb"),
  21438. name: "Side",
  21439. image: {
  21440. source: "./media/characters/deathy/side.svg",
  21441. extra: 1604 / 1455,
  21442. bottom: 0.025
  21443. }
  21444. },
  21445. back: {
  21446. height: math.unit(6, "feet"),
  21447. weight: math.unit(150, "lb"),
  21448. name: "Back",
  21449. image: {
  21450. source: "./media/characters/deathy/back.svg",
  21451. extra: 1580 / 1463,
  21452. bottom: 0.005
  21453. }
  21454. },
  21455. },
  21456. [
  21457. {
  21458. name: "Micro",
  21459. height: math.unit(5, "millimeters")
  21460. },
  21461. {
  21462. name: "Normal",
  21463. height: math.unit(6 + 5 / 12, "feet"),
  21464. default: true
  21465. },
  21466. ]
  21467. ))
  21468. characterMakers.push(() => makeCharacter(
  21469. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21470. {
  21471. front: {
  21472. height: math.unit(16, "feet"),
  21473. weight: math.unit(4000, "lb"),
  21474. name: "Front",
  21475. image: {
  21476. source: "./media/characters/juniper/front.svg",
  21477. bottom: 0.04
  21478. }
  21479. },
  21480. },
  21481. [
  21482. {
  21483. name: "Normal",
  21484. height: math.unit(16, "feet"),
  21485. default: true
  21486. },
  21487. ]
  21488. ))
  21489. characterMakers.push(() => makeCharacter(
  21490. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21491. {
  21492. front: {
  21493. height: math.unit(6, "feet"),
  21494. weight: math.unit(150, "lb"),
  21495. name: "Front",
  21496. image: {
  21497. source: "./media/characters/hipster/front.svg",
  21498. extra: 1312 / 1209,
  21499. bottom: 0.025
  21500. }
  21501. },
  21502. back: {
  21503. height: math.unit(6, "feet"),
  21504. weight: math.unit(150, "lb"),
  21505. name: "Back",
  21506. image: {
  21507. source: "./media/characters/hipster/back.svg",
  21508. extra: 1281 / 1196,
  21509. bottom: 0.01
  21510. }
  21511. },
  21512. },
  21513. [
  21514. {
  21515. name: "Micro",
  21516. height: math.unit(1, "mm")
  21517. },
  21518. {
  21519. name: "Normal",
  21520. height: math.unit(4, "inches"),
  21521. default: true
  21522. },
  21523. {
  21524. name: "Macro",
  21525. height: math.unit(500, "feet")
  21526. },
  21527. {
  21528. name: "Megamacro",
  21529. height: math.unit(1000, "miles")
  21530. },
  21531. ]
  21532. ))
  21533. characterMakers.push(() => makeCharacter(
  21534. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21535. {
  21536. front: {
  21537. height: math.unit(6, "feet"),
  21538. weight: math.unit(150, "lb"),
  21539. name: "Front",
  21540. image: {
  21541. source: "./media/characters/tendirmuldr/front.svg",
  21542. extra: 1878 / 1772,
  21543. bottom: 0.015
  21544. }
  21545. },
  21546. },
  21547. [
  21548. {
  21549. name: "Megamacro",
  21550. height: math.unit(1500, "miles"),
  21551. default: true
  21552. },
  21553. ]
  21554. ))
  21555. characterMakers.push(() => makeCharacter(
  21556. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21557. {
  21558. front: {
  21559. height: math.unit(14, "feet"),
  21560. weight: math.unit(12000, "lb"),
  21561. name: "Front",
  21562. image: {
  21563. source: "./media/characters/mort/front.svg",
  21564. extra: 365 / 318,
  21565. bottom: 0.01
  21566. }
  21567. },
  21568. side: {
  21569. height: math.unit(14, "feet"),
  21570. weight: math.unit(12000, "lb"),
  21571. name: "Side",
  21572. image: {
  21573. source: "./media/characters/mort/side.svg",
  21574. extra: 365 / 318,
  21575. bottom: 0.052
  21576. },
  21577. default: true
  21578. },
  21579. back: {
  21580. height: math.unit(14, "feet"),
  21581. weight: math.unit(12000, "lb"),
  21582. name: "Back",
  21583. image: {
  21584. source: "./media/characters/mort/back.svg",
  21585. extra: 371 / 332,
  21586. bottom: 0.18
  21587. }
  21588. },
  21589. },
  21590. [
  21591. {
  21592. name: "Normal",
  21593. height: math.unit(14, "feet"),
  21594. default: true
  21595. },
  21596. ]
  21597. ))
  21598. characterMakers.push(() => makeCharacter(
  21599. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21600. {
  21601. front: {
  21602. height: math.unit(8, "feet"),
  21603. weight: math.unit(1, "ton"),
  21604. name: "Front",
  21605. image: {
  21606. source: "./media/characters/lycoa/front.svg",
  21607. extra: 1836/1728,
  21608. bottom: 81/1917
  21609. }
  21610. },
  21611. back: {
  21612. height: math.unit(8, "feet"),
  21613. weight: math.unit(1, "ton"),
  21614. name: "Back",
  21615. image: {
  21616. source: "./media/characters/lycoa/back.svg",
  21617. extra: 1785/1720,
  21618. bottom: 91/1876
  21619. }
  21620. },
  21621. head: {
  21622. height: math.unit(1.6243, "feet"),
  21623. name: "Head",
  21624. image: {
  21625. source: "./media/characters/lycoa/head.svg",
  21626. extra: 1011/782,
  21627. bottom: 0/1011
  21628. }
  21629. },
  21630. tailmaw: {
  21631. height: math.unit(1.9, "feet"),
  21632. name: "Tailmaw",
  21633. image: {
  21634. source: "./media/characters/lycoa/tailmaw.svg"
  21635. }
  21636. },
  21637. tentacles: {
  21638. height: math.unit(2.1, "feet"),
  21639. name: "Tentacles",
  21640. image: {
  21641. source: "./media/characters/lycoa/tentacles.svg"
  21642. }
  21643. },
  21644. dick: {
  21645. height: math.unit(1.73, "feet"),
  21646. name: "Dick",
  21647. image: {
  21648. source: "./media/characters/lycoa/dick.svg"
  21649. }
  21650. },
  21651. },
  21652. [
  21653. {
  21654. name: "Normal",
  21655. height: math.unit(8, "feet"),
  21656. default: true
  21657. },
  21658. {
  21659. name: "Macro",
  21660. height: math.unit(30, "feet")
  21661. },
  21662. ]
  21663. ))
  21664. characterMakers.push(() => makeCharacter(
  21665. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21666. {
  21667. front: {
  21668. height: math.unit(4 + 2 / 12, "feet"),
  21669. weight: math.unit(70, "lb"),
  21670. name: "Front",
  21671. image: {
  21672. source: "./media/characters/naldara/front.svg",
  21673. extra: 1664/1387,
  21674. bottom: 81/1745
  21675. },
  21676. form: "anthro",
  21677. default: true
  21678. },
  21679. naga: {
  21680. height: math.unit(20, "feet"),
  21681. weight: math.unit(15000, "kg"),
  21682. name: "Front",
  21683. image: {
  21684. source: "./media/characters/naldara/naga.svg",
  21685. extra: 1590/1396,
  21686. bottom: 285/1875
  21687. },
  21688. form: "naga",
  21689. default: true
  21690. },
  21691. },
  21692. [
  21693. {
  21694. name: "Normal",
  21695. height: math.unit(4 + 2 / 12, "feet"),
  21696. form: "anthro",
  21697. default: true
  21698. },
  21699. {
  21700. name: "Normal",
  21701. height: math.unit(20, "feet"),
  21702. form: "naga",
  21703. default: true
  21704. },
  21705. ],
  21706. {
  21707. "anthro": {
  21708. name: "Anthro",
  21709. default: true
  21710. },
  21711. "naga": {
  21712. name: "Naga"
  21713. }
  21714. }
  21715. ))
  21716. characterMakers.push(() => makeCharacter(
  21717. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21718. {
  21719. front: {
  21720. height: math.unit(13 + 7 / 12, "feet"),
  21721. weight: math.unit(1500, "lb"),
  21722. name: "Front",
  21723. image: {
  21724. source: "./media/characters/briar/front.svg",
  21725. extra: 1223/1157,
  21726. bottom: 123/1346
  21727. }
  21728. },
  21729. },
  21730. [
  21731. {
  21732. name: "Normal",
  21733. height: math.unit(13 + 7 / 12, "feet"),
  21734. default: true
  21735. },
  21736. ]
  21737. ))
  21738. characterMakers.push(() => makeCharacter(
  21739. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21740. {
  21741. side: {
  21742. height: math.unit(16, "feet"),
  21743. weight: math.unit(500, "lb"),
  21744. name: "Side",
  21745. image: {
  21746. source: "./media/characters/vanguard/side.svg",
  21747. extra: 1022/914,
  21748. bottom: 30/1052
  21749. }
  21750. },
  21751. sideAlt: {
  21752. height: math.unit(10, "feet"),
  21753. weight: math.unit(500, "lb"),
  21754. name: "Side (Alt)",
  21755. image: {
  21756. source: "./media/characters/vanguard/side-alt.svg",
  21757. extra: 502 / 425,
  21758. bottom: 0.087
  21759. }
  21760. },
  21761. },
  21762. [
  21763. {
  21764. name: "Normal",
  21765. height: math.unit(17.71, "feet"),
  21766. default: true
  21767. },
  21768. ]
  21769. ))
  21770. characterMakers.push(() => makeCharacter(
  21771. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21772. {
  21773. front: {
  21774. height: math.unit(7.5, "feet"),
  21775. weight: math.unit(2, "lb"),
  21776. name: "Front",
  21777. image: {
  21778. source: "./media/characters/artemis/work-safe-front.svg",
  21779. extra: 1192 / 1075,
  21780. bottom: 0.07
  21781. },
  21782. form: "work-safe",
  21783. default: true
  21784. },
  21785. frontNsfw: {
  21786. height: math.unit(7.5, "feet"),
  21787. weight: math.unit(2, "lb"),
  21788. name: "Front",
  21789. image: {
  21790. source: "./media/characters/artemis/calibrating-front.svg",
  21791. extra: 1192 / 1075,
  21792. bottom: 0.07
  21793. },
  21794. form: "calibrating",
  21795. default: true
  21796. },
  21797. frontNsfwer: {
  21798. height: math.unit(7.5, "feet"),
  21799. weight: math.unit(2, "lb"),
  21800. name: "Front",
  21801. image: {
  21802. source: "./media/characters/artemis/oversize-load-front.svg",
  21803. extra: 1192 / 1075,
  21804. bottom: 0.07
  21805. },
  21806. form: "oversize-load",
  21807. default: true
  21808. },
  21809. side: {
  21810. height: math.unit(7.5, "feet"),
  21811. weight: math.unit(2, "lb"),
  21812. name: "Side",
  21813. image: {
  21814. source: "./media/characters/artemis/work-safe-side.svg",
  21815. extra: 1192 / 1075,
  21816. bottom: 0.07
  21817. },
  21818. form: "work-safe"
  21819. },
  21820. sideNsfw: {
  21821. height: math.unit(7.5, "feet"),
  21822. weight: math.unit(2, "lb"),
  21823. name: "Side",
  21824. image: {
  21825. source: "./media/characters/artemis/calibrating-side.svg",
  21826. extra: 1192 / 1075,
  21827. bottom: 0.07
  21828. },
  21829. form: "calibrating"
  21830. },
  21831. sideNsfwer: {
  21832. height: math.unit(7.5, "feet"),
  21833. weight: math.unit(2, "lb"),
  21834. name: "Side",
  21835. image: {
  21836. source: "./media/characters/artemis/oversize-load-side.svg",
  21837. extra: 1192 / 1075,
  21838. bottom: 0.07
  21839. },
  21840. form: "oversize-load"
  21841. },
  21842. maw: {
  21843. height: math.unit(1.1, "feet"),
  21844. name: "Maw",
  21845. image: {
  21846. source: "./media/characters/artemis/maw.svg"
  21847. },
  21848. form: "work-safe"
  21849. },
  21850. stomach: {
  21851. height: math.unit(0.95, "feet"),
  21852. name: "Stomach",
  21853. image: {
  21854. source: "./media/characters/artemis/stomach.svg"
  21855. },
  21856. form: "work-safe"
  21857. },
  21858. dickCanine: {
  21859. height: math.unit(1, "feet"),
  21860. name: "Dick (Canine)",
  21861. image: {
  21862. source: "./media/characters/artemis/dick-canine.svg"
  21863. },
  21864. form: "calibrating"
  21865. },
  21866. dickEquine: {
  21867. height: math.unit(0.85, "feet"),
  21868. name: "Dick (Equine)",
  21869. image: {
  21870. source: "./media/characters/artemis/dick-equine.svg"
  21871. },
  21872. form: "calibrating"
  21873. },
  21874. dickExotic: {
  21875. height: math.unit(0.85, "feet"),
  21876. name: "Dick (Exotic)",
  21877. image: {
  21878. source: "./media/characters/artemis/dick-exotic.svg"
  21879. },
  21880. form: "calibrating"
  21881. },
  21882. dickCanineBigger: {
  21883. height: math.unit(1 * 1.33, "feet"),
  21884. name: "Dick (Canine)",
  21885. image: {
  21886. source: "./media/characters/artemis/dick-canine.svg"
  21887. },
  21888. form: "oversize-load"
  21889. },
  21890. dickEquineBigger: {
  21891. height: math.unit(0.85 * 1.33, "feet"),
  21892. name: "Dick (Equine)",
  21893. image: {
  21894. source: "./media/characters/artemis/dick-equine.svg"
  21895. },
  21896. form: "oversize-load"
  21897. },
  21898. dickExoticBigger: {
  21899. height: math.unit(0.85 * 1.33, "feet"),
  21900. name: "Dick (Exotic)",
  21901. image: {
  21902. source: "./media/characters/artemis/dick-exotic.svg"
  21903. },
  21904. form: "oversize-load"
  21905. },
  21906. },
  21907. [
  21908. {
  21909. name: "Normal",
  21910. height: math.unit(7.5, "feet"),
  21911. form: "work-safe",
  21912. default: true
  21913. },
  21914. {
  21915. name: "Normal",
  21916. height: math.unit(7.5, "feet"),
  21917. form: "calibrating",
  21918. default: true
  21919. },
  21920. {
  21921. name: "Normal",
  21922. height: math.unit(7.5, "feet"),
  21923. form: "oversize-load",
  21924. default: true
  21925. },
  21926. {
  21927. name: "Enlarged",
  21928. height: math.unit(12, "feet"),
  21929. form: "work-safe",
  21930. },
  21931. {
  21932. name: "Enlarged",
  21933. height: math.unit(12, "feet"),
  21934. form: "calibrating",
  21935. },
  21936. {
  21937. name: "Enlarged",
  21938. height: math.unit(12, "feet"),
  21939. form: "oversize-load",
  21940. },
  21941. ],
  21942. {
  21943. "work-safe": {
  21944. name: "Work-Safe",
  21945. default: true
  21946. },
  21947. "calibrating": {
  21948. name: "Calibrating"
  21949. },
  21950. "oversize-load": {
  21951. name: "Oversize Load"
  21952. }
  21953. }
  21954. ))
  21955. characterMakers.push(() => makeCharacter(
  21956. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21957. {
  21958. front: {
  21959. height: math.unit(5 + 3 / 12, "feet"),
  21960. weight: math.unit(160, "lb"),
  21961. name: "Front",
  21962. image: {
  21963. source: "./media/characters/kira/front.svg",
  21964. extra: 906 / 786,
  21965. bottom: 0.01
  21966. }
  21967. },
  21968. back: {
  21969. height: math.unit(5 + 3 / 12, "feet"),
  21970. weight: math.unit(160, "lb"),
  21971. name: "Back",
  21972. image: {
  21973. source: "./media/characters/kira/back.svg",
  21974. extra: 882 / 757,
  21975. bottom: 0.005
  21976. }
  21977. },
  21978. frontDressed: {
  21979. height: math.unit(5 + 3 / 12, "feet"),
  21980. weight: math.unit(160, "lb"),
  21981. name: "Front (Dressed)",
  21982. image: {
  21983. source: "./media/characters/kira/front-dressed.svg",
  21984. extra: 906 / 786,
  21985. bottom: 0.01
  21986. }
  21987. },
  21988. beans: {
  21989. height: math.unit(0.92, "feet"),
  21990. name: "Beans",
  21991. image: {
  21992. source: "./media/characters/kira/beans.svg"
  21993. }
  21994. },
  21995. },
  21996. [
  21997. {
  21998. name: "Normal",
  21999. height: math.unit(5 + 3 / 12, "feet"),
  22000. default: true
  22001. },
  22002. ]
  22003. ))
  22004. characterMakers.push(() => makeCharacter(
  22005. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22006. {
  22007. front: {
  22008. height: math.unit(5 + 4 / 12, "feet"),
  22009. weight: math.unit(145, "lb"),
  22010. name: "Front",
  22011. image: {
  22012. source: "./media/characters/scramble/front.svg",
  22013. extra: 763 / 727,
  22014. bottom: 0.05
  22015. }
  22016. },
  22017. back: {
  22018. height: math.unit(5 + 4 / 12, "feet"),
  22019. weight: math.unit(145, "lb"),
  22020. name: "Back",
  22021. image: {
  22022. source: "./media/characters/scramble/back.svg",
  22023. extra: 826 / 737,
  22024. bottom: 0.002
  22025. }
  22026. },
  22027. },
  22028. [
  22029. {
  22030. name: "Normal",
  22031. height: math.unit(5 + 4 / 12, "feet"),
  22032. default: true
  22033. },
  22034. ]
  22035. ))
  22036. characterMakers.push(() => makeCharacter(
  22037. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22038. {
  22039. side: {
  22040. height: math.unit(6 + 2 / 12, "feet"),
  22041. weight: math.unit(190, "lb"),
  22042. name: "Side",
  22043. image: {
  22044. source: "./media/characters/biscuit/side.svg",
  22045. extra: 858 / 791,
  22046. bottom: 0.044
  22047. }
  22048. },
  22049. },
  22050. [
  22051. {
  22052. name: "Normal",
  22053. height: math.unit(6 + 2 / 12, "feet"),
  22054. default: true
  22055. },
  22056. ]
  22057. ))
  22058. characterMakers.push(() => makeCharacter(
  22059. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22060. {
  22061. front: {
  22062. height: math.unit(5 + 2 / 12, "feet"),
  22063. weight: math.unit(120, "lb"),
  22064. name: "Front",
  22065. image: {
  22066. source: "./media/characters/poffin/front.svg",
  22067. extra: 786 / 680,
  22068. bottom: 0.005
  22069. }
  22070. },
  22071. },
  22072. [
  22073. {
  22074. name: "Normal",
  22075. height: math.unit(5 + 2 / 12, "feet"),
  22076. default: true
  22077. },
  22078. ]
  22079. ))
  22080. characterMakers.push(() => makeCharacter(
  22081. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22082. {
  22083. front: {
  22084. height: math.unit(6 + 3 / 12, "feet"),
  22085. weight: math.unit(519, "lb"),
  22086. name: "Front",
  22087. image: {
  22088. source: "./media/characters/dhari/front.svg",
  22089. extra: 1048 / 946,
  22090. bottom: 0.015
  22091. }
  22092. },
  22093. back: {
  22094. height: math.unit(6 + 3 / 12, "feet"),
  22095. weight: math.unit(519, "lb"),
  22096. name: "Back",
  22097. image: {
  22098. source: "./media/characters/dhari/back.svg",
  22099. extra: 1048 / 931,
  22100. bottom: 0.005
  22101. }
  22102. },
  22103. frontDressed: {
  22104. height: math.unit(6 + 3 / 12, "feet"),
  22105. weight: math.unit(519, "lb"),
  22106. name: "Front (Dressed)",
  22107. image: {
  22108. source: "./media/characters/dhari/front-dressed.svg",
  22109. extra: 1713 / 1546,
  22110. bottom: 0.02
  22111. }
  22112. },
  22113. backDressed: {
  22114. height: math.unit(6 + 3 / 12, "feet"),
  22115. weight: math.unit(519, "lb"),
  22116. name: "Back (Dressed)",
  22117. image: {
  22118. source: "./media/characters/dhari/back-dressed.svg",
  22119. extra: 1699 / 1537,
  22120. bottom: 0.01
  22121. }
  22122. },
  22123. maw: {
  22124. height: math.unit(0.95, "feet"),
  22125. name: "Maw",
  22126. image: {
  22127. source: "./media/characters/dhari/maw.svg"
  22128. }
  22129. },
  22130. wereFront: {
  22131. height: math.unit(12 + 8 / 12, "feet"),
  22132. weight: math.unit(4000, "lb"),
  22133. name: "Front (Were)",
  22134. image: {
  22135. source: "./media/characters/dhari/were-front.svg",
  22136. extra: 1065 / 969,
  22137. bottom: 0.015
  22138. }
  22139. },
  22140. wereBack: {
  22141. height: math.unit(12 + 8 / 12, "feet"),
  22142. weight: math.unit(4000, "lb"),
  22143. name: "Back (Were)",
  22144. image: {
  22145. source: "./media/characters/dhari/were-back.svg",
  22146. extra: 1065 / 969,
  22147. bottom: 0.012
  22148. }
  22149. },
  22150. wereMaw: {
  22151. height: math.unit(0.625, "meters"),
  22152. name: "Maw (Were)",
  22153. image: {
  22154. source: "./media/characters/dhari/were-maw.svg"
  22155. }
  22156. },
  22157. },
  22158. [
  22159. {
  22160. name: "Normal",
  22161. height: math.unit(6 + 3 / 12, "feet"),
  22162. default: true
  22163. },
  22164. ]
  22165. ))
  22166. characterMakers.push(() => makeCharacter(
  22167. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22168. {
  22169. anthro: {
  22170. height: math.unit(5 + 7 / 12, "feet"),
  22171. weight: math.unit(175, "lb"),
  22172. name: "Anthro",
  22173. image: {
  22174. source: "./media/characters/rena-dyne/anthro.svg",
  22175. extra: 1849 / 1785,
  22176. bottom: 0.005
  22177. }
  22178. },
  22179. taur: {
  22180. height: math.unit(15 + 6 / 12, "feet"),
  22181. weight: math.unit(8000, "lb"),
  22182. name: "Taur",
  22183. image: {
  22184. source: "./media/characters/rena-dyne/taur.svg",
  22185. extra: 2315 / 2234,
  22186. bottom: 0.033
  22187. }
  22188. },
  22189. },
  22190. [
  22191. {
  22192. name: "Normal",
  22193. height: math.unit(5 + 7 / 12, "feet"),
  22194. default: true
  22195. },
  22196. ]
  22197. ))
  22198. characterMakers.push(() => makeCharacter(
  22199. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22200. {
  22201. front: {
  22202. height: math.unit(8, "feet"),
  22203. weight: math.unit(600, "lb"),
  22204. name: "Front",
  22205. image: {
  22206. source: "./media/characters/weremeep/front.svg",
  22207. extra: 970/849,
  22208. bottom: 7/977
  22209. }
  22210. },
  22211. },
  22212. [
  22213. {
  22214. name: "Normal",
  22215. height: math.unit(8, "feet"),
  22216. default: true
  22217. },
  22218. {
  22219. name: "Lorg",
  22220. height: math.unit(12, "feet")
  22221. },
  22222. {
  22223. name: "Oh Lawd She Comin'",
  22224. height: math.unit(20, "feet")
  22225. },
  22226. ]
  22227. ))
  22228. characterMakers.push(() => makeCharacter(
  22229. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22230. {
  22231. front: {
  22232. height: math.unit(4, "feet"),
  22233. weight: math.unit(90, "lb"),
  22234. name: "Front",
  22235. image: {
  22236. source: "./media/characters/reza/front.svg",
  22237. extra: 1183 / 1111,
  22238. bottom: 0.017
  22239. }
  22240. },
  22241. back: {
  22242. height: math.unit(4, "feet"),
  22243. weight: math.unit(90, "lb"),
  22244. name: "Back",
  22245. image: {
  22246. source: "./media/characters/reza/back.svg",
  22247. extra: 1183 / 1111,
  22248. bottom: 0.01
  22249. }
  22250. },
  22251. drake: {
  22252. height: math.unit(30, "feet"),
  22253. weight: math.unit(246960, "lb"),
  22254. name: "Drake",
  22255. image: {
  22256. source: "./media/characters/reza/drake.svg",
  22257. extra: 2350 / 2024,
  22258. bottom: 60.7 / 2403
  22259. }
  22260. },
  22261. },
  22262. [
  22263. {
  22264. name: "Normal",
  22265. height: math.unit(4, "feet"),
  22266. default: true
  22267. },
  22268. ]
  22269. ))
  22270. characterMakers.push(() => makeCharacter(
  22271. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22272. {
  22273. side: {
  22274. height: math.unit(15, "feet"),
  22275. weight: math.unit(14, "tons"),
  22276. name: "Side",
  22277. image: {
  22278. source: "./media/characters/athea/side.svg",
  22279. extra: 960 / 540,
  22280. bottom: 0.003
  22281. }
  22282. },
  22283. sitting: {
  22284. height: math.unit(6 * 2.85, "feet"),
  22285. weight: math.unit(14, "tons"),
  22286. name: "Sitting",
  22287. image: {
  22288. source: "./media/characters/athea/sitting.svg",
  22289. extra: 621 / 581,
  22290. bottom: 0.075
  22291. }
  22292. },
  22293. maw: {
  22294. height: math.unit(7.59498031496063, "feet"),
  22295. name: "Maw",
  22296. image: {
  22297. source: "./media/characters/athea/maw.svg"
  22298. }
  22299. },
  22300. },
  22301. [
  22302. {
  22303. name: "Lap Cat",
  22304. height: math.unit(2.5, "feet")
  22305. },
  22306. {
  22307. name: "Minimacro",
  22308. height: math.unit(15, "feet"),
  22309. default: true
  22310. },
  22311. {
  22312. name: "Macro",
  22313. height: math.unit(120, "feet")
  22314. },
  22315. {
  22316. name: "Macro+",
  22317. height: math.unit(640, "feet")
  22318. },
  22319. {
  22320. name: "Colossus",
  22321. height: math.unit(2.2, "miles")
  22322. },
  22323. ]
  22324. ))
  22325. characterMakers.push(() => makeCharacter(
  22326. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22327. {
  22328. front: {
  22329. height: math.unit(8 + 8 / 12, "feet"),
  22330. weight: math.unit(130, "kg"),
  22331. name: "Front",
  22332. image: {
  22333. source: "./media/characters/seroko/front.svg",
  22334. extra: 1385 / 1280,
  22335. bottom: 0.025
  22336. }
  22337. },
  22338. back: {
  22339. height: math.unit(8 + 8 / 12, "feet"),
  22340. weight: math.unit(130, "kg"),
  22341. name: "Back",
  22342. image: {
  22343. source: "./media/characters/seroko/back.svg",
  22344. extra: 1369 / 1238,
  22345. bottom: 0.018
  22346. }
  22347. },
  22348. frontDressed: {
  22349. height: math.unit(8 + 8 / 12, "feet"),
  22350. weight: math.unit(130, "kg"),
  22351. name: "Front (Dressed)",
  22352. image: {
  22353. source: "./media/characters/seroko/front-dressed.svg",
  22354. extra: 1366 / 1275,
  22355. bottom: 0.03
  22356. }
  22357. },
  22358. },
  22359. [
  22360. {
  22361. name: "Normal",
  22362. height: math.unit(8 + 8 / 12, "feet"),
  22363. default: true
  22364. },
  22365. ]
  22366. ))
  22367. characterMakers.push(() => makeCharacter(
  22368. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22369. {
  22370. front: {
  22371. height: math.unit(5.5, "feet"),
  22372. weight: math.unit(160, "lb"),
  22373. name: "Front",
  22374. image: {
  22375. source: "./media/characters/quatzi/front.svg",
  22376. extra: 2346 / 2242,
  22377. bottom: 0.015
  22378. }
  22379. },
  22380. },
  22381. [
  22382. {
  22383. name: "Normal",
  22384. height: math.unit(5.5, "feet"),
  22385. default: true
  22386. },
  22387. {
  22388. name: "Big",
  22389. height: math.unit(7.7, "feet")
  22390. },
  22391. ]
  22392. ))
  22393. characterMakers.push(() => makeCharacter(
  22394. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22395. {
  22396. front: {
  22397. height: math.unit(5 + 11 / 12, "feet"),
  22398. weight: math.unit(180, "lb"),
  22399. name: "Front",
  22400. image: {
  22401. source: "./media/characters/sen/front.svg",
  22402. extra: 1321 / 1254,
  22403. bottom: 0.015
  22404. }
  22405. },
  22406. side: {
  22407. height: math.unit(5 + 11 / 12, "feet"),
  22408. weight: math.unit(180, "lb"),
  22409. name: "Side",
  22410. image: {
  22411. source: "./media/characters/sen/side.svg",
  22412. extra: 1321 / 1254,
  22413. bottom: 0.007
  22414. }
  22415. },
  22416. back: {
  22417. height: math.unit(5 + 11 / 12, "feet"),
  22418. weight: math.unit(180, "lb"),
  22419. name: "Back",
  22420. image: {
  22421. source: "./media/characters/sen/back.svg",
  22422. extra: 1321 / 1254
  22423. }
  22424. },
  22425. },
  22426. [
  22427. {
  22428. name: "Normal",
  22429. height: math.unit(5 + 11 / 12, "feet"),
  22430. default: true
  22431. },
  22432. ]
  22433. ))
  22434. characterMakers.push(() => makeCharacter(
  22435. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22436. {
  22437. front: {
  22438. height: math.unit(166.6, "cm"),
  22439. weight: math.unit(66.6, "kg"),
  22440. name: "Front",
  22441. image: {
  22442. source: "./media/characters/fruity/front.svg",
  22443. extra: 1510 / 1386,
  22444. bottom: 0.04
  22445. }
  22446. },
  22447. back: {
  22448. height: math.unit(166.6, "cm"),
  22449. weight: math.unit(66.6, "lb"),
  22450. name: "Back",
  22451. image: {
  22452. source: "./media/characters/fruity/back.svg",
  22453. extra: 1563 / 1435,
  22454. bottom: 0.005
  22455. }
  22456. },
  22457. },
  22458. [
  22459. {
  22460. name: "Normal",
  22461. height: math.unit(166.6, "cm"),
  22462. default: true
  22463. },
  22464. {
  22465. name: "Demonic",
  22466. height: math.unit(166.6, "feet")
  22467. },
  22468. ]
  22469. ))
  22470. characterMakers.push(() => makeCharacter(
  22471. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22472. {
  22473. side: {
  22474. height: math.unit(10, "feet"),
  22475. weight: math.unit(500, "lb"),
  22476. name: "Side",
  22477. image: {
  22478. source: "./media/characters/zost/side.svg",
  22479. extra: 2870/2533,
  22480. bottom: 252/3122
  22481. }
  22482. },
  22483. mawFront: {
  22484. height: math.unit(1.08, "meters"),
  22485. name: "Maw (Front)",
  22486. image: {
  22487. source: "./media/characters/zost/maw-front.svg"
  22488. }
  22489. },
  22490. mawSide: {
  22491. height: math.unit(2.66, "feet"),
  22492. name: "Maw (Side)",
  22493. image: {
  22494. source: "./media/characters/zost/maw-side.svg"
  22495. }
  22496. },
  22497. wingspan: {
  22498. height: math.unit(7.4, "feet"),
  22499. name: "Wingspan",
  22500. image: {
  22501. source: "./media/characters/zost/wingspan.svg"
  22502. }
  22503. },
  22504. },
  22505. [
  22506. {
  22507. name: "Normal",
  22508. height: math.unit(10, "feet"),
  22509. default: true
  22510. },
  22511. ]
  22512. ))
  22513. characterMakers.push(() => makeCharacter(
  22514. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22515. {
  22516. front: {
  22517. height: math.unit(5 + 4 / 12, "feet"),
  22518. weight: math.unit(120, "lb"),
  22519. name: "Front",
  22520. image: {
  22521. source: "./media/characters/luci/front.svg",
  22522. extra: 1985 / 1884,
  22523. bottom: 0.04
  22524. }
  22525. },
  22526. back: {
  22527. height: math.unit(5 + 4 / 12, "feet"),
  22528. weight: math.unit(120, "lb"),
  22529. name: "Back",
  22530. image: {
  22531. source: "./media/characters/luci/back.svg",
  22532. extra: 1892 / 1791,
  22533. bottom: 0.002
  22534. }
  22535. },
  22536. },
  22537. [
  22538. {
  22539. name: "Normal",
  22540. height: math.unit(5 + 4 / 12, "feet"),
  22541. default: true
  22542. },
  22543. ]
  22544. ))
  22545. characterMakers.push(() => makeCharacter(
  22546. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22547. {
  22548. front: {
  22549. height: math.unit(1500, "feet"),
  22550. weight: math.unit(3.8e6, "tons"),
  22551. name: "Front",
  22552. image: {
  22553. source: "./media/characters/2th/front.svg",
  22554. extra: 3489 / 3350,
  22555. bottom: 0.1
  22556. }
  22557. },
  22558. foot: {
  22559. height: math.unit(461, "feet"),
  22560. name: "Foot",
  22561. image: {
  22562. source: "./media/characters/2th/foot.svg"
  22563. }
  22564. },
  22565. },
  22566. [
  22567. {
  22568. name: "\"Micro\"",
  22569. height: math.unit(15 + 7 / 12, "feet")
  22570. },
  22571. {
  22572. name: "Normal",
  22573. height: math.unit(1500, "feet"),
  22574. default: true
  22575. },
  22576. {
  22577. name: "Macro",
  22578. height: math.unit(5000, "feet")
  22579. },
  22580. {
  22581. name: "Megamacro",
  22582. height: math.unit(15, "miles")
  22583. },
  22584. {
  22585. name: "Gigamacro",
  22586. height: math.unit(4000, "miles")
  22587. },
  22588. {
  22589. name: "Galactic",
  22590. height: math.unit(50, "AU")
  22591. },
  22592. ]
  22593. ))
  22594. characterMakers.push(() => makeCharacter(
  22595. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22596. {
  22597. front: {
  22598. height: math.unit(5 + 6 / 12, "feet"),
  22599. weight: math.unit(220, "lb"),
  22600. name: "Front",
  22601. image: {
  22602. source: "./media/characters/amethyst/front.svg",
  22603. extra: 2078 / 2040,
  22604. bottom: 0.045
  22605. }
  22606. },
  22607. back: {
  22608. height: math.unit(5 + 6 / 12, "feet"),
  22609. weight: math.unit(220, "lb"),
  22610. name: "Back",
  22611. image: {
  22612. source: "./media/characters/amethyst/back.svg",
  22613. extra: 2021 / 1989,
  22614. bottom: 0.02
  22615. }
  22616. },
  22617. },
  22618. [
  22619. {
  22620. name: "Normal",
  22621. height: math.unit(5 + 6 / 12, "feet"),
  22622. default: true
  22623. },
  22624. ]
  22625. ))
  22626. characterMakers.push(() => makeCharacter(
  22627. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22628. {
  22629. front: {
  22630. height: math.unit(4 + 11 / 12, "feet"),
  22631. weight: math.unit(120, "lb"),
  22632. name: "Front",
  22633. image: {
  22634. source: "./media/characters/yumi-akiyama/front.svg",
  22635. extra: 1327 / 1235,
  22636. bottom: 0.02
  22637. }
  22638. },
  22639. back: {
  22640. height: math.unit(4 + 11 / 12, "feet"),
  22641. weight: math.unit(120, "lb"),
  22642. name: "Back",
  22643. image: {
  22644. source: "./media/characters/yumi-akiyama/back.svg",
  22645. extra: 1287 / 1245,
  22646. bottom: 0.002
  22647. }
  22648. },
  22649. },
  22650. [
  22651. {
  22652. name: "Galactic",
  22653. height: math.unit(50, "galaxies"),
  22654. default: true
  22655. },
  22656. {
  22657. name: "Universal",
  22658. height: math.unit(100, "universes")
  22659. },
  22660. ]
  22661. ))
  22662. characterMakers.push(() => makeCharacter(
  22663. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22664. {
  22665. front: {
  22666. height: math.unit(8, "feet"),
  22667. weight: math.unit(500, "lb"),
  22668. name: "Front",
  22669. image: {
  22670. source: "./media/characters/rifter-yrmori/front.svg",
  22671. extra: 1180 / 1125,
  22672. bottom: 0.02
  22673. }
  22674. },
  22675. back: {
  22676. height: math.unit(8, "feet"),
  22677. weight: math.unit(500, "lb"),
  22678. name: "Back",
  22679. image: {
  22680. source: "./media/characters/rifter-yrmori/back.svg",
  22681. extra: 1190 / 1145,
  22682. bottom: 0.001
  22683. }
  22684. },
  22685. wings: {
  22686. height: math.unit(7.75, "feet"),
  22687. weight: math.unit(500, "lb"),
  22688. name: "Wings",
  22689. image: {
  22690. source: "./media/characters/rifter-yrmori/wings.svg",
  22691. extra: 1357 / 1285
  22692. }
  22693. },
  22694. maw: {
  22695. height: math.unit(0.8, "feet"),
  22696. name: "Maw",
  22697. image: {
  22698. source: "./media/characters/rifter-yrmori/maw.svg"
  22699. }
  22700. },
  22701. mawfront: {
  22702. height: math.unit(1.45, "feet"),
  22703. name: "Maw (Front)",
  22704. image: {
  22705. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22706. }
  22707. },
  22708. },
  22709. [
  22710. {
  22711. name: "Normal",
  22712. height: math.unit(8, "feet"),
  22713. default: true
  22714. },
  22715. {
  22716. name: "Macro",
  22717. height: math.unit(42, "meters")
  22718. },
  22719. ]
  22720. ))
  22721. characterMakers.push(() => makeCharacter(
  22722. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22723. {
  22724. were: {
  22725. height: math.unit(25 + 6 / 12, "feet"),
  22726. weight: math.unit(10000, "lb"),
  22727. name: "Were",
  22728. image: {
  22729. source: "./media/characters/tahajin/were.svg",
  22730. extra: 801 / 770,
  22731. bottom: 0.042
  22732. }
  22733. },
  22734. aquatic: {
  22735. height: math.unit(6 + 4 / 12, "feet"),
  22736. weight: math.unit(160, "lb"),
  22737. name: "Aquatic",
  22738. image: {
  22739. source: "./media/characters/tahajin/aquatic.svg",
  22740. extra: 572 / 542,
  22741. bottom: 0.04
  22742. }
  22743. },
  22744. chow: {
  22745. height: math.unit(8 + 11 / 12, "feet"),
  22746. weight: math.unit(450, "lb"),
  22747. name: "Chow",
  22748. image: {
  22749. source: "./media/characters/tahajin/chow.svg",
  22750. extra: 660 / 640,
  22751. bottom: 0.015
  22752. }
  22753. },
  22754. demiNaga: {
  22755. height: math.unit(6 + 8 / 12, "feet"),
  22756. weight: math.unit(300, "lb"),
  22757. name: "Demi Naga",
  22758. image: {
  22759. source: "./media/characters/tahajin/demi-naga.svg",
  22760. extra: 643 / 615,
  22761. bottom: 0.1
  22762. }
  22763. },
  22764. data: {
  22765. height: math.unit(5, "inches"),
  22766. weight: math.unit(0.1, "lb"),
  22767. name: "Data",
  22768. image: {
  22769. source: "./media/characters/tahajin/data.svg"
  22770. }
  22771. },
  22772. fluu: {
  22773. height: math.unit(5 + 7 / 12, "feet"),
  22774. weight: math.unit(140, "lb"),
  22775. name: "Fluu",
  22776. image: {
  22777. source: "./media/characters/tahajin/fluu.svg",
  22778. extra: 628 / 592,
  22779. bottom: 0.02
  22780. }
  22781. },
  22782. starWarrior: {
  22783. height: math.unit(4 + 5 / 12, "feet"),
  22784. weight: math.unit(50, "lb"),
  22785. name: "Star Warrior",
  22786. image: {
  22787. source: "./media/characters/tahajin/star-warrior.svg"
  22788. }
  22789. },
  22790. },
  22791. [
  22792. {
  22793. name: "Normal",
  22794. height: math.unit(25 + 6 / 12, "feet"),
  22795. default: true
  22796. },
  22797. ]
  22798. ))
  22799. characterMakers.push(() => makeCharacter(
  22800. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22801. {
  22802. front: {
  22803. height: math.unit(8, "feet"),
  22804. weight: math.unit(350, "lb"),
  22805. name: "Front",
  22806. image: {
  22807. source: "./media/characters/gabira/front.svg",
  22808. extra: 1261/1154,
  22809. bottom: 51/1312
  22810. }
  22811. },
  22812. back: {
  22813. height: math.unit(8, "feet"),
  22814. weight: math.unit(350, "lb"),
  22815. name: "Back",
  22816. image: {
  22817. source: "./media/characters/gabira/back.svg",
  22818. extra: 1265/1163,
  22819. bottom: 46/1311
  22820. }
  22821. },
  22822. head: {
  22823. height: math.unit(2.85, "feet"),
  22824. name: "Head",
  22825. image: {
  22826. source: "./media/characters/gabira/head.svg"
  22827. }
  22828. },
  22829. },
  22830. [
  22831. {
  22832. name: "Normal",
  22833. height: math.unit(8, "feet"),
  22834. default: true
  22835. },
  22836. ]
  22837. ))
  22838. characterMakers.push(() => makeCharacter(
  22839. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22840. {
  22841. front: {
  22842. height: math.unit(5 + 3 / 12, "feet"),
  22843. weight: math.unit(137, "lb"),
  22844. name: "Front",
  22845. image: {
  22846. source: "./media/characters/sasha-katraine/front.svg",
  22847. extra: 1745/1694,
  22848. bottom: 37/1782
  22849. }
  22850. },
  22851. back: {
  22852. height: math.unit(5 + 3 / 12, "feet"),
  22853. weight: math.unit(137, "lb"),
  22854. name: "Back",
  22855. image: {
  22856. source: "./media/characters/sasha-katraine/back.svg",
  22857. extra: 1776/1699,
  22858. bottom: 26/1802
  22859. }
  22860. },
  22861. },
  22862. [
  22863. {
  22864. name: "Micro",
  22865. height: math.unit(5, "inches")
  22866. },
  22867. {
  22868. name: "Normal",
  22869. height: math.unit(5 + 3 / 12, "feet"),
  22870. default: true
  22871. },
  22872. ]
  22873. ))
  22874. characterMakers.push(() => makeCharacter(
  22875. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22876. {
  22877. side: {
  22878. height: math.unit(4, "inches"),
  22879. weight: math.unit(200, "grams"),
  22880. name: "Side",
  22881. image: {
  22882. source: "./media/characters/der/side.svg",
  22883. extra: 719 / 400,
  22884. bottom: 30.6 / 749.9187
  22885. }
  22886. },
  22887. },
  22888. [
  22889. {
  22890. name: "Micro",
  22891. height: math.unit(4, "inches"),
  22892. default: true
  22893. },
  22894. ]
  22895. ))
  22896. characterMakers.push(() => makeCharacter(
  22897. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22898. {
  22899. side: {
  22900. height: math.unit(30, "meters"),
  22901. weight: math.unit(700, "tonnes"),
  22902. name: "Side",
  22903. image: {
  22904. source: "./media/characters/fixerdragon/side.svg",
  22905. extra: (1293.0514 - 116.03) / 1106.86,
  22906. bottom: 116.03 / 1293.0514
  22907. }
  22908. },
  22909. },
  22910. [
  22911. {
  22912. name: "Planck",
  22913. height: math.unit(1.6e-35, "meters")
  22914. },
  22915. {
  22916. name: "Micro",
  22917. height: math.unit(0.4, "meters")
  22918. },
  22919. {
  22920. name: "Normal",
  22921. height: math.unit(30, "meters"),
  22922. default: true
  22923. },
  22924. {
  22925. name: "Megamacro",
  22926. height: math.unit(1.2, "megameters")
  22927. },
  22928. {
  22929. name: "Teramacro",
  22930. height: math.unit(130, "terameters")
  22931. },
  22932. {
  22933. name: "Yottamacro",
  22934. height: math.unit(6200, "yottameters")
  22935. },
  22936. ]
  22937. ));
  22938. characterMakers.push(() => makeCharacter(
  22939. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22940. {
  22941. front: {
  22942. height: math.unit(8, "feet"),
  22943. weight: math.unit(250, "lb"),
  22944. name: "Front",
  22945. image: {
  22946. source: "./media/characters/kite/front.svg",
  22947. extra: 2796 / 2659,
  22948. bottom: 0.002
  22949. }
  22950. },
  22951. },
  22952. [
  22953. {
  22954. name: "Normal",
  22955. height: math.unit(8, "feet"),
  22956. default: true
  22957. },
  22958. {
  22959. name: "Macro",
  22960. height: math.unit(360, "feet")
  22961. },
  22962. {
  22963. name: "Megamacro",
  22964. height: math.unit(1500, "feet")
  22965. },
  22966. ]
  22967. ))
  22968. characterMakers.push(() => makeCharacter(
  22969. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22970. {
  22971. front: {
  22972. height: math.unit(5 + 11/12, "feet"),
  22973. weight: math.unit(170, "lb"),
  22974. name: "Front",
  22975. image: {
  22976. source: "./media/characters/poojawa-vynar/front.svg",
  22977. extra: 1735/1585,
  22978. bottom: 96/1831
  22979. }
  22980. },
  22981. back: {
  22982. height: math.unit(5 + 11/12, "feet"),
  22983. weight: math.unit(170, "lb"),
  22984. name: "Back",
  22985. image: {
  22986. source: "./media/characters/poojawa-vynar/back.svg",
  22987. extra: 1749/1607,
  22988. bottom: 28/1777
  22989. }
  22990. },
  22991. male: {
  22992. height: math.unit(5 + 11/12, "feet"),
  22993. weight: math.unit(170, "lb"),
  22994. name: "Male",
  22995. image: {
  22996. source: "./media/characters/poojawa-vynar/male.svg",
  22997. extra: 1855/1713,
  22998. bottom: 63/1918
  22999. }
  23000. },
  23001. taur: {
  23002. height: math.unit(5 + 11/12, "feet"),
  23003. weight: math.unit(170, "lb"),
  23004. name: "Taur",
  23005. image: {
  23006. source: "./media/characters/poojawa-vynar/taur.svg",
  23007. extra: 1151/1059,
  23008. bottom: 356/1507
  23009. }
  23010. },
  23011. frontDressed: {
  23012. height: math.unit(5 + 11/12, "feet"),
  23013. weight: math.unit(170, "lb"),
  23014. name: "Front (Dressed)",
  23015. image: {
  23016. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23017. extra: 1735/1585,
  23018. bottom: 96/1831
  23019. }
  23020. },
  23021. backDressed: {
  23022. height: math.unit(5 + 11/12, "feet"),
  23023. weight: math.unit(170, "lb"),
  23024. name: "Back (Dressed)",
  23025. image: {
  23026. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23027. extra: 1749/1607,
  23028. bottom: 28/1777
  23029. }
  23030. },
  23031. maleDressed: {
  23032. height: math.unit(5 + 11/12, "feet"),
  23033. weight: math.unit(170, "lb"),
  23034. name: "Male (Dressed)",
  23035. image: {
  23036. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23037. extra: 1855/1713,
  23038. bottom: 63/1918
  23039. }
  23040. },
  23041. taurDressed: {
  23042. height: math.unit(5 + 11/12, "feet"),
  23043. weight: math.unit(170, "lb"),
  23044. name: "Taur (Dressed)",
  23045. image: {
  23046. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23047. extra: 1151/1059,
  23048. bottom: 356/1507
  23049. }
  23050. },
  23051. maw: {
  23052. height: math.unit(1.46, "feet"),
  23053. name: "Maw",
  23054. image: {
  23055. source: "./media/characters/poojawa-vynar/maw.svg"
  23056. }
  23057. },
  23058. head: {
  23059. height: math.unit(2.34, "feet"),
  23060. name: "Head",
  23061. image: {
  23062. source: "./media/characters/poojawa-vynar/head.svg"
  23063. }
  23064. },
  23065. paw: {
  23066. height: math.unit(1.61, "feet"),
  23067. name: "Paw",
  23068. image: {
  23069. source: "./media/characters/poojawa-vynar/paw.svg"
  23070. }
  23071. },
  23072. pawToering: {
  23073. height: math.unit(1.72, "feet"),
  23074. name: "Paw (Toering)",
  23075. image: {
  23076. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23077. }
  23078. },
  23079. toering: {
  23080. height: math.unit(2.9, "inches"),
  23081. name: "Toering",
  23082. image: {
  23083. source: "./media/characters/poojawa-vynar/toering.svg"
  23084. }
  23085. },
  23086. shaft: {
  23087. height: math.unit(0.625, "feet"),
  23088. name: "Shaft",
  23089. image: {
  23090. source: "./media/characters/poojawa-vynar/shaft.svg"
  23091. }
  23092. },
  23093. spade: {
  23094. height: math.unit(0.42, "feet"),
  23095. name: "Spade",
  23096. image: {
  23097. source: "./media/characters/poojawa-vynar/spade.svg"
  23098. }
  23099. },
  23100. },
  23101. [
  23102. {
  23103. name: "Shortstack",
  23104. height: math.unit(4, "feet")
  23105. },
  23106. {
  23107. name: "Normal",
  23108. height: math.unit(5 + 11 / 12, "feet"),
  23109. default: true
  23110. },
  23111. {
  23112. name: "Tauric",
  23113. height: math.unit(4, "meters")
  23114. },
  23115. ]
  23116. ))
  23117. characterMakers.push(() => makeCharacter(
  23118. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23119. {
  23120. front: {
  23121. height: math.unit(293, "meters"),
  23122. weight: math.unit(70400, "tons"),
  23123. name: "Front",
  23124. image: {
  23125. source: "./media/characters/violette/front.svg",
  23126. extra: 1227 / 1180,
  23127. bottom: 0.005
  23128. }
  23129. },
  23130. back: {
  23131. height: math.unit(293, "meters"),
  23132. weight: math.unit(70400, "tons"),
  23133. name: "Back",
  23134. image: {
  23135. source: "./media/characters/violette/back.svg",
  23136. extra: 1227 / 1180,
  23137. bottom: 0.005
  23138. }
  23139. },
  23140. },
  23141. [
  23142. {
  23143. name: "Macro",
  23144. height: math.unit(293, "meters"),
  23145. default: true
  23146. },
  23147. ]
  23148. ))
  23149. characterMakers.push(() => makeCharacter(
  23150. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23151. {
  23152. front: {
  23153. height: math.unit(1050, "feet"),
  23154. weight: math.unit(200000, "tons"),
  23155. name: "Front",
  23156. image: {
  23157. source: "./media/characters/alessandra/front.svg",
  23158. extra: 960 / 912,
  23159. bottom: 0.06
  23160. }
  23161. },
  23162. },
  23163. [
  23164. {
  23165. name: "Macro",
  23166. height: math.unit(1050, "feet")
  23167. },
  23168. {
  23169. name: "Macro+",
  23170. height: math.unit(900, "meters"),
  23171. default: true
  23172. },
  23173. ]
  23174. ))
  23175. characterMakers.push(() => makeCharacter(
  23176. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23177. {
  23178. front: {
  23179. height: math.unit(5, "feet"),
  23180. weight: math.unit(187, "lb"),
  23181. name: "Front",
  23182. image: {
  23183. source: "./media/characters/person/front.svg",
  23184. extra: 3087 / 2945,
  23185. bottom: 91 / 3181
  23186. }
  23187. },
  23188. },
  23189. [
  23190. {
  23191. name: "Micro",
  23192. height: math.unit(3, "inches")
  23193. },
  23194. {
  23195. name: "Normal",
  23196. height: math.unit(5, "feet"),
  23197. default: true
  23198. },
  23199. {
  23200. name: "Macro",
  23201. height: math.unit(90, "feet")
  23202. },
  23203. {
  23204. name: "Max Size",
  23205. height: math.unit(280, "feet")
  23206. },
  23207. ]
  23208. ))
  23209. characterMakers.push(() => makeCharacter(
  23210. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23211. {
  23212. front: {
  23213. height: math.unit(4.5, "meters"),
  23214. weight: math.unit(3200, "lb"),
  23215. name: "Front",
  23216. image: {
  23217. source: "./media/characters/ty/front.svg",
  23218. extra: 1038 / 960,
  23219. bottom: 31.156 / 1068
  23220. }
  23221. },
  23222. back: {
  23223. height: math.unit(4.5, "meters"),
  23224. weight: math.unit(3200, "lb"),
  23225. name: "Back",
  23226. image: {
  23227. source: "./media/characters/ty/back.svg",
  23228. extra: 1044 / 966,
  23229. bottom: 7.48 / 1049
  23230. }
  23231. },
  23232. },
  23233. [
  23234. {
  23235. name: "Normal",
  23236. height: math.unit(4.5, "meters"),
  23237. default: true
  23238. },
  23239. ]
  23240. ))
  23241. characterMakers.push(() => makeCharacter(
  23242. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23243. {
  23244. front: {
  23245. height: math.unit(5 + 4 / 12, "feet"),
  23246. weight: math.unit(115, "lb"),
  23247. name: "Front",
  23248. image: {
  23249. source: "./media/characters/rocky/front.svg",
  23250. extra: 1012 / 975,
  23251. bottom: 54 / 1066
  23252. }
  23253. },
  23254. },
  23255. [
  23256. {
  23257. name: "Normal",
  23258. height: math.unit(5 + 4 / 12, "feet"),
  23259. default: true
  23260. },
  23261. ]
  23262. ))
  23263. characterMakers.push(() => makeCharacter(
  23264. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23265. {
  23266. upright: {
  23267. height: math.unit(6, "meters"),
  23268. weight: math.unit(4000, "kg"),
  23269. name: "Upright",
  23270. image: {
  23271. source: "./media/characters/ruin/upright.svg",
  23272. extra: 668 / 661,
  23273. bottom: 42 / 799.8396
  23274. }
  23275. },
  23276. },
  23277. [
  23278. {
  23279. name: "Normal",
  23280. height: math.unit(6, "meters"),
  23281. default: true
  23282. },
  23283. ]
  23284. ))
  23285. characterMakers.push(() => makeCharacter(
  23286. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23287. {
  23288. front: {
  23289. height: math.unit(5, "feet"),
  23290. weight: math.unit(106, "lb"),
  23291. name: "Front",
  23292. image: {
  23293. source: "./media/characters/robin/front.svg",
  23294. extra: 862 / 799,
  23295. bottom: 42.4 / 914.8856
  23296. }
  23297. },
  23298. },
  23299. [
  23300. {
  23301. name: "Normal",
  23302. height: math.unit(5, "feet"),
  23303. default: true
  23304. },
  23305. ]
  23306. ))
  23307. characterMakers.push(() => makeCharacter(
  23308. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23309. {
  23310. side: {
  23311. height: math.unit(3, "feet"),
  23312. weight: math.unit(225, "lb"),
  23313. name: "Side",
  23314. image: {
  23315. source: "./media/characters/saian/side.svg",
  23316. extra: 566 / 356,
  23317. bottom: 79.7 / 643
  23318. }
  23319. },
  23320. maw: {
  23321. height: math.unit(2.85, "feet"),
  23322. name: "Maw",
  23323. image: {
  23324. source: "./media/characters/saian/maw.svg"
  23325. }
  23326. },
  23327. },
  23328. [
  23329. {
  23330. name: "Normal",
  23331. height: math.unit(3, "feet"),
  23332. default: true
  23333. },
  23334. ]
  23335. ))
  23336. characterMakers.push(() => makeCharacter(
  23337. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23338. {
  23339. side: {
  23340. height: math.unit(8, "feet"),
  23341. weight: math.unit(300, "lb"),
  23342. name: "Side",
  23343. image: {
  23344. source: "./media/characters/equus-silvermane/side.svg",
  23345. extra: 2176 / 2050,
  23346. bottom: 65.7 / 2245
  23347. }
  23348. },
  23349. front: {
  23350. height: math.unit(8, "feet"),
  23351. weight: math.unit(300, "lb"),
  23352. name: "Front",
  23353. image: {
  23354. source: "./media/characters/equus-silvermane/front.svg",
  23355. extra: 4633 / 4400,
  23356. bottom: 71.3 / 4706.915
  23357. }
  23358. },
  23359. sideStepping: {
  23360. height: math.unit(8, "feet"),
  23361. weight: math.unit(300, "lb"),
  23362. name: "Side (Stepping)",
  23363. image: {
  23364. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23365. extra: 1968 / 1860,
  23366. bottom: 16.4 / 1989
  23367. }
  23368. },
  23369. },
  23370. [
  23371. {
  23372. name: "Normal",
  23373. height: math.unit(8, "feet")
  23374. },
  23375. {
  23376. name: "Minimacro",
  23377. height: math.unit(75, "feet"),
  23378. default: true
  23379. },
  23380. {
  23381. name: "Macro",
  23382. height: math.unit(150, "feet")
  23383. },
  23384. {
  23385. name: "Macro+",
  23386. height: math.unit(1000, "feet")
  23387. },
  23388. {
  23389. name: "Megamacro",
  23390. height: math.unit(1, "mile")
  23391. },
  23392. ]
  23393. ))
  23394. characterMakers.push(() => makeCharacter(
  23395. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23396. {
  23397. side: {
  23398. height: math.unit(20, "feet"),
  23399. weight: math.unit(30000, "kg"),
  23400. name: "Side",
  23401. image: {
  23402. source: "./media/characters/windar/side.svg",
  23403. extra: 1491 / 1248,
  23404. bottom: 82.56 / 1568
  23405. }
  23406. },
  23407. },
  23408. [
  23409. {
  23410. name: "Normal",
  23411. height: math.unit(20, "feet"),
  23412. default: true
  23413. },
  23414. ]
  23415. ))
  23416. characterMakers.push(() => makeCharacter(
  23417. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23418. {
  23419. side: {
  23420. height: math.unit(15.66, "feet"),
  23421. weight: math.unit(150, "lb"),
  23422. name: "Side",
  23423. image: {
  23424. source: "./media/characters/melody/side.svg",
  23425. extra: 1097 / 944,
  23426. bottom: 11.8 / 1109
  23427. }
  23428. },
  23429. sideOutfit: {
  23430. height: math.unit(15.66, "feet"),
  23431. weight: math.unit(150, "lb"),
  23432. name: "Side (Outfit)",
  23433. image: {
  23434. source: "./media/characters/melody/side-outfit.svg",
  23435. extra: 1097 / 944,
  23436. bottom: 11.8 / 1109
  23437. }
  23438. },
  23439. },
  23440. [
  23441. {
  23442. name: "Normal",
  23443. height: math.unit(15.66, "feet"),
  23444. default: true
  23445. },
  23446. ]
  23447. ))
  23448. characterMakers.push(() => makeCharacter(
  23449. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23450. {
  23451. armoredFront: {
  23452. height: math.unit(8, "feet"),
  23453. weight: math.unit(325, "lb"),
  23454. name: "Front",
  23455. image: {
  23456. source: "./media/characters/windera/armored-front.svg",
  23457. extra: 1830/1598,
  23458. bottom: 151/1981
  23459. },
  23460. form: "armored",
  23461. default: true
  23462. },
  23463. macroFront: {
  23464. height: math.unit(70, "feet"),
  23465. weight: math.unit(315453, "lb"),
  23466. name: "Front",
  23467. image: {
  23468. source: "./media/characters/windera/macro-front.svg",
  23469. extra: 963/883,
  23470. bottom: 23/986
  23471. },
  23472. form: "macro",
  23473. default: true
  23474. },
  23475. },
  23476. [
  23477. {
  23478. name: "Normal",
  23479. height: math.unit(8, "feet"),
  23480. default: true,
  23481. form: "armored"
  23482. },
  23483. {
  23484. name: "Normal",
  23485. height: math.unit(70, "feet"),
  23486. default: true,
  23487. form: "macro"
  23488. },
  23489. ],
  23490. {
  23491. "armored": {
  23492. name: "Armored",
  23493. default: true
  23494. },
  23495. "macro": {
  23496. name: "Macro",
  23497. },
  23498. }
  23499. ))
  23500. characterMakers.push(() => makeCharacter(
  23501. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23502. {
  23503. front: {
  23504. height: math.unit(28.75, "feet"),
  23505. weight: math.unit(2000, "kg"),
  23506. name: "Front",
  23507. image: {
  23508. source: "./media/characters/sonear/front.svg",
  23509. extra: 1041.1 / 964.9,
  23510. bottom: 53.7 / 1096.6
  23511. }
  23512. },
  23513. },
  23514. [
  23515. {
  23516. name: "Normal",
  23517. height: math.unit(28.75, "feet"),
  23518. default: true
  23519. },
  23520. ]
  23521. ))
  23522. characterMakers.push(() => makeCharacter(
  23523. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23524. {
  23525. side: {
  23526. height: math.unit(25.5, "feet"),
  23527. weight: math.unit(23000, "kg"),
  23528. name: "Side",
  23529. image: {
  23530. source: "./media/characters/kanara/side.svg"
  23531. }
  23532. },
  23533. },
  23534. [
  23535. {
  23536. name: "Normal",
  23537. height: math.unit(25.5, "feet"),
  23538. default: true
  23539. },
  23540. ]
  23541. ))
  23542. characterMakers.push(() => makeCharacter(
  23543. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23544. {
  23545. side: {
  23546. height: math.unit(10, "feet"),
  23547. weight: math.unit(1000, "kg"),
  23548. name: "Side",
  23549. image: {
  23550. source: "./media/characters/ereus/side.svg",
  23551. extra: 1157 / 959,
  23552. bottom: 153 / 1312.5
  23553. }
  23554. },
  23555. },
  23556. [
  23557. {
  23558. name: "Normal",
  23559. height: math.unit(10, "feet"),
  23560. default: true
  23561. },
  23562. ]
  23563. ))
  23564. characterMakers.push(() => makeCharacter(
  23565. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23566. {
  23567. side: {
  23568. height: math.unit(4.5, "feet"),
  23569. weight: math.unit(500, "lb"),
  23570. name: "Side",
  23571. image: {
  23572. source: "./media/characters/e-ter/side.svg",
  23573. extra: 1550 / 1248,
  23574. bottom: 146 / 1694
  23575. }
  23576. },
  23577. },
  23578. [
  23579. {
  23580. name: "Normal",
  23581. height: math.unit(4.5, "feet"),
  23582. default: true
  23583. },
  23584. ]
  23585. ))
  23586. characterMakers.push(() => makeCharacter(
  23587. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23588. {
  23589. side: {
  23590. height: math.unit(9.7, "feet"),
  23591. weight: math.unit(4000, "kg"),
  23592. name: "Side",
  23593. image: {
  23594. source: "./media/characters/yamie/side.svg"
  23595. }
  23596. },
  23597. },
  23598. [
  23599. {
  23600. name: "Normal",
  23601. height: math.unit(9.7, "feet"),
  23602. default: true
  23603. },
  23604. ]
  23605. ))
  23606. characterMakers.push(() => makeCharacter(
  23607. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23608. {
  23609. front: {
  23610. height: math.unit(50, "feet"),
  23611. weight: math.unit(50000, "kg"),
  23612. name: "Front",
  23613. image: {
  23614. source: "./media/characters/anders/front.svg",
  23615. extra: 570 / 539,
  23616. bottom: 14.7 / 586.7
  23617. }
  23618. },
  23619. },
  23620. [
  23621. {
  23622. name: "Large",
  23623. height: math.unit(50, "feet")
  23624. },
  23625. {
  23626. name: "Macro",
  23627. height: math.unit(2000, "feet"),
  23628. default: true
  23629. },
  23630. {
  23631. name: "Megamacro",
  23632. height: math.unit(12, "miles")
  23633. },
  23634. ]
  23635. ))
  23636. characterMakers.push(() => makeCharacter(
  23637. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23638. {
  23639. front: {
  23640. height: math.unit(7 + 2 / 12, "feet"),
  23641. weight: math.unit(300, "lb"),
  23642. name: "Front",
  23643. image: {
  23644. source: "./media/characters/reban/front.svg",
  23645. extra: 1287/1212,
  23646. bottom: 148/1435
  23647. }
  23648. },
  23649. head: {
  23650. height: math.unit(1.95, "feet"),
  23651. name: "Head",
  23652. image: {
  23653. source: "./media/characters/reban/head.svg"
  23654. }
  23655. },
  23656. maw: {
  23657. height: math.unit(0.95, "feet"),
  23658. name: "Maw",
  23659. image: {
  23660. source: "./media/characters/reban/maw.svg"
  23661. }
  23662. },
  23663. foot: {
  23664. height: math.unit(1.65, "feet"),
  23665. name: "Foot",
  23666. image: {
  23667. source: "./media/characters/reban/foot.svg"
  23668. }
  23669. },
  23670. dick: {
  23671. height: math.unit(7 / 5, "feet"),
  23672. name: "Dick",
  23673. image: {
  23674. source: "./media/characters/reban/dick.svg"
  23675. }
  23676. },
  23677. },
  23678. [
  23679. {
  23680. name: "Natural Height",
  23681. height: math.unit(7 + 2 / 12, "feet")
  23682. },
  23683. {
  23684. name: "Macro",
  23685. height: math.unit(500, "feet"),
  23686. default: true
  23687. },
  23688. {
  23689. name: "Canon Height",
  23690. height: math.unit(50, "AU")
  23691. },
  23692. ]
  23693. ))
  23694. characterMakers.push(() => makeCharacter(
  23695. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23696. {
  23697. front: {
  23698. height: math.unit(6, "feet"),
  23699. weight: math.unit(150, "lb"),
  23700. name: "Front",
  23701. image: {
  23702. source: "./media/characters/terrance-keayes/front.svg",
  23703. extra: 1.005,
  23704. bottom: 151 / 1615
  23705. }
  23706. },
  23707. side: {
  23708. height: math.unit(6, "feet"),
  23709. weight: math.unit(150, "lb"),
  23710. name: "Side",
  23711. image: {
  23712. source: "./media/characters/terrance-keayes/side.svg",
  23713. extra: 1.005,
  23714. bottom: 129.4 / 1544
  23715. }
  23716. },
  23717. back: {
  23718. height: math.unit(6, "feet"),
  23719. weight: math.unit(150, "lb"),
  23720. name: "Back",
  23721. image: {
  23722. source: "./media/characters/terrance-keayes/back.svg",
  23723. extra: 1.005,
  23724. bottom: 58.4 / 1557.3
  23725. }
  23726. },
  23727. dick: {
  23728. height: math.unit(6 * 0.208, "feet"),
  23729. name: "Dick",
  23730. image: {
  23731. source: "./media/characters/terrance-keayes/dick.svg"
  23732. }
  23733. },
  23734. },
  23735. [
  23736. {
  23737. name: "Canon Height",
  23738. height: math.unit(35, "miles"),
  23739. default: true
  23740. },
  23741. ]
  23742. ))
  23743. characterMakers.push(() => makeCharacter(
  23744. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23745. {
  23746. front: {
  23747. height: math.unit(6, "feet"),
  23748. weight: math.unit(150, "lb"),
  23749. name: "Front",
  23750. image: {
  23751. source: "./media/characters/ofelia/front.svg",
  23752. extra: 1130/1117,
  23753. bottom: 91/1221
  23754. }
  23755. },
  23756. back: {
  23757. height: math.unit(6, "feet"),
  23758. weight: math.unit(150, "lb"),
  23759. name: "Back",
  23760. image: {
  23761. source: "./media/characters/ofelia/back.svg",
  23762. extra: 1172/1159,
  23763. bottom: 28/1200
  23764. }
  23765. },
  23766. maw: {
  23767. height: math.unit(1, "feet"),
  23768. name: "Maw",
  23769. image: {
  23770. source: "./media/characters/ofelia/maw.svg"
  23771. }
  23772. },
  23773. foot: {
  23774. height: math.unit(1.949, "feet"),
  23775. name: "Foot",
  23776. image: {
  23777. source: "./media/characters/ofelia/foot.svg"
  23778. }
  23779. },
  23780. },
  23781. [
  23782. {
  23783. name: "Canon Height",
  23784. height: math.unit(2000, "miles"),
  23785. default: true
  23786. },
  23787. ]
  23788. ))
  23789. characterMakers.push(() => makeCharacter(
  23790. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23791. {
  23792. front: {
  23793. height: math.unit(6, "feet"),
  23794. weight: math.unit(150, "lb"),
  23795. name: "Front",
  23796. image: {
  23797. source: "./media/characters/samuel/front.svg",
  23798. extra: 265 / 258,
  23799. bottom: 2 / 266.1566
  23800. }
  23801. },
  23802. },
  23803. [
  23804. {
  23805. name: "Macro",
  23806. height: math.unit(100, "feet"),
  23807. default: true
  23808. },
  23809. {
  23810. name: "Full Size",
  23811. height: math.unit(1000, "miles")
  23812. },
  23813. ]
  23814. ))
  23815. characterMakers.push(() => makeCharacter(
  23816. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23817. {
  23818. front: {
  23819. height: math.unit(6, "feet"),
  23820. weight: math.unit(300, "lb"),
  23821. name: "Front",
  23822. image: {
  23823. source: "./media/characters/beishir-kiel/front.svg",
  23824. extra: 569 / 547,
  23825. bottom: 41.9 / 609
  23826. }
  23827. },
  23828. maw: {
  23829. height: math.unit(6 * 0.202, "feet"),
  23830. name: "Maw",
  23831. image: {
  23832. source: "./media/characters/beishir-kiel/maw.svg"
  23833. }
  23834. },
  23835. },
  23836. [
  23837. {
  23838. name: "Macro",
  23839. height: math.unit(300, "feet"),
  23840. default: true
  23841. },
  23842. ]
  23843. ))
  23844. characterMakers.push(() => makeCharacter(
  23845. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23846. {
  23847. front: {
  23848. height: math.unit(5 + 7/12, "feet"),
  23849. weight: math.unit(120, "lb"),
  23850. name: "Front",
  23851. image: {
  23852. source: "./media/characters/logan-grey/front.svg",
  23853. extra: 1836/1738,
  23854. bottom: 108/1944
  23855. }
  23856. },
  23857. back: {
  23858. height: math.unit(5 + 7/12, "feet"),
  23859. weight: math.unit(120, "lb"),
  23860. name: "Back",
  23861. image: {
  23862. source: "./media/characters/logan-grey/back.svg",
  23863. extra: 1880/1794,
  23864. bottom: 24/1904
  23865. }
  23866. },
  23867. frontSfw: {
  23868. height: math.unit(5 + 7/12, "feet"),
  23869. weight: math.unit(120, "lb"),
  23870. name: "Front (SFW)",
  23871. image: {
  23872. source: "./media/characters/logan-grey/front-sfw.svg",
  23873. extra: 1836/1738,
  23874. bottom: 108/1944
  23875. }
  23876. },
  23877. backSfw: {
  23878. height: math.unit(5 + 7/12, "feet"),
  23879. weight: math.unit(120, "lb"),
  23880. name: "Back (SFW)",
  23881. image: {
  23882. source: "./media/characters/logan-grey/back-sfw.svg",
  23883. extra: 1880/1794,
  23884. bottom: 24/1904
  23885. }
  23886. },
  23887. hands: {
  23888. height: math.unit(0.84, "feet"),
  23889. name: "Hands",
  23890. image: {
  23891. source: "./media/characters/logan-grey/hands.svg"
  23892. }
  23893. },
  23894. paws: {
  23895. height: math.unit(0.72, "feet"),
  23896. name: "Paws",
  23897. image: {
  23898. source: "./media/characters/logan-grey/paws.svg"
  23899. }
  23900. },
  23901. cock: {
  23902. height: math.unit(1.45, "feet"),
  23903. name: "Cock",
  23904. image: {
  23905. source: "./media/characters/logan-grey/cock.svg"
  23906. }
  23907. },
  23908. cockAlt: {
  23909. height: math.unit(1.437, "feet"),
  23910. name: "Cock (alt)",
  23911. image: {
  23912. source: "./media/characters/logan-grey/cock-alt.svg"
  23913. }
  23914. },
  23915. },
  23916. [
  23917. {
  23918. name: "Normal",
  23919. height: math.unit(5 + 8 / 12, "feet")
  23920. },
  23921. {
  23922. name: "The 500 Foot Femboy",
  23923. height: math.unit(500, "feet"),
  23924. default: true
  23925. },
  23926. {
  23927. name: "Megmacro",
  23928. height: math.unit(20, "miles")
  23929. },
  23930. ]
  23931. ))
  23932. characterMakers.push(() => makeCharacter(
  23933. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23934. {
  23935. front: {
  23936. height: math.unit(8 + 2 / 12, "feet"),
  23937. weight: math.unit(275, "lb"),
  23938. name: "Front",
  23939. image: {
  23940. source: "./media/characters/draganta/front.svg",
  23941. extra: 1177 / 1135,
  23942. bottom: 33.46 / 1212.1
  23943. }
  23944. },
  23945. },
  23946. [
  23947. {
  23948. name: "Normal",
  23949. height: math.unit(8 + 6 / 12, "feet"),
  23950. default: true
  23951. },
  23952. {
  23953. name: "Macro",
  23954. height: math.unit(150, "feet")
  23955. },
  23956. {
  23957. name: "Megamacro",
  23958. height: math.unit(1000, "miles")
  23959. },
  23960. ]
  23961. ))
  23962. characterMakers.push(() => makeCharacter(
  23963. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23964. {
  23965. front: {
  23966. height: math.unit(1.72, "m"),
  23967. weight: math.unit(80, "lb"),
  23968. name: "Front",
  23969. image: {
  23970. source: "./media/characters/voski/front.svg",
  23971. extra: 2076.22 / 2022.4,
  23972. bottom: 102.7 / 2177.3866
  23973. }
  23974. },
  23975. frontFlaccid: {
  23976. height: math.unit(1.72, "m"),
  23977. weight: math.unit(80, "lb"),
  23978. name: "Front (Flaccid)",
  23979. image: {
  23980. source: "./media/characters/voski/front-flaccid.svg",
  23981. extra: 2076.22 / 2022.4,
  23982. bottom: 102.7 / 2177.3866
  23983. }
  23984. },
  23985. frontErect: {
  23986. height: math.unit(1.72, "m"),
  23987. weight: math.unit(80, "lb"),
  23988. name: "Front (Erect)",
  23989. image: {
  23990. source: "./media/characters/voski/front-erect.svg",
  23991. extra: 2076.22 / 2022.4,
  23992. bottom: 102.7 / 2177.3866
  23993. }
  23994. },
  23995. back: {
  23996. height: math.unit(1.72, "m"),
  23997. weight: math.unit(80, "lb"),
  23998. name: "Back",
  23999. image: {
  24000. source: "./media/characters/voski/back.svg",
  24001. extra: 2104 / 2051,
  24002. bottom: 10.45 / 2113.63
  24003. }
  24004. },
  24005. },
  24006. [
  24007. {
  24008. name: "Normal",
  24009. height: math.unit(1.72, "m")
  24010. },
  24011. {
  24012. name: "Macro",
  24013. height: math.unit(55, "m"),
  24014. default: true
  24015. },
  24016. {
  24017. name: "Macro+",
  24018. height: math.unit(300, "m")
  24019. },
  24020. {
  24021. name: "Macro++",
  24022. height: math.unit(700, "m")
  24023. },
  24024. {
  24025. name: "Macro+++",
  24026. height: math.unit(4500, "m")
  24027. },
  24028. {
  24029. name: "Macro++++",
  24030. height: math.unit(45, "km")
  24031. },
  24032. {
  24033. name: "Macro+++++",
  24034. height: math.unit(1220, "km")
  24035. },
  24036. ]
  24037. ))
  24038. characterMakers.push(() => makeCharacter(
  24039. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24040. {
  24041. front: {
  24042. height: math.unit(2.3, "m"),
  24043. weight: math.unit(304, "kg"),
  24044. name: "Front",
  24045. image: {
  24046. source: "./media/characters/icowom-lee/front.svg",
  24047. extra: 985 / 955,
  24048. bottom: 25.4 / 1012
  24049. }
  24050. },
  24051. fronttentacles: {
  24052. height: math.unit(2.3, "m"),
  24053. weight: math.unit(304, "kg"),
  24054. name: "Front-tentacles",
  24055. image: {
  24056. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24057. extra: 985 / 955,
  24058. bottom: 25.4 / 1012
  24059. }
  24060. },
  24061. back: {
  24062. height: math.unit(2.3, "m"),
  24063. weight: math.unit(304, "kg"),
  24064. name: "Back",
  24065. image: {
  24066. source: "./media/characters/icowom-lee/back.svg",
  24067. extra: 975 / 954,
  24068. bottom: 9.5 / 985
  24069. }
  24070. },
  24071. backtentacles: {
  24072. height: math.unit(2.3, "m"),
  24073. weight: math.unit(304, "kg"),
  24074. name: "Back-tentacles",
  24075. image: {
  24076. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24077. extra: 975 / 954,
  24078. bottom: 9.5 / 985
  24079. }
  24080. },
  24081. frontDressed: {
  24082. height: math.unit(2.3, "m"),
  24083. weight: math.unit(304, "kg"),
  24084. name: "Front (Dressed)",
  24085. image: {
  24086. source: "./media/characters/icowom-lee/front-dressed.svg",
  24087. extra: 3076 / 2933,
  24088. bottom: 51.4 / 3125.1889
  24089. }
  24090. },
  24091. rump: {
  24092. height: math.unit(0.776, "meters"),
  24093. name: "Rump",
  24094. image: {
  24095. source: "./media/characters/icowom-lee/rump.svg"
  24096. }
  24097. },
  24098. genitals: {
  24099. height: math.unit(0.78, "meters"),
  24100. name: "Genitals",
  24101. image: {
  24102. source: "./media/characters/icowom-lee/genitals.svg"
  24103. }
  24104. },
  24105. },
  24106. [
  24107. {
  24108. name: "Normal",
  24109. height: math.unit(2.3, "meters"),
  24110. default: true
  24111. },
  24112. {
  24113. name: "Macro",
  24114. height: math.unit(94, "meters"),
  24115. default: true
  24116. },
  24117. ]
  24118. ))
  24119. characterMakers.push(() => makeCharacter(
  24120. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24121. {
  24122. front: {
  24123. height: math.unit(22, "meters"),
  24124. weight: math.unit(21000, "kg"),
  24125. name: "Front",
  24126. image: {
  24127. source: "./media/characters/shock-diamond/front.svg",
  24128. extra: 2204 / 2053,
  24129. bottom: 65 / 2239.47
  24130. }
  24131. },
  24132. frontNude: {
  24133. height: math.unit(22, "meters"),
  24134. weight: math.unit(21000, "kg"),
  24135. name: "Front (Nude)",
  24136. image: {
  24137. source: "./media/characters/shock-diamond/front-nude.svg",
  24138. extra: 2514 / 2285,
  24139. bottom: 13 / 2527.56
  24140. }
  24141. },
  24142. },
  24143. [
  24144. {
  24145. name: "Normal",
  24146. height: math.unit(3, "meters")
  24147. },
  24148. {
  24149. name: "Macro",
  24150. height: math.unit(22, "meters"),
  24151. default: true
  24152. },
  24153. ]
  24154. ))
  24155. characterMakers.push(() => makeCharacter(
  24156. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24157. {
  24158. front: {
  24159. height: math.unit(5 + 4/12, "feet"),
  24160. weight: math.unit(125, "lb"),
  24161. name: "Front",
  24162. image: {
  24163. source: "./media/characters/rory/front.svg",
  24164. extra: 1790/1681,
  24165. bottom: 66/1856
  24166. }
  24167. },
  24168. back: {
  24169. height: math.unit(5 + 4/12, "feet"),
  24170. weight: math.unit(125, "lb"),
  24171. name: "Back",
  24172. image: {
  24173. source: "./media/characters/rory/back.svg",
  24174. extra: 1805/1690,
  24175. bottom: 56/1861
  24176. }
  24177. },
  24178. frontDressed: {
  24179. height: math.unit(5 + 4/12, "feet"),
  24180. weight: math.unit(125, "lb"),
  24181. name: "Front (Dressed)",
  24182. image: {
  24183. source: "./media/characters/rory/front-dressed.svg",
  24184. extra: 1790/1681,
  24185. bottom: 66/1856
  24186. }
  24187. },
  24188. backDressed: {
  24189. height: math.unit(5 + 4/12, "feet"),
  24190. weight: math.unit(125, "lb"),
  24191. name: "Back (Dressed)",
  24192. image: {
  24193. source: "./media/characters/rory/back-dressed.svg",
  24194. extra: 1805/1690,
  24195. bottom: 56/1861
  24196. }
  24197. },
  24198. frontNsfw: {
  24199. height: math.unit(5 + 4/12, "feet"),
  24200. weight: math.unit(125, "lb"),
  24201. name: "Front (NSFW)",
  24202. image: {
  24203. source: "./media/characters/rory/front-nsfw.svg",
  24204. extra: 1790/1681,
  24205. bottom: 66/1856
  24206. }
  24207. },
  24208. backNsfw: {
  24209. height: math.unit(5 + 4/12, "feet"),
  24210. weight: math.unit(125, "lb"),
  24211. name: "Back (NSFW)",
  24212. image: {
  24213. source: "./media/characters/rory/back-nsfw.svg",
  24214. extra: 1805/1690,
  24215. bottom: 56/1861
  24216. }
  24217. },
  24218. dick: {
  24219. height: math.unit(0.8, "feet"),
  24220. name: "Dick",
  24221. image: {
  24222. source: "./media/characters/rory/dick.svg"
  24223. }
  24224. },
  24225. },
  24226. [
  24227. {
  24228. name: "Micro",
  24229. height: math.unit(3, "inches")
  24230. },
  24231. {
  24232. name: "Normal",
  24233. height: math.unit(5 + 4/12, "feet"),
  24234. default: true
  24235. },
  24236. {
  24237. name: "Macro",
  24238. height: math.unit(90, "feet")
  24239. },
  24240. {
  24241. name: "Supercharged",
  24242. height: math.unit(270, "feet")
  24243. },
  24244. ]
  24245. ))
  24246. characterMakers.push(() => makeCharacter(
  24247. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24248. {
  24249. front: {
  24250. height: math.unit(5 + 9 / 12, "feet"),
  24251. weight: math.unit(190, "lb"),
  24252. name: "Front",
  24253. image: {
  24254. source: "./media/characters/sprisk/front.svg",
  24255. extra: 1225 / 1180,
  24256. bottom: 42.7 / 1266.4
  24257. }
  24258. },
  24259. frontNsfw: {
  24260. height: math.unit(5 + 9 / 12, "feet"),
  24261. weight: math.unit(190, "lb"),
  24262. name: "Front (NSFW)",
  24263. image: {
  24264. source: "./media/characters/sprisk/front-nsfw.svg",
  24265. extra: 1225 / 1180,
  24266. bottom: 42.7 / 1266.4
  24267. }
  24268. },
  24269. back: {
  24270. height: math.unit(5 + 9 / 12, "feet"),
  24271. weight: math.unit(190, "lb"),
  24272. name: "Back",
  24273. image: {
  24274. source: "./media/characters/sprisk/back.svg",
  24275. extra: 1247 / 1200,
  24276. bottom: 5.6 / 1253.04
  24277. }
  24278. },
  24279. },
  24280. [
  24281. {
  24282. name: "Tiny",
  24283. height: math.unit(2, "inches")
  24284. },
  24285. {
  24286. name: "Normal",
  24287. height: math.unit(5 + 9 / 12, "feet"),
  24288. default: true
  24289. },
  24290. {
  24291. name: "Mini Macro",
  24292. height: math.unit(18, "feet")
  24293. },
  24294. {
  24295. name: "Macro",
  24296. height: math.unit(100, "feet")
  24297. },
  24298. {
  24299. name: "MACRO",
  24300. height: math.unit(50, "miles")
  24301. },
  24302. {
  24303. name: "M A C R O",
  24304. height: math.unit(300, "miles")
  24305. },
  24306. ]
  24307. ))
  24308. characterMakers.push(() => makeCharacter(
  24309. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24310. {
  24311. side: {
  24312. height: math.unit(15.6, "meters"),
  24313. weight: math.unit(700000, "kg"),
  24314. name: "Side",
  24315. image: {
  24316. source: "./media/characters/bunsen/side.svg",
  24317. extra: 1644 / 358
  24318. }
  24319. },
  24320. foot: {
  24321. height: math.unit(1.611 * 1644 / 358, "meter"),
  24322. name: "Foot",
  24323. image: {
  24324. source: "./media/characters/bunsen/foot.svg"
  24325. }
  24326. },
  24327. },
  24328. [
  24329. {
  24330. name: "Small",
  24331. height: math.unit(10, "feet")
  24332. },
  24333. {
  24334. name: "Normal",
  24335. height: math.unit(15.6, "meters"),
  24336. default: true
  24337. },
  24338. ]
  24339. ))
  24340. characterMakers.push(() => makeCharacter(
  24341. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24342. {
  24343. front: {
  24344. height: math.unit(4 + 11 / 12, "feet"),
  24345. weight: math.unit(140, "lb"),
  24346. name: "Front",
  24347. image: {
  24348. source: "./media/characters/sesh/front.svg",
  24349. extra: 3420 / 3231,
  24350. bottom: 72 / 3949.5
  24351. }
  24352. },
  24353. },
  24354. [
  24355. {
  24356. name: "Normal",
  24357. height: math.unit(4 + 11 / 12, "feet")
  24358. },
  24359. {
  24360. name: "Grown",
  24361. height: math.unit(15, "feet"),
  24362. default: true
  24363. },
  24364. {
  24365. name: "Macro",
  24366. height: math.unit(1500, "feet")
  24367. },
  24368. {
  24369. name: "Megamacro",
  24370. height: math.unit(30, "miles")
  24371. },
  24372. {
  24373. name: "Continental",
  24374. height: math.unit(3000, "miles")
  24375. },
  24376. {
  24377. name: "Gravity Mass",
  24378. height: math.unit(300000, "miles")
  24379. },
  24380. {
  24381. name: "Planet Buster",
  24382. height: math.unit(30000000, "miles")
  24383. },
  24384. {
  24385. name: "Big",
  24386. height: math.unit(3000000000, "miles")
  24387. },
  24388. ]
  24389. ))
  24390. characterMakers.push(() => makeCharacter(
  24391. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24392. {
  24393. front: {
  24394. height: math.unit(9, "feet"),
  24395. weight: math.unit(350, "lb"),
  24396. name: "Front",
  24397. image: {
  24398. source: "./media/characters/pepper/front.svg",
  24399. extra: 1448 / 1312,
  24400. bottom: 9.4 / 1457.88
  24401. }
  24402. },
  24403. back: {
  24404. height: math.unit(9, "feet"),
  24405. weight: math.unit(350, "lb"),
  24406. name: "Back",
  24407. image: {
  24408. source: "./media/characters/pepper/back.svg",
  24409. extra: 1423 / 1300,
  24410. bottom: 4.6 / 1429
  24411. }
  24412. },
  24413. maw: {
  24414. height: math.unit(0.932, "feet"),
  24415. name: "Maw",
  24416. image: {
  24417. source: "./media/characters/pepper/maw.svg"
  24418. }
  24419. },
  24420. },
  24421. [
  24422. {
  24423. name: "Normal",
  24424. height: math.unit(9, "feet"),
  24425. default: true
  24426. },
  24427. ]
  24428. ))
  24429. characterMakers.push(() => makeCharacter(
  24430. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24431. {
  24432. front: {
  24433. height: math.unit(6, "feet"),
  24434. weight: math.unit(150, "lb"),
  24435. name: "Front",
  24436. image: {
  24437. source: "./media/characters/maelstrom/front.svg",
  24438. extra: 2100 / 1883,
  24439. bottom: 94 / 2196.7
  24440. }
  24441. },
  24442. },
  24443. [
  24444. {
  24445. name: "Less Kaiju",
  24446. height: math.unit(200, "feet")
  24447. },
  24448. {
  24449. name: "Kaiju",
  24450. height: math.unit(400, "feet"),
  24451. default: true
  24452. },
  24453. {
  24454. name: "Kaiju-er",
  24455. height: math.unit(600, "feet")
  24456. },
  24457. ]
  24458. ))
  24459. characterMakers.push(() => makeCharacter(
  24460. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24461. {
  24462. front: {
  24463. height: math.unit(6 + 5 / 12, "feet"),
  24464. weight: math.unit(180, "lb"),
  24465. name: "Front",
  24466. image: {
  24467. source: "./media/characters/lexir/front.svg",
  24468. extra: 180 / 172,
  24469. bottom: 12 / 192
  24470. }
  24471. },
  24472. back: {
  24473. height: math.unit(6 + 5 / 12, "feet"),
  24474. weight: math.unit(180, "lb"),
  24475. name: "Back",
  24476. image: {
  24477. source: "./media/characters/lexir/back.svg",
  24478. extra: 1273/1201,
  24479. bottom: 39/1312
  24480. }
  24481. },
  24482. },
  24483. [
  24484. {
  24485. name: "Very Smal",
  24486. height: math.unit(1, "nm")
  24487. },
  24488. {
  24489. name: "Normal",
  24490. height: math.unit(6 + 5 / 12, "feet"),
  24491. default: true
  24492. },
  24493. {
  24494. name: "Macro",
  24495. height: math.unit(1, "mile")
  24496. },
  24497. {
  24498. name: "Megamacro",
  24499. height: math.unit(50, "miles")
  24500. },
  24501. ]
  24502. ))
  24503. characterMakers.push(() => makeCharacter(
  24504. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24505. {
  24506. front: {
  24507. height: math.unit(1.5, "meters"),
  24508. weight: math.unit(100, "lb"),
  24509. name: "Front",
  24510. image: {
  24511. source: "./media/characters/maksio/front.svg",
  24512. extra: 1549 / 1531,
  24513. bottom: 123.7 / 1674.5429
  24514. }
  24515. },
  24516. back: {
  24517. height: math.unit(1.5, "meters"),
  24518. weight: math.unit(100, "lb"),
  24519. name: "Back",
  24520. image: {
  24521. source: "./media/characters/maksio/back.svg",
  24522. extra: 1541 / 1509,
  24523. bottom: 97 / 1639
  24524. }
  24525. },
  24526. hand: {
  24527. height: math.unit(0.621, "feet"),
  24528. name: "Hand",
  24529. image: {
  24530. source: "./media/characters/maksio/hand.svg"
  24531. }
  24532. },
  24533. foot: {
  24534. height: math.unit(1.611, "feet"),
  24535. name: "Foot",
  24536. image: {
  24537. source: "./media/characters/maksio/foot.svg"
  24538. }
  24539. },
  24540. },
  24541. [
  24542. {
  24543. name: "Shrunken",
  24544. height: math.unit(10, "cm")
  24545. },
  24546. {
  24547. name: "Normal",
  24548. height: math.unit(150, "cm"),
  24549. default: true
  24550. },
  24551. ]
  24552. ))
  24553. characterMakers.push(() => makeCharacter(
  24554. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24555. {
  24556. front: {
  24557. height: math.unit(100, "feet"),
  24558. name: "Front",
  24559. image: {
  24560. source: "./media/characters/erza-bear/front.svg",
  24561. extra: 2449 / 2390,
  24562. bottom: 46 / 2494
  24563. }
  24564. },
  24565. back: {
  24566. height: math.unit(100, "feet"),
  24567. name: "Back",
  24568. image: {
  24569. source: "./media/characters/erza-bear/back.svg",
  24570. extra: 2489 / 2430,
  24571. bottom: 85.4 / 2480
  24572. }
  24573. },
  24574. tail: {
  24575. height: math.unit(42, "feet"),
  24576. name: "Tail",
  24577. image: {
  24578. source: "./media/characters/erza-bear/tail.svg"
  24579. }
  24580. },
  24581. tongue: {
  24582. height: math.unit(8, "feet"),
  24583. name: "Tongue",
  24584. image: {
  24585. source: "./media/characters/erza-bear/tongue.svg"
  24586. }
  24587. },
  24588. dick: {
  24589. height: math.unit(10.5, "feet"),
  24590. name: "Dick",
  24591. image: {
  24592. source: "./media/characters/erza-bear/dick.svg"
  24593. }
  24594. },
  24595. dickVertical: {
  24596. height: math.unit(16.9, "feet"),
  24597. name: "Dick (Vertical)",
  24598. image: {
  24599. source: "./media/characters/erza-bear/dick-vertical.svg"
  24600. }
  24601. },
  24602. },
  24603. [
  24604. {
  24605. name: "Macro",
  24606. height: math.unit(100, "feet"),
  24607. default: true
  24608. },
  24609. ]
  24610. ))
  24611. characterMakers.push(() => makeCharacter(
  24612. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24613. {
  24614. front: {
  24615. height: math.unit(172, "cm"),
  24616. weight: math.unit(73, "kg"),
  24617. name: "Front",
  24618. image: {
  24619. source: "./media/characters/violet-flor/front.svg",
  24620. extra: 1530 / 1442,
  24621. bottom: 61.9 / 1588.8
  24622. }
  24623. },
  24624. back: {
  24625. height: math.unit(180, "cm"),
  24626. weight: math.unit(73, "kg"),
  24627. name: "Back",
  24628. image: {
  24629. source: "./media/characters/violet-flor/back.svg",
  24630. extra: 1692 / 1630,
  24631. bottom: 20 / 1712
  24632. }
  24633. },
  24634. },
  24635. [
  24636. {
  24637. name: "Normal",
  24638. height: math.unit(172, "cm"),
  24639. default: true
  24640. },
  24641. ]
  24642. ))
  24643. characterMakers.push(() => makeCharacter(
  24644. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24645. {
  24646. front: {
  24647. height: math.unit(6, "feet"),
  24648. weight: math.unit(220, "lb"),
  24649. name: "Front",
  24650. image: {
  24651. source: "./media/characters/lynn-rhea/front.svg",
  24652. extra: 310 / 273
  24653. }
  24654. },
  24655. back: {
  24656. height: math.unit(6, "feet"),
  24657. weight: math.unit(220, "lb"),
  24658. name: "Back",
  24659. image: {
  24660. source: "./media/characters/lynn-rhea/back.svg",
  24661. extra: 310 / 273
  24662. }
  24663. },
  24664. dicks: {
  24665. height: math.unit(0.9, "feet"),
  24666. name: "Dicks",
  24667. image: {
  24668. source: "./media/characters/lynn-rhea/dicks.svg"
  24669. }
  24670. },
  24671. slit: {
  24672. height: math.unit(0.4, "feet"),
  24673. name: "Slit",
  24674. image: {
  24675. source: "./media/characters/lynn-rhea/slit.svg"
  24676. }
  24677. },
  24678. },
  24679. [
  24680. {
  24681. name: "Micro",
  24682. height: math.unit(1, "inch")
  24683. },
  24684. {
  24685. name: "Macro",
  24686. height: math.unit(60, "feet"),
  24687. default: true
  24688. },
  24689. {
  24690. name: "Megamacro",
  24691. height: math.unit(2, "miles")
  24692. },
  24693. {
  24694. name: "Gigamacro",
  24695. height: math.unit(3, "earths")
  24696. },
  24697. {
  24698. name: "Galactic",
  24699. height: math.unit(0.8, "galaxies")
  24700. },
  24701. ]
  24702. ))
  24703. characterMakers.push(() => makeCharacter(
  24704. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24705. {
  24706. front: {
  24707. height: math.unit(1600, "feet"),
  24708. weight: math.unit(85758785169, "kg"),
  24709. name: "Front",
  24710. image: {
  24711. source: "./media/characters/valathos/front.svg",
  24712. extra: 1451 / 1339
  24713. }
  24714. },
  24715. },
  24716. [
  24717. {
  24718. name: "Macro",
  24719. height: math.unit(1600, "feet"),
  24720. default: true
  24721. },
  24722. ]
  24723. ))
  24724. characterMakers.push(() => makeCharacter(
  24725. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24726. {
  24727. front: {
  24728. height: math.unit(7 + 5 / 12, "feet"),
  24729. weight: math.unit(300, "lb"),
  24730. name: "Front",
  24731. image: {
  24732. source: "./media/characters/azula/front.svg",
  24733. extra: 3208 / 2880,
  24734. bottom: 80.2 / 3277
  24735. }
  24736. },
  24737. back: {
  24738. height: math.unit(7 + 5 / 12, "feet"),
  24739. weight: math.unit(300, "lb"),
  24740. name: "Back",
  24741. image: {
  24742. source: "./media/characters/azula/back.svg",
  24743. extra: 3169 / 2822,
  24744. bottom: 150.6 / 3321
  24745. }
  24746. },
  24747. },
  24748. [
  24749. {
  24750. name: "Normal",
  24751. height: math.unit(7 + 5 / 12, "feet"),
  24752. default: true
  24753. },
  24754. {
  24755. name: "Big",
  24756. height: math.unit(20, "feet")
  24757. },
  24758. ]
  24759. ))
  24760. characterMakers.push(() => makeCharacter(
  24761. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24762. {
  24763. front: {
  24764. height: math.unit(5 + 1 / 12, "feet"),
  24765. weight: math.unit(110, "lb"),
  24766. name: "Front",
  24767. image: {
  24768. source: "./media/characters/rupert/front.svg",
  24769. extra: 1549 / 1495,
  24770. bottom: 54.2 / 1604.4
  24771. }
  24772. },
  24773. },
  24774. [
  24775. {
  24776. name: "Normal",
  24777. height: math.unit(5 + 1 / 12, "feet"),
  24778. default: true
  24779. },
  24780. ]
  24781. ))
  24782. characterMakers.push(() => makeCharacter(
  24783. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24784. {
  24785. front: {
  24786. height: math.unit(8 + 4 / 12, "feet"),
  24787. weight: math.unit(350, "lb"),
  24788. name: "Front",
  24789. image: {
  24790. source: "./media/characters/sheera-castellar/front.svg",
  24791. extra: 1957 / 1894,
  24792. bottom: 26.97 / 1975.017
  24793. }
  24794. },
  24795. side: {
  24796. height: math.unit(8 + 4 / 12, "feet"),
  24797. weight: math.unit(350, "lb"),
  24798. name: "Side",
  24799. image: {
  24800. source: "./media/characters/sheera-castellar/side.svg",
  24801. extra: 1957 / 1894
  24802. }
  24803. },
  24804. back: {
  24805. height: math.unit(8 + 4 / 12, "feet"),
  24806. weight: math.unit(350, "lb"),
  24807. name: "Back",
  24808. image: {
  24809. source: "./media/characters/sheera-castellar/back.svg",
  24810. extra: 1957 / 1894
  24811. }
  24812. },
  24813. angled: {
  24814. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24815. weight: math.unit(350, "lb"),
  24816. name: "Angled",
  24817. image: {
  24818. source: "./media/characters/sheera-castellar/angled.svg",
  24819. extra: 1807 / 1707,
  24820. bottom: 68 / 1875
  24821. }
  24822. },
  24823. genitals: {
  24824. height: math.unit(2.2, "feet"),
  24825. name: "Genitals",
  24826. image: {
  24827. source: "./media/characters/sheera-castellar/genitals.svg"
  24828. }
  24829. },
  24830. taur: {
  24831. height: math.unit(10 + 6/12, "feet"),
  24832. name: "Taur",
  24833. image: {
  24834. source: "./media/characters/sheera-castellar/taur.svg",
  24835. extra: 2017/1909,
  24836. bottom: 185/2202
  24837. }
  24838. },
  24839. },
  24840. [
  24841. {
  24842. name: "Normal",
  24843. height: math.unit(8 + 4 / 12, "feet")
  24844. },
  24845. {
  24846. name: "Macro",
  24847. height: math.unit(150, "feet"),
  24848. default: true
  24849. },
  24850. {
  24851. name: "Macro+",
  24852. height: math.unit(800, "feet")
  24853. },
  24854. ]
  24855. ))
  24856. characterMakers.push(() => makeCharacter(
  24857. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24858. {
  24859. front: {
  24860. height: math.unit(6, "feet"),
  24861. weight: math.unit(150, "lb"),
  24862. name: "Front",
  24863. image: {
  24864. source: "./media/characters/jaipur/front.svg",
  24865. extra: 3860 / 3731,
  24866. bottom: 287 / 4140
  24867. }
  24868. },
  24869. back: {
  24870. height: math.unit(6, "feet"),
  24871. weight: math.unit(150, "lb"),
  24872. name: "Back",
  24873. image: {
  24874. source: "./media/characters/jaipur/back.svg",
  24875. extra: 1637/1561,
  24876. bottom: 154/1791
  24877. }
  24878. },
  24879. },
  24880. [
  24881. {
  24882. name: "Normal",
  24883. height: math.unit(1.85, "meters"),
  24884. default: true
  24885. },
  24886. {
  24887. name: "Macro",
  24888. height: math.unit(150, "meters")
  24889. },
  24890. {
  24891. name: "Macro+",
  24892. height: math.unit(0.5, "miles")
  24893. },
  24894. {
  24895. name: "Macro++",
  24896. height: math.unit(2.5, "miles")
  24897. },
  24898. {
  24899. name: "Macro+++",
  24900. height: math.unit(12, "miles")
  24901. },
  24902. {
  24903. name: "Macro++++",
  24904. height: math.unit(120, "miles")
  24905. },
  24906. {
  24907. name: "Macro+++++",
  24908. height: math.unit(1200, "miles")
  24909. },
  24910. ]
  24911. ))
  24912. characterMakers.push(() => makeCharacter(
  24913. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24914. {
  24915. front: {
  24916. height: math.unit(6, "feet"),
  24917. weight: math.unit(150, "lb"),
  24918. name: "Front",
  24919. image: {
  24920. source: "./media/characters/sheila-wolf/front.svg",
  24921. extra: 1931 / 1808,
  24922. bottom: 29.5 / 1960
  24923. }
  24924. },
  24925. dick: {
  24926. height: math.unit(1.464, "feet"),
  24927. name: "Dick",
  24928. image: {
  24929. source: "./media/characters/sheila-wolf/dick.svg"
  24930. }
  24931. },
  24932. muzzle: {
  24933. height: math.unit(0.513, "feet"),
  24934. name: "Muzzle",
  24935. image: {
  24936. source: "./media/characters/sheila-wolf/muzzle.svg"
  24937. }
  24938. },
  24939. },
  24940. [
  24941. {
  24942. name: "Macro",
  24943. height: math.unit(70, "feet"),
  24944. default: true
  24945. },
  24946. ]
  24947. ))
  24948. characterMakers.push(() => makeCharacter(
  24949. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24950. {
  24951. front: {
  24952. height: math.unit(32, "meters"),
  24953. weight: math.unit(300000, "kg"),
  24954. name: "Front",
  24955. image: {
  24956. source: "./media/characters/almor/front.svg",
  24957. extra: 1408 / 1322,
  24958. bottom: 94.6 / 1506.5
  24959. }
  24960. },
  24961. },
  24962. [
  24963. {
  24964. name: "Macro",
  24965. height: math.unit(32, "meters"),
  24966. default: true
  24967. },
  24968. ]
  24969. ))
  24970. characterMakers.push(() => makeCharacter(
  24971. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24972. {
  24973. front: {
  24974. height: math.unit(7, "feet"),
  24975. weight: math.unit(200, "lb"),
  24976. name: "Front",
  24977. image: {
  24978. source: "./media/characters/silver/front.svg",
  24979. extra: 472.1 / 450.5,
  24980. bottom: 26.5 / 499.424
  24981. }
  24982. },
  24983. },
  24984. [
  24985. {
  24986. name: "Normal",
  24987. height: math.unit(7, "feet"),
  24988. default: true
  24989. },
  24990. {
  24991. name: "Macro",
  24992. height: math.unit(800, "feet")
  24993. },
  24994. {
  24995. name: "Megamacro",
  24996. height: math.unit(250, "miles")
  24997. },
  24998. ]
  24999. ))
  25000. characterMakers.push(() => makeCharacter(
  25001. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25002. {
  25003. front: {
  25004. height: math.unit(6, "feet"),
  25005. weight: math.unit(150, "lb"),
  25006. name: "Front",
  25007. image: {
  25008. source: "./media/characters/pliskin/front.svg",
  25009. extra: 1469 / 1359,
  25010. bottom: 70 / 1540
  25011. }
  25012. },
  25013. },
  25014. [
  25015. {
  25016. name: "Micro",
  25017. height: math.unit(3, "inches")
  25018. },
  25019. {
  25020. name: "Normal",
  25021. height: math.unit(5 + 11 / 12, "feet"),
  25022. default: true
  25023. },
  25024. {
  25025. name: "Macro",
  25026. height: math.unit(120, "feet")
  25027. },
  25028. ]
  25029. ))
  25030. characterMakers.push(() => makeCharacter(
  25031. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25032. {
  25033. front: {
  25034. height: math.unit(6, "feet"),
  25035. weight: math.unit(150, "lb"),
  25036. name: "Front",
  25037. image: {
  25038. source: "./media/characters/sammy/front.svg",
  25039. extra: 1193 / 1089,
  25040. bottom: 30.5 / 1226
  25041. }
  25042. },
  25043. },
  25044. [
  25045. {
  25046. name: "Macro",
  25047. height: math.unit(1700, "feet"),
  25048. default: true
  25049. },
  25050. {
  25051. name: "Examacro",
  25052. height: math.unit(2.5e9, "lightyears")
  25053. },
  25054. ]
  25055. ))
  25056. characterMakers.push(() => makeCharacter(
  25057. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25058. {
  25059. front: {
  25060. height: math.unit(21, "meters"),
  25061. weight: math.unit(12, "tonnes"),
  25062. name: "Front",
  25063. image: {
  25064. source: "./media/characters/kuru/front.svg",
  25065. extra: 4301 / 3785,
  25066. bottom: 371.3 / 4691
  25067. }
  25068. },
  25069. },
  25070. [
  25071. {
  25072. name: "Macro",
  25073. height: math.unit(21, "meters"),
  25074. default: true
  25075. },
  25076. ]
  25077. ))
  25078. characterMakers.push(() => makeCharacter(
  25079. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25080. {
  25081. front: {
  25082. height: math.unit(23, "meters"),
  25083. weight: math.unit(12.2, "tonnes"),
  25084. name: "Front",
  25085. image: {
  25086. source: "./media/characters/rakka/front.svg",
  25087. extra: 4670 / 4169,
  25088. bottom: 301 / 4968.7
  25089. }
  25090. },
  25091. },
  25092. [
  25093. {
  25094. name: "Macro",
  25095. height: math.unit(23, "meters"),
  25096. default: true
  25097. },
  25098. ]
  25099. ))
  25100. characterMakers.push(() => makeCharacter(
  25101. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25102. {
  25103. front: {
  25104. height: math.unit(6, "feet"),
  25105. weight: math.unit(150, "lb"),
  25106. name: "Front",
  25107. image: {
  25108. source: "./media/characters/rhys-feline/front.svg",
  25109. extra: 2488 / 2308,
  25110. bottom: 35.67 / 2519.19
  25111. }
  25112. },
  25113. },
  25114. [
  25115. {
  25116. name: "Really Small",
  25117. height: math.unit(1, "nm")
  25118. },
  25119. {
  25120. name: "Micro",
  25121. height: math.unit(4, "inches")
  25122. },
  25123. {
  25124. name: "Normal",
  25125. height: math.unit(4 + 10 / 12, "feet"),
  25126. default: true
  25127. },
  25128. {
  25129. name: "Macro",
  25130. height: math.unit(100, "feet")
  25131. },
  25132. {
  25133. name: "Megamacto",
  25134. height: math.unit(50, "miles")
  25135. },
  25136. ]
  25137. ))
  25138. characterMakers.push(() => makeCharacter(
  25139. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25140. {
  25141. side: {
  25142. height: math.unit(30, "feet"),
  25143. weight: math.unit(35000, "kg"),
  25144. name: "Side",
  25145. image: {
  25146. source: "./media/characters/alydar/side.svg",
  25147. extra: 234 / 222,
  25148. bottom: 6.5 / 241
  25149. }
  25150. },
  25151. front: {
  25152. height: math.unit(30, "feet"),
  25153. weight: math.unit(35000, "kg"),
  25154. name: "Front",
  25155. image: {
  25156. source: "./media/characters/alydar/front.svg",
  25157. extra: 223.37 / 210.2,
  25158. bottom: 22.3 / 246.76
  25159. }
  25160. },
  25161. top: {
  25162. height: math.unit(64.54, "feet"),
  25163. weight: math.unit(35000, "kg"),
  25164. name: "Top",
  25165. image: {
  25166. source: "./media/characters/alydar/top.svg"
  25167. }
  25168. },
  25169. anthro: {
  25170. height: math.unit(30, "feet"),
  25171. weight: math.unit(9000, "kg"),
  25172. name: "Anthro",
  25173. image: {
  25174. source: "./media/characters/alydar/anthro.svg",
  25175. extra: 432 / 421,
  25176. bottom: 7.18 / 440
  25177. }
  25178. },
  25179. maw: {
  25180. height: math.unit(11.693, "feet"),
  25181. name: "Maw",
  25182. image: {
  25183. source: "./media/characters/alydar/maw.svg"
  25184. }
  25185. },
  25186. head: {
  25187. height: math.unit(11.693, "feet"),
  25188. name: "Head",
  25189. image: {
  25190. source: "./media/characters/alydar/head.svg"
  25191. }
  25192. },
  25193. headAlt: {
  25194. height: math.unit(12.861, "feet"),
  25195. name: "Head (Alt)",
  25196. image: {
  25197. source: "./media/characters/alydar/head-alt.svg"
  25198. }
  25199. },
  25200. wing: {
  25201. height: math.unit(20.712, "feet"),
  25202. name: "Wing",
  25203. image: {
  25204. source: "./media/characters/alydar/wing.svg"
  25205. }
  25206. },
  25207. wingFeather: {
  25208. height: math.unit(9.662, "feet"),
  25209. name: "Wing Feather",
  25210. image: {
  25211. source: "./media/characters/alydar/wing-feather.svg"
  25212. }
  25213. },
  25214. countourFeather: {
  25215. height: math.unit(4.154, "feet"),
  25216. name: "Contour Feather",
  25217. image: {
  25218. source: "./media/characters/alydar/contour-feather.svg"
  25219. }
  25220. },
  25221. },
  25222. [
  25223. {
  25224. name: "Diplomatic",
  25225. height: math.unit(13, "feet"),
  25226. default: true
  25227. },
  25228. {
  25229. name: "Small",
  25230. height: math.unit(30, "feet")
  25231. },
  25232. {
  25233. name: "Normal",
  25234. height: math.unit(95, "feet"),
  25235. default: true
  25236. },
  25237. {
  25238. name: "Large",
  25239. height: math.unit(285, "feet")
  25240. },
  25241. {
  25242. name: "Incomprehensible",
  25243. height: math.unit(450, "megameters")
  25244. },
  25245. ]
  25246. ))
  25247. characterMakers.push(() => makeCharacter(
  25248. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25249. {
  25250. side: {
  25251. height: math.unit(11, "feet"),
  25252. weight: math.unit(1750, "kg"),
  25253. name: "Side",
  25254. image: {
  25255. source: "./media/characters/selicia/side.svg",
  25256. extra: 440 / 396,
  25257. bottom: 24.8 / 465.979
  25258. }
  25259. },
  25260. maw: {
  25261. height: math.unit(4.665, "feet"),
  25262. name: "Maw",
  25263. image: {
  25264. source: "./media/characters/selicia/maw.svg"
  25265. }
  25266. },
  25267. },
  25268. [
  25269. {
  25270. name: "Normal",
  25271. height: math.unit(11, "feet"),
  25272. default: true
  25273. },
  25274. ]
  25275. ))
  25276. characterMakers.push(() => makeCharacter(
  25277. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25278. {
  25279. side: {
  25280. height: math.unit(2 + 6 / 12, "feet"),
  25281. weight: math.unit(30, "lb"),
  25282. name: "Side",
  25283. image: {
  25284. source: "./media/characters/layla/side.svg",
  25285. extra: 244 / 188,
  25286. bottom: 18.2 / 262.1
  25287. }
  25288. },
  25289. back: {
  25290. height: math.unit(2 + 6 / 12, "feet"),
  25291. weight: math.unit(30, "lb"),
  25292. name: "Back",
  25293. image: {
  25294. source: "./media/characters/layla/back.svg",
  25295. extra: 308 / 241.5,
  25296. bottom: 8.9 / 316.8
  25297. }
  25298. },
  25299. cumming: {
  25300. height: math.unit(2 + 6 / 12, "feet"),
  25301. weight: math.unit(30, "lb"),
  25302. name: "Cumming",
  25303. image: {
  25304. source: "./media/characters/layla/cumming.svg",
  25305. extra: 342 / 279,
  25306. bottom: 595 / 938
  25307. }
  25308. },
  25309. dickFlaccid: {
  25310. height: math.unit(2.595, "feet"),
  25311. name: "Flaccid Genitals",
  25312. image: {
  25313. source: "./media/characters/layla/dick-flaccid.svg"
  25314. }
  25315. },
  25316. dickErect: {
  25317. height: math.unit(2.359, "feet"),
  25318. name: "Erect Genitals",
  25319. image: {
  25320. source: "./media/characters/layla/dick-erect.svg"
  25321. }
  25322. },
  25323. dragon: {
  25324. height: math.unit(40, "feet"),
  25325. name: "Dragon",
  25326. image: {
  25327. source: "./media/characters/layla/dragon.svg",
  25328. extra: 610/535,
  25329. bottom: 367/977
  25330. }
  25331. },
  25332. taur: {
  25333. height: math.unit(30, "feet"),
  25334. name: "Taur",
  25335. image: {
  25336. source: "./media/characters/layla/taur.svg",
  25337. extra: 1268/1199,
  25338. bottom: 112/1380
  25339. }
  25340. },
  25341. },
  25342. [
  25343. {
  25344. name: "Micro",
  25345. height: math.unit(1, "inch")
  25346. },
  25347. {
  25348. name: "Small",
  25349. height: math.unit(1, "foot")
  25350. },
  25351. {
  25352. name: "Normal",
  25353. height: math.unit(2 + 6 / 12, "feet"),
  25354. default: true
  25355. },
  25356. {
  25357. name: "Macro",
  25358. height: math.unit(200, "feet")
  25359. },
  25360. {
  25361. name: "Megamacro",
  25362. height: math.unit(1000, "miles")
  25363. },
  25364. {
  25365. name: "Planetary",
  25366. height: math.unit(8000, "miles")
  25367. },
  25368. {
  25369. name: "True Layla",
  25370. height: math.unit(200000 * 7, "multiverses")
  25371. },
  25372. ]
  25373. ))
  25374. characterMakers.push(() => makeCharacter(
  25375. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25376. {
  25377. back: {
  25378. height: math.unit(10.5, "feet"),
  25379. weight: math.unit(800, "lb"),
  25380. name: "Back",
  25381. image: {
  25382. source: "./media/characters/knox/back.svg",
  25383. extra: 1486 / 1089,
  25384. bottom: 107 / 1601.4
  25385. }
  25386. },
  25387. side: {
  25388. height: math.unit(10.5, "feet"),
  25389. weight: math.unit(800, "lb"),
  25390. name: "Side",
  25391. image: {
  25392. source: "./media/characters/knox/side.svg",
  25393. extra: 244 / 218,
  25394. bottom: 14 / 260
  25395. }
  25396. },
  25397. },
  25398. [
  25399. {
  25400. name: "Compact",
  25401. height: math.unit(10.5, "feet"),
  25402. default: true
  25403. },
  25404. {
  25405. name: "Dynamax",
  25406. height: math.unit(210, "feet")
  25407. },
  25408. {
  25409. name: "Full Macro",
  25410. height: math.unit(850, "feet")
  25411. },
  25412. ]
  25413. ))
  25414. characterMakers.push(() => makeCharacter(
  25415. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25416. {
  25417. front: {
  25418. height: math.unit(28, "feet"),
  25419. weight: math.unit(10500, "lb"),
  25420. name: "Front",
  25421. image: {
  25422. source: "./media/characters/kayda/front.svg",
  25423. extra: 1536 / 1428,
  25424. bottom: 68.7 / 1603
  25425. }
  25426. },
  25427. back: {
  25428. height: math.unit(28, "feet"),
  25429. weight: math.unit(10500, "lb"),
  25430. name: "Back",
  25431. image: {
  25432. source: "./media/characters/kayda/back.svg",
  25433. extra: 1557 / 1464,
  25434. bottom: 39.5 / 1597.49
  25435. }
  25436. },
  25437. dick: {
  25438. height: math.unit(3.858, "feet"),
  25439. name: "Dick",
  25440. image: {
  25441. source: "./media/characters/kayda/dick.svg"
  25442. }
  25443. },
  25444. },
  25445. [
  25446. {
  25447. name: "Macro",
  25448. height: math.unit(28, "feet"),
  25449. default: true
  25450. },
  25451. ]
  25452. ))
  25453. characterMakers.push(() => makeCharacter(
  25454. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25455. {
  25456. front: {
  25457. height: math.unit(10 + 11 / 12, "feet"),
  25458. weight: math.unit(1400, "lb"),
  25459. name: "Front",
  25460. image: {
  25461. source: "./media/characters/brian/front.svg",
  25462. extra: 737 / 692,
  25463. bottom: 55.4 / 785
  25464. }
  25465. },
  25466. },
  25467. [
  25468. {
  25469. name: "Normal",
  25470. height: math.unit(10 + 11 / 12, "feet"),
  25471. default: true
  25472. },
  25473. ]
  25474. ))
  25475. characterMakers.push(() => makeCharacter(
  25476. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25477. {
  25478. front: {
  25479. height: math.unit(5 + 8 / 12, "feet"),
  25480. weight: math.unit(140, "lb"),
  25481. name: "Front",
  25482. image: {
  25483. source: "./media/characters/khemri/front.svg",
  25484. extra: 4780 / 4059,
  25485. bottom: 80.1 / 4859.25
  25486. }
  25487. },
  25488. },
  25489. [
  25490. {
  25491. name: "Micro",
  25492. height: math.unit(6, "inches")
  25493. },
  25494. {
  25495. name: "Normal",
  25496. height: math.unit(5 + 8 / 12, "feet"),
  25497. default: true
  25498. },
  25499. ]
  25500. ))
  25501. characterMakers.push(() => makeCharacter(
  25502. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25503. {
  25504. front: {
  25505. height: math.unit(13, "feet"),
  25506. weight: math.unit(1700, "lb"),
  25507. name: "Front",
  25508. image: {
  25509. source: "./media/characters/felix-braveheart/front.svg",
  25510. extra: 1222 / 1157,
  25511. bottom: 53.2 / 1280
  25512. }
  25513. },
  25514. back: {
  25515. height: math.unit(13, "feet"),
  25516. weight: math.unit(1700, "lb"),
  25517. name: "Back",
  25518. image: {
  25519. source: "./media/characters/felix-braveheart/back.svg",
  25520. extra: 1277 / 1203,
  25521. bottom: 50.2 / 1327
  25522. }
  25523. },
  25524. feral: {
  25525. height: math.unit(6, "feet"),
  25526. weight: math.unit(400, "lb"),
  25527. name: "Feral",
  25528. image: {
  25529. source: "./media/characters/felix-braveheart/feral.svg",
  25530. extra: 682 / 625,
  25531. bottom: 6.9 / 688
  25532. }
  25533. },
  25534. },
  25535. [
  25536. {
  25537. name: "Normal",
  25538. height: math.unit(13, "feet"),
  25539. default: true
  25540. },
  25541. ]
  25542. ))
  25543. characterMakers.push(() => makeCharacter(
  25544. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25545. {
  25546. side: {
  25547. height: math.unit(5 + 11 / 12, "feet"),
  25548. weight: math.unit(1400, "lb"),
  25549. name: "Side",
  25550. image: {
  25551. source: "./media/characters/shadow-blade/side.svg",
  25552. extra: 1726 / 1267,
  25553. bottom: 58.4 / 1785
  25554. }
  25555. },
  25556. },
  25557. [
  25558. {
  25559. name: "Normal",
  25560. height: math.unit(5 + 11 / 12, "feet"),
  25561. default: true
  25562. },
  25563. ]
  25564. ))
  25565. characterMakers.push(() => makeCharacter(
  25566. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25567. {
  25568. front: {
  25569. height: math.unit(1 + 6 / 12, "feet"),
  25570. weight: math.unit(25, "lb"),
  25571. name: "Front",
  25572. image: {
  25573. source: "./media/characters/karla-halldor/front.svg",
  25574. extra: 1459 / 1383,
  25575. bottom: 12 / 1472
  25576. }
  25577. },
  25578. },
  25579. [
  25580. {
  25581. name: "Normal",
  25582. height: math.unit(1 + 6 / 12, "feet"),
  25583. default: true
  25584. },
  25585. ]
  25586. ))
  25587. characterMakers.push(() => makeCharacter(
  25588. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25589. {
  25590. front: {
  25591. height: math.unit(6 + 2 / 12, "feet"),
  25592. weight: math.unit(160, "lb"),
  25593. name: "Front",
  25594. image: {
  25595. source: "./media/characters/ariam/front.svg",
  25596. extra: 1073/976,
  25597. bottom: 52/1125
  25598. }
  25599. },
  25600. back: {
  25601. height: math.unit(6 + 2/12, "feet"),
  25602. weight: math.unit(160, "lb"),
  25603. name: "Back",
  25604. image: {
  25605. source: "./media/characters/ariam/back.svg",
  25606. extra: 1103/1023,
  25607. bottom: 9/1112
  25608. }
  25609. },
  25610. dressed: {
  25611. height: math.unit(6 + 2/12, "feet"),
  25612. weight: math.unit(160, "lb"),
  25613. name: "Dressed",
  25614. image: {
  25615. source: "./media/characters/ariam/dressed.svg",
  25616. extra: 1099/1009,
  25617. bottom: 25/1124
  25618. }
  25619. },
  25620. squatting: {
  25621. height: math.unit(4.1, "feet"),
  25622. weight: math.unit(160, "lb"),
  25623. name: "Squatting",
  25624. image: {
  25625. source: "./media/characters/ariam/squatting.svg",
  25626. extra: 2617 / 2112,
  25627. bottom: 61.2 / 2681,
  25628. }
  25629. },
  25630. },
  25631. [
  25632. {
  25633. name: "Normal",
  25634. height: math.unit(6 + 2 / 12, "feet"),
  25635. default: true
  25636. },
  25637. {
  25638. name: "Normal+",
  25639. height: math.unit(4, "meters")
  25640. },
  25641. {
  25642. name: "Macro",
  25643. height: math.unit(50, "meters")
  25644. },
  25645. {
  25646. name: "Macro+",
  25647. height: math.unit(100, "meters")
  25648. },
  25649. {
  25650. name: "Megamacro",
  25651. height: math.unit(20, "km")
  25652. },
  25653. {
  25654. name: "Caretaker",
  25655. height: math.unit(444, "megameters")
  25656. },
  25657. ]
  25658. ))
  25659. characterMakers.push(() => makeCharacter(
  25660. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25661. {
  25662. front: {
  25663. height: math.unit(1.67, "meters"),
  25664. weight: math.unit(140, "lb"),
  25665. name: "Front",
  25666. image: {
  25667. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25668. extra: 438 / 410,
  25669. bottom: 0.75 / 439
  25670. }
  25671. },
  25672. },
  25673. [
  25674. {
  25675. name: "Shrunken",
  25676. height: math.unit(7.6, "cm")
  25677. },
  25678. {
  25679. name: "Human Scale",
  25680. height: math.unit(1.67, "meters")
  25681. },
  25682. {
  25683. name: "Wolxi Scale",
  25684. height: math.unit(36.7, "meters"),
  25685. default: true
  25686. },
  25687. ]
  25688. ))
  25689. characterMakers.push(() => makeCharacter(
  25690. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25691. {
  25692. front: {
  25693. height: math.unit(1.73, "meters"),
  25694. weight: math.unit(240, "lb"),
  25695. name: "Front",
  25696. image: {
  25697. source: "./media/characters/izue-two-mothers/front.svg",
  25698. extra: 469 / 437,
  25699. bottom: 1.24 / 470.6
  25700. }
  25701. },
  25702. },
  25703. [
  25704. {
  25705. name: "Shrunken",
  25706. height: math.unit(7.86, "cm")
  25707. },
  25708. {
  25709. name: "Human Scale",
  25710. height: math.unit(1.73, "meters")
  25711. },
  25712. {
  25713. name: "Wolxi Scale",
  25714. height: math.unit(38, "meters"),
  25715. default: true
  25716. },
  25717. ]
  25718. ))
  25719. characterMakers.push(() => makeCharacter(
  25720. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25721. {
  25722. front: {
  25723. height: math.unit(1.55, "meters"),
  25724. weight: math.unit(120, "lb"),
  25725. name: "Front",
  25726. image: {
  25727. source: "./media/characters/teeku-love-shack/front.svg",
  25728. extra: 387 / 362,
  25729. bottom: 1.51 / 388
  25730. }
  25731. },
  25732. },
  25733. [
  25734. {
  25735. name: "Shrunken",
  25736. height: math.unit(7, "cm")
  25737. },
  25738. {
  25739. name: "Human Scale",
  25740. height: math.unit(1.55, "meters")
  25741. },
  25742. {
  25743. name: "Wolxi Scale",
  25744. height: math.unit(34.1, "meters"),
  25745. default: true
  25746. },
  25747. ]
  25748. ))
  25749. characterMakers.push(() => makeCharacter(
  25750. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25751. {
  25752. front: {
  25753. height: math.unit(1.83, "meters"),
  25754. weight: math.unit(135, "lb"),
  25755. name: "Front",
  25756. image: {
  25757. source: "./media/characters/dejma-the-red/front.svg",
  25758. extra: 480 / 458,
  25759. bottom: 1.8 / 482
  25760. }
  25761. },
  25762. },
  25763. [
  25764. {
  25765. name: "Shrunken",
  25766. height: math.unit(8.3, "cm")
  25767. },
  25768. {
  25769. name: "Human Scale",
  25770. height: math.unit(1.83, "meters")
  25771. },
  25772. {
  25773. name: "Wolxi Scale",
  25774. height: math.unit(40, "meters"),
  25775. default: true
  25776. },
  25777. ]
  25778. ))
  25779. characterMakers.push(() => makeCharacter(
  25780. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25781. {
  25782. front: {
  25783. height: math.unit(1.78, "meters"),
  25784. weight: math.unit(65, "kg"),
  25785. name: "Front",
  25786. image: {
  25787. source: "./media/characters/aki/front.svg",
  25788. extra: 452 / 415
  25789. }
  25790. },
  25791. frontNsfw: {
  25792. height: math.unit(1.78, "meters"),
  25793. weight: math.unit(65, "kg"),
  25794. name: "Front (NSFW)",
  25795. image: {
  25796. source: "./media/characters/aki/front-nsfw.svg",
  25797. extra: 452 / 415
  25798. }
  25799. },
  25800. back: {
  25801. height: math.unit(1.78, "meters"),
  25802. weight: math.unit(65, "kg"),
  25803. name: "Back",
  25804. image: {
  25805. source: "./media/characters/aki/back.svg",
  25806. extra: 452 / 415
  25807. }
  25808. },
  25809. rump: {
  25810. height: math.unit(2.05, "feet"),
  25811. name: "Rump",
  25812. image: {
  25813. source: "./media/characters/aki/rump.svg"
  25814. }
  25815. },
  25816. dick: {
  25817. height: math.unit(0.95, "feet"),
  25818. name: "Dick",
  25819. image: {
  25820. source: "./media/characters/aki/dick.svg"
  25821. }
  25822. },
  25823. },
  25824. [
  25825. {
  25826. name: "Micro",
  25827. height: math.unit(15, "cm")
  25828. },
  25829. {
  25830. name: "Normal",
  25831. height: math.unit(178, "cm"),
  25832. default: true
  25833. },
  25834. {
  25835. name: "Macro",
  25836. height: math.unit(214, "m")
  25837. },
  25838. {
  25839. name: "Macro+",
  25840. height: math.unit(534, "m")
  25841. },
  25842. ]
  25843. ))
  25844. characterMakers.push(() => makeCharacter(
  25845. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25846. {
  25847. front: {
  25848. height: math.unit(5 + 5 / 12, "feet"),
  25849. weight: math.unit(120, "lb"),
  25850. name: "Front",
  25851. image: {
  25852. source: "./media/characters/ari/front.svg",
  25853. extra: 1550/1471,
  25854. bottom: 39/1589
  25855. }
  25856. },
  25857. },
  25858. [
  25859. {
  25860. name: "Normal",
  25861. height: math.unit(5 + 5 / 12, "feet")
  25862. },
  25863. {
  25864. name: "Macro",
  25865. height: math.unit(100, "feet"),
  25866. default: true
  25867. },
  25868. {
  25869. name: "Megamacro",
  25870. height: math.unit(100, "miles")
  25871. },
  25872. {
  25873. name: "Gigamacro",
  25874. height: math.unit(80000, "miles")
  25875. },
  25876. ]
  25877. ))
  25878. characterMakers.push(() => makeCharacter(
  25879. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25880. {
  25881. side: {
  25882. height: math.unit(9, "feet"),
  25883. weight: math.unit(400, "kg"),
  25884. name: "Side",
  25885. image: {
  25886. source: "./media/characters/bolt/side.svg",
  25887. extra: 1126 / 896,
  25888. bottom: 60 / 1187.3,
  25889. }
  25890. },
  25891. },
  25892. [
  25893. {
  25894. name: "Micro",
  25895. height: math.unit(5, "inches")
  25896. },
  25897. {
  25898. name: "Normal",
  25899. height: math.unit(9, "feet"),
  25900. default: true
  25901. },
  25902. {
  25903. name: "Macro",
  25904. height: math.unit(700, "feet")
  25905. },
  25906. {
  25907. name: "Max Size",
  25908. height: math.unit(1.52e22, "yottameters")
  25909. },
  25910. ]
  25911. ))
  25912. characterMakers.push(() => makeCharacter(
  25913. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25914. {
  25915. front: {
  25916. height: math.unit(4.3, "meters"),
  25917. weight: math.unit(3, "tons"),
  25918. name: "Front",
  25919. image: {
  25920. source: "./media/characters/draekon-sylviar/front.svg",
  25921. extra: 2072/1512,
  25922. bottom: 74/2146
  25923. }
  25924. },
  25925. back: {
  25926. height: math.unit(4.3, "meters"),
  25927. weight: math.unit(3, "tons"),
  25928. name: "Back",
  25929. image: {
  25930. source: "./media/characters/draekon-sylviar/back.svg",
  25931. extra: 1639/1483,
  25932. bottom: 41/1680
  25933. }
  25934. },
  25935. feral: {
  25936. height: math.unit(1.15, "meters"),
  25937. weight: math.unit(3, "tons"),
  25938. name: "Feral",
  25939. image: {
  25940. source: "./media/characters/draekon-sylviar/feral.svg",
  25941. extra: 1033/395,
  25942. bottom: 130/1163
  25943. }
  25944. },
  25945. maw: {
  25946. height: math.unit(1.3, "meters"),
  25947. name: "Maw",
  25948. image: {
  25949. source: "./media/characters/draekon-sylviar/maw.svg"
  25950. }
  25951. },
  25952. mawSeparated: {
  25953. height: math.unit(1.53, "meters"),
  25954. name: "Separated Maw",
  25955. image: {
  25956. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25957. }
  25958. },
  25959. tail: {
  25960. height: math.unit(1.15, "meters"),
  25961. name: "Tail",
  25962. image: {
  25963. source: "./media/characters/draekon-sylviar/tail.svg"
  25964. }
  25965. },
  25966. tailDick: {
  25967. height: math.unit(1.15, "meters"),
  25968. name: "Tail (Dick)",
  25969. image: {
  25970. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25971. }
  25972. },
  25973. tailDickSeparated: {
  25974. height: math.unit(1.19, "meters"),
  25975. name: "Tail (Separated Dick)",
  25976. image: {
  25977. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25978. }
  25979. },
  25980. slit: {
  25981. height: math.unit(1, "meters"),
  25982. name: "Slit",
  25983. image: {
  25984. source: "./media/characters/draekon-sylviar/slit.svg"
  25985. }
  25986. },
  25987. dick: {
  25988. height: math.unit(1.15, "meters"),
  25989. name: "Dick",
  25990. image: {
  25991. source: "./media/characters/draekon-sylviar/dick.svg"
  25992. }
  25993. },
  25994. dickSeparated: {
  25995. height: math.unit(1.1, "meters"),
  25996. name: "Separated Dick",
  25997. image: {
  25998. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25999. }
  26000. },
  26001. sheath: {
  26002. height: math.unit(1.15, "meters"),
  26003. name: "Sheath",
  26004. image: {
  26005. source: "./media/characters/draekon-sylviar/sheath.svg"
  26006. }
  26007. },
  26008. },
  26009. [
  26010. {
  26011. name: "Small",
  26012. height: math.unit(4.53 / 2, "meters"),
  26013. default: true
  26014. },
  26015. {
  26016. name: "Normal",
  26017. height: math.unit(4.53, "meters"),
  26018. default: true
  26019. },
  26020. {
  26021. name: "Large",
  26022. height: math.unit(4.53 * 2, "meters"),
  26023. },
  26024. ]
  26025. ))
  26026. characterMakers.push(() => makeCharacter(
  26027. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26028. {
  26029. front: {
  26030. height: math.unit(6 + 2 / 12, "feet"),
  26031. weight: math.unit(180, "lb"),
  26032. name: "Front",
  26033. image: {
  26034. source: "./media/characters/brawler/front.svg",
  26035. extra: 3301 / 3027,
  26036. bottom: 138 / 3439
  26037. }
  26038. },
  26039. },
  26040. [
  26041. {
  26042. name: "Normal",
  26043. height: math.unit(6 + 2 / 12, "feet"),
  26044. default: true
  26045. },
  26046. ]
  26047. ))
  26048. characterMakers.push(() => makeCharacter(
  26049. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26050. {
  26051. front: {
  26052. height: math.unit(11, "feet"),
  26053. weight: math.unit(1000, "lb"),
  26054. name: "Front",
  26055. image: {
  26056. source: "./media/characters/alex/front.svg",
  26057. bottom: 44.5 / 620
  26058. }
  26059. },
  26060. },
  26061. [
  26062. {
  26063. name: "Micro",
  26064. height: math.unit(5, "inches")
  26065. },
  26066. {
  26067. name: "Normal",
  26068. height: math.unit(11, "feet"),
  26069. default: true
  26070. },
  26071. {
  26072. name: "Macro",
  26073. height: math.unit(9.5e9, "feet")
  26074. },
  26075. {
  26076. name: "Max Size",
  26077. height: math.unit(1.4e283, "yottameters")
  26078. },
  26079. ]
  26080. ))
  26081. characterMakers.push(() => makeCharacter(
  26082. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26083. {
  26084. female: {
  26085. height: math.unit(29.9, "m"),
  26086. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26087. name: "Female",
  26088. image: {
  26089. source: "./media/characters/zenari/female.svg",
  26090. extra: 3281.6 / 3217,
  26091. bottom: 72.2 / 3353
  26092. }
  26093. },
  26094. male: {
  26095. height: math.unit(27.7, "m"),
  26096. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26097. name: "Male",
  26098. image: {
  26099. source: "./media/characters/zenari/male.svg",
  26100. extra: 3008 / 2991,
  26101. bottom: 54.6 / 3069
  26102. }
  26103. },
  26104. },
  26105. [
  26106. {
  26107. name: "Macro",
  26108. height: math.unit(29.7, "meters"),
  26109. default: true
  26110. },
  26111. ]
  26112. ))
  26113. characterMakers.push(() => makeCharacter(
  26114. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26115. {
  26116. female: {
  26117. height: math.unit(23.8, "m"),
  26118. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26119. name: "Female",
  26120. image: {
  26121. source: "./media/characters/mactarian/female.svg",
  26122. extra: 2662 / 2569,
  26123. bottom: 73 / 2736
  26124. }
  26125. },
  26126. male: {
  26127. height: math.unit(23.8, "m"),
  26128. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26129. name: "Male",
  26130. image: {
  26131. source: "./media/characters/mactarian/male.svg",
  26132. extra: 2673 / 2600,
  26133. bottom: 76 / 2750
  26134. }
  26135. },
  26136. },
  26137. [
  26138. {
  26139. name: "Macro",
  26140. height: math.unit(23.8, "meters"),
  26141. default: true
  26142. },
  26143. ]
  26144. ))
  26145. characterMakers.push(() => makeCharacter(
  26146. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26147. {
  26148. female: {
  26149. height: math.unit(19.3, "m"),
  26150. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26151. name: "Female",
  26152. image: {
  26153. source: "./media/characters/umok/female.svg",
  26154. extra: 2186 / 2078,
  26155. bottom: 87 / 2277
  26156. }
  26157. },
  26158. male: {
  26159. height: math.unit(19.5, "m"),
  26160. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26161. name: "Male",
  26162. image: {
  26163. source: "./media/characters/umok/male.svg",
  26164. extra: 2233 / 2140,
  26165. bottom: 24.4 / 2258
  26166. }
  26167. },
  26168. },
  26169. [
  26170. {
  26171. name: "Macro",
  26172. height: math.unit(19.3, "meters"),
  26173. default: true
  26174. },
  26175. ]
  26176. ))
  26177. characterMakers.push(() => makeCharacter(
  26178. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26179. {
  26180. female: {
  26181. height: math.unit(26.15, "m"),
  26182. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26183. name: "Female",
  26184. image: {
  26185. source: "./media/characters/joraxian/female.svg",
  26186. extra: 2912 / 2824,
  26187. bottom: 36 / 2956
  26188. }
  26189. },
  26190. male: {
  26191. height: math.unit(25.4, "m"),
  26192. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26193. name: "Male",
  26194. image: {
  26195. source: "./media/characters/joraxian/male.svg",
  26196. extra: 2877 / 2721,
  26197. bottom: 82 / 2967
  26198. }
  26199. },
  26200. },
  26201. [
  26202. {
  26203. name: "Macro",
  26204. height: math.unit(26.15, "meters"),
  26205. default: true
  26206. },
  26207. ]
  26208. ))
  26209. characterMakers.push(() => makeCharacter(
  26210. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26211. {
  26212. female: {
  26213. height: math.unit(21.6, "m"),
  26214. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26215. name: "Female",
  26216. image: {
  26217. source: "./media/characters/sthara/female.svg",
  26218. extra: 2516 / 2347,
  26219. bottom: 21.5 / 2537
  26220. }
  26221. },
  26222. male: {
  26223. height: math.unit(24, "m"),
  26224. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26225. name: "Male",
  26226. image: {
  26227. source: "./media/characters/sthara/male.svg",
  26228. extra: 2732 / 2607,
  26229. bottom: 23 / 2732
  26230. }
  26231. },
  26232. },
  26233. [
  26234. {
  26235. name: "Macro",
  26236. height: math.unit(21.6, "meters"),
  26237. default: true
  26238. },
  26239. ]
  26240. ))
  26241. characterMakers.push(() => makeCharacter(
  26242. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26243. {
  26244. front: {
  26245. height: math.unit(6 + 4 / 12, "feet"),
  26246. weight: math.unit(175, "lb"),
  26247. name: "Front",
  26248. image: {
  26249. source: "./media/characters/luka-bryzant/front.svg",
  26250. extra: 311 / 289,
  26251. bottom: 4 / 315
  26252. }
  26253. },
  26254. back: {
  26255. height: math.unit(6 + 4 / 12, "feet"),
  26256. weight: math.unit(175, "lb"),
  26257. name: "Back",
  26258. image: {
  26259. source: "./media/characters/luka-bryzant/back.svg",
  26260. extra: 311 / 289,
  26261. bottom: 3.8 / 313.7
  26262. }
  26263. },
  26264. },
  26265. [
  26266. {
  26267. name: "Micro",
  26268. height: math.unit(10, "inches")
  26269. },
  26270. {
  26271. name: "Normal",
  26272. height: math.unit(6 + 4 / 12, "feet"),
  26273. default: true
  26274. },
  26275. {
  26276. name: "Large",
  26277. height: math.unit(12, "feet")
  26278. },
  26279. ]
  26280. ))
  26281. characterMakers.push(() => makeCharacter(
  26282. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26283. {
  26284. front: {
  26285. height: math.unit(5 + 7 / 12, "feet"),
  26286. weight: math.unit(185, "lb"),
  26287. name: "Front",
  26288. image: {
  26289. source: "./media/characters/aman-aquila/front.svg",
  26290. extra: 1013 / 976,
  26291. bottom: 45.6 / 1057
  26292. }
  26293. },
  26294. side: {
  26295. height: math.unit(5 + 7 / 12, "feet"),
  26296. weight: math.unit(185, "lb"),
  26297. name: "Side",
  26298. image: {
  26299. source: "./media/characters/aman-aquila/side.svg",
  26300. extra: 1054 / 1011,
  26301. bottom: 15 / 1070
  26302. }
  26303. },
  26304. back: {
  26305. height: math.unit(5 + 7 / 12, "feet"),
  26306. weight: math.unit(185, "lb"),
  26307. name: "Back",
  26308. image: {
  26309. source: "./media/characters/aman-aquila/back.svg",
  26310. extra: 1026 / 970,
  26311. bottom: 12 / 1039
  26312. }
  26313. },
  26314. head: {
  26315. height: math.unit(1.211, "feet"),
  26316. name: "Head",
  26317. image: {
  26318. source: "./media/characters/aman-aquila/head.svg",
  26319. }
  26320. },
  26321. },
  26322. [
  26323. {
  26324. name: "Minimicro",
  26325. height: math.unit(0.057, "inches")
  26326. },
  26327. {
  26328. name: "Micro",
  26329. height: math.unit(7, "inches")
  26330. },
  26331. {
  26332. name: "Mini",
  26333. height: math.unit(3 + 7 / 12, "feet")
  26334. },
  26335. {
  26336. name: "Normal",
  26337. height: math.unit(5 + 7 / 12, "feet"),
  26338. default: true
  26339. },
  26340. {
  26341. name: "Macro",
  26342. height: math.unit(157 + 7 / 12, "feet")
  26343. },
  26344. {
  26345. name: "Megamacro",
  26346. height: math.unit(1557 + 7 / 12, "feet")
  26347. },
  26348. {
  26349. name: "Gigamacro",
  26350. height: math.unit(15557 + 7 / 12, "feet")
  26351. },
  26352. ]
  26353. ))
  26354. characterMakers.push(() => makeCharacter(
  26355. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26356. {
  26357. front: {
  26358. height: math.unit(3 + 2 / 12, "inches"),
  26359. weight: math.unit(0.3, "ounces"),
  26360. name: "Front",
  26361. image: {
  26362. source: "./media/characters/hiphae/front.svg",
  26363. extra: 1931 / 1683,
  26364. bottom: 24 / 1955
  26365. }
  26366. },
  26367. },
  26368. [
  26369. {
  26370. name: "Normal",
  26371. height: math.unit(3 + 1 / 2, "inches"),
  26372. default: true
  26373. },
  26374. ]
  26375. ))
  26376. characterMakers.push(() => makeCharacter(
  26377. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26378. {
  26379. front: {
  26380. height: math.unit(5 + 10 / 12, "feet"),
  26381. weight: math.unit(165, "lb"),
  26382. name: "Front",
  26383. image: {
  26384. source: "./media/characters/nicky/front.svg",
  26385. extra: 3144 / 2886,
  26386. bottom: 45.6 / 3192
  26387. }
  26388. },
  26389. back: {
  26390. height: math.unit(5 + 10 / 12, "feet"),
  26391. weight: math.unit(165, "lb"),
  26392. name: "Back",
  26393. image: {
  26394. source: "./media/characters/nicky/back.svg",
  26395. extra: 3055 / 2804,
  26396. bottom: 28.4 / 3087
  26397. }
  26398. },
  26399. frontclothed: {
  26400. height: math.unit(5 + 10 / 12, "feet"),
  26401. weight: math.unit(165, "lb"),
  26402. name: "Front-clothed",
  26403. image: {
  26404. source: "./media/characters/nicky/front-clothed.svg",
  26405. extra: 3184.9 / 2926.9,
  26406. bottom: 86.5 / 3239.9
  26407. }
  26408. },
  26409. foot: {
  26410. height: math.unit(1.16, "feet"),
  26411. name: "Foot",
  26412. image: {
  26413. source: "./media/characters/nicky/foot.svg"
  26414. }
  26415. },
  26416. feet: {
  26417. height: math.unit(1.34, "feet"),
  26418. name: "Feet",
  26419. image: {
  26420. source: "./media/characters/nicky/feet.svg"
  26421. }
  26422. },
  26423. maw: {
  26424. height: math.unit(0.9, "feet"),
  26425. name: "Maw",
  26426. image: {
  26427. source: "./media/characters/nicky/maw.svg"
  26428. }
  26429. },
  26430. },
  26431. [
  26432. {
  26433. name: "Normal",
  26434. height: math.unit(5 + 10 / 12, "feet"),
  26435. default: true
  26436. },
  26437. {
  26438. name: "Macro",
  26439. height: math.unit(60, "feet")
  26440. },
  26441. {
  26442. name: "Megamacro",
  26443. height: math.unit(1, "mile")
  26444. },
  26445. ]
  26446. ))
  26447. characterMakers.push(() => makeCharacter(
  26448. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26449. {
  26450. side: {
  26451. height: math.unit(10, "feet"),
  26452. weight: math.unit(600, "lb"),
  26453. name: "Side",
  26454. image: {
  26455. source: "./media/characters/blair/side.svg",
  26456. bottom: 16.6 / 475,
  26457. extra: 458 / 431
  26458. }
  26459. },
  26460. },
  26461. [
  26462. {
  26463. name: "Micro",
  26464. height: math.unit(8, "inches")
  26465. },
  26466. {
  26467. name: "Normal",
  26468. height: math.unit(10, "feet"),
  26469. default: true
  26470. },
  26471. {
  26472. name: "Macro",
  26473. height: math.unit(180, "feet")
  26474. },
  26475. ]
  26476. ))
  26477. characterMakers.push(() => makeCharacter(
  26478. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26479. {
  26480. front: {
  26481. height: math.unit(5 + 4 / 12, "feet"),
  26482. weight: math.unit(125, "lb"),
  26483. name: "Front",
  26484. image: {
  26485. source: "./media/characters/fisher/front.svg",
  26486. extra: 444 / 390,
  26487. bottom: 2 / 444.8
  26488. }
  26489. },
  26490. },
  26491. [
  26492. {
  26493. name: "Micro",
  26494. height: math.unit(4, "inches")
  26495. },
  26496. {
  26497. name: "Normal",
  26498. height: math.unit(5 + 4 / 12, "feet"),
  26499. default: true
  26500. },
  26501. {
  26502. name: "Macro",
  26503. height: math.unit(100, "feet")
  26504. },
  26505. ]
  26506. ))
  26507. characterMakers.push(() => makeCharacter(
  26508. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26509. {
  26510. front: {
  26511. height: math.unit(6.71, "feet"),
  26512. weight: math.unit(200, "lb"),
  26513. preyCapacity: math.unit(1000000, "people"),
  26514. name: "Front",
  26515. image: {
  26516. source: "./media/characters/gliss/front.svg",
  26517. extra: 2347 / 2231,
  26518. bottom: 113 / 2462
  26519. }
  26520. },
  26521. hammerspaceSize: {
  26522. height: math.unit(6.71 * 717, "feet"),
  26523. weight: math.unit(200, "lb"),
  26524. preyCapacity: math.unit(1000000, "people"),
  26525. name: "Hammerspace Size",
  26526. image: {
  26527. source: "./media/characters/gliss/front.svg",
  26528. extra: 2347 / 2231,
  26529. bottom: 113 / 2462
  26530. }
  26531. },
  26532. },
  26533. [
  26534. {
  26535. name: "Normal",
  26536. height: math.unit(6.71, "feet"),
  26537. default: true
  26538. },
  26539. ]
  26540. ))
  26541. characterMakers.push(() => makeCharacter(
  26542. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26543. {
  26544. side: {
  26545. height: math.unit(1.44, "m"),
  26546. weight: math.unit(80, "kg"),
  26547. name: "Side",
  26548. image: {
  26549. source: "./media/characters/dune-anderson/side.svg",
  26550. bottom: 49 / 1426
  26551. }
  26552. },
  26553. },
  26554. [
  26555. {
  26556. name: "Wolf-sized",
  26557. height: math.unit(1.44, "meters")
  26558. },
  26559. {
  26560. name: "Normal",
  26561. height: math.unit(5.05, "meters"),
  26562. default: true
  26563. },
  26564. {
  26565. name: "Big",
  26566. height: math.unit(14.4, "meters")
  26567. },
  26568. {
  26569. name: "Huge",
  26570. height: math.unit(144, "meters")
  26571. },
  26572. ]
  26573. ))
  26574. characterMakers.push(() => makeCharacter(
  26575. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26576. {
  26577. front: {
  26578. height: math.unit(7, "feet"),
  26579. weight: math.unit(425, "lb"),
  26580. name: "Front",
  26581. image: {
  26582. source: "./media/characters/hind/front.svg",
  26583. extra: 2091 / 1860,
  26584. bottom: 129 / 2220
  26585. }
  26586. },
  26587. back: {
  26588. height: math.unit(7, "feet"),
  26589. weight: math.unit(425, "lb"),
  26590. name: "Back",
  26591. image: {
  26592. source: "./media/characters/hind/back.svg",
  26593. extra: 2091 / 1860,
  26594. bottom: 24.6 / 2309
  26595. }
  26596. },
  26597. tail: {
  26598. height: math.unit(2.8, "feet"),
  26599. name: "Tail",
  26600. image: {
  26601. source: "./media/characters/hind/tail.svg"
  26602. }
  26603. },
  26604. head: {
  26605. height: math.unit(2.55, "feet"),
  26606. name: "Head",
  26607. image: {
  26608. source: "./media/characters/hind/head.svg"
  26609. }
  26610. },
  26611. },
  26612. [
  26613. {
  26614. name: "XS",
  26615. height: math.unit(0.7, "feet")
  26616. },
  26617. {
  26618. name: "Normal",
  26619. height: math.unit(7, "feet"),
  26620. default: true
  26621. },
  26622. {
  26623. name: "XL",
  26624. height: math.unit(70, "feet")
  26625. },
  26626. ]
  26627. ))
  26628. characterMakers.push(() => makeCharacter(
  26629. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26630. {
  26631. front: {
  26632. height: math.unit(2.1, "meters"),
  26633. weight: math.unit(150, "lb"),
  26634. name: "Front",
  26635. image: {
  26636. source: "./media/characters/tharquench-sizestealer/front.svg",
  26637. extra: 1605/1470,
  26638. bottom: 36/1641
  26639. }
  26640. },
  26641. frontAlt: {
  26642. height: math.unit(2.1, "meters"),
  26643. weight: math.unit(150, "lb"),
  26644. name: "Front (Alt)",
  26645. image: {
  26646. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26647. extra: 2318 / 2063,
  26648. bottom: 93.4 / 2410
  26649. }
  26650. },
  26651. },
  26652. [
  26653. {
  26654. name: "Nano",
  26655. height: math.unit(1, "mm")
  26656. },
  26657. {
  26658. name: "Micro",
  26659. height: math.unit(1, "cm")
  26660. },
  26661. {
  26662. name: "Normal",
  26663. height: math.unit(2.1, "meters"),
  26664. default: true
  26665. },
  26666. ]
  26667. ))
  26668. characterMakers.push(() => makeCharacter(
  26669. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26670. {
  26671. front: {
  26672. height: math.unit(7 + 5 / 12, "feet"),
  26673. weight: math.unit(357, "lb"),
  26674. name: "Front",
  26675. image: {
  26676. source: "./media/characters/solex-draconov/front.svg",
  26677. extra: 1993 / 1865,
  26678. bottom: 117 / 2111
  26679. }
  26680. },
  26681. },
  26682. [
  26683. {
  26684. name: "Natural Height",
  26685. height: math.unit(7 + 5 / 12, "feet"),
  26686. default: true
  26687. },
  26688. {
  26689. name: "Macro",
  26690. height: math.unit(350, "feet")
  26691. },
  26692. {
  26693. name: "Macro+",
  26694. height: math.unit(1000, "feet")
  26695. },
  26696. {
  26697. name: "Megamacro",
  26698. height: math.unit(20, "km")
  26699. },
  26700. {
  26701. name: "Megamacro+",
  26702. height: math.unit(1000, "km")
  26703. },
  26704. {
  26705. name: "Gigamacro",
  26706. height: math.unit(2.5, "Gm")
  26707. },
  26708. {
  26709. name: "Teramacro",
  26710. height: math.unit(15, "Tm")
  26711. },
  26712. {
  26713. name: "Galactic",
  26714. height: math.unit(30, "Zm")
  26715. },
  26716. {
  26717. name: "Universal",
  26718. height: math.unit(21000, "Ym")
  26719. },
  26720. {
  26721. name: "Omniversal",
  26722. height: math.unit(9.861e50, "Ym")
  26723. },
  26724. {
  26725. name: "Existential",
  26726. height: math.unit(1e300, "meters")
  26727. },
  26728. ]
  26729. ))
  26730. characterMakers.push(() => makeCharacter(
  26731. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26732. {
  26733. side: {
  26734. height: math.unit(25, "feet"),
  26735. weight: math.unit(90000, "lb"),
  26736. name: "Side",
  26737. image: {
  26738. source: "./media/characters/mandarax/side.svg",
  26739. extra: 614 / 332,
  26740. bottom: 55 / 630
  26741. }
  26742. },
  26743. lounging: {
  26744. height: math.unit(15.4, "feet"),
  26745. weight: math.unit(90000, "lb"),
  26746. name: "Lounging",
  26747. image: {
  26748. source: "./media/characters/mandarax/lounging.svg",
  26749. extra: 817/609,
  26750. bottom: 685/1502
  26751. }
  26752. },
  26753. head: {
  26754. height: math.unit(11.4, "feet"),
  26755. name: "Head",
  26756. image: {
  26757. source: "./media/characters/mandarax/head.svg"
  26758. }
  26759. },
  26760. belly: {
  26761. height: math.unit(33, "feet"),
  26762. name: "Belly",
  26763. preyCapacity: math.unit(500, "people"),
  26764. image: {
  26765. source: "./media/characters/mandarax/belly.svg"
  26766. }
  26767. },
  26768. dick: {
  26769. height: math.unit(8.46, "feet"),
  26770. name: "Dick",
  26771. image: {
  26772. source: "./media/characters/mandarax/dick.svg"
  26773. }
  26774. },
  26775. top: {
  26776. height: math.unit(28, "meters"),
  26777. name: "Top",
  26778. image: {
  26779. source: "./media/characters/mandarax/top.svg"
  26780. }
  26781. },
  26782. },
  26783. [
  26784. {
  26785. name: "Normal",
  26786. height: math.unit(25, "feet"),
  26787. default: true
  26788. },
  26789. ]
  26790. ))
  26791. characterMakers.push(() => makeCharacter(
  26792. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26793. {
  26794. front: {
  26795. height: math.unit(5, "feet"),
  26796. weight: math.unit(90, "lb"),
  26797. name: "Front",
  26798. image: {
  26799. source: "./media/characters/pixil/front.svg",
  26800. extra: 2000 / 1618,
  26801. bottom: 12.3 / 2011
  26802. }
  26803. },
  26804. },
  26805. [
  26806. {
  26807. name: "Normal",
  26808. height: math.unit(5, "feet"),
  26809. default: true
  26810. },
  26811. {
  26812. name: "Megamacro",
  26813. height: math.unit(10, "miles"),
  26814. },
  26815. ]
  26816. ))
  26817. characterMakers.push(() => makeCharacter(
  26818. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26819. {
  26820. front: {
  26821. height: math.unit(7 + 2 / 12, "feet"),
  26822. weight: math.unit(200, "lb"),
  26823. name: "Front",
  26824. image: {
  26825. source: "./media/characters/angel/front.svg",
  26826. extra: 1830 / 1737,
  26827. bottom: 22.6 / 1854,
  26828. }
  26829. },
  26830. },
  26831. [
  26832. {
  26833. name: "Normal",
  26834. height: math.unit(7 + 2 / 12, "feet"),
  26835. default: true
  26836. },
  26837. {
  26838. name: "Macro",
  26839. height: math.unit(1000, "feet")
  26840. },
  26841. {
  26842. name: "Megamacro",
  26843. height: math.unit(2, "miles")
  26844. },
  26845. {
  26846. name: "Gigamacro",
  26847. height: math.unit(20, "earths")
  26848. },
  26849. ]
  26850. ))
  26851. characterMakers.push(() => makeCharacter(
  26852. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26853. {
  26854. front: {
  26855. height: math.unit(5, "feet"),
  26856. weight: math.unit(180, "lb"),
  26857. name: "Front",
  26858. image: {
  26859. source: "./media/characters/mekana/front.svg",
  26860. extra: 1671 / 1605,
  26861. bottom: 3.5 / 1691
  26862. }
  26863. },
  26864. side: {
  26865. height: math.unit(5, "feet"),
  26866. weight: math.unit(180, "lb"),
  26867. name: "Side",
  26868. image: {
  26869. source: "./media/characters/mekana/side.svg",
  26870. extra: 1671 / 1605,
  26871. bottom: 3.5 / 1691
  26872. }
  26873. },
  26874. back: {
  26875. height: math.unit(5, "feet"),
  26876. weight: math.unit(180, "lb"),
  26877. name: "Back",
  26878. image: {
  26879. source: "./media/characters/mekana/back.svg",
  26880. extra: 1671 / 1605,
  26881. bottom: 3.5 / 1691
  26882. }
  26883. },
  26884. },
  26885. [
  26886. {
  26887. name: "Normal",
  26888. height: math.unit(5, "feet"),
  26889. default: true
  26890. },
  26891. ]
  26892. ))
  26893. characterMakers.push(() => makeCharacter(
  26894. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26895. {
  26896. front: {
  26897. height: math.unit(4 + 6 / 12, "feet"),
  26898. weight: math.unit(80, "lb"),
  26899. name: "Front",
  26900. image: {
  26901. source: "./media/characters/pixie/front.svg",
  26902. extra: 1924 / 1825,
  26903. bottom: 22.4 / 1946
  26904. }
  26905. },
  26906. },
  26907. [
  26908. {
  26909. name: "Normal",
  26910. height: math.unit(4 + 6 / 12, "feet"),
  26911. default: true
  26912. },
  26913. {
  26914. name: "Macro",
  26915. height: math.unit(40, "feet")
  26916. },
  26917. ]
  26918. ))
  26919. characterMakers.push(() => makeCharacter(
  26920. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26921. {
  26922. front: {
  26923. height: math.unit(2.1, "meters"),
  26924. weight: math.unit(200, "lb"),
  26925. name: "Front",
  26926. image: {
  26927. source: "./media/characters/the-lascivious/front.svg",
  26928. extra: 1 / 0.893,
  26929. bottom: 3.5 / 573.7
  26930. }
  26931. },
  26932. },
  26933. [
  26934. {
  26935. name: "Human Scale",
  26936. height: math.unit(2.1, "meters")
  26937. },
  26938. {
  26939. name: "Wolxi Scale",
  26940. height: math.unit(46.2, "m"),
  26941. default: true
  26942. },
  26943. {
  26944. name: "Boinker of Buildings",
  26945. height: math.unit(10, "km")
  26946. },
  26947. {
  26948. name: "Shagger of Skyscrapers",
  26949. height: math.unit(40, "km")
  26950. },
  26951. {
  26952. name: "Banger of Boroughs",
  26953. height: math.unit(4000, "km")
  26954. },
  26955. {
  26956. name: "Screwer of States",
  26957. height: math.unit(100000, "km")
  26958. },
  26959. {
  26960. name: "Pounder of Planets",
  26961. height: math.unit(2000000, "km")
  26962. },
  26963. ]
  26964. ))
  26965. characterMakers.push(() => makeCharacter(
  26966. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26967. {
  26968. front: {
  26969. height: math.unit(6, "feet"),
  26970. weight: math.unit(150, "lb"),
  26971. name: "Front",
  26972. image: {
  26973. source: "./media/characters/aj/front.svg",
  26974. extra: 2039 / 1562,
  26975. bottom: 40 / 2079
  26976. }
  26977. },
  26978. },
  26979. [
  26980. {
  26981. name: "Normal",
  26982. height: math.unit(11 + 6 / 12, "feet"),
  26983. default: true
  26984. },
  26985. {
  26986. name: "Megamacro",
  26987. height: math.unit(60, "megameters")
  26988. },
  26989. ]
  26990. ))
  26991. characterMakers.push(() => makeCharacter(
  26992. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26993. {
  26994. side: {
  26995. height: math.unit(31 + 8 / 12, "feet"),
  26996. weight: math.unit(75000, "kg"),
  26997. name: "Side",
  26998. image: {
  26999. source: "./media/characters/koros/side.svg",
  27000. extra: 1442 / 1297,
  27001. bottom: 122.7 / 1562
  27002. }
  27003. },
  27004. dicksKingsCrown: {
  27005. height: math.unit(6, "feet"),
  27006. name: "Dicks (King's Crown)",
  27007. image: {
  27008. source: "./media/characters/koros/dicks-kings-crown.svg"
  27009. }
  27010. },
  27011. dicksTailSet: {
  27012. height: math.unit(3, "feet"),
  27013. name: "Dicks (Tail Set)",
  27014. image: {
  27015. source: "./media/characters/koros/dicks-tail-set.svg"
  27016. }
  27017. },
  27018. dickCumming: {
  27019. height: math.unit(7.98, "feet"),
  27020. name: "Dick (Cumming)",
  27021. image: {
  27022. source: "./media/characters/koros/dick-cumming.svg"
  27023. }
  27024. },
  27025. dicksBack: {
  27026. height: math.unit(5.9, "feet"),
  27027. name: "Dicks (Back)",
  27028. image: {
  27029. source: "./media/characters/koros/dicks-back.svg"
  27030. }
  27031. },
  27032. dicksFront: {
  27033. height: math.unit(3.72, "feet"),
  27034. name: "Dicks (Front)",
  27035. image: {
  27036. source: "./media/characters/koros/dicks-front.svg"
  27037. }
  27038. },
  27039. dicksPeeking: {
  27040. height: math.unit(3.0, "feet"),
  27041. name: "Dicks (Peeking)",
  27042. image: {
  27043. source: "./media/characters/koros/dicks-peeking.svg"
  27044. }
  27045. },
  27046. eye: {
  27047. height: math.unit(1.7, "feet"),
  27048. name: "Eye",
  27049. image: {
  27050. source: "./media/characters/koros/eye.svg"
  27051. }
  27052. },
  27053. headFront: {
  27054. height: math.unit(11.69, "feet"),
  27055. name: "Head (Front)",
  27056. image: {
  27057. source: "./media/characters/koros/head-front.svg"
  27058. }
  27059. },
  27060. headSide: {
  27061. height: math.unit(14, "feet"),
  27062. name: "Head (Side)",
  27063. image: {
  27064. source: "./media/characters/koros/head-side.svg"
  27065. }
  27066. },
  27067. leg: {
  27068. height: math.unit(17, "feet"),
  27069. name: "Leg",
  27070. image: {
  27071. source: "./media/characters/koros/leg.svg"
  27072. }
  27073. },
  27074. mawSide: {
  27075. height: math.unit(12.8, "feet"),
  27076. name: "Maw (Side)",
  27077. image: {
  27078. source: "./media/characters/koros/maw-side.svg"
  27079. }
  27080. },
  27081. mawSpitting: {
  27082. height: math.unit(17, "feet"),
  27083. name: "Maw (Spitting)",
  27084. image: {
  27085. source: "./media/characters/koros/maw-spitting.svg"
  27086. }
  27087. },
  27088. slit: {
  27089. height: math.unit(2.8, "feet"),
  27090. name: "Slit",
  27091. image: {
  27092. source: "./media/characters/koros/slit.svg"
  27093. }
  27094. },
  27095. stomach: {
  27096. height: math.unit(6.8, "feet"),
  27097. preyCapacity: math.unit(20, "people"),
  27098. name: "Stomach",
  27099. image: {
  27100. source: "./media/characters/koros/stomach.svg"
  27101. }
  27102. },
  27103. wingspanBottom: {
  27104. height: math.unit(114, "feet"),
  27105. name: "Wingspan (Bottom)",
  27106. image: {
  27107. source: "./media/characters/koros/wingspan-bottom.svg"
  27108. }
  27109. },
  27110. wingspanTop: {
  27111. height: math.unit(104, "feet"),
  27112. name: "Wingspan (Top)",
  27113. image: {
  27114. source: "./media/characters/koros/wingspan-top.svg"
  27115. }
  27116. },
  27117. },
  27118. [
  27119. {
  27120. name: "Normal",
  27121. height: math.unit(31 + 8 / 12, "feet"),
  27122. default: true
  27123. },
  27124. ]
  27125. ))
  27126. characterMakers.push(() => makeCharacter(
  27127. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27128. {
  27129. front: {
  27130. height: math.unit(18 + 5 / 12, "feet"),
  27131. weight: math.unit(3750, "kg"),
  27132. name: "Front",
  27133. image: {
  27134. source: "./media/characters/vexx/front.svg",
  27135. extra: 426 / 396,
  27136. bottom: 31.5 / 458
  27137. }
  27138. },
  27139. maw: {
  27140. height: math.unit(6, "feet"),
  27141. name: "Maw",
  27142. image: {
  27143. source: "./media/characters/vexx/maw.svg"
  27144. }
  27145. },
  27146. },
  27147. [
  27148. {
  27149. name: "Normal",
  27150. height: math.unit(18 + 5 / 12, "feet"),
  27151. default: true
  27152. },
  27153. ]
  27154. ))
  27155. characterMakers.push(() => makeCharacter(
  27156. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27157. {
  27158. front: {
  27159. height: math.unit(17 + 6 / 12, "feet"),
  27160. weight: math.unit(150, "lb"),
  27161. name: "Front",
  27162. image: {
  27163. source: "./media/characters/baadra/front.svg",
  27164. extra: 1694/1553,
  27165. bottom: 179/1873
  27166. }
  27167. },
  27168. frontAlt: {
  27169. height: math.unit(17 + 6 / 12, "feet"),
  27170. weight: math.unit(150, "lb"),
  27171. name: "Front (Alt)",
  27172. image: {
  27173. source: "./media/characters/baadra/front-alt.svg",
  27174. extra: 3137 / 2890,
  27175. bottom: 168.4 / 3305
  27176. }
  27177. },
  27178. back: {
  27179. height: math.unit(17 + 6 / 12, "feet"),
  27180. weight: math.unit(150, "lb"),
  27181. name: "Back",
  27182. image: {
  27183. source: "./media/characters/baadra/back.svg",
  27184. extra: 3142 / 2890,
  27185. bottom: 220 / 3371
  27186. }
  27187. },
  27188. head: {
  27189. height: math.unit(5.45, "feet"),
  27190. name: "Head",
  27191. image: {
  27192. source: "./media/characters/baadra/head.svg"
  27193. }
  27194. },
  27195. headAngry: {
  27196. height: math.unit(4.95, "feet"),
  27197. name: "Head (Angry)",
  27198. image: {
  27199. source: "./media/characters/baadra/head-angry.svg"
  27200. }
  27201. },
  27202. headOpen: {
  27203. height: math.unit(6, "feet"),
  27204. name: "Head (Open)",
  27205. image: {
  27206. source: "./media/characters/baadra/head-open.svg"
  27207. }
  27208. },
  27209. },
  27210. [
  27211. {
  27212. name: "Normal",
  27213. height: math.unit(17 + 6 / 12, "feet"),
  27214. default: true
  27215. },
  27216. ]
  27217. ))
  27218. characterMakers.push(() => makeCharacter(
  27219. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27220. {
  27221. front: {
  27222. height: math.unit(7 + 3 / 12, "feet"),
  27223. weight: math.unit(180, "lb"),
  27224. name: "Front",
  27225. image: {
  27226. source: "./media/characters/juri/front.svg",
  27227. extra: 1401 / 1237,
  27228. bottom: 18.5 / 1418
  27229. }
  27230. },
  27231. side: {
  27232. height: math.unit(7 + 3 / 12, "feet"),
  27233. weight: math.unit(180, "lb"),
  27234. name: "Side",
  27235. image: {
  27236. source: "./media/characters/juri/side.svg",
  27237. extra: 1424 / 1242,
  27238. bottom: 18.5 / 1447
  27239. }
  27240. },
  27241. sitting: {
  27242. height: math.unit(6, "feet"),
  27243. weight: math.unit(180, "lb"),
  27244. name: "Sitting",
  27245. image: {
  27246. source: "./media/characters/juri/sitting.svg",
  27247. extra: 1270 / 1143,
  27248. bottom: 100 / 1343
  27249. }
  27250. },
  27251. back: {
  27252. height: math.unit(7 + 3 / 12, "feet"),
  27253. weight: math.unit(180, "lb"),
  27254. name: "Back",
  27255. image: {
  27256. source: "./media/characters/juri/back.svg",
  27257. extra: 1377 / 1240,
  27258. bottom: 23.7 / 1405
  27259. }
  27260. },
  27261. maw: {
  27262. height: math.unit(2.8, "feet"),
  27263. name: "Maw",
  27264. image: {
  27265. source: "./media/characters/juri/maw.svg"
  27266. }
  27267. },
  27268. stomach: {
  27269. height: math.unit(0.89, "feet"),
  27270. preyCapacity: math.unit(4, "liters"),
  27271. name: "Stomach",
  27272. image: {
  27273. source: "./media/characters/juri/stomach.svg"
  27274. }
  27275. },
  27276. },
  27277. [
  27278. {
  27279. name: "Normal",
  27280. height: math.unit(7 + 3 / 12, "feet"),
  27281. default: true
  27282. },
  27283. ]
  27284. ))
  27285. characterMakers.push(() => makeCharacter(
  27286. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27287. {
  27288. fox: {
  27289. height: math.unit(5 + 6 / 12, "feet"),
  27290. weight: math.unit(140, "lb"),
  27291. name: "Fox",
  27292. image: {
  27293. source: "./media/characters/maxene-sita/fox.svg",
  27294. extra: 146 / 138,
  27295. bottom: 2.1 / 148.19
  27296. }
  27297. },
  27298. foxLaying: {
  27299. height: math.unit(1.70, "feet"),
  27300. weight: math.unit(140, "lb"),
  27301. name: "Fox (Laying)",
  27302. image: {
  27303. source: "./media/characters/maxene-sita/fox-laying.svg",
  27304. extra: 910 / 572,
  27305. bottom: 71 / 981
  27306. }
  27307. },
  27308. kitsune: {
  27309. height: math.unit(10, "feet"),
  27310. weight: math.unit(800, "lb"),
  27311. name: "Kitsune",
  27312. image: {
  27313. source: "./media/characters/maxene-sita/kitsune.svg",
  27314. extra: 185 / 176,
  27315. bottom: 4.7 / 189.9
  27316. }
  27317. },
  27318. hellhound: {
  27319. height: math.unit(10, "feet"),
  27320. weight: math.unit(700, "lb"),
  27321. name: "Hellhound",
  27322. image: {
  27323. source: "./media/characters/maxene-sita/hellhound.svg",
  27324. extra: 1600 / 1545,
  27325. bottom: 81 / 1681
  27326. }
  27327. },
  27328. },
  27329. [
  27330. {
  27331. name: "Normal",
  27332. height: math.unit(5 + 6 / 12, "feet"),
  27333. default: true
  27334. },
  27335. ]
  27336. ))
  27337. characterMakers.push(() => makeCharacter(
  27338. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27339. {
  27340. front: {
  27341. height: math.unit(3 + 4 / 12, "feet"),
  27342. weight: math.unit(70, "lb"),
  27343. name: "Front",
  27344. image: {
  27345. source: "./media/characters/maia/front.svg",
  27346. extra: 227 / 219.5,
  27347. bottom: 40 / 267
  27348. }
  27349. },
  27350. back: {
  27351. height: math.unit(3 + 4 / 12, "feet"),
  27352. weight: math.unit(70, "lb"),
  27353. name: "Back",
  27354. image: {
  27355. source: "./media/characters/maia/back.svg",
  27356. extra: 237 / 225
  27357. }
  27358. },
  27359. },
  27360. [
  27361. {
  27362. name: "Normal",
  27363. height: math.unit(3 + 4 / 12, "feet"),
  27364. default: true
  27365. },
  27366. ]
  27367. ))
  27368. characterMakers.push(() => makeCharacter(
  27369. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27370. {
  27371. front: {
  27372. height: math.unit(5 + 10 / 12, "feet"),
  27373. weight: math.unit(197, "lb"),
  27374. name: "Front",
  27375. image: {
  27376. source: "./media/characters/jabaro/front.svg",
  27377. extra: 225 / 216,
  27378. bottom: 5.06 / 230
  27379. }
  27380. },
  27381. back: {
  27382. height: math.unit(5 + 10 / 12, "feet"),
  27383. weight: math.unit(197, "lb"),
  27384. name: "Back",
  27385. image: {
  27386. source: "./media/characters/jabaro/back.svg",
  27387. extra: 225 / 219,
  27388. bottom: 1.9 / 227
  27389. }
  27390. },
  27391. },
  27392. [
  27393. {
  27394. name: "Normal",
  27395. height: math.unit(5 + 10 / 12, "feet"),
  27396. default: true
  27397. },
  27398. ]
  27399. ))
  27400. characterMakers.push(() => makeCharacter(
  27401. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27402. {
  27403. front: {
  27404. height: math.unit(5 + 8 / 12, "feet"),
  27405. weight: math.unit(139, "lb"),
  27406. name: "Front",
  27407. image: {
  27408. source: "./media/characters/risa/front.svg",
  27409. extra: 270 / 260,
  27410. bottom: 11.2 / 282
  27411. }
  27412. },
  27413. back: {
  27414. height: math.unit(5 + 8 / 12, "feet"),
  27415. weight: math.unit(139, "lb"),
  27416. name: "Back",
  27417. image: {
  27418. source: "./media/characters/risa/back.svg",
  27419. extra: 264 / 255,
  27420. bottom: 4 / 268
  27421. }
  27422. },
  27423. },
  27424. [
  27425. {
  27426. name: "Normal",
  27427. height: math.unit(5 + 8 / 12, "feet"),
  27428. default: true
  27429. },
  27430. ]
  27431. ))
  27432. characterMakers.push(() => makeCharacter(
  27433. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27434. {
  27435. front: {
  27436. height: math.unit(2 + 11 / 12, "feet"),
  27437. weight: math.unit(30, "lb"),
  27438. name: "Front",
  27439. image: {
  27440. source: "./media/characters/weatley/front.svg",
  27441. bottom: 10.7 / 414,
  27442. extra: 403.5 / 362
  27443. }
  27444. },
  27445. back: {
  27446. height: math.unit(2 + 11 / 12, "feet"),
  27447. weight: math.unit(30, "lb"),
  27448. name: "Back",
  27449. image: {
  27450. source: "./media/characters/weatley/back.svg",
  27451. bottom: 10.7 / 414,
  27452. extra: 403.5 / 362
  27453. }
  27454. },
  27455. },
  27456. [
  27457. {
  27458. name: "Normal",
  27459. height: math.unit(2 + 11 / 12, "feet"),
  27460. default: true
  27461. },
  27462. ]
  27463. ))
  27464. characterMakers.push(() => makeCharacter(
  27465. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27466. {
  27467. front: {
  27468. height: math.unit(5 + 2 / 12, "feet"),
  27469. weight: math.unit(50, "kg"),
  27470. name: "Front",
  27471. image: {
  27472. source: "./media/characters/mercury-crescent/front.svg",
  27473. extra: 1088 / 1033,
  27474. bottom: 18.9 / 1109
  27475. }
  27476. },
  27477. },
  27478. [
  27479. {
  27480. name: "Normal",
  27481. height: math.unit(5 + 2 / 12, "feet"),
  27482. default: true
  27483. },
  27484. ]
  27485. ))
  27486. characterMakers.push(() => makeCharacter(
  27487. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27488. {
  27489. front: {
  27490. height: math.unit(2, "feet"),
  27491. weight: math.unit(15, "kg"),
  27492. name: "Front",
  27493. image: {
  27494. source: "./media/characters/diamond-jones/front.svg",
  27495. extra: 727/723,
  27496. bottom: 46/773
  27497. }
  27498. },
  27499. },
  27500. [
  27501. {
  27502. name: "Normal",
  27503. height: math.unit(2, "feet"),
  27504. default: true
  27505. },
  27506. ]
  27507. ))
  27508. characterMakers.push(() => makeCharacter(
  27509. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27510. {
  27511. front: {
  27512. height: math.unit(3, "feet"),
  27513. weight: math.unit(30, "kg"),
  27514. name: "Front",
  27515. image: {
  27516. source: "./media/characters/sweet-bit/front.svg",
  27517. extra: 675 / 567,
  27518. bottom: 27.7 / 703
  27519. }
  27520. },
  27521. },
  27522. [
  27523. {
  27524. name: "Normal",
  27525. height: math.unit(3, "feet"),
  27526. default: true
  27527. },
  27528. ]
  27529. ))
  27530. characterMakers.push(() => makeCharacter(
  27531. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27532. {
  27533. side: {
  27534. height: math.unit(9.178, "feet"),
  27535. weight: math.unit(500, "lb"),
  27536. name: "Side",
  27537. image: {
  27538. source: "./media/characters/umbrazen/side.svg",
  27539. extra: 1730 / 1473,
  27540. bottom: 34.6 / 1765
  27541. }
  27542. },
  27543. },
  27544. [
  27545. {
  27546. name: "Normal",
  27547. height: math.unit(9.178, "feet"),
  27548. default: true
  27549. },
  27550. ]
  27551. ))
  27552. characterMakers.push(() => makeCharacter(
  27553. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27554. {
  27555. front: {
  27556. height: math.unit(10, "feet"),
  27557. weight: math.unit(750, "lb"),
  27558. name: "Front",
  27559. image: {
  27560. source: "./media/characters/arlist/front.svg",
  27561. extra: 961 / 778,
  27562. bottom: 6.2 / 986
  27563. }
  27564. },
  27565. },
  27566. [
  27567. {
  27568. name: "Normal",
  27569. height: math.unit(10, "feet"),
  27570. default: true
  27571. },
  27572. ]
  27573. ))
  27574. characterMakers.push(() => makeCharacter(
  27575. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27576. {
  27577. front: {
  27578. height: math.unit(5 + 1 / 12, "feet"),
  27579. weight: math.unit(110, "lb"),
  27580. name: "Front",
  27581. image: {
  27582. source: "./media/characters/aradel/front.svg",
  27583. extra: 324 / 303,
  27584. bottom: 3.6 / 329.4
  27585. }
  27586. },
  27587. },
  27588. [
  27589. {
  27590. name: "Normal",
  27591. height: math.unit(5 + 1 / 12, "feet"),
  27592. default: true
  27593. },
  27594. ]
  27595. ))
  27596. characterMakers.push(() => makeCharacter(
  27597. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27598. {
  27599. dressed: {
  27600. height: math.unit(3 + 8 / 12, "feet"),
  27601. weight: math.unit(50, "lb"),
  27602. name: "Dressed",
  27603. image: {
  27604. source: "./media/characters/serryn/dressed.svg",
  27605. extra: 1792 / 1656,
  27606. bottom: 43.5 / 1840
  27607. }
  27608. },
  27609. nude: {
  27610. height: math.unit(3 + 8 / 12, "feet"),
  27611. weight: math.unit(50, "lb"),
  27612. name: "Nude",
  27613. image: {
  27614. source: "./media/characters/serryn/nude.svg",
  27615. extra: 1792 / 1656,
  27616. bottom: 43.5 / 1840
  27617. }
  27618. },
  27619. },
  27620. [
  27621. {
  27622. name: "Normal",
  27623. height: math.unit(3 + 8 / 12, "feet"),
  27624. default: true
  27625. },
  27626. ]
  27627. ))
  27628. characterMakers.push(() => makeCharacter(
  27629. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27630. {
  27631. front: {
  27632. height: math.unit(7 + 10 / 12, "feet"),
  27633. weight: math.unit(255, "lb"),
  27634. name: "Front",
  27635. image: {
  27636. source: "./media/characters/xavier-thyme/front.svg",
  27637. extra: 3733 / 3642,
  27638. bottom: 131 / 3869
  27639. }
  27640. },
  27641. frontRaven: {
  27642. height: math.unit(7 + 10 / 12, "feet"),
  27643. weight: math.unit(255, "lb"),
  27644. name: "Front (Raven)",
  27645. image: {
  27646. source: "./media/characters/xavier-thyme/front-raven.svg",
  27647. extra: 4385 / 3642,
  27648. bottom: 131 / 4517
  27649. }
  27650. },
  27651. },
  27652. [
  27653. {
  27654. name: "Normal",
  27655. height: math.unit(7 + 10 / 12, "feet"),
  27656. default: true
  27657. },
  27658. ]
  27659. ))
  27660. characterMakers.push(() => makeCharacter(
  27661. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27662. {
  27663. front: {
  27664. height: math.unit(1.6, "m"),
  27665. weight: math.unit(50, "kg"),
  27666. name: "Front",
  27667. image: {
  27668. source: "./media/characters/kiki/front.svg",
  27669. extra: 4682 / 3610,
  27670. bottom: 115 / 4777
  27671. }
  27672. },
  27673. },
  27674. [
  27675. {
  27676. name: "Normal",
  27677. height: math.unit(1.6, "meters"),
  27678. default: true
  27679. },
  27680. ]
  27681. ))
  27682. characterMakers.push(() => makeCharacter(
  27683. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27684. {
  27685. front: {
  27686. height: math.unit(50, "m"),
  27687. weight: math.unit(500, "tonnes"),
  27688. name: "Front",
  27689. image: {
  27690. source: "./media/characters/ryoko/front.svg",
  27691. extra: 4632 / 3926,
  27692. bottom: 193 / 4823
  27693. }
  27694. },
  27695. },
  27696. [
  27697. {
  27698. name: "Normal",
  27699. height: math.unit(50, "meters"),
  27700. default: true
  27701. },
  27702. ]
  27703. ))
  27704. characterMakers.push(() => makeCharacter(
  27705. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27706. {
  27707. front: {
  27708. height: math.unit(30, "m"),
  27709. weight: math.unit(22, "tonnes"),
  27710. name: "Front",
  27711. image: {
  27712. source: "./media/characters/elio/front.svg",
  27713. extra: 4582 / 3720,
  27714. bottom: 236 / 4828
  27715. }
  27716. },
  27717. },
  27718. [
  27719. {
  27720. name: "Normal",
  27721. height: math.unit(30, "meters"),
  27722. default: true
  27723. },
  27724. ]
  27725. ))
  27726. characterMakers.push(() => makeCharacter(
  27727. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27728. {
  27729. front: {
  27730. height: math.unit(6 + 3 / 12, "feet"),
  27731. weight: math.unit(120, "lb"),
  27732. name: "Front",
  27733. image: {
  27734. source: "./media/characters/azura/front.svg",
  27735. extra: 1149 / 1135,
  27736. bottom: 45 / 1194
  27737. }
  27738. },
  27739. frontClothed: {
  27740. height: math.unit(6 + 3 / 12, "feet"),
  27741. weight: math.unit(120, "lb"),
  27742. name: "Front (Clothed)",
  27743. image: {
  27744. source: "./media/characters/azura/front-clothed.svg",
  27745. extra: 1149 / 1135,
  27746. bottom: 45 / 1194
  27747. }
  27748. },
  27749. },
  27750. [
  27751. {
  27752. name: "Normal",
  27753. height: math.unit(6 + 3 / 12, "feet"),
  27754. default: true
  27755. },
  27756. {
  27757. name: "Macro",
  27758. height: math.unit(20 + 6 / 12, "feet")
  27759. },
  27760. {
  27761. name: "Megamacro",
  27762. height: math.unit(12, "miles")
  27763. },
  27764. {
  27765. name: "Gigamacro",
  27766. height: math.unit(10000, "miles")
  27767. },
  27768. {
  27769. name: "Teramacro",
  27770. height: math.unit(900000, "miles")
  27771. },
  27772. ]
  27773. ))
  27774. characterMakers.push(() => makeCharacter(
  27775. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27776. {
  27777. front: {
  27778. height: math.unit(12, "feet"),
  27779. weight: math.unit(1, "ton"),
  27780. capacity: math.unit(660000, "gallons"),
  27781. name: "Front",
  27782. image: {
  27783. source: "./media/characters/zeus/front.svg",
  27784. extra: 5005 / 4717,
  27785. bottom: 363 / 5388
  27786. }
  27787. },
  27788. },
  27789. [
  27790. {
  27791. name: "Normal",
  27792. height: math.unit(12, "feet")
  27793. },
  27794. {
  27795. name: "Preferred Size",
  27796. height: math.unit(0.5, "miles"),
  27797. default: true
  27798. },
  27799. {
  27800. name: "Giga Horse",
  27801. height: math.unit(300, "miles")
  27802. },
  27803. {
  27804. name: "Riding Planets",
  27805. height: math.unit(30, "megameters")
  27806. },
  27807. {
  27808. name: "Cosmic Giant",
  27809. height: math.unit(3, "zettameters")
  27810. },
  27811. {
  27812. name: "Breeding God",
  27813. height: math.unit(9.92e22, "yottameters")
  27814. },
  27815. ]
  27816. ))
  27817. characterMakers.push(() => makeCharacter(
  27818. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27819. {
  27820. side: {
  27821. height: math.unit(9, "feet"),
  27822. weight: math.unit(1500, "kg"),
  27823. name: "Side",
  27824. image: {
  27825. source: "./media/characters/fang/side.svg",
  27826. extra: 924 / 866,
  27827. bottom: 47.5 / 972.3
  27828. }
  27829. },
  27830. },
  27831. [
  27832. {
  27833. name: "Normal",
  27834. height: math.unit(9, "feet"),
  27835. default: true
  27836. },
  27837. {
  27838. name: "Macro",
  27839. height: math.unit(75 + 6 / 12, "feet")
  27840. },
  27841. {
  27842. name: "Teramacro",
  27843. height: math.unit(50000, "miles")
  27844. },
  27845. ]
  27846. ))
  27847. characterMakers.push(() => makeCharacter(
  27848. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27849. {
  27850. front: {
  27851. height: math.unit(10, "feet"),
  27852. weight: math.unit(2, "tons"),
  27853. name: "Front",
  27854. image: {
  27855. source: "./media/characters/rekhit/front.svg",
  27856. extra: 2796 / 2590,
  27857. bottom: 225 / 3022
  27858. }
  27859. },
  27860. },
  27861. [
  27862. {
  27863. name: "Normal",
  27864. height: math.unit(10, "feet"),
  27865. default: true
  27866. },
  27867. {
  27868. name: "Macro",
  27869. height: math.unit(500, "feet")
  27870. },
  27871. ]
  27872. ))
  27873. characterMakers.push(() => makeCharacter(
  27874. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27875. {
  27876. front: {
  27877. height: math.unit(7 + 6.451 / 12, "feet"),
  27878. weight: math.unit(310, "lb"),
  27879. name: "Front",
  27880. image: {
  27881. source: "./media/characters/dahlia-verrick/front.svg",
  27882. extra: 1488 / 1365,
  27883. bottom: 6.2 / 1495
  27884. }
  27885. },
  27886. back: {
  27887. height: math.unit(7 + 6.451 / 12, "feet"),
  27888. weight: math.unit(310, "lb"),
  27889. name: "Back",
  27890. image: {
  27891. source: "./media/characters/dahlia-verrick/back.svg",
  27892. extra: 1472 / 1351,
  27893. bottom: 5.28 / 1477
  27894. }
  27895. },
  27896. frontBusiness: {
  27897. height: math.unit(7 + 6.451 / 12, "feet"),
  27898. weight: math.unit(200, "lb"),
  27899. name: "Front (Business)",
  27900. image: {
  27901. source: "./media/characters/dahlia-verrick/front-business.svg",
  27902. extra: 1478 / 1381,
  27903. bottom: 5.5 / 1484
  27904. }
  27905. },
  27906. frontCasual: {
  27907. height: math.unit(7 + 6.451 / 12, "feet"),
  27908. weight: math.unit(200, "lb"),
  27909. name: "Front (Casual)",
  27910. image: {
  27911. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27912. extra: 1478 / 1381,
  27913. bottom: 5.5 / 1484
  27914. }
  27915. },
  27916. },
  27917. [
  27918. {
  27919. name: "Travel-Sized",
  27920. height: math.unit(7.45, "inches")
  27921. },
  27922. {
  27923. name: "Normal",
  27924. height: math.unit(7 + 6.451 / 12, "feet"),
  27925. default: true
  27926. },
  27927. {
  27928. name: "Hitting the Town",
  27929. height: math.unit(37 + 8 / 12, "feet")
  27930. },
  27931. {
  27932. name: "Stomp in the Suburbs",
  27933. height: math.unit(964 + 9.728 / 12, "feet")
  27934. },
  27935. {
  27936. name: "Sit on the City",
  27937. height: math.unit(61747 + 10.592 / 12, "feet")
  27938. },
  27939. {
  27940. name: "Glomp the Globe",
  27941. height: math.unit(252919327 + 4.832 / 12, "feet")
  27942. },
  27943. ]
  27944. ))
  27945. characterMakers.push(() => makeCharacter(
  27946. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27947. {
  27948. front: {
  27949. height: math.unit(6 + 4 / 12, "feet"),
  27950. weight: math.unit(320, "lb"),
  27951. name: "Front",
  27952. image: {
  27953. source: "./media/characters/balina-mahigan/front.svg",
  27954. extra: 447 / 428,
  27955. bottom: 18 / 466
  27956. }
  27957. },
  27958. back: {
  27959. height: math.unit(6 + 4 / 12, "feet"),
  27960. weight: math.unit(320, "lb"),
  27961. name: "Back",
  27962. image: {
  27963. source: "./media/characters/balina-mahigan/back.svg",
  27964. extra: 445 / 428,
  27965. bottom: 4.07 / 448
  27966. }
  27967. },
  27968. arm: {
  27969. height: math.unit(1.88, "feet"),
  27970. name: "Arm",
  27971. image: {
  27972. source: "./media/characters/balina-mahigan/arm.svg"
  27973. }
  27974. },
  27975. backPort: {
  27976. height: math.unit(0.685, "feet"),
  27977. name: "Back Port",
  27978. image: {
  27979. source: "./media/characters/balina-mahigan/back-port.svg"
  27980. }
  27981. },
  27982. hoofpaw: {
  27983. height: math.unit(1.41, "feet"),
  27984. name: "Hoofpaw",
  27985. image: {
  27986. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27987. }
  27988. },
  27989. leftHandBack: {
  27990. height: math.unit(0.938, "feet"),
  27991. name: "Left Hand (Back)",
  27992. image: {
  27993. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27994. }
  27995. },
  27996. leftHandFront: {
  27997. height: math.unit(0.938, "feet"),
  27998. name: "Left Hand (Front)",
  27999. image: {
  28000. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28001. }
  28002. },
  28003. rightHandBack: {
  28004. height: math.unit(0.95, "feet"),
  28005. name: "Right Hand (Back)",
  28006. image: {
  28007. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28008. }
  28009. },
  28010. rightHandFront: {
  28011. height: math.unit(0.95, "feet"),
  28012. name: "Right Hand (Front)",
  28013. image: {
  28014. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28015. }
  28016. },
  28017. },
  28018. [
  28019. {
  28020. name: "Normal",
  28021. height: math.unit(6 + 4 / 12, "feet"),
  28022. default: true
  28023. },
  28024. ]
  28025. ))
  28026. characterMakers.push(() => makeCharacter(
  28027. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28028. {
  28029. front: {
  28030. height: math.unit(6, "feet"),
  28031. weight: math.unit(320, "lb"),
  28032. name: "Front",
  28033. image: {
  28034. source: "./media/characters/balina-mejeri/front.svg",
  28035. extra: 517 / 488,
  28036. bottom: 44.2 / 561
  28037. }
  28038. },
  28039. },
  28040. [
  28041. {
  28042. name: "Normal",
  28043. height: math.unit(6 + 4 / 12, "feet")
  28044. },
  28045. {
  28046. name: "Business",
  28047. height: math.unit(155, "feet"),
  28048. default: true
  28049. },
  28050. ]
  28051. ))
  28052. characterMakers.push(() => makeCharacter(
  28053. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28054. {
  28055. kneeling: {
  28056. height: math.unit(6 + 4 / 12, "feet"),
  28057. weight: math.unit(300 * 20, "lb"),
  28058. name: "Kneeling",
  28059. image: {
  28060. source: "./media/characters/balbarian/kneeling.svg",
  28061. extra: 922 / 862,
  28062. bottom: 42.4 / 965
  28063. }
  28064. },
  28065. },
  28066. [
  28067. {
  28068. name: "Normal",
  28069. height: math.unit(6 + 4 / 12, "feet")
  28070. },
  28071. {
  28072. name: "Treasured",
  28073. height: math.unit(18 + 9 / 12, "feet"),
  28074. default: true
  28075. },
  28076. {
  28077. name: "Macro",
  28078. height: math.unit(900, "feet")
  28079. },
  28080. ]
  28081. ))
  28082. characterMakers.push(() => makeCharacter(
  28083. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28084. {
  28085. front: {
  28086. height: math.unit(6 + 4 / 12, "feet"),
  28087. weight: math.unit(325, "lb"),
  28088. name: "Front",
  28089. image: {
  28090. source: "./media/characters/balina-amarini/front.svg",
  28091. extra: 415 / 403,
  28092. bottom: 19 / 433.4
  28093. }
  28094. },
  28095. back: {
  28096. height: math.unit(6 + 4 / 12, "feet"),
  28097. weight: math.unit(325, "lb"),
  28098. name: "Back",
  28099. image: {
  28100. source: "./media/characters/balina-amarini/back.svg",
  28101. extra: 415 / 403,
  28102. bottom: 13.5 / 432
  28103. }
  28104. },
  28105. overdrive: {
  28106. height: math.unit(6 + 4 / 12, "feet"),
  28107. weight: math.unit(400, "lb"),
  28108. name: "Overdrive",
  28109. image: {
  28110. source: "./media/characters/balina-amarini/overdrive.svg",
  28111. extra: 269 / 259,
  28112. bottom: 12 / 282
  28113. }
  28114. },
  28115. },
  28116. [
  28117. {
  28118. name: "Boom",
  28119. height: math.unit(9 + 10 / 12, "feet"),
  28120. default: true
  28121. },
  28122. {
  28123. name: "Macro",
  28124. height: math.unit(280, "feet")
  28125. },
  28126. ]
  28127. ))
  28128. characterMakers.push(() => makeCharacter(
  28129. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28130. {
  28131. goddess: {
  28132. height: math.unit(600, "feet"),
  28133. weight: math.unit(2000000, "tons"),
  28134. name: "Goddess",
  28135. image: {
  28136. source: "./media/characters/lady-kubwa/goddess.svg",
  28137. extra: 1240.5 / 1223,
  28138. bottom: 22 / 1263
  28139. }
  28140. },
  28141. goddesser: {
  28142. height: math.unit(900, "feet"),
  28143. weight: math.unit(20000000, "lb"),
  28144. name: "Goddess-er",
  28145. image: {
  28146. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28147. extra: 899 / 888,
  28148. bottom: 12.6 / 912
  28149. }
  28150. },
  28151. },
  28152. [
  28153. {
  28154. name: "Macro",
  28155. height: math.unit(600, "feet"),
  28156. default: true
  28157. },
  28158. {
  28159. name: "Megamacro",
  28160. height: math.unit(250, "miles")
  28161. },
  28162. ]
  28163. ))
  28164. characterMakers.push(() => makeCharacter(
  28165. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28166. {
  28167. front: {
  28168. height: math.unit(7 + 7 / 12, "feet"),
  28169. weight: math.unit(250, "lb"),
  28170. name: "Front",
  28171. image: {
  28172. source: "./media/characters/tala-grovehorn/front.svg",
  28173. extra: 2636 / 2525,
  28174. bottom: 147 / 2781
  28175. }
  28176. },
  28177. back: {
  28178. height: math.unit(7 + 7 / 12, "feet"),
  28179. weight: math.unit(250, "lb"),
  28180. name: "Back",
  28181. image: {
  28182. source: "./media/characters/tala-grovehorn/back.svg",
  28183. extra: 2635 / 2539,
  28184. bottom: 100 / 2732.8
  28185. }
  28186. },
  28187. mouth: {
  28188. height: math.unit(1.15, "feet"),
  28189. name: "Mouth",
  28190. image: {
  28191. source: "./media/characters/tala-grovehorn/mouth.svg"
  28192. }
  28193. },
  28194. dick: {
  28195. height: math.unit(2.36, "feet"),
  28196. name: "Dick",
  28197. image: {
  28198. source: "./media/characters/tala-grovehorn/dick.svg"
  28199. }
  28200. },
  28201. slit: {
  28202. height: math.unit(0.61, "feet"),
  28203. name: "Slit",
  28204. image: {
  28205. source: "./media/characters/tala-grovehorn/slit.svg"
  28206. }
  28207. },
  28208. },
  28209. [
  28210. ]
  28211. ))
  28212. characterMakers.push(() => makeCharacter(
  28213. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28214. {
  28215. front: {
  28216. height: math.unit(7 + 7 / 12, "feet"),
  28217. weight: math.unit(225, "lb"),
  28218. name: "Front",
  28219. image: {
  28220. source: "./media/characters/epona/front.svg",
  28221. extra: 2445 / 2290,
  28222. bottom: 251 / 2696
  28223. }
  28224. },
  28225. back: {
  28226. height: math.unit(7 + 7 / 12, "feet"),
  28227. weight: math.unit(225, "lb"),
  28228. name: "Back",
  28229. image: {
  28230. source: "./media/characters/epona/back.svg",
  28231. extra: 2546 / 2408,
  28232. bottom: 44 / 2589
  28233. }
  28234. },
  28235. genitals: {
  28236. height: math.unit(1.5, "feet"),
  28237. name: "Genitals",
  28238. image: {
  28239. source: "./media/characters/epona/genitals.svg"
  28240. }
  28241. },
  28242. },
  28243. [
  28244. {
  28245. name: "Normal",
  28246. height: math.unit(7 + 7 / 12, "feet"),
  28247. default: true
  28248. },
  28249. ]
  28250. ))
  28251. characterMakers.push(() => makeCharacter(
  28252. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28253. {
  28254. front: {
  28255. height: math.unit(7, "feet"),
  28256. weight: math.unit(518, "lb"),
  28257. name: "Front",
  28258. image: {
  28259. source: "./media/characters/avia-bloodbourn/front.svg",
  28260. extra: 1466 / 1350,
  28261. bottom: 65 / 1527
  28262. }
  28263. },
  28264. },
  28265. [
  28266. ]
  28267. ))
  28268. characterMakers.push(() => makeCharacter(
  28269. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28270. {
  28271. front: {
  28272. height: math.unit(9.35, "feet"),
  28273. weight: math.unit(600, "lb"),
  28274. name: "Front",
  28275. image: {
  28276. source: "./media/characters/amera/front.svg",
  28277. extra: 891 / 818,
  28278. bottom: 30 / 922.7
  28279. }
  28280. },
  28281. back: {
  28282. height: math.unit(9.35, "feet"),
  28283. weight: math.unit(600, "lb"),
  28284. name: "Back",
  28285. image: {
  28286. source: "./media/characters/amera/back.svg",
  28287. extra: 876 / 824,
  28288. bottom: 6.8 / 884
  28289. }
  28290. },
  28291. dick: {
  28292. height: math.unit(2.14, "feet"),
  28293. name: "Dick",
  28294. image: {
  28295. source: "./media/characters/amera/dick.svg"
  28296. }
  28297. },
  28298. },
  28299. [
  28300. {
  28301. name: "Normal",
  28302. height: math.unit(9.35, "feet"),
  28303. default: true
  28304. },
  28305. ]
  28306. ))
  28307. characterMakers.push(() => makeCharacter(
  28308. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28309. {
  28310. kneeling: {
  28311. height: math.unit(3 + 4 / 12, "feet"),
  28312. weight: math.unit(90, "lb"),
  28313. name: "Kneeling",
  28314. image: {
  28315. source: "./media/characters/rosewen/kneeling.svg",
  28316. extra: 1835 / 1571,
  28317. bottom: 27.7 / 1862
  28318. }
  28319. },
  28320. },
  28321. [
  28322. {
  28323. name: "Normal",
  28324. height: math.unit(3 + 4 / 12, "feet"),
  28325. default: true
  28326. },
  28327. ]
  28328. ))
  28329. characterMakers.push(() => makeCharacter(
  28330. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28331. {
  28332. front: {
  28333. height: math.unit(5 + 10 / 12, "feet"),
  28334. weight: math.unit(200, "lb"),
  28335. name: "Front",
  28336. image: {
  28337. source: "./media/characters/sabah/front.svg",
  28338. extra: 849 / 763,
  28339. bottom: 33.9 / 881
  28340. }
  28341. },
  28342. },
  28343. [
  28344. {
  28345. name: "Normal",
  28346. height: math.unit(5 + 10 / 12, "feet"),
  28347. default: true
  28348. },
  28349. ]
  28350. ))
  28351. characterMakers.push(() => makeCharacter(
  28352. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28353. {
  28354. front: {
  28355. height: math.unit(3 + 5 / 12, "feet"),
  28356. weight: math.unit(40, "kg"),
  28357. name: "Front",
  28358. image: {
  28359. source: "./media/characters/purple-flame/front.svg",
  28360. extra: 1577 / 1412,
  28361. bottom: 97 / 1694
  28362. }
  28363. },
  28364. frontDressed: {
  28365. height: math.unit(3 + 5 / 12, "feet"),
  28366. weight: math.unit(40, "kg"),
  28367. name: "Front (Dressed)",
  28368. image: {
  28369. source: "./media/characters/purple-flame/front-dressed.svg",
  28370. extra: 1577 / 1412,
  28371. bottom: 97 / 1694
  28372. }
  28373. },
  28374. headphones: {
  28375. height: math.unit(0.85, "feet"),
  28376. name: "Headphones",
  28377. image: {
  28378. source: "./media/characters/purple-flame/headphones.svg"
  28379. }
  28380. },
  28381. },
  28382. [
  28383. {
  28384. name: "Really Small",
  28385. height: math.unit(5, "cm")
  28386. },
  28387. {
  28388. name: "Micro",
  28389. height: math.unit(1 + 5 / 12, "feet")
  28390. },
  28391. {
  28392. name: "Normal",
  28393. height: math.unit(3 + 5 / 12, "feet"),
  28394. default: true
  28395. },
  28396. {
  28397. name: "Minimacro",
  28398. height: math.unit(125, "feet")
  28399. },
  28400. {
  28401. name: "Macro",
  28402. height: math.unit(0.5, "miles")
  28403. },
  28404. {
  28405. name: "Megamacro",
  28406. height: math.unit(50, "miles")
  28407. },
  28408. {
  28409. name: "Gigantic",
  28410. height: math.unit(750, "miles")
  28411. },
  28412. {
  28413. name: "Planetary",
  28414. height: math.unit(15000, "miles")
  28415. },
  28416. ]
  28417. ))
  28418. characterMakers.push(() => makeCharacter(
  28419. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28420. {
  28421. front: {
  28422. height: math.unit(14, "feet"),
  28423. weight: math.unit(959, "lb"),
  28424. name: "Front",
  28425. image: {
  28426. source: "./media/characters/arsenal/front.svg",
  28427. extra: 2357 / 2157,
  28428. bottom: 93 / 2458
  28429. }
  28430. },
  28431. },
  28432. [
  28433. {
  28434. name: "Normal",
  28435. height: math.unit(14, "feet"),
  28436. default: true
  28437. },
  28438. ]
  28439. ))
  28440. characterMakers.push(() => makeCharacter(
  28441. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28442. {
  28443. front: {
  28444. height: math.unit(6, "feet"),
  28445. weight: math.unit(150, "lb"),
  28446. name: "Front",
  28447. image: {
  28448. source: "./media/characters/adira/front.svg",
  28449. extra: 1078 / 1029,
  28450. bottom: 87 / 1166
  28451. }
  28452. },
  28453. },
  28454. [
  28455. {
  28456. name: "Micro",
  28457. height: math.unit(4, "inches"),
  28458. default: true
  28459. },
  28460. {
  28461. name: "Macro",
  28462. height: math.unit(50, "feet")
  28463. },
  28464. ]
  28465. ))
  28466. characterMakers.push(() => makeCharacter(
  28467. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28468. {
  28469. front: {
  28470. height: math.unit(16, "feet"),
  28471. weight: math.unit(1000, "lb"),
  28472. name: "Front",
  28473. image: {
  28474. source: "./media/characters/grim/front.svg",
  28475. extra: 622 / 614,
  28476. bottom: 18.1 / 642
  28477. }
  28478. },
  28479. back: {
  28480. height: math.unit(16, "feet"),
  28481. weight: math.unit(1000, "lb"),
  28482. name: "Back",
  28483. image: {
  28484. source: "./media/characters/grim/back.svg",
  28485. extra: 610.6 / 602,
  28486. bottom: 40.8 / 652
  28487. }
  28488. },
  28489. hunched: {
  28490. height: math.unit(9.75, "feet"),
  28491. weight: math.unit(1000, "lb"),
  28492. name: "Hunched",
  28493. image: {
  28494. source: "./media/characters/grim/hunched.svg",
  28495. extra: 304 / 297,
  28496. bottom: 35.4 / 394
  28497. }
  28498. },
  28499. },
  28500. [
  28501. {
  28502. name: "Normal",
  28503. height: math.unit(16, "feet"),
  28504. default: true
  28505. },
  28506. ]
  28507. ))
  28508. characterMakers.push(() => makeCharacter(
  28509. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28510. {
  28511. front: {
  28512. height: math.unit(2.3, "meters"),
  28513. weight: math.unit(300, "lb"),
  28514. name: "Front",
  28515. image: {
  28516. source: "./media/characters/sinja/front-sfw.svg",
  28517. extra: 1393 / 1294,
  28518. bottom: 70 / 1463
  28519. }
  28520. },
  28521. frontNsfw: {
  28522. height: math.unit(2.3, "meters"),
  28523. weight: math.unit(300, "lb"),
  28524. name: "Front (NSFW)",
  28525. image: {
  28526. source: "./media/characters/sinja/front-nsfw.svg",
  28527. extra: 1393 / 1294,
  28528. bottom: 70 / 1463
  28529. }
  28530. },
  28531. back: {
  28532. height: math.unit(2.3, "meters"),
  28533. weight: math.unit(300, "lb"),
  28534. name: "Back",
  28535. image: {
  28536. source: "./media/characters/sinja/back.svg",
  28537. extra: 1393 / 1294,
  28538. bottom: 70 / 1463
  28539. }
  28540. },
  28541. head: {
  28542. height: math.unit(1.771, "feet"),
  28543. name: "Head",
  28544. image: {
  28545. source: "./media/characters/sinja/head.svg"
  28546. }
  28547. },
  28548. slit: {
  28549. height: math.unit(0.8, "feet"),
  28550. name: "Slit",
  28551. image: {
  28552. source: "./media/characters/sinja/slit.svg"
  28553. }
  28554. },
  28555. },
  28556. [
  28557. {
  28558. name: "Normal",
  28559. height: math.unit(2.3, "meters")
  28560. },
  28561. {
  28562. name: "Macro",
  28563. height: math.unit(91, "meters"),
  28564. default: true
  28565. },
  28566. {
  28567. name: "Megamacro",
  28568. height: math.unit(91440, "meters")
  28569. },
  28570. {
  28571. name: "Gigamacro",
  28572. height: math.unit(60960000, "meters")
  28573. },
  28574. {
  28575. name: "Teramacro",
  28576. height: math.unit(9144000000, "meters")
  28577. },
  28578. ]
  28579. ))
  28580. characterMakers.push(() => makeCharacter(
  28581. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28582. {
  28583. front: {
  28584. height: math.unit(1.7, "meters"),
  28585. weight: math.unit(130, "lb"),
  28586. name: "Front",
  28587. image: {
  28588. source: "./media/characters/kyu/front.svg",
  28589. extra: 415 / 395,
  28590. bottom: 5 / 420
  28591. }
  28592. },
  28593. head: {
  28594. height: math.unit(1.75, "feet"),
  28595. name: "Head",
  28596. image: {
  28597. source: "./media/characters/kyu/head.svg"
  28598. }
  28599. },
  28600. foot: {
  28601. height: math.unit(0.81, "feet"),
  28602. name: "Foot",
  28603. image: {
  28604. source: "./media/characters/kyu/foot.svg"
  28605. }
  28606. },
  28607. },
  28608. [
  28609. {
  28610. name: "Normal",
  28611. height: math.unit(1.7, "meters")
  28612. },
  28613. {
  28614. name: "Macro",
  28615. height: math.unit(131, "feet"),
  28616. default: true
  28617. },
  28618. {
  28619. name: "Megamacro",
  28620. height: math.unit(91440, "meters")
  28621. },
  28622. {
  28623. name: "Gigamacro",
  28624. height: math.unit(60960000, "meters")
  28625. },
  28626. {
  28627. name: "Teramacro",
  28628. height: math.unit(9144000000, "meters")
  28629. },
  28630. ]
  28631. ))
  28632. characterMakers.push(() => makeCharacter(
  28633. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28634. {
  28635. front: {
  28636. height: math.unit(7 + 1 / 12, "feet"),
  28637. weight: math.unit(250, "lb"),
  28638. name: "Front",
  28639. image: {
  28640. source: "./media/characters/joey/front.svg",
  28641. extra: 1791 / 1537,
  28642. bottom: 28 / 1816
  28643. }
  28644. },
  28645. },
  28646. [
  28647. {
  28648. name: "Micro",
  28649. height: math.unit(3, "inches")
  28650. },
  28651. {
  28652. name: "Normal",
  28653. height: math.unit(7 + 1 / 12, "feet"),
  28654. default: true
  28655. },
  28656. ]
  28657. ))
  28658. characterMakers.push(() => makeCharacter(
  28659. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28660. {
  28661. front: {
  28662. height: math.unit(165, "cm"),
  28663. weight: math.unit(140, "lb"),
  28664. name: "Front",
  28665. image: {
  28666. source: "./media/characters/sam-evans/front.svg",
  28667. extra: 3417 / 3230,
  28668. bottom: 41.3 / 3417
  28669. }
  28670. },
  28671. frontSixTails: {
  28672. height: math.unit(165, "cm"),
  28673. weight: math.unit(140, "lb"),
  28674. name: "Front-six-tails",
  28675. image: {
  28676. source: "./media/characters/sam-evans/front-six-tails.svg",
  28677. extra: 3417 / 3230,
  28678. bottom: 41.3 / 3417
  28679. }
  28680. },
  28681. back: {
  28682. height: math.unit(165, "cm"),
  28683. weight: math.unit(140, "lb"),
  28684. name: "Back",
  28685. image: {
  28686. source: "./media/characters/sam-evans/back.svg",
  28687. extra: 3227 / 3032,
  28688. bottom: 6.8 / 3234
  28689. }
  28690. },
  28691. face: {
  28692. height: math.unit(0.68, "feet"),
  28693. name: "Face",
  28694. image: {
  28695. source: "./media/characters/sam-evans/face.svg"
  28696. }
  28697. },
  28698. },
  28699. [
  28700. {
  28701. name: "Normal",
  28702. height: math.unit(165, "cm"),
  28703. default: true
  28704. },
  28705. {
  28706. name: "Macro",
  28707. height: math.unit(100, "meters")
  28708. },
  28709. {
  28710. name: "Macro+",
  28711. height: math.unit(800, "meters")
  28712. },
  28713. {
  28714. name: "Macro++",
  28715. height: math.unit(3, "km")
  28716. },
  28717. {
  28718. name: "Macro+++",
  28719. height: math.unit(30, "km")
  28720. },
  28721. ]
  28722. ))
  28723. characterMakers.push(() => makeCharacter(
  28724. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28725. {
  28726. front: {
  28727. height: math.unit(10, "feet"),
  28728. weight: math.unit(750, "lb"),
  28729. name: "Front",
  28730. image: {
  28731. source: "./media/characters/juliet-a/front.svg",
  28732. extra: 1766 / 1720,
  28733. bottom: 43 / 1809
  28734. }
  28735. },
  28736. back: {
  28737. height: math.unit(10, "feet"),
  28738. weight: math.unit(750, "lb"),
  28739. name: "Back",
  28740. image: {
  28741. source: "./media/characters/juliet-a/back.svg",
  28742. extra: 1781 / 1734,
  28743. bottom: 35 / 1810,
  28744. }
  28745. },
  28746. },
  28747. [
  28748. {
  28749. name: "Normal",
  28750. height: math.unit(10, "feet"),
  28751. default: true
  28752. },
  28753. {
  28754. name: "Dragon Form",
  28755. height: math.unit(250, "feet")
  28756. },
  28757. {
  28758. name: "Macro",
  28759. height: math.unit(1000, "feet")
  28760. },
  28761. {
  28762. name: "Megamacro",
  28763. height: math.unit(10000, "feet")
  28764. }
  28765. ]
  28766. ))
  28767. characterMakers.push(() => makeCharacter(
  28768. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28769. {
  28770. regular: {
  28771. height: math.unit(7 + 3 / 12, "feet"),
  28772. weight: math.unit(260, "lb"),
  28773. name: "Regular",
  28774. image: {
  28775. source: "./media/characters/wild/regular.svg",
  28776. extra: 97.45 / 92,
  28777. bottom: 6.8 / 104.3
  28778. }
  28779. },
  28780. biggums: {
  28781. height: math.unit(8 + 6 / 12, "feet"),
  28782. weight: math.unit(425, "lb"),
  28783. name: "Biggums",
  28784. image: {
  28785. source: "./media/characters/wild/biggums.svg",
  28786. extra: 97.45 / 92,
  28787. bottom: 7.5 / 132.34
  28788. }
  28789. },
  28790. mawRegular: {
  28791. height: math.unit(1.24, "feet"),
  28792. name: "Maw (Regular)",
  28793. image: {
  28794. source: "./media/characters/wild/maw.svg"
  28795. }
  28796. },
  28797. mawBiggums: {
  28798. height: math.unit(1.47, "feet"),
  28799. name: "Maw (Biggums)",
  28800. image: {
  28801. source: "./media/characters/wild/maw.svg"
  28802. }
  28803. },
  28804. },
  28805. [
  28806. {
  28807. name: "Normal",
  28808. height: math.unit(7 + 3 / 12, "feet"),
  28809. default: true
  28810. },
  28811. ]
  28812. ))
  28813. characterMakers.push(() => makeCharacter(
  28814. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28815. {
  28816. front: {
  28817. height: math.unit(2.5, "meters"),
  28818. weight: math.unit(200, "kg"),
  28819. name: "Front",
  28820. image: {
  28821. source: "./media/characters/vidar/front.svg",
  28822. extra: 2994 / 2795,
  28823. bottom: 56 / 3061
  28824. }
  28825. },
  28826. back: {
  28827. height: math.unit(2.5, "meters"),
  28828. weight: math.unit(200, "kg"),
  28829. name: "Back",
  28830. image: {
  28831. source: "./media/characters/vidar/back.svg",
  28832. extra: 3131 / 2928,
  28833. bottom: 13.5 / 3141.5
  28834. }
  28835. },
  28836. feral: {
  28837. height: math.unit(2.5, "meters"),
  28838. weight: math.unit(2000, "kg"),
  28839. name: "Feral",
  28840. image: {
  28841. source: "./media/characters/vidar/feral.svg",
  28842. extra: 2790 / 1765,
  28843. bottom: 6 / 2796
  28844. }
  28845. },
  28846. },
  28847. [
  28848. {
  28849. name: "Normal",
  28850. height: math.unit(2.5, "meters"),
  28851. default: true
  28852. },
  28853. {
  28854. name: "Macro",
  28855. height: math.unit(100, "meters")
  28856. },
  28857. ]
  28858. ))
  28859. characterMakers.push(() => makeCharacter(
  28860. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28861. {
  28862. front: {
  28863. height: math.unit(5 + 9 / 12, "feet"),
  28864. weight: math.unit(120, "lb"),
  28865. name: "Front",
  28866. image: {
  28867. source: "./media/characters/ash/front.svg",
  28868. extra: 2189 / 1961,
  28869. bottom: 5.2 / 2194
  28870. }
  28871. },
  28872. },
  28873. [
  28874. {
  28875. name: "Normal",
  28876. height: math.unit(5 + 9 / 12, "feet"),
  28877. default: true
  28878. },
  28879. ]
  28880. ))
  28881. characterMakers.push(() => makeCharacter(
  28882. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28883. {
  28884. front: {
  28885. height: math.unit(9, "feet"),
  28886. weight: math.unit(10000, "lb"),
  28887. name: "Front",
  28888. image: {
  28889. source: "./media/characters/gygabite/front.svg",
  28890. bottom: 31.7 / 537.8,
  28891. extra: 505 / 370
  28892. }
  28893. },
  28894. },
  28895. [
  28896. {
  28897. name: "Normal",
  28898. height: math.unit(9, "feet"),
  28899. default: true
  28900. },
  28901. ]
  28902. ))
  28903. characterMakers.push(() => makeCharacter(
  28904. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  28905. {
  28906. front: {
  28907. height: math.unit(12, "feet"),
  28908. weight: math.unit(4000, "lb"),
  28909. name: "Front",
  28910. image: {
  28911. source: "./media/characters/p0tat0/front.svg",
  28912. extra: 1065 / 921,
  28913. bottom: 55.7 / 1121.25
  28914. }
  28915. },
  28916. },
  28917. [
  28918. {
  28919. name: "Normal",
  28920. height: math.unit(12, "feet"),
  28921. default: true
  28922. },
  28923. ]
  28924. ))
  28925. characterMakers.push(() => makeCharacter(
  28926. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28927. {
  28928. side: {
  28929. height: math.unit(6.5, "feet"),
  28930. weight: math.unit(800, "lb"),
  28931. name: "Side",
  28932. image: {
  28933. source: "./media/characters/dusk/side.svg",
  28934. extra: 615 / 373,
  28935. bottom: 53 / 664
  28936. }
  28937. },
  28938. sitting: {
  28939. height: math.unit(7, "feet"),
  28940. weight: math.unit(800, "lb"),
  28941. name: "Sitting",
  28942. image: {
  28943. source: "./media/characters/dusk/sitting.svg",
  28944. extra: 753 / 425,
  28945. bottom: 33 / 774
  28946. }
  28947. },
  28948. head: {
  28949. height: math.unit(6.1, "feet"),
  28950. name: "Head",
  28951. image: {
  28952. source: "./media/characters/dusk/head.svg"
  28953. }
  28954. },
  28955. },
  28956. [
  28957. {
  28958. name: "Normal",
  28959. height: math.unit(7, "feet"),
  28960. default: true
  28961. },
  28962. ]
  28963. ))
  28964. characterMakers.push(() => makeCharacter(
  28965. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28966. {
  28967. front: {
  28968. height: math.unit(15, "feet"),
  28969. weight: math.unit(7000, "lb"),
  28970. name: "Front",
  28971. image: {
  28972. source: "./media/characters/jay-direwolf/front.svg",
  28973. extra: 1810 / 1732,
  28974. bottom: 66 / 1892
  28975. }
  28976. },
  28977. },
  28978. [
  28979. {
  28980. name: "Normal",
  28981. height: math.unit(15, "feet"),
  28982. default: true
  28983. },
  28984. ]
  28985. ))
  28986. characterMakers.push(() => makeCharacter(
  28987. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28988. {
  28989. front: {
  28990. height: math.unit(4 + 9 / 12, "feet"),
  28991. weight: math.unit(130, "lb"),
  28992. name: "Front",
  28993. image: {
  28994. source: "./media/characters/anchovie/front.svg",
  28995. extra: 382 / 350,
  28996. bottom: 25 / 409
  28997. }
  28998. },
  28999. back: {
  29000. height: math.unit(4 + 9 / 12, "feet"),
  29001. weight: math.unit(130, "lb"),
  29002. name: "Back",
  29003. image: {
  29004. source: "./media/characters/anchovie/back.svg",
  29005. extra: 385 / 352,
  29006. bottom: 16.6 / 402
  29007. }
  29008. },
  29009. frontDressed: {
  29010. height: math.unit(4 + 9 / 12, "feet"),
  29011. weight: math.unit(130, "lb"),
  29012. name: "Front (Dressed)",
  29013. image: {
  29014. source: "./media/characters/anchovie/front-dressed.svg",
  29015. extra: 382 / 350,
  29016. bottom: 25 / 409
  29017. }
  29018. },
  29019. backDressed: {
  29020. height: math.unit(4 + 9 / 12, "feet"),
  29021. weight: math.unit(130, "lb"),
  29022. name: "Back (Dressed)",
  29023. image: {
  29024. source: "./media/characters/anchovie/back-dressed.svg",
  29025. extra: 385 / 352,
  29026. bottom: 16.6 / 402
  29027. }
  29028. },
  29029. },
  29030. [
  29031. {
  29032. name: "Micro",
  29033. height: math.unit(6.4, "inches")
  29034. },
  29035. {
  29036. name: "Normal",
  29037. height: math.unit(4 + 9 / 12, "feet"),
  29038. default: true
  29039. },
  29040. ]
  29041. ))
  29042. characterMakers.push(() => makeCharacter(
  29043. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29044. {
  29045. front: {
  29046. height: math.unit(2, "meters"),
  29047. weight: math.unit(180, "lb"),
  29048. name: "Front",
  29049. image: {
  29050. source: "./media/characters/acidrenamon/front.svg",
  29051. extra: 987 / 890,
  29052. bottom: 22.8 / 1009
  29053. }
  29054. },
  29055. back: {
  29056. height: math.unit(2, "meters"),
  29057. weight: math.unit(180, "lb"),
  29058. name: "Back",
  29059. image: {
  29060. source: "./media/characters/acidrenamon/back.svg",
  29061. extra: 983 / 891,
  29062. bottom: 8.4 / 992
  29063. }
  29064. },
  29065. head: {
  29066. height: math.unit(1.92, "feet"),
  29067. name: "Head",
  29068. image: {
  29069. source: "./media/characters/acidrenamon/head.svg"
  29070. }
  29071. },
  29072. rump: {
  29073. height: math.unit(1.72, "feet"),
  29074. name: "Rump",
  29075. image: {
  29076. source: "./media/characters/acidrenamon/rump.svg"
  29077. }
  29078. },
  29079. tail: {
  29080. height: math.unit(4.2, "feet"),
  29081. name: "Tail",
  29082. image: {
  29083. source: "./media/characters/acidrenamon/tail.svg"
  29084. }
  29085. },
  29086. },
  29087. [
  29088. {
  29089. name: "Normal",
  29090. height: math.unit(2, "meters"),
  29091. default: true
  29092. },
  29093. {
  29094. name: "Minimacro",
  29095. height: math.unit(7, "meters")
  29096. },
  29097. {
  29098. name: "Macro",
  29099. height: math.unit(200, "meters")
  29100. },
  29101. {
  29102. name: "Gigamacro",
  29103. height: math.unit(0.2, "earths")
  29104. },
  29105. ]
  29106. ))
  29107. characterMakers.push(() => makeCharacter(
  29108. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29109. {
  29110. front: {
  29111. height: math.unit(152, "feet"),
  29112. name: "Front",
  29113. image: {
  29114. source: "./media/characters/kenzie-lee/front.svg",
  29115. extra: 1869/1774,
  29116. bottom: 128/1997
  29117. }
  29118. },
  29119. side: {
  29120. height: math.unit(86, "feet"),
  29121. name: "Side",
  29122. image: {
  29123. source: "./media/characters/kenzie-lee/side.svg",
  29124. extra: 930/815,
  29125. bottom: 177/1107
  29126. }
  29127. },
  29128. paw: {
  29129. height: math.unit(15, "feet"),
  29130. name: "Paw",
  29131. image: {
  29132. source: "./media/characters/kenzie-lee/paw.svg"
  29133. }
  29134. },
  29135. },
  29136. [
  29137. {
  29138. name: "Kenzie Flea",
  29139. height: math.unit(2, "mm"),
  29140. default: true
  29141. },
  29142. {
  29143. name: "Micro",
  29144. height: math.unit(2, "inches")
  29145. },
  29146. {
  29147. name: "Normal",
  29148. height: math.unit(152, "feet")
  29149. },
  29150. {
  29151. name: "Megamacro",
  29152. height: math.unit(7, "miles")
  29153. },
  29154. {
  29155. name: "Gigamacro",
  29156. height: math.unit(8000, "miles")
  29157. },
  29158. ]
  29159. ))
  29160. characterMakers.push(() => makeCharacter(
  29161. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29162. {
  29163. front: {
  29164. height: math.unit(6, "feet"),
  29165. name: "Front",
  29166. image: {
  29167. source: "./media/characters/withers/front.svg",
  29168. extra: 1935/1760,
  29169. bottom: 72/2007
  29170. }
  29171. },
  29172. back: {
  29173. height: math.unit(6, "feet"),
  29174. name: "Back",
  29175. image: {
  29176. source: "./media/characters/withers/back.svg",
  29177. extra: 1944/1792,
  29178. bottom: 12/1956
  29179. }
  29180. },
  29181. dressed: {
  29182. height: math.unit(6, "feet"),
  29183. name: "Dressed",
  29184. image: {
  29185. source: "./media/characters/withers/dressed.svg",
  29186. extra: 1937/1765,
  29187. bottom: 73/2010
  29188. }
  29189. },
  29190. phase1: {
  29191. height: math.unit(1.1, "feet"),
  29192. name: "Phase 1",
  29193. image: {
  29194. source: "./media/characters/withers/phase-1.svg",
  29195. extra: 1885/1232,
  29196. bottom: 0/1885
  29197. }
  29198. },
  29199. phase2: {
  29200. height: math.unit(1.05, "feet"),
  29201. name: "Phase 2",
  29202. image: {
  29203. source: "./media/characters/withers/phase-2.svg",
  29204. extra: 1792/1090,
  29205. bottom: 0/1792
  29206. }
  29207. },
  29208. partyWipe: {
  29209. height: math.unit(1.1, "feet"),
  29210. name: "Party Wipe",
  29211. image: {
  29212. source: "./media/characters/withers/party-wipe.svg",
  29213. extra: 1864/1207,
  29214. bottom: 0/1864
  29215. }
  29216. },
  29217. },
  29218. [
  29219. {
  29220. name: "Macro",
  29221. height: math.unit(167, "feet"),
  29222. default: true
  29223. },
  29224. {
  29225. name: "Megamacro",
  29226. height: math.unit(15, "miles")
  29227. }
  29228. ]
  29229. ))
  29230. characterMakers.push(() => makeCharacter(
  29231. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29232. {
  29233. front: {
  29234. height: math.unit(6 + 7 / 12, "feet"),
  29235. weight: math.unit(250, "lb"),
  29236. name: "Front",
  29237. image: {
  29238. source: "./media/characters/nemoskii/front.svg",
  29239. extra: 2270 / 1734,
  29240. bottom: 86 / 2354
  29241. }
  29242. },
  29243. back: {
  29244. height: math.unit(6 + 7 / 12, "feet"),
  29245. weight: math.unit(250, "lb"),
  29246. name: "Back",
  29247. image: {
  29248. source: "./media/characters/nemoskii/back.svg",
  29249. extra: 1845 / 1788,
  29250. bottom: 10.5 / 1852
  29251. }
  29252. },
  29253. head: {
  29254. height: math.unit(1.31, "feet"),
  29255. name: "Head",
  29256. image: {
  29257. source: "./media/characters/nemoskii/head.svg"
  29258. }
  29259. },
  29260. },
  29261. [
  29262. {
  29263. name: "Micro",
  29264. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29265. },
  29266. {
  29267. name: "Normal",
  29268. height: math.unit(6 + 7 / 12, "feet"),
  29269. default: true
  29270. },
  29271. {
  29272. name: "Macro",
  29273. height: math.unit((6 + 7 / 12) * 150, "feet")
  29274. },
  29275. {
  29276. name: "Macro+",
  29277. height: math.unit((6 + 7 / 12) * 500, "feet")
  29278. },
  29279. {
  29280. name: "Megamacro",
  29281. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29282. },
  29283. ]
  29284. ))
  29285. characterMakers.push(() => makeCharacter(
  29286. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29287. {
  29288. front: {
  29289. height: math.unit(1, "mile"),
  29290. weight: math.unit(265261.9, "lb"),
  29291. name: "Front",
  29292. image: {
  29293. source: "./media/characters/shui/front.svg",
  29294. extra: 1633 / 1564,
  29295. bottom: 91.5 / 1726
  29296. }
  29297. },
  29298. },
  29299. [
  29300. {
  29301. name: "Macro",
  29302. height: math.unit(1, "mile"),
  29303. default: true
  29304. },
  29305. ]
  29306. ))
  29307. characterMakers.push(() => makeCharacter(
  29308. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29309. {
  29310. front: {
  29311. height: math.unit(12 + 6 / 12, "feet"),
  29312. weight: math.unit(1342, "lb"),
  29313. name: "Front",
  29314. image: {
  29315. source: "./media/characters/arokh-takakura/front.svg",
  29316. extra: 1089 / 1043,
  29317. bottom: 77.4 / 1176.7
  29318. }
  29319. },
  29320. back: {
  29321. height: math.unit(12 + 6 / 12, "feet"),
  29322. weight: math.unit(1342, "lb"),
  29323. name: "Back",
  29324. image: {
  29325. source: "./media/characters/arokh-takakura/back.svg",
  29326. extra: 1046 / 1019,
  29327. bottom: 102 / 1150
  29328. }
  29329. },
  29330. },
  29331. [
  29332. {
  29333. name: "Big",
  29334. height: math.unit(12 + 6 / 12, "feet"),
  29335. default: true
  29336. },
  29337. ]
  29338. ))
  29339. characterMakers.push(() => makeCharacter(
  29340. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29341. {
  29342. front: {
  29343. height: math.unit(5 + 6 / 12, "feet"),
  29344. weight: math.unit(150, "lb"),
  29345. name: "Front",
  29346. image: {
  29347. source: "./media/characters/theo/front.svg",
  29348. extra: 1184 / 1131,
  29349. bottom: 7.4 / 1191
  29350. }
  29351. },
  29352. },
  29353. [
  29354. {
  29355. name: "Micro",
  29356. height: math.unit(5, "inches")
  29357. },
  29358. {
  29359. name: "Normal",
  29360. height: math.unit(5 + 6 / 12, "feet"),
  29361. default: true
  29362. },
  29363. ]
  29364. ))
  29365. characterMakers.push(() => makeCharacter(
  29366. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29367. {
  29368. front: {
  29369. height: math.unit(5 + 9 / 12, "feet"),
  29370. weight: math.unit(130, "lb"),
  29371. name: "Front",
  29372. image: {
  29373. source: "./media/characters/cecelia-swift/front.svg",
  29374. extra: 502 / 484,
  29375. bottom: 23 / 523
  29376. }
  29377. },
  29378. back: {
  29379. height: math.unit(5 + 9 / 12, "feet"),
  29380. weight: math.unit(130, "lb"),
  29381. name: "Back",
  29382. image: {
  29383. source: "./media/characters/cecelia-swift/back.svg",
  29384. extra: 499 / 485,
  29385. bottom: 12 / 511
  29386. }
  29387. },
  29388. head: {
  29389. height: math.unit(0.90, "feet"),
  29390. name: "Head",
  29391. image: {
  29392. source: "./media/characters/cecelia-swift/head.svg"
  29393. }
  29394. },
  29395. rump: {
  29396. height: math.unit(1.75, "feet"),
  29397. name: "Rump",
  29398. image: {
  29399. source: "./media/characters/cecelia-swift/rump.svg"
  29400. }
  29401. },
  29402. },
  29403. [
  29404. {
  29405. name: "Normal",
  29406. height: math.unit(5 + 9 / 12, "feet"),
  29407. default: true
  29408. },
  29409. {
  29410. name: "Big",
  29411. height: math.unit(50, "feet")
  29412. },
  29413. {
  29414. name: "Macro",
  29415. height: math.unit(100, "feet")
  29416. },
  29417. {
  29418. name: "Macro+",
  29419. height: math.unit(500, "feet")
  29420. },
  29421. {
  29422. name: "Macro++",
  29423. height: math.unit(1000, "feet")
  29424. },
  29425. ]
  29426. ))
  29427. characterMakers.push(() => makeCharacter(
  29428. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29429. {
  29430. front: {
  29431. height: math.unit(6, "feet"),
  29432. weight: math.unit(150, "lb"),
  29433. name: "Front",
  29434. image: {
  29435. source: "./media/characters/kaunan/front.svg",
  29436. extra: 2890 / 2523,
  29437. bottom: 49 / 2939
  29438. }
  29439. },
  29440. },
  29441. [
  29442. {
  29443. name: "Macro",
  29444. height: math.unit(150, "feet"),
  29445. default: true
  29446. },
  29447. ]
  29448. ))
  29449. characterMakers.push(() => makeCharacter(
  29450. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29451. {
  29452. dressed: {
  29453. height: math.unit(175, "cm"),
  29454. weight: math.unit(60, "kg"),
  29455. name: "Dressed",
  29456. image: {
  29457. source: "./media/characters/fei/dressed.svg",
  29458. extra: 1402/1278,
  29459. bottom: 27/1429
  29460. }
  29461. },
  29462. nude: {
  29463. height: math.unit(175, "cm"),
  29464. weight: math.unit(60, "kg"),
  29465. name: "Nude",
  29466. image: {
  29467. source: "./media/characters/fei/nude.svg",
  29468. extra: 1402/1278,
  29469. bottom: 27/1429
  29470. }
  29471. },
  29472. heels: {
  29473. height: math.unit(0.466, "feet"),
  29474. name: "Heels",
  29475. image: {
  29476. source: "./media/characters/fei/heels.svg",
  29477. extra: 156/152,
  29478. bottom: 28/184
  29479. }
  29480. },
  29481. },
  29482. [
  29483. {
  29484. name: "Mortal",
  29485. height: math.unit(175, "cm")
  29486. },
  29487. {
  29488. name: "Normal",
  29489. height: math.unit(3500, "m")
  29490. },
  29491. {
  29492. name: "Stroll",
  29493. height: math.unit(18.4, "km"),
  29494. default: true
  29495. },
  29496. {
  29497. name: "Showoff",
  29498. height: math.unit(175, "km")
  29499. },
  29500. ]
  29501. ))
  29502. characterMakers.push(() => makeCharacter(
  29503. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29504. {
  29505. front: {
  29506. height: math.unit(7, "feet"),
  29507. weight: math.unit(1000, "kg"),
  29508. name: "Front",
  29509. image: {
  29510. source: "./media/characters/edrax/front.svg",
  29511. extra: 2838 / 2550,
  29512. bottom: 130 / 2968
  29513. }
  29514. },
  29515. },
  29516. [
  29517. {
  29518. name: "Small",
  29519. height: math.unit(7, "feet")
  29520. },
  29521. {
  29522. name: "Normal",
  29523. height: math.unit(1500, "meters")
  29524. },
  29525. {
  29526. name: "Mega",
  29527. height: math.unit(12000000, "km"),
  29528. default: true
  29529. },
  29530. {
  29531. name: "Megamacro",
  29532. height: math.unit(10600000, "lightyears")
  29533. },
  29534. {
  29535. name: "Hypermacro",
  29536. height: math.unit(256, "yottameters")
  29537. },
  29538. ]
  29539. ))
  29540. characterMakers.push(() => makeCharacter(
  29541. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29542. {
  29543. front: {
  29544. height: math.unit(10, "feet"),
  29545. weight: math.unit(750, "lb"),
  29546. name: "Front",
  29547. image: {
  29548. source: "./media/characters/clove/front.svg",
  29549. extra: 1918/1751,
  29550. bottom: 52/1970
  29551. }
  29552. },
  29553. back: {
  29554. height: math.unit(10, "feet"),
  29555. weight: math.unit(750, "lb"),
  29556. name: "Back",
  29557. image: {
  29558. source: "./media/characters/clove/back.svg",
  29559. extra: 1912/1747,
  29560. bottom: 50/1962
  29561. }
  29562. },
  29563. },
  29564. [
  29565. {
  29566. name: "Normal",
  29567. height: math.unit(10, "feet"),
  29568. default: true
  29569. },
  29570. ]
  29571. ))
  29572. characterMakers.push(() => makeCharacter(
  29573. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29574. {
  29575. front: {
  29576. height: math.unit(4, "feet"),
  29577. weight: math.unit(50, "lb"),
  29578. name: "Front",
  29579. image: {
  29580. source: "./media/characters/alex-rabbit/front.svg",
  29581. extra: 507 / 458,
  29582. bottom: 18.5 / 527
  29583. }
  29584. },
  29585. back: {
  29586. height: math.unit(4, "feet"),
  29587. weight: math.unit(50, "lb"),
  29588. name: "Back",
  29589. image: {
  29590. source: "./media/characters/alex-rabbit/back.svg",
  29591. extra: 502 / 460,
  29592. bottom: 18.9 / 521
  29593. }
  29594. },
  29595. },
  29596. [
  29597. {
  29598. name: "Normal",
  29599. height: math.unit(4, "feet"),
  29600. default: true
  29601. },
  29602. ]
  29603. ))
  29604. characterMakers.push(() => makeCharacter(
  29605. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29606. {
  29607. front: {
  29608. height: math.unit(1 + 3 / 12, "feet"),
  29609. weight: math.unit(80, "lb"),
  29610. name: "Front",
  29611. image: {
  29612. source: "./media/characters/zander-rose/front.svg",
  29613. extra: 916 / 797,
  29614. bottom: 17 / 933
  29615. }
  29616. },
  29617. back: {
  29618. height: math.unit(1 + 3 / 12, "feet"),
  29619. weight: math.unit(80, "lb"),
  29620. name: "Back",
  29621. image: {
  29622. source: "./media/characters/zander-rose/back.svg",
  29623. extra: 903 / 779,
  29624. bottom: 31 / 934
  29625. }
  29626. },
  29627. },
  29628. [
  29629. {
  29630. name: "Normal",
  29631. height: math.unit(1 + 3 / 12, "feet"),
  29632. default: true
  29633. },
  29634. ]
  29635. ))
  29636. characterMakers.push(() => makeCharacter(
  29637. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29638. {
  29639. anthro: {
  29640. height: math.unit(6, "feet"),
  29641. weight: math.unit(150, "lb"),
  29642. name: "Anthro",
  29643. image: {
  29644. source: "./media/characters/razz/anthro.svg",
  29645. extra: 1437 / 1343,
  29646. bottom: 48 / 1485
  29647. }
  29648. },
  29649. feral: {
  29650. height: math.unit(6, "feet"),
  29651. weight: math.unit(150, "lb"),
  29652. name: "Feral",
  29653. image: {
  29654. source: "./media/characters/razz/feral.svg",
  29655. extra: 2569 / 1385,
  29656. bottom: 95 / 2664
  29657. }
  29658. },
  29659. },
  29660. [
  29661. {
  29662. name: "Normal",
  29663. height: math.unit(6, "feet"),
  29664. default: true
  29665. },
  29666. ]
  29667. ))
  29668. characterMakers.push(() => makeCharacter(
  29669. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29670. {
  29671. front: {
  29672. height: math.unit(9 + 4 / 12, "feet"),
  29673. weight: math.unit(500, "lb"),
  29674. name: "Front",
  29675. image: {
  29676. source: "./media/characters/morrigan/front.svg",
  29677. extra: 2707 / 2579,
  29678. bottom: 156 / 2863
  29679. }
  29680. },
  29681. },
  29682. [
  29683. {
  29684. name: "Normal",
  29685. height: math.unit(9 + 4 / 12, "feet"),
  29686. default: true
  29687. },
  29688. ]
  29689. ))
  29690. characterMakers.push(() => makeCharacter(
  29691. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29692. {
  29693. front: {
  29694. height: math.unit(5, "stories"),
  29695. weight: math.unit(4000, "lb"),
  29696. name: "Front",
  29697. image: {
  29698. source: "./media/characters/jenene/front.svg",
  29699. extra: 1780 / 1710,
  29700. bottom: 57 / 1837
  29701. }
  29702. },
  29703. },
  29704. [
  29705. {
  29706. name: "Normal",
  29707. height: math.unit(5, "stories"),
  29708. default: true
  29709. },
  29710. ]
  29711. ))
  29712. characterMakers.push(() => makeCharacter(
  29713. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29714. {
  29715. taurSfw: {
  29716. height: math.unit(10, "meters"),
  29717. weight: math.unit(17500, "kg"),
  29718. name: "Taur",
  29719. image: {
  29720. source: "./media/characters/faey/taur-sfw.svg",
  29721. extra: 1200 / 968,
  29722. bottom: 41 / 1241
  29723. }
  29724. },
  29725. chestmaw: {
  29726. height: math.unit(2.01, "meters"),
  29727. name: "Chestmaw",
  29728. image: {
  29729. source: "./media/characters/faey/chestmaw.svg"
  29730. }
  29731. },
  29732. foot: {
  29733. height: math.unit(2.43, "meters"),
  29734. name: "Foot",
  29735. image: {
  29736. source: "./media/characters/faey/foot.svg"
  29737. }
  29738. },
  29739. jaws: {
  29740. height: math.unit(1.66, "meters"),
  29741. name: "Jaws",
  29742. image: {
  29743. source: "./media/characters/faey/jaws.svg"
  29744. }
  29745. },
  29746. tongues: {
  29747. height: math.unit(2.01, "meters"),
  29748. name: "Tongues",
  29749. image: {
  29750. source: "./media/characters/faey/tongues.svg"
  29751. }
  29752. },
  29753. },
  29754. [
  29755. {
  29756. name: "Small",
  29757. height: math.unit(10, "meters"),
  29758. default: true
  29759. },
  29760. {
  29761. name: "Big",
  29762. height: math.unit(500000, "km")
  29763. },
  29764. ]
  29765. ))
  29766. characterMakers.push(() => makeCharacter(
  29767. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29768. {
  29769. front: {
  29770. height: math.unit(7, "feet"),
  29771. weight: math.unit(275, "lb"),
  29772. name: "Front",
  29773. image: {
  29774. source: "./media/characters/roku/front.svg",
  29775. extra: 903 / 878,
  29776. bottom: 37 / 940
  29777. }
  29778. },
  29779. },
  29780. [
  29781. {
  29782. name: "Normal",
  29783. height: math.unit(7, "feet"),
  29784. default: true
  29785. },
  29786. {
  29787. name: "Macro",
  29788. height: math.unit(500, "feet")
  29789. },
  29790. {
  29791. name: "Megamacro",
  29792. height: math.unit(200, "miles")
  29793. },
  29794. ]
  29795. ))
  29796. characterMakers.push(() => makeCharacter(
  29797. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29798. {
  29799. front: {
  29800. height: math.unit(6 + 2 / 12, "feet"),
  29801. weight: math.unit(150, "lb"),
  29802. name: "Front",
  29803. image: {
  29804. source: "./media/characters/lira/front.svg",
  29805. extra: 1727 / 1605,
  29806. bottom: 26 / 1753
  29807. }
  29808. },
  29809. back: {
  29810. height: math.unit(6 + 2 / 12, "feet"),
  29811. weight: math.unit(150, "lb"),
  29812. name: "Back",
  29813. image: {
  29814. source: "./media/characters/lira/back.svg",
  29815. extra: 1713/1621,
  29816. bottom: 20/1733
  29817. }
  29818. },
  29819. hand: {
  29820. height: math.unit(0.75, "feet"),
  29821. name: "Hand",
  29822. image: {
  29823. source: "./media/characters/lira/hand.svg"
  29824. }
  29825. },
  29826. maw: {
  29827. height: math.unit(0.65, "feet"),
  29828. name: "Maw",
  29829. image: {
  29830. source: "./media/characters/lira/maw.svg"
  29831. }
  29832. },
  29833. pawDigi: {
  29834. height: math.unit(1.6, "feet"),
  29835. name: "Paw Digi",
  29836. image: {
  29837. source: "./media/characters/lira/paw-digi.svg"
  29838. }
  29839. },
  29840. pawPlanti: {
  29841. height: math.unit(1.4, "feet"),
  29842. name: "Paw Planti",
  29843. image: {
  29844. source: "./media/characters/lira/paw-planti.svg"
  29845. }
  29846. },
  29847. },
  29848. [
  29849. {
  29850. name: "Normal",
  29851. height: math.unit(6 + 2 / 12, "feet"),
  29852. default: true
  29853. },
  29854. {
  29855. name: "Macro",
  29856. height: math.unit(100, "feet")
  29857. },
  29858. {
  29859. name: "Macro²",
  29860. height: math.unit(1600, "feet")
  29861. },
  29862. {
  29863. name: "Planetary",
  29864. height: math.unit(20, "earths")
  29865. },
  29866. ]
  29867. ))
  29868. characterMakers.push(() => makeCharacter(
  29869. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29870. {
  29871. front: {
  29872. height: math.unit(6, "feet"),
  29873. weight: math.unit(150, "lb"),
  29874. name: "Front",
  29875. image: {
  29876. source: "./media/characters/hadjet/front.svg",
  29877. extra: 1480 / 1346,
  29878. bottom: 26 / 1506
  29879. }
  29880. },
  29881. frontNsfw: {
  29882. height: math.unit(6, "feet"),
  29883. weight: math.unit(150, "lb"),
  29884. name: "Front (NSFW)",
  29885. image: {
  29886. source: "./media/characters/hadjet/front-nsfw.svg",
  29887. extra: 1440 / 1358,
  29888. bottom: 52 / 1492
  29889. }
  29890. },
  29891. },
  29892. [
  29893. {
  29894. name: "Macro",
  29895. height: math.unit(10, "stories"),
  29896. default: true
  29897. },
  29898. {
  29899. name: "Megamacro",
  29900. height: math.unit(1.5, "miles")
  29901. },
  29902. {
  29903. name: "Megamacro+",
  29904. height: math.unit(5, "miles")
  29905. },
  29906. ]
  29907. ))
  29908. characterMakers.push(() => makeCharacter(
  29909. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29910. {
  29911. side: {
  29912. height: math.unit(106, "feet"),
  29913. weight: math.unit(500, "tonnes"),
  29914. name: "Side",
  29915. image: {
  29916. source: "./media/characters/kodran/side.svg",
  29917. extra: 553 / 480,
  29918. bottom: 33 / 586
  29919. }
  29920. },
  29921. front: {
  29922. height: math.unit(132, "feet"),
  29923. weight: math.unit(500, "tonnes"),
  29924. name: "Front",
  29925. image: {
  29926. source: "./media/characters/kodran/front.svg",
  29927. extra: 667 / 643,
  29928. bottom: 42 / 709
  29929. }
  29930. },
  29931. flying: {
  29932. height: math.unit(350, "feet"),
  29933. weight: math.unit(500, "tonnes"),
  29934. name: "Flying",
  29935. image: {
  29936. source: "./media/characters/kodran/flying.svg"
  29937. }
  29938. },
  29939. foot: {
  29940. height: math.unit(33, "feet"),
  29941. name: "Foot",
  29942. image: {
  29943. source: "./media/characters/kodran/foot.svg"
  29944. }
  29945. },
  29946. footFront: {
  29947. height: math.unit(19, "feet"),
  29948. name: "Foot (Front)",
  29949. image: {
  29950. source: "./media/characters/kodran/foot-front.svg",
  29951. extra: 261 / 261,
  29952. bottom: 91 / 352
  29953. }
  29954. },
  29955. headFront: {
  29956. height: math.unit(53, "feet"),
  29957. name: "Head (Front)",
  29958. image: {
  29959. source: "./media/characters/kodran/head-front.svg"
  29960. }
  29961. },
  29962. headSide: {
  29963. height: math.unit(65, "feet"),
  29964. name: "Head (Side)",
  29965. image: {
  29966. source: "./media/characters/kodran/head-side.svg"
  29967. }
  29968. },
  29969. throat: {
  29970. height: math.unit(79, "feet"),
  29971. name: "Throat",
  29972. image: {
  29973. source: "./media/characters/kodran/throat.svg"
  29974. }
  29975. },
  29976. },
  29977. [
  29978. {
  29979. name: "Large",
  29980. height: math.unit(106, "feet"),
  29981. default: true
  29982. },
  29983. ]
  29984. ))
  29985. characterMakers.push(() => makeCharacter(
  29986. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29987. {
  29988. side: {
  29989. height: math.unit(11, "feet"),
  29990. weight: math.unit(150, "lb"),
  29991. name: "Side",
  29992. image: {
  29993. source: "./media/characters/pyxaron/side.svg",
  29994. extra: 305 / 195,
  29995. bottom: 17 / 322
  29996. }
  29997. },
  29998. },
  29999. [
  30000. {
  30001. name: "Normal",
  30002. height: math.unit(11, "feet"),
  30003. default: true
  30004. },
  30005. ]
  30006. ))
  30007. characterMakers.push(() => makeCharacter(
  30008. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30009. {
  30010. front: {
  30011. height: math.unit(6, "feet"),
  30012. weight: math.unit(150, "lb"),
  30013. name: "Front",
  30014. image: {
  30015. source: "./media/characters/meep/front.svg",
  30016. extra: 88 / 80,
  30017. bottom: 6 / 94
  30018. }
  30019. },
  30020. },
  30021. [
  30022. {
  30023. name: "Fun Sized",
  30024. height: math.unit(2, "inches"),
  30025. default: true
  30026. },
  30027. {
  30028. name: "Friend Sized",
  30029. height: math.unit(8, "inches")
  30030. },
  30031. ]
  30032. ))
  30033. characterMakers.push(() => makeCharacter(
  30034. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30035. {
  30036. front: {
  30037. height: math.unit(15, "feet"),
  30038. weight: math.unit(2500, "lb"),
  30039. name: "Front",
  30040. image: {
  30041. source: "./media/characters/holly-rabbit/front.svg",
  30042. extra: 1433 / 1233,
  30043. bottom: 125 / 1558
  30044. }
  30045. },
  30046. dick: {
  30047. height: math.unit(4.6, "feet"),
  30048. name: "Dick",
  30049. image: {
  30050. source: "./media/characters/holly-rabbit/dick.svg"
  30051. }
  30052. },
  30053. },
  30054. [
  30055. {
  30056. name: "Normal",
  30057. height: math.unit(15, "feet"),
  30058. default: true
  30059. },
  30060. {
  30061. name: "Macro",
  30062. height: math.unit(250, "feet")
  30063. },
  30064. {
  30065. name: "Macro+",
  30066. height: math.unit(2500, "feet")
  30067. },
  30068. ]
  30069. ))
  30070. characterMakers.push(() => makeCharacter(
  30071. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30072. {
  30073. front: {
  30074. height: math.unit(3.02, "meters"),
  30075. weight: math.unit(500, "kg"),
  30076. name: "Front",
  30077. image: {
  30078. source: "./media/characters/drena/front.svg",
  30079. extra: 282 / 243,
  30080. bottom: 8 / 290
  30081. }
  30082. },
  30083. side: {
  30084. height: math.unit(3.02, "meters"),
  30085. weight: math.unit(500, "kg"),
  30086. name: "Side",
  30087. image: {
  30088. source: "./media/characters/drena/side.svg",
  30089. extra: 280 / 245,
  30090. bottom: 10 / 290
  30091. }
  30092. },
  30093. back: {
  30094. height: math.unit(3.02, "meters"),
  30095. weight: math.unit(500, "kg"),
  30096. name: "Back",
  30097. image: {
  30098. source: "./media/characters/drena/back.svg",
  30099. extra: 278 / 243,
  30100. bottom: 2 / 280
  30101. }
  30102. },
  30103. foot: {
  30104. height: math.unit(0.75, "meters"),
  30105. name: "Foot",
  30106. image: {
  30107. source: "./media/characters/drena/foot.svg"
  30108. }
  30109. },
  30110. maw: {
  30111. height: math.unit(0.82, "meters"),
  30112. name: "Maw",
  30113. image: {
  30114. source: "./media/characters/drena/maw.svg"
  30115. }
  30116. },
  30117. eating: {
  30118. height: math.unit(0.75, "meters"),
  30119. name: "Eating",
  30120. image: {
  30121. source: "./media/characters/drena/eating.svg"
  30122. }
  30123. },
  30124. rump: {
  30125. height: math.unit(0.93, "meters"),
  30126. name: "Rump",
  30127. image: {
  30128. source: "./media/characters/drena/rump.svg"
  30129. }
  30130. },
  30131. },
  30132. [
  30133. {
  30134. name: "Normal",
  30135. height: math.unit(3.02, "meters"),
  30136. default: true
  30137. },
  30138. ]
  30139. ))
  30140. characterMakers.push(() => makeCharacter(
  30141. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30142. {
  30143. front: {
  30144. height: math.unit(6 + 4 / 12, "feet"),
  30145. weight: math.unit(250, "lb"),
  30146. name: "Front",
  30147. image: {
  30148. source: "./media/characters/remmyzilla/front.svg",
  30149. extra: 4033 / 3588,
  30150. bottom: 123 / 4156
  30151. }
  30152. },
  30153. back: {
  30154. height: math.unit(6 + 4 / 12, "feet"),
  30155. weight: math.unit(250, "lb"),
  30156. name: "Back",
  30157. image: {
  30158. source: "./media/characters/remmyzilla/back.svg",
  30159. extra: 2687 / 2555,
  30160. bottom: 48 / 2735
  30161. }
  30162. },
  30163. paw: {
  30164. height: math.unit(1.73, "feet"),
  30165. name: "Paw",
  30166. image: {
  30167. source: "./media/characters/remmyzilla/paw.svg"
  30168. },
  30169. extraAttributes: {
  30170. "toeSize": {
  30171. name: "Toe Size",
  30172. power: 2,
  30173. type: "area",
  30174. base: math.unit(0.0035, "m^2")
  30175. },
  30176. "padSize": {
  30177. name: "Pad Size",
  30178. power: 2,
  30179. type: "area",
  30180. base: math.unit(0.015, "m^2")
  30181. },
  30182. "pawsize": {
  30183. name: "Paw Size",
  30184. power: 2,
  30185. type: "area",
  30186. base: math.unit(0.072, "m^2")
  30187. },
  30188. }
  30189. },
  30190. maw: {
  30191. height: math.unit(1.73, "feet"),
  30192. name: "Maw",
  30193. image: {
  30194. source: "./media/characters/remmyzilla/maw.svg"
  30195. }
  30196. },
  30197. },
  30198. [
  30199. {
  30200. name: "Normal",
  30201. height: math.unit(6 + 4 / 12, "feet")
  30202. },
  30203. {
  30204. name: "Minimacro",
  30205. height: math.unit(12 + 8 / 12, "feet")
  30206. },
  30207. {
  30208. name: "Normal",
  30209. height: math.unit(640, "feet"),
  30210. default: true
  30211. },
  30212. {
  30213. name: "Megamacro",
  30214. height: math.unit(6400, "feet")
  30215. },
  30216. {
  30217. name: "Gigamacro",
  30218. height: math.unit(64000, "miles")
  30219. },
  30220. ]
  30221. ))
  30222. characterMakers.push(() => makeCharacter(
  30223. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30224. {
  30225. front: {
  30226. height: math.unit(2.5, "meters"),
  30227. weight: math.unit(300, "lb"),
  30228. name: "Front",
  30229. image: {
  30230. source: "./media/characters/lawrence/front.svg",
  30231. extra: 357 / 335,
  30232. bottom: 30 / 387
  30233. }
  30234. },
  30235. back: {
  30236. height: math.unit(2.5, "meters"),
  30237. weight: math.unit(300, "lb"),
  30238. name: "Back",
  30239. image: {
  30240. source: "./media/characters/lawrence/back.svg",
  30241. extra: 357 / 338,
  30242. bottom: 16 / 373
  30243. }
  30244. },
  30245. head: {
  30246. height: math.unit(0.9, "meter"),
  30247. name: "Head",
  30248. image: {
  30249. source: "./media/characters/lawrence/head.svg"
  30250. }
  30251. },
  30252. maw: {
  30253. height: math.unit(0.7, "meter"),
  30254. name: "Maw",
  30255. image: {
  30256. source: "./media/characters/lawrence/maw.svg"
  30257. }
  30258. },
  30259. footBottom: {
  30260. height: math.unit(0.5, "meter"),
  30261. name: "Foot (Bottom)",
  30262. image: {
  30263. source: "./media/characters/lawrence/foot-bottom.svg"
  30264. }
  30265. },
  30266. footTop: {
  30267. height: math.unit(0.5, "meter"),
  30268. name: "Foot (Top)",
  30269. image: {
  30270. source: "./media/characters/lawrence/foot-top.svg"
  30271. }
  30272. },
  30273. },
  30274. [
  30275. {
  30276. name: "Normal",
  30277. height: math.unit(2.5, "meters"),
  30278. default: true
  30279. },
  30280. {
  30281. name: "Macro",
  30282. height: math.unit(95, "meters")
  30283. },
  30284. {
  30285. name: "Megamacro",
  30286. height: math.unit(150, "km")
  30287. },
  30288. ]
  30289. ))
  30290. characterMakers.push(() => makeCharacter(
  30291. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30292. {
  30293. front: {
  30294. height: math.unit(4.2, "meters"),
  30295. name: "Front",
  30296. image: {
  30297. source: "./media/characters/sydney/front.svg",
  30298. extra: 1323 / 1277,
  30299. bottom: 111 / 1434
  30300. }
  30301. },
  30302. },
  30303. [
  30304. {
  30305. name: "Normal",
  30306. height: math.unit(4.2, "meters"),
  30307. default: true
  30308. },
  30309. ]
  30310. ))
  30311. characterMakers.push(() => makeCharacter(
  30312. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30313. {
  30314. back: {
  30315. height: math.unit(201, "feet"),
  30316. name: "Back",
  30317. image: {
  30318. source: "./media/characters/jessica/back.svg",
  30319. extra: 273 / 259,
  30320. bottom: 7 / 280
  30321. }
  30322. },
  30323. },
  30324. [
  30325. {
  30326. name: "Normal",
  30327. height: math.unit(201, "feet"),
  30328. default: true
  30329. },
  30330. {
  30331. name: "Megamacro",
  30332. height: math.unit(8, "miles")
  30333. },
  30334. ]
  30335. ))
  30336. characterMakers.push(() => makeCharacter(
  30337. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30338. {
  30339. side: {
  30340. height: math.unit(5.6, "m"),
  30341. weight: math.unit(8000, "kg"),
  30342. name: "Side",
  30343. image: {
  30344. source: "./media/characters/victoria/side.svg",
  30345. extra: 1542/1229,
  30346. bottom: 124/1666
  30347. }
  30348. },
  30349. maw: {
  30350. height: math.unit(7.14, "feet"),
  30351. name: "Maw",
  30352. image: {
  30353. source: "./media/characters/victoria/maw.svg"
  30354. }
  30355. },
  30356. },
  30357. [
  30358. {
  30359. name: "Normal",
  30360. height: math.unit(5.6, "m"),
  30361. default: true
  30362. },
  30363. ]
  30364. ))
  30365. characterMakers.push(() => makeCharacter(
  30366. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30367. {
  30368. front: {
  30369. height: math.unit(5 + 6 / 12, "feet"),
  30370. name: "Front",
  30371. image: {
  30372. source: "./media/characters/cat/front.svg",
  30373. extra: 1449/1295,
  30374. bottom: 34/1483
  30375. },
  30376. form: "cat",
  30377. default: true
  30378. },
  30379. back: {
  30380. height: math.unit(5 + 6 / 12, "feet"),
  30381. name: "Back",
  30382. image: {
  30383. source: "./media/characters/cat/back.svg",
  30384. extra: 1466/1301,
  30385. bottom: 19/1485
  30386. },
  30387. form: "cat"
  30388. },
  30389. taur: {
  30390. height: math.unit(7, "feet"),
  30391. name: "Taur",
  30392. image: {
  30393. source: "./media/characters/cat/taur.svg",
  30394. extra: 1389/1233,
  30395. bottom: 83/1472
  30396. },
  30397. form: "taur",
  30398. default: true
  30399. },
  30400. lucarioFront: {
  30401. height: math.unit(4, "feet"),
  30402. name: "Lucario (Front)",
  30403. image: {
  30404. source: "./media/characters/cat/lucario-front.svg",
  30405. extra: 1149/1019,
  30406. bottom: 84/1233
  30407. },
  30408. form: "lucario",
  30409. default: true
  30410. },
  30411. lucarioBack: {
  30412. height: math.unit(4, "feet"),
  30413. name: "Lucario (Back)",
  30414. image: {
  30415. source: "./media/characters/cat/lucario-back.svg",
  30416. extra: 1190/1059,
  30417. bottom: 33/1223
  30418. },
  30419. form: "lucario"
  30420. },
  30421. megaLucario: {
  30422. height: math.unit(4, "feet"),
  30423. name: "Mega Lucario",
  30424. image: {
  30425. source: "./media/characters/cat/mega-lucario.svg",
  30426. extra: 1515 / 1319,
  30427. bottom: 63 / 1578
  30428. },
  30429. form: "lucario"
  30430. },
  30431. nickit: {
  30432. height: math.unit(2, "feet"),
  30433. name: "Nickit",
  30434. image: {
  30435. source: "./media/characters/cat/nickit.svg",
  30436. extra: 1980 / 1585,
  30437. bottom: 102 / 2082
  30438. },
  30439. form: "nickit",
  30440. default: true
  30441. },
  30442. lopunnyFront: {
  30443. height: math.unit(5, "feet"),
  30444. name: "Lopunny (Front)",
  30445. image: {
  30446. source: "./media/characters/cat/lopunny-front.svg",
  30447. extra: 1782 / 1469,
  30448. bottom: 38 / 1820
  30449. },
  30450. form: "lopunny",
  30451. default: true
  30452. },
  30453. lopunnyBack: {
  30454. height: math.unit(5, "feet"),
  30455. name: "Lopunny (Back)",
  30456. image: {
  30457. source: "./media/characters/cat/lopunny-back.svg",
  30458. extra: 1660 / 1490,
  30459. bottom: 25 / 1685
  30460. },
  30461. form: "lopunny"
  30462. },
  30463. },
  30464. [
  30465. {
  30466. name: "Really small",
  30467. height: math.unit(1, "nm")
  30468. },
  30469. {
  30470. name: "Micro",
  30471. height: math.unit(5, "inches")
  30472. },
  30473. {
  30474. name: "Normal",
  30475. height: math.unit(5 + 6 / 12, "feet"),
  30476. default: true
  30477. },
  30478. {
  30479. name: "Macro",
  30480. height: math.unit(50, "feet")
  30481. },
  30482. {
  30483. name: "Macro+",
  30484. height: math.unit(150, "feet")
  30485. },
  30486. {
  30487. name: "Megamacro",
  30488. height: math.unit(100, "miles")
  30489. },
  30490. ]
  30491. ))
  30492. characterMakers.push(() => makeCharacter(
  30493. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30494. {
  30495. front: {
  30496. height: math.unit(63.4, "meters"),
  30497. weight: math.unit(3.28349e+6, "kilograms"),
  30498. name: "Front",
  30499. image: {
  30500. source: "./media/characters/kirina-violet/front.svg",
  30501. extra: 2812 / 2725,
  30502. bottom: 0 / 2812
  30503. }
  30504. },
  30505. back: {
  30506. height: math.unit(63.4, "meters"),
  30507. weight: math.unit(3.28349e+6, "kilograms"),
  30508. name: "Back",
  30509. image: {
  30510. source: "./media/characters/kirina-violet/back.svg",
  30511. extra: 2812 / 2725,
  30512. bottom: 0 / 2812
  30513. }
  30514. },
  30515. mouth: {
  30516. height: math.unit(4.35, "meters"),
  30517. name: "Mouth",
  30518. image: {
  30519. source: "./media/characters/kirina-violet/mouth.svg"
  30520. }
  30521. },
  30522. paw: {
  30523. height: math.unit(5.6, "meters"),
  30524. name: "Paw",
  30525. image: {
  30526. source: "./media/characters/kirina-violet/paw.svg"
  30527. }
  30528. },
  30529. tail: {
  30530. height: math.unit(18, "meters"),
  30531. name: "Tail",
  30532. image: {
  30533. source: "./media/characters/kirina-violet/tail.svg"
  30534. }
  30535. },
  30536. },
  30537. [
  30538. {
  30539. name: "Macro",
  30540. height: math.unit(63.4, "meters"),
  30541. default: true
  30542. },
  30543. ]
  30544. ))
  30545. characterMakers.push(() => makeCharacter(
  30546. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30547. {
  30548. front: {
  30549. height: math.unit(75, "feet"),
  30550. name: "Front",
  30551. image: {
  30552. source: "./media/characters/cat-gigachu/front.svg",
  30553. extra: 1239/1027,
  30554. bottom: 32/1271
  30555. }
  30556. },
  30557. back: {
  30558. height: math.unit(75, "feet"),
  30559. name: "Back",
  30560. image: {
  30561. source: "./media/characters/cat-gigachu/back.svg",
  30562. extra: 1229/1030,
  30563. bottom: 9/1238
  30564. }
  30565. },
  30566. },
  30567. [
  30568. {
  30569. name: "Dynamax",
  30570. height: math.unit(75, "feet"),
  30571. default: true
  30572. },
  30573. ]
  30574. ))
  30575. characterMakers.push(() => makeCharacter(
  30576. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30577. {
  30578. front: {
  30579. height: math.unit(6, "feet"),
  30580. weight: math.unit(150, "lb"),
  30581. name: "Front",
  30582. image: {
  30583. source: "./media/characters/sfaiyan/front.svg",
  30584. extra: 999 / 978,
  30585. bottom: 5 / 1004
  30586. }
  30587. },
  30588. },
  30589. [
  30590. {
  30591. name: "Normal",
  30592. height: math.unit(1.82, "meters")
  30593. },
  30594. {
  30595. name: "Giant",
  30596. height: math.unit(2.27, "km"),
  30597. default: true
  30598. },
  30599. ]
  30600. ))
  30601. characterMakers.push(() => makeCharacter(
  30602. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30603. {
  30604. front: {
  30605. height: math.unit(179, "cm"),
  30606. weight: math.unit(100, "kg"),
  30607. name: "Front",
  30608. image: {
  30609. source: "./media/characters/raunehkeli/front.svg",
  30610. extra: 1934 / 1926,
  30611. bottom: 0 / 1934
  30612. }
  30613. },
  30614. },
  30615. [
  30616. {
  30617. name: "Normal",
  30618. height: math.unit(179, "cm")
  30619. },
  30620. {
  30621. name: "Maximum",
  30622. height: math.unit(575, "meters"),
  30623. default: true
  30624. },
  30625. ]
  30626. ))
  30627. characterMakers.push(() => makeCharacter(
  30628. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30629. {
  30630. front: {
  30631. height: math.unit(6, "feet"),
  30632. weight: math.unit(150, "lb"),
  30633. name: "Front",
  30634. image: {
  30635. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30636. extra: 2625 / 2518,
  30637. bottom: 60 / 2685
  30638. }
  30639. },
  30640. },
  30641. [
  30642. {
  30643. name: "Normal",
  30644. height: math.unit(6 + 2 / 12, "feet")
  30645. },
  30646. {
  30647. name: "Macro",
  30648. height: math.unit(1180, "feet"),
  30649. default: true
  30650. },
  30651. ]
  30652. ))
  30653. characterMakers.push(() => makeCharacter(
  30654. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30655. {
  30656. front: {
  30657. height: math.unit(5 + 6 / 12, "feet"),
  30658. weight: math.unit(108, "lb"),
  30659. name: "Front",
  30660. image: {
  30661. source: "./media/characters/lilith-zott/front.svg",
  30662. extra: 2510 / 2238,
  30663. bottom: 100 / 2610
  30664. }
  30665. },
  30666. frontDressed: {
  30667. height: math.unit(5 + 6 / 12, "feet"),
  30668. weight: math.unit(108, "lb"),
  30669. name: "Front (Dressed)",
  30670. image: {
  30671. source: "./media/characters/lilith-zott/front-dressed.svg",
  30672. extra: 2510 / 2238,
  30673. bottom: 100 / 2610
  30674. }
  30675. },
  30676. },
  30677. [
  30678. {
  30679. name: "Normal",
  30680. height: math.unit(5 + 6 / 12, "feet")
  30681. },
  30682. {
  30683. name: "Macro",
  30684. height: math.unit(1030, "feet"),
  30685. default: true
  30686. },
  30687. ]
  30688. ))
  30689. characterMakers.push(() => makeCharacter(
  30690. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30691. {
  30692. front: {
  30693. height: math.unit(6, "feet"),
  30694. weight: math.unit(150, "lb"),
  30695. name: "Front",
  30696. image: {
  30697. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30698. extra: 2567 / 2435,
  30699. bottom: 39 / 2606
  30700. }
  30701. },
  30702. frontSuper: {
  30703. height: math.unit(6, "feet"),
  30704. name: "Front (Super)",
  30705. image: {
  30706. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30707. extra: 2567 / 2435,
  30708. bottom: 39 / 2606
  30709. }
  30710. },
  30711. },
  30712. [
  30713. {
  30714. name: "Normal",
  30715. height: math.unit(5 + 10 / 12, "feet")
  30716. },
  30717. {
  30718. name: "Macro",
  30719. height: math.unit(1100, "feet"),
  30720. default: true
  30721. },
  30722. ]
  30723. ))
  30724. characterMakers.push(() => makeCharacter(
  30725. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30726. {
  30727. front: {
  30728. height: math.unit(100, "miles"),
  30729. name: "Front",
  30730. image: {
  30731. source: "./media/characters/sona/front.svg",
  30732. extra: 2433 / 2201,
  30733. bottom: 53 / 2486
  30734. }
  30735. },
  30736. foot: {
  30737. height: math.unit(16.1, "miles"),
  30738. name: "Foot",
  30739. image: {
  30740. source: "./media/characters/sona/foot.svg"
  30741. }
  30742. },
  30743. },
  30744. [
  30745. {
  30746. name: "Macro",
  30747. height: math.unit(100, "miles"),
  30748. default: true
  30749. },
  30750. ]
  30751. ))
  30752. characterMakers.push(() => makeCharacter(
  30753. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30754. {
  30755. front: {
  30756. height: math.unit(6, "feet"),
  30757. weight: math.unit(150, "lb"),
  30758. name: "Front",
  30759. image: {
  30760. source: "./media/characters/bailey/front.svg",
  30761. extra: 1778 / 1724,
  30762. bottom: 30 / 1808
  30763. }
  30764. },
  30765. },
  30766. [
  30767. {
  30768. name: "Micro",
  30769. height: math.unit(4, "inches")
  30770. },
  30771. {
  30772. name: "Normal",
  30773. height: math.unit(5 + 5 / 12, "feet"),
  30774. default: true
  30775. },
  30776. {
  30777. name: "Macro",
  30778. height: math.unit(250, "feet")
  30779. },
  30780. {
  30781. name: "Megamacro",
  30782. height: math.unit(100, "miles")
  30783. },
  30784. ]
  30785. ))
  30786. characterMakers.push(() => makeCharacter(
  30787. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30788. {
  30789. front: {
  30790. height: math.unit(5 + 2 / 12, "feet"),
  30791. weight: math.unit(120, "lb"),
  30792. name: "Front",
  30793. image: {
  30794. source: "./media/characters/snaps/front.svg",
  30795. extra: 2370 / 2177,
  30796. bottom: 48 / 2418
  30797. }
  30798. },
  30799. back: {
  30800. height: math.unit(5 + 2 / 12, "feet"),
  30801. weight: math.unit(120, "lb"),
  30802. name: "Back",
  30803. image: {
  30804. source: "./media/characters/snaps/back.svg",
  30805. extra: 2408 / 2258,
  30806. bottom: 15 / 2423
  30807. }
  30808. },
  30809. },
  30810. [
  30811. {
  30812. name: "Micro",
  30813. height: math.unit(9, "inches")
  30814. },
  30815. {
  30816. name: "Normal",
  30817. height: math.unit(5 + 2 / 12, "feet"),
  30818. default: true
  30819. },
  30820. {
  30821. name: "Mini Macro",
  30822. height: math.unit(10, "feet")
  30823. },
  30824. ]
  30825. ))
  30826. characterMakers.push(() => makeCharacter(
  30827. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30828. {
  30829. front: {
  30830. height: math.unit(1.8, "meters"),
  30831. weight: math.unit(85, "kg"),
  30832. name: "Front",
  30833. image: {
  30834. source: "./media/characters/azteck/front.svg",
  30835. extra: 2815 / 2625,
  30836. bottom: 89 / 2904
  30837. }
  30838. },
  30839. back: {
  30840. height: math.unit(1.8, "meters"),
  30841. weight: math.unit(85, "kg"),
  30842. name: "Back",
  30843. image: {
  30844. source: "./media/characters/azteck/back.svg",
  30845. extra: 2856 / 2648,
  30846. bottom: 85 / 2941
  30847. }
  30848. },
  30849. frontDressed: {
  30850. height: math.unit(1.8, "meters"),
  30851. weight: math.unit(85, "kg"),
  30852. name: "Front (Dressed)",
  30853. image: {
  30854. source: "./media/characters/azteck/front-dressed.svg",
  30855. extra: 2147 / 2003,
  30856. bottom: 68 / 2215
  30857. }
  30858. },
  30859. head: {
  30860. height: math.unit(0.47, "meters"),
  30861. weight: math.unit(85, "kg"),
  30862. name: "Head",
  30863. image: {
  30864. source: "./media/characters/azteck/head.svg"
  30865. }
  30866. },
  30867. },
  30868. [
  30869. {
  30870. name: "Bite sized",
  30871. height: math.unit(16, "cm")
  30872. },
  30873. {
  30874. name: "Normal",
  30875. height: math.unit(1.8, "meters"),
  30876. default: true
  30877. },
  30878. ]
  30879. ))
  30880. characterMakers.push(() => makeCharacter(
  30881. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30882. {
  30883. front: {
  30884. height: math.unit(6, "feet"),
  30885. weight: math.unit(150, "lb"),
  30886. name: "Front",
  30887. image: {
  30888. source: "./media/characters/pidge/front.svg",
  30889. extra: 1936/1820,
  30890. bottom: 0/1936
  30891. }
  30892. },
  30893. back: {
  30894. height: math.unit(6, "feet"),
  30895. weight: math.unit(150, "lb"),
  30896. name: "Back",
  30897. image: {
  30898. source: "./media/characters/pidge/back.svg",
  30899. extra: 1938/1843,
  30900. bottom: 0/1938
  30901. }
  30902. },
  30903. casual: {
  30904. height: math.unit(6, "feet"),
  30905. weight: math.unit(150, "lb"),
  30906. name: "Casual",
  30907. image: {
  30908. source: "./media/characters/pidge/casual.svg",
  30909. extra: 1936/1820,
  30910. bottom: 0/1936
  30911. }
  30912. },
  30913. tech: {
  30914. height: math.unit(6, "feet"),
  30915. weight: math.unit(150, "lb"),
  30916. name: "Tech",
  30917. image: {
  30918. source: "./media/characters/pidge/tech.svg",
  30919. extra: 1802/1682,
  30920. bottom: 0/1802
  30921. }
  30922. },
  30923. head: {
  30924. height: math.unit(1.61, "feet"),
  30925. name: "Head",
  30926. image: {
  30927. source: "./media/characters/pidge/head.svg"
  30928. }
  30929. },
  30930. collar: {
  30931. height: math.unit(0.82, "feet"),
  30932. name: "Collar",
  30933. image: {
  30934. source: "./media/characters/pidge/collar.svg"
  30935. }
  30936. },
  30937. },
  30938. [
  30939. {
  30940. name: "Macro",
  30941. height: math.unit(2, "mile"),
  30942. default: true
  30943. },
  30944. {
  30945. name: "PUPPY",
  30946. height: math.unit(20, "miles")
  30947. },
  30948. ]
  30949. ))
  30950. characterMakers.push(() => makeCharacter(
  30951. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30952. {
  30953. front: {
  30954. height: math.unit(6, "feet"),
  30955. weight: math.unit(150, "lb"),
  30956. name: "Front",
  30957. image: {
  30958. source: "./media/characters/en/front.svg",
  30959. extra: 1697 / 1563,
  30960. bottom: 103 / 1800
  30961. }
  30962. },
  30963. back: {
  30964. height: math.unit(6, "feet"),
  30965. weight: math.unit(150, "lb"),
  30966. name: "Back",
  30967. image: {
  30968. source: "./media/characters/en/back.svg",
  30969. extra: 1700 / 1570,
  30970. bottom: 51 / 1751
  30971. }
  30972. },
  30973. frontDressed: {
  30974. height: math.unit(6, "feet"),
  30975. weight: math.unit(150, "lb"),
  30976. name: "Front (Dressed)",
  30977. image: {
  30978. source: "./media/characters/en/front-dressed.svg",
  30979. extra: 1697 / 1563,
  30980. bottom: 103 / 1800
  30981. }
  30982. },
  30983. backDressed: {
  30984. height: math.unit(6, "feet"),
  30985. weight: math.unit(150, "lb"),
  30986. name: "Back (Dressed)",
  30987. image: {
  30988. source: "./media/characters/en/back-dressed.svg",
  30989. extra: 1700 / 1570,
  30990. bottom: 51 / 1751
  30991. }
  30992. },
  30993. },
  30994. [
  30995. {
  30996. name: "Macro",
  30997. height: math.unit(210, "feet"),
  30998. default: true
  30999. },
  31000. ]
  31001. ))
  31002. characterMakers.push(() => makeCharacter(
  31003. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31004. {
  31005. front: {
  31006. height: math.unit(6, "feet"),
  31007. weight: math.unit(150, "lb"),
  31008. name: "Front",
  31009. image: {
  31010. source: "./media/characters/haze-orris/front.svg",
  31011. extra: 3975 / 3525,
  31012. bottom: 137 / 4112
  31013. }
  31014. },
  31015. },
  31016. [
  31017. {
  31018. name: "Micro",
  31019. height: math.unit(150, "mm"),
  31020. default: true
  31021. },
  31022. ]
  31023. ))
  31024. characterMakers.push(() => makeCharacter(
  31025. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31026. {
  31027. front: {
  31028. height: math.unit(6, "feet"),
  31029. weight: math.unit(150, "lb"),
  31030. name: "Front",
  31031. image: {
  31032. source: "./media/characters/casselene-yaro/front.svg",
  31033. extra: 4721 / 4541,
  31034. bottom: 82 / 4803
  31035. }
  31036. },
  31037. back: {
  31038. height: math.unit(6, "feet"),
  31039. weight: math.unit(150, "lb"),
  31040. name: "Back",
  31041. image: {
  31042. source: "./media/characters/casselene-yaro/back.svg",
  31043. extra: 4569 / 4377,
  31044. bottom: 69 / 4638
  31045. }
  31046. },
  31047. dressed: {
  31048. height: math.unit(6, "feet"),
  31049. weight: math.unit(150, "lb"),
  31050. name: "Dressed",
  31051. image: {
  31052. source: "./media/characters/casselene-yaro/dressed.svg",
  31053. extra: 4721 / 4541,
  31054. bottom: 82 / 4803
  31055. }
  31056. },
  31057. maw: {
  31058. height: math.unit(1, "feet"),
  31059. name: "Maw",
  31060. image: {
  31061. source: "./media/characters/casselene-yaro/maw.svg"
  31062. }
  31063. },
  31064. },
  31065. [
  31066. {
  31067. name: "Macro",
  31068. height: math.unit(190, "feet"),
  31069. default: true
  31070. },
  31071. ]
  31072. ))
  31073. characterMakers.push(() => makeCharacter(
  31074. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31075. {
  31076. front: {
  31077. height: math.unit(10, "feet"),
  31078. weight: math.unit(15015, "lb"),
  31079. name: "Front",
  31080. image: {
  31081. source: "./media/characters/platine/front.svg",
  31082. extra: 1741/1650,
  31083. bottom: 84/1825
  31084. }
  31085. },
  31086. side: {
  31087. height: math.unit(10, "feet"),
  31088. weight: math.unit(15015, "lb"),
  31089. name: "Side",
  31090. image: {
  31091. source: "./media/characters/platine/side.svg",
  31092. extra: 1790/1705,
  31093. bottom: 29/1819
  31094. }
  31095. },
  31096. },
  31097. [
  31098. {
  31099. name: "Normal",
  31100. height: math.unit(10, "feet"),
  31101. default: true
  31102. },
  31103. {
  31104. name: "Macro",
  31105. height: math.unit(100, "feet")
  31106. },
  31107. {
  31108. name: "Megamacro",
  31109. height: math.unit(1000, "feet")
  31110. },
  31111. ]
  31112. ))
  31113. characterMakers.push(() => makeCharacter(
  31114. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31115. {
  31116. front: {
  31117. height: math.unit(15 + 5 / 12, "feet"),
  31118. weight: math.unit(4600, "lb"),
  31119. name: "Front",
  31120. image: {
  31121. source: "./media/characters/neapolitan-ananassa/front.svg",
  31122. extra: 2903 / 2736,
  31123. bottom: 0 / 2903
  31124. }
  31125. },
  31126. side: {
  31127. height: math.unit(15 + 5 / 12, "feet"),
  31128. weight: math.unit(4600, "lb"),
  31129. name: "Side",
  31130. image: {
  31131. source: "./media/characters/neapolitan-ananassa/side.svg",
  31132. extra: 2925 / 2719,
  31133. bottom: 0 / 2925
  31134. }
  31135. },
  31136. back: {
  31137. height: math.unit(15 + 5 / 12, "feet"),
  31138. weight: math.unit(4600, "lb"),
  31139. name: "Back",
  31140. image: {
  31141. source: "./media/characters/neapolitan-ananassa/back.svg",
  31142. extra: 2903 / 2736,
  31143. bottom: 0 / 2903
  31144. }
  31145. },
  31146. },
  31147. [
  31148. {
  31149. name: "Normal",
  31150. height: math.unit(15 + 5 / 12, "feet"),
  31151. default: true
  31152. },
  31153. {
  31154. name: "Post-Millenium",
  31155. height: math.unit(35 + 5 / 12, "feet")
  31156. },
  31157. {
  31158. name: "Post-Era",
  31159. height: math.unit(450 + 5 / 12, "feet")
  31160. },
  31161. ]
  31162. ))
  31163. characterMakers.push(() => makeCharacter(
  31164. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31165. {
  31166. front: {
  31167. height: math.unit(300, "meters"),
  31168. weight: math.unit(125000, "tonnes"),
  31169. name: "Front",
  31170. image: {
  31171. source: "./media/characters/pazuzu/front.svg",
  31172. extra: 877 / 794,
  31173. bottom: 47 / 924
  31174. }
  31175. },
  31176. },
  31177. [
  31178. {
  31179. name: "Macro",
  31180. height: math.unit(300, "meters"),
  31181. default: true
  31182. },
  31183. ]
  31184. ))
  31185. characterMakers.push(() => makeCharacter(
  31186. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31187. {
  31188. side: {
  31189. height: math.unit(10 + 7 / 12, "feet"),
  31190. weight: math.unit(2.5, "tons"),
  31191. name: "Side",
  31192. image: {
  31193. source: "./media/characters/aasha/side.svg",
  31194. extra: 1345 / 1245,
  31195. bottom: 111 / 1456
  31196. }
  31197. },
  31198. back: {
  31199. height: math.unit(10 + 7 / 12, "feet"),
  31200. weight: math.unit(2.5, "tons"),
  31201. name: "Back",
  31202. image: {
  31203. source: "./media/characters/aasha/back.svg",
  31204. extra: 1133 / 1057,
  31205. bottom: 257 / 1390
  31206. }
  31207. },
  31208. },
  31209. [
  31210. {
  31211. name: "Normal",
  31212. height: math.unit(10 + 7 / 12, "feet"),
  31213. default: true
  31214. },
  31215. ]
  31216. ))
  31217. characterMakers.push(() => makeCharacter(
  31218. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31219. {
  31220. front: {
  31221. height: math.unit(6 + 3 / 12, "feet"),
  31222. name: "Front",
  31223. image: {
  31224. source: "./media/characters/nevan/front.svg",
  31225. extra: 704 / 704,
  31226. bottom: 28 / 732
  31227. }
  31228. },
  31229. back: {
  31230. height: math.unit(6 + 3 / 12, "feet"),
  31231. name: "Back",
  31232. image: {
  31233. source: "./media/characters/nevan/back.svg",
  31234. extra: 714 / 714,
  31235. bottom: 21 / 735
  31236. }
  31237. },
  31238. frontFlaccid: {
  31239. height: math.unit(6 + 3 / 12, "feet"),
  31240. name: "Front (Flaccid)",
  31241. image: {
  31242. source: "./media/characters/nevan/front-flaccid.svg",
  31243. extra: 704 / 704,
  31244. bottom: 28 / 732
  31245. }
  31246. },
  31247. frontErect: {
  31248. height: math.unit(6 + 3 / 12, "feet"),
  31249. name: "Front (Erect)",
  31250. image: {
  31251. source: "./media/characters/nevan/front-erect.svg",
  31252. extra: 704 / 704,
  31253. bottom: 28 / 732
  31254. }
  31255. },
  31256. backFlaccid: {
  31257. height: math.unit(6 + 3 / 12, "feet"),
  31258. name: "Back (Flaccid)",
  31259. image: {
  31260. source: "./media/characters/nevan/back-flaccid.svg",
  31261. extra: 714 / 714,
  31262. bottom: 21 / 735
  31263. }
  31264. },
  31265. },
  31266. [
  31267. {
  31268. name: "Normal",
  31269. height: math.unit(6 + 3 / 12, "feet"),
  31270. default: true
  31271. },
  31272. ]
  31273. ))
  31274. characterMakers.push(() => makeCharacter(
  31275. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31276. {
  31277. front: {
  31278. height: math.unit(4, "feet"),
  31279. name: "Front",
  31280. image: {
  31281. source: "./media/characters/arhan/front.svg",
  31282. extra: 3368 / 3133,
  31283. bottom: 0 / 3368
  31284. }
  31285. },
  31286. side: {
  31287. height: math.unit(4, "feet"),
  31288. name: "Side",
  31289. image: {
  31290. source: "./media/characters/arhan/side.svg",
  31291. extra: 3347 / 3105,
  31292. bottom: 0 / 3347
  31293. }
  31294. },
  31295. tongue: {
  31296. height: math.unit(1.42, "feet"),
  31297. name: "Tongue",
  31298. image: {
  31299. source: "./media/characters/arhan/tongue.svg"
  31300. }
  31301. },
  31302. head: {
  31303. height: math.unit(0.85, "feet"),
  31304. name: "Head",
  31305. image: {
  31306. source: "./media/characters/arhan/head.svg"
  31307. }
  31308. },
  31309. },
  31310. [
  31311. {
  31312. name: "Normal",
  31313. height: math.unit(4, "feet"),
  31314. default: true
  31315. },
  31316. ]
  31317. ))
  31318. characterMakers.push(() => makeCharacter(
  31319. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31320. {
  31321. front: {
  31322. height: math.unit(5 + 7.5 / 12, "feet"),
  31323. weight: math.unit(120, "lb"),
  31324. name: "Front",
  31325. image: {
  31326. source: "./media/characters/digi-duncan/front.svg",
  31327. extra: 330 / 326,
  31328. bottom: 16 / 346
  31329. }
  31330. },
  31331. side: {
  31332. height: math.unit(5 + 7.5 / 12, "feet"),
  31333. weight: math.unit(120, "lb"),
  31334. name: "Side",
  31335. image: {
  31336. source: "./media/characters/digi-duncan/side.svg",
  31337. extra: 341 / 337,
  31338. bottom: 1 / 342
  31339. }
  31340. },
  31341. back: {
  31342. height: math.unit(5 + 7.5 / 12, "feet"),
  31343. weight: math.unit(120, "lb"),
  31344. name: "Back",
  31345. image: {
  31346. source: "./media/characters/digi-duncan/back.svg",
  31347. extra: 330 / 326,
  31348. bottom: 12 / 342
  31349. }
  31350. },
  31351. },
  31352. [
  31353. {
  31354. name: "Speck",
  31355. height: math.unit(0.25, "mm")
  31356. },
  31357. {
  31358. name: "Micro",
  31359. height: math.unit(5, "mm")
  31360. },
  31361. {
  31362. name: "Tiny",
  31363. height: math.unit(0.5, "inches"),
  31364. default: true
  31365. },
  31366. {
  31367. name: "Human",
  31368. height: math.unit(5 + 7.5 / 12, "feet")
  31369. },
  31370. {
  31371. name: "Minigiant",
  31372. height: math.unit(8 + 5.25, "feet")
  31373. },
  31374. {
  31375. name: "Giant",
  31376. height: math.unit(2000, "feet")
  31377. },
  31378. {
  31379. name: "Mega",
  31380. height: math.unit(371.1, "miles")
  31381. },
  31382. ]
  31383. ))
  31384. characterMakers.push(() => makeCharacter(
  31385. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31386. {
  31387. front: {
  31388. height: math.unit(2, "meters"),
  31389. weight: math.unit(350, "kg"),
  31390. name: "Front",
  31391. image: {
  31392. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31393. extra: 898 / 838,
  31394. bottom: 9 / 907
  31395. }
  31396. },
  31397. },
  31398. [
  31399. {
  31400. name: "Micro",
  31401. height: math.unit(8, "meters")
  31402. },
  31403. {
  31404. name: "Normal",
  31405. height: math.unit(50, "meters"),
  31406. default: true
  31407. },
  31408. {
  31409. name: "Macro",
  31410. height: math.unit(500, "meters")
  31411. },
  31412. ]
  31413. ))
  31414. characterMakers.push(() => makeCharacter(
  31415. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31416. {
  31417. front: {
  31418. height: math.unit(6 + 6 / 12, "feet"),
  31419. name: "Front",
  31420. image: {
  31421. source: "./media/characters/khardesh/front.svg",
  31422. extra: 1788/1596,
  31423. bottom: 66/1854
  31424. }
  31425. },
  31426. back: {
  31427. height: math.unit(6 + 6 / 12, "feet"),
  31428. name: "Back",
  31429. image: {
  31430. source: "./media/characters/khardesh/back.svg",
  31431. extra: 1781/1584,
  31432. bottom: 68/1849
  31433. }
  31434. },
  31435. },
  31436. [
  31437. {
  31438. name: "Normal",
  31439. height: math.unit(6 + 6 / 12, "feet"),
  31440. default: true
  31441. },
  31442. {
  31443. name: "Normal+",
  31444. height: math.unit(4, "meters")
  31445. },
  31446. {
  31447. name: "Macro",
  31448. height: math.unit(50, "meters")
  31449. },
  31450. {
  31451. name: "Macro+",
  31452. height: math.unit(100, "meters")
  31453. },
  31454. {
  31455. name: "Megamacro",
  31456. height: math.unit(20, "km")
  31457. },
  31458. ]
  31459. ))
  31460. characterMakers.push(() => makeCharacter(
  31461. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31462. {
  31463. front: {
  31464. height: math.unit(6, "feet"),
  31465. weight: math.unit(150, "lb"),
  31466. name: "Front",
  31467. image: {
  31468. source: "./media/characters/kosho/front.svg",
  31469. extra: 1847 / 1847,
  31470. bottom: 86 / 1933
  31471. }
  31472. },
  31473. },
  31474. [
  31475. {
  31476. name: "Second-stage micro",
  31477. height: math.unit(0.5, "inches")
  31478. },
  31479. {
  31480. name: "First-stage micro",
  31481. height: math.unit(6, "inches")
  31482. },
  31483. {
  31484. name: "Normal",
  31485. height: math.unit(6, "feet"),
  31486. default: true
  31487. },
  31488. {
  31489. name: "First-stage macro",
  31490. height: math.unit(72, "feet")
  31491. },
  31492. {
  31493. name: "Second-stage macro",
  31494. height: math.unit(864, "feet")
  31495. },
  31496. ]
  31497. ))
  31498. characterMakers.push(() => makeCharacter(
  31499. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31500. {
  31501. normal: {
  31502. height: math.unit(4 + 6 / 12, "feet"),
  31503. name: "Normal",
  31504. image: {
  31505. source: "./media/characters/hydra/normal.svg",
  31506. extra: 2833 / 2634,
  31507. bottom: 68 / 2901
  31508. }
  31509. },
  31510. smol: {
  31511. height: math.unit(0.705, "inches"),
  31512. name: "Smol",
  31513. image: {
  31514. source: "./media/characters/hydra/smol.svg",
  31515. extra: 2715 / 2540,
  31516. bottom: 0 / 2715
  31517. }
  31518. },
  31519. },
  31520. [
  31521. {
  31522. name: "Normal",
  31523. height: math.unit(4 + 6 / 12, "feet"),
  31524. default: true
  31525. }
  31526. ]
  31527. ))
  31528. characterMakers.push(() => makeCharacter(
  31529. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31530. {
  31531. front: {
  31532. height: math.unit(0.6, "cm"),
  31533. name: "Front",
  31534. image: {
  31535. source: "./media/characters/daz/front.svg",
  31536. extra: 1682 / 1164,
  31537. bottom: 42 / 1724
  31538. }
  31539. },
  31540. },
  31541. [
  31542. {
  31543. name: "Normal",
  31544. height: math.unit(0.6, "cm"),
  31545. default: true
  31546. },
  31547. ]
  31548. ))
  31549. characterMakers.push(() => makeCharacter(
  31550. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31551. {
  31552. front: {
  31553. height: math.unit(6, "feet"),
  31554. weight: math.unit(235, "lb"),
  31555. name: "Front",
  31556. image: {
  31557. source: "./media/characters/theo-pangolin/front.svg",
  31558. extra: 1996 / 1969,
  31559. bottom: 115 / 2111
  31560. }
  31561. },
  31562. back: {
  31563. height: math.unit(6, "feet"),
  31564. weight: math.unit(235, "lb"),
  31565. name: "Back",
  31566. image: {
  31567. source: "./media/characters/theo-pangolin/back.svg",
  31568. extra: 1979 / 1979,
  31569. bottom: 40 / 2019
  31570. }
  31571. },
  31572. feral: {
  31573. height: math.unit(2, "feet"),
  31574. weight: math.unit(30, "lb"),
  31575. name: "Feral",
  31576. image: {
  31577. source: "./media/characters/theo-pangolin/feral.svg",
  31578. extra: 803 / 791,
  31579. bottom: 181 / 984
  31580. }
  31581. },
  31582. footFive: {
  31583. height: math.unit(1.43, "feet"),
  31584. name: "Foot (Five Toes)",
  31585. image: {
  31586. source: "./media/characters/theo-pangolin/foot-five.svg"
  31587. }
  31588. },
  31589. footFour: {
  31590. height: math.unit(1.43, "feet"),
  31591. name: "Foot (Four Toes)",
  31592. image: {
  31593. source: "./media/characters/theo-pangolin/foot-four.svg"
  31594. }
  31595. },
  31596. handFour: {
  31597. height: math.unit(0.81, "feet"),
  31598. name: "Hand (Four Fingers)",
  31599. image: {
  31600. source: "./media/characters/theo-pangolin/hand-four.svg"
  31601. }
  31602. },
  31603. handThree: {
  31604. height: math.unit(0.81, "feet"),
  31605. name: "Hand (Three Fingers)",
  31606. image: {
  31607. source: "./media/characters/theo-pangolin/hand-three.svg"
  31608. }
  31609. },
  31610. headFront: {
  31611. height: math.unit(1.37, "feet"),
  31612. name: "Head (Front)",
  31613. image: {
  31614. source: "./media/characters/theo-pangolin/head-front.svg"
  31615. }
  31616. },
  31617. headSide: {
  31618. height: math.unit(1.43, "feet"),
  31619. name: "Head (Side)",
  31620. image: {
  31621. source: "./media/characters/theo-pangolin/head-side.svg"
  31622. }
  31623. },
  31624. tongue: {
  31625. height: math.unit(2.29, "feet"),
  31626. name: "Tongue",
  31627. image: {
  31628. source: "./media/characters/theo-pangolin/tongue.svg"
  31629. }
  31630. },
  31631. },
  31632. [
  31633. {
  31634. name: "Normal",
  31635. height: math.unit(6, "feet")
  31636. },
  31637. {
  31638. name: "Macro",
  31639. height: math.unit(400, "feet"),
  31640. default: true
  31641. },
  31642. ]
  31643. ))
  31644. characterMakers.push(() => makeCharacter(
  31645. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31646. {
  31647. front: {
  31648. height: math.unit(6, "inches"),
  31649. weight: math.unit(0.036, "kg"),
  31650. name: "Front",
  31651. image: {
  31652. source: "./media/characters/renée/front.svg",
  31653. extra: 900 / 886,
  31654. bottom: 8 / 908
  31655. }
  31656. },
  31657. },
  31658. [
  31659. {
  31660. name: "Nano",
  31661. height: math.unit(1, "nm")
  31662. },
  31663. {
  31664. name: "Micro",
  31665. height: math.unit(1, "mm")
  31666. },
  31667. {
  31668. name: "Normal",
  31669. height: math.unit(6, "inches")
  31670. },
  31671. {
  31672. name: "Macro",
  31673. height: math.unit(2000, "feet"),
  31674. default: true
  31675. },
  31676. {
  31677. name: "Megamacro",
  31678. height: math.unit(2, "km")
  31679. },
  31680. {
  31681. name: "Gigamacro",
  31682. height: math.unit(2000, "km")
  31683. },
  31684. {
  31685. name: "Teramacro",
  31686. height: math.unit(250000, "km")
  31687. },
  31688. ]
  31689. ))
  31690. characterMakers.push(() => makeCharacter(
  31691. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31692. {
  31693. front: {
  31694. height: math.unit(4, "meters"),
  31695. weight: math.unit(150, "kg"),
  31696. name: "Front",
  31697. image: {
  31698. source: "./media/characters/caledvwlch/front.svg",
  31699. extra: 1760 / 1551,
  31700. bottom: 28 / 1788
  31701. }
  31702. },
  31703. side: {
  31704. height: math.unit(4, "meters"),
  31705. weight: math.unit(150, "kg"),
  31706. name: "Side",
  31707. image: {
  31708. source: "./media/characters/caledvwlch/side.svg",
  31709. extra: 1605 / 1536,
  31710. bottom: 31 / 1636
  31711. }
  31712. },
  31713. back: {
  31714. height: math.unit(4, "meters"),
  31715. weight: math.unit(150, "kg"),
  31716. name: "Back",
  31717. image: {
  31718. source: "./media/characters/caledvwlch/back.svg",
  31719. extra: 1635 / 1565,
  31720. bottom: 27 / 1662
  31721. }
  31722. },
  31723. },
  31724. [
  31725. {
  31726. name: "\"Incognito\"",
  31727. height: math.unit(4, "meters")
  31728. },
  31729. {
  31730. name: "Small rampage",
  31731. height: math.unit(600, "meters")
  31732. },
  31733. {
  31734. name: "Mega",
  31735. height: math.unit(30, "km")
  31736. },
  31737. {
  31738. name: "Home-size",
  31739. height: math.unit(50, "km"),
  31740. default: true
  31741. },
  31742. {
  31743. name: "Giga",
  31744. height: math.unit(300, "km")
  31745. },
  31746. {
  31747. name: "Lounging",
  31748. height: math.unit(11000, "km")
  31749. },
  31750. {
  31751. name: "Planet snacking",
  31752. height: math.unit(2000000, "km")
  31753. },
  31754. ]
  31755. ))
  31756. characterMakers.push(() => makeCharacter(
  31757. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31758. {
  31759. front: {
  31760. height: math.unit(6, "feet"),
  31761. weight: math.unit(215, "lb"),
  31762. name: "Front",
  31763. image: {
  31764. source: "./media/characters/sapphire-svell/front.svg",
  31765. extra: 495 / 455,
  31766. bottom: 20 / 515
  31767. }
  31768. },
  31769. back: {
  31770. height: math.unit(6, "feet"),
  31771. weight: math.unit(216, "lb"),
  31772. name: "Back",
  31773. image: {
  31774. source: "./media/characters/sapphire-svell/back.svg",
  31775. extra: 497 / 477,
  31776. bottom: 7 / 504
  31777. }
  31778. },
  31779. maw: {
  31780. height: math.unit(1.57, "feet"),
  31781. name: "Maw",
  31782. image: {
  31783. source: "./media/characters/sapphire-svell/maw.svg"
  31784. }
  31785. },
  31786. foot: {
  31787. height: math.unit(1.07, "feet"),
  31788. name: "Foot",
  31789. image: {
  31790. source: "./media/characters/sapphire-svell/foot.svg"
  31791. }
  31792. },
  31793. toering: {
  31794. height: math.unit(1.7, "inch"),
  31795. name: "Toering",
  31796. image: {
  31797. source: "./media/characters/sapphire-svell/toering.svg"
  31798. }
  31799. },
  31800. },
  31801. [
  31802. {
  31803. name: "Normal",
  31804. height: math.unit(300, "feet"),
  31805. default: true
  31806. },
  31807. {
  31808. name: "Augmented",
  31809. height: math.unit(1250, "feet")
  31810. },
  31811. {
  31812. name: "Unleashed",
  31813. height: math.unit(3000, "feet")
  31814. },
  31815. ]
  31816. ))
  31817. characterMakers.push(() => makeCharacter(
  31818. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31819. {
  31820. side: {
  31821. height: math.unit(2 + 3 / 12, "feet"),
  31822. weight: math.unit(110, "lb"),
  31823. name: "Side",
  31824. image: {
  31825. source: "./media/characters/glitch-flux/side.svg",
  31826. extra: 997 / 805,
  31827. bottom: 20 / 1017
  31828. }
  31829. },
  31830. },
  31831. [
  31832. {
  31833. name: "Normal",
  31834. height: math.unit(2 + 3 / 12, "feet"),
  31835. default: true
  31836. },
  31837. ]
  31838. ))
  31839. characterMakers.push(() => makeCharacter(
  31840. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31841. {
  31842. front: {
  31843. height: math.unit(4, "meters"),
  31844. name: "Front",
  31845. image: {
  31846. source: "./media/characters/mid/front.svg",
  31847. extra: 507 / 476,
  31848. bottom: 17 / 524
  31849. }
  31850. },
  31851. back: {
  31852. height: math.unit(4, "meters"),
  31853. name: "Back",
  31854. image: {
  31855. source: "./media/characters/mid/back.svg",
  31856. extra: 519 / 487,
  31857. bottom: 7 / 526
  31858. }
  31859. },
  31860. stuck: {
  31861. height: math.unit(2.2, "meters"),
  31862. name: "Stuck",
  31863. image: {
  31864. source: "./media/characters/mid/stuck.svg",
  31865. extra: 1951 / 1869,
  31866. bottom: 88 / 2039
  31867. }
  31868. }
  31869. },
  31870. [
  31871. {
  31872. name: "Normal",
  31873. height: math.unit(4, "meters"),
  31874. default: true
  31875. },
  31876. {
  31877. name: "Big",
  31878. height: math.unit(10, "meters")
  31879. },
  31880. {
  31881. name: "Macro",
  31882. height: math.unit(800, "meters")
  31883. },
  31884. {
  31885. name: "Megamacro",
  31886. height: math.unit(100, "km")
  31887. },
  31888. {
  31889. name: "Overgrown",
  31890. height: math.unit(1, "parsec")
  31891. },
  31892. ]
  31893. ))
  31894. characterMakers.push(() => makeCharacter(
  31895. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31896. {
  31897. front: {
  31898. height: math.unit(2.5, "meters"),
  31899. weight: math.unit(225, "kg"),
  31900. name: "Front",
  31901. image: {
  31902. source: "./media/characters/iris/front.svg",
  31903. extra: 3348 / 3251,
  31904. bottom: 205 / 3553
  31905. }
  31906. },
  31907. maw: {
  31908. height: math.unit(0.56, "meter"),
  31909. name: "Maw",
  31910. image: {
  31911. source: "./media/characters/iris/maw.svg"
  31912. }
  31913. },
  31914. },
  31915. [
  31916. {
  31917. name: "Mewter cat",
  31918. height: math.unit(1.2, "meters")
  31919. },
  31920. {
  31921. name: "Normal",
  31922. height: math.unit(2.5, "meters"),
  31923. default: true
  31924. },
  31925. {
  31926. name: "Minimacro",
  31927. height: math.unit(18, "feet")
  31928. },
  31929. {
  31930. name: "Macro",
  31931. height: math.unit(140, "feet")
  31932. },
  31933. {
  31934. name: "Macro+",
  31935. height: math.unit(180, "meters")
  31936. },
  31937. {
  31938. name: "Megamacro",
  31939. height: math.unit(2746, "meters")
  31940. },
  31941. ]
  31942. ))
  31943. characterMakers.push(() => makeCharacter(
  31944. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31945. {
  31946. front: {
  31947. height: math.unit(6, "feet"),
  31948. weight: math.unit(135, "lb"),
  31949. name: "Front",
  31950. image: {
  31951. source: "./media/characters/axel/front.svg",
  31952. extra: 908 / 908,
  31953. bottom: 58 / 966
  31954. }
  31955. },
  31956. side: {
  31957. height: math.unit(6, "feet"),
  31958. weight: math.unit(135, "lb"),
  31959. name: "Side",
  31960. image: {
  31961. source: "./media/characters/axel/side.svg",
  31962. extra: 958 / 958,
  31963. bottom: 11 / 969
  31964. }
  31965. },
  31966. back: {
  31967. height: math.unit(6, "feet"),
  31968. weight: math.unit(135, "lb"),
  31969. name: "Back",
  31970. image: {
  31971. source: "./media/characters/axel/back.svg",
  31972. extra: 887 / 887,
  31973. bottom: 34 / 921
  31974. }
  31975. },
  31976. head: {
  31977. height: math.unit(1.07, "feet"),
  31978. name: "Head",
  31979. image: {
  31980. source: "./media/characters/axel/head.svg"
  31981. }
  31982. },
  31983. beak: {
  31984. height: math.unit(1.4, "feet"),
  31985. name: "Beak",
  31986. image: {
  31987. source: "./media/characters/axel/beak.svg"
  31988. }
  31989. },
  31990. beakSide: {
  31991. height: math.unit(1.4, "feet"),
  31992. name: "Beak Side",
  31993. image: {
  31994. source: "./media/characters/axel/beak-side.svg"
  31995. }
  31996. },
  31997. sheath: {
  31998. height: math.unit(0.5, "feet"),
  31999. name: "Sheath",
  32000. image: {
  32001. source: "./media/characters/axel/sheath.svg"
  32002. }
  32003. },
  32004. dick: {
  32005. height: math.unit(0.98, "feet"),
  32006. name: "Dick",
  32007. image: {
  32008. source: "./media/characters/axel/dick.svg"
  32009. }
  32010. },
  32011. },
  32012. [
  32013. {
  32014. name: "Macro",
  32015. height: math.unit(68, "meters"),
  32016. default: true
  32017. },
  32018. ]
  32019. ))
  32020. characterMakers.push(() => makeCharacter(
  32021. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32022. {
  32023. front: {
  32024. height: math.unit(3.5, "meters"),
  32025. weight: math.unit(1200, "kg"),
  32026. name: "Front",
  32027. image: {
  32028. source: "./media/characters/joanna/front.svg",
  32029. extra: 1596 / 1488,
  32030. bottom: 29 / 1625
  32031. }
  32032. },
  32033. back: {
  32034. height: math.unit(3.5, "meters"),
  32035. weight: math.unit(1200, "kg"),
  32036. name: "Back",
  32037. image: {
  32038. source: "./media/characters/joanna/back.svg",
  32039. extra: 1594 / 1495,
  32040. bottom: 26 / 1620
  32041. }
  32042. },
  32043. frontShorts: {
  32044. height: math.unit(3.5, "meters"),
  32045. weight: math.unit(1200, "kg"),
  32046. name: "Front (Shorts)",
  32047. image: {
  32048. source: "./media/characters/joanna/front-shorts.svg",
  32049. extra: 1596 / 1488,
  32050. bottom: 29 / 1625
  32051. }
  32052. },
  32053. frontBiker: {
  32054. height: math.unit(3.5, "meters"),
  32055. weight: math.unit(1200, "kg"),
  32056. name: "Front (Biker)",
  32057. image: {
  32058. source: "./media/characters/joanna/front-biker.svg",
  32059. extra: 1596 / 1488,
  32060. bottom: 29 / 1625
  32061. }
  32062. },
  32063. backBiker: {
  32064. height: math.unit(3.5, "meters"),
  32065. weight: math.unit(1200, "kg"),
  32066. name: "Back (Biker)",
  32067. image: {
  32068. source: "./media/characters/joanna/back-biker.svg",
  32069. extra: 1594 / 1495,
  32070. bottom: 88 / 1682
  32071. }
  32072. },
  32073. bikeLeft: {
  32074. height: math.unit(2.4, "meters"),
  32075. weight: math.unit(1600, "kg"),
  32076. name: "Bike (Left)",
  32077. image: {
  32078. source: "./media/characters/joanna/bike-left.svg",
  32079. extra: 720 / 720,
  32080. bottom: 8 / 728
  32081. }
  32082. },
  32083. bikeRight: {
  32084. height: math.unit(2.4, "meters"),
  32085. weight: math.unit(1600, "kg"),
  32086. name: "Bike (Right)",
  32087. image: {
  32088. source: "./media/characters/joanna/bike-right.svg",
  32089. extra: 720 / 720,
  32090. bottom: 8 / 728
  32091. }
  32092. },
  32093. },
  32094. [
  32095. {
  32096. name: "Incognito",
  32097. height: math.unit(3.5, "meters")
  32098. },
  32099. {
  32100. name: "Casual Big",
  32101. height: math.unit(200, "meters")
  32102. },
  32103. {
  32104. name: "Macro",
  32105. height: math.unit(600, "meters")
  32106. },
  32107. {
  32108. name: "Original",
  32109. height: math.unit(20, "km"),
  32110. default: true
  32111. },
  32112. {
  32113. name: "Giga",
  32114. height: math.unit(400, "km")
  32115. },
  32116. {
  32117. name: "Lounging",
  32118. height: math.unit(1500, "km")
  32119. },
  32120. {
  32121. name: "Planetary",
  32122. height: math.unit(200000, "km")
  32123. },
  32124. ]
  32125. ))
  32126. characterMakers.push(() => makeCharacter(
  32127. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32128. {
  32129. front: {
  32130. height: math.unit(6, "feet"),
  32131. weight: math.unit(150, "lb"),
  32132. name: "Front",
  32133. image: {
  32134. source: "./media/characters/hugo-sigil/front.svg",
  32135. extra: 522 / 500,
  32136. bottom: 2 / 524
  32137. }
  32138. },
  32139. back: {
  32140. height: math.unit(6, "feet"),
  32141. weight: math.unit(150, "lb"),
  32142. name: "Back",
  32143. image: {
  32144. source: "./media/characters/hugo-sigil/back.svg",
  32145. extra: 519 / 495,
  32146. bottom: 5 / 524
  32147. }
  32148. },
  32149. maw: {
  32150. height: math.unit(1.4, "feet"),
  32151. weight: math.unit(150, "lb"),
  32152. name: "Maw",
  32153. image: {
  32154. source: "./media/characters/hugo-sigil/maw.svg"
  32155. }
  32156. },
  32157. feet: {
  32158. height: math.unit(1.56, "feet"),
  32159. weight: math.unit(150, "lb"),
  32160. name: "Feet",
  32161. image: {
  32162. source: "./media/characters/hugo-sigil/feet.svg",
  32163. extra: 177 / 177,
  32164. bottom: 12 / 189
  32165. }
  32166. },
  32167. },
  32168. [
  32169. {
  32170. name: "Normal",
  32171. height: math.unit(6, "feet")
  32172. },
  32173. {
  32174. name: "Macro",
  32175. height: math.unit(200, "feet"),
  32176. default: true
  32177. },
  32178. ]
  32179. ))
  32180. characterMakers.push(() => makeCharacter(
  32181. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32182. {
  32183. front: {
  32184. height: math.unit(6, "feet"),
  32185. weight: math.unit(150, "lb"),
  32186. name: "Front",
  32187. image: {
  32188. source: "./media/characters/peri/front.svg",
  32189. extra: 2354 / 2233,
  32190. bottom: 49 / 2403
  32191. }
  32192. },
  32193. },
  32194. [
  32195. {
  32196. name: "Really Small",
  32197. height: math.unit(1, "nm")
  32198. },
  32199. {
  32200. name: "Micro",
  32201. height: math.unit(4, "inches")
  32202. },
  32203. {
  32204. name: "Normal",
  32205. height: math.unit(7, "inches"),
  32206. default: true
  32207. },
  32208. {
  32209. name: "Macro",
  32210. height: math.unit(400, "feet")
  32211. },
  32212. {
  32213. name: "Megamacro",
  32214. height: math.unit(100, "miles")
  32215. },
  32216. ]
  32217. ))
  32218. characterMakers.push(() => makeCharacter(
  32219. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32220. {
  32221. frontSlim: {
  32222. height: math.unit(7, "feet"),
  32223. name: "Front (Slim)",
  32224. image: {
  32225. source: "./media/characters/issilora/front-slim.svg",
  32226. extra: 529 / 449,
  32227. bottom: 53 / 582
  32228. }
  32229. },
  32230. sideSlim: {
  32231. height: math.unit(7, "feet"),
  32232. name: "Side (Slim)",
  32233. image: {
  32234. source: "./media/characters/issilora/side-slim.svg",
  32235. extra: 570 / 480,
  32236. bottom: 30 / 600
  32237. }
  32238. },
  32239. backSlim: {
  32240. height: math.unit(7, "feet"),
  32241. name: "Back (Slim)",
  32242. image: {
  32243. source: "./media/characters/issilora/back-slim.svg",
  32244. extra: 537 / 455,
  32245. bottom: 46 / 583
  32246. }
  32247. },
  32248. frontBuff: {
  32249. height: math.unit(7, "feet"),
  32250. name: "Front (Buff)",
  32251. image: {
  32252. source: "./media/characters/issilora/front-buff.svg",
  32253. extra: 2310 / 2035,
  32254. bottom: 335 / 2645
  32255. }
  32256. },
  32257. head: {
  32258. height: math.unit(1.94, "feet"),
  32259. name: "Head",
  32260. image: {
  32261. source: "./media/characters/issilora/head.svg"
  32262. }
  32263. },
  32264. },
  32265. [
  32266. {
  32267. name: "Minimum",
  32268. height: math.unit(7, "feet")
  32269. },
  32270. {
  32271. name: "Comfortable",
  32272. height: math.unit(17, "feet")
  32273. },
  32274. {
  32275. name: "Fun Size",
  32276. height: math.unit(47, "feet")
  32277. },
  32278. {
  32279. name: "Natural Macro",
  32280. height: math.unit(137, "feet"),
  32281. default: true
  32282. },
  32283. {
  32284. name: "Maximum Kaiju",
  32285. height: math.unit(397, "feet")
  32286. },
  32287. ]
  32288. ))
  32289. characterMakers.push(() => makeCharacter(
  32290. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32291. {
  32292. front: {
  32293. height: math.unit(50 + 9/12, "feet"),
  32294. weight: math.unit(32.8, "tons"),
  32295. name: "Front",
  32296. image: {
  32297. source: "./media/characters/irb'iiritaahn/front.svg",
  32298. extra: 1878/1826,
  32299. bottom: 326/2204
  32300. }
  32301. },
  32302. back: {
  32303. height: math.unit(50 + 9/12, "feet"),
  32304. weight: math.unit(32.8, "tons"),
  32305. name: "Back",
  32306. image: {
  32307. source: "./media/characters/irb'iiritaahn/back.svg",
  32308. extra: 2052/2018,
  32309. bottom: 152/2204
  32310. }
  32311. },
  32312. head: {
  32313. height: math.unit(12.86, "feet"),
  32314. name: "Head",
  32315. image: {
  32316. source: "./media/characters/irb'iiritaahn/head.svg"
  32317. }
  32318. },
  32319. maw: {
  32320. height: math.unit(9.66, "feet"),
  32321. name: "Maw",
  32322. image: {
  32323. source: "./media/characters/irb'iiritaahn/maw.svg"
  32324. }
  32325. },
  32326. frontDick: {
  32327. height: math.unit(8.78461, "feet"),
  32328. name: "Front Dick",
  32329. image: {
  32330. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32331. }
  32332. },
  32333. rearDick: {
  32334. height: math.unit(8.78461, "feet"),
  32335. name: "Rear Dick",
  32336. image: {
  32337. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32338. }
  32339. },
  32340. rearDickUnfolded: {
  32341. height: math.unit(8.78, "feet"),
  32342. name: "Rear Dick (Unfolded)",
  32343. image: {
  32344. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32345. }
  32346. },
  32347. wings: {
  32348. height: math.unit(43, "feet"),
  32349. name: "Wings",
  32350. image: {
  32351. source: "./media/characters/irb'iiritaahn/wings.svg"
  32352. }
  32353. },
  32354. },
  32355. [
  32356. {
  32357. name: "Macro",
  32358. height: math.unit(50 + 9/12, "feet"),
  32359. default: true
  32360. },
  32361. ]
  32362. ))
  32363. characterMakers.push(() => makeCharacter(
  32364. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32365. {
  32366. front: {
  32367. height: math.unit(205, "cm"),
  32368. weight: math.unit(102, "kg"),
  32369. name: "Front",
  32370. image: {
  32371. source: "./media/characters/irbisgreif/front.svg",
  32372. extra: 785/706,
  32373. bottom: 13/798
  32374. }
  32375. },
  32376. back: {
  32377. height: math.unit(205, "cm"),
  32378. weight: math.unit(102, "kg"),
  32379. name: "Back",
  32380. image: {
  32381. source: "./media/characters/irbisgreif/back.svg",
  32382. extra: 713/701,
  32383. bottom: 26/739
  32384. }
  32385. },
  32386. frontDressed: {
  32387. height: math.unit(216, "cm"),
  32388. weight: math.unit(102, "kg"),
  32389. name: "Front-dressed",
  32390. image: {
  32391. source: "./media/characters/irbisgreif/front-dressed.svg",
  32392. extra: 902/776,
  32393. bottom: 14/916
  32394. }
  32395. },
  32396. sideDressed: {
  32397. height: math.unit(195, "cm"),
  32398. weight: math.unit(102, "kg"),
  32399. name: "Side-dressed",
  32400. image: {
  32401. source: "./media/characters/irbisgreif/side-dressed.svg",
  32402. extra: 788/688,
  32403. bottom: 21/809
  32404. }
  32405. },
  32406. backDressed: {
  32407. height: math.unit(216, "cm"),
  32408. weight: math.unit(102, "kg"),
  32409. name: "Back-dressed",
  32410. image: {
  32411. source: "./media/characters/irbisgreif/back-dressed.svg",
  32412. extra: 901/783,
  32413. bottom: 10/911
  32414. }
  32415. },
  32416. dick: {
  32417. height: math.unit(0.49, "feet"),
  32418. name: "Dick",
  32419. image: {
  32420. source: "./media/characters/irbisgreif/dick.svg"
  32421. }
  32422. },
  32423. wingTop: {
  32424. height: math.unit(1.93 , "feet"),
  32425. name: "Wing-top",
  32426. image: {
  32427. source: "./media/characters/irbisgreif/wing-top.svg"
  32428. }
  32429. },
  32430. wingBottom: {
  32431. height: math.unit(1.93 , "feet"),
  32432. name: "Wing-bottom",
  32433. image: {
  32434. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32435. }
  32436. },
  32437. },
  32438. [
  32439. {
  32440. name: "Normal",
  32441. height: math.unit(216, "cm"),
  32442. default: true
  32443. },
  32444. ]
  32445. ))
  32446. characterMakers.push(() => makeCharacter(
  32447. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32448. {
  32449. front: {
  32450. height: math.unit(6, "feet"),
  32451. weight: math.unit(150, "lb"),
  32452. name: "Front",
  32453. image: {
  32454. source: "./media/characters/pride/front.svg",
  32455. extra: 1299/1230,
  32456. bottom: 18/1317
  32457. }
  32458. },
  32459. },
  32460. [
  32461. {
  32462. name: "Normal",
  32463. height: math.unit(7, "feet")
  32464. },
  32465. {
  32466. name: "Mini-macro",
  32467. height: math.unit(11, "feet")
  32468. },
  32469. {
  32470. name: "Macro",
  32471. height: math.unit(15, "meters"),
  32472. default: true
  32473. },
  32474. {
  32475. name: "Macro+",
  32476. height: math.unit(40, "meters")
  32477. },
  32478. ]
  32479. ))
  32480. characterMakers.push(() => makeCharacter(
  32481. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32482. {
  32483. front: {
  32484. height: math.unit(4 + 2 / 12, "feet"),
  32485. weight: math.unit(95, "lb"),
  32486. name: "Front",
  32487. image: {
  32488. source: "./media/characters/vaelophis-nyx/front.svg",
  32489. extra: 2532/2330,
  32490. bottom: 0/2532
  32491. }
  32492. },
  32493. back: {
  32494. height: math.unit(4 + 2 / 12, "feet"),
  32495. weight: math.unit(95, "lb"),
  32496. name: "Back",
  32497. image: {
  32498. source: "./media/characters/vaelophis-nyx/back.svg",
  32499. extra: 2484/2361,
  32500. bottom: 0/2484
  32501. }
  32502. },
  32503. feralSide: {
  32504. height: math.unit(2 + 1/12, "feet"),
  32505. weight: math.unit(20, "lb"),
  32506. name: "Feral (Side)",
  32507. image: {
  32508. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32509. extra: 1721/1581,
  32510. bottom: 70/1791
  32511. }
  32512. },
  32513. feralLazing: {
  32514. height: math.unit(1.08, "feet"),
  32515. weight: math.unit(20, "lb"),
  32516. name: "Feral (Lazing)",
  32517. image: {
  32518. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32519. extra: 822/822,
  32520. bottom: 248/1070
  32521. }
  32522. },
  32523. ear: {
  32524. height: math.unit(0.416, "feet"),
  32525. name: "Ear",
  32526. image: {
  32527. source: "./media/characters/vaelophis-nyx/ear.svg"
  32528. }
  32529. },
  32530. eye: {
  32531. height: math.unit(0.0748, "feet"),
  32532. name: "Eye",
  32533. image: {
  32534. source: "./media/characters/vaelophis-nyx/eye.svg"
  32535. }
  32536. },
  32537. mouth: {
  32538. height: math.unit(0.378, "feet"),
  32539. name: "Mouth",
  32540. image: {
  32541. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32542. }
  32543. },
  32544. spade: {
  32545. height: math.unit(0.55, "feet"),
  32546. name: "Spade",
  32547. image: {
  32548. source: "./media/characters/vaelophis-nyx/spade.svg"
  32549. }
  32550. },
  32551. },
  32552. [
  32553. {
  32554. name: "Normal",
  32555. height: math.unit(4 + 2/12, "feet"),
  32556. default: true
  32557. },
  32558. ]
  32559. ))
  32560. characterMakers.push(() => makeCharacter(
  32561. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32562. {
  32563. front: {
  32564. height: math.unit(7, "feet"),
  32565. weight: math.unit(231, "lb"),
  32566. name: "Front",
  32567. image: {
  32568. source: "./media/characters/flux/front.svg",
  32569. extra: 919/871,
  32570. bottom: 0/919
  32571. }
  32572. },
  32573. back: {
  32574. height: math.unit(7, "feet"),
  32575. weight: math.unit(231, "lb"),
  32576. name: "Back",
  32577. image: {
  32578. source: "./media/characters/flux/back.svg",
  32579. extra: 1040/992,
  32580. bottom: 0/1040
  32581. }
  32582. },
  32583. frontDressed: {
  32584. height: math.unit(7, "feet"),
  32585. weight: math.unit(231, "lb"),
  32586. name: "Front (Dressed)",
  32587. image: {
  32588. source: "./media/characters/flux/front-dressed.svg",
  32589. extra: 919/871,
  32590. bottom: 0/919
  32591. }
  32592. },
  32593. feralSide: {
  32594. height: math.unit(5, "feet"),
  32595. weight: math.unit(150, "lb"),
  32596. name: "Feral (Side)",
  32597. image: {
  32598. source: "./media/characters/flux/feral-side.svg",
  32599. extra: 598/528,
  32600. bottom: 28/626
  32601. }
  32602. },
  32603. head: {
  32604. height: math.unit(1.585, "feet"),
  32605. name: "Head",
  32606. image: {
  32607. source: "./media/characters/flux/head.svg"
  32608. }
  32609. },
  32610. headSide: {
  32611. height: math.unit(1.74, "feet"),
  32612. name: "Head (Side)",
  32613. image: {
  32614. source: "./media/characters/flux/head-side.svg"
  32615. }
  32616. },
  32617. headSideFire: {
  32618. height: math.unit(1.76, "feet"),
  32619. name: "Head (Side, Fire)",
  32620. image: {
  32621. source: "./media/characters/flux/head-side-fire.svg"
  32622. }
  32623. },
  32624. },
  32625. [
  32626. {
  32627. name: "Normal",
  32628. height: math.unit(7, "feet"),
  32629. default: true
  32630. },
  32631. ]
  32632. ))
  32633. characterMakers.push(() => makeCharacter(
  32634. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32635. {
  32636. front: {
  32637. height: math.unit(9, "feet"),
  32638. weight: math.unit(1012, "lb"),
  32639. name: "Front",
  32640. image: {
  32641. source: "./media/characters/ulfra-lupae/front.svg",
  32642. extra: 1083/1011,
  32643. bottom: 67/1150
  32644. }
  32645. },
  32646. },
  32647. [
  32648. {
  32649. name: "Micro",
  32650. height: math.unit(6, "inches")
  32651. },
  32652. {
  32653. name: "Socializing",
  32654. height: math.unit(6 + 5/12, "feet")
  32655. },
  32656. {
  32657. name: "Normal",
  32658. height: math.unit(9, "feet"),
  32659. default: true
  32660. },
  32661. {
  32662. name: "Macro",
  32663. height: math.unit(150, "feet")
  32664. },
  32665. ]
  32666. ))
  32667. characterMakers.push(() => makeCharacter(
  32668. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32669. {
  32670. front: {
  32671. height: math.unit(5 + 2/12, "feet"),
  32672. weight: math.unit(120, "lb"),
  32673. name: "Front",
  32674. image: {
  32675. source: "./media/characters/timber/front.svg",
  32676. extra: 2814/2705,
  32677. bottom: 181/2995
  32678. }
  32679. },
  32680. },
  32681. [
  32682. {
  32683. name: "Normal",
  32684. height: math.unit(5 + 2/12, "feet"),
  32685. default: true
  32686. },
  32687. ]
  32688. ))
  32689. characterMakers.push(() => makeCharacter(
  32690. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32691. {
  32692. front: {
  32693. height: math.unit(9, "feet"),
  32694. name: "Front",
  32695. image: {
  32696. source: "./media/characters/nicki/front.svg",
  32697. extra: 1240/990,
  32698. bottom: 45/1285
  32699. },
  32700. form: "anthro",
  32701. default: true
  32702. },
  32703. side: {
  32704. height: math.unit(9, "feet"),
  32705. name: "Side",
  32706. image: {
  32707. source: "./media/characters/nicki/side.svg",
  32708. extra: 1047/973,
  32709. bottom: 61/1108
  32710. },
  32711. form: "anthro"
  32712. },
  32713. back: {
  32714. height: math.unit(9, "feet"),
  32715. name: "Back",
  32716. image: {
  32717. source: "./media/characters/nicki/back.svg",
  32718. extra: 1006/965,
  32719. bottom: 39/1045
  32720. },
  32721. form: "anthro"
  32722. },
  32723. taur: {
  32724. height: math.unit(15, "feet"),
  32725. name: "Taur",
  32726. image: {
  32727. source: "./media/characters/nicki/taur.svg",
  32728. extra: 1592/1347,
  32729. bottom: 0/1592
  32730. },
  32731. form: "taur",
  32732. default: true
  32733. },
  32734. },
  32735. [
  32736. {
  32737. name: "Normal",
  32738. height: math.unit(9, "feet"),
  32739. form: "anthro",
  32740. default: true
  32741. },
  32742. {
  32743. name: "Normal",
  32744. height: math.unit(15, "feet"),
  32745. form: "taur",
  32746. default: true
  32747. }
  32748. ],
  32749. {
  32750. "anthro": {
  32751. name: "Anthro",
  32752. default: true
  32753. },
  32754. "taur": {
  32755. name: "Taur"
  32756. }
  32757. }
  32758. ))
  32759. characterMakers.push(() => makeCharacter(
  32760. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32761. {
  32762. front: {
  32763. height: math.unit(7 + 10/12, "feet"),
  32764. weight: math.unit(3.5, "tons"),
  32765. name: "Front",
  32766. image: {
  32767. source: "./media/characters/lee/front.svg",
  32768. extra: 1773/1615,
  32769. bottom: 86/1859
  32770. }
  32771. },
  32772. hand: {
  32773. height: math.unit(1.78, "feet"),
  32774. name: "Hand",
  32775. image: {
  32776. source: "./media/characters/lee/hand.svg"
  32777. }
  32778. },
  32779. maw: {
  32780. height: math.unit(1.18, "feet"),
  32781. name: "Maw",
  32782. image: {
  32783. source: "./media/characters/lee/maw.svg"
  32784. }
  32785. },
  32786. },
  32787. [
  32788. {
  32789. name: "Normal",
  32790. height: math.unit(7 + 10/12, "feet"),
  32791. default: true
  32792. },
  32793. ]
  32794. ))
  32795. characterMakers.push(() => makeCharacter(
  32796. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32797. {
  32798. front: {
  32799. height: math.unit(9, "feet"),
  32800. name: "Front",
  32801. image: {
  32802. source: "./media/characters/guti/front.svg",
  32803. extra: 4551/4355,
  32804. bottom: 123/4674
  32805. }
  32806. },
  32807. tongue: {
  32808. height: math.unit(1, "feet"),
  32809. name: "Tongue",
  32810. image: {
  32811. source: "./media/characters/guti/tongue.svg"
  32812. }
  32813. },
  32814. paw: {
  32815. height: math.unit(1.18, "feet"),
  32816. name: "Paw",
  32817. image: {
  32818. source: "./media/characters/guti/paw.svg"
  32819. }
  32820. },
  32821. },
  32822. [
  32823. {
  32824. name: "Normal",
  32825. height: math.unit(9, "feet"),
  32826. default: true
  32827. },
  32828. ]
  32829. ))
  32830. characterMakers.push(() => makeCharacter(
  32831. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32832. {
  32833. side: {
  32834. height: math.unit(5, "meters"),
  32835. name: "Side",
  32836. image: {
  32837. source: "./media/characters/vesper/side.svg",
  32838. extra: 1605/1518,
  32839. bottom: 0/1605
  32840. }
  32841. },
  32842. },
  32843. [
  32844. {
  32845. name: "Small",
  32846. height: math.unit(5, "meters")
  32847. },
  32848. {
  32849. name: "Sage",
  32850. height: math.unit(100, "meters"),
  32851. default: true
  32852. },
  32853. {
  32854. name: "Fun Size",
  32855. height: math.unit(600, "meters")
  32856. },
  32857. {
  32858. name: "Goddess",
  32859. height: math.unit(20000, "km")
  32860. },
  32861. {
  32862. name: "Maximum",
  32863. height: math.unit(5, "galaxies")
  32864. },
  32865. ]
  32866. ))
  32867. characterMakers.push(() => makeCharacter(
  32868. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32869. {
  32870. front: {
  32871. height: math.unit(6 + 3/12, "feet"),
  32872. weight: math.unit(190, "lb"),
  32873. name: "Front",
  32874. image: {
  32875. source: "./media/characters/gawain/front.svg",
  32876. extra: 2222/2139,
  32877. bottom: 90/2312
  32878. }
  32879. },
  32880. back: {
  32881. height: math.unit(6 + 3/12, "feet"),
  32882. weight: math.unit(190, "lb"),
  32883. name: "Back",
  32884. image: {
  32885. source: "./media/characters/gawain/back.svg",
  32886. extra: 2199/2111,
  32887. bottom: 73/2272
  32888. }
  32889. },
  32890. },
  32891. [
  32892. {
  32893. name: "Normal",
  32894. height: math.unit(6 + 3/12, "feet"),
  32895. default: true
  32896. },
  32897. ]
  32898. ))
  32899. characterMakers.push(() => makeCharacter(
  32900. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32901. {
  32902. side: {
  32903. height: math.unit(3.5, "meters"),
  32904. weight: math.unit(16000, "lb"),
  32905. name: "Side",
  32906. image: {
  32907. source: "./media/characters/dascalti/side.svg",
  32908. extra: 392/273,
  32909. bottom: 47/439
  32910. }
  32911. },
  32912. breath: {
  32913. height: math.unit(7.4, "feet"),
  32914. name: "Breath",
  32915. image: {
  32916. source: "./media/characters/dascalti/breath.svg"
  32917. }
  32918. },
  32919. fed: {
  32920. height: math.unit(3.6, "meters"),
  32921. weight: math.unit(16000, "lb"),
  32922. name: "Fed",
  32923. image: {
  32924. source: "./media/characters/dascalti/fed.svg",
  32925. extra: 1419/820,
  32926. bottom: 95/1514
  32927. }
  32928. },
  32929. },
  32930. [
  32931. {
  32932. name: "Normal",
  32933. height: math.unit(3.5, "meters"),
  32934. default: true
  32935. },
  32936. ]
  32937. ))
  32938. characterMakers.push(() => makeCharacter(
  32939. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32940. {
  32941. front: {
  32942. height: math.unit(3 + 5/12, "feet"),
  32943. name: "Front",
  32944. image: {
  32945. source: "./media/characters/mauve/front.svg",
  32946. extra: 1126/1033,
  32947. bottom: 65/1191
  32948. }
  32949. },
  32950. side: {
  32951. height: math.unit(3 + 5/12, "feet"),
  32952. name: "Side",
  32953. image: {
  32954. source: "./media/characters/mauve/side.svg",
  32955. extra: 1089/1001,
  32956. bottom: 29/1118
  32957. }
  32958. },
  32959. back: {
  32960. height: math.unit(3 + 5/12, "feet"),
  32961. name: "Back",
  32962. image: {
  32963. source: "./media/characters/mauve/back.svg",
  32964. extra: 1173/1053,
  32965. bottom: 109/1282
  32966. }
  32967. },
  32968. },
  32969. [
  32970. {
  32971. name: "Normal",
  32972. height: math.unit(3 + 5/12, "feet"),
  32973. default: true
  32974. },
  32975. ]
  32976. ))
  32977. characterMakers.push(() => makeCharacter(
  32978. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32979. {
  32980. front: {
  32981. height: math.unit(6 + 3/12, "feet"),
  32982. weight: math.unit(430, "lb"),
  32983. name: "Front",
  32984. image: {
  32985. source: "./media/characters/carlos/front.svg",
  32986. extra: 1964/1913,
  32987. bottom: 70/2034
  32988. }
  32989. },
  32990. },
  32991. [
  32992. {
  32993. name: "Normal",
  32994. height: math.unit(6 + 3/12, "feet"),
  32995. default: true
  32996. },
  32997. ]
  32998. ))
  32999. characterMakers.push(() => makeCharacter(
  33000. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33001. {
  33002. back: {
  33003. height: math.unit(5 + 10/12, "feet"),
  33004. weight: math.unit(200, "lb"),
  33005. name: "Back",
  33006. image: {
  33007. source: "./media/characters/jax/back.svg",
  33008. extra: 764/739,
  33009. bottom: 25/789
  33010. }
  33011. },
  33012. },
  33013. [
  33014. {
  33015. name: "Normal",
  33016. height: math.unit(5 + 10/12, "feet"),
  33017. default: true
  33018. },
  33019. ]
  33020. ))
  33021. characterMakers.push(() => makeCharacter(
  33022. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33023. {
  33024. front: {
  33025. height: math.unit(8, "feet"),
  33026. weight: math.unit(250, "lb"),
  33027. name: "Front",
  33028. image: {
  33029. source: "./media/characters/eikthynir/front.svg",
  33030. extra: 1332/1166,
  33031. bottom: 82/1414
  33032. }
  33033. },
  33034. back: {
  33035. height: math.unit(8, "feet"),
  33036. weight: math.unit(250, "lb"),
  33037. name: "Back",
  33038. image: {
  33039. source: "./media/characters/eikthynir/back.svg",
  33040. extra: 1342/1190,
  33041. bottom: 19/1361
  33042. }
  33043. },
  33044. dick: {
  33045. height: math.unit(2.35, "feet"),
  33046. name: "Dick",
  33047. image: {
  33048. source: "./media/characters/eikthynir/dick.svg"
  33049. }
  33050. },
  33051. },
  33052. [
  33053. {
  33054. name: "Normal",
  33055. height: math.unit(8, "feet"),
  33056. default: true
  33057. },
  33058. ]
  33059. ))
  33060. characterMakers.push(() => makeCharacter(
  33061. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33062. {
  33063. front: {
  33064. height: math.unit(99, "meters"),
  33065. weight: math.unit(13000, "tons"),
  33066. name: "Front",
  33067. image: {
  33068. source: "./media/characters/zlmos/front.svg",
  33069. extra: 2202/1992,
  33070. bottom: 315/2517
  33071. }
  33072. },
  33073. },
  33074. [
  33075. {
  33076. name: "Macro",
  33077. height: math.unit(99, "meters"),
  33078. default: true
  33079. },
  33080. ]
  33081. ))
  33082. characterMakers.push(() => makeCharacter(
  33083. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33084. {
  33085. front: {
  33086. height: math.unit(6 + 5/12, "feet"),
  33087. name: "Front",
  33088. image: {
  33089. source: "./media/characters/purri/front.svg",
  33090. extra: 1698/1610,
  33091. bottom: 32/1730
  33092. }
  33093. },
  33094. frontAlt: {
  33095. height: math.unit(6 + 5/12, "feet"),
  33096. name: "Front (Alt)",
  33097. image: {
  33098. source: "./media/characters/purri/front-alt.svg",
  33099. extra: 450/420,
  33100. bottom: 26/476
  33101. }
  33102. },
  33103. boots: {
  33104. height: math.unit(5.5, "feet"),
  33105. name: "Boots",
  33106. image: {
  33107. source: "./media/characters/purri/boots.svg",
  33108. extra: 905/853,
  33109. bottom: 18/923
  33110. }
  33111. },
  33112. lying: {
  33113. height: math.unit(2, "feet"),
  33114. name: "Lying",
  33115. image: {
  33116. source: "./media/characters/purri/lying.svg",
  33117. extra: 940/843,
  33118. bottom: 146/1086
  33119. }
  33120. },
  33121. devious: {
  33122. height: math.unit(1.77, "feet"),
  33123. name: "Devious",
  33124. image: {
  33125. source: "./media/characters/purri/devious.svg",
  33126. extra: 1440/1155,
  33127. bottom: 147/1587
  33128. }
  33129. },
  33130. bean: {
  33131. height: math.unit(1.94, "feet"),
  33132. name: "Bean",
  33133. image: {
  33134. source: "./media/characters/purri/bean.svg"
  33135. }
  33136. },
  33137. },
  33138. [
  33139. {
  33140. name: "Micro",
  33141. height: math.unit(1, "mm")
  33142. },
  33143. {
  33144. name: "Normal",
  33145. height: math.unit(6 + 5/12, "feet"),
  33146. default: true
  33147. },
  33148. {
  33149. name: "Macro :3c",
  33150. height: math.unit(2, "miles")
  33151. },
  33152. ]
  33153. ))
  33154. characterMakers.push(() => makeCharacter(
  33155. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33156. {
  33157. front: {
  33158. height: math.unit(6 + 2/12, "feet"),
  33159. weight: math.unit(250, "lb"),
  33160. name: "Front",
  33161. image: {
  33162. source: "./media/characters/moonlight/front.svg",
  33163. extra: 1044/908,
  33164. bottom: 56/1100
  33165. }
  33166. },
  33167. feral: {
  33168. height: math.unit(3 + 1/12, "feet"),
  33169. weight: math.unit(50, "kg"),
  33170. name: "Feral",
  33171. image: {
  33172. source: "./media/characters/moonlight/feral.svg",
  33173. extra: 3705/2791,
  33174. bottom: 145/3850
  33175. }
  33176. },
  33177. paw: {
  33178. height: math.unit(1, "feet"),
  33179. name: "Paw",
  33180. image: {
  33181. source: "./media/characters/moonlight/paw.svg"
  33182. }
  33183. },
  33184. paws: {
  33185. height: math.unit(0.98, "feet"),
  33186. name: "Paws",
  33187. image: {
  33188. source: "./media/characters/moonlight/paws.svg",
  33189. extra: 939/939,
  33190. bottom: 50/989
  33191. }
  33192. },
  33193. mouth: {
  33194. height: math.unit(0.48, "feet"),
  33195. name: "Mouth",
  33196. image: {
  33197. source: "./media/characters/moonlight/mouth.svg"
  33198. }
  33199. },
  33200. dick: {
  33201. height: math.unit(1.46, "feet"),
  33202. name: "Dick",
  33203. image: {
  33204. source: "./media/characters/moonlight/dick.svg"
  33205. }
  33206. },
  33207. },
  33208. [
  33209. {
  33210. name: "Normal",
  33211. height: math.unit(6 + 2/12, "feet"),
  33212. default: true
  33213. },
  33214. {
  33215. name: "Macro",
  33216. height: math.unit(300, "feet")
  33217. },
  33218. {
  33219. name: "Macro+",
  33220. height: math.unit(1, "mile")
  33221. },
  33222. {
  33223. name: "Mt. Moon",
  33224. height: math.unit(5, "miles")
  33225. },
  33226. {
  33227. name: "Megamacro",
  33228. height: math.unit(15, "miles")
  33229. },
  33230. ]
  33231. ))
  33232. characterMakers.push(() => makeCharacter(
  33233. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33234. {
  33235. back: {
  33236. height: math.unit(6, "feet"),
  33237. weight: math.unit(150, "lb"),
  33238. name: "Back",
  33239. image: {
  33240. source: "./media/characters/sylen/back.svg",
  33241. extra: 1335/1273,
  33242. bottom: 107/1442
  33243. }
  33244. },
  33245. },
  33246. [
  33247. {
  33248. name: "Normal",
  33249. height: math.unit(5 + 5/12, "feet")
  33250. },
  33251. {
  33252. name: "Megamacro",
  33253. height: math.unit(3, "miles"),
  33254. default: true
  33255. },
  33256. ]
  33257. ))
  33258. characterMakers.push(() => makeCharacter(
  33259. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33260. {
  33261. front: {
  33262. height: math.unit(6, "feet"),
  33263. weight: math.unit(190, "lb"),
  33264. name: "Front",
  33265. image: {
  33266. source: "./media/characters/huttser/front.svg",
  33267. extra: 1152/1058,
  33268. bottom: 23/1175
  33269. }
  33270. },
  33271. side: {
  33272. height: math.unit(6, "feet"),
  33273. weight: math.unit(190, "lb"),
  33274. name: "Side",
  33275. image: {
  33276. source: "./media/characters/huttser/side.svg",
  33277. extra: 1174/1065,
  33278. bottom: 18/1192
  33279. }
  33280. },
  33281. back: {
  33282. height: math.unit(6, "feet"),
  33283. weight: math.unit(190, "lb"),
  33284. name: "Back",
  33285. image: {
  33286. source: "./media/characters/huttser/back.svg",
  33287. extra: 1158/1056,
  33288. bottom: 12/1170
  33289. }
  33290. },
  33291. },
  33292. [
  33293. ]
  33294. ))
  33295. characterMakers.push(() => makeCharacter(
  33296. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33297. {
  33298. side: {
  33299. height: math.unit(12 + 9/12, "feet"),
  33300. weight: math.unit(15000, "lb"),
  33301. name: "Side",
  33302. image: {
  33303. source: "./media/characters/faan/side.svg",
  33304. extra: 2747/2697,
  33305. bottom: 0/2747
  33306. }
  33307. },
  33308. front: {
  33309. height: math.unit(12 + 9/12, "feet"),
  33310. weight: math.unit(15000, "lb"),
  33311. name: "Front",
  33312. image: {
  33313. source: "./media/characters/faan/front.svg",
  33314. extra: 607/571,
  33315. bottom: 24/631
  33316. }
  33317. },
  33318. head: {
  33319. height: math.unit(2.85, "feet"),
  33320. name: "Head",
  33321. image: {
  33322. source: "./media/characters/faan/head.svg"
  33323. }
  33324. },
  33325. headAlt: {
  33326. height: math.unit(3.13, "feet"),
  33327. name: "Head-alt",
  33328. image: {
  33329. source: "./media/characters/faan/head-alt.svg"
  33330. }
  33331. },
  33332. },
  33333. [
  33334. {
  33335. name: "Normal",
  33336. height: math.unit(12 + 9/12, "feet"),
  33337. default: true
  33338. },
  33339. ]
  33340. ))
  33341. characterMakers.push(() => makeCharacter(
  33342. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33343. {
  33344. front: {
  33345. height: math.unit(6, "feet"),
  33346. weight: math.unit(300, "lb"),
  33347. name: "Front",
  33348. image: {
  33349. source: "./media/characters/tanio/front.svg",
  33350. extra: 711/673,
  33351. bottom: 25/736
  33352. }
  33353. },
  33354. },
  33355. [
  33356. {
  33357. name: "Normal",
  33358. height: math.unit(6, "feet"),
  33359. default: true
  33360. },
  33361. ]
  33362. ))
  33363. characterMakers.push(() => makeCharacter(
  33364. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33365. {
  33366. front: {
  33367. height: math.unit(3, "inches"),
  33368. name: "Front",
  33369. image: {
  33370. source: "./media/characters/noboru/front.svg",
  33371. extra: 1039/932,
  33372. bottom: 18/1057
  33373. }
  33374. },
  33375. },
  33376. [
  33377. {
  33378. name: "Micro",
  33379. height: math.unit(3, "inches"),
  33380. default: true
  33381. },
  33382. ]
  33383. ))
  33384. characterMakers.push(() => makeCharacter(
  33385. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33386. {
  33387. front: {
  33388. height: math.unit(1.85, "meters"),
  33389. weight: math.unit(80, "kg"),
  33390. name: "Front",
  33391. image: {
  33392. source: "./media/characters/daniel-barrett/front.svg",
  33393. extra: 355/337,
  33394. bottom: 9/364
  33395. }
  33396. },
  33397. },
  33398. [
  33399. {
  33400. name: "Pico",
  33401. height: math.unit(0.0433, "mm")
  33402. },
  33403. {
  33404. name: "Nano",
  33405. height: math.unit(1.5, "mm")
  33406. },
  33407. {
  33408. name: "Micro",
  33409. height: math.unit(5.3, "cm"),
  33410. default: true
  33411. },
  33412. {
  33413. name: "Normal",
  33414. height: math.unit(1.85, "meters")
  33415. },
  33416. {
  33417. name: "Macro",
  33418. height: math.unit(64.7, "meters")
  33419. },
  33420. {
  33421. name: "Megamacro",
  33422. height: math.unit(2.26, "km")
  33423. },
  33424. {
  33425. name: "Gigamacro",
  33426. height: math.unit(79, "km")
  33427. },
  33428. {
  33429. name: "Teramacro",
  33430. height: math.unit(2765, "km")
  33431. },
  33432. {
  33433. name: "Petamacro",
  33434. height: math.unit(96678, "km")
  33435. },
  33436. ]
  33437. ))
  33438. characterMakers.push(() => makeCharacter(
  33439. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33440. {
  33441. front: {
  33442. height: math.unit(30, "meters"),
  33443. weight: math.unit(400, "tons"),
  33444. name: "Front",
  33445. image: {
  33446. source: "./media/characters/zeel/front.svg",
  33447. extra: 2599/2599,
  33448. bottom: 226/2825
  33449. }
  33450. },
  33451. },
  33452. [
  33453. {
  33454. name: "Macro",
  33455. height: math.unit(30, "meters"),
  33456. default: true
  33457. },
  33458. ]
  33459. ))
  33460. characterMakers.push(() => makeCharacter(
  33461. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33462. {
  33463. front: {
  33464. height: math.unit(6 + 7/12, "feet"),
  33465. weight: math.unit(210, "lb"),
  33466. name: "Front",
  33467. image: {
  33468. source: "./media/characters/tarn/front.svg",
  33469. extra: 3517/3220,
  33470. bottom: 91/3608
  33471. }
  33472. },
  33473. back: {
  33474. height: math.unit(6 + 7/12, "feet"),
  33475. weight: math.unit(210, "lb"),
  33476. name: "Back",
  33477. image: {
  33478. source: "./media/characters/tarn/back.svg",
  33479. extra: 3566/3241,
  33480. bottom: 34/3600
  33481. }
  33482. },
  33483. dick: {
  33484. height: math.unit(1.65, "feet"),
  33485. name: "Dick",
  33486. image: {
  33487. source: "./media/characters/tarn/dick.svg"
  33488. }
  33489. },
  33490. paw: {
  33491. height: math.unit(1.80, "feet"),
  33492. name: "Paw",
  33493. image: {
  33494. source: "./media/characters/tarn/paw.svg"
  33495. }
  33496. },
  33497. tongue: {
  33498. height: math.unit(0.97, "feet"),
  33499. name: "Tongue",
  33500. image: {
  33501. source: "./media/characters/tarn/tongue.svg"
  33502. }
  33503. },
  33504. },
  33505. [
  33506. {
  33507. name: "Micro",
  33508. height: math.unit(4, "inches")
  33509. },
  33510. {
  33511. name: "Normal",
  33512. height: math.unit(6 + 7/12, "feet"),
  33513. default: true
  33514. },
  33515. {
  33516. name: "Macro",
  33517. height: math.unit(300, "feet")
  33518. },
  33519. ]
  33520. ))
  33521. characterMakers.push(() => makeCharacter(
  33522. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33523. {
  33524. front: {
  33525. height: math.unit(5 + 7/12, "feet"),
  33526. weight: math.unit(80, "kg"),
  33527. name: "Front",
  33528. image: {
  33529. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33530. extra: 3023/2865,
  33531. bottom: 33/3056
  33532. }
  33533. },
  33534. back: {
  33535. height: math.unit(5 + 7/12, "feet"),
  33536. weight: math.unit(80, "kg"),
  33537. name: "Back",
  33538. image: {
  33539. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33540. extra: 3020/2886,
  33541. bottom: 30/3050
  33542. }
  33543. },
  33544. dick: {
  33545. height: math.unit(0.98, "feet"),
  33546. name: "Dick",
  33547. image: {
  33548. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33549. }
  33550. },
  33551. anatomy: {
  33552. height: math.unit(2.86, "feet"),
  33553. name: "Anatomy",
  33554. image: {
  33555. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33556. }
  33557. },
  33558. },
  33559. [
  33560. {
  33561. name: "Really Small",
  33562. height: math.unit(2, "inches")
  33563. },
  33564. {
  33565. name: "Micro",
  33566. height: math.unit(5.583, "inches")
  33567. },
  33568. {
  33569. name: "Normal",
  33570. height: math.unit(5 + 7/12, "feet"),
  33571. default: true
  33572. },
  33573. {
  33574. name: "Macro",
  33575. height: math.unit(67, "feet")
  33576. },
  33577. {
  33578. name: "Megamacro",
  33579. height: math.unit(134, "feet")
  33580. },
  33581. ]
  33582. ))
  33583. characterMakers.push(() => makeCharacter(
  33584. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33585. {
  33586. front: {
  33587. height: math.unit(9, "feet"),
  33588. weight: math.unit(120, "lb"),
  33589. name: "Front",
  33590. image: {
  33591. source: "./media/characters/sally/front.svg",
  33592. extra: 1506/1349,
  33593. bottom: 66/1572
  33594. }
  33595. },
  33596. },
  33597. [
  33598. {
  33599. name: "Normal",
  33600. height: math.unit(9, "feet"),
  33601. default: true
  33602. },
  33603. ]
  33604. ))
  33605. characterMakers.push(() => makeCharacter(
  33606. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33607. {
  33608. front: {
  33609. height: math.unit(8, "feet"),
  33610. weight: math.unit(900, "lb"),
  33611. name: "Front",
  33612. image: {
  33613. source: "./media/characters/owen/front.svg",
  33614. extra: 1761/1657,
  33615. bottom: 74/1835
  33616. }
  33617. },
  33618. side: {
  33619. height: math.unit(8, "feet"),
  33620. weight: math.unit(900, "lb"),
  33621. name: "Side",
  33622. image: {
  33623. source: "./media/characters/owen/side.svg",
  33624. extra: 1797/1734,
  33625. bottom: 30/1827
  33626. }
  33627. },
  33628. back: {
  33629. height: math.unit(8, "feet"),
  33630. weight: math.unit(900, "lb"),
  33631. name: "Back",
  33632. image: {
  33633. source: "./media/characters/owen/back.svg",
  33634. extra: 1796/1706,
  33635. bottom: 59/1855
  33636. }
  33637. },
  33638. maw: {
  33639. height: math.unit(1.76, "feet"),
  33640. name: "Maw",
  33641. image: {
  33642. source: "./media/characters/owen/maw.svg"
  33643. }
  33644. },
  33645. },
  33646. [
  33647. {
  33648. name: "Normal",
  33649. height: math.unit(8, "feet"),
  33650. default: true
  33651. },
  33652. ]
  33653. ))
  33654. characterMakers.push(() => makeCharacter(
  33655. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33656. {
  33657. front: {
  33658. height: math.unit(4, "feet"),
  33659. weight: math.unit(400, "lb"),
  33660. name: "Front",
  33661. image: {
  33662. source: "./media/characters/ryth/front.svg",
  33663. extra: 1920/1748,
  33664. bottom: 42/1962
  33665. }
  33666. },
  33667. back: {
  33668. height: math.unit(4, "feet"),
  33669. weight: math.unit(400, "lb"),
  33670. name: "Back",
  33671. image: {
  33672. source: "./media/characters/ryth/back.svg",
  33673. extra: 1897/1690,
  33674. bottom: 89/1986
  33675. }
  33676. },
  33677. mouth: {
  33678. height: math.unit(1.39, "feet"),
  33679. name: "Mouth",
  33680. image: {
  33681. source: "./media/characters/ryth/mouth.svg"
  33682. }
  33683. },
  33684. tailmaw: {
  33685. height: math.unit(1.23, "feet"),
  33686. name: "Tailmaw",
  33687. image: {
  33688. source: "./media/characters/ryth/tailmaw.svg"
  33689. }
  33690. },
  33691. goia: {
  33692. height: math.unit(4, "meters"),
  33693. weight: math.unit(10800, "lb"),
  33694. name: "Goia",
  33695. image: {
  33696. source: "./media/characters/ryth/goia.svg",
  33697. extra: 745/640,
  33698. bottom: 107/852
  33699. }
  33700. },
  33701. goiaFront: {
  33702. height: math.unit(4, "meters"),
  33703. weight: math.unit(10800, "lb"),
  33704. name: "Goia (Front)",
  33705. image: {
  33706. source: "./media/characters/ryth/goia-front.svg",
  33707. extra: 750/586,
  33708. bottom: 114/864
  33709. }
  33710. },
  33711. goiaMaw: {
  33712. height: math.unit(5.55, "feet"),
  33713. name: "Goia Maw",
  33714. image: {
  33715. source: "./media/characters/ryth/goia-maw.svg"
  33716. }
  33717. },
  33718. goiaForepaw: {
  33719. height: math.unit(3.5, "feet"),
  33720. name: "Goia Forepaw",
  33721. image: {
  33722. source: "./media/characters/ryth/goia-forepaw.svg"
  33723. }
  33724. },
  33725. goiaHindpaw: {
  33726. height: math.unit(5.55, "feet"),
  33727. name: "Goia Hindpaw",
  33728. image: {
  33729. source: "./media/characters/ryth/goia-hindpaw.svg"
  33730. }
  33731. },
  33732. },
  33733. [
  33734. {
  33735. name: "Normal",
  33736. height: math.unit(4, "feet"),
  33737. default: true
  33738. },
  33739. ]
  33740. ))
  33741. characterMakers.push(() => makeCharacter(
  33742. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33743. {
  33744. front: {
  33745. height: math.unit(7, "feet"),
  33746. weight: math.unit(180, "lb"),
  33747. name: "Front",
  33748. image: {
  33749. source: "./media/characters/necrolance/front.svg",
  33750. extra: 1062/947,
  33751. bottom: 41/1103
  33752. }
  33753. },
  33754. back: {
  33755. height: math.unit(7, "feet"),
  33756. weight: math.unit(180, "lb"),
  33757. name: "Back",
  33758. image: {
  33759. source: "./media/characters/necrolance/back.svg",
  33760. extra: 1045/984,
  33761. bottom: 14/1059
  33762. }
  33763. },
  33764. wing: {
  33765. height: math.unit(2.67, "feet"),
  33766. name: "Wing",
  33767. image: {
  33768. source: "./media/characters/necrolance/wing.svg"
  33769. }
  33770. },
  33771. },
  33772. [
  33773. {
  33774. name: "Normal",
  33775. height: math.unit(7, "feet"),
  33776. default: true
  33777. },
  33778. ]
  33779. ))
  33780. characterMakers.push(() => makeCharacter(
  33781. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33782. {
  33783. front: {
  33784. height: math.unit(76, "meters"),
  33785. weight: math.unit(30000, "tons"),
  33786. name: "Front",
  33787. image: {
  33788. source: "./media/characters/tyler/front.svg",
  33789. extra: 1640/1640,
  33790. bottom: 114/1754
  33791. }
  33792. },
  33793. },
  33794. [
  33795. {
  33796. name: "Macro",
  33797. height: math.unit(76, "meters"),
  33798. default: true
  33799. },
  33800. ]
  33801. ))
  33802. characterMakers.push(() => makeCharacter(
  33803. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33804. {
  33805. front: {
  33806. height: math.unit(4 + 11/12, "feet"),
  33807. weight: math.unit(132, "lb"),
  33808. name: "Front",
  33809. image: {
  33810. source: "./media/characters/icey/front.svg",
  33811. extra: 2750/2550,
  33812. bottom: 33/2783
  33813. }
  33814. },
  33815. back: {
  33816. height: math.unit(4 + 11/12, "feet"),
  33817. weight: math.unit(132, "lb"),
  33818. name: "Back",
  33819. image: {
  33820. source: "./media/characters/icey/back.svg",
  33821. extra: 2624/2481,
  33822. bottom: 35/2659
  33823. }
  33824. },
  33825. },
  33826. [
  33827. {
  33828. name: "Normal",
  33829. height: math.unit(4 + 11/12, "feet"),
  33830. default: true
  33831. },
  33832. ]
  33833. ))
  33834. characterMakers.push(() => makeCharacter(
  33835. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33836. {
  33837. front: {
  33838. height: math.unit(100, "feet"),
  33839. weight: math.unit(0, "lb"),
  33840. name: "Front",
  33841. image: {
  33842. source: "./media/characters/smile/front.svg",
  33843. extra: 2983/2912,
  33844. bottom: 162/3145
  33845. }
  33846. },
  33847. back: {
  33848. height: math.unit(100, "feet"),
  33849. weight: math.unit(0, "lb"),
  33850. name: "Back",
  33851. image: {
  33852. source: "./media/characters/smile/back.svg",
  33853. extra: 3143/3031,
  33854. bottom: 91/3234
  33855. }
  33856. },
  33857. head: {
  33858. height: math.unit(26.3, "feet"),
  33859. weight: math.unit(0, "lb"),
  33860. name: "Head",
  33861. image: {
  33862. source: "./media/characters/smile/head.svg"
  33863. }
  33864. },
  33865. collar: {
  33866. height: math.unit(5.3, "feet"),
  33867. weight: math.unit(0, "lb"),
  33868. name: "Collar",
  33869. image: {
  33870. source: "./media/characters/smile/collar.svg"
  33871. }
  33872. },
  33873. },
  33874. [
  33875. {
  33876. name: "Macro",
  33877. height: math.unit(100, "feet"),
  33878. default: true
  33879. },
  33880. ]
  33881. ))
  33882. characterMakers.push(() => makeCharacter(
  33883. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33884. {
  33885. dragon: {
  33886. height: math.unit(26, "feet"),
  33887. weight: math.unit(36, "tons"),
  33888. name: "Dragon",
  33889. image: {
  33890. source: "./media/characters/arimphae/dragon.svg",
  33891. extra: 1574/983,
  33892. bottom: 357/1931
  33893. }
  33894. },
  33895. drake: {
  33896. height: math.unit(9, "feet"),
  33897. weight: math.unit(1.5, "tons"),
  33898. name: "Drake",
  33899. image: {
  33900. source: "./media/characters/arimphae/drake.svg",
  33901. extra: 1120/925,
  33902. bottom: 435/1555
  33903. }
  33904. },
  33905. },
  33906. [
  33907. {
  33908. name: "Small",
  33909. height: math.unit(26*5/9, "feet")
  33910. },
  33911. {
  33912. name: "Normal",
  33913. height: math.unit(26, "feet"),
  33914. default: true
  33915. },
  33916. ]
  33917. ))
  33918. characterMakers.push(() => makeCharacter(
  33919. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33920. {
  33921. front: {
  33922. height: math.unit(8 + 9/12, "feet"),
  33923. name: "Front",
  33924. image: {
  33925. source: "./media/characters/xander/front.svg",
  33926. extra: 1237/974,
  33927. bottom: 94/1331
  33928. }
  33929. },
  33930. },
  33931. [
  33932. {
  33933. name: "Normal",
  33934. height: math.unit(8 + 9/12, "feet"),
  33935. default: true
  33936. },
  33937. {
  33938. name: "Gaze Grabber",
  33939. height: math.unit(13 + 8/12, "feet")
  33940. },
  33941. {
  33942. name: "Jaw Dropper",
  33943. height: math.unit(27, "feet")
  33944. },
  33945. {
  33946. name: "Show Stopper",
  33947. height: math.unit(136, "feet")
  33948. },
  33949. {
  33950. name: "Superstar",
  33951. height: math.unit(1.9e6, "miles")
  33952. },
  33953. ]
  33954. ))
  33955. characterMakers.push(() => makeCharacter(
  33956. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33957. {
  33958. side: {
  33959. height: math.unit(2100, "feet"),
  33960. name: "Side",
  33961. image: {
  33962. source: "./media/characters/osiris/side.svg",
  33963. extra: 1105/939,
  33964. bottom: 167/1272
  33965. }
  33966. },
  33967. },
  33968. [
  33969. {
  33970. name: "Macro",
  33971. height: math.unit(2100, "feet"),
  33972. default: true
  33973. },
  33974. ]
  33975. ))
  33976. characterMakers.push(() => makeCharacter(
  33977. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33978. {
  33979. front: {
  33980. height: math.unit(6 + 8/12, "feet"),
  33981. weight: math.unit(225, "lb"),
  33982. name: "Front",
  33983. image: {
  33984. source: "./media/characters/rhys-londe/front.svg",
  33985. extra: 2258/2141,
  33986. bottom: 188/2446
  33987. }
  33988. },
  33989. back: {
  33990. height: math.unit(6 + 8/12, "feet"),
  33991. weight: math.unit(225, "lb"),
  33992. name: "Back",
  33993. image: {
  33994. source: "./media/characters/rhys-londe/back.svg",
  33995. extra: 2237/2137,
  33996. bottom: 63/2300
  33997. }
  33998. },
  33999. frontNsfw: {
  34000. height: math.unit(6 + 8/12, "feet"),
  34001. weight: math.unit(225, "lb"),
  34002. name: "Front (NSFW)",
  34003. image: {
  34004. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34005. extra: 2258/2141,
  34006. bottom: 188/2446
  34007. }
  34008. },
  34009. backNsfw: {
  34010. height: math.unit(6 + 8/12, "feet"),
  34011. weight: math.unit(225, "lb"),
  34012. name: "Back (NSFW)",
  34013. image: {
  34014. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34015. extra: 2237/2137,
  34016. bottom: 63/2300
  34017. }
  34018. },
  34019. dick: {
  34020. height: math.unit(30, "inches"),
  34021. name: "Dick",
  34022. image: {
  34023. source: "./media/characters/rhys-londe/dick.svg"
  34024. }
  34025. },
  34026. maw: {
  34027. height: math.unit(1.6, "feet"),
  34028. name: "Maw",
  34029. image: {
  34030. source: "./media/characters/rhys-londe/maw.svg"
  34031. }
  34032. },
  34033. },
  34034. [
  34035. {
  34036. name: "Normal",
  34037. height: math.unit(6 + 8/12, "feet"),
  34038. default: true
  34039. },
  34040. ]
  34041. ))
  34042. characterMakers.push(() => makeCharacter(
  34043. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34044. {
  34045. front: {
  34046. height: math.unit(3 + 10/12, "feet"),
  34047. weight: math.unit(90, "lb"),
  34048. name: "Front",
  34049. image: {
  34050. source: "./media/characters/taivas-ensim/front.svg",
  34051. extra: 1327/1216,
  34052. bottom: 96/1423
  34053. }
  34054. },
  34055. back: {
  34056. height: math.unit(3 + 10/12, "feet"),
  34057. weight: math.unit(90, "lb"),
  34058. name: "Back",
  34059. image: {
  34060. source: "./media/characters/taivas-ensim/back.svg",
  34061. extra: 1355/1247,
  34062. bottom: 11/1366
  34063. }
  34064. },
  34065. frontNsfw: {
  34066. height: math.unit(3 + 10/12, "feet"),
  34067. weight: math.unit(90, "lb"),
  34068. name: "Front (NSFW)",
  34069. image: {
  34070. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34071. extra: 1327/1216,
  34072. bottom: 96/1423
  34073. }
  34074. },
  34075. backNsfw: {
  34076. height: math.unit(3 + 10/12, "feet"),
  34077. weight: math.unit(90, "lb"),
  34078. name: "Back (NSFW)",
  34079. image: {
  34080. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34081. extra: 1355/1247,
  34082. bottom: 11/1366
  34083. }
  34084. },
  34085. },
  34086. [
  34087. {
  34088. name: "Normal",
  34089. height: math.unit(3 + 10/12, "feet"),
  34090. default: true
  34091. },
  34092. ]
  34093. ))
  34094. characterMakers.push(() => makeCharacter(
  34095. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34096. {
  34097. front: {
  34098. height: math.unit(9 + 6/12, "feet"),
  34099. weight: math.unit(940, "lb"),
  34100. name: "Front",
  34101. image: {
  34102. source: "./media/characters/byliss/front.svg",
  34103. extra: 1327/1290,
  34104. bottom: 82/1409
  34105. }
  34106. },
  34107. back: {
  34108. height: math.unit(9 + 6/12, "feet"),
  34109. weight: math.unit(940, "lb"),
  34110. name: "Back",
  34111. image: {
  34112. source: "./media/characters/byliss/back.svg",
  34113. extra: 1376/1349,
  34114. bottom: 9/1385
  34115. }
  34116. },
  34117. frontNsfw: {
  34118. height: math.unit(9 + 6/12, "feet"),
  34119. weight: math.unit(940, "lb"),
  34120. name: "Front (NSFW)",
  34121. image: {
  34122. source: "./media/characters/byliss/front-nsfw.svg",
  34123. extra: 1327/1290,
  34124. bottom: 82/1409
  34125. }
  34126. },
  34127. backNsfw: {
  34128. height: math.unit(9 + 6/12, "feet"),
  34129. weight: math.unit(940, "lb"),
  34130. name: "Back (NSFW)",
  34131. image: {
  34132. source: "./media/characters/byliss/back-nsfw.svg",
  34133. extra: 1376/1349,
  34134. bottom: 9/1385
  34135. }
  34136. },
  34137. },
  34138. [
  34139. {
  34140. name: "Normal",
  34141. height: math.unit(9 + 6/12, "feet"),
  34142. default: true
  34143. },
  34144. ]
  34145. ))
  34146. characterMakers.push(() => makeCharacter(
  34147. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34148. {
  34149. front: {
  34150. height: math.unit(5 + 2/12, "feet"),
  34151. weight: math.unit(200, "lb"),
  34152. name: "Front",
  34153. image: {
  34154. source: "./media/characters/noraly/front.svg",
  34155. extra: 4985/4773,
  34156. bottom: 150/5135
  34157. }
  34158. },
  34159. full: {
  34160. height: math.unit(5 + 2/12, "feet"),
  34161. weight: math.unit(164, "lb"),
  34162. name: "Full",
  34163. image: {
  34164. source: "./media/characters/noraly/full.svg",
  34165. extra: 1114/1059,
  34166. bottom: 35/1149
  34167. }
  34168. },
  34169. fuller: {
  34170. height: math.unit(5 + 2/12, "feet"),
  34171. weight: math.unit(230, "lb"),
  34172. name: "Fuller",
  34173. image: {
  34174. source: "./media/characters/noraly/fuller.svg",
  34175. extra: 1114/1059,
  34176. bottom: 35/1149
  34177. }
  34178. },
  34179. fullest: {
  34180. height: math.unit(5 + 2/12, "feet"),
  34181. weight: math.unit(300, "lb"),
  34182. name: "Fullest",
  34183. image: {
  34184. source: "./media/characters/noraly/fullest.svg",
  34185. extra: 1114/1059,
  34186. bottom: 35/1149
  34187. }
  34188. },
  34189. },
  34190. [
  34191. {
  34192. name: "Normal",
  34193. height: math.unit(5 + 2/12, "feet"),
  34194. default: true
  34195. },
  34196. ]
  34197. ))
  34198. characterMakers.push(() => makeCharacter(
  34199. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34200. {
  34201. front: {
  34202. height: math.unit(5 + 2/12, "feet"),
  34203. weight: math.unit(210, "lb"),
  34204. name: "Front",
  34205. image: {
  34206. source: "./media/characters/pera/front.svg",
  34207. extra: 1560/1531,
  34208. bottom: 165/1725
  34209. }
  34210. },
  34211. back: {
  34212. height: math.unit(5 + 2/12, "feet"),
  34213. weight: math.unit(210, "lb"),
  34214. name: "Back",
  34215. image: {
  34216. source: "./media/characters/pera/back.svg",
  34217. extra: 1523/1493,
  34218. bottom: 152/1675
  34219. }
  34220. },
  34221. dick: {
  34222. height: math.unit(2.4, "feet"),
  34223. name: "Dick",
  34224. image: {
  34225. source: "./media/characters/pera/dick.svg"
  34226. }
  34227. },
  34228. },
  34229. [
  34230. {
  34231. name: "Normal",
  34232. height: math.unit(5 + 2/12, "feet"),
  34233. default: true
  34234. },
  34235. ]
  34236. ))
  34237. characterMakers.push(() => makeCharacter(
  34238. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34239. {
  34240. front: {
  34241. height: math.unit(12, "feet"),
  34242. weight: math.unit(3200, "lb"),
  34243. name: "Front",
  34244. image: {
  34245. source: "./media/characters/julian/front.svg",
  34246. extra: 2962/2701,
  34247. bottom: 184/3146
  34248. }
  34249. },
  34250. maw: {
  34251. height: math.unit(5.35, "feet"),
  34252. name: "Maw",
  34253. image: {
  34254. source: "./media/characters/julian/maw.svg"
  34255. }
  34256. },
  34257. paw: {
  34258. height: math.unit(3.07, "feet"),
  34259. name: "Paw",
  34260. image: {
  34261. source: "./media/characters/julian/paw.svg"
  34262. }
  34263. },
  34264. },
  34265. [
  34266. {
  34267. name: "Default",
  34268. height: math.unit(12, "feet"),
  34269. default: true
  34270. },
  34271. {
  34272. name: "Big",
  34273. height: math.unit(50, "feet")
  34274. },
  34275. {
  34276. name: "Really Big",
  34277. height: math.unit(1, "mile")
  34278. },
  34279. {
  34280. name: "Extremely Big",
  34281. height: math.unit(100, "miles")
  34282. },
  34283. {
  34284. name: "Planet Hugger",
  34285. height: math.unit(200, "megameters")
  34286. },
  34287. {
  34288. name: "Unreasonably Big",
  34289. height: math.unit(1e300, "meters")
  34290. },
  34291. ]
  34292. ))
  34293. characterMakers.push(() => makeCharacter(
  34294. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34295. {
  34296. solgooleo: {
  34297. height: math.unit(4, "meters"),
  34298. weight: math.unit(6000*1.5, "kg"),
  34299. volume: math.unit(6000, "liters"),
  34300. name: "Solgooleo",
  34301. image: {
  34302. source: "./media/characters/pi/solgooleo.svg",
  34303. extra: 388/331,
  34304. bottom: 29/417
  34305. }
  34306. },
  34307. },
  34308. [
  34309. {
  34310. name: "Normal",
  34311. height: math.unit(4, "meters"),
  34312. default: true
  34313. },
  34314. ]
  34315. ))
  34316. characterMakers.push(() => makeCharacter(
  34317. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34318. {
  34319. front: {
  34320. height: math.unit(8, "feet"),
  34321. weight: math.unit(4, "tons"),
  34322. name: "Front",
  34323. image: {
  34324. source: "./media/characters/shaun/front.svg",
  34325. extra: 503/495,
  34326. bottom: 20/523
  34327. }
  34328. },
  34329. back: {
  34330. height: math.unit(8, "feet"),
  34331. weight: math.unit(4, "tons"),
  34332. name: "Back",
  34333. image: {
  34334. source: "./media/characters/shaun/back.svg",
  34335. extra: 487/480,
  34336. bottom: 20/507
  34337. }
  34338. },
  34339. },
  34340. [
  34341. {
  34342. name: "Lorg",
  34343. height: math.unit(8, "feet"),
  34344. default: true
  34345. },
  34346. ]
  34347. ))
  34348. characterMakers.push(() => makeCharacter(
  34349. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34350. {
  34351. frontAnthro: {
  34352. height: math.unit(7, "feet"),
  34353. name: "Front",
  34354. image: {
  34355. source: "./media/characters/sini/front-anthro.svg",
  34356. extra: 726/678,
  34357. bottom: 35/761
  34358. },
  34359. form: "anthro",
  34360. default: true
  34361. },
  34362. backAnthro: {
  34363. height: math.unit(7, "feet"),
  34364. name: "Back",
  34365. image: {
  34366. source: "./media/characters/sini/back-anthro.svg",
  34367. extra: 743/701,
  34368. bottom: 12/755
  34369. },
  34370. form: "anthro",
  34371. },
  34372. frontAnthroNsfw: {
  34373. height: math.unit(7, "feet"),
  34374. name: "Front (NSFW)",
  34375. image: {
  34376. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34377. extra: 726/678,
  34378. bottom: 35/761
  34379. },
  34380. form: "anthro"
  34381. },
  34382. backAnthroNsfw: {
  34383. height: math.unit(7, "feet"),
  34384. name: "Back (NSFW)",
  34385. image: {
  34386. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34387. extra: 743/701,
  34388. bottom: 12/755
  34389. },
  34390. form: "anthro",
  34391. },
  34392. mawAnthro: {
  34393. height: math.unit(2.14, "feet"),
  34394. name: "Maw",
  34395. image: {
  34396. source: "./media/characters/sini/maw-anthro.svg"
  34397. },
  34398. form: "anthro"
  34399. },
  34400. dick: {
  34401. height: math.unit(1.45, "feet"),
  34402. name: "Dick",
  34403. image: {
  34404. source: "./media/characters/sini/dick-anthro.svg"
  34405. },
  34406. form: "anthro"
  34407. },
  34408. feral: {
  34409. height: math.unit(16, "feet"),
  34410. name: "Feral",
  34411. image: {
  34412. source: "./media/characters/sini/feral.svg",
  34413. extra: 814/605,
  34414. bottom: 11/825
  34415. },
  34416. form: "feral",
  34417. default: true
  34418. },
  34419. feralNsfw: {
  34420. height: math.unit(16, "feet"),
  34421. name: "Feral (NSFW)",
  34422. image: {
  34423. source: "./media/characters/sini/feral-nsfw.svg",
  34424. extra: 814/605,
  34425. bottom: 11/825
  34426. },
  34427. form: "feral"
  34428. },
  34429. mawFeral: {
  34430. height: math.unit(5.66, "feet"),
  34431. name: "Maw",
  34432. image: {
  34433. source: "./media/characters/sini/maw-feral.svg"
  34434. },
  34435. form: "feral",
  34436. },
  34437. pawFeral: {
  34438. height: math.unit(5.17, "feet"),
  34439. name: "Paw",
  34440. image: {
  34441. source: "./media/characters/sini/paw-feral.svg"
  34442. },
  34443. form: "feral",
  34444. },
  34445. rumpFeral: {
  34446. height: math.unit(13.11, "feet"),
  34447. name: "Rump",
  34448. image: {
  34449. source: "./media/characters/sini/rump-feral.svg"
  34450. },
  34451. form: "feral",
  34452. },
  34453. dickFeral: {
  34454. height: math.unit(1, "feet"),
  34455. name: "Dick",
  34456. image: {
  34457. source: "./media/characters/sini/dick-feral.svg"
  34458. },
  34459. form: "feral",
  34460. },
  34461. eyeFeral: {
  34462. height: math.unit(1.23, "feet"),
  34463. name: "Eye",
  34464. image: {
  34465. source: "./media/characters/sini/eye-feral.svg"
  34466. },
  34467. form: "feral",
  34468. },
  34469. },
  34470. [
  34471. {
  34472. name: "Normal",
  34473. height: math.unit(7, "feet"),
  34474. default: true,
  34475. form: "anthro"
  34476. },
  34477. {
  34478. name: "Normal",
  34479. height: math.unit(16, "feet"),
  34480. default: true,
  34481. form: "feral"
  34482. },
  34483. ],
  34484. {
  34485. "anthro": {
  34486. name: "Anthro",
  34487. default: true
  34488. },
  34489. "feral": {
  34490. name: "Feral",
  34491. }
  34492. }
  34493. ))
  34494. characterMakers.push(() => makeCharacter(
  34495. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34496. {
  34497. side: {
  34498. height: math.unit(47.2, "meters"),
  34499. weight: math.unit(10000, "tons"),
  34500. name: "Side",
  34501. image: {
  34502. source: "./media/characters/raylldo/side.svg",
  34503. extra: 2363/642,
  34504. bottom: 221/2584
  34505. }
  34506. },
  34507. top: {
  34508. height: math.unit(240, "meters"),
  34509. weight: math.unit(10000, "tons"),
  34510. name: "Top",
  34511. image: {
  34512. source: "./media/characters/raylldo/top.svg"
  34513. }
  34514. },
  34515. bottom: {
  34516. height: math.unit(240, "meters"),
  34517. weight: math.unit(10000, "tons"),
  34518. name: "Bottom",
  34519. image: {
  34520. source: "./media/characters/raylldo/bottom.svg"
  34521. }
  34522. },
  34523. head: {
  34524. height: math.unit(38.6, "meters"),
  34525. name: "Head",
  34526. image: {
  34527. source: "./media/characters/raylldo/head.svg",
  34528. extra: 1335/1112,
  34529. bottom: 0/1335
  34530. }
  34531. },
  34532. maw: {
  34533. height: math.unit(16.37, "meters"),
  34534. name: "Maw",
  34535. image: {
  34536. source: "./media/characters/raylldo/maw.svg",
  34537. extra: 883/660,
  34538. bottom: 0/883
  34539. },
  34540. extraAttributes: {
  34541. preyCapacity: {
  34542. name: "Capacity",
  34543. power: 3,
  34544. type: "volume",
  34545. base: math.unit(1000, "people")
  34546. },
  34547. tongueSize: {
  34548. name: "Tongue Size",
  34549. power: 2,
  34550. type: "area",
  34551. base: math.unit(21, "m^2")
  34552. }
  34553. }
  34554. },
  34555. forepaw: {
  34556. height: math.unit(18, "meters"),
  34557. name: "Forepaw",
  34558. image: {
  34559. source: "./media/characters/raylldo/forepaw.svg"
  34560. }
  34561. },
  34562. hindpaw: {
  34563. height: math.unit(23, "meters"),
  34564. name: "Hindpaw",
  34565. image: {
  34566. source: "./media/characters/raylldo/hindpaw.svg"
  34567. }
  34568. },
  34569. genitals: {
  34570. height: math.unit(42, "meters"),
  34571. name: "Genitals",
  34572. image: {
  34573. source: "./media/characters/raylldo/genitals.svg"
  34574. }
  34575. },
  34576. },
  34577. [
  34578. {
  34579. name: "Normal",
  34580. height: math.unit(47.2, "meters"),
  34581. default: true
  34582. },
  34583. ]
  34584. ))
  34585. characterMakers.push(() => makeCharacter(
  34586. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34587. {
  34588. anthroFront: {
  34589. height: math.unit(9, "feet"),
  34590. weight: math.unit(600, "lb"),
  34591. name: "Anthro (Front)",
  34592. image: {
  34593. source: "./media/characters/glint/anthro-front.svg",
  34594. extra: 1097/1018,
  34595. bottom: 28/1125
  34596. }
  34597. },
  34598. anthroBack: {
  34599. height: math.unit(9, "feet"),
  34600. weight: math.unit(600, "lb"),
  34601. name: "Anthro (Back)",
  34602. image: {
  34603. source: "./media/characters/glint/anthro-back.svg",
  34604. extra: 1154/997,
  34605. bottom: 36/1190
  34606. }
  34607. },
  34608. feral: {
  34609. height: math.unit(11, "feet"),
  34610. weight: math.unit(50000, "lb"),
  34611. name: "Feral",
  34612. image: {
  34613. source: "./media/characters/glint/feral.svg",
  34614. extra: 3035/1585,
  34615. bottom: 1169/4204
  34616. }
  34617. },
  34618. dickAnthro: {
  34619. height: math.unit(0.7, "meters"),
  34620. name: "Dick (Anthro)",
  34621. image: {
  34622. source: "./media/characters/glint/dick-anthro.svg"
  34623. }
  34624. },
  34625. dickFeral: {
  34626. height: math.unit(2.65, "meters"),
  34627. name: "Dick (Feral)",
  34628. image: {
  34629. source: "./media/characters/glint/dick-feral.svg"
  34630. }
  34631. },
  34632. slitHidden: {
  34633. height: math.unit(5.85, "meters"),
  34634. name: "Slit (Hidden)",
  34635. image: {
  34636. source: "./media/characters/glint/slit-hidden.svg"
  34637. }
  34638. },
  34639. slitErect: {
  34640. height: math.unit(5.85, "meters"),
  34641. name: "Slit (Erect)",
  34642. image: {
  34643. source: "./media/characters/glint/slit-erect.svg"
  34644. }
  34645. },
  34646. mawAnthro: {
  34647. height: math.unit(0.63, "meters"),
  34648. name: "Maw (Anthro)",
  34649. image: {
  34650. source: "./media/characters/glint/maw.svg"
  34651. }
  34652. },
  34653. mawFeral: {
  34654. height: math.unit(2.89, "meters"),
  34655. name: "Maw (Feral)",
  34656. image: {
  34657. source: "./media/characters/glint/maw.svg"
  34658. }
  34659. },
  34660. },
  34661. [
  34662. {
  34663. name: "Normal",
  34664. height: math.unit(9, "feet"),
  34665. default: true
  34666. },
  34667. ]
  34668. ))
  34669. characterMakers.push(() => makeCharacter(
  34670. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34671. {
  34672. side: {
  34673. height: math.unit(15, "feet"),
  34674. weight: math.unit(5000, "kg"),
  34675. name: "Side",
  34676. image: {
  34677. source: "./media/characters/kairne/side.svg",
  34678. extra: 979/811,
  34679. bottom: 13/992
  34680. }
  34681. },
  34682. front: {
  34683. height: math.unit(15, "feet"),
  34684. weight: math.unit(5000, "kg"),
  34685. name: "Front",
  34686. image: {
  34687. source: "./media/characters/kairne/front.svg",
  34688. extra: 908/814,
  34689. bottom: 26/934
  34690. }
  34691. },
  34692. sideNsfw: {
  34693. height: math.unit(15, "feet"),
  34694. weight: math.unit(5000, "kg"),
  34695. name: "Side (NSFW)",
  34696. image: {
  34697. source: "./media/characters/kairne/side-nsfw.svg",
  34698. extra: 979/811,
  34699. bottom: 13/992
  34700. }
  34701. },
  34702. frontNsfw: {
  34703. height: math.unit(15, "feet"),
  34704. weight: math.unit(5000, "kg"),
  34705. name: "Front (NSFW)",
  34706. image: {
  34707. source: "./media/characters/kairne/front-nsfw.svg",
  34708. extra: 908/814,
  34709. bottom: 26/934
  34710. }
  34711. },
  34712. dickCaged: {
  34713. height: math.unit(0.65, "meters"),
  34714. name: "Dick-caged",
  34715. image: {
  34716. source: "./media/characters/kairne/dick-caged.svg"
  34717. }
  34718. },
  34719. dick: {
  34720. height: math.unit(0.79, "meters"),
  34721. name: "Dick",
  34722. image: {
  34723. source: "./media/characters/kairne/dick.svg"
  34724. }
  34725. },
  34726. genitals: {
  34727. height: math.unit(1.29, "meters"),
  34728. name: "Genitals",
  34729. image: {
  34730. source: "./media/characters/kairne/genitals.svg"
  34731. }
  34732. },
  34733. maw: {
  34734. height: math.unit(1.73, "meters"),
  34735. name: "Maw",
  34736. image: {
  34737. source: "./media/characters/kairne/maw.svg"
  34738. }
  34739. },
  34740. },
  34741. [
  34742. {
  34743. name: "Normal",
  34744. height: math.unit(15, "feet"),
  34745. default: true
  34746. },
  34747. ]
  34748. ))
  34749. characterMakers.push(() => makeCharacter(
  34750. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34751. {
  34752. front: {
  34753. height: math.unit(5 + 8/12, "feet"),
  34754. weight: math.unit(139, "lb"),
  34755. name: "Front",
  34756. image: {
  34757. source: "./media/characters/biscuit-jackal/front.svg",
  34758. extra: 2106/1961,
  34759. bottom: 58/2164
  34760. }
  34761. },
  34762. back: {
  34763. height: math.unit(5 + 8/12, "feet"),
  34764. weight: math.unit(139, "lb"),
  34765. name: "Back",
  34766. image: {
  34767. source: "./media/characters/biscuit-jackal/back.svg",
  34768. extra: 2132/1976,
  34769. bottom: 57/2189
  34770. }
  34771. },
  34772. werejackal: {
  34773. height: math.unit(6 + 3/12, "feet"),
  34774. weight: math.unit(188, "lb"),
  34775. name: "Werejackal",
  34776. image: {
  34777. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34778. extra: 2373/2178,
  34779. bottom: 53/2426
  34780. }
  34781. },
  34782. },
  34783. [
  34784. {
  34785. name: "Normal",
  34786. height: math.unit(5 + 8/12, "feet"),
  34787. default: true
  34788. },
  34789. ]
  34790. ))
  34791. characterMakers.push(() => makeCharacter(
  34792. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34793. {
  34794. front: {
  34795. height: math.unit(140, "cm"),
  34796. weight: math.unit(45, "kg"),
  34797. name: "Front",
  34798. image: {
  34799. source: "./media/characters/tayra-white/front.svg",
  34800. extra: 2229/2192,
  34801. bottom: 75/2304
  34802. }
  34803. },
  34804. },
  34805. [
  34806. {
  34807. name: "Normal",
  34808. height: math.unit(140, "cm"),
  34809. default: true
  34810. },
  34811. ]
  34812. ))
  34813. characterMakers.push(() => makeCharacter(
  34814. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34815. {
  34816. front: {
  34817. height: math.unit(4 + 5/12, "feet"),
  34818. name: "Front",
  34819. image: {
  34820. source: "./media/characters/scoop/front.svg",
  34821. extra: 1257/1136,
  34822. bottom: 69/1326
  34823. }
  34824. },
  34825. back: {
  34826. height: math.unit(4 + 5/12, "feet"),
  34827. name: "Back",
  34828. image: {
  34829. source: "./media/characters/scoop/back.svg",
  34830. extra: 1321/1152,
  34831. bottom: 32/1353
  34832. }
  34833. },
  34834. maw: {
  34835. height: math.unit(0.68, "feet"),
  34836. name: "Maw",
  34837. image: {
  34838. source: "./media/characters/scoop/maw.svg"
  34839. }
  34840. },
  34841. },
  34842. [
  34843. {
  34844. name: "Really Small",
  34845. height: math.unit(1, "mm")
  34846. },
  34847. {
  34848. name: "Micro",
  34849. height: math.unit(1, "inch")
  34850. },
  34851. {
  34852. name: "Normal",
  34853. height: math.unit(4 + 5/12, "feet"),
  34854. default: true
  34855. },
  34856. {
  34857. name: "Macro",
  34858. height: math.unit(200, "feet")
  34859. },
  34860. {
  34861. name: "Megamacro",
  34862. height: math.unit(3240, "feet")
  34863. },
  34864. {
  34865. name: "Teramacro",
  34866. height: math.unit(2500, "miles")
  34867. },
  34868. ]
  34869. ))
  34870. characterMakers.push(() => makeCharacter(
  34871. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34872. {
  34873. front: {
  34874. height: math.unit(15 + 7/12, "feet"),
  34875. weight: math.unit(1150, "tons"),
  34876. name: "Front",
  34877. image: {
  34878. source: "./media/characters/saphinara/front.svg",
  34879. extra: 1837/1643,
  34880. bottom: 84/1921
  34881. },
  34882. form: "normal",
  34883. default: true
  34884. },
  34885. side: {
  34886. height: math.unit(15 + 7/12, "feet"),
  34887. weight: math.unit(1150, "tons"),
  34888. name: "Side",
  34889. image: {
  34890. source: "./media/characters/saphinara/side.svg",
  34891. extra: 605/547,
  34892. bottom: 6/611
  34893. },
  34894. form: "normal"
  34895. },
  34896. back: {
  34897. height: math.unit(15 + 7/12, "feet"),
  34898. weight: math.unit(1150, "tons"),
  34899. name: "Back",
  34900. image: {
  34901. source: "./media/characters/saphinara/back.svg",
  34902. extra: 591/531,
  34903. bottom: 13/604
  34904. },
  34905. form: "normal"
  34906. },
  34907. frontTail: {
  34908. height: math.unit(15 + 7/12, "feet"),
  34909. weight: math.unit(1150, "tons"),
  34910. name: "Front (Full Tail)",
  34911. image: {
  34912. source: "./media/characters/saphinara/front-tail.svg",
  34913. extra: 2256/1630,
  34914. bottom: 261/2517
  34915. },
  34916. form: "normal"
  34917. },
  34918. insides: {
  34919. height: math.unit(11.92, "feet"),
  34920. name: "Insides",
  34921. image: {
  34922. source: "./media/characters/saphinara/insides.svg"
  34923. },
  34924. form: "normal"
  34925. },
  34926. head: {
  34927. height: math.unit(4.17, "feet"),
  34928. name: "Head",
  34929. image: {
  34930. source: "./media/characters/saphinara/head.svg"
  34931. },
  34932. form: "normal"
  34933. },
  34934. tongue: {
  34935. height: math.unit(4.60, "feet"),
  34936. name: "Tongue",
  34937. image: {
  34938. source: "./media/characters/saphinara/tongue.svg"
  34939. },
  34940. form: "normal"
  34941. },
  34942. headEnraged: {
  34943. height: math.unit(5.55, "feet"),
  34944. name: "Head (Enraged)",
  34945. image: {
  34946. source: "./media/characters/saphinara/head-enraged.svg"
  34947. },
  34948. form: "normal"
  34949. },
  34950. wings: {
  34951. height: math.unit(11.95, "feet"),
  34952. name: "Wings",
  34953. image: {
  34954. source: "./media/characters/saphinara/wings.svg"
  34955. },
  34956. form: "normal"
  34957. },
  34958. feathers: {
  34959. height: math.unit(8.92, "feet"),
  34960. name: "Feathers",
  34961. image: {
  34962. source: "./media/characters/saphinara/feathers.svg"
  34963. },
  34964. form: "normal"
  34965. },
  34966. shackles: {
  34967. height: math.unit(2, "feet"),
  34968. name: "Shackles",
  34969. image: {
  34970. source: "./media/characters/saphinara/shackles.svg"
  34971. },
  34972. form: "normal"
  34973. },
  34974. eyes: {
  34975. height: math.unit(1.331, "feet"),
  34976. name: "Eyes",
  34977. image: {
  34978. source: "./media/characters/saphinara/eyes.svg"
  34979. },
  34980. form: "normal"
  34981. },
  34982. eyesEnraged: {
  34983. height: math.unit(1.331, "feet"),
  34984. name: "Eyes (Enraged)",
  34985. image: {
  34986. source: "./media/characters/saphinara/eyes-enraged.svg"
  34987. },
  34988. form: "normal"
  34989. },
  34990. trueFormSide: {
  34991. height: math.unit(200, "feet"),
  34992. weight: math.unit(1e7, "tons"),
  34993. name: "Side",
  34994. image: {
  34995. source: "./media/characters/saphinara/true-form-side.svg",
  34996. extra: 1399/770,
  34997. bottom: 97/1496
  34998. },
  34999. form: "true-form",
  35000. default: true
  35001. },
  35002. trueFormMaw: {
  35003. height: math.unit(71.5, "feet"),
  35004. name: "Maw",
  35005. image: {
  35006. source: "./media/characters/saphinara/true-form-maw.svg",
  35007. extra: 2302/1453,
  35008. bottom: 0/2302
  35009. },
  35010. form: "true-form"
  35011. },
  35012. meowberusSide: {
  35013. height: math.unit(75, "feet"),
  35014. weight: math.unit(180000, "kg"),
  35015. preyCapacity: math.unit(50000, "people"),
  35016. name: "Side",
  35017. image: {
  35018. source: "./media/characters/saphinara/meowberus-side.svg",
  35019. extra: 1400/711,
  35020. bottom: 126/1526
  35021. },
  35022. form: "meowberus",
  35023. extraAttributes: {
  35024. "pawArea": {
  35025. name: "Paw Size",
  35026. power: 2,
  35027. type: "area",
  35028. base: math.unit(35, "m^2")
  35029. }
  35030. }
  35031. },
  35032. },
  35033. [
  35034. {
  35035. name: "Normal",
  35036. height: math.unit(15 + 7/12, "feet"),
  35037. default: true,
  35038. form: "normal"
  35039. },
  35040. {
  35041. name: "Angry",
  35042. height: math.unit(30 + 6/12, "feet"),
  35043. form: "normal"
  35044. },
  35045. {
  35046. name: "Enraged",
  35047. height: math.unit(102 + 1/12, "feet"),
  35048. form: "normal"
  35049. },
  35050. {
  35051. name: "True",
  35052. height: math.unit(200, "feet"),
  35053. default: true,
  35054. form: "true-form"
  35055. },
  35056. {
  35057. name: "Normal",
  35058. height: math.unit(75, "feet"),
  35059. default: true,
  35060. form: "meowberus"
  35061. },
  35062. ],
  35063. {
  35064. "normal": {
  35065. name: "Normal",
  35066. default: true
  35067. },
  35068. "true-form": {
  35069. name: "True Form"
  35070. },
  35071. "meowberus": {
  35072. name: "Meowberus",
  35073. },
  35074. }
  35075. ))
  35076. characterMakers.push(() => makeCharacter(
  35077. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35078. {
  35079. front: {
  35080. height: math.unit(6 + 8/12, "feet"),
  35081. weight: math.unit(300, "lb"),
  35082. name: "Front",
  35083. image: {
  35084. source: "./media/characters/jrain/front.svg",
  35085. extra: 3039/2865,
  35086. bottom: 399/3438
  35087. }
  35088. },
  35089. back: {
  35090. height: math.unit(6 + 8/12, "feet"),
  35091. weight: math.unit(300, "lb"),
  35092. name: "Back",
  35093. image: {
  35094. source: "./media/characters/jrain/back.svg",
  35095. extra: 3089/2938,
  35096. bottom: 172/3261
  35097. }
  35098. },
  35099. head: {
  35100. height: math.unit(2.14, "feet"),
  35101. name: "Head",
  35102. image: {
  35103. source: "./media/characters/jrain/head.svg"
  35104. }
  35105. },
  35106. maw: {
  35107. height: math.unit(1.77, "feet"),
  35108. name: "Maw",
  35109. image: {
  35110. source: "./media/characters/jrain/maw.svg"
  35111. }
  35112. },
  35113. leftHand: {
  35114. height: math.unit(1.1, "feet"),
  35115. name: "Left Hand",
  35116. image: {
  35117. source: "./media/characters/jrain/left-hand.svg"
  35118. }
  35119. },
  35120. rightHand: {
  35121. height: math.unit(1.1, "feet"),
  35122. name: "Right Hand",
  35123. image: {
  35124. source: "./media/characters/jrain/right-hand.svg"
  35125. }
  35126. },
  35127. eye: {
  35128. height: math.unit(0.35, "feet"),
  35129. name: "Eye",
  35130. image: {
  35131. source: "./media/characters/jrain/eye.svg"
  35132. }
  35133. },
  35134. },
  35135. [
  35136. {
  35137. name: "Normal",
  35138. height: math.unit(6 + 8/12, "feet"),
  35139. default: true
  35140. },
  35141. {
  35142. name: "Casually Large",
  35143. height: math.unit(25, "feet")
  35144. },
  35145. {
  35146. name: "Giant",
  35147. height: math.unit(100, "feet")
  35148. },
  35149. {
  35150. name: "Kaiju",
  35151. height: math.unit(300, "feet")
  35152. },
  35153. ]
  35154. ))
  35155. characterMakers.push(() => makeCharacter(
  35156. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35157. {
  35158. dragon: {
  35159. height: math.unit(5, "meters"),
  35160. name: "Dragon",
  35161. image: {
  35162. source: "./media/characters/sabrina/dragon.svg",
  35163. extra: 3670 / 2365,
  35164. bottom: 333 / 4003
  35165. }
  35166. },
  35167. gryphon: {
  35168. height: math.unit(3, "meters"),
  35169. name: "Gryphon",
  35170. image: {
  35171. source: "./media/characters/sabrina/gryphon.svg",
  35172. extra: 1576 / 945,
  35173. bottom: 71 / 1647
  35174. }
  35175. },
  35176. snake: {
  35177. height: math.unit(12, "meters"),
  35178. name: "Snake",
  35179. image: {
  35180. source: "./media/characters/sabrina/snake.svg",
  35181. extra: 1758 / 1320,
  35182. bottom: 186 / 1944
  35183. }
  35184. },
  35185. collar: {
  35186. height: math.unit(1.86, "meters"),
  35187. name: "Collar",
  35188. image: {
  35189. source: "./media/characters/sabrina/collar.svg"
  35190. }
  35191. },
  35192. eye: {
  35193. height: math.unit(0.53, "meters"),
  35194. name: "Eye",
  35195. image: {
  35196. source: "./media/characters/sabrina/eye.svg"
  35197. }
  35198. },
  35199. foot: {
  35200. height: math.unit(1.86, "meters"),
  35201. name: "Foot",
  35202. image: {
  35203. source: "./media/characters/sabrina/foot.svg"
  35204. }
  35205. },
  35206. hand: {
  35207. height: math.unit(1.32, "meters"),
  35208. name: "Hand",
  35209. image: {
  35210. source: "./media/characters/sabrina/hand.svg"
  35211. }
  35212. },
  35213. head: {
  35214. height: math.unit(2.44, "meters"),
  35215. name: "Head",
  35216. image: {
  35217. source: "./media/characters/sabrina/head.svg"
  35218. }
  35219. },
  35220. headAngry: {
  35221. height: math.unit(2.44, "meters"),
  35222. name: "Head (Angry))",
  35223. image: {
  35224. source: "./media/characters/sabrina/head-angry.svg"
  35225. }
  35226. },
  35227. maw: {
  35228. height: math.unit(1.65, "meters"),
  35229. name: "Maw",
  35230. image: {
  35231. source: "./media/characters/sabrina/maw.svg"
  35232. }
  35233. },
  35234. spikes: {
  35235. height: math.unit(1.69, "meters"),
  35236. name: "Spikes",
  35237. image: {
  35238. source: "./media/characters/sabrina/spikes.svg"
  35239. }
  35240. },
  35241. stomach: {
  35242. height: math.unit(1.15, "meters"),
  35243. name: "Stomach",
  35244. image: {
  35245. source: "./media/characters/sabrina/stomach.svg"
  35246. }
  35247. },
  35248. tongue: {
  35249. height: math.unit(1.27, "meters"),
  35250. name: "Tongue",
  35251. image: {
  35252. source: "./media/characters/sabrina/tongue.svg"
  35253. }
  35254. },
  35255. wingDorsal: {
  35256. height: math.unit(4.85, "meters"),
  35257. name: "Wing (Dorsal)",
  35258. image: {
  35259. source: "./media/characters/sabrina/wing-dorsal.svg"
  35260. }
  35261. },
  35262. wingVentral: {
  35263. height: math.unit(4.85, "meters"),
  35264. name: "Wing (Ventral)",
  35265. image: {
  35266. source: "./media/characters/sabrina/wing-ventral.svg"
  35267. }
  35268. },
  35269. },
  35270. [
  35271. {
  35272. name: "Normal",
  35273. height: math.unit(5, "meters"),
  35274. default: true
  35275. },
  35276. ]
  35277. ))
  35278. characterMakers.push(() => makeCharacter(
  35279. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35280. {
  35281. frontMaid: {
  35282. height: math.unit(5 + 5/12, "feet"),
  35283. weight: math.unit(130, "lb"),
  35284. name: "Front (Maid)",
  35285. image: {
  35286. source: "./media/characters/midnight-tales/front-maid.svg",
  35287. extra: 489/454,
  35288. bottom: 61/550
  35289. }
  35290. },
  35291. frontFormal: {
  35292. height: math.unit(5 + 5/12, "feet"),
  35293. weight: math.unit(130, "lb"),
  35294. name: "Front (Formal)",
  35295. image: {
  35296. source: "./media/characters/midnight-tales/front-formal.svg",
  35297. extra: 489/454,
  35298. bottom: 61/550
  35299. }
  35300. },
  35301. back: {
  35302. height: math.unit(5 + 5/12, "feet"),
  35303. weight: math.unit(130, "lb"),
  35304. name: "Back",
  35305. image: {
  35306. source: "./media/characters/midnight-tales/back.svg",
  35307. extra: 498/456,
  35308. bottom: 33/531
  35309. }
  35310. },
  35311. frontBeast: {
  35312. height: math.unit(40, "feet"),
  35313. weight: math.unit(64000, "lb"),
  35314. name: "Front (Beast)",
  35315. image: {
  35316. source: "./media/characters/midnight-tales/front-beast.svg",
  35317. extra: 927/860,
  35318. bottom: 53/980
  35319. }
  35320. },
  35321. backBeast: {
  35322. height: math.unit(40, "feet"),
  35323. weight: math.unit(64000, "lb"),
  35324. name: "Back (Beast)",
  35325. image: {
  35326. source: "./media/characters/midnight-tales/back-beast.svg",
  35327. extra: 929/855,
  35328. bottom: 16/945
  35329. }
  35330. },
  35331. footBeast: {
  35332. height: math.unit(6.7, "feet"),
  35333. name: "Foot (Beast)",
  35334. image: {
  35335. source: "./media/characters/midnight-tales/foot-beast.svg"
  35336. }
  35337. },
  35338. headBeast: {
  35339. height: math.unit(8, "feet"),
  35340. name: "Head (Beast)",
  35341. image: {
  35342. source: "./media/characters/midnight-tales/head-beast.svg"
  35343. }
  35344. },
  35345. },
  35346. [
  35347. {
  35348. name: "Normal",
  35349. height: math.unit(5 + 5 / 12, "feet"),
  35350. default: true
  35351. },
  35352. {
  35353. name: "Macro",
  35354. height: math.unit(25, "feet")
  35355. },
  35356. ]
  35357. ))
  35358. characterMakers.push(() => makeCharacter(
  35359. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35360. {
  35361. front: {
  35362. height: math.unit(5 + 10/12, "feet"),
  35363. name: "Front",
  35364. image: {
  35365. source: "./media/characters/argon/front.svg",
  35366. extra: 2009/1935,
  35367. bottom: 118/2127
  35368. }
  35369. },
  35370. back: {
  35371. height: math.unit(5 + 10/12, "feet"),
  35372. name: "Back",
  35373. image: {
  35374. source: "./media/characters/argon/back.svg",
  35375. extra: 2047/1992,
  35376. bottom: 20/2067
  35377. }
  35378. },
  35379. frontDressed: {
  35380. height: math.unit(5 + 10/12, "feet"),
  35381. name: "Front (Dressed)",
  35382. image: {
  35383. source: "./media/characters/argon/front-dressed.svg",
  35384. extra: 2009/1935,
  35385. bottom: 118/2127
  35386. }
  35387. },
  35388. },
  35389. [
  35390. {
  35391. name: "Normal",
  35392. height: math.unit(5 + 10/12, "feet"),
  35393. default: true
  35394. },
  35395. ]
  35396. ))
  35397. characterMakers.push(() => makeCharacter(
  35398. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35399. {
  35400. front: {
  35401. height: math.unit(8 + 6/12, "feet"),
  35402. weight: math.unit(1150, "lb"),
  35403. name: "Front",
  35404. image: {
  35405. source: "./media/characters/kichi/front.svg",
  35406. extra: 1267/1164,
  35407. bottom: 61/1328
  35408. }
  35409. },
  35410. back: {
  35411. height: math.unit(8 + 6/12, "feet"),
  35412. weight: math.unit(1150, "lb"),
  35413. name: "Back",
  35414. image: {
  35415. source: "./media/characters/kichi/back.svg",
  35416. extra: 1273/1166,
  35417. bottom: 33/1306
  35418. }
  35419. },
  35420. },
  35421. [
  35422. {
  35423. name: "Normal",
  35424. height: math.unit(8 + 6/12, "feet"),
  35425. default: true
  35426. },
  35427. ]
  35428. ))
  35429. characterMakers.push(() => makeCharacter(
  35430. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35431. {
  35432. front: {
  35433. height: math.unit(6, "feet"),
  35434. weight: math.unit(210, "lb"),
  35435. name: "Front",
  35436. image: {
  35437. source: "./media/characters/manetel-greyscale/front.svg",
  35438. extra: 350/312,
  35439. bottom: 8/358
  35440. }
  35441. },
  35442. },
  35443. [
  35444. {
  35445. name: "Micro",
  35446. height: math.unit(2, "inches")
  35447. },
  35448. {
  35449. name: "Normal",
  35450. height: math.unit(6, "feet"),
  35451. default: true
  35452. },
  35453. {
  35454. name: "Minimacro",
  35455. height: math.unit(17, "feet")
  35456. },
  35457. {
  35458. name: "Macro",
  35459. height: math.unit(117, "feet")
  35460. },
  35461. ]
  35462. ))
  35463. characterMakers.push(() => makeCharacter(
  35464. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35465. {
  35466. side: {
  35467. height: math.unit(5 + 1/12, "feet"),
  35468. weight: math.unit(418, "lb"),
  35469. name: "Side",
  35470. image: {
  35471. source: "./media/characters/softpurr/side.svg",
  35472. extra: 1993/1945,
  35473. bottom: 134/2127
  35474. }
  35475. },
  35476. front: {
  35477. height: math.unit(5 + 1/12, "feet"),
  35478. weight: math.unit(418, "lb"),
  35479. name: "Front",
  35480. image: {
  35481. source: "./media/characters/softpurr/front.svg",
  35482. extra: 1950/1856,
  35483. bottom: 174/2124
  35484. }
  35485. },
  35486. paw: {
  35487. height: math.unit(1, "feet"),
  35488. name: "Paw",
  35489. image: {
  35490. source: "./media/characters/softpurr/paw.svg"
  35491. }
  35492. },
  35493. },
  35494. [
  35495. {
  35496. name: "Normal",
  35497. height: math.unit(5 + 1/12, "feet"),
  35498. default: true
  35499. },
  35500. ]
  35501. ))
  35502. characterMakers.push(() => makeCharacter(
  35503. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35504. {
  35505. front: {
  35506. height: math.unit(260, "meters"),
  35507. name: "Front",
  35508. image: {
  35509. source: "./media/characters/anahita/front.svg",
  35510. extra: 665/635,
  35511. bottom: 89/754
  35512. }
  35513. },
  35514. },
  35515. [
  35516. {
  35517. name: "Macro",
  35518. height: math.unit(260, "meters"),
  35519. default: true
  35520. },
  35521. ]
  35522. ))
  35523. characterMakers.push(() => makeCharacter(
  35524. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35525. {
  35526. front: {
  35527. height: math.unit(4 + 10/12, "feet"),
  35528. weight: math.unit(160, "lb"),
  35529. name: "Front",
  35530. image: {
  35531. source: "./media/characters/chip-mouse/front.svg",
  35532. extra: 3528/3408,
  35533. bottom: 0/3528
  35534. }
  35535. },
  35536. frontNsfw: {
  35537. height: math.unit(4 + 10/12, "feet"),
  35538. weight: math.unit(160, "lb"),
  35539. name: "Front (NSFW)",
  35540. image: {
  35541. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35542. extra: 3528/3408,
  35543. bottom: 0/3528
  35544. }
  35545. },
  35546. },
  35547. [
  35548. {
  35549. name: "Normal",
  35550. height: math.unit(4 + 10/12, "feet"),
  35551. default: true
  35552. },
  35553. ]
  35554. ))
  35555. characterMakers.push(() => makeCharacter(
  35556. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35557. {
  35558. side: {
  35559. height: math.unit(10, "feet"),
  35560. weight: math.unit(14000, "lb"),
  35561. name: "Side",
  35562. image: {
  35563. source: "./media/characters/kremm/side.svg",
  35564. extra: 1390/1053,
  35565. bottom: 90/1480
  35566. }
  35567. },
  35568. gut: {
  35569. height: math.unit(5.8, "feet"),
  35570. name: "Gut",
  35571. image: {
  35572. source: "./media/characters/kremm/gut.svg"
  35573. }
  35574. },
  35575. ass: {
  35576. height: math.unit(6.1, "feet"),
  35577. name: "Ass",
  35578. image: {
  35579. source: "./media/characters/kremm/ass.svg"
  35580. }
  35581. },
  35582. jaws: {
  35583. height: math.unit(2.2, "feet"),
  35584. name: "Jaws",
  35585. image: {
  35586. source: "./media/characters/kremm/jaws.svg"
  35587. }
  35588. },
  35589. dick: {
  35590. height: math.unit(4.26, "feet"),
  35591. name: "Dick",
  35592. image: {
  35593. source: "./media/characters/kremm/dick.svg"
  35594. }
  35595. },
  35596. },
  35597. [
  35598. {
  35599. name: "Normal",
  35600. height: math.unit(10, "feet"),
  35601. default: true
  35602. },
  35603. ]
  35604. ))
  35605. characterMakers.push(() => makeCharacter(
  35606. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35607. {
  35608. front: {
  35609. height: math.unit(30, "stories"),
  35610. name: "Front",
  35611. image: {
  35612. source: "./media/characters/kai/front.svg",
  35613. extra: 1892/1718,
  35614. bottom: 162/2054
  35615. }
  35616. },
  35617. },
  35618. [
  35619. {
  35620. name: "Macro",
  35621. height: math.unit(30, "stories"),
  35622. default: true
  35623. },
  35624. ]
  35625. ))
  35626. characterMakers.push(() => makeCharacter(
  35627. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35628. {
  35629. front: {
  35630. height: math.unit(6 + 4/12, "feet"),
  35631. weight: math.unit(145, "lb"),
  35632. name: "Front",
  35633. image: {
  35634. source: "./media/characters/sykes/front.svg",
  35635. extra: 1321 / 1187,
  35636. bottom: 66 / 1387
  35637. }
  35638. },
  35639. back: {
  35640. height: math.unit(6 + 4/12, "feet"),
  35641. weight: math.unit(145, "lb"),
  35642. name: "Back",
  35643. image: {
  35644. source: "./media/characters/sykes/back.svg",
  35645. extra: 1326/1181,
  35646. bottom: 31/1357
  35647. }
  35648. },
  35649. traditionalOutfit: {
  35650. height: math.unit(6 + 4/12, "feet"),
  35651. weight: math.unit(145, "lb"),
  35652. name: "Traditional Outfit",
  35653. image: {
  35654. source: "./media/characters/sykes/traditional-outfit.svg",
  35655. extra: 1321 / 1187,
  35656. bottom: 66 / 1387
  35657. }
  35658. },
  35659. adventureOutfit: {
  35660. height: math.unit(6 + 4/12, "feet"),
  35661. weight: math.unit(145, "lb"),
  35662. name: "Adventure Outfit",
  35663. image: {
  35664. source: "./media/characters/sykes/adventure-outfit.svg",
  35665. extra: 1321 / 1187,
  35666. bottom: 66 / 1387
  35667. }
  35668. },
  35669. handLeft: {
  35670. height: math.unit(0.9, "feet"),
  35671. name: "Hand (Left)",
  35672. image: {
  35673. source: "./media/characters/sykes/hand-left.svg"
  35674. }
  35675. },
  35676. handRight: {
  35677. height: math.unit(0.839, "feet"),
  35678. name: "Hand (Right)",
  35679. image: {
  35680. source: "./media/characters/sykes/hand-right.svg"
  35681. }
  35682. },
  35683. leftFoot: {
  35684. height: math.unit(1.2, "feet"),
  35685. name: "Foot (Left)",
  35686. image: {
  35687. source: "./media/characters/sykes/foot-left.svg"
  35688. }
  35689. },
  35690. rightFoot: {
  35691. height: math.unit(1.2, "feet"),
  35692. name: "Foot (Right)",
  35693. image: {
  35694. source: "./media/characters/sykes/foot-right.svg"
  35695. }
  35696. },
  35697. maw: {
  35698. height: math.unit(1.93, "feet"),
  35699. name: "Maw",
  35700. image: {
  35701. source: "./media/characters/sykes/maw.svg"
  35702. }
  35703. },
  35704. teeth: {
  35705. height: math.unit(0.51, "feet"),
  35706. name: "Teeth",
  35707. image: {
  35708. source: "./media/characters/sykes/teeth.svg"
  35709. }
  35710. },
  35711. tongue: {
  35712. height: math.unit(2.13, "feet"),
  35713. name: "Tongue",
  35714. image: {
  35715. source: "./media/characters/sykes/tongue.svg"
  35716. }
  35717. },
  35718. uvula: {
  35719. height: math.unit(0.16, "feet"),
  35720. name: "Uvula",
  35721. image: {
  35722. source: "./media/characters/sykes/uvula.svg"
  35723. }
  35724. },
  35725. collar: {
  35726. height: math.unit(0.287, "feet"),
  35727. name: "Collar",
  35728. image: {
  35729. source: "./media/characters/sykes/collar.svg"
  35730. }
  35731. },
  35732. tail: {
  35733. height: math.unit(3.8, "feet"),
  35734. name: "Tail",
  35735. image: {
  35736. source: "./media/characters/sykes/tail.svg"
  35737. }
  35738. },
  35739. },
  35740. [
  35741. {
  35742. name: "Shrunken",
  35743. height: math.unit(5, "inches")
  35744. },
  35745. {
  35746. name: "Normal",
  35747. height: math.unit(6 + 4 / 12, "feet"),
  35748. default: true
  35749. },
  35750. {
  35751. name: "Big",
  35752. height: math.unit(15, "feet")
  35753. },
  35754. ]
  35755. ))
  35756. characterMakers.push(() => makeCharacter(
  35757. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35758. {
  35759. front: {
  35760. height: math.unit(5 + 8/12, "feet"),
  35761. weight: math.unit(190, "lb"),
  35762. name: "Front",
  35763. image: {
  35764. source: "./media/characters/oven-otter/front.svg",
  35765. extra: 1809/1740,
  35766. bottom: 181/1990
  35767. }
  35768. },
  35769. back: {
  35770. height: math.unit(5 + 8/12, "feet"),
  35771. weight: math.unit(190, "lb"),
  35772. name: "Back",
  35773. image: {
  35774. source: "./media/characters/oven-otter/back.svg",
  35775. extra: 1709/1635,
  35776. bottom: 118/1827
  35777. }
  35778. },
  35779. hand: {
  35780. height: math.unit(1.07, "feet"),
  35781. name: "Hand",
  35782. image: {
  35783. source: "./media/characters/oven-otter/hand.svg"
  35784. }
  35785. },
  35786. beans: {
  35787. height: math.unit(1.74, "feet"),
  35788. name: "Beans",
  35789. image: {
  35790. source: "./media/characters/oven-otter/beans.svg"
  35791. }
  35792. },
  35793. },
  35794. [
  35795. {
  35796. name: "Micro",
  35797. height: math.unit(0.5, "inches")
  35798. },
  35799. {
  35800. name: "Normal",
  35801. height: math.unit(5 + 8/12, "feet"),
  35802. default: true
  35803. },
  35804. {
  35805. name: "Macro",
  35806. height: math.unit(250, "feet")
  35807. },
  35808. {
  35809. name: "Really High",
  35810. height: math.unit(420, "feet")
  35811. },
  35812. ]
  35813. ))
  35814. characterMakers.push(() => makeCharacter(
  35815. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35816. {
  35817. front: {
  35818. height: math.unit(5, "meters"),
  35819. weight: math.unit(292000000000000, "kg"),
  35820. name: "Front",
  35821. image: {
  35822. source: "./media/characters/devourer/front.svg",
  35823. extra: 1800/1733,
  35824. bottom: 211/2011
  35825. }
  35826. },
  35827. maw: {
  35828. height: math.unit(1.1, "meter"),
  35829. name: "Maw",
  35830. image: {
  35831. source: "./media/characters/devourer/maw.svg"
  35832. }
  35833. },
  35834. },
  35835. [
  35836. {
  35837. name: "Small",
  35838. height: math.unit(3, "meters")
  35839. },
  35840. {
  35841. name: "Large",
  35842. height: math.unit(5, "meters"),
  35843. default: true
  35844. },
  35845. ]
  35846. ))
  35847. characterMakers.push(() => makeCharacter(
  35848. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35849. {
  35850. front: {
  35851. height: math.unit(6, "feet"),
  35852. weight: math.unit(400, "lb"),
  35853. name: "Front",
  35854. image: {
  35855. source: "./media/characters/ellarby/front.svg",
  35856. extra: 1909/1763,
  35857. bottom: 80/1989
  35858. }
  35859. },
  35860. back: {
  35861. height: math.unit(6, "feet"),
  35862. weight: math.unit(400, "lb"),
  35863. name: "Back",
  35864. image: {
  35865. source: "./media/characters/ellarby/back.svg",
  35866. extra: 1914/1784,
  35867. bottom: 172/2086
  35868. }
  35869. },
  35870. },
  35871. [
  35872. {
  35873. name: "Mischief",
  35874. height: math.unit(18, "inches")
  35875. },
  35876. {
  35877. name: "Trouble",
  35878. height: math.unit(12, "feet")
  35879. },
  35880. {
  35881. name: "Havoc",
  35882. height: math.unit(200, "feet"),
  35883. default: true
  35884. },
  35885. {
  35886. name: "Pandemonium",
  35887. height: math.unit(1, "mile")
  35888. },
  35889. {
  35890. name: "Catastrophe",
  35891. height: math.unit(100, "miles")
  35892. },
  35893. ]
  35894. ))
  35895. characterMakers.push(() => makeCharacter(
  35896. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35897. {
  35898. front: {
  35899. height: math.unit(4.7, "meters"),
  35900. weight: math.unit(6500, "kg"),
  35901. name: "Front",
  35902. image: {
  35903. source: "./media/characters/vex/front.svg",
  35904. extra: 1288/1140,
  35905. bottom: 100/1388
  35906. }
  35907. },
  35908. },
  35909. [
  35910. {
  35911. name: "Normal",
  35912. height: math.unit(4.7, "meters"),
  35913. default: true
  35914. },
  35915. ]
  35916. ))
  35917. characterMakers.push(() => makeCharacter(
  35918. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35919. {
  35920. normal: {
  35921. height: math.unit(6, "feet"),
  35922. weight: math.unit(350, "lb"),
  35923. name: "Normal",
  35924. image: {
  35925. source: "./media/characters/teshy/normal.svg",
  35926. extra: 1795/1735,
  35927. bottom: 16/1811
  35928. }
  35929. },
  35930. monsterFront: {
  35931. height: math.unit(12, "feet"),
  35932. weight: math.unit(4700, "lb"),
  35933. name: "Monster (Front)",
  35934. image: {
  35935. source: "./media/characters/teshy/monster-front.svg",
  35936. extra: 2042/2034,
  35937. bottom: 128/2170
  35938. }
  35939. },
  35940. monsterSide: {
  35941. height: math.unit(12, "feet"),
  35942. weight: math.unit(4700, "lb"),
  35943. name: "Monster (Side)",
  35944. image: {
  35945. source: "./media/characters/teshy/monster-side.svg",
  35946. extra: 2067/2056,
  35947. bottom: 70/2137
  35948. }
  35949. },
  35950. monsterBack: {
  35951. height: math.unit(12, "feet"),
  35952. weight: math.unit(4700, "lb"),
  35953. name: "Monster (Back)",
  35954. image: {
  35955. source: "./media/characters/teshy/monster-back.svg",
  35956. extra: 1921/1914,
  35957. bottom: 171/2092
  35958. }
  35959. },
  35960. },
  35961. [
  35962. {
  35963. name: "Normal",
  35964. height: math.unit(6, "feet"),
  35965. default: true
  35966. },
  35967. ]
  35968. ))
  35969. characterMakers.push(() => makeCharacter(
  35970. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35971. {
  35972. front: {
  35973. height: math.unit(6, "feet"),
  35974. name: "Front",
  35975. image: {
  35976. source: "./media/characters/ramey/front.svg",
  35977. extra: 790/787,
  35978. bottom: 27/817
  35979. }
  35980. },
  35981. },
  35982. [
  35983. {
  35984. name: "Normal",
  35985. height: math.unit(6, "feet"),
  35986. default: true
  35987. },
  35988. ]
  35989. ))
  35990. characterMakers.push(() => makeCharacter(
  35991. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35992. {
  35993. front: {
  35994. height: math.unit(5 + 5/12, "feet"),
  35995. weight: math.unit(120, "lb"),
  35996. name: "Front",
  35997. image: {
  35998. source: "./media/characters/phirae/front.svg",
  35999. extra: 2491/2436,
  36000. bottom: 38/2529
  36001. }
  36002. },
  36003. },
  36004. [
  36005. {
  36006. name: "Normal",
  36007. height: math.unit(5 + 5/12, "feet"),
  36008. default: true
  36009. },
  36010. ]
  36011. ))
  36012. characterMakers.push(() => makeCharacter(
  36013. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36014. {
  36015. front: {
  36016. height: math.unit(5 + 3/12, "feet"),
  36017. name: "Front",
  36018. image: {
  36019. source: "./media/characters/stagglas/front.svg",
  36020. extra: 962/882,
  36021. bottom: 53/1015
  36022. }
  36023. },
  36024. feral: {
  36025. height: math.unit(335, "cm"),
  36026. name: "Feral",
  36027. image: {
  36028. source: "./media/characters/stagglas/feral.svg",
  36029. extra: 1732/1090,
  36030. bottom: 48/1780
  36031. }
  36032. },
  36033. },
  36034. [
  36035. {
  36036. name: "Normal",
  36037. height: math.unit(5 + 3/12, "feet"),
  36038. default: true
  36039. },
  36040. ]
  36041. ))
  36042. characterMakers.push(() => makeCharacter(
  36043. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36044. {
  36045. front: {
  36046. height: math.unit(5 + 4/12, "feet"),
  36047. weight: math.unit(145, "lb"),
  36048. name: "Front",
  36049. image: {
  36050. source: "./media/characters/starra/front.svg",
  36051. extra: 1790/1691,
  36052. bottom: 91/1881
  36053. }
  36054. },
  36055. },
  36056. [
  36057. {
  36058. name: "Normal",
  36059. height: math.unit(5 + 4/12, "feet"),
  36060. default: true
  36061. },
  36062. ]
  36063. ))
  36064. characterMakers.push(() => makeCharacter(
  36065. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36066. {
  36067. front: {
  36068. height: math.unit(2.2, "meters"),
  36069. name: "Front",
  36070. image: {
  36071. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36072. extra: 1248/972,
  36073. bottom: 38/1286
  36074. }
  36075. },
  36076. },
  36077. [
  36078. {
  36079. name: "Normal",
  36080. height: math.unit(2.2, "meters"),
  36081. default: true
  36082. },
  36083. ]
  36084. ))
  36085. characterMakers.push(() => makeCharacter(
  36086. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36087. {
  36088. side: {
  36089. height: math.unit(8 + 2/12, "feet"),
  36090. weight: math.unit(1240, "lb"),
  36091. name: "Side",
  36092. image: {
  36093. source: "./media/characters/mika-valentine/side.svg",
  36094. extra: 2670/2501,
  36095. bottom: 250/2920
  36096. }
  36097. },
  36098. },
  36099. [
  36100. {
  36101. name: "Normal",
  36102. height: math.unit(8 + 2/12, "feet"),
  36103. default: true
  36104. },
  36105. ]
  36106. ))
  36107. characterMakers.push(() => makeCharacter(
  36108. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36109. {
  36110. front: {
  36111. height: math.unit(7 + 2/12, "feet"),
  36112. name: "Front",
  36113. image: {
  36114. source: "./media/characters/xoltol/front.svg",
  36115. extra: 2212/2124,
  36116. bottom: 84/2296
  36117. }
  36118. },
  36119. side: {
  36120. height: math.unit(7 + 2/12, "feet"),
  36121. name: "Side",
  36122. image: {
  36123. source: "./media/characters/xoltol/side.svg",
  36124. extra: 2273/2197,
  36125. bottom: 26/2299
  36126. }
  36127. },
  36128. hand: {
  36129. height: math.unit(2.5, "feet"),
  36130. name: "Hand",
  36131. image: {
  36132. source: "./media/characters/xoltol/hand.svg"
  36133. }
  36134. },
  36135. },
  36136. [
  36137. {
  36138. name: "Small-ish",
  36139. height: math.unit(5 + 11/12, "feet")
  36140. },
  36141. {
  36142. name: "Normal",
  36143. height: math.unit(7 + 2/12, "feet")
  36144. },
  36145. {
  36146. name: "\"Macro\"",
  36147. height: math.unit(14 + 9/12, "feet"),
  36148. default: true
  36149. },
  36150. {
  36151. name: "Alternate Height",
  36152. height: math.unit(20, "feet")
  36153. },
  36154. {
  36155. name: "Actually Macro",
  36156. height: math.unit(100, "feet")
  36157. },
  36158. ]
  36159. ))
  36160. characterMakers.push(() => makeCharacter(
  36161. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36162. {
  36163. front: {
  36164. height: math.unit(5 + 2/12, "feet"),
  36165. name: "Front",
  36166. image: {
  36167. source: "./media/characters/kotetsu-redwood/front.svg",
  36168. extra: 1053/942,
  36169. bottom: 60/1113
  36170. }
  36171. },
  36172. },
  36173. [
  36174. {
  36175. name: "Normal",
  36176. height: math.unit(5 + 2/12, "feet"),
  36177. default: true
  36178. },
  36179. ]
  36180. ))
  36181. characterMakers.push(() => makeCharacter(
  36182. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36183. {
  36184. front: {
  36185. height: math.unit(2.4, "meters"),
  36186. weight: math.unit(125, "kg"),
  36187. name: "Front",
  36188. image: {
  36189. source: "./media/characters/lilith/front.svg",
  36190. extra: 1590/1513,
  36191. bottom: 203/1793
  36192. }
  36193. },
  36194. },
  36195. [
  36196. {
  36197. name: "Humanoid",
  36198. height: math.unit(2.4, "meters")
  36199. },
  36200. {
  36201. name: "Normal",
  36202. height: math.unit(6, "meters"),
  36203. default: true
  36204. },
  36205. {
  36206. name: "Largest",
  36207. height: math.unit(55, "meters")
  36208. },
  36209. ]
  36210. ))
  36211. characterMakers.push(() => makeCharacter(
  36212. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36213. {
  36214. front: {
  36215. height: math.unit(8 + 4/12, "feet"),
  36216. weight: math.unit(535, "lb"),
  36217. name: "Front",
  36218. image: {
  36219. source: "./media/characters/beh'kah-bolger/front.svg",
  36220. extra: 1660/1603,
  36221. bottom: 37/1697
  36222. }
  36223. },
  36224. },
  36225. [
  36226. {
  36227. name: "Normal",
  36228. height: math.unit(8 + 4/12, "feet"),
  36229. default: true
  36230. },
  36231. {
  36232. name: "Kaiju",
  36233. height: math.unit(250, "feet")
  36234. },
  36235. {
  36236. name: "Still Growing",
  36237. height: math.unit(10, "miles")
  36238. },
  36239. {
  36240. name: "Continental",
  36241. height: math.unit(5000, "miles")
  36242. },
  36243. {
  36244. name: "Final Form",
  36245. height: math.unit(2500000, "miles")
  36246. },
  36247. ]
  36248. ))
  36249. characterMakers.push(() => makeCharacter(
  36250. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36251. {
  36252. front: {
  36253. height: math.unit(7 + 2/12, "feet"),
  36254. weight: math.unit(230, "kg"),
  36255. name: "Front",
  36256. image: {
  36257. source: "./media/characters/tatyana-milewska/front.svg",
  36258. extra: 1199/1150,
  36259. bottom: 86/1285
  36260. }
  36261. },
  36262. },
  36263. [
  36264. {
  36265. name: "Normal",
  36266. height: math.unit(7 + 2/12, "feet"),
  36267. default: true
  36268. },
  36269. {
  36270. name: "Big",
  36271. height: math.unit(12, "feet")
  36272. },
  36273. {
  36274. name: "Minimacro",
  36275. height: math.unit(20, "feet")
  36276. },
  36277. {
  36278. name: "Macro",
  36279. height: math.unit(120, "feet")
  36280. },
  36281. ]
  36282. ))
  36283. characterMakers.push(() => makeCharacter(
  36284. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36285. {
  36286. front: {
  36287. height: math.unit(7 + 8/12, "feet"),
  36288. weight: math.unit(152, "kg"),
  36289. name: "Front",
  36290. image: {
  36291. source: "./media/characters/helen-arri/front.svg",
  36292. extra: 440/423,
  36293. bottom: 14/454
  36294. }
  36295. },
  36296. back: {
  36297. height: math.unit(7 + 8/12, "feet"),
  36298. weight: math.unit(152, "kg"),
  36299. name: "Back",
  36300. image: {
  36301. source: "./media/characters/helen-arri/back.svg",
  36302. extra: 443/426,
  36303. bottom: 8/451
  36304. }
  36305. },
  36306. },
  36307. [
  36308. {
  36309. name: "Normal",
  36310. height: math.unit(7 + 8/12, "feet"),
  36311. default: true
  36312. },
  36313. {
  36314. name: "Big",
  36315. height: math.unit(14, "feet")
  36316. },
  36317. {
  36318. name: "Minimacro",
  36319. height: math.unit(24, "feet")
  36320. },
  36321. {
  36322. name: "Macro",
  36323. height: math.unit(140, "feet")
  36324. },
  36325. ]
  36326. ))
  36327. characterMakers.push(() => makeCharacter(
  36328. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36329. {
  36330. front: {
  36331. height: math.unit(6, "meters"),
  36332. name: "Front",
  36333. image: {
  36334. source: "./media/characters/ehanu-rehu/front.svg",
  36335. extra: 1800/1800,
  36336. bottom: 59/1859
  36337. }
  36338. },
  36339. },
  36340. [
  36341. {
  36342. name: "Normal",
  36343. height: math.unit(6, "meters"),
  36344. default: true
  36345. },
  36346. ]
  36347. ))
  36348. characterMakers.push(() => makeCharacter(
  36349. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36350. {
  36351. front: {
  36352. height: math.unit(7 + 3/12, "feet"),
  36353. name: "Front",
  36354. image: {
  36355. source: "./media/characters/renholder/front.svg",
  36356. extra: 3096/2960,
  36357. bottom: 250/3346
  36358. }
  36359. },
  36360. },
  36361. [
  36362. {
  36363. name: "Normal Bat",
  36364. height: math.unit(7 + 3/12, "feet"),
  36365. default: true
  36366. },
  36367. {
  36368. name: "Slightly Tall Bat",
  36369. height: math.unit(100, "feet")
  36370. },
  36371. {
  36372. name: "Big Bat",
  36373. height: math.unit(1000, "feet")
  36374. },
  36375. {
  36376. name: "City-Sized Bat",
  36377. height: math.unit(200000, "feet")
  36378. },
  36379. {
  36380. name: "Bigger Bat",
  36381. height: math.unit(10000, "miles")
  36382. },
  36383. {
  36384. name: "Solar Sized Bat",
  36385. height: math.unit(100, "AU")
  36386. },
  36387. {
  36388. name: "Galactic Bat",
  36389. height: math.unit(200000, "lightyears")
  36390. },
  36391. {
  36392. name: "Universally Known Bat",
  36393. height: math.unit(1, "universe")
  36394. },
  36395. ]
  36396. ))
  36397. characterMakers.push(() => makeCharacter(
  36398. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36399. {
  36400. front: {
  36401. height: math.unit(6 + 11/12, "feet"),
  36402. weight: math.unit(250, "lb"),
  36403. name: "Front",
  36404. image: {
  36405. source: "./media/characters/cookiecat/front.svg",
  36406. extra: 893/827,
  36407. bottom: 14/907
  36408. }
  36409. },
  36410. },
  36411. [
  36412. {
  36413. name: "Micro",
  36414. height: math.unit(3, "inches")
  36415. },
  36416. {
  36417. name: "Normal",
  36418. height: math.unit(6 + 11/12, "feet"),
  36419. default: true
  36420. },
  36421. {
  36422. name: "Macro",
  36423. height: math.unit(100, "feet")
  36424. },
  36425. {
  36426. name: "Macro+",
  36427. height: math.unit(404, "feet")
  36428. },
  36429. {
  36430. name: "Megamacro",
  36431. height: math.unit(165, "miles")
  36432. },
  36433. {
  36434. name: "Planetary",
  36435. height: math.unit(4600, "miles")
  36436. },
  36437. ]
  36438. ))
  36439. characterMakers.push(() => makeCharacter(
  36440. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36441. {
  36442. front: {
  36443. height: math.unit(10 + 3/12, "feet"),
  36444. weight: math.unit(1500, "lb"),
  36445. name: "Front",
  36446. image: {
  36447. source: "./media/characters/tux-kusanagi/front.svg",
  36448. extra: 944/840,
  36449. bottom: 39/983
  36450. }
  36451. },
  36452. back: {
  36453. height: math.unit(10 + 3/12, "feet"),
  36454. weight: math.unit(1500, "lb"),
  36455. name: "Back",
  36456. image: {
  36457. source: "./media/characters/tux-kusanagi/back.svg",
  36458. extra: 941/842,
  36459. bottom: 28/969
  36460. }
  36461. },
  36462. rump: {
  36463. height: math.unit(5.25, "feet"),
  36464. name: "Rump",
  36465. image: {
  36466. source: "./media/characters/tux-kusanagi/rump.svg"
  36467. }
  36468. },
  36469. beak: {
  36470. height: math.unit(1.54, "feet"),
  36471. name: "Beak",
  36472. image: {
  36473. source: "./media/characters/tux-kusanagi/beak.svg"
  36474. }
  36475. },
  36476. },
  36477. [
  36478. {
  36479. name: "Normal",
  36480. height: math.unit(10 + 3/12, "feet"),
  36481. default: true
  36482. },
  36483. ]
  36484. ))
  36485. characterMakers.push(() => makeCharacter(
  36486. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36487. {
  36488. front: {
  36489. height: math.unit(58, "feet"),
  36490. weight: math.unit(200, "tons"),
  36491. name: "Front",
  36492. image: {
  36493. source: "./media/characters/uzarmazari/front.svg",
  36494. extra: 1575/1455,
  36495. bottom: 152/1727
  36496. }
  36497. },
  36498. back: {
  36499. height: math.unit(58, "feet"),
  36500. weight: math.unit(200, "tons"),
  36501. name: "Back",
  36502. image: {
  36503. source: "./media/characters/uzarmazari/back.svg",
  36504. extra: 1585/1510,
  36505. bottom: 157/1742
  36506. }
  36507. },
  36508. head: {
  36509. height: math.unit(26, "feet"),
  36510. name: "Head",
  36511. image: {
  36512. source: "./media/characters/uzarmazari/head.svg"
  36513. }
  36514. },
  36515. },
  36516. [
  36517. {
  36518. name: "Normal",
  36519. height: math.unit(58, "feet"),
  36520. default: true
  36521. },
  36522. ]
  36523. ))
  36524. characterMakers.push(() => makeCharacter(
  36525. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36526. {
  36527. side: {
  36528. height: math.unit(15, "feet"),
  36529. name: "Side",
  36530. image: {
  36531. source: "./media/characters/akitu/side.svg",
  36532. extra: 1421/1321,
  36533. bottom: 157/1578
  36534. }
  36535. },
  36536. front: {
  36537. height: math.unit(15, "feet"),
  36538. name: "Front",
  36539. image: {
  36540. source: "./media/characters/akitu/front.svg",
  36541. extra: 1435/1326,
  36542. bottom: 232/1667
  36543. }
  36544. },
  36545. },
  36546. [
  36547. {
  36548. name: "Normal",
  36549. height: math.unit(15, "feet"),
  36550. default: true
  36551. },
  36552. ]
  36553. ))
  36554. characterMakers.push(() => makeCharacter(
  36555. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36556. {
  36557. front: {
  36558. height: math.unit(10 + 8/12, "feet"),
  36559. name: "Front",
  36560. image: {
  36561. source: "./media/characters/azalie-croixland/front.svg",
  36562. extra: 1972/1856,
  36563. bottom: 31/2003
  36564. }
  36565. },
  36566. },
  36567. [
  36568. {
  36569. name: "Original Height",
  36570. height: math.unit(5 + 4/12, "feet")
  36571. },
  36572. {
  36573. name: "Normal Height",
  36574. height: math.unit(10 + 8/12, "feet"),
  36575. default: true
  36576. },
  36577. ]
  36578. ))
  36579. characterMakers.push(() => makeCharacter(
  36580. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36581. {
  36582. side: {
  36583. height: math.unit(7 + 1/12, "feet"),
  36584. weight: math.unit(245, "lb"),
  36585. name: "Side",
  36586. image: {
  36587. source: "./media/characters/kavus-kazian/side.svg",
  36588. extra: 349/342,
  36589. bottom: 15/364
  36590. }
  36591. },
  36592. },
  36593. [
  36594. {
  36595. name: "Normal",
  36596. height: math.unit(7 + 1/12, "feet"),
  36597. default: true
  36598. },
  36599. ]
  36600. ))
  36601. characterMakers.push(() => makeCharacter(
  36602. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36603. {
  36604. normalFront: {
  36605. height: math.unit(5 + 11/12, "feet"),
  36606. name: "Front",
  36607. image: {
  36608. source: "./media/characters/moonlight-rose/normal-front.svg",
  36609. extra: 1980/1825,
  36610. bottom: 18/1998
  36611. },
  36612. form: "normal",
  36613. default: true
  36614. },
  36615. normalBack: {
  36616. height: math.unit(5 + 11/12, "feet"),
  36617. name: "Back",
  36618. image: {
  36619. source: "./media/characters/moonlight-rose/normal-back.svg",
  36620. extra: 2010/1839,
  36621. bottom: 10/2020
  36622. },
  36623. form: "normal"
  36624. },
  36625. demonFront: {
  36626. height: math.unit(1.5, "earths"),
  36627. name: "Front",
  36628. image: {
  36629. source: "./media/characters/moonlight-rose/demon.svg",
  36630. extra: 1400/1294,
  36631. bottom: 45/1445
  36632. },
  36633. form: "demon",
  36634. default: true
  36635. },
  36636. terraFront: {
  36637. height: math.unit(1.5, "earths"),
  36638. name: "Front",
  36639. image: {
  36640. source: "./media/characters/moonlight-rose/terra.svg"
  36641. },
  36642. form: "terra",
  36643. default: true
  36644. },
  36645. jupiterFront: {
  36646. height: math.unit(69911*2, "km"),
  36647. name: "Front",
  36648. image: {
  36649. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36650. extra: 1367/1286,
  36651. bottom: 55/1422
  36652. },
  36653. form: "jupiter",
  36654. default: true
  36655. },
  36656. neptuneFront: {
  36657. height: math.unit(24622*2, "feet"),
  36658. name: "Front",
  36659. image: {
  36660. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36661. extra: 1851/1712,
  36662. bottom: 0/1851
  36663. },
  36664. form: "neptune",
  36665. default: true
  36666. },
  36667. },
  36668. [
  36669. {
  36670. name: "\"Natural\" Height",
  36671. height: math.unit(5 + 11/12, "feet"),
  36672. form: "normal"
  36673. },
  36674. {
  36675. name: "Smallest comfortable size",
  36676. height: math.unit(40, "meters"),
  36677. form: "normal"
  36678. },
  36679. {
  36680. name: "Common size",
  36681. height: math.unit(50, "km"),
  36682. form: "normal",
  36683. default: true
  36684. },
  36685. {
  36686. name: "Normal",
  36687. height: math.unit(1.5, "earths"),
  36688. form: "demon",
  36689. default: true
  36690. },
  36691. {
  36692. name: "Universal",
  36693. height: math.unit(15, "universes"),
  36694. form: "demon"
  36695. },
  36696. {
  36697. name: "Earth",
  36698. height: math.unit(1.5, "earths"),
  36699. form: "terra",
  36700. default: true
  36701. },
  36702. {
  36703. name: "Super Earth",
  36704. height: math.unit(67.5, "earths"),
  36705. form: "terra"
  36706. },
  36707. {
  36708. name: "Doesn't fit in a solar system...",
  36709. height: math.unit(1, "galaxy"),
  36710. form: "terra"
  36711. },
  36712. {
  36713. name: "Saturn",
  36714. height: math.unit(58232*2, "km"),
  36715. form: "jupiter"
  36716. },
  36717. {
  36718. name: "Jupiter",
  36719. height: math.unit(69911*2, "km"),
  36720. form: "jupiter",
  36721. default: true
  36722. },
  36723. {
  36724. name: "HD 100546 b",
  36725. height: math.unit(482938, "km"),
  36726. form: "jupiter"
  36727. },
  36728. {
  36729. name: "Enceladus",
  36730. height: math.unit(513*2, "km"),
  36731. form: "neptune"
  36732. },
  36733. {
  36734. name: "Europe",
  36735. height: math.unit(1560*2, "km"),
  36736. form: "neptune"
  36737. },
  36738. {
  36739. name: "Neptune",
  36740. height: math.unit(24622*2, "km"),
  36741. form: "neptune",
  36742. default: true
  36743. },
  36744. {
  36745. name: "CoRoT-9b",
  36746. height: math.unit(75067*2, "km"),
  36747. form: "neptune"
  36748. },
  36749. ],
  36750. {
  36751. "normal": {
  36752. name: "Normal",
  36753. default: true
  36754. },
  36755. "demon": {
  36756. name: "Demon"
  36757. },
  36758. "terra": {
  36759. name: "Terra"
  36760. },
  36761. "jupiter": {
  36762. name: "Jupiter"
  36763. },
  36764. "neptune": {
  36765. name: "Neptune"
  36766. }
  36767. }
  36768. ))
  36769. characterMakers.push(() => makeCharacter(
  36770. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36771. {
  36772. front: {
  36773. height: math.unit(16, "feet"),
  36774. weight: math.unit(610, "kg"),
  36775. name: "Front",
  36776. image: {
  36777. source: "./media/characters/huckle/front.svg",
  36778. extra: 1731/1625,
  36779. bottom: 33/1764
  36780. }
  36781. },
  36782. back: {
  36783. height: math.unit(16, "feet"),
  36784. weight: math.unit(610, "kg"),
  36785. name: "Back",
  36786. image: {
  36787. source: "./media/characters/huckle/back.svg",
  36788. extra: 1738/1651,
  36789. bottom: 37/1775
  36790. }
  36791. },
  36792. laughing: {
  36793. height: math.unit(3.75, "feet"),
  36794. name: "Laughing",
  36795. image: {
  36796. source: "./media/characters/huckle/laughing.svg"
  36797. }
  36798. },
  36799. angry: {
  36800. height: math.unit(4.15, "feet"),
  36801. name: "Angry",
  36802. image: {
  36803. source: "./media/characters/huckle/angry.svg"
  36804. }
  36805. },
  36806. },
  36807. [
  36808. {
  36809. name: "Normal",
  36810. height: math.unit(16, "feet"),
  36811. default: true
  36812. },
  36813. {
  36814. name: "Mini Macro",
  36815. height: math.unit(463, "feet")
  36816. },
  36817. {
  36818. name: "Macro",
  36819. height: math.unit(1680, "meters")
  36820. },
  36821. {
  36822. name: "Mega Macro",
  36823. height: math.unit(175, "km")
  36824. },
  36825. {
  36826. name: "Terra Macro",
  36827. height: math.unit(32, "gigameters")
  36828. },
  36829. {
  36830. name: "Multiverse+",
  36831. height: math.unit(2.56e23, "yottameters")
  36832. },
  36833. ]
  36834. ))
  36835. characterMakers.push(() => makeCharacter(
  36836. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36837. {
  36838. front: {
  36839. height: math.unit(6 + 9/12, "feet"),
  36840. weight: math.unit(280, "lb"),
  36841. name: "Front",
  36842. image: {
  36843. source: "./media/characters/candy/front.svg",
  36844. extra: 234/217,
  36845. bottom: 11/245
  36846. }
  36847. },
  36848. },
  36849. [
  36850. {
  36851. name: "Really Small",
  36852. height: math.unit(0.1, "nm")
  36853. },
  36854. {
  36855. name: "Micro",
  36856. height: math.unit(2, "inches")
  36857. },
  36858. {
  36859. name: "Normal",
  36860. height: math.unit(6 + 9/12, "feet"),
  36861. default: true
  36862. },
  36863. {
  36864. name: "Small Macro",
  36865. height: math.unit(69, "feet")
  36866. },
  36867. {
  36868. name: "Macro",
  36869. height: math.unit(160, "feet")
  36870. },
  36871. {
  36872. name: "Megamacro",
  36873. height: math.unit(22000, "miles")
  36874. },
  36875. {
  36876. name: "Gigamacro",
  36877. height: math.unit(50000, "miles")
  36878. },
  36879. ]
  36880. ))
  36881. characterMakers.push(() => makeCharacter(
  36882. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36883. {
  36884. front: {
  36885. height: math.unit(4, "feet"),
  36886. weight: math.unit(90, "lb"),
  36887. name: "Front",
  36888. image: {
  36889. source: "./media/characters/joey-mcdonald/front.svg",
  36890. extra: 1059/852,
  36891. bottom: 33/1092
  36892. }
  36893. },
  36894. back: {
  36895. height: math.unit(4, "feet"),
  36896. weight: math.unit(90, "lb"),
  36897. name: "Back",
  36898. image: {
  36899. source: "./media/characters/joey-mcdonald/back.svg",
  36900. extra: 1077/879,
  36901. bottom: 5/1082
  36902. }
  36903. },
  36904. frontKobold: {
  36905. height: math.unit(4, "feet"),
  36906. weight: math.unit(100, "lb"),
  36907. name: "Front-kobold",
  36908. image: {
  36909. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36910. extra: 1480/1367,
  36911. bottom: 0/1480
  36912. }
  36913. },
  36914. backKobold: {
  36915. height: math.unit(4, "feet"),
  36916. weight: math.unit(100, "lb"),
  36917. name: "Back-kobold",
  36918. image: {
  36919. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36920. extra: 1449/1361,
  36921. bottom: 0/1449
  36922. }
  36923. },
  36924. },
  36925. [
  36926. {
  36927. name: "Normal",
  36928. height: math.unit(4, "feet"),
  36929. default: true
  36930. },
  36931. ]
  36932. ))
  36933. characterMakers.push(() => makeCharacter(
  36934. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36935. {
  36936. front: {
  36937. height: math.unit(12 + 6/12, "feet"),
  36938. name: "Front",
  36939. image: {
  36940. source: "./media/characters/kass-lockheed/front.svg",
  36941. extra: 354/343,
  36942. bottom: 9/363
  36943. }
  36944. },
  36945. back: {
  36946. height: math.unit(12 + 6/12, "feet"),
  36947. name: "Back",
  36948. image: {
  36949. source: "./media/characters/kass-lockheed/back.svg",
  36950. extra: 364/352,
  36951. bottom: 3/367
  36952. }
  36953. },
  36954. dick: {
  36955. height: math.unit(3.12, "feet"),
  36956. name: "Dick",
  36957. image: {
  36958. source: "./media/characters/kass-lockheed/dick.svg"
  36959. }
  36960. },
  36961. head: {
  36962. height: math.unit(2.6, "feet"),
  36963. name: "Head",
  36964. image: {
  36965. source: "./media/characters/kass-lockheed/head.svg"
  36966. }
  36967. },
  36968. bleh: {
  36969. height: math.unit(2.85, "feet"),
  36970. name: "Bleh",
  36971. image: {
  36972. source: "./media/characters/kass-lockheed/bleh.svg"
  36973. }
  36974. },
  36975. smug: {
  36976. height: math.unit(2.85, "feet"),
  36977. name: "Smug",
  36978. image: {
  36979. source: "./media/characters/kass-lockheed/smug.svg"
  36980. }
  36981. },
  36982. },
  36983. [
  36984. {
  36985. name: "Normal",
  36986. height: math.unit(12 + 6/12, "feet"),
  36987. default: true
  36988. },
  36989. ]
  36990. ))
  36991. characterMakers.push(() => makeCharacter(
  36992. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36993. {
  36994. front: {
  36995. height: math.unit(6 + 2/12, "feet"),
  36996. name: "Front",
  36997. image: {
  36998. source: "./media/characters/taylor/front.svg",
  36999. extra: 639/495,
  37000. bottom: 12/651
  37001. }
  37002. },
  37003. },
  37004. [
  37005. {
  37006. name: "Normal",
  37007. height: math.unit(6 + 2/12, "feet"),
  37008. default: true
  37009. },
  37010. {
  37011. name: "Big",
  37012. height: math.unit(15, "feet")
  37013. },
  37014. {
  37015. name: "Lorg",
  37016. height: math.unit(80, "feet")
  37017. },
  37018. {
  37019. name: "Too Lorg",
  37020. height: math.unit(120, "feet")
  37021. },
  37022. ]
  37023. ))
  37024. characterMakers.push(() => makeCharacter(
  37025. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37026. {
  37027. front: {
  37028. height: math.unit(15, "feet"),
  37029. name: "Front",
  37030. image: {
  37031. source: "./media/characters/kaizer/front.svg",
  37032. extra: 1612/1436,
  37033. bottom: 43/1655
  37034. }
  37035. },
  37036. },
  37037. [
  37038. {
  37039. name: "Normal",
  37040. height: math.unit(15, "feet"),
  37041. default: true
  37042. },
  37043. ]
  37044. ))
  37045. characterMakers.push(() => makeCharacter(
  37046. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37047. {
  37048. front: {
  37049. height: math.unit(2, "feet"),
  37050. weight: math.unit(30, "lb"),
  37051. name: "Front",
  37052. image: {
  37053. source: "./media/characters/sandy/front.svg",
  37054. extra: 1439/1307,
  37055. bottom: 194/1633
  37056. }
  37057. },
  37058. },
  37059. [
  37060. {
  37061. name: "Normal",
  37062. height: math.unit(2, "feet"),
  37063. default: true
  37064. },
  37065. ]
  37066. ))
  37067. characterMakers.push(() => makeCharacter(
  37068. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37069. {
  37070. front: {
  37071. height: math.unit(3, "feet"),
  37072. name: "Front",
  37073. image: {
  37074. source: "./media/characters/mellvi/front.svg",
  37075. extra: 1831/1630,
  37076. bottom: 58/1889
  37077. }
  37078. },
  37079. },
  37080. [
  37081. {
  37082. name: "Normal",
  37083. height: math.unit(3, "feet"),
  37084. default: true
  37085. },
  37086. ]
  37087. ))
  37088. characterMakers.push(() => makeCharacter(
  37089. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37090. {
  37091. front: {
  37092. height: math.unit(5 + 11/12, "feet"),
  37093. weight: math.unit(200, "lb"),
  37094. name: "Front",
  37095. image: {
  37096. source: "./media/characters/shirou/front.svg",
  37097. extra: 2491/2383,
  37098. bottom: 189/2680
  37099. }
  37100. },
  37101. back: {
  37102. height: math.unit(5 + 11/12, "feet"),
  37103. weight: math.unit(200, "lb"),
  37104. name: "Back",
  37105. image: {
  37106. source: "./media/characters/shirou/back.svg",
  37107. extra: 2554/2450,
  37108. bottom: 76/2630
  37109. }
  37110. },
  37111. },
  37112. [
  37113. {
  37114. name: "Normal",
  37115. height: math.unit(5 + 11/12, "feet"),
  37116. default: true
  37117. },
  37118. ]
  37119. ))
  37120. characterMakers.push(() => makeCharacter(
  37121. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37122. {
  37123. front: {
  37124. height: math.unit(6 + 3/12, "feet"),
  37125. weight: math.unit(177, "lb"),
  37126. name: "Front",
  37127. image: {
  37128. source: "./media/characters/noryu/front.svg",
  37129. extra: 973/885,
  37130. bottom: 10/983
  37131. }
  37132. },
  37133. },
  37134. [
  37135. {
  37136. name: "Normal",
  37137. height: math.unit(6 + 3/12, "feet"),
  37138. default: true
  37139. },
  37140. ]
  37141. ))
  37142. characterMakers.push(() => makeCharacter(
  37143. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37144. {
  37145. front: {
  37146. height: math.unit(5 + 6/12, "feet"),
  37147. weight: math.unit(170, "lb"),
  37148. name: "Front",
  37149. image: {
  37150. source: "./media/characters/mevolas-rubenido/front.svg",
  37151. extra: 2109/1901,
  37152. bottom: 96/2205
  37153. }
  37154. },
  37155. },
  37156. [
  37157. {
  37158. name: "Normal",
  37159. height: math.unit(5 + 6/12, "feet"),
  37160. default: true
  37161. },
  37162. ]
  37163. ))
  37164. characterMakers.push(() => makeCharacter(
  37165. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37166. {
  37167. front: {
  37168. height: math.unit(100, "feet"),
  37169. name: "Front",
  37170. image: {
  37171. source: "./media/characters/dee/front.svg",
  37172. extra: 2153/2036,
  37173. bottom: 59/2212
  37174. }
  37175. },
  37176. back: {
  37177. height: math.unit(100, "feet"),
  37178. name: "Back",
  37179. image: {
  37180. source: "./media/characters/dee/back.svg",
  37181. extra: 2183/2058,
  37182. bottom: 75/2258
  37183. }
  37184. },
  37185. foot: {
  37186. height: math.unit(19.43, "feet"),
  37187. name: "Foot",
  37188. image: {
  37189. source: "./media/characters/dee/foot.svg"
  37190. }
  37191. },
  37192. hoof: {
  37193. height: math.unit(20.6, "feet"),
  37194. name: "Hoof",
  37195. image: {
  37196. source: "./media/characters/dee/hoof.svg"
  37197. }
  37198. },
  37199. },
  37200. [
  37201. {
  37202. name: "Macro",
  37203. height: math.unit(100, "feet"),
  37204. default: true
  37205. },
  37206. ]
  37207. ))
  37208. characterMakers.push(() => makeCharacter(
  37209. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37210. {
  37211. front: {
  37212. height: math.unit(5 + 6/12, "feet"),
  37213. name: "Front",
  37214. image: {
  37215. source: "./media/characters/teh/front.svg",
  37216. extra: 1002/847,
  37217. bottom: 62/1064
  37218. }
  37219. },
  37220. },
  37221. [
  37222. {
  37223. name: "Normal",
  37224. height: math.unit(5 + 6/12, "feet"),
  37225. default: true
  37226. },
  37227. ]
  37228. ))
  37229. characterMakers.push(() => makeCharacter(
  37230. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37231. {
  37232. side: {
  37233. height: math.unit(6 + 1/12, "feet"),
  37234. weight: math.unit(204, "lb"),
  37235. name: "Side",
  37236. image: {
  37237. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37238. extra: 974/775,
  37239. bottom: 169/1143
  37240. }
  37241. },
  37242. sitting: {
  37243. height: math.unit(6 + 2/12, "feet"),
  37244. weight: math.unit(204, "lb"),
  37245. name: "Sitting",
  37246. image: {
  37247. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37248. extra: 1175/964,
  37249. bottom: 378/1553
  37250. }
  37251. },
  37252. },
  37253. [
  37254. {
  37255. name: "Normal",
  37256. height: math.unit(6 + 1/12, "feet"),
  37257. default: true
  37258. },
  37259. ]
  37260. ))
  37261. characterMakers.push(() => makeCharacter(
  37262. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37263. {
  37264. front: {
  37265. height: math.unit(6, "inches"),
  37266. name: "Front",
  37267. image: {
  37268. source: "./media/characters/tululi/front.svg",
  37269. extra: 1997/1876,
  37270. bottom: 20/2017
  37271. }
  37272. },
  37273. },
  37274. [
  37275. {
  37276. name: "Normal",
  37277. height: math.unit(6, "inches"),
  37278. default: true
  37279. },
  37280. ]
  37281. ))
  37282. characterMakers.push(() => makeCharacter(
  37283. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37284. {
  37285. front: {
  37286. height: math.unit(4 + 1/12, "feet"),
  37287. name: "Front",
  37288. image: {
  37289. source: "./media/characters/star/front.svg",
  37290. extra: 1493/1189,
  37291. bottom: 48/1541
  37292. }
  37293. },
  37294. },
  37295. [
  37296. {
  37297. name: "Normal",
  37298. height: math.unit(4 + 1/12, "feet"),
  37299. default: true
  37300. },
  37301. ]
  37302. ))
  37303. characterMakers.push(() => makeCharacter(
  37304. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37305. {
  37306. front: {
  37307. height: math.unit(6 + 3/12, "feet"),
  37308. name: "Front",
  37309. image: {
  37310. source: "./media/characters/comet/front.svg",
  37311. extra: 1681/1462,
  37312. bottom: 26/1707
  37313. }
  37314. },
  37315. },
  37316. [
  37317. {
  37318. name: "Normal",
  37319. height: math.unit(6 + 3/12, "feet"),
  37320. default: true
  37321. },
  37322. ]
  37323. ))
  37324. characterMakers.push(() => makeCharacter(
  37325. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37326. {
  37327. front: {
  37328. height: math.unit(950, "feet"),
  37329. name: "Front",
  37330. image: {
  37331. source: "./media/characters/vortex/front.svg",
  37332. extra: 1497/1434,
  37333. bottom: 56/1553
  37334. }
  37335. },
  37336. maw: {
  37337. height: math.unit(285, "feet"),
  37338. name: "Maw",
  37339. image: {
  37340. source: "./media/characters/vortex/maw.svg"
  37341. }
  37342. },
  37343. },
  37344. [
  37345. {
  37346. name: "Macro",
  37347. height: math.unit(950, "feet"),
  37348. default: true
  37349. },
  37350. ]
  37351. ))
  37352. characterMakers.push(() => makeCharacter(
  37353. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37354. {
  37355. front: {
  37356. height: math.unit(600, "feet"),
  37357. weight: math.unit(0.02, "grams"),
  37358. name: "Front",
  37359. image: {
  37360. source: "./media/characters/doodle/front.svg",
  37361. extra: 1578/1413,
  37362. bottom: 37/1615
  37363. }
  37364. },
  37365. },
  37366. [
  37367. {
  37368. name: "Macro",
  37369. height: math.unit(600, "feet"),
  37370. default: true
  37371. },
  37372. ]
  37373. ))
  37374. characterMakers.push(() => makeCharacter(
  37375. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37376. {
  37377. front: {
  37378. height: math.unit(6 + 6/12, "feet"),
  37379. name: "Front",
  37380. image: {
  37381. source: "./media/characters/jai/front.svg",
  37382. extra: 1645/1534,
  37383. bottom: 115/1760
  37384. }
  37385. },
  37386. },
  37387. [
  37388. {
  37389. name: "Normal",
  37390. height: math.unit(6 + 6/12, "feet"),
  37391. default: true
  37392. },
  37393. ]
  37394. ))
  37395. characterMakers.push(() => makeCharacter(
  37396. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37397. {
  37398. front: {
  37399. height: math.unit(6 + 8/12, "feet"),
  37400. name: "Front",
  37401. image: {
  37402. source: "./media/characters/pixel/front.svg",
  37403. extra: 1900/1735,
  37404. bottom: 63/1963
  37405. }
  37406. },
  37407. },
  37408. [
  37409. {
  37410. name: "Normal",
  37411. height: math.unit(6 + 8/12, "feet"),
  37412. default: true
  37413. },
  37414. ]
  37415. ))
  37416. characterMakers.push(() => makeCharacter(
  37417. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37418. {
  37419. back: {
  37420. height: math.unit(4 + 1/12, "feet"),
  37421. weight: math.unit(75, "lb"),
  37422. name: "Back",
  37423. image: {
  37424. source: "./media/characters/rhett/back.svg",
  37425. extra: 930/878,
  37426. bottom: 25/955
  37427. }
  37428. },
  37429. front: {
  37430. height: math.unit(4 + 1/12, "feet"),
  37431. weight: math.unit(75, "lb"),
  37432. name: "Front",
  37433. image: {
  37434. source: "./media/characters/rhett/front.svg",
  37435. extra: 1682/1586,
  37436. bottom: 92/1774
  37437. }
  37438. },
  37439. },
  37440. [
  37441. {
  37442. name: "Micro",
  37443. height: math.unit(8, "inches")
  37444. },
  37445. {
  37446. name: "Tiny",
  37447. height: math.unit(2, "feet")
  37448. },
  37449. {
  37450. name: "Normal",
  37451. height: math.unit(4 + 1/12, "feet"),
  37452. default: true
  37453. },
  37454. ]
  37455. ))
  37456. characterMakers.push(() => makeCharacter(
  37457. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37458. {
  37459. front: {
  37460. height: math.unit(3 + 3/12, "feet"),
  37461. name: "Front",
  37462. image: {
  37463. source: "./media/characters/penny/front.svg",
  37464. extra: 1406/1311,
  37465. bottom: 26/1432
  37466. }
  37467. },
  37468. },
  37469. [
  37470. {
  37471. name: "Normal",
  37472. height: math.unit(3 + 3/12, "feet"),
  37473. default: true
  37474. },
  37475. ]
  37476. ))
  37477. characterMakers.push(() => makeCharacter(
  37478. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37479. {
  37480. front: {
  37481. height: math.unit(4 + 11/12, "feet"),
  37482. name: "Front",
  37483. image: {
  37484. source: "./media/characters/monty/front.svg",
  37485. extra: 1479/1209,
  37486. bottom: 0/1479
  37487. }
  37488. },
  37489. },
  37490. [
  37491. {
  37492. name: "Normal",
  37493. height: math.unit(4 + 11/12, "feet"),
  37494. default: true
  37495. },
  37496. ]
  37497. ))
  37498. characterMakers.push(() => makeCharacter(
  37499. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37500. {
  37501. front: {
  37502. height: math.unit(8 + 4/12, "feet"),
  37503. name: "Front",
  37504. image: {
  37505. source: "./media/characters/sterling/front.svg",
  37506. extra: 1420/1236,
  37507. bottom: 27/1447
  37508. }
  37509. },
  37510. },
  37511. [
  37512. {
  37513. name: "Normal",
  37514. height: math.unit(8 + 4/12, "feet"),
  37515. default: true
  37516. },
  37517. ]
  37518. ))
  37519. characterMakers.push(() => makeCharacter(
  37520. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37521. {
  37522. front: {
  37523. height: math.unit(15, "feet"),
  37524. name: "Front",
  37525. image: {
  37526. source: "./media/characters/marble/front.svg",
  37527. extra: 973/937,
  37528. bottom: 32/1005
  37529. }
  37530. },
  37531. },
  37532. [
  37533. {
  37534. name: "Normal",
  37535. height: math.unit(15, "feet"),
  37536. default: true
  37537. },
  37538. ]
  37539. ))
  37540. characterMakers.push(() => makeCharacter(
  37541. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37542. {
  37543. front: {
  37544. height: math.unit(3, "inches"),
  37545. name: "Front",
  37546. image: {
  37547. source: "./media/characters/powder/front.svg",
  37548. extra: 1504/1334,
  37549. bottom: 518/2022
  37550. }
  37551. },
  37552. },
  37553. [
  37554. {
  37555. name: "Normal",
  37556. height: math.unit(3, "inches"),
  37557. default: true
  37558. },
  37559. ]
  37560. ))
  37561. characterMakers.push(() => makeCharacter(
  37562. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37563. {
  37564. front: {
  37565. height: math.unit(4 + 5/12, "feet"),
  37566. name: "Front",
  37567. image: {
  37568. source: "./media/characters/joey-raccoon/front.svg",
  37569. extra: 1273/1197,
  37570. bottom: 0/1273
  37571. }
  37572. },
  37573. },
  37574. [
  37575. {
  37576. name: "Normal",
  37577. height: math.unit(4 + 5/12, "feet"),
  37578. default: true
  37579. },
  37580. ]
  37581. ))
  37582. characterMakers.push(() => makeCharacter(
  37583. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37584. {
  37585. front: {
  37586. height: math.unit(8 + 4/12, "feet"),
  37587. name: "Front",
  37588. image: {
  37589. source: "./media/characters/vick/front.svg",
  37590. extra: 2187/2118,
  37591. bottom: 47/2234
  37592. }
  37593. },
  37594. },
  37595. [
  37596. {
  37597. name: "Normal",
  37598. height: math.unit(8 + 4/12, "feet"),
  37599. default: true
  37600. },
  37601. ]
  37602. ))
  37603. characterMakers.push(() => makeCharacter(
  37604. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37605. {
  37606. front: {
  37607. height: math.unit(5 + 5/12, "feet"),
  37608. name: "Front",
  37609. image: {
  37610. source: "./media/characters/mitsy/front.svg",
  37611. extra: 1842/1695,
  37612. bottom: 0/1842
  37613. }
  37614. },
  37615. },
  37616. [
  37617. {
  37618. name: "Normal",
  37619. height: math.unit(5 + 5/12, "feet"),
  37620. default: true
  37621. },
  37622. ]
  37623. ))
  37624. characterMakers.push(() => makeCharacter(
  37625. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37626. {
  37627. front: {
  37628. height: math.unit(6 + 3/12, "feet"),
  37629. name: "Front",
  37630. image: {
  37631. source: "./media/characters/silvy/front.svg",
  37632. extra: 1995/1836,
  37633. bottom: 225/2220
  37634. }
  37635. },
  37636. },
  37637. [
  37638. {
  37639. name: "Normal",
  37640. height: math.unit(6 + 3/12, "feet"),
  37641. default: true
  37642. },
  37643. ]
  37644. ))
  37645. characterMakers.push(() => makeCharacter(
  37646. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37647. {
  37648. front: {
  37649. height: math.unit(3 + 8/12, "feet"),
  37650. name: "Front",
  37651. image: {
  37652. source: "./media/characters/rodney/front.svg",
  37653. extra: 1956/1747,
  37654. bottom: 31/1987
  37655. }
  37656. },
  37657. frontDressed: {
  37658. height: math.unit(2.9, "feet"),
  37659. name: "Front (Dressed)",
  37660. image: {
  37661. source: "./media/characters/rodney/front-dressed.svg",
  37662. extra: 1382/1241,
  37663. bottom: 385/1767
  37664. }
  37665. },
  37666. },
  37667. [
  37668. {
  37669. name: "Normal",
  37670. height: math.unit(3 + 8/12, "feet"),
  37671. default: true
  37672. },
  37673. ]
  37674. ))
  37675. characterMakers.push(() => makeCharacter(
  37676. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37677. {
  37678. front: {
  37679. height: math.unit(5 + 9/12, "feet"),
  37680. weight: math.unit(194, "lbs"),
  37681. name: "Front",
  37682. image: {
  37683. source: "./media/characters/zakail-sudekai/front.svg",
  37684. extra: 2696/2533,
  37685. bottom: 248/2944
  37686. }
  37687. },
  37688. maw: {
  37689. height: math.unit(1.35, "feet"),
  37690. name: "Maw",
  37691. image: {
  37692. source: "./media/characters/zakail-sudekai/maw.svg"
  37693. }
  37694. },
  37695. },
  37696. [
  37697. {
  37698. name: "Normal",
  37699. height: math.unit(5 + 9/12, "feet"),
  37700. default: true
  37701. },
  37702. ]
  37703. ))
  37704. characterMakers.push(() => makeCharacter(
  37705. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37706. {
  37707. front: {
  37708. height: math.unit(8 + 4/12, "feet"),
  37709. weight: math.unit(1200, "lb"),
  37710. name: "Front",
  37711. image: {
  37712. source: "./media/characters/eleanor/front.svg",
  37713. extra: 1226/1192,
  37714. bottom: 52/1278
  37715. }
  37716. },
  37717. back: {
  37718. height: math.unit(8 + 4/12, "feet"),
  37719. weight: math.unit(1200, "lb"),
  37720. name: "Back",
  37721. image: {
  37722. source: "./media/characters/eleanor/back.svg",
  37723. extra: 1242/1184,
  37724. bottom: 60/1302
  37725. }
  37726. },
  37727. head: {
  37728. height: math.unit(2.62, "feet"),
  37729. name: "Head",
  37730. image: {
  37731. source: "./media/characters/eleanor/head.svg"
  37732. }
  37733. },
  37734. },
  37735. [
  37736. {
  37737. name: "Normal",
  37738. height: math.unit(8 + 4/12, "feet"),
  37739. default: true
  37740. },
  37741. ]
  37742. ))
  37743. characterMakers.push(() => makeCharacter(
  37744. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37745. {
  37746. front: {
  37747. height: math.unit(8 + 4/12, "feet"),
  37748. weight: math.unit(750, "lb"),
  37749. name: "Front",
  37750. image: {
  37751. source: "./media/characters/tanya/front.svg",
  37752. extra: 1749/1615,
  37753. bottom: 33/1782
  37754. }
  37755. },
  37756. },
  37757. [
  37758. {
  37759. name: "Normal",
  37760. height: math.unit(8 + 4/12, "feet"),
  37761. default: true
  37762. },
  37763. ]
  37764. ))
  37765. characterMakers.push(() => makeCharacter(
  37766. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37767. {
  37768. front: {
  37769. height: math.unit(5, "feet"),
  37770. weight: math.unit(225, "lb"),
  37771. name: "Front",
  37772. image: {
  37773. source: "./media/characters/cindy/front.svg",
  37774. extra: 1320/1250,
  37775. bottom: 42/1362
  37776. }
  37777. },
  37778. frontDressed: {
  37779. height: math.unit(5, "feet"),
  37780. weight: math.unit(225, "lb"),
  37781. name: "Front (Dressed)",
  37782. image: {
  37783. source: "./media/characters/cindy/front-dressed.svg",
  37784. extra: 1320/1250,
  37785. bottom: 42/1362
  37786. }
  37787. },
  37788. back: {
  37789. height: math.unit(5, "feet"),
  37790. weight: math.unit(225, "lb"),
  37791. name: "Back",
  37792. image: {
  37793. source: "./media/characters/cindy/back.svg",
  37794. extra: 1384/1346,
  37795. bottom: 14/1398
  37796. }
  37797. },
  37798. },
  37799. [
  37800. {
  37801. name: "Normal",
  37802. height: math.unit(5, "feet"),
  37803. default: true
  37804. },
  37805. ]
  37806. ))
  37807. characterMakers.push(() => makeCharacter(
  37808. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37809. {
  37810. front: {
  37811. height: math.unit(6 + 9/12, "feet"),
  37812. weight: math.unit(440, "lb"),
  37813. name: "Front",
  37814. image: {
  37815. source: "./media/characters/wilbur-owen/front.svg",
  37816. extra: 1575/1448,
  37817. bottom: 72/1647
  37818. }
  37819. },
  37820. back: {
  37821. height: math.unit(6 + 9/12, "feet"),
  37822. weight: math.unit(440, "lb"),
  37823. name: "Back",
  37824. image: {
  37825. source: "./media/characters/wilbur-owen/back.svg",
  37826. extra: 1578/1445,
  37827. bottom: 36/1614
  37828. }
  37829. },
  37830. },
  37831. [
  37832. {
  37833. name: "Normal",
  37834. height: math.unit(6 + 9/12, "feet"),
  37835. default: true
  37836. },
  37837. ]
  37838. ))
  37839. characterMakers.push(() => makeCharacter(
  37840. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37841. {
  37842. front: {
  37843. height: math.unit(6 + 5/12, "feet"),
  37844. weight: math.unit(650, "lb"),
  37845. name: "Front",
  37846. image: {
  37847. source: "./media/characters/keegan/front.svg",
  37848. extra: 2387/2198,
  37849. bottom: 33/2420
  37850. }
  37851. },
  37852. side: {
  37853. height: math.unit(6 + 5/12, "feet"),
  37854. weight: math.unit(650, "lb"),
  37855. name: "Side",
  37856. image: {
  37857. source: "./media/characters/keegan/side.svg",
  37858. extra: 2390/2202,
  37859. bottom: 47/2437
  37860. }
  37861. },
  37862. back: {
  37863. height: math.unit(6 + 5/12, "feet"),
  37864. weight: math.unit(650, "lb"),
  37865. name: "Back",
  37866. image: {
  37867. source: "./media/characters/keegan/back.svg",
  37868. extra: 2418/2268,
  37869. bottom: 15/2433
  37870. }
  37871. },
  37872. frontSfw: {
  37873. height: math.unit(6 + 5/12, "feet"),
  37874. weight: math.unit(650, "lb"),
  37875. name: "Front (SFW)",
  37876. image: {
  37877. source: "./media/characters/keegan/front-sfw.svg",
  37878. extra: 2387/2198,
  37879. bottom: 33/2420
  37880. }
  37881. },
  37882. beans: {
  37883. height: math.unit(1.85, "feet"),
  37884. name: "Beans",
  37885. image: {
  37886. source: "./media/characters/keegan/beans.svg"
  37887. }
  37888. },
  37889. },
  37890. [
  37891. {
  37892. name: "Normal",
  37893. height: math.unit(6 + 5/12, "feet"),
  37894. default: true
  37895. },
  37896. ]
  37897. ))
  37898. characterMakers.push(() => makeCharacter(
  37899. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37900. {
  37901. front: {
  37902. height: math.unit(9, "feet"),
  37903. name: "Front",
  37904. image: {
  37905. source: "./media/characters/colton/front.svg",
  37906. extra: 1589/1326,
  37907. bottom: 139/1728
  37908. }
  37909. },
  37910. },
  37911. [
  37912. {
  37913. name: "Normal",
  37914. height: math.unit(9, "feet"),
  37915. default: true
  37916. },
  37917. ]
  37918. ))
  37919. characterMakers.push(() => makeCharacter(
  37920. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37921. {
  37922. front: {
  37923. height: math.unit(2 + 9/12, "feet"),
  37924. name: "Front",
  37925. image: {
  37926. source: "./media/characters/bora/front.svg",
  37927. extra: 1265/1250,
  37928. bottom: 24/1289
  37929. }
  37930. },
  37931. },
  37932. [
  37933. {
  37934. name: "Normal",
  37935. height: math.unit(2 + 9/12, "feet"),
  37936. default: true
  37937. },
  37938. ]
  37939. ))
  37940. characterMakers.push(() => makeCharacter(
  37941. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37942. {
  37943. front: {
  37944. height: math.unit(8, "feet"),
  37945. name: "Front",
  37946. image: {
  37947. source: "./media/characters/myu-myu/front.svg",
  37948. extra: 1949/1857,
  37949. bottom: 90/2039
  37950. }
  37951. },
  37952. },
  37953. [
  37954. {
  37955. name: "Normal",
  37956. height: math.unit(8, "feet"),
  37957. default: true
  37958. },
  37959. {
  37960. name: "Big",
  37961. height: math.unit(15, "feet")
  37962. },
  37963. {
  37964. name: "BIG",
  37965. height: math.unit(25, "feet")
  37966. },
  37967. ]
  37968. ))
  37969. characterMakers.push(() => makeCharacter(
  37970. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37971. {
  37972. side: {
  37973. height: math.unit(7 + 5/12, "feet"),
  37974. weight: math.unit(2800, "lb"),
  37975. name: "Side",
  37976. image: {
  37977. source: "./media/characters/haloren/side.svg",
  37978. extra: 1793/409,
  37979. bottom: 59/1852
  37980. }
  37981. },
  37982. frontPaw: {
  37983. height: math.unit(2.36, "feet"),
  37984. name: "Front paw",
  37985. image: {
  37986. source: "./media/characters/haloren/front-paw.svg"
  37987. }
  37988. },
  37989. hindPaw: {
  37990. height: math.unit(3.18, "feet"),
  37991. name: "Hind paw",
  37992. image: {
  37993. source: "./media/characters/haloren/hind-paw.svg"
  37994. }
  37995. },
  37996. maw: {
  37997. height: math.unit(5.05, "feet"),
  37998. name: "Maw",
  37999. image: {
  38000. source: "./media/characters/haloren/maw.svg"
  38001. }
  38002. },
  38003. dick: {
  38004. height: math.unit(2.90, "feet"),
  38005. name: "Dick",
  38006. image: {
  38007. source: "./media/characters/haloren/dick.svg"
  38008. }
  38009. },
  38010. },
  38011. [
  38012. {
  38013. name: "Normal",
  38014. height: math.unit(7 + 5/12, "feet"),
  38015. default: true
  38016. },
  38017. {
  38018. name: "Enhanced",
  38019. height: math.unit(14 + 3/12, "feet")
  38020. },
  38021. ]
  38022. ))
  38023. characterMakers.push(() => makeCharacter(
  38024. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38025. {
  38026. front: {
  38027. height: math.unit(171, "cm"),
  38028. name: "Front",
  38029. image: {
  38030. source: "./media/characters/kimmy/front.svg",
  38031. extra: 1491/1435,
  38032. bottom: 53/1544
  38033. }
  38034. },
  38035. },
  38036. [
  38037. {
  38038. name: "Small",
  38039. height: math.unit(9, "cm")
  38040. },
  38041. {
  38042. name: "Normal",
  38043. height: math.unit(171, "cm"),
  38044. default: true
  38045. },
  38046. ]
  38047. ))
  38048. characterMakers.push(() => makeCharacter(
  38049. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38050. {
  38051. front: {
  38052. height: math.unit(8, "feet"),
  38053. weight: math.unit(300, "lb"),
  38054. name: "Front",
  38055. image: {
  38056. source: "./media/characters/galeboomer/front.svg",
  38057. extra: 4651/4415,
  38058. bottom: 162/4813
  38059. }
  38060. },
  38061. back: {
  38062. height: math.unit(8, "feet"),
  38063. weight: math.unit(300, "lb"),
  38064. name: "Back",
  38065. image: {
  38066. source: "./media/characters/galeboomer/back.svg",
  38067. extra: 4544/4314,
  38068. bottom: 16/4560
  38069. }
  38070. },
  38071. frontAlt: {
  38072. height: math.unit(8, "feet"),
  38073. weight: math.unit(300, "lb"),
  38074. name: "Front (Alt)",
  38075. image: {
  38076. source: "./media/characters/galeboomer/front-alt.svg",
  38077. extra: 4458/4228,
  38078. bottom: 68/4526
  38079. }
  38080. },
  38081. maw: {
  38082. height: math.unit(1.2, "feet"),
  38083. name: "Maw",
  38084. image: {
  38085. source: "./media/characters/galeboomer/maw.svg"
  38086. }
  38087. },
  38088. },
  38089. [
  38090. {
  38091. name: "Normal",
  38092. height: math.unit(8, "feet"),
  38093. default: true
  38094. },
  38095. ]
  38096. ))
  38097. characterMakers.push(() => makeCharacter(
  38098. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38099. {
  38100. front: {
  38101. height: math.unit(5 + 9/12, "feet"),
  38102. weight: math.unit(120, "lb"),
  38103. name: "Front",
  38104. image: {
  38105. source: "./media/characters/chyr/front.svg",
  38106. extra: 1323/1254,
  38107. bottom: 63/1386
  38108. }
  38109. },
  38110. back: {
  38111. height: math.unit(5 + 9/12, "feet"),
  38112. weight: math.unit(120, "lb"),
  38113. name: "Back",
  38114. image: {
  38115. source: "./media/characters/chyr/back.svg",
  38116. extra: 1323/1252,
  38117. bottom: 48/1371
  38118. }
  38119. },
  38120. },
  38121. [
  38122. {
  38123. name: "Normal",
  38124. height: math.unit(5 + 9/12, "feet"),
  38125. default: true
  38126. },
  38127. ]
  38128. ))
  38129. characterMakers.push(() => makeCharacter(
  38130. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38131. {
  38132. front: {
  38133. height: math.unit(7, "feet"),
  38134. weight: math.unit(310, "lb"),
  38135. name: "Front",
  38136. image: {
  38137. source: "./media/characters/solarus/front.svg",
  38138. extra: 2415/2021,
  38139. bottom: 103/2518
  38140. }
  38141. },
  38142. back: {
  38143. height: math.unit(7, "feet"),
  38144. weight: math.unit(310, "lb"),
  38145. name: "Back",
  38146. image: {
  38147. source: "./media/characters/solarus/back.svg",
  38148. extra: 2463/2089,
  38149. bottom: 79/2542
  38150. }
  38151. },
  38152. },
  38153. [
  38154. {
  38155. name: "Normal",
  38156. height: math.unit(7, "feet"),
  38157. default: true
  38158. },
  38159. ]
  38160. ))
  38161. characterMakers.push(() => makeCharacter(
  38162. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38163. {
  38164. front: {
  38165. height: math.unit(16, "feet"),
  38166. name: "Front",
  38167. image: {
  38168. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38169. extra: 1844/1780,
  38170. bottom: 58/1902
  38171. }
  38172. },
  38173. winterCoat: {
  38174. height: math.unit(16, "feet"),
  38175. name: "Winter Coat",
  38176. image: {
  38177. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38178. extra: 1807/1775,
  38179. bottom: 69/1876
  38180. }
  38181. },
  38182. },
  38183. [
  38184. {
  38185. name: "Normal",
  38186. height: math.unit(16, "feet"),
  38187. default: true
  38188. },
  38189. {
  38190. name: "Chicago Size",
  38191. height: math.unit(560, "feet")
  38192. },
  38193. ]
  38194. ))
  38195. characterMakers.push(() => makeCharacter(
  38196. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38197. {
  38198. front: {
  38199. height: math.unit(11 + 6/12, "feet"),
  38200. weight: math.unit(1366, "lb"),
  38201. name: "Front",
  38202. image: {
  38203. source: "./media/characters/lexor/front.svg",
  38204. extra: 1560/1481,
  38205. bottom: 211/1771
  38206. }
  38207. },
  38208. back: {
  38209. height: math.unit(11 + 6/12, "feet"),
  38210. weight: math.unit(1366, "lb"),
  38211. name: "Back",
  38212. image: {
  38213. source: "./media/characters/lexor/back.svg",
  38214. extra: 1614/1533,
  38215. bottom: 76/1690
  38216. }
  38217. },
  38218. maw: {
  38219. height: math.unit(3, "feet"),
  38220. name: "Maw",
  38221. image: {
  38222. source: "./media/characters/lexor/maw.svg"
  38223. }
  38224. },
  38225. dick: {
  38226. height: math.unit(2.59, "feet"),
  38227. name: "Dick",
  38228. image: {
  38229. source: "./media/characters/lexor/dick.svg"
  38230. }
  38231. },
  38232. },
  38233. [
  38234. {
  38235. name: "Normal",
  38236. height: math.unit(11 + 6/12, "feet"),
  38237. default: true
  38238. },
  38239. ]
  38240. ))
  38241. characterMakers.push(() => makeCharacter(
  38242. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38243. {
  38244. front: {
  38245. height: math.unit(5 + 8/12, "feet"),
  38246. name: "Front",
  38247. image: {
  38248. source: "./media/characters/magnum/front.svg",
  38249. extra: 942/855,
  38250. bottom: 26/968
  38251. }
  38252. },
  38253. },
  38254. [
  38255. {
  38256. name: "Normal",
  38257. height: math.unit(5 + 8/12, "feet"),
  38258. default: true
  38259. },
  38260. ]
  38261. ))
  38262. characterMakers.push(() => makeCharacter(
  38263. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38264. {
  38265. front: {
  38266. height: math.unit(18 + 4/12, "feet"),
  38267. weight: math.unit(1500, "kg"),
  38268. name: "Front",
  38269. image: {
  38270. source: "./media/characters/solas-sharpsman/front.svg",
  38271. extra: 1698/1589,
  38272. bottom: 0/1698
  38273. }
  38274. },
  38275. },
  38276. [
  38277. {
  38278. name: "Normal",
  38279. height: math.unit(18 + 4/12, "feet"),
  38280. default: true
  38281. },
  38282. ]
  38283. ))
  38284. characterMakers.push(() => makeCharacter(
  38285. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38286. {
  38287. front: {
  38288. height: math.unit(5 + 5/12, "feet"),
  38289. weight: math.unit(180, "lb"),
  38290. name: "Front",
  38291. image: {
  38292. source: "./media/characters/october/front.svg",
  38293. extra: 1800/1650,
  38294. bottom: 0/1800
  38295. }
  38296. },
  38297. frontNsfw: {
  38298. height: math.unit(5 + 5/12, "feet"),
  38299. weight: math.unit(180, "lb"),
  38300. name: "Front (NSFW)",
  38301. image: {
  38302. source: "./media/characters/october/front-nsfw.svg",
  38303. extra: 1392/1307,
  38304. bottom: 42/1434
  38305. }
  38306. },
  38307. },
  38308. [
  38309. {
  38310. name: "Normal",
  38311. height: math.unit(5 + 5/12, "feet"),
  38312. default: true
  38313. },
  38314. ]
  38315. ))
  38316. characterMakers.push(() => makeCharacter(
  38317. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38318. {
  38319. front: {
  38320. height: math.unit(8 + 6/12, "feet"),
  38321. name: "Front",
  38322. image: {
  38323. source: "./media/characters/essynkardi/front.svg",
  38324. extra: 1914/1846,
  38325. bottom: 22/1936
  38326. }
  38327. },
  38328. },
  38329. [
  38330. {
  38331. name: "Normal",
  38332. height: math.unit(8 + 6/12, "feet"),
  38333. default: true
  38334. },
  38335. ]
  38336. ))
  38337. characterMakers.push(() => makeCharacter(
  38338. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38339. {
  38340. front: {
  38341. height: math.unit(6 + 6/12, "feet"),
  38342. weight: math.unit(7, "lb"),
  38343. name: "Front",
  38344. image: {
  38345. source: "./media/characters/icky/front.svg",
  38346. extra: 813/782,
  38347. bottom: 66/879
  38348. }
  38349. },
  38350. back: {
  38351. height: math.unit(6 + 6/12, "feet"),
  38352. weight: math.unit(7, "lb"),
  38353. name: "Back",
  38354. image: {
  38355. source: "./media/characters/icky/back.svg",
  38356. extra: 754/735,
  38357. bottom: 56/810
  38358. }
  38359. },
  38360. },
  38361. [
  38362. {
  38363. name: "Normal",
  38364. height: math.unit(6 + 6/12, "feet"),
  38365. default: true
  38366. },
  38367. ]
  38368. ))
  38369. characterMakers.push(() => makeCharacter(
  38370. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38371. {
  38372. front: {
  38373. height: math.unit(15, "feet"),
  38374. name: "Front",
  38375. image: {
  38376. source: "./media/characters/rojas/front.svg",
  38377. extra: 1462/1408,
  38378. bottom: 95/1557
  38379. }
  38380. },
  38381. back: {
  38382. height: math.unit(15, "feet"),
  38383. name: "Back",
  38384. image: {
  38385. source: "./media/characters/rojas/back.svg",
  38386. extra: 1023/954,
  38387. bottom: 28/1051
  38388. }
  38389. },
  38390. },
  38391. [
  38392. {
  38393. name: "Normal",
  38394. height: math.unit(15, "feet"),
  38395. default: true
  38396. },
  38397. ]
  38398. ))
  38399. characterMakers.push(() => makeCharacter(
  38400. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38401. {
  38402. frontHuman: {
  38403. height: math.unit(5 + 7/12, "feet"),
  38404. name: "Front (Human)",
  38405. image: {
  38406. source: "./media/characters/alek-dryagan/front-human.svg",
  38407. extra: 1687/1667,
  38408. bottom: 69/1756
  38409. }
  38410. },
  38411. backHuman: {
  38412. height: math.unit(5 + 7/12, "feet"),
  38413. name: "Back (Human)",
  38414. image: {
  38415. source: "./media/characters/alek-dryagan/back-human.svg",
  38416. extra: 1670/1649,
  38417. bottom: 65/1735
  38418. }
  38419. },
  38420. frontDemi: {
  38421. height: math.unit(65, "feet"),
  38422. name: "Front (Demi)",
  38423. image: {
  38424. source: "./media/characters/alek-dryagan/front-demi.svg",
  38425. extra: 1669/1642,
  38426. bottom: 49/1718
  38427. }
  38428. },
  38429. backDemi: {
  38430. height: math.unit(65, "feet"),
  38431. name: "Back (Demi)",
  38432. image: {
  38433. source: "./media/characters/alek-dryagan/back-demi.svg",
  38434. extra: 1658/1637,
  38435. bottom: 40/1698
  38436. }
  38437. },
  38438. mawHuman: {
  38439. height: math.unit(0.3, "feet"),
  38440. name: "Maw (Human)",
  38441. image: {
  38442. source: "./media/characters/alek-dryagan/maw-human.svg"
  38443. }
  38444. },
  38445. mawDemi: {
  38446. height: math.unit(3.8, "feet"),
  38447. name: "Maw (Demi)",
  38448. image: {
  38449. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38450. }
  38451. },
  38452. },
  38453. [
  38454. {
  38455. name: "Normal",
  38456. height: math.unit(5 + 7/12, "feet"),
  38457. default: true
  38458. },
  38459. ]
  38460. ))
  38461. characterMakers.push(() => makeCharacter(
  38462. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38463. {
  38464. frontHuman: {
  38465. height: math.unit(5 + 2/12, "feet"),
  38466. name: "Front (Human)",
  38467. image: {
  38468. source: "./media/characters/gen/front-human.svg",
  38469. extra: 1627/1538,
  38470. bottom: 71/1698
  38471. }
  38472. },
  38473. backHuman: {
  38474. height: math.unit(5 + 2/12, "feet"),
  38475. name: "Back (Human)",
  38476. image: {
  38477. source: "./media/characters/gen/back-human.svg",
  38478. extra: 1638/1548,
  38479. bottom: 69/1707
  38480. }
  38481. },
  38482. frontDemi: {
  38483. height: math.unit(5 + 2/12, "feet"),
  38484. name: "Front (Demi)",
  38485. image: {
  38486. source: "./media/characters/gen/front-demi.svg",
  38487. extra: 1627/1538,
  38488. bottom: 71/1698
  38489. }
  38490. },
  38491. backDemi: {
  38492. height: math.unit(5 + 2/12, "feet"),
  38493. name: "Back (Demi)",
  38494. image: {
  38495. source: "./media/characters/gen/back-demi.svg",
  38496. extra: 1638/1548,
  38497. bottom: 69/1707
  38498. }
  38499. },
  38500. },
  38501. [
  38502. {
  38503. name: "Normal",
  38504. height: math.unit(5 + 2/12, "feet"),
  38505. default: true
  38506. },
  38507. ]
  38508. ))
  38509. characterMakers.push(() => makeCharacter(
  38510. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38511. {
  38512. frontImp: {
  38513. height: math.unit(1 + 11/12, "feet"),
  38514. name: "Front (Imp)",
  38515. image: {
  38516. source: "./media/characters/max-kobold/front-imp.svg",
  38517. extra: 1238/1134,
  38518. bottom: 81/1319
  38519. }
  38520. },
  38521. backImp: {
  38522. height: math.unit(1 + 11/12, "feet"),
  38523. name: "Back (Imp)",
  38524. image: {
  38525. source: "./media/characters/max-kobold/back-imp.svg",
  38526. extra: 1334/1175,
  38527. bottom: 34/1368
  38528. }
  38529. },
  38530. frontDemi: {
  38531. height: math.unit(5 + 9/12, "feet"),
  38532. name: "Front (Demi)",
  38533. image: {
  38534. source: "./media/characters/max-kobold/front-demi.svg",
  38535. extra: 1715/1685,
  38536. bottom: 54/1769
  38537. }
  38538. },
  38539. backDemi: {
  38540. height: math.unit(5 + 9/12, "feet"),
  38541. name: "Back (Demi)",
  38542. image: {
  38543. source: "./media/characters/max-kobold/back-demi.svg",
  38544. extra: 1752/1729,
  38545. bottom: 41/1793
  38546. }
  38547. },
  38548. handImp: {
  38549. height: math.unit(0.45, "feet"),
  38550. name: "Hand (Imp)",
  38551. image: {
  38552. source: "./media/characters/max-kobold/hand.svg"
  38553. }
  38554. },
  38555. pawImp: {
  38556. height: math.unit(0.46, "feet"),
  38557. name: "Paw (Imp)",
  38558. image: {
  38559. source: "./media/characters/max-kobold/paw.svg"
  38560. }
  38561. },
  38562. handDemi: {
  38563. height: math.unit(0.80, "feet"),
  38564. name: "Hand (Demi)",
  38565. image: {
  38566. source: "./media/characters/max-kobold/hand.svg"
  38567. }
  38568. },
  38569. pawDemi: {
  38570. height: math.unit(1.1, "feet"),
  38571. name: "Paw (Demi)",
  38572. image: {
  38573. source: "./media/characters/max-kobold/paw.svg"
  38574. }
  38575. },
  38576. headImp: {
  38577. height: math.unit(1.33, "feet"),
  38578. name: "Head (Imp)",
  38579. image: {
  38580. source: "./media/characters/max-kobold/head-imp.svg"
  38581. }
  38582. },
  38583. mawImp: {
  38584. height: math.unit(0.75, "feet"),
  38585. name: "Maw (Imp)",
  38586. image: {
  38587. source: "./media/characters/max-kobold/maw-imp.svg"
  38588. }
  38589. },
  38590. mawDemi: {
  38591. height: math.unit(0.42, "feet"),
  38592. name: "Maw (Demi)",
  38593. image: {
  38594. source: "./media/characters/max-kobold/maw-demi.svg"
  38595. }
  38596. },
  38597. },
  38598. [
  38599. {
  38600. name: "Normal",
  38601. height: math.unit(1 + 11/12, "feet"),
  38602. default: true
  38603. },
  38604. ]
  38605. ))
  38606. characterMakers.push(() => makeCharacter(
  38607. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38608. {
  38609. front: {
  38610. height: math.unit(7 + 5/12, "feet"),
  38611. name: "Front",
  38612. image: {
  38613. source: "./media/characters/carbon/front.svg",
  38614. extra: 1754/1689,
  38615. bottom: 65/1819
  38616. }
  38617. },
  38618. back: {
  38619. height: math.unit(7 + 5/12, "feet"),
  38620. name: "Back",
  38621. image: {
  38622. source: "./media/characters/carbon/back.svg",
  38623. extra: 1762/1695,
  38624. bottom: 24/1786
  38625. }
  38626. },
  38627. frontGigantamax: {
  38628. height: math.unit(150, "feet"),
  38629. name: "Front (Gigantamax)",
  38630. image: {
  38631. source: "./media/characters/carbon/front-gigantamax.svg",
  38632. extra: 1826/1669,
  38633. bottom: 59/1885
  38634. }
  38635. },
  38636. backGigantamax: {
  38637. height: math.unit(150, "feet"),
  38638. name: "Back (Gigantamax)",
  38639. image: {
  38640. source: "./media/characters/carbon/back-gigantamax.svg",
  38641. extra: 1796/1653,
  38642. bottom: 53/1849
  38643. }
  38644. },
  38645. maw: {
  38646. height: math.unit(0.48, "feet"),
  38647. name: "Maw",
  38648. image: {
  38649. source: "./media/characters/carbon/maw.svg"
  38650. }
  38651. },
  38652. mawGigantamax: {
  38653. height: math.unit(7.5, "feet"),
  38654. name: "Maw (Gigantamax)",
  38655. image: {
  38656. source: "./media/characters/carbon/maw-gigantamax.svg"
  38657. }
  38658. },
  38659. },
  38660. [
  38661. {
  38662. name: "Normal",
  38663. height: math.unit(7 + 5/12, "feet"),
  38664. default: true
  38665. },
  38666. ]
  38667. ))
  38668. characterMakers.push(() => makeCharacter(
  38669. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38670. {
  38671. front: {
  38672. height: math.unit(6, "feet"),
  38673. name: "Front",
  38674. image: {
  38675. source: "./media/characters/maverick/front.svg",
  38676. extra: 1672/1661,
  38677. bottom: 85/1757
  38678. }
  38679. },
  38680. back: {
  38681. height: math.unit(6, "feet"),
  38682. name: "Back",
  38683. image: {
  38684. source: "./media/characters/maverick/back.svg",
  38685. extra: 1642/1631,
  38686. bottom: 38/1680
  38687. }
  38688. },
  38689. },
  38690. [
  38691. {
  38692. name: "Normal",
  38693. height: math.unit(6, "feet"),
  38694. default: true
  38695. },
  38696. ]
  38697. ))
  38698. characterMakers.push(() => makeCharacter(
  38699. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38700. {
  38701. front: {
  38702. height: math.unit(15, "feet"),
  38703. weight: math.unit(615, "lb"),
  38704. name: "Front",
  38705. image: {
  38706. source: "./media/characters/grockle/front.svg",
  38707. extra: 1535/1427,
  38708. bottom: 56/1591
  38709. }
  38710. },
  38711. },
  38712. [
  38713. {
  38714. name: "Normal",
  38715. height: math.unit(15, "feet"),
  38716. default: true
  38717. },
  38718. {
  38719. name: "Large",
  38720. height: math.unit(150, "feet")
  38721. },
  38722. {
  38723. name: "Macro",
  38724. height: math.unit(1876, "feet")
  38725. },
  38726. {
  38727. name: "Mega Macro",
  38728. height: math.unit(121940, "feet")
  38729. },
  38730. {
  38731. name: "Giga Macro",
  38732. height: math.unit(750, "km")
  38733. },
  38734. {
  38735. name: "Tera Macro",
  38736. height: math.unit(750000, "km")
  38737. },
  38738. {
  38739. name: "Galactic",
  38740. height: math.unit(1.4e5, "km")
  38741. },
  38742. {
  38743. name: "Godlike",
  38744. height: math.unit(9.8e280, "galaxies")
  38745. },
  38746. ]
  38747. ))
  38748. characterMakers.push(() => makeCharacter(
  38749. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38750. {
  38751. front: {
  38752. height: math.unit(11, "meters"),
  38753. weight: math.unit(20, "tonnes"),
  38754. name: "Front",
  38755. image: {
  38756. source: "./media/characters/alistair/front.svg",
  38757. extra: 1265/1009,
  38758. bottom: 93/1358
  38759. }
  38760. },
  38761. },
  38762. [
  38763. {
  38764. name: "Normal",
  38765. height: math.unit(11, "meters"),
  38766. default: true
  38767. },
  38768. ]
  38769. ))
  38770. characterMakers.push(() => makeCharacter(
  38771. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38772. {
  38773. front: {
  38774. height: math.unit(5 + 8/12, "feet"),
  38775. name: "Front",
  38776. image: {
  38777. source: "./media/characters/haruka/front.svg",
  38778. extra: 2012/1952,
  38779. bottom: 0/2012
  38780. }
  38781. },
  38782. },
  38783. [
  38784. {
  38785. name: "Normal",
  38786. height: math.unit(5 + 8/12, "feet"),
  38787. default: true
  38788. },
  38789. ]
  38790. ))
  38791. characterMakers.push(() => makeCharacter(
  38792. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38793. {
  38794. back: {
  38795. height: math.unit(9, "feet"),
  38796. name: "Back",
  38797. image: {
  38798. source: "./media/characters/vivian-sylveon/back.svg",
  38799. extra: 1853/1714,
  38800. bottom: 0/1853
  38801. }
  38802. },
  38803. },
  38804. [
  38805. {
  38806. name: "Normal",
  38807. height: math.unit(9, "feet"),
  38808. default: true
  38809. },
  38810. {
  38811. name: "Macro",
  38812. height: math.unit(500, "feet")
  38813. },
  38814. {
  38815. name: "Megamacro",
  38816. height: math.unit(600, "miles")
  38817. },
  38818. {
  38819. name: "Gigamacro",
  38820. height: math.unit(30000, "miles")
  38821. },
  38822. ]
  38823. ))
  38824. characterMakers.push(() => makeCharacter(
  38825. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38826. {
  38827. anthro: {
  38828. height: math.unit(5 + 10/12, "feet"),
  38829. weight: math.unit(100, "lb"),
  38830. name: "Anthro",
  38831. image: {
  38832. source: "./media/characters/daiki/anthro.svg",
  38833. extra: 1115/1027,
  38834. bottom: 69/1184
  38835. }
  38836. },
  38837. feral: {
  38838. height: math.unit(200, "feet"),
  38839. name: "Feral",
  38840. image: {
  38841. source: "./media/characters/daiki/feral.svg",
  38842. extra: 1256/313,
  38843. bottom: 39/1295
  38844. }
  38845. },
  38846. feralHead: {
  38847. height: math.unit(171, "feet"),
  38848. name: "Feral Head",
  38849. image: {
  38850. source: "./media/characters/daiki/feral-head.svg"
  38851. }
  38852. },
  38853. manaDragon: {
  38854. height: math.unit(170, "meters"),
  38855. name: "Mana-dragon",
  38856. image: {
  38857. source: "./media/characters/daiki/mana-dragon.svg",
  38858. extra: 763/420,
  38859. bottom: 97/860
  38860. }
  38861. },
  38862. },
  38863. [
  38864. {
  38865. name: "Normal",
  38866. height: math.unit(5 + 10/12, "feet"),
  38867. default: true
  38868. },
  38869. ]
  38870. ))
  38871. characterMakers.push(() => makeCharacter(
  38872. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38873. {
  38874. fullyEquippedFront: {
  38875. height: math.unit(3 + 1/12, "feet"),
  38876. weight: math.unit(24, "lb"),
  38877. name: "Fully Equipped (Front)",
  38878. image: {
  38879. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38880. extra: 687/605,
  38881. bottom: 18/705
  38882. }
  38883. },
  38884. fullyEquippedBack: {
  38885. height: math.unit(3 + 1/12, "feet"),
  38886. weight: math.unit(24, "lb"),
  38887. name: "Fully Equipped (Back)",
  38888. image: {
  38889. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38890. extra: 689/590,
  38891. bottom: 18/707
  38892. }
  38893. },
  38894. dailyWear: {
  38895. height: math.unit(3 + 1/12, "feet"),
  38896. weight: math.unit(24, "lb"),
  38897. name: "Daily Wear",
  38898. image: {
  38899. source: "./media/characters/tea-spot/daily-wear.svg",
  38900. extra: 701/620,
  38901. bottom: 21/722
  38902. }
  38903. },
  38904. maidWork: {
  38905. height: math.unit(3 + 1/12, "feet"),
  38906. weight: math.unit(24, "lb"),
  38907. name: "Maid Work",
  38908. image: {
  38909. source: "./media/characters/tea-spot/maid-work.svg",
  38910. extra: 693/609,
  38911. bottom: 15/708
  38912. }
  38913. },
  38914. },
  38915. [
  38916. {
  38917. name: "Normal",
  38918. height: math.unit(3 + 1/12, "feet"),
  38919. default: true
  38920. },
  38921. ]
  38922. ))
  38923. characterMakers.push(() => makeCharacter(
  38924. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38925. {
  38926. front: {
  38927. height: math.unit(175, "cm"),
  38928. weight: math.unit(75, "kg"),
  38929. name: "Front",
  38930. image: {
  38931. source: "./media/characters/chee/front.svg",
  38932. extra: 1796/1740,
  38933. bottom: 40/1836
  38934. }
  38935. },
  38936. },
  38937. [
  38938. {
  38939. name: "Micro-Micro",
  38940. height: math.unit(1, "nm")
  38941. },
  38942. {
  38943. name: "Micro-erst",
  38944. height: math.unit(1, "micrometer")
  38945. },
  38946. {
  38947. name: "Micro-er",
  38948. height: math.unit(1, "cm")
  38949. },
  38950. {
  38951. name: "Normal",
  38952. height: math.unit(175, "cm"),
  38953. default: true
  38954. },
  38955. {
  38956. name: "Macro",
  38957. height: math.unit(100, "m")
  38958. },
  38959. {
  38960. name: "Macro-er",
  38961. height: math.unit(1, "km")
  38962. },
  38963. {
  38964. name: "Macro-erst",
  38965. height: math.unit(10, "km")
  38966. },
  38967. {
  38968. name: "Macro-Macro",
  38969. height: math.unit(100, "km")
  38970. },
  38971. ]
  38972. ))
  38973. characterMakers.push(() => makeCharacter(
  38974. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38975. {
  38976. front: {
  38977. height: math.unit(11 + 9/12, "feet"),
  38978. weight: math.unit(935, "lb"),
  38979. name: "Front",
  38980. image: {
  38981. source: "./media/characters/kingsley/front.svg",
  38982. extra: 1803/1674,
  38983. bottom: 127/1930
  38984. }
  38985. },
  38986. frontNude: {
  38987. height: math.unit(11 + 9/12, "feet"),
  38988. weight: math.unit(935, "lb"),
  38989. name: "Front (Nude)",
  38990. image: {
  38991. source: "./media/characters/kingsley/front-nude.svg",
  38992. extra: 1803/1674,
  38993. bottom: 127/1930
  38994. }
  38995. },
  38996. },
  38997. [
  38998. {
  38999. name: "Normal",
  39000. height: math.unit(11 + 9/12, "feet"),
  39001. default: true
  39002. },
  39003. ]
  39004. ))
  39005. characterMakers.push(() => makeCharacter(
  39006. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39007. {
  39008. side: {
  39009. height: math.unit(9, "feet"),
  39010. name: "Side",
  39011. image: {
  39012. source: "./media/characters/rymel/side.svg",
  39013. extra: 792/469,
  39014. bottom: 121/913
  39015. }
  39016. },
  39017. maw: {
  39018. height: math.unit(2.4, "meters"),
  39019. name: "Maw",
  39020. image: {
  39021. source: "./media/characters/rymel/maw.svg"
  39022. }
  39023. },
  39024. },
  39025. [
  39026. {
  39027. name: "House Drake",
  39028. height: math.unit(2, "feet")
  39029. },
  39030. {
  39031. name: "Reduced",
  39032. height: math.unit(4.5, "feet")
  39033. },
  39034. {
  39035. name: "Normal",
  39036. height: math.unit(9, "feet"),
  39037. default: true
  39038. },
  39039. ]
  39040. ))
  39041. characterMakers.push(() => makeCharacter(
  39042. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39043. {
  39044. front: {
  39045. height: math.unit(1.74, "meters"),
  39046. weight: math.unit(55, "kg"),
  39047. name: "Front",
  39048. image: {
  39049. source: "./media/characters/rubus/front.svg",
  39050. extra: 1894/1742,
  39051. bottom: 44/1938
  39052. }
  39053. },
  39054. },
  39055. [
  39056. {
  39057. name: "Normal",
  39058. height: math.unit(1.74, "meters"),
  39059. default: true
  39060. },
  39061. ]
  39062. ))
  39063. characterMakers.push(() => makeCharacter(
  39064. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39065. {
  39066. front: {
  39067. height: math.unit(5 + 2/12, "feet"),
  39068. weight: math.unit(112, "lb"),
  39069. name: "Front",
  39070. image: {
  39071. source: "./media/characters/cassie-kingston/front.svg",
  39072. extra: 1438/1390,
  39073. bottom: 47/1485
  39074. }
  39075. },
  39076. },
  39077. [
  39078. {
  39079. name: "Normal",
  39080. height: math.unit(5 + 2/12, "feet"),
  39081. default: true
  39082. },
  39083. {
  39084. name: "Macro",
  39085. height: math.unit(128, "feet")
  39086. },
  39087. {
  39088. name: "Megamacro",
  39089. height: math.unit(2.56, "miles")
  39090. },
  39091. ]
  39092. ))
  39093. characterMakers.push(() => makeCharacter(
  39094. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39095. {
  39096. front: {
  39097. height: math.unit(7, "feet"),
  39098. name: "Front",
  39099. image: {
  39100. source: "./media/characters/fox/front.svg",
  39101. extra: 1798/1703,
  39102. bottom: 55/1853
  39103. }
  39104. },
  39105. back: {
  39106. height: math.unit(7, "feet"),
  39107. name: "Back",
  39108. image: {
  39109. source: "./media/characters/fox/back.svg",
  39110. extra: 1748/1649,
  39111. bottom: 32/1780
  39112. }
  39113. },
  39114. head: {
  39115. height: math.unit(1.95, "feet"),
  39116. name: "Head",
  39117. image: {
  39118. source: "./media/characters/fox/head.svg"
  39119. }
  39120. },
  39121. dick: {
  39122. height: math.unit(1.33, "feet"),
  39123. name: "Dick",
  39124. image: {
  39125. source: "./media/characters/fox/dick.svg"
  39126. }
  39127. },
  39128. foot: {
  39129. height: math.unit(1, "feet"),
  39130. name: "Foot",
  39131. image: {
  39132. source: "./media/characters/fox/foot.svg"
  39133. }
  39134. },
  39135. paw: {
  39136. height: math.unit(0.92, "feet"),
  39137. name: "Paw",
  39138. image: {
  39139. source: "./media/characters/fox/paw.svg"
  39140. }
  39141. },
  39142. },
  39143. [
  39144. {
  39145. name: "Small",
  39146. height: math.unit(3, "inches")
  39147. },
  39148. {
  39149. name: "\"Realistic\"",
  39150. height: math.unit(7, "feet")
  39151. },
  39152. {
  39153. name: "Normal",
  39154. height: math.unit(150, "feet"),
  39155. default: true
  39156. },
  39157. {
  39158. name: "BIG",
  39159. height: math.unit(1200, "feet")
  39160. },
  39161. {
  39162. name: "👀",
  39163. height: math.unit(5, "miles")
  39164. },
  39165. {
  39166. name: "👀👀👀",
  39167. height: math.unit(64, "miles")
  39168. },
  39169. ]
  39170. ))
  39171. characterMakers.push(() => makeCharacter(
  39172. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39173. {
  39174. front: {
  39175. height: math.unit(625, "feet"),
  39176. name: "Front",
  39177. image: {
  39178. source: "./media/characters/asonja-rossa/front.svg",
  39179. extra: 1833/1686,
  39180. bottom: 24/1857
  39181. }
  39182. },
  39183. back: {
  39184. height: math.unit(625, "feet"),
  39185. name: "Back",
  39186. image: {
  39187. source: "./media/characters/asonja-rossa/back.svg",
  39188. extra: 1852/1753,
  39189. bottom: 26/1878
  39190. }
  39191. },
  39192. },
  39193. [
  39194. {
  39195. name: "Macro",
  39196. height: math.unit(625, "feet"),
  39197. default: true
  39198. },
  39199. ]
  39200. ))
  39201. characterMakers.push(() => makeCharacter(
  39202. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39203. {
  39204. side: {
  39205. height: math.unit(8, "feet"),
  39206. name: "Side",
  39207. image: {
  39208. source: "./media/characters/rezukii/side.svg",
  39209. extra: 979/542,
  39210. bottom: 87/1066
  39211. }
  39212. },
  39213. sitting: {
  39214. height: math.unit(14.6, "feet"),
  39215. name: "Sitting",
  39216. image: {
  39217. source: "./media/characters/rezukii/sitting.svg",
  39218. extra: 1023/813,
  39219. bottom: 45/1068
  39220. }
  39221. },
  39222. },
  39223. [
  39224. {
  39225. name: "Tiny",
  39226. height: math.unit(2, "feet")
  39227. },
  39228. {
  39229. name: "Smol",
  39230. height: math.unit(4, "feet")
  39231. },
  39232. {
  39233. name: "Normal",
  39234. height: math.unit(8, "feet"),
  39235. default: true
  39236. },
  39237. {
  39238. name: "Big",
  39239. height: math.unit(12, "feet")
  39240. },
  39241. {
  39242. name: "Macro",
  39243. height: math.unit(30, "feet")
  39244. },
  39245. ]
  39246. ))
  39247. characterMakers.push(() => makeCharacter(
  39248. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39249. {
  39250. front: {
  39251. height: math.unit(14, "feet"),
  39252. weight: math.unit(9.5, "tonnes"),
  39253. name: "Front",
  39254. image: {
  39255. source: "./media/characters/dawnheart/front.svg",
  39256. extra: 2792/2675,
  39257. bottom: 64/2856
  39258. }
  39259. },
  39260. },
  39261. [
  39262. {
  39263. name: "Normal",
  39264. height: math.unit(14, "feet"),
  39265. default: true
  39266. },
  39267. ]
  39268. ))
  39269. characterMakers.push(() => makeCharacter(
  39270. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39271. {
  39272. front: {
  39273. height: math.unit(1.7, "m"),
  39274. name: "Front",
  39275. image: {
  39276. source: "./media/characters/gladi/front.svg",
  39277. extra: 1460/1362,
  39278. bottom: 19/1479
  39279. }
  39280. },
  39281. back: {
  39282. height: math.unit(1.7, "m"),
  39283. name: "Back",
  39284. image: {
  39285. source: "./media/characters/gladi/back.svg",
  39286. extra: 1459/1357,
  39287. bottom: 12/1471
  39288. }
  39289. },
  39290. feral: {
  39291. height: math.unit(2.05, "m"),
  39292. name: "Feral",
  39293. image: {
  39294. source: "./media/characters/gladi/feral.svg",
  39295. extra: 821/557,
  39296. bottom: 91/912
  39297. }
  39298. },
  39299. },
  39300. [
  39301. {
  39302. name: "Shortest",
  39303. height: math.unit(70, "cm")
  39304. },
  39305. {
  39306. name: "Normal",
  39307. height: math.unit(1.7, "m")
  39308. },
  39309. {
  39310. name: "Macro",
  39311. height: math.unit(10, "m"),
  39312. default: true
  39313. },
  39314. {
  39315. name: "Tallest",
  39316. height: math.unit(200, "m")
  39317. },
  39318. ]
  39319. ))
  39320. characterMakers.push(() => makeCharacter(
  39321. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39322. {
  39323. front: {
  39324. height: math.unit(5 + 7/12, "feet"),
  39325. weight: math.unit(2, "tons"),
  39326. name: "Front",
  39327. image: {
  39328. source: "./media/characters/erdno/front.svg",
  39329. extra: 1234/1129,
  39330. bottom: 35/1269
  39331. }
  39332. },
  39333. angled: {
  39334. height: math.unit(5 + 7/12, "feet"),
  39335. weight: math.unit(2, "tons"),
  39336. name: "Angled",
  39337. image: {
  39338. source: "./media/characters/erdno/angled.svg",
  39339. extra: 1185/1139,
  39340. bottom: 36/1221
  39341. }
  39342. },
  39343. side: {
  39344. height: math.unit(5 + 7/12, "feet"),
  39345. weight: math.unit(2, "tons"),
  39346. name: "Side",
  39347. image: {
  39348. source: "./media/characters/erdno/side.svg",
  39349. extra: 1191/1144,
  39350. bottom: 40/1231
  39351. }
  39352. },
  39353. back: {
  39354. height: math.unit(5 + 7/12, "feet"),
  39355. weight: math.unit(2, "tons"),
  39356. name: "Back",
  39357. image: {
  39358. source: "./media/characters/erdno/back.svg",
  39359. extra: 1202/1146,
  39360. bottom: 17/1219
  39361. }
  39362. },
  39363. frontNsfw: {
  39364. height: math.unit(5 + 7/12, "feet"),
  39365. weight: math.unit(2, "tons"),
  39366. name: "Front (NSFW)",
  39367. image: {
  39368. source: "./media/characters/erdno/front-nsfw.svg",
  39369. extra: 1234/1129,
  39370. bottom: 35/1269
  39371. }
  39372. },
  39373. angledNsfw: {
  39374. height: math.unit(5 + 7/12, "feet"),
  39375. weight: math.unit(2, "tons"),
  39376. name: "Angled (NSFW)",
  39377. image: {
  39378. source: "./media/characters/erdno/angled-nsfw.svg",
  39379. extra: 1185/1139,
  39380. bottom: 36/1221
  39381. }
  39382. },
  39383. sideNsfw: {
  39384. height: math.unit(5 + 7/12, "feet"),
  39385. weight: math.unit(2, "tons"),
  39386. name: "Side (NSFW)",
  39387. image: {
  39388. source: "./media/characters/erdno/side-nsfw.svg",
  39389. extra: 1191/1144,
  39390. bottom: 40/1231
  39391. }
  39392. },
  39393. backNsfw: {
  39394. height: math.unit(5 + 7/12, "feet"),
  39395. weight: math.unit(2, "tons"),
  39396. name: "Back (NSFW)",
  39397. image: {
  39398. source: "./media/characters/erdno/back-nsfw.svg",
  39399. extra: 1202/1146,
  39400. bottom: 17/1219
  39401. }
  39402. },
  39403. frontHyper: {
  39404. height: math.unit(5 + 7/12, "feet"),
  39405. weight: math.unit(2, "tons"),
  39406. name: "Front (Hyper)",
  39407. image: {
  39408. source: "./media/characters/erdno/front-hyper.svg",
  39409. extra: 1298/1136,
  39410. bottom: 35/1333
  39411. }
  39412. },
  39413. },
  39414. [
  39415. {
  39416. name: "Normal",
  39417. height: math.unit(5 + 7/12, "feet"),
  39418. default: true
  39419. },
  39420. {
  39421. name: "Big",
  39422. height: math.unit(5.7, "meters")
  39423. },
  39424. {
  39425. name: "Macro",
  39426. height: math.unit(5.7, "kilometers")
  39427. },
  39428. {
  39429. name: "Megamacro",
  39430. height: math.unit(5.7, "earths")
  39431. },
  39432. ]
  39433. ))
  39434. characterMakers.push(() => makeCharacter(
  39435. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39436. {
  39437. front: {
  39438. height: math.unit(5 + 10/12, "feet"),
  39439. weight: math.unit(150, "lb"),
  39440. name: "Front",
  39441. image: {
  39442. source: "./media/characters/jamie/front.svg",
  39443. extra: 1908/1768,
  39444. bottom: 19/1927
  39445. }
  39446. },
  39447. },
  39448. [
  39449. {
  39450. name: "Minimum",
  39451. height: math.unit(2, "cm")
  39452. },
  39453. {
  39454. name: "Micro",
  39455. height: math.unit(3, "inches")
  39456. },
  39457. {
  39458. name: "Normal",
  39459. height: math.unit(5 + 10/12, "feet"),
  39460. default: true
  39461. },
  39462. {
  39463. name: "Macro",
  39464. height: math.unit(150, "feet")
  39465. },
  39466. {
  39467. name: "Megamacro",
  39468. height: math.unit(10000, "m")
  39469. },
  39470. ]
  39471. ))
  39472. characterMakers.push(() => makeCharacter(
  39473. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39474. {
  39475. front: {
  39476. height: math.unit(2, "meters"),
  39477. weight: math.unit(100, "kg"),
  39478. name: "Front",
  39479. image: {
  39480. source: "./media/characters/shiron/front.svg",
  39481. extra: 2103/1985,
  39482. bottom: 98/2201
  39483. }
  39484. },
  39485. back: {
  39486. height: math.unit(2, "meters"),
  39487. weight: math.unit(100, "kg"),
  39488. name: "Back",
  39489. image: {
  39490. source: "./media/characters/shiron/back.svg",
  39491. extra: 2110/2015,
  39492. bottom: 89/2199
  39493. }
  39494. },
  39495. hand: {
  39496. height: math.unit(0.96, "feet"),
  39497. name: "Hand",
  39498. image: {
  39499. source: "./media/characters/shiron/hand.svg"
  39500. }
  39501. },
  39502. foot: {
  39503. height: math.unit(1.464, "feet"),
  39504. name: "Foot",
  39505. image: {
  39506. source: "./media/characters/shiron/foot.svg"
  39507. }
  39508. },
  39509. },
  39510. [
  39511. {
  39512. name: "Normal",
  39513. height: math.unit(2, "meters")
  39514. },
  39515. {
  39516. name: "Macro",
  39517. height: math.unit(500, "meters"),
  39518. default: true
  39519. },
  39520. {
  39521. name: "Megamacro",
  39522. height: math.unit(20, "km")
  39523. },
  39524. ]
  39525. ))
  39526. characterMakers.push(() => makeCharacter(
  39527. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39528. {
  39529. front: {
  39530. height: math.unit(6, "feet"),
  39531. name: "Front",
  39532. image: {
  39533. source: "./media/characters/sam/front.svg",
  39534. extra: 849/826,
  39535. bottom: 19/868
  39536. }
  39537. },
  39538. },
  39539. [
  39540. {
  39541. name: "Normal",
  39542. height: math.unit(6, "feet"),
  39543. default: true
  39544. },
  39545. ]
  39546. ))
  39547. characterMakers.push(() => makeCharacter(
  39548. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39549. {
  39550. front: {
  39551. height: math.unit(8 + 4/12, "feet"),
  39552. weight: math.unit(122, "kg"),
  39553. name: "Front",
  39554. image: {
  39555. source: "./media/characters/namori-kurogawa/front.svg",
  39556. extra: 1894/1576,
  39557. bottom: 34/1928
  39558. }
  39559. },
  39560. },
  39561. [
  39562. {
  39563. name: "Normal",
  39564. height: math.unit(8 + 4/12, "feet"),
  39565. default: true
  39566. },
  39567. ]
  39568. ))
  39569. characterMakers.push(() => makeCharacter(
  39570. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39571. {
  39572. front: {
  39573. height: math.unit(9, "feet"),
  39574. weight: math.unit(621, "lb"),
  39575. name: "Front",
  39576. image: {
  39577. source: "./media/characters/unmru/front.svg",
  39578. extra: 1853/1747,
  39579. bottom: 73/1926
  39580. }
  39581. },
  39582. side: {
  39583. height: math.unit(9, "feet"),
  39584. weight: math.unit(621, "lb"),
  39585. name: "Side",
  39586. image: {
  39587. source: "./media/characters/unmru/side.svg",
  39588. extra: 1781/1671,
  39589. bottom: 127/1908
  39590. }
  39591. },
  39592. back: {
  39593. height: math.unit(9, "feet"),
  39594. weight: math.unit(621, "lb"),
  39595. name: "Back",
  39596. image: {
  39597. source: "./media/characters/unmru/back.svg",
  39598. extra: 1894/1765,
  39599. bottom: 75/1969
  39600. }
  39601. },
  39602. dick: {
  39603. height: math.unit(3, "feet"),
  39604. weight: math.unit(35, "lb"),
  39605. name: "Dick",
  39606. image: {
  39607. source: "./media/characters/unmru/dick.svg"
  39608. }
  39609. },
  39610. },
  39611. [
  39612. {
  39613. name: "Normal",
  39614. height: math.unit(9, "feet")
  39615. },
  39616. {
  39617. name: "Natural",
  39618. height: math.unit(27, "feet"),
  39619. default: true
  39620. },
  39621. {
  39622. name: "Giant",
  39623. height: math.unit(90, "feet")
  39624. },
  39625. {
  39626. name: "Kaiju",
  39627. height: math.unit(270, "feet")
  39628. },
  39629. {
  39630. name: "Macro",
  39631. height: math.unit(900, "feet")
  39632. },
  39633. {
  39634. name: "Macro+",
  39635. height: math.unit(2700, "feet")
  39636. },
  39637. {
  39638. name: "Megamacro",
  39639. height: math.unit(9000, "feet")
  39640. },
  39641. {
  39642. name: "City-Crushing",
  39643. height: math.unit(27000, "feet")
  39644. },
  39645. {
  39646. name: "Mountain-Mashing",
  39647. height: math.unit(90000, "feet")
  39648. },
  39649. {
  39650. name: "Earth-Eclipsing",
  39651. height: math.unit(2.7e8, "feet")
  39652. },
  39653. {
  39654. name: "Sol-Swallowing",
  39655. height: math.unit(9e10, "feet")
  39656. },
  39657. {
  39658. name: "Majoris-Munching",
  39659. height: math.unit(2.7e13, "feet")
  39660. },
  39661. ]
  39662. ))
  39663. characterMakers.push(() => makeCharacter(
  39664. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39665. {
  39666. front: {
  39667. height: math.unit(1, "inch"),
  39668. name: "Front",
  39669. image: {
  39670. source: "./media/characters/squeaks-mouse/front.svg",
  39671. extra: 352/308,
  39672. bottom: 25/377
  39673. }
  39674. },
  39675. },
  39676. [
  39677. {
  39678. name: "Micro",
  39679. height: math.unit(1, "inch"),
  39680. default: true
  39681. },
  39682. ]
  39683. ))
  39684. characterMakers.push(() => makeCharacter(
  39685. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39686. {
  39687. side: {
  39688. height: math.unit(35, "feet"),
  39689. name: "Side",
  39690. image: {
  39691. source: "./media/characters/sayko/side.svg",
  39692. extra: 1697/1021,
  39693. bottom: 82/1779
  39694. }
  39695. },
  39696. head: {
  39697. height: math.unit(16, "feet"),
  39698. name: "Head",
  39699. image: {
  39700. source: "./media/characters/sayko/head.svg"
  39701. }
  39702. },
  39703. forepaw: {
  39704. height: math.unit(7.85, "feet"),
  39705. name: "Forepaw",
  39706. image: {
  39707. source: "./media/characters/sayko/forepaw.svg"
  39708. }
  39709. },
  39710. hindpaw: {
  39711. height: math.unit(8.8, "feet"),
  39712. name: "Hindpaw",
  39713. image: {
  39714. source: "./media/characters/sayko/hindpaw.svg"
  39715. }
  39716. },
  39717. },
  39718. [
  39719. {
  39720. name: "Normal",
  39721. height: math.unit(35, "feet"),
  39722. default: true
  39723. },
  39724. {
  39725. name: "Colossus",
  39726. height: math.unit(100, "meters")
  39727. },
  39728. {
  39729. name: "\"Small\" Deity",
  39730. height: math.unit(1, "km")
  39731. },
  39732. {
  39733. name: "\"Large\" Deity",
  39734. height: math.unit(15, "km")
  39735. },
  39736. ]
  39737. ))
  39738. characterMakers.push(() => makeCharacter(
  39739. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39740. {
  39741. front: {
  39742. height: math.unit(6, "feet"),
  39743. weight: math.unit(250, "lb"),
  39744. name: "Front",
  39745. image: {
  39746. source: "./media/characters/mukiro/front.svg",
  39747. extra: 1368/1310,
  39748. bottom: 34/1402
  39749. }
  39750. },
  39751. },
  39752. [
  39753. {
  39754. name: "Normal",
  39755. height: math.unit(6, "feet"),
  39756. default: true
  39757. },
  39758. ]
  39759. ))
  39760. characterMakers.push(() => makeCharacter(
  39761. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39762. {
  39763. front: {
  39764. height: math.unit(12 + 4/12, "feet"),
  39765. name: "Front",
  39766. image: {
  39767. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39768. extra: 1346/1311,
  39769. bottom: 65/1411
  39770. }
  39771. },
  39772. },
  39773. [
  39774. {
  39775. name: "Base",
  39776. height: math.unit(12 + 4/12, "feet"),
  39777. default: true
  39778. },
  39779. {
  39780. name: "Macro",
  39781. height: math.unit(150, "feet")
  39782. },
  39783. {
  39784. name: "Mega",
  39785. height: math.unit(2, "miles")
  39786. },
  39787. {
  39788. name: "Demi God",
  39789. height: math.unit(4, "AU")
  39790. },
  39791. {
  39792. name: "God Size",
  39793. height: math.unit(1, "universe")
  39794. },
  39795. ]
  39796. ))
  39797. characterMakers.push(() => makeCharacter(
  39798. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39799. {
  39800. front: {
  39801. height: math.unit(3 + 3/12, "feet"),
  39802. weight: math.unit(88, "lb"),
  39803. name: "Front",
  39804. image: {
  39805. source: "./media/characters/trey/front.svg",
  39806. extra: 1815/1509,
  39807. bottom: 60/1875
  39808. }
  39809. },
  39810. },
  39811. [
  39812. {
  39813. name: "Normal",
  39814. height: math.unit(3 + 3/12, "feet"),
  39815. default: true
  39816. },
  39817. ]
  39818. ))
  39819. characterMakers.push(() => makeCharacter(
  39820. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39821. {
  39822. front: {
  39823. height: math.unit(4, "meters"),
  39824. name: "Front",
  39825. image: {
  39826. source: "./media/characters/adelonda/front.svg",
  39827. extra: 1077/982,
  39828. bottom: 39/1116
  39829. }
  39830. },
  39831. back: {
  39832. height: math.unit(4, "meters"),
  39833. name: "Back",
  39834. image: {
  39835. source: "./media/characters/adelonda/back.svg",
  39836. extra: 1105/1003,
  39837. bottom: 25/1130
  39838. }
  39839. },
  39840. feral: {
  39841. height: math.unit(40/1.5, "meters"),
  39842. name: "Feral",
  39843. image: {
  39844. source: "./media/characters/adelonda/feral.svg",
  39845. extra: 597/271,
  39846. bottom: 387/984
  39847. }
  39848. },
  39849. },
  39850. [
  39851. {
  39852. name: "Normal",
  39853. height: math.unit(4, "meters"),
  39854. default: true
  39855. },
  39856. ]
  39857. ))
  39858. characterMakers.push(() => makeCharacter(
  39859. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39860. {
  39861. front: {
  39862. height: math.unit(8 + 4/12, "feet"),
  39863. weight: math.unit(670, "lb"),
  39864. name: "Front",
  39865. image: {
  39866. source: "./media/characters/acadiel/front.svg",
  39867. extra: 1901/1595,
  39868. bottom: 142/2043
  39869. }
  39870. },
  39871. },
  39872. [
  39873. {
  39874. name: "Normal",
  39875. height: math.unit(8 + 4/12, "feet"),
  39876. default: true
  39877. },
  39878. {
  39879. name: "Macro",
  39880. height: math.unit(200, "feet")
  39881. },
  39882. ]
  39883. ))
  39884. characterMakers.push(() => makeCharacter(
  39885. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39886. {
  39887. front: {
  39888. height: math.unit(6 + 2/12, "feet"),
  39889. weight: math.unit(185, "lb"),
  39890. name: "Front",
  39891. image: {
  39892. source: "./media/characters/kayne-ein/front.svg",
  39893. extra: 1780/1560,
  39894. bottom: 81/1861
  39895. }
  39896. },
  39897. },
  39898. [
  39899. {
  39900. name: "Normal",
  39901. height: math.unit(6 + 2/12, "feet"),
  39902. default: true
  39903. },
  39904. {
  39905. name: "Transformation Stage",
  39906. height: math.unit(15, "feet")
  39907. },
  39908. {
  39909. name: "Macro",
  39910. height: math.unit(150, "feet")
  39911. },
  39912. {
  39913. name: "Earth's Shadow",
  39914. height: math.unit(6200, "miles")
  39915. },
  39916. {
  39917. name: "Universal Demon",
  39918. height: math.unit(28e9, "parsecs")
  39919. },
  39920. {
  39921. name: "Multiverse God",
  39922. height: math.unit(3, "multiverses")
  39923. },
  39924. ]
  39925. ))
  39926. characterMakers.push(() => makeCharacter(
  39927. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39928. {
  39929. front: {
  39930. height: math.unit(5 + 5/12, "feet"),
  39931. name: "Front",
  39932. image: {
  39933. source: "./media/characters/fawn/front.svg",
  39934. extra: 1873/1731,
  39935. bottom: 95/1968
  39936. }
  39937. },
  39938. back: {
  39939. height: math.unit(5 + 5/12, "feet"),
  39940. name: "Back",
  39941. image: {
  39942. source: "./media/characters/fawn/back.svg",
  39943. extra: 1813/1700,
  39944. bottom: 14/1827
  39945. }
  39946. },
  39947. hoof: {
  39948. height: math.unit(1.45, "feet"),
  39949. name: "Hoof",
  39950. image: {
  39951. source: "./media/characters/fawn/hoof.svg"
  39952. }
  39953. },
  39954. },
  39955. [
  39956. {
  39957. name: "Normal",
  39958. height: math.unit(5 + 5/12, "feet"),
  39959. default: true
  39960. },
  39961. ]
  39962. ))
  39963. characterMakers.push(() => makeCharacter(
  39964. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39965. {
  39966. front: {
  39967. height: math.unit(2 + 5/12, "feet"),
  39968. name: "Front",
  39969. image: {
  39970. source: "./media/characters/orion/front.svg",
  39971. extra: 1366/1304,
  39972. bottom: 43/1409
  39973. }
  39974. },
  39975. paw: {
  39976. height: math.unit(0.52, "feet"),
  39977. name: "Paw",
  39978. image: {
  39979. source: "./media/characters/orion/paw.svg"
  39980. }
  39981. },
  39982. },
  39983. [
  39984. {
  39985. name: "Normal",
  39986. height: math.unit(2 + 5/12, "feet"),
  39987. default: true
  39988. },
  39989. ]
  39990. ))
  39991. characterMakers.push(() => makeCharacter(
  39992. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39993. {
  39994. front: {
  39995. height: math.unit(5 + 10/12, "feet"),
  39996. name: "Front",
  39997. image: {
  39998. source: "./media/characters/vera/front.svg",
  39999. extra: 1680/1575,
  40000. bottom: 49/1729
  40001. }
  40002. },
  40003. back: {
  40004. height: math.unit(5 + 10/12, "feet"),
  40005. name: "Back",
  40006. image: {
  40007. source: "./media/characters/vera/back.svg",
  40008. extra: 1700/1588,
  40009. bottom: 18/1718
  40010. }
  40011. },
  40012. arcanine: {
  40013. height: math.unit(6 + 8/12, "feet"),
  40014. name: "Arcanine",
  40015. image: {
  40016. source: "./media/characters/vera/arcanine.svg",
  40017. extra: 1590/1511,
  40018. bottom: 71/1661
  40019. }
  40020. },
  40021. maw: {
  40022. height: math.unit(0.82, "feet"),
  40023. name: "Maw",
  40024. image: {
  40025. source: "./media/characters/vera/maw.svg"
  40026. }
  40027. },
  40028. mawArcanine: {
  40029. height: math.unit(0.97, "feet"),
  40030. name: "Maw (Arcanine)",
  40031. image: {
  40032. source: "./media/characters/vera/maw-arcanine.svg"
  40033. }
  40034. },
  40035. paw: {
  40036. height: math.unit(0.75, "feet"),
  40037. name: "Paw",
  40038. image: {
  40039. source: "./media/characters/vera/paw.svg"
  40040. }
  40041. },
  40042. pawprint: {
  40043. height: math.unit(0.52, "feet"),
  40044. name: "Pawprint",
  40045. image: {
  40046. source: "./media/characters/vera/pawprint.svg"
  40047. }
  40048. },
  40049. },
  40050. [
  40051. {
  40052. name: "Normal",
  40053. height: math.unit(5 + 10/12, "feet"),
  40054. default: true
  40055. },
  40056. {
  40057. name: "Macro",
  40058. height: math.unit(75, "feet")
  40059. },
  40060. ]
  40061. ))
  40062. characterMakers.push(() => makeCharacter(
  40063. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40064. {
  40065. front: {
  40066. height: math.unit(4, "feet"),
  40067. weight: math.unit(40, "lb"),
  40068. name: "Front",
  40069. image: {
  40070. source: "./media/characters/orvan-rabbit/front.svg",
  40071. extra: 1896/1642,
  40072. bottom: 29/1925
  40073. }
  40074. },
  40075. },
  40076. [
  40077. {
  40078. name: "Normal",
  40079. height: math.unit(4, "feet"),
  40080. default: true
  40081. },
  40082. ]
  40083. ))
  40084. characterMakers.push(() => makeCharacter(
  40085. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40086. {
  40087. front: {
  40088. height: math.unit(6, "feet"),
  40089. weight: math.unit(168, "lb"),
  40090. name: "Front",
  40091. image: {
  40092. source: "./media/characters/lisa/front.svg",
  40093. extra: 2065/1867,
  40094. bottom: 46/2111
  40095. }
  40096. },
  40097. back: {
  40098. height: math.unit(6, "feet"),
  40099. weight: math.unit(168, "lb"),
  40100. name: "Back",
  40101. image: {
  40102. source: "./media/characters/lisa/back.svg",
  40103. extra: 1982/1838,
  40104. bottom: 29/2011
  40105. }
  40106. },
  40107. maw: {
  40108. height: math.unit(0.81, "feet"),
  40109. name: "Maw",
  40110. image: {
  40111. source: "./media/characters/lisa/maw.svg"
  40112. }
  40113. },
  40114. paw: {
  40115. height: math.unit(0.9, "feet"),
  40116. name: "Paw",
  40117. image: {
  40118. source: "./media/characters/lisa/paw.svg"
  40119. }
  40120. },
  40121. caribousune: {
  40122. height: math.unit(7 + 2/12, "feet"),
  40123. weight: math.unit(268, "lb"),
  40124. name: "Caribousune",
  40125. image: {
  40126. source: "./media/characters/lisa/caribousune.svg",
  40127. extra: 1843/1633,
  40128. bottom: 29/1872
  40129. }
  40130. },
  40131. frontCaribousune: {
  40132. height: math.unit(7 + 2/12, "feet"),
  40133. weight: math.unit(268, "lb"),
  40134. name: "Front (Caribousune)",
  40135. image: {
  40136. source: "./media/characters/lisa/front-caribousune.svg",
  40137. extra: 1818/1638,
  40138. bottom: 52/1870
  40139. }
  40140. },
  40141. sideCaribousune: {
  40142. height: math.unit(7 + 2/12, "feet"),
  40143. weight: math.unit(268, "lb"),
  40144. name: "Side (Caribousune)",
  40145. image: {
  40146. source: "./media/characters/lisa/side-caribousune.svg",
  40147. extra: 1851/1635,
  40148. bottom: 16/1867
  40149. }
  40150. },
  40151. backCaribousune: {
  40152. height: math.unit(7 + 2/12, "feet"),
  40153. weight: math.unit(268, "lb"),
  40154. name: "Back (Caribousune)",
  40155. image: {
  40156. source: "./media/characters/lisa/back-caribousune.svg",
  40157. extra: 1801/1604,
  40158. bottom: 44/1845
  40159. }
  40160. },
  40161. caribou: {
  40162. height: math.unit(7 + 2/12, "feet"),
  40163. weight: math.unit(268, "lb"),
  40164. name: "Caribou",
  40165. image: {
  40166. source: "./media/characters/lisa/caribou.svg",
  40167. extra: 1843/1633,
  40168. bottom: 29/1872
  40169. }
  40170. },
  40171. frontCaribou: {
  40172. height: math.unit(7 + 2/12, "feet"),
  40173. weight: math.unit(268, "lb"),
  40174. name: "Front (Caribou)",
  40175. image: {
  40176. source: "./media/characters/lisa/front-caribou.svg",
  40177. extra: 1818/1638,
  40178. bottom: 52/1870
  40179. }
  40180. },
  40181. sideCaribou: {
  40182. height: math.unit(7 + 2/12, "feet"),
  40183. weight: math.unit(268, "lb"),
  40184. name: "Side (Caribou)",
  40185. image: {
  40186. source: "./media/characters/lisa/side-caribou.svg",
  40187. extra: 1851/1635,
  40188. bottom: 16/1867
  40189. }
  40190. },
  40191. backCaribou: {
  40192. height: math.unit(7 + 2/12, "feet"),
  40193. weight: math.unit(268, "lb"),
  40194. name: "Back (Caribou)",
  40195. image: {
  40196. source: "./media/characters/lisa/back-caribou.svg",
  40197. extra: 1801/1604,
  40198. bottom: 44/1845
  40199. }
  40200. },
  40201. mawCaribou: {
  40202. height: math.unit(1.45, "feet"),
  40203. name: "Maw (Caribou)",
  40204. image: {
  40205. source: "./media/characters/lisa/maw-caribou.svg"
  40206. }
  40207. },
  40208. mawCaribousune: {
  40209. height: math.unit(1.45, "feet"),
  40210. name: "Maw (Caribousune)",
  40211. image: {
  40212. source: "./media/characters/lisa/maw-caribousune.svg"
  40213. }
  40214. },
  40215. pawCaribousune: {
  40216. height: math.unit(1.61, "feet"),
  40217. name: "Paw (Caribou)",
  40218. image: {
  40219. source: "./media/characters/lisa/paw-caribousune.svg"
  40220. }
  40221. },
  40222. },
  40223. [
  40224. {
  40225. name: "Normal",
  40226. height: math.unit(6, "feet")
  40227. },
  40228. {
  40229. name: "God Size",
  40230. height: math.unit(72, "feet"),
  40231. default: true
  40232. },
  40233. {
  40234. name: "Towering",
  40235. height: math.unit(288, "feet")
  40236. },
  40237. {
  40238. name: "City Size",
  40239. height: math.unit(48384, "feet")
  40240. },
  40241. {
  40242. name: "Continental",
  40243. height: math.unit(4200, "miles")
  40244. },
  40245. {
  40246. name: "Planet Eater",
  40247. height: math.unit(42, "earths")
  40248. },
  40249. {
  40250. name: "Star Swallower",
  40251. height: math.unit(42, "solarradii")
  40252. },
  40253. {
  40254. name: "System Swallower",
  40255. height: math.unit(84000, "AU")
  40256. },
  40257. {
  40258. name: "Galaxy Gobbler",
  40259. height: math.unit(42, "galaxies")
  40260. },
  40261. {
  40262. name: "Universe Devourer",
  40263. height: math.unit(42, "universes")
  40264. },
  40265. {
  40266. name: "Multiverse Muncher",
  40267. height: math.unit(42, "multiverses")
  40268. },
  40269. ]
  40270. ))
  40271. characterMakers.push(() => makeCharacter(
  40272. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40273. {
  40274. front: {
  40275. height: math.unit(36, "feet"),
  40276. name: "Front",
  40277. image: {
  40278. source: "./media/characters/shadow-rat/front.svg",
  40279. extra: 1845/1758,
  40280. bottom: 83/1928
  40281. }
  40282. },
  40283. },
  40284. [
  40285. {
  40286. name: "Macro",
  40287. height: math.unit(36, "feet"),
  40288. default: true
  40289. },
  40290. ]
  40291. ))
  40292. characterMakers.push(() => makeCharacter(
  40293. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40294. {
  40295. side: {
  40296. height: math.unit(8, "feet"),
  40297. weight: math.unit(2630, "lb"),
  40298. name: "Side",
  40299. image: {
  40300. source: "./media/characters/torallia/side.svg",
  40301. extra: 2164/2021,
  40302. bottom: 371/2535
  40303. }
  40304. },
  40305. },
  40306. [
  40307. {
  40308. name: "Mortal Interaction",
  40309. height: math.unit(8, "feet")
  40310. },
  40311. {
  40312. name: "Natural",
  40313. height: math.unit(24, "feet"),
  40314. default: true
  40315. },
  40316. {
  40317. name: "Giant",
  40318. height: math.unit(80, "feet")
  40319. },
  40320. {
  40321. name: "Kaiju",
  40322. height: math.unit(240, "feet")
  40323. },
  40324. {
  40325. name: "Macro",
  40326. height: math.unit(800, "feet")
  40327. },
  40328. {
  40329. name: "Macro+",
  40330. height: math.unit(2400, "feet")
  40331. },
  40332. {
  40333. name: "Macro++",
  40334. height: math.unit(8000, "feet")
  40335. },
  40336. {
  40337. name: "City-Crushing",
  40338. height: math.unit(24000, "feet")
  40339. },
  40340. {
  40341. name: "Mountain-Mashing",
  40342. height: math.unit(80000, "feet")
  40343. },
  40344. {
  40345. name: "District Demolisher",
  40346. height: math.unit(240000, "feet")
  40347. },
  40348. {
  40349. name: "Tri-County Terror",
  40350. height: math.unit(800000, "feet")
  40351. },
  40352. {
  40353. name: "State Smasher",
  40354. height: math.unit(2.4e6, "feet")
  40355. },
  40356. {
  40357. name: "Nation Nemesis",
  40358. height: math.unit(8e6, "feet")
  40359. },
  40360. {
  40361. name: "Continent Cracker",
  40362. height: math.unit(2.4e7, "feet")
  40363. },
  40364. {
  40365. name: "Planet-Pillaging",
  40366. height: math.unit(8e7, "feet")
  40367. },
  40368. {
  40369. name: "Earth-Eclipsing",
  40370. height: math.unit(2.4e8, "feet")
  40371. },
  40372. {
  40373. name: "Jovian-Jostling",
  40374. height: math.unit(8e8, "feet")
  40375. },
  40376. {
  40377. name: "Gas Giant Gulper",
  40378. height: math.unit(2.4e9, "feet")
  40379. },
  40380. {
  40381. name: "Astral Annihilator",
  40382. height: math.unit(8e9, "feet")
  40383. },
  40384. {
  40385. name: "Celestial Conqueror",
  40386. height: math.unit(2.4e10, "feet")
  40387. },
  40388. {
  40389. name: "Sol-Swallowing",
  40390. height: math.unit(8e10, "feet")
  40391. },
  40392. {
  40393. name: "Hunter of the Heavens",
  40394. height: math.unit(2.4e13, "feet")
  40395. },
  40396. ]
  40397. ))
  40398. characterMakers.push(() => makeCharacter(
  40399. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40400. {
  40401. front: {
  40402. height: math.unit(6 + 8/12, "feet"),
  40403. weight: math.unit(250, "kilograms"),
  40404. volume: math.unit(28, "liters"),
  40405. name: "Front",
  40406. image: {
  40407. source: "./media/characters/rebecca-pawlson/front.svg",
  40408. extra: 1737/1596,
  40409. bottom: 107/1844
  40410. }
  40411. },
  40412. back: {
  40413. height: math.unit(6 + 8/12, "feet"),
  40414. weight: math.unit(250, "kilograms"),
  40415. volume: math.unit(28, "liters"),
  40416. name: "Back",
  40417. image: {
  40418. source: "./media/characters/rebecca-pawlson/back.svg",
  40419. extra: 1702/1523,
  40420. bottom: 86/1788
  40421. }
  40422. },
  40423. },
  40424. [
  40425. {
  40426. name: "Normal",
  40427. height: math.unit(6 + 8/12, "feet")
  40428. },
  40429. {
  40430. name: "Mini Macro",
  40431. height: math.unit(10, "feet"),
  40432. default: true
  40433. },
  40434. {
  40435. name: "Macro",
  40436. height: math.unit(100, "feet")
  40437. },
  40438. {
  40439. name: "Mega Macro",
  40440. height: math.unit(2500, "feet")
  40441. },
  40442. {
  40443. name: "Giga Macro",
  40444. height: math.unit(50, "miles")
  40445. },
  40446. ]
  40447. ))
  40448. characterMakers.push(() => makeCharacter(
  40449. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40450. {
  40451. front: {
  40452. height: math.unit(7 + 6/12, "feet"),
  40453. weight: math.unit(600, "lb"),
  40454. name: "Front",
  40455. image: {
  40456. source: "./media/characters/moxie-nova/front.svg",
  40457. extra: 1734/1652,
  40458. bottom: 41/1775
  40459. }
  40460. },
  40461. },
  40462. [
  40463. {
  40464. name: "Normal",
  40465. height: math.unit(7 + 6/12, "feet"),
  40466. default: true
  40467. },
  40468. ]
  40469. ))
  40470. characterMakers.push(() => makeCharacter(
  40471. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40472. {
  40473. goat: {
  40474. height: math.unit(4, "feet"),
  40475. weight: math.unit(180, "lb"),
  40476. name: "Goat",
  40477. image: {
  40478. source: "./media/characters/tiffany/goat.svg",
  40479. extra: 1845/1595,
  40480. bottom: 106/1951
  40481. }
  40482. },
  40483. front: {
  40484. height: math.unit(5, "feet"),
  40485. weight: math.unit(150, "lb"),
  40486. name: "Foxcoon",
  40487. image: {
  40488. source: "./media/characters/tiffany/foxcoon.svg",
  40489. extra: 1941/1845,
  40490. bottom: 58/1999
  40491. }
  40492. },
  40493. },
  40494. [
  40495. {
  40496. name: "Normal",
  40497. height: math.unit(5, "feet"),
  40498. default: true
  40499. },
  40500. ]
  40501. ))
  40502. characterMakers.push(() => makeCharacter(
  40503. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40504. {
  40505. front: {
  40506. height: math.unit(8, "feet"),
  40507. weight: math.unit(300, "lb"),
  40508. name: "Front",
  40509. image: {
  40510. source: "./media/characters/raxinath/front.svg",
  40511. extra: 1407/1309,
  40512. bottom: 39/1446
  40513. }
  40514. },
  40515. back: {
  40516. height: math.unit(8, "feet"),
  40517. weight: math.unit(300, "lb"),
  40518. name: "Back",
  40519. image: {
  40520. source: "./media/characters/raxinath/back.svg",
  40521. extra: 1405/1315,
  40522. bottom: 9/1414
  40523. }
  40524. },
  40525. },
  40526. [
  40527. {
  40528. name: "Speck",
  40529. height: math.unit(0.5, "nm")
  40530. },
  40531. {
  40532. name: "Micro",
  40533. height: math.unit(3, "inches")
  40534. },
  40535. {
  40536. name: "Kobold",
  40537. height: math.unit(3, "feet")
  40538. },
  40539. {
  40540. name: "Normal",
  40541. height: math.unit(8, "feet"),
  40542. default: true
  40543. },
  40544. {
  40545. name: "Giant",
  40546. height: math.unit(50, "feet")
  40547. },
  40548. {
  40549. name: "Macro",
  40550. height: math.unit(1000, "feet")
  40551. },
  40552. {
  40553. name: "Megamacro",
  40554. height: math.unit(1, "mile")
  40555. },
  40556. ]
  40557. ))
  40558. characterMakers.push(() => makeCharacter(
  40559. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40560. {
  40561. front: {
  40562. height: math.unit(10, "feet"),
  40563. weight: math.unit(1442, "lb"),
  40564. name: "Front",
  40565. image: {
  40566. source: "./media/characters/mal-dragon/front.svg",
  40567. extra: 1515/1444,
  40568. bottom: 113/1628
  40569. }
  40570. },
  40571. back: {
  40572. height: math.unit(10, "feet"),
  40573. weight: math.unit(1442, "lb"),
  40574. name: "Back",
  40575. image: {
  40576. source: "./media/characters/mal-dragon/back.svg",
  40577. extra: 1527/1434,
  40578. bottom: 25/1552
  40579. }
  40580. },
  40581. },
  40582. [
  40583. {
  40584. name: "Mortal Interaction",
  40585. height: math.unit(10, "feet"),
  40586. default: true
  40587. },
  40588. {
  40589. name: "Large",
  40590. height: math.unit(30, "feet")
  40591. },
  40592. {
  40593. name: "Kaiju",
  40594. height: math.unit(300, "feet")
  40595. },
  40596. {
  40597. name: "Megamacro",
  40598. height: math.unit(10000, "feet")
  40599. },
  40600. {
  40601. name: "Continent Cracker",
  40602. height: math.unit(30000000, "feet")
  40603. },
  40604. {
  40605. name: "Sol-Swallowing",
  40606. height: math.unit(1e11, "feet")
  40607. },
  40608. {
  40609. name: "Light Universal",
  40610. height: math.unit(5, "universes")
  40611. },
  40612. {
  40613. name: "Universe Atoms",
  40614. height: math.unit(1.829e9, "universes")
  40615. },
  40616. {
  40617. name: "Light Multiversal",
  40618. height: math.unit(5, "multiverses")
  40619. },
  40620. {
  40621. name: "Multiverse Atoms",
  40622. height: math.unit(1.829e9, "multiverses")
  40623. },
  40624. {
  40625. name: "Fabric of Time",
  40626. height: math.unit(1e262, "multiverses")
  40627. },
  40628. ]
  40629. ))
  40630. characterMakers.push(() => makeCharacter(
  40631. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40632. {
  40633. front: {
  40634. height: math.unit(9, "feet"),
  40635. weight: math.unit(1050, "lb"),
  40636. name: "Front",
  40637. image: {
  40638. source: "./media/characters/tabitha/front.svg",
  40639. extra: 2083/1994,
  40640. bottom: 68/2151
  40641. }
  40642. },
  40643. },
  40644. [
  40645. {
  40646. name: "Baseline",
  40647. height: math.unit(9, "feet"),
  40648. default: true
  40649. },
  40650. {
  40651. name: "Giant",
  40652. height: math.unit(90, "feet")
  40653. },
  40654. {
  40655. name: "Macro",
  40656. height: math.unit(900, "feet")
  40657. },
  40658. {
  40659. name: "Megamacro",
  40660. height: math.unit(9000, "feet")
  40661. },
  40662. {
  40663. name: "City-Crushing",
  40664. height: math.unit(27000, "feet")
  40665. },
  40666. {
  40667. name: "Mountain-Mashing",
  40668. height: math.unit(90000, "feet")
  40669. },
  40670. {
  40671. name: "Nation Nemesis",
  40672. height: math.unit(9e6, "feet")
  40673. },
  40674. {
  40675. name: "Continent Cracker",
  40676. height: math.unit(27e6, "feet")
  40677. },
  40678. {
  40679. name: "Earth-Eclipsing",
  40680. height: math.unit(2.7e8, "feet")
  40681. },
  40682. {
  40683. name: "Gas Giant Gulper",
  40684. height: math.unit(2.7e9, "feet")
  40685. },
  40686. {
  40687. name: "Sol-Swallowing",
  40688. height: math.unit(9e10, "feet")
  40689. },
  40690. {
  40691. name: "Galaxy Gulper",
  40692. height: math.unit(9, "galaxies")
  40693. },
  40694. {
  40695. name: "Cosmos Churner",
  40696. height: math.unit(9, "universes")
  40697. },
  40698. ]
  40699. ))
  40700. characterMakers.push(() => makeCharacter(
  40701. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40702. {
  40703. front: {
  40704. height: math.unit(160, "cm"),
  40705. weight: math.unit(55, "kg"),
  40706. name: "Front",
  40707. image: {
  40708. source: "./media/characters/tow/front.svg",
  40709. extra: 1751/1722,
  40710. bottom: 74/1825
  40711. }
  40712. },
  40713. },
  40714. [
  40715. {
  40716. name: "Norm",
  40717. height: math.unit(160, "cm")
  40718. },
  40719. {
  40720. name: "Casual",
  40721. height: math.unit(3200, "m"),
  40722. default: true
  40723. },
  40724. {
  40725. name: "Show-Off",
  40726. height: math.unit(160, "km")
  40727. },
  40728. ]
  40729. ))
  40730. characterMakers.push(() => makeCharacter(
  40731. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40732. {
  40733. front: {
  40734. height: math.unit(7 + 11/12, "feet"),
  40735. weight: math.unit(342.8, "lb"),
  40736. name: "Front",
  40737. image: {
  40738. source: "./media/characters/vivian-orca-dragon/front.svg",
  40739. extra: 1890/1865,
  40740. bottom: 28/1918
  40741. }
  40742. },
  40743. },
  40744. [
  40745. {
  40746. name: "Micro",
  40747. height: math.unit(5, "inches")
  40748. },
  40749. {
  40750. name: "Normal",
  40751. height: math.unit(7 + 11/12, "feet"),
  40752. default: true
  40753. },
  40754. {
  40755. name: "Macro",
  40756. height: math.unit(395 + 7/12, "feet")
  40757. },
  40758. ]
  40759. ))
  40760. characterMakers.push(() => makeCharacter(
  40761. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40762. {
  40763. side: {
  40764. height: math.unit(10, "feet"),
  40765. weight: math.unit(1442, "lb"),
  40766. name: "Side",
  40767. image: {
  40768. source: "./media/characters/lotherakon/side.svg",
  40769. extra: 1604/1497,
  40770. bottom: 89/1693
  40771. }
  40772. },
  40773. },
  40774. [
  40775. {
  40776. name: "Mortal Interaction",
  40777. height: math.unit(10, "feet")
  40778. },
  40779. {
  40780. name: "Large",
  40781. height: math.unit(30, "feet"),
  40782. default: true
  40783. },
  40784. {
  40785. name: "Giant",
  40786. height: math.unit(100, "feet")
  40787. },
  40788. {
  40789. name: "Kaiju",
  40790. height: math.unit(300, "feet")
  40791. },
  40792. {
  40793. name: "Macro",
  40794. height: math.unit(1000, "feet")
  40795. },
  40796. {
  40797. name: "Macro+",
  40798. height: math.unit(3000, "feet")
  40799. },
  40800. {
  40801. name: "Megamacro",
  40802. height: math.unit(10000, "feet")
  40803. },
  40804. {
  40805. name: "City-Crushing",
  40806. height: math.unit(30000, "feet")
  40807. },
  40808. {
  40809. name: "Continent Cracker",
  40810. height: math.unit(30e6, "feet")
  40811. },
  40812. {
  40813. name: "Earth Eclipsing",
  40814. height: math.unit(3e8, "feet")
  40815. },
  40816. {
  40817. name: "Gas Giant Gulper",
  40818. height: math.unit(3e9, "feet")
  40819. },
  40820. {
  40821. name: "Sol-Swallowing",
  40822. height: math.unit(1e11, "feet")
  40823. },
  40824. {
  40825. name: "System Swallower",
  40826. height: math.unit(3e14, "feet")
  40827. },
  40828. {
  40829. name: "Galaxy Gulper",
  40830. height: math.unit(10, "galaxies")
  40831. },
  40832. {
  40833. name: "Light Universal",
  40834. height: math.unit(5, "universes")
  40835. },
  40836. {
  40837. name: "Universe Palm",
  40838. height: math.unit(20, "universes")
  40839. },
  40840. {
  40841. name: "Light Multiversal",
  40842. height: math.unit(5, "multiverses")
  40843. },
  40844. {
  40845. name: "Multiverse Palm",
  40846. height: math.unit(20, "multiverses")
  40847. },
  40848. {
  40849. name: "Inferno Incarnate",
  40850. height: math.unit(1e7, "multiverses")
  40851. },
  40852. ]
  40853. ))
  40854. characterMakers.push(() => makeCharacter(
  40855. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40856. {
  40857. front: {
  40858. height: math.unit(8, "feet"),
  40859. weight: math.unit(1200, "lb"),
  40860. name: "Front",
  40861. image: {
  40862. source: "./media/characters/malithee/front.svg",
  40863. extra: 1675/1640,
  40864. bottom: 162/1837
  40865. }
  40866. },
  40867. },
  40868. [
  40869. {
  40870. name: "Mortal Interaction",
  40871. height: math.unit(8, "feet"),
  40872. default: true
  40873. },
  40874. {
  40875. name: "Large",
  40876. height: math.unit(24, "feet")
  40877. },
  40878. {
  40879. name: "Kaiju",
  40880. height: math.unit(240, "feet")
  40881. },
  40882. {
  40883. name: "Megamacro",
  40884. height: math.unit(8000, "feet")
  40885. },
  40886. {
  40887. name: "Continent Cracker",
  40888. height: math.unit(24e6, "feet")
  40889. },
  40890. {
  40891. name: "Earth-Eclipsing",
  40892. height: math.unit(2.4e8, "feet")
  40893. },
  40894. {
  40895. name: "Sol-Swallowing",
  40896. height: math.unit(8e10, "feet")
  40897. },
  40898. {
  40899. name: "Galaxy Gulper",
  40900. height: math.unit(8, "galaxies")
  40901. },
  40902. {
  40903. name: "Light Universal",
  40904. height: math.unit(4, "universes")
  40905. },
  40906. {
  40907. name: "Universe Atoms",
  40908. height: math.unit(1.829e9, "universes")
  40909. },
  40910. {
  40911. name: "Light Multiversal",
  40912. height: math.unit(4, "multiverses")
  40913. },
  40914. {
  40915. name: "Multiverse Atoms",
  40916. height: math.unit(1.829e9, "multiverses")
  40917. },
  40918. {
  40919. name: "Nigh-Omnipresence",
  40920. height: math.unit(8e261, "multiverses")
  40921. },
  40922. ]
  40923. ))
  40924. characterMakers.push(() => makeCharacter(
  40925. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40926. {
  40927. front: {
  40928. height: math.unit(10, "feet"),
  40929. weight: math.unit(1500, "lb"),
  40930. name: "Front",
  40931. image: {
  40932. source: "./media/characters/miles-thestia/front.svg",
  40933. extra: 1812/1727,
  40934. bottom: 86/1898
  40935. }
  40936. },
  40937. back: {
  40938. height: math.unit(10, "feet"),
  40939. weight: math.unit(1500, "lb"),
  40940. name: "Back",
  40941. image: {
  40942. source: "./media/characters/miles-thestia/back.svg",
  40943. extra: 1799/1690,
  40944. bottom: 47/1846
  40945. }
  40946. },
  40947. frontNsfw: {
  40948. height: math.unit(10, "feet"),
  40949. weight: math.unit(1500, "lb"),
  40950. name: "Front (NSFW)",
  40951. image: {
  40952. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40953. extra: 1812/1727,
  40954. bottom: 86/1898
  40955. }
  40956. },
  40957. },
  40958. [
  40959. {
  40960. name: "Mini-Macro",
  40961. height: math.unit(10, "feet"),
  40962. default: true
  40963. },
  40964. ]
  40965. ))
  40966. characterMakers.push(() => makeCharacter(
  40967. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40968. {
  40969. front: {
  40970. height: math.unit(25, "feet"),
  40971. name: "Front",
  40972. image: {
  40973. source: "./media/characters/titan-s-wulf/front.svg",
  40974. extra: 1560/1484,
  40975. bottom: 76/1636
  40976. }
  40977. },
  40978. },
  40979. [
  40980. {
  40981. name: "Smallest",
  40982. height: math.unit(25, "feet"),
  40983. default: true
  40984. },
  40985. {
  40986. name: "Normal",
  40987. height: math.unit(200, "feet")
  40988. },
  40989. {
  40990. name: "Macro",
  40991. height: math.unit(200000, "feet")
  40992. },
  40993. {
  40994. name: "Multiversal Original",
  40995. height: math.unit(10000, "multiverses")
  40996. },
  40997. ]
  40998. ))
  40999. characterMakers.push(() => makeCharacter(
  41000. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41001. {
  41002. front: {
  41003. height: math.unit(8, "feet"),
  41004. weight: math.unit(553, "lb"),
  41005. name: "Front",
  41006. image: {
  41007. source: "./media/characters/tawendeh/front.svg",
  41008. extra: 2365/2268,
  41009. bottom: 83/2448
  41010. }
  41011. },
  41012. frontClothed: {
  41013. height: math.unit(8, "feet"),
  41014. weight: math.unit(553, "lb"),
  41015. name: "Front (Clothed)",
  41016. image: {
  41017. source: "./media/characters/tawendeh/front-clothed.svg",
  41018. extra: 2365/2268,
  41019. bottom: 83/2448
  41020. }
  41021. },
  41022. back: {
  41023. height: math.unit(8, "feet"),
  41024. weight: math.unit(553, "lb"),
  41025. name: "Back",
  41026. image: {
  41027. source: "./media/characters/tawendeh/back.svg",
  41028. extra: 2397/2294,
  41029. bottom: 42/2439
  41030. }
  41031. },
  41032. },
  41033. [
  41034. {
  41035. name: "Mortal Interaction",
  41036. height: math.unit(8, "feet"),
  41037. default: true
  41038. },
  41039. {
  41040. name: "Giant",
  41041. height: math.unit(80, "feet")
  41042. },
  41043. {
  41044. name: "Macro",
  41045. height: math.unit(800, "feet")
  41046. },
  41047. {
  41048. name: "Megamacro",
  41049. height: math.unit(8000, "feet")
  41050. },
  41051. {
  41052. name: "City-Crushing",
  41053. height: math.unit(24000, "feet")
  41054. },
  41055. {
  41056. name: "Mountain-Mashing",
  41057. height: math.unit(80000, "feet")
  41058. },
  41059. {
  41060. name: "Nation Nemesis",
  41061. height: math.unit(8e6, "feet")
  41062. },
  41063. {
  41064. name: "Continent Cracker",
  41065. height: math.unit(24e6, "feet")
  41066. },
  41067. {
  41068. name: "Earth-Eclipsing",
  41069. height: math.unit(2.4e8, "feet")
  41070. },
  41071. {
  41072. name: "Gas Giant Gulper",
  41073. height: math.unit(2.4e9, "feet")
  41074. },
  41075. {
  41076. name: "Sol-Swallowing",
  41077. height: math.unit(8e10, "feet")
  41078. },
  41079. {
  41080. name: "Galaxy Gulper",
  41081. height: math.unit(8, "galaxies")
  41082. },
  41083. {
  41084. name: "Cosmos Churner",
  41085. height: math.unit(8, "universes")
  41086. },
  41087. {
  41088. name: "Omnipotent Otter",
  41089. height: math.unit(80, "universes")
  41090. },
  41091. ]
  41092. ))
  41093. characterMakers.push(() => makeCharacter(
  41094. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41095. {
  41096. front: {
  41097. height: math.unit(2.6, "meters"),
  41098. weight: math.unit(900, "kg"),
  41099. name: "Front",
  41100. image: {
  41101. source: "./media/characters/neesha/front.svg",
  41102. extra: 1803/1653,
  41103. bottom: 128/1931
  41104. }
  41105. },
  41106. },
  41107. [
  41108. {
  41109. name: "Normal",
  41110. height: math.unit(2.6, "meters"),
  41111. default: true
  41112. },
  41113. {
  41114. name: "Macro",
  41115. height: math.unit(50, "meters")
  41116. },
  41117. ]
  41118. ))
  41119. characterMakers.push(() => makeCharacter(
  41120. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41121. {
  41122. front: {
  41123. height: math.unit(5, "feet"),
  41124. weight: math.unit(185, "lb"),
  41125. name: "Front",
  41126. image: {
  41127. source: "./media/characters/kyera/front.svg",
  41128. extra: 1875/1790,
  41129. bottom: 96/1971
  41130. }
  41131. },
  41132. },
  41133. [
  41134. {
  41135. name: "Normal",
  41136. height: math.unit(5, "feet"),
  41137. default: true
  41138. },
  41139. ]
  41140. ))
  41141. characterMakers.push(() => makeCharacter(
  41142. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41143. {
  41144. front: {
  41145. height: math.unit(7 + 6/12, "feet"),
  41146. weight: math.unit(540, "lb"),
  41147. name: "Front",
  41148. image: {
  41149. source: "./media/characters/yuko/front.svg",
  41150. extra: 1282/1222,
  41151. bottom: 101/1383
  41152. }
  41153. },
  41154. frontClothed: {
  41155. height: math.unit(7 + 6/12, "feet"),
  41156. weight: math.unit(540, "lb"),
  41157. name: "Front (Clothed)",
  41158. image: {
  41159. source: "./media/characters/yuko/front-clothed.svg",
  41160. extra: 1282/1222,
  41161. bottom: 101/1383
  41162. }
  41163. },
  41164. },
  41165. [
  41166. {
  41167. name: "Normal",
  41168. height: math.unit(7 + 6/12, "feet"),
  41169. default: true
  41170. },
  41171. {
  41172. name: "Macro",
  41173. height: math.unit(26 + 9/12, "feet")
  41174. },
  41175. {
  41176. name: "Megamacro",
  41177. height: math.unit(300, "feet")
  41178. },
  41179. {
  41180. name: "Gigamacro",
  41181. height: math.unit(5000, "feet")
  41182. },
  41183. {
  41184. name: "Planetary",
  41185. height: math.unit(10000, "miles")
  41186. },
  41187. ]
  41188. ))
  41189. characterMakers.push(() => makeCharacter(
  41190. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41191. {
  41192. front: {
  41193. height: math.unit(8 + 2/12, "feet"),
  41194. weight: math.unit(600, "lb"),
  41195. name: "Front",
  41196. image: {
  41197. source: "./media/characters/deam-nitrel/front.svg",
  41198. extra: 1308/1234,
  41199. bottom: 125/1433
  41200. }
  41201. },
  41202. },
  41203. [
  41204. {
  41205. name: "Normal",
  41206. height: math.unit(8 + 2/12, "feet"),
  41207. default: true
  41208. },
  41209. ]
  41210. ))
  41211. characterMakers.push(() => makeCharacter(
  41212. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41213. {
  41214. front: {
  41215. height: math.unit(6.1, "feet"),
  41216. weight: math.unit(180, "lb"),
  41217. name: "Front",
  41218. image: {
  41219. source: "./media/characters/skyress/front.svg",
  41220. extra: 1045/915,
  41221. bottom: 28/1073
  41222. }
  41223. },
  41224. maw: {
  41225. height: math.unit(1, "feet"),
  41226. name: "Maw",
  41227. image: {
  41228. source: "./media/characters/skyress/maw.svg"
  41229. }
  41230. },
  41231. },
  41232. [
  41233. {
  41234. name: "Normal",
  41235. height: math.unit(6.1, "feet"),
  41236. default: true
  41237. },
  41238. {
  41239. name: "Macro",
  41240. height: math.unit(200, "feet")
  41241. },
  41242. ]
  41243. ))
  41244. characterMakers.push(() => makeCharacter(
  41245. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41246. {
  41247. front: {
  41248. height: math.unit(4 + 2/12, "feet"),
  41249. weight: math.unit(40, "kg"),
  41250. name: "Front",
  41251. image: {
  41252. source: "./media/characters/amethyst-jones/front.svg",
  41253. extra: 1220/1150,
  41254. bottom: 101/1321
  41255. }
  41256. },
  41257. },
  41258. [
  41259. {
  41260. name: "Normal",
  41261. height: math.unit(4 + 2/12, "feet"),
  41262. default: true
  41263. },
  41264. ]
  41265. ))
  41266. characterMakers.push(() => makeCharacter(
  41267. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41268. {
  41269. front: {
  41270. height: math.unit(1.7, "m"),
  41271. weight: math.unit(135, "lb"),
  41272. name: "Front",
  41273. image: {
  41274. source: "./media/characters/jade/front.svg",
  41275. extra: 1818/1767,
  41276. bottom: 32/1850
  41277. }
  41278. },
  41279. back: {
  41280. height: math.unit(1.7, "m"),
  41281. weight: math.unit(135, "lb"),
  41282. name: "Back",
  41283. image: {
  41284. source: "./media/characters/jade/back.svg",
  41285. extra: 1869/1809,
  41286. bottom: 35/1904
  41287. }
  41288. },
  41289. hand: {
  41290. height: math.unit(0.24, "m"),
  41291. name: "Hand",
  41292. image: {
  41293. source: "./media/characters/jade/hand.svg"
  41294. }
  41295. },
  41296. foot: {
  41297. height: math.unit(0.263, "m"),
  41298. name: "Foot",
  41299. image: {
  41300. source: "./media/characters/jade/foot.svg"
  41301. }
  41302. },
  41303. dick: {
  41304. height: math.unit(0.47, "m"),
  41305. name: "Dick",
  41306. image: {
  41307. source: "./media/characters/jade/dick.svg"
  41308. }
  41309. },
  41310. },
  41311. [
  41312. {
  41313. name: "Micro",
  41314. height: math.unit(22, "cm")
  41315. },
  41316. {
  41317. name: "Normal",
  41318. height: math.unit(1.7, "m"),
  41319. default: true
  41320. },
  41321. {
  41322. name: "Macro",
  41323. height: math.unit(152, "m")
  41324. },
  41325. ]
  41326. ))
  41327. characterMakers.push(() => makeCharacter(
  41328. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41329. {
  41330. front: {
  41331. height: math.unit(100, "miles"),
  41332. weight: math.unit(20000, "tons"),
  41333. name: "Front",
  41334. image: {
  41335. source: "./media/characters/cookie/front.svg",
  41336. extra: 1125/1070,
  41337. bottom: 30/1155
  41338. }
  41339. },
  41340. },
  41341. [
  41342. {
  41343. name: "Big",
  41344. height: math.unit(50, "feet")
  41345. },
  41346. {
  41347. name: "Macro",
  41348. height: math.unit(100, "miles"),
  41349. default: true
  41350. },
  41351. {
  41352. name: "Megamacro",
  41353. height: math.unit(90000, "miles")
  41354. },
  41355. ]
  41356. ))
  41357. characterMakers.push(() => makeCharacter(
  41358. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41359. {
  41360. front: {
  41361. height: math.unit(6, "feet"),
  41362. weight: math.unit(145, "lb"),
  41363. name: "Front",
  41364. image: {
  41365. source: "./media/characters/farzian/front.svg",
  41366. extra: 1902/1693,
  41367. bottom: 108/2010
  41368. }
  41369. },
  41370. },
  41371. [
  41372. {
  41373. name: "Macro",
  41374. height: math.unit(500, "feet"),
  41375. default: true
  41376. },
  41377. ]
  41378. ))
  41379. characterMakers.push(() => makeCharacter(
  41380. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41381. {
  41382. front: {
  41383. height: math.unit(3 + 6/12, "feet"),
  41384. weight: math.unit(50, "lb"),
  41385. name: "Front",
  41386. image: {
  41387. source: "./media/characters/kimberly-tilson/front.svg",
  41388. extra: 1400/1322,
  41389. bottom: 36/1436
  41390. }
  41391. },
  41392. back: {
  41393. height: math.unit(3 + 6/12, "feet"),
  41394. weight: math.unit(50, "lb"),
  41395. name: "Back",
  41396. image: {
  41397. source: "./media/characters/kimberly-tilson/back.svg",
  41398. extra: 1370/1307,
  41399. bottom: 20/1390
  41400. }
  41401. },
  41402. },
  41403. [
  41404. {
  41405. name: "Normal",
  41406. height: math.unit(3 + 6/12, "feet"),
  41407. default: true
  41408. },
  41409. ]
  41410. ))
  41411. characterMakers.push(() => makeCharacter(
  41412. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41413. {
  41414. front: {
  41415. height: math.unit(1148, "feet"),
  41416. weight: math.unit(34057, "lb"),
  41417. name: "Front",
  41418. image: {
  41419. source: "./media/characters/harthos/front.svg",
  41420. extra: 1391/1339,
  41421. bottom: 13/1404
  41422. }
  41423. },
  41424. },
  41425. [
  41426. {
  41427. name: "Macro",
  41428. height: math.unit(1148, "feet"),
  41429. default: true
  41430. },
  41431. ]
  41432. ))
  41433. characterMakers.push(() => makeCharacter(
  41434. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41435. {
  41436. front: {
  41437. height: math.unit(15, "feet"),
  41438. name: "Front",
  41439. image: {
  41440. source: "./media/characters/hypatia/front.svg",
  41441. extra: 1653/1591,
  41442. bottom: 79/1732
  41443. }
  41444. },
  41445. },
  41446. [
  41447. {
  41448. name: "Normal",
  41449. height: math.unit(15, "feet")
  41450. },
  41451. {
  41452. name: "Small",
  41453. height: math.unit(300, "feet")
  41454. },
  41455. {
  41456. name: "Macro",
  41457. height: math.unit(2500, "feet"),
  41458. default: true
  41459. },
  41460. {
  41461. name: "Mega Macro",
  41462. height: math.unit(1500, "miles")
  41463. },
  41464. {
  41465. name: "Giga Macro",
  41466. height: math.unit(1.5e6, "miles")
  41467. },
  41468. ]
  41469. ))
  41470. characterMakers.push(() => makeCharacter(
  41471. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41472. {
  41473. front: {
  41474. height: math.unit(6, "feet"),
  41475. weight: math.unit(200, "lb"),
  41476. name: "Front",
  41477. image: {
  41478. source: "./media/characters/wulver/front.svg",
  41479. extra: 1724/1632,
  41480. bottom: 130/1854
  41481. }
  41482. },
  41483. frontNsfw: {
  41484. height: math.unit(6, "feet"),
  41485. weight: math.unit(200, "lb"),
  41486. name: "Front (NSFW)",
  41487. image: {
  41488. source: "./media/characters/wulver/front-nsfw.svg",
  41489. extra: 1724/1632,
  41490. bottom: 130/1854
  41491. }
  41492. },
  41493. },
  41494. [
  41495. {
  41496. name: "Human-Sized",
  41497. height: math.unit(6, "feet")
  41498. },
  41499. {
  41500. name: "Normal",
  41501. height: math.unit(4, "meters"),
  41502. default: true
  41503. },
  41504. {
  41505. name: "Large",
  41506. height: math.unit(6, "m")
  41507. },
  41508. ]
  41509. ))
  41510. characterMakers.push(() => makeCharacter(
  41511. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41512. {
  41513. front: {
  41514. height: math.unit(7, "feet"),
  41515. name: "Front",
  41516. image: {
  41517. source: "./media/characters/maru/front.svg",
  41518. extra: 1595/1570,
  41519. bottom: 0/1595
  41520. }
  41521. },
  41522. },
  41523. [
  41524. {
  41525. name: "Normal",
  41526. height: math.unit(7, "feet"),
  41527. default: true
  41528. },
  41529. {
  41530. name: "Macro",
  41531. height: math.unit(700, "feet")
  41532. },
  41533. {
  41534. name: "Mega Macro",
  41535. height: math.unit(25, "miles")
  41536. },
  41537. ]
  41538. ))
  41539. characterMakers.push(() => makeCharacter(
  41540. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41541. {
  41542. front: {
  41543. height: math.unit(6, "feet"),
  41544. weight: math.unit(170, "lb"),
  41545. name: "Front",
  41546. image: {
  41547. source: "./media/characters/xenon/front.svg",
  41548. extra: 1376/1305,
  41549. bottom: 56/1432
  41550. }
  41551. },
  41552. back: {
  41553. height: math.unit(6, "feet"),
  41554. weight: math.unit(170, "lb"),
  41555. name: "Back",
  41556. image: {
  41557. source: "./media/characters/xenon/back.svg",
  41558. extra: 1328/1259,
  41559. bottom: 95/1423
  41560. }
  41561. },
  41562. maw: {
  41563. height: math.unit(0.52, "feet"),
  41564. name: "Maw",
  41565. image: {
  41566. source: "./media/characters/xenon/maw.svg"
  41567. }
  41568. },
  41569. handLeft: {
  41570. height: math.unit(0.82 * 169 / 153, "feet"),
  41571. name: "Hand (Left)",
  41572. image: {
  41573. source: "./media/characters/xenon/hand-left.svg"
  41574. }
  41575. },
  41576. handRight: {
  41577. height: math.unit(0.82, "feet"),
  41578. name: "Hand (Right)",
  41579. image: {
  41580. source: "./media/characters/xenon/hand-right.svg"
  41581. }
  41582. },
  41583. footLeft: {
  41584. height: math.unit(1.13, "feet"),
  41585. name: "Foot (Left)",
  41586. image: {
  41587. source: "./media/characters/xenon/foot-left.svg"
  41588. }
  41589. },
  41590. footRight: {
  41591. height: math.unit(1.13 * 194 / 196, "feet"),
  41592. name: "Foot (Right)",
  41593. image: {
  41594. source: "./media/characters/xenon/foot-right.svg"
  41595. }
  41596. },
  41597. },
  41598. [
  41599. {
  41600. name: "Micro",
  41601. height: math.unit(0.8, "inches")
  41602. },
  41603. {
  41604. name: "Normal",
  41605. height: math.unit(6, "feet")
  41606. },
  41607. {
  41608. name: "Macro",
  41609. height: math.unit(50, "feet"),
  41610. default: true
  41611. },
  41612. {
  41613. name: "Macro+",
  41614. height: math.unit(250, "feet")
  41615. },
  41616. {
  41617. name: "Megamacro",
  41618. height: math.unit(1500, "feet")
  41619. },
  41620. ]
  41621. ))
  41622. characterMakers.push(() => makeCharacter(
  41623. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41624. {
  41625. front: {
  41626. height: math.unit(7 + 5/12, "feet"),
  41627. name: "Front",
  41628. image: {
  41629. source: "./media/characters/zane/front.svg",
  41630. extra: 1260/1203,
  41631. bottom: 94/1354
  41632. }
  41633. },
  41634. back: {
  41635. height: math.unit(5.05, "feet"),
  41636. name: "Back",
  41637. image: {
  41638. source: "./media/characters/zane/back.svg",
  41639. extra: 893/829,
  41640. bottom: 30/923
  41641. }
  41642. },
  41643. werewolf: {
  41644. height: math.unit(11, "feet"),
  41645. name: "Werewolf",
  41646. image: {
  41647. source: "./media/characters/zane/werewolf.svg",
  41648. extra: 1383/1323,
  41649. bottom: 89/1472
  41650. }
  41651. },
  41652. foot: {
  41653. height: math.unit(1.46, "feet"),
  41654. name: "Foot",
  41655. image: {
  41656. source: "./media/characters/zane/foot.svg"
  41657. }
  41658. },
  41659. footFront: {
  41660. height: math.unit(0.784, "feet"),
  41661. name: "Foot (Front)",
  41662. image: {
  41663. source: "./media/characters/zane/foot-front.svg"
  41664. }
  41665. },
  41666. dick: {
  41667. height: math.unit(1.95, "feet"),
  41668. name: "Dick",
  41669. image: {
  41670. source: "./media/characters/zane/dick.svg"
  41671. }
  41672. },
  41673. dickWerewolf: {
  41674. height: math.unit(3.77, "feet"),
  41675. name: "Dick (Werewolf)",
  41676. image: {
  41677. source: "./media/characters/zane/dick.svg"
  41678. }
  41679. },
  41680. },
  41681. [
  41682. {
  41683. name: "Normal",
  41684. height: math.unit(7 + 5/12, "feet"),
  41685. default: true
  41686. },
  41687. ]
  41688. ))
  41689. characterMakers.push(() => makeCharacter(
  41690. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41691. {
  41692. front: {
  41693. height: math.unit(6 + 2/12, "feet"),
  41694. weight: math.unit(284, "lb"),
  41695. name: "Front",
  41696. image: {
  41697. source: "./media/characters/benni-desparque/front.svg",
  41698. extra: 1353/1126,
  41699. bottom: 69/1422
  41700. }
  41701. },
  41702. },
  41703. [
  41704. {
  41705. name: "Civilian",
  41706. height: math.unit(6 + 2/12, "feet")
  41707. },
  41708. {
  41709. name: "Normal",
  41710. height: math.unit(98, "feet"),
  41711. default: true
  41712. },
  41713. {
  41714. name: "Kaiju Fighter",
  41715. height: math.unit(268, "feet")
  41716. },
  41717. ]
  41718. ))
  41719. characterMakers.push(() => makeCharacter(
  41720. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41721. {
  41722. front: {
  41723. height: math.unit(5, "feet"),
  41724. weight: math.unit(105, "lb"),
  41725. name: "Front",
  41726. image: {
  41727. source: "./media/characters/maxine/front.svg",
  41728. extra: 1386/1250,
  41729. bottom: 71/1457
  41730. }
  41731. },
  41732. },
  41733. [
  41734. {
  41735. name: "Normal",
  41736. height: math.unit(5, "feet"),
  41737. default: true
  41738. },
  41739. ]
  41740. ))
  41741. characterMakers.push(() => makeCharacter(
  41742. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41743. {
  41744. front: {
  41745. height: math.unit(11 + 7/12, "feet"),
  41746. weight: math.unit(9576, "lb"),
  41747. name: "Front",
  41748. image: {
  41749. source: "./media/characters/scaly/front.svg",
  41750. extra: 888/867,
  41751. bottom: 36/924
  41752. }
  41753. },
  41754. },
  41755. [
  41756. {
  41757. name: "Normal",
  41758. height: math.unit(11 + 7/12, "feet"),
  41759. default: true
  41760. },
  41761. ]
  41762. ))
  41763. characterMakers.push(() => makeCharacter(
  41764. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41765. {
  41766. front: {
  41767. height: math.unit(6 + 3/12, "feet"),
  41768. name: "Front",
  41769. image: {
  41770. source: "./media/characters/saelria/front.svg",
  41771. extra: 1243/1138,
  41772. bottom: 46/1289
  41773. }
  41774. },
  41775. },
  41776. [
  41777. {
  41778. name: "Micro",
  41779. height: math.unit(6, "inches"),
  41780. },
  41781. {
  41782. name: "Normal",
  41783. height: math.unit(6 + 3/12, "feet"),
  41784. default: true
  41785. },
  41786. {
  41787. name: "Macro",
  41788. height: math.unit(25, "feet")
  41789. },
  41790. ]
  41791. ))
  41792. characterMakers.push(() => makeCharacter(
  41793. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41794. {
  41795. front: {
  41796. height: math.unit(80, "meters"),
  41797. weight: math.unit(7000, "tonnes"),
  41798. name: "Front",
  41799. image: {
  41800. source: "./media/characters/tef/front.svg",
  41801. extra: 2036/1991,
  41802. bottom: 54/2090
  41803. }
  41804. },
  41805. back: {
  41806. height: math.unit(80, "meters"),
  41807. weight: math.unit(7000, "tonnes"),
  41808. name: "Back",
  41809. image: {
  41810. source: "./media/characters/tef/back.svg",
  41811. extra: 2036/1991,
  41812. bottom: 54/2090
  41813. }
  41814. },
  41815. },
  41816. [
  41817. {
  41818. name: "Macro",
  41819. height: math.unit(80, "meters"),
  41820. default: true
  41821. },
  41822. ]
  41823. ))
  41824. characterMakers.push(() => makeCharacter(
  41825. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41826. {
  41827. front: {
  41828. height: math.unit(13, "feet"),
  41829. weight: math.unit(6, "tons"),
  41830. name: "Front",
  41831. image: {
  41832. source: "./media/characters/rover/front.svg",
  41833. extra: 1233/1156,
  41834. bottom: 50/1283
  41835. }
  41836. },
  41837. back: {
  41838. height: math.unit(13, "feet"),
  41839. weight: math.unit(6, "tons"),
  41840. name: "Back",
  41841. image: {
  41842. source: "./media/characters/rover/back.svg",
  41843. extra: 1327/1258,
  41844. bottom: 39/1366
  41845. }
  41846. },
  41847. },
  41848. [
  41849. {
  41850. name: "Normal",
  41851. height: math.unit(13, "feet"),
  41852. default: true
  41853. },
  41854. {
  41855. name: "Macro",
  41856. height: math.unit(1300, "feet")
  41857. },
  41858. {
  41859. name: "Megamacro",
  41860. height: math.unit(1300, "miles")
  41861. },
  41862. {
  41863. name: "Gigamacro",
  41864. height: math.unit(1300000, "miles")
  41865. },
  41866. ]
  41867. ))
  41868. characterMakers.push(() => makeCharacter(
  41869. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41870. {
  41871. front: {
  41872. height: math.unit(6, "feet"),
  41873. weight: math.unit(150, "lb"),
  41874. name: "Front",
  41875. image: {
  41876. source: "./media/characters/ariz/front.svg",
  41877. extra: 1401/1346,
  41878. bottom: 5/1406
  41879. }
  41880. },
  41881. },
  41882. [
  41883. {
  41884. name: "Normal",
  41885. height: math.unit(10, "feet"),
  41886. default: true
  41887. },
  41888. ]
  41889. ))
  41890. characterMakers.push(() => makeCharacter(
  41891. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41892. {
  41893. front: {
  41894. height: math.unit(6, "feet"),
  41895. weight: math.unit(140, "lb"),
  41896. name: "Front",
  41897. image: {
  41898. source: "./media/characters/sigrun/front.svg",
  41899. extra: 1418/1359,
  41900. bottom: 27/1445
  41901. }
  41902. },
  41903. },
  41904. [
  41905. {
  41906. name: "Macro",
  41907. height: math.unit(35, "feet"),
  41908. default: true
  41909. },
  41910. ]
  41911. ))
  41912. characterMakers.push(() => makeCharacter(
  41913. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41914. {
  41915. front: {
  41916. height: math.unit(6, "feet"),
  41917. weight: math.unit(150, "lb"),
  41918. name: "Front",
  41919. image: {
  41920. source: "./media/characters/numin/front.svg",
  41921. extra: 1433/1388,
  41922. bottom: 12/1445
  41923. }
  41924. },
  41925. },
  41926. [
  41927. {
  41928. name: "Macro",
  41929. height: math.unit(21.5, "km"),
  41930. default: true
  41931. },
  41932. ]
  41933. ))
  41934. characterMakers.push(() => makeCharacter(
  41935. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41936. {
  41937. front: {
  41938. height: math.unit(6, "feet"),
  41939. weight: math.unit(463, "lb"),
  41940. name: "Front",
  41941. image: {
  41942. source: "./media/characters/melwa/front.svg",
  41943. extra: 1307/1248,
  41944. bottom: 93/1400
  41945. }
  41946. },
  41947. },
  41948. [
  41949. {
  41950. name: "Macro",
  41951. height: math.unit(50, "meters"),
  41952. default: true
  41953. },
  41954. ]
  41955. ))
  41956. characterMakers.push(() => makeCharacter(
  41957. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41958. {
  41959. front: {
  41960. height: math.unit(325, "feet"),
  41961. name: "Front",
  41962. image: {
  41963. source: "./media/characters/zorkaiju/front.svg",
  41964. extra: 1955/1814,
  41965. bottom: 40/1995
  41966. }
  41967. },
  41968. frontExtended: {
  41969. height: math.unit(325, "feet"),
  41970. name: "Front (Extended)",
  41971. image: {
  41972. source: "./media/characters/zorkaiju/front-extended.svg",
  41973. extra: 1955/1814,
  41974. bottom: 40/1995
  41975. }
  41976. },
  41977. side: {
  41978. height: math.unit(325, "feet"),
  41979. name: "Side",
  41980. image: {
  41981. source: "./media/characters/zorkaiju/side.svg",
  41982. extra: 1495/1396,
  41983. bottom: 17/1512
  41984. }
  41985. },
  41986. sideExtended: {
  41987. height: math.unit(325, "feet"),
  41988. name: "Side (Extended)",
  41989. image: {
  41990. source: "./media/characters/zorkaiju/side-extended.svg",
  41991. extra: 1495/1396,
  41992. bottom: 17/1512
  41993. }
  41994. },
  41995. back: {
  41996. height: math.unit(325, "feet"),
  41997. name: "Back",
  41998. image: {
  41999. source: "./media/characters/zorkaiju/back.svg",
  42000. extra: 1959/1821,
  42001. bottom: 31/1990
  42002. }
  42003. },
  42004. backExtended: {
  42005. height: math.unit(325, "feet"),
  42006. name: "Back (Extended)",
  42007. image: {
  42008. source: "./media/characters/zorkaiju/back-extended.svg",
  42009. extra: 1959/1821,
  42010. bottom: 31/1990
  42011. }
  42012. },
  42013. hand: {
  42014. height: math.unit(58.4, "feet"),
  42015. name: "Hand",
  42016. image: {
  42017. source: "./media/characters/zorkaiju/hand.svg"
  42018. }
  42019. },
  42020. handExtended: {
  42021. height: math.unit(61.4, "feet"),
  42022. name: "Hand (Extended)",
  42023. image: {
  42024. source: "./media/characters/zorkaiju/hand-extended.svg"
  42025. }
  42026. },
  42027. foot: {
  42028. height: math.unit(95, "feet"),
  42029. name: "Foot",
  42030. image: {
  42031. source: "./media/characters/zorkaiju/foot.svg"
  42032. }
  42033. },
  42034. leftArm: {
  42035. height: math.unit(59, "feet"),
  42036. name: "Left Arm",
  42037. image: {
  42038. source: "./media/characters/zorkaiju/left-arm.svg"
  42039. }
  42040. },
  42041. rightArm: {
  42042. height: math.unit(59, "feet"),
  42043. name: "Right Arm",
  42044. image: {
  42045. source: "./media/characters/zorkaiju/right-arm.svg"
  42046. }
  42047. },
  42048. leftArmExtended: {
  42049. height: math.unit(59 * 1.033546, "feet"),
  42050. name: "Left Arm (Extended)",
  42051. image: {
  42052. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42053. }
  42054. },
  42055. rightArmExtended: {
  42056. height: math.unit(59 * 1.0496, "feet"),
  42057. name: "Right Arm (Extended)",
  42058. image: {
  42059. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42060. }
  42061. },
  42062. tail: {
  42063. height: math.unit(104, "feet"),
  42064. name: "Tail",
  42065. image: {
  42066. source: "./media/characters/zorkaiju/tail.svg"
  42067. }
  42068. },
  42069. tailExtended: {
  42070. height: math.unit(104, "feet"),
  42071. name: "Tail (Extended)",
  42072. image: {
  42073. source: "./media/characters/zorkaiju/tail-extended.svg"
  42074. }
  42075. },
  42076. tailBottom: {
  42077. height: math.unit(104, "feet"),
  42078. name: "Tail Bottom",
  42079. image: {
  42080. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42081. }
  42082. },
  42083. crystal: {
  42084. height: math.unit(27.54, "feet"),
  42085. name: "Crystal",
  42086. image: {
  42087. source: "./media/characters/zorkaiju/crystal.svg"
  42088. }
  42089. },
  42090. },
  42091. [
  42092. {
  42093. name: "Kaiju",
  42094. height: math.unit(325, "feet"),
  42095. default: true
  42096. },
  42097. ]
  42098. ))
  42099. characterMakers.push(() => makeCharacter(
  42100. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42101. {
  42102. front: {
  42103. height: math.unit(6 + 1/12, "feet"),
  42104. weight: math.unit(115, "lb"),
  42105. name: "Front",
  42106. image: {
  42107. source: "./media/characters/bailey-belfry/front.svg",
  42108. extra: 1240/1121,
  42109. bottom: 101/1341
  42110. }
  42111. },
  42112. },
  42113. [
  42114. {
  42115. name: "Normal",
  42116. height: math.unit(6 + 1/12, "feet"),
  42117. default: true
  42118. },
  42119. ]
  42120. ))
  42121. characterMakers.push(() => makeCharacter(
  42122. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42123. {
  42124. side: {
  42125. height: math.unit(4, "meters"),
  42126. weight: math.unit(250, "kg"),
  42127. name: "Side",
  42128. image: {
  42129. source: "./media/characters/blacky/side.svg",
  42130. extra: 1027/919,
  42131. bottom: 43/1070
  42132. }
  42133. },
  42134. maw: {
  42135. height: math.unit(1, "meters"),
  42136. name: "Maw",
  42137. image: {
  42138. source: "./media/characters/blacky/maw.svg"
  42139. }
  42140. },
  42141. paw: {
  42142. height: math.unit(1, "meters"),
  42143. name: "Paw",
  42144. image: {
  42145. source: "./media/characters/blacky/paw.svg"
  42146. }
  42147. },
  42148. },
  42149. [
  42150. {
  42151. name: "Normal",
  42152. height: math.unit(4, "meters"),
  42153. default: true
  42154. },
  42155. ]
  42156. ))
  42157. characterMakers.push(() => makeCharacter(
  42158. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42159. {
  42160. front: {
  42161. height: math.unit(170, "cm"),
  42162. weight: math.unit(66, "kg"),
  42163. name: "Front",
  42164. image: {
  42165. source: "./media/characters/thux-ei/front.svg",
  42166. extra: 1109/1011,
  42167. bottom: 8/1117
  42168. }
  42169. },
  42170. },
  42171. [
  42172. {
  42173. name: "Normal",
  42174. height: math.unit(170, "cm"),
  42175. default: true
  42176. },
  42177. ]
  42178. ))
  42179. characterMakers.push(() => makeCharacter(
  42180. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42181. {
  42182. front: {
  42183. height: math.unit(5, "feet"),
  42184. weight: math.unit(120, "lb"),
  42185. name: "Front",
  42186. image: {
  42187. source: "./media/characters/roxanne-voltaire/front.svg",
  42188. extra: 1901/1779,
  42189. bottom: 53/1954
  42190. }
  42191. },
  42192. },
  42193. [
  42194. {
  42195. name: "Normal",
  42196. height: math.unit(5, "feet"),
  42197. default: true
  42198. },
  42199. {
  42200. name: "Giant",
  42201. height: math.unit(50, "feet")
  42202. },
  42203. {
  42204. name: "Titan",
  42205. height: math.unit(500, "feet")
  42206. },
  42207. {
  42208. name: "Macro",
  42209. height: math.unit(5000, "feet")
  42210. },
  42211. {
  42212. name: "Megamacro",
  42213. height: math.unit(50000, "feet")
  42214. },
  42215. {
  42216. name: "Gigamacro",
  42217. height: math.unit(500000, "feet")
  42218. },
  42219. {
  42220. name: "Teramacro",
  42221. height: math.unit(5e6, "feet")
  42222. },
  42223. ]
  42224. ))
  42225. characterMakers.push(() => makeCharacter(
  42226. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42227. {
  42228. front: {
  42229. height: math.unit(6 + 2/12, "feet"),
  42230. name: "Front",
  42231. image: {
  42232. source: "./media/characters/squeaks/front.svg",
  42233. extra: 1823/1768,
  42234. bottom: 138/1961
  42235. }
  42236. },
  42237. },
  42238. [
  42239. {
  42240. name: "Micro",
  42241. height: math.unit(0.5, "inches")
  42242. },
  42243. {
  42244. name: "Normal",
  42245. height: math.unit(6 + 2/12, "feet"),
  42246. default: true
  42247. },
  42248. {
  42249. name: "Macro",
  42250. height: math.unit(600, "feet")
  42251. },
  42252. ]
  42253. ))
  42254. characterMakers.push(() => makeCharacter(
  42255. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42256. {
  42257. front: {
  42258. height: math.unit(1.72, "meters"),
  42259. name: "Front",
  42260. image: {
  42261. source: "./media/characters/archinger/front.svg",
  42262. extra: 1861/1675,
  42263. bottom: 125/1986
  42264. }
  42265. },
  42266. back: {
  42267. height: math.unit(1.72, "meters"),
  42268. name: "Back",
  42269. image: {
  42270. source: "./media/characters/archinger/back.svg",
  42271. extra: 1844/1701,
  42272. bottom: 104/1948
  42273. }
  42274. },
  42275. cock: {
  42276. height: math.unit(0.59, "feet"),
  42277. name: "Cock",
  42278. image: {
  42279. source: "./media/characters/archinger/cock.svg"
  42280. }
  42281. },
  42282. },
  42283. [
  42284. {
  42285. name: "Normal",
  42286. height: math.unit(1.72, "meters"),
  42287. default: true
  42288. },
  42289. {
  42290. name: "Macro",
  42291. height: math.unit(84, "meters")
  42292. },
  42293. {
  42294. name: "Macro+",
  42295. height: math.unit(112, "meters")
  42296. },
  42297. {
  42298. name: "Macro++",
  42299. height: math.unit(960, "meters")
  42300. },
  42301. {
  42302. name: "Macro+++",
  42303. height: math.unit(4, "km")
  42304. },
  42305. {
  42306. name: "Macro++++",
  42307. height: math.unit(48, "km")
  42308. },
  42309. {
  42310. name: "Macro+++++",
  42311. height: math.unit(4500, "km")
  42312. },
  42313. ]
  42314. ))
  42315. characterMakers.push(() => makeCharacter(
  42316. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42317. {
  42318. front: {
  42319. height: math.unit(5 + 5/12, "feet"),
  42320. name: "Front",
  42321. image: {
  42322. source: "./media/characters/alsnapz/front.svg",
  42323. extra: 1157/1065,
  42324. bottom: 42/1199
  42325. }
  42326. },
  42327. },
  42328. [
  42329. {
  42330. name: "Normal",
  42331. height: math.unit(5 + 5/12, "feet"),
  42332. default: true
  42333. },
  42334. ]
  42335. ))
  42336. characterMakers.push(() => makeCharacter(
  42337. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42338. {
  42339. side: {
  42340. height: math.unit(3.2, "earths"),
  42341. name: "Side",
  42342. image: {
  42343. source: "./media/characters/mag/side.svg",
  42344. extra: 1331/1008,
  42345. bottom: 52/1383
  42346. }
  42347. },
  42348. wing: {
  42349. height: math.unit(1.94, "earths"),
  42350. name: "Wing",
  42351. image: {
  42352. source: "./media/characters/mag/wing.svg"
  42353. }
  42354. },
  42355. dick: {
  42356. height: math.unit(1.8, "earths"),
  42357. name: "Dick",
  42358. image: {
  42359. source: "./media/characters/mag/dick.svg"
  42360. }
  42361. },
  42362. ass: {
  42363. height: math.unit(1.33, "earths"),
  42364. name: "Ass",
  42365. image: {
  42366. source: "./media/characters/mag/ass.svg"
  42367. }
  42368. },
  42369. head: {
  42370. height: math.unit(1.1, "earths"),
  42371. name: "Head",
  42372. image: {
  42373. source: "./media/characters/mag/head.svg"
  42374. }
  42375. },
  42376. maw: {
  42377. height: math.unit(1.62, "earths"),
  42378. name: "Maw",
  42379. image: {
  42380. source: "./media/characters/mag/maw.svg"
  42381. }
  42382. },
  42383. },
  42384. [
  42385. {
  42386. name: "Small",
  42387. height: math.unit(162, "feet")
  42388. },
  42389. {
  42390. name: "Normal",
  42391. height: math.unit(3.2, "earths"),
  42392. default: true
  42393. },
  42394. ]
  42395. ))
  42396. characterMakers.push(() => makeCharacter(
  42397. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42398. {
  42399. front: {
  42400. height: math.unit(512, "feet"),
  42401. weight: math.unit(63509, "tonnes"),
  42402. name: "Front",
  42403. image: {
  42404. source: "./media/characters/vorrel-harroc/front.svg",
  42405. extra: 1075/1063,
  42406. bottom: 62/1137
  42407. }
  42408. },
  42409. },
  42410. [
  42411. {
  42412. name: "Normal",
  42413. height: math.unit(10, "feet")
  42414. },
  42415. {
  42416. name: "Macro",
  42417. height: math.unit(512, "feet"),
  42418. default: true
  42419. },
  42420. {
  42421. name: "Megamacro",
  42422. height: math.unit(256, "miles")
  42423. },
  42424. {
  42425. name: "Gigamacro",
  42426. height: math.unit(4096, "miles")
  42427. },
  42428. ]
  42429. ))
  42430. characterMakers.push(() => makeCharacter(
  42431. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42432. {
  42433. side: {
  42434. height: math.unit(50, "feet"),
  42435. name: "Side",
  42436. image: {
  42437. source: "./media/characters/froimar/side.svg",
  42438. extra: 855/638,
  42439. bottom: 99/954
  42440. }
  42441. },
  42442. },
  42443. [
  42444. {
  42445. name: "Macro",
  42446. height: math.unit(50, "feet"),
  42447. default: true
  42448. },
  42449. ]
  42450. ))
  42451. characterMakers.push(() => makeCharacter(
  42452. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42453. {
  42454. front: {
  42455. height: math.unit(210, "miles"),
  42456. name: "Front",
  42457. image: {
  42458. source: "./media/characters/timothy/front.svg",
  42459. extra: 1007/943,
  42460. bottom: 62/1069
  42461. }
  42462. },
  42463. frontSkirt: {
  42464. height: math.unit(210, "miles"),
  42465. name: "Front (Skirt)",
  42466. image: {
  42467. source: "./media/characters/timothy/front-skirt.svg",
  42468. extra: 1007/943,
  42469. bottom: 62/1069
  42470. }
  42471. },
  42472. frontCoat: {
  42473. height: math.unit(210, "miles"),
  42474. name: "Front (Coat)",
  42475. image: {
  42476. source: "./media/characters/timothy/front-coat.svg",
  42477. extra: 1007/943,
  42478. bottom: 62/1069
  42479. }
  42480. },
  42481. },
  42482. [
  42483. {
  42484. name: "Macro",
  42485. height: math.unit(210, "miles"),
  42486. default: true
  42487. },
  42488. {
  42489. name: "Megamacro",
  42490. height: math.unit(210000, "miles")
  42491. },
  42492. ]
  42493. ))
  42494. characterMakers.push(() => makeCharacter(
  42495. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42496. {
  42497. front: {
  42498. height: math.unit(188, "feet"),
  42499. name: "Front",
  42500. image: {
  42501. source: "./media/characters/pyotr/front.svg",
  42502. extra: 1912/1826,
  42503. bottom: 18/1930
  42504. }
  42505. },
  42506. },
  42507. [
  42508. {
  42509. name: "Macro",
  42510. height: math.unit(188, "feet"),
  42511. default: true
  42512. },
  42513. {
  42514. name: "Megamacro",
  42515. height: math.unit(8, "miles")
  42516. },
  42517. ]
  42518. ))
  42519. characterMakers.push(() => makeCharacter(
  42520. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42521. {
  42522. side: {
  42523. height: math.unit(10, "feet"),
  42524. weight: math.unit(4500, "lb"),
  42525. name: "Side",
  42526. image: {
  42527. source: "./media/characters/ackart/side.svg",
  42528. extra: 1776/1668,
  42529. bottom: 116/1892
  42530. }
  42531. },
  42532. },
  42533. [
  42534. {
  42535. name: "Normal",
  42536. height: math.unit(10, "feet"),
  42537. default: true
  42538. },
  42539. ]
  42540. ))
  42541. characterMakers.push(() => makeCharacter(
  42542. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42543. {
  42544. side: {
  42545. height: math.unit(21, "feet"),
  42546. name: "Side",
  42547. image: {
  42548. source: "./media/characters/nolow/side.svg",
  42549. extra: 1484/1434,
  42550. bottom: 85/1569
  42551. }
  42552. },
  42553. sideErect: {
  42554. height: math.unit(21, "feet"),
  42555. name: "Side-erect",
  42556. image: {
  42557. source: "./media/characters/nolow/side-erect.svg",
  42558. extra: 1484/1434,
  42559. bottom: 85/1569
  42560. }
  42561. },
  42562. },
  42563. [
  42564. {
  42565. name: "Regular",
  42566. height: math.unit(12, "feet")
  42567. },
  42568. {
  42569. name: "Big Chee",
  42570. height: math.unit(21, "feet"),
  42571. default: true
  42572. },
  42573. ]
  42574. ))
  42575. characterMakers.push(() => makeCharacter(
  42576. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42577. {
  42578. front: {
  42579. height: math.unit(7, "feet"),
  42580. weight: math.unit(250, "lb"),
  42581. name: "Front",
  42582. image: {
  42583. source: "./media/characters/nines/front.svg",
  42584. extra: 1741/1607,
  42585. bottom: 41/1782
  42586. }
  42587. },
  42588. side: {
  42589. height: math.unit(7, "feet"),
  42590. weight: math.unit(250, "lb"),
  42591. name: "Side",
  42592. image: {
  42593. source: "./media/characters/nines/side.svg",
  42594. extra: 1854/1735,
  42595. bottom: 93/1947
  42596. }
  42597. },
  42598. back: {
  42599. height: math.unit(7, "feet"),
  42600. weight: math.unit(250, "lb"),
  42601. name: "Back",
  42602. image: {
  42603. source: "./media/characters/nines/back.svg",
  42604. extra: 1748/1615,
  42605. bottom: 20/1768
  42606. }
  42607. },
  42608. },
  42609. [
  42610. {
  42611. name: "Megamacro",
  42612. height: math.unit(99, "km"),
  42613. default: true
  42614. },
  42615. ]
  42616. ))
  42617. characterMakers.push(() => makeCharacter(
  42618. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42619. {
  42620. front: {
  42621. height: math.unit(5 + 10/12, "feet"),
  42622. weight: math.unit(210, "lb"),
  42623. name: "Front",
  42624. image: {
  42625. source: "./media/characters/zenith/front.svg",
  42626. extra: 1531/1452,
  42627. bottom: 198/1729
  42628. }
  42629. },
  42630. back: {
  42631. height: math.unit(5 + 10/12, "feet"),
  42632. weight: math.unit(210, "lb"),
  42633. name: "Back",
  42634. image: {
  42635. source: "./media/characters/zenith/back.svg",
  42636. extra: 1571/1487,
  42637. bottom: 75/1646
  42638. }
  42639. },
  42640. },
  42641. [
  42642. {
  42643. name: "Normal",
  42644. height: math.unit(5 + 10/12, "feet"),
  42645. default: true
  42646. }
  42647. ]
  42648. ))
  42649. characterMakers.push(() => makeCharacter(
  42650. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42651. {
  42652. front: {
  42653. height: math.unit(4, "feet"),
  42654. weight: math.unit(60, "lb"),
  42655. name: "Front",
  42656. image: {
  42657. source: "./media/characters/jasper/front.svg",
  42658. extra: 1450/1379,
  42659. bottom: 19/1469
  42660. }
  42661. },
  42662. },
  42663. [
  42664. {
  42665. name: "Normal",
  42666. height: math.unit(4, "feet"),
  42667. default: true
  42668. },
  42669. ]
  42670. ))
  42671. characterMakers.push(() => makeCharacter(
  42672. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  42673. {
  42674. front: {
  42675. height: math.unit(6 + 5/12, "feet"),
  42676. weight: math.unit(290, "lb"),
  42677. name: "Front",
  42678. image: {
  42679. source: "./media/characters/tiberius-thyben/front.svg",
  42680. extra: 757/739,
  42681. bottom: 39/796
  42682. }
  42683. },
  42684. },
  42685. [
  42686. {
  42687. name: "Micro",
  42688. height: math.unit(1.5, "inches")
  42689. },
  42690. {
  42691. name: "Normal",
  42692. height: math.unit(6 + 5/12, "feet"),
  42693. default: true
  42694. },
  42695. {
  42696. name: "Macro",
  42697. height: math.unit(300, "feet")
  42698. },
  42699. ]
  42700. ))
  42701. characterMakers.push(() => makeCharacter(
  42702. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42703. {
  42704. front: {
  42705. height: math.unit(5 + 6/12, "feet"),
  42706. weight: math.unit(60, "kg"),
  42707. name: "Front",
  42708. image: {
  42709. source: "./media/characters/sabre/front.svg",
  42710. extra: 738/671,
  42711. bottom: 27/765
  42712. }
  42713. },
  42714. },
  42715. [
  42716. {
  42717. name: "Teeny",
  42718. height: math.unit(2, "inches")
  42719. },
  42720. {
  42721. name: "Smol",
  42722. height: math.unit(8, "inches")
  42723. },
  42724. {
  42725. name: "Normal",
  42726. height: math.unit(5 + 6/12, "feet"),
  42727. default: true
  42728. },
  42729. {
  42730. name: "Mini-Macro",
  42731. height: math.unit(15, "feet")
  42732. },
  42733. {
  42734. name: "Macro",
  42735. height: math.unit(50, "feet")
  42736. },
  42737. ]
  42738. ))
  42739. characterMakers.push(() => makeCharacter(
  42740. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42741. {
  42742. front: {
  42743. height: math.unit(6 + 4/12, "feet"),
  42744. weight: math.unit(170, "lb"),
  42745. name: "Front",
  42746. image: {
  42747. source: "./media/characters/charlie/front.svg",
  42748. extra: 1348/1228,
  42749. bottom: 15/1363
  42750. }
  42751. },
  42752. },
  42753. [
  42754. {
  42755. name: "Macro",
  42756. height: math.unit(1700, "meters"),
  42757. default: true
  42758. },
  42759. {
  42760. name: "MegaMacro",
  42761. height: math.unit(20400, "meters")
  42762. },
  42763. ]
  42764. ))
  42765. characterMakers.push(() => makeCharacter(
  42766. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42767. {
  42768. front: {
  42769. height: math.unit(6 + 3/12, "feet"),
  42770. weight: math.unit(185, "lb"),
  42771. name: "Front",
  42772. image: {
  42773. source: "./media/characters/susan-grant/front.svg",
  42774. extra: 1351/1327,
  42775. bottom: 26/1377
  42776. }
  42777. },
  42778. },
  42779. [
  42780. {
  42781. name: "Normal",
  42782. height: math.unit(6 + 3/12, "feet"),
  42783. default: true
  42784. },
  42785. {
  42786. name: "Macro",
  42787. height: math.unit(225, "feet")
  42788. },
  42789. {
  42790. name: "Macro+",
  42791. height: math.unit(900, "feet")
  42792. },
  42793. {
  42794. name: "MegaMacro",
  42795. height: math.unit(14400, "feet")
  42796. },
  42797. ]
  42798. ))
  42799. characterMakers.push(() => makeCharacter(
  42800. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42801. {
  42802. front: {
  42803. height: math.unit(5 + 4/12, "feet"),
  42804. weight: math.unit(110, "lb"),
  42805. name: "Front",
  42806. image: {
  42807. source: "./media/characters/axel-isanov/front.svg",
  42808. extra: 1096/1065,
  42809. bottom: 13/1109
  42810. }
  42811. },
  42812. },
  42813. [
  42814. {
  42815. name: "Normal",
  42816. height: math.unit(5 + 4/12, "feet"),
  42817. default: true
  42818. },
  42819. ]
  42820. ))
  42821. characterMakers.push(() => makeCharacter(
  42822. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42823. {
  42824. front: {
  42825. height: math.unit(9, "feet"),
  42826. weight: math.unit(467, "lb"),
  42827. name: "Front",
  42828. image: {
  42829. source: "./media/characters/necahual/front.svg",
  42830. extra: 920/873,
  42831. bottom: 26/946
  42832. }
  42833. },
  42834. back: {
  42835. height: math.unit(9, "feet"),
  42836. weight: math.unit(467, "lb"),
  42837. name: "Back",
  42838. image: {
  42839. source: "./media/characters/necahual/back.svg",
  42840. extra: 930/884,
  42841. bottom: 16/946
  42842. }
  42843. },
  42844. frontUnderwear: {
  42845. height: math.unit(9, "feet"),
  42846. weight: math.unit(467, "lb"),
  42847. name: "Front (Underwear)",
  42848. image: {
  42849. source: "./media/characters/necahual/front-underwear.svg",
  42850. extra: 920/873,
  42851. bottom: 26/946
  42852. }
  42853. },
  42854. frontDressed: {
  42855. height: math.unit(9, "feet"),
  42856. weight: math.unit(467, "lb"),
  42857. name: "Front (Dressed)",
  42858. image: {
  42859. source: "./media/characters/necahual/front-dressed.svg",
  42860. extra: 920/873,
  42861. bottom: 26/946
  42862. }
  42863. },
  42864. },
  42865. [
  42866. {
  42867. name: "Comprsesed",
  42868. height: math.unit(9, "feet")
  42869. },
  42870. {
  42871. name: "Natural",
  42872. height: math.unit(15, "feet"),
  42873. default: true
  42874. },
  42875. {
  42876. name: "Boosted",
  42877. height: math.unit(50, "feet")
  42878. },
  42879. {
  42880. name: "Boosted+",
  42881. height: math.unit(150, "feet")
  42882. },
  42883. {
  42884. name: "Max",
  42885. height: math.unit(500, "feet")
  42886. },
  42887. ]
  42888. ))
  42889. characterMakers.push(() => makeCharacter(
  42890. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42891. {
  42892. front: {
  42893. height: math.unit(22 + 1/12, "feet"),
  42894. weight: math.unit(3200, "lb"),
  42895. name: "Front",
  42896. image: {
  42897. source: "./media/characters/theo-acacia/front.svg",
  42898. extra: 1796/1741,
  42899. bottom: 83/1879
  42900. }
  42901. },
  42902. frontUnderwear: {
  42903. height: math.unit(22 + 1/12, "feet"),
  42904. weight: math.unit(3200, "lb"),
  42905. name: "Front (Underwear)",
  42906. image: {
  42907. source: "./media/characters/theo-acacia/front-underwear.svg",
  42908. extra: 1796/1741,
  42909. bottom: 83/1879
  42910. }
  42911. },
  42912. frontNude: {
  42913. height: math.unit(22 + 1/12, "feet"),
  42914. weight: math.unit(3200, "lb"),
  42915. name: "Front (Nude)",
  42916. image: {
  42917. source: "./media/characters/theo-acacia/front-nude.svg",
  42918. extra: 1796/1741,
  42919. bottom: 83/1879
  42920. }
  42921. },
  42922. },
  42923. [
  42924. {
  42925. name: "Normal",
  42926. height: math.unit(22 + 1/12, "feet"),
  42927. default: true
  42928. },
  42929. ]
  42930. ))
  42931. characterMakers.push(() => makeCharacter(
  42932. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42933. {
  42934. front: {
  42935. height: math.unit(20, "feet"),
  42936. name: "Front",
  42937. image: {
  42938. source: "./media/characters/astra/front.svg",
  42939. extra: 1850/1714,
  42940. bottom: 106/1956
  42941. }
  42942. },
  42943. frontUndressed: {
  42944. height: math.unit(20, "feet"),
  42945. name: "Front (Undressed)",
  42946. image: {
  42947. source: "./media/characters/astra/front-undressed.svg",
  42948. extra: 1926/1749,
  42949. bottom: 0/1926
  42950. }
  42951. },
  42952. hand: {
  42953. height: math.unit(1.53, "feet"),
  42954. name: "Hand",
  42955. image: {
  42956. source: "./media/characters/astra/hand.svg"
  42957. }
  42958. },
  42959. paw: {
  42960. height: math.unit(1.53, "feet"),
  42961. name: "Paw",
  42962. image: {
  42963. source: "./media/characters/astra/paw.svg"
  42964. }
  42965. },
  42966. },
  42967. [
  42968. {
  42969. name: "Smallest",
  42970. height: math.unit(20, "feet")
  42971. },
  42972. {
  42973. name: "Normal",
  42974. height: math.unit(1e9, "miles"),
  42975. default: true
  42976. },
  42977. {
  42978. name: "Larger",
  42979. height: math.unit(5, "multiverses")
  42980. },
  42981. {
  42982. name: "Largest",
  42983. height: math.unit(1e9, "multiverses")
  42984. },
  42985. ]
  42986. ))
  42987. characterMakers.push(() => makeCharacter(
  42988. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42989. {
  42990. front: {
  42991. height: math.unit(8, "feet"),
  42992. name: "Front",
  42993. image: {
  42994. source: "./media/characters/breanna/front.svg",
  42995. extra: 1912/1632,
  42996. bottom: 33/1945
  42997. }
  42998. },
  42999. },
  43000. [
  43001. {
  43002. name: "Smallest",
  43003. height: math.unit(8, "feet")
  43004. },
  43005. {
  43006. name: "Normal",
  43007. height: math.unit(1, "mile"),
  43008. default: true
  43009. },
  43010. {
  43011. name: "Maximum",
  43012. height: math.unit(1500000000000, "lightyears")
  43013. },
  43014. ]
  43015. ))
  43016. characterMakers.push(() => makeCharacter(
  43017. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43018. {
  43019. front: {
  43020. height: math.unit(5 + 11/12, "feet"),
  43021. weight: math.unit(155, "lb"),
  43022. name: "Front",
  43023. image: {
  43024. source: "./media/characters/cai/front.svg",
  43025. extra: 1823/1702,
  43026. bottom: 32/1855
  43027. }
  43028. },
  43029. back: {
  43030. height: math.unit(5 + 11/12, "feet"),
  43031. weight: math.unit(155, "lb"),
  43032. name: "Back",
  43033. image: {
  43034. source: "./media/characters/cai/back.svg",
  43035. extra: 1809/1708,
  43036. bottom: 31/1840
  43037. }
  43038. },
  43039. },
  43040. [
  43041. {
  43042. name: "Normal",
  43043. height: math.unit(5 + 11/12, "feet"),
  43044. default: true
  43045. },
  43046. {
  43047. name: "Big",
  43048. height: math.unit(15, "feet")
  43049. },
  43050. {
  43051. name: "Macro",
  43052. height: math.unit(200, "feet")
  43053. },
  43054. ]
  43055. ))
  43056. characterMakers.push(() => makeCharacter(
  43057. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43058. {
  43059. front: {
  43060. height: math.unit(5 + 6/12, "feet"),
  43061. weight: math.unit(160, "lb"),
  43062. name: "Front",
  43063. image: {
  43064. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43065. extra: 1227/1174,
  43066. bottom: 37/1264
  43067. }
  43068. },
  43069. },
  43070. [
  43071. {
  43072. name: "Macro",
  43073. height: math.unit(444, "meters"),
  43074. default: true
  43075. },
  43076. ]
  43077. ))
  43078. characterMakers.push(() => makeCharacter(
  43079. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43080. {
  43081. front: {
  43082. height: math.unit(18 + 7/12, "feet"),
  43083. name: "Front",
  43084. image: {
  43085. source: "./media/characters/rex/front.svg",
  43086. extra: 1941/1807,
  43087. bottom: 66/2007
  43088. }
  43089. },
  43090. back: {
  43091. height: math.unit(18 + 7/12, "feet"),
  43092. name: "Back",
  43093. image: {
  43094. source: "./media/characters/rex/back.svg",
  43095. extra: 1937/1822,
  43096. bottom: 42/1979
  43097. }
  43098. },
  43099. boot: {
  43100. height: math.unit(3.45, "feet"),
  43101. name: "Boot",
  43102. image: {
  43103. source: "./media/characters/rex/boot.svg"
  43104. }
  43105. },
  43106. paw: {
  43107. height: math.unit(4.17, "feet"),
  43108. name: "Paw",
  43109. image: {
  43110. source: "./media/characters/rex/paw.svg"
  43111. }
  43112. },
  43113. head: {
  43114. height: math.unit(6.728, "feet"),
  43115. name: "Head",
  43116. image: {
  43117. source: "./media/characters/rex/head.svg"
  43118. }
  43119. },
  43120. },
  43121. [
  43122. {
  43123. name: "Nano",
  43124. height: math.unit(18 + 7/12, "feet")
  43125. },
  43126. {
  43127. name: "Micro",
  43128. height: math.unit(1.5, "megameters")
  43129. },
  43130. {
  43131. name: "Normal",
  43132. height: math.unit(440, "megameters"),
  43133. default: true
  43134. },
  43135. {
  43136. name: "Macro",
  43137. height: math.unit(2.5, "gigameters")
  43138. },
  43139. {
  43140. name: "Gigamacro",
  43141. height: math.unit(2, "galaxies")
  43142. },
  43143. ]
  43144. ))
  43145. characterMakers.push(() => makeCharacter(
  43146. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43147. {
  43148. side: {
  43149. height: math.unit(32, "feet"),
  43150. weight: math.unit(250000, "lb"),
  43151. name: "Side",
  43152. image: {
  43153. source: "./media/characters/silverwing/side.svg",
  43154. extra: 1100/1019,
  43155. bottom: 204/1304
  43156. }
  43157. },
  43158. },
  43159. [
  43160. {
  43161. name: "Normal",
  43162. height: math.unit(32, "feet"),
  43163. default: true
  43164. },
  43165. ]
  43166. ))
  43167. characterMakers.push(() => makeCharacter(
  43168. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43169. {
  43170. front: {
  43171. height: math.unit(6 + 6/12, "feet"),
  43172. weight: math.unit(350, "lb"),
  43173. name: "Front",
  43174. image: {
  43175. source: "./media/characters/tristan-hawthorne/front.svg",
  43176. extra: 1159/1124,
  43177. bottom: 37/1196
  43178. },
  43179. form: "labrador",
  43180. default: true
  43181. },
  43182. skunkFront: {
  43183. height: math.unit(4 + 6/12, "feet"),
  43184. weight: math.unit(120, "lb"),
  43185. name: "Front",
  43186. image: {
  43187. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43188. extra: 1609/1551,
  43189. bottom: 169/1778
  43190. },
  43191. form: "skunk",
  43192. default: true
  43193. },
  43194. },
  43195. [
  43196. {
  43197. name: "Normal",
  43198. height: math.unit(6 + 6/12, "feet"),
  43199. form: "labrador",
  43200. default: true
  43201. },
  43202. {
  43203. name: "Normal",
  43204. height: math.unit(4 + 6/12, "feet"),
  43205. form: "skunk",
  43206. default: true
  43207. },
  43208. ],
  43209. {
  43210. "labrador": {
  43211. name: "Labrador",
  43212. default: true
  43213. },
  43214. "skunk": {
  43215. name: "Skunk"
  43216. }
  43217. }
  43218. ))
  43219. characterMakers.push(() => makeCharacter(
  43220. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43221. {
  43222. front: {
  43223. height: math.unit(5 + 11/12, "feet"),
  43224. weight: math.unit(190, "lb"),
  43225. name: "Front",
  43226. image: {
  43227. source: "./media/characters/mizu/front.svg",
  43228. extra: 1988/1788,
  43229. bottom: 14/2002
  43230. }
  43231. },
  43232. },
  43233. [
  43234. {
  43235. name: "Normal",
  43236. height: math.unit(5 + 11/12, "feet"),
  43237. default: true
  43238. },
  43239. ]
  43240. ))
  43241. characterMakers.push(() => makeCharacter(
  43242. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43243. {
  43244. front: {
  43245. height: math.unit(1.7, "feet"),
  43246. weight: math.unit(50, "lb"),
  43247. name: "Front",
  43248. image: {
  43249. source: "./media/characters/dechroma/front.svg",
  43250. extra: 1095/859,
  43251. bottom: 64/1159
  43252. }
  43253. },
  43254. },
  43255. [
  43256. {
  43257. name: "Normal",
  43258. height: math.unit(1.7, "feet"),
  43259. default: true
  43260. },
  43261. ]
  43262. ))
  43263. characterMakers.push(() => makeCharacter(
  43264. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43265. {
  43266. side: {
  43267. height: math.unit(30, "feet"),
  43268. name: "Side",
  43269. image: {
  43270. source: "./media/characters/veluren-thanazel/side.svg",
  43271. extra: 1611/633,
  43272. bottom: 118/1729
  43273. }
  43274. },
  43275. front: {
  43276. height: math.unit(30, "feet"),
  43277. name: "Front",
  43278. image: {
  43279. source: "./media/characters/veluren-thanazel/front.svg",
  43280. extra: 1486/636,
  43281. bottom: 238/1724
  43282. }
  43283. },
  43284. head: {
  43285. height: math.unit(21.4, "feet"),
  43286. name: "Head",
  43287. image: {
  43288. source: "./media/characters/veluren-thanazel/head.svg"
  43289. }
  43290. },
  43291. genitals: {
  43292. height: math.unit(19.4, "feet"),
  43293. name: "Genitals",
  43294. image: {
  43295. source: "./media/characters/veluren-thanazel/genitals.svg"
  43296. }
  43297. },
  43298. },
  43299. [
  43300. {
  43301. name: "Social",
  43302. height: math.unit(6, "feet")
  43303. },
  43304. {
  43305. name: "Play",
  43306. height: math.unit(12, "feet")
  43307. },
  43308. {
  43309. name: "True",
  43310. height: math.unit(30, "feet"),
  43311. default: true
  43312. },
  43313. ]
  43314. ))
  43315. characterMakers.push(() => makeCharacter(
  43316. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43317. {
  43318. front: {
  43319. height: math.unit(7 + 6/12, "feet"),
  43320. weight: math.unit(500, "kg"),
  43321. name: "Front",
  43322. image: {
  43323. source: "./media/characters/arcturas/front.svg",
  43324. extra: 1700/1500,
  43325. bottom: 145/1845
  43326. }
  43327. },
  43328. },
  43329. [
  43330. {
  43331. name: "Normal",
  43332. height: math.unit(7 + 6/12, "feet"),
  43333. default: true
  43334. },
  43335. ]
  43336. ))
  43337. characterMakers.push(() => makeCharacter(
  43338. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43339. {
  43340. side: {
  43341. height: math.unit(6, "feet"),
  43342. weight: math.unit(2, "tons"),
  43343. name: "Side",
  43344. image: {
  43345. source: "./media/characters/vitaen/side.svg",
  43346. extra: 1157/617,
  43347. bottom: 122/1279
  43348. }
  43349. },
  43350. },
  43351. [
  43352. {
  43353. name: "Normal",
  43354. height: math.unit(6, "feet"),
  43355. default: true
  43356. },
  43357. ]
  43358. ))
  43359. characterMakers.push(() => makeCharacter(
  43360. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43361. {
  43362. front: {
  43363. height: math.unit(19, "feet"),
  43364. name: "Front",
  43365. image: {
  43366. source: "./media/characters/fia-dreamweaver/front.svg",
  43367. extra: 1630/1504,
  43368. bottom: 25/1655
  43369. }
  43370. },
  43371. },
  43372. [
  43373. {
  43374. name: "Normal",
  43375. height: math.unit(19, "feet"),
  43376. default: true
  43377. },
  43378. ]
  43379. ))
  43380. characterMakers.push(() => makeCharacter(
  43381. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43382. {
  43383. front: {
  43384. height: math.unit(5 + 4/12, "feet"),
  43385. name: "Front",
  43386. image: {
  43387. source: "./media/characters/artan/front.svg",
  43388. extra: 1618/1535,
  43389. bottom: 46/1664
  43390. }
  43391. },
  43392. back: {
  43393. height: math.unit(5 + 4/12, "feet"),
  43394. name: "Back",
  43395. image: {
  43396. source: "./media/characters/artan/back.svg",
  43397. extra: 1618/1543,
  43398. bottom: 31/1649
  43399. }
  43400. },
  43401. },
  43402. [
  43403. {
  43404. name: "Normal",
  43405. height: math.unit(5 + 4/12, "feet"),
  43406. default: true
  43407. },
  43408. ]
  43409. ))
  43410. characterMakers.push(() => makeCharacter(
  43411. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43412. {
  43413. side: {
  43414. height: math.unit(182, "cm"),
  43415. weight: math.unit(1000, "lb"),
  43416. name: "Side",
  43417. image: {
  43418. source: "./media/characters/silver-dragon/side.svg",
  43419. extra: 710/287,
  43420. bottom: 88/798
  43421. }
  43422. },
  43423. },
  43424. [
  43425. {
  43426. name: "Normal",
  43427. height: math.unit(182, "cm"),
  43428. default: true
  43429. },
  43430. ]
  43431. ))
  43432. characterMakers.push(() => makeCharacter(
  43433. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43434. {
  43435. side: {
  43436. height: math.unit(6 + 6/12, "feet"),
  43437. weight: math.unit(1.5, "tons"),
  43438. name: "Side",
  43439. image: {
  43440. source: "./media/characters/zephyr/side.svg",
  43441. extra: 1433/586,
  43442. bottom: 109/1542
  43443. }
  43444. },
  43445. },
  43446. [
  43447. {
  43448. name: "Normal",
  43449. height: math.unit(6 + 6/12, "feet"),
  43450. default: true
  43451. },
  43452. ]
  43453. ))
  43454. characterMakers.push(() => makeCharacter(
  43455. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43456. {
  43457. side: {
  43458. height: math.unit(1, "feet"),
  43459. name: "Side",
  43460. image: {
  43461. source: "./media/characters/vixye/side.svg",
  43462. extra: 632/541,
  43463. bottom: 0/632
  43464. }
  43465. },
  43466. },
  43467. [
  43468. {
  43469. name: "Normal",
  43470. height: math.unit(1, "feet"),
  43471. default: true
  43472. },
  43473. {
  43474. name: "True",
  43475. height: math.unit(1e15, "multiverses")
  43476. },
  43477. ]
  43478. ))
  43479. characterMakers.push(() => makeCharacter(
  43480. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43481. {
  43482. front: {
  43483. height: math.unit(8 + 2/12, "feet"),
  43484. weight: math.unit(650, "lb"),
  43485. name: "Front",
  43486. image: {
  43487. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43488. extra: 1174/1137,
  43489. bottom: 82/1256
  43490. }
  43491. },
  43492. back: {
  43493. height: math.unit(8 + 2/12, "feet"),
  43494. weight: math.unit(650, "lb"),
  43495. name: "Back",
  43496. image: {
  43497. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43498. extra: 1204/1157,
  43499. bottom: 46/1250
  43500. }
  43501. },
  43502. },
  43503. [
  43504. {
  43505. name: "Wildform",
  43506. height: math.unit(8 + 2/12, "feet"),
  43507. default: true
  43508. },
  43509. ]
  43510. ))
  43511. characterMakers.push(() => makeCharacter(
  43512. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43513. {
  43514. front: {
  43515. height: math.unit(18, "feet"),
  43516. name: "Front",
  43517. image: {
  43518. source: "./media/characters/cyphin/front.svg",
  43519. extra: 970/886,
  43520. bottom: 42/1012
  43521. }
  43522. },
  43523. back: {
  43524. height: math.unit(18, "feet"),
  43525. name: "Back",
  43526. image: {
  43527. source: "./media/characters/cyphin/back.svg",
  43528. extra: 1009/894,
  43529. bottom: 24/1033
  43530. }
  43531. },
  43532. head: {
  43533. height: math.unit(5.05, "feet"),
  43534. name: "Head",
  43535. image: {
  43536. source: "./media/characters/cyphin/head.svg"
  43537. }
  43538. },
  43539. tailbud: {
  43540. height: math.unit(5, "feet"),
  43541. name: "Tailbud",
  43542. image: {
  43543. source: "./media/characters/cyphin/tailbud.svg"
  43544. }
  43545. },
  43546. },
  43547. [
  43548. ]
  43549. ))
  43550. characterMakers.push(() => makeCharacter(
  43551. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43552. {
  43553. side: {
  43554. height: math.unit(10, "feet"),
  43555. weight: math.unit(6, "tons"),
  43556. name: "Side",
  43557. image: {
  43558. source: "./media/characters/raijin/side.svg",
  43559. extra: 1529/613,
  43560. bottom: 337/1866
  43561. }
  43562. },
  43563. },
  43564. [
  43565. {
  43566. name: "Normal",
  43567. height: math.unit(10, "feet"),
  43568. default: true
  43569. },
  43570. ]
  43571. ))
  43572. characterMakers.push(() => makeCharacter(
  43573. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43574. {
  43575. side: {
  43576. height: math.unit(9, "feet"),
  43577. name: "Side",
  43578. image: {
  43579. source: "./media/characters/nilghais/side.svg",
  43580. extra: 1047/744,
  43581. bottom: 91/1138
  43582. }
  43583. },
  43584. head: {
  43585. height: math.unit(3.14, "feet"),
  43586. name: "Head",
  43587. image: {
  43588. source: "./media/characters/nilghais/head.svg"
  43589. }
  43590. },
  43591. mouth: {
  43592. height: math.unit(4.6, "feet"),
  43593. name: "Mouth",
  43594. image: {
  43595. source: "./media/characters/nilghais/mouth.svg"
  43596. }
  43597. },
  43598. wings: {
  43599. height: math.unit(24, "feet"),
  43600. name: "Wings",
  43601. image: {
  43602. source: "./media/characters/nilghais/wings.svg"
  43603. }
  43604. },
  43605. ass: {
  43606. height: math.unit(6.12, "feet"),
  43607. name: "Ass",
  43608. image: {
  43609. source: "./media/characters/nilghais/ass.svg"
  43610. }
  43611. },
  43612. },
  43613. [
  43614. {
  43615. name: "Normal",
  43616. height: math.unit(9, "feet"),
  43617. default: true
  43618. },
  43619. ]
  43620. ))
  43621. characterMakers.push(() => makeCharacter(
  43622. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43623. {
  43624. regular: {
  43625. height: math.unit(16 + 2/12, "feet"),
  43626. weight: math.unit(2300, "lb"),
  43627. name: "Regular",
  43628. image: {
  43629. source: "./media/characters/zolgar/regular.svg",
  43630. extra: 1246/1004,
  43631. bottom: 124/1370
  43632. }
  43633. },
  43634. boxers: {
  43635. height: math.unit(16 + 2/12, "feet"),
  43636. weight: math.unit(2300, "lb"),
  43637. name: "Boxers",
  43638. image: {
  43639. source: "./media/characters/zolgar/boxers.svg",
  43640. extra: 1246/1004,
  43641. bottom: 124/1370
  43642. }
  43643. },
  43644. armored: {
  43645. height: math.unit(16 + 2/12, "feet"),
  43646. weight: math.unit(2300, "lb"),
  43647. name: "Armored",
  43648. image: {
  43649. source: "./media/characters/zolgar/armored.svg",
  43650. extra: 1246/1004,
  43651. bottom: 124/1370
  43652. }
  43653. },
  43654. goth: {
  43655. height: math.unit(16 + 2/12, "feet"),
  43656. weight: math.unit(2300, "lb"),
  43657. name: "Goth",
  43658. image: {
  43659. source: "./media/characters/zolgar/goth.svg",
  43660. extra: 1246/1004,
  43661. bottom: 124/1370
  43662. }
  43663. },
  43664. },
  43665. [
  43666. {
  43667. name: "Shrunken Down",
  43668. height: math.unit(9 + 2/12, "feet")
  43669. },
  43670. {
  43671. name: "Normal",
  43672. height: math.unit(16 + 2/12, "feet"),
  43673. default: true
  43674. },
  43675. ]
  43676. ))
  43677. characterMakers.push(() => makeCharacter(
  43678. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  43679. {
  43680. front: {
  43681. height: math.unit(6, "feet"),
  43682. weight: math.unit(168, "lb"),
  43683. name: "Front",
  43684. image: {
  43685. source: "./media/characters/luca/front.svg",
  43686. extra: 841/667,
  43687. bottom: 102/943
  43688. }
  43689. },
  43690. },
  43691. [
  43692. {
  43693. name: "Normal",
  43694. height: math.unit(6, "feet"),
  43695. default: true
  43696. },
  43697. ]
  43698. ))
  43699. characterMakers.push(() => makeCharacter(
  43700. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43701. {
  43702. side: {
  43703. height: math.unit(7 + 3/12, "feet"),
  43704. weight: math.unit(312, "lb"),
  43705. name: "Side",
  43706. image: {
  43707. source: "./media/characters/zezo/side.svg",
  43708. extra: 1192/1067,
  43709. bottom: 63/1255
  43710. }
  43711. },
  43712. },
  43713. [
  43714. {
  43715. name: "Normal",
  43716. height: math.unit(7 + 3/12, "feet"),
  43717. default: true
  43718. },
  43719. ]
  43720. ))
  43721. characterMakers.push(() => makeCharacter(
  43722. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43723. {
  43724. front: {
  43725. height: math.unit(5 + 5/12, "feet"),
  43726. weight: math.unit(170, "lb"),
  43727. name: "Front",
  43728. image: {
  43729. source: "./media/characters/mayso/front.svg",
  43730. extra: 1215/1108,
  43731. bottom: 16/1231
  43732. }
  43733. },
  43734. },
  43735. [
  43736. {
  43737. name: "Normal",
  43738. height: math.unit(5 + 5/12, "feet"),
  43739. default: true
  43740. },
  43741. ]
  43742. ))
  43743. characterMakers.push(() => makeCharacter(
  43744. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43745. {
  43746. front: {
  43747. height: math.unit(4 + 3/12, "feet"),
  43748. weight: math.unit(80, "lb"),
  43749. name: "Front",
  43750. image: {
  43751. source: "./media/characters/hess/front.svg",
  43752. extra: 1200/1123,
  43753. bottom: 16/1216
  43754. }
  43755. },
  43756. },
  43757. [
  43758. {
  43759. name: "Normal",
  43760. height: math.unit(4 + 3/12, "feet"),
  43761. default: true
  43762. },
  43763. ]
  43764. ))
  43765. characterMakers.push(() => makeCharacter(
  43766. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43767. {
  43768. front: {
  43769. height: math.unit(1.9, "meters"),
  43770. name: "Front",
  43771. image: {
  43772. source: "./media/characters/ashgar/front.svg",
  43773. extra: 1177/1146,
  43774. bottom: 99/1276
  43775. }
  43776. },
  43777. back: {
  43778. height: math.unit(1.9, "meters"),
  43779. name: "Back",
  43780. image: {
  43781. source: "./media/characters/ashgar/back.svg",
  43782. extra: 1201/1183,
  43783. bottom: 53/1254
  43784. }
  43785. },
  43786. feral: {
  43787. height: math.unit(1.4, "meters"),
  43788. name: "Feral",
  43789. image: {
  43790. source: "./media/characters/ashgar/feral.svg",
  43791. extra: 370/345,
  43792. bottom: 45/415
  43793. }
  43794. },
  43795. },
  43796. [
  43797. {
  43798. name: "Normal",
  43799. height: math.unit(1.9, "meters"),
  43800. default: true
  43801. },
  43802. ]
  43803. ))
  43804. characterMakers.push(() => makeCharacter(
  43805. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43806. {
  43807. regular: {
  43808. height: math.unit(6, "feet"),
  43809. weight: math.unit(220, "lb"),
  43810. name: "Regular",
  43811. image: {
  43812. source: "./media/characters/phillip/regular.svg",
  43813. extra: 1373/1277,
  43814. bottom: 75/1448
  43815. }
  43816. },
  43817. dressed: {
  43818. height: math.unit(6, "feet"),
  43819. weight: math.unit(220, "lb"),
  43820. name: "Dressed",
  43821. image: {
  43822. source: "./media/characters/phillip/dressed.svg",
  43823. extra: 1373/1277,
  43824. bottom: 75/1448
  43825. }
  43826. },
  43827. paw: {
  43828. height: math.unit(1.44, "feet"),
  43829. name: "Paw",
  43830. image: {
  43831. source: "./media/characters/phillip/paw.svg"
  43832. }
  43833. },
  43834. },
  43835. [
  43836. {
  43837. name: "Normal",
  43838. height: math.unit(6, "feet"),
  43839. default: true
  43840. },
  43841. ]
  43842. ))
  43843. characterMakers.push(() => makeCharacter(
  43844. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43845. {
  43846. side: {
  43847. height: math.unit(42, "feet"),
  43848. name: "Side",
  43849. image: {
  43850. source: "./media/characters/uvula/side.svg",
  43851. extra: 683/586,
  43852. bottom: 60/743
  43853. }
  43854. },
  43855. front: {
  43856. height: math.unit(42, "feet"),
  43857. name: "Front",
  43858. image: {
  43859. source: "./media/characters/uvula/front.svg",
  43860. extra: 705/613,
  43861. bottom: 54/759
  43862. }
  43863. },
  43864. maw: {
  43865. height: math.unit(23.5, "feet"),
  43866. name: "Maw",
  43867. image: {
  43868. source: "./media/characters/uvula/maw.svg"
  43869. }
  43870. },
  43871. },
  43872. [
  43873. {
  43874. name: "Original Size",
  43875. height: math.unit(14, "inches")
  43876. },
  43877. {
  43878. name: "Human Size",
  43879. height: math.unit(6, "feet")
  43880. },
  43881. {
  43882. name: "Big",
  43883. height: math.unit(42, "feet"),
  43884. default: true
  43885. },
  43886. {
  43887. name: "Bigger",
  43888. height: math.unit(100, "feet")
  43889. },
  43890. ]
  43891. ))
  43892. characterMakers.push(() => makeCharacter(
  43893. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43894. {
  43895. front: {
  43896. height: math.unit(5 + 11/12, "feet"),
  43897. name: "Front",
  43898. image: {
  43899. source: "./media/characters/lannah/front.svg",
  43900. extra: 1208/1113,
  43901. bottom: 97/1305
  43902. }
  43903. },
  43904. },
  43905. [
  43906. {
  43907. name: "Normal",
  43908. height: math.unit(5 + 11/12, "feet"),
  43909. default: true
  43910. },
  43911. ]
  43912. ))
  43913. characterMakers.push(() => makeCharacter(
  43914. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43915. {
  43916. front: {
  43917. height: math.unit(6 + 3/12, "feet"),
  43918. weight: math.unit(3.5, "tons"),
  43919. name: "Front",
  43920. image: {
  43921. source: "./media/characters/emberflame/front.svg",
  43922. extra: 1198/672,
  43923. bottom: 82/1280
  43924. }
  43925. },
  43926. side: {
  43927. height: math.unit(6 + 3/12, "feet"),
  43928. weight: math.unit(3.5, "tons"),
  43929. name: "Side",
  43930. image: {
  43931. source: "./media/characters/emberflame/side.svg",
  43932. extra: 938/527,
  43933. bottom: 56/994
  43934. }
  43935. },
  43936. },
  43937. [
  43938. {
  43939. name: "Normal",
  43940. height: math.unit(6 + 3/12, "feet"),
  43941. default: true
  43942. },
  43943. ]
  43944. ))
  43945. characterMakers.push(() => makeCharacter(
  43946. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43947. {
  43948. side: {
  43949. height: math.unit(17.5, "feet"),
  43950. weight: math.unit(35, "tons"),
  43951. name: "Side",
  43952. image: {
  43953. source: "./media/characters/sophie-ambrose/side.svg",
  43954. extra: 1573/1242,
  43955. bottom: 71/1644
  43956. }
  43957. },
  43958. maw: {
  43959. height: math.unit(7.4, "feet"),
  43960. name: "Maw",
  43961. image: {
  43962. source: "./media/characters/sophie-ambrose/maw.svg"
  43963. }
  43964. },
  43965. },
  43966. [
  43967. {
  43968. name: "Normal",
  43969. height: math.unit(17.5, "feet"),
  43970. default: true
  43971. },
  43972. ]
  43973. ))
  43974. characterMakers.push(() => makeCharacter(
  43975. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43976. {
  43977. front: {
  43978. height: math.unit(280, "feet"),
  43979. weight: math.unit(550, "tons"),
  43980. name: "Front",
  43981. image: {
  43982. source: "./media/characters/king-mugi/front.svg",
  43983. extra: 1102/947,
  43984. bottom: 104/1206
  43985. }
  43986. },
  43987. },
  43988. [
  43989. {
  43990. name: "King Mugi",
  43991. height: math.unit(280, "feet"),
  43992. default: true
  43993. },
  43994. ]
  43995. ))
  43996. characterMakers.push(() => makeCharacter(
  43997. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43998. {
  43999. front: {
  44000. height: math.unit(64, "meters"),
  44001. name: "Front",
  44002. image: {
  44003. source: "./media/characters/nova-fox/front.svg",
  44004. extra: 1310/1246,
  44005. bottom: 65/1375
  44006. }
  44007. },
  44008. },
  44009. [
  44010. {
  44011. name: "Macro",
  44012. height: math.unit(64, "meters"),
  44013. default: true
  44014. },
  44015. ]
  44016. ))
  44017. characterMakers.push(() => makeCharacter(
  44018. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44019. {
  44020. front: {
  44021. height: math.unit(6 + 3/12, "feet"),
  44022. weight: math.unit(170, "lb"),
  44023. name: "Front",
  44024. image: {
  44025. source: "./media/characters/sam-bat/front.svg",
  44026. extra: 1601/1411,
  44027. bottom: 125/1726
  44028. }
  44029. },
  44030. back: {
  44031. height: math.unit(6 + 3/12, "feet"),
  44032. weight: math.unit(170, "lb"),
  44033. name: "Back",
  44034. image: {
  44035. source: "./media/characters/sam-bat/back.svg",
  44036. extra: 1577/1405,
  44037. bottom: 58/1635
  44038. }
  44039. },
  44040. },
  44041. [
  44042. {
  44043. name: "Normal",
  44044. height: math.unit(6 + 3/12, "feet"),
  44045. default: true
  44046. },
  44047. ]
  44048. ))
  44049. characterMakers.push(() => makeCharacter(
  44050. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44051. {
  44052. front: {
  44053. height: math.unit(59, "feet"),
  44054. weight: math.unit(40000, "lb"),
  44055. name: "Front",
  44056. image: {
  44057. source: "./media/characters/inari/front.svg",
  44058. extra: 1884/1350,
  44059. bottom: 95/1979
  44060. }
  44061. },
  44062. },
  44063. [
  44064. {
  44065. name: "Gigantamax",
  44066. height: math.unit(59, "feet"),
  44067. default: true
  44068. },
  44069. ]
  44070. ))
  44071. characterMakers.push(() => makeCharacter(
  44072. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44073. {
  44074. front: {
  44075. height: math.unit(5 + 8/12, "feet"),
  44076. name: "Front",
  44077. image: {
  44078. source: "./media/characters/elizabeth/front.svg",
  44079. extra: 1395/1298,
  44080. bottom: 54/1449
  44081. }
  44082. },
  44083. mouth: {
  44084. height: math.unit(1.97, "feet"),
  44085. name: "Mouth",
  44086. image: {
  44087. source: "./media/characters/elizabeth/mouth.svg"
  44088. }
  44089. },
  44090. foot: {
  44091. height: math.unit(1.17, "feet"),
  44092. name: "Foot",
  44093. image: {
  44094. source: "./media/characters/elizabeth/foot.svg"
  44095. }
  44096. },
  44097. },
  44098. [
  44099. {
  44100. name: "Normal",
  44101. height: math.unit(5 + 8/12, "feet"),
  44102. default: true
  44103. },
  44104. {
  44105. name: "Minimacro",
  44106. height: math.unit(18, "feet")
  44107. },
  44108. {
  44109. name: "Macro",
  44110. height: math.unit(180, "feet")
  44111. },
  44112. ]
  44113. ))
  44114. characterMakers.push(() => makeCharacter(
  44115. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44116. {
  44117. front: {
  44118. height: math.unit(5 + 2/12, "feet"),
  44119. name: "Front",
  44120. image: {
  44121. source: "./media/characters/october-gossamer/front.svg",
  44122. extra: 505/454,
  44123. bottom: 7/512
  44124. }
  44125. },
  44126. back: {
  44127. height: math.unit(5 + 2/12, "feet"),
  44128. name: "Back",
  44129. image: {
  44130. source: "./media/characters/october-gossamer/back.svg",
  44131. extra: 501/454,
  44132. bottom: 11/512
  44133. }
  44134. },
  44135. },
  44136. [
  44137. {
  44138. name: "Normal",
  44139. height: math.unit(5 + 2/12, "feet"),
  44140. default: true
  44141. },
  44142. ]
  44143. ))
  44144. characterMakers.push(() => makeCharacter(
  44145. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44146. {
  44147. front: {
  44148. height: math.unit(5, "feet"),
  44149. name: "Front",
  44150. image: {
  44151. source: "./media/characters/epiglottis/front.svg",
  44152. extra: 923/849,
  44153. bottom: 17/940
  44154. }
  44155. },
  44156. },
  44157. [
  44158. {
  44159. name: "Original Size",
  44160. height: math.unit(10, "inches")
  44161. },
  44162. {
  44163. name: "Human Size",
  44164. height: math.unit(5, "feet"),
  44165. default: true
  44166. },
  44167. {
  44168. name: "Big",
  44169. height: math.unit(25, "feet")
  44170. },
  44171. {
  44172. name: "Bigger",
  44173. height: math.unit(50, "feet")
  44174. },
  44175. {
  44176. name: "oh lawd",
  44177. height: math.unit(75, "feet")
  44178. },
  44179. ]
  44180. ))
  44181. characterMakers.push(() => makeCharacter(
  44182. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44183. {
  44184. front: {
  44185. height: math.unit(2 + 4/12, "feet"),
  44186. weight: math.unit(60, "lb"),
  44187. name: "Front",
  44188. image: {
  44189. source: "./media/characters/lerm/front.svg",
  44190. extra: 796/790,
  44191. bottom: 79/875
  44192. }
  44193. },
  44194. },
  44195. [
  44196. {
  44197. name: "Normal",
  44198. height: math.unit(2 + 4/12, "feet"),
  44199. default: true
  44200. },
  44201. ]
  44202. ))
  44203. characterMakers.push(() => makeCharacter(
  44204. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44205. {
  44206. front: {
  44207. height: math.unit(5.5, "feet"),
  44208. weight: math.unit(130, "lb"),
  44209. name: "Front",
  44210. image: {
  44211. source: "./media/characters/xena-nebadon/front.svg",
  44212. extra: 1828/1730,
  44213. bottom: 79/1907
  44214. }
  44215. },
  44216. },
  44217. [
  44218. {
  44219. name: "Tiny Puppy",
  44220. height: math.unit(3, "inches")
  44221. },
  44222. {
  44223. name: "Normal",
  44224. height: math.unit(5.5, "feet"),
  44225. default: true
  44226. },
  44227. {
  44228. name: "Lotta Lady",
  44229. height: math.unit(12, "feet")
  44230. },
  44231. {
  44232. name: "Pretty Big",
  44233. height: math.unit(100, "feet")
  44234. },
  44235. {
  44236. name: "Big",
  44237. height: math.unit(500, "feet")
  44238. },
  44239. {
  44240. name: "Skyscraper Toys",
  44241. height: math.unit(2500, "feet")
  44242. },
  44243. {
  44244. name: "Plane Catcher",
  44245. height: math.unit(8, "miles")
  44246. },
  44247. {
  44248. name: "Planet Toys",
  44249. height: math.unit(15, "earths")
  44250. },
  44251. {
  44252. name: "Stardust",
  44253. height: math.unit(0.25, "galaxies")
  44254. },
  44255. {
  44256. name: "Snacks",
  44257. height: math.unit(70, "universes")
  44258. },
  44259. ]
  44260. ))
  44261. characterMakers.push(() => makeCharacter(
  44262. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44263. {
  44264. front: {
  44265. height: math.unit(1.6, "meters"),
  44266. weight: math.unit(60, "kg"),
  44267. name: "Front",
  44268. image: {
  44269. source: "./media/characters/bounty/front.svg",
  44270. extra: 1426/1308,
  44271. bottom: 15/1441
  44272. }
  44273. },
  44274. back: {
  44275. height: math.unit(1.6, "meters"),
  44276. weight: math.unit(60, "kg"),
  44277. name: "Back",
  44278. image: {
  44279. source: "./media/characters/bounty/back.svg",
  44280. extra: 1417/1307,
  44281. bottom: 8/1425
  44282. }
  44283. },
  44284. },
  44285. [
  44286. {
  44287. name: "Normal",
  44288. height: math.unit(1.6, "meters"),
  44289. default: true
  44290. },
  44291. {
  44292. name: "Macro",
  44293. height: math.unit(300, "meters")
  44294. },
  44295. ]
  44296. ))
  44297. characterMakers.push(() => makeCharacter(
  44298. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44299. {
  44300. front: {
  44301. height: math.unit(2 + 8/12, "feet"),
  44302. weight: math.unit(15, "lb"),
  44303. name: "Front",
  44304. image: {
  44305. source: "./media/characters/mochi/front.svg",
  44306. extra: 1022/852,
  44307. bottom: 435/1457
  44308. }
  44309. },
  44310. back: {
  44311. height: math.unit(2 + 8/12, "feet"),
  44312. weight: math.unit(15, "lb"),
  44313. name: "Back",
  44314. image: {
  44315. source: "./media/characters/mochi/back.svg",
  44316. extra: 1335/1119,
  44317. bottom: 39/1374
  44318. }
  44319. },
  44320. bird: {
  44321. height: math.unit(2 + 8/12, "feet"),
  44322. weight: math.unit(15, "lb"),
  44323. name: "Bird",
  44324. image: {
  44325. source: "./media/characters/mochi/bird.svg",
  44326. extra: 1251/1113,
  44327. bottom: 178/1429
  44328. }
  44329. },
  44330. kaiju: {
  44331. height: math.unit(154, "feet"),
  44332. weight: math.unit(1e7, "lb"),
  44333. name: "Kaiju",
  44334. image: {
  44335. source: "./media/characters/mochi/kaiju.svg",
  44336. extra: 460/324,
  44337. bottom: 40/500
  44338. }
  44339. },
  44340. head: {
  44341. height: math.unit(1.21, "feet"),
  44342. name: "Head",
  44343. image: {
  44344. source: "./media/characters/mochi/head.svg"
  44345. }
  44346. },
  44347. alternateTail: {
  44348. height: math.unit(2 + 8/12, "feet"),
  44349. weight: math.unit(45, "lb"),
  44350. name: "Alternate Tail",
  44351. image: {
  44352. source: "./media/characters/mochi/alternate-tail.svg",
  44353. extra: 139/76,
  44354. bottom: 45/184
  44355. }
  44356. },
  44357. },
  44358. [
  44359. {
  44360. name: "Micro",
  44361. height: math.unit(2, "inches")
  44362. },
  44363. {
  44364. name: "Normal",
  44365. height: math.unit(2 + 8/12, "feet"),
  44366. default: true
  44367. },
  44368. {
  44369. name: "Macro",
  44370. height: math.unit(106, "feet")
  44371. },
  44372. ]
  44373. ))
  44374. characterMakers.push(() => makeCharacter(
  44375. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44376. {
  44377. front: {
  44378. height: math.unit(5.67, "feet"),
  44379. weight: math.unit(135, "lb"),
  44380. name: "Front",
  44381. image: {
  44382. source: "./media/characters/sarel/front.svg",
  44383. extra: 865/788,
  44384. bottom: 97/962
  44385. }
  44386. },
  44387. back: {
  44388. height: math.unit(5.67, "feet"),
  44389. weight: math.unit(135, "lb"),
  44390. name: "Back",
  44391. image: {
  44392. source: "./media/characters/sarel/back.svg",
  44393. extra: 857/777,
  44394. bottom: 32/889
  44395. }
  44396. },
  44397. chozoan: {
  44398. height: math.unit(5.67, "feet"),
  44399. weight: math.unit(135, "lb"),
  44400. name: "Chozoan",
  44401. image: {
  44402. source: "./media/characters/sarel/chozoan.svg",
  44403. extra: 865/788,
  44404. bottom: 97/962
  44405. }
  44406. },
  44407. current: {
  44408. height: math.unit(5.67, "feet"),
  44409. weight: math.unit(135, "lb"),
  44410. name: "Current",
  44411. image: {
  44412. source: "./media/characters/sarel/current.svg",
  44413. extra: 865/788,
  44414. bottom: 97/962
  44415. }
  44416. },
  44417. head: {
  44418. height: math.unit(1.77, "feet"),
  44419. name: "Head",
  44420. image: {
  44421. source: "./media/characters/sarel/head.svg"
  44422. }
  44423. },
  44424. claws: {
  44425. height: math.unit(1.8, "feet"),
  44426. name: "Claws",
  44427. image: {
  44428. source: "./media/characters/sarel/claws.svg"
  44429. }
  44430. },
  44431. clawsAlt: {
  44432. height: math.unit(1.8, "feet"),
  44433. name: "Claws-alt",
  44434. image: {
  44435. source: "./media/characters/sarel/claws-alt.svg"
  44436. }
  44437. },
  44438. },
  44439. [
  44440. {
  44441. name: "Normal",
  44442. height: math.unit(5.67, "feet"),
  44443. default: true
  44444. },
  44445. ]
  44446. ))
  44447. characterMakers.push(() => makeCharacter(
  44448. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44449. {
  44450. front: {
  44451. height: math.unit(5500, "feet"),
  44452. name: "Front",
  44453. image: {
  44454. source: "./media/characters/alyonia/front.svg",
  44455. extra: 1200/1135,
  44456. bottom: 29/1229
  44457. }
  44458. },
  44459. back: {
  44460. height: math.unit(5500, "feet"),
  44461. name: "Back",
  44462. image: {
  44463. source: "./media/characters/alyonia/back.svg",
  44464. extra: 1205/1138,
  44465. bottom: 10/1215
  44466. }
  44467. },
  44468. },
  44469. [
  44470. {
  44471. name: "Small",
  44472. height: math.unit(10, "feet")
  44473. },
  44474. {
  44475. name: "Macro",
  44476. height: math.unit(500, "feet")
  44477. },
  44478. {
  44479. name: "Mega Macro",
  44480. height: math.unit(5500, "feet"),
  44481. default: true
  44482. },
  44483. {
  44484. name: "Mega Macro+",
  44485. height: math.unit(500000, "feet")
  44486. },
  44487. {
  44488. name: "Giga Macro",
  44489. height: math.unit(3000, "miles")
  44490. },
  44491. {
  44492. name: "Tera Macro",
  44493. height: math.unit(2.8e6, "miles")
  44494. },
  44495. {
  44496. name: "Galactic",
  44497. height: math.unit(120000, "lightyears")
  44498. },
  44499. ]
  44500. ))
  44501. characterMakers.push(() => makeCharacter(
  44502. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44503. {
  44504. werewolf: {
  44505. height: math.unit(8, "feet"),
  44506. weight: math.unit(425, "lb"),
  44507. name: "Werewolf",
  44508. image: {
  44509. source: "./media/characters/autumn/werewolf.svg",
  44510. extra: 2154/2031,
  44511. bottom: 160/2314
  44512. }
  44513. },
  44514. human: {
  44515. height: math.unit(5 + 8/12, "feet"),
  44516. weight: math.unit(150, "lb"),
  44517. name: "Human",
  44518. image: {
  44519. source: "./media/characters/autumn/human.svg",
  44520. extra: 1200/1149,
  44521. bottom: 30/1230
  44522. }
  44523. },
  44524. },
  44525. [
  44526. {
  44527. name: "Normal",
  44528. height: math.unit(8, "feet"),
  44529. default: true
  44530. },
  44531. ]
  44532. ))
  44533. characterMakers.push(() => makeCharacter(
  44534. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44535. {
  44536. front: {
  44537. height: math.unit(8 + 5/12, "feet"),
  44538. weight: math.unit(825, "lb"),
  44539. name: "Front",
  44540. image: {
  44541. source: "./media/characters/cobalt-charizard/front.svg",
  44542. extra: 1268/1155,
  44543. bottom: 122/1390
  44544. }
  44545. },
  44546. side: {
  44547. height: math.unit(8 + 5/12, "feet"),
  44548. weight: math.unit(825, "lb"),
  44549. name: "Side",
  44550. image: {
  44551. source: "./media/characters/cobalt-charizard/side.svg",
  44552. extra: 1348/1257,
  44553. bottom: 58/1406
  44554. }
  44555. },
  44556. gMax: {
  44557. height: math.unit(134 + 11/12, "feet"),
  44558. name: "G-Max",
  44559. image: {
  44560. source: "./media/characters/cobalt-charizard/g-max.svg",
  44561. extra: 1835/1541,
  44562. bottom: 151/1986
  44563. }
  44564. },
  44565. },
  44566. [
  44567. {
  44568. name: "Normal",
  44569. height: math.unit(8 + 5/12, "feet"),
  44570. default: true
  44571. },
  44572. ]
  44573. ))
  44574. characterMakers.push(() => makeCharacter(
  44575. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44576. {
  44577. front: {
  44578. height: math.unit(6 + 3/12, "feet"),
  44579. weight: math.unit(210, "lb"),
  44580. name: "Front",
  44581. image: {
  44582. source: "./media/characters/stella/front.svg",
  44583. extra: 3549/3335,
  44584. bottom: 51/3600
  44585. }
  44586. },
  44587. },
  44588. [
  44589. {
  44590. name: "Normal",
  44591. height: math.unit(6 + 3/12, "feet"),
  44592. default: true
  44593. },
  44594. ]
  44595. ))
  44596. characterMakers.push(() => makeCharacter(
  44597. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44598. {
  44599. front: {
  44600. height: math.unit(5, "feet"),
  44601. weight: math.unit(90, "lb"),
  44602. name: "Front",
  44603. image: {
  44604. source: "./media/characters/riley-bishop/front.svg",
  44605. extra: 1450/1428,
  44606. bottom: 152/1602
  44607. }
  44608. },
  44609. },
  44610. [
  44611. {
  44612. name: "Normal",
  44613. height: math.unit(5, "feet"),
  44614. default: true
  44615. },
  44616. ]
  44617. ))
  44618. characterMakers.push(() => makeCharacter(
  44619. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44620. {
  44621. side: {
  44622. height: math.unit(8 + 2/12, "feet"),
  44623. weight: math.unit(500, "kg"),
  44624. name: "Side",
  44625. image: {
  44626. source: "./media/characters/theo-arcanine/side.svg",
  44627. extra: 1342/1074,
  44628. bottom: 111/1453
  44629. }
  44630. },
  44631. },
  44632. [
  44633. {
  44634. name: "Normal",
  44635. height: math.unit(8 + 2/12, "feet"),
  44636. default: true
  44637. },
  44638. ]
  44639. ))
  44640. characterMakers.push(() => makeCharacter(
  44641. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44642. {
  44643. front: {
  44644. height: math.unit(4, "feet"),
  44645. name: "Front",
  44646. image: {
  44647. source: "./media/characters/kali/front.svg",
  44648. extra: 1921/1357,
  44649. bottom: 70/1991
  44650. }
  44651. },
  44652. },
  44653. [
  44654. {
  44655. name: "Normal",
  44656. height: math.unit(4, "feet"),
  44657. default: true
  44658. },
  44659. {
  44660. name: "Macro",
  44661. height: math.unit(32, "meters")
  44662. },
  44663. {
  44664. name: "Macro+",
  44665. height: math.unit(150, "meters")
  44666. },
  44667. {
  44668. name: "Megamacro",
  44669. height: math.unit(7500, "meters")
  44670. },
  44671. {
  44672. name: "Megamacro+",
  44673. height: math.unit(80, "kilometers")
  44674. },
  44675. ]
  44676. ))
  44677. characterMakers.push(() => makeCharacter(
  44678. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  44679. {
  44680. side: {
  44681. height: math.unit(5 + 11/12, "feet"),
  44682. weight: math.unit(236, "lb"),
  44683. name: "Side",
  44684. image: {
  44685. source: "./media/characters/gapp/side.svg",
  44686. extra: 775/340,
  44687. bottom: 58/833
  44688. }
  44689. },
  44690. mouth: {
  44691. height: math.unit(2.98, "feet"),
  44692. name: "Mouth",
  44693. image: {
  44694. source: "./media/characters/gapp/mouth.svg"
  44695. }
  44696. },
  44697. },
  44698. [
  44699. {
  44700. name: "Normal",
  44701. height: math.unit(5 + 1/12, "feet"),
  44702. default: true
  44703. },
  44704. ]
  44705. ))
  44706. characterMakers.push(() => makeCharacter(
  44707. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44708. {
  44709. front: {
  44710. height: math.unit(6, "feet"),
  44711. name: "Front",
  44712. image: {
  44713. source: "./media/characters/persephone/front.svg",
  44714. extra: 1895/1717,
  44715. bottom: 96/1991
  44716. }
  44717. },
  44718. back: {
  44719. height: math.unit(6, "feet"),
  44720. name: "Back",
  44721. image: {
  44722. source: "./media/characters/persephone/back.svg",
  44723. extra: 1868/1679,
  44724. bottom: 26/1894
  44725. }
  44726. },
  44727. casual: {
  44728. height: math.unit(6, "feet"),
  44729. name: "Casual",
  44730. image: {
  44731. source: "./media/characters/persephone/casual.svg",
  44732. extra: 1713/1541,
  44733. bottom: 76/1789
  44734. }
  44735. },
  44736. },
  44737. [
  44738. {
  44739. name: "Human Size",
  44740. height: math.unit(6, "feet")
  44741. },
  44742. {
  44743. name: "Big Steppy",
  44744. height: math.unit(600, "meters"),
  44745. default: true
  44746. },
  44747. {
  44748. name: "Galaxy Brain",
  44749. height: math.unit(1, "zettameter")
  44750. },
  44751. ]
  44752. ))
  44753. characterMakers.push(() => makeCharacter(
  44754. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44755. {
  44756. front: {
  44757. height: math.unit(1.85, "meters"),
  44758. name: "Front",
  44759. image: {
  44760. source: "./media/characters/riley-foxthing/front.svg",
  44761. extra: 1495/1354,
  44762. bottom: 122/1617
  44763. }
  44764. },
  44765. frontAlt: {
  44766. height: math.unit(1.85, "meters"),
  44767. name: "Front (Alt)",
  44768. image: {
  44769. source: "./media/characters/riley-foxthing/front-alt.svg",
  44770. extra: 1572/1389,
  44771. bottom: 116/1688
  44772. }
  44773. },
  44774. },
  44775. [
  44776. {
  44777. name: "Normal Sized",
  44778. height: math.unit(1.85, "meters"),
  44779. default: true
  44780. },
  44781. {
  44782. name: "Quite Sizable",
  44783. height: math.unit(5, "meters")
  44784. },
  44785. {
  44786. name: "Rather Large",
  44787. height: math.unit(20, "meters")
  44788. },
  44789. {
  44790. name: "Macro",
  44791. height: math.unit(450, "meters")
  44792. },
  44793. {
  44794. name: "Giga",
  44795. height: math.unit(5, "km")
  44796. },
  44797. ]
  44798. ))
  44799. characterMakers.push(() => makeCharacter(
  44800. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44801. {
  44802. front: {
  44803. height: math.unit(6, "feet"),
  44804. weight: math.unit(200, "lb"),
  44805. name: "Front",
  44806. image: {
  44807. source: "./media/characters/blizzard/front.svg",
  44808. extra: 1136/990,
  44809. bottom: 136/1272
  44810. }
  44811. },
  44812. back: {
  44813. height: math.unit(6, "feet"),
  44814. weight: math.unit(200, "lb"),
  44815. name: "Back",
  44816. image: {
  44817. source: "./media/characters/blizzard/back.svg",
  44818. extra: 1175/1034,
  44819. bottom: 97/1272
  44820. }
  44821. },
  44822. sitting: {
  44823. height: math.unit(3.725, "feet"),
  44824. weight: math.unit(200, "lb"),
  44825. name: "Sitting",
  44826. image: {
  44827. source: "./media/characters/blizzard/sitting.svg",
  44828. extra: 581/485,
  44829. bottom: 90/671
  44830. }
  44831. },
  44832. frontWizard: {
  44833. height: math.unit(7.9, "feet"),
  44834. weight: math.unit(200, "lb"),
  44835. name: "Front (Wizard)",
  44836. image: {
  44837. source: "./media/characters/blizzard/front-wizard.svg"
  44838. }
  44839. },
  44840. backWizard: {
  44841. height: math.unit(7.9, "feet"),
  44842. weight: math.unit(200, "lb"),
  44843. name: "Back (Wizard)",
  44844. image: {
  44845. source: "./media/characters/blizzard/back-wizard.svg"
  44846. }
  44847. },
  44848. frontNsfw: {
  44849. height: math.unit(6, "feet"),
  44850. weight: math.unit(200, "lb"),
  44851. name: "Front (NSFW)",
  44852. image: {
  44853. source: "./media/characters/blizzard/front-nsfw.svg",
  44854. extra: 1136/990,
  44855. bottom: 136/1272
  44856. }
  44857. },
  44858. backNsfw: {
  44859. height: math.unit(6, "feet"),
  44860. weight: math.unit(200, "lb"),
  44861. name: "Back (NSFW)",
  44862. image: {
  44863. source: "./media/characters/blizzard/back-nsfw.svg",
  44864. extra: 1175/1034,
  44865. bottom: 97/1272
  44866. }
  44867. },
  44868. sittingNsfw: {
  44869. height: math.unit(3.725, "feet"),
  44870. weight: math.unit(200, "lb"),
  44871. name: "Sitting (NSFW)",
  44872. image: {
  44873. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44874. extra: 581/485,
  44875. bottom: 90/671
  44876. }
  44877. },
  44878. wizardFrontNsfw: {
  44879. height: math.unit(7.9, "feet"),
  44880. weight: math.unit(200, "lb"),
  44881. name: "Wizard (Front, NSFW)",
  44882. image: {
  44883. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44884. }
  44885. },
  44886. },
  44887. [
  44888. {
  44889. name: "Normal",
  44890. height: math.unit(6, "feet"),
  44891. default: true
  44892. },
  44893. ]
  44894. ))
  44895. characterMakers.push(() => makeCharacter(
  44896. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44897. {
  44898. front: {
  44899. height: math.unit(5 + 2/12, "feet"),
  44900. name: "Front",
  44901. image: {
  44902. source: "./media/characters/lumi/front.svg",
  44903. extra: 1328/1268,
  44904. bottom: 103/1431
  44905. }
  44906. },
  44907. back: {
  44908. height: math.unit(5 + 2/12, "feet"),
  44909. name: "Back",
  44910. image: {
  44911. source: "./media/characters/lumi/back.svg",
  44912. extra: 1381/1327,
  44913. bottom: 43/1424
  44914. }
  44915. },
  44916. },
  44917. [
  44918. {
  44919. name: "Normal",
  44920. height: math.unit(5 + 2/12, "feet"),
  44921. default: true
  44922. },
  44923. ]
  44924. ))
  44925. characterMakers.push(() => makeCharacter(
  44926. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44927. {
  44928. front: {
  44929. height: math.unit(5 + 9/12, "feet"),
  44930. name: "Front",
  44931. image: {
  44932. source: "./media/characters/aliya-cotton/front.svg",
  44933. extra: 577/564,
  44934. bottom: 29/606
  44935. }
  44936. },
  44937. },
  44938. [
  44939. {
  44940. name: "Normal",
  44941. height: math.unit(5 + 9/12, "feet"),
  44942. default: true
  44943. },
  44944. ]
  44945. ))
  44946. characterMakers.push(() => makeCharacter(
  44947. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44948. {
  44949. front: {
  44950. height: math.unit(2.7, "meters"),
  44951. weight: math.unit(25000, "lb"),
  44952. name: "Front",
  44953. image: {
  44954. source: "./media/characters/noah-luxray/front.svg",
  44955. extra: 1644/825,
  44956. bottom: 339/1983
  44957. }
  44958. },
  44959. side: {
  44960. height: math.unit(2.97, "meters"),
  44961. weight: math.unit(25000, "lb"),
  44962. name: "Side",
  44963. image: {
  44964. source: "./media/characters/noah-luxray/side.svg",
  44965. extra: 1319/650,
  44966. bottom: 163/1482
  44967. }
  44968. },
  44969. dick: {
  44970. height: math.unit(7.4, "feet"),
  44971. weight: math.unit(2500, "lb"),
  44972. name: "Dick",
  44973. image: {
  44974. source: "./media/characters/noah-luxray/dick.svg"
  44975. }
  44976. },
  44977. dickAlt: {
  44978. height: math.unit(10.83, "feet"),
  44979. weight: math.unit(2500, "lb"),
  44980. name: "Dick-alt",
  44981. image: {
  44982. source: "./media/characters/noah-luxray/dick-alt.svg"
  44983. }
  44984. },
  44985. },
  44986. [
  44987. {
  44988. name: "BIG",
  44989. height: math.unit(2.7, "meters"),
  44990. default: true
  44991. },
  44992. ]
  44993. ))
  44994. characterMakers.push(() => makeCharacter(
  44995. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44996. {
  44997. standing: {
  44998. height: math.unit(183, "cm"),
  44999. weight: math.unit(68, "kg"),
  45000. name: "Standing",
  45001. image: {
  45002. source: "./media/characters/arion/standing.svg",
  45003. extra: 1869/1807,
  45004. bottom: 93/1962
  45005. }
  45006. },
  45007. reclining: {
  45008. height: math.unit(70.5, "cm"),
  45009. weight: math.unit(68, "lb"),
  45010. name: "Reclining",
  45011. image: {
  45012. source: "./media/characters/arion/reclining.svg",
  45013. extra: 937/870,
  45014. bottom: 63/1000
  45015. }
  45016. },
  45017. },
  45018. [
  45019. {
  45020. name: "Colossus Size, Low",
  45021. height: math.unit(33, "meters"),
  45022. default: true
  45023. },
  45024. {
  45025. name: "Colossus Size, Mid",
  45026. height: math.unit(52, "meters")
  45027. },
  45028. {
  45029. name: "Colossus Size, High",
  45030. height: math.unit(60, "meters")
  45031. },
  45032. {
  45033. name: "Titan Size, Low",
  45034. height: math.unit(91, "meters"),
  45035. },
  45036. {
  45037. name: "Titan Size, Mid",
  45038. height: math.unit(122, "meters")
  45039. },
  45040. {
  45041. name: "Titan Size, High",
  45042. height: math.unit(162, "meters")
  45043. },
  45044. ]
  45045. ))
  45046. characterMakers.push(() => makeCharacter(
  45047. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45048. {
  45049. front: {
  45050. height: math.unit(53, "meters"),
  45051. name: "Front",
  45052. image: {
  45053. source: "./media/characters/stellar-marbey/front.svg",
  45054. extra: 1913/1805,
  45055. bottom: 92/2005
  45056. }
  45057. },
  45058. back: {
  45059. height: math.unit(53, "meters"),
  45060. name: "Back",
  45061. image: {
  45062. source: "./media/characters/stellar-marbey/back.svg",
  45063. extra: 1960/1851,
  45064. bottom: 28/1988
  45065. }
  45066. },
  45067. mouth: {
  45068. height: math.unit(3.5, "meters"),
  45069. name: "Mouth",
  45070. image: {
  45071. source: "./media/characters/stellar-marbey/mouth.svg"
  45072. }
  45073. },
  45074. },
  45075. [
  45076. {
  45077. name: "Macro",
  45078. height: math.unit(53, "meters"),
  45079. default: true
  45080. },
  45081. ]
  45082. ))
  45083. characterMakers.push(() => makeCharacter(
  45084. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45085. {
  45086. front: {
  45087. height: math.unit(8 + 1/12, "feet"),
  45088. weight: math.unit(233, "lb"),
  45089. name: "Front",
  45090. image: {
  45091. source: "./media/characters/matsu/front.svg",
  45092. extra: 832/772,
  45093. bottom: 40/872
  45094. }
  45095. },
  45096. back: {
  45097. height: math.unit(8 + 1/12, "feet"),
  45098. weight: math.unit(233, "lb"),
  45099. name: "Back",
  45100. image: {
  45101. source: "./media/characters/matsu/back.svg",
  45102. extra: 839/780,
  45103. bottom: 47/886
  45104. }
  45105. },
  45106. },
  45107. [
  45108. {
  45109. name: "Normal",
  45110. height: math.unit(8 + 1/12, "feet"),
  45111. default: true
  45112. },
  45113. ]
  45114. ))
  45115. characterMakers.push(() => makeCharacter(
  45116. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45117. {
  45118. front: {
  45119. height: math.unit(4, "feet"),
  45120. weight: math.unit(148, "lb"),
  45121. name: "Front",
  45122. image: {
  45123. source: "./media/characters/thiz/front.svg",
  45124. extra: 1913/1748,
  45125. bottom: 62/1975
  45126. }
  45127. },
  45128. },
  45129. [
  45130. {
  45131. name: "Normal",
  45132. height: math.unit(4, "feet"),
  45133. default: true
  45134. },
  45135. ]
  45136. ))
  45137. characterMakers.push(() => makeCharacter(
  45138. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45139. {
  45140. front: {
  45141. height: math.unit(7 + 6/12, "feet"),
  45142. weight: math.unit(267, "lb"),
  45143. name: "Front",
  45144. image: {
  45145. source: "./media/characters/marcel/front.svg",
  45146. extra: 1221/1096,
  45147. bottom: 76/1297
  45148. }
  45149. },
  45150. },
  45151. [
  45152. {
  45153. name: "Normal",
  45154. height: math.unit(7 + 6/12, "feet"),
  45155. default: true
  45156. },
  45157. ]
  45158. ))
  45159. characterMakers.push(() => makeCharacter(
  45160. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45161. {
  45162. side: {
  45163. height: math.unit(42, "meters"),
  45164. name: "Side",
  45165. image: {
  45166. source: "./media/characters/flake/side.svg",
  45167. extra: 1525/1306,
  45168. bottom: 209/1734
  45169. }
  45170. },
  45171. },
  45172. [
  45173. {
  45174. name: "Normal",
  45175. height: math.unit(42, "meters"),
  45176. default: true
  45177. },
  45178. ]
  45179. ))
  45180. characterMakers.push(() => makeCharacter(
  45181. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45182. {
  45183. dressed: {
  45184. height: math.unit(6 + 4/12, "feet"),
  45185. weight: math.unit(520, "lb"),
  45186. name: "Dressed",
  45187. image: {
  45188. source: "./media/characters/someonne/dressed.svg",
  45189. extra: 1020/1010,
  45190. bottom: 178/1198
  45191. }
  45192. },
  45193. undressed: {
  45194. height: math.unit(6 + 4/12, "feet"),
  45195. weight: math.unit(520, "lb"),
  45196. name: "Undressed",
  45197. image: {
  45198. source: "./media/characters/someonne/undressed.svg",
  45199. extra: 1019/1014,
  45200. bottom: 169/1188
  45201. }
  45202. },
  45203. },
  45204. [
  45205. {
  45206. name: "Normal",
  45207. height: math.unit(6 + 4/12, "feet"),
  45208. default: true
  45209. },
  45210. ]
  45211. ))
  45212. characterMakers.push(() => makeCharacter(
  45213. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45214. {
  45215. front: {
  45216. height: math.unit(3, "feet"),
  45217. weight: math.unit(30, "lb"),
  45218. name: "Front",
  45219. image: {
  45220. source: "./media/characters/till/front.svg",
  45221. extra: 892/823,
  45222. bottom: 55/947
  45223. }
  45224. },
  45225. },
  45226. [
  45227. {
  45228. name: "Normal",
  45229. height: math.unit(3, "feet"),
  45230. default: true
  45231. },
  45232. ]
  45233. ))
  45234. characterMakers.push(() => makeCharacter(
  45235. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45236. {
  45237. front: {
  45238. height: math.unit(9 + 8/12, "feet"),
  45239. weight: math.unit(800, "lb"),
  45240. name: "Front",
  45241. image: {
  45242. source: "./media/characters/sydney-heki/front.svg",
  45243. extra: 1360/1300,
  45244. bottom: 22/1382
  45245. }
  45246. },
  45247. back: {
  45248. height: math.unit(9 + 8/12, "feet"),
  45249. weight: math.unit(800, "lb"),
  45250. name: "Back",
  45251. image: {
  45252. source: "./media/characters/sydney-heki/back.svg",
  45253. extra: 1356/1293,
  45254. bottom: 12/1368
  45255. }
  45256. },
  45257. frontDressed: {
  45258. height: math.unit(9 + 8/12, "feet"),
  45259. weight: math.unit(800, "lb"),
  45260. name: "Front-dressed",
  45261. image: {
  45262. source: "./media/characters/sydney-heki/front-dressed.svg",
  45263. extra: 1360/1300,
  45264. bottom: 22/1382
  45265. }
  45266. },
  45267. },
  45268. [
  45269. {
  45270. name: "Normal",
  45271. height: math.unit(9 + 8/12, "feet"),
  45272. default: true
  45273. },
  45274. {
  45275. name: "Macro",
  45276. height: math.unit(500, "feet")
  45277. },
  45278. {
  45279. name: "Megamacro",
  45280. height: math.unit(3.6, "miles")
  45281. },
  45282. ]
  45283. ))
  45284. characterMakers.push(() => makeCharacter(
  45285. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45286. {
  45287. front: {
  45288. height: math.unit(200, "cm"),
  45289. weight: math.unit(250, "lb"),
  45290. name: "Front",
  45291. image: {
  45292. source: "./media/characters/fowler-karlsson/front.svg",
  45293. extra: 897/845,
  45294. bottom: 123/1020
  45295. }
  45296. },
  45297. back: {
  45298. height: math.unit(200, "cm"),
  45299. weight: math.unit(250, "lb"),
  45300. name: "Back",
  45301. image: {
  45302. source: "./media/characters/fowler-karlsson/back.svg",
  45303. extra: 999/944,
  45304. bottom: 26/1025
  45305. }
  45306. },
  45307. dick: {
  45308. height: math.unit(1.92, "feet"),
  45309. weight: math.unit(150, "lb"),
  45310. name: "Dick",
  45311. image: {
  45312. source: "./media/characters/fowler-karlsson/dick.svg"
  45313. }
  45314. },
  45315. },
  45316. [
  45317. {
  45318. name: "Normal",
  45319. height: math.unit(200, "cm"),
  45320. default: true
  45321. },
  45322. {
  45323. name: "Smaller Macro",
  45324. height: math.unit(90, "m")
  45325. },
  45326. {
  45327. name: "Macro",
  45328. height: math.unit(150, "m")
  45329. },
  45330. {
  45331. name: "Bigger Macro",
  45332. height: math.unit(300, "m")
  45333. },
  45334. ]
  45335. ))
  45336. characterMakers.push(() => makeCharacter(
  45337. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45338. {
  45339. side: {
  45340. height: math.unit(8 + 2/12, "feet"),
  45341. weight: math.unit(1, "tonne"),
  45342. name: "Side",
  45343. image: {
  45344. source: "./media/characters/rylide/side.svg",
  45345. extra: 1318/1034,
  45346. bottom: 106/1424
  45347. }
  45348. },
  45349. sitting: {
  45350. height: math.unit(303, "cm"),
  45351. weight: math.unit(1, "tonne"),
  45352. name: "Sitting",
  45353. image: {
  45354. source: "./media/characters/rylide/sitting.svg",
  45355. extra: 1303/1103,
  45356. bottom: 36/1339
  45357. }
  45358. },
  45359. },
  45360. [
  45361. {
  45362. name: "Normal",
  45363. height: math.unit(8 + 2/12, "feet"),
  45364. default: true
  45365. },
  45366. ]
  45367. ))
  45368. characterMakers.push(() => makeCharacter(
  45369. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45370. {
  45371. front: {
  45372. height: math.unit(5 + 10/12, "feet"),
  45373. weight: math.unit(160, "lb"),
  45374. name: "Front",
  45375. image: {
  45376. source: "./media/characters/pudask/front.svg",
  45377. extra: 1616/1590,
  45378. bottom: 161/1777
  45379. }
  45380. },
  45381. },
  45382. [
  45383. {
  45384. name: "Ferret Height",
  45385. height: math.unit(2 + 5/12, "feet")
  45386. },
  45387. {
  45388. name: "Canon Height",
  45389. height: math.unit(5 + 10/12, "feet"),
  45390. default: true
  45391. },
  45392. ]
  45393. ))
  45394. characterMakers.push(() => makeCharacter(
  45395. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45396. {
  45397. front: {
  45398. height: math.unit(3 + 6/12, "feet"),
  45399. weight: math.unit(60, "lb"),
  45400. name: "Front",
  45401. image: {
  45402. source: "./media/characters/ramita/front.svg",
  45403. extra: 1402/1232,
  45404. bottom: 62/1464
  45405. }
  45406. },
  45407. dressed: {
  45408. height: math.unit(3 + 6/12, "feet"),
  45409. weight: math.unit(60, "lb"),
  45410. name: "Dressed",
  45411. image: {
  45412. source: "./media/characters/ramita/dressed.svg",
  45413. extra: 1534/1249,
  45414. bottom: 50/1584
  45415. }
  45416. },
  45417. },
  45418. [
  45419. {
  45420. name: "Normal",
  45421. height: math.unit(3 + 6/12, "feet"),
  45422. default: true
  45423. },
  45424. ]
  45425. ))
  45426. characterMakers.push(() => makeCharacter(
  45427. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45428. {
  45429. front: {
  45430. height: math.unit(8, "feet"),
  45431. name: "Front",
  45432. image: {
  45433. source: "./media/characters/ark/front.svg",
  45434. extra: 772/693,
  45435. bottom: 45/817
  45436. }
  45437. },
  45438. },
  45439. [
  45440. {
  45441. name: "Normal",
  45442. height: math.unit(8, "feet"),
  45443. default: true
  45444. },
  45445. ]
  45446. ))
  45447. characterMakers.push(() => makeCharacter(
  45448. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45449. {
  45450. front: {
  45451. height: math.unit(6, "feet"),
  45452. weight: math.unit(250, "lb"),
  45453. volume: math.unit(5/8, "gallons"),
  45454. name: "Front",
  45455. image: {
  45456. source: "./media/characters/ludwig-horn/front.svg",
  45457. extra: 1782/1635,
  45458. bottom: 96/1878
  45459. }
  45460. },
  45461. back: {
  45462. height: math.unit(6, "feet"),
  45463. weight: math.unit(250, "lb"),
  45464. volume: math.unit(5/8, "gallons"),
  45465. name: "Back",
  45466. image: {
  45467. source: "./media/characters/ludwig-horn/back.svg",
  45468. extra: 1874/1729,
  45469. bottom: 27/1901
  45470. }
  45471. },
  45472. dick: {
  45473. height: math.unit(1.05, "feet"),
  45474. weight: math.unit(15, "lb"),
  45475. volume: math.unit(5/8, "gallons"),
  45476. name: "Dick",
  45477. image: {
  45478. source: "./media/characters/ludwig-horn/dick.svg"
  45479. }
  45480. },
  45481. },
  45482. [
  45483. {
  45484. name: "Small",
  45485. height: math.unit(6, "feet")
  45486. },
  45487. {
  45488. name: "Typical",
  45489. height: math.unit(12, "feet"),
  45490. default: true
  45491. },
  45492. {
  45493. name: "Building",
  45494. height: math.unit(80, "feet")
  45495. },
  45496. {
  45497. name: "Town",
  45498. height: math.unit(800, "feet")
  45499. },
  45500. {
  45501. name: "Kingdom",
  45502. height: math.unit(80000, "feet")
  45503. },
  45504. {
  45505. name: "Planet",
  45506. height: math.unit(8000000, "feet")
  45507. },
  45508. {
  45509. name: "Universe",
  45510. height: math.unit(8000000000, "feet")
  45511. },
  45512. {
  45513. name: "Transcended",
  45514. height: math.unit(8e27, "feet")
  45515. },
  45516. ]
  45517. ))
  45518. characterMakers.push(() => makeCharacter(
  45519. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45520. {
  45521. front: {
  45522. height: math.unit(5, "feet"),
  45523. weight: math.unit(50, "kg"),
  45524. name: "Front",
  45525. image: {
  45526. source: "./media/characters/biot-avery/front.svg",
  45527. extra: 1295/1232,
  45528. bottom: 86/1381
  45529. }
  45530. },
  45531. },
  45532. [
  45533. {
  45534. name: "Normal",
  45535. height: math.unit(5, "feet"),
  45536. default: true
  45537. },
  45538. ]
  45539. ))
  45540. characterMakers.push(() => makeCharacter(
  45541. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45542. {
  45543. front: {
  45544. height: math.unit(6, "feet"),
  45545. name: "Front",
  45546. image: {
  45547. source: "./media/characters/kitsune-kiro/front.svg",
  45548. extra: 1270/1158,
  45549. bottom: 42/1312
  45550. }
  45551. },
  45552. frontAlt: {
  45553. height: math.unit(6, "feet"),
  45554. name: "Front-alt",
  45555. image: {
  45556. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45557. extra: 1130/1081,
  45558. bottom: 36/1166
  45559. }
  45560. },
  45561. },
  45562. [
  45563. {
  45564. name: "Smol",
  45565. height: math.unit(3, "feet")
  45566. },
  45567. {
  45568. name: "Normal",
  45569. height: math.unit(6, "feet"),
  45570. default: true
  45571. },
  45572. ]
  45573. ))
  45574. characterMakers.push(() => makeCharacter(
  45575. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45576. {
  45577. front: {
  45578. height: math.unit(6, "feet"),
  45579. weight: math.unit(125, "lb"),
  45580. name: "Front",
  45581. image: {
  45582. source: "./media/characters/jack-thatcher/front.svg",
  45583. extra: 1474/1370,
  45584. bottom: 26/1500
  45585. }
  45586. },
  45587. back: {
  45588. height: math.unit(6, "feet"),
  45589. weight: math.unit(125, "lb"),
  45590. name: "Back",
  45591. image: {
  45592. source: "./media/characters/jack-thatcher/back.svg",
  45593. extra: 1489/1384,
  45594. bottom: 18/1507
  45595. }
  45596. },
  45597. },
  45598. [
  45599. {
  45600. name: "Normal",
  45601. height: math.unit(6, "feet"),
  45602. default: true
  45603. },
  45604. {
  45605. name: "Macro",
  45606. height: math.unit(75, "feet")
  45607. },
  45608. {
  45609. name: "Macro-er",
  45610. height: math.unit(250, "feet")
  45611. },
  45612. ]
  45613. ))
  45614. characterMakers.push(() => makeCharacter(
  45615. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45616. {
  45617. front: {
  45618. height: math.unit(7, "feet"),
  45619. weight: math.unit(110, "kg"),
  45620. name: "Front",
  45621. image: {
  45622. source: "./media/characters/max-hyper/front.svg",
  45623. extra: 1969/1881,
  45624. bottom: 49/2018
  45625. }
  45626. },
  45627. },
  45628. [
  45629. {
  45630. name: "Normal",
  45631. height: math.unit(7, "feet"),
  45632. default: true
  45633. },
  45634. ]
  45635. ))
  45636. characterMakers.push(() => makeCharacter(
  45637. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45638. {
  45639. front: {
  45640. height: math.unit(5 + 5/12, "feet"),
  45641. weight: math.unit(160, "lb"),
  45642. name: "Front",
  45643. image: {
  45644. source: "./media/characters/spook/front.svg",
  45645. extra: 794/791,
  45646. bottom: 54/848
  45647. }
  45648. },
  45649. back: {
  45650. height: math.unit(5 + 5/12, "feet"),
  45651. weight: math.unit(160, "lb"),
  45652. name: "Back",
  45653. image: {
  45654. source: "./media/characters/spook/back.svg",
  45655. extra: 812/798,
  45656. bottom: 32/844
  45657. }
  45658. },
  45659. },
  45660. [
  45661. {
  45662. name: "Normal",
  45663. height: math.unit(5 + 5/12, "feet"),
  45664. default: true
  45665. },
  45666. ]
  45667. ))
  45668. characterMakers.push(() => makeCharacter(
  45669. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  45670. {
  45671. front: {
  45672. height: math.unit(18, "feet"),
  45673. name: "Front",
  45674. image: {
  45675. source: "./media/characters/xeaduulix/front.svg",
  45676. extra: 1380/1166,
  45677. bottom: 110/1490
  45678. }
  45679. },
  45680. back: {
  45681. height: math.unit(18, "feet"),
  45682. name: "Back",
  45683. image: {
  45684. source: "./media/characters/xeaduulix/back.svg",
  45685. extra: 1592/1170,
  45686. bottom: 128/1720
  45687. }
  45688. },
  45689. frontNsfw: {
  45690. height: math.unit(18, "feet"),
  45691. name: "Front (NSFW)",
  45692. image: {
  45693. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45694. extra: 1380/1166,
  45695. bottom: 110/1490
  45696. }
  45697. },
  45698. backNsfw: {
  45699. height: math.unit(18, "feet"),
  45700. name: "Back (NSFW)",
  45701. image: {
  45702. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45703. extra: 1592/1170,
  45704. bottom: 128/1720
  45705. }
  45706. },
  45707. },
  45708. [
  45709. {
  45710. name: "Normal",
  45711. height: math.unit(18, "feet"),
  45712. default: true
  45713. },
  45714. ]
  45715. ))
  45716. characterMakers.push(() => makeCharacter(
  45717. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45718. {
  45719. spreadWings: {
  45720. height: math.unit(20, "feet"),
  45721. name: "Spread Wings",
  45722. image: {
  45723. source: "./media/characters/fledge/spread-wings.svg",
  45724. extra: 693/635,
  45725. bottom: 26/719
  45726. }
  45727. },
  45728. front: {
  45729. height: math.unit(20, "feet"),
  45730. name: "Front",
  45731. image: {
  45732. source: "./media/characters/fledge/front.svg",
  45733. extra: 684/637,
  45734. bottom: 18/702
  45735. }
  45736. },
  45737. frontAlt: {
  45738. height: math.unit(20, "feet"),
  45739. name: "Front (Alt)",
  45740. image: {
  45741. source: "./media/characters/fledge/front-alt.svg",
  45742. extra: 708/664,
  45743. bottom: 13/721
  45744. }
  45745. },
  45746. back: {
  45747. height: math.unit(20, "feet"),
  45748. name: "Back",
  45749. image: {
  45750. source: "./media/characters/fledge/back.svg",
  45751. extra: 718/634,
  45752. bottom: 22/740
  45753. }
  45754. },
  45755. head: {
  45756. height: math.unit(5.55, "feet"),
  45757. name: "Head",
  45758. image: {
  45759. source: "./media/characters/fledge/head.svg"
  45760. }
  45761. },
  45762. headAlt: {
  45763. height: math.unit(5.1, "feet"),
  45764. name: "Head (Alt)",
  45765. image: {
  45766. source: "./media/characters/fledge/head-alt.svg"
  45767. }
  45768. },
  45769. },
  45770. [
  45771. {
  45772. name: "Small",
  45773. height: math.unit(6 + 2/12, "feet")
  45774. },
  45775. {
  45776. name: "Big",
  45777. height: math.unit(20, "feet"),
  45778. default: true
  45779. },
  45780. {
  45781. name: "Giant",
  45782. height: math.unit(100, "feet")
  45783. },
  45784. {
  45785. name: "Macro",
  45786. height: math.unit(200, "feet")
  45787. },
  45788. ]
  45789. ))
  45790. characterMakers.push(() => makeCharacter(
  45791. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45792. {
  45793. front: {
  45794. height: math.unit(1, "meter"),
  45795. name: "Front",
  45796. image: {
  45797. source: "./media/characters/atlas-morenai/front.svg",
  45798. extra: 1275/1043,
  45799. bottom: 19/1294
  45800. }
  45801. },
  45802. back: {
  45803. height: math.unit(1, "meter"),
  45804. name: "Back",
  45805. image: {
  45806. source: "./media/characters/atlas-morenai/back.svg",
  45807. extra: 1141/1001,
  45808. bottom: 25/1166
  45809. }
  45810. },
  45811. },
  45812. [
  45813. {
  45814. name: "Normal",
  45815. height: math.unit(1, "meter"),
  45816. default: true
  45817. },
  45818. {
  45819. name: "Magic-Infused",
  45820. height: math.unit(5, "meters")
  45821. },
  45822. ]
  45823. ))
  45824. characterMakers.push(() => makeCharacter(
  45825. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45826. {
  45827. front: {
  45828. height: math.unit(5, "meters"),
  45829. name: "Front",
  45830. image: {
  45831. source: "./media/characters/cintia/front.svg",
  45832. extra: 1312/1228,
  45833. bottom: 38/1350
  45834. }
  45835. },
  45836. back: {
  45837. height: math.unit(5, "meters"),
  45838. name: "Back",
  45839. image: {
  45840. source: "./media/characters/cintia/back.svg",
  45841. extra: 1260/1166,
  45842. bottom: 98/1358
  45843. }
  45844. },
  45845. frontDick: {
  45846. height: math.unit(5, "meters"),
  45847. name: "Front (Dick)",
  45848. image: {
  45849. source: "./media/characters/cintia/front-dick.svg",
  45850. extra: 1312/1228,
  45851. bottom: 38/1350
  45852. }
  45853. },
  45854. backDick: {
  45855. height: math.unit(5, "meters"),
  45856. name: "Back (Dick)",
  45857. image: {
  45858. source: "./media/characters/cintia/back-dick.svg",
  45859. extra: 1260/1166,
  45860. bottom: 98/1358
  45861. }
  45862. },
  45863. bust: {
  45864. height: math.unit(1.97, "meters"),
  45865. name: "Bust",
  45866. image: {
  45867. source: "./media/characters/cintia/bust.svg",
  45868. extra: 617/565,
  45869. bottom: 0/617
  45870. }
  45871. },
  45872. },
  45873. [
  45874. {
  45875. name: "Normal",
  45876. height: math.unit(5, "meters"),
  45877. default: true
  45878. },
  45879. ]
  45880. ))
  45881. characterMakers.push(() => makeCharacter(
  45882. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45883. {
  45884. side: {
  45885. height: math.unit(100, "feet"),
  45886. name: "Side",
  45887. image: {
  45888. source: "./media/characters/denora/side.svg",
  45889. extra: 875/803,
  45890. bottom: 9/884
  45891. }
  45892. },
  45893. },
  45894. [
  45895. {
  45896. name: "Standard",
  45897. height: math.unit(100, "feet"),
  45898. default: true
  45899. },
  45900. {
  45901. name: "Grand",
  45902. height: math.unit(1000, "feet")
  45903. },
  45904. {
  45905. name: "Conquering",
  45906. height: math.unit(10000, "feet")
  45907. },
  45908. ]
  45909. ))
  45910. characterMakers.push(() => makeCharacter(
  45911. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45912. {
  45913. dressed: {
  45914. height: math.unit(8 + 5/12, "feet"),
  45915. weight: math.unit(700, "lb"),
  45916. name: "Dressed",
  45917. image: {
  45918. source: "./media/characters/kiva/dressed.svg",
  45919. extra: 1102/1055,
  45920. bottom: 60/1162
  45921. }
  45922. },
  45923. nude: {
  45924. height: math.unit(8 + 5/12, "feet"),
  45925. weight: math.unit(700, "lb"),
  45926. name: "Nude",
  45927. image: {
  45928. source: "./media/characters/kiva/nude.svg",
  45929. extra: 1102/1055,
  45930. bottom: 60/1162
  45931. }
  45932. },
  45933. },
  45934. [
  45935. {
  45936. name: "Base Height",
  45937. height: math.unit(8 + 5/12, "feet"),
  45938. default: true
  45939. },
  45940. {
  45941. name: "Macro",
  45942. height: math.unit(100, "feet")
  45943. },
  45944. {
  45945. name: "Max",
  45946. height: math.unit(3280, "feet")
  45947. },
  45948. ]
  45949. ))
  45950. characterMakers.push(() => makeCharacter(
  45951. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45952. {
  45953. front: {
  45954. height: math.unit(6 + 8/12, "feet"),
  45955. weight: math.unit(250, "lb"),
  45956. name: "Front",
  45957. image: {
  45958. source: "./media/characters/ztragon/front.svg",
  45959. extra: 1825/1684,
  45960. bottom: 98/1923
  45961. }
  45962. },
  45963. },
  45964. [
  45965. {
  45966. name: "Normal",
  45967. height: math.unit(6 + 8/12, "feet"),
  45968. default: true
  45969. },
  45970. {
  45971. name: "Macro",
  45972. height: math.unit(80, "feet")
  45973. },
  45974. ]
  45975. ))
  45976. characterMakers.push(() => makeCharacter(
  45977. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45978. {
  45979. front: {
  45980. height: math.unit(10.4, "feet"),
  45981. weight: math.unit(2, "tons"),
  45982. name: "Front",
  45983. image: {
  45984. source: "./media/characters/yesenia/front.svg",
  45985. extra: 1479/1474,
  45986. bottom: 233/1712
  45987. }
  45988. },
  45989. },
  45990. [
  45991. {
  45992. name: "Normal",
  45993. height: math.unit(10.4, "feet"),
  45994. default: true
  45995. },
  45996. ]
  45997. ))
  45998. characterMakers.push(() => makeCharacter(
  45999. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46000. {
  46001. normal: {
  46002. height: math.unit(6 + 1/12, "feet"),
  46003. weight: math.unit(180, "lb"),
  46004. name: "Normal",
  46005. image: {
  46006. source: "./media/characters/leanne-lycheborne/normal.svg",
  46007. extra: 1748/1660,
  46008. bottom: 98/1846
  46009. }
  46010. },
  46011. were: {
  46012. height: math.unit(12, "feet"),
  46013. weight: math.unit(1600, "lb"),
  46014. name: "Were",
  46015. image: {
  46016. source: "./media/characters/leanne-lycheborne/were.svg",
  46017. extra: 1485/1432,
  46018. bottom: 66/1551
  46019. }
  46020. },
  46021. },
  46022. [
  46023. {
  46024. name: "Normal",
  46025. height: math.unit(6 + 1/12, "feet"),
  46026. default: true
  46027. },
  46028. ]
  46029. ))
  46030. characterMakers.push(() => makeCharacter(
  46031. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46032. {
  46033. side: {
  46034. height: math.unit(13, "feet"),
  46035. name: "Side",
  46036. image: {
  46037. source: "./media/characters/kira-tyler/side.svg",
  46038. extra: 693/393,
  46039. bottom: 58/751
  46040. }
  46041. },
  46042. },
  46043. [
  46044. {
  46045. name: "Normal",
  46046. height: math.unit(13, "feet"),
  46047. default: true
  46048. },
  46049. ]
  46050. ))
  46051. characterMakers.push(() => makeCharacter(
  46052. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46053. {
  46054. front: {
  46055. height: math.unit(10.3, "feet"),
  46056. weight: math.unit(150, "lb"),
  46057. name: "Front",
  46058. image: {
  46059. source: "./media/characters/blaze/front.svg",
  46060. extra: 1378/1286,
  46061. bottom: 172/1550
  46062. }
  46063. },
  46064. },
  46065. [
  46066. {
  46067. name: "Normal",
  46068. height: math.unit(10.3, "feet"),
  46069. default: true
  46070. },
  46071. ]
  46072. ))
  46073. characterMakers.push(() => makeCharacter(
  46074. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46075. {
  46076. side: {
  46077. height: math.unit(2, "meters"),
  46078. weight: math.unit(400, "kg"),
  46079. name: "Side",
  46080. image: {
  46081. source: "./media/characters/anu/side.svg",
  46082. extra: 506/394,
  46083. bottom: 18/524
  46084. }
  46085. },
  46086. },
  46087. [
  46088. {
  46089. name: "Humanoid",
  46090. height: math.unit(2, "meters")
  46091. },
  46092. {
  46093. name: "Normal",
  46094. height: math.unit(5, "meters"),
  46095. default: true
  46096. },
  46097. ]
  46098. ))
  46099. characterMakers.push(() => makeCharacter(
  46100. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46101. {
  46102. front: {
  46103. height: math.unit(5 + 5/12, "feet"),
  46104. weight: math.unit(170, "lb"),
  46105. name: "Front",
  46106. image: {
  46107. source: "./media/characters/synx-the-lynx/front.svg",
  46108. extra: 1893/1745,
  46109. bottom: 17/1910
  46110. }
  46111. },
  46112. side: {
  46113. height: math.unit(5 + 5/12, "feet"),
  46114. weight: math.unit(170, "lb"),
  46115. name: "Side",
  46116. image: {
  46117. source: "./media/characters/synx-the-lynx/side.svg",
  46118. extra: 1884/1740,
  46119. bottom: 39/1923
  46120. }
  46121. },
  46122. back: {
  46123. height: math.unit(5 + 5/12, "feet"),
  46124. weight: math.unit(170, "lb"),
  46125. name: "Back",
  46126. image: {
  46127. source: "./media/characters/synx-the-lynx/back.svg",
  46128. extra: 1903/1755,
  46129. bottom: 14/1917
  46130. }
  46131. },
  46132. },
  46133. [
  46134. {
  46135. name: "Normal",
  46136. height: math.unit(5 + 5/12, "feet"),
  46137. default: true
  46138. },
  46139. ]
  46140. ))
  46141. characterMakers.push(() => makeCharacter(
  46142. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46143. {
  46144. back: {
  46145. height: math.unit(15, "feet"),
  46146. name: "Back",
  46147. image: {
  46148. source: "./media/characters/nadezda-fex/back.svg",
  46149. extra: 1695/1481,
  46150. bottom: 25/1720
  46151. }
  46152. },
  46153. },
  46154. [
  46155. {
  46156. name: "Normal",
  46157. height: math.unit(15, "feet"),
  46158. default: true
  46159. },
  46160. {
  46161. name: "Macro",
  46162. height: math.unit(2.5, "miles")
  46163. },
  46164. {
  46165. name: "Goddess",
  46166. height: math.unit(2, "multiverses")
  46167. },
  46168. ]
  46169. ))
  46170. characterMakers.push(() => makeCharacter(
  46171. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46172. {
  46173. front: {
  46174. height: math.unit(216, "cm"),
  46175. name: "Front",
  46176. image: {
  46177. source: "./media/characters/lev/front.svg",
  46178. extra: 1728/1670,
  46179. bottom: 82/1810
  46180. }
  46181. },
  46182. back: {
  46183. height: math.unit(216, "cm"),
  46184. name: "Back",
  46185. image: {
  46186. source: "./media/characters/lev/back.svg",
  46187. extra: 1738/1675,
  46188. bottom: 24/1762
  46189. }
  46190. },
  46191. dressed: {
  46192. height: math.unit(216, "cm"),
  46193. name: "Dressed",
  46194. image: {
  46195. source: "./media/characters/lev/dressed.svg",
  46196. extra: 1397/1351,
  46197. bottom: 73/1470
  46198. }
  46199. },
  46200. head: {
  46201. height: math.unit(0.51, "meter"),
  46202. name: "Head",
  46203. image: {
  46204. source: "./media/characters/lev/head.svg"
  46205. }
  46206. },
  46207. },
  46208. [
  46209. {
  46210. name: "Normal",
  46211. height: math.unit(216, "cm"),
  46212. default: true
  46213. },
  46214. {
  46215. name: "Relatively Macro",
  46216. height: math.unit(80, "meters")
  46217. },
  46218. {
  46219. name: "Megamacro",
  46220. height: math.unit(21600, "meters")
  46221. },
  46222. {
  46223. name: "Megamacro+",
  46224. height: math.unit(64800, "meters")
  46225. },
  46226. ]
  46227. ))
  46228. characterMakers.push(() => makeCharacter(
  46229. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46230. {
  46231. front: {
  46232. height: math.unit(2, "meters"),
  46233. weight: math.unit(80, "kg"),
  46234. name: "Front",
  46235. image: {
  46236. source: "./media/characters/moka/front.svg",
  46237. extra: 1337/1255,
  46238. bottom: 58/1395
  46239. }
  46240. },
  46241. },
  46242. [
  46243. {
  46244. name: "Micro",
  46245. height: math.unit(15, "cm")
  46246. },
  46247. {
  46248. name: "Normal",
  46249. height: math.unit(2, "meters"),
  46250. default: true
  46251. },
  46252. {
  46253. name: "Macro",
  46254. height: math.unit(20, "meters"),
  46255. },
  46256. ]
  46257. ))
  46258. characterMakers.push(() => makeCharacter(
  46259. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46260. {
  46261. front: {
  46262. height: math.unit(9, "feet"),
  46263. weight: math.unit(240, "lb"),
  46264. name: "Front",
  46265. image: {
  46266. source: "./media/characters/kuzco/front.svg",
  46267. extra: 1593/1487,
  46268. bottom: 32/1625
  46269. }
  46270. },
  46271. side: {
  46272. height: math.unit(9, "feet"),
  46273. weight: math.unit(240, "lb"),
  46274. name: "Side",
  46275. image: {
  46276. source: "./media/characters/kuzco/side.svg",
  46277. extra: 1575/1485,
  46278. bottom: 30/1605
  46279. }
  46280. },
  46281. back: {
  46282. height: math.unit(9, "feet"),
  46283. weight: math.unit(240, "lb"),
  46284. name: "Back",
  46285. image: {
  46286. source: "./media/characters/kuzco/back.svg",
  46287. extra: 1603/1514,
  46288. bottom: 14/1617
  46289. }
  46290. },
  46291. },
  46292. [
  46293. {
  46294. name: "Normal",
  46295. height: math.unit(9, "feet"),
  46296. default: true
  46297. },
  46298. ]
  46299. ))
  46300. characterMakers.push(() => makeCharacter(
  46301. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46302. {
  46303. side: {
  46304. height: math.unit(2, "meters"),
  46305. weight: math.unit(300, "kg"),
  46306. name: "Side",
  46307. image: {
  46308. source: "./media/characters/ceruleus/side.svg",
  46309. extra: 1068/974,
  46310. bottom: 126/1194
  46311. }
  46312. },
  46313. },
  46314. [
  46315. {
  46316. name: "Normal",
  46317. height: math.unit(16, "meters"),
  46318. default: true
  46319. },
  46320. ]
  46321. ))
  46322. characterMakers.push(() => makeCharacter(
  46323. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46324. {
  46325. front: {
  46326. height: math.unit(9, "feet"),
  46327. weight: math.unit(500, "kg"),
  46328. name: "Front",
  46329. image: {
  46330. source: "./media/characters/acouya/front.svg",
  46331. extra: 1660/1473,
  46332. bottom: 28/1688
  46333. }
  46334. },
  46335. },
  46336. [
  46337. {
  46338. name: "Normal",
  46339. height: math.unit(9, "feet"),
  46340. default: true
  46341. },
  46342. ]
  46343. ))
  46344. characterMakers.push(() => makeCharacter(
  46345. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46346. {
  46347. front: {
  46348. height: math.unit(5 + 6/12, "feet"),
  46349. weight: math.unit(195, "lb"),
  46350. name: "Front",
  46351. image: {
  46352. source: "./media/characters/vant/front.svg",
  46353. extra: 1396/1320,
  46354. bottom: 20/1416
  46355. }
  46356. },
  46357. back: {
  46358. height: math.unit(5 + 6/12, "feet"),
  46359. weight: math.unit(195, "lb"),
  46360. name: "Back",
  46361. image: {
  46362. source: "./media/characters/vant/back.svg",
  46363. extra: 1396/1320,
  46364. bottom: 20/1416
  46365. }
  46366. },
  46367. maw: {
  46368. height: math.unit(0.75, "feet"),
  46369. name: "Maw",
  46370. image: {
  46371. source: "./media/characters/vant/maw.svg"
  46372. }
  46373. },
  46374. paw: {
  46375. height: math.unit(1.07, "feet"),
  46376. name: "Paw",
  46377. image: {
  46378. source: "./media/characters/vant/paw.svg"
  46379. }
  46380. },
  46381. },
  46382. [
  46383. {
  46384. name: "Micro",
  46385. height: math.unit(0.25, "inches")
  46386. },
  46387. {
  46388. name: "Normal",
  46389. height: math.unit(5 + 6/12, "feet"),
  46390. default: true
  46391. },
  46392. {
  46393. name: "Macro",
  46394. height: math.unit(75, "feet")
  46395. },
  46396. ]
  46397. ))
  46398. characterMakers.push(() => makeCharacter(
  46399. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46400. {
  46401. front: {
  46402. height: math.unit(30, "meters"),
  46403. weight: math.unit(363, "tons"),
  46404. name: "Front",
  46405. image: {
  46406. source: "./media/characters/ahra/front.svg",
  46407. extra: 1914/1814,
  46408. bottom: 46/1960
  46409. }
  46410. },
  46411. },
  46412. [
  46413. {
  46414. name: "Macro",
  46415. height: math.unit(30, "meters"),
  46416. default: true
  46417. },
  46418. ]
  46419. ))
  46420. characterMakers.push(() => makeCharacter(
  46421. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46422. {
  46423. undressed: {
  46424. height: math.unit(2, "m"),
  46425. weight: math.unit(250, "kg"),
  46426. name: "Undressed",
  46427. image: {
  46428. source: "./media/characters/coriander/undressed.svg",
  46429. extra: 1757/1606,
  46430. bottom: 107/1864
  46431. }
  46432. },
  46433. dressed: {
  46434. height: math.unit(2, "m"),
  46435. weight: math.unit(250, "kg"),
  46436. name: "Dressed",
  46437. image: {
  46438. source: "./media/characters/coriander/dressed.svg",
  46439. extra: 1757/1606,
  46440. bottom: 107/1864
  46441. }
  46442. },
  46443. },
  46444. [
  46445. {
  46446. name: "Normal",
  46447. height: math.unit(4, "meters"),
  46448. default: true
  46449. },
  46450. {
  46451. name: "XL",
  46452. height: math.unit(6, "meters")
  46453. },
  46454. {
  46455. name: "XXL",
  46456. height: math.unit(8, "meters")
  46457. },
  46458. ]
  46459. ))
  46460. characterMakers.push(() => makeCharacter(
  46461. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46462. {
  46463. front: {
  46464. height: math.unit(6, "feet"),
  46465. name: "Front",
  46466. image: {
  46467. source: "./media/characters/syrinx/front.svg",
  46468. extra: 1557/1259,
  46469. bottom: 171/1728
  46470. }
  46471. },
  46472. },
  46473. [
  46474. {
  46475. name: "Normal",
  46476. height: math.unit(6 + 3/12, "feet"),
  46477. default: true
  46478. },
  46479. ]
  46480. ))
  46481. characterMakers.push(() => makeCharacter(
  46482. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46483. {
  46484. front: {
  46485. height: math.unit(11 + 6/12, "feet"),
  46486. weight: math.unit(1.5, "tons"),
  46487. name: "Front",
  46488. image: {
  46489. source: "./media/characters/bor/front.svg",
  46490. extra: 1189/1109,
  46491. bottom: 170/1359
  46492. }
  46493. },
  46494. },
  46495. [
  46496. {
  46497. name: "Normal",
  46498. height: math.unit(11 + 6/12, "feet"),
  46499. default: true
  46500. },
  46501. {
  46502. name: "Macro",
  46503. height: math.unit(32 + 9/12, "feet")
  46504. },
  46505. ]
  46506. ))
  46507. characterMakers.push(() => makeCharacter(
  46508. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46509. {
  46510. anthro: {
  46511. height: math.unit(9, "feet"),
  46512. weight: math.unit(2076, "lb"),
  46513. name: "Anthro",
  46514. image: {
  46515. source: "./media/characters/abacus/anthro.svg",
  46516. extra: 1540/1494,
  46517. bottom: 233/1773
  46518. }
  46519. },
  46520. pigeon: {
  46521. height: math.unit(1, "feet"),
  46522. name: "Pigeon",
  46523. image: {
  46524. source: "./media/characters/abacus/pigeon.svg",
  46525. extra: 528/525,
  46526. bottom: 46/574
  46527. }
  46528. },
  46529. },
  46530. [
  46531. {
  46532. name: "Normal",
  46533. height: math.unit(9, "feet"),
  46534. default: true
  46535. },
  46536. ]
  46537. ))
  46538. characterMakers.push(() => makeCharacter(
  46539. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46540. {
  46541. side: {
  46542. height: math.unit(6, "feet"),
  46543. name: "Side",
  46544. image: {
  46545. source: "./media/characters/delkhan/side.svg",
  46546. extra: 1884/1786,
  46547. bottom: 308/2192
  46548. }
  46549. },
  46550. head: {
  46551. height: math.unit(3.38, "feet"),
  46552. name: "Head",
  46553. image: {
  46554. source: "./media/characters/delkhan/head.svg"
  46555. }
  46556. },
  46557. },
  46558. [
  46559. {
  46560. name: "Normal",
  46561. height: math.unit(72, "feet"),
  46562. default: true
  46563. },
  46564. {
  46565. name: "Giant",
  46566. height: math.unit(172, "feet")
  46567. },
  46568. ]
  46569. ))
  46570. characterMakers.push(() => makeCharacter(
  46571. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46572. {
  46573. standing: {
  46574. height: math.unit(6, "feet"),
  46575. name: "Standing",
  46576. image: {
  46577. source: "./media/characters/euchidat/standing.svg",
  46578. extra: 1612/1553,
  46579. bottom: 116/1728
  46580. }
  46581. },
  46582. leaning: {
  46583. height: math.unit(6, "feet"),
  46584. name: "Leaning",
  46585. image: {
  46586. source: "./media/characters/euchidat/leaning.svg",
  46587. extra: 1719/1674,
  46588. bottom: 27/1746
  46589. }
  46590. },
  46591. },
  46592. [
  46593. {
  46594. name: "Normal",
  46595. height: math.unit(175, "feet"),
  46596. default: true
  46597. },
  46598. {
  46599. name: "Megamacro",
  46600. height: math.unit(190, "miles")
  46601. },
  46602. {
  46603. name: "Gigamacro",
  46604. height: math.unit(190000, "miles")
  46605. },
  46606. ]
  46607. ))
  46608. characterMakers.push(() => makeCharacter(
  46609. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46610. {
  46611. front: {
  46612. height: math.unit(6, "feet"),
  46613. weight: math.unit(150, "lb"),
  46614. name: "Front",
  46615. image: {
  46616. source: "./media/characters/rebecca-stack/front.svg",
  46617. extra: 1256/1201,
  46618. bottom: 18/1274
  46619. }
  46620. },
  46621. },
  46622. [
  46623. {
  46624. name: "Normal",
  46625. height: math.unit(5 + 8/12, "feet"),
  46626. default: true
  46627. },
  46628. {
  46629. name: "Demolitionist",
  46630. height: math.unit(200, "feet")
  46631. },
  46632. {
  46633. name: "Out of Control",
  46634. height: math.unit(2, "miles")
  46635. },
  46636. {
  46637. name: "Giga",
  46638. height: math.unit(7200, "miles")
  46639. },
  46640. ]
  46641. ))
  46642. characterMakers.push(() => makeCharacter(
  46643. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46644. {
  46645. front: {
  46646. height: math.unit(6, "feet"),
  46647. weight: math.unit(150, "lb"),
  46648. name: "Front",
  46649. image: {
  46650. source: "./media/characters/jenny-cartwright/front.svg",
  46651. extra: 1384/1376,
  46652. bottom: 58/1442
  46653. }
  46654. },
  46655. },
  46656. [
  46657. {
  46658. name: "Normal",
  46659. height: math.unit(6 + 7/12, "feet"),
  46660. default: true
  46661. },
  46662. {
  46663. name: "Librarian",
  46664. height: math.unit(55, "feet")
  46665. },
  46666. {
  46667. name: "Sightseer",
  46668. height: math.unit(50, "miles")
  46669. },
  46670. {
  46671. name: "Giga",
  46672. height: math.unit(30000, "miles")
  46673. },
  46674. ]
  46675. ))
  46676. characterMakers.push(() => makeCharacter(
  46677. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  46678. {
  46679. nude: {
  46680. height: math.unit(8, "feet"),
  46681. weight: math.unit(225, "lb"),
  46682. name: "Nude",
  46683. image: {
  46684. source: "./media/characters/marvy/nude.svg",
  46685. extra: 1900/1683,
  46686. bottom: 89/1989
  46687. }
  46688. },
  46689. dressed: {
  46690. height: math.unit(8, "feet"),
  46691. weight: math.unit(225, "lb"),
  46692. name: "Dressed",
  46693. image: {
  46694. source: "./media/characters/marvy/dressed.svg",
  46695. extra: 1900/1683,
  46696. bottom: 89/1989
  46697. }
  46698. },
  46699. head: {
  46700. height: math.unit(2.85, "feet"),
  46701. name: "Head",
  46702. image: {
  46703. source: "./media/characters/marvy/head.svg"
  46704. }
  46705. },
  46706. },
  46707. [
  46708. {
  46709. name: "Normal",
  46710. height: math.unit(8, "feet"),
  46711. default: true
  46712. },
  46713. ]
  46714. ))
  46715. characterMakers.push(() => makeCharacter(
  46716. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46717. {
  46718. front: {
  46719. height: math.unit(8, "feet"),
  46720. weight: math.unit(250, "lb"),
  46721. name: "Front",
  46722. image: {
  46723. source: "./media/characters/leah/front.svg",
  46724. extra: 1257/1149,
  46725. bottom: 109/1366
  46726. }
  46727. },
  46728. },
  46729. [
  46730. {
  46731. name: "Normal",
  46732. height: math.unit(8, "feet"),
  46733. default: true
  46734. },
  46735. {
  46736. name: "Minimacro",
  46737. height: math.unit(40, "feet")
  46738. },
  46739. {
  46740. name: "Macro",
  46741. height: math.unit(124, "feet")
  46742. },
  46743. {
  46744. name: "Megamacro",
  46745. height: math.unit(850, "feet")
  46746. },
  46747. ]
  46748. ))
  46749. characterMakers.push(() => makeCharacter(
  46750. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46751. {
  46752. side: {
  46753. height: math.unit(13 + 6/12, "feet"),
  46754. weight: math.unit(3200, "lb"),
  46755. name: "Side",
  46756. image: {
  46757. source: "./media/characters/alvir/side.svg",
  46758. extra: 896/589,
  46759. bottom: 26/922
  46760. }
  46761. },
  46762. },
  46763. [
  46764. {
  46765. name: "Normal",
  46766. height: math.unit(13 + 6/12, "feet"),
  46767. default: true
  46768. },
  46769. ]
  46770. ))
  46771. characterMakers.push(() => makeCharacter(
  46772. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46773. {
  46774. front: {
  46775. height: math.unit(5 + 4/12, "feet"),
  46776. weight: math.unit(236, "lb"),
  46777. name: "Front",
  46778. image: {
  46779. source: "./media/characters/zaina-khalil/front.svg",
  46780. extra: 1533/1485,
  46781. bottom: 94/1627
  46782. }
  46783. },
  46784. side: {
  46785. height: math.unit(5 + 4/12, "feet"),
  46786. weight: math.unit(236, "lb"),
  46787. name: "Side",
  46788. image: {
  46789. source: "./media/characters/zaina-khalil/side.svg",
  46790. extra: 1537/1498,
  46791. bottom: 66/1603
  46792. }
  46793. },
  46794. back: {
  46795. height: math.unit(5 + 4/12, "feet"),
  46796. weight: math.unit(236, "lb"),
  46797. name: "Back",
  46798. image: {
  46799. source: "./media/characters/zaina-khalil/back.svg",
  46800. extra: 1546/1494,
  46801. bottom: 89/1635
  46802. }
  46803. },
  46804. },
  46805. [
  46806. {
  46807. name: "Normal",
  46808. height: math.unit(5 + 4/12, "feet"),
  46809. default: true
  46810. },
  46811. ]
  46812. ))
  46813. characterMakers.push(() => makeCharacter(
  46814. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46815. {
  46816. side: {
  46817. height: math.unit(12, "feet"),
  46818. weight: math.unit(4000, "lb"),
  46819. name: "Side",
  46820. image: {
  46821. source: "./media/characters/terry/side.svg",
  46822. extra: 1518/1439,
  46823. bottom: 149/1667
  46824. }
  46825. },
  46826. },
  46827. [
  46828. {
  46829. name: "Normal",
  46830. height: math.unit(12, "feet"),
  46831. default: true
  46832. },
  46833. ]
  46834. ))
  46835. characterMakers.push(() => makeCharacter(
  46836. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46837. {
  46838. front: {
  46839. height: math.unit(12, "feet"),
  46840. weight: math.unit(1500, "lb"),
  46841. name: "Front",
  46842. image: {
  46843. source: "./media/characters/kahea/front.svg",
  46844. extra: 1722/1617,
  46845. bottom: 179/1901
  46846. }
  46847. },
  46848. },
  46849. [
  46850. {
  46851. name: "Normal",
  46852. height: math.unit(12, "feet"),
  46853. default: true
  46854. },
  46855. ]
  46856. ))
  46857. characterMakers.push(() => makeCharacter(
  46858. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46859. {
  46860. demonFront: {
  46861. height: math.unit(36, "feet"),
  46862. name: "Front",
  46863. image: {
  46864. source: "./media/characters/alex-xuria/demon-front.svg",
  46865. extra: 1705/1673,
  46866. bottom: 198/1903
  46867. },
  46868. form: "demon",
  46869. default: true
  46870. },
  46871. demonBack: {
  46872. height: math.unit(36, "feet"),
  46873. name: "Back",
  46874. image: {
  46875. source: "./media/characters/alex-xuria/demon-back.svg",
  46876. extra: 1725/1693,
  46877. bottom: 70/1795
  46878. },
  46879. form: "demon"
  46880. },
  46881. demonHead: {
  46882. height: math.unit(2.14, "meters"),
  46883. name: "Head",
  46884. image: {
  46885. source: "./media/characters/alex-xuria/demon-head.svg"
  46886. },
  46887. form: "demon"
  46888. },
  46889. demonHand: {
  46890. height: math.unit(1.61, "meters"),
  46891. name: "Hand",
  46892. image: {
  46893. source: "./media/characters/alex-xuria/demon-hand.svg"
  46894. },
  46895. form: "demon"
  46896. },
  46897. demonPaw: {
  46898. height: math.unit(1.35, "meters"),
  46899. name: "Paw",
  46900. image: {
  46901. source: "./media/characters/alex-xuria/demon-paw.svg"
  46902. },
  46903. form: "demon"
  46904. },
  46905. demonFoot: {
  46906. height: math.unit(2.2, "meters"),
  46907. name: "Foot",
  46908. image: {
  46909. source: "./media/characters/alex-xuria/demon-foot.svg"
  46910. },
  46911. form: "demon"
  46912. },
  46913. demonCock: {
  46914. height: math.unit(1.74, "meters"),
  46915. name: "Cock",
  46916. image: {
  46917. source: "./media/characters/alex-xuria/demon-cock.svg"
  46918. },
  46919. form: "demon"
  46920. },
  46921. demonTailClosed: {
  46922. height: math.unit(1.47, "meters"),
  46923. name: "Tail (Closed)",
  46924. image: {
  46925. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46926. },
  46927. form: "demon"
  46928. },
  46929. demonTailOpen: {
  46930. height: math.unit(2.85, "meters"),
  46931. name: "Tail (Open)",
  46932. image: {
  46933. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46934. },
  46935. form: "demon"
  46936. },
  46937. incubusFront: {
  46938. height: math.unit(12, "feet"),
  46939. name: "Front",
  46940. image: {
  46941. source: "./media/characters/alex-xuria/incubus-front.svg",
  46942. extra: 1754/1677,
  46943. bottom: 125/1879
  46944. },
  46945. form: "incubus",
  46946. default: true
  46947. },
  46948. incubusBack: {
  46949. height: math.unit(12, "feet"),
  46950. name: "Back",
  46951. image: {
  46952. source: "./media/characters/alex-xuria/incubus-back.svg",
  46953. extra: 1702/1647,
  46954. bottom: 30/1732
  46955. },
  46956. form: "incubus"
  46957. },
  46958. incubusHead: {
  46959. height: math.unit(3.45, "feet"),
  46960. name: "Head",
  46961. image: {
  46962. source: "./media/characters/alex-xuria/incubus-head.svg"
  46963. },
  46964. form: "incubus"
  46965. },
  46966. rabbitFront: {
  46967. height: math.unit(6, "feet"),
  46968. name: "Front",
  46969. image: {
  46970. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46971. extra: 1369/1349,
  46972. bottom: 45/1414
  46973. },
  46974. form: "rabbit",
  46975. default: true
  46976. },
  46977. rabbitSide: {
  46978. height: math.unit(6, "feet"),
  46979. name: "Side",
  46980. image: {
  46981. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46982. extra: 1370/1356,
  46983. bottom: 37/1407
  46984. },
  46985. form: "rabbit"
  46986. },
  46987. rabbitBack: {
  46988. height: math.unit(6, "feet"),
  46989. name: "Back",
  46990. image: {
  46991. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46992. extra: 1375/1358,
  46993. bottom: 43/1418
  46994. },
  46995. form: "rabbit"
  46996. },
  46997. },
  46998. [
  46999. {
  47000. name: "Normal",
  47001. height: math.unit(6, "feet"),
  47002. default: true,
  47003. form: "rabbit"
  47004. },
  47005. {
  47006. name: "Incubus",
  47007. height: math.unit(12, "feet"),
  47008. default: true,
  47009. form: "incubus"
  47010. },
  47011. {
  47012. name: "Demon",
  47013. height: math.unit(36, "feet"),
  47014. default: true,
  47015. form: "demon"
  47016. }
  47017. ],
  47018. {
  47019. "demon": {
  47020. name: "Demon",
  47021. default: true
  47022. },
  47023. "incubus": {
  47024. name: "Incubus",
  47025. },
  47026. "rabbit": {
  47027. name: "Rabbit"
  47028. }
  47029. }
  47030. ))
  47031. characterMakers.push(() => makeCharacter(
  47032. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47033. {
  47034. front: {
  47035. height: math.unit(7 + 5/12, "feet"),
  47036. weight: math.unit(510, "lb"),
  47037. name: "Front",
  47038. image: {
  47039. source: "./media/characters/syrup/front.svg",
  47040. extra: 932/916,
  47041. bottom: 26/958
  47042. }
  47043. },
  47044. },
  47045. [
  47046. {
  47047. name: "Normal",
  47048. height: math.unit(7 + 5/12, "feet"),
  47049. default: true
  47050. },
  47051. {
  47052. name: "Big",
  47053. height: math.unit(50, "feet")
  47054. },
  47055. {
  47056. name: "Macro",
  47057. height: math.unit(300, "feet")
  47058. },
  47059. {
  47060. name: "Megamacro",
  47061. height: math.unit(1, "mile")
  47062. },
  47063. ]
  47064. ))
  47065. characterMakers.push(() => makeCharacter(
  47066. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47067. {
  47068. front: {
  47069. height: math.unit(6 + 9/12, "feet"),
  47070. name: "Front",
  47071. image: {
  47072. source: "./media/characters/zeimne/front.svg",
  47073. extra: 1969/1806,
  47074. bottom: 53/2022
  47075. }
  47076. },
  47077. },
  47078. [
  47079. {
  47080. name: "Normal",
  47081. height: math.unit(6 + 9/12, "feet"),
  47082. default: true
  47083. },
  47084. {
  47085. name: "Giant",
  47086. height: math.unit(550, "feet")
  47087. },
  47088. {
  47089. name: "Mega",
  47090. height: math.unit(3, "miles")
  47091. },
  47092. {
  47093. name: "Giga",
  47094. height: math.unit(250, "miles")
  47095. },
  47096. {
  47097. name: "Tera",
  47098. height: math.unit(1, "AU")
  47099. },
  47100. ]
  47101. ))
  47102. characterMakers.push(() => makeCharacter(
  47103. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47104. {
  47105. front: {
  47106. height: math.unit(5 + 2/12, "feet"),
  47107. name: "Front",
  47108. image: {
  47109. source: "./media/characters/grar/front.svg",
  47110. extra: 1331/1119,
  47111. bottom: 60/1391
  47112. }
  47113. },
  47114. back: {
  47115. height: math.unit(5 + 2/12, "feet"),
  47116. name: "Back",
  47117. image: {
  47118. source: "./media/characters/grar/back.svg",
  47119. extra: 1385/1169,
  47120. bottom: 23/1408
  47121. }
  47122. },
  47123. },
  47124. [
  47125. {
  47126. name: "Normal",
  47127. height: math.unit(5 + 2/12, "feet"),
  47128. default: true
  47129. },
  47130. ]
  47131. ))
  47132. characterMakers.push(() => makeCharacter(
  47133. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47134. {
  47135. front: {
  47136. height: math.unit(13 + 7/12, "feet"),
  47137. weight: math.unit(2200, "lb"),
  47138. name: "Front",
  47139. image: {
  47140. source: "./media/characters/endraya/front.svg",
  47141. extra: 1289/1215,
  47142. bottom: 50/1339
  47143. }
  47144. },
  47145. nude: {
  47146. height: math.unit(13 + 7/12, "feet"),
  47147. weight: math.unit(2200, "lb"),
  47148. name: "Nude",
  47149. image: {
  47150. source: "./media/characters/endraya/nude.svg",
  47151. extra: 1247/1171,
  47152. bottom: 40/1287
  47153. }
  47154. },
  47155. head: {
  47156. height: math.unit(2.6, "feet"),
  47157. name: "Head",
  47158. image: {
  47159. source: "./media/characters/endraya/head.svg"
  47160. }
  47161. },
  47162. slit: {
  47163. height: math.unit(3.4, "feet"),
  47164. name: "Slit",
  47165. image: {
  47166. source: "./media/characters/endraya/slit.svg"
  47167. }
  47168. },
  47169. },
  47170. [
  47171. {
  47172. name: "Normal",
  47173. height: math.unit(13 + 7/12, "feet"),
  47174. default: true
  47175. },
  47176. {
  47177. name: "Macro",
  47178. height: math.unit(200, "feet")
  47179. },
  47180. ]
  47181. ))
  47182. characterMakers.push(() => makeCharacter(
  47183. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47184. {
  47185. front: {
  47186. height: math.unit(1.81, "meters"),
  47187. weight: math.unit(69, "kg"),
  47188. name: "Front",
  47189. image: {
  47190. source: "./media/characters/rodryana/front.svg",
  47191. extra: 2002/1921,
  47192. bottom: 53/2055
  47193. }
  47194. },
  47195. back: {
  47196. height: math.unit(1.81, "meters"),
  47197. weight: math.unit(69, "kg"),
  47198. name: "Back",
  47199. image: {
  47200. source: "./media/characters/rodryana/back.svg",
  47201. extra: 1993/1926,
  47202. bottom: 48/2041
  47203. }
  47204. },
  47205. maw: {
  47206. height: math.unit(0.19769417475, "meters"),
  47207. name: "Maw",
  47208. image: {
  47209. source: "./media/characters/rodryana/maw.svg"
  47210. }
  47211. },
  47212. slit: {
  47213. height: math.unit(0.31631067961, "meters"),
  47214. name: "Slit",
  47215. image: {
  47216. source: "./media/characters/rodryana/slit.svg"
  47217. }
  47218. },
  47219. },
  47220. [
  47221. {
  47222. name: "Normal",
  47223. height: math.unit(1.81, "meters")
  47224. },
  47225. {
  47226. name: "Mini Macro",
  47227. height: math.unit(181, "meters")
  47228. },
  47229. {
  47230. name: "Macro",
  47231. height: math.unit(452, "meters"),
  47232. default: true
  47233. },
  47234. {
  47235. name: "Mega Macro",
  47236. height: math.unit(1.375, "km")
  47237. },
  47238. {
  47239. name: "Giga Macro",
  47240. height: math.unit(13.575, "km")
  47241. },
  47242. ]
  47243. ))
  47244. characterMakers.push(() => makeCharacter(
  47245. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47246. {
  47247. front: {
  47248. height: math.unit(6, "feet"),
  47249. weight: math.unit(1000, "lb"),
  47250. name: "Front",
  47251. image: {
  47252. source: "./media/characters/asaya/front.svg",
  47253. extra: 1460/1200,
  47254. bottom: 71/1531
  47255. }
  47256. },
  47257. },
  47258. [
  47259. {
  47260. name: "Normal",
  47261. height: math.unit(8, "km"),
  47262. default: true
  47263. },
  47264. ]
  47265. ))
  47266. characterMakers.push(() => makeCharacter(
  47267. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47268. {
  47269. front: {
  47270. height: math.unit(3.5, "meters"),
  47271. name: "Front",
  47272. image: {
  47273. source: "./media/characters/sarzu-and-israz/front.svg",
  47274. extra: 1570/1558,
  47275. bottom: 150/1720
  47276. },
  47277. },
  47278. back: {
  47279. height: math.unit(3.5, "meters"),
  47280. name: "Back",
  47281. image: {
  47282. source: "./media/characters/sarzu-and-israz/back.svg",
  47283. extra: 1523/1509,
  47284. bottom: 132/1655
  47285. },
  47286. },
  47287. frontFemale: {
  47288. height: math.unit(3.5, "meters"),
  47289. name: "Front (Female)",
  47290. image: {
  47291. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47292. extra: 1570/1558,
  47293. bottom: 150/1720
  47294. },
  47295. },
  47296. frontHerm: {
  47297. height: math.unit(3.5, "meters"),
  47298. name: "Front (Herm)",
  47299. image: {
  47300. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47301. extra: 1570/1558,
  47302. bottom: 150/1720
  47303. },
  47304. },
  47305. },
  47306. [
  47307. {
  47308. name: "Normal",
  47309. height: math.unit(3.5, "meters"),
  47310. default: true,
  47311. },
  47312. {
  47313. name: "Macro",
  47314. height: math.unit(65.5, "meters"),
  47315. },
  47316. ],
  47317. ))
  47318. characterMakers.push(() => makeCharacter(
  47319. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47320. {
  47321. front: {
  47322. height: math.unit(6, "feet"),
  47323. weight: math.unit(250, "lb"),
  47324. name: "Front",
  47325. image: {
  47326. source: "./media/characters/zenimma/front.svg",
  47327. extra: 1346/1320,
  47328. bottom: 58/1404
  47329. }
  47330. },
  47331. back: {
  47332. height: math.unit(6, "feet"),
  47333. weight: math.unit(250, "lb"),
  47334. name: "Back",
  47335. image: {
  47336. source: "./media/characters/zenimma/back.svg",
  47337. extra: 1324/1308,
  47338. bottom: 44/1368
  47339. }
  47340. },
  47341. dick: {
  47342. height: math.unit(1.44, "feet"),
  47343. name: "Dick",
  47344. image: {
  47345. source: "./media/characters/zenimma/dick.svg"
  47346. }
  47347. },
  47348. },
  47349. [
  47350. {
  47351. name: "Canon Height",
  47352. height: math.unit(66, "miles"),
  47353. default: true
  47354. },
  47355. ]
  47356. ))
  47357. characterMakers.push(() => makeCharacter(
  47358. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47359. {
  47360. nude: {
  47361. height: math.unit(6, "feet"),
  47362. weight: math.unit(150, "lb"),
  47363. name: "Nude",
  47364. image: {
  47365. source: "./media/characters/shavon/nude.svg",
  47366. extra: 1242/1096,
  47367. bottom: 98/1340
  47368. }
  47369. },
  47370. dressed: {
  47371. height: math.unit(6, "feet"),
  47372. weight: math.unit(150, "lb"),
  47373. name: "Dressed",
  47374. image: {
  47375. source: "./media/characters/shavon/dressed.svg",
  47376. extra: 1242/1096,
  47377. bottom: 98/1340
  47378. }
  47379. },
  47380. },
  47381. [
  47382. {
  47383. name: "Macro",
  47384. height: math.unit(255, "feet"),
  47385. default: true
  47386. },
  47387. ]
  47388. ))
  47389. characterMakers.push(() => makeCharacter(
  47390. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47391. {
  47392. front: {
  47393. height: math.unit(6, "feet"),
  47394. name: "Front",
  47395. image: {
  47396. source: "./media/characters/steph/front.svg",
  47397. extra: 1430/1330,
  47398. bottom: 54/1484
  47399. }
  47400. },
  47401. },
  47402. [
  47403. {
  47404. name: "Normal",
  47405. height: math.unit(6, "feet"),
  47406. default: true
  47407. },
  47408. ]
  47409. ))
  47410. characterMakers.push(() => makeCharacter(
  47411. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47412. {
  47413. front: {
  47414. height: math.unit(9, "feet"),
  47415. weight: math.unit(400, "lb"),
  47416. name: "Front",
  47417. image: {
  47418. source: "./media/characters/kil'aman/front.svg",
  47419. extra: 1210/1159,
  47420. bottom: 109/1319
  47421. }
  47422. },
  47423. head: {
  47424. height: math.unit(2.14, "feet"),
  47425. name: "Head",
  47426. image: {
  47427. source: "./media/characters/kil'aman/head.svg"
  47428. }
  47429. },
  47430. maw: {
  47431. height: math.unit(1.21, "feet"),
  47432. name: "Maw",
  47433. image: {
  47434. source: "./media/characters/kil'aman/maw.svg"
  47435. }
  47436. },
  47437. foot: {
  47438. height: math.unit(1.7, "feet"),
  47439. name: "Foot",
  47440. image: {
  47441. source: "./media/characters/kil'aman/foot.svg"
  47442. }
  47443. },
  47444. dick: {
  47445. height: math.unit(2.1, "feet"),
  47446. name: "Dick",
  47447. image: {
  47448. source: "./media/characters/kil'aman/dick.svg"
  47449. }
  47450. },
  47451. },
  47452. [
  47453. {
  47454. name: "Normal",
  47455. height: math.unit(9, "feet")
  47456. },
  47457. {
  47458. name: "Canon Height",
  47459. height: math.unit(10, "miles"),
  47460. default: true
  47461. },
  47462. {
  47463. name: "Maximum",
  47464. height: math.unit(6e9, "miles")
  47465. },
  47466. ]
  47467. ))
  47468. characterMakers.push(() => makeCharacter(
  47469. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47470. {
  47471. front: {
  47472. height: math.unit(90, "feet"),
  47473. weight: math.unit(675000, "lb"),
  47474. name: "Front",
  47475. image: {
  47476. source: "./media/characters/qadan/front.svg",
  47477. extra: 1012/1004,
  47478. bottom: 78/1090
  47479. }
  47480. },
  47481. back: {
  47482. height: math.unit(90, "feet"),
  47483. weight: math.unit(675000, "lb"),
  47484. name: "Back",
  47485. image: {
  47486. source: "./media/characters/qadan/back.svg",
  47487. extra: 1042/1031,
  47488. bottom: 55/1097
  47489. }
  47490. },
  47491. armored: {
  47492. height: math.unit(90, "feet"),
  47493. weight: math.unit(675000, "lb"),
  47494. name: "Armored",
  47495. image: {
  47496. source: "./media/characters/qadan/armored.svg",
  47497. extra: 1047/1037,
  47498. bottom: 48/1095
  47499. }
  47500. },
  47501. },
  47502. [
  47503. {
  47504. name: "Normal",
  47505. height: math.unit(90, "feet"),
  47506. default: true
  47507. },
  47508. ]
  47509. ))
  47510. characterMakers.push(() => makeCharacter(
  47511. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47512. {
  47513. front: {
  47514. height: math.unit(6, "feet"),
  47515. weight: math.unit(225, "lb"),
  47516. name: "Front",
  47517. image: {
  47518. source: "./media/characters/brooke/front.svg",
  47519. extra: 1050/1010,
  47520. bottom: 66/1116
  47521. }
  47522. },
  47523. back: {
  47524. height: math.unit(6, "feet"),
  47525. weight: math.unit(225, "lb"),
  47526. name: "Back",
  47527. image: {
  47528. source: "./media/characters/brooke/back.svg",
  47529. extra: 1053/1013,
  47530. bottom: 41/1094
  47531. }
  47532. },
  47533. dressed: {
  47534. height: math.unit(6, "feet"),
  47535. weight: math.unit(225, "lb"),
  47536. name: "Dressed",
  47537. image: {
  47538. source: "./media/characters/brooke/dressed.svg",
  47539. extra: 1050/1010,
  47540. bottom: 66/1116
  47541. }
  47542. },
  47543. },
  47544. [
  47545. {
  47546. name: "Canon Height",
  47547. height: math.unit(500, "miles"),
  47548. default: true
  47549. },
  47550. ]
  47551. ))
  47552. characterMakers.push(() => makeCharacter(
  47553. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47554. {
  47555. front: {
  47556. height: math.unit(6 + 2/12, "feet"),
  47557. weight: math.unit(210, "lb"),
  47558. name: "Front",
  47559. image: {
  47560. source: "./media/characters/wubs/front.svg",
  47561. extra: 1345/1325,
  47562. bottom: 70/1415
  47563. }
  47564. },
  47565. back: {
  47566. height: math.unit(6 + 2/12, "feet"),
  47567. weight: math.unit(210, "lb"),
  47568. name: "Back",
  47569. image: {
  47570. source: "./media/characters/wubs/back.svg",
  47571. extra: 1296/1275,
  47572. bottom: 58/1354
  47573. }
  47574. },
  47575. },
  47576. [
  47577. {
  47578. name: "Normal",
  47579. height: math.unit(6 + 2/12, "feet"),
  47580. default: true
  47581. },
  47582. {
  47583. name: "Macro",
  47584. height: math.unit(1000, "feet")
  47585. },
  47586. {
  47587. name: "Megamacro",
  47588. height: math.unit(1, "mile")
  47589. },
  47590. ]
  47591. ))
  47592. characterMakers.push(() => makeCharacter(
  47593. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47594. {
  47595. front: {
  47596. height: math.unit(4, "feet"),
  47597. weight: math.unit(120, "lb"),
  47598. name: "Front",
  47599. image: {
  47600. source: "./media/characters/blue/front.svg",
  47601. extra: 1636/1525,
  47602. bottom: 43/1679
  47603. }
  47604. },
  47605. back: {
  47606. height: math.unit(4, "feet"),
  47607. weight: math.unit(120, "lb"),
  47608. name: "Back",
  47609. image: {
  47610. source: "./media/characters/blue/back.svg",
  47611. extra: 1660/1560,
  47612. bottom: 57/1717
  47613. }
  47614. },
  47615. paws: {
  47616. height: math.unit(0.826, "feet"),
  47617. name: "Paws",
  47618. image: {
  47619. source: "./media/characters/blue/paws.svg"
  47620. }
  47621. },
  47622. },
  47623. [
  47624. {
  47625. name: "Micro",
  47626. height: math.unit(3, "inches")
  47627. },
  47628. {
  47629. name: "Normal",
  47630. height: math.unit(4, "feet"),
  47631. default: true
  47632. },
  47633. {
  47634. name: "Femenine Form",
  47635. height: math.unit(14, "feet")
  47636. },
  47637. {
  47638. name: "Werebat Form",
  47639. height: math.unit(18, "feet")
  47640. },
  47641. ]
  47642. ))
  47643. characterMakers.push(() => makeCharacter(
  47644. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47645. {
  47646. female: {
  47647. height: math.unit(7 + 4/12, "feet"),
  47648. weight: math.unit(243, "lb"),
  47649. name: "Female",
  47650. image: {
  47651. source: "./media/characters/kaya/female.svg",
  47652. extra: 975/898,
  47653. bottom: 34/1009
  47654. }
  47655. },
  47656. herm: {
  47657. height: math.unit(7 + 4/12, "feet"),
  47658. weight: math.unit(243, "lb"),
  47659. name: "Herm",
  47660. image: {
  47661. source: "./media/characters/kaya/herm.svg",
  47662. extra: 975/898,
  47663. bottom: 34/1009
  47664. }
  47665. },
  47666. },
  47667. [
  47668. {
  47669. name: "Normal",
  47670. height: math.unit(7 + 4/12, "feet"),
  47671. default: true
  47672. },
  47673. ]
  47674. ))
  47675. characterMakers.push(() => makeCharacter(
  47676. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  47677. {
  47678. female: {
  47679. height: math.unit(9 + 4/12, "feet"),
  47680. weight: math.unit(398, "lb"),
  47681. name: "Female",
  47682. image: {
  47683. source: "./media/characters/kassandra/female.svg",
  47684. extra: 908/839,
  47685. bottom: 61/969
  47686. }
  47687. },
  47688. intersex: {
  47689. height: math.unit(9 + 4/12, "feet"),
  47690. weight: math.unit(398, "lb"),
  47691. name: "Intersex",
  47692. image: {
  47693. source: "./media/characters/kassandra/intersex.svg",
  47694. extra: 908/839,
  47695. bottom: 61/969
  47696. }
  47697. },
  47698. },
  47699. [
  47700. {
  47701. name: "Normal",
  47702. height: math.unit(9 + 4/12, "feet"),
  47703. default: true
  47704. },
  47705. ]
  47706. ))
  47707. characterMakers.push(() => makeCharacter(
  47708. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47709. {
  47710. front: {
  47711. height: math.unit(3, "meters"),
  47712. name: "Front",
  47713. image: {
  47714. source: "./media/characters/amy/front.svg",
  47715. extra: 1380/1343,
  47716. bottom: 70/1450
  47717. }
  47718. },
  47719. back: {
  47720. height: math.unit(3, "meters"),
  47721. name: "Back",
  47722. image: {
  47723. source: "./media/characters/amy/back.svg",
  47724. extra: 1380/1347,
  47725. bottom: 66/1446
  47726. }
  47727. },
  47728. },
  47729. [
  47730. {
  47731. name: "Normal",
  47732. height: math.unit(3, "meters"),
  47733. default: true
  47734. },
  47735. ]
  47736. ))
  47737. characterMakers.push(() => makeCharacter(
  47738. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47739. {
  47740. side: {
  47741. height: math.unit(47, "cm"),
  47742. weight: math.unit(10.8, "kg"),
  47743. name: "Side",
  47744. image: {
  47745. source: "./media/characters/alphaschakal/side.svg",
  47746. extra: 1058/568,
  47747. bottom: 62/1120
  47748. }
  47749. },
  47750. back: {
  47751. height: math.unit(78, "cm"),
  47752. weight: math.unit(10.8, "kg"),
  47753. name: "Back",
  47754. image: {
  47755. source: "./media/characters/alphaschakal/back.svg",
  47756. extra: 1102/942,
  47757. bottom: 185/1287
  47758. }
  47759. },
  47760. head: {
  47761. height: math.unit(28, "cm"),
  47762. name: "Head",
  47763. image: {
  47764. source: "./media/characters/alphaschakal/head.svg",
  47765. extra: 696/508,
  47766. bottom: 0/696
  47767. }
  47768. },
  47769. paw: {
  47770. height: math.unit(16, "cm"),
  47771. name: "Paw",
  47772. image: {
  47773. source: "./media/characters/alphaschakal/paw.svg"
  47774. }
  47775. },
  47776. },
  47777. [
  47778. {
  47779. name: "Normal",
  47780. height: math.unit(47, "cm"),
  47781. default: true
  47782. },
  47783. {
  47784. name: "Macro",
  47785. height: math.unit(340, "cm")
  47786. },
  47787. ]
  47788. ))
  47789. characterMakers.push(() => makeCharacter(
  47790. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47791. {
  47792. front: {
  47793. height: math.unit(36, "earths"),
  47794. name: "Front",
  47795. image: {
  47796. source: "./media/characters/ecobyss/front.svg",
  47797. extra: 1282/1215,
  47798. bottom: 11/1293
  47799. }
  47800. },
  47801. back: {
  47802. height: math.unit(36, "earths"),
  47803. name: "Back",
  47804. image: {
  47805. source: "./media/characters/ecobyss/back.svg",
  47806. extra: 1291/1222,
  47807. bottom: 8/1299
  47808. }
  47809. },
  47810. },
  47811. [
  47812. {
  47813. name: "Normal",
  47814. height: math.unit(36, "earths"),
  47815. default: true
  47816. },
  47817. ]
  47818. ))
  47819. characterMakers.push(() => makeCharacter(
  47820. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47821. {
  47822. front: {
  47823. height: math.unit(12, "feet"),
  47824. name: "Front",
  47825. image: {
  47826. source: "./media/characters/vasuk/front.svg",
  47827. extra: 1326/1207,
  47828. bottom: 64/1390
  47829. }
  47830. },
  47831. },
  47832. [
  47833. {
  47834. name: "Normal",
  47835. height: math.unit(12, "feet"),
  47836. default: true
  47837. },
  47838. ]
  47839. ))
  47840. characterMakers.push(() => makeCharacter(
  47841. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47842. {
  47843. side: {
  47844. height: math.unit(100, "feet"),
  47845. name: "Side",
  47846. image: {
  47847. source: "./media/characters/linneaus/side.svg",
  47848. extra: 987/807,
  47849. bottom: 47/1034
  47850. }
  47851. },
  47852. },
  47853. [
  47854. {
  47855. name: "Macro",
  47856. height: math.unit(100, "feet"),
  47857. default: true
  47858. },
  47859. ]
  47860. ))
  47861. characterMakers.push(() => makeCharacter(
  47862. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47863. {
  47864. front: {
  47865. height: math.unit(8, "feet"),
  47866. weight: math.unit(1200, "lb"),
  47867. name: "Front",
  47868. image: {
  47869. source: "./media/characters/nyterious-daligdig/front.svg",
  47870. extra: 1284/1094,
  47871. bottom: 84/1368
  47872. }
  47873. },
  47874. back: {
  47875. height: math.unit(8, "feet"),
  47876. weight: math.unit(1200, "lb"),
  47877. name: "Back",
  47878. image: {
  47879. source: "./media/characters/nyterious-daligdig/back.svg",
  47880. extra: 1301/1121,
  47881. bottom: 129/1430
  47882. }
  47883. },
  47884. mouth: {
  47885. height: math.unit(1.464, "feet"),
  47886. name: "Mouth",
  47887. image: {
  47888. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47889. }
  47890. },
  47891. },
  47892. [
  47893. {
  47894. name: "Small",
  47895. height: math.unit(8, "feet"),
  47896. default: true
  47897. },
  47898. {
  47899. name: "Normal",
  47900. height: math.unit(15, "feet")
  47901. },
  47902. {
  47903. name: "Macro",
  47904. height: math.unit(90, "feet")
  47905. },
  47906. ]
  47907. ))
  47908. characterMakers.push(() => makeCharacter(
  47909. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47910. {
  47911. front: {
  47912. height: math.unit(7 + 4/12, "feet"),
  47913. weight: math.unit(252, "lb"),
  47914. name: "Front",
  47915. image: {
  47916. source: "./media/characters/bandel/front.svg",
  47917. extra: 1946/1775,
  47918. bottom: 26/1972
  47919. }
  47920. },
  47921. back: {
  47922. height: math.unit(7 + 4/12, "feet"),
  47923. weight: math.unit(252, "lb"),
  47924. name: "Back",
  47925. image: {
  47926. source: "./media/characters/bandel/back.svg",
  47927. extra: 1940/1770,
  47928. bottom: 25/1965
  47929. }
  47930. },
  47931. maw: {
  47932. height: math.unit(2.15, "feet"),
  47933. name: "Maw",
  47934. image: {
  47935. source: "./media/characters/bandel/maw.svg"
  47936. }
  47937. },
  47938. stomach: {
  47939. height: math.unit(1.95, "feet"),
  47940. name: "Stomach",
  47941. image: {
  47942. source: "./media/characters/bandel/stomach.svg"
  47943. }
  47944. },
  47945. },
  47946. [
  47947. {
  47948. name: "Normal",
  47949. height: math.unit(7 + 4/12, "feet"),
  47950. default: true
  47951. },
  47952. ]
  47953. ))
  47954. characterMakers.push(() => makeCharacter(
  47955. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47956. {
  47957. front: {
  47958. height: math.unit(10 + 5/12, "feet"),
  47959. weight: math.unit(773.5, "kg"),
  47960. name: "Front",
  47961. image: {
  47962. source: "./media/characters/zed/front.svg",
  47963. extra: 987/941,
  47964. bottom: 52/1039
  47965. }
  47966. },
  47967. },
  47968. [
  47969. {
  47970. name: "Short",
  47971. height: math.unit(5 + 4/12, "feet")
  47972. },
  47973. {
  47974. name: "Average",
  47975. height: math.unit(10 + 5/12, "feet"),
  47976. default: true
  47977. },
  47978. {
  47979. name: "Mini-Macro",
  47980. height: math.unit(24 + 9/12, "feet")
  47981. },
  47982. {
  47983. name: "Macro",
  47984. height: math.unit(249, "feet")
  47985. },
  47986. {
  47987. name: "Mega-Macro",
  47988. height: math.unit(12490, "feet")
  47989. },
  47990. {
  47991. name: "Giga-Macro",
  47992. height: math.unit(24.9, "miles")
  47993. },
  47994. {
  47995. name: "Tera-Macro",
  47996. height: math.unit(24900, "miles")
  47997. },
  47998. {
  47999. name: "Cosmic Scale",
  48000. height: math.unit(38.9, "lightyears")
  48001. },
  48002. {
  48003. name: "Universal Scale",
  48004. height: math.unit(138e12, "lightyears")
  48005. },
  48006. ]
  48007. ))
  48008. characterMakers.push(() => makeCharacter(
  48009. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48010. {
  48011. front: {
  48012. height: math.unit(1561, "inches"),
  48013. name: "Front",
  48014. image: {
  48015. source: "./media/characters/ivan/front.svg",
  48016. extra: 1126/1071,
  48017. bottom: 26/1152
  48018. }
  48019. },
  48020. back: {
  48021. height: math.unit(1561, "inches"),
  48022. name: "Back",
  48023. image: {
  48024. source: "./media/characters/ivan/back.svg",
  48025. extra: 1134/1079,
  48026. bottom: 30/1164
  48027. }
  48028. },
  48029. },
  48030. [
  48031. {
  48032. name: "Normal",
  48033. height: math.unit(1561, "inches"),
  48034. default: true
  48035. },
  48036. ]
  48037. ))
  48038. characterMakers.push(() => makeCharacter(
  48039. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48040. {
  48041. front: {
  48042. height: math.unit(5 + 7/12, "feet"),
  48043. weight: math.unit(150, "lb"),
  48044. name: "Front",
  48045. image: {
  48046. source: "./media/characters/robin-arctic-hare/front.svg",
  48047. extra: 1148/974,
  48048. bottom: 20/1168
  48049. }
  48050. },
  48051. },
  48052. [
  48053. {
  48054. name: "Normal",
  48055. height: math.unit(5 + 7/12, "feet"),
  48056. default: true
  48057. },
  48058. ]
  48059. ))
  48060. characterMakers.push(() => makeCharacter(
  48061. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48062. {
  48063. side: {
  48064. height: math.unit(5, "feet"),
  48065. name: "Side",
  48066. image: {
  48067. source: "./media/characters/birch/side.svg",
  48068. extra: 985/796,
  48069. bottom: 111/1096
  48070. }
  48071. },
  48072. },
  48073. [
  48074. {
  48075. name: "Normal",
  48076. height: math.unit(5, "feet"),
  48077. default: true
  48078. },
  48079. ]
  48080. ))
  48081. characterMakers.push(() => makeCharacter(
  48082. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48083. {
  48084. front: {
  48085. height: math.unit(4, "feet"),
  48086. name: "Front",
  48087. image: {
  48088. source: "./media/characters/rasp/front.svg",
  48089. extra: 561/478,
  48090. bottom: 74/635
  48091. }
  48092. },
  48093. },
  48094. [
  48095. {
  48096. name: "Normal",
  48097. height: math.unit(4, "feet"),
  48098. default: true
  48099. },
  48100. ]
  48101. ))
  48102. characterMakers.push(() => makeCharacter(
  48103. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48104. {
  48105. front: {
  48106. height: math.unit(4 + 6/12, "feet"),
  48107. name: "Front",
  48108. image: {
  48109. source: "./media/characters/agatha/front.svg",
  48110. extra: 947/933,
  48111. bottom: 42/989
  48112. }
  48113. },
  48114. back: {
  48115. height: math.unit(4 + 6/12, "feet"),
  48116. name: "Back",
  48117. image: {
  48118. source: "./media/characters/agatha/back.svg",
  48119. extra: 935/922,
  48120. bottom: 48/983
  48121. }
  48122. },
  48123. },
  48124. [
  48125. {
  48126. name: "Normal",
  48127. height: math.unit(4 + 6 /12, "feet"),
  48128. default: true
  48129. },
  48130. {
  48131. name: "Max Size",
  48132. height: math.unit(500, "feet")
  48133. },
  48134. ]
  48135. ))
  48136. characterMakers.push(() => makeCharacter(
  48137. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48138. {
  48139. side: {
  48140. height: math.unit(30, "feet"),
  48141. name: "Side",
  48142. image: {
  48143. source: "./media/characters/roggy/side.svg",
  48144. extra: 909/643,
  48145. bottom: 63/972
  48146. }
  48147. },
  48148. lounging: {
  48149. height: math.unit(20, "feet"),
  48150. name: "Lounging",
  48151. image: {
  48152. source: "./media/characters/roggy/lounging.svg",
  48153. extra: 643/479,
  48154. bottom: 145/788
  48155. }
  48156. },
  48157. handpaw: {
  48158. height: math.unit(13.1, "feet"),
  48159. name: "Handpaw",
  48160. image: {
  48161. source: "./media/characters/roggy/handpaw.svg"
  48162. }
  48163. },
  48164. footpaw: {
  48165. height: math.unit(15.8, "feet"),
  48166. name: "Footpaw",
  48167. image: {
  48168. source: "./media/characters/roggy/footpaw.svg"
  48169. }
  48170. },
  48171. },
  48172. [
  48173. {
  48174. name: "Menacing",
  48175. height: math.unit(30, "feet"),
  48176. default: true
  48177. },
  48178. ]
  48179. ))
  48180. characterMakers.push(() => makeCharacter(
  48181. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48182. {
  48183. front: {
  48184. height: math.unit(5 + 7/12, "feet"),
  48185. weight: math.unit(135, "lb"),
  48186. name: "Front",
  48187. image: {
  48188. source: "./media/characters/naomi/front.svg",
  48189. extra: 1209/1154,
  48190. bottom: 129/1338
  48191. }
  48192. },
  48193. back: {
  48194. height: math.unit(5 + 7/12, "feet"),
  48195. weight: math.unit(135, "lb"),
  48196. name: "Back",
  48197. image: {
  48198. source: "./media/characters/naomi/back.svg",
  48199. extra: 1252/1190,
  48200. bottom: 23/1275
  48201. }
  48202. },
  48203. },
  48204. [
  48205. {
  48206. name: "Normal",
  48207. height: math.unit(5 + 7 /12, "feet"),
  48208. default: true
  48209. },
  48210. ]
  48211. ))
  48212. characterMakers.push(() => makeCharacter(
  48213. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48214. {
  48215. side: {
  48216. height: math.unit(35, "meters"),
  48217. name: "Side",
  48218. image: {
  48219. source: "./media/characters/kimpi/side.svg",
  48220. extra: 419/382,
  48221. bottom: 63/482
  48222. }
  48223. },
  48224. hand: {
  48225. height: math.unit(8.96, "meters"),
  48226. name: "Hand",
  48227. image: {
  48228. source: "./media/characters/kimpi/hand.svg"
  48229. }
  48230. },
  48231. },
  48232. [
  48233. {
  48234. name: "Normal",
  48235. height: math.unit(35, "meters"),
  48236. default: true
  48237. },
  48238. ]
  48239. ))
  48240. characterMakers.push(() => makeCharacter(
  48241. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48242. {
  48243. front: {
  48244. height: math.unit(4 + 4/12, "feet"),
  48245. name: "Front",
  48246. image: {
  48247. source: "./media/characters/pepper-purrloin/front.svg",
  48248. extra: 1141/1024,
  48249. bottom: 21/1162
  48250. }
  48251. },
  48252. },
  48253. [
  48254. {
  48255. name: "Normal",
  48256. height: math.unit(4 + 4/12, "feet"),
  48257. default: true
  48258. },
  48259. ]
  48260. ))
  48261. characterMakers.push(() => makeCharacter(
  48262. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48263. {
  48264. front: {
  48265. height: math.unit(6 + 2/12, "feet"),
  48266. name: "Front",
  48267. image: {
  48268. source: "./media/characters/raphael/front.svg",
  48269. extra: 1101/962,
  48270. bottom: 59/1160
  48271. }
  48272. },
  48273. },
  48274. [
  48275. {
  48276. name: "Normal",
  48277. height: math.unit(6 + 2/12, "feet"),
  48278. default: true
  48279. },
  48280. ]
  48281. ))
  48282. characterMakers.push(() => makeCharacter(
  48283. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48284. {
  48285. front: {
  48286. height: math.unit(6, "feet"),
  48287. weight: math.unit(150, "lb"),
  48288. name: "Front",
  48289. image: {
  48290. source: "./media/characters/victor-williams/front.svg",
  48291. extra: 1894/1825,
  48292. bottom: 67/1961
  48293. }
  48294. },
  48295. },
  48296. [
  48297. {
  48298. name: "Normal",
  48299. height: math.unit(6, "feet"),
  48300. default: true
  48301. },
  48302. ]
  48303. ))
  48304. characterMakers.push(() => makeCharacter(
  48305. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48306. {
  48307. front: {
  48308. height: math.unit(5 + 8/12, "feet"),
  48309. weight: math.unit(150, "lb"),
  48310. name: "Front",
  48311. image: {
  48312. source: "./media/characters/rachel/front.svg",
  48313. extra: 1902/1787,
  48314. bottom: 46/1948
  48315. }
  48316. },
  48317. },
  48318. [
  48319. {
  48320. name: "Base Height",
  48321. height: math.unit(5 + 8/12, "feet"),
  48322. default: true
  48323. },
  48324. {
  48325. name: "Macro",
  48326. height: math.unit(200, "feet")
  48327. },
  48328. {
  48329. name: "Mega Macro",
  48330. height: math.unit(1, "mile")
  48331. },
  48332. {
  48333. name: "Giga Macro",
  48334. height: math.unit(1500, "miles")
  48335. },
  48336. {
  48337. name: "Tera Macro",
  48338. height: math.unit(8000, "miles")
  48339. },
  48340. {
  48341. name: "Tera Macro+",
  48342. height: math.unit(2e5, "miles")
  48343. },
  48344. ]
  48345. ))
  48346. characterMakers.push(() => makeCharacter(
  48347. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48348. {
  48349. front: {
  48350. height: math.unit(6.5, "feet"),
  48351. name: "Front",
  48352. image: {
  48353. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48354. extra: 860/819,
  48355. bottom: 307/1167
  48356. }
  48357. },
  48358. back: {
  48359. height: math.unit(6.5, "feet"),
  48360. name: "Back",
  48361. image: {
  48362. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48363. extra: 880/837,
  48364. bottom: 395/1275
  48365. }
  48366. },
  48367. sleeping: {
  48368. height: math.unit(2.79, "feet"),
  48369. name: "Sleeping",
  48370. image: {
  48371. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48372. extra: 465/383,
  48373. bottom: 263/728
  48374. }
  48375. },
  48376. maw: {
  48377. height: math.unit(2.52, "feet"),
  48378. name: "Maw",
  48379. image: {
  48380. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48381. }
  48382. },
  48383. },
  48384. [
  48385. {
  48386. name: "Normal",
  48387. height: math.unit(6.5, "feet"),
  48388. default: true
  48389. },
  48390. ]
  48391. ))
  48392. characterMakers.push(() => makeCharacter(
  48393. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48394. {
  48395. front: {
  48396. height: math.unit(5, "feet"),
  48397. name: "Front",
  48398. image: {
  48399. source: "./media/characters/nova-nerium/front.svg",
  48400. extra: 1548/1392,
  48401. bottom: 374/1922
  48402. }
  48403. },
  48404. back: {
  48405. height: math.unit(5, "feet"),
  48406. name: "Back",
  48407. image: {
  48408. source: "./media/characters/nova-nerium/back.svg",
  48409. extra: 1658/1468,
  48410. bottom: 257/1915
  48411. }
  48412. },
  48413. },
  48414. [
  48415. {
  48416. name: "Normal",
  48417. height: math.unit(5, "feet"),
  48418. default: true
  48419. },
  48420. ]
  48421. ))
  48422. characterMakers.push(() => makeCharacter(
  48423. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48424. {
  48425. front: {
  48426. height: math.unit(5 + 4/12, "feet"),
  48427. name: "Front",
  48428. image: {
  48429. source: "./media/characters/ashe-pyriph/front.svg",
  48430. extra: 1935/1747,
  48431. bottom: 60/1995
  48432. }
  48433. },
  48434. },
  48435. [
  48436. {
  48437. name: "Normal",
  48438. height: math.unit(5 + 4/12, "feet"),
  48439. default: true
  48440. },
  48441. ]
  48442. ))
  48443. characterMakers.push(() => makeCharacter(
  48444. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48445. {
  48446. front: {
  48447. height: math.unit(8.7, "feet"),
  48448. name: "Front",
  48449. image: {
  48450. source: "./media/characters/flicker-wisp/front.svg",
  48451. extra: 1835/1613,
  48452. bottom: 449/2284
  48453. }
  48454. },
  48455. side: {
  48456. height: math.unit(8.7, "feet"),
  48457. name: "Side",
  48458. image: {
  48459. source: "./media/characters/flicker-wisp/side.svg",
  48460. extra: 1841/1642,
  48461. bottom: 336/2177
  48462. },
  48463. default: true
  48464. },
  48465. maw: {
  48466. height: math.unit(3.35, "feet"),
  48467. name: "Maw",
  48468. image: {
  48469. source: "./media/characters/flicker-wisp/maw.svg",
  48470. extra: 2338/1506,
  48471. bottom: 0/2338
  48472. }
  48473. },
  48474. ovipositor: {
  48475. height: math.unit(4.95, "feet"),
  48476. name: "Ovipositor",
  48477. image: {
  48478. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48479. }
  48480. },
  48481. egg: {
  48482. height: math.unit(0.385, "feet"),
  48483. weight: math.unit(2, "lb"),
  48484. name: "Egg",
  48485. image: {
  48486. source: "./media/characters/flicker-wisp/egg.svg"
  48487. }
  48488. },
  48489. },
  48490. [
  48491. {
  48492. name: "Normal",
  48493. height: math.unit(8.7, "feet"),
  48494. default: true
  48495. },
  48496. ]
  48497. ))
  48498. characterMakers.push(() => makeCharacter(
  48499. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48500. {
  48501. side: {
  48502. height: math.unit(11, "feet"),
  48503. name: "Side",
  48504. image: {
  48505. source: "./media/characters/faefnul/side.svg",
  48506. extra: 1100/1007,
  48507. bottom: 0/1100
  48508. }
  48509. },
  48510. },
  48511. [
  48512. {
  48513. name: "Normal",
  48514. height: math.unit(11, "feet"),
  48515. default: true
  48516. },
  48517. ]
  48518. ))
  48519. characterMakers.push(() => makeCharacter(
  48520. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48521. {
  48522. front: {
  48523. height: math.unit(6 + 2/12, "feet"),
  48524. name: "Front",
  48525. image: {
  48526. source: "./media/characters/shady/front.svg",
  48527. extra: 502/461,
  48528. bottom: 9/511
  48529. }
  48530. },
  48531. kneeling: {
  48532. height: math.unit(4.6, "feet"),
  48533. name: "Kneeling",
  48534. image: {
  48535. source: "./media/characters/shady/kneeling.svg",
  48536. extra: 1328/1219,
  48537. bottom: 117/1445
  48538. }
  48539. },
  48540. maw: {
  48541. height: math.unit(2, "feet"),
  48542. name: "Maw",
  48543. image: {
  48544. source: "./media/characters/shady/maw.svg"
  48545. }
  48546. },
  48547. },
  48548. [
  48549. {
  48550. name: "Nano",
  48551. height: math.unit(1, "mm")
  48552. },
  48553. {
  48554. name: "Micro",
  48555. height: math.unit(12, "mm")
  48556. },
  48557. {
  48558. name: "Tiny",
  48559. height: math.unit(3, "inches")
  48560. },
  48561. {
  48562. name: "Normal",
  48563. height: math.unit(6 + 2/12, "feet"),
  48564. default: true
  48565. },
  48566. {
  48567. name: "Big",
  48568. height: math.unit(15, "feet")
  48569. },
  48570. {
  48571. name: "Macro",
  48572. height: math.unit(150, "feet")
  48573. },
  48574. {
  48575. name: "Titanic",
  48576. height: math.unit(500, "feet")
  48577. },
  48578. ]
  48579. ))
  48580. characterMakers.push(() => makeCharacter(
  48581. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48582. {
  48583. front: {
  48584. height: math.unit(12, "feet"),
  48585. name: "Front",
  48586. image: {
  48587. source: "./media/characters/fenrir/front.svg",
  48588. extra: 968/875,
  48589. bottom: 22/990
  48590. }
  48591. },
  48592. },
  48593. [
  48594. {
  48595. name: "Big",
  48596. height: math.unit(12, "feet"),
  48597. default: true
  48598. },
  48599. ]
  48600. ))
  48601. characterMakers.push(() => makeCharacter(
  48602. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48603. {
  48604. front: {
  48605. height: math.unit(5 + 4/12, "feet"),
  48606. name: "Front",
  48607. image: {
  48608. source: "./media/characters/makar/front.svg",
  48609. extra: 1181/1112,
  48610. bottom: 78/1259
  48611. }
  48612. },
  48613. },
  48614. [
  48615. {
  48616. name: "Normal",
  48617. height: math.unit(5 + 4/12, "feet"),
  48618. default: true
  48619. },
  48620. ]
  48621. ))
  48622. characterMakers.push(() => makeCharacter(
  48623. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48624. {
  48625. front: {
  48626. height: math.unit(5 + 7/12, "feet"),
  48627. name: "Front",
  48628. image: {
  48629. source: "./media/characters/callow/front.svg",
  48630. extra: 1482/1304,
  48631. bottom: 23/1505
  48632. }
  48633. },
  48634. back: {
  48635. height: math.unit(5 + 7/12, "feet"),
  48636. name: "Back",
  48637. image: {
  48638. source: "./media/characters/callow/back.svg",
  48639. extra: 1484/1296,
  48640. bottom: 25/1509
  48641. }
  48642. },
  48643. },
  48644. [
  48645. {
  48646. name: "Micro",
  48647. height: math.unit(3, "inches"),
  48648. default: true
  48649. },
  48650. {
  48651. name: "Normal",
  48652. height: math.unit(5 + 7/12, "feet")
  48653. },
  48654. ]
  48655. ))
  48656. characterMakers.push(() => makeCharacter(
  48657. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48658. {
  48659. front: {
  48660. height: math.unit(6 + 2/12, "feet"),
  48661. name: "Front",
  48662. image: {
  48663. source: "./media/characters/natel/front.svg",
  48664. extra: 1833/1692,
  48665. bottom: 166/1999
  48666. }
  48667. },
  48668. },
  48669. [
  48670. {
  48671. name: "Normal",
  48672. height: math.unit(6 + 2/12, "feet"),
  48673. default: true
  48674. },
  48675. ]
  48676. ))
  48677. characterMakers.push(() => makeCharacter(
  48678. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  48679. {
  48680. front: {
  48681. height: math.unit(1.75, "meters"),
  48682. name: "Front",
  48683. image: {
  48684. source: "./media/characters/misu/front.svg",
  48685. extra: 1690/1558,
  48686. bottom: 234/1924
  48687. }
  48688. },
  48689. back: {
  48690. height: math.unit(1.75, "meters"),
  48691. name: "Back",
  48692. image: {
  48693. source: "./media/characters/misu/back.svg",
  48694. extra: 1762/1618,
  48695. bottom: 146/1908
  48696. }
  48697. },
  48698. frontNude: {
  48699. height: math.unit(1.75, "meters"),
  48700. name: "Front (Nude)",
  48701. image: {
  48702. source: "./media/characters/misu/front-nude.svg",
  48703. extra: 1690/1558,
  48704. bottom: 234/1924
  48705. }
  48706. },
  48707. backNude: {
  48708. height: math.unit(1.75, "meters"),
  48709. name: "Back (Nude)",
  48710. image: {
  48711. source: "./media/characters/misu/back-nude.svg",
  48712. extra: 1762/1618,
  48713. bottom: 146/1908
  48714. }
  48715. },
  48716. frontErect: {
  48717. height: math.unit(1.75, "meters"),
  48718. name: "Front (Erect)",
  48719. image: {
  48720. source: "./media/characters/misu/front-erect.svg",
  48721. extra: 1690/1558,
  48722. bottom: 234/1924
  48723. }
  48724. },
  48725. maw: {
  48726. height: math.unit(0.47, "meters"),
  48727. name: "Maw",
  48728. image: {
  48729. source: "./media/characters/misu/maw.svg"
  48730. }
  48731. },
  48732. head: {
  48733. height: math.unit(0.35, "meters"),
  48734. name: "Head",
  48735. image: {
  48736. source: "./media/characters/misu/head.svg"
  48737. }
  48738. },
  48739. rear: {
  48740. height: math.unit(0.47, "meters"),
  48741. name: "Rear",
  48742. image: {
  48743. source: "./media/characters/misu/rear.svg"
  48744. }
  48745. },
  48746. },
  48747. [
  48748. {
  48749. name: "Normal",
  48750. height: math.unit(1.75, "meters")
  48751. },
  48752. {
  48753. name: "Not good for the people",
  48754. height: math.unit(42, "meters")
  48755. },
  48756. {
  48757. name: "Not good for the neighborhood",
  48758. height: math.unit(135, "meters")
  48759. },
  48760. {
  48761. name: "Bit bigger problem",
  48762. height: math.unit(380, "meters"),
  48763. default: true
  48764. },
  48765. {
  48766. name: "Not good for the city",
  48767. height: math.unit(1.5, "km")
  48768. },
  48769. {
  48770. name: "Not good for the county",
  48771. height: math.unit(5.5, "km")
  48772. },
  48773. {
  48774. name: "Not good for the state",
  48775. height: math.unit(25, "km")
  48776. },
  48777. {
  48778. name: "Not good for the country",
  48779. height: math.unit(125, "km")
  48780. },
  48781. {
  48782. name: "Not good for the continent",
  48783. height: math.unit(2100, "km")
  48784. },
  48785. {
  48786. name: "Not good for the planet",
  48787. height: math.unit(35000, "km")
  48788. },
  48789. {
  48790. name: "Just no",
  48791. height: math.unit(8.5e18, "km")
  48792. },
  48793. ]
  48794. ))
  48795. characterMakers.push(() => makeCharacter(
  48796. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48797. {
  48798. front: {
  48799. height: math.unit(6.5, "feet"),
  48800. name: "Front",
  48801. image: {
  48802. source: "./media/characters/poppy/front.svg",
  48803. extra: 1878/1812,
  48804. bottom: 43/1921
  48805. }
  48806. },
  48807. feet: {
  48808. height: math.unit(1.06, "feet"),
  48809. name: "Feet",
  48810. image: {
  48811. source: "./media/characters/poppy/feet.svg",
  48812. extra: 1083/1083,
  48813. bottom: 87/1170
  48814. }
  48815. },
  48816. },
  48817. [
  48818. {
  48819. name: "Human",
  48820. height: math.unit(6.5, "feet")
  48821. },
  48822. {
  48823. name: "Default",
  48824. height: math.unit(300, "feet"),
  48825. default: true
  48826. },
  48827. {
  48828. name: "Huge",
  48829. height: math.unit(850, "feet")
  48830. },
  48831. {
  48832. name: "Mega",
  48833. height: math.unit(8000, "feet")
  48834. },
  48835. {
  48836. name: "Giga",
  48837. height: math.unit(300, "miles")
  48838. },
  48839. ]
  48840. ))
  48841. characterMakers.push(() => makeCharacter(
  48842. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48843. {
  48844. bipedal: {
  48845. height: math.unit(7, "feet"),
  48846. name: "Bipedal",
  48847. image: {
  48848. source: "./media/characters/zener/bipedal.svg",
  48849. extra: 874/805,
  48850. bottom: 109/983
  48851. }
  48852. },
  48853. quadrupedal: {
  48854. height: math.unit(4.64, "feet"),
  48855. name: "Quadrupedal",
  48856. image: {
  48857. source: "./media/characters/zener/quadrupedal.svg",
  48858. extra: 638/507,
  48859. bottom: 190/828
  48860. }
  48861. },
  48862. cock: {
  48863. height: math.unit(18, "inches"),
  48864. name: "Cock",
  48865. image: {
  48866. source: "./media/characters/zener/cock.svg"
  48867. }
  48868. },
  48869. },
  48870. [
  48871. {
  48872. name: "Normal",
  48873. height: math.unit(7, "feet"),
  48874. default: true
  48875. },
  48876. ]
  48877. ))
  48878. characterMakers.push(() => makeCharacter(
  48879. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48880. {
  48881. nude: {
  48882. height: math.unit(5 + 6/12, "feet"),
  48883. name: "Nude",
  48884. image: {
  48885. source: "./media/characters/charlie-dog/nude.svg",
  48886. extra: 768/734,
  48887. bottom: 26/794
  48888. }
  48889. },
  48890. dressed: {
  48891. height: math.unit(5 + 6/12, "feet"),
  48892. name: "Dressed",
  48893. image: {
  48894. source: "./media/characters/charlie-dog/dressed.svg",
  48895. extra: 768/734,
  48896. bottom: 26/794
  48897. }
  48898. },
  48899. },
  48900. [
  48901. {
  48902. name: "Normal",
  48903. height: math.unit(5 + 6/12, "feet"),
  48904. default: true
  48905. },
  48906. ]
  48907. ))
  48908. characterMakers.push(() => makeCharacter(
  48909. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48910. {
  48911. front: {
  48912. height: math.unit(6 + 4/12, "feet"),
  48913. name: "Front",
  48914. image: {
  48915. source: "./media/characters/ir'istrasz/front.svg",
  48916. extra: 1014/977,
  48917. bottom: 65/1079
  48918. }
  48919. },
  48920. back: {
  48921. height: math.unit(6 + 4/12, "feet"),
  48922. name: "Back",
  48923. image: {
  48924. source: "./media/characters/ir'istrasz/back.svg",
  48925. extra: 1024/992,
  48926. bottom: 34/1058
  48927. }
  48928. },
  48929. },
  48930. [
  48931. {
  48932. name: "Normal",
  48933. height: math.unit(6 + 4/12, "feet"),
  48934. default: true
  48935. },
  48936. ]
  48937. ))
  48938. characterMakers.push(() => makeCharacter(
  48939. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48940. {
  48941. front: {
  48942. height: math.unit(5 + 8/12, "feet"),
  48943. name: "Front",
  48944. image: {
  48945. source: "./media/characters/dee-ditto/front.svg",
  48946. extra: 1874/1785,
  48947. bottom: 68/1942
  48948. }
  48949. },
  48950. back: {
  48951. height: math.unit(5 + 8/12, "feet"),
  48952. name: "Back",
  48953. image: {
  48954. source: "./media/characters/dee-ditto/back.svg",
  48955. extra: 1870/1783,
  48956. bottom: 77/1947
  48957. }
  48958. },
  48959. },
  48960. [
  48961. {
  48962. name: "Normal",
  48963. height: math.unit(5 + 8/12, "feet"),
  48964. default: true
  48965. },
  48966. ]
  48967. ))
  48968. characterMakers.push(() => makeCharacter(
  48969. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48970. {
  48971. front: {
  48972. height: math.unit(7 + 6/12, "feet"),
  48973. name: "Front",
  48974. image: {
  48975. source: "./media/characters/fey/front.svg",
  48976. extra: 995/979,
  48977. bottom: 30/1025
  48978. }
  48979. },
  48980. back: {
  48981. height: math.unit(7 + 6/12, "feet"),
  48982. name: "Back",
  48983. image: {
  48984. source: "./media/characters/fey/back.svg",
  48985. extra: 1079/1008,
  48986. bottom: 5/1084
  48987. }
  48988. },
  48989. dressed: {
  48990. height: math.unit(7 + 6/12, "feet"),
  48991. name: "Dressed",
  48992. image: {
  48993. source: "./media/characters/fey/dressed.svg",
  48994. extra: 995/979,
  48995. bottom: 30/1025
  48996. }
  48997. },
  48998. },
  48999. [
  49000. {
  49001. name: "Normal",
  49002. height: math.unit(7 + 6/12, "feet"),
  49003. default: true
  49004. },
  49005. ]
  49006. ))
  49007. characterMakers.push(() => makeCharacter(
  49008. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49009. {
  49010. standing: {
  49011. height: math.unit(17, "feet"),
  49012. name: "Standing",
  49013. image: {
  49014. source: "./media/characters/aster/standing.svg",
  49015. extra: 1798/1598,
  49016. bottom: 117/1915
  49017. }
  49018. },
  49019. },
  49020. [
  49021. {
  49022. name: "Normal",
  49023. height: math.unit(17, "feet"),
  49024. default: true
  49025. },
  49026. {
  49027. name: "Homewrecker",
  49028. height: math.unit(95, "feet")
  49029. },
  49030. {
  49031. name: "Planet Devourer",
  49032. height: math.unit(1008000, "miles")
  49033. },
  49034. ]
  49035. ))
  49036. characterMakers.push(() => makeCharacter(
  49037. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49038. {
  49039. front: {
  49040. height: math.unit(6 + 5/12, "feet"),
  49041. weight: math.unit(265, "lb"),
  49042. name: "Front",
  49043. image: {
  49044. source: "./media/characters/devon-childs/front.svg",
  49045. extra: 1795/1721,
  49046. bottom: 41/1836
  49047. }
  49048. },
  49049. side: {
  49050. height: math.unit(6 + 5/12, "feet"),
  49051. weight: math.unit(265, "lb"),
  49052. name: "Side",
  49053. image: {
  49054. source: "./media/characters/devon-childs/side.svg",
  49055. extra: 1812/1738,
  49056. bottom: 30/1842
  49057. }
  49058. },
  49059. back: {
  49060. height: math.unit(6 + 5/12, "feet"),
  49061. weight: math.unit(265, "lb"),
  49062. name: "Back",
  49063. image: {
  49064. source: "./media/characters/devon-childs/back.svg",
  49065. extra: 1808/1735,
  49066. bottom: 23/1831
  49067. }
  49068. },
  49069. hand: {
  49070. height: math.unit(1.464, "feet"),
  49071. name: "Hand",
  49072. image: {
  49073. source: "./media/characters/devon-childs/hand.svg"
  49074. }
  49075. },
  49076. foot: {
  49077. height: math.unit(1.6, "feet"),
  49078. name: "Foot",
  49079. image: {
  49080. source: "./media/characters/devon-childs/foot.svg"
  49081. }
  49082. },
  49083. },
  49084. [
  49085. {
  49086. name: "Micro",
  49087. height: math.unit(7, "cm")
  49088. },
  49089. {
  49090. name: "Normal",
  49091. height: math.unit(6 + 5/12, "feet"),
  49092. default: true
  49093. },
  49094. {
  49095. name: "Macro",
  49096. height: math.unit(154, "feet")
  49097. },
  49098. ]
  49099. ))
  49100. characterMakers.push(() => makeCharacter(
  49101. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49102. {
  49103. front: {
  49104. height: math.unit(6, "feet"),
  49105. weight: math.unit(180, "lb"),
  49106. name: "Front",
  49107. image: {
  49108. source: "./media/characters/lydemox-vir/front.svg",
  49109. extra: 1632/1435,
  49110. bottom: 58/1690
  49111. }
  49112. },
  49113. frontSFW: {
  49114. height: math.unit(6, "feet"),
  49115. weight: math.unit(180, "lb"),
  49116. name: "Front (SFW)",
  49117. image: {
  49118. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49119. extra: 1632/1435,
  49120. bottom: 58/1690
  49121. }
  49122. },
  49123. back: {
  49124. height: math.unit(6, "feet"),
  49125. weight: math.unit(180, "lb"),
  49126. name: "Back",
  49127. image: {
  49128. source: "./media/characters/lydemox-vir/back.svg",
  49129. extra: 1593/1408,
  49130. bottom: 31/1624
  49131. }
  49132. },
  49133. paw: {
  49134. height: math.unit(1.85, "feet"),
  49135. name: "Paw",
  49136. image: {
  49137. source: "./media/characters/lydemox-vir/paw.svg"
  49138. }
  49139. },
  49140. dick: {
  49141. height: math.unit(1.8, "feet"),
  49142. name: "Dick",
  49143. image: {
  49144. source: "./media/characters/lydemox-vir/dick.svg"
  49145. }
  49146. },
  49147. },
  49148. [
  49149. {
  49150. name: "Macro",
  49151. height: math.unit(100, "feet"),
  49152. default: true
  49153. },
  49154. {
  49155. name: "Teramacro",
  49156. height: math.unit(1, "earth")
  49157. },
  49158. {
  49159. name: "Planetary",
  49160. height: math.unit(20, "earths")
  49161. },
  49162. ]
  49163. ))
  49164. characterMakers.push(() => makeCharacter(
  49165. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49166. {
  49167. front: {
  49168. height: math.unit(15 + 8/12, "feet"),
  49169. weight: math.unit(1237, "kg"),
  49170. name: "Front",
  49171. image: {
  49172. source: "./media/characters/mia/front.svg",
  49173. extra: 1573/1446,
  49174. bottom: 58/1631
  49175. }
  49176. },
  49177. },
  49178. [
  49179. {
  49180. name: "Small",
  49181. height: math.unit(9 + 5/12, "feet")
  49182. },
  49183. {
  49184. name: "Normal",
  49185. height: math.unit(15 + 8/12, "feet"),
  49186. default: true
  49187. },
  49188. ]
  49189. ))
  49190. characterMakers.push(() => makeCharacter(
  49191. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49192. {
  49193. front: {
  49194. height: math.unit(10 + 6/12, "feet"),
  49195. weight: math.unit(1.3, "tons"),
  49196. name: "Front",
  49197. image: {
  49198. source: "./media/characters/mr-graves/front.svg",
  49199. extra: 1779/1695,
  49200. bottom: 198/1977
  49201. }
  49202. },
  49203. },
  49204. [
  49205. {
  49206. name: "Normal",
  49207. height: math.unit(10 + 6 /12, "feet"),
  49208. default: true
  49209. },
  49210. ]
  49211. ))
  49212. characterMakers.push(() => makeCharacter(
  49213. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49214. {
  49215. dressedFront: {
  49216. height: math.unit(5 + 8/12, "feet"),
  49217. weight: math.unit(125, "lb"),
  49218. name: "Dressed (Front)",
  49219. image: {
  49220. source: "./media/characters/jess/dressed-front.svg",
  49221. extra: 1176/1152,
  49222. bottom: 42/1218
  49223. }
  49224. },
  49225. dressedSide: {
  49226. height: math.unit(5 + 8/12, "feet"),
  49227. weight: math.unit(125, "lb"),
  49228. name: "Dressed (Side)",
  49229. image: {
  49230. source: "./media/characters/jess/dressed-side.svg",
  49231. extra: 1204/1190,
  49232. bottom: 6/1210
  49233. }
  49234. },
  49235. nudeFront: {
  49236. height: math.unit(5 + 8/12, "feet"),
  49237. weight: math.unit(125, "lb"),
  49238. name: "Nude (Front)",
  49239. image: {
  49240. source: "./media/characters/jess/nude-front.svg",
  49241. extra: 1176/1152,
  49242. bottom: 42/1218
  49243. }
  49244. },
  49245. nudeSide: {
  49246. height: math.unit(5 + 8/12, "feet"),
  49247. weight: math.unit(125, "lb"),
  49248. name: "Nude (Side)",
  49249. image: {
  49250. source: "./media/characters/jess/nude-side.svg",
  49251. extra: 1204/1190,
  49252. bottom: 6/1210
  49253. }
  49254. },
  49255. organsFront: {
  49256. height: math.unit(2.83799342105, "feet"),
  49257. name: "Organs (Front)",
  49258. image: {
  49259. source: "./media/characters/jess/organs-front.svg"
  49260. }
  49261. },
  49262. organsSide: {
  49263. height: math.unit(2.64225290474, "feet"),
  49264. name: "Organs (Side)",
  49265. image: {
  49266. source: "./media/characters/jess/organs-side.svg"
  49267. }
  49268. },
  49269. digestiveTractFront: {
  49270. height: math.unit(2.8106580871, "feet"),
  49271. name: "Digestive Tract (Front)",
  49272. image: {
  49273. source: "./media/characters/jess/digestive-tract-front.svg"
  49274. }
  49275. },
  49276. digestiveTractSide: {
  49277. height: math.unit(2.54365045014, "feet"),
  49278. name: "Digestive Tract (Side)",
  49279. image: {
  49280. source: "./media/characters/jess/digestive-tract-side.svg"
  49281. }
  49282. },
  49283. respiratorySystemFront: {
  49284. height: math.unit(1.11196233456, "feet"),
  49285. name: "Respiratory System (Front)",
  49286. image: {
  49287. source: "./media/characters/jess/respiratory-system-front.svg"
  49288. }
  49289. },
  49290. respiratorySystemSide: {
  49291. height: math.unit(0.89327966297, "feet"),
  49292. name: "Respiratory System (Side)",
  49293. image: {
  49294. source: "./media/characters/jess/respiratory-system-side.svg"
  49295. }
  49296. },
  49297. urinaryTractFront: {
  49298. height: math.unit(1.16126356186, "feet"),
  49299. name: "Urinary Tract (Front)",
  49300. image: {
  49301. source: "./media/characters/jess/urinary-tract-front.svg"
  49302. }
  49303. },
  49304. urinaryTractSide: {
  49305. height: math.unit(1.20910039627, "feet"),
  49306. name: "Urinary Tract (Side)",
  49307. image: {
  49308. source: "./media/characters/jess/urinary-tract-side.svg"
  49309. }
  49310. },
  49311. reproductiveOrgansFront: {
  49312. height: math.unit(0.48422591566, "feet"),
  49313. name: "Reproductive Organs (Front)",
  49314. image: {
  49315. source: "./media/characters/jess/reproductive-organs-front.svg"
  49316. }
  49317. },
  49318. reproductiveOrgansSide: {
  49319. height: math.unit(0.61553314481, "feet"),
  49320. name: "Reproductive Organs (Side)",
  49321. image: {
  49322. source: "./media/characters/jess/reproductive-organs-side.svg"
  49323. }
  49324. },
  49325. breastsFront: {
  49326. height: math.unit(0.47690395121, "feet"),
  49327. name: "Breasts (Front)",
  49328. image: {
  49329. source: "./media/characters/jess/breasts-front.svg"
  49330. }
  49331. },
  49332. breastsSide: {
  49333. height: math.unit(0.30556998307, "feet"),
  49334. name: "Breasts (Side)",
  49335. image: {
  49336. source: "./media/characters/jess/breasts-side.svg"
  49337. }
  49338. },
  49339. heartFront: {
  49340. height: math.unit(0.53011022622, "feet"),
  49341. name: "Heart (Front)",
  49342. image: {
  49343. source: "./media/characters/jess/heart-front.svg"
  49344. }
  49345. },
  49346. heartSide: {
  49347. height: math.unit(0.51790695213, "feet"),
  49348. name: "Heart (Side)",
  49349. image: {
  49350. source: "./media/characters/jess/heart-side.svg"
  49351. }
  49352. },
  49353. earsAndNoseFront: {
  49354. height: math.unit(0.29385483995, "feet"),
  49355. name: "Ears and Nose (Front)",
  49356. image: {
  49357. source: "./media/characters/jess/ears-and-nose-front.svg"
  49358. }
  49359. },
  49360. earsAndNoseSide: {
  49361. height: math.unit(0.18109658741, "feet"),
  49362. name: "Ears and Nose (Side)",
  49363. image: {
  49364. source: "./media/characters/jess/ears-and-nose-side.svg"
  49365. }
  49366. },
  49367. },
  49368. [
  49369. {
  49370. name: "Normal",
  49371. height: math.unit(5 + 8/12, "feet"),
  49372. default: true
  49373. },
  49374. ]
  49375. ))
  49376. characterMakers.push(() => makeCharacter(
  49377. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49378. {
  49379. front: {
  49380. height: math.unit(6, "feet"),
  49381. weight: math.unit(6.64467e-7, "grams"),
  49382. name: "Front",
  49383. image: {
  49384. source: "./media/characters/wimpering/front.svg",
  49385. extra: 597/587,
  49386. bottom: 34/631
  49387. }
  49388. },
  49389. },
  49390. [
  49391. {
  49392. name: "Micro",
  49393. height: math.unit(0.4, "mm"),
  49394. default: true
  49395. },
  49396. ]
  49397. ))
  49398. characterMakers.push(() => makeCharacter(
  49399. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49400. {
  49401. front: {
  49402. height: math.unit(5 + 2/12, "feet"),
  49403. weight: math.unit(110, "lb"),
  49404. name: "Front",
  49405. image: {
  49406. source: "./media/characters/keltre/front.svg",
  49407. extra: 1099/1057,
  49408. bottom: 22/1121
  49409. }
  49410. },
  49411. back: {
  49412. height: math.unit(5 + 2/12, "feet"),
  49413. weight: math.unit(110, "lb"),
  49414. name: "Back",
  49415. image: {
  49416. source: "./media/characters/keltre/back.svg",
  49417. extra: 1095/1053,
  49418. bottom: 17/1112
  49419. }
  49420. },
  49421. dressed: {
  49422. height: math.unit(5 + 2/12, "feet"),
  49423. weight: math.unit(110, "lb"),
  49424. name: "Dressed",
  49425. image: {
  49426. source: "./media/characters/keltre/dressed.svg",
  49427. extra: 1099/1057,
  49428. bottom: 22/1121
  49429. }
  49430. },
  49431. winter: {
  49432. height: math.unit(5 + 2/12, "feet"),
  49433. weight: math.unit(110, "lb"),
  49434. name: "Winter",
  49435. image: {
  49436. source: "./media/characters/keltre/winter.svg",
  49437. extra: 1099/1057,
  49438. bottom: 22/1121
  49439. }
  49440. },
  49441. head: {
  49442. height: math.unit(1.61 * 0.86, "feet"),
  49443. name: "Head",
  49444. image: {
  49445. source: "./media/characters/keltre/head.svg",
  49446. extra: 534/421,
  49447. bottom: 0/534
  49448. }
  49449. },
  49450. hand: {
  49451. height: math.unit(1.3 * 0.86, "feet"),
  49452. name: "Hand",
  49453. image: {
  49454. source: "./media/characters/keltre/hand.svg"
  49455. }
  49456. },
  49457. foot: {
  49458. height: math.unit(1.8 * 0.86, "feet"),
  49459. name: "Foot",
  49460. image: {
  49461. source: "./media/characters/keltre/foot.svg"
  49462. }
  49463. },
  49464. },
  49465. [
  49466. {
  49467. name: "Fine",
  49468. height: math.unit(1, "inch")
  49469. },
  49470. {
  49471. name: "Dimnutive",
  49472. height: math.unit(4, "inches")
  49473. },
  49474. {
  49475. name: "Tiny",
  49476. height: math.unit(1, "foot")
  49477. },
  49478. {
  49479. name: "Small",
  49480. height: math.unit(3, "feet")
  49481. },
  49482. {
  49483. name: "Normal",
  49484. height: math.unit(5 + 2/12, "feet"),
  49485. default: true
  49486. },
  49487. ]
  49488. ))
  49489. characterMakers.push(() => makeCharacter(
  49490. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49491. {
  49492. front: {
  49493. height: math.unit(6 + 2/12, "feet"),
  49494. name: "Front",
  49495. image: {
  49496. source: "./media/characters/nox/front.svg",
  49497. extra: 1917/1830,
  49498. bottom: 74/1991
  49499. }
  49500. },
  49501. back: {
  49502. height: math.unit(6 + 2/12, "feet"),
  49503. name: "Back",
  49504. image: {
  49505. source: "./media/characters/nox/back.svg",
  49506. extra: 1896/1815,
  49507. bottom: 21/1917
  49508. }
  49509. },
  49510. head: {
  49511. height: math.unit(1.1, "feet"),
  49512. name: "Head",
  49513. image: {
  49514. source: "./media/characters/nox/head.svg",
  49515. extra: 874/704,
  49516. bottom: 0/874
  49517. }
  49518. },
  49519. tattoo: {
  49520. height: math.unit(0.729, "feet"),
  49521. name: "Tattoo",
  49522. image: {
  49523. source: "./media/characters/nox/tattoo.svg"
  49524. }
  49525. },
  49526. },
  49527. [
  49528. {
  49529. name: "Normal",
  49530. height: math.unit(6 + 2/12, "feet")
  49531. },
  49532. {
  49533. name: "Gigamacro",
  49534. height: math.unit(2, "earths"),
  49535. default: true
  49536. },
  49537. {
  49538. name: "Cosmic",
  49539. height: math.unit(867, "yottameters")
  49540. },
  49541. ]
  49542. ))
  49543. characterMakers.push(() => makeCharacter(
  49544. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49545. {
  49546. front: {
  49547. height: math.unit(6, "feet"),
  49548. weight: math.unit(150, "lb"),
  49549. name: "Front",
  49550. image: {
  49551. source: "./media/characters/caspian/front.svg",
  49552. extra: 1443/1359,
  49553. bottom: 0/1443
  49554. }
  49555. },
  49556. back: {
  49557. height: math.unit(6, "feet"),
  49558. weight: math.unit(150, "lb"),
  49559. name: "Back",
  49560. image: {
  49561. source: "./media/characters/caspian/back.svg",
  49562. extra: 1379/1309,
  49563. bottom: 0/1379
  49564. }
  49565. },
  49566. head: {
  49567. height: math.unit(0.9, "feet"),
  49568. name: "Head",
  49569. image: {
  49570. source: "./media/characters/caspian/head.svg",
  49571. extra: 692/492,
  49572. bottom: 0/692
  49573. }
  49574. },
  49575. headAlt: {
  49576. height: math.unit(0.95, "feet"),
  49577. name: "Head (Alt)",
  49578. image: {
  49579. source: "./media/characters/caspian/head-alt.svg",
  49580. extra: 668/508,
  49581. bottom: 0/668
  49582. }
  49583. },
  49584. hand: {
  49585. height: math.unit(0.8, "feet"),
  49586. name: "Hand",
  49587. image: {
  49588. source: "./media/characters/caspian/hand.svg"
  49589. }
  49590. },
  49591. paw: {
  49592. height: math.unit(0.95, "feet"),
  49593. name: "Paw",
  49594. image: {
  49595. source: "./media/characters/caspian/paw.svg"
  49596. }
  49597. },
  49598. },
  49599. [
  49600. {
  49601. name: "Normal",
  49602. height: math.unit(162, "feet"),
  49603. default: true
  49604. },
  49605. ]
  49606. ))
  49607. characterMakers.push(() => makeCharacter(
  49608. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49609. {
  49610. front: {
  49611. height: math.unit(6, "feet"),
  49612. name: "Front",
  49613. image: {
  49614. source: "./media/characters/myra-aisling/front.svg",
  49615. extra: 1268/1166,
  49616. bottom: 73/1341
  49617. }
  49618. },
  49619. back: {
  49620. height: math.unit(6, "feet"),
  49621. name: "Back",
  49622. image: {
  49623. source: "./media/characters/myra-aisling/back.svg",
  49624. extra: 1249/1149,
  49625. bottom: 79/1328
  49626. }
  49627. },
  49628. dressed: {
  49629. height: math.unit(6, "feet"),
  49630. name: "Dressed",
  49631. image: {
  49632. source: "./media/characters/myra-aisling/dressed.svg",
  49633. extra: 1290/1189,
  49634. bottom: 47/1337
  49635. }
  49636. },
  49637. hand: {
  49638. height: math.unit(1.1, "feet"),
  49639. name: "Hand",
  49640. image: {
  49641. source: "./media/characters/myra-aisling/hand.svg"
  49642. }
  49643. },
  49644. paw: {
  49645. height: math.unit(1.23, "feet"),
  49646. name: "Paw",
  49647. image: {
  49648. source: "./media/characters/myra-aisling/paw.svg"
  49649. }
  49650. },
  49651. },
  49652. [
  49653. {
  49654. name: "Normal",
  49655. height: math.unit(160, "feet"),
  49656. default: true
  49657. },
  49658. ]
  49659. ))
  49660. characterMakers.push(() => makeCharacter(
  49661. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  49662. {
  49663. front: {
  49664. height: math.unit(6, "feet"),
  49665. name: "Front",
  49666. image: {
  49667. source: "./media/characters/tenley-sidero/front.svg",
  49668. extra: 1365/1276,
  49669. bottom: 47/1412
  49670. }
  49671. },
  49672. back: {
  49673. height: math.unit(6, "feet"),
  49674. name: "Back",
  49675. image: {
  49676. source: "./media/characters/tenley-sidero/back.svg",
  49677. extra: 1383/1283,
  49678. bottom: 35/1418
  49679. }
  49680. },
  49681. dressed: {
  49682. height: math.unit(6, "feet"),
  49683. name: "Dressed",
  49684. image: {
  49685. source: "./media/characters/tenley-sidero/dressed.svg",
  49686. extra: 1364/1275,
  49687. bottom: 42/1406
  49688. }
  49689. },
  49690. head: {
  49691. height: math.unit(1.47, "feet"),
  49692. name: "Head",
  49693. image: {
  49694. source: "./media/characters/tenley-sidero/head.svg",
  49695. extra: 610/490,
  49696. bottom: 0/610
  49697. }
  49698. },
  49699. },
  49700. [
  49701. {
  49702. name: "Normal",
  49703. height: math.unit(154, "feet"),
  49704. default: true
  49705. },
  49706. ]
  49707. ))
  49708. characterMakers.push(() => makeCharacter(
  49709. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49710. {
  49711. front: {
  49712. height: math.unit(5, "inches"),
  49713. name: "Front",
  49714. image: {
  49715. source: "./media/characters/mallory/front.svg",
  49716. extra: 1919/1678,
  49717. bottom: 29/1948
  49718. }
  49719. },
  49720. hand: {
  49721. height: math.unit(0.73, "inches"),
  49722. name: "Hand",
  49723. image: {
  49724. source: "./media/characters/mallory/hand.svg"
  49725. }
  49726. },
  49727. paw: {
  49728. height: math.unit(0.68, "inches"),
  49729. name: "Paw",
  49730. image: {
  49731. source: "./media/characters/mallory/paw.svg"
  49732. }
  49733. },
  49734. },
  49735. [
  49736. {
  49737. name: "Small",
  49738. height: math.unit(5, "inches"),
  49739. default: true
  49740. },
  49741. ]
  49742. ))
  49743. characterMakers.push(() => makeCharacter(
  49744. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49745. {
  49746. naked: {
  49747. height: math.unit(6, "feet"),
  49748. name: "Naked",
  49749. image: {
  49750. source: "./media/characters/mab/naked.svg",
  49751. extra: 1855/1757,
  49752. bottom: 208/2063
  49753. }
  49754. },
  49755. outside: {
  49756. height: math.unit(6, "feet"),
  49757. name: "Outside",
  49758. image: {
  49759. source: "./media/characters/mab/outside.svg",
  49760. extra: 1855/1757,
  49761. bottom: 208/2063
  49762. }
  49763. },
  49764. party: {
  49765. height: math.unit(6, "feet"),
  49766. name: "Party",
  49767. image: {
  49768. source: "./media/characters/mab/party.svg",
  49769. extra: 1855/1757,
  49770. bottom: 208/2063
  49771. }
  49772. },
  49773. },
  49774. [
  49775. {
  49776. name: "Normal",
  49777. height: math.unit(165, "feet"),
  49778. default: true
  49779. },
  49780. ]
  49781. ))
  49782. characterMakers.push(() => makeCharacter(
  49783. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49784. {
  49785. feral: {
  49786. height: math.unit(12, "feet"),
  49787. weight: math.unit(20000, "lb"),
  49788. name: "Side",
  49789. image: {
  49790. source: "./media/characters/winter/feral.svg",
  49791. extra: 1286/943,
  49792. bottom: 112/1398
  49793. },
  49794. form: "feral",
  49795. default: true
  49796. },
  49797. feralNsfw: {
  49798. height: math.unit(12, "feet"),
  49799. weight: math.unit(20000, "lb"),
  49800. name: "Side (NSFW)",
  49801. image: {
  49802. source: "./media/characters/winter/feral-nsfw.svg",
  49803. extra: 1286/943,
  49804. bottom: 112/1398
  49805. },
  49806. form: "feral"
  49807. },
  49808. dick: {
  49809. height: math.unit(3.79, "feet"),
  49810. name: "Dick",
  49811. image: {
  49812. source: "./media/characters/winter/dick.svg"
  49813. },
  49814. form: "feral"
  49815. },
  49816. anthro: {
  49817. height: math.unit(12, "feet"),
  49818. weight: math.unit(10, "tons"),
  49819. name: "Anthro",
  49820. image: {
  49821. source: "./media/characters/winter/anthro.svg",
  49822. extra: 1701/1553,
  49823. bottom: 64/1765
  49824. },
  49825. form: "anthro",
  49826. default: true
  49827. },
  49828. },
  49829. [
  49830. {
  49831. name: "Big",
  49832. height: math.unit(12, "feet"),
  49833. default: true,
  49834. form: "feral"
  49835. },
  49836. {
  49837. name: "Big",
  49838. height: math.unit(12, "feet"),
  49839. default: true,
  49840. form: "anthro"
  49841. },
  49842. ],
  49843. {
  49844. "feral": {
  49845. name: "Feral",
  49846. default: true
  49847. },
  49848. "anthro": {
  49849. name: "Anthro"
  49850. }
  49851. }
  49852. ))
  49853. characterMakers.push(() => makeCharacter(
  49854. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49855. {
  49856. front: {
  49857. height: math.unit(4.1, "inches"),
  49858. name: "Front",
  49859. image: {
  49860. source: "./media/characters/alto/front.svg",
  49861. extra: 736/627,
  49862. bottom: 90/826
  49863. }
  49864. },
  49865. },
  49866. [
  49867. {
  49868. name: "Normal",
  49869. height: math.unit(4.1, "inches"),
  49870. default: true
  49871. },
  49872. ]
  49873. ))
  49874. characterMakers.push(() => makeCharacter(
  49875. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49876. {
  49877. sitting: {
  49878. height: math.unit(3, "feet"),
  49879. name: "Sitting",
  49880. image: {
  49881. source: "./media/characters/ratstrid-v/sitting.svg",
  49882. extra: 355/310,
  49883. bottom: 136/491
  49884. }
  49885. },
  49886. },
  49887. [
  49888. {
  49889. name: "Normal",
  49890. height: math.unit(3, "feet"),
  49891. default: true
  49892. },
  49893. ]
  49894. ))
  49895. characterMakers.push(() => makeCharacter(
  49896. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49897. {
  49898. back: {
  49899. height: math.unit(6, "feet"),
  49900. weight: math.unit(350, "lb"),
  49901. name: "Back",
  49902. image: {
  49903. source: "./media/characters/siz/back.svg",
  49904. extra: 1449/1274,
  49905. bottom: 13/1462
  49906. }
  49907. },
  49908. },
  49909. [
  49910. {
  49911. name: "Over-Overcompressed",
  49912. height: math.unit(8, "feet")
  49913. },
  49914. {
  49915. name: "Overcompressed",
  49916. height: math.unit(32, "feet")
  49917. },
  49918. {
  49919. name: "Compressed",
  49920. height: math.unit(128, "feet"),
  49921. default: true
  49922. },
  49923. {
  49924. name: "Half-Compressed",
  49925. height: math.unit(512, "feet")
  49926. },
  49927. {
  49928. name: "Quarter-Compressed",
  49929. height: math.unit(2048, "feet")
  49930. },
  49931. {
  49932. name: "Uncompressed?",
  49933. height: math.unit(8192, "feet")
  49934. },
  49935. ]
  49936. ))
  49937. characterMakers.push(() => makeCharacter(
  49938. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  49939. {
  49940. front: {
  49941. height: math.unit(5 + 9/12, "feet"),
  49942. weight: math.unit(150, "lb"),
  49943. name: "Front",
  49944. image: {
  49945. source: "./media/characters/ven/front.svg",
  49946. extra: 1372/1320,
  49947. bottom: 73/1445
  49948. }
  49949. },
  49950. side: {
  49951. height: math.unit(5 + 9/12, "feet"),
  49952. weight: math.unit(1150, "lb"),
  49953. name: "Side",
  49954. image: {
  49955. source: "./media/characters/ven/side.svg",
  49956. extra: 1119/1070,
  49957. bottom: 42/1161
  49958. },
  49959. default: true
  49960. },
  49961. },
  49962. [
  49963. {
  49964. name: "Normal",
  49965. height: math.unit(5 + 9/12, "feet"),
  49966. default: true
  49967. },
  49968. ]
  49969. ))
  49970. characterMakers.push(() => makeCharacter(
  49971. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  49972. {
  49973. front: {
  49974. height: math.unit(12, "feet"),
  49975. weight: math.unit(1000, "kg"),
  49976. name: "Front",
  49977. image: {
  49978. source: "./media/characters/maple/front.svg",
  49979. extra: 1193/1081,
  49980. bottom: 22/1215
  49981. }
  49982. },
  49983. },
  49984. [
  49985. {
  49986. name: "Compressed",
  49987. height: math.unit(7, "feet")
  49988. },
  49989. {
  49990. name: "Normal",
  49991. height: math.unit(12, "feet"),
  49992. default: true
  49993. },
  49994. ]
  49995. ))
  49996. characterMakers.push(() => makeCharacter(
  49997. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  49998. {
  49999. front: {
  50000. height: math.unit(9, "feet"),
  50001. weight: math.unit(1500, "lb"),
  50002. name: "Front",
  50003. image: {
  50004. source: "./media/characters/nora/front.svg",
  50005. extra: 1348/1286,
  50006. bottom: 218/1566
  50007. }
  50008. },
  50009. erect: {
  50010. height: math.unit(9, "feet"),
  50011. weight: math.unit(11500, "lb"),
  50012. name: "Erect",
  50013. image: {
  50014. source: "./media/characters/nora/erect.svg",
  50015. extra: 1488/1433,
  50016. bottom: 133/1621
  50017. }
  50018. },
  50019. },
  50020. [
  50021. {
  50022. name: "Normal",
  50023. height: math.unit(9, "feet"),
  50024. default: true
  50025. },
  50026. ]
  50027. ))
  50028. characterMakers.push(() => makeCharacter(
  50029. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50030. {
  50031. front: {
  50032. height: math.unit(25, "feet"),
  50033. weight: math.unit(27500, "lb"),
  50034. name: "Front",
  50035. image: {
  50036. source: "./media/characters/north-caudin/front.svg",
  50037. extra: 1184/1082,
  50038. bottom: 23/1207
  50039. }
  50040. },
  50041. },
  50042. [
  50043. {
  50044. name: "Compressed",
  50045. height: math.unit(10, "feet")
  50046. },
  50047. {
  50048. name: "Normal",
  50049. height: math.unit(25, "feet"),
  50050. default: true
  50051. },
  50052. ]
  50053. ))
  50054. characterMakers.push(() => makeCharacter(
  50055. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50056. {
  50057. front: {
  50058. height: math.unit(9, "feet"),
  50059. weight: math.unit(1250, "lb"),
  50060. name: "Front",
  50061. image: {
  50062. source: "./media/characters/merrian/front.svg",
  50063. extra: 2393/2304,
  50064. bottom: 40/2433
  50065. }
  50066. },
  50067. },
  50068. [
  50069. {
  50070. name: "Normal",
  50071. height: math.unit(9, "feet"),
  50072. default: true
  50073. },
  50074. ]
  50075. ))
  50076. characterMakers.push(() => makeCharacter(
  50077. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50078. {
  50079. front: {
  50080. height: math.unit(9, "feet"),
  50081. weight: math.unit(1000, "lb"),
  50082. name: "Front",
  50083. image: {
  50084. source: "./media/characters/hazel/front.svg",
  50085. extra: 2351/2298,
  50086. bottom: 38/2389
  50087. }
  50088. },
  50089. },
  50090. [
  50091. {
  50092. name: "Normal",
  50093. height: math.unit(9, "feet"),
  50094. default: true
  50095. },
  50096. ]
  50097. ))
  50098. characterMakers.push(() => makeCharacter(
  50099. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50100. {
  50101. front: {
  50102. height: math.unit(13, "feet"),
  50103. weight: math.unit(3200, "lb"),
  50104. name: "Front",
  50105. image: {
  50106. source: "./media/characters/emma/front.svg",
  50107. extra: 2263/2029,
  50108. bottom: 68/2331
  50109. }
  50110. },
  50111. },
  50112. [
  50113. {
  50114. name: "Normal",
  50115. height: math.unit(13, "feet"),
  50116. default: true
  50117. },
  50118. ]
  50119. ))
  50120. characterMakers.push(() => makeCharacter(
  50121. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50122. {
  50123. front: {
  50124. height: math.unit(11 + 9/12, "feet"),
  50125. weight: math.unit(2500, "lb"),
  50126. name: "Front",
  50127. image: {
  50128. source: "./media/characters/ilumina/front.svg",
  50129. extra: 2248/2209,
  50130. bottom: 164/2412
  50131. }
  50132. },
  50133. },
  50134. [
  50135. {
  50136. name: "Normal",
  50137. height: math.unit(11 + 9/12, "feet"),
  50138. default: true
  50139. },
  50140. ]
  50141. ))
  50142. characterMakers.push(() => makeCharacter(
  50143. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50144. {
  50145. front: {
  50146. height: math.unit(8 + 10/12, "feet"),
  50147. weight: math.unit(1350, "lb"),
  50148. name: "Front",
  50149. image: {
  50150. source: "./media/characters/moonshine/front.svg",
  50151. extra: 2395/2288,
  50152. bottom: 40/2435
  50153. }
  50154. },
  50155. },
  50156. [
  50157. {
  50158. name: "Normal",
  50159. height: math.unit(8 + 10/12, "feet"),
  50160. default: true
  50161. },
  50162. ]
  50163. ))
  50164. characterMakers.push(() => makeCharacter(
  50165. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50166. {
  50167. front: {
  50168. height: math.unit(14, "feet"),
  50169. weight: math.unit(3400, "lb"),
  50170. name: "Front",
  50171. image: {
  50172. source: "./media/characters/aletia/front.svg",
  50173. extra: 1185/1052,
  50174. bottom: 21/1206
  50175. }
  50176. },
  50177. },
  50178. [
  50179. {
  50180. name: "Compressed",
  50181. height: math.unit(8, "feet")
  50182. },
  50183. {
  50184. name: "Normal",
  50185. height: math.unit(14, "feet"),
  50186. default: true
  50187. },
  50188. ]
  50189. ))
  50190. characterMakers.push(() => makeCharacter(
  50191. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50192. {
  50193. front: {
  50194. height: math.unit(17, "feet"),
  50195. weight: math.unit(6500, "lb"),
  50196. name: "Front",
  50197. image: {
  50198. source: "./media/characters/deidra/front.svg",
  50199. extra: 1201/1081,
  50200. bottom: 16/1217
  50201. }
  50202. },
  50203. },
  50204. [
  50205. {
  50206. name: "Compressed",
  50207. height: math.unit(9 + 6/12, "feet")
  50208. },
  50209. {
  50210. name: "Normal",
  50211. height: math.unit(17, "feet"),
  50212. default: true
  50213. },
  50214. ]
  50215. ))
  50216. characterMakers.push(() => makeCharacter(
  50217. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50218. {
  50219. front: {
  50220. height: math.unit(7 + 4/12, "feet"),
  50221. weight: math.unit(280, "lb"),
  50222. name: "Front",
  50223. image: {
  50224. source: "./media/characters/freki-yrmori/front.svg",
  50225. extra: 1286/1182,
  50226. bottom: 29/1315
  50227. }
  50228. },
  50229. maw: {
  50230. height: math.unit(0.9, "feet"),
  50231. name: "Maw",
  50232. image: {
  50233. source: "./media/characters/freki-yrmori/maw.svg"
  50234. }
  50235. },
  50236. },
  50237. [
  50238. {
  50239. name: "Normal",
  50240. height: math.unit(7 + 4/12, "feet"),
  50241. default: true
  50242. },
  50243. {
  50244. name: "Macro",
  50245. height: math.unit(38.5, "meters")
  50246. },
  50247. ]
  50248. ))
  50249. characterMakers.push(() => makeCharacter(
  50250. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50251. {
  50252. side: {
  50253. height: math.unit(47.2, "meters"),
  50254. weight: math.unit(10000, "tons"),
  50255. name: "Side",
  50256. image: {
  50257. source: "./media/characters/aetherios/side.svg",
  50258. extra: 2363/642,
  50259. bottom: 221/2584
  50260. }
  50261. },
  50262. top: {
  50263. height: math.unit(240, "meters"),
  50264. weight: math.unit(10000, "tons"),
  50265. name: "Top",
  50266. image: {
  50267. source: "./media/characters/aetherios/top.svg"
  50268. }
  50269. },
  50270. bottom: {
  50271. height: math.unit(240, "meters"),
  50272. weight: math.unit(10000, "tons"),
  50273. name: "Bottom",
  50274. image: {
  50275. source: "./media/characters/aetherios/bottom.svg"
  50276. }
  50277. },
  50278. head: {
  50279. height: math.unit(38.6, "meters"),
  50280. name: "Head",
  50281. image: {
  50282. source: "./media/characters/aetherios/head.svg",
  50283. extra: 1335/1112,
  50284. bottom: 0/1335
  50285. }
  50286. },
  50287. front: {
  50288. height: math.unit(29, "meters"),
  50289. name: "Front",
  50290. image: {
  50291. source: "./media/characters/aetherios/front.svg",
  50292. extra: 1266/953,
  50293. bottom: 158/1424
  50294. }
  50295. },
  50296. maw: {
  50297. height: math.unit(16.37, "meters"),
  50298. name: "Maw",
  50299. image: {
  50300. source: "./media/characters/aetherios/maw.svg",
  50301. extra: 748/637,
  50302. bottom: 0/748
  50303. },
  50304. extraAttributes: {
  50305. preyCapacity: {
  50306. name: "Capacity",
  50307. power: 3,
  50308. type: "volume",
  50309. base: math.unit(1000, "people")
  50310. },
  50311. tongueSize: {
  50312. name: "Tongue Size",
  50313. power: 2,
  50314. type: "area",
  50315. base: math.unit(21, "m^2")
  50316. }
  50317. }
  50318. },
  50319. forepaw: {
  50320. height: math.unit(18, "meters"),
  50321. name: "Forepaw",
  50322. image: {
  50323. source: "./media/characters/aetherios/forepaw.svg"
  50324. }
  50325. },
  50326. hindpaw: {
  50327. height: math.unit(23, "meters"),
  50328. name: "Hindpaw",
  50329. image: {
  50330. source: "./media/characters/aetherios/hindpaw.svg"
  50331. }
  50332. },
  50333. genitals: {
  50334. height: math.unit(42, "meters"),
  50335. name: "Genitals",
  50336. image: {
  50337. source: "./media/characters/aetherios/genitals.svg"
  50338. }
  50339. },
  50340. },
  50341. [
  50342. {
  50343. name: "Normal",
  50344. height: math.unit(47.2, "meters"),
  50345. default: true
  50346. },
  50347. {
  50348. name: "Macro",
  50349. height: math.unit(160, "meters")
  50350. },
  50351. {
  50352. name: "Mega",
  50353. height: math.unit(1.87, "km")
  50354. },
  50355. {
  50356. name: "Giga",
  50357. height: math.unit(40000, "km")
  50358. },
  50359. {
  50360. name: "Stellar",
  50361. height: math.unit(158000000, "km")
  50362. },
  50363. {
  50364. name: "Cosmic",
  50365. height: math.unit(9.46e12, "km")
  50366. },
  50367. ]
  50368. ))
  50369. characterMakers.push(() => makeCharacter(
  50370. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50371. {
  50372. front: {
  50373. height: math.unit(5 + 4/12, "feet"),
  50374. weight: math.unit(80, "lb"),
  50375. name: "Front",
  50376. image: {
  50377. source: "./media/characters/mizu-gieeg/front.svg",
  50378. extra: 850/709,
  50379. bottom: 52/902
  50380. }
  50381. },
  50382. back: {
  50383. height: math.unit(5 + 4/12, "feet"),
  50384. weight: math.unit(80, "lb"),
  50385. name: "Back",
  50386. image: {
  50387. source: "./media/characters/mizu-gieeg/back.svg",
  50388. extra: 882/745,
  50389. bottom: 25/907
  50390. }
  50391. },
  50392. },
  50393. [
  50394. {
  50395. name: "Normal",
  50396. height: math.unit(5 + 4/12, "feet"),
  50397. default: true
  50398. },
  50399. ]
  50400. ))
  50401. characterMakers.push(() => makeCharacter(
  50402. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50403. {
  50404. front: {
  50405. height: math.unit(6, "feet"),
  50406. name: "Front",
  50407. image: {
  50408. source: "./media/characters/roselle-st-papier/front.svg",
  50409. extra: 1430/1280,
  50410. bottom: 37/1467
  50411. }
  50412. },
  50413. back: {
  50414. height: math.unit(6, "feet"),
  50415. name: "Back",
  50416. image: {
  50417. source: "./media/characters/roselle-st-papier/back.svg",
  50418. extra: 1491/1296,
  50419. bottom: 23/1514
  50420. }
  50421. },
  50422. ear: {
  50423. height: math.unit(1.26, "feet"),
  50424. name: "Ear",
  50425. image: {
  50426. source: "./media/characters/roselle-st-papier/ear.svg"
  50427. }
  50428. },
  50429. },
  50430. [
  50431. {
  50432. name: "Normal",
  50433. height: math.unit(150, "feet"),
  50434. default: true
  50435. },
  50436. ]
  50437. ))
  50438. characterMakers.push(() => makeCharacter(
  50439. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50440. {
  50441. front: {
  50442. height: math.unit(1, "inches"),
  50443. name: "Front",
  50444. image: {
  50445. source: "./media/characters/valargent/front.svg",
  50446. extra: 1825/1694,
  50447. bottom: 62/1887
  50448. }
  50449. },
  50450. back: {
  50451. height: math.unit(1, "inches"),
  50452. name: "Back",
  50453. image: {
  50454. source: "./media/characters/valargent/back.svg",
  50455. extra: 1775/1682,
  50456. bottom: 88/1863
  50457. }
  50458. },
  50459. },
  50460. [
  50461. {
  50462. name: "Micro",
  50463. height: math.unit(1, "inch"),
  50464. default: true
  50465. },
  50466. ]
  50467. ))
  50468. characterMakers.push(() => makeCharacter(
  50469. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50470. {
  50471. front: {
  50472. height: math.unit(3.4, "meters"),
  50473. name: "Front",
  50474. image: {
  50475. source: "./media/characters/zarina/front.svg",
  50476. extra: 1733/1425,
  50477. bottom: 93/1826
  50478. }
  50479. },
  50480. squatting: {
  50481. height: math.unit(2.14, "meters"),
  50482. name: "Squatting",
  50483. image: {
  50484. source: "./media/characters/zarina/squatting.svg",
  50485. extra: 1073/788,
  50486. bottom: 63/1136
  50487. }
  50488. },
  50489. back: {
  50490. height: math.unit(2.14, "meters"),
  50491. name: "Back",
  50492. image: {
  50493. source: "./media/characters/zarina/back.svg",
  50494. extra: 1128/885,
  50495. bottom: 0/1128
  50496. }
  50497. },
  50498. },
  50499. [
  50500. {
  50501. name: "Normal",
  50502. height: math.unit(3.4, "meters"),
  50503. default: true
  50504. },
  50505. {
  50506. name: "Big",
  50507. height: math.unit(5, "meters")
  50508. },
  50509. {
  50510. name: "Macro",
  50511. height: math.unit(110, "meters")
  50512. },
  50513. ]
  50514. ))
  50515. characterMakers.push(() => makeCharacter(
  50516. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50517. {
  50518. front: {
  50519. height: math.unit(7, "feet"),
  50520. name: "Front",
  50521. image: {
  50522. source: "./media/characters/ventus-astro-fox/front.svg",
  50523. extra: 1792/1623,
  50524. bottom: 28/1820
  50525. }
  50526. },
  50527. back: {
  50528. height: math.unit(7, "feet"),
  50529. name: "Back",
  50530. image: {
  50531. source: "./media/characters/ventus-astro-fox/back.svg",
  50532. extra: 1789/1620,
  50533. bottom: 31/1820
  50534. }
  50535. },
  50536. outfit: {
  50537. height: math.unit(7, "feet"),
  50538. name: "Outfit",
  50539. image: {
  50540. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50541. extra: 1054/925,
  50542. bottom: 15/1069
  50543. }
  50544. },
  50545. head: {
  50546. height: math.unit(1.12, "feet"),
  50547. name: "Head",
  50548. image: {
  50549. source: "./media/characters/ventus-astro-fox/head.svg",
  50550. extra: 866/504,
  50551. bottom: 0/866
  50552. }
  50553. },
  50554. hand: {
  50555. height: math.unit(1, "feet"),
  50556. name: "Hand",
  50557. image: {
  50558. source: "./media/characters/ventus-astro-fox/hand.svg"
  50559. }
  50560. },
  50561. paw: {
  50562. height: math.unit(1.5, "feet"),
  50563. name: "Paw",
  50564. image: {
  50565. source: "./media/characters/ventus-astro-fox/paw.svg"
  50566. }
  50567. },
  50568. },
  50569. [
  50570. {
  50571. name: "Normal",
  50572. height: math.unit(7, "feet"),
  50573. default: true
  50574. },
  50575. {
  50576. name: "Macro",
  50577. height: math.unit(200, "feet")
  50578. },
  50579. {
  50580. name: "Cosmic",
  50581. height: math.unit(3, "universes")
  50582. },
  50583. ]
  50584. ))
  50585. characterMakers.push(() => makeCharacter(
  50586. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50587. {
  50588. front: {
  50589. height: math.unit(3, "meters"),
  50590. weight: math.unit(7000, "lb"),
  50591. name: "Front",
  50592. image: {
  50593. source: "./media/characters/core-t/front.svg",
  50594. extra: 5729/4941,
  50595. bottom: 1129/6858
  50596. }
  50597. },
  50598. },
  50599. [
  50600. {
  50601. name: "Big",
  50602. height: math.unit(3, "meters"),
  50603. default: true
  50604. },
  50605. ]
  50606. ))
  50607. characterMakers.push(() => makeCharacter(
  50608. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50609. {
  50610. normal: {
  50611. height: math.unit(6 + 6/12, "feet"),
  50612. weight: math.unit(275, "lb"),
  50613. name: "Front",
  50614. image: {
  50615. source: "./media/characters/cadbunny/normal.svg",
  50616. extra: 1129/947,
  50617. bottom: 93/1222
  50618. },
  50619. default: true,
  50620. form: "normal"
  50621. },
  50622. gigantamax: {
  50623. height: math.unit(26, "feet"),
  50624. weight: math.unit(16000, "lb"),
  50625. name: "Front",
  50626. image: {
  50627. source: "./media/characters/cadbunny/gigantamax.svg",
  50628. extra: 1133/944,
  50629. bottom: 90/1223
  50630. },
  50631. default: true,
  50632. form: "gigantamax"
  50633. },
  50634. },
  50635. [
  50636. {
  50637. name: "Normal",
  50638. height: math.unit(6 + 6/12, "feet"),
  50639. default: true,
  50640. form: "normal"
  50641. },
  50642. {
  50643. name: "Small",
  50644. height: math.unit(26, "feet"),
  50645. default: true,
  50646. form: "gigantamax"
  50647. },
  50648. {
  50649. name: "Large",
  50650. height: math.unit(78, "feet"),
  50651. form: "gigantamax"
  50652. },
  50653. ],
  50654. {
  50655. "normal": {
  50656. name: "Normal",
  50657. default: true
  50658. },
  50659. "gigantamax": {
  50660. name: "Gigantamax"
  50661. }
  50662. }
  50663. ))
  50664. characterMakers.push(() => makeCharacter(
  50665. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  50666. {
  50667. anthroFront: {
  50668. height: math.unit(8, "feet"),
  50669. weight: math.unit(300, "lb"),
  50670. name: "Front",
  50671. image: {
  50672. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  50673. extra: 1272/1176,
  50674. bottom: 53/1325
  50675. },
  50676. form: "anthro",
  50677. default: true
  50678. },
  50679. feralSide: {
  50680. height: math.unit(4, "feet"),
  50681. weight: math.unit(250, "lb"),
  50682. name: "Side",
  50683. image: {
  50684. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  50685. extra: 731/621,
  50686. bottom: 0/731
  50687. },
  50688. form: "feral",
  50689. default: true
  50690. },
  50691. },
  50692. [
  50693. {
  50694. name: "Regular",
  50695. height: math.unit(8, "feet"),
  50696. form: "anthro"
  50697. },
  50698. {
  50699. name: "Macro",
  50700. height: math.unit(250, "feet"),
  50701. form: "anthro",
  50702. default: true
  50703. },
  50704. {
  50705. name: "Regular",
  50706. height: math.unit(4, "feet"),
  50707. form: "feral"
  50708. },
  50709. {
  50710. name: "Macro",
  50711. height: math.unit(125, "feet"),
  50712. form: "feral",
  50713. default: true
  50714. },
  50715. ],
  50716. {
  50717. "anthro": {
  50718. name: "Anthro",
  50719. default: true
  50720. },
  50721. "feral": {
  50722. name: "Feral",
  50723. },
  50724. }
  50725. ))
  50726. characterMakers.push(() => makeCharacter(
  50727. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  50728. {
  50729. front: {
  50730. height: math.unit(11 + 10/12, "feet"),
  50731. weight: math.unit(1587, "kg"),
  50732. name: "Front",
  50733. image: {
  50734. source: "./media/characters/maple-javira-dragon/front.svg",
  50735. extra: 1136/744,
  50736. bottom: 73/1209
  50737. }
  50738. },
  50739. side: {
  50740. height: math.unit(11 + 10/12, "feet"),
  50741. weight: math.unit(1587, "kg"),
  50742. name: "Side",
  50743. image: {
  50744. source: "./media/characters/maple-javira-dragon/side.svg",
  50745. extra: 712/505,
  50746. bottom: 17/729
  50747. }
  50748. },
  50749. head: {
  50750. height: math.unit(8.05, "feet"),
  50751. name: "Head",
  50752. image: {
  50753. source: "./media/characters/maple-javira-dragon/head.svg",
  50754. extra: 1420/1344,
  50755. bottom: 0/1420
  50756. }
  50757. },
  50758. },
  50759. [
  50760. {
  50761. name: "Normal",
  50762. height: math.unit(11 + 10/12, "feet"),
  50763. default: true
  50764. },
  50765. ]
  50766. ))
  50767. characterMakers.push(() => makeCharacter(
  50768. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  50769. {
  50770. front: {
  50771. height: math.unit(117, "cm"),
  50772. weight: math.unit(50, "kg"),
  50773. name: "Front",
  50774. image: {
  50775. source: "./media/characters/sonia-wyverntail/front.svg",
  50776. extra: 708/592,
  50777. bottom: 25/733
  50778. }
  50779. },
  50780. },
  50781. [
  50782. {
  50783. name: "Normal",
  50784. height: math.unit(117, "cm"),
  50785. default: true
  50786. },
  50787. ]
  50788. ))
  50789. characterMakers.push(() => makeCharacter(
  50790. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  50791. {
  50792. front: {
  50793. height: math.unit(6 + 5/12, "feet"),
  50794. name: "Front",
  50795. image: {
  50796. source: "./media/characters/micah/front.svg",
  50797. extra: 1758/1546,
  50798. bottom: 214/1972
  50799. }
  50800. },
  50801. },
  50802. [
  50803. {
  50804. name: "Normal",
  50805. height: math.unit(6 + 5/12, "feet"),
  50806. default: true
  50807. },
  50808. ]
  50809. ))
  50810. characterMakers.push(() => makeCharacter(
  50811. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  50812. {
  50813. front: {
  50814. height: math.unit(5 + 10/12, "feet"),
  50815. weight: math.unit(220, "lb"),
  50816. name: "Front",
  50817. image: {
  50818. source: "./media/characters/zarya/front.svg",
  50819. extra: 593/572,
  50820. bottom: 50/643
  50821. }
  50822. },
  50823. back: {
  50824. height: math.unit(5 + 10/12, "feet"),
  50825. weight: math.unit(220, "lb"),
  50826. name: "Back",
  50827. image: {
  50828. source: "./media/characters/zarya/back.svg",
  50829. extra: 603/582,
  50830. bottom: 38/641
  50831. }
  50832. },
  50833. },
  50834. [
  50835. {
  50836. name: "Normal",
  50837. height: math.unit(5 + 10/12, "feet"),
  50838. default: true
  50839. },
  50840. ]
  50841. ))
  50842. characterMakers.push(() => makeCharacter(
  50843. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  50844. {
  50845. front: {
  50846. height: math.unit(7.5, "feet"),
  50847. name: "Front",
  50848. image: {
  50849. source: "./media/characters/sven-hatisson/front.svg",
  50850. extra: 917/857,
  50851. bottom: 42/959
  50852. }
  50853. },
  50854. back: {
  50855. height: math.unit(7.5, "feet"),
  50856. name: "Back",
  50857. image: {
  50858. source: "./media/characters/sven-hatisson/back.svg",
  50859. extra: 903/856,
  50860. bottom: 15/918
  50861. }
  50862. },
  50863. },
  50864. [
  50865. {
  50866. name: "Base Height",
  50867. height: math.unit(7.5, "feet")
  50868. },
  50869. {
  50870. name: "Usual Height",
  50871. height: math.unit(13.5, "feet"),
  50872. default: true
  50873. },
  50874. {
  50875. name: "Smaller Macro",
  50876. height: math.unit(85, "feet")
  50877. },
  50878. {
  50879. name: "Moderate Macro",
  50880. height: math.unit(320, "feet")
  50881. },
  50882. {
  50883. name: "Large Macro",
  50884. height: math.unit(1000, "feet")
  50885. },
  50886. {
  50887. name: "Largest Size",
  50888. height: math.unit(2, "miles")
  50889. },
  50890. ]
  50891. ))
  50892. characterMakers.push(() => makeCharacter(
  50893. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  50894. {
  50895. side: {
  50896. height: math.unit(1.8, "meters"),
  50897. weight: math.unit(275, "kg"),
  50898. name: "Side",
  50899. image: {
  50900. source: "./media/characters/terra/side.svg",
  50901. extra: 1273/1147,
  50902. bottom: 0/1273
  50903. }
  50904. },
  50905. },
  50906. [
  50907. {
  50908. name: "Normal",
  50909. height: math.unit(16.2, "meters"),
  50910. default: true
  50911. },
  50912. ]
  50913. ))
  50914. characterMakers.push(() => makeCharacter(
  50915. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  50916. {
  50917. borzoiFront: {
  50918. height: math.unit(6 + 9/12, "feet"),
  50919. name: "Front",
  50920. image: {
  50921. source: "./media/characters/rae/borzoi-front.svg",
  50922. extra: 1161/1098,
  50923. bottom: 31/1192
  50924. },
  50925. form: "borzoi",
  50926. default: true
  50927. },
  50928. werewolfFront: {
  50929. height: math.unit(8 + 7/12, "feet"),
  50930. name: "Front",
  50931. image: {
  50932. source: "./media/characters/rae/werewolf-front.svg",
  50933. extra: 1411/1334,
  50934. bottom: 127/1538
  50935. },
  50936. form: "werewolf",
  50937. default: true
  50938. },
  50939. },
  50940. [
  50941. {
  50942. name: "Normal",
  50943. height: math.unit(6 + 9/12, "feet"),
  50944. default: true,
  50945. form: "borzoi"
  50946. },
  50947. {
  50948. name: "Normal",
  50949. height: math.unit(8 + 7/12, "feet"),
  50950. default: true,
  50951. form: "werewolf"
  50952. },
  50953. ],
  50954. {
  50955. "borzoi": {
  50956. name: "Borzoi",
  50957. default: true
  50958. },
  50959. "werewolf": {
  50960. name: "Werewolf",
  50961. },
  50962. }
  50963. ))
  50964. characterMakers.push(() => makeCharacter(
  50965. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  50966. {
  50967. front: {
  50968. height: math.unit(8 + 7/12, "feet"),
  50969. weight: math.unit(482, "lb"),
  50970. name: "Front",
  50971. image: {
  50972. source: "./media/characters/kit/front.svg",
  50973. extra: 1247/1103,
  50974. bottom: 41/1288
  50975. }
  50976. },
  50977. back: {
  50978. height: math.unit(8 + 7/12, "feet"),
  50979. weight: math.unit(482, "lb"),
  50980. name: "Back",
  50981. image: {
  50982. source: "./media/characters/kit/back.svg",
  50983. extra: 1252/1123,
  50984. bottom: 21/1273
  50985. }
  50986. },
  50987. paw: {
  50988. height: math.unit(1.46, "feet"),
  50989. name: "Paw",
  50990. image: {
  50991. source: "./media/characters/kit/paw.svg"
  50992. }
  50993. },
  50994. },
  50995. [
  50996. {
  50997. name: "Normal",
  50998. height: math.unit(2.61, "meters"),
  50999. default: true
  51000. },
  51001. {
  51002. name: "\"Tall\"",
  51003. height: math.unit(8.21, "meters")
  51004. },
  51005. {
  51006. name: "Tall",
  51007. height: math.unit(19.6, "meters")
  51008. },
  51009. {
  51010. name: "Very Tall",
  51011. height: math.unit(57.91, "meters")
  51012. },
  51013. {
  51014. name: "Semi-Macro",
  51015. height: math.unit(138.64, "meters")
  51016. },
  51017. {
  51018. name: "Macro",
  51019. height: math.unit(831.99, "meters")
  51020. },
  51021. {
  51022. name: "EX-Macro",
  51023. height: math.unit(96451121, "meters")
  51024. },
  51025. {
  51026. name: "S1-Omnipotent",
  51027. height: math.unit(4.42074e+9, "meters")
  51028. },
  51029. {
  51030. name: "S2-Omnipotent",
  51031. height: math.unit(9.42074e+17, "meters")
  51032. },
  51033. {
  51034. name: "Omnipotent",
  51035. height: math.unit(4.23112e+24, "meters")
  51036. },
  51037. {
  51038. name: "Hypergod",
  51039. height: math.unit(5.05176e+27, "meters")
  51040. },
  51041. {
  51042. name: "Hypergod-EX",
  51043. height: math.unit(9.45532e+49, "meters")
  51044. },
  51045. {
  51046. name: "Hypergod-SP",
  51047. height: math.unit(9.45532e+195, "meters")
  51048. },
  51049. ]
  51050. ))
  51051. characterMakers.push(() => makeCharacter(
  51052. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51053. {
  51054. side: {
  51055. height: math.unit(0.6, "meters"),
  51056. weight: math.unit(24, "kg"),
  51057. name: "Side",
  51058. image: {
  51059. source: "./media/characters/celeste/side.svg",
  51060. extra: 810/517,
  51061. bottom: 53/863
  51062. }
  51063. },
  51064. },
  51065. [
  51066. {
  51067. name: "Velociraptor",
  51068. height: math.unit(0.6, "meters"),
  51069. default: true
  51070. },
  51071. {
  51072. name: "Utahraptor",
  51073. height: math.unit(1.8, "meters")
  51074. },
  51075. {
  51076. name: "Gallimimus",
  51077. height: math.unit(4.0, "meters")
  51078. },
  51079. {
  51080. name: "Large",
  51081. height: math.unit(20, "meters")
  51082. },
  51083. {
  51084. name: "Planetary",
  51085. height: math.unit(50, "megameters")
  51086. },
  51087. {
  51088. name: "Stellar",
  51089. height: math.unit(1.5, "gigameters")
  51090. },
  51091. {
  51092. name: "Galactic",
  51093. height: math.unit(100, "exameters")
  51094. },
  51095. ]
  51096. ))
  51097. characterMakers.push(() => makeCharacter(
  51098. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51099. {
  51100. front: {
  51101. height: math.unit(6, "feet"),
  51102. weight: math.unit(210, "lb"),
  51103. name: "Front",
  51104. image: {
  51105. source: "./media/characters/glacia/front.svg",
  51106. extra: 958/901,
  51107. bottom: 45/1003
  51108. }
  51109. },
  51110. },
  51111. [
  51112. {
  51113. name: "Macro",
  51114. height: math.unit(1000, "meters"),
  51115. default: true
  51116. },
  51117. ]
  51118. ))
  51119. characterMakers.push(() => makeCharacter(
  51120. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51121. {
  51122. front: {
  51123. height: math.unit(4, "meters"),
  51124. name: "Front",
  51125. image: {
  51126. source: "./media/characters/giri/front.svg",
  51127. extra: 966/894,
  51128. bottom: 21/987
  51129. }
  51130. },
  51131. },
  51132. [
  51133. {
  51134. name: "Normal",
  51135. height: math.unit(4, "meters"),
  51136. default: true
  51137. },
  51138. ]
  51139. ))
  51140. characterMakers.push(() => makeCharacter(
  51141. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51142. {
  51143. back: {
  51144. height: math.unit(4, "feet"),
  51145. weight: math.unit(37, "lb"),
  51146. name: "Back",
  51147. image: {
  51148. source: "./media/characters/tin/back.svg",
  51149. extra: 845/780,
  51150. bottom: 28/873
  51151. }
  51152. },
  51153. },
  51154. [
  51155. {
  51156. name: "Normal",
  51157. height: math.unit(4, "feet"),
  51158. default: true
  51159. },
  51160. ]
  51161. ))
  51162. characterMakers.push(() => makeCharacter(
  51163. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51164. {
  51165. front: {
  51166. height: math.unit(25, "feet"),
  51167. name: "Front",
  51168. image: {
  51169. source: "./media/characters/cadenza-vivace/front.svg",
  51170. extra: 1842/1578,
  51171. bottom: 30/1872
  51172. }
  51173. },
  51174. },
  51175. [
  51176. {
  51177. name: "Macro",
  51178. height: math.unit(25, "feet"),
  51179. default: true
  51180. },
  51181. ]
  51182. ))
  51183. characterMakers.push(() => makeCharacter(
  51184. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51185. {
  51186. front: {
  51187. height: math.unit(10, "feet"),
  51188. weight: math.unit(625, "kg"),
  51189. name: "Front",
  51190. image: {
  51191. source: "./media/characters/zain/front.svg",
  51192. extra: 1682/1498,
  51193. bottom: 223/1905
  51194. }
  51195. },
  51196. back: {
  51197. height: math.unit(10, "feet"),
  51198. weight: math.unit(625, "kg"),
  51199. name: "Back",
  51200. image: {
  51201. source: "./media/characters/zain/back.svg",
  51202. extra: 1814/1657,
  51203. bottom: 152/1966
  51204. }
  51205. },
  51206. head: {
  51207. height: math.unit(10, "feet"),
  51208. weight: math.unit(625, "kg"),
  51209. name: "Head",
  51210. image: {
  51211. source: "./media/characters/zain/head.svg",
  51212. extra: 1059/762,
  51213. bottom: 0/1059
  51214. }
  51215. },
  51216. },
  51217. [
  51218. {
  51219. name: "Normal",
  51220. height: math.unit(10, "feet"),
  51221. default: true
  51222. },
  51223. ]
  51224. ))
  51225. characterMakers.push(() => makeCharacter(
  51226. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51227. {
  51228. front: {
  51229. height: math.unit(6 + 5/12, "feet"),
  51230. weight: math.unit(750, "lb"),
  51231. name: "Front",
  51232. image: {
  51233. source: "./media/characters/ruchex/front.svg",
  51234. extra: 877/820,
  51235. bottom: 17/894
  51236. },
  51237. extraAttributes: {
  51238. "width": {
  51239. name: "Width",
  51240. power: 1,
  51241. type: "length",
  51242. base: math.unit(4.757, "feet")
  51243. },
  51244. }
  51245. },
  51246. },
  51247. [
  51248. {
  51249. name: "Normal",
  51250. height: math.unit(6 + 5/12, "feet"),
  51251. default: true
  51252. },
  51253. ]
  51254. ))
  51255. characterMakers.push(() => makeCharacter(
  51256. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51257. {
  51258. dressedFront: {
  51259. height: math.unit(191, "cm"),
  51260. weight: math.unit(80, "kg"),
  51261. name: "Front",
  51262. image: {
  51263. source: "./media/characters/buster/dressed-front.svg",
  51264. extra: 1022/973,
  51265. bottom: 69/1091
  51266. }
  51267. },
  51268. dressedBack: {
  51269. height: math.unit(191, "cm"),
  51270. weight: math.unit(80, "kg"),
  51271. name: "Back",
  51272. image: {
  51273. source: "./media/characters/buster/dressed-back.svg",
  51274. extra: 1018/970,
  51275. bottom: 55/1073
  51276. }
  51277. },
  51278. nudeFront: {
  51279. height: math.unit(191, "cm"),
  51280. weight: math.unit(80, "kg"),
  51281. name: "Front (Nude)",
  51282. image: {
  51283. source: "./media/characters/buster/nude-front.svg",
  51284. extra: 1022/973,
  51285. bottom: 69/1091
  51286. }
  51287. },
  51288. nudeBack: {
  51289. height: math.unit(191, "cm"),
  51290. weight: math.unit(80, "kg"),
  51291. name: "Back (Nude)",
  51292. image: {
  51293. source: "./media/characters/buster/nude-back.svg",
  51294. extra: 1018/970,
  51295. bottom: 55/1073
  51296. }
  51297. },
  51298. dick: {
  51299. height: math.unit(2.59, "feet"),
  51300. name: "Dick",
  51301. image: {
  51302. source: "./media/characters/buster/dick.svg"
  51303. }
  51304. },
  51305. ass: {
  51306. height: math.unit(1.2, "feet"),
  51307. name: "Ass",
  51308. image: {
  51309. source: "./media/characters/buster/ass.svg"
  51310. }
  51311. },
  51312. },
  51313. [
  51314. {
  51315. name: "Normal",
  51316. height: math.unit(191, "cm"),
  51317. default: true
  51318. },
  51319. ]
  51320. ))
  51321. characterMakers.push(() => makeCharacter(
  51322. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51323. {
  51324. side: {
  51325. height: math.unit(8.1, "feet"),
  51326. weight: math.unit(3500, "lb"),
  51327. name: "Side",
  51328. image: {
  51329. source: "./media/characters/sonya/side.svg",
  51330. extra: 1730/1317,
  51331. bottom: 86/1816
  51332. }
  51333. },
  51334. },
  51335. [
  51336. {
  51337. name: "Normal",
  51338. height: math.unit(8.1, "feet"),
  51339. default: true
  51340. },
  51341. ]
  51342. ))
  51343. characterMakers.push(() => makeCharacter(
  51344. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51345. {
  51346. front: {
  51347. height: math.unit(6, "feet"),
  51348. weight: math.unit(150, "lb"),
  51349. name: "Front",
  51350. image: {
  51351. source: "./media/characters/cadence-andrysiak/front.svg",
  51352. extra: 1164/1121,
  51353. bottom: 60/1224
  51354. }
  51355. },
  51356. back: {
  51357. height: math.unit(6, "feet"),
  51358. weight: math.unit(150, "lb"),
  51359. name: "Back",
  51360. image: {
  51361. source: "./media/characters/cadence-andrysiak/back.svg",
  51362. extra: 1200/1165,
  51363. bottom: 9/1209
  51364. }
  51365. },
  51366. dressed: {
  51367. height: math.unit(6, "feet"),
  51368. weight: math.unit(150, "lb"),
  51369. name: "Dressed",
  51370. image: {
  51371. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51372. extra: 1164/1121,
  51373. bottom: 60/1224
  51374. }
  51375. },
  51376. },
  51377. [
  51378. {
  51379. name: "Micro",
  51380. height: math.unit(1, "mm")
  51381. },
  51382. {
  51383. name: "Normal",
  51384. height: math.unit(6, "feet"),
  51385. default: true
  51386. },
  51387. ]
  51388. ))
  51389. characterMakers.push(() => makeCharacter(
  51390. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51391. {
  51392. front: {
  51393. height: math.unit(60, "inches"),
  51394. weight: math.unit(16, "lb"),
  51395. preyCapacity: math.unit(80, "liters"),
  51396. name: "Front",
  51397. image: {
  51398. source: "./media/characters/penny-lynx/front.svg",
  51399. extra: 1959/1769,
  51400. bottom: 49/2008
  51401. }
  51402. },
  51403. },
  51404. [
  51405. {
  51406. name: "Nokia",
  51407. height: math.unit(2, "inches")
  51408. },
  51409. {
  51410. name: "Desktop",
  51411. height: math.unit(24, "inches")
  51412. },
  51413. {
  51414. name: "TV",
  51415. height: math.unit(60, "inches")
  51416. },
  51417. {
  51418. name: "Jumbotron",
  51419. height: math.unit(12, "feet")
  51420. },
  51421. {
  51422. name: "Billboard",
  51423. height: math.unit(48, "feet"),
  51424. default: true
  51425. },
  51426. {
  51427. name: "IMAX",
  51428. height: math.unit(96, "feet")
  51429. },
  51430. {
  51431. name: "SINGULARITY",
  51432. height: math.unit(864938, "miles")
  51433. },
  51434. ]
  51435. ))
  51436. characterMakers.push(() => makeCharacter(
  51437. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51438. {
  51439. front: {
  51440. height: math.unit(5 + 4/12, "feet"),
  51441. weight: math.unit(230, "lb"),
  51442. name: "Front",
  51443. image: {
  51444. source: "./media/characters/sukebe/front.svg",
  51445. extra: 2130/2038,
  51446. bottom: 90/2220
  51447. }
  51448. },
  51449. back: {
  51450. height: math.unit(3.48, "feet"),
  51451. weight: math.unit(230, "lb"),
  51452. name: "Back",
  51453. image: {
  51454. source: "./media/characters/sukebe/back.svg",
  51455. extra: 1670/1604,
  51456. bottom: 0/1670
  51457. }
  51458. },
  51459. },
  51460. [
  51461. {
  51462. name: "Normal",
  51463. height: math.unit(5 + 4/12, "feet"),
  51464. default: true
  51465. },
  51466. ]
  51467. ))
  51468. characterMakers.push(() => makeCharacter(
  51469. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51470. {
  51471. front: {
  51472. height: math.unit(6, "feet"),
  51473. name: "Front",
  51474. image: {
  51475. source: "./media/characters/nylla/front.svg",
  51476. extra: 1868/1699,
  51477. bottom: 97/1965
  51478. }
  51479. },
  51480. back: {
  51481. height: math.unit(6, "feet"),
  51482. name: "Back",
  51483. image: {
  51484. source: "./media/characters/nylla/back.svg",
  51485. extra: 1889/1712,
  51486. bottom: 93/1982
  51487. }
  51488. },
  51489. frontNsfw: {
  51490. height: math.unit(6, "feet"),
  51491. name: "Front (NSFW)",
  51492. image: {
  51493. source: "./media/characters/nylla/front-nsfw.svg",
  51494. extra: 1868/1699,
  51495. bottom: 97/1965
  51496. },
  51497. extraAttributes: {
  51498. "dickLength": {
  51499. name: "Dick Length",
  51500. power: 1,
  51501. type: "length",
  51502. base: math.unit(1.4, "feet")
  51503. },
  51504. "cumVolume": {
  51505. name: "Cum Volume",
  51506. power: 3,
  51507. type: "volume",
  51508. base: math.unit(100, "mL")
  51509. },
  51510. }
  51511. },
  51512. backNsfw: {
  51513. height: math.unit(6, "feet"),
  51514. name: "Back (NSFW)",
  51515. image: {
  51516. source: "./media/characters/nylla/back-nsfw.svg",
  51517. extra: 1889/1712,
  51518. bottom: 93/1982
  51519. }
  51520. },
  51521. maw: {
  51522. height: math.unit(2.10, "feet"),
  51523. name: "Maw",
  51524. image: {
  51525. source: "./media/characters/nylla/maw.svg"
  51526. }
  51527. },
  51528. paws: {
  51529. height: math.unit(2.06, "feet"),
  51530. name: "Paws",
  51531. image: {
  51532. source: "./media/characters/nylla/paws.svg"
  51533. }
  51534. },
  51535. muzzle: {
  51536. height: math.unit(0.61, "feet"),
  51537. name: "Muzzle",
  51538. image: {
  51539. source: "./media/characters/nylla/muzzle.svg"
  51540. }
  51541. },
  51542. sheath: {
  51543. height: math.unit(1.305, "feet"),
  51544. name: "Sheath",
  51545. image: {
  51546. source: "./media/characters/nylla/sheath.svg"
  51547. }
  51548. },
  51549. },
  51550. [
  51551. {
  51552. name: "Micro",
  51553. height: math.unit(7.5, "inches")
  51554. },
  51555. {
  51556. name: "Normal",
  51557. height: math.unit(7, "feet"),
  51558. default: true
  51559. },
  51560. {
  51561. name: "Macro",
  51562. height: math.unit(60, "feet")
  51563. },
  51564. {
  51565. name: "Mega",
  51566. height: math.unit(200, "feet")
  51567. },
  51568. ]
  51569. ))
  51570. characterMakers.push(() => makeCharacter(
  51571. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51572. {
  51573. front: {
  51574. height: math.unit(10, "feet"),
  51575. weight: math.unit(2300, "lb"),
  51576. name: "Front",
  51577. image: {
  51578. source: "./media/characters/hunt3r/front.svg",
  51579. extra: 1909/1742,
  51580. bottom: 46/1955
  51581. }
  51582. },
  51583. },
  51584. [
  51585. {
  51586. name: "Normal",
  51587. height: math.unit(10, "feet"),
  51588. default: true
  51589. },
  51590. ]
  51591. ))
  51592. characterMakers.push(() => makeCharacter(
  51593. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51594. {
  51595. dressed: {
  51596. height: math.unit(11, "feet"),
  51597. weight: math.unit(18500, "lb"),
  51598. preyCapacity: math.unit(9, "people"),
  51599. name: "Dressed",
  51600. image: {
  51601. source: "./media/characters/cylphis/dressed.svg",
  51602. extra: 1028/1003,
  51603. bottom: 75/1103
  51604. },
  51605. },
  51606. undressed: {
  51607. height: math.unit(11, "feet"),
  51608. weight: math.unit(18500, "lb"),
  51609. preyCapacity: math.unit(9, "people"),
  51610. name: "Undressed",
  51611. image: {
  51612. source: "./media/characters/cylphis/undressed.svg",
  51613. extra: 1028/1003,
  51614. bottom: 75/1103
  51615. }
  51616. },
  51617. full: {
  51618. height: math.unit(11, "feet"),
  51619. weight: math.unit(18500 + 150*9, "lb"),
  51620. preyCapacity: math.unit(9, "people"),
  51621. name: "Full",
  51622. image: {
  51623. source: "./media/characters/cylphis/full.svg",
  51624. extra: 1028/1003,
  51625. bottom: 75/1103
  51626. }
  51627. },
  51628. },
  51629. [
  51630. {
  51631. name: "Small",
  51632. height: math.unit(8, "feet")
  51633. },
  51634. {
  51635. name: "Normal",
  51636. height: math.unit(11, "feet"),
  51637. default: true
  51638. },
  51639. ]
  51640. ))
  51641. characterMakers.push(() => makeCharacter(
  51642. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  51643. {
  51644. front: {
  51645. height: math.unit(2 + 7/12, "feet"),
  51646. name: "Front",
  51647. image: {
  51648. source: "./media/characters/orishan/front.svg",
  51649. extra: 1058/1023,
  51650. bottom: 23/1081
  51651. }
  51652. },
  51653. back: {
  51654. height: math.unit(2 + 7/12, "feet"),
  51655. name: "Back",
  51656. image: {
  51657. source: "./media/characters/orishan/back.svg",
  51658. extra: 1058/1023,
  51659. bottom: 23/1081
  51660. }
  51661. },
  51662. },
  51663. [
  51664. {
  51665. name: "Micro",
  51666. height: math.unit(2, "cm")
  51667. },
  51668. {
  51669. name: "Normal",
  51670. height: math.unit(2 + 7/12, "feet"),
  51671. default: true
  51672. },
  51673. ]
  51674. ))
  51675. characterMakers.push(() => makeCharacter(
  51676. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  51677. {
  51678. front: {
  51679. height: math.unit(3, "meters"),
  51680. weight: math.unit(508, "kg"),
  51681. name: "Front",
  51682. image: {
  51683. source: "./media/characters/seranis/front.svg",
  51684. extra: 1478/1454,
  51685. bottom: 41/1519
  51686. }
  51687. },
  51688. },
  51689. [
  51690. {
  51691. name: "Normal",
  51692. height: math.unit(3, "meters"),
  51693. default: true
  51694. },
  51695. {
  51696. name: "Macro",
  51697. height: math.unit(108, "meters")
  51698. },
  51699. {
  51700. name: "Megamacro",
  51701. height: math.unit(1250, "meters")
  51702. },
  51703. ]
  51704. ))
  51705. characterMakers.push(() => makeCharacter(
  51706. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  51707. {
  51708. undressed: {
  51709. height: math.unit(5 + 3/12, "feet"),
  51710. name: "Undressed",
  51711. image: {
  51712. source: "./media/characters/ankou/undressed.svg",
  51713. extra: 1301/1213,
  51714. bottom: 87/1388
  51715. }
  51716. },
  51717. dressed: {
  51718. height: math.unit(5 + 3/12, "feet"),
  51719. name: "Dressed",
  51720. image: {
  51721. source: "./media/characters/ankou/dressed.svg",
  51722. extra: 1301/1213,
  51723. bottom: 87/1388
  51724. }
  51725. },
  51726. head: {
  51727. height: math.unit(1.61, "feet"),
  51728. name: "Head",
  51729. image: {
  51730. source: "./media/characters/ankou/head.svg"
  51731. }
  51732. },
  51733. },
  51734. [
  51735. {
  51736. name: "Normal",
  51737. height: math.unit(5 + 3/12, "feet"),
  51738. default: true
  51739. },
  51740. ]
  51741. ))
  51742. characterMakers.push(() => makeCharacter(
  51743. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  51744. {
  51745. side: {
  51746. height: math.unit(6 + 3/12, "feet"),
  51747. weight: math.unit(200, "kg"),
  51748. name: "Side",
  51749. image: {
  51750. source: "./media/characters/juniper-skunktaur/side.svg",
  51751. extra: 1574/1229,
  51752. bottom: 38/1612
  51753. }
  51754. },
  51755. front: {
  51756. height: math.unit(6 + 3/12, "feet"),
  51757. weight: math.unit(200, "kg"),
  51758. name: "Front",
  51759. image: {
  51760. source: "./media/characters/juniper-skunktaur/front.svg",
  51761. extra: 1337/1278,
  51762. bottom: 22/1359
  51763. }
  51764. },
  51765. back: {
  51766. height: math.unit(6 + 3/12, "feet"),
  51767. weight: math.unit(200, "kg"),
  51768. name: "Back",
  51769. image: {
  51770. source: "./media/characters/juniper-skunktaur/back.svg",
  51771. extra: 1618/1273,
  51772. bottom: 13/1631
  51773. }
  51774. },
  51775. top: {
  51776. height: math.unit(2.62, "feet"),
  51777. weight: math.unit(200, "kg"),
  51778. name: "Top",
  51779. image: {
  51780. source: "./media/characters/juniper-skunktaur/top.svg"
  51781. }
  51782. },
  51783. },
  51784. [
  51785. {
  51786. name: "Normal",
  51787. height: math.unit(6 + 3/12, "feet"),
  51788. default: true
  51789. },
  51790. ]
  51791. ))
  51792. characterMakers.push(() => makeCharacter(
  51793. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  51794. {
  51795. front: {
  51796. height: math.unit(20.5, "feet"),
  51797. name: "Front",
  51798. image: {
  51799. source: "./media/characters/rei/front.svg",
  51800. extra: 1349/1195,
  51801. bottom: 31/1380
  51802. }
  51803. },
  51804. back: {
  51805. height: math.unit(20.5, "feet"),
  51806. name: "Back",
  51807. image: {
  51808. source: "./media/characters/rei/back.svg",
  51809. extra: 1358/1204,
  51810. bottom: 22/1380
  51811. }
  51812. },
  51813. pawsDigi: {
  51814. height: math.unit(3.45, "feet"),
  51815. name: "Paws (Digi)",
  51816. image: {
  51817. source: "./media/characters/rei/paws-digi.svg"
  51818. }
  51819. },
  51820. pawsPlanti: {
  51821. height: math.unit(3.45, "feet"),
  51822. name: "Paws (Planti)",
  51823. image: {
  51824. source: "./media/characters/rei/paws-planti.svg"
  51825. }
  51826. },
  51827. },
  51828. [
  51829. {
  51830. name: "Normal",
  51831. height: math.unit(20.5, "feet"),
  51832. default: true
  51833. },
  51834. ]
  51835. ))
  51836. characterMakers.push(() => makeCharacter(
  51837. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  51838. {
  51839. front: {
  51840. height: math.unit(5 + 11/12, "feet"),
  51841. name: "Front",
  51842. image: {
  51843. source: "./media/characters/carina/front.svg",
  51844. extra: 1720/1449,
  51845. bottom: 14/1734
  51846. }
  51847. },
  51848. back: {
  51849. height: math.unit(5 + 11/12, "feet"),
  51850. name: "Back",
  51851. image: {
  51852. source: "./media/characters/carina/back.svg",
  51853. extra: 1493/1445,
  51854. bottom: 17/1510
  51855. }
  51856. },
  51857. paw: {
  51858. height: math.unit(0.92, "feet"),
  51859. name: "Paw",
  51860. image: {
  51861. source: "./media/characters/carina/paw.svg"
  51862. }
  51863. },
  51864. },
  51865. [
  51866. {
  51867. name: "Normal",
  51868. height: math.unit(5 + 11/12, "feet"),
  51869. default: true
  51870. },
  51871. ]
  51872. ))
  51873. characterMakers.push(() => makeCharacter(
  51874. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  51875. {
  51876. front: {
  51877. height: math.unit(4.88, "meters"),
  51878. name: "Front",
  51879. image: {
  51880. source: "./media/characters/maya/front.svg",
  51881. extra: 1222/1145,
  51882. bottom: 57/1279
  51883. }
  51884. },
  51885. },
  51886. [
  51887. {
  51888. name: "Normal",
  51889. height: math.unit(4.88, "meters"),
  51890. default: true
  51891. },
  51892. {
  51893. name: "Macro",
  51894. height: math.unit(38.1, "meters")
  51895. },
  51896. {
  51897. name: "Macro+",
  51898. height: math.unit(152.4, "meters")
  51899. },
  51900. {
  51901. name: "Macro++",
  51902. height: math.unit(16.09, "km")
  51903. },
  51904. {
  51905. name: "Mega-macro",
  51906. height: math.unit(700, "megameters")
  51907. },
  51908. ]
  51909. ))
  51910. characterMakers.push(() => makeCharacter(
  51911. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  51912. {
  51913. front: {
  51914. height: math.unit(6 + 2/12, "feet"),
  51915. weight: math.unit(500, "lb"),
  51916. preyCapacity: math.unit(4, "people"),
  51917. name: "Front",
  51918. image: {
  51919. source: "./media/characters/yepir/front.svg"
  51920. }
  51921. },
  51922. side: {
  51923. height: math.unit(6 + 2/12, "feet"),
  51924. weight: math.unit(500, "lb"),
  51925. preyCapacity: math.unit(4, "people"),
  51926. name: "Side",
  51927. image: {
  51928. source: "./media/characters/yepir/side.svg"
  51929. }
  51930. },
  51931. paw: {
  51932. height: math.unit(1.05, "feet"),
  51933. name: "Paw",
  51934. image: {
  51935. source: "./media/characters/yepir/paw.svg"
  51936. }
  51937. },
  51938. },
  51939. [
  51940. {
  51941. name: "Normal",
  51942. height: math.unit(6 + 2/12, "feet"),
  51943. default: true
  51944. },
  51945. ]
  51946. ))
  51947. characterMakers.push(() => makeCharacter(
  51948. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  51949. {
  51950. front: {
  51951. height: math.unit(5 + 4/12, "feet"),
  51952. name: "Front",
  51953. image: {
  51954. source: "./media/characters/russec/front.svg",
  51955. extra: 1926/1626,
  51956. bottom: 72/1998
  51957. }
  51958. },
  51959. back: {
  51960. height: math.unit(5 + 4/12, "feet"),
  51961. name: "Back",
  51962. image: {
  51963. source: "./media/characters/russec/back.svg",
  51964. extra: 1910/1591,
  51965. bottom: 48/1958
  51966. }
  51967. },
  51968. },
  51969. [
  51970. {
  51971. name: "Small",
  51972. height: math.unit(5 + 4/12, "feet")
  51973. },
  51974. {
  51975. name: "Normal",
  51976. height: math.unit(72, "feet"),
  51977. default: true
  51978. },
  51979. ]
  51980. ))
  51981. characterMakers.push(() => makeCharacter(
  51982. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  51983. {
  51984. side: {
  51985. height: math.unit(12, "feet"),
  51986. name: "Side",
  51987. image: {
  51988. source: "./media/characters/cianus/side.svg",
  51989. extra: 808/526,
  51990. bottom: 61/869
  51991. }
  51992. },
  51993. },
  51994. [
  51995. {
  51996. name: "Normal",
  51997. height: math.unit(12, "feet"),
  51998. default: true
  51999. },
  52000. ]
  52001. ))
  52002. characterMakers.push(() => makeCharacter(
  52003. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52004. {
  52005. front: {
  52006. height: math.unit(9 + 6/12, "feet"),
  52007. weight: math.unit(300, "lb"),
  52008. name: "Front",
  52009. image: {
  52010. source: "./media/characters/ahab/front.svg",
  52011. extra: 1897/1868,
  52012. bottom: 121/2018
  52013. }
  52014. },
  52015. frontNsfw: {
  52016. height: math.unit(9 + 6/12, "feet"),
  52017. weight: math.unit(300, "lb"),
  52018. name: "Front-nsfw",
  52019. image: {
  52020. source: "./media/characters/ahab/front-nsfw.svg",
  52021. extra: 1897/1868,
  52022. bottom: 121/2018
  52023. }
  52024. },
  52025. },
  52026. [
  52027. {
  52028. name: "Normal",
  52029. height: math.unit(9 + 6/12, "feet")
  52030. },
  52031. {
  52032. name: "Macro",
  52033. height: math.unit(657, "feet"),
  52034. default: true
  52035. },
  52036. ]
  52037. ))
  52038. characterMakers.push(() => makeCharacter(
  52039. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52040. {
  52041. front: {
  52042. height: math.unit(2.69, "meters"),
  52043. weight: math.unit(132, "kg"),
  52044. name: "Front",
  52045. image: {
  52046. source: "./media/characters/aarkus/front.svg",
  52047. extra: 1400/1231,
  52048. bottom: 34/1434
  52049. }
  52050. },
  52051. back: {
  52052. height: math.unit(2.69, "meters"),
  52053. weight: math.unit(132, "kg"),
  52054. name: "Back",
  52055. image: {
  52056. source: "./media/characters/aarkus/back.svg",
  52057. extra: 1381/1218,
  52058. bottom: 30/1411
  52059. }
  52060. },
  52061. frontNsfw: {
  52062. height: math.unit(2.69, "meters"),
  52063. weight: math.unit(132, "kg"),
  52064. name: "Front (NSFW)",
  52065. image: {
  52066. source: "./media/characters/aarkus/front-nsfw.svg",
  52067. extra: 1400/1231,
  52068. bottom: 34/1434
  52069. }
  52070. },
  52071. foot: {
  52072. height: math.unit(1.45, "feet"),
  52073. name: "Foot",
  52074. image: {
  52075. source: "./media/characters/aarkus/foot.svg"
  52076. }
  52077. },
  52078. head: {
  52079. height: math.unit(2.85, "feet"),
  52080. name: "Head",
  52081. image: {
  52082. source: "./media/characters/aarkus/head.svg"
  52083. }
  52084. },
  52085. headAlt: {
  52086. height: math.unit(3.07, "feet"),
  52087. name: "Head (Alt)",
  52088. image: {
  52089. source: "./media/characters/aarkus/head-alt.svg"
  52090. }
  52091. },
  52092. mouth: {
  52093. height: math.unit(1.25, "feet"),
  52094. name: "Mouth",
  52095. image: {
  52096. source: "./media/characters/aarkus/mouth.svg"
  52097. }
  52098. },
  52099. dick: {
  52100. height: math.unit(1.77, "feet"),
  52101. name: "Dick",
  52102. image: {
  52103. source: "./media/characters/aarkus/dick.svg"
  52104. }
  52105. },
  52106. },
  52107. [
  52108. {
  52109. name: "Normal",
  52110. height: math.unit(2.69, "meters"),
  52111. default: true
  52112. },
  52113. {
  52114. name: "Macro",
  52115. height: math.unit(269, "meters")
  52116. },
  52117. {
  52118. name: "Macro+",
  52119. height: math.unit(672.5, "meters")
  52120. },
  52121. {
  52122. name: "Megamacro",
  52123. height: math.unit(2.017, "km")
  52124. },
  52125. ]
  52126. ))
  52127. characterMakers.push(() => makeCharacter(
  52128. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52129. {
  52130. front: {
  52131. height: math.unit(23.47, "cm"),
  52132. weight: math.unit(600, "grams"),
  52133. name: "Front",
  52134. image: {
  52135. source: "./media/characters/diode/front.svg",
  52136. extra: 1778/1396,
  52137. bottom: 95/1873
  52138. }
  52139. },
  52140. side: {
  52141. height: math.unit(23.47, "cm"),
  52142. weight: math.unit(600, "grams"),
  52143. name: "Side",
  52144. image: {
  52145. source: "./media/characters/diode/side.svg",
  52146. extra: 1831/1404,
  52147. bottom: 86/1917
  52148. }
  52149. },
  52150. wings: {
  52151. height: math.unit(0.683, "feet"),
  52152. name: "Wings",
  52153. image: {
  52154. source: "./media/characters/diode/wings.svg"
  52155. }
  52156. },
  52157. },
  52158. [
  52159. {
  52160. name: "Normal",
  52161. height: math.unit(23.47, "cm"),
  52162. default: true
  52163. },
  52164. ]
  52165. ))
  52166. characterMakers.push(() => makeCharacter(
  52167. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52168. {
  52169. front: {
  52170. height: math.unit(6 + 3/12, "feet"),
  52171. weight: math.unit(250, "lb"),
  52172. name: "Front",
  52173. image: {
  52174. source: "./media/characters/reika/front.svg",
  52175. extra: 1120/1078,
  52176. bottom: 86/1206
  52177. }
  52178. },
  52179. },
  52180. [
  52181. {
  52182. name: "Normal",
  52183. height: math.unit(6 + 3/12, "feet"),
  52184. default: true
  52185. },
  52186. ]
  52187. ))
  52188. characterMakers.push(() => makeCharacter(
  52189. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52190. {
  52191. front: {
  52192. height: math.unit(16 + 8/12, "feet"),
  52193. weight: math.unit(9000, "lb"),
  52194. name: "Front",
  52195. image: {
  52196. source: "./media/characters/lokuto-takama/front.svg",
  52197. extra: 1774/1632,
  52198. bottom: 147/1921
  52199. },
  52200. extraAttributes: {
  52201. "bustWidth": {
  52202. name: "Bust Width",
  52203. power: 1,
  52204. type: "length",
  52205. base: math.unit(2.4, "meters")
  52206. },
  52207. "breastWeight": {
  52208. name: "Breast Weight",
  52209. power: 3,
  52210. type: "mass",
  52211. base: math.unit(1000, "kg")
  52212. },
  52213. }
  52214. },
  52215. },
  52216. [
  52217. {
  52218. name: "Normal",
  52219. height: math.unit(16 + 8/12, "feet"),
  52220. default: true
  52221. },
  52222. ]
  52223. ))
  52224. characterMakers.push(() => makeCharacter(
  52225. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  52226. {
  52227. front: {
  52228. height: math.unit(10, "cm"),
  52229. weight: math.unit(850, "grams"),
  52230. name: "Front",
  52231. image: {
  52232. source: "./media/characters/owak-bone/front.svg",
  52233. extra: 1965/1801,
  52234. bottom: 31/1996
  52235. }
  52236. },
  52237. },
  52238. [
  52239. {
  52240. name: "Normal",
  52241. height: math.unit(10, "cm"),
  52242. default: true
  52243. },
  52244. ]
  52245. ))
  52246. characterMakers.push(() => makeCharacter(
  52247. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  52248. {
  52249. front: {
  52250. height: math.unit(2 + 6/12, "feet"),
  52251. weight: math.unit(9, "lb"),
  52252. name: "Front",
  52253. image: {
  52254. source: "./media/characters/muffin/front.svg",
  52255. extra: 1220/1195,
  52256. bottom: 84/1304
  52257. }
  52258. },
  52259. },
  52260. [
  52261. {
  52262. name: "Normal",
  52263. height: math.unit(2 + 6/12, "feet"),
  52264. default: true
  52265. },
  52266. ]
  52267. ))
  52268. characterMakers.push(() => makeCharacter(
  52269. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52270. {
  52271. front: {
  52272. height: math.unit(7, "feet"),
  52273. name: "Front",
  52274. image: {
  52275. source: "./media/characters/chimera/front.svg",
  52276. extra: 1752/1614,
  52277. bottom: 68/1820
  52278. }
  52279. },
  52280. },
  52281. [
  52282. {
  52283. name: "Normal",
  52284. height: math.unit(7, "feet")
  52285. },
  52286. {
  52287. name: "Gigamacro",
  52288. height: math.unit(2.9, "gigameters"),
  52289. default: true
  52290. },
  52291. {
  52292. name: "Universal",
  52293. height: math.unit(1.56e26, "yottameters")
  52294. },
  52295. ]
  52296. ))
  52297. characterMakers.push(() => makeCharacter(
  52298. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52299. {
  52300. front: {
  52301. height: math.unit(3, "feet"),
  52302. weight: math.unit(20, "lb"),
  52303. name: "Front",
  52304. image: {
  52305. source: "./media/characters/kit-fennec-fox/front.svg",
  52306. extra: 1027/932,
  52307. bottom: 16/1043
  52308. }
  52309. },
  52310. back: {
  52311. height: math.unit(3, "feet"),
  52312. weight: math.unit(20, "lb"),
  52313. name: "Back",
  52314. image: {
  52315. source: "./media/characters/kit-fennec-fox/back.svg",
  52316. extra: 1027/932,
  52317. bottom: 16/1043
  52318. }
  52319. },
  52320. },
  52321. [
  52322. {
  52323. name: "Normal",
  52324. height: math.unit(3, "feet"),
  52325. default: true
  52326. },
  52327. ]
  52328. ))
  52329. characterMakers.push(() => makeCharacter(
  52330. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52331. {
  52332. front: {
  52333. height: math.unit(167, "cm"),
  52334. name: "Front",
  52335. image: {
  52336. source: "./media/characters/blue-otter/front.svg",
  52337. extra: 1951/1920,
  52338. bottom: 31/1982
  52339. }
  52340. },
  52341. },
  52342. [
  52343. {
  52344. name: "Otter-Sized",
  52345. height: math.unit(100, "cm")
  52346. },
  52347. {
  52348. name: "Normal",
  52349. height: math.unit(167, "cm"),
  52350. default: true
  52351. },
  52352. ]
  52353. ))
  52354. characterMakers.push(() => makeCharacter(
  52355. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52356. {
  52357. front: {
  52358. height: math.unit(4 + 4/12, "feet"),
  52359. name: "Front",
  52360. image: {
  52361. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52362. extra: 1072/1067,
  52363. bottom: 117/1189
  52364. }
  52365. },
  52366. back: {
  52367. height: math.unit(4 + 4/12, "feet"),
  52368. name: "Back",
  52369. image: {
  52370. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52371. extra: 1135/1129,
  52372. bottom: 57/1192
  52373. }
  52374. },
  52375. head: {
  52376. height: math.unit(1.77, "feet"),
  52377. name: "Head",
  52378. image: {
  52379. source: "./media/characters/maverick-leopard-gecko/head.svg"
  52380. }
  52381. },
  52382. },
  52383. [
  52384. {
  52385. name: "Normal",
  52386. height: math.unit(4 + 4/12, "feet"),
  52387. default: true
  52388. },
  52389. ]
  52390. ))
  52391. characterMakers.push(() => makeCharacter(
  52392. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  52393. {
  52394. front: {
  52395. height: math.unit(2, "inches"),
  52396. name: "Front",
  52397. image: {
  52398. source: "./media/characters/carley-hartford/front.svg",
  52399. extra: 1035/988,
  52400. bottom: 23/1058
  52401. }
  52402. },
  52403. back: {
  52404. height: math.unit(2, "inches"),
  52405. name: "Back",
  52406. image: {
  52407. source: "./media/characters/carley-hartford/back.svg",
  52408. extra: 1035/988,
  52409. bottom: 23/1058
  52410. }
  52411. },
  52412. dressed: {
  52413. height: math.unit(2, "inches"),
  52414. name: "Dressed",
  52415. image: {
  52416. source: "./media/characters/carley-hartford/dressed.svg",
  52417. extra: 651/620,
  52418. bottom: 0/651
  52419. }
  52420. },
  52421. },
  52422. [
  52423. {
  52424. name: "Micro",
  52425. height: math.unit(2, "inches"),
  52426. default: true
  52427. },
  52428. {
  52429. name: "Macro",
  52430. height: math.unit(6 + 3/12, "feet")
  52431. },
  52432. ]
  52433. ))
  52434. characterMakers.push(() => makeCharacter(
  52435. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  52436. {
  52437. front: {
  52438. height: math.unit(2 + 3/12, "feet"),
  52439. weight: math.unit(15 + 7/16, "lb"),
  52440. name: "Front",
  52441. image: {
  52442. source: "./media/characters/duke/front.svg",
  52443. extra: 910/815,
  52444. bottom: 30/940
  52445. }
  52446. },
  52447. },
  52448. [
  52449. {
  52450. name: "Normal",
  52451. height: math.unit(2 + 3/12, "feet"),
  52452. default: true
  52453. },
  52454. ]
  52455. ))
  52456. characterMakers.push(() => makeCharacter(
  52457. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  52458. {
  52459. front: {
  52460. height: math.unit(5 + 4/12, "feet"),
  52461. weight: math.unit(156, "lb"),
  52462. name: "Front",
  52463. image: {
  52464. source: "./media/characters/dein/front.svg",
  52465. extra: 855/815,
  52466. bottom: 48/903
  52467. }
  52468. },
  52469. side: {
  52470. height: math.unit(5 + 4/12, "feet"),
  52471. weight: math.unit(156, "lb"),
  52472. name: "side",
  52473. image: {
  52474. source: "./media/characters/dein/side.svg",
  52475. extra: 846/803,
  52476. bottom: 25/871
  52477. }
  52478. },
  52479. maw: {
  52480. height: math.unit(1.45, "feet"),
  52481. name: "Maw",
  52482. image: {
  52483. source: "./media/characters/dein/maw.svg"
  52484. }
  52485. },
  52486. },
  52487. [
  52488. {
  52489. name: "Ferret Sized",
  52490. height: math.unit(2 + 5/12, "feet")
  52491. },
  52492. {
  52493. name: "Normal",
  52494. height: math.unit(5 + 4/12, "feet"),
  52495. default: true
  52496. },
  52497. ]
  52498. ))
  52499. characterMakers.push(() => makeCharacter(
  52500. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  52501. {
  52502. front: {
  52503. height: math.unit(84 + 8/12, "feet"),
  52504. weight: math.unit(942180, "lb"),
  52505. name: "Front",
  52506. image: {
  52507. source: "./media/characters/daurine-arima/front.svg",
  52508. extra: 1989/1782,
  52509. bottom: 37/2026
  52510. }
  52511. },
  52512. side: {
  52513. height: math.unit(84 + 8/12, "feet"),
  52514. weight: math.unit(942180, "lb"),
  52515. name: "Side",
  52516. image: {
  52517. source: "./media/characters/daurine-arima/side.svg",
  52518. extra: 1997/1790,
  52519. bottom: 21/2018
  52520. }
  52521. },
  52522. back: {
  52523. height: math.unit(84 + 8/12, "feet"),
  52524. weight: math.unit(942180, "lb"),
  52525. name: "Back",
  52526. image: {
  52527. source: "./media/characters/daurine-arima/back.svg",
  52528. extra: 1992/1800,
  52529. bottom: 12/2004
  52530. }
  52531. },
  52532. head: {
  52533. height: math.unit(15.5, "feet"),
  52534. name: "Head",
  52535. image: {
  52536. source: "./media/characters/daurine-arima/head.svg"
  52537. }
  52538. },
  52539. headAlt: {
  52540. height: math.unit(19.19, "feet"),
  52541. name: "Head (Alt)",
  52542. image: {
  52543. source: "./media/characters/daurine-arima/head-alt.svg"
  52544. }
  52545. },
  52546. },
  52547. [
  52548. {
  52549. name: "Minimum height",
  52550. height: math.unit(8 + 10/12, "feet")
  52551. },
  52552. {
  52553. name: "Comfort height",
  52554. height: math.unit(19 + 6 /12, "feet")
  52555. },
  52556. {
  52557. name: "\"Normal\" height",
  52558. height: math.unit(28 + 10/12, "feet")
  52559. },
  52560. {
  52561. name: "Base height",
  52562. height: math.unit(84 + 8/12, "feet"),
  52563. default: true
  52564. },
  52565. {
  52566. name: "Mini-macro",
  52567. height: math.unit(2360, "feet")
  52568. },
  52569. {
  52570. name: "Macro",
  52571. height: math.unit(10, "miles")
  52572. },
  52573. {
  52574. name: "Goddess",
  52575. height: math.unit(9.99e40, "yottameters")
  52576. },
  52577. ]
  52578. ))
  52579. characterMakers.push(() => makeCharacter(
  52580. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  52581. {
  52582. front: {
  52583. height: math.unit(2.3, "meters"),
  52584. name: "Front",
  52585. image: {
  52586. source: "./media/characters/cilenomon/front.svg",
  52587. extra: 1963/1778,
  52588. bottom: 54/2017
  52589. }
  52590. },
  52591. },
  52592. [
  52593. {
  52594. name: "Normal",
  52595. height: math.unit(2.3, "meters"),
  52596. default: true
  52597. },
  52598. {
  52599. name: "Big",
  52600. height: math.unit(5, "meters")
  52601. },
  52602. {
  52603. name: "Macro",
  52604. height: math.unit(30, "meters")
  52605. },
  52606. {
  52607. name: "True",
  52608. height: math.unit(1, "universe")
  52609. },
  52610. ]
  52611. ))
  52612. characterMakers.push(() => makeCharacter(
  52613. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  52614. {
  52615. front: {
  52616. height: math.unit(5, "feet"),
  52617. name: "Front",
  52618. image: {
  52619. source: "./media/characters/sen-mink/front.svg",
  52620. extra: 1727/1675,
  52621. bottom: 35/1762
  52622. }
  52623. },
  52624. },
  52625. [
  52626. {
  52627. name: "Normal",
  52628. height: math.unit(5, "feet"),
  52629. default: true
  52630. },
  52631. ]
  52632. ))
  52633. characterMakers.push(() => makeCharacter(
  52634. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  52635. {
  52636. front: {
  52637. height: math.unit(5.42999, "feet"),
  52638. weight: math.unit(100, "lb"),
  52639. name: "Front",
  52640. image: {
  52641. source: "./media/characters/ophois/front.svg",
  52642. extra: 1429/1286,
  52643. bottom: 60/1489
  52644. }
  52645. },
  52646. },
  52647. [
  52648. {
  52649. name: "Normal",
  52650. height: math.unit(5.42999, "feet"),
  52651. default: true
  52652. },
  52653. ]
  52654. ))
  52655. characterMakers.push(() => makeCharacter(
  52656. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  52657. {
  52658. front: {
  52659. height: math.unit(2, "meters"),
  52660. name: "Front",
  52661. image: {
  52662. source: "./media/characters/riley/front.svg",
  52663. extra: 1779/1754,
  52664. bottom: 139/1918
  52665. }
  52666. },
  52667. },
  52668. [
  52669. {
  52670. name: "Normal",
  52671. height: math.unit(2, "meters"),
  52672. default: true
  52673. },
  52674. ]
  52675. ))
  52676. characterMakers.push(() => makeCharacter(
  52677. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  52678. {
  52679. front: {
  52680. height: math.unit(6 + 2/12, "feet"),
  52681. weight: math.unit(195, "lb"),
  52682. preyCapacity: math.unit(6, "people"),
  52683. name: "Front",
  52684. image: {
  52685. source: "./media/characters/shuken-flash/front.svg",
  52686. extra: 1905/1739,
  52687. bottom: 65/1970
  52688. }
  52689. },
  52690. back: {
  52691. height: math.unit(6 + 2/12, "feet"),
  52692. weight: math.unit(195, "lb"),
  52693. preyCapacity: math.unit(6, "people"),
  52694. name: "Back",
  52695. image: {
  52696. source: "./media/characters/shuken-flash/back.svg",
  52697. extra: 1912/1751,
  52698. bottom: 13/1925
  52699. }
  52700. },
  52701. },
  52702. [
  52703. {
  52704. name: "Normal",
  52705. height: math.unit(6 + 2/12, "feet"),
  52706. default: true
  52707. },
  52708. ]
  52709. ))
  52710. characterMakers.push(() => makeCharacter(
  52711. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  52712. {
  52713. front: {
  52714. height: math.unit(5 + 9/12, "feet"),
  52715. weight: math.unit(150, "lb"),
  52716. name: "Front",
  52717. image: {
  52718. source: "./media/characters/plat/front.svg",
  52719. extra: 1816/1703,
  52720. bottom: 43/1859
  52721. }
  52722. },
  52723. side: {
  52724. height: math.unit(5 + 9/12, "feet"),
  52725. weight: math.unit(300, "lb"),
  52726. name: "Side",
  52727. image: {
  52728. source: "./media/characters/plat/side.svg",
  52729. extra: 1824/1699,
  52730. bottom: 18/1842
  52731. }
  52732. },
  52733. },
  52734. [
  52735. {
  52736. name: "Normal",
  52737. height: math.unit(5 + 9/12, "feet"),
  52738. default: true
  52739. },
  52740. ]
  52741. ))
  52742. characterMakers.push(() => makeCharacter(
  52743. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  52744. {
  52745. front: {
  52746. height: math.unit(9, "feet"),
  52747. weight: math.unit(1800, "lb"),
  52748. name: "Front",
  52749. image: {
  52750. source: "./media/characters/elaine/front.svg",
  52751. extra: 1833/1354,
  52752. bottom: 25/1858
  52753. }
  52754. },
  52755. back: {
  52756. height: math.unit(8.8, "feet"),
  52757. weight: math.unit(1800, "lb"),
  52758. name: "Back",
  52759. image: {
  52760. source: "./media/characters/elaine/back.svg",
  52761. extra: 1641/1233,
  52762. bottom: 53/1694
  52763. }
  52764. },
  52765. },
  52766. [
  52767. {
  52768. name: "Normal",
  52769. height: math.unit(9, "feet"),
  52770. default: true
  52771. },
  52772. ]
  52773. ))
  52774. characterMakers.push(() => makeCharacter(
  52775. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  52776. {
  52777. front: {
  52778. height: math.unit(17 + 9/12, "feet"),
  52779. weight: math.unit(8000, "lb"),
  52780. name: "Front",
  52781. image: {
  52782. source: "./media/characters/vera-raven/front.svg",
  52783. extra: 1457/1412,
  52784. bottom: 121/1578
  52785. }
  52786. },
  52787. side: {
  52788. height: math.unit(17 + 9/12, "feet"),
  52789. weight: math.unit(8000, "lb"),
  52790. name: "Side",
  52791. image: {
  52792. source: "./media/characters/vera-raven/side.svg",
  52793. extra: 1510/1464,
  52794. bottom: 54/1564
  52795. }
  52796. },
  52797. },
  52798. [
  52799. {
  52800. name: "Normal",
  52801. height: math.unit(17 + 9/12, "feet"),
  52802. default: true
  52803. },
  52804. ]
  52805. ))
  52806. characterMakers.push(() => makeCharacter(
  52807. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  52808. {
  52809. dressed: {
  52810. height: math.unit(6 + 9/12, "feet"),
  52811. name: "Dressed",
  52812. image: {
  52813. source: "./media/characters/nakisha/dressed.svg",
  52814. extra: 1909/1757,
  52815. bottom: 48/1957
  52816. }
  52817. },
  52818. nude: {
  52819. height: math.unit(6 + 9/12, "feet"),
  52820. name: "Nude",
  52821. image: {
  52822. source: "./media/characters/nakisha/nude.svg",
  52823. extra: 1917/1765,
  52824. bottom: 34/1951
  52825. }
  52826. },
  52827. },
  52828. [
  52829. {
  52830. name: "Normal",
  52831. height: math.unit(6 + 9/12, "feet"),
  52832. default: true
  52833. },
  52834. ]
  52835. ))
  52836. characterMakers.push(() => makeCharacter(
  52837. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  52838. {
  52839. front: {
  52840. height: math.unit(87, "meters"),
  52841. name: "Front",
  52842. image: {
  52843. source: "./media/characters/serafin/front.svg",
  52844. extra: 1919/1776,
  52845. bottom: 65/1984
  52846. }
  52847. },
  52848. },
  52849. [
  52850. {
  52851. name: "Normal",
  52852. height: math.unit(87, "meters"),
  52853. default: true
  52854. },
  52855. ]
  52856. ))
  52857. characterMakers.push(() => makeCharacter(
  52858. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  52859. {
  52860. front: {
  52861. height: math.unit(6, "feet"),
  52862. weight: math.unit(200, "lb"),
  52863. name: "Front",
  52864. image: {
  52865. source: "./media/characters/poptart/front.svg",
  52866. extra: 615/583,
  52867. bottom: 23/638
  52868. }
  52869. },
  52870. back: {
  52871. height: math.unit(6, "feet"),
  52872. weight: math.unit(200, "lb"),
  52873. name: "Back",
  52874. image: {
  52875. source: "./media/characters/poptart/back.svg",
  52876. extra: 617/584,
  52877. bottom: 22/639
  52878. }
  52879. },
  52880. frontNsfw: {
  52881. height: math.unit(6, "feet"),
  52882. weight: math.unit(200, "lb"),
  52883. name: "Front (NSFW)",
  52884. image: {
  52885. source: "./media/characters/poptart/front-nsfw.svg",
  52886. extra: 615/583,
  52887. bottom: 23/638
  52888. }
  52889. },
  52890. backNsfw: {
  52891. height: math.unit(6, "feet"),
  52892. weight: math.unit(200, "lb"),
  52893. name: "Back (NSFW)",
  52894. image: {
  52895. source: "./media/characters/poptart/back-nsfw.svg",
  52896. extra: 617/584,
  52897. bottom: 22/639
  52898. }
  52899. },
  52900. hand: {
  52901. height: math.unit(1.14, "feet"),
  52902. name: "Hand",
  52903. image: {
  52904. source: "./media/characters/poptart/hand.svg"
  52905. }
  52906. },
  52907. foot: {
  52908. height: math.unit(1.5, "feet"),
  52909. name: "Foot",
  52910. image: {
  52911. source: "./media/characters/poptart/foot.svg"
  52912. }
  52913. },
  52914. },
  52915. [
  52916. {
  52917. name: "Normal",
  52918. height: math.unit(6, "feet"),
  52919. default: true
  52920. },
  52921. {
  52922. name: "Grande",
  52923. height: math.unit(350, "feet")
  52924. },
  52925. {
  52926. name: "Massif",
  52927. height: math.unit(967, "feet")
  52928. },
  52929. ]
  52930. ))
  52931. characterMakers.push(() => makeCharacter(
  52932. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  52933. {
  52934. hyenaSide: {
  52935. height: math.unit(120, "cm"),
  52936. weight: math.unit(120, "lb"),
  52937. name: "Side",
  52938. image: {
  52939. source: "./media/characters/trance/hyena-side.svg",
  52940. extra: 998/904,
  52941. bottom: 76/1074
  52942. }
  52943. },
  52944. },
  52945. [
  52946. {
  52947. name: "Normal",
  52948. height: math.unit(120, "cm"),
  52949. default: true
  52950. },
  52951. {
  52952. name: "Dire",
  52953. height: math.unit(230, "cm")
  52954. },
  52955. {
  52956. name: "Macro",
  52957. height: math.unit(37, "feet")
  52958. },
  52959. ]
  52960. ))
  52961. characterMakers.push(() => makeCharacter(
  52962. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  52963. {
  52964. front: {
  52965. height: math.unit(6 + 3/12, "feet"),
  52966. name: "Front",
  52967. image: {
  52968. source: "./media/characters/michael-berretta/front.svg",
  52969. extra: 515/494,
  52970. bottom: 20/535
  52971. }
  52972. },
  52973. back: {
  52974. height: math.unit(6 + 3/12, "feet"),
  52975. name: "Back",
  52976. image: {
  52977. source: "./media/characters/michael-berretta/back.svg",
  52978. extra: 520/497,
  52979. bottom: 21/541
  52980. }
  52981. },
  52982. frontNsfw: {
  52983. height: math.unit(6 + 3/12, "feet"),
  52984. name: "Front (NSFW)",
  52985. image: {
  52986. source: "./media/characters/michael-berretta/front-nsfw.svg",
  52987. extra: 515/494,
  52988. bottom: 20/535
  52989. }
  52990. },
  52991. dick: {
  52992. height: math.unit(1, "feet"),
  52993. name: "Dick",
  52994. image: {
  52995. source: "./media/characters/michael-berretta/dick.svg"
  52996. }
  52997. },
  52998. },
  52999. [
  53000. {
  53001. name: "Normal",
  53002. height: math.unit(6 + 3/12, "feet"),
  53003. default: true
  53004. },
  53005. {
  53006. name: "Big",
  53007. height: math.unit(12, "feet")
  53008. },
  53009. {
  53010. name: "Macro",
  53011. height: math.unit(187.5, "feet")
  53012. },
  53013. ]
  53014. ))
  53015. characterMakers.push(() => makeCharacter(
  53016. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53017. {
  53018. front: {
  53019. height: math.unit(9 + 9/12, "feet"),
  53020. weight: math.unit(1244, "lb"),
  53021. name: "Front",
  53022. image: {
  53023. source: "./media/characters/stella-edgecomb/front.svg",
  53024. extra: 1835/1706,
  53025. bottom: 49/1884
  53026. }
  53027. },
  53028. pen: {
  53029. height: math.unit(0.95, "feet"),
  53030. name: "Pen",
  53031. image: {
  53032. source: "./media/characters/stella-edgecomb/pen.svg"
  53033. }
  53034. },
  53035. },
  53036. [
  53037. {
  53038. name: "Cozy Bear",
  53039. height: math.unit(0.5, "inches")
  53040. },
  53041. {
  53042. name: "Normal",
  53043. height: math.unit(9 + 9/12, "feet"),
  53044. default: true
  53045. },
  53046. {
  53047. name: "Giga Bear",
  53048. height: math.unit(1, "mile")
  53049. },
  53050. {
  53051. name: "Great Bear",
  53052. height: math.unit(53, "miles")
  53053. },
  53054. {
  53055. name: "Goddess Bear",
  53056. height: math.unit(40000, "miles")
  53057. },
  53058. {
  53059. name: "Sun Bear",
  53060. height: math.unit(900000, "miles")
  53061. },
  53062. ]
  53063. ))
  53064. characterMakers.push(() => makeCharacter(
  53065. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53066. {
  53067. anthroFront: {
  53068. height: math.unit(556, "cm"),
  53069. weight: math.unit(2650, "kg"),
  53070. preyCapacity: math.unit(3, "people"),
  53071. name: "Front",
  53072. image: {
  53073. source: "./media/characters/ash´iika/front.svg",
  53074. extra: 710/673,
  53075. bottom: 15/725
  53076. },
  53077. form: "anthro",
  53078. default: true
  53079. },
  53080. anthroSide: {
  53081. height: math.unit(556, "cm"),
  53082. weight: math.unit(2650, "kg"),
  53083. preyCapacity: math.unit(3, "people"),
  53084. name: "Side",
  53085. image: {
  53086. source: "./media/characters/ash´iika/side.svg",
  53087. extra: 696/676,
  53088. bottom: 13/709
  53089. },
  53090. form: "anthro"
  53091. },
  53092. anthroDressed: {
  53093. height: math.unit(556, "cm"),
  53094. weight: math.unit(2650, "kg"),
  53095. preyCapacity: math.unit(3, "people"),
  53096. name: "Dressed",
  53097. image: {
  53098. source: "./media/characters/ash´iika/dressed.svg",
  53099. extra: 710/673,
  53100. bottom: 15/725
  53101. },
  53102. form: "anthro"
  53103. },
  53104. anthroHead: {
  53105. height: math.unit(3.5, "feet"),
  53106. name: "Head",
  53107. image: {
  53108. source: "./media/characters/ash´iika/head.svg",
  53109. extra: 348/291,
  53110. bottom: 45/393
  53111. },
  53112. form: "anthro"
  53113. },
  53114. feralSide: {
  53115. height: math.unit(870, "cm"),
  53116. weight: math.unit(17500, "kg"),
  53117. preyCapacity: math.unit(15, "people"),
  53118. name: "Side",
  53119. image: {
  53120. source: "./media/characters/ash´iika/feral.svg",
  53121. extra: 595/199,
  53122. bottom: 7/602
  53123. },
  53124. form: "feral",
  53125. default: true,
  53126. },
  53127. },
  53128. [
  53129. {
  53130. name: "Normal",
  53131. height: math.unit(556, "cm"),
  53132. default: true,
  53133. form: "anthro"
  53134. },
  53135. {
  53136. name: "Macro",
  53137. height: math.unit(88, "meters"),
  53138. form: "anthro"
  53139. },
  53140. {
  53141. name: "Normal",
  53142. height: math.unit(870, "cm"),
  53143. default: true,
  53144. form: "feral"
  53145. },
  53146. {
  53147. name: "Large",
  53148. height: math.unit(25, "meters"),
  53149. form: "feral"
  53150. },
  53151. ],
  53152. {
  53153. "anthro": {
  53154. name: "Anthro",
  53155. default: true
  53156. },
  53157. "feral": {
  53158. name: "Feral",
  53159. },
  53160. }
  53161. ))
  53162. characterMakers.push(() => makeCharacter(
  53163. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53164. {
  53165. front: {
  53166. height: math.unit(10, "feet"),
  53167. weight: math.unit(800, "lb"),
  53168. name: "Front",
  53169. image: {
  53170. source: "./media/characters/yen/front.svg",
  53171. extra: 443/411,
  53172. bottom: 6/449
  53173. }
  53174. },
  53175. sleeping: {
  53176. height: math.unit(10, "feet"),
  53177. weight: math.unit(800, "lb"),
  53178. name: "Sleeping",
  53179. image: {
  53180. source: "./media/characters/yen/sleeping.svg",
  53181. extra: 470/422,
  53182. bottom: 0/470
  53183. }
  53184. },
  53185. head: {
  53186. height: math.unit(2.2, "feet"),
  53187. name: "Head",
  53188. image: {
  53189. source: "./media/characters/yen/head.svg"
  53190. }
  53191. },
  53192. headAlt: {
  53193. height: math.unit(2.1, "feet"),
  53194. name: "Head (Alt)",
  53195. image: {
  53196. source: "./media/characters/yen/head-alt.svg"
  53197. }
  53198. },
  53199. },
  53200. [
  53201. {
  53202. name: "Normal",
  53203. height: math.unit(10, "feet"),
  53204. default: true
  53205. },
  53206. ]
  53207. ))
  53208. characterMakers.push(() => makeCharacter(
  53209. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  53210. {
  53211. front: {
  53212. height: math.unit(12, "feet"),
  53213. name: "Front",
  53214. image: {
  53215. source: "./media/characters/citra/front.svg",
  53216. extra: 1950/1710,
  53217. bottom: 47/1997
  53218. }
  53219. },
  53220. },
  53221. [
  53222. {
  53223. name: "Normal",
  53224. height: math.unit(12, "feet"),
  53225. default: true
  53226. },
  53227. ]
  53228. ))
  53229. characterMakers.push(() => makeCharacter(
  53230. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  53231. {
  53232. side: {
  53233. height: math.unit(7 + 10/12, "feet"),
  53234. name: "Side",
  53235. image: {
  53236. source: "./media/characters/sholstim/side.svg",
  53237. extra: 786/682,
  53238. bottom: 40/826
  53239. }
  53240. },
  53241. },
  53242. [
  53243. {
  53244. name: "Normal",
  53245. height: math.unit(7 + 10/12, "feet"),
  53246. default: true
  53247. },
  53248. ]
  53249. ))
  53250. characterMakers.push(() => makeCharacter(
  53251. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  53252. {
  53253. front: {
  53254. height: math.unit(3.10, "meters"),
  53255. name: "Front",
  53256. image: {
  53257. source: "./media/characters/aggyn/front.svg",
  53258. extra: 1188/963,
  53259. bottom: 24/1212
  53260. }
  53261. },
  53262. },
  53263. [
  53264. {
  53265. name: "Normal",
  53266. height: math.unit(3.10, "meters"),
  53267. default: true
  53268. },
  53269. ]
  53270. ))
  53271. characterMakers.push(() => makeCharacter(
  53272. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  53273. {
  53274. front: {
  53275. height: math.unit(7 + 5/12, "feet"),
  53276. weight: math.unit(687, "lb"),
  53277. name: "Front",
  53278. image: {
  53279. source: "./media/characters/alsandair-hergenroether/front.svg",
  53280. extra: 1251/1186,
  53281. bottom: 75/1326
  53282. }
  53283. },
  53284. back: {
  53285. height: math.unit(7 + 5/12, "feet"),
  53286. weight: math.unit(687, "lb"),
  53287. name: "Back",
  53288. image: {
  53289. source: "./media/characters/alsandair-hergenroether/back.svg",
  53290. extra: 1290/1229,
  53291. bottom: 17/1307
  53292. }
  53293. },
  53294. },
  53295. [
  53296. {
  53297. name: "Max Compression",
  53298. height: math.unit(7 + 5/12, "feet"),
  53299. default: true
  53300. },
  53301. {
  53302. name: "\"Normal\"",
  53303. height: math.unit(2, "universes")
  53304. },
  53305. ]
  53306. ))
  53307. characterMakers.push(() => makeCharacter(
  53308. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  53309. {
  53310. front: {
  53311. height: math.unit(4 + 1/12, "feet"),
  53312. weight: math.unit(92, "lb"),
  53313. name: "Front",
  53314. image: {
  53315. source: "./media/characters/ie/front.svg",
  53316. extra: 1585/1352,
  53317. bottom: 91/1676
  53318. }
  53319. },
  53320. },
  53321. [
  53322. {
  53323. name: "Normal",
  53324. height: math.unit(4 + 1/12, "feet"),
  53325. default: true
  53326. },
  53327. ]
  53328. ))
  53329. characterMakers.push(() => makeCharacter(
  53330. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  53331. {
  53332. anthro: {
  53333. height: math.unit(6, "feet"),
  53334. weight: math.unit(150, "lb"),
  53335. name: "Front",
  53336. image: {
  53337. source: "./media/characters/willow/anthro.svg",
  53338. extra: 1073/986,
  53339. bottom: 34/1107
  53340. },
  53341. form: "anthro",
  53342. default: true
  53343. },
  53344. taur: {
  53345. height: math.unit(6, "feet"),
  53346. weight: math.unit(150, "lb"),
  53347. name: "Side",
  53348. image: {
  53349. source: "./media/characters/willow/taur.svg",
  53350. extra: 647/512,
  53351. bottom: 136/783
  53352. },
  53353. form: "taur",
  53354. default: true
  53355. },
  53356. },
  53357. [
  53358. {
  53359. name: "Humanoid",
  53360. height: math.unit(2.7, "meters"),
  53361. form: "anthro"
  53362. },
  53363. {
  53364. name: "Normal",
  53365. height: math.unit(9, "meters"),
  53366. form: "anthro",
  53367. default: true
  53368. },
  53369. {
  53370. name: "Humanoid",
  53371. height: math.unit(2.1, "meters"),
  53372. form: "taur"
  53373. },
  53374. {
  53375. name: "Normal",
  53376. height: math.unit(7, "meters"),
  53377. form: "taur",
  53378. default: true
  53379. },
  53380. ],
  53381. {
  53382. "anthro": {
  53383. name: "Anthro",
  53384. default: true
  53385. },
  53386. "taur": {
  53387. name: "Taur",
  53388. },
  53389. }
  53390. ))
  53391. characterMakers.push(() => makeCharacter(
  53392. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  53393. {
  53394. front: {
  53395. height: math.unit(2 + 5/12, "feet"),
  53396. name: "Front",
  53397. image: {
  53398. source: "./media/characters/kyan/front.svg",
  53399. extra: 460/334,
  53400. bottom: 23/483
  53401. },
  53402. extraAttributes: {
  53403. "toeLength": {
  53404. name: "Toe Length",
  53405. power: 1,
  53406. type: "length",
  53407. base: math.unit(7, "cm")
  53408. },
  53409. "toeclawLength": {
  53410. name: "Toeclaw Length",
  53411. power: 1,
  53412. type: "length",
  53413. base: math.unit(4.7, "cm")
  53414. },
  53415. "earHeight": {
  53416. name: "Ear Height",
  53417. power: 1,
  53418. type: "length",
  53419. base: math.unit(14.1, "cm")
  53420. },
  53421. }
  53422. },
  53423. paws: {
  53424. height: math.unit(0.45, "feet"),
  53425. name: "Paws",
  53426. image: {
  53427. source: "./media/characters/kyan/paws.svg",
  53428. extra: 581/581,
  53429. bottom: 114/695
  53430. }
  53431. },
  53432. },
  53433. [
  53434. {
  53435. name: "Normal",
  53436. height: math.unit(2 + 5/12, "feet"),
  53437. default: true
  53438. },
  53439. ]
  53440. ))
  53441. characterMakers.push(() => makeCharacter(
  53442. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  53443. {
  53444. front: {
  53445. height: math.unit(2 + 2/3, "feet"),
  53446. name: "Front",
  53447. image: {
  53448. source: "./media/characters/xazzon/front.svg",
  53449. extra: 1109/984,
  53450. bottom: 42/1151
  53451. }
  53452. },
  53453. back: {
  53454. height: math.unit(2 + 2/3, "feet"),
  53455. name: "Back",
  53456. image: {
  53457. source: "./media/characters/xazzon/back.svg",
  53458. extra: 1095/971,
  53459. bottom: 23/1118
  53460. }
  53461. },
  53462. },
  53463. [
  53464. {
  53465. name: "Normal",
  53466. height: math.unit(2 + 2/3, "feet"),
  53467. default: true
  53468. },
  53469. ]
  53470. ))
  53471. characterMakers.push(() => makeCharacter(
  53472. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  53473. {
  53474. dressed: {
  53475. height: math.unit(5 + 7/12, "feet"),
  53476. weight: math.unit(173, "lb"),
  53477. name: "Dressed",
  53478. image: {
  53479. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  53480. extra: 3262/2862,
  53481. bottom: 188/3450
  53482. }
  53483. },
  53484. undressed: {
  53485. height: math.unit(5 + 7/12, "feet"),
  53486. weight: math.unit(173, "lb"),
  53487. name: "Undressed",
  53488. image: {
  53489. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  53490. extra: 3262/2862,
  53491. bottom: 188/3450
  53492. }
  53493. },
  53494. },
  53495. [
  53496. {
  53497. name: "The void",
  53498. height: math.unit(7.29193e-34, "angstroms")
  53499. },
  53500. {
  53501. name: "Uh-Oh.",
  53502. height: math.unit(5.734e-7, "angstroms")
  53503. },
  53504. {
  53505. name: "Pico",
  53506. height: math.unit(0.876, "angstroms")
  53507. },
  53508. {
  53509. name: "Nano",
  53510. height: math.unit(0.000134200, "mm")
  53511. },
  53512. {
  53513. name: "Micro",
  53514. height: math.unit(0.0673020, "mm")
  53515. },
  53516. {
  53517. name: "Tiny",
  53518. height: math.unit(2.4, "mm")
  53519. },
  53520. {
  53521. name: "Actual Normal",
  53522. height: math.unit(3, "inches"),
  53523. default: true
  53524. },
  53525. {
  53526. name: "Normal",
  53527. height: math.unit(5 + 8/12, "feet")
  53528. },
  53529. {
  53530. name: "Giant",
  53531. height: math.unit(12, "feet")
  53532. },
  53533. {
  53534. name: "City Ruler",
  53535. height: math.unit(270, "meters")
  53536. },
  53537. {
  53538. name: "Giga",
  53539. height: math.unit(1117.6, "km")
  53540. },
  53541. {
  53542. name: "All-Powerful Queen",
  53543. height: math.unit(70.8, "gigameters")
  53544. },
  53545. {
  53546. name: "'Goddess'",
  53547. height: math.unit(600, "yottameters")
  53548. },
  53549. {
  53550. name: "Biggest!",
  53551. height: math.unit(4.23e5, "yottameters")
  53552. },
  53553. ]
  53554. ))
  53555. characterMakers.push(() => makeCharacter(
  53556. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  53557. {
  53558. front: {
  53559. height: math.unit(8, "feet"),
  53560. weight: math.unit(300, "lb"),
  53561. name: "Front",
  53562. image: {
  53563. source: "./media/characters/khyla-shadowsong/front.svg",
  53564. extra: 861/798,
  53565. bottom: 32/893
  53566. }
  53567. },
  53568. side: {
  53569. height: math.unit(8, "feet"),
  53570. weight: math.unit(300, "lb"),
  53571. name: "Side",
  53572. image: {
  53573. source: "./media/characters/khyla-shadowsong/side.svg",
  53574. extra: 790/750,
  53575. bottom: 87/877
  53576. }
  53577. },
  53578. back: {
  53579. height: math.unit(8, "feet"),
  53580. weight: math.unit(300, "lb"),
  53581. name: "Back",
  53582. image: {
  53583. source: "./media/characters/khyla-shadowsong/back.svg",
  53584. extra: 855/808,
  53585. bottom: 14/869
  53586. }
  53587. },
  53588. head: {
  53589. height: math.unit(2.7, "feet"),
  53590. name: "Head",
  53591. image: {
  53592. source: "./media/characters/khyla-shadowsong/head.svg"
  53593. }
  53594. },
  53595. },
  53596. [
  53597. {
  53598. name: "Micro",
  53599. height: math.unit(6, "inches")
  53600. },
  53601. {
  53602. name: "Normal",
  53603. height: math.unit(8, "feet"),
  53604. default: true
  53605. },
  53606. ]
  53607. ))
  53608. characterMakers.push(() => makeCharacter(
  53609. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  53610. {
  53611. hyperFront: {
  53612. height: math.unit(9 + 4/12, "feet"),
  53613. weight: math.unit(2000, "lb"),
  53614. name: "Front",
  53615. image: {
  53616. source: "./media/characters/tiden/hyper-front.svg",
  53617. extra: 400/382,
  53618. bottom: 6/406
  53619. },
  53620. form: "hyper",
  53621. },
  53622. regularFront: {
  53623. height: math.unit(7 + 10/12, "feet"),
  53624. weight: math.unit(470, "lb"),
  53625. name: "Front",
  53626. image: {
  53627. source: "./media/characters/tiden/regular-front.svg",
  53628. extra: 468/442,
  53629. bottom: 6/474
  53630. },
  53631. form: "regular",
  53632. },
  53633. },
  53634. [
  53635. {
  53636. name: "Normal",
  53637. height: math.unit(9 + 4/12, "feet"),
  53638. default: true,
  53639. form: "hyper"
  53640. },
  53641. {
  53642. name: "Normal",
  53643. height: math.unit(7 + 10/12, "feet"),
  53644. default: true,
  53645. form: "regular"
  53646. },
  53647. ],
  53648. {
  53649. "hyper": {
  53650. name: "Hyper",
  53651. default: true
  53652. },
  53653. "regular": {
  53654. name: "Regular",
  53655. },
  53656. }
  53657. ))
  53658. characterMakers.push(() => makeCharacter(
  53659. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  53660. {
  53661. side: {
  53662. height: math.unit(6, "feet"),
  53663. weight: math.unit(150, "lb"),
  53664. name: "Side",
  53665. image: {
  53666. source: "./media/characters/jason-crowe/side.svg",
  53667. extra: 1771/766,
  53668. bottom: 219/1990
  53669. }
  53670. },
  53671. },
  53672. [
  53673. {
  53674. name: "Pocket Gryphon",
  53675. height: math.unit(6, "cm")
  53676. },
  53677. {
  53678. name: "Raven",
  53679. height: math.unit(60, "cm")
  53680. },
  53681. {
  53682. name: "Normal",
  53683. height: math.unit(1, "meter"),
  53684. default: true
  53685. },
  53686. ]
  53687. ))
  53688. //characters
  53689. function makeCharacters() {
  53690. const results = [];
  53691. characterMakers.forEach(character => {
  53692. results.push(character());
  53693. });
  53694. return results;
  53695. }