less copy protection, more size visualization
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

58639 lines
1.5 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. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal"
  234. ]
  235. },
  236. "ram": {
  237. name: "Ram",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "demon": {
  243. name: "Demon",
  244. parents: [
  245. "supernatural"
  246. ]
  247. },
  248. "cougar": {
  249. name: "Cougar",
  250. parents: [
  251. "cat"
  252. ]
  253. },
  254. "goat": {
  255. name: "Goat",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "lion": {
  261. name: "Lion",
  262. parents: [
  263. "cat"
  264. ]
  265. },
  266. "harpy-eager": {
  267. name: "Harpy Eagle",
  268. parents: [
  269. "avian"
  270. ]
  271. },
  272. "deer": {
  273. name: "Deer",
  274. parents: [
  275. "mammal"
  276. ]
  277. },
  278. "phoenix": {
  279. name: "Phoenix",
  280. parents: [
  281. "avian"
  282. ]
  283. },
  284. "aeromorph": {
  285. name: "Aeromorph",
  286. parents: [
  287. "machine"
  288. ]
  289. },
  290. "machine": {
  291. name: "Machine",
  292. },
  293. "android": {
  294. name: "Android",
  295. parents: [
  296. "machine"
  297. ]
  298. },
  299. "jackal": {
  300. name: "Jackal",
  301. parents: [
  302. "canine"
  303. ]
  304. },
  305. "corvid": {
  306. name: "Corvid",
  307. parents: [
  308. "passerine"
  309. ]
  310. },
  311. "pharaoh-hound": {
  312. name: "Pharaoh Hound",
  313. parents: [
  314. "dog"
  315. ]
  316. },
  317. "skunk": {
  318. name: "Skunk",
  319. parents: [
  320. "mammal"
  321. ]
  322. },
  323. "shark": {
  324. name: "Shark",
  325. parents: [
  326. "fish"
  327. ]
  328. },
  329. "black-panther": {
  330. name: "Black Panther",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "umbra": {
  336. name: "Umbra",
  337. parents: [
  338. "animal"
  339. ]
  340. },
  341. "raven": {
  342. name: "Raven",
  343. parents: [
  344. "corvid"
  345. ]
  346. },
  347. "snow-leopard": {
  348. name: "Snow Leopard",
  349. parents: [
  350. "cat"
  351. ]
  352. },
  353. "barbary-lion": {
  354. name: "Barbary Lion",
  355. parents: [
  356. "lion"
  357. ]
  358. },
  359. "dra'gal": {
  360. name: "Dra'Gal",
  361. parents: [
  362. "mammal"
  363. ]
  364. },
  365. "german-shepherd": {
  366. name: "German Shepherd",
  367. parents: [
  368. "dog"
  369. ]
  370. },
  371. "bayleef": {
  372. name: "Bayleef",
  373. parents: [
  374. "pokemon",
  375. "plant",
  376. "animal"
  377. ]
  378. },
  379. "mouse": {
  380. name: "Mouse",
  381. parents: [
  382. "rodent"
  383. ]
  384. },
  385. "rat": {
  386. name: "Rat",
  387. parents: [
  388. "mammal"
  389. ]
  390. },
  391. "hoshiko-beast": {
  392. name: "Hoshiko Beast",
  393. parents: ["animal"]
  394. },
  395. "snow-jugani": {
  396. name: "Snow Jugani",
  397. parents: ["cat"]
  398. },
  399. "patamon": {
  400. name: "Patamon",
  401. parents: ["digimon", "guinea-pig"]
  402. },
  403. "digimon": {
  404. name: "Digimon",
  405. parents: [
  406. "video-games"
  407. ]
  408. },
  409. "jugani": {
  410. name: "Jugani",
  411. parents: ["cat"]
  412. },
  413. "luxray": {
  414. name: "Luxray",
  415. parents: ["pokemon", "lion"]
  416. },
  417. "mech": {
  418. name: "Mech",
  419. parents: ["machine"]
  420. },
  421. "zoid": {
  422. name: "Zoid",
  423. parents: ["mech"]
  424. },
  425. "monster": {
  426. name: "Monster",
  427. parents: ["animal"]
  428. },
  429. "foo-dog": {
  430. name: "Foo Dog",
  431. parents: ["mammal"]
  432. },
  433. "elephant": {
  434. name: "Elephant",
  435. parents: ["mammal"]
  436. },
  437. "eagle": {
  438. name: "Eagle",
  439. parents: ["bird-of-prey"]
  440. },
  441. "cow": {
  442. name: "Cow",
  443. parents: ["mammal"]
  444. },
  445. "crocodile": {
  446. name: "Crocodile",
  447. parents: ["reptile"]
  448. },
  449. "borzoi": {
  450. name: "Borzoi",
  451. parents: ["dog"]
  452. },
  453. "snake": {
  454. name: "Snake",
  455. parents: ["reptile"]
  456. },
  457. "horned-bush-viper": {
  458. name: "Horned Bush Viper",
  459. parents: ["viper"]
  460. },
  461. "cobra": {
  462. name: "Cobra",
  463. parents: ["snake"]
  464. },
  465. "harpy-eagle": {
  466. name: "Harpy Eagle",
  467. parents: ["eagle"]
  468. },
  469. "raptor": {
  470. name: "Raptor",
  471. parents: ["dinosaur"]
  472. },
  473. "dinosaur": {
  474. name: "Dinosaur",
  475. parents: ["reptile"]
  476. },
  477. "veilhound": {
  478. name: "Veilhound",
  479. parents: ["hellhound"]
  480. },
  481. "hellhound": {
  482. name: "Hellhound",
  483. parents: ["canine", "demon"]
  484. },
  485. "insect": {
  486. name: "Insect",
  487. parents: ["animal"]
  488. },
  489. "beetle": {
  490. name: "Beetle",
  491. parents: ["insect"]
  492. },
  493. "moth": {
  494. name: "Moth",
  495. parents: ["insect"]
  496. },
  497. "eastern-dragon": {
  498. name: "Eastern Dragon",
  499. parents: ["dragon"]
  500. },
  501. "jaguar": {
  502. name: "Jaguar",
  503. parents: ["cat"]
  504. },
  505. "horse": {
  506. name: "Horse",
  507. parents: ["mammal"]
  508. },
  509. "sergal": {
  510. name: "Sergal",
  511. parents: ["mammal", "avian", "vilous"]
  512. },
  513. "gryphon": {
  514. name: "Gryphon",
  515. parents: ["lion", "eagle"]
  516. },
  517. "robot": {
  518. name: "Robot",
  519. parents: ["machine"]
  520. },
  521. "medihound": {
  522. name: "Medihound",
  523. parents: ["robot", "dog"]
  524. },
  525. "sylveon": {
  526. name: "Sylveon",
  527. parents: ["pokemon"]
  528. },
  529. "catgirl": {
  530. name: "Catgirl",
  531. parents: ["mammal"]
  532. },
  533. "cowgirl": {
  534. name: "Cowgirl",
  535. parents: ["mammal"]
  536. },
  537. "pony": {
  538. name: "Pony",
  539. parents: ["horse"]
  540. },
  541. "rabbit": {
  542. name: "Rabbit",
  543. parents: ["leporidae"]
  544. },
  545. "fennec-fox": {
  546. name: "Fennec Fox",
  547. parents: ["fox"]
  548. },
  549. "azodian": {
  550. name: "Azodian",
  551. parents: ["mouse"]
  552. },
  553. "shiba-inu": {
  554. name: "Shiba Inu",
  555. parents: ["dog"]
  556. },
  557. "changeling": {
  558. name: "Changeling",
  559. parents: ["insect"]
  560. },
  561. "cheetah": {
  562. name: "Cheetah",
  563. parents: ["cat"]
  564. },
  565. "golden-jackal": {
  566. name: "Golden Jackal",
  567. parents: ["jackal"]
  568. },
  569. "manectric": {
  570. name: "Manectric",
  571. parents: ["pokemon", "wolf"]
  572. },
  573. "rat": {
  574. name: "Rat",
  575. parents: ["rodent"]
  576. },
  577. "rodent": {
  578. name: "Rodent",
  579. parents: ["mammal"]
  580. },
  581. "octocoon": {
  582. name: "Octocoon",
  583. parents: ["raccoon", "octopus"]
  584. },
  585. "octopus": {
  586. name: "Octopus",
  587. parents: ["fish"]
  588. },
  589. "werewolf": {
  590. name: "Werewolf",
  591. parents: ["wolf", "werebeast"]
  592. },
  593. "werebeast": {
  594. name: "Werebeast",
  595. parents: ["monster"]
  596. },
  597. "meerkat": {
  598. name: "Meerkat",
  599. parents: ["mammal"]
  600. },
  601. "human": {
  602. name: "Human",
  603. parents: ["mammal"]
  604. },
  605. "geth": {
  606. name: "Geth",
  607. parents: ["android"]
  608. },
  609. "husky": {
  610. name: "Husky",
  611. parents: ["dog"]
  612. },
  613. "long-eared-bat": {
  614. name: "Long Eared Bat",
  615. parents: ["bat"]
  616. },
  617. "lizard": {
  618. name: "Lizard",
  619. parents: ["reptile"]
  620. },
  621. "salamander": {
  622. name: "Salamander",
  623. parents: ["lizard"]
  624. },
  625. "chameleon": {
  626. name: "Chameleon",
  627. parents: ["lizard"]
  628. },
  629. "gecko": {
  630. name: "Gecko",
  631. parents: ["lizard"]
  632. },
  633. "kobold": {
  634. name: "Kobold",
  635. parents: ["reptile"]
  636. },
  637. "charizard": {
  638. name: "Charizard",
  639. parents: ["pokemon", "dragon"]
  640. },
  641. "lugia": {
  642. name: "Lugia",
  643. parents: ["pokemon", "avian"]
  644. },
  645. "cerberus": {
  646. name: "Cerberus",
  647. parents: ["dog"]
  648. },
  649. "tyrantrum": {
  650. name: "Tyrantrum",
  651. parents: ["pokemon"]
  652. },
  653. "lemur": {
  654. name: "Lemur",
  655. parents: ["mammal"]
  656. },
  657. "kelpie": {
  658. name: "Kelpie",
  659. parents: ["horse", "monster"]
  660. },
  661. "labrador": {
  662. name: "Labrador",
  663. parents: ["dog"]
  664. },
  665. "sylveon": {
  666. name: "Sylveon",
  667. parents: ["eeveelution"]
  668. },
  669. "eeveelution": {
  670. name: "Eeveelution",
  671. parents: ["pokemon", "cat"]
  672. },
  673. "polar-bear": {
  674. name: "Polar Bear",
  675. parents: ["bear"]
  676. },
  677. "bear": {
  678. name: "Bear",
  679. parents: ["mammal"]
  680. },
  681. "absol": {
  682. name: "Absol",
  683. parents: ["pokemon", "cat"]
  684. },
  685. "wolver": {
  686. name: "Wolver",
  687. parents: ["mammal"]
  688. },
  689. "rottweiler": {
  690. name: "Rottweiler",
  691. parents: ["dog"]
  692. },
  693. "zebra": {
  694. name: "Zebra",
  695. parents: ["horse"]
  696. },
  697. "yoshi": {
  698. name: "Yoshi",
  699. parents: ["dinosaur"]
  700. },
  701. "lynx": {
  702. name: "Lynx",
  703. parents: ["cat"]
  704. },
  705. "unknown": {
  706. name: "Unknown",
  707. parents: []
  708. },
  709. "thylacine": {
  710. name: "Thylacine",
  711. parents: ["mammal"]
  712. },
  713. "gabumon": {
  714. name: "Gabumon",
  715. parents: ["digimon"]
  716. },
  717. "border-collie": {
  718. name: "Border Collie",
  719. parents: ["dog"]
  720. },
  721. "imp": {
  722. name: "Imp",
  723. parents: ["demon"]
  724. },
  725. "kangaroo": {
  726. name: "Kangaroo",
  727. parents: ["marsupial"]
  728. },
  729. "renamon": {
  730. name: "Renamon",
  731. parents: ["digimon", "fox"]
  732. },
  733. "candy-orca-dragon": {
  734. name: "Candy Orca Dragon",
  735. parents: ["fish", "dragon", "candy"]
  736. },
  737. "sabertooth-tiger": {
  738. name: "Sabertooth Tiger",
  739. parents: ["cat"]
  740. },
  741. "espurr": {
  742. name: "Espurr",
  743. parents: ["pokemon", "cat"]
  744. },
  745. "otter": {
  746. name: "Otter",
  747. parents: ["mustelid"]
  748. },
  749. "elemental": {
  750. name: "Elemental",
  751. parents: ["mammal"]
  752. },
  753. "mew": {
  754. name: "Mew",
  755. parents: ["pokemon"]
  756. },
  757. "goodra": {
  758. name: "Goodra",
  759. parents: ["pokemon"]
  760. },
  761. "fairy": {
  762. name: "Fairy",
  763. parents: ["magical"]
  764. },
  765. "typhlosion": {
  766. name: "Typhlosion",
  767. parents: ["pokemon"]
  768. },
  769. "magical": {
  770. name: "Magical",
  771. parents: []
  772. },
  773. "xenomorph": {
  774. name: "Xenomorph",
  775. parents: ["monster", "alien"]
  776. },
  777. "charr": {
  778. name: "Charr",
  779. parents: ["cat"]
  780. },
  781. "siberian-husky": {
  782. name: "Siberian Husky",
  783. parents: ["husky"]
  784. },
  785. "alligator": {
  786. name: "Alligator",
  787. parents: ["reptile"]
  788. },
  789. "bernese-mountain-dog": {
  790. name: "Bernese Mountain Dog",
  791. parents: ["dog"]
  792. },
  793. "reshiram": {
  794. name: "Reshiram",
  795. parents: ["pokemon", "dragon"]
  796. },
  797. "grizzly-bear": {
  798. name: "Grizzly Bear",
  799. parents: ["bear"]
  800. },
  801. "water-monitor": {
  802. name: "Water Monitor",
  803. parents: ["lizard"]
  804. },
  805. "banchofossa": {
  806. name: "Banchofossa",
  807. parents: ["mammal"]
  808. },
  809. "kirin": {
  810. name: "Kirin",
  811. parents: ["monster"]
  812. },
  813. "quilava": {
  814. name: "Quilava",
  815. parents: ["pokemon"]
  816. },
  817. "seviper": {
  818. name: "Seviper",
  819. parents: ["pokemon", "viper"]
  820. },
  821. "flying-fox": {
  822. name: "Flying Fox",
  823. parents: ["bat"]
  824. },
  825. "keynain": {
  826. name: "Keynain",
  827. parents: ["avian"]
  828. },
  829. "lucario": {
  830. name: "Lucario",
  831. parents: ["pokemon", "jackal"]
  832. },
  833. "siamese-cat": {
  834. name: "Siamese Cat",
  835. parents: ["cat"]
  836. },
  837. "spider": {
  838. name: "Spider",
  839. parents: ["insect"]
  840. },
  841. "samurott": {
  842. name: "Samurott",
  843. parents: ["pokemon", "otter"]
  844. },
  845. "megalodon": {
  846. name: "Megalodon",
  847. parents: ["shark"]
  848. },
  849. "unicorn": {
  850. name: "Unicorn",
  851. parents: ["horse"]
  852. },
  853. "greninja": {
  854. name: "Greninja",
  855. parents: ["pokemon", "frog"]
  856. },
  857. "water-dragon": {
  858. name: "Water Dragon",
  859. parents: ["dragon"]
  860. },
  861. "cross-fox": {
  862. name: "Cross Fox",
  863. parents: ["fox"]
  864. },
  865. "synth": {
  866. name: "Synth",
  867. parents: ["machine"]
  868. },
  869. "construct": {
  870. name: "Construct",
  871. parents: []
  872. },
  873. "mexican-wolf": {
  874. name: "Mexican Wolf",
  875. parents: ["wolf"]
  876. },
  877. "leopard": {
  878. name: "Leopard",
  879. parents: ["cat"]
  880. },
  881. "pig": {
  882. name: "Pig",
  883. parents: ["mammal"]
  884. },
  885. "ampharos": {
  886. name: "Ampharos",
  887. parents: ["pokemon", "sheep"]
  888. },
  889. "orca": {
  890. name: "Orca",
  891. parents: ["fish"]
  892. },
  893. "lycanroc": {
  894. name: "Lycanroc",
  895. parents: ["pokemon", "wolf"]
  896. },
  897. "surkanu": {
  898. name: "Surkanu",
  899. parents: ["monster"]
  900. },
  901. "seal": {
  902. name: "Seal",
  903. parents: ["mammal"]
  904. },
  905. "keldeo": {
  906. name: "Keldeo",
  907. parents: ["pokemon"]
  908. },
  909. "great-dane": {
  910. name: "Great Dane",
  911. parents: ["dog"]
  912. },
  913. "black-backed-jackal": {
  914. name: "Black Backed Jackal",
  915. parents: ["jackal"]
  916. },
  917. "sheep": {
  918. name: "Sheep",
  919. parents: ["mammal"]
  920. },
  921. "leopard-seal": {
  922. name: "Leopard Seal",
  923. parents: ["seal"]
  924. },
  925. "zoroark": {
  926. name: "Zoroark",
  927. parents: ["pokemon", "fox"]
  928. },
  929. "maned-wolf": {
  930. name: "Maned Wolf",
  931. parents: ["canine"]
  932. },
  933. "dracha": {
  934. name: "Dracha",
  935. parents: ["dragon"]
  936. },
  937. "wolxi": {
  938. name: "Wolxi",
  939. parents: ["mammal", "alien"]
  940. },
  941. "dratini": {
  942. name: "Dratini",
  943. parents: ["pokemon", "dragon"]
  944. },
  945. "skaven": {
  946. name: "Skaven",
  947. parents: ["rat"]
  948. },
  949. "mongoose": {
  950. name: "Mongoose",
  951. parents: ["mammal"]
  952. },
  953. "lopunny": {
  954. name: "Lopunny",
  955. parents: ["pokemon", "rabbit"]
  956. },
  957. "feraligatr": {
  958. name: "Feraligatr",
  959. parents: ["pokemon", "alligator"]
  960. },
  961. "houndoom": {
  962. name: "Houndoom",
  963. parents: ["pokemon", "dog"]
  964. },
  965. "protogen": {
  966. name: "Protogen",
  967. parents: ["machine"]
  968. },
  969. "saint-bernard": {
  970. name: "Saint Bernard",
  971. parents: ["dog"]
  972. },
  973. "crow": {
  974. name: "Crow",
  975. parents: ["corvid"]
  976. },
  977. "delphox": {
  978. name: "Delphox",
  979. parents: ["pokemon", "fox"]
  980. },
  981. "moose": {
  982. name: "Moose",
  983. parents: ["mammal"]
  984. },
  985. "joraxian": {
  986. name: "Joraxian",
  987. parents: ["monster", "canine", "demon"]
  988. },
  989. "nimbat": {
  990. name: "Nimbat",
  991. parents: ["mammal"]
  992. },
  993. "aardwolf": {
  994. name: "Aardwolf",
  995. parents: ["canine"]
  996. },
  997. "fluudrani": {
  998. name: "Fluudrani",
  999. parents: ["animal"]
  1000. },
  1001. "arcanine": {
  1002. name: "Arcanine",
  1003. parents: ["pokemon", "dog"]
  1004. },
  1005. "inteleon": {
  1006. name: "Inteleon",
  1007. parents: ["pokemon", "fish"]
  1008. },
  1009. "ninetales": {
  1010. name: "Ninetales",
  1011. parents: ["pokemon", "kitsune"]
  1012. },
  1013. "tigrex": {
  1014. name: "Tigrex",
  1015. parents: ["tiger"]
  1016. },
  1017. "zorua": {
  1018. name: "Zorua",
  1019. parents: ["pokemon", "fox"]
  1020. },
  1021. "vulpix": {
  1022. name: "Vulpix",
  1023. parents: ["pokemon", "fox"]
  1024. },
  1025. "barghest": {
  1026. name: "Barghest",
  1027. parents: ["monster"]
  1028. },
  1029. "gray-wolf": {
  1030. name: "Gray Wolf",
  1031. parents: ["wolf"]
  1032. },
  1033. "ruppells-fox": {
  1034. name: "Rüppell's Fox",
  1035. parents: ["fox"]
  1036. },
  1037. "bull-terrier": {
  1038. name: "Bull Terrier",
  1039. parents: ["dog"]
  1040. },
  1041. "european-honey-buzzard": {
  1042. name: "European Honey Buzzard",
  1043. parents: ["avian"]
  1044. },
  1045. "t-rex": {
  1046. name: "Tyrannosaurus Rex",
  1047. parents: ["dinosaur"]
  1048. },
  1049. "mactarian": {
  1050. name: "Mactarian",
  1051. parents: ["shark", "monster"]
  1052. },
  1053. "mewtwo-y": {
  1054. name: "Mewtwo Y",
  1055. parents: ["mewtwo"]
  1056. },
  1057. "mewtwo": {
  1058. name: "Mewtwo",
  1059. parents: ["pokemon"]
  1060. },
  1061. "eevee": {
  1062. name: "Eevee",
  1063. parents: ["eeveelution"]
  1064. },
  1065. "mienshao": {
  1066. name: "Mienshao",
  1067. parents: ["pokemon"]
  1068. },
  1069. "sugar-glider": {
  1070. name: "Sugar Glider",
  1071. parents: ["opossum"]
  1072. },
  1073. "spectral-bat": {
  1074. name: "Spectral Bat",
  1075. parents: ["bat"]
  1076. },
  1077. "scolipede": {
  1078. name: "Scolipede",
  1079. parents: ["pokemon", "insect"]
  1080. },
  1081. "jackalope": {
  1082. name: "Jackalope",
  1083. parents: ["rabbit", "antelope"]
  1084. },
  1085. "caracal": {
  1086. name: "Caracal",
  1087. parents: ["cat"]
  1088. },
  1089. "stoat": {
  1090. name: "Stoat",
  1091. parents: ["mammal"]
  1092. },
  1093. "african-golden-cat": {
  1094. name: "African Golden Cat",
  1095. parents: ["cat"]
  1096. },
  1097. "gigantosaurus": {
  1098. name: "Gigantosaurus",
  1099. parents: ["dinosaur"]
  1100. },
  1101. "zorgoia": {
  1102. name: "Zorgoia",
  1103. parents: ["mammal"]
  1104. },
  1105. "monitor-lizard": {
  1106. name: "Monitor Lizard",
  1107. parents: ["lizard"]
  1108. },
  1109. "ziralkia": {
  1110. name: "Ziralkia",
  1111. parents: ["mammal"]
  1112. },
  1113. "kiiasi": {
  1114. name: "Kiiasi",
  1115. parents: ["animal"]
  1116. },
  1117. "synx": {
  1118. name: "Synx",
  1119. parents: ["monster"]
  1120. },
  1121. "panther": {
  1122. name: "Panther",
  1123. parents: ["cat"]
  1124. },
  1125. "azumarill": {
  1126. name: "Azumarill",
  1127. parents: ["pokemon"]
  1128. },
  1129. "river-snaptail": {
  1130. name: "River Snaptail",
  1131. parents: ["otter", "crocodile"]
  1132. },
  1133. "great-blue-heron": {
  1134. name: "Great Blue Heron",
  1135. parents: ["avian"]
  1136. },
  1137. "smeargle": {
  1138. name: "Smeargle",
  1139. parents: ["pokemon"]
  1140. },
  1141. "vendeilen": {
  1142. name: "Vendeilen",
  1143. parents: ["monster"]
  1144. },
  1145. "ventura": {
  1146. name: "Ventura",
  1147. parents: ["canine"]
  1148. },
  1149. "clouded-leopard": {
  1150. name: "Clouded Leopard",
  1151. parents: ["leopard"]
  1152. },
  1153. "argonian": {
  1154. name: "Argonian",
  1155. parents: ["lizard"]
  1156. },
  1157. "salazzle": {
  1158. name: "Salazzle",
  1159. parents: ["pokemon", "lizard"]
  1160. },
  1161. "je-stoff-drachen": {
  1162. name: "Je-Stoff Drachen",
  1163. parents: ["dragon"]
  1164. },
  1165. "finnish-spitz-dog": {
  1166. name: "Finnish Spitz Dog",
  1167. parents: ["dog"]
  1168. },
  1169. "gray-fox": {
  1170. name: "Gray Fox",
  1171. parents: ["fox"]
  1172. },
  1173. "opossum": {
  1174. name: "Opossum",
  1175. parents: ["mammal"]
  1176. },
  1177. "antelope": {
  1178. name: "Antelope",
  1179. parents: ["mammal"]
  1180. },
  1181. "weavile": {
  1182. name: "Weavile",
  1183. parents: ["pokemon"]
  1184. },
  1185. "pikachu": {
  1186. name: "Pikachu",
  1187. parents: ["pokemon", "mouse"]
  1188. },
  1189. "grovyle": {
  1190. name: "Grovyle",
  1191. parents: ["pokemon", "plant"]
  1192. },
  1193. "sthara": {
  1194. name: "Sthara",
  1195. parents: ["snow-leopard", "reptile"]
  1196. },
  1197. "star-warrior": {
  1198. name: "Star Warrior",
  1199. parents: ["magical"]
  1200. },
  1201. "dragonoid": {
  1202. name: "Dragonoid",
  1203. parents: ["dragon"]
  1204. },
  1205. "suicune": {
  1206. name: "Suicune",
  1207. parents: ["pokemon"]
  1208. },
  1209. "vole": {
  1210. name: "Vole",
  1211. parents: ["mammal"]
  1212. },
  1213. "blaziken": {
  1214. name: "Blaziken",
  1215. parents: ["pokemon", "avian"]
  1216. },
  1217. "buizel": {
  1218. name: "Buizel",
  1219. parents: ["pokemon", "fish"]
  1220. },
  1221. "floatzel": {
  1222. name: "Floatzel",
  1223. parents: ["pokemon", "fish"]
  1224. },
  1225. "umok": {
  1226. name: "Umok",
  1227. parents: ["avian"]
  1228. },
  1229. "sea-monster": {
  1230. name: "Sea Monster",
  1231. parents: ["monster", "fish"]
  1232. },
  1233. "egyptian-vulture": {
  1234. name: "Egyptian Vulture",
  1235. parents: ["avian"]
  1236. },
  1237. "doberman": {
  1238. name: "Doberman",
  1239. parents: ["dog"]
  1240. },
  1241. "zangoose": {
  1242. name: "Zangoose",
  1243. parents: ["pokemon", "mongoose"]
  1244. },
  1245. "mongoose": {
  1246. name: "Mongoose",
  1247. parents: ["mammal"]
  1248. },
  1249. "wickerbeast": {
  1250. name: "Wickerbeast",
  1251. parents: ["monster"]
  1252. },
  1253. "zenari": {
  1254. name: "Zenari",
  1255. parents: ["lizard"]
  1256. },
  1257. "plant": {
  1258. name: "Plant",
  1259. parents: []
  1260. },
  1261. "raskatox": {
  1262. name: "Raskatox",
  1263. parents: ["raccoon", "skunk", "cat", "fox"]
  1264. },
  1265. "mikromare": {
  1266. name: "mikromare",
  1267. parents: ["alien"]
  1268. },
  1269. "alien": {
  1270. name: "Alien",
  1271. parents: ["animal"]
  1272. },
  1273. "deity": {
  1274. name: "Deity",
  1275. parents: []
  1276. },
  1277. "skarlan": {
  1278. name: "Skarlan",
  1279. parents: ["slug", "dragon"]
  1280. },
  1281. "slug": {
  1282. name: "Slug",
  1283. parents: ["mollusk"]
  1284. },
  1285. "mollusk": {
  1286. name: "Mollusk",
  1287. parents: ["animal"]
  1288. },
  1289. "chimera": {
  1290. name: "Chimera",
  1291. parents: ["monster"]
  1292. },
  1293. "gestalt": {
  1294. name: "Gestalt",
  1295. parents: ["construct"]
  1296. },
  1297. "mimic": {
  1298. name: "Mimic",
  1299. parents: ["monster"]
  1300. },
  1301. "calico-rat": {
  1302. name: "Calico Rat",
  1303. parents: ["rat"]
  1304. },
  1305. "panda": {
  1306. name: "Panda",
  1307. parents: ["mammal"]
  1308. },
  1309. "oni": {
  1310. name: "Oni",
  1311. parents: ["monster"]
  1312. },
  1313. "pegasus": {
  1314. name: "Pegasus",
  1315. parents: ["horse"]
  1316. },
  1317. "vulpera": {
  1318. name: "Vulpera",
  1319. parents: ["fennec-fox"]
  1320. },
  1321. "ceratosaurus": {
  1322. name: "Ceratosaurus",
  1323. parents: ["dinosaur"]
  1324. },
  1325. "nykur": {
  1326. name: "Nykur",
  1327. parents: ["horse", "monster"]
  1328. },
  1329. "giraffe": {
  1330. name: "Giraffe",
  1331. parents: ["mammal"]
  1332. },
  1333. "tauren": {
  1334. name: "Tauren",
  1335. parents: ["cow"]
  1336. },
  1337. "draconi": {
  1338. name: "Draconi",
  1339. parents: ["alien", "cat", "cyborg"]
  1340. },
  1341. "dire-wolf": {
  1342. name: "Dire Wolf",
  1343. parents: ["wolf"]
  1344. },
  1345. "ferromorph": {
  1346. name: "Ferromorph",
  1347. parents: ["construct"]
  1348. },
  1349. "meowth": {
  1350. name: "Meowth",
  1351. parents: ["cat", "pokemon"]
  1352. },
  1353. "pavodragon": {
  1354. name: "Pavodragon",
  1355. parents: ["dragon"]
  1356. },
  1357. "aaltranae": {
  1358. name: "Aaltranae",
  1359. parents: ["dragon"]
  1360. },
  1361. "cyborg": {
  1362. name: "Cyborg",
  1363. parents: ["machine"]
  1364. },
  1365. "draptor": {
  1366. name: "Draptor",
  1367. parents: ["dragon"]
  1368. },
  1369. "candy": {
  1370. name: "Candy",
  1371. parents: []
  1372. },
  1373. "drenath": {
  1374. name: "Drenath",
  1375. parents: ["dragon", "snake", "rabbit"]
  1376. },
  1377. "coyju": {
  1378. name: "Coyju",
  1379. parents: ["coyote", "kaiju"]
  1380. },
  1381. "kaiju": {
  1382. name: "Kaiju",
  1383. parents: ["monster"]
  1384. },
  1385. "nickit": {
  1386. name: "Nickit",
  1387. parents: ["pokemon", "cat"]
  1388. },
  1389. "lopunny": {
  1390. name: "Lopunny",
  1391. parents: ["pokemon", "rabbit"]
  1392. },
  1393. "korean-jindo-dog": {
  1394. name: "Korean Jindo Dog",
  1395. parents: ["dog"]
  1396. },
  1397. "naga": {
  1398. name: "Naga",
  1399. parents: ["snake", "monster"]
  1400. },
  1401. "undead": {
  1402. name: "Undead",
  1403. parents: ["monster"]
  1404. },
  1405. "whale": {
  1406. name: "Whale",
  1407. parents: ["fish"]
  1408. },
  1409. "gelato-bee": {
  1410. name: "Gelato Bee",
  1411. parents: ["bee"]
  1412. },
  1413. "bee": {
  1414. name: "Bee",
  1415. parents: ["insect"]
  1416. },
  1417. "gardevoir": {
  1418. name: "Gardevoir",
  1419. parents: ["pokemon"]
  1420. },
  1421. "ant": {
  1422. name: "Ant",
  1423. parents: ["insect"]
  1424. },
  1425. "frog": {
  1426. name: "Frog",
  1427. parents: ["amphibian"]
  1428. },
  1429. "amphibian": {
  1430. name: "Amphibian",
  1431. parents: ["animal"]
  1432. },
  1433. "pangolin": {
  1434. name: "Pangolin",
  1435. parents: ["mammal"]
  1436. },
  1437. "uragi'viidorn": {
  1438. name: "Uragi'viidorn",
  1439. parents: ["avian", "bear"]
  1440. },
  1441. "gryphdelphais": {
  1442. name: "Gryphdelphais",
  1443. parents: ["dolphin", "gryphon"]
  1444. },
  1445. "plush": {
  1446. name: "Plush",
  1447. parents: ["construct"]
  1448. },
  1449. "draiger": {
  1450. name: "Draiger",
  1451. parents: ["dragon","tiger"]
  1452. },
  1453. "foxsky": {
  1454. name: "Foxsky",
  1455. parents: ["fox", "husky"]
  1456. },
  1457. "umbreon": {
  1458. name: "Umbreon",
  1459. parents: ["eeveelution"]
  1460. },
  1461. "slime-dragon": {
  1462. name: "Slime Dragon",
  1463. parents: ["dragon", "goo"]
  1464. },
  1465. "enderman": {
  1466. name: "Enderman",
  1467. parents: ["monster"]
  1468. },
  1469. "gremlin": {
  1470. name: "Gremlin",
  1471. parents: ["monster"]
  1472. },
  1473. "dragonsune": {
  1474. name: "Dragonsune",
  1475. parents: ["dragon", "kitsune"]
  1476. },
  1477. "ghost": {
  1478. name: "Ghost",
  1479. parents: ["supernatural"]
  1480. },
  1481. "false-vampire-bat": {
  1482. name: "False Vampire Bat",
  1483. parents: ["bat"]
  1484. },
  1485. "succubus": {
  1486. name: "Succubus",
  1487. parents: ["demon"]
  1488. },
  1489. "mia": {
  1490. name: "Mia",
  1491. parents: ["canine"]
  1492. },
  1493. "rainbow": {
  1494. name: "Rainbow",
  1495. parents: ["monster"]
  1496. },
  1497. "solgaleo": {
  1498. name: "Solgaleo",
  1499. parents: ["pokemon"]
  1500. },
  1501. "lucent-nargacuga": {
  1502. name: "Lucent Nargacuga",
  1503. parents: ["nargacuga"]
  1504. },
  1505. "monster-hunter": {
  1506. name: "Monster Hunter",
  1507. parents: ["monster", "video-games"]
  1508. },
  1509. "leviathan": {
  1510. "name": "Leviathan",
  1511. "url": "sea-monster"
  1512. },
  1513. "bull": {
  1514. name: "Bull",
  1515. parents: ["mammal"]
  1516. },
  1517. "tanuki": {
  1518. name: "Tanuki",
  1519. parents: ["monster"]
  1520. },
  1521. "chakat": {
  1522. name: "Chakat",
  1523. parents: ["cat"]
  1524. },
  1525. "hydra": {
  1526. name: "Hydra",
  1527. parents: ["monster"]
  1528. },
  1529. "zigzagoon": {
  1530. name: "Zigzagoon",
  1531. parents: ["raccoon", "pokemon"]
  1532. },
  1533. "vulture": {
  1534. name: "Vulture",
  1535. parents: ["avian"]
  1536. },
  1537. "eastern-dragon": {
  1538. name: "Eastern Dragon",
  1539. parents: ["dragon"]
  1540. },
  1541. "gryffon": {
  1542. name: "Gryffon",
  1543. parents: ["phoenix", "red-panda"]
  1544. },
  1545. "amtsvane": {
  1546. name: "Amtsvane",
  1547. parents: ["reptile"]
  1548. },
  1549. "kigavi": {
  1550. name: "Kigavi",
  1551. parents: ["avian"]
  1552. },
  1553. "turian": {
  1554. name: "Turian",
  1555. parents: ["avian"]
  1556. },
  1557. "zeraora": {
  1558. name: "Zeraora",
  1559. parents: ["pokemon", "cat"]
  1560. },
  1561. "sandshrew": {
  1562. name: "Sandshrew",
  1563. parents: ["pokemon", "pangolin"]
  1564. },
  1565. "valais-blacknose-sheep": {
  1566. name: "Valais Blacknose Sheep",
  1567. parents: ["sheep"]
  1568. },
  1569. "novaleit": {
  1570. name: "Novaleit",
  1571. parents: ["mammal"]
  1572. },
  1573. "dunnoh": {
  1574. name: "Dunnoh",
  1575. parents: ["mammal"]
  1576. },
  1577. "lunaral-dragon": {
  1578. name: "Lunaral Dragon",
  1579. parents: ["dragon"]
  1580. },
  1581. "arctic-wolf": {
  1582. name: "Arctic Wolf",
  1583. parents: ["wolf"]
  1584. },
  1585. "donkey": {
  1586. name: "Donkey",
  1587. parents: ["horse"]
  1588. },
  1589. "chinchilla": {
  1590. name: "Chinchilla",
  1591. parents: ["rodent"]
  1592. },
  1593. "felkin": {
  1594. name: "Felkin",
  1595. parents: ["dragon"]
  1596. },
  1597. "tykeriel": {
  1598. name: "Tykeriel",
  1599. parents: ["avian"]
  1600. },
  1601. "folf": {
  1602. name: "Folf",
  1603. parents: ["fox", "wolf"]
  1604. },
  1605. "pooltoy": {
  1606. name: "Pooltoy",
  1607. parents: ["construct"]
  1608. },
  1609. "demi": {
  1610. name: "Demi",
  1611. parents: ["human"]
  1612. },
  1613. "stegosaurus": {
  1614. name: "Stegosaurus",
  1615. parents: ["dinosaur"]
  1616. },
  1617. "computer-virus": {
  1618. name: "Computer Virus",
  1619. parents: ["program"]
  1620. },
  1621. "program": {
  1622. name: "Program",
  1623. parents: ["construct"]
  1624. },
  1625. "space-springhare": {
  1626. name: "Space Springhare",
  1627. parents: ["hare"]
  1628. },
  1629. "river-drake": {
  1630. name: "River Drake",
  1631. parents: ["dragon"]
  1632. },
  1633. "djinn": {
  1634. "name": "Djinn",
  1635. "url": "supernatural"
  1636. },
  1637. "supernatural": {
  1638. name: "Supernatural",
  1639. parents: ["monster"]
  1640. },
  1641. "grasshopper-mouse": {
  1642. name: "Grasshopper Mouse",
  1643. parents: ["mouse"]
  1644. },
  1645. "somali-cat": {
  1646. name: "Somali Cat",
  1647. parents: ["cat"]
  1648. },
  1649. "minccino": {
  1650. name: "Minccino",
  1651. parents: ["pokemon", "chinchilla"]
  1652. },
  1653. "pine-marten": {
  1654. name: "Pine Marten",
  1655. parents: ["marten"]
  1656. },
  1657. "marten": {
  1658. name: "Marten",
  1659. parents: ["mustelid"]
  1660. },
  1661. "mustelid": {
  1662. name: "Mustelid",
  1663. parents: ["mammal"]
  1664. },
  1665. "caribou": {
  1666. name: "Caribou",
  1667. parents: ["deer"]
  1668. },
  1669. "gnoll": {
  1670. name: "Gnoll",
  1671. parents: ["hyena", "monster"]
  1672. },
  1673. "peacekeeper": {
  1674. name: "Peacekeeper",
  1675. parents: ["human"]
  1676. },
  1677. "river-otter": {
  1678. name: "River Otter",
  1679. parents: ["otter"]
  1680. },
  1681. "dhole": {
  1682. name: "Dhole",
  1683. parents: ["canine"]
  1684. },
  1685. "springbok": {
  1686. name: "Springbok",
  1687. parents: ["antelope"]
  1688. },
  1689. "marsupial": {
  1690. name: "Marsupial",
  1691. parents: ["mammal"]
  1692. },
  1693. "townsend-big-eared-bat": {
  1694. name: "Townsend Big-eared Bat",
  1695. parents: ["bat"]
  1696. },
  1697. "squirrel": {
  1698. name: "Squirrel",
  1699. parents: ["rodent"]
  1700. },
  1701. "magpie": {
  1702. name: "Magpie",
  1703. parents: ["corvid"]
  1704. },
  1705. "civet": {
  1706. name: "Civet",
  1707. parents: ["feliform"]
  1708. },
  1709. "feliform": {
  1710. name: "Feliform",
  1711. parents: ["mammal"]
  1712. },
  1713. "tiefling": {
  1714. name: "Tiefling",
  1715. parents: ["devil"]
  1716. },
  1717. "devil": {
  1718. name: "Devil",
  1719. parents: ["supernatural"]
  1720. },
  1721. "sika-deer": {
  1722. name: "Sika Deer",
  1723. parents: ["deer"]
  1724. },
  1725. "vaporeon": {
  1726. name: "Vaporeon",
  1727. parents: ["eeveelution"]
  1728. },
  1729. "leafeon": {
  1730. name: "Leafeon",
  1731. parents: ["eeveelution"]
  1732. },
  1733. "jolteon": {
  1734. name: "Jolteon",
  1735. parents: ["eeveelution"]
  1736. },
  1737. "spireborn": {
  1738. name: "Spireborn",
  1739. parents: ["zorgoia"]
  1740. },
  1741. "vampire": {
  1742. name: "Vampire",
  1743. parents: ["monster"]
  1744. },
  1745. "extraplanar": {
  1746. name: "Extraplanar",
  1747. parents: []
  1748. },
  1749. "goo": {
  1750. name: "Goo",
  1751. parents: []
  1752. },
  1753. "skink": {
  1754. name: "Skink",
  1755. parents: ["lizard"]
  1756. },
  1757. "bat-eared-fox": {
  1758. name: "Bat-eared Fox",
  1759. parents: ["fox"]
  1760. },
  1761. "belted-kingfisher": {
  1762. name: "Belted Kingfisher",
  1763. parents: ["avian"]
  1764. },
  1765. "omnifalcon": {
  1766. name: "Omnifalcon",
  1767. parents: ["gryphon", "falcon", "harpy-eagle"]
  1768. },
  1769. "falcon": {
  1770. name: "Falcon",
  1771. parents: ["bird-of-prey"]
  1772. },
  1773. "avali": {
  1774. name: "Avali",
  1775. parents: ["avian", "alien"]
  1776. },
  1777. "arctic-fox": {
  1778. name: "Arctic Fox",
  1779. parents: ["fox"]
  1780. },
  1781. "snow-tiger": {
  1782. name: "Snow Tiger",
  1783. parents: ["tiger"]
  1784. },
  1785. "marble-fox": {
  1786. name: "Marble Fox",
  1787. parents: ["fox"]
  1788. },
  1789. "king-wickerbeast": {
  1790. name: "King Wickerbeast",
  1791. parents: ["wickerbeast"]
  1792. },
  1793. "wickerbeast": {
  1794. name: "Wickerbeast",
  1795. parents: ["mammal"]
  1796. },
  1797. "european-polecat": {
  1798. name: "European Polecat",
  1799. parents: ["mustelid"]
  1800. },
  1801. "teshari": {
  1802. name: "Teshari",
  1803. parents: ["avian", "raptor"]
  1804. },
  1805. "alicorn": {
  1806. name: "Alicorn",
  1807. parents: ["horse"]
  1808. },
  1809. "atlas-moth": {
  1810. name: "Atlas Moth",
  1811. parents: ["moth"]
  1812. },
  1813. "owlbear": {
  1814. name: "Owlbear",
  1815. parents: ["owl", "bear", "monster"]
  1816. },
  1817. "owl": {
  1818. name: "Owl",
  1819. parents: ["avian"]
  1820. },
  1821. "silvertongue": {
  1822. name: "Silvertongue",
  1823. parents: ["reptile"]
  1824. },
  1825. "ahuizotl": {
  1826. name: "Ahuizotl",
  1827. parents: ["monster"]
  1828. },
  1829. "ender-dragon": {
  1830. name: "Ender Dragon",
  1831. parents: ["dragon"]
  1832. },
  1833. "bruhathkayosaurus": {
  1834. name: "Bruhathkayosaurus",
  1835. parents: ["sauropod"]
  1836. },
  1837. "sauropod": {
  1838. name: "Sauropod",
  1839. parents: ["dinosaur"]
  1840. },
  1841. "black-sable-antelope": {
  1842. name: "Black Sable Antelope",
  1843. parents: ["antelope"]
  1844. },
  1845. "slime": {
  1846. name: "Slime",
  1847. parents: ["goo"]
  1848. },
  1849. "utahraptor": {
  1850. name: "Utahraptor",
  1851. parents: ["raptor"]
  1852. },
  1853. "indian-giant-squirrel": {
  1854. name: "Indian Giant Squirrel",
  1855. parents: ["squirrel"]
  1856. },
  1857. "golden-retriever": {
  1858. name: "Golden Retriever",
  1859. parents: ["dog"]
  1860. },
  1861. "triceratops": {
  1862. name: "Triceratops",
  1863. parents: ["dinosaur"]
  1864. },
  1865. "drake": {
  1866. name: "Drake",
  1867. parents: ["dragon"]
  1868. },
  1869. "okapi": {
  1870. name: "Okapi",
  1871. parents: ["giraffe"]
  1872. },
  1873. "arctic-hare": {
  1874. name: "Arctic Hare",
  1875. parents: ["hare"]
  1876. },
  1877. "hare": {
  1878. name: "Hare",
  1879. parents: ["leporidae"]
  1880. },
  1881. "leporidae": {
  1882. name: "Leporidae",
  1883. parents: ["mammal"]
  1884. },
  1885. "leopard-gecko": {
  1886. name: "Leopard Gecko",
  1887. parents: ["gecko"]
  1888. },
  1889. "dreamspawn": {
  1890. name: "Dreamspawn",
  1891. parents: ["illusion"]
  1892. },
  1893. "illusion": {
  1894. name: "Illusion",
  1895. parents: []
  1896. },
  1897. "purrloin": {
  1898. name: "Purrloin",
  1899. parents: ["cat", "pokemon"]
  1900. },
  1901. "noivern": {
  1902. name: "Noivern",
  1903. parents: ["bat", "dragon", "pokemon"]
  1904. },
  1905. "hedgehog": {
  1906. name: "Hedgehog",
  1907. parents: ["mammal"]
  1908. },
  1909. "liger": {
  1910. name: "Liger",
  1911. parents: ["lion", "tiger", "hybrid"]
  1912. },
  1913. "hybrid": {
  1914. name: "Hybrid",
  1915. parents: []
  1916. },
  1917. "drider": {
  1918. name: "Drider",
  1919. parents: ["spider"]
  1920. },
  1921. "sabresune": {
  1922. name: "Sabresune",
  1923. parents: ["kitsune", "sabertooth-tiger"]
  1924. },
  1925. "ditto": {
  1926. name: "Ditto",
  1927. parents: ["pokemon", "goo"]
  1928. },
  1929. "amogus": {
  1930. name: "Amogus",
  1931. parents: ["deity"]
  1932. },
  1933. "ferret": {
  1934. name: "Ferret",
  1935. parents: ["mustelid"]
  1936. },
  1937. "guinea-pig": {
  1938. name: "Guinea Pig",
  1939. parents: ["rodent"]
  1940. },
  1941. "viper": {
  1942. name: "Viper",
  1943. parents: ["snake"]
  1944. },
  1945. "cinderace": {
  1946. name: "Cinderace",
  1947. parents: ["pokemon", "rabbit"]
  1948. },
  1949. "caudin": {
  1950. name: "Caudin",
  1951. parents: ["dragon"]
  1952. },
  1953. "red-winged-blackbird": {
  1954. name: "Red-Winged Blackbird",
  1955. parents: ["avian"]
  1956. },
  1957. "hooded-wheater": {
  1958. name: "Hooded Wheater",
  1959. parents: ["passerine"]
  1960. },
  1961. "passerine": {
  1962. name: "Passerine",
  1963. parents: ["avian"]
  1964. },
  1965. "gieeg": {
  1966. name: "Gieeg",
  1967. parents: ["alien"]
  1968. },
  1969. "ringtail": {
  1970. name: "Ringtail",
  1971. parents: ["raccoon"]
  1972. },
  1973. "hisuian-zoroark": {
  1974. name: "Hisuian Zoroark",
  1975. parents: ["zoroark", "hisuian"]
  1976. },
  1977. "hisuian": {
  1978. name: "Hisuian",
  1979. parents: ["regional-pokemon"]
  1980. },
  1981. "regional-pokemon": {
  1982. name: "Regional Pokemon",
  1983. parents: ["pokemon"]
  1984. },
  1985. "cybeast": {
  1986. name: "Cybeast",
  1987. parents: ["computer-virus"]
  1988. },
  1989. "javira-dragon": {
  1990. name: "Javira Dragon",
  1991. parents: ["dragon"]
  1992. },
  1993. "koopew": {
  1994. name: "Koopew",
  1995. parents: ["dragon", "alien"]
  1996. },
  1997. "nevrean": {
  1998. name: "Nevrean",
  1999. parents: ["avian", "vilous"]
  2000. },
  2001. "vilous": {
  2002. name: "Vilous Species",
  2003. parents: []
  2004. },
  2005. "titanoboa": {
  2006. name: "Titanoboa",
  2007. parents: ["snake"]
  2008. },
  2009. "raichu": {
  2010. name: "Raichu",
  2011. parents: ["pikachu"]
  2012. },
  2013. "taur": {
  2014. name: "Taur",
  2015. parents: []
  2016. },
  2017. "continental-giant-rabbit": {
  2018. name: "Continental Giant Rabbit",
  2019. parents: ["rabbit"]
  2020. },
  2021. "demigryph": {
  2022. name: "Demigryph",
  2023. parents: ["lion", "eagle"]
  2024. },
  2025. "bald-eagle": {
  2026. name: "Bald Eagle",
  2027. parents: ["eagle"]
  2028. },
  2029. "kestrel": {
  2030. name: "Kestrel",
  2031. parents: ["falcon"]
  2032. },
  2033. "mockingbird": {
  2034. name: "Mockingbird",
  2035. parents: ["songbird"]
  2036. },
  2037. "songbird": {
  2038. name: "Songbird",
  2039. parents: ["avian"]
  2040. },
  2041. "bird-of-prey": {
  2042. name: "Bird of Prey",
  2043. parents: ["avian"]
  2044. },
  2045. "marowak": {
  2046. name: "Marowak",
  2047. parents: ["pokemon", "reptile"]
  2048. },
  2049. "joltik": {
  2050. name: "Joltik",
  2051. parents: ["pokemon", "insect"]
  2052. },
  2053. "mink": {
  2054. name: "Mink",
  2055. parents: ["mustelid"]
  2056. },
  2057. "sandcat": {
  2058. name: "Sandcat",
  2059. parents: ["cat"]
  2060. },
  2061. "hrothgar": {
  2062. name: "Hrothgar",
  2063. parents: ["cat"]
  2064. },
  2065. "garchomp": {
  2066. name: "Garchomp",
  2067. parents: ["dragon", "pokemon"]
  2068. },
  2069. "nargacuga": {
  2070. name: "Nargacuga",
  2071. parents: ["monster-hunter"]
  2072. },
  2073. "sable": {
  2074. name: "Sable",
  2075. parents: ["marten"]
  2076. },
  2077. "deino": {
  2078. name: "Deino",
  2079. parents: ["pokemon", "dinosaur"]
  2080. },
  2081. "housecat": {
  2082. name: "Housecat",
  2083. parents: ["cat"]
  2084. },
  2085. "bombay-cat": {
  2086. name: "Bombay Cat",
  2087. parents: ["housecat"]
  2088. },
  2089. "maine-coon": {
  2090. name: "Maine Coon",
  2091. parents: ["housecat"]
  2092. },
  2093. "coelacanth": {
  2094. name: "Coelacanth",
  2095. parents: ["fish"]
  2096. },
  2097. "silvally": {
  2098. name: "Silvally",
  2099. parents: ["legendary-pokemon"]
  2100. },
  2101. "legendary-pokemon": {
  2102. name: "Legendary Pokemon",
  2103. parents: ["pokemon"]
  2104. },
  2105. "great-maccao": {
  2106. name: "Great Maccao",
  2107. parents: ["monster-hunter", "raptor"]
  2108. },
  2109. "shapeshifter": {
  2110. name: "shapeshifter",
  2111. parents: []
  2112. },
  2113. "obstagoon": {
  2114. name: "Obstagoon",
  2115. parents: ["zigzagoon"]
  2116. },
  2117. "thomsons-gazelle": {
  2118. name: "Thomsons Gazelle",
  2119. parents: ["gazelle"]
  2120. },
  2121. "gazelle": {
  2122. name: "Gazelle",
  2123. parents: ["antelope"]
  2124. },
  2125. "monkey": {
  2126. name: "Monkey",
  2127. parents: ["mammal"]
  2128. },
  2129. "serval": {
  2130. name: "Serval",
  2131. parents: ["cat"]
  2132. },
  2133. "swampert": {
  2134. name: "Swampert",
  2135. parents: ["pokemon"]
  2136. },
  2137. "red-fox": {
  2138. name: "Red Fox",
  2139. parents: ["fox"]
  2140. },
  2141. "sliver": {
  2142. name: "Sliver",
  2143. parents: ["alien"]
  2144. },
  2145. "sergix": {
  2146. name: "Sergix",
  2147. parents: ["demon", "sergal", "phoenix"]
  2148. },
  2149. "behemoth": {
  2150. name: "Behemoth",
  2151. parents: ["monster", "dragon", "final-fantasy"]
  2152. },
  2153. "final-fantasy": {
  2154. name: "Final Fantasy",
  2155. parents: ["video-games"]
  2156. },
  2157. "video-games": {
  2158. name: "Video Games",
  2159. parents: []
  2160. },
  2161. "eastern-cottontail-rabbit": {
  2162. name: "Eastern Cottontail Rabbit",
  2163. parents: ["rabbit"]
  2164. },
  2165. "thresher-shark": {
  2166. name: "Thresher Shark",
  2167. parents: ["shark"]
  2168. },
  2169. "ai": {
  2170. name: "AI",
  2171. parents: []
  2172. },
  2173. "black-tip-reef-shark": {
  2174. name: "Black Tip Reef Shark",
  2175. parents: ["shark"]
  2176. },
  2177. "quetzalcoatlus-northropi": {
  2178. name: "Quetzalcoatlus Northropi",
  2179. parents: ["dinosaur"]
  2180. },
  2181. "snivy": {
  2182. name: "Snivy",
  2183. parents: ["pokemon", "snake"]
  2184. },
  2185. "nedynvor": {
  2186. name: "Nedynvor",
  2187. parents: ["avian"]
  2188. },
  2189. }
  2190. //species
  2191. function getSpeciesInfo(speciesList) {
  2192. let result = new Set();
  2193. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2194. result.add(entry)
  2195. });
  2196. return Array.from(result);
  2197. };
  2198. function getSpeciesInfoHelper(species) {
  2199. if (!speciesData[species]) {
  2200. console.warn(species + " doesn't exist");
  2201. return [];
  2202. }
  2203. if (speciesData[species].parents) {
  2204. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2205. } else {
  2206. return [species];
  2207. }
  2208. }
  2209. characterMakers.push(() => makeCharacter(
  2210. {
  2211. name: "Fen",
  2212. species: ["crux"],
  2213. description: {
  2214. title: "Bio",
  2215. text: "Very furry. Sheds on everything."
  2216. },
  2217. tags: [
  2218. "anthro",
  2219. "goo"
  2220. ]
  2221. },
  2222. {
  2223. front: {
  2224. height: math.unit(12, "feet"),
  2225. weight: math.unit(2400, "lb"),
  2226. preyCapacity: math.unit(1, "people"),
  2227. name: "Front",
  2228. image: {
  2229. source: "./media/characters/fen/front.svg",
  2230. extra: 1804/1562,
  2231. bottom: 205/2009
  2232. },
  2233. extraAttributes: {
  2234. pawSize: {
  2235. name: "Paw Size",
  2236. power: 2,
  2237. type: "area",
  2238. base: math.unit(0.35, "m^2")
  2239. }
  2240. }
  2241. },
  2242. diving: {
  2243. height: math.unit(4.9, "meters"),
  2244. weight: math.unit(2400, "lb"),
  2245. name: "Diving",
  2246. image: {
  2247. source: "./media/characters/fen/diving.svg"
  2248. }
  2249. },
  2250. sleeby: {
  2251. height: math.unit(3.45, "meters"),
  2252. weight: math.unit(2400, "lb"),
  2253. name: "Sleeby",
  2254. image: {
  2255. source: "./media/characters/fen/sleeby.svg"
  2256. }
  2257. },
  2258. goo: {
  2259. height: math.unit(12, "feet"),
  2260. weight: math.unit(3600, "lb"),
  2261. volume: math.unit(1000, "liters"),
  2262. preyCapacity: math.unit(6, "people"),
  2263. name: "Goo",
  2264. image: {
  2265. source: "./media/characters/fen/goo.svg",
  2266. extra: 1307/1071,
  2267. bottom: 134/1441
  2268. }
  2269. },
  2270. gooNsfw: {
  2271. height: math.unit(12, "feet"),
  2272. weight: math.unit(3750, "lb"),
  2273. volume: math.unit(1000, "liters"),
  2274. preyCapacity: math.unit(6, "people"),
  2275. name: "Goo (NSFW)",
  2276. image: {
  2277. source: "./media/characters/fen/goo-nsfw.svg",
  2278. extra: 1875/1734,
  2279. bottom: 122/1997
  2280. }
  2281. },
  2282. maw: {
  2283. height: math.unit(5.03, "feet"),
  2284. name: "Maw",
  2285. image: {
  2286. source: "./media/characters/fen/maw.svg"
  2287. }
  2288. },
  2289. gooCeiling: {
  2290. height: math.unit(6.6, "feet"),
  2291. weight: math.unit(3000, "lb"),
  2292. volume: math.unit(1000, "liters"),
  2293. preyCapacity: math.unit(6, "people"),
  2294. name: "Goo (Ceiling)",
  2295. image: {
  2296. source: "./media/characters/fen/goo-ceiling.svg"
  2297. }
  2298. },
  2299. paw: {
  2300. height: math.unit(3.77, "feet"),
  2301. name: "Paw",
  2302. image: {
  2303. source: "./media/characters/fen/paw.svg"
  2304. },
  2305. extraAttributes: {
  2306. "toeSize": {
  2307. name: "Toe Size",
  2308. power: 2,
  2309. type: "area",
  2310. base: math.unit(0.02875, "m^2")
  2311. },
  2312. "pawSize": {
  2313. name: "Paw Size",
  2314. power: 2,
  2315. type: "area",
  2316. base: math.unit(0.378, "m^2")
  2317. },
  2318. }
  2319. },
  2320. tail: {
  2321. height: math.unit(12.1, "feet"),
  2322. name: "Tail",
  2323. image: {
  2324. source: "./media/characters/fen/tail.svg"
  2325. }
  2326. },
  2327. tailFull: {
  2328. height: math.unit(12.1, "feet"),
  2329. name: "Full Tail",
  2330. image: {
  2331. source: "./media/characters/fen/tail-full.svg"
  2332. }
  2333. },
  2334. back: {
  2335. height: math.unit(12, "feet"),
  2336. weight: math.unit(2400, "lb"),
  2337. name: "Back",
  2338. image: {
  2339. source: "./media/characters/fen/back.svg",
  2340. },
  2341. info: {
  2342. description: {
  2343. mode: "append",
  2344. text: "\n\nHe is not currently looking at you."
  2345. }
  2346. }
  2347. },
  2348. full: {
  2349. height: math.unit(1.85, "meter"),
  2350. weight: math.unit(3200, "lb"),
  2351. name: "Full",
  2352. image: {
  2353. source: "./media/characters/fen/full.svg",
  2354. extra: 1133/859,
  2355. bottom: 145/1278
  2356. },
  2357. info: {
  2358. description: {
  2359. mode: "append",
  2360. text: "\n\nMunch."
  2361. }
  2362. }
  2363. },
  2364. gooLounging: {
  2365. height: math.unit(4.53, "feet"),
  2366. weight: math.unit(3000, "lb"),
  2367. preyCapacity: math.unit(6, "people"),
  2368. name: "Goo (Lounging)",
  2369. image: {
  2370. source: "./media/characters/fen/goo-lounging.svg",
  2371. bottom: 116 / 613
  2372. }
  2373. },
  2374. lounging: {
  2375. height: math.unit(10.52, "feet"),
  2376. weight: math.unit(2400, "lb"),
  2377. name: "Lounging",
  2378. image: {
  2379. source: "./media/characters/fen/lounging.svg"
  2380. }
  2381. },
  2382. },
  2383. [
  2384. {
  2385. name: "Small",
  2386. height: math.unit(2.2428, "meter")
  2387. },
  2388. {
  2389. name: "Normal",
  2390. height: math.unit(12, "feet"),
  2391. default: true,
  2392. },
  2393. {
  2394. name: "Big",
  2395. height: math.unit(20, "feet")
  2396. },
  2397. {
  2398. name: "Minimacro",
  2399. height: math.unit(40, "feet"),
  2400. info: {
  2401. description: {
  2402. mode: "append",
  2403. text: "\n\nTOO DAMN BIG"
  2404. }
  2405. }
  2406. },
  2407. {
  2408. name: "Macro",
  2409. height: math.unit(100, "feet"),
  2410. info: {
  2411. description: {
  2412. mode: "append",
  2413. text: "\n\nTOO DAMN BIG"
  2414. }
  2415. }
  2416. },
  2417. {
  2418. name: "Megamacro",
  2419. height: math.unit(2, "miles")
  2420. },
  2421. {
  2422. name: "Gigamacro",
  2423. height: math.unit(10, "earths")
  2424. },
  2425. ]
  2426. ))
  2427. characterMakers.push(() => makeCharacter(
  2428. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2429. {
  2430. front: {
  2431. height: math.unit(183, "cm"),
  2432. weight: math.unit(80, "kg"),
  2433. name: "Front",
  2434. image: {
  2435. source: "./media/characters/sofia-fluttertail/front.svg",
  2436. bottom: 0.01,
  2437. extra: 2154 / 2081
  2438. }
  2439. },
  2440. frontAlt: {
  2441. height: math.unit(183, "cm"),
  2442. weight: math.unit(80, "kg"),
  2443. name: "Front (alt)",
  2444. image: {
  2445. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2446. }
  2447. },
  2448. back: {
  2449. height: math.unit(183, "cm"),
  2450. weight: math.unit(80, "kg"),
  2451. name: "Back",
  2452. image: {
  2453. source: "./media/characters/sofia-fluttertail/back.svg"
  2454. }
  2455. },
  2456. kneeling: {
  2457. height: math.unit(125, "cm"),
  2458. weight: math.unit(80, "kg"),
  2459. name: "Kneeling",
  2460. image: {
  2461. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2462. extra: 1033 / 977,
  2463. bottom: 23.7 / 1057
  2464. }
  2465. },
  2466. maw: {
  2467. height: math.unit(183 / 5, "cm"),
  2468. name: "Maw",
  2469. image: {
  2470. source: "./media/characters/sofia-fluttertail/maw.svg"
  2471. }
  2472. },
  2473. mawcloseup: {
  2474. height: math.unit(183 / 5 * 0.41, "cm"),
  2475. name: "Maw (Closeup)",
  2476. image: {
  2477. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2478. }
  2479. },
  2480. paws: {
  2481. height: math.unit(1.17, "feet"),
  2482. name: "Paws",
  2483. image: {
  2484. source: "./media/characters/sofia-fluttertail/paws.svg",
  2485. extra: 851 / 851,
  2486. bottom: 17 / 868
  2487. }
  2488. },
  2489. },
  2490. [
  2491. {
  2492. name: "Normal",
  2493. height: math.unit(1.83, "meter")
  2494. },
  2495. {
  2496. name: "Size Thief",
  2497. height: math.unit(18, "feet")
  2498. },
  2499. {
  2500. name: "50 Foot Collie",
  2501. height: math.unit(50, "feet")
  2502. },
  2503. {
  2504. name: "Macro",
  2505. height: math.unit(96, "feet"),
  2506. default: true
  2507. },
  2508. {
  2509. name: "Megamerger",
  2510. height: math.unit(650, "feet")
  2511. },
  2512. ]
  2513. ))
  2514. characterMakers.push(() => makeCharacter(
  2515. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2516. {
  2517. front: {
  2518. height: math.unit(7, "feet"),
  2519. weight: math.unit(100, "kg"),
  2520. name: "Front",
  2521. image: {
  2522. source: "./media/characters/march/front.svg",
  2523. extra: 1992/1851,
  2524. bottom: 39/2031
  2525. }
  2526. },
  2527. foot: {
  2528. height: math.unit(0.9, "feet"),
  2529. name: "Foot",
  2530. image: {
  2531. source: "./media/characters/march/foot.svg"
  2532. }
  2533. },
  2534. },
  2535. [
  2536. {
  2537. name: "Normal",
  2538. height: math.unit(7.9, "feet")
  2539. },
  2540. {
  2541. name: "Macro",
  2542. height: math.unit(220, "meters")
  2543. },
  2544. {
  2545. name: "Megamacro",
  2546. height: math.unit(2.98, "km"),
  2547. default: true
  2548. },
  2549. {
  2550. name: "Gigamacro",
  2551. height: math.unit(15963, "km")
  2552. },
  2553. {
  2554. name: "Teramacro",
  2555. height: math.unit(2980000000, "km")
  2556. },
  2557. {
  2558. name: "Examacro",
  2559. height: math.unit(250, "parsecs")
  2560. },
  2561. ]
  2562. ))
  2563. characterMakers.push(() => makeCharacter(
  2564. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2565. {
  2566. front: {
  2567. height: math.unit(6, "feet"),
  2568. weight: math.unit(60, "kg"),
  2569. name: "Front",
  2570. image: {
  2571. source: "./media/characters/noir/front.svg",
  2572. extra: 1,
  2573. bottom: 0.032
  2574. }
  2575. },
  2576. },
  2577. [
  2578. {
  2579. name: "Normal",
  2580. height: math.unit(6.6, "feet")
  2581. },
  2582. {
  2583. name: "Macro",
  2584. height: math.unit(500, "feet")
  2585. },
  2586. {
  2587. name: "Megamacro",
  2588. height: math.unit(2.5, "km"),
  2589. default: true
  2590. },
  2591. {
  2592. name: "Gigamacro",
  2593. height: math.unit(22500, "km")
  2594. },
  2595. {
  2596. name: "Teramacro",
  2597. height: math.unit(2500000000, "km")
  2598. },
  2599. {
  2600. name: "Examacro",
  2601. height: math.unit(200, "parsecs")
  2602. },
  2603. ]
  2604. ))
  2605. characterMakers.push(() => makeCharacter(
  2606. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2607. {
  2608. front: {
  2609. height: math.unit(7, "feet"),
  2610. weight: math.unit(100, "kg"),
  2611. name: "Front",
  2612. image: {
  2613. source: "./media/characters/okuri/front.svg",
  2614. extra: 739/665,
  2615. bottom: 39/778
  2616. }
  2617. },
  2618. back: {
  2619. height: math.unit(7, "feet"),
  2620. weight: math.unit(100, "kg"),
  2621. name: "Back",
  2622. image: {
  2623. source: "./media/characters/okuri/back.svg",
  2624. extra: 734/653,
  2625. bottom: 13/747
  2626. }
  2627. },
  2628. sitting: {
  2629. height: math.unit(2.95, "feet"),
  2630. weight: math.unit(100, "kg"),
  2631. name: "Sitting",
  2632. image: {
  2633. source: "./media/characters/okuri/sitting.svg",
  2634. extra: 370/318,
  2635. bottom: 99/469
  2636. }
  2637. },
  2638. },
  2639. [
  2640. {
  2641. name: "Smallest",
  2642. height: math.unit(5 + 2/12, "feet")
  2643. },
  2644. {
  2645. name: "Smaller",
  2646. height: math.unit(300, "feet")
  2647. },
  2648. {
  2649. name: "Small",
  2650. height: math.unit(1000, "feet")
  2651. },
  2652. {
  2653. name: "Macro",
  2654. height: math.unit(1, "mile")
  2655. },
  2656. {
  2657. name: "Mega Macro (Small)",
  2658. height: math.unit(20, "km")
  2659. },
  2660. {
  2661. name: "Mega Macro (Large)",
  2662. height: math.unit(600, "km")
  2663. },
  2664. {
  2665. name: "Giga Macro",
  2666. height: math.unit(10000, "km")
  2667. },
  2668. {
  2669. name: "Normal",
  2670. height: math.unit(577560, "km"),
  2671. default: true
  2672. },
  2673. {
  2674. name: "Large",
  2675. height: math.unit(4, "galaxies")
  2676. },
  2677. {
  2678. name: "Largest",
  2679. height: math.unit(15, "multiverses")
  2680. },
  2681. ]
  2682. ))
  2683. characterMakers.push(() => makeCharacter(
  2684. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2685. {
  2686. front: {
  2687. height: math.unit(7, "feet"),
  2688. weight: math.unit(100, "kg"),
  2689. name: "Front",
  2690. image: {
  2691. source: "./media/characters/manny/front.svg",
  2692. extra: 1,
  2693. bottom: 0.06
  2694. }
  2695. },
  2696. back: {
  2697. height: math.unit(7, "feet"),
  2698. weight: math.unit(100, "kg"),
  2699. name: "Back",
  2700. image: {
  2701. source: "./media/characters/manny/back.svg",
  2702. extra: 1,
  2703. bottom: 0.014
  2704. }
  2705. },
  2706. },
  2707. [
  2708. {
  2709. name: "Normal",
  2710. height: math.unit(7, "feet"),
  2711. },
  2712. {
  2713. name: "Macro",
  2714. height: math.unit(78, "feet"),
  2715. default: true
  2716. },
  2717. {
  2718. name: "Macro+",
  2719. height: math.unit(300, "meters")
  2720. },
  2721. {
  2722. name: "Macro++",
  2723. height: math.unit(2400, "meters")
  2724. },
  2725. {
  2726. name: "Megamacro",
  2727. height: math.unit(5167, "meters")
  2728. },
  2729. {
  2730. name: "Gigamacro",
  2731. height: math.unit(41769, "miles")
  2732. },
  2733. ]
  2734. ))
  2735. characterMakers.push(() => makeCharacter(
  2736. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2737. {
  2738. front: {
  2739. height: math.unit(7, "feet"),
  2740. weight: math.unit(100, "kg"),
  2741. name: "Front",
  2742. image: {
  2743. source: "./media/characters/adake/front-1.svg"
  2744. }
  2745. },
  2746. frontAlt: {
  2747. height: math.unit(7, "feet"),
  2748. weight: math.unit(100, "kg"),
  2749. name: "Front (Alt)",
  2750. image: {
  2751. source: "./media/characters/adake/front-2.svg",
  2752. extra: 1,
  2753. bottom: 0.01
  2754. }
  2755. },
  2756. back: {
  2757. height: math.unit(7, "feet"),
  2758. weight: math.unit(100, "kg"),
  2759. name: "Back",
  2760. image: {
  2761. source: "./media/characters/adake/back.svg",
  2762. }
  2763. },
  2764. kneel: {
  2765. height: math.unit(5.385, "feet"),
  2766. weight: math.unit(100, "kg"),
  2767. name: "Kneeling",
  2768. image: {
  2769. source: "./media/characters/adake/kneel.svg",
  2770. bottom: 0.052
  2771. }
  2772. },
  2773. },
  2774. [
  2775. {
  2776. name: "Normal",
  2777. height: math.unit(7, "feet"),
  2778. },
  2779. {
  2780. name: "Macro",
  2781. height: math.unit(78, "feet"),
  2782. default: true
  2783. },
  2784. {
  2785. name: "Macro+",
  2786. height: math.unit(300, "meters")
  2787. },
  2788. {
  2789. name: "Macro++",
  2790. height: math.unit(2400, "meters")
  2791. },
  2792. {
  2793. name: "Megamacro",
  2794. height: math.unit(5167, "meters")
  2795. },
  2796. {
  2797. name: "Gigamacro",
  2798. height: math.unit(41769, "miles")
  2799. },
  2800. ]
  2801. ))
  2802. characterMakers.push(() => makeCharacter(
  2803. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2804. {
  2805. front: {
  2806. height: math.unit(1.65, "meters"),
  2807. weight: math.unit(50, "kg"),
  2808. name: "Front",
  2809. image: {
  2810. source: "./media/characters/elijah/front.svg",
  2811. extra: 858 / 830,
  2812. bottom: 95.5 / 953.8559
  2813. }
  2814. },
  2815. back: {
  2816. height: math.unit(1.65, "meters"),
  2817. weight: math.unit(50, "kg"),
  2818. name: "Back",
  2819. image: {
  2820. source: "./media/characters/elijah/back.svg",
  2821. extra: 895 / 850,
  2822. bottom: 5.3 / 897.956
  2823. }
  2824. },
  2825. frontNsfw: {
  2826. height: math.unit(1.65, "meters"),
  2827. weight: math.unit(50, "kg"),
  2828. name: "Front (NSFW)",
  2829. image: {
  2830. source: "./media/characters/elijah/front-nsfw.svg",
  2831. extra: 858 / 830,
  2832. bottom: 95.5 / 953.8559
  2833. }
  2834. },
  2835. backNsfw: {
  2836. height: math.unit(1.65, "meters"),
  2837. weight: math.unit(50, "kg"),
  2838. name: "Back (NSFW)",
  2839. image: {
  2840. source: "./media/characters/elijah/back-nsfw.svg",
  2841. extra: 895 / 850,
  2842. bottom: 5.3 / 897.956
  2843. }
  2844. },
  2845. dick: {
  2846. height: math.unit(1, "feet"),
  2847. name: "Dick",
  2848. image: {
  2849. source: "./media/characters/elijah/dick.svg"
  2850. }
  2851. },
  2852. beakOpen: {
  2853. height: math.unit(1.25, "feet"),
  2854. name: "Beak (Open)",
  2855. image: {
  2856. source: "./media/characters/elijah/beak-open.svg"
  2857. }
  2858. },
  2859. beakShut: {
  2860. height: math.unit(1.25, "feet"),
  2861. name: "Beak (Shut)",
  2862. image: {
  2863. source: "./media/characters/elijah/beak-shut.svg"
  2864. }
  2865. },
  2866. footFlexing: {
  2867. height: math.unit(1.61, "feet"),
  2868. name: "Foot (Flexing)",
  2869. image: {
  2870. source: "./media/characters/elijah/foot-flexing.svg"
  2871. }
  2872. },
  2873. footStepping: {
  2874. height: math.unit(1.44, "feet"),
  2875. name: "Foot (Stepping)",
  2876. image: {
  2877. source: "./media/characters/elijah/foot-stepping.svg"
  2878. }
  2879. },
  2880. plantigradeLeg: {
  2881. height: math.unit(2.34, "feet"),
  2882. name: "Plantigrade Leg",
  2883. image: {
  2884. source: "./media/characters/elijah/plantigrade-leg.svg"
  2885. }
  2886. },
  2887. plantigradeFootLeft: {
  2888. height: math.unit(0.9, "feet"),
  2889. name: "Plantigrade Foot (Left)",
  2890. image: {
  2891. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2892. }
  2893. },
  2894. plantigradeFootRight: {
  2895. height: math.unit(0.9, "feet"),
  2896. name: "Plantigrade Foot (Right)",
  2897. image: {
  2898. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2899. }
  2900. },
  2901. },
  2902. [
  2903. {
  2904. name: "Normal",
  2905. height: math.unit(1.65, "meters")
  2906. },
  2907. {
  2908. name: "Macro",
  2909. height: math.unit(55, "meters"),
  2910. default: true
  2911. },
  2912. {
  2913. name: "Macro+",
  2914. height: math.unit(105, "meters")
  2915. },
  2916. ]
  2917. ))
  2918. characterMakers.push(() => makeCharacter(
  2919. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2920. {
  2921. front: {
  2922. height: math.unit(7 + 2/12, "feet"),
  2923. weight: math.unit(320, "kg"),
  2924. preyCapacity: math.unit(0.276549935, "people"),
  2925. name: "Front",
  2926. image: {
  2927. source: "./media/characters/rai/front.svg",
  2928. extra: 1802/1696,
  2929. bottom: 68/1870
  2930. },
  2931. form: "anthro",
  2932. default: true
  2933. },
  2934. frontDressed: {
  2935. height: math.unit(7 + 2/12, "feet"),
  2936. weight: math.unit(320, "kg"),
  2937. preyCapacity: math.unit(0.276549935, "people"),
  2938. name: "Front (Dressed)",
  2939. image: {
  2940. source: "./media/characters/rai/front-dressed.svg",
  2941. extra: 1802/1696,
  2942. bottom: 68/1870
  2943. },
  2944. form: "anthro"
  2945. },
  2946. side: {
  2947. height: math.unit(7 + 2/12, "feet"),
  2948. weight: math.unit(320, "kg"),
  2949. preyCapacity: math.unit(0.276549935, "people"),
  2950. name: "Side",
  2951. image: {
  2952. source: "./media/characters/rai/side.svg",
  2953. extra: 1789/1710,
  2954. bottom: 115/1904
  2955. },
  2956. form: "anthro"
  2957. },
  2958. back: {
  2959. height: math.unit(7 + 2/12, "feet"),
  2960. weight: math.unit(320, "kg"),
  2961. preyCapacity: math.unit(0.276549935, "people"),
  2962. name: "Back",
  2963. image: {
  2964. source: "./media/characters/rai/back.svg",
  2965. extra: 1770/1707,
  2966. bottom: 28/1798
  2967. },
  2968. form: "anthro"
  2969. },
  2970. feral: {
  2971. height: math.unit(9.5, "feet"),
  2972. weight: math.unit(640, "kg"),
  2973. preyCapacity: math.unit(4, "people"),
  2974. name: "Feral",
  2975. image: {
  2976. source: "./media/characters/rai/feral.svg",
  2977. extra: 945/553,
  2978. bottom: 176/1121
  2979. },
  2980. form: "feral",
  2981. default: true
  2982. },
  2983. dragon: {
  2984. height: math.unit(23, "feet"),
  2985. weight: math.unit(50000, "lb"),
  2986. name: "Dragon",
  2987. image: {
  2988. source: "./media/characters/rai/dragon.svg",
  2989. extra: 2498 / 2030,
  2990. bottom: 85.2 / 2584
  2991. },
  2992. form: "dragon",
  2993. default: true
  2994. },
  2995. maw: {
  2996. height: math.unit(1.69, "feet"),
  2997. name: "Maw",
  2998. image: {
  2999. source: "./media/characters/rai/maw.svg"
  3000. },
  3001. form: "anthro"
  3002. },
  3003. },
  3004. [
  3005. {
  3006. name: "Normal",
  3007. height: math.unit(7 + 2/12, "feet"),
  3008. form: "anthro"
  3009. },
  3010. {
  3011. name: "Big",
  3012. height: math.unit(11, "feet"),
  3013. form: "anthro"
  3014. },
  3015. {
  3016. name: "Minimacro",
  3017. height: math.unit(77, "feet"),
  3018. form: "anthro"
  3019. },
  3020. {
  3021. name: "Macro",
  3022. height: math.unit(302, "feet"),
  3023. default: true,
  3024. form: "anthro"
  3025. },
  3026. {
  3027. name: "Normal",
  3028. height: math.unit(9.5, "feet"),
  3029. form: "feral",
  3030. default: true
  3031. },
  3032. {
  3033. name: "Normal",
  3034. height: math.unit(23, "feet"),
  3035. form: "dragon",
  3036. default: true
  3037. }
  3038. ],
  3039. {
  3040. "anthro": {
  3041. name: "Anthro",
  3042. default: true
  3043. },
  3044. "feral": {
  3045. name: "Feral",
  3046. },
  3047. "dragon": {
  3048. name: "Dragon",
  3049. },
  3050. }
  3051. ))
  3052. characterMakers.push(() => makeCharacter(
  3053. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3054. {
  3055. frontDressed: {
  3056. height: math.unit(216, "feet"),
  3057. weight: math.unit(7000000, "lb"),
  3058. preyCapacity: math.unit(1321, "people"),
  3059. name: "Front (Dressed)",
  3060. image: {
  3061. source: "./media/characters/jazzy/front-dressed.svg",
  3062. extra: 2738 / 2651,
  3063. bottom: 41.8 / 2786
  3064. }
  3065. },
  3066. backDressed: {
  3067. height: math.unit(216, "feet"),
  3068. weight: math.unit(7000000, "lb"),
  3069. preyCapacity: math.unit(1321, "people"),
  3070. name: "Back (Dressed)",
  3071. image: {
  3072. source: "./media/characters/jazzy/back-dressed.svg",
  3073. extra: 2775 / 2673,
  3074. bottom: 36.8 / 2817
  3075. }
  3076. },
  3077. front: {
  3078. height: math.unit(216, "feet"),
  3079. weight: math.unit(7000000, "lb"),
  3080. preyCapacity: math.unit(1321, "people"),
  3081. name: "Front",
  3082. image: {
  3083. source: "./media/characters/jazzy/front.svg",
  3084. extra: 2738 / 2651,
  3085. bottom: 41.8 / 2786
  3086. }
  3087. },
  3088. back: {
  3089. height: math.unit(216, "feet"),
  3090. weight: math.unit(7000000, "lb"),
  3091. preyCapacity: math.unit(1321, "people"),
  3092. name: "Back",
  3093. image: {
  3094. source: "./media/characters/jazzy/back.svg",
  3095. extra: 2775 / 2673,
  3096. bottom: 36.8 / 2817
  3097. }
  3098. },
  3099. maw: {
  3100. height: math.unit(20, "feet"),
  3101. name: "Maw",
  3102. image: {
  3103. source: "./media/characters/jazzy/maw.svg"
  3104. }
  3105. },
  3106. paws: {
  3107. height: math.unit(27.5, "feet"),
  3108. name: "Paws",
  3109. image: {
  3110. source: "./media/characters/jazzy/paws.svg"
  3111. }
  3112. },
  3113. eye: {
  3114. height: math.unit(4.4, "feet"),
  3115. name: "Eye",
  3116. image: {
  3117. source: "./media/characters/jazzy/eye.svg"
  3118. }
  3119. },
  3120. droneOffense: {
  3121. height: math.unit(9.5, "inches"),
  3122. name: "Drone (Offense)",
  3123. image: {
  3124. source: "./media/characters/jazzy/drone-offense.svg"
  3125. }
  3126. },
  3127. droneRecon: {
  3128. height: math.unit(9.5, "inches"),
  3129. name: "Drone (Recon)",
  3130. image: {
  3131. source: "./media/characters/jazzy/drone-recon.svg"
  3132. }
  3133. },
  3134. droneDefense: {
  3135. height: math.unit(9.5, "inches"),
  3136. name: "Drone (Defense)",
  3137. image: {
  3138. source: "./media/characters/jazzy/drone-defense.svg"
  3139. }
  3140. },
  3141. },
  3142. [
  3143. {
  3144. name: "Macro",
  3145. height: math.unit(216, "feet"),
  3146. default: true
  3147. },
  3148. ]
  3149. ))
  3150. characterMakers.push(() => makeCharacter(
  3151. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3152. {
  3153. front: {
  3154. height: math.unit(9 + 6/12, "feet"),
  3155. weight: math.unit(700, "lb"),
  3156. name: "Front",
  3157. image: {
  3158. source: "./media/characters/flamm/front.svg",
  3159. extra: 1736/1596,
  3160. bottom: 93/1829
  3161. }
  3162. },
  3163. buff: {
  3164. height: math.unit(9 + 6/12, "feet"),
  3165. weight: math.unit(950, "lb"),
  3166. name: "Buff",
  3167. image: {
  3168. source: "./media/characters/flamm/buff.svg",
  3169. extra: 3018/2874,
  3170. bottom: 221/3239
  3171. }
  3172. },
  3173. },
  3174. [
  3175. {
  3176. name: "Normal",
  3177. height: math.unit(9.5, "feet")
  3178. },
  3179. {
  3180. name: "Macro",
  3181. height: math.unit(200, "feet"),
  3182. default: true
  3183. },
  3184. ]
  3185. ))
  3186. characterMakers.push(() => makeCharacter(
  3187. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3188. {
  3189. front: {
  3190. height: math.unit(5 + 3/12, "feet"),
  3191. weight: math.unit(60, "kg"),
  3192. name: "Front",
  3193. image: {
  3194. source: "./media/characters/zephiro/front.svg",
  3195. extra: 1873/1761,
  3196. bottom: 147/2020
  3197. }
  3198. },
  3199. side: {
  3200. height: math.unit(5 + 3/12, "feet"),
  3201. weight: math.unit(60, "kg"),
  3202. name: "Side",
  3203. image: {
  3204. source: "./media/characters/zephiro/side.svg",
  3205. extra: 1929/1827,
  3206. bottom: 65/1994
  3207. }
  3208. },
  3209. back: {
  3210. height: math.unit(5 + 3/12, "feet"),
  3211. weight: math.unit(60, "kg"),
  3212. name: "Back",
  3213. image: {
  3214. source: "./media/characters/zephiro/back.svg",
  3215. extra: 1926/1816,
  3216. bottom: 41/1967
  3217. }
  3218. },
  3219. hand: {
  3220. height: math.unit(0.68, "feet"),
  3221. name: "Hand",
  3222. image: {
  3223. source: "./media/characters/zephiro/hand.svg"
  3224. }
  3225. },
  3226. paw: {
  3227. height: math.unit(1, "feet"),
  3228. name: "Paw",
  3229. image: {
  3230. source: "./media/characters/zephiro/paw.svg"
  3231. }
  3232. },
  3233. beans: {
  3234. height: math.unit(0.93, "feet"),
  3235. name: "Beans",
  3236. image: {
  3237. source: "./media/characters/zephiro/beans.svg"
  3238. }
  3239. },
  3240. },
  3241. [
  3242. {
  3243. name: "Micro",
  3244. height: math.unit(3, "inches")
  3245. },
  3246. {
  3247. name: "Normal",
  3248. height: math.unit(5 + 3 / 12, "feet"),
  3249. default: true
  3250. },
  3251. {
  3252. name: "Macro",
  3253. height: math.unit(118, "feet")
  3254. },
  3255. ]
  3256. ))
  3257. characterMakers.push(() => makeCharacter(
  3258. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3259. {
  3260. front: {
  3261. height: math.unit(5, "feet"),
  3262. weight: math.unit(90, "kg"),
  3263. preyCapacity: math.unit(14, "people"),
  3264. name: "Front",
  3265. image: {
  3266. source: "./media/characters/fory/front.svg",
  3267. extra: 2862 / 2674,
  3268. bottom: 180 / 3043.8
  3269. },
  3270. form: "weaselbun",
  3271. default: true,
  3272. extraAttributes: {
  3273. "pawSize": {
  3274. name: "Paw Size",
  3275. power: 2,
  3276. type: "area",
  3277. base: math.unit(0.1596, "m^2")
  3278. },
  3279. "pawLength": {
  3280. name: "Paw Length",
  3281. power: 1,
  3282. type: "length",
  3283. base: math.unit(0.7, "m")
  3284. }
  3285. }
  3286. },
  3287. back: {
  3288. height: math.unit(5, "feet"),
  3289. weight: math.unit(90, "kg"),
  3290. preyCapacity: math.unit(14, "people"),
  3291. name: "Back",
  3292. image: {
  3293. source: "./media/characters/fory/back.svg",
  3294. extra: 1790/1672,
  3295. bottom: 84/1874
  3296. },
  3297. form: "weaselbun",
  3298. extraAttributes: {
  3299. "pawSize": {
  3300. name: "Paw Size",
  3301. power: 2,
  3302. type: "area",
  3303. base: math.unit(0.1596, "m^2")
  3304. },
  3305. "pawLength": {
  3306. name: "Paw Length",
  3307. power: 1,
  3308. type: "length",
  3309. base: math.unit(0.7, "m")
  3310. }
  3311. }
  3312. },
  3313. paw: {
  3314. height: math.unit(2.14, "feet"),
  3315. name: "Paw",
  3316. image: {
  3317. source: "./media/characters/fory/paw.svg"
  3318. },
  3319. form: "weaselbun",
  3320. extraAttributes: {
  3321. "pawSize": {
  3322. name: "Paw Size",
  3323. power: 2,
  3324. type: "area",
  3325. base: math.unit(0.1596, "m^2")
  3326. },
  3327. "pawLength": {
  3328. name: "Paw Length",
  3329. power: 1,
  3330. type: "length",
  3331. base: math.unit(0.48, "m")
  3332. }
  3333. }
  3334. },
  3335. bunBack: {
  3336. height: math.unit(3, "feet"),
  3337. weight: math.unit(20, "kg"),
  3338. preyCapacity: math.unit(3, "people"),
  3339. name: "Back",
  3340. image: {
  3341. source: "./media/characters/fory/bun-back.svg",
  3342. extra: 1749/1564,
  3343. bottom: 246/1995
  3344. },
  3345. form: "bun",
  3346. default: true,
  3347. extraAttributes: {
  3348. "pawSize": {
  3349. name: "Paw Size",
  3350. power: 2,
  3351. type: "area",
  3352. base: math.unit(0.072, "m^2")
  3353. },
  3354. "pawLength": {
  3355. name: "Paw Length",
  3356. power: 1,
  3357. type: "length",
  3358. base: math.unit(0.45, "m")
  3359. }
  3360. }
  3361. },
  3362. },
  3363. [
  3364. {
  3365. name: "Normal",
  3366. height: math.unit(5, "feet"),
  3367. form: "weaselbun"
  3368. },
  3369. {
  3370. name: "Macro",
  3371. height: math.unit(50, "feet"),
  3372. default: true,
  3373. form: "weaselbun"
  3374. },
  3375. {
  3376. name: "Megamacro",
  3377. height: math.unit(10, "miles"),
  3378. form: "weaselbun"
  3379. },
  3380. {
  3381. name: "Gigamacro",
  3382. height: math.unit(5, "earths"),
  3383. form: "weaselbun"
  3384. },
  3385. {
  3386. name: "Normal",
  3387. height: math.unit(3, "feet"),
  3388. default: true,
  3389. form: "bun"
  3390. },
  3391. {
  3392. name: "Fun-Size",
  3393. height: math.unit(12, "feet"),
  3394. form: "bun"
  3395. },
  3396. {
  3397. name: "Macro",
  3398. height: math.unit(100, "feet"),
  3399. form: "bun"
  3400. },
  3401. {
  3402. name: "Planetary",
  3403. height: math.unit(3, "earths"),
  3404. form: "bun"
  3405. },
  3406. ],
  3407. {
  3408. "weaselbun": {
  3409. name: "Weaselbun",
  3410. default: true
  3411. },
  3412. "bun": {
  3413. name: "Bun",
  3414. },
  3415. }
  3416. ))
  3417. characterMakers.push(() => makeCharacter(
  3418. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3419. {
  3420. front: {
  3421. height: math.unit(7, "feet"),
  3422. weight: math.unit(90, "kg"),
  3423. name: "Front",
  3424. image: {
  3425. source: "./media/characters/kurrikage/front.svg",
  3426. extra: 1845/1733,
  3427. bottom: 119/1964
  3428. }
  3429. },
  3430. back: {
  3431. height: math.unit(7, "feet"),
  3432. weight: math.unit(90, "kg"),
  3433. name: "Back",
  3434. image: {
  3435. source: "./media/characters/kurrikage/back.svg",
  3436. extra: 1790/1677,
  3437. bottom: 61/1851
  3438. }
  3439. },
  3440. dressed: {
  3441. height: math.unit(7, "feet"),
  3442. weight: math.unit(90, "kg"),
  3443. name: "Dressed",
  3444. image: {
  3445. source: "./media/characters/kurrikage/dressed.svg",
  3446. extra: 1845/1733,
  3447. bottom: 119/1964
  3448. }
  3449. },
  3450. foot: {
  3451. height: math.unit(1.5, "feet"),
  3452. name: "Foot",
  3453. image: {
  3454. source: "./media/characters/kurrikage/foot.svg"
  3455. }
  3456. },
  3457. staff: {
  3458. height: math.unit(6.7, "feet"),
  3459. name: "Staff",
  3460. image: {
  3461. source: "./media/characters/kurrikage/staff.svg"
  3462. }
  3463. },
  3464. peek: {
  3465. height: math.unit(1.05, "feet"),
  3466. name: "Peeking",
  3467. image: {
  3468. source: "./media/characters/kurrikage/peek.svg",
  3469. bottom: 0.08
  3470. }
  3471. },
  3472. },
  3473. [
  3474. {
  3475. name: "Normal",
  3476. height: math.unit(12, "feet"),
  3477. default: true
  3478. },
  3479. {
  3480. name: "Big",
  3481. height: math.unit(20, "feet")
  3482. },
  3483. {
  3484. name: "Macro",
  3485. height: math.unit(500, "feet")
  3486. },
  3487. {
  3488. name: "Megamacro",
  3489. height: math.unit(20, "miles")
  3490. },
  3491. ]
  3492. ))
  3493. characterMakers.push(() => makeCharacter(
  3494. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3495. {
  3496. front: {
  3497. height: math.unit(6, "feet"),
  3498. weight: math.unit(75, "kg"),
  3499. name: "Front",
  3500. image: {
  3501. source: "./media/characters/shingo/front.svg",
  3502. extra: 1900/1825,
  3503. bottom: 82/1982
  3504. }
  3505. },
  3506. side: {
  3507. height: math.unit(6, "feet"),
  3508. weight: math.unit(75, "kg"),
  3509. name: "Side",
  3510. image: {
  3511. source: "./media/characters/shingo/side.svg",
  3512. extra: 1930/1865,
  3513. bottom: 16/1946
  3514. }
  3515. },
  3516. back: {
  3517. height: math.unit(6, "feet"),
  3518. weight: math.unit(75, "kg"),
  3519. name: "Back",
  3520. image: {
  3521. source: "./media/characters/shingo/back.svg",
  3522. extra: 1922/1852,
  3523. bottom: 16/1938
  3524. }
  3525. },
  3526. frontDressed: {
  3527. height: math.unit(6, "feet"),
  3528. weight: math.unit(150, "lb"),
  3529. name: "Front-dressed",
  3530. image: {
  3531. source: "./media/characters/shingo/front-dressed.svg",
  3532. extra: 1900/1825,
  3533. bottom: 82/1982
  3534. }
  3535. },
  3536. paw: {
  3537. height: math.unit(1.29, "feet"),
  3538. name: "Paw",
  3539. image: {
  3540. source: "./media/characters/shingo/paw.svg"
  3541. }
  3542. },
  3543. hand: {
  3544. height: math.unit(1.07, "feet"),
  3545. name: "Hand",
  3546. image: {
  3547. source: "./media/characters/shingo/hand.svg"
  3548. }
  3549. },
  3550. frontAlt: {
  3551. height: math.unit(6, "feet"),
  3552. weight: math.unit(75, "kg"),
  3553. name: "Front (Alt)",
  3554. image: {
  3555. source: "./media/characters/shingo/front-alt.svg",
  3556. extra: 3511 / 3338,
  3557. bottom: 0.005
  3558. }
  3559. },
  3560. frontAlt2: {
  3561. height: math.unit(6, "feet"),
  3562. weight: math.unit(75, "kg"),
  3563. name: "Front (Alt 2)",
  3564. image: {
  3565. source: "./media/characters/shingo/front-alt-2.svg",
  3566. extra: 706/681,
  3567. bottom: 11/717
  3568. }
  3569. },
  3570. pawAlt: {
  3571. height: math.unit(1, "feet"),
  3572. name: "Paw (Alt)",
  3573. image: {
  3574. source: "./media/characters/shingo/paw-alt.svg"
  3575. }
  3576. },
  3577. },
  3578. [
  3579. {
  3580. name: "Micro",
  3581. height: math.unit(4, "inches")
  3582. },
  3583. {
  3584. name: "Normal",
  3585. height: math.unit(6, "feet"),
  3586. default: true
  3587. },
  3588. {
  3589. name: "Macro",
  3590. height: math.unit(108, "feet")
  3591. },
  3592. {
  3593. name: "Macro+",
  3594. height: math.unit(1500, "feet")
  3595. },
  3596. ]
  3597. ))
  3598. characterMakers.push(() => makeCharacter(
  3599. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3600. {
  3601. side: {
  3602. height: math.unit(6, "feet"),
  3603. weight: math.unit(75, "kg"),
  3604. name: "Side",
  3605. image: {
  3606. source: "./media/characters/aigey/side.svg"
  3607. }
  3608. },
  3609. },
  3610. [
  3611. {
  3612. name: "Macro",
  3613. height: math.unit(200, "feet"),
  3614. default: true
  3615. },
  3616. {
  3617. name: "Megamacro",
  3618. height: math.unit(100, "miles")
  3619. },
  3620. ]
  3621. )
  3622. )
  3623. characterMakers.push(() => makeCharacter(
  3624. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3625. {
  3626. front: {
  3627. height: math.unit(5 + 5 / 12, "feet"),
  3628. weight: math.unit(75, "kg"),
  3629. name: "Front",
  3630. image: {
  3631. source: "./media/characters/natasha/front.svg",
  3632. extra: 859 / 824,
  3633. bottom: 23 / 879.6
  3634. }
  3635. },
  3636. frontNsfw: {
  3637. height: math.unit(5 + 5 / 12, "feet"),
  3638. weight: math.unit(75, "kg"),
  3639. name: "Front (NSFW)",
  3640. image: {
  3641. source: "./media/characters/natasha/front-nsfw.svg",
  3642. extra: 859 / 824,
  3643. bottom: 23 / 879.6
  3644. }
  3645. },
  3646. frontErect: {
  3647. height: math.unit(5 + 5 / 12, "feet"),
  3648. weight: math.unit(75, "kg"),
  3649. name: "Front (Erect)",
  3650. image: {
  3651. source: "./media/characters/natasha/front-erect.svg",
  3652. extra: 859 / 824,
  3653. bottom: 23 / 879.6
  3654. }
  3655. },
  3656. back: {
  3657. height: math.unit(5 + 5 / 12, "feet"),
  3658. weight: math.unit(75, "kg"),
  3659. name: "Back",
  3660. image: {
  3661. source: "./media/characters/natasha/back.svg",
  3662. extra: 887.9 / 852.6,
  3663. bottom: 9.7 / 896.4
  3664. }
  3665. },
  3666. backAlt: {
  3667. height: math.unit(5 + 5 / 12, "feet"),
  3668. weight: math.unit(75, "kg"),
  3669. name: "Back (Alt)",
  3670. image: {
  3671. source: "./media/characters/natasha/back-alt.svg",
  3672. extra: 1236.7 / 1192,
  3673. bottom: 22.3 / 1258.2
  3674. }
  3675. },
  3676. dick: {
  3677. height: math.unit(1.772, "feet"),
  3678. name: "Dick",
  3679. image: {
  3680. source: "./media/characters/natasha/dick.svg"
  3681. }
  3682. },
  3683. paw: {
  3684. height: math.unit(0.250, "meters"),
  3685. name: "Paw",
  3686. image: {
  3687. source: "./media/characters/natasha/paw.svg"
  3688. },
  3689. extraAttributes: {
  3690. "toeSize": {
  3691. name: "Toe Size",
  3692. power: 2,
  3693. type: "area",
  3694. base: math.unit(0.0024, "m^2")
  3695. },
  3696. "padSize": {
  3697. name: "Pad Size",
  3698. power: 2,
  3699. type: "area",
  3700. base: math.unit(0.00889, "m^2")
  3701. },
  3702. "pawSize": {
  3703. name: "Paw Size",
  3704. power: 2,
  3705. type: "area",
  3706. base: math.unit(0.023667, "m^2")
  3707. },
  3708. }
  3709. },
  3710. },
  3711. [
  3712. {
  3713. name: "Shortstack",
  3714. height: math.unit(3, "feet"),
  3715. default: true
  3716. },
  3717. {
  3718. name: "Normal",
  3719. height: math.unit(5 + 5 / 12, "feet")
  3720. },
  3721. {
  3722. name: "Large",
  3723. height: math.unit(12, "feet")
  3724. },
  3725. {
  3726. name: "Macro",
  3727. height: math.unit(100, "feet")
  3728. },
  3729. {
  3730. name: "Macro+",
  3731. height: math.unit(260, "feet")
  3732. },
  3733. {
  3734. name: "Macro++",
  3735. height: math.unit(1, "mile")
  3736. },
  3737. ]
  3738. ))
  3739. characterMakers.push(() => makeCharacter(
  3740. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3741. {
  3742. front: {
  3743. height: math.unit(6, "feet"),
  3744. weight: math.unit(75, "kg"),
  3745. name: "Front",
  3746. image: {
  3747. source: "./media/characters/malik/front.svg",
  3748. extra: 1750/1561,
  3749. bottom: 80/1830
  3750. },
  3751. extraAttributes: {
  3752. "toeSize": {
  3753. name: "Toe Size",
  3754. power: 2,
  3755. type: "area",
  3756. base: math.unit(0.0159, "m^2")
  3757. },
  3758. "pawSize": {
  3759. name: "Paw Size",
  3760. power: 2,
  3761. type: "area",
  3762. base: math.unit(0.09834, "m^2")
  3763. },
  3764. }
  3765. },
  3766. side: {
  3767. height: math.unit(6, "feet"),
  3768. weight: math.unit(75, "kg"),
  3769. name: "Side",
  3770. image: {
  3771. source: "./media/characters/malik/side.svg",
  3772. extra: 1802/1685,
  3773. bottom: 42/1844
  3774. },
  3775. extraAttributes: {
  3776. "toeSize": {
  3777. name: "Toe Size",
  3778. power: 2,
  3779. type: "area",
  3780. base: math.unit(0.0159, "m^2")
  3781. },
  3782. "pawSize": {
  3783. name: "Paw Size",
  3784. power: 2,
  3785. type: "area",
  3786. base: math.unit(0.09834, "m^2")
  3787. },
  3788. }
  3789. },
  3790. back: {
  3791. height: math.unit(6, "feet"),
  3792. weight: math.unit(75, "kg"),
  3793. name: "Back",
  3794. image: {
  3795. source: "./media/characters/malik/back.svg",
  3796. extra: 1803/1607,
  3797. bottom: 33/1836
  3798. },
  3799. extraAttributes: {
  3800. "toeSize": {
  3801. name: "Toe Size",
  3802. power: 2,
  3803. type: "area",
  3804. base: math.unit(0.0159, "m^2")
  3805. },
  3806. "pawSize": {
  3807. name: "Paw Size",
  3808. power: 2,
  3809. type: "area",
  3810. base: math.unit(0.09834, "m^2")
  3811. },
  3812. }
  3813. },
  3814. },
  3815. [
  3816. {
  3817. name: "Macro",
  3818. height: math.unit(156, "feet"),
  3819. default: true
  3820. },
  3821. {
  3822. name: "Macro+",
  3823. height: math.unit(1188, "feet")
  3824. },
  3825. ]
  3826. ))
  3827. characterMakers.push(() => makeCharacter(
  3828. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3829. {
  3830. front: {
  3831. height: math.unit(6, "feet"),
  3832. weight: math.unit(75, "kg"),
  3833. name: "Front",
  3834. image: {
  3835. source: "./media/characters/sefer/front.svg",
  3836. extra: 848 / 659,
  3837. bottom: 28.3 / 876.442
  3838. }
  3839. },
  3840. back: {
  3841. height: math.unit(6, "feet"),
  3842. weight: math.unit(75, "kg"),
  3843. name: "Back",
  3844. image: {
  3845. source: "./media/characters/sefer/back.svg",
  3846. extra: 864 / 695,
  3847. bottom: 10 / 871
  3848. }
  3849. },
  3850. frontDressed: {
  3851. height: math.unit(6, "feet"),
  3852. weight: math.unit(75, "kg"),
  3853. name: "Dressed",
  3854. image: {
  3855. source: "./media/characters/sefer/dressed.svg",
  3856. extra: 839 / 653,
  3857. bottom: 37.6 / 878
  3858. }
  3859. },
  3860. },
  3861. [
  3862. {
  3863. name: "Normal",
  3864. height: math.unit(6, "feet"),
  3865. default: true
  3866. },
  3867. {
  3868. name: "Big",
  3869. height: math.unit(8, "meters")
  3870. },
  3871. ]
  3872. ))
  3873. characterMakers.push(() => makeCharacter(
  3874. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3875. {
  3876. body: {
  3877. height: math.unit(2.2428, "meter"),
  3878. weight: math.unit(124.738, "kg"),
  3879. name: "Body",
  3880. image: {
  3881. extra: 1225 / 1050,
  3882. source: "./media/characters/north/front.svg"
  3883. }
  3884. }
  3885. },
  3886. [
  3887. {
  3888. name: "Micro",
  3889. height: math.unit(4, "inches")
  3890. },
  3891. {
  3892. name: "Macro",
  3893. height: math.unit(63, "meters")
  3894. },
  3895. {
  3896. name: "Megamacro",
  3897. height: math.unit(101, "miles"),
  3898. default: true
  3899. }
  3900. ]
  3901. ))
  3902. characterMakers.push(() => makeCharacter(
  3903. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3904. {
  3905. angled: {
  3906. height: math.unit(4, "meter"),
  3907. weight: math.unit(150, "kg"),
  3908. name: "Angled",
  3909. image: {
  3910. source: "./media/characters/talan/angled-sfw.svg",
  3911. bottom: 29 / 3734
  3912. }
  3913. },
  3914. angledNsfw: {
  3915. height: math.unit(4, "meter"),
  3916. weight: math.unit(150, "kg"),
  3917. name: "Angled (NSFW)",
  3918. image: {
  3919. source: "./media/characters/talan/angled-nsfw.svg",
  3920. bottom: 29 / 3734
  3921. }
  3922. },
  3923. frontNsfw: {
  3924. height: math.unit(4, "meter"),
  3925. weight: math.unit(150, "kg"),
  3926. name: "Front (NSFW)",
  3927. image: {
  3928. source: "./media/characters/talan/front-nsfw.svg",
  3929. bottom: 29 / 3734
  3930. }
  3931. },
  3932. sideNsfw: {
  3933. height: math.unit(4, "meter"),
  3934. weight: math.unit(150, "kg"),
  3935. name: "Side (NSFW)",
  3936. image: {
  3937. source: "./media/characters/talan/side-nsfw.svg",
  3938. bottom: 29 / 3734
  3939. }
  3940. },
  3941. back: {
  3942. height: math.unit(4, "meter"),
  3943. weight: math.unit(150, "kg"),
  3944. name: "Back",
  3945. image: {
  3946. source: "./media/characters/talan/back.svg"
  3947. }
  3948. },
  3949. dickBottom: {
  3950. height: math.unit(0.621, "meter"),
  3951. name: "Dick (Bottom)",
  3952. image: {
  3953. source: "./media/characters/talan/dick-bottom.svg"
  3954. }
  3955. },
  3956. dickTop: {
  3957. height: math.unit(0.621, "meter"),
  3958. name: "Dick (Top)",
  3959. image: {
  3960. source: "./media/characters/talan/dick-top.svg"
  3961. }
  3962. },
  3963. dickSide: {
  3964. height: math.unit(0.305, "meter"),
  3965. name: "Dick (Side)",
  3966. image: {
  3967. source: "./media/characters/talan/dick-side.svg"
  3968. }
  3969. },
  3970. dickFront: {
  3971. height: math.unit(0.305, "meter"),
  3972. name: "Dick (Front)",
  3973. image: {
  3974. source: "./media/characters/talan/dick-front.svg"
  3975. }
  3976. },
  3977. },
  3978. [
  3979. {
  3980. name: "Normal",
  3981. height: math.unit(4, "meters")
  3982. },
  3983. {
  3984. name: "Macro",
  3985. height: math.unit(100, "meters")
  3986. },
  3987. {
  3988. name: "Megamacro",
  3989. height: math.unit(2, "miles"),
  3990. default: true
  3991. },
  3992. {
  3993. name: "Gigamacro",
  3994. height: math.unit(5000, "miles")
  3995. },
  3996. {
  3997. name: "Teramacro",
  3998. height: math.unit(100, "parsecs")
  3999. }
  4000. ]
  4001. ))
  4002. characterMakers.push(() => makeCharacter(
  4003. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4004. {
  4005. front: {
  4006. height: math.unit(2, "meter"),
  4007. weight: math.unit(90, "kg"),
  4008. name: "Front",
  4009. image: {
  4010. source: "./media/characters/gael'rathus/front.svg"
  4011. }
  4012. },
  4013. frontAlt: {
  4014. height: math.unit(2, "meter"),
  4015. weight: math.unit(90, "kg"),
  4016. name: "Front (alt)",
  4017. image: {
  4018. source: "./media/characters/gael'rathus/front-alt.svg"
  4019. }
  4020. },
  4021. frontAlt2: {
  4022. height: math.unit(2, "meter"),
  4023. weight: math.unit(90, "kg"),
  4024. name: "Front (alt 2)",
  4025. image: {
  4026. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4027. }
  4028. }
  4029. },
  4030. [
  4031. {
  4032. name: "Normal",
  4033. height: math.unit(9, "feet"),
  4034. default: true
  4035. },
  4036. {
  4037. name: "Large",
  4038. height: math.unit(25, "feet")
  4039. },
  4040. {
  4041. name: "Macro",
  4042. height: math.unit(0.25, "miles")
  4043. },
  4044. {
  4045. name: "Megamacro",
  4046. height: math.unit(10, "miles")
  4047. }
  4048. ]
  4049. ))
  4050. characterMakers.push(() => makeCharacter(
  4051. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4052. {
  4053. side: {
  4054. height: math.unit(2, "meter"),
  4055. weight: math.unit(140, "kg"),
  4056. name: "Side",
  4057. image: {
  4058. source: "./media/characters/sosha/side.svg",
  4059. extra: 1170/1006,
  4060. bottom: 94/1264
  4061. }
  4062. },
  4063. maw: {
  4064. height: math.unit(2.87, "feet"),
  4065. name: "Maw",
  4066. image: {
  4067. source: "./media/characters/sosha/maw.svg",
  4068. extra: 966/865,
  4069. bottom: 0/966
  4070. }
  4071. },
  4072. cooch: {
  4073. height: math.unit(5.6, "feet"),
  4074. name: "Cooch",
  4075. image: {
  4076. source: "./media/characters/sosha/cooch.svg"
  4077. }
  4078. },
  4079. },
  4080. [
  4081. {
  4082. name: "Normal",
  4083. height: math.unit(12, "feet"),
  4084. default: true
  4085. }
  4086. ]
  4087. ))
  4088. characterMakers.push(() => makeCharacter(
  4089. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4090. {
  4091. side: {
  4092. height: math.unit(5 + 5 / 12, "feet"),
  4093. weight: math.unit(170, "kg"),
  4094. name: "Side",
  4095. image: {
  4096. source: "./media/characters/runnola/side.svg",
  4097. extra: 741 / 448,
  4098. bottom: 0.05
  4099. }
  4100. },
  4101. },
  4102. [
  4103. {
  4104. name: "Small",
  4105. height: math.unit(3, "feet")
  4106. },
  4107. {
  4108. name: "Normal",
  4109. height: math.unit(5 + 5 / 12, "feet"),
  4110. default: true
  4111. },
  4112. {
  4113. name: "Big",
  4114. height: math.unit(10, "feet")
  4115. },
  4116. ]
  4117. ))
  4118. characterMakers.push(() => makeCharacter(
  4119. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4120. {
  4121. front: {
  4122. height: math.unit(2, "meter"),
  4123. weight: math.unit(50, "kg"),
  4124. name: "Front",
  4125. image: {
  4126. source: "./media/characters/kurribird/front.svg",
  4127. bottom: 0.015
  4128. }
  4129. },
  4130. frontAlt: {
  4131. height: math.unit(1.5, "meter"),
  4132. weight: math.unit(50, "kg"),
  4133. name: "Front (Alt)",
  4134. image: {
  4135. source: "./media/characters/kurribird/front-alt.svg",
  4136. extra: 1.45
  4137. }
  4138. },
  4139. },
  4140. [
  4141. {
  4142. name: "Normal",
  4143. height: math.unit(7, "feet")
  4144. },
  4145. {
  4146. name: "Big",
  4147. height: math.unit(12, "feet"),
  4148. default: true
  4149. },
  4150. {
  4151. name: "Macro",
  4152. height: math.unit(1500, "feet")
  4153. },
  4154. {
  4155. name: "Megamacro",
  4156. height: math.unit(2, "miles")
  4157. }
  4158. ]
  4159. ))
  4160. characterMakers.push(() => makeCharacter(
  4161. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4162. {
  4163. front: {
  4164. height: math.unit(2, "meter"),
  4165. weight: math.unit(80, "kg"),
  4166. name: "Front",
  4167. image: {
  4168. source: "./media/characters/elbial/front.svg",
  4169. extra: 1643 / 1556,
  4170. bottom: 60.2 / 1696
  4171. }
  4172. },
  4173. side: {
  4174. height: math.unit(2, "meter"),
  4175. weight: math.unit(80, "kg"),
  4176. name: "Side",
  4177. image: {
  4178. source: "./media/characters/elbial/side.svg",
  4179. extra: 1601/1528,
  4180. bottom: 97/1698
  4181. }
  4182. },
  4183. back: {
  4184. height: math.unit(2, "meter"),
  4185. weight: math.unit(80, "kg"),
  4186. name: "Back",
  4187. image: {
  4188. source: "./media/characters/elbial/back.svg",
  4189. extra: 1653/1569,
  4190. bottom: 20/1673
  4191. }
  4192. },
  4193. frontDressed: {
  4194. height: math.unit(2, "meter"),
  4195. weight: math.unit(80, "kg"),
  4196. name: "Front (Dressed)",
  4197. image: {
  4198. source: "./media/characters/elbial/front-dressed.svg",
  4199. extra: 1638/1569,
  4200. bottom: 70/1708
  4201. }
  4202. },
  4203. genitals: {
  4204. height: math.unit(2 / 3.367, "meter"),
  4205. name: "Genitals",
  4206. image: {
  4207. source: "./media/characters/elbial/genitals.svg"
  4208. }
  4209. },
  4210. },
  4211. [
  4212. {
  4213. name: "Large",
  4214. height: math.unit(100, "feet")
  4215. },
  4216. {
  4217. name: "Macro",
  4218. height: math.unit(500, "feet"),
  4219. default: true
  4220. },
  4221. {
  4222. name: "Megamacro",
  4223. height: math.unit(10, "miles")
  4224. },
  4225. {
  4226. name: "Gigamacro",
  4227. height: math.unit(25000, "miles")
  4228. },
  4229. {
  4230. name: "Full-Size",
  4231. height: math.unit(8000000, "gigaparsecs")
  4232. }
  4233. ]
  4234. ))
  4235. characterMakers.push(() => makeCharacter(
  4236. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4237. {
  4238. front: {
  4239. height: math.unit(2, "meter"),
  4240. weight: math.unit(60, "kg"),
  4241. name: "Front",
  4242. image: {
  4243. source: "./media/characters/noah/front.svg"
  4244. }
  4245. },
  4246. talons: {
  4247. height: math.unit(0.315, "meter"),
  4248. name: "Talons",
  4249. image: {
  4250. source: "./media/characters/noah/talons.svg"
  4251. }
  4252. }
  4253. },
  4254. [
  4255. {
  4256. name: "Large",
  4257. height: math.unit(50, "feet")
  4258. },
  4259. {
  4260. name: "Macro",
  4261. height: math.unit(750, "feet"),
  4262. default: true
  4263. },
  4264. {
  4265. name: "Megamacro",
  4266. height: math.unit(50, "miles")
  4267. },
  4268. {
  4269. name: "Gigamacro",
  4270. height: math.unit(100000, "miles")
  4271. },
  4272. {
  4273. name: "Full-Size",
  4274. height: math.unit(3000000000, "miles")
  4275. }
  4276. ]
  4277. ))
  4278. characterMakers.push(() => makeCharacter(
  4279. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4280. {
  4281. front: {
  4282. height: math.unit(2, "meter"),
  4283. weight: math.unit(80, "kg"),
  4284. name: "Front",
  4285. image: {
  4286. source: "./media/characters/natalya/front.svg"
  4287. }
  4288. },
  4289. back: {
  4290. height: math.unit(2, "meter"),
  4291. weight: math.unit(80, "kg"),
  4292. name: "Back",
  4293. image: {
  4294. source: "./media/characters/natalya/back.svg"
  4295. }
  4296. }
  4297. },
  4298. [
  4299. {
  4300. name: "Normal",
  4301. height: math.unit(150, "feet"),
  4302. default: true
  4303. },
  4304. {
  4305. name: "Megamacro",
  4306. height: math.unit(5, "miles")
  4307. },
  4308. {
  4309. name: "Full-Size",
  4310. height: math.unit(600, "kiloparsecs")
  4311. }
  4312. ]
  4313. ))
  4314. characterMakers.push(() => makeCharacter(
  4315. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4316. {
  4317. front: {
  4318. height: math.unit(2, "meter"),
  4319. weight: math.unit(50, "kg"),
  4320. name: "Front",
  4321. image: {
  4322. source: "./media/characters/erestrebah/front.svg",
  4323. extra: 1262/1162,
  4324. bottom: 96/1358
  4325. }
  4326. },
  4327. back: {
  4328. height: math.unit(2, "meter"),
  4329. weight: math.unit(50, "kg"),
  4330. name: "Back",
  4331. image: {
  4332. source: "./media/characters/erestrebah/back.svg",
  4333. extra: 1257/1139,
  4334. bottom: 13/1270
  4335. }
  4336. },
  4337. wing: {
  4338. height: math.unit(2, "meter"),
  4339. weight: math.unit(50, "kg"),
  4340. name: "Wing",
  4341. image: {
  4342. source: "./media/characters/erestrebah/wing.svg",
  4343. extra: 1262/1162,
  4344. bottom: 96/1358
  4345. }
  4346. },
  4347. mouth: {
  4348. height: math.unit(0.39, "feet"),
  4349. name: "Mouth",
  4350. image: {
  4351. source: "./media/characters/erestrebah/mouth.svg"
  4352. }
  4353. }
  4354. },
  4355. [
  4356. {
  4357. name: "Normal",
  4358. height: math.unit(10, "feet")
  4359. },
  4360. {
  4361. name: "Large",
  4362. height: math.unit(50, "feet"),
  4363. default: true
  4364. },
  4365. {
  4366. name: "Macro",
  4367. height: math.unit(300, "feet")
  4368. },
  4369. {
  4370. name: "Macro+",
  4371. height: math.unit(750, "feet")
  4372. },
  4373. {
  4374. name: "Megamacro",
  4375. height: math.unit(3, "miles")
  4376. }
  4377. ]
  4378. ))
  4379. characterMakers.push(() => makeCharacter(
  4380. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4381. {
  4382. front: {
  4383. height: math.unit(2, "meter"),
  4384. weight: math.unit(80, "kg"),
  4385. name: "Front",
  4386. image: {
  4387. source: "./media/characters/jennifer/front.svg",
  4388. bottom: 0.11,
  4389. extra: 1.16
  4390. }
  4391. },
  4392. frontAlt: {
  4393. height: math.unit(2, "meter"),
  4394. weight: math.unit(80, "kg"),
  4395. name: "Front (Alt)",
  4396. image: {
  4397. source: "./media/characters/jennifer/front-alt.svg"
  4398. }
  4399. }
  4400. },
  4401. [
  4402. {
  4403. name: "Canon Height",
  4404. height: math.unit(120, "feet"),
  4405. default: true
  4406. },
  4407. {
  4408. name: "Macro+",
  4409. height: math.unit(300, "feet")
  4410. },
  4411. {
  4412. name: "Megamacro",
  4413. height: math.unit(20000, "feet")
  4414. }
  4415. ]
  4416. ))
  4417. characterMakers.push(() => makeCharacter(
  4418. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4419. {
  4420. front: {
  4421. height: math.unit(2, "meter"),
  4422. weight: math.unit(50, "kg"),
  4423. name: "Front",
  4424. image: {
  4425. source: "./media/characters/kalista/front.svg",
  4426. extra: 1314/1145,
  4427. bottom: 101/1415
  4428. }
  4429. },
  4430. back: {
  4431. height: math.unit(2, "meter"),
  4432. weight: math.unit(50, "kg"),
  4433. name: "Back",
  4434. image: {
  4435. source: "./media/characters/kalista/back.svg",
  4436. extra: 1366 / 1156,
  4437. bottom: 33.9 / 1362.78
  4438. }
  4439. }
  4440. },
  4441. [
  4442. {
  4443. name: "Uncomfortably Small",
  4444. height: math.unit(10, "feet")
  4445. },
  4446. {
  4447. name: "Small",
  4448. height: math.unit(30, "feet")
  4449. },
  4450. {
  4451. name: "Macro",
  4452. height: math.unit(100, "feet"),
  4453. default: true
  4454. },
  4455. {
  4456. name: "Macro+",
  4457. height: math.unit(2000, "feet")
  4458. },
  4459. {
  4460. name: "True Form",
  4461. height: math.unit(8924, "miles")
  4462. }
  4463. ]
  4464. ))
  4465. characterMakers.push(() => makeCharacter(
  4466. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4467. {
  4468. front: {
  4469. height: math.unit(2, "meter"),
  4470. weight: math.unit(120, "kg"),
  4471. name: "Front",
  4472. image: {
  4473. source: "./media/characters/ggv/front.svg"
  4474. }
  4475. },
  4476. side: {
  4477. height: math.unit(2, "meter"),
  4478. weight: math.unit(120, "kg"),
  4479. name: "Side",
  4480. image: {
  4481. source: "./media/characters/ggv/side.svg"
  4482. }
  4483. }
  4484. },
  4485. [
  4486. {
  4487. name: "Extremely Puny",
  4488. height: math.unit(9 + 5 / 12, "feet")
  4489. },
  4490. {
  4491. name: "Horribly Small",
  4492. height: math.unit(47.7, "miles"),
  4493. default: true
  4494. },
  4495. {
  4496. name: "Reasonably Sized",
  4497. height: math.unit(25000, "parsecs")
  4498. },
  4499. {
  4500. name: "Slightly Uncompressed",
  4501. height: math.unit(7.77e31, "parsecs")
  4502. },
  4503. {
  4504. name: "Omniversal",
  4505. height: math.unit(1e300, "meters")
  4506. },
  4507. ]
  4508. ))
  4509. characterMakers.push(() => makeCharacter(
  4510. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4511. {
  4512. front: {
  4513. height: math.unit(2, "meter"),
  4514. weight: math.unit(75, "lb"),
  4515. name: "Front",
  4516. image: {
  4517. source: "./media/characters/napalm/front.svg"
  4518. }
  4519. },
  4520. back: {
  4521. height: math.unit(2, "meter"),
  4522. weight: math.unit(75, "lb"),
  4523. name: "Back",
  4524. image: {
  4525. source: "./media/characters/napalm/back.svg"
  4526. }
  4527. }
  4528. },
  4529. [
  4530. {
  4531. name: "Standard",
  4532. height: math.unit(55, "feet"),
  4533. default: true
  4534. }
  4535. ]
  4536. ))
  4537. characterMakers.push(() => makeCharacter(
  4538. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4539. {
  4540. front: {
  4541. height: math.unit(7 + 5 / 6, "feet"),
  4542. weight: math.unit(325, "lb"),
  4543. name: "Front",
  4544. image: {
  4545. source: "./media/characters/asana/front.svg",
  4546. extra: 1133 / 1060,
  4547. bottom: 15.2 / 1148.6
  4548. }
  4549. },
  4550. back: {
  4551. height: math.unit(7 + 5 / 6, "feet"),
  4552. weight: math.unit(325, "lb"),
  4553. name: "Back",
  4554. image: {
  4555. source: "./media/characters/asana/back.svg",
  4556. extra: 1114 / 1043,
  4557. bottom: 5 / 1120
  4558. }
  4559. },
  4560. dressedDark: {
  4561. height: math.unit(7 + 5 / 6, "feet"),
  4562. weight: math.unit(325, "lb"),
  4563. name: "Dressed (Dark)",
  4564. image: {
  4565. source: "./media/characters/asana/dressed-dark.svg",
  4566. extra: 1133 / 1060,
  4567. bottom: 15.2 / 1148.6
  4568. }
  4569. },
  4570. dressedLight: {
  4571. height: math.unit(7 + 5 / 6, "feet"),
  4572. weight: math.unit(325, "lb"),
  4573. name: "Dressed (Light)",
  4574. image: {
  4575. source: "./media/characters/asana/dressed-light.svg",
  4576. extra: 1133 / 1060,
  4577. bottom: 15.2 / 1148.6
  4578. }
  4579. },
  4580. },
  4581. [
  4582. {
  4583. name: "Standard",
  4584. height: math.unit(7 + 5 / 6, "feet"),
  4585. default: true
  4586. },
  4587. {
  4588. name: "Large",
  4589. height: math.unit(10, "meters")
  4590. },
  4591. {
  4592. name: "Macro",
  4593. height: math.unit(2500, "meters")
  4594. },
  4595. {
  4596. name: "Megamacro",
  4597. height: math.unit(5e6, "meters")
  4598. },
  4599. {
  4600. name: "Examacro",
  4601. height: math.unit(5e12, "lightyears")
  4602. },
  4603. {
  4604. name: "Max Size",
  4605. height: math.unit(1e31, "lightyears")
  4606. }
  4607. ]
  4608. ))
  4609. characterMakers.push(() => makeCharacter(
  4610. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4611. {
  4612. front: {
  4613. height: math.unit(2, "meter"),
  4614. weight: math.unit(60, "kg"),
  4615. name: "Front",
  4616. image: {
  4617. source: "./media/characters/ebony/front.svg",
  4618. bottom: 0.03,
  4619. extra: 1045 / 810 + 0.03
  4620. }
  4621. },
  4622. side: {
  4623. height: math.unit(2, "meter"),
  4624. weight: math.unit(60, "kg"),
  4625. name: "Side",
  4626. image: {
  4627. source: "./media/characters/ebony/side.svg",
  4628. bottom: 0.03,
  4629. extra: 1045 / 810 + 0.03
  4630. }
  4631. },
  4632. back: {
  4633. height: math.unit(2, "meter"),
  4634. weight: math.unit(60, "kg"),
  4635. name: "Back",
  4636. image: {
  4637. source: "./media/characters/ebony/back.svg",
  4638. bottom: 0.01,
  4639. extra: 1045 / 810 + 0.01
  4640. }
  4641. },
  4642. },
  4643. [
  4644. // TODO check why I did this lol
  4645. {
  4646. name: "Standard",
  4647. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4648. default: true
  4649. },
  4650. {
  4651. name: "Macro",
  4652. height: math.unit(200, "feet")
  4653. },
  4654. {
  4655. name: "Gigamacro",
  4656. height: math.unit(13000, "km")
  4657. }
  4658. ]
  4659. ))
  4660. characterMakers.push(() => makeCharacter(
  4661. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4662. {
  4663. front: {
  4664. height: math.unit(6, "feet"),
  4665. weight: math.unit(175, "lb"),
  4666. name: "Front",
  4667. image: {
  4668. source: "./media/characters/mountain/front.svg",
  4669. extra: 972 / 955,
  4670. bottom: 64 / 1036.6
  4671. }
  4672. },
  4673. back: {
  4674. height: math.unit(6, "feet"),
  4675. weight: math.unit(175, "lb"),
  4676. name: "Back",
  4677. image: {
  4678. source: "./media/characters/mountain/back.svg",
  4679. extra: 970 / 950,
  4680. bottom: 28.25 / 999
  4681. }
  4682. },
  4683. },
  4684. [
  4685. {
  4686. name: "Large",
  4687. height: math.unit(20, "meters")
  4688. },
  4689. {
  4690. name: "Macro",
  4691. height: math.unit(300, "meters")
  4692. },
  4693. {
  4694. name: "Gigamacro",
  4695. height: math.unit(10000, "km"),
  4696. default: true
  4697. },
  4698. {
  4699. name: "Examacro",
  4700. height: math.unit(10e9, "lightyears")
  4701. }
  4702. ]
  4703. ))
  4704. characterMakers.push(() => makeCharacter(
  4705. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4706. {
  4707. front: {
  4708. height: math.unit(8, "feet"),
  4709. weight: math.unit(500, "lb"),
  4710. name: "Front",
  4711. image: {
  4712. source: "./media/characters/rick/front.svg"
  4713. }
  4714. }
  4715. },
  4716. [
  4717. {
  4718. name: "Normal",
  4719. height: math.unit(8, "feet"),
  4720. default: true
  4721. },
  4722. {
  4723. name: "Macro",
  4724. height: math.unit(5, "km")
  4725. }
  4726. ]
  4727. ))
  4728. characterMakers.push(() => makeCharacter(
  4729. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4730. {
  4731. front: {
  4732. height: math.unit(8, "feet"),
  4733. weight: math.unit(120, "lb"),
  4734. name: "Front",
  4735. image: {
  4736. source: "./media/characters/ona/front.svg"
  4737. }
  4738. },
  4739. frontAlt: {
  4740. height: math.unit(8, "feet"),
  4741. weight: math.unit(120, "lb"),
  4742. name: "Front (Alt)",
  4743. image: {
  4744. source: "./media/characters/ona/front-alt.svg"
  4745. }
  4746. },
  4747. back: {
  4748. height: math.unit(8, "feet"),
  4749. weight: math.unit(120, "lb"),
  4750. name: "Back",
  4751. image: {
  4752. source: "./media/characters/ona/back.svg"
  4753. }
  4754. },
  4755. foot: {
  4756. height: math.unit(1.1, "feet"),
  4757. name: "Foot",
  4758. image: {
  4759. source: "./media/characters/ona/foot.svg"
  4760. }
  4761. }
  4762. },
  4763. [
  4764. {
  4765. name: "Megamacro",
  4766. height: math.unit(70, "km"),
  4767. default: true
  4768. },
  4769. {
  4770. name: "Gigamacro",
  4771. height: math.unit(681818, "miles")
  4772. },
  4773. {
  4774. name: "Examacro",
  4775. height: math.unit(3800000, "lightyears")
  4776. },
  4777. ]
  4778. ))
  4779. characterMakers.push(() => makeCharacter(
  4780. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4781. {
  4782. front: {
  4783. height: math.unit(12, "feet"),
  4784. weight: math.unit(3000, "lb"),
  4785. name: "Front",
  4786. image: {
  4787. source: "./media/characters/mech/front.svg",
  4788. extra: 2900 / 2770,
  4789. bottom: 110 / 3010
  4790. }
  4791. },
  4792. back: {
  4793. height: math.unit(12, "feet"),
  4794. weight: math.unit(3000, "lb"),
  4795. name: "Back",
  4796. image: {
  4797. source: "./media/characters/mech/back.svg",
  4798. extra: 3011 / 2890,
  4799. bottom: 94 / 3105
  4800. }
  4801. },
  4802. maw: {
  4803. height: math.unit(3.07, "feet"),
  4804. name: "Maw",
  4805. image: {
  4806. source: "./media/characters/mech/maw.svg"
  4807. }
  4808. },
  4809. head: {
  4810. height: math.unit(3.07, "feet"),
  4811. name: "Head",
  4812. image: {
  4813. source: "./media/characters/mech/head.svg"
  4814. }
  4815. },
  4816. dick: {
  4817. height: math.unit(1.43, "feet"),
  4818. name: "Dick",
  4819. image: {
  4820. source: "./media/characters/mech/dick.svg"
  4821. }
  4822. },
  4823. },
  4824. [
  4825. {
  4826. name: "Normal",
  4827. height: math.unit(12, "feet")
  4828. },
  4829. {
  4830. name: "Macro",
  4831. height: math.unit(300, "feet"),
  4832. default: true
  4833. },
  4834. {
  4835. name: "Macro+",
  4836. height: math.unit(1500, "feet")
  4837. },
  4838. ]
  4839. ))
  4840. characterMakers.push(() => makeCharacter(
  4841. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4842. {
  4843. front: {
  4844. height: math.unit(1.3, "meter"),
  4845. weight: math.unit(30, "kg"),
  4846. name: "Front",
  4847. image: {
  4848. source: "./media/characters/gregory/front.svg",
  4849. }
  4850. }
  4851. },
  4852. [
  4853. {
  4854. name: "Normal",
  4855. height: math.unit(1.3, "meter"),
  4856. default: true
  4857. },
  4858. {
  4859. name: "Macro",
  4860. height: math.unit(20, "meter")
  4861. }
  4862. ]
  4863. ))
  4864. characterMakers.push(() => makeCharacter(
  4865. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4866. {
  4867. front: {
  4868. height: math.unit(2.8, "meter"),
  4869. weight: math.unit(200, "kg"),
  4870. name: "Front",
  4871. image: {
  4872. source: "./media/characters/elory/front.svg",
  4873. }
  4874. }
  4875. },
  4876. [
  4877. {
  4878. name: "Normal",
  4879. height: math.unit(2.8, "meter"),
  4880. default: true
  4881. },
  4882. {
  4883. name: "Macro",
  4884. height: math.unit(38, "meter")
  4885. }
  4886. ]
  4887. ))
  4888. characterMakers.push(() => makeCharacter(
  4889. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4890. {
  4891. front: {
  4892. height: math.unit(470, "feet"),
  4893. weight: math.unit(924, "tons"),
  4894. name: "Front",
  4895. image: {
  4896. source: "./media/characters/angelpatamon/front.svg",
  4897. }
  4898. }
  4899. },
  4900. [
  4901. {
  4902. name: "Normal",
  4903. height: math.unit(470, "feet"),
  4904. default: true
  4905. },
  4906. {
  4907. name: "Deity Size I",
  4908. height: math.unit(28651.2, "km")
  4909. },
  4910. {
  4911. name: "Deity Size II",
  4912. height: math.unit(171907.2, "km")
  4913. }
  4914. ]
  4915. ))
  4916. characterMakers.push(() => makeCharacter(
  4917. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4918. {
  4919. side: {
  4920. height: math.unit(7.2, "meter"),
  4921. weight: math.unit(8.2, "tons"),
  4922. name: "Side",
  4923. image: {
  4924. source: "./media/characters/cryae/side.svg",
  4925. extra: 3500 / 1500
  4926. }
  4927. }
  4928. },
  4929. [
  4930. {
  4931. name: "Normal",
  4932. height: math.unit(7.2, "meter"),
  4933. default: true
  4934. }
  4935. ]
  4936. ))
  4937. characterMakers.push(() => makeCharacter(
  4938. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4939. {
  4940. front: {
  4941. height: math.unit(6, "feet"),
  4942. weight: math.unit(175, "lb"),
  4943. name: "Front",
  4944. image: {
  4945. source: "./media/characters/xera/front.svg",
  4946. extra: 2377 / 1972,
  4947. bottom: 75.5 / 2452
  4948. }
  4949. },
  4950. side: {
  4951. height: math.unit(6, "feet"),
  4952. weight: math.unit(175, "lb"),
  4953. name: "Side",
  4954. image: {
  4955. source: "./media/characters/xera/side.svg",
  4956. extra: 2345 / 2019,
  4957. bottom: 39.7 / 2384
  4958. }
  4959. },
  4960. back: {
  4961. height: math.unit(6, "feet"),
  4962. weight: math.unit(175, "lb"),
  4963. name: "Back",
  4964. image: {
  4965. source: "./media/characters/xera/back.svg",
  4966. extra: 2095 / 1984,
  4967. bottom: 67 / 2166
  4968. }
  4969. },
  4970. },
  4971. [
  4972. {
  4973. name: "Small",
  4974. height: math.unit(10, "feet")
  4975. },
  4976. {
  4977. name: "Macro",
  4978. height: math.unit(500, "meters"),
  4979. default: true
  4980. },
  4981. {
  4982. name: "Macro+",
  4983. height: math.unit(10, "km")
  4984. },
  4985. {
  4986. name: "Gigamacro",
  4987. height: math.unit(25000, "km")
  4988. },
  4989. {
  4990. name: "Teramacro",
  4991. height: math.unit(3e6, "km")
  4992. }
  4993. ]
  4994. ))
  4995. characterMakers.push(() => makeCharacter(
  4996. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4997. {
  4998. front: {
  4999. height: math.unit(6, "feet"),
  5000. weight: math.unit(175, "lb"),
  5001. name: "Front",
  5002. image: {
  5003. source: "./media/characters/nebula/front.svg",
  5004. extra: 2566 / 2362,
  5005. bottom: 81 / 2644
  5006. }
  5007. }
  5008. },
  5009. [
  5010. {
  5011. name: "Small",
  5012. height: math.unit(4.5, "meters")
  5013. },
  5014. {
  5015. name: "Macro",
  5016. height: math.unit(1500, "meters"),
  5017. default: true
  5018. },
  5019. {
  5020. name: "Megamacro",
  5021. height: math.unit(150, "km")
  5022. },
  5023. {
  5024. name: "Gigamacro",
  5025. height: math.unit(27000, "km")
  5026. }
  5027. ]
  5028. ))
  5029. characterMakers.push(() => makeCharacter(
  5030. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5031. {
  5032. front: {
  5033. height: math.unit(6, "feet"),
  5034. weight: math.unit(225, "lb"),
  5035. name: "Front",
  5036. image: {
  5037. source: "./media/characters/abysgar/front.svg",
  5038. extra: 1739/1614,
  5039. bottom: 71/1810
  5040. }
  5041. },
  5042. frontNsfw: {
  5043. height: math.unit(6, "feet"),
  5044. weight: math.unit(225, "lb"),
  5045. name: "Front (NSFW)",
  5046. image: {
  5047. source: "./media/characters/abysgar/front-nsfw.svg",
  5048. extra: 1739/1614,
  5049. bottom: 71/1810
  5050. }
  5051. },
  5052. back: {
  5053. height: math.unit(4.6, "feet"),
  5054. weight: math.unit(225, "lb"),
  5055. name: "Back",
  5056. image: {
  5057. source: "./media/characters/abysgar/back.svg",
  5058. extra: 1384/1327,
  5059. bottom: 0/1384
  5060. }
  5061. },
  5062. head: {
  5063. height: math.unit(1.25, "feet"),
  5064. name: "Head",
  5065. image: {
  5066. source: "./media/characters/abysgar/head.svg",
  5067. extra: 669/569,
  5068. bottom: 0/669
  5069. }
  5070. },
  5071. },
  5072. [
  5073. {
  5074. name: "Small",
  5075. height: math.unit(4.5, "meters")
  5076. },
  5077. {
  5078. name: "Macro",
  5079. height: math.unit(1250, "meters"),
  5080. default: true
  5081. },
  5082. {
  5083. name: "Megamacro",
  5084. height: math.unit(125, "km")
  5085. },
  5086. {
  5087. name: "Gigamacro",
  5088. height: math.unit(26000, "km")
  5089. }
  5090. ]
  5091. ))
  5092. characterMakers.push(() => makeCharacter(
  5093. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5094. {
  5095. front: {
  5096. height: math.unit(6, "feet"),
  5097. weight: math.unit(180, "lb"),
  5098. name: "Front",
  5099. image: {
  5100. source: "./media/characters/yakuz/front.svg"
  5101. }
  5102. }
  5103. },
  5104. [
  5105. {
  5106. name: "Small",
  5107. height: math.unit(5, "meters")
  5108. },
  5109. {
  5110. name: "Macro",
  5111. height: math.unit(1500, "meters"),
  5112. default: true
  5113. },
  5114. {
  5115. name: "Megamacro",
  5116. height: math.unit(200, "km")
  5117. },
  5118. {
  5119. name: "Gigamacro",
  5120. height: math.unit(100000, "km")
  5121. }
  5122. ]
  5123. ))
  5124. characterMakers.push(() => makeCharacter(
  5125. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5126. {
  5127. front: {
  5128. height: math.unit(6, "feet"),
  5129. weight: math.unit(175, "lb"),
  5130. name: "Front",
  5131. image: {
  5132. source: "./media/characters/mirova/front.svg",
  5133. extra: 3334 / 3071,
  5134. bottom: 42 / 3375.6
  5135. }
  5136. }
  5137. },
  5138. [
  5139. {
  5140. name: "Small",
  5141. height: math.unit(5, "meters")
  5142. },
  5143. {
  5144. name: "Macro",
  5145. height: math.unit(900, "meters"),
  5146. default: true
  5147. },
  5148. {
  5149. name: "Megamacro",
  5150. height: math.unit(135, "km")
  5151. },
  5152. {
  5153. name: "Gigamacro",
  5154. height: math.unit(20000, "km")
  5155. }
  5156. ]
  5157. ))
  5158. characterMakers.push(() => makeCharacter(
  5159. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5160. {
  5161. side: {
  5162. height: math.unit(28.35, "feet"),
  5163. weight: math.unit(99.75, "tons"),
  5164. name: "Side",
  5165. image: {
  5166. source: "./media/characters/asana-mech/side.svg",
  5167. extra: 923 / 699,
  5168. bottom: 50 / 975
  5169. }
  5170. },
  5171. chaingun: {
  5172. height: math.unit(7, "feet"),
  5173. weight: math.unit(2400, "lb"),
  5174. name: "Chaingun",
  5175. image: {
  5176. source: "./media/characters/asana-mech/chaingun.svg"
  5177. }
  5178. },
  5179. laser: {
  5180. height: math.unit(7.12, "feet"),
  5181. weight: math.unit(2000, "lb"),
  5182. name: "Laser",
  5183. image: {
  5184. source: "./media/characters/asana-mech/laser.svg"
  5185. }
  5186. },
  5187. },
  5188. [
  5189. {
  5190. name: "Normal",
  5191. height: math.unit(28.35, "feet"),
  5192. default: true
  5193. },
  5194. {
  5195. name: "Macro",
  5196. height: math.unit(2500, "feet")
  5197. },
  5198. {
  5199. name: "Megamacro",
  5200. height: math.unit(25, "miles")
  5201. },
  5202. {
  5203. name: "Examacro",
  5204. height: math.unit(6e8, "lightyears")
  5205. },
  5206. ]
  5207. ))
  5208. characterMakers.push(() => makeCharacter(
  5209. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5210. {
  5211. front: {
  5212. height: math.unit(5, "meters"),
  5213. weight: math.unit(1000, "kg"),
  5214. name: "Front",
  5215. image: {
  5216. source: "./media/characters/asche/front.svg",
  5217. extra: 1258 / 1190,
  5218. bottom: 47 / 1305
  5219. }
  5220. },
  5221. frontUnderwear: {
  5222. height: math.unit(5, "meters"),
  5223. weight: math.unit(1000, "kg"),
  5224. name: "Front (Underwear)",
  5225. image: {
  5226. source: "./media/characters/asche/front-underwear.svg",
  5227. extra: 1258 / 1190,
  5228. bottom: 47 / 1305
  5229. }
  5230. },
  5231. frontDressed: {
  5232. height: math.unit(5, "meters"),
  5233. weight: math.unit(1000, "kg"),
  5234. name: "Front (Dressed)",
  5235. image: {
  5236. source: "./media/characters/asche/front-dressed.svg",
  5237. extra: 1258 / 1190,
  5238. bottom: 47 / 1305
  5239. }
  5240. },
  5241. frontArmor: {
  5242. height: math.unit(5, "meters"),
  5243. weight: math.unit(1000, "kg"),
  5244. name: "Front (Armored)",
  5245. image: {
  5246. source: "./media/characters/asche/front-armored.svg",
  5247. extra: 1374 / 1308,
  5248. bottom: 23 / 1397
  5249. }
  5250. },
  5251. mp724: {
  5252. height: math.unit(0.96, "meters"),
  5253. weight: math.unit(38, "kg"),
  5254. name: "H&K MP724",
  5255. image: {
  5256. source: "./media/characters/asche/h&k-mp724.svg"
  5257. }
  5258. },
  5259. side: {
  5260. height: math.unit(5, "meters"),
  5261. weight: math.unit(1000, "kg"),
  5262. name: "Side",
  5263. image: {
  5264. source: "./media/characters/asche/side.svg",
  5265. extra: 1717 / 1609,
  5266. bottom: 0.005
  5267. }
  5268. },
  5269. back: {
  5270. height: math.unit(5, "meters"),
  5271. weight: math.unit(1000, "kg"),
  5272. name: "Back",
  5273. image: {
  5274. source: "./media/characters/asche/back.svg",
  5275. extra: 1570 / 1501
  5276. }
  5277. },
  5278. },
  5279. [
  5280. {
  5281. name: "DEFCON 5",
  5282. height: math.unit(5, "meters")
  5283. },
  5284. {
  5285. name: "DEFCON 4",
  5286. height: math.unit(500, "meters"),
  5287. default: true
  5288. },
  5289. {
  5290. name: "DEFCON 3",
  5291. height: math.unit(5, "km")
  5292. },
  5293. {
  5294. name: "DEFCON 2",
  5295. height: math.unit(500, "km")
  5296. },
  5297. {
  5298. name: "DEFCON 1",
  5299. height: math.unit(500000, "km")
  5300. },
  5301. {
  5302. name: "DEFCON 0",
  5303. height: math.unit(3, "gigaparsecs")
  5304. },
  5305. ]
  5306. ))
  5307. characterMakers.push(() => makeCharacter(
  5308. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5309. {
  5310. front: {
  5311. height: math.unit(7, "feet"),
  5312. weight: math.unit(92.7, "kg"),
  5313. name: "Front",
  5314. image: {
  5315. source: "./media/characters/gale/front.svg",
  5316. extra: 977/919,
  5317. bottom: 105/1082
  5318. }
  5319. },
  5320. side: {
  5321. height: math.unit(6.7, "feet"),
  5322. weight: math.unit(92.7, "kg"),
  5323. name: "Side",
  5324. image: {
  5325. source: "./media/characters/gale/side.svg",
  5326. extra: 978/922,
  5327. bottom: 140/1118
  5328. }
  5329. },
  5330. back: {
  5331. height: math.unit(7, "feet"),
  5332. weight: math.unit(92.7, "kg"),
  5333. name: "Back",
  5334. image: {
  5335. source: "./media/characters/gale/back.svg",
  5336. extra: 966/920,
  5337. bottom: 61/1027
  5338. }
  5339. },
  5340. maw: {
  5341. height: math.unit(2.23, "feet"),
  5342. name: "Maw",
  5343. image: {
  5344. source: "./media/characters/gale/maw.svg"
  5345. }
  5346. },
  5347. foot: {
  5348. height: math.unit(2.1, "feet"),
  5349. name: "Foot",
  5350. image: {
  5351. source: "./media/characters/gale/foot.svg"
  5352. }
  5353. },
  5354. },
  5355. [
  5356. {
  5357. name: "Normal",
  5358. height: math.unit(7, "feet")
  5359. },
  5360. {
  5361. name: "Macro",
  5362. height: math.unit(150, "feet"),
  5363. default: true
  5364. },
  5365. {
  5366. name: "Macro+",
  5367. height: math.unit(300, "feet")
  5368. },
  5369. ]
  5370. ))
  5371. characterMakers.push(() => makeCharacter(
  5372. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5373. {
  5374. front: {
  5375. height: math.unit(5 + 10/12, "feet"),
  5376. weight: math.unit(67, "kg"),
  5377. name: "Front",
  5378. image: {
  5379. source: "./media/characters/draylen/front.svg",
  5380. extra: 832/777,
  5381. bottom: 85/917
  5382. }
  5383. }
  5384. },
  5385. [
  5386. {
  5387. name: "Normal",
  5388. height: math.unit(5 + 10/12, "feet")
  5389. },
  5390. {
  5391. name: "Macro",
  5392. height: math.unit(150, "feet"),
  5393. default: true
  5394. }
  5395. ]
  5396. ))
  5397. characterMakers.push(() => makeCharacter(
  5398. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5399. {
  5400. front: {
  5401. height: math.unit(7 + 9 / 12, "feet"),
  5402. weight: math.unit(379, "lbs"),
  5403. name: "Front",
  5404. image: {
  5405. source: "./media/characters/chez/front.svg"
  5406. }
  5407. },
  5408. side: {
  5409. height: math.unit(7 + 9 / 12, "feet"),
  5410. weight: math.unit(379, "lbs"),
  5411. name: "Side",
  5412. image: {
  5413. source: "./media/characters/chez/side.svg"
  5414. }
  5415. }
  5416. },
  5417. [
  5418. {
  5419. name: "Normal",
  5420. height: math.unit(7 + 9 / 12, "feet"),
  5421. default: true
  5422. },
  5423. {
  5424. name: "God King",
  5425. height: math.unit(9750000, "meters")
  5426. }
  5427. ]
  5428. ))
  5429. characterMakers.push(() => makeCharacter(
  5430. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5431. {
  5432. front: {
  5433. height: math.unit(6, "feet"),
  5434. weight: math.unit(275, "lbs"),
  5435. name: "Front",
  5436. image: {
  5437. source: "./media/characters/kaylum/front.svg",
  5438. bottom: 0.01,
  5439. extra: 1166 / 1031
  5440. }
  5441. },
  5442. frontWingless: {
  5443. height: math.unit(6, "feet"),
  5444. weight: math.unit(275, "lbs"),
  5445. name: "Front (Wingless)",
  5446. image: {
  5447. source: "./media/characters/kaylum/front-wingless.svg",
  5448. bottom: 0.01,
  5449. extra: 1117 / 1031
  5450. }
  5451. }
  5452. },
  5453. [
  5454. {
  5455. name: "Normal",
  5456. height: math.unit(3.05, "meters")
  5457. },
  5458. {
  5459. name: "Master",
  5460. height: math.unit(5.5, "meters")
  5461. },
  5462. {
  5463. name: "Rampage",
  5464. height: math.unit(19, "meters")
  5465. },
  5466. {
  5467. name: "Macro Lite",
  5468. height: math.unit(37, "meters")
  5469. },
  5470. {
  5471. name: "Hyper Predator",
  5472. height: math.unit(61, "meters")
  5473. },
  5474. {
  5475. name: "Macro",
  5476. height: math.unit(138, "meters"),
  5477. default: true
  5478. }
  5479. ]
  5480. ))
  5481. characterMakers.push(() => makeCharacter(
  5482. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5483. {
  5484. front: {
  5485. height: math.unit(5 + 5 / 12, "feet"),
  5486. weight: math.unit(120, "lbs"),
  5487. name: "Front",
  5488. image: {
  5489. source: "./media/characters/geta/front.svg",
  5490. extra: 1003/933,
  5491. bottom: 21/1024
  5492. }
  5493. },
  5494. paw: {
  5495. height: math.unit(0.35, "feet"),
  5496. name: "Paw",
  5497. image: {
  5498. source: "./media/characters/geta/paw.svg"
  5499. }
  5500. },
  5501. },
  5502. [
  5503. {
  5504. name: "Micro",
  5505. height: math.unit(3, "inches"),
  5506. default: true
  5507. },
  5508. {
  5509. name: "Normal",
  5510. height: math.unit(5 + 5 / 12, "feet")
  5511. }
  5512. ]
  5513. ))
  5514. characterMakers.push(() => makeCharacter(
  5515. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5516. {
  5517. front: {
  5518. height: math.unit(6, "feet"),
  5519. weight: math.unit(300, "lbs"),
  5520. name: "Front",
  5521. image: {
  5522. source: "./media/characters/tyrnn/front.svg"
  5523. }
  5524. }
  5525. },
  5526. [
  5527. {
  5528. name: "Main Height",
  5529. height: math.unit(355, "feet"),
  5530. default: true
  5531. },
  5532. {
  5533. name: "Fave. Height",
  5534. height: math.unit(2400, "feet")
  5535. }
  5536. ]
  5537. ))
  5538. characterMakers.push(() => makeCharacter(
  5539. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5540. {
  5541. front: {
  5542. height: math.unit(6, "feet"),
  5543. weight: math.unit(300, "lbs"),
  5544. name: "Front",
  5545. image: {
  5546. source: "./media/characters/appledectomy/front.svg"
  5547. }
  5548. }
  5549. },
  5550. [
  5551. {
  5552. name: "Macro",
  5553. height: math.unit(2500, "feet")
  5554. },
  5555. {
  5556. name: "Megamacro",
  5557. height: math.unit(50, "miles"),
  5558. default: true
  5559. },
  5560. {
  5561. name: "Gigamacro",
  5562. height: math.unit(5000, "miles")
  5563. },
  5564. {
  5565. name: "Teramacro",
  5566. height: math.unit(250000, "miles")
  5567. },
  5568. ]
  5569. ))
  5570. characterMakers.push(() => makeCharacter(
  5571. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5572. {
  5573. front: {
  5574. height: math.unit(6, "feet"),
  5575. weight: math.unit(200, "lbs"),
  5576. name: "Front",
  5577. image: {
  5578. source: "./media/characters/vulpes/front.svg",
  5579. extra: 573 / 543,
  5580. bottom: 0.033
  5581. }
  5582. },
  5583. side: {
  5584. height: math.unit(6, "feet"),
  5585. weight: math.unit(200, "lbs"),
  5586. name: "Side",
  5587. image: {
  5588. source: "./media/characters/vulpes/side.svg",
  5589. extra: 577 / 549,
  5590. bottom: 11 / 588
  5591. }
  5592. },
  5593. back: {
  5594. height: math.unit(6, "feet"),
  5595. weight: math.unit(200, "lbs"),
  5596. name: "Back",
  5597. image: {
  5598. source: "./media/characters/vulpes/back.svg",
  5599. extra: 573 / 549,
  5600. bottom: 20 / 593
  5601. }
  5602. },
  5603. feet: {
  5604. height: math.unit(1.276, "feet"),
  5605. name: "Feet",
  5606. image: {
  5607. source: "./media/characters/vulpes/feet.svg"
  5608. }
  5609. },
  5610. maw: {
  5611. height: math.unit(1.18, "feet"),
  5612. name: "Maw",
  5613. image: {
  5614. source: "./media/characters/vulpes/maw.svg"
  5615. }
  5616. },
  5617. },
  5618. [
  5619. {
  5620. name: "Micro",
  5621. height: math.unit(2, "inches")
  5622. },
  5623. {
  5624. name: "Normal",
  5625. height: math.unit(6.3, "feet")
  5626. },
  5627. {
  5628. name: "Macro",
  5629. height: math.unit(850, "feet")
  5630. },
  5631. {
  5632. name: "Megamacro",
  5633. height: math.unit(7500, "feet"),
  5634. default: true
  5635. },
  5636. {
  5637. name: "Gigamacro",
  5638. height: math.unit(570000, "miles")
  5639. }
  5640. ]
  5641. ))
  5642. characterMakers.push(() => makeCharacter(
  5643. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5644. {
  5645. front: {
  5646. height: math.unit(6, "feet"),
  5647. weight: math.unit(210, "lbs"),
  5648. name: "Front",
  5649. image: {
  5650. source: "./media/characters/rain-fallen/front.svg"
  5651. }
  5652. },
  5653. side: {
  5654. height: math.unit(6, "feet"),
  5655. weight: math.unit(210, "lbs"),
  5656. name: "Side",
  5657. image: {
  5658. source: "./media/characters/rain-fallen/side.svg"
  5659. }
  5660. },
  5661. back: {
  5662. height: math.unit(6, "feet"),
  5663. weight: math.unit(210, "lbs"),
  5664. name: "Back",
  5665. image: {
  5666. source: "./media/characters/rain-fallen/back.svg"
  5667. }
  5668. },
  5669. feral: {
  5670. height: math.unit(9, "feet"),
  5671. weight: math.unit(700, "lbs"),
  5672. name: "Feral",
  5673. image: {
  5674. source: "./media/characters/rain-fallen/feral.svg"
  5675. }
  5676. },
  5677. },
  5678. [
  5679. {
  5680. name: "Meddling with Mortals",
  5681. height: math.unit(8 + 8/12, "feet")
  5682. },
  5683. {
  5684. name: "Normal",
  5685. height: math.unit(5, "meter")
  5686. },
  5687. {
  5688. name: "Macro",
  5689. height: math.unit(150, "meter"),
  5690. default: true
  5691. },
  5692. {
  5693. name: "Megamacro",
  5694. height: math.unit(278e6, "meter")
  5695. },
  5696. {
  5697. name: "Gigamacro",
  5698. height: math.unit(2e9, "meter")
  5699. },
  5700. {
  5701. name: "Teramacro",
  5702. height: math.unit(8e12, "meter")
  5703. },
  5704. {
  5705. name: "Devourer",
  5706. height: math.unit(14, "zettameters")
  5707. },
  5708. {
  5709. name: "Scarlet King",
  5710. height: math.unit(18, "yottameters")
  5711. },
  5712. {
  5713. name: "Void",
  5714. height: math.unit(1e88, "yottameters")
  5715. }
  5716. ]
  5717. ))
  5718. characterMakers.push(() => makeCharacter(
  5719. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5720. {
  5721. standing: {
  5722. height: math.unit(6, "feet"),
  5723. weight: math.unit(180, "lbs"),
  5724. name: "Standing",
  5725. image: {
  5726. source: "./media/characters/zaakira/standing.svg",
  5727. extra: 1599/1504,
  5728. bottom: 39/1638
  5729. }
  5730. },
  5731. laying: {
  5732. height: math.unit(3.3, "feet"),
  5733. weight: math.unit(180, "lbs"),
  5734. name: "Laying",
  5735. image: {
  5736. source: "./media/characters/zaakira/laying.svg"
  5737. }
  5738. },
  5739. },
  5740. [
  5741. {
  5742. name: "Normal",
  5743. height: math.unit(12, "feet")
  5744. },
  5745. {
  5746. name: "Macro",
  5747. height: math.unit(279, "feet"),
  5748. default: true
  5749. }
  5750. ]
  5751. ))
  5752. characterMakers.push(() => makeCharacter(
  5753. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5754. {
  5755. femSfw: {
  5756. height: math.unit(8, "feet"),
  5757. weight: math.unit(350, "lb"),
  5758. name: "Fem",
  5759. image: {
  5760. source: "./media/characters/sigvald/fem-sfw.svg",
  5761. extra: 182 / 164,
  5762. bottom: 8.7 / 190.5
  5763. }
  5764. },
  5765. femNsfw: {
  5766. height: math.unit(8, "feet"),
  5767. weight: math.unit(350, "lb"),
  5768. name: "Fem (NSFW)",
  5769. image: {
  5770. source: "./media/characters/sigvald/fem-nsfw.svg",
  5771. extra: 182 / 164,
  5772. bottom: 8.7 / 190.5
  5773. }
  5774. },
  5775. maleNsfw: {
  5776. height: math.unit(8, "feet"),
  5777. weight: math.unit(350, "lb"),
  5778. name: "Male (NSFW)",
  5779. image: {
  5780. source: "./media/characters/sigvald/male-nsfw.svg",
  5781. extra: 182 / 164,
  5782. bottom: 8.7 / 190.5
  5783. }
  5784. },
  5785. hermNsfw: {
  5786. height: math.unit(8, "feet"),
  5787. weight: math.unit(350, "lb"),
  5788. name: "Herm (NSFW)",
  5789. image: {
  5790. source: "./media/characters/sigvald/herm-nsfw.svg",
  5791. extra: 182 / 164,
  5792. bottom: 8.7 / 190.5
  5793. }
  5794. },
  5795. dick: {
  5796. height: math.unit(2.36, "feet"),
  5797. name: "Dick",
  5798. image: {
  5799. source: "./media/characters/sigvald/dick.svg"
  5800. }
  5801. },
  5802. eye: {
  5803. height: math.unit(0.31, "feet"),
  5804. name: "Eye",
  5805. image: {
  5806. source: "./media/characters/sigvald/eye.svg"
  5807. }
  5808. },
  5809. mouth: {
  5810. height: math.unit(0.92, "feet"),
  5811. name: "Mouth",
  5812. image: {
  5813. source: "./media/characters/sigvald/mouth.svg"
  5814. }
  5815. },
  5816. paws: {
  5817. height: math.unit(2.2, "feet"),
  5818. name: "Paws",
  5819. image: {
  5820. source: "./media/characters/sigvald/paws.svg"
  5821. }
  5822. }
  5823. },
  5824. [
  5825. {
  5826. name: "Normal",
  5827. height: math.unit(8, "feet")
  5828. },
  5829. {
  5830. name: "Large",
  5831. height: math.unit(12, "feet")
  5832. },
  5833. {
  5834. name: "Larger",
  5835. height: math.unit(20, "feet")
  5836. },
  5837. {
  5838. name: "Macro",
  5839. height: math.unit(150, "feet")
  5840. },
  5841. {
  5842. name: "Macro+",
  5843. height: math.unit(200, "feet"),
  5844. default: true
  5845. },
  5846. ]
  5847. ))
  5848. characterMakers.push(() => makeCharacter(
  5849. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5850. {
  5851. side: {
  5852. height: math.unit(12, "feet"),
  5853. weight: math.unit(2000, "kg"),
  5854. name: "Side",
  5855. image: {
  5856. source: "./media/characters/scott/side.svg",
  5857. extra: 754 / 724,
  5858. bottom: 0.069
  5859. }
  5860. },
  5861. upright: {
  5862. height: math.unit(12, "feet"),
  5863. weight: math.unit(2000, "kg"),
  5864. name: "Upright",
  5865. image: {
  5866. source: "./media/characters/scott/upright.svg",
  5867. extra: 3881 / 3722,
  5868. bottom: 0.05
  5869. }
  5870. },
  5871. },
  5872. [
  5873. {
  5874. name: "Normal",
  5875. height: math.unit(12, "feet"),
  5876. default: true
  5877. },
  5878. ]
  5879. ))
  5880. characterMakers.push(() => makeCharacter(
  5881. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5882. {
  5883. side: {
  5884. height: math.unit(8, "meters"),
  5885. weight: math.unit(84755, "lbs"),
  5886. name: "Side",
  5887. image: {
  5888. source: "./media/characters/tobias/side.svg",
  5889. extra: 1474 / 1096,
  5890. bottom: 38.9 / 1513.1235
  5891. }
  5892. },
  5893. },
  5894. [
  5895. {
  5896. name: "Normal",
  5897. height: math.unit(8, "meters"),
  5898. default: true
  5899. },
  5900. ]
  5901. ))
  5902. characterMakers.push(() => makeCharacter(
  5903. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5904. {
  5905. front: {
  5906. height: math.unit(5.5, "feet"),
  5907. weight: math.unit(400, "lbs"),
  5908. name: "Front",
  5909. image: {
  5910. source: "./media/characters/kieran/front.svg",
  5911. extra: 2694 / 2364,
  5912. bottom: 217 / 2908
  5913. }
  5914. },
  5915. side: {
  5916. height: math.unit(5.5, "feet"),
  5917. weight: math.unit(400, "lbs"),
  5918. name: "Side",
  5919. image: {
  5920. source: "./media/characters/kieran/side.svg",
  5921. extra: 875 / 777,
  5922. bottom: 84.6 / 959
  5923. }
  5924. },
  5925. },
  5926. [
  5927. {
  5928. name: "Normal",
  5929. height: math.unit(5.5, "feet"),
  5930. default: true
  5931. },
  5932. ]
  5933. ))
  5934. characterMakers.push(() => makeCharacter(
  5935. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5936. {
  5937. side: {
  5938. height: math.unit(2, "meters"),
  5939. weight: math.unit(70, "kg"),
  5940. name: "Side",
  5941. image: {
  5942. source: "./media/characters/sanya/side.svg",
  5943. bottom: 0.02,
  5944. extra: 1.02
  5945. }
  5946. },
  5947. },
  5948. [
  5949. {
  5950. name: "Small",
  5951. height: math.unit(2, "meters")
  5952. },
  5953. {
  5954. name: "Normal",
  5955. height: math.unit(3, "meters")
  5956. },
  5957. {
  5958. name: "Macro",
  5959. height: math.unit(16, "meters"),
  5960. default: true
  5961. },
  5962. ]
  5963. ))
  5964. characterMakers.push(() => makeCharacter(
  5965. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5966. {
  5967. front: {
  5968. height: math.unit(2, "meters"),
  5969. weight: math.unit(120, "kg"),
  5970. name: "Front",
  5971. image: {
  5972. source: "./media/characters/miranda/front.svg",
  5973. extra: 195 / 185,
  5974. bottom: 10.9 / 206.5
  5975. }
  5976. },
  5977. back: {
  5978. height: math.unit(2, "meters"),
  5979. weight: math.unit(120, "kg"),
  5980. name: "Back",
  5981. image: {
  5982. source: "./media/characters/miranda/back.svg",
  5983. extra: 201 / 193,
  5984. bottom: 2.3 / 203.7
  5985. }
  5986. },
  5987. },
  5988. [
  5989. {
  5990. name: "Normal",
  5991. height: math.unit(10, "feet"),
  5992. default: true
  5993. }
  5994. ]
  5995. ))
  5996. characterMakers.push(() => makeCharacter(
  5997. { name: "James", species: ["deer"], tags: ["anthro"] },
  5998. {
  5999. side: {
  6000. height: math.unit(2, "meters"),
  6001. weight: math.unit(100, "kg"),
  6002. name: "Front",
  6003. image: {
  6004. source: "./media/characters/james/front.svg",
  6005. extra: 10 / 8.5
  6006. }
  6007. },
  6008. },
  6009. [
  6010. {
  6011. name: "Normal",
  6012. height: math.unit(8.5, "feet"),
  6013. default: true
  6014. }
  6015. ]
  6016. ))
  6017. characterMakers.push(() => makeCharacter(
  6018. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6019. {
  6020. side: {
  6021. height: math.unit(9.5, "feet"),
  6022. weight: math.unit(2500, "lbs"),
  6023. name: "Side",
  6024. image: {
  6025. source: "./media/characters/heather/side.svg"
  6026. }
  6027. },
  6028. },
  6029. [
  6030. {
  6031. name: "Normal",
  6032. height: math.unit(9.5, "feet"),
  6033. default: true
  6034. }
  6035. ]
  6036. ))
  6037. characterMakers.push(() => makeCharacter(
  6038. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6039. {
  6040. side: {
  6041. height: math.unit(6.5, "feet"),
  6042. weight: math.unit(400, "lbs"),
  6043. name: "Side",
  6044. image: {
  6045. source: "./media/characters/lukas/side.svg",
  6046. extra: 7.25 / 6.5
  6047. }
  6048. },
  6049. },
  6050. [
  6051. {
  6052. name: "Normal",
  6053. height: math.unit(6.5, "feet"),
  6054. default: true
  6055. }
  6056. ]
  6057. ))
  6058. characterMakers.push(() => makeCharacter(
  6059. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6060. {
  6061. side: {
  6062. height: math.unit(5, "feet"),
  6063. weight: math.unit(3000, "lbs"),
  6064. name: "Side",
  6065. image: {
  6066. source: "./media/characters/louise/side.svg"
  6067. }
  6068. },
  6069. },
  6070. [
  6071. {
  6072. name: "Normal",
  6073. height: math.unit(5, "feet"),
  6074. default: true
  6075. }
  6076. ]
  6077. ))
  6078. characterMakers.push(() => makeCharacter(
  6079. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6080. {
  6081. side: {
  6082. height: math.unit(6, "feet"),
  6083. weight: math.unit(150, "lbs"),
  6084. name: "Side",
  6085. image: {
  6086. source: "./media/characters/ramona/side.svg",
  6087. extra: 871/854,
  6088. bottom: 41/912
  6089. }
  6090. },
  6091. },
  6092. [
  6093. {
  6094. name: "Normal",
  6095. height: math.unit(6 + 4/12, "feet")
  6096. },
  6097. {
  6098. name: "Minimacro",
  6099. height: math.unit(5.3, "meters"),
  6100. default: true
  6101. },
  6102. {
  6103. name: "Macro",
  6104. height: math.unit(20, "stories")
  6105. },
  6106. {
  6107. name: "Macro+",
  6108. height: math.unit(50, "stories")
  6109. },
  6110. ]
  6111. ))
  6112. characterMakers.push(() => makeCharacter(
  6113. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6114. {
  6115. standing: {
  6116. height: math.unit(5.75, "feet"),
  6117. weight: math.unit(160, "lbs"),
  6118. name: "Standing",
  6119. image: {
  6120. source: "./media/characters/deerpuff/standing.svg",
  6121. extra: 682 / 624
  6122. }
  6123. },
  6124. sitting: {
  6125. height: math.unit(5.75 / 1.79, "feet"),
  6126. weight: math.unit(160, "lbs"),
  6127. name: "Sitting",
  6128. image: {
  6129. source: "./media/characters/deerpuff/sitting.svg",
  6130. bottom: 44 / 400,
  6131. extra: 1
  6132. }
  6133. },
  6134. taurLaying: {
  6135. height: math.unit(6, "feet"),
  6136. weight: math.unit(400, "lbs"),
  6137. name: "Taur (Laying)",
  6138. image: {
  6139. source: "./media/characters/deerpuff/taur-laying.svg"
  6140. }
  6141. },
  6142. },
  6143. [
  6144. {
  6145. name: "Puffball",
  6146. height: math.unit(6, "inches")
  6147. },
  6148. {
  6149. name: "Normalpuff",
  6150. height: math.unit(5.75, "feet")
  6151. },
  6152. {
  6153. name: "Macropuff",
  6154. height: math.unit(1500, "feet"),
  6155. default: true
  6156. },
  6157. {
  6158. name: "Megapuff",
  6159. height: math.unit(500, "miles")
  6160. },
  6161. {
  6162. name: "Gigapuff",
  6163. height: math.unit(250000, "miles")
  6164. },
  6165. {
  6166. name: "Omegapuff",
  6167. height: math.unit(1000, "lightyears")
  6168. },
  6169. ]
  6170. ))
  6171. characterMakers.push(() => makeCharacter(
  6172. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6173. {
  6174. stomping: {
  6175. height: math.unit(6, "feet"),
  6176. weight: math.unit(170, "lbs"),
  6177. name: "Stomping",
  6178. image: {
  6179. source: "./media/characters/vivian/stomping.svg"
  6180. }
  6181. },
  6182. sitting: {
  6183. height: math.unit(6 / 1.75, "feet"),
  6184. weight: math.unit(170, "lbs"),
  6185. name: "Sitting",
  6186. image: {
  6187. source: "./media/characters/vivian/sitting.svg",
  6188. bottom: 1 / 6.4,
  6189. extra: 1,
  6190. }
  6191. },
  6192. },
  6193. [
  6194. {
  6195. name: "Normal",
  6196. height: math.unit(7, "feet"),
  6197. default: true
  6198. },
  6199. {
  6200. name: "Macro",
  6201. height: math.unit(10, "stories")
  6202. },
  6203. {
  6204. name: "Macro+",
  6205. height: math.unit(30, "stories")
  6206. },
  6207. {
  6208. name: "Megamacro",
  6209. height: math.unit(10, "miles")
  6210. },
  6211. {
  6212. name: "Megamacro+",
  6213. height: math.unit(2750000, "meters")
  6214. },
  6215. ]
  6216. ))
  6217. characterMakers.push(() => makeCharacter(
  6218. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6219. {
  6220. front: {
  6221. height: math.unit(6, "feet"),
  6222. weight: math.unit(160, "lbs"),
  6223. name: "Front",
  6224. image: {
  6225. source: "./media/characters/prince/front.svg",
  6226. extra: 1938/1682,
  6227. bottom: 45/1983
  6228. }
  6229. },
  6230. back: {
  6231. height: math.unit(6, "feet"),
  6232. weight: math.unit(160, "lbs"),
  6233. name: "Back",
  6234. image: {
  6235. source: "./media/characters/prince/back.svg",
  6236. extra: 1955/1726,
  6237. bottom: 6/1961
  6238. }
  6239. },
  6240. },
  6241. [
  6242. {
  6243. name: "Normal",
  6244. height: math.unit(7.75, "feet"),
  6245. default: true
  6246. },
  6247. {
  6248. name: "Not cute",
  6249. height: math.unit(17, "feet")
  6250. },
  6251. {
  6252. name: "I said NOT",
  6253. height: math.unit(91, "feet")
  6254. },
  6255. {
  6256. name: "Please stop",
  6257. height: math.unit(560, "feet")
  6258. },
  6259. {
  6260. name: "What have you done",
  6261. height: math.unit(2200, "feet")
  6262. },
  6263. {
  6264. name: "Deer God",
  6265. height: math.unit(3.6, "miles")
  6266. },
  6267. ]
  6268. ))
  6269. characterMakers.push(() => makeCharacter(
  6270. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6271. {
  6272. standing: {
  6273. height: math.unit(6, "feet"),
  6274. weight: math.unit(300, "lbs"),
  6275. name: "Standing",
  6276. image: {
  6277. source: "./media/characters/psymon/standing.svg",
  6278. extra: 1888 / 1810,
  6279. bottom: 0.05
  6280. }
  6281. },
  6282. slithering: {
  6283. height: math.unit(6, "feet"),
  6284. weight: math.unit(300, "lbs"),
  6285. name: "Slithering",
  6286. image: {
  6287. source: "./media/characters/psymon/slithering.svg",
  6288. extra: 1330 / 1224
  6289. }
  6290. },
  6291. slitheringAlt: {
  6292. height: math.unit(6, "feet"),
  6293. weight: math.unit(300, "lbs"),
  6294. name: "Slithering (Alt)",
  6295. image: {
  6296. source: "./media/characters/psymon/slithering-alt.svg",
  6297. extra: 1330 / 1224
  6298. }
  6299. },
  6300. },
  6301. [
  6302. {
  6303. name: "Normal",
  6304. height: math.unit(11.25, "feet"),
  6305. default: true
  6306. },
  6307. {
  6308. name: "Large",
  6309. height: math.unit(27, "feet")
  6310. },
  6311. {
  6312. name: "Giant",
  6313. height: math.unit(87, "feet")
  6314. },
  6315. {
  6316. name: "Macro",
  6317. height: math.unit(365, "feet")
  6318. },
  6319. {
  6320. name: "Megamacro",
  6321. height: math.unit(3, "miles")
  6322. },
  6323. {
  6324. name: "World Serpent",
  6325. height: math.unit(8000, "miles")
  6326. },
  6327. ]
  6328. ))
  6329. characterMakers.push(() => makeCharacter(
  6330. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6331. {
  6332. front: {
  6333. height: math.unit(6, "feet"),
  6334. weight: math.unit(180, "lbs"),
  6335. name: "Front",
  6336. image: {
  6337. source: "./media/characters/daimos/front.svg",
  6338. extra: 4160 / 3897,
  6339. bottom: 0.021
  6340. }
  6341. }
  6342. },
  6343. [
  6344. {
  6345. name: "Normal",
  6346. height: math.unit(8, "feet"),
  6347. default: true
  6348. },
  6349. {
  6350. name: "Big Dog",
  6351. height: math.unit(22, "feet")
  6352. },
  6353. {
  6354. name: "Macro",
  6355. height: math.unit(127, "feet")
  6356. },
  6357. {
  6358. name: "Megamacro",
  6359. height: math.unit(3600, "feet")
  6360. },
  6361. ]
  6362. ))
  6363. characterMakers.push(() => makeCharacter(
  6364. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6365. {
  6366. side: {
  6367. height: math.unit(6, "feet"),
  6368. weight: math.unit(180, "lbs"),
  6369. name: "Side",
  6370. image: {
  6371. source: "./media/characters/blake/side.svg",
  6372. extra: 1212 / 1120,
  6373. bottom: 0.05
  6374. }
  6375. },
  6376. crouched: {
  6377. height: math.unit(6 * 0.57, "feet"),
  6378. weight: math.unit(180, "lbs"),
  6379. name: "Crouched",
  6380. image: {
  6381. source: "./media/characters/blake/crouched.svg",
  6382. extra: 840 / 587,
  6383. bottom: 0.04
  6384. }
  6385. },
  6386. bent: {
  6387. height: math.unit(6 * 0.75, "feet"),
  6388. weight: math.unit(180, "lbs"),
  6389. name: "Bent",
  6390. image: {
  6391. source: "./media/characters/blake/bent.svg",
  6392. extra: 592 / 544,
  6393. bottom: 0.035
  6394. }
  6395. },
  6396. },
  6397. [
  6398. {
  6399. name: "Normal",
  6400. height: math.unit(8 + 1 / 6, "feet"),
  6401. default: true
  6402. },
  6403. {
  6404. name: "Big Backside",
  6405. height: math.unit(37, "feet")
  6406. },
  6407. {
  6408. name: "Subway Shredder",
  6409. height: math.unit(72, "feet")
  6410. },
  6411. {
  6412. name: "City Carver",
  6413. height: math.unit(1675, "feet")
  6414. },
  6415. {
  6416. name: "Tectonic Tweaker",
  6417. height: math.unit(2300, "miles")
  6418. },
  6419. ]
  6420. ))
  6421. characterMakers.push(() => makeCharacter(
  6422. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6423. {
  6424. front: {
  6425. height: math.unit(6, "feet"),
  6426. weight: math.unit(180, "lbs"),
  6427. name: "Front",
  6428. image: {
  6429. source: "./media/characters/guisetto/front.svg",
  6430. extra: 856 / 817,
  6431. bottom: 0.06
  6432. }
  6433. },
  6434. airborne: {
  6435. height: math.unit(6, "feet"),
  6436. weight: math.unit(180, "lbs"),
  6437. name: "Airborne",
  6438. image: {
  6439. source: "./media/characters/guisetto/airborne.svg",
  6440. extra: 584 / 525
  6441. }
  6442. },
  6443. },
  6444. [
  6445. {
  6446. name: "Normal",
  6447. height: math.unit(10 + 11 / 12, "feet"),
  6448. default: true
  6449. },
  6450. {
  6451. name: "Large",
  6452. height: math.unit(35, "feet")
  6453. },
  6454. {
  6455. name: "Macro",
  6456. height: math.unit(475, "feet")
  6457. },
  6458. ]
  6459. ))
  6460. characterMakers.push(() => makeCharacter(
  6461. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6462. {
  6463. front: {
  6464. height: math.unit(6, "feet"),
  6465. weight: math.unit(180, "lbs"),
  6466. name: "Front",
  6467. image: {
  6468. source: "./media/characters/luxor/front.svg",
  6469. extra: 2940 / 2152
  6470. }
  6471. },
  6472. back: {
  6473. height: math.unit(6, "feet"),
  6474. weight: math.unit(180, "lbs"),
  6475. name: "Back",
  6476. image: {
  6477. source: "./media/characters/luxor/back.svg",
  6478. extra: 1083 / 960
  6479. }
  6480. },
  6481. },
  6482. [
  6483. {
  6484. name: "Normal",
  6485. height: math.unit(5 + 5 / 6, "feet"),
  6486. default: true
  6487. },
  6488. {
  6489. name: "Lamp",
  6490. height: math.unit(50, "feet")
  6491. },
  6492. {
  6493. name: "Lämp",
  6494. height: math.unit(300, "feet")
  6495. },
  6496. {
  6497. name: "The sun is a lamp",
  6498. height: math.unit(250000, "miles")
  6499. },
  6500. ]
  6501. ))
  6502. characterMakers.push(() => makeCharacter(
  6503. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6504. {
  6505. front: {
  6506. height: math.unit(6, "feet"),
  6507. weight: math.unit(50, "lbs"),
  6508. name: "Front",
  6509. image: {
  6510. source: "./media/characters/huoyan/front.svg"
  6511. }
  6512. },
  6513. side: {
  6514. height: math.unit(6, "feet"),
  6515. weight: math.unit(180, "lbs"),
  6516. name: "Side",
  6517. image: {
  6518. source: "./media/characters/huoyan/side.svg"
  6519. }
  6520. },
  6521. },
  6522. [
  6523. {
  6524. name: "Chef",
  6525. height: math.unit(9, "feet")
  6526. },
  6527. {
  6528. name: "Normal",
  6529. height: math.unit(65, "feet"),
  6530. default: true
  6531. },
  6532. {
  6533. name: "Macro",
  6534. height: math.unit(780, "feet")
  6535. },
  6536. {
  6537. name: "Flaming Mountain",
  6538. height: math.unit(4.8, "miles")
  6539. },
  6540. {
  6541. name: "Celestial",
  6542. height: math.unit(765000, "miles")
  6543. },
  6544. ]
  6545. ))
  6546. characterMakers.push(() => makeCharacter(
  6547. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6548. {
  6549. front: {
  6550. height: math.unit(5 + 3 / 4, "feet"),
  6551. weight: math.unit(120, "lbs"),
  6552. name: "Front",
  6553. image: {
  6554. source: "./media/characters/tails/front.svg"
  6555. }
  6556. }
  6557. },
  6558. [
  6559. {
  6560. name: "Normal",
  6561. height: math.unit(5 + 3 / 4, "feet"),
  6562. default: true
  6563. }
  6564. ]
  6565. ))
  6566. characterMakers.push(() => makeCharacter(
  6567. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6568. {
  6569. front: {
  6570. height: math.unit(4, "feet"),
  6571. weight: math.unit(50, "lbs"),
  6572. name: "Front",
  6573. image: {
  6574. source: "./media/characters/rainy/front.svg"
  6575. }
  6576. }
  6577. },
  6578. [
  6579. {
  6580. name: "Macro",
  6581. height: math.unit(800, "feet"),
  6582. default: true
  6583. }
  6584. ]
  6585. ))
  6586. characterMakers.push(() => makeCharacter(
  6587. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6588. {
  6589. front: {
  6590. height: math.unit(6, "feet"),
  6591. weight: math.unit(150, "lbs"),
  6592. name: "Front",
  6593. image: {
  6594. source: "./media/characters/rainier/front.svg"
  6595. }
  6596. }
  6597. },
  6598. [
  6599. {
  6600. name: "Micro",
  6601. height: math.unit(2, "mm"),
  6602. default: true
  6603. }
  6604. ]
  6605. ))
  6606. characterMakers.push(() => makeCharacter(
  6607. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6608. {
  6609. front: {
  6610. height: math.unit(8 + 4/12, "feet"),
  6611. weight: math.unit(450, "kilograms"),
  6612. volume: math.unit(5, "cups"),
  6613. name: "Front",
  6614. image: {
  6615. source: "./media/characters/andy-renard/front.svg",
  6616. extra: 1839/1726,
  6617. bottom: 134/1973
  6618. }
  6619. },
  6620. back: {
  6621. height: math.unit(8 + 4/12, "feet"),
  6622. weight: math.unit(450, "kilograms"),
  6623. volume: math.unit(5, "cups"),
  6624. name: "Back",
  6625. image: {
  6626. source: "./media/characters/andy-renard/back.svg",
  6627. extra: 1838/1710,
  6628. bottom: 105/1943
  6629. }
  6630. },
  6631. },
  6632. [
  6633. {
  6634. name: "Tall",
  6635. height: math.unit(8 + 4/12, "feet")
  6636. },
  6637. {
  6638. name: "Mini Macro",
  6639. height: math.unit(15, "feet"),
  6640. default: true
  6641. },
  6642. {
  6643. name: "Macro",
  6644. height: math.unit(100, "feet")
  6645. },
  6646. {
  6647. name: "Mega Macro",
  6648. height: math.unit(1000, "feet")
  6649. },
  6650. {
  6651. name: "Giga Macro",
  6652. height: math.unit(10, "miles")
  6653. },
  6654. {
  6655. name: "God Macro",
  6656. height: math.unit(1, "multiverse")
  6657. },
  6658. ]
  6659. ))
  6660. characterMakers.push(() => makeCharacter(
  6661. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6662. {
  6663. front: {
  6664. height: math.unit(6, "feet"),
  6665. weight: math.unit(210, "lbs"),
  6666. name: "Front",
  6667. image: {
  6668. source: "./media/characters/cimmaron/front-sfw.svg",
  6669. extra: 701 / 676,
  6670. bottom: 0.046
  6671. }
  6672. },
  6673. back: {
  6674. height: math.unit(6, "feet"),
  6675. weight: math.unit(210, "lbs"),
  6676. name: "Back",
  6677. image: {
  6678. source: "./media/characters/cimmaron/back-sfw.svg",
  6679. extra: 701 / 676,
  6680. bottom: 0.046
  6681. }
  6682. },
  6683. frontNsfw: {
  6684. height: math.unit(6, "feet"),
  6685. weight: math.unit(210, "lbs"),
  6686. name: "Front (NSFW)",
  6687. image: {
  6688. source: "./media/characters/cimmaron/front-nsfw.svg",
  6689. extra: 701 / 676,
  6690. bottom: 0.046
  6691. }
  6692. },
  6693. backNsfw: {
  6694. height: math.unit(6, "feet"),
  6695. weight: math.unit(210, "lbs"),
  6696. name: "Back (NSFW)",
  6697. image: {
  6698. source: "./media/characters/cimmaron/back-nsfw.svg",
  6699. extra: 701 / 676,
  6700. bottom: 0.046
  6701. }
  6702. },
  6703. dick: {
  6704. height: math.unit(1.714, "feet"),
  6705. name: "Dick",
  6706. image: {
  6707. source: "./media/characters/cimmaron/dick.svg"
  6708. }
  6709. },
  6710. },
  6711. [
  6712. {
  6713. name: "Normal",
  6714. height: math.unit(6, "feet"),
  6715. default: true
  6716. },
  6717. {
  6718. name: "Macro Mayor",
  6719. height: math.unit(350, "meters")
  6720. },
  6721. ]
  6722. ))
  6723. characterMakers.push(() => makeCharacter(
  6724. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6725. {
  6726. front: {
  6727. height: math.unit(6, "feet"),
  6728. weight: math.unit(200, "lbs"),
  6729. name: "Front",
  6730. image: {
  6731. source: "./media/characters/akari/front.svg",
  6732. extra: 962 / 901,
  6733. bottom: 0.04
  6734. }
  6735. }
  6736. },
  6737. [
  6738. {
  6739. name: "Micro",
  6740. height: math.unit(5, "inches"),
  6741. default: true
  6742. },
  6743. {
  6744. name: "Normal",
  6745. height: math.unit(7, "feet")
  6746. },
  6747. ]
  6748. ))
  6749. characterMakers.push(() => makeCharacter(
  6750. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6751. {
  6752. front: {
  6753. height: math.unit(6, "feet"),
  6754. weight: math.unit(140, "lbs"),
  6755. name: "Front",
  6756. image: {
  6757. source: "./media/characters/cynosura/front.svg",
  6758. extra: 437/410,
  6759. bottom: 9/446
  6760. }
  6761. },
  6762. back: {
  6763. height: math.unit(6, "feet"),
  6764. weight: math.unit(140, "lbs"),
  6765. name: "Back",
  6766. image: {
  6767. source: "./media/characters/cynosura/back.svg",
  6768. extra: 1304/1160,
  6769. bottom: 71/1375
  6770. }
  6771. },
  6772. },
  6773. [
  6774. {
  6775. name: "Micro",
  6776. height: math.unit(4, "inches")
  6777. },
  6778. {
  6779. name: "Normal",
  6780. height: math.unit(5.75, "feet"),
  6781. default: true
  6782. },
  6783. {
  6784. name: "Tall",
  6785. height: math.unit(10, "feet")
  6786. },
  6787. {
  6788. name: "Big",
  6789. height: math.unit(20, "feet")
  6790. },
  6791. {
  6792. name: "Macro",
  6793. height: math.unit(50, "feet")
  6794. },
  6795. ]
  6796. ))
  6797. characterMakers.push(() => makeCharacter(
  6798. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6799. {
  6800. front: {
  6801. height: math.unit(13 + 2/12, "feet"),
  6802. weight: math.unit(800, "kg"),
  6803. name: "Front",
  6804. image: {
  6805. source: "./media/characters/gin/front.svg",
  6806. extra: 1312/1191,
  6807. bottom: 45/1357
  6808. }
  6809. },
  6810. mouth: {
  6811. height: math.unit(2.39 * 1.8, "feet"),
  6812. name: "Mouth",
  6813. image: {
  6814. source: "./media/characters/gin/mouth.svg"
  6815. }
  6816. },
  6817. hand: {
  6818. height: math.unit(1.57 * 2.19, "feet"),
  6819. name: "Hand",
  6820. image: {
  6821. source: "./media/characters/gin/hand.svg"
  6822. }
  6823. },
  6824. foot: {
  6825. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6826. name: "Foot",
  6827. image: {
  6828. source: "./media/characters/gin/foot.svg"
  6829. }
  6830. },
  6831. sole: {
  6832. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6833. name: "Sole",
  6834. image: {
  6835. source: "./media/characters/gin/sole.svg"
  6836. }
  6837. },
  6838. },
  6839. [
  6840. {
  6841. name: "Very Small",
  6842. height: math.unit(13 + 2 / 12, "feet")
  6843. },
  6844. {
  6845. name: "Micro",
  6846. height: math.unit(600, "miles")
  6847. },
  6848. {
  6849. name: "Regular",
  6850. height: math.unit(20, "earths"),
  6851. default: true
  6852. },
  6853. {
  6854. name: "Macro",
  6855. height: math.unit(2.2, "solarradii")
  6856. },
  6857. {
  6858. name: "Teramacro",
  6859. height: math.unit(1.2, "galaxies")
  6860. },
  6861. {
  6862. name: "Omegamacro",
  6863. height: math.unit(200, "universes")
  6864. },
  6865. ]
  6866. ))
  6867. characterMakers.push(() => makeCharacter(
  6868. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6869. {
  6870. front: {
  6871. height: math.unit(6 + 1 / 6, "feet"),
  6872. weight: math.unit(178, "lbs"),
  6873. name: "Front",
  6874. image: {
  6875. source: "./media/characters/guy/front.svg"
  6876. }
  6877. }
  6878. },
  6879. [
  6880. {
  6881. name: "Normal",
  6882. height: math.unit(6 + 1 / 6, "feet"),
  6883. default: true
  6884. },
  6885. {
  6886. name: "Large",
  6887. height: math.unit(25 + 7 / 12, "feet")
  6888. },
  6889. {
  6890. name: "Macro",
  6891. height: math.unit(60 + 9 / 12, "feet")
  6892. },
  6893. {
  6894. name: "Macro+",
  6895. height: math.unit(246, "feet")
  6896. },
  6897. {
  6898. name: "Macro++",
  6899. height: math.unit(878, "feet")
  6900. }
  6901. ]
  6902. ))
  6903. characterMakers.push(() => makeCharacter(
  6904. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6905. {
  6906. front: {
  6907. height: math.unit(9, "feet"),
  6908. weight: math.unit(800, "lbs"),
  6909. name: "Front",
  6910. image: {
  6911. source: "./media/characters/tiberius/front.svg",
  6912. extra: 2295 / 2071
  6913. }
  6914. },
  6915. back: {
  6916. height: math.unit(9, "feet"),
  6917. weight: math.unit(800, "lbs"),
  6918. name: "Back",
  6919. image: {
  6920. source: "./media/characters/tiberius/back.svg",
  6921. extra: 2373 / 2160
  6922. }
  6923. },
  6924. },
  6925. [
  6926. {
  6927. name: "Normal",
  6928. height: math.unit(9, "feet"),
  6929. default: true
  6930. }
  6931. ]
  6932. ))
  6933. characterMakers.push(() => makeCharacter(
  6934. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6935. {
  6936. front: {
  6937. height: math.unit(6, "feet"),
  6938. weight: math.unit(600, "lbs"),
  6939. name: "Front",
  6940. image: {
  6941. source: "./media/characters/surgo/front.svg",
  6942. extra: 3591 / 2227
  6943. }
  6944. },
  6945. back: {
  6946. height: math.unit(6, "feet"),
  6947. weight: math.unit(600, "lbs"),
  6948. name: "Back",
  6949. image: {
  6950. source: "./media/characters/surgo/back.svg",
  6951. extra: 3557 / 2228
  6952. }
  6953. },
  6954. laying: {
  6955. height: math.unit(6 * 0.85, "feet"),
  6956. weight: math.unit(600, "lbs"),
  6957. name: "Laying",
  6958. image: {
  6959. source: "./media/characters/surgo/laying.svg"
  6960. }
  6961. },
  6962. },
  6963. [
  6964. {
  6965. name: "Normal",
  6966. height: math.unit(6, "feet"),
  6967. default: true
  6968. }
  6969. ]
  6970. ))
  6971. characterMakers.push(() => makeCharacter(
  6972. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6973. {
  6974. side: {
  6975. height: math.unit(6, "feet"),
  6976. weight: math.unit(150, "lbs"),
  6977. name: "Side",
  6978. image: {
  6979. source: "./media/characters/cibus/side.svg",
  6980. extra: 800 / 400
  6981. }
  6982. },
  6983. },
  6984. [
  6985. {
  6986. name: "Normal",
  6987. height: math.unit(6, "feet"),
  6988. default: true
  6989. }
  6990. ]
  6991. ))
  6992. characterMakers.push(() => makeCharacter(
  6993. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6994. {
  6995. front: {
  6996. height: math.unit(6, "feet"),
  6997. weight: math.unit(240, "lbs"),
  6998. name: "Front",
  6999. image: {
  7000. source: "./media/characters/nibbles/front.svg"
  7001. }
  7002. },
  7003. side: {
  7004. height: math.unit(6, "feet"),
  7005. weight: math.unit(240, "lbs"),
  7006. name: "Side",
  7007. image: {
  7008. source: "./media/characters/nibbles/side.svg"
  7009. }
  7010. },
  7011. },
  7012. [
  7013. {
  7014. name: "Normal",
  7015. height: math.unit(9, "feet"),
  7016. default: true
  7017. }
  7018. ]
  7019. ))
  7020. characterMakers.push(() => makeCharacter(
  7021. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7022. {
  7023. side: {
  7024. height: math.unit(5 + 1 / 6, "feet"),
  7025. weight: math.unit(130, "lbs"),
  7026. name: "Side",
  7027. image: {
  7028. source: "./media/characters/rikky/side.svg",
  7029. extra: 851 / 801
  7030. }
  7031. },
  7032. },
  7033. [
  7034. {
  7035. name: "Normal",
  7036. height: math.unit(5 + 1 / 6, "feet")
  7037. },
  7038. {
  7039. name: "Macro",
  7040. height: math.unit(152, "feet"),
  7041. default: true
  7042. },
  7043. {
  7044. name: "Megamacro",
  7045. height: math.unit(7, "miles")
  7046. }
  7047. ]
  7048. ))
  7049. characterMakers.push(() => makeCharacter(
  7050. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7051. {
  7052. side: {
  7053. height: math.unit(370, "cm"),
  7054. weight: math.unit(350, "lbs"),
  7055. name: "Side",
  7056. image: {
  7057. source: "./media/characters/malfressa/side.svg"
  7058. }
  7059. },
  7060. walking: {
  7061. height: math.unit(370, "cm"),
  7062. weight: math.unit(350, "lbs"),
  7063. name: "Walking",
  7064. image: {
  7065. source: "./media/characters/malfressa/walking.svg"
  7066. }
  7067. },
  7068. feral: {
  7069. height: math.unit(2500, "cm"),
  7070. weight: math.unit(100000, "lbs"),
  7071. name: "Feral",
  7072. image: {
  7073. source: "./media/characters/malfressa/feral.svg",
  7074. extra: 2108 / 837,
  7075. bottom: 0.02
  7076. }
  7077. },
  7078. },
  7079. [
  7080. {
  7081. name: "Normal",
  7082. height: math.unit(370, "cm")
  7083. },
  7084. {
  7085. name: "Macro",
  7086. height: math.unit(300, "meters"),
  7087. default: true
  7088. }
  7089. ]
  7090. ))
  7091. characterMakers.push(() => makeCharacter(
  7092. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7093. {
  7094. front: {
  7095. height: math.unit(6, "feet"),
  7096. weight: math.unit(60, "kg"),
  7097. name: "Front",
  7098. image: {
  7099. source: "./media/characters/jaro/front.svg",
  7100. extra: 845/817,
  7101. bottom: 45/890
  7102. }
  7103. },
  7104. back: {
  7105. height: math.unit(6, "feet"),
  7106. weight: math.unit(60, "kg"),
  7107. name: "Back",
  7108. image: {
  7109. source: "./media/characters/jaro/back.svg",
  7110. extra: 847/817,
  7111. bottom: 34/881
  7112. }
  7113. },
  7114. },
  7115. [
  7116. {
  7117. name: "Micro",
  7118. height: math.unit(7, "inches")
  7119. },
  7120. {
  7121. name: "Normal",
  7122. height: math.unit(5.5, "feet"),
  7123. default: true
  7124. },
  7125. {
  7126. name: "Minimacro",
  7127. height: math.unit(20, "feet")
  7128. },
  7129. {
  7130. name: "Macro",
  7131. height: math.unit(200, "meters")
  7132. }
  7133. ]
  7134. ))
  7135. characterMakers.push(() => makeCharacter(
  7136. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7137. {
  7138. front: {
  7139. height: math.unit(6, "feet"),
  7140. weight: math.unit(195, "lb"),
  7141. name: "Front",
  7142. image: {
  7143. source: "./media/characters/rogue/front.svg"
  7144. }
  7145. },
  7146. },
  7147. [
  7148. {
  7149. name: "Macro",
  7150. height: math.unit(90, "feet"),
  7151. default: true
  7152. },
  7153. ]
  7154. ))
  7155. characterMakers.push(() => makeCharacter(
  7156. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7157. {
  7158. standing: {
  7159. height: math.unit(5 + 8 / 12, "feet"),
  7160. weight: math.unit(140, "lb"),
  7161. name: "Standing",
  7162. image: {
  7163. source: "./media/characters/piper/standing.svg",
  7164. extra: 1440/1284,
  7165. bottom: 66/1506
  7166. }
  7167. },
  7168. running: {
  7169. height: math.unit(5 + 8 / 12, "feet"),
  7170. weight: math.unit(140, "lb"),
  7171. name: "Running",
  7172. image: {
  7173. source: "./media/characters/piper/running.svg",
  7174. extra: 3948/3655,
  7175. bottom: 0/3948
  7176. }
  7177. },
  7178. sole: {
  7179. height: math.unit(0.81, "feet"),
  7180. weight: math.unit(2, "kg"),
  7181. name: "Sole",
  7182. image: {
  7183. source: "./media/characters/piper/sole.svg"
  7184. }
  7185. },
  7186. nipple: {
  7187. height: math.unit(0.25, "feet"),
  7188. weight: math.unit(1.5, "lb"),
  7189. name: "Nipple",
  7190. image: {
  7191. source: "./media/characters/piper/nipple.svg"
  7192. }
  7193. },
  7194. head: {
  7195. height: math.unit(1.1, "feet"),
  7196. name: "Head",
  7197. image: {
  7198. source: "./media/characters/piper/head.svg"
  7199. }
  7200. },
  7201. },
  7202. [
  7203. {
  7204. name: "Micro",
  7205. height: math.unit(2, "inches")
  7206. },
  7207. {
  7208. name: "Normal",
  7209. height: math.unit(5 + 8 / 12, "feet")
  7210. },
  7211. {
  7212. name: "Macro",
  7213. height: math.unit(250, "feet"),
  7214. default: true
  7215. },
  7216. {
  7217. name: "Megamacro",
  7218. height: math.unit(7, "miles")
  7219. },
  7220. ]
  7221. ))
  7222. characterMakers.push(() => makeCharacter(
  7223. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7224. {
  7225. front: {
  7226. height: math.unit(6, "feet"),
  7227. weight: math.unit(220, "lb"),
  7228. name: "Front",
  7229. image: {
  7230. source: "./media/characters/gemini/front.svg"
  7231. }
  7232. },
  7233. back: {
  7234. height: math.unit(6, "feet"),
  7235. weight: math.unit(220, "lb"),
  7236. name: "Back",
  7237. image: {
  7238. source: "./media/characters/gemini/back.svg"
  7239. }
  7240. },
  7241. kneeling: {
  7242. height: math.unit(6 / 1.5, "feet"),
  7243. weight: math.unit(220, "lb"),
  7244. name: "Kneeling",
  7245. image: {
  7246. source: "./media/characters/gemini/kneeling.svg",
  7247. bottom: 0.02
  7248. }
  7249. },
  7250. },
  7251. [
  7252. {
  7253. name: "Macro",
  7254. height: math.unit(300, "meters"),
  7255. default: true
  7256. },
  7257. {
  7258. name: "Megamacro",
  7259. height: math.unit(6900, "meters")
  7260. },
  7261. ]
  7262. ))
  7263. characterMakers.push(() => makeCharacter(
  7264. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7265. {
  7266. anthro: {
  7267. height: math.unit(2.35, "meters"),
  7268. weight: math.unit(73, "kg"),
  7269. name: "Anthro",
  7270. image: {
  7271. source: "./media/characters/alicia/anthro.svg",
  7272. extra: 2571 / 2385,
  7273. bottom: 75 / 2648
  7274. }
  7275. },
  7276. paw: {
  7277. height: math.unit(1.32, "feet"),
  7278. name: "Paw",
  7279. image: {
  7280. source: "./media/characters/alicia/paw.svg"
  7281. }
  7282. },
  7283. feral: {
  7284. height: math.unit(1.69, "meters"),
  7285. weight: math.unit(73, "kg"),
  7286. name: "Feral",
  7287. image: {
  7288. source: "./media/characters/alicia/feral.svg",
  7289. extra: 2123 / 1715,
  7290. bottom: 222 / 2349
  7291. }
  7292. },
  7293. },
  7294. [
  7295. {
  7296. name: "Normal",
  7297. height: math.unit(2.35, "meters")
  7298. },
  7299. {
  7300. name: "Macro",
  7301. height: math.unit(60, "meters"),
  7302. default: true
  7303. },
  7304. {
  7305. name: "Megamacro",
  7306. height: math.unit(10000, "kilometers")
  7307. },
  7308. ]
  7309. ))
  7310. characterMakers.push(() => makeCharacter(
  7311. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7312. {
  7313. front: {
  7314. height: math.unit(7, "feet"),
  7315. weight: math.unit(250, "lbs"),
  7316. name: "Front",
  7317. image: {
  7318. source: "./media/characters/archy/front.svg"
  7319. }
  7320. }
  7321. },
  7322. [
  7323. {
  7324. name: "Micro",
  7325. height: math.unit(1, "inch")
  7326. },
  7327. {
  7328. name: "Shorty",
  7329. height: math.unit(5, "feet")
  7330. },
  7331. {
  7332. name: "Normal",
  7333. height: math.unit(7, "feet")
  7334. },
  7335. {
  7336. name: "Macro",
  7337. height: math.unit(600, "meters"),
  7338. default: true
  7339. },
  7340. {
  7341. name: "Megamacro",
  7342. height: math.unit(1, "mile")
  7343. },
  7344. ]
  7345. ))
  7346. characterMakers.push(() => makeCharacter(
  7347. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7348. {
  7349. front: {
  7350. height: math.unit(1.65, "meters"),
  7351. weight: math.unit(74, "kg"),
  7352. name: "Front",
  7353. image: {
  7354. source: "./media/characters/berri/front.svg",
  7355. extra: 857 / 837,
  7356. bottom: 18 / 877
  7357. }
  7358. },
  7359. bum: {
  7360. height: math.unit(1.46, "feet"),
  7361. name: "Bum",
  7362. image: {
  7363. source: "./media/characters/berri/bum.svg"
  7364. }
  7365. },
  7366. mouth: {
  7367. height: math.unit(0.44, "feet"),
  7368. name: "Mouth",
  7369. image: {
  7370. source: "./media/characters/berri/mouth.svg"
  7371. }
  7372. },
  7373. paw: {
  7374. height: math.unit(0.826, "feet"),
  7375. name: "Paw",
  7376. image: {
  7377. source: "./media/characters/berri/paw.svg"
  7378. }
  7379. },
  7380. },
  7381. [
  7382. {
  7383. name: "Normal",
  7384. height: math.unit(1.65, "meters")
  7385. },
  7386. {
  7387. name: "Macro",
  7388. height: math.unit(60, "m"),
  7389. default: true
  7390. },
  7391. {
  7392. name: "Megamacro",
  7393. height: math.unit(9.213, "km")
  7394. },
  7395. {
  7396. name: "Planet Eater",
  7397. height: math.unit(489, "megameters")
  7398. },
  7399. {
  7400. name: "Teramacro",
  7401. height: math.unit(2471635000000, "meters")
  7402. },
  7403. {
  7404. name: "Examacro",
  7405. height: math.unit(8.0624e+26, "meters")
  7406. }
  7407. ]
  7408. ))
  7409. characterMakers.push(() => makeCharacter(
  7410. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7411. {
  7412. front: {
  7413. height: math.unit(1.72, "meters"),
  7414. weight: math.unit(68, "kg"),
  7415. name: "Front",
  7416. image: {
  7417. source: "./media/characters/lexi/front.svg"
  7418. }
  7419. }
  7420. },
  7421. [
  7422. {
  7423. name: "Very Smol",
  7424. height: math.unit(10, "mm")
  7425. },
  7426. {
  7427. name: "Micro",
  7428. height: math.unit(6.8, "cm"),
  7429. default: true
  7430. },
  7431. {
  7432. name: "Normal",
  7433. height: math.unit(1.72, "m")
  7434. }
  7435. ]
  7436. ))
  7437. characterMakers.push(() => makeCharacter(
  7438. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7439. {
  7440. front: {
  7441. height: math.unit(1.69, "meters"),
  7442. weight: math.unit(68, "kg"),
  7443. name: "Front",
  7444. image: {
  7445. source: "./media/characters/martin/front.svg",
  7446. extra: 596 / 581
  7447. }
  7448. }
  7449. },
  7450. [
  7451. {
  7452. name: "Micro",
  7453. height: math.unit(6.85, "cm"),
  7454. default: true
  7455. },
  7456. {
  7457. name: "Normal",
  7458. height: math.unit(1.69, "m")
  7459. }
  7460. ]
  7461. ))
  7462. characterMakers.push(() => makeCharacter(
  7463. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7464. {
  7465. front: {
  7466. height: math.unit(1.69, "meters"),
  7467. weight: math.unit(68, "kg"),
  7468. name: "Front",
  7469. image: {
  7470. source: "./media/characters/juno/front.svg"
  7471. }
  7472. }
  7473. },
  7474. [
  7475. {
  7476. name: "Micro",
  7477. height: math.unit(7, "cm")
  7478. },
  7479. {
  7480. name: "Normal",
  7481. height: math.unit(1.89, "m")
  7482. },
  7483. {
  7484. name: "Macro",
  7485. height: math.unit(353, "meters"),
  7486. default: true
  7487. }
  7488. ]
  7489. ))
  7490. characterMakers.push(() => makeCharacter(
  7491. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7492. {
  7493. front: {
  7494. height: math.unit(1.93, "meters"),
  7495. weight: math.unit(83, "kg"),
  7496. name: "Front",
  7497. image: {
  7498. source: "./media/characters/samantha/front.svg"
  7499. }
  7500. },
  7501. frontClothed: {
  7502. height: math.unit(1.93, "meters"),
  7503. weight: math.unit(83, "kg"),
  7504. name: "Front (Clothed)",
  7505. image: {
  7506. source: "./media/characters/samantha/front-clothed.svg"
  7507. }
  7508. },
  7509. back: {
  7510. height: math.unit(1.93, "meters"),
  7511. weight: math.unit(83, "kg"),
  7512. name: "Back",
  7513. image: {
  7514. source: "./media/characters/samantha/back.svg"
  7515. }
  7516. },
  7517. },
  7518. [
  7519. {
  7520. name: "Normal",
  7521. height: math.unit(1.93, "m")
  7522. },
  7523. {
  7524. name: "Macro",
  7525. height: math.unit(74, "meters"),
  7526. default: true
  7527. },
  7528. {
  7529. name: "Macro+",
  7530. height: math.unit(223, "meters"),
  7531. },
  7532. {
  7533. name: "Megamacro",
  7534. height: math.unit(8381, "meters"),
  7535. },
  7536. {
  7537. name: "Megamacro+",
  7538. height: math.unit(12000, "kilometers")
  7539. },
  7540. ]
  7541. ))
  7542. characterMakers.push(() => makeCharacter(
  7543. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7544. {
  7545. front: {
  7546. height: math.unit(1.92, "meters"),
  7547. weight: math.unit(80, "kg"),
  7548. name: "Front",
  7549. image: {
  7550. source: "./media/characters/dr-clay/front.svg"
  7551. }
  7552. },
  7553. frontClothed: {
  7554. height: math.unit(1.92, "meters"),
  7555. weight: math.unit(80, "kg"),
  7556. name: "Front (Clothed)",
  7557. image: {
  7558. source: "./media/characters/dr-clay/front-clothed.svg"
  7559. }
  7560. }
  7561. },
  7562. [
  7563. {
  7564. name: "Normal",
  7565. height: math.unit(1.92, "m")
  7566. },
  7567. {
  7568. name: "Macro",
  7569. height: math.unit(214, "meters"),
  7570. default: true
  7571. },
  7572. {
  7573. name: "Macro+",
  7574. height: math.unit(12.237, "meters"),
  7575. },
  7576. {
  7577. name: "Megamacro",
  7578. height: math.unit(557, "megameters"),
  7579. },
  7580. {
  7581. name: "Unimaginable",
  7582. height: math.unit(120e9, "lightyears")
  7583. },
  7584. ]
  7585. ))
  7586. characterMakers.push(() => makeCharacter(
  7587. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7588. {
  7589. front: {
  7590. height: math.unit(2, "meters"),
  7591. weight: math.unit(80, "kg"),
  7592. name: "Front",
  7593. image: {
  7594. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7595. }
  7596. }
  7597. },
  7598. [
  7599. {
  7600. name: "Teramacro",
  7601. height: math.unit(500000, "lightyears"),
  7602. default: true
  7603. },
  7604. ]
  7605. ))
  7606. characterMakers.push(() => makeCharacter(
  7607. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7608. {
  7609. crux: {
  7610. height: math.unit(2, "meters"),
  7611. weight: math.unit(150, "kg"),
  7612. name: "Crux",
  7613. image: {
  7614. source: "./media/characters/vemus/crux.svg",
  7615. extra: 1074/936,
  7616. bottom: 23/1097
  7617. }
  7618. },
  7619. skunkTanuki: {
  7620. height: math.unit(2, "meters"),
  7621. weight: math.unit(150, "kg"),
  7622. name: "Skunk-Tanuki",
  7623. image: {
  7624. source: "./media/characters/vemus/skunk-tanuki.svg",
  7625. extra: 926/893,
  7626. bottom: 20/946
  7627. }
  7628. },
  7629. },
  7630. [
  7631. {
  7632. name: "Normal",
  7633. height: math.unit(4, "meters"),
  7634. default: true
  7635. },
  7636. {
  7637. name: "Big",
  7638. height: math.unit(8, "meters")
  7639. },
  7640. {
  7641. name: "Macro",
  7642. height: math.unit(100, "meters")
  7643. },
  7644. {
  7645. name: "Macro+",
  7646. height: math.unit(1500, "meters")
  7647. },
  7648. {
  7649. name: "Stellar",
  7650. height: math.unit(14e8, "meters")
  7651. },
  7652. ]
  7653. ))
  7654. characterMakers.push(() => makeCharacter(
  7655. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7656. {
  7657. front: {
  7658. height: math.unit(2, "meters"),
  7659. weight: math.unit(70, "kg"),
  7660. name: "Front",
  7661. image: {
  7662. source: "./media/characters/beherit/front.svg",
  7663. extra: 1234/1109,
  7664. bottom: 55/1289
  7665. }
  7666. }
  7667. },
  7668. [
  7669. {
  7670. name: "Normal",
  7671. height: math.unit(6, "feet")
  7672. },
  7673. {
  7674. name: "Lorg",
  7675. height: math.unit(25, "feet"),
  7676. default: true
  7677. },
  7678. {
  7679. name: "Lorger",
  7680. height: math.unit(75, "feet")
  7681. },
  7682. {
  7683. name: "Macro",
  7684. height: math.unit(200, "meters")
  7685. },
  7686. ]
  7687. ))
  7688. characterMakers.push(() => makeCharacter(
  7689. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7690. {
  7691. front: {
  7692. height: math.unit(2, "meters"),
  7693. weight: math.unit(150, "kg"),
  7694. name: "Front",
  7695. image: {
  7696. source: "./media/characters/everett/front.svg",
  7697. extra: 1017/866,
  7698. bottom: 86/1103
  7699. }
  7700. },
  7701. paw: {
  7702. height: math.unit(2 / 3.6, "meters"),
  7703. name: "Paw",
  7704. image: {
  7705. source: "./media/characters/everett/paw.svg"
  7706. }
  7707. },
  7708. },
  7709. [
  7710. {
  7711. name: "Normal",
  7712. height: math.unit(15, "feet"),
  7713. default: true
  7714. },
  7715. {
  7716. name: "Lorg",
  7717. height: math.unit(70, "feet"),
  7718. default: true
  7719. },
  7720. {
  7721. name: "Lorger",
  7722. height: math.unit(250, "feet")
  7723. },
  7724. {
  7725. name: "Macro",
  7726. height: math.unit(500, "meters")
  7727. },
  7728. ]
  7729. ))
  7730. characterMakers.push(() => makeCharacter(
  7731. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7732. {
  7733. front: {
  7734. height: math.unit(2, "meters"),
  7735. weight: math.unit(86, "kg"),
  7736. name: "Front",
  7737. image: {
  7738. source: "./media/characters/rose/front.svg",
  7739. extra: 1785/1636,
  7740. bottom: 30/1815
  7741. },
  7742. form: "liom",
  7743. default: true
  7744. },
  7745. frontSporty: {
  7746. height: math.unit(2, "meters"),
  7747. weight: math.unit(86, "kg"),
  7748. name: "Front (Sporty)",
  7749. image: {
  7750. source: "./media/characters/rose/front-sporty.svg",
  7751. extra: 350/335,
  7752. bottom: 10/360
  7753. },
  7754. form: "liom"
  7755. },
  7756. frontAlt: {
  7757. height: math.unit(1.6, "meters"),
  7758. weight: math.unit(86, "kg"),
  7759. name: "Front (Alt)",
  7760. image: {
  7761. source: "./media/characters/rose/front-alt.svg",
  7762. extra: 299/283,
  7763. bottom: 3/302
  7764. },
  7765. form: "liom"
  7766. },
  7767. plush: {
  7768. height: math.unit(2, "meters"),
  7769. weight: math.unit(86/3, "kg"),
  7770. name: "Plush",
  7771. image: {
  7772. source: "./media/characters/rose/plush.svg",
  7773. extra: 361/337,
  7774. bottom: 11/372
  7775. },
  7776. form: "plush",
  7777. default: true
  7778. },
  7779. faeStanding: {
  7780. height: math.unit(10, "cm"),
  7781. weight: math.unit(10, "grams"),
  7782. name: "Standing",
  7783. image: {
  7784. source: "./media/characters/rose/fae-standing.svg",
  7785. extra: 1189/1060,
  7786. bottom: 27/1216
  7787. },
  7788. form: "fae",
  7789. default: true
  7790. },
  7791. faeSitting: {
  7792. height: math.unit(5, "cm"),
  7793. weight: math.unit(10, "grams"),
  7794. name: "Sitting",
  7795. image: {
  7796. source: "./media/characters/rose/fae-sitting.svg",
  7797. extra: 737/577,
  7798. bottom: 356/1093
  7799. },
  7800. form: "fae"
  7801. },
  7802. faePaw: {
  7803. height: math.unit(1.35, "cm"),
  7804. name: "Paw",
  7805. image: {
  7806. source: "./media/characters/rose/fae-paw.svg"
  7807. },
  7808. form: "fae"
  7809. },
  7810. },
  7811. [
  7812. {
  7813. name: "True Micro",
  7814. height: math.unit(9, "cm"),
  7815. form: "liom"
  7816. },
  7817. {
  7818. name: "Micro",
  7819. height: math.unit(16, "cm"),
  7820. form: "liom"
  7821. },
  7822. {
  7823. name: "Normal",
  7824. height: math.unit(1.85, "meters"),
  7825. default: true,
  7826. form: "liom"
  7827. },
  7828. {
  7829. name: "Mini-Macro",
  7830. height: math.unit(5, "meters"),
  7831. form: "liom"
  7832. },
  7833. {
  7834. name: "Macro",
  7835. height: math.unit(15, "meters"),
  7836. form: "liom"
  7837. },
  7838. {
  7839. name: "True Macro",
  7840. height: math.unit(40, "meters"),
  7841. form: "liom"
  7842. },
  7843. {
  7844. name: "City Scale",
  7845. height: math.unit(1, "km"),
  7846. form: "liom"
  7847. },
  7848. {
  7849. name: "Plushie",
  7850. height: math.unit(9, "cm"),
  7851. form: "plush",
  7852. default: true
  7853. },
  7854. {
  7855. name: "Fae",
  7856. height: math.unit(10, "cm"),
  7857. form: "fae",
  7858. default: true
  7859. },
  7860. ],
  7861. {
  7862. "liom": {
  7863. name: "Liom"
  7864. },
  7865. "plush": {
  7866. name: "Plush"
  7867. },
  7868. "fae": {
  7869. name: "Fae Fox",
  7870. default: true
  7871. }
  7872. }
  7873. ))
  7874. characterMakers.push(() => makeCharacter(
  7875. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7876. {
  7877. front: {
  7878. height: math.unit(2, "meters"),
  7879. weight: math.unit(350, "lbs"),
  7880. name: "Front",
  7881. image: {
  7882. source: "./media/characters/regal/front.svg"
  7883. }
  7884. },
  7885. back: {
  7886. height: math.unit(2, "meters"),
  7887. weight: math.unit(350, "lbs"),
  7888. name: "Back",
  7889. image: {
  7890. source: "./media/characters/regal/back.svg"
  7891. }
  7892. },
  7893. },
  7894. [
  7895. {
  7896. name: "Macro",
  7897. height: math.unit(350, "feet"),
  7898. default: true
  7899. }
  7900. ]
  7901. ))
  7902. characterMakers.push(() => makeCharacter(
  7903. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7904. {
  7905. front: {
  7906. height: math.unit(4 + 11 / 12, "feet"),
  7907. weight: math.unit(100, "lbs"),
  7908. name: "Front",
  7909. image: {
  7910. source: "./media/characters/opal/front.svg"
  7911. }
  7912. },
  7913. frontAlt: {
  7914. height: math.unit(4 + 11 / 12, "feet"),
  7915. weight: math.unit(100, "lbs"),
  7916. name: "Front (Alt)",
  7917. image: {
  7918. source: "./media/characters/opal/front-alt.svg"
  7919. }
  7920. },
  7921. },
  7922. [
  7923. {
  7924. name: "Small",
  7925. height: math.unit(4 + 11 / 12, "feet")
  7926. },
  7927. {
  7928. name: "Normal",
  7929. height: math.unit(20, "feet"),
  7930. default: true
  7931. },
  7932. {
  7933. name: "Macro",
  7934. height: math.unit(120, "feet")
  7935. },
  7936. {
  7937. name: "Megamacro",
  7938. height: math.unit(80, "miles")
  7939. },
  7940. {
  7941. name: "True Size",
  7942. height: math.unit(100000, "lightyears")
  7943. },
  7944. ]
  7945. ))
  7946. characterMakers.push(() => makeCharacter(
  7947. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7948. {
  7949. front: {
  7950. height: math.unit(6, "feet"),
  7951. weight: math.unit(200, "lbs"),
  7952. name: "Front",
  7953. image: {
  7954. source: "./media/characters/vector-wuff/front.svg"
  7955. }
  7956. }
  7957. },
  7958. [
  7959. {
  7960. name: "Normal",
  7961. height: math.unit(2.8, "meters")
  7962. },
  7963. {
  7964. name: "Macro",
  7965. height: math.unit(450, "meters"),
  7966. default: true
  7967. },
  7968. {
  7969. name: "Megamacro",
  7970. height: math.unit(15, "kilometers")
  7971. }
  7972. ]
  7973. ))
  7974. characterMakers.push(() => makeCharacter(
  7975. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7976. {
  7977. front: {
  7978. height: math.unit(6, "feet"),
  7979. weight: math.unit(256, "lbs"),
  7980. name: "Front",
  7981. image: {
  7982. source: "./media/characters/dannik/front.svg"
  7983. }
  7984. }
  7985. },
  7986. [
  7987. {
  7988. name: "Macro",
  7989. height: math.unit(69.57, "meters"),
  7990. default: true
  7991. },
  7992. ]
  7993. ))
  7994. characterMakers.push(() => makeCharacter(
  7995. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7996. {
  7997. front: {
  7998. height: math.unit(6, "feet"),
  7999. weight: math.unit(120, "lbs"),
  8000. name: "Front",
  8001. image: {
  8002. source: "./media/characters/azura-saharah/front.svg"
  8003. }
  8004. },
  8005. back: {
  8006. height: math.unit(6, "feet"),
  8007. weight: math.unit(120, "lbs"),
  8008. name: "Back",
  8009. image: {
  8010. source: "./media/characters/azura-saharah/back.svg"
  8011. }
  8012. },
  8013. },
  8014. [
  8015. {
  8016. name: "Macro",
  8017. height: math.unit(100, "feet"),
  8018. default: true
  8019. },
  8020. ]
  8021. ))
  8022. characterMakers.push(() => makeCharacter(
  8023. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8024. {
  8025. side: {
  8026. height: math.unit(5 + 4 / 12, "feet"),
  8027. weight: math.unit(163, "lbs"),
  8028. name: "Side",
  8029. image: {
  8030. source: "./media/characters/kennedy/side.svg"
  8031. }
  8032. }
  8033. },
  8034. [
  8035. {
  8036. name: "Standard Doggo",
  8037. height: math.unit(5 + 4 / 12, "feet")
  8038. },
  8039. {
  8040. name: "Big Doggo",
  8041. height: math.unit(25 + 3 / 12, "feet"),
  8042. default: true
  8043. },
  8044. ]
  8045. ))
  8046. characterMakers.push(() => makeCharacter(
  8047. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8048. {
  8049. front: {
  8050. height: math.unit(5 + 5/12, "feet"),
  8051. weight: math.unit(100, "lbs"),
  8052. name: "Front",
  8053. image: {
  8054. source: "./media/characters/odios-de-lunar/front.svg",
  8055. extra: 1468/1323,
  8056. bottom: 22/1490
  8057. }
  8058. }
  8059. },
  8060. [
  8061. {
  8062. name: "Micro",
  8063. height: math.unit(3, "inches")
  8064. },
  8065. {
  8066. name: "Normal",
  8067. height: math.unit(5.5, "feet"),
  8068. default: true
  8069. },
  8070. {
  8071. name: "Macro",
  8072. height: math.unit(100, "feet")
  8073. },
  8074. ]
  8075. ))
  8076. characterMakers.push(() => makeCharacter(
  8077. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8078. {
  8079. back: {
  8080. height: math.unit(6, "feet"),
  8081. weight: math.unit(220, "lbs"),
  8082. name: "Back",
  8083. image: {
  8084. source: "./media/characters/mandake/back.svg"
  8085. }
  8086. }
  8087. },
  8088. [
  8089. {
  8090. name: "Normal",
  8091. height: math.unit(7, "feet"),
  8092. default: true
  8093. },
  8094. {
  8095. name: "Macro",
  8096. height: math.unit(78, "feet")
  8097. },
  8098. {
  8099. name: "Macro+",
  8100. height: math.unit(300, "meters")
  8101. },
  8102. {
  8103. name: "Macro++",
  8104. height: math.unit(2400, "feet")
  8105. },
  8106. {
  8107. name: "Megamacro",
  8108. height: math.unit(5167, "meters")
  8109. },
  8110. {
  8111. name: "Gigamacro",
  8112. height: math.unit(41769, "miles")
  8113. },
  8114. ]
  8115. ))
  8116. characterMakers.push(() => makeCharacter(
  8117. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8118. {
  8119. front: {
  8120. height: math.unit(6, "feet"),
  8121. weight: math.unit(120, "lbs"),
  8122. name: "Front",
  8123. image: {
  8124. source: "./media/characters/yozey/front.svg"
  8125. }
  8126. },
  8127. frontAlt: {
  8128. height: math.unit(6, "feet"),
  8129. weight: math.unit(120, "lbs"),
  8130. name: "Front (Alt)",
  8131. image: {
  8132. source: "./media/characters/yozey/front-alt.svg"
  8133. }
  8134. },
  8135. side: {
  8136. height: math.unit(6, "feet"),
  8137. weight: math.unit(120, "lbs"),
  8138. name: "Side",
  8139. image: {
  8140. source: "./media/characters/yozey/side.svg"
  8141. }
  8142. },
  8143. },
  8144. [
  8145. {
  8146. name: "Micro",
  8147. height: math.unit(3, "inches"),
  8148. default: true
  8149. },
  8150. {
  8151. name: "Normal",
  8152. height: math.unit(6, "feet")
  8153. }
  8154. ]
  8155. ))
  8156. characterMakers.push(() => makeCharacter(
  8157. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8158. {
  8159. front: {
  8160. height: math.unit(6, "feet"),
  8161. weight: math.unit(103, "lbs"),
  8162. name: "Front",
  8163. image: {
  8164. source: "./media/characters/valeska-voss/front.svg"
  8165. }
  8166. }
  8167. },
  8168. [
  8169. {
  8170. name: "Mini-Sized Sub",
  8171. height: math.unit(3.1, "inches")
  8172. },
  8173. {
  8174. name: "Mid-Sized Sub",
  8175. height: math.unit(6.2, "inches")
  8176. },
  8177. {
  8178. name: "Full-Sized Sub",
  8179. height: math.unit(9.3, "inches")
  8180. },
  8181. {
  8182. name: "Normal",
  8183. height: math.unit(5 + 2 / 12, "foot"),
  8184. default: true
  8185. },
  8186. ]
  8187. ))
  8188. characterMakers.push(() => makeCharacter(
  8189. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8190. {
  8191. front: {
  8192. height: math.unit(6, "feet"),
  8193. weight: math.unit(160, "lbs"),
  8194. name: "Front",
  8195. image: {
  8196. source: "./media/characters/gene-zeta/front.svg",
  8197. extra: 3006 / 2826,
  8198. bottom: 182 / 3188
  8199. }
  8200. }
  8201. },
  8202. [
  8203. {
  8204. name: "Micro",
  8205. height: math.unit(6, "inches")
  8206. },
  8207. {
  8208. name: "Normal",
  8209. height: math.unit(5 + 11 / 12, "foot"),
  8210. default: true
  8211. },
  8212. {
  8213. name: "Macro",
  8214. height: math.unit(140, "feet")
  8215. },
  8216. {
  8217. name: "Supercharged",
  8218. height: math.unit(2500, "feet")
  8219. },
  8220. ]
  8221. ))
  8222. characterMakers.push(() => makeCharacter(
  8223. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8224. {
  8225. front: {
  8226. height: math.unit(6, "feet"),
  8227. weight: math.unit(350, "lbs"),
  8228. name: "Front",
  8229. image: {
  8230. source: "./media/characters/razinox/front.svg",
  8231. extra: 1686 / 1548,
  8232. bottom: 28.2 / 1868
  8233. }
  8234. },
  8235. back: {
  8236. height: math.unit(6, "feet"),
  8237. weight: math.unit(350, "lbs"),
  8238. name: "Back",
  8239. image: {
  8240. source: "./media/characters/razinox/back.svg",
  8241. extra: 1660 / 1590,
  8242. bottom: 15 / 1665
  8243. }
  8244. },
  8245. },
  8246. [
  8247. {
  8248. name: "Normal",
  8249. height: math.unit(10 + 8 / 12, "foot")
  8250. },
  8251. {
  8252. name: "Minimacro",
  8253. height: math.unit(15, "foot")
  8254. },
  8255. {
  8256. name: "Macro",
  8257. height: math.unit(60, "foot"),
  8258. default: true
  8259. },
  8260. {
  8261. name: "Megamacro",
  8262. height: math.unit(5, "miles")
  8263. },
  8264. {
  8265. name: "Gigamacro",
  8266. height: math.unit(6000, "miles")
  8267. },
  8268. ]
  8269. ))
  8270. characterMakers.push(() => makeCharacter(
  8271. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8272. {
  8273. front: {
  8274. height: math.unit(6, "feet"),
  8275. weight: math.unit(150, "lbs"),
  8276. name: "Front",
  8277. image: {
  8278. source: "./media/characters/cobalt/front.svg"
  8279. }
  8280. }
  8281. },
  8282. [
  8283. {
  8284. name: "Normal",
  8285. height: math.unit(8 + 1 / 12, "foot")
  8286. },
  8287. {
  8288. name: "Macro",
  8289. height: math.unit(111, "foot"),
  8290. default: true
  8291. },
  8292. {
  8293. name: "Supracosmic",
  8294. height: math.unit(1e42, "feet")
  8295. },
  8296. ]
  8297. ))
  8298. characterMakers.push(() => makeCharacter(
  8299. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8300. {
  8301. front: {
  8302. height: math.unit(5, "inches"),
  8303. name: "Front",
  8304. image: {
  8305. source: "./media/characters/amanda/front.svg",
  8306. extra: 926/791,
  8307. bottom: 38/964
  8308. }
  8309. },
  8310. back: {
  8311. height: math.unit(5, "inches"),
  8312. name: "Back",
  8313. image: {
  8314. source: "./media/characters/amanda/back.svg",
  8315. extra: 909/805,
  8316. bottom: 43/952
  8317. }
  8318. },
  8319. },
  8320. [
  8321. {
  8322. name: "Micro",
  8323. height: math.unit(5, "inches"),
  8324. default: true
  8325. },
  8326. ]
  8327. ))
  8328. characterMakers.push(() => makeCharacter(
  8329. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8330. {
  8331. front: {
  8332. height: math.unit(2.75, "meters"),
  8333. weight: math.unit(1200, "lb"),
  8334. name: "Front",
  8335. image: {
  8336. source: "./media/characters/teal/front.svg",
  8337. extra: 2463 / 2320,
  8338. bottom: 166 / 2629
  8339. }
  8340. },
  8341. back: {
  8342. height: math.unit(2.75, "meters"),
  8343. weight: math.unit(1200, "lb"),
  8344. name: "Back",
  8345. image: {
  8346. source: "./media/characters/teal/back.svg",
  8347. extra: 2580 / 2489,
  8348. bottom: 151 / 2731
  8349. }
  8350. },
  8351. sitting: {
  8352. height: math.unit(1.9, "meters"),
  8353. weight: math.unit(1200, "lb"),
  8354. name: "Sitting",
  8355. image: {
  8356. source: "./media/characters/teal/sitting.svg",
  8357. extra: 623 / 590,
  8358. bottom: 121 / 744
  8359. }
  8360. },
  8361. standing: {
  8362. height: math.unit(2.75, "meters"),
  8363. weight: math.unit(1200, "lb"),
  8364. name: "Standing",
  8365. image: {
  8366. source: "./media/characters/teal/standing.svg",
  8367. extra: 923 / 893,
  8368. bottom: 60 / 983
  8369. }
  8370. },
  8371. stretching: {
  8372. height: math.unit(3.65, "meters"),
  8373. weight: math.unit(1200, "lb"),
  8374. name: "Stretching",
  8375. image: {
  8376. source: "./media/characters/teal/stretching.svg",
  8377. extra: 1276 / 1244,
  8378. bottom: 0 / 1276
  8379. }
  8380. },
  8381. legged: {
  8382. height: math.unit(1.3, "meters"),
  8383. weight: math.unit(100, "lb"),
  8384. name: "Legged",
  8385. image: {
  8386. source: "./media/characters/teal/legged.svg",
  8387. extra: 462 / 437,
  8388. bottom: 24 / 486
  8389. }
  8390. },
  8391. naga: {
  8392. height: math.unit(5.4, "meters"),
  8393. weight: math.unit(4000, "lb"),
  8394. name: "Naga",
  8395. image: {
  8396. source: "./media/characters/teal/naga.svg",
  8397. extra: 1902 / 1858,
  8398. bottom: 0 / 1902
  8399. }
  8400. },
  8401. hand: {
  8402. height: math.unit(0.52, "meters"),
  8403. name: "Hand",
  8404. image: {
  8405. source: "./media/characters/teal/hand.svg"
  8406. }
  8407. },
  8408. maw: {
  8409. height: math.unit(0.43, "meters"),
  8410. name: "Maw",
  8411. image: {
  8412. source: "./media/characters/teal/maw.svg"
  8413. }
  8414. },
  8415. slit: {
  8416. height: math.unit(0.25, "meters"),
  8417. name: "Slit",
  8418. image: {
  8419. source: "./media/characters/teal/slit.svg"
  8420. }
  8421. },
  8422. },
  8423. [
  8424. {
  8425. name: "Normal",
  8426. height: math.unit(2.75, "meters"),
  8427. default: true
  8428. },
  8429. {
  8430. name: "Macro",
  8431. height: math.unit(300, "feet")
  8432. },
  8433. {
  8434. name: "Macro+",
  8435. height: math.unit(2000, "feet")
  8436. },
  8437. ]
  8438. ))
  8439. characterMakers.push(() => makeCharacter(
  8440. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8441. {
  8442. frontCat: {
  8443. height: math.unit(6, "feet"),
  8444. weight: math.unit(180, "lbs"),
  8445. name: "Front (Cat)",
  8446. image: {
  8447. source: "./media/characters/ravin-amulet/front-cat.svg"
  8448. }
  8449. },
  8450. frontCatAlt: {
  8451. height: math.unit(6, "feet"),
  8452. weight: math.unit(180, "lbs"),
  8453. name: "Front (Alt, Cat)",
  8454. image: {
  8455. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8456. }
  8457. },
  8458. frontWerewolf: {
  8459. height: math.unit(6 * 1.2, "feet"),
  8460. weight: math.unit(225, "lbs"),
  8461. name: "Front (Werewolf)",
  8462. image: {
  8463. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8464. }
  8465. },
  8466. backWerewolf: {
  8467. height: math.unit(6 * 1.2, "feet"),
  8468. weight: math.unit(225, "lbs"),
  8469. name: "Back (Werewolf)",
  8470. image: {
  8471. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8472. }
  8473. },
  8474. },
  8475. [
  8476. {
  8477. name: "Nano",
  8478. height: math.unit(1, "micrometer")
  8479. },
  8480. {
  8481. name: "Micro",
  8482. height: math.unit(1, "inch")
  8483. },
  8484. {
  8485. name: "Normal",
  8486. height: math.unit(6, "feet"),
  8487. default: true
  8488. },
  8489. {
  8490. name: "Macro",
  8491. height: math.unit(60, "feet")
  8492. }
  8493. ]
  8494. ))
  8495. characterMakers.push(() => makeCharacter(
  8496. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8497. {
  8498. front: {
  8499. height: math.unit(6, "feet"),
  8500. weight: math.unit(165, "lbs"),
  8501. name: "Front",
  8502. image: {
  8503. source: "./media/characters/fluoresce/front.svg"
  8504. }
  8505. }
  8506. },
  8507. [
  8508. {
  8509. name: "Micro",
  8510. height: math.unit(6, "cm")
  8511. },
  8512. {
  8513. name: "Normal",
  8514. height: math.unit(5 + 7 / 12, "feet"),
  8515. default: true
  8516. },
  8517. {
  8518. name: "Macro",
  8519. height: math.unit(56, "feet")
  8520. },
  8521. {
  8522. name: "Megamacro",
  8523. height: math.unit(1.9, "miles")
  8524. },
  8525. ]
  8526. ))
  8527. characterMakers.push(() => makeCharacter(
  8528. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8529. {
  8530. front: {
  8531. height: math.unit(9 + 6 / 12, "feet"),
  8532. weight: math.unit(523, "lbs"),
  8533. name: "Side",
  8534. image: {
  8535. source: "./media/characters/aurora/side.svg",
  8536. extra: 474/393,
  8537. bottom: 5/479
  8538. }
  8539. }
  8540. },
  8541. [
  8542. {
  8543. name: "Normal",
  8544. height: math.unit(9 + 6 / 12, "feet")
  8545. },
  8546. {
  8547. name: "Macro",
  8548. height: math.unit(96, "feet"),
  8549. default: true
  8550. },
  8551. {
  8552. name: "Macro+",
  8553. height: math.unit(243, "feet")
  8554. },
  8555. ]
  8556. ))
  8557. characterMakers.push(() => makeCharacter(
  8558. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8559. {
  8560. front: {
  8561. height: math.unit(194, "cm"),
  8562. weight: math.unit(90, "kg"),
  8563. name: "Front",
  8564. image: {
  8565. source: "./media/characters/ranek/front.svg",
  8566. extra: 1862/1791,
  8567. bottom: 80/1942
  8568. }
  8569. },
  8570. back: {
  8571. height: math.unit(194, "cm"),
  8572. weight: math.unit(90, "kg"),
  8573. name: "Back",
  8574. image: {
  8575. source: "./media/characters/ranek/back.svg",
  8576. extra: 1853/1787,
  8577. bottom: 74/1927
  8578. }
  8579. },
  8580. feral: {
  8581. height: math.unit(30, "cm"),
  8582. weight: math.unit(1.6, "lbs"),
  8583. name: "Feral",
  8584. image: {
  8585. source: "./media/characters/ranek/feral.svg",
  8586. extra: 990/631,
  8587. bottom: 29/1019
  8588. }
  8589. },
  8590. },
  8591. [
  8592. {
  8593. name: "Normal",
  8594. height: math.unit(194, "cm"),
  8595. default: true
  8596. },
  8597. {
  8598. name: "Macro",
  8599. height: math.unit(100, "meters")
  8600. },
  8601. ]
  8602. ))
  8603. characterMakers.push(() => makeCharacter(
  8604. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8605. {
  8606. front: {
  8607. height: math.unit(5 + 6 / 12, "feet"),
  8608. weight: math.unit(153, "lbs"),
  8609. name: "Front",
  8610. image: {
  8611. source: "./media/characters/andrew-cooper/front.svg"
  8612. }
  8613. },
  8614. },
  8615. [
  8616. {
  8617. name: "Nano",
  8618. height: math.unit(1, "mm")
  8619. },
  8620. {
  8621. name: "Micro",
  8622. height: math.unit(2, "inches")
  8623. },
  8624. {
  8625. name: "Normal",
  8626. height: math.unit(5 + 6 / 12, "feet"),
  8627. default: true
  8628. }
  8629. ]
  8630. ))
  8631. characterMakers.push(() => makeCharacter(
  8632. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8633. {
  8634. front: {
  8635. height: math.unit(6, "feet"),
  8636. weight: math.unit(180, "lbs"),
  8637. name: "Front",
  8638. image: {
  8639. source: "./media/characters/akane-sato/front.svg",
  8640. extra: 1219 / 1140
  8641. }
  8642. },
  8643. back: {
  8644. height: math.unit(6, "feet"),
  8645. weight: math.unit(180, "lbs"),
  8646. name: "Back",
  8647. image: {
  8648. source: "./media/characters/akane-sato/back.svg",
  8649. extra: 1219 / 1170
  8650. }
  8651. },
  8652. },
  8653. [
  8654. {
  8655. name: "Normal",
  8656. height: math.unit(2.5, "meters")
  8657. },
  8658. {
  8659. name: "Macro",
  8660. height: math.unit(250, "meters"),
  8661. default: true
  8662. },
  8663. {
  8664. name: "Megamacro",
  8665. height: math.unit(25, "km")
  8666. },
  8667. ]
  8668. ))
  8669. characterMakers.push(() => makeCharacter(
  8670. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8671. {
  8672. front: {
  8673. height: math.unit(6, "feet"),
  8674. weight: math.unit(65, "kg"),
  8675. name: "Front",
  8676. image: {
  8677. source: "./media/characters/rook/front.svg",
  8678. extra: 960 / 950
  8679. }
  8680. }
  8681. },
  8682. [
  8683. {
  8684. name: "Normal",
  8685. height: math.unit(8.8, "feet")
  8686. },
  8687. {
  8688. name: "Macro",
  8689. height: math.unit(88, "feet"),
  8690. default: true
  8691. },
  8692. {
  8693. name: "Megamacro",
  8694. height: math.unit(8, "miles")
  8695. },
  8696. ]
  8697. ))
  8698. characterMakers.push(() => makeCharacter(
  8699. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8700. {
  8701. front: {
  8702. height: math.unit(12 + 2 / 12, "feet"),
  8703. weight: math.unit(808, "lbs"),
  8704. name: "Front",
  8705. image: {
  8706. source: "./media/characters/prodigy/front.svg"
  8707. }
  8708. }
  8709. },
  8710. [
  8711. {
  8712. name: "Normal",
  8713. height: math.unit(12 + 2 / 12, "feet"),
  8714. default: true
  8715. },
  8716. {
  8717. name: "Macro",
  8718. height: math.unit(143, "feet")
  8719. },
  8720. {
  8721. name: "Macro+",
  8722. height: math.unit(400, "feet")
  8723. },
  8724. ]
  8725. ))
  8726. characterMakers.push(() => makeCharacter(
  8727. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8728. {
  8729. front: {
  8730. height: math.unit(6, "feet"),
  8731. weight: math.unit(225, "lbs"),
  8732. name: "Front",
  8733. image: {
  8734. source: "./media/characters/daniel/front.svg"
  8735. }
  8736. },
  8737. leaning: {
  8738. height: math.unit(6, "feet"),
  8739. weight: math.unit(225, "lbs"),
  8740. name: "Leaning",
  8741. image: {
  8742. source: "./media/characters/daniel/leaning.svg"
  8743. }
  8744. },
  8745. },
  8746. [
  8747. {
  8748. name: "Macro",
  8749. height: math.unit(1000, "feet"),
  8750. default: true
  8751. },
  8752. ]
  8753. ))
  8754. characterMakers.push(() => makeCharacter(
  8755. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8756. {
  8757. front: {
  8758. height: math.unit(6, "feet"),
  8759. weight: math.unit(88, "lbs"),
  8760. name: "Front",
  8761. image: {
  8762. source: "./media/characters/chiros/front.svg",
  8763. extra: 306 / 226
  8764. }
  8765. },
  8766. side: {
  8767. height: math.unit(6, "feet"),
  8768. weight: math.unit(88, "lbs"),
  8769. name: "Side",
  8770. image: {
  8771. source: "./media/characters/chiros/side.svg",
  8772. extra: 306 / 226
  8773. }
  8774. },
  8775. },
  8776. [
  8777. {
  8778. name: "Normal",
  8779. height: math.unit(6, "cm"),
  8780. default: true
  8781. },
  8782. ]
  8783. ))
  8784. characterMakers.push(() => makeCharacter(
  8785. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8786. {
  8787. front: {
  8788. height: math.unit(6, "feet"),
  8789. weight: math.unit(100, "lbs"),
  8790. name: "Front",
  8791. image: {
  8792. source: "./media/characters/selka/front.svg",
  8793. extra: 947 / 887
  8794. }
  8795. }
  8796. },
  8797. [
  8798. {
  8799. name: "Normal",
  8800. height: math.unit(5, "cm"),
  8801. default: true
  8802. },
  8803. ]
  8804. ))
  8805. characterMakers.push(() => makeCharacter(
  8806. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8807. {
  8808. front: {
  8809. height: math.unit(8 + 3 / 12, "feet"),
  8810. weight: math.unit(424, "lbs"),
  8811. name: "Front",
  8812. image: {
  8813. source: "./media/characters/verin/front.svg",
  8814. extra: 1845 / 1550
  8815. }
  8816. },
  8817. frontArmored: {
  8818. height: math.unit(8 + 3 / 12, "feet"),
  8819. weight: math.unit(424, "lbs"),
  8820. name: "Front (Armored)",
  8821. image: {
  8822. source: "./media/characters/verin/front-armor.svg",
  8823. extra: 1845 / 1550,
  8824. bottom: 0.01
  8825. }
  8826. },
  8827. back: {
  8828. height: math.unit(8 + 3 / 12, "feet"),
  8829. weight: math.unit(424, "lbs"),
  8830. name: "Back",
  8831. image: {
  8832. source: "./media/characters/verin/back.svg",
  8833. bottom: 0.1,
  8834. extra: 1
  8835. }
  8836. },
  8837. foot: {
  8838. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8839. name: "Foot",
  8840. image: {
  8841. source: "./media/characters/verin/foot.svg"
  8842. }
  8843. },
  8844. },
  8845. [
  8846. {
  8847. name: "Normal",
  8848. height: math.unit(8 + 3 / 12, "feet")
  8849. },
  8850. {
  8851. name: "Minimacro",
  8852. height: math.unit(21, "feet"),
  8853. default: true
  8854. },
  8855. {
  8856. name: "Macro",
  8857. height: math.unit(626, "feet")
  8858. },
  8859. ]
  8860. ))
  8861. characterMakers.push(() => makeCharacter(
  8862. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8863. {
  8864. front: {
  8865. height: math.unit(2.718, "meters"),
  8866. weight: math.unit(150, "lbs"),
  8867. name: "Front",
  8868. image: {
  8869. source: "./media/characters/sovrim-terraquian/front.svg",
  8870. extra: 1752/1689,
  8871. bottom: 36/1788
  8872. }
  8873. },
  8874. back: {
  8875. height: math.unit(2.718, "meters"),
  8876. weight: math.unit(150, "lbs"),
  8877. name: "Back",
  8878. image: {
  8879. source: "./media/characters/sovrim-terraquian/back.svg",
  8880. extra: 1698/1657,
  8881. bottom: 58/1756
  8882. }
  8883. },
  8884. tongue: {
  8885. height: math.unit(2.865, "feet"),
  8886. name: "Tongue",
  8887. image: {
  8888. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8889. }
  8890. },
  8891. hand: {
  8892. height: math.unit(1.61, "feet"),
  8893. name: "Hand",
  8894. image: {
  8895. source: "./media/characters/sovrim-terraquian/hand.svg"
  8896. }
  8897. },
  8898. foot: {
  8899. height: math.unit(1.05, "feet"),
  8900. name: "Foot",
  8901. image: {
  8902. source: "./media/characters/sovrim-terraquian/foot.svg"
  8903. }
  8904. },
  8905. footAlt: {
  8906. height: math.unit(0.88, "feet"),
  8907. name: "Foot (Alt)",
  8908. image: {
  8909. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8910. }
  8911. },
  8912. },
  8913. [
  8914. {
  8915. name: "Micro",
  8916. height: math.unit(2, "inches")
  8917. },
  8918. {
  8919. name: "Small",
  8920. height: math.unit(1, "meter")
  8921. },
  8922. {
  8923. name: "Normal",
  8924. height: math.unit(Math.E, "meters"),
  8925. default: true
  8926. },
  8927. {
  8928. name: "Macro",
  8929. height: math.unit(20, "meters")
  8930. },
  8931. {
  8932. name: "Macro+",
  8933. height: math.unit(400, "meters")
  8934. },
  8935. ]
  8936. ))
  8937. characterMakers.push(() => makeCharacter(
  8938. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8939. {
  8940. front: {
  8941. height: math.unit(7, "feet"),
  8942. weight: math.unit(489, "lbs"),
  8943. name: "Front",
  8944. image: {
  8945. source: "./media/characters/reece-silvermane/front.svg",
  8946. bottom: 0.02,
  8947. extra: 1
  8948. }
  8949. },
  8950. },
  8951. [
  8952. {
  8953. name: "Macro",
  8954. height: math.unit(1.5, "miles"),
  8955. default: true
  8956. },
  8957. ]
  8958. ))
  8959. characterMakers.push(() => makeCharacter(
  8960. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8961. {
  8962. front: {
  8963. height: math.unit(6, "feet"),
  8964. weight: math.unit(78, "kg"),
  8965. name: "Front",
  8966. image: {
  8967. source: "./media/characters/kane/front.svg",
  8968. extra: 978 / 899
  8969. }
  8970. },
  8971. },
  8972. [
  8973. {
  8974. name: "Normal",
  8975. height: math.unit(2.1, "m"),
  8976. },
  8977. {
  8978. name: "Macro",
  8979. height: math.unit(1, "km"),
  8980. default: true
  8981. },
  8982. ]
  8983. ))
  8984. characterMakers.push(() => makeCharacter(
  8985. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8986. {
  8987. front: {
  8988. height: math.unit(6, "feet"),
  8989. weight: math.unit(200, "kg"),
  8990. name: "Front",
  8991. image: {
  8992. source: "./media/characters/tegon/front.svg",
  8993. bottom: 0.01,
  8994. extra: 1
  8995. }
  8996. },
  8997. },
  8998. [
  8999. {
  9000. name: "Micro",
  9001. height: math.unit(1, "inch")
  9002. },
  9003. {
  9004. name: "Normal",
  9005. height: math.unit(6 + 3 / 12, "feet"),
  9006. default: true
  9007. },
  9008. {
  9009. name: "Macro",
  9010. height: math.unit(300, "feet")
  9011. },
  9012. {
  9013. name: "Megamacro",
  9014. height: math.unit(69, "miles")
  9015. },
  9016. ]
  9017. ))
  9018. characterMakers.push(() => makeCharacter(
  9019. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9020. {
  9021. side: {
  9022. height: math.unit(6, "feet"),
  9023. weight: math.unit(2304, "lbs"),
  9024. name: "Side",
  9025. image: {
  9026. source: "./media/characters/arcturax/side.svg",
  9027. extra: 790 / 376,
  9028. bottom: 0.01
  9029. }
  9030. },
  9031. },
  9032. [
  9033. {
  9034. name: "Micro",
  9035. height: math.unit(2, "inch")
  9036. },
  9037. {
  9038. name: "Normal",
  9039. height: math.unit(6, "feet")
  9040. },
  9041. {
  9042. name: "Macro",
  9043. height: math.unit(39, "feet"),
  9044. default: true
  9045. },
  9046. {
  9047. name: "Megamacro",
  9048. height: math.unit(7, "miles")
  9049. },
  9050. ]
  9051. ))
  9052. characterMakers.push(() => makeCharacter(
  9053. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9054. {
  9055. front: {
  9056. height: math.unit(6, "feet"),
  9057. weight: math.unit(50, "lbs"),
  9058. name: "Front",
  9059. image: {
  9060. source: "./media/characters/sentri/front.svg",
  9061. extra: 1750 / 1570,
  9062. bottom: 0.025
  9063. }
  9064. },
  9065. frontAlt: {
  9066. height: math.unit(6, "feet"),
  9067. weight: math.unit(50, "lbs"),
  9068. name: "Front (Alt)",
  9069. image: {
  9070. source: "./media/characters/sentri/front-alt.svg",
  9071. extra: 1750 / 1570,
  9072. bottom: 0.025
  9073. }
  9074. },
  9075. },
  9076. [
  9077. {
  9078. name: "Normal",
  9079. height: math.unit(15, "feet"),
  9080. default: true
  9081. },
  9082. {
  9083. name: "Macro",
  9084. height: math.unit(2500, "feet")
  9085. }
  9086. ]
  9087. ))
  9088. characterMakers.push(() => makeCharacter(
  9089. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9090. {
  9091. front: {
  9092. height: math.unit(5 + 8 / 12, "feet"),
  9093. weight: math.unit(130, "lbs"),
  9094. name: "Front",
  9095. image: {
  9096. source: "./media/characters/corvin/front.svg",
  9097. extra: 1803 / 1629
  9098. }
  9099. },
  9100. frontShirt: {
  9101. height: math.unit(5 + 8 / 12, "feet"),
  9102. weight: math.unit(130, "lbs"),
  9103. name: "Front (Shirt)",
  9104. image: {
  9105. source: "./media/characters/corvin/front-shirt.svg",
  9106. extra: 1803 / 1629
  9107. }
  9108. },
  9109. frontPoncho: {
  9110. height: math.unit(5 + 8 / 12, "feet"),
  9111. weight: math.unit(130, "lbs"),
  9112. name: "Front (Poncho)",
  9113. image: {
  9114. source: "./media/characters/corvin/front-poncho.svg",
  9115. extra: 1803 / 1629
  9116. }
  9117. },
  9118. side: {
  9119. height: math.unit(5 + 8 / 12, "feet"),
  9120. weight: math.unit(130, "lbs"),
  9121. name: "Side",
  9122. image: {
  9123. source: "./media/characters/corvin/side.svg",
  9124. extra: 1012 / 945
  9125. }
  9126. },
  9127. back: {
  9128. height: math.unit(5 + 8 / 12, "feet"),
  9129. weight: math.unit(130, "lbs"),
  9130. name: "Back",
  9131. image: {
  9132. source: "./media/characters/corvin/back.svg",
  9133. extra: 1803 / 1629
  9134. }
  9135. },
  9136. },
  9137. [
  9138. {
  9139. name: "Micro",
  9140. height: math.unit(3, "inches")
  9141. },
  9142. {
  9143. name: "Normal",
  9144. height: math.unit(5 + 8 / 12, "feet")
  9145. },
  9146. {
  9147. name: "Macro",
  9148. height: math.unit(300, "feet"),
  9149. default: true
  9150. },
  9151. {
  9152. name: "Megamacro",
  9153. height: math.unit(500, "miles")
  9154. }
  9155. ]
  9156. ))
  9157. characterMakers.push(() => makeCharacter(
  9158. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9159. {
  9160. front: {
  9161. height: math.unit(6, "feet"),
  9162. weight: math.unit(135, "lbs"),
  9163. name: "Front",
  9164. image: {
  9165. source: "./media/characters/q/front.svg",
  9166. extra: 854 / 752,
  9167. bottom: 0.005
  9168. }
  9169. },
  9170. back: {
  9171. height: math.unit(6, "feet"),
  9172. weight: math.unit(130, "lbs"),
  9173. name: "Back",
  9174. image: {
  9175. source: "./media/characters/q/back.svg",
  9176. extra: 854 / 752
  9177. }
  9178. },
  9179. },
  9180. [
  9181. {
  9182. name: "Macro",
  9183. height: math.unit(90, "feet"),
  9184. default: true
  9185. },
  9186. {
  9187. name: "Extra Macro",
  9188. height: math.unit(300, "feet"),
  9189. },
  9190. {
  9191. name: "BIG WALF",
  9192. height: math.unit(750, "feet"),
  9193. },
  9194. ]
  9195. ))
  9196. characterMakers.push(() => makeCharacter(
  9197. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9198. {
  9199. front: {
  9200. height: math.unit(3, "feet"),
  9201. weight: math.unit(28, "lbs"),
  9202. name: "Front",
  9203. image: {
  9204. source: "./media/characters/citrine/front.svg"
  9205. }
  9206. }
  9207. },
  9208. [
  9209. {
  9210. name: "Normal",
  9211. height: math.unit(3, "feet"),
  9212. default: true
  9213. }
  9214. ]
  9215. ))
  9216. characterMakers.push(() => makeCharacter(
  9217. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9218. {
  9219. front: {
  9220. height: math.unit(14, "feet"),
  9221. weight: math.unit(1450, "kg"),
  9222. preyCapacity: math.unit(15, "people"),
  9223. name: "Front",
  9224. image: {
  9225. source: "./media/characters/aura-starwind/front.svg",
  9226. extra: 1440/1327,
  9227. bottom: 11/1451
  9228. }
  9229. },
  9230. side: {
  9231. height: math.unit(14, "feet"),
  9232. weight: math.unit(1450, "kg"),
  9233. preyCapacity: math.unit(15, "people"),
  9234. name: "Side",
  9235. image: {
  9236. source: "./media/characters/aura-starwind/side.svg",
  9237. extra: 1654 / 1497
  9238. }
  9239. },
  9240. taur: {
  9241. height: math.unit(18, "feet"),
  9242. weight: math.unit(5500, "kg"),
  9243. preyCapacity: math.unit(50, "people"),
  9244. name: "Taur",
  9245. image: {
  9246. source: "./media/characters/aura-starwind/taur.svg",
  9247. extra: 1760 / 1650
  9248. }
  9249. },
  9250. feral: {
  9251. height: math.unit(46, "feet"),
  9252. weight: math.unit(25000, "kg"),
  9253. preyCapacity: math.unit(120, "people"),
  9254. name: "Feral",
  9255. image: {
  9256. source: "./media/characters/aura-starwind/feral.svg"
  9257. }
  9258. },
  9259. },
  9260. [
  9261. {
  9262. name: "Normal",
  9263. height: math.unit(14, "feet"),
  9264. default: true
  9265. },
  9266. {
  9267. name: "Macro",
  9268. height: math.unit(50, "meters")
  9269. },
  9270. {
  9271. name: "Megamacro",
  9272. height: math.unit(5000, "meters")
  9273. },
  9274. {
  9275. name: "Gigamacro",
  9276. height: math.unit(100000, "kilometers")
  9277. },
  9278. ]
  9279. ))
  9280. characterMakers.push(() => makeCharacter(
  9281. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9282. {
  9283. front: {
  9284. height: math.unit(2 + 7 / 12, "feet"),
  9285. weight: math.unit(32, "lbs"),
  9286. name: "Front",
  9287. image: {
  9288. source: "./media/characters/rivet/front.svg",
  9289. extra: 1716 / 1658,
  9290. bottom: 0.03
  9291. }
  9292. },
  9293. foot: {
  9294. height: math.unit(0.551, "feet"),
  9295. name: "Rivet's Foot",
  9296. image: {
  9297. source: "./media/characters/rivet/foot.svg"
  9298. },
  9299. rename: true
  9300. }
  9301. },
  9302. [
  9303. {
  9304. name: "Micro",
  9305. height: math.unit(1.5, "inches"),
  9306. },
  9307. {
  9308. name: "Normal",
  9309. height: math.unit(2 + 7 / 12, "feet"),
  9310. default: true
  9311. },
  9312. {
  9313. name: "Macro",
  9314. height: math.unit(85, "feet")
  9315. },
  9316. {
  9317. name: "Megamacro",
  9318. height: math.unit(2.2, "km")
  9319. }
  9320. ]
  9321. ))
  9322. characterMakers.push(() => makeCharacter(
  9323. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9324. {
  9325. front: {
  9326. height: math.unit(5 + 9 / 12, "feet"),
  9327. weight: math.unit(150, "lbs"),
  9328. name: "Front",
  9329. image: {
  9330. source: "./media/characters/coffee/front.svg",
  9331. extra: 946/880,
  9332. bottom: 66/1012
  9333. }
  9334. },
  9335. foot: {
  9336. height: math.unit(1.29, "feet"),
  9337. name: "Foot",
  9338. image: {
  9339. source: "./media/characters/coffee/foot.svg"
  9340. }
  9341. },
  9342. },
  9343. [
  9344. {
  9345. name: "Micro",
  9346. height: math.unit(2, "inches"),
  9347. },
  9348. {
  9349. name: "Normal",
  9350. height: math.unit(5 + 9 / 12, "feet"),
  9351. default: true
  9352. },
  9353. {
  9354. name: "Macro",
  9355. height: math.unit(800, "feet")
  9356. },
  9357. {
  9358. name: "Megamacro",
  9359. height: math.unit(25, "miles")
  9360. }
  9361. ]
  9362. ))
  9363. characterMakers.push(() => makeCharacter(
  9364. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9365. {
  9366. front: {
  9367. height: math.unit(6, "feet"),
  9368. weight: math.unit(200, "lbs"),
  9369. name: "Front",
  9370. image: {
  9371. source: "./media/characters/chari-gal/front.svg",
  9372. extra: 1568 / 1385,
  9373. bottom: 0.047
  9374. }
  9375. },
  9376. gigantamax: {
  9377. height: math.unit(6 * 16, "feet"),
  9378. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9379. name: "Gigantamax",
  9380. image: {
  9381. source: "./media/characters/chari-gal/gigantamax.svg",
  9382. extra: 1124 / 888,
  9383. bottom: 0.03
  9384. }
  9385. },
  9386. },
  9387. [
  9388. {
  9389. name: "Normal",
  9390. height: math.unit(5 + 7 / 12, "feet")
  9391. },
  9392. {
  9393. name: "Macro",
  9394. height: math.unit(200, "feet"),
  9395. default: true
  9396. }
  9397. ]
  9398. ))
  9399. characterMakers.push(() => makeCharacter(
  9400. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9401. {
  9402. front: {
  9403. height: math.unit(6, "feet"),
  9404. weight: math.unit(150, "lbs"),
  9405. name: "Front",
  9406. image: {
  9407. source: "./media/characters/nova/front.svg",
  9408. extra: 5000 / 4722,
  9409. bottom: 0.02
  9410. }
  9411. }
  9412. },
  9413. [
  9414. {
  9415. name: "Micro-",
  9416. height: math.unit(0.8, "inches")
  9417. },
  9418. {
  9419. name: "Micro",
  9420. height: math.unit(2, "inches"),
  9421. default: true
  9422. },
  9423. ]
  9424. ))
  9425. characterMakers.push(() => makeCharacter(
  9426. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9427. {
  9428. koboldFront: {
  9429. height: math.unit(3 + 1 / 12, "feet"),
  9430. weight: math.unit(21.7, "lbs"),
  9431. name: "Front",
  9432. image: {
  9433. source: "./media/characters/argent/kobold-front.svg",
  9434. extra: 1471 / 1331,
  9435. bottom: 100.8 / 1575.5
  9436. },
  9437. form: "kobold",
  9438. default: true
  9439. },
  9440. dragonFront: {
  9441. height: math.unit(75, "inches"),
  9442. name: "Front",
  9443. image: {
  9444. source: "./media/characters/argent/dragon-front.svg",
  9445. extra: 1389/1248,
  9446. bottom: 54/1443
  9447. },
  9448. form: "dragon",
  9449. },
  9450. dragonBack: {
  9451. height: math.unit(75, "inches"),
  9452. name: "Back",
  9453. image: {
  9454. source: "./media/characters/argent/dragon-back.svg",
  9455. extra: 1399/1271,
  9456. bottom: 23/1422
  9457. },
  9458. form: "dragon",
  9459. },
  9460. dragonDressed: {
  9461. height: math.unit(75, "inches"),
  9462. name: "Dressed",
  9463. image: {
  9464. source: "./media/characters/argent/dragon-dressed.svg",
  9465. extra: 1350/1215,
  9466. bottom: 26/1376
  9467. },
  9468. form: "dragon"
  9469. },
  9470. dragonHead: {
  9471. height: math.unit(23.5, "inches"),
  9472. name: "Head",
  9473. image: {
  9474. source: "./media/characters/argent/dragon-head.svg"
  9475. },
  9476. form: "dragon",
  9477. },
  9478. },
  9479. [
  9480. {
  9481. name: "Micro",
  9482. height: math.unit(2, "inches"),
  9483. form: "kobold",
  9484. },
  9485. {
  9486. name: "Normal",
  9487. height: math.unit(3 + 1 / 12, "feet"),
  9488. form: "kobold",
  9489. default: true
  9490. },
  9491. {
  9492. name: "Macro",
  9493. height: math.unit(120, "feet"),
  9494. form: "kobold",
  9495. },
  9496. {
  9497. name: "Speck",
  9498. height: math.unit(1, "mm"),
  9499. form: "dragon",
  9500. },
  9501. {
  9502. name: "Tiny",
  9503. height: math.unit(1, "cm"),
  9504. form: "dragon",
  9505. },
  9506. {
  9507. name: "Micro",
  9508. height: math.unit(5, "cm"),
  9509. form: "dragon",
  9510. },
  9511. {
  9512. name: "Normal",
  9513. height: math.unit(75, "inches"),
  9514. form: "dragon",
  9515. default: true
  9516. },
  9517. {
  9518. name: "Extra Tall",
  9519. height: math.unit(9, "feet"),
  9520. form: "dragon",
  9521. },
  9522. {
  9523. name: "Inconvenient",
  9524. height: math.unit(5, "meters"),
  9525. form: "dragon",
  9526. },
  9527. {
  9528. name: "Macro",
  9529. height: math.unit(70, "meters"),
  9530. form: "dragon",
  9531. },
  9532. {
  9533. name: "Macro+",
  9534. height: math.unit(250, "meters"),
  9535. form: "dragon",
  9536. },
  9537. {
  9538. name: "Megamacro",
  9539. height: math.unit(20, "km"),
  9540. form: "dragon",
  9541. },
  9542. {
  9543. name: "Mountainous",
  9544. height: math.unit(100, "km"),
  9545. form: "dragon",
  9546. },
  9547. {
  9548. name: "Continental",
  9549. height: math.unit(2, "megameters"),
  9550. form: "dragon",
  9551. },
  9552. {
  9553. name: "Too Big",
  9554. height: math.unit(900, "megameters"),
  9555. form: "dragon",
  9556. },
  9557. ],
  9558. {
  9559. "kobold": {
  9560. name: "Kobold",
  9561. default: true
  9562. },
  9563. "dragon": {
  9564. name: "Dragon",
  9565. },
  9566. }
  9567. ))
  9568. characterMakers.push(() => makeCharacter(
  9569. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9570. {
  9571. lamp: {
  9572. height: math.unit(7 * 1559 / 989, "feet"),
  9573. name: "Magic Lamp",
  9574. image: {
  9575. source: "./media/characters/mira-al-cul/lamp.svg",
  9576. extra: 1617 / 1559
  9577. }
  9578. },
  9579. front: {
  9580. height: math.unit(7, "feet"),
  9581. name: "Front",
  9582. image: {
  9583. source: "./media/characters/mira-al-cul/front.svg",
  9584. extra: 1044 / 990
  9585. }
  9586. },
  9587. },
  9588. [
  9589. {
  9590. name: "Heavily Restricted",
  9591. height: math.unit(7 * 1559 / 989, "feet")
  9592. },
  9593. {
  9594. name: "Freshly Freed",
  9595. height: math.unit(50 * 1559 / 989, "feet")
  9596. },
  9597. {
  9598. name: "World Encompassing",
  9599. height: math.unit(10000 * 1559 / 989, "miles")
  9600. },
  9601. {
  9602. name: "Galactic",
  9603. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9604. },
  9605. {
  9606. name: "Palmed Universe",
  9607. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9608. default: true
  9609. },
  9610. {
  9611. name: "Multiversal Matriarch",
  9612. height: math.unit(8.87e10, "yottameters")
  9613. },
  9614. {
  9615. name: "Void Mother",
  9616. height: math.unit(3.14e110, "yottaparsecs")
  9617. },
  9618. {
  9619. name: "Toying with Transcendence",
  9620. height: math.unit(1e307, "meters")
  9621. },
  9622. ]
  9623. ))
  9624. characterMakers.push(() => makeCharacter(
  9625. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9626. {
  9627. front: {
  9628. height: math.unit(17 + 1 / 12, "feet"),
  9629. weight: math.unit(476.2 * 5, "lbs"),
  9630. name: "Front",
  9631. image: {
  9632. source: "./media/characters/kuro-shi-uchū/front.svg",
  9633. extra: 2329 / 1835,
  9634. bottom: 0.02
  9635. }
  9636. },
  9637. },
  9638. [
  9639. {
  9640. name: "Micro",
  9641. height: math.unit(2, "inches")
  9642. },
  9643. {
  9644. name: "Normal",
  9645. height: math.unit(12, "meters")
  9646. },
  9647. {
  9648. name: "Planetary",
  9649. height: math.unit(0.00929, "AU"),
  9650. default: true
  9651. },
  9652. {
  9653. name: "Universal",
  9654. height: math.unit(20, "gigaparsecs")
  9655. },
  9656. ]
  9657. ))
  9658. characterMakers.push(() => makeCharacter(
  9659. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9660. {
  9661. front: {
  9662. height: math.unit(5 + 2 / 12, "feet"),
  9663. weight: math.unit(120, "lbs"),
  9664. name: "Front",
  9665. image: {
  9666. source: "./media/characters/katherine/front.svg",
  9667. extra: 2075 / 1969
  9668. }
  9669. },
  9670. dress: {
  9671. height: math.unit(5 + 2 / 12, "feet"),
  9672. weight: math.unit(120, "lbs"),
  9673. name: "Dress",
  9674. image: {
  9675. source: "./media/characters/katherine/dress.svg",
  9676. extra: 2258 / 2064
  9677. }
  9678. },
  9679. },
  9680. [
  9681. {
  9682. name: "Micro",
  9683. height: math.unit(1, "inches"),
  9684. default: true
  9685. },
  9686. {
  9687. name: "Normal",
  9688. height: math.unit(5 + 2 / 12, "feet")
  9689. },
  9690. {
  9691. name: "Macro",
  9692. height: math.unit(100, "meters")
  9693. },
  9694. {
  9695. name: "Megamacro",
  9696. height: math.unit(80, "miles")
  9697. },
  9698. ]
  9699. ))
  9700. characterMakers.push(() => makeCharacter(
  9701. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9702. {
  9703. front: {
  9704. height: math.unit(7 + 8 / 12, "feet"),
  9705. weight: math.unit(250, "lbs"),
  9706. name: "Front",
  9707. image: {
  9708. source: "./media/characters/yevis/front.svg",
  9709. extra: 1938 / 1755
  9710. }
  9711. }
  9712. },
  9713. [
  9714. {
  9715. name: "Mortal",
  9716. height: math.unit(7 + 8 / 12, "feet")
  9717. },
  9718. {
  9719. name: "Battle",
  9720. height: math.unit(25 + 11 / 12, "feet")
  9721. },
  9722. {
  9723. name: "Wrath",
  9724. height: math.unit(1654 + 11 / 12, "feet")
  9725. },
  9726. {
  9727. name: "Planet Destroyer",
  9728. height: math.unit(12000, "miles")
  9729. },
  9730. {
  9731. name: "Galaxy Conqueror",
  9732. height: math.unit(1.45, "zettameters"),
  9733. default: true
  9734. },
  9735. {
  9736. name: "Universal War",
  9737. height: math.unit(184, "gigaparsecs")
  9738. },
  9739. {
  9740. name: "Eternity War",
  9741. height: math.unit(1.98e55, "yottaparsecs")
  9742. },
  9743. ]
  9744. ))
  9745. characterMakers.push(() => makeCharacter(
  9746. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9747. {
  9748. front: {
  9749. height: math.unit(5 + 8 / 12, "feet"),
  9750. weight: math.unit(63, "kg"),
  9751. name: "Front",
  9752. image: {
  9753. source: "./media/characters/xavier/front.svg",
  9754. extra: 944 / 883
  9755. }
  9756. },
  9757. frontStretch: {
  9758. height: math.unit(5 + 8 / 12, "feet"),
  9759. weight: math.unit(63, "kg"),
  9760. name: "Stretching",
  9761. image: {
  9762. source: "./media/characters/xavier/front-stretch.svg",
  9763. extra: 962 / 820
  9764. }
  9765. },
  9766. },
  9767. [
  9768. {
  9769. name: "Normal",
  9770. height: math.unit(5 + 8 / 12, "feet")
  9771. },
  9772. {
  9773. name: "Macro",
  9774. height: math.unit(100, "meters"),
  9775. default: true
  9776. },
  9777. {
  9778. name: "McLargeHuge",
  9779. height: math.unit(10, "miles")
  9780. },
  9781. ]
  9782. ))
  9783. characterMakers.push(() => makeCharacter(
  9784. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9785. {
  9786. front: {
  9787. height: math.unit(5 + 5 / 12, "feet"),
  9788. weight: math.unit(150, "lb"),
  9789. name: "Front",
  9790. image: {
  9791. source: "./media/characters/joshii/front.svg",
  9792. extra: 765 / 653,
  9793. bottom: 51 / 816
  9794. }
  9795. },
  9796. foot: {
  9797. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9798. name: "Foot",
  9799. image: {
  9800. source: "./media/characters/joshii/foot.svg"
  9801. }
  9802. },
  9803. },
  9804. [
  9805. {
  9806. name: "Micro",
  9807. height: math.unit(2, "inches")
  9808. },
  9809. {
  9810. name: "Normal",
  9811. height: math.unit(5 + 5 / 12, "feet")
  9812. },
  9813. {
  9814. name: "Macro",
  9815. height: math.unit(785, "feet"),
  9816. default: true
  9817. },
  9818. {
  9819. name: "Megamacro",
  9820. height: math.unit(24.5, "miles")
  9821. },
  9822. ]
  9823. ))
  9824. characterMakers.push(() => makeCharacter(
  9825. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9826. {
  9827. front: {
  9828. height: math.unit(6, "feet"),
  9829. weight: math.unit(150, "lb"),
  9830. name: "Front",
  9831. image: {
  9832. source: "./media/characters/goddess-elizabeth/front.svg",
  9833. extra: 1800 / 1525,
  9834. bottom: 0.005
  9835. }
  9836. },
  9837. foot: {
  9838. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9839. name: "Foot",
  9840. image: {
  9841. source: "./media/characters/goddess-elizabeth/foot.svg"
  9842. }
  9843. },
  9844. mouth: {
  9845. height: math.unit(6, "feet"),
  9846. name: "Mouth",
  9847. image: {
  9848. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9849. }
  9850. },
  9851. },
  9852. [
  9853. {
  9854. name: "Micro",
  9855. height: math.unit(12, "feet")
  9856. },
  9857. {
  9858. name: "Normal",
  9859. height: math.unit(80, "miles"),
  9860. default: true
  9861. },
  9862. {
  9863. name: "Macro",
  9864. height: math.unit(15000, "parsecs")
  9865. },
  9866. ]
  9867. ))
  9868. characterMakers.push(() => makeCharacter(
  9869. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9870. {
  9871. front: {
  9872. height: math.unit(5 + 9 / 12, "feet"),
  9873. weight: math.unit(144, "lb"),
  9874. name: "Front",
  9875. image: {
  9876. source: "./media/characters/kara/front.svg"
  9877. }
  9878. },
  9879. feet: {
  9880. height: math.unit(6 / 6.765, "feet"),
  9881. name: "Kara's Feet",
  9882. rename: true,
  9883. image: {
  9884. source: "./media/characters/kara/feet.svg"
  9885. }
  9886. },
  9887. },
  9888. [
  9889. {
  9890. name: "Normal",
  9891. height: math.unit(5 + 9 / 12, "feet")
  9892. },
  9893. {
  9894. name: "Macro",
  9895. height: math.unit(174, "feet"),
  9896. default: true
  9897. },
  9898. ]
  9899. ))
  9900. characterMakers.push(() => makeCharacter(
  9901. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9902. {
  9903. front: {
  9904. height: math.unit(18, "feet"),
  9905. weight: math.unit(4050, "lb"),
  9906. name: "Front",
  9907. image: {
  9908. source: "./media/characters/tyrone/front.svg",
  9909. extra: 2405 / 2270,
  9910. bottom: 182 / 2587
  9911. }
  9912. },
  9913. },
  9914. [
  9915. {
  9916. name: "Normal",
  9917. height: math.unit(18, "feet"),
  9918. default: true
  9919. },
  9920. {
  9921. name: "Macro",
  9922. height: math.unit(300, "feet")
  9923. },
  9924. {
  9925. name: "Megamacro",
  9926. height: math.unit(15, "km")
  9927. },
  9928. {
  9929. name: "Gigamacro",
  9930. height: math.unit(500, "km")
  9931. },
  9932. {
  9933. name: "Teramacro",
  9934. height: math.unit(0.5, "gigameters")
  9935. },
  9936. {
  9937. name: "Omnimacro",
  9938. height: math.unit(1e252, "yottauniverse")
  9939. },
  9940. ]
  9941. ))
  9942. characterMakers.push(() => makeCharacter(
  9943. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9944. {
  9945. front: {
  9946. height: math.unit(7 + 8 / 12, "feet"),
  9947. weight: math.unit(120, "lb"),
  9948. name: "Front",
  9949. image: {
  9950. source: "./media/characters/danny/front.svg",
  9951. extra: 1490 / 1350
  9952. }
  9953. },
  9954. back: {
  9955. height: math.unit(7 + 8 / 12, "feet"),
  9956. weight: math.unit(120, "lb"),
  9957. name: "Back",
  9958. image: {
  9959. source: "./media/characters/danny/back.svg",
  9960. extra: 1490 / 1350
  9961. }
  9962. },
  9963. },
  9964. [
  9965. {
  9966. name: "Normal",
  9967. height: math.unit(7 + 8 / 12, "feet"),
  9968. default: true
  9969. },
  9970. ]
  9971. ))
  9972. characterMakers.push(() => makeCharacter(
  9973. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9974. {
  9975. front: {
  9976. height: math.unit(3.5, "inches"),
  9977. weight: math.unit(19, "grams"),
  9978. name: "Front",
  9979. image: {
  9980. source: "./media/characters/mallow/front.svg",
  9981. extra: 471 / 431
  9982. }
  9983. },
  9984. back: {
  9985. height: math.unit(3.5, "inches"),
  9986. weight: math.unit(19, "grams"),
  9987. name: "Back",
  9988. image: {
  9989. source: "./media/characters/mallow/back.svg",
  9990. extra: 471 / 431
  9991. }
  9992. },
  9993. },
  9994. [
  9995. {
  9996. name: "Normal",
  9997. height: math.unit(3.5, "inches"),
  9998. default: true
  9999. },
  10000. ]
  10001. ))
  10002. characterMakers.push(() => makeCharacter(
  10003. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10004. {
  10005. front: {
  10006. height: math.unit(9, "feet"),
  10007. weight: math.unit(230, "kg"),
  10008. name: "Front",
  10009. image: {
  10010. source: "./media/characters/starry-aqua/front.svg"
  10011. }
  10012. },
  10013. back: {
  10014. height: math.unit(9, "feet"),
  10015. weight: math.unit(230, "kg"),
  10016. name: "Back",
  10017. image: {
  10018. source: "./media/characters/starry-aqua/back.svg"
  10019. }
  10020. },
  10021. hand: {
  10022. height: math.unit(9 * 0.1168, "feet"),
  10023. name: "Hand",
  10024. image: {
  10025. source: "./media/characters/starry-aqua/hand.svg"
  10026. }
  10027. },
  10028. foot: {
  10029. height: math.unit(9 * 0.18, "feet"),
  10030. name: "Foot",
  10031. image: {
  10032. source: "./media/characters/starry-aqua/foot.svg"
  10033. }
  10034. }
  10035. },
  10036. [
  10037. {
  10038. name: "Micro",
  10039. height: math.unit(3, "inches")
  10040. },
  10041. {
  10042. name: "Normal",
  10043. height: math.unit(9, "feet")
  10044. },
  10045. {
  10046. name: "Macro",
  10047. height: math.unit(300, "feet"),
  10048. default: true
  10049. },
  10050. {
  10051. name: "Megamacro",
  10052. height: math.unit(3200, "feet")
  10053. }
  10054. ]
  10055. ))
  10056. characterMakers.push(() => makeCharacter(
  10057. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10058. {
  10059. front: {
  10060. height: math.unit(15, "feet"),
  10061. weight: math.unit(5026, "lb"),
  10062. name: "Front",
  10063. image: {
  10064. source: "./media/characters/luka-towers/front.svg",
  10065. extra: 1269/1133,
  10066. bottom: 51/1320
  10067. }
  10068. },
  10069. },
  10070. [
  10071. {
  10072. name: "Normal",
  10073. height: math.unit(15, "feet"),
  10074. default: true
  10075. },
  10076. {
  10077. name: "Minimacro",
  10078. height: math.unit(25, "feet")
  10079. },
  10080. {
  10081. name: "Macro",
  10082. height: math.unit(320, "feet")
  10083. },
  10084. {
  10085. name: "Megamacro",
  10086. height: math.unit(35000, "feet")
  10087. },
  10088. {
  10089. name: "Gigamacro",
  10090. height: math.unit(4000, "miles")
  10091. },
  10092. {
  10093. name: "Teramacro",
  10094. height: math.unit(15000, "miles")
  10095. },
  10096. ]
  10097. ))
  10098. characterMakers.push(() => makeCharacter(
  10099. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10100. {
  10101. front: {
  10102. height: math.unit(6, "feet"),
  10103. weight: math.unit(150, "lb"),
  10104. name: "Front",
  10105. image: {
  10106. source: "./media/characters/natalie-nightring/front.svg",
  10107. extra: 1,
  10108. bottom: 0.06
  10109. }
  10110. },
  10111. },
  10112. [
  10113. {
  10114. name: "Uh Oh",
  10115. height: math.unit(0.1, "mm")
  10116. },
  10117. {
  10118. name: "Small",
  10119. height: math.unit(3, "inches")
  10120. },
  10121. {
  10122. name: "Human Scale",
  10123. height: math.unit(6, "feet")
  10124. },
  10125. {
  10126. name: "Librarian",
  10127. height: math.unit(50, "feet"),
  10128. default: true
  10129. },
  10130. {
  10131. name: "Immense",
  10132. height: math.unit(200, "miles")
  10133. },
  10134. ]
  10135. ))
  10136. characterMakers.push(() => makeCharacter(
  10137. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10138. {
  10139. front: {
  10140. height: math.unit(6, "feet"),
  10141. weight: math.unit(180, "lbs"),
  10142. name: "Front",
  10143. image: {
  10144. source: "./media/characters/danni-rosie/front.svg",
  10145. extra: 1260 / 1128,
  10146. bottom: 0.022
  10147. }
  10148. },
  10149. },
  10150. [
  10151. {
  10152. name: "Micro",
  10153. height: math.unit(2, "inches"),
  10154. default: true
  10155. },
  10156. ]
  10157. ))
  10158. characterMakers.push(() => makeCharacter(
  10159. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10160. {
  10161. front: {
  10162. height: math.unit(5 + 9 / 12, "feet"),
  10163. weight: math.unit(220, "lb"),
  10164. name: "Front",
  10165. image: {
  10166. source: "./media/characters/samantha-kruse/front.svg",
  10167. extra: (985 / 935),
  10168. bottom: 0.03
  10169. }
  10170. },
  10171. frontUndressed: {
  10172. height: math.unit(5 + 9 / 12, "feet"),
  10173. weight: math.unit(220, "lb"),
  10174. name: "Front (Undressed)",
  10175. image: {
  10176. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10177. extra: (973 / 923),
  10178. bottom: 0.025
  10179. }
  10180. },
  10181. fat: {
  10182. height: math.unit(5 + 9 / 12, "feet"),
  10183. weight: math.unit(900, "lb"),
  10184. name: "Front (Fat)",
  10185. image: {
  10186. source: "./media/characters/samantha-kruse/fat.svg",
  10187. extra: 2688 / 2561
  10188. }
  10189. },
  10190. },
  10191. [
  10192. {
  10193. name: "Normal",
  10194. height: math.unit(5 + 9 / 12, "feet"),
  10195. default: true
  10196. }
  10197. ]
  10198. ))
  10199. characterMakers.push(() => makeCharacter(
  10200. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10201. {
  10202. back: {
  10203. height: math.unit(5 + 4 / 12, "feet"),
  10204. weight: math.unit(4963, "lb"),
  10205. name: "Back",
  10206. image: {
  10207. source: "./media/characters/amelia-rosie/back.svg",
  10208. extra: 1113 / 963,
  10209. bottom: 0.01
  10210. }
  10211. },
  10212. },
  10213. [
  10214. {
  10215. name: "Level 0",
  10216. height: math.unit(5 + 4 / 12, "feet")
  10217. },
  10218. {
  10219. name: "Level 1",
  10220. height: math.unit(164597, "feet"),
  10221. default: true
  10222. },
  10223. {
  10224. name: "Level 2",
  10225. height: math.unit(956243, "miles")
  10226. },
  10227. {
  10228. name: "Level 3",
  10229. height: math.unit(29421709423, "miles")
  10230. },
  10231. {
  10232. name: "Level 4",
  10233. height: math.unit(154, "lightyears")
  10234. },
  10235. {
  10236. name: "Level 5",
  10237. height: math.unit(4738272, "lightyears")
  10238. },
  10239. {
  10240. name: "Level 6",
  10241. height: math.unit(145787152896, "lightyears")
  10242. },
  10243. ]
  10244. ))
  10245. characterMakers.push(() => makeCharacter(
  10246. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10247. {
  10248. front: {
  10249. height: math.unit(5 + 11 / 12, "feet"),
  10250. weight: math.unit(65, "kg"),
  10251. name: "Front",
  10252. image: {
  10253. source: "./media/characters/rook-kitara/front.svg",
  10254. extra: 1347 / 1274,
  10255. bottom: 0.005
  10256. }
  10257. },
  10258. },
  10259. [
  10260. {
  10261. name: "Totally Unfair",
  10262. height: math.unit(1.8, "mm")
  10263. },
  10264. {
  10265. name: "Lap Rookie",
  10266. height: math.unit(1.4, "feet")
  10267. },
  10268. {
  10269. name: "Normal",
  10270. height: math.unit(5 + 11 / 12, "feet"),
  10271. default: true
  10272. },
  10273. {
  10274. name: "How Did This Happen",
  10275. height: math.unit(80, "miles")
  10276. }
  10277. ]
  10278. ))
  10279. characterMakers.push(() => makeCharacter(
  10280. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10281. {
  10282. front: {
  10283. height: math.unit(7, "feet"),
  10284. weight: math.unit(300, "lb"),
  10285. name: "Front",
  10286. image: {
  10287. source: "./media/characters/pisces/front.svg",
  10288. extra: 2255 / 2115,
  10289. bottom: 0.03
  10290. }
  10291. },
  10292. back: {
  10293. height: math.unit(7, "feet"),
  10294. weight: math.unit(300, "lb"),
  10295. name: "Back",
  10296. image: {
  10297. source: "./media/characters/pisces/back.svg",
  10298. extra: 2146 / 2055,
  10299. bottom: 0.04
  10300. }
  10301. },
  10302. },
  10303. [
  10304. {
  10305. name: "Normal",
  10306. height: math.unit(7, "feet"),
  10307. default: true
  10308. },
  10309. {
  10310. name: "Swimming Pool",
  10311. height: math.unit(12.2, "meters")
  10312. },
  10313. {
  10314. name: "Olympic Swimming Pool",
  10315. height: math.unit(56.3, "meters")
  10316. },
  10317. {
  10318. name: "Lake Superior",
  10319. height: math.unit(93900, "meters")
  10320. },
  10321. {
  10322. name: "Mediterranean Sea",
  10323. height: math.unit(644457, "meters")
  10324. },
  10325. {
  10326. name: "World's Oceans",
  10327. height: math.unit(4567491, "meters")
  10328. },
  10329. ]
  10330. ))
  10331. characterMakers.push(() => makeCharacter(
  10332. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10333. {
  10334. front: {
  10335. height: math.unit(2.3, "meters"),
  10336. weight: math.unit(120, "kg"),
  10337. name: "Front",
  10338. image: {
  10339. source: "./media/characters/zelas/front.svg"
  10340. }
  10341. },
  10342. side: {
  10343. height: math.unit(2.3, "meters"),
  10344. weight: math.unit(120, "kg"),
  10345. name: "Side",
  10346. image: {
  10347. source: "./media/characters/zelas/side.svg"
  10348. }
  10349. },
  10350. back: {
  10351. height: math.unit(2.3, "meters"),
  10352. weight: math.unit(120, "kg"),
  10353. name: "Back",
  10354. image: {
  10355. source: "./media/characters/zelas/back.svg"
  10356. }
  10357. },
  10358. foot: {
  10359. height: math.unit(1.116, "feet"),
  10360. name: "Foot",
  10361. image: {
  10362. source: "./media/characters/zelas/foot.svg"
  10363. }
  10364. },
  10365. },
  10366. [
  10367. {
  10368. name: "Normal",
  10369. height: math.unit(2.3, "meters")
  10370. },
  10371. {
  10372. name: "Macro",
  10373. height: math.unit(30, "meters"),
  10374. default: true
  10375. },
  10376. ]
  10377. ))
  10378. characterMakers.push(() => makeCharacter(
  10379. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10380. {
  10381. front: {
  10382. height: math.unit(1, "inch"),
  10383. weight: math.unit(0.21, "grams"),
  10384. name: "Front",
  10385. image: {
  10386. source: "./media/characters/talbot/front.svg",
  10387. extra: 594 / 544
  10388. }
  10389. },
  10390. },
  10391. [
  10392. {
  10393. name: "Micro",
  10394. height: math.unit(1, "inch"),
  10395. default: true
  10396. },
  10397. ]
  10398. ))
  10399. characterMakers.push(() => makeCharacter(
  10400. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10401. {
  10402. front: {
  10403. height: math.unit(3 + 3 / 12, "feet"),
  10404. weight: math.unit(51.8, "lb"),
  10405. name: "Front",
  10406. image: {
  10407. source: "./media/characters/fliss/front.svg",
  10408. extra: 840 / 640
  10409. }
  10410. },
  10411. },
  10412. [
  10413. {
  10414. name: "Teeny Tiny",
  10415. height: math.unit(1, "mm")
  10416. },
  10417. {
  10418. name: "Small",
  10419. height: math.unit(1, "inch"),
  10420. default: true
  10421. },
  10422. {
  10423. name: "Standard Sylveon",
  10424. height: math.unit(3 + 3 / 12, "feet")
  10425. },
  10426. {
  10427. name: "Large Nuisance",
  10428. height: math.unit(33, "feet")
  10429. },
  10430. {
  10431. name: "City Filler",
  10432. height: math.unit(3000, "feet")
  10433. },
  10434. {
  10435. name: "New Horizon",
  10436. height: math.unit(6000, "miles")
  10437. },
  10438. ]
  10439. ))
  10440. characterMakers.push(() => makeCharacter(
  10441. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10442. {
  10443. front: {
  10444. height: math.unit(5, "cm"),
  10445. weight: math.unit(1.94, "g"),
  10446. name: "Front",
  10447. image: {
  10448. source: "./media/characters/fleta/front.svg",
  10449. extra: 835 / 803
  10450. }
  10451. },
  10452. back: {
  10453. height: math.unit(5, "cm"),
  10454. weight: math.unit(1.94, "g"),
  10455. name: "Back",
  10456. image: {
  10457. source: "./media/characters/fleta/back.svg",
  10458. extra: 835 / 803
  10459. }
  10460. },
  10461. },
  10462. [
  10463. {
  10464. name: "Micro",
  10465. height: math.unit(5, "cm"),
  10466. default: true
  10467. },
  10468. ]
  10469. ))
  10470. characterMakers.push(() => makeCharacter(
  10471. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10472. {
  10473. front: {
  10474. height: math.unit(6, "feet"),
  10475. weight: math.unit(225, "lb"),
  10476. name: "Front",
  10477. image: {
  10478. source: "./media/characters/dominic/front.svg",
  10479. extra: 1770 / 1620,
  10480. bottom: 0.025
  10481. }
  10482. },
  10483. back: {
  10484. height: math.unit(6, "feet"),
  10485. weight: math.unit(225, "lb"),
  10486. name: "Back",
  10487. image: {
  10488. source: "./media/characters/dominic/back.svg",
  10489. extra: 1745 / 1620,
  10490. bottom: 0.065
  10491. }
  10492. },
  10493. },
  10494. [
  10495. {
  10496. name: "Nano",
  10497. height: math.unit(0.1, "mm")
  10498. },
  10499. {
  10500. name: "Micro-",
  10501. height: math.unit(1, "mm")
  10502. },
  10503. {
  10504. name: "Micro",
  10505. height: math.unit(4, "inches")
  10506. },
  10507. {
  10508. name: "Normal",
  10509. height: math.unit(6 + 4 / 12, "feet"),
  10510. default: true
  10511. },
  10512. {
  10513. name: "Macro",
  10514. height: math.unit(115, "feet")
  10515. },
  10516. {
  10517. name: "Macro+",
  10518. height: math.unit(955, "feet")
  10519. },
  10520. {
  10521. name: "Megamacro",
  10522. height: math.unit(8990, "feet")
  10523. },
  10524. {
  10525. name: "Gigmacro",
  10526. height: math.unit(9310, "miles")
  10527. },
  10528. {
  10529. name: "Teramacro",
  10530. height: math.unit(1567005010, "miles")
  10531. },
  10532. {
  10533. name: "Examacro",
  10534. height: math.unit(1425, "parsecs")
  10535. },
  10536. ]
  10537. ))
  10538. characterMakers.push(() => makeCharacter(
  10539. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10540. {
  10541. front: {
  10542. height: math.unit(400, "feet"),
  10543. weight: math.unit(44444444, "lb"),
  10544. name: "Front",
  10545. image: {
  10546. source: "./media/characters/major-colonel/front.svg"
  10547. }
  10548. },
  10549. back: {
  10550. height: math.unit(400, "feet"),
  10551. weight: math.unit(44444444, "lb"),
  10552. name: "Back",
  10553. image: {
  10554. source: "./media/characters/major-colonel/back.svg"
  10555. }
  10556. },
  10557. },
  10558. [
  10559. {
  10560. name: "Macro",
  10561. height: math.unit(400, "feet"),
  10562. default: true
  10563. },
  10564. ]
  10565. ))
  10566. characterMakers.push(() => makeCharacter(
  10567. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10568. {
  10569. catFront: {
  10570. height: math.unit(6, "feet"),
  10571. weight: math.unit(120, "lb"),
  10572. name: "Front (Cat Side)",
  10573. image: {
  10574. source: "./media/characters/axel-lycan/cat-front.svg",
  10575. extra: 430 / 402,
  10576. bottom: 43 / 472.35
  10577. }
  10578. },
  10579. catBack: {
  10580. height: math.unit(6, "feet"),
  10581. weight: math.unit(120, "lb"),
  10582. name: "Back (Cat Side)",
  10583. image: {
  10584. source: "./media/characters/axel-lycan/cat-back.svg",
  10585. extra: 447 / 419,
  10586. bottom: 23.3 / 469
  10587. }
  10588. },
  10589. wolfFront: {
  10590. height: math.unit(6, "feet"),
  10591. weight: math.unit(120, "lb"),
  10592. name: "Front (Wolf Side)",
  10593. image: {
  10594. source: "./media/characters/axel-lycan/wolf-front.svg",
  10595. extra: 485 / 456,
  10596. bottom: 19 / 504
  10597. }
  10598. },
  10599. wolfBack: {
  10600. height: math.unit(6, "feet"),
  10601. weight: math.unit(120, "lb"),
  10602. name: "Back (Wolf Side)",
  10603. image: {
  10604. source: "./media/characters/axel-lycan/wolf-back.svg",
  10605. extra: 475 / 438,
  10606. bottom: 39.2 / 514
  10607. }
  10608. },
  10609. },
  10610. [
  10611. {
  10612. name: "Macro",
  10613. height: math.unit(1, "km"),
  10614. default: true
  10615. },
  10616. ]
  10617. ))
  10618. characterMakers.push(() => makeCharacter(
  10619. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10620. {
  10621. front: {
  10622. height: math.unit(5 + 9 / 12, "feet"),
  10623. weight: math.unit(175, "lb"),
  10624. name: "Front",
  10625. image: {
  10626. source: "./media/characters/vanrel-hyena/front.svg",
  10627. extra: 1086 / 1010,
  10628. bottom: 0.04
  10629. }
  10630. },
  10631. },
  10632. [
  10633. {
  10634. name: "Normal",
  10635. height: math.unit(5 + 9 / 12, "feet"),
  10636. default: true
  10637. },
  10638. ]
  10639. ))
  10640. characterMakers.push(() => makeCharacter(
  10641. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10642. {
  10643. front: {
  10644. height: math.unit(6, "feet"),
  10645. weight: math.unit(103, "lb"),
  10646. name: "Front",
  10647. image: {
  10648. source: "./media/characters/abbott-absol/front.svg",
  10649. extra: 2010 / 1842
  10650. }
  10651. },
  10652. },
  10653. [
  10654. {
  10655. name: "Megamicro",
  10656. height: math.unit(0.1, "mm")
  10657. },
  10658. {
  10659. name: "Micro",
  10660. height: math.unit(1, "inch")
  10661. },
  10662. {
  10663. name: "Normal",
  10664. height: math.unit(6, "feet"),
  10665. default: true
  10666. },
  10667. ]
  10668. ))
  10669. characterMakers.push(() => makeCharacter(
  10670. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10671. {
  10672. front: {
  10673. height: math.unit(6, "feet"),
  10674. weight: math.unit(264, "lb"),
  10675. name: "Front",
  10676. image: {
  10677. source: "./media/characters/hector/front.svg",
  10678. extra: 2280 / 2130,
  10679. bottom: 0.07
  10680. }
  10681. },
  10682. },
  10683. [
  10684. {
  10685. name: "Normal",
  10686. height: math.unit(12.25, "foot"),
  10687. default: true
  10688. },
  10689. {
  10690. name: "Macro",
  10691. height: math.unit(160, "feet")
  10692. },
  10693. ]
  10694. ))
  10695. characterMakers.push(() => makeCharacter(
  10696. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10697. {
  10698. front: {
  10699. height: math.unit(6, "feet"),
  10700. weight: math.unit(150, "lb"),
  10701. name: "Front",
  10702. image: {
  10703. source: "./media/characters/sal/front.svg",
  10704. extra: 1846 / 1699,
  10705. bottom: 0.04
  10706. }
  10707. },
  10708. },
  10709. [
  10710. {
  10711. name: "Megamacro",
  10712. height: math.unit(10, "miles"),
  10713. default: true
  10714. },
  10715. ]
  10716. ))
  10717. characterMakers.push(() => makeCharacter(
  10718. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10719. {
  10720. front: {
  10721. height: math.unit(3, "meters"),
  10722. weight: math.unit(450, "kg"),
  10723. name: "front",
  10724. image: {
  10725. source: "./media/characters/ranger/front.svg",
  10726. extra: 2401 / 2243,
  10727. bottom: 0.05
  10728. }
  10729. },
  10730. },
  10731. [
  10732. {
  10733. name: "Normal",
  10734. height: math.unit(3, "meters"),
  10735. default: true
  10736. },
  10737. ]
  10738. ))
  10739. characterMakers.push(() => makeCharacter(
  10740. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10741. {
  10742. front: {
  10743. height: math.unit(14, "feet"),
  10744. weight: math.unit(800, "kg"),
  10745. name: "Front",
  10746. image: {
  10747. source: "./media/characters/theresa/front.svg",
  10748. extra: 3575 / 3346,
  10749. bottom: 0.03
  10750. }
  10751. },
  10752. },
  10753. [
  10754. {
  10755. name: "Normal",
  10756. height: math.unit(14, "feet"),
  10757. default: true
  10758. },
  10759. ]
  10760. ))
  10761. characterMakers.push(() => makeCharacter(
  10762. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10763. {
  10764. front: {
  10765. height: math.unit(6, "feet"),
  10766. weight: math.unit(3, "kg"),
  10767. name: "Front",
  10768. image: {
  10769. source: "./media/characters/ine/front.svg",
  10770. extra: 678 / 539,
  10771. bottom: 0.023
  10772. }
  10773. },
  10774. },
  10775. [
  10776. {
  10777. name: "Normal",
  10778. height: math.unit(2.265, "feet"),
  10779. default: true
  10780. },
  10781. ]
  10782. ))
  10783. characterMakers.push(() => makeCharacter(
  10784. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10785. {
  10786. front: {
  10787. height: math.unit(5, "feet"),
  10788. weight: math.unit(30, "kg"),
  10789. name: "Front",
  10790. image: {
  10791. source: "./media/characters/vial/front.svg",
  10792. extra: 1365 / 1277,
  10793. bottom: 0.04
  10794. }
  10795. },
  10796. },
  10797. [
  10798. {
  10799. name: "Normal",
  10800. height: math.unit(5, "feet"),
  10801. default: true
  10802. },
  10803. ]
  10804. ))
  10805. characterMakers.push(() => makeCharacter(
  10806. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10807. {
  10808. side: {
  10809. height: math.unit(3.4, "meters"),
  10810. weight: math.unit(1000, "lb"),
  10811. name: "Side",
  10812. image: {
  10813. source: "./media/characters/rovoska/side.svg",
  10814. extra: 4403 / 1515
  10815. }
  10816. },
  10817. },
  10818. [
  10819. {
  10820. name: "Normal",
  10821. height: math.unit(3.4, "meters"),
  10822. default: true
  10823. },
  10824. ]
  10825. ))
  10826. characterMakers.push(() => makeCharacter(
  10827. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10828. {
  10829. front: {
  10830. height: math.unit(8, "feet"),
  10831. weight: math.unit(315, "lb"),
  10832. name: "Front",
  10833. image: {
  10834. source: "./media/characters/gunner-rotthbauer/front.svg"
  10835. }
  10836. },
  10837. back: {
  10838. height: math.unit(8, "feet"),
  10839. weight: math.unit(315, "lb"),
  10840. name: "Back",
  10841. image: {
  10842. source: "./media/characters/gunner-rotthbauer/back.svg"
  10843. }
  10844. },
  10845. },
  10846. [
  10847. {
  10848. name: "Micro",
  10849. height: math.unit(3.5, "inches")
  10850. },
  10851. {
  10852. name: "Normal",
  10853. height: math.unit(8, "feet"),
  10854. default: true
  10855. },
  10856. {
  10857. name: "Macro",
  10858. height: math.unit(250, "feet")
  10859. },
  10860. {
  10861. name: "Megamacro",
  10862. height: math.unit(1, "AU")
  10863. },
  10864. ]
  10865. ))
  10866. characterMakers.push(() => makeCharacter(
  10867. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10868. {
  10869. front: {
  10870. height: math.unit(5 + 5 / 12, "feet"),
  10871. weight: math.unit(140, "lb"),
  10872. name: "Front",
  10873. image: {
  10874. source: "./media/characters/allatia/front.svg",
  10875. extra: 1227 / 1180,
  10876. bottom: 0.027
  10877. }
  10878. },
  10879. },
  10880. [
  10881. {
  10882. name: "Normal",
  10883. height: math.unit(5 + 5 / 12, "feet")
  10884. },
  10885. {
  10886. name: "Macro",
  10887. height: math.unit(250, "feet"),
  10888. default: true
  10889. },
  10890. {
  10891. name: "Megamacro",
  10892. height: math.unit(8, "miles")
  10893. }
  10894. ]
  10895. ))
  10896. characterMakers.push(() => makeCharacter(
  10897. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10898. {
  10899. front: {
  10900. height: math.unit(6, "feet"),
  10901. weight: math.unit(120, "lb"),
  10902. name: "Front",
  10903. image: {
  10904. source: "./media/characters/tene/front.svg",
  10905. extra: 814/750,
  10906. bottom: 36/850
  10907. }
  10908. },
  10909. stomping: {
  10910. height: math.unit(2.025, "meters"),
  10911. weight: math.unit(120, "lb"),
  10912. name: "Stomping",
  10913. image: {
  10914. source: "./media/characters/tene/stomping.svg",
  10915. extra: 885/821,
  10916. bottom: 15/900
  10917. }
  10918. },
  10919. sitting: {
  10920. height: math.unit(1, "meter"),
  10921. weight: math.unit(120, "lb"),
  10922. name: "Sitting",
  10923. image: {
  10924. source: "./media/characters/tene/sitting.svg",
  10925. extra: 396/366,
  10926. bottom: 79/475
  10927. }
  10928. },
  10929. smiling: {
  10930. height: math.unit(1.2, "feet"),
  10931. name: "Smiling",
  10932. image: {
  10933. source: "./media/characters/tene/smiling.svg",
  10934. extra: 1364/1071,
  10935. bottom: 0/1364
  10936. }
  10937. },
  10938. smug: {
  10939. height: math.unit(1.3, "feet"),
  10940. name: "Smug",
  10941. image: {
  10942. source: "./media/characters/tene/smug.svg",
  10943. extra: 1323/1082,
  10944. bottom: 0/1323
  10945. }
  10946. },
  10947. feral: {
  10948. height: math.unit(3.9, "feet"),
  10949. weight: math.unit(250, "lb"),
  10950. name: "Feral",
  10951. image: {
  10952. source: "./media/characters/tene/feral.svg",
  10953. extra: 717 / 458,
  10954. bottom: 0.179
  10955. }
  10956. },
  10957. },
  10958. [
  10959. {
  10960. name: "Normal",
  10961. height: math.unit(6, "feet")
  10962. },
  10963. {
  10964. name: "Macro",
  10965. height: math.unit(300, "feet"),
  10966. default: true
  10967. },
  10968. {
  10969. name: "Megamacro",
  10970. height: math.unit(5, "miles")
  10971. },
  10972. ]
  10973. ))
  10974. characterMakers.push(() => makeCharacter(
  10975. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10976. {
  10977. side: {
  10978. height: math.unit(6, "feet"),
  10979. name: "Side",
  10980. image: {
  10981. source: "./media/characters/evander/side.svg",
  10982. extra: 877 / 477
  10983. }
  10984. },
  10985. },
  10986. [
  10987. {
  10988. name: "Normal",
  10989. height: math.unit(0.83, "meters"),
  10990. default: true
  10991. },
  10992. ]
  10993. ))
  10994. characterMakers.push(() => makeCharacter(
  10995. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10996. {
  10997. front: {
  10998. height: math.unit(12, "feet"),
  10999. weight: math.unit(1000, "lb"),
  11000. name: "Front",
  11001. image: {
  11002. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11003. extra: 1762 / 1611
  11004. }
  11005. },
  11006. back: {
  11007. height: math.unit(12, "feet"),
  11008. weight: math.unit(1000, "lb"),
  11009. name: "Back",
  11010. image: {
  11011. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11012. extra: 1762 / 1611
  11013. }
  11014. },
  11015. },
  11016. [
  11017. {
  11018. name: "Normal",
  11019. height: math.unit(12, "feet"),
  11020. default: true
  11021. },
  11022. {
  11023. name: "Kaiju",
  11024. height: math.unit(150, "feet")
  11025. },
  11026. ]
  11027. ))
  11028. characterMakers.push(() => makeCharacter(
  11029. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11030. {
  11031. front: {
  11032. height: math.unit(6, "feet"),
  11033. weight: math.unit(150, "lb"),
  11034. name: "Front",
  11035. image: {
  11036. source: "./media/characters/zero-alurus/front.svg"
  11037. }
  11038. },
  11039. back: {
  11040. height: math.unit(6, "feet"),
  11041. weight: math.unit(150, "lb"),
  11042. name: "Back",
  11043. image: {
  11044. source: "./media/characters/zero-alurus/back.svg"
  11045. }
  11046. },
  11047. },
  11048. [
  11049. {
  11050. name: "Normal",
  11051. height: math.unit(5 + 10 / 12, "feet")
  11052. },
  11053. {
  11054. name: "Macro",
  11055. height: math.unit(60, "feet"),
  11056. default: true
  11057. },
  11058. {
  11059. name: "Macro+",
  11060. height: math.unit(450, "feet")
  11061. },
  11062. ]
  11063. ))
  11064. characterMakers.push(() => makeCharacter(
  11065. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11066. {
  11067. front: {
  11068. height: math.unit(6, "feet"),
  11069. weight: math.unit(200, "lb"),
  11070. name: "Front",
  11071. image: {
  11072. source: "./media/characters/mega-shi/front.svg",
  11073. extra: 1279 / 1250,
  11074. bottom: 0.02
  11075. }
  11076. },
  11077. back: {
  11078. height: math.unit(6, "feet"),
  11079. weight: math.unit(200, "lb"),
  11080. name: "Back",
  11081. image: {
  11082. source: "./media/characters/mega-shi/back.svg",
  11083. extra: 1279 / 1250,
  11084. bottom: 0.02
  11085. }
  11086. },
  11087. },
  11088. [
  11089. {
  11090. name: "Micro",
  11091. height: math.unit(16 + 6 / 12, "feet")
  11092. },
  11093. {
  11094. name: "Third Dimension",
  11095. height: math.unit(40, "meters")
  11096. },
  11097. {
  11098. name: "Normal",
  11099. height: math.unit(660, "feet"),
  11100. default: true
  11101. },
  11102. {
  11103. name: "Megamacro",
  11104. height: math.unit(10, "miles")
  11105. },
  11106. {
  11107. name: "Planetary Launch",
  11108. height: math.unit(500, "miles")
  11109. },
  11110. {
  11111. name: "Interstellar",
  11112. height: math.unit(1e9, "miles")
  11113. },
  11114. {
  11115. name: "Leaving the Universe",
  11116. height: math.unit(1, "gigaparsec")
  11117. },
  11118. {
  11119. name: "Travelling Universes",
  11120. height: math.unit(30e15, "parsecs")
  11121. },
  11122. ]
  11123. ))
  11124. characterMakers.push(() => makeCharacter(
  11125. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11126. {
  11127. front: {
  11128. height: math.unit(5 + 4/12, "feet"),
  11129. weight: math.unit(120, "lb"),
  11130. name: "Front",
  11131. image: {
  11132. source: "./media/characters/odyssey/front.svg",
  11133. extra: 1747/1571,
  11134. bottom: 47/1794
  11135. }
  11136. },
  11137. side: {
  11138. height: math.unit(5.1, "feet"),
  11139. weight: math.unit(120, "lb"),
  11140. name: "Side",
  11141. image: {
  11142. source: "./media/characters/odyssey/side.svg",
  11143. extra: 1847/1619,
  11144. bottom: 47/1894
  11145. }
  11146. },
  11147. lounging: {
  11148. height: math.unit(1.464, "feet"),
  11149. weight: math.unit(120, "lb"),
  11150. name: "Lounging",
  11151. image: {
  11152. source: "./media/characters/odyssey/lounging.svg",
  11153. extra: 1235/837,
  11154. bottom: 551/1786
  11155. }
  11156. },
  11157. },
  11158. [
  11159. {
  11160. name: "Normal",
  11161. height: math.unit(5 + 4 / 12, "feet")
  11162. },
  11163. {
  11164. name: "Macro",
  11165. height: math.unit(1, "km")
  11166. },
  11167. {
  11168. name: "Megamacro",
  11169. height: math.unit(3000, "km")
  11170. },
  11171. {
  11172. name: "Gigamacro",
  11173. height: math.unit(1, "AU"),
  11174. default: true
  11175. },
  11176. {
  11177. name: "Omniversal",
  11178. height: math.unit(100e14, "lightyears")
  11179. },
  11180. ]
  11181. ))
  11182. characterMakers.push(() => makeCharacter(
  11183. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11184. {
  11185. front: {
  11186. height: math.unit(5 + 10/12, "feet"),
  11187. name: "Front",
  11188. image: {
  11189. source: "./media/characters/mekuto/front.svg",
  11190. extra: 875/835,
  11191. bottom: 46/921
  11192. }
  11193. },
  11194. },
  11195. [
  11196. {
  11197. name: "Minimicro",
  11198. height: math.unit(0.2, "inches")
  11199. },
  11200. {
  11201. name: "Micro",
  11202. height: math.unit(1.5, "inches")
  11203. },
  11204. {
  11205. name: "Normal",
  11206. height: math.unit(5 + 10 / 12, "feet"),
  11207. default: true
  11208. },
  11209. {
  11210. name: "Minimacro",
  11211. height: math.unit(17 + 9 / 12, "feet")
  11212. },
  11213. {
  11214. name: "Macro",
  11215. height: math.unit(177.5, "feet")
  11216. },
  11217. {
  11218. name: "Megamacro",
  11219. height: math.unit(152, "miles")
  11220. },
  11221. ]
  11222. ))
  11223. characterMakers.push(() => makeCharacter(
  11224. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11225. {
  11226. front: {
  11227. height: math.unit(6.5, "inches"),
  11228. weight: math.unit(13, "oz"),
  11229. name: "Front",
  11230. image: {
  11231. source: "./media/characters/dafydd-tomos/front.svg",
  11232. extra: 2990 / 2603,
  11233. bottom: 0.03
  11234. }
  11235. },
  11236. },
  11237. [
  11238. {
  11239. name: "Micro",
  11240. height: math.unit(6.5, "inches"),
  11241. default: true
  11242. },
  11243. ]
  11244. ))
  11245. characterMakers.push(() => makeCharacter(
  11246. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11247. {
  11248. front: {
  11249. height: math.unit(6, "feet"),
  11250. weight: math.unit(150, "lb"),
  11251. name: "Front",
  11252. image: {
  11253. source: "./media/characters/splinter/front.svg",
  11254. extra: 2990 / 2882,
  11255. bottom: 0.04
  11256. }
  11257. },
  11258. back: {
  11259. height: math.unit(6, "feet"),
  11260. weight: math.unit(150, "lb"),
  11261. name: "Back",
  11262. image: {
  11263. source: "./media/characters/splinter/back.svg",
  11264. extra: 2990 / 2882,
  11265. bottom: 0.04
  11266. }
  11267. },
  11268. },
  11269. [
  11270. {
  11271. name: "Normal",
  11272. height: math.unit(6, "feet")
  11273. },
  11274. {
  11275. name: "Macro",
  11276. height: math.unit(230, "meters"),
  11277. default: true
  11278. },
  11279. ]
  11280. ))
  11281. characterMakers.push(() => makeCharacter(
  11282. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11283. {
  11284. front: {
  11285. height: math.unit(4 + 10 / 12, "feet"),
  11286. weight: math.unit(480, "lb"),
  11287. name: "Front",
  11288. image: {
  11289. source: "./media/characters/snow-gabumon/front.svg",
  11290. extra: 1140 / 963,
  11291. bottom: 0.058
  11292. }
  11293. },
  11294. back: {
  11295. height: math.unit(4 + 10 / 12, "feet"),
  11296. weight: math.unit(480, "lb"),
  11297. name: "Back",
  11298. image: {
  11299. source: "./media/characters/snow-gabumon/back.svg",
  11300. extra: 1115 / 962,
  11301. bottom: 0.041
  11302. }
  11303. },
  11304. frontUndresed: {
  11305. height: math.unit(4 + 10 / 12, "feet"),
  11306. weight: math.unit(480, "lb"),
  11307. name: "Front (Undressed)",
  11308. image: {
  11309. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11310. extra: 1061 / 960,
  11311. bottom: 0.045
  11312. }
  11313. },
  11314. },
  11315. [
  11316. {
  11317. name: "Micro",
  11318. height: math.unit(1, "inch")
  11319. },
  11320. {
  11321. name: "Normal",
  11322. height: math.unit(4 + 10 / 12, "feet"),
  11323. default: true
  11324. },
  11325. {
  11326. name: "Macro",
  11327. height: math.unit(200, "feet")
  11328. },
  11329. {
  11330. name: "Megamacro",
  11331. height: math.unit(120, "miles")
  11332. },
  11333. {
  11334. name: "Gigamacro",
  11335. height: math.unit(9800, "miles")
  11336. },
  11337. ]
  11338. ))
  11339. characterMakers.push(() => makeCharacter(
  11340. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11341. {
  11342. front: {
  11343. height: math.unit(1.7, "meters"),
  11344. weight: math.unit(140, "lb"),
  11345. name: "Front",
  11346. image: {
  11347. source: "./media/characters/moody/front.svg",
  11348. extra: 3226 / 3007,
  11349. bottom: 0.087
  11350. }
  11351. },
  11352. },
  11353. [
  11354. {
  11355. name: "Micro",
  11356. height: math.unit(1, "mm")
  11357. },
  11358. {
  11359. name: "Normal",
  11360. height: math.unit(1.7, "meters"),
  11361. default: true
  11362. },
  11363. {
  11364. name: "Macro",
  11365. height: math.unit(80, "meters")
  11366. },
  11367. {
  11368. name: "Macro+",
  11369. height: math.unit(500, "meters")
  11370. },
  11371. ]
  11372. ))
  11373. characterMakers.push(() => makeCharacter(
  11374. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11375. {
  11376. front: {
  11377. height: math.unit(6, "feet"),
  11378. weight: math.unit(150, "lb"),
  11379. name: "Front",
  11380. image: {
  11381. source: "./media/characters/zyas/front.svg",
  11382. extra: 1180 / 1120,
  11383. bottom: 0.045
  11384. }
  11385. },
  11386. },
  11387. [
  11388. {
  11389. name: "Normal",
  11390. height: math.unit(10, "feet"),
  11391. default: true
  11392. },
  11393. {
  11394. name: "Macro",
  11395. height: math.unit(500, "feet")
  11396. },
  11397. {
  11398. name: "Megamacro",
  11399. height: math.unit(5, "miles")
  11400. },
  11401. {
  11402. name: "Teramacro",
  11403. height: math.unit(150000, "miles")
  11404. },
  11405. ]
  11406. ))
  11407. characterMakers.push(() => makeCharacter(
  11408. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11409. {
  11410. front: {
  11411. height: math.unit(6, "feet"),
  11412. weight: math.unit(150, "lb"),
  11413. name: "Front",
  11414. image: {
  11415. source: "./media/characters/cuon/front.svg",
  11416. extra: 1390 / 1320,
  11417. bottom: 0.008
  11418. }
  11419. },
  11420. },
  11421. [
  11422. {
  11423. name: "Micro",
  11424. height: math.unit(3, "inches")
  11425. },
  11426. {
  11427. name: "Normal",
  11428. height: math.unit(18 + 9 / 12, "feet"),
  11429. default: true
  11430. },
  11431. {
  11432. name: "Macro",
  11433. height: math.unit(360, "feet")
  11434. },
  11435. {
  11436. name: "Megamacro",
  11437. height: math.unit(360, "miles")
  11438. },
  11439. ]
  11440. ))
  11441. characterMakers.push(() => makeCharacter(
  11442. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11443. {
  11444. front: {
  11445. height: math.unit(2.4, "meters"),
  11446. weight: math.unit(70, "kg"),
  11447. name: "Front",
  11448. image: {
  11449. source: "./media/characters/nyanuxk/front.svg",
  11450. extra: 1172 / 1084,
  11451. bottom: 0.065
  11452. }
  11453. },
  11454. side: {
  11455. height: math.unit(2.4, "meters"),
  11456. weight: math.unit(70, "kg"),
  11457. name: "Side",
  11458. image: {
  11459. source: "./media/characters/nyanuxk/side.svg",
  11460. extra: 1190 / 1132,
  11461. bottom: 0.007
  11462. }
  11463. },
  11464. back: {
  11465. height: math.unit(2.4, "meters"),
  11466. weight: math.unit(70, "kg"),
  11467. name: "Back",
  11468. image: {
  11469. source: "./media/characters/nyanuxk/back.svg",
  11470. extra: 1200 / 1141,
  11471. bottom: 0.015
  11472. }
  11473. },
  11474. foot: {
  11475. height: math.unit(0.52, "meters"),
  11476. name: "Foot",
  11477. image: {
  11478. source: "./media/characters/nyanuxk/foot.svg"
  11479. }
  11480. },
  11481. },
  11482. [
  11483. {
  11484. name: "Micro",
  11485. height: math.unit(2, "cm")
  11486. },
  11487. {
  11488. name: "Normal",
  11489. height: math.unit(2.4, "meters"),
  11490. default: true
  11491. },
  11492. {
  11493. name: "Smaller Macro",
  11494. height: math.unit(120, "meters")
  11495. },
  11496. {
  11497. name: "Bigger Macro",
  11498. height: math.unit(1.2, "km")
  11499. },
  11500. {
  11501. name: "Megamacro",
  11502. height: math.unit(15, "kilometers")
  11503. },
  11504. {
  11505. name: "Gigamacro",
  11506. height: math.unit(2000, "km")
  11507. },
  11508. {
  11509. name: "Teramacro",
  11510. height: math.unit(500000, "km")
  11511. },
  11512. ]
  11513. ))
  11514. characterMakers.push(() => makeCharacter(
  11515. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11516. {
  11517. side: {
  11518. height: math.unit(6, "feet"),
  11519. name: "Side",
  11520. image: {
  11521. source: "./media/characters/ailbhe/side.svg",
  11522. extra: 757 / 464,
  11523. bottom: 0.041
  11524. }
  11525. },
  11526. },
  11527. [
  11528. {
  11529. name: "Normal",
  11530. height: math.unit(1.07, "meters"),
  11531. default: true
  11532. },
  11533. ]
  11534. ))
  11535. characterMakers.push(() => makeCharacter(
  11536. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11537. {
  11538. front: {
  11539. height: math.unit(6, "feet"),
  11540. weight: math.unit(120, "kg"),
  11541. name: "Front",
  11542. image: {
  11543. source: "./media/characters/zevulfius/front.svg",
  11544. extra: 965 / 903
  11545. }
  11546. },
  11547. side: {
  11548. height: math.unit(6, "feet"),
  11549. weight: math.unit(120, "kg"),
  11550. name: "Side",
  11551. image: {
  11552. source: "./media/characters/zevulfius/side.svg",
  11553. extra: 939 / 900
  11554. }
  11555. },
  11556. back: {
  11557. height: math.unit(6, "feet"),
  11558. weight: math.unit(120, "kg"),
  11559. name: "Back",
  11560. image: {
  11561. source: "./media/characters/zevulfius/back.svg",
  11562. extra: 918 / 854,
  11563. bottom: 0.005
  11564. }
  11565. },
  11566. foot: {
  11567. height: math.unit(6 / 3.72, "feet"),
  11568. name: "Foot",
  11569. image: {
  11570. source: "./media/characters/zevulfius/foot.svg"
  11571. }
  11572. },
  11573. },
  11574. [
  11575. {
  11576. name: "Macro",
  11577. height: math.unit(750, "meters")
  11578. },
  11579. {
  11580. name: "Megamacro",
  11581. height: math.unit(20, "km"),
  11582. default: true
  11583. },
  11584. {
  11585. name: "Gigamacro",
  11586. height: math.unit(2000, "km")
  11587. },
  11588. {
  11589. name: "Teramacro",
  11590. height: math.unit(250000, "km")
  11591. },
  11592. ]
  11593. ))
  11594. characterMakers.push(() => makeCharacter(
  11595. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11596. {
  11597. front: {
  11598. height: math.unit(100, "feet"),
  11599. weight: math.unit(350, "kg"),
  11600. name: "Front",
  11601. image: {
  11602. source: "./media/characters/rikes/front.svg",
  11603. extra: 1565 / 1483,
  11604. bottom: 0.017
  11605. }
  11606. },
  11607. },
  11608. [
  11609. {
  11610. name: "Macro",
  11611. height: math.unit(100, "feet"),
  11612. default: true
  11613. },
  11614. ]
  11615. ))
  11616. characterMakers.push(() => makeCharacter(
  11617. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11618. {
  11619. front: {
  11620. height: math.unit(8, "feet"),
  11621. weight: math.unit(356, "lb"),
  11622. name: "Front",
  11623. image: {
  11624. source: "./media/characters/adam-silver-mane/front.svg",
  11625. extra: 1036/937,
  11626. bottom: 63/1099
  11627. }
  11628. },
  11629. side: {
  11630. height: math.unit(8, "feet"),
  11631. weight: math.unit(356, "lb"),
  11632. name: "Side",
  11633. image: {
  11634. source: "./media/characters/adam-silver-mane/side.svg",
  11635. extra: 997/901,
  11636. bottom: 59/1056
  11637. }
  11638. },
  11639. frontNsfw: {
  11640. height: math.unit(8, "feet"),
  11641. weight: math.unit(356, "lb"),
  11642. name: "Front (NSFW)",
  11643. image: {
  11644. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11645. extra: 1036/937,
  11646. bottom: 63/1099
  11647. }
  11648. },
  11649. sideNsfw: {
  11650. height: math.unit(8, "feet"),
  11651. weight: math.unit(356, "lb"),
  11652. name: "Side (NSFW)",
  11653. image: {
  11654. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11655. extra: 997/901,
  11656. bottom: 59/1056
  11657. }
  11658. },
  11659. dick: {
  11660. height: math.unit(2.1, "feet"),
  11661. name: "Dick",
  11662. image: {
  11663. source: "./media/characters/adam-silver-mane/dick.svg"
  11664. }
  11665. },
  11666. taur: {
  11667. height: math.unit(16, "feet"),
  11668. weight: math.unit(1500, "kg"),
  11669. name: "Taur",
  11670. image: {
  11671. source: "./media/characters/adam-silver-mane/taur.svg",
  11672. extra: 1713 / 1571,
  11673. bottom: 0.01
  11674. }
  11675. },
  11676. },
  11677. [
  11678. {
  11679. name: "Normal",
  11680. height: math.unit(8, "feet")
  11681. },
  11682. {
  11683. name: "Minimacro",
  11684. height: math.unit(80, "feet")
  11685. },
  11686. {
  11687. name: "MDA",
  11688. height: math.unit(80, "meters")
  11689. },
  11690. {
  11691. name: "Macro",
  11692. height: math.unit(800, "feet"),
  11693. default: true
  11694. },
  11695. {
  11696. name: "Megamacro",
  11697. height: math.unit(8000, "feet")
  11698. },
  11699. {
  11700. name: "Gigamacro",
  11701. height: math.unit(800, "miles")
  11702. },
  11703. {
  11704. name: "Teramacro",
  11705. height: math.unit(80000, "miles")
  11706. },
  11707. {
  11708. name: "Celestial",
  11709. height: math.unit(8e6, "miles")
  11710. },
  11711. {
  11712. name: "Star Dragon",
  11713. height: math.unit(800000, "parsecs")
  11714. },
  11715. {
  11716. name: "Godly",
  11717. height: math.unit(800, "teraparsecs")
  11718. },
  11719. ]
  11720. ))
  11721. characterMakers.push(() => makeCharacter(
  11722. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11723. {
  11724. front: {
  11725. height: math.unit(6, "feet"),
  11726. weight: math.unit(150, "lb"),
  11727. name: "Front",
  11728. image: {
  11729. source: "./media/characters/ky'owin/front.svg",
  11730. extra: 3862/3053,
  11731. bottom: 74/3936
  11732. }
  11733. },
  11734. },
  11735. [
  11736. {
  11737. name: "Normal",
  11738. height: math.unit(6 + 8 / 12, "feet")
  11739. },
  11740. {
  11741. name: "Large",
  11742. height: math.unit(68, "feet")
  11743. },
  11744. {
  11745. name: "Macro",
  11746. height: math.unit(132, "feet")
  11747. },
  11748. {
  11749. name: "Macro+",
  11750. height: math.unit(340, "feet")
  11751. },
  11752. {
  11753. name: "Macro++",
  11754. height: math.unit(680, "feet"),
  11755. default: true
  11756. },
  11757. {
  11758. name: "Megamacro",
  11759. height: math.unit(1, "mile")
  11760. },
  11761. {
  11762. name: "Megamacro+",
  11763. height: math.unit(10, "miles")
  11764. },
  11765. ]
  11766. ))
  11767. characterMakers.push(() => makeCharacter(
  11768. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11769. {
  11770. front: {
  11771. height: math.unit(4, "feet"),
  11772. weight: math.unit(50, "lb"),
  11773. name: "Front",
  11774. image: {
  11775. source: "./media/characters/mal/front.svg",
  11776. extra: 785 / 724,
  11777. bottom: 0.07
  11778. }
  11779. },
  11780. },
  11781. [
  11782. {
  11783. name: "Micro",
  11784. height: math.unit(4, "inches")
  11785. },
  11786. {
  11787. name: "Normal",
  11788. height: math.unit(4, "feet"),
  11789. default: true
  11790. },
  11791. {
  11792. name: "Macro",
  11793. height: math.unit(200, "feet")
  11794. },
  11795. ]
  11796. ))
  11797. characterMakers.push(() => makeCharacter(
  11798. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11799. {
  11800. front: {
  11801. height: math.unit(6, "feet"),
  11802. weight: math.unit(150, "lb"),
  11803. name: "Front",
  11804. image: {
  11805. source: "./media/characters/jordan-deware/front.svg",
  11806. extra: 1191 / 1012
  11807. }
  11808. },
  11809. },
  11810. [
  11811. {
  11812. name: "Nano",
  11813. height: math.unit(0.01, "mm")
  11814. },
  11815. {
  11816. name: "Minimicro",
  11817. height: math.unit(1, "mm")
  11818. },
  11819. {
  11820. name: "Micro",
  11821. height: math.unit(0.5, "inches")
  11822. },
  11823. {
  11824. name: "Normal",
  11825. height: math.unit(4, "feet"),
  11826. default: true
  11827. },
  11828. {
  11829. name: "Minimacro",
  11830. height: math.unit(40, "meters")
  11831. },
  11832. {
  11833. name: "Small Macro",
  11834. height: math.unit(400, "meters")
  11835. },
  11836. {
  11837. name: "Macro",
  11838. height: math.unit(4, "miles")
  11839. },
  11840. {
  11841. name: "Megamacro",
  11842. height: math.unit(40, "miles")
  11843. },
  11844. {
  11845. name: "Megamacro+",
  11846. height: math.unit(400, "miles")
  11847. },
  11848. {
  11849. name: "Gigamacro",
  11850. height: math.unit(400000, "miles")
  11851. },
  11852. ]
  11853. ))
  11854. characterMakers.push(() => makeCharacter(
  11855. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11856. {
  11857. side: {
  11858. height: math.unit(6, "feet"),
  11859. weight: math.unit(150, "lb"),
  11860. name: "Side",
  11861. image: {
  11862. source: "./media/characters/kimiko/side.svg",
  11863. extra: 600 / 358
  11864. }
  11865. },
  11866. },
  11867. [
  11868. {
  11869. name: "Normal",
  11870. height: math.unit(15, "feet"),
  11871. default: true
  11872. },
  11873. {
  11874. name: "Macro",
  11875. height: math.unit(220, "feet")
  11876. },
  11877. {
  11878. name: "Macro+",
  11879. height: math.unit(1450, "feet")
  11880. },
  11881. {
  11882. name: "Megamacro",
  11883. height: math.unit(11500, "feet")
  11884. },
  11885. {
  11886. name: "Gigamacro",
  11887. height: math.unit(9500, "miles")
  11888. },
  11889. {
  11890. name: "Teramacro",
  11891. height: math.unit(2208005005, "miles")
  11892. },
  11893. {
  11894. name: "Examacro",
  11895. height: math.unit(2750, "parsecs")
  11896. },
  11897. {
  11898. name: "Zettamacro",
  11899. height: math.unit(101500, "parsecs")
  11900. },
  11901. ]
  11902. ))
  11903. characterMakers.push(() => makeCharacter(
  11904. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11905. {
  11906. front: {
  11907. height: math.unit(6, "feet"),
  11908. weight: math.unit(70, "kg"),
  11909. name: "Front",
  11910. image: {
  11911. source: "./media/characters/andrew-sleepy/front.svg"
  11912. }
  11913. },
  11914. side: {
  11915. height: math.unit(6, "feet"),
  11916. weight: math.unit(70, "kg"),
  11917. name: "Side",
  11918. image: {
  11919. source: "./media/characters/andrew-sleepy/side.svg"
  11920. }
  11921. },
  11922. },
  11923. [
  11924. {
  11925. name: "Micro",
  11926. height: math.unit(1, "mm"),
  11927. default: true
  11928. },
  11929. ]
  11930. ))
  11931. characterMakers.push(() => makeCharacter(
  11932. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11933. {
  11934. front: {
  11935. height: math.unit(6, "feet"),
  11936. weight: math.unit(150, "lb"),
  11937. name: "Front",
  11938. image: {
  11939. source: "./media/characters/judio/front.svg",
  11940. extra: 1258 / 1110
  11941. }
  11942. },
  11943. },
  11944. [
  11945. {
  11946. name: "Normal",
  11947. height: math.unit(5 + 6 / 12, "feet")
  11948. },
  11949. {
  11950. name: "Macro",
  11951. height: math.unit(1000, "feet"),
  11952. default: true
  11953. },
  11954. {
  11955. name: "Megamacro",
  11956. height: math.unit(10, "miles")
  11957. },
  11958. ]
  11959. ))
  11960. characterMakers.push(() => makeCharacter(
  11961. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11962. {
  11963. frontDressed: {
  11964. height: math.unit(6, "feet"),
  11965. weight: math.unit(68, "kg"),
  11966. name: "Front (Dressed)",
  11967. image: {
  11968. source: "./media/characters/nomaxice/front-dressed.svg",
  11969. extra: 1137/824,
  11970. bottom: 74/1211
  11971. }
  11972. },
  11973. frontShorts: {
  11974. height: math.unit(6, "feet"),
  11975. weight: math.unit(68, "kg"),
  11976. name: "Front (Shorts)",
  11977. image: {
  11978. source: "./media/characters/nomaxice/front-shorts.svg",
  11979. extra: 1137/824,
  11980. bottom: 74/1211
  11981. }
  11982. },
  11983. back: {
  11984. height: math.unit(6, "feet"),
  11985. weight: math.unit(68, "kg"),
  11986. name: "Back",
  11987. image: {
  11988. source: "./media/characters/nomaxice/back.svg",
  11989. extra: 822/786,
  11990. bottom: 39/861
  11991. }
  11992. },
  11993. hand: {
  11994. height: math.unit(0.565, "feet"),
  11995. name: "Hand",
  11996. image: {
  11997. source: "./media/characters/nomaxice/hand.svg"
  11998. }
  11999. },
  12000. foot: {
  12001. height: math.unit(1, "feet"),
  12002. name: "Foot",
  12003. image: {
  12004. source: "./media/characters/nomaxice/foot.svg"
  12005. }
  12006. },
  12007. },
  12008. [
  12009. {
  12010. name: "Micro",
  12011. height: math.unit(8, "cm")
  12012. },
  12013. {
  12014. name: "Norm",
  12015. height: math.unit(1.82, "m")
  12016. },
  12017. {
  12018. name: "Norm+",
  12019. height: math.unit(8.8, "feet"),
  12020. default: true
  12021. },
  12022. {
  12023. name: "Big",
  12024. height: math.unit(8, "meters")
  12025. },
  12026. {
  12027. name: "Macro",
  12028. height: math.unit(18, "meters")
  12029. },
  12030. {
  12031. name: "Macro+",
  12032. height: math.unit(88, "meters")
  12033. },
  12034. ]
  12035. ))
  12036. characterMakers.push(() => makeCharacter(
  12037. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12038. {
  12039. front: {
  12040. height: math.unit(12, "feet"),
  12041. weight: math.unit(1.5, "tons"),
  12042. name: "Front",
  12043. image: {
  12044. source: "./media/characters/dydros/front.svg",
  12045. extra: 863 / 800,
  12046. bottom: 0.015
  12047. }
  12048. },
  12049. back: {
  12050. height: math.unit(12, "feet"),
  12051. weight: math.unit(1.5, "tons"),
  12052. name: "Back",
  12053. image: {
  12054. source: "./media/characters/dydros/back.svg",
  12055. extra: 900 / 843,
  12056. bottom: 0.005
  12057. }
  12058. },
  12059. },
  12060. [
  12061. {
  12062. name: "Normal",
  12063. height: math.unit(12, "feet"),
  12064. default: true
  12065. },
  12066. ]
  12067. ))
  12068. characterMakers.push(() => makeCharacter(
  12069. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12070. {
  12071. front: {
  12072. height: math.unit(6, "feet"),
  12073. weight: math.unit(100, "kg"),
  12074. name: "Front",
  12075. image: {
  12076. source: "./media/characters/riggi/front.svg",
  12077. extra: 5787 / 5303
  12078. }
  12079. },
  12080. hyper: {
  12081. height: math.unit(6 * 5 / 3, "feet"),
  12082. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12083. name: "Hyper",
  12084. image: {
  12085. source: "./media/characters/riggi/hyper.svg",
  12086. extra: 3595 / 3485
  12087. }
  12088. },
  12089. },
  12090. [
  12091. {
  12092. name: "Small Macro",
  12093. height: math.unit(50, "feet")
  12094. },
  12095. {
  12096. name: "Default",
  12097. height: math.unit(200, "feet"),
  12098. default: true
  12099. },
  12100. {
  12101. name: "Loom",
  12102. height: math.unit(10000, "feet")
  12103. },
  12104. {
  12105. name: "Cruising Altitude",
  12106. height: math.unit(30000, "feet")
  12107. },
  12108. {
  12109. name: "Megamacro",
  12110. height: math.unit(100, "miles")
  12111. },
  12112. {
  12113. name: "Continent Sized",
  12114. height: math.unit(2800, "miles")
  12115. },
  12116. {
  12117. name: "Earth Sized",
  12118. height: math.unit(8000, "miles")
  12119. },
  12120. ]
  12121. ))
  12122. characterMakers.push(() => makeCharacter(
  12123. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12124. {
  12125. front: {
  12126. height: math.unit(6, "feet"),
  12127. weight: math.unit(250, "lb"),
  12128. name: "Front",
  12129. image: {
  12130. source: "./media/characters/alexi/front.svg",
  12131. extra: 3483 / 3291,
  12132. bottom: 0.04
  12133. }
  12134. },
  12135. back: {
  12136. height: math.unit(6, "feet"),
  12137. weight: math.unit(250, "lb"),
  12138. name: "Back",
  12139. image: {
  12140. source: "./media/characters/alexi/back.svg",
  12141. extra: 3533 / 3356,
  12142. bottom: 0.021
  12143. }
  12144. },
  12145. frontTransforming: {
  12146. height: math.unit(8.58, "feet"),
  12147. weight: math.unit(1300, "lb"),
  12148. name: "Transforming",
  12149. image: {
  12150. source: "./media/characters/alexi/front-transforming.svg",
  12151. extra: 437 / 409,
  12152. bottom: 19 / 458.66
  12153. }
  12154. },
  12155. frontTransformed: {
  12156. height: math.unit(12.5, "feet"),
  12157. weight: math.unit(4000, "lb"),
  12158. name: "Transformed",
  12159. image: {
  12160. source: "./media/characters/alexi/front-transformed.svg",
  12161. extra: 639 / 614,
  12162. bottom: 30.55 / 671
  12163. }
  12164. },
  12165. },
  12166. [
  12167. {
  12168. name: "Normal",
  12169. height: math.unit(14, "feet"),
  12170. default: true
  12171. },
  12172. {
  12173. name: "Minimacro",
  12174. height: math.unit(30, "meters")
  12175. },
  12176. {
  12177. name: "Macro",
  12178. height: math.unit(500, "meters")
  12179. },
  12180. {
  12181. name: "Megamacro",
  12182. height: math.unit(9000, "km")
  12183. },
  12184. {
  12185. name: "Teramacro",
  12186. height: math.unit(384000, "km")
  12187. },
  12188. ]
  12189. ))
  12190. characterMakers.push(() => makeCharacter(
  12191. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12192. {
  12193. front: {
  12194. height: math.unit(6, "feet"),
  12195. weight: math.unit(150, "lb"),
  12196. name: "Front",
  12197. image: {
  12198. source: "./media/characters/kayroo/front.svg",
  12199. extra: 1153 / 1038,
  12200. bottom: 0.06
  12201. }
  12202. },
  12203. foot: {
  12204. height: math.unit(6, "feet"),
  12205. weight: math.unit(150, "lb"),
  12206. name: "Foot",
  12207. image: {
  12208. source: "./media/characters/kayroo/foot.svg"
  12209. }
  12210. },
  12211. },
  12212. [
  12213. {
  12214. name: "Normal",
  12215. height: math.unit(8, "feet"),
  12216. default: true
  12217. },
  12218. {
  12219. name: "Minimacro",
  12220. height: math.unit(250, "feet")
  12221. },
  12222. {
  12223. name: "Macro",
  12224. height: math.unit(2800, "feet")
  12225. },
  12226. {
  12227. name: "Megamacro",
  12228. height: math.unit(5200, "feet")
  12229. },
  12230. {
  12231. name: "Gigamacro",
  12232. height: math.unit(27000, "feet")
  12233. },
  12234. {
  12235. name: "Omega",
  12236. height: math.unit(45000, "feet")
  12237. },
  12238. ]
  12239. ))
  12240. characterMakers.push(() => makeCharacter(
  12241. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12242. {
  12243. front: {
  12244. height: math.unit(18, "feet"),
  12245. weight: math.unit(5800, "lb"),
  12246. name: "Front",
  12247. image: {
  12248. source: "./media/characters/rhys/front.svg",
  12249. extra: 3386 / 3090,
  12250. bottom: 0.07
  12251. }
  12252. },
  12253. },
  12254. [
  12255. {
  12256. name: "Normal",
  12257. height: math.unit(18, "feet"),
  12258. default: true
  12259. },
  12260. {
  12261. name: "Working Size",
  12262. height: math.unit(200, "feet")
  12263. },
  12264. {
  12265. name: "Demolition Size",
  12266. height: math.unit(2000, "feet")
  12267. },
  12268. {
  12269. name: "Maximum Licensed Size",
  12270. height: math.unit(5, "miles")
  12271. },
  12272. {
  12273. name: "Maximum Observed Size",
  12274. height: math.unit(10, "yottameters")
  12275. },
  12276. ]
  12277. ))
  12278. characterMakers.push(() => makeCharacter(
  12279. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12280. {
  12281. front: {
  12282. height: math.unit(6, "feet"),
  12283. weight: math.unit(250, "lb"),
  12284. name: "Front",
  12285. image: {
  12286. source: "./media/characters/toto/front.svg",
  12287. extra: 527 / 479,
  12288. bottom: 0.05
  12289. }
  12290. },
  12291. },
  12292. [
  12293. {
  12294. name: "Micro",
  12295. height: math.unit(3, "feet")
  12296. },
  12297. {
  12298. name: "Normal",
  12299. height: math.unit(10, "feet")
  12300. },
  12301. {
  12302. name: "Macro",
  12303. height: math.unit(150, "feet"),
  12304. default: true
  12305. },
  12306. {
  12307. name: "Megamacro",
  12308. height: math.unit(1200, "feet")
  12309. },
  12310. ]
  12311. ))
  12312. characterMakers.push(() => makeCharacter(
  12313. { name: "King", species: ["lion"], tags: ["anthro"] },
  12314. {
  12315. back: {
  12316. height: math.unit(6, "feet"),
  12317. weight: math.unit(150, "lb"),
  12318. name: "Back",
  12319. image: {
  12320. source: "./media/characters/king/back.svg"
  12321. }
  12322. },
  12323. },
  12324. [
  12325. {
  12326. name: "Micro",
  12327. height: math.unit(2, "inches")
  12328. },
  12329. {
  12330. name: "Normal",
  12331. height: math.unit(8, "feet")
  12332. },
  12333. {
  12334. name: "Macro",
  12335. height: math.unit(200, "feet"),
  12336. default: true
  12337. },
  12338. {
  12339. name: "Megamacro",
  12340. height: math.unit(50, "miles")
  12341. },
  12342. ]
  12343. ))
  12344. characterMakers.push(() => makeCharacter(
  12345. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12346. {
  12347. front: {
  12348. height: math.unit(11, "feet"),
  12349. weight: math.unit(1400, "lb"),
  12350. name: "Front",
  12351. image: {
  12352. source: "./media/characters/cordite/front.svg",
  12353. extra: 1919/1827,
  12354. bottom: 40/1959
  12355. }
  12356. },
  12357. side: {
  12358. height: math.unit(11, "feet"),
  12359. weight: math.unit(1400, "lb"),
  12360. name: "Side",
  12361. image: {
  12362. source: "./media/characters/cordite/side.svg",
  12363. extra: 1908/1793,
  12364. bottom: 38/1946
  12365. }
  12366. },
  12367. back: {
  12368. height: math.unit(11, "feet"),
  12369. weight: math.unit(1400, "lb"),
  12370. name: "Back",
  12371. image: {
  12372. source: "./media/characters/cordite/back.svg",
  12373. extra: 1938/1837,
  12374. bottom: 10/1948
  12375. }
  12376. },
  12377. feral: {
  12378. height: math.unit(2, "feet"),
  12379. weight: math.unit(90, "lb"),
  12380. name: "Feral",
  12381. image: {
  12382. source: "./media/characters/cordite/feral.svg",
  12383. extra: 1260 / 755,
  12384. bottom: 0.05
  12385. }
  12386. },
  12387. },
  12388. [
  12389. {
  12390. name: "Normal",
  12391. height: math.unit(11, "feet"),
  12392. default: true
  12393. },
  12394. ]
  12395. ))
  12396. characterMakers.push(() => makeCharacter(
  12397. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12398. {
  12399. front: {
  12400. height: math.unit(6, "feet"),
  12401. weight: math.unit(150, "lb"),
  12402. name: "Front",
  12403. image: {
  12404. source: "./media/characters/pianostrong/front.svg",
  12405. extra: 6577 / 6254,
  12406. bottom: 0.02
  12407. }
  12408. },
  12409. side: {
  12410. height: math.unit(6, "feet"),
  12411. weight: math.unit(150, "lb"),
  12412. name: "Side",
  12413. image: {
  12414. source: "./media/characters/pianostrong/side.svg",
  12415. extra: 6106 / 5730
  12416. }
  12417. },
  12418. back: {
  12419. height: math.unit(6, "feet"),
  12420. weight: math.unit(150, "lb"),
  12421. name: "Back",
  12422. image: {
  12423. source: "./media/characters/pianostrong/back.svg",
  12424. extra: 6085 / 5733,
  12425. bottom: 0.01
  12426. }
  12427. },
  12428. },
  12429. [
  12430. {
  12431. name: "Macro",
  12432. height: math.unit(100, "feet")
  12433. },
  12434. {
  12435. name: "Macro+",
  12436. height: math.unit(300, "feet"),
  12437. default: true
  12438. },
  12439. {
  12440. name: "Macro++",
  12441. height: math.unit(1000, "feet")
  12442. },
  12443. ]
  12444. ))
  12445. characterMakers.push(() => makeCharacter(
  12446. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12447. {
  12448. front: {
  12449. height: math.unit(6, "feet"),
  12450. weight: math.unit(150, "lb"),
  12451. name: "Front",
  12452. image: {
  12453. source: "./media/characters/kona/front.svg",
  12454. extra: 2960 / 2629,
  12455. bottom: 0.005
  12456. }
  12457. },
  12458. },
  12459. [
  12460. {
  12461. name: "Normal",
  12462. height: math.unit(11 + 8 / 12, "feet")
  12463. },
  12464. {
  12465. name: "Macro",
  12466. height: math.unit(850, "feet"),
  12467. default: true
  12468. },
  12469. {
  12470. name: "Macro+",
  12471. height: math.unit(1.5, "km"),
  12472. default: true
  12473. },
  12474. {
  12475. name: "Megamacro",
  12476. height: math.unit(80, "miles")
  12477. },
  12478. {
  12479. name: "Gigamacro",
  12480. height: math.unit(3500, "miles")
  12481. },
  12482. ]
  12483. ))
  12484. characterMakers.push(() => makeCharacter(
  12485. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12486. {
  12487. side: {
  12488. height: math.unit(1.9, "meters"),
  12489. weight: math.unit(326, "kg"),
  12490. name: "Side",
  12491. image: {
  12492. source: "./media/characters/levi/side.svg",
  12493. extra: 1704 / 1334,
  12494. bottom: 0.02
  12495. }
  12496. },
  12497. },
  12498. [
  12499. {
  12500. name: "Normal",
  12501. height: math.unit(1.9, "meters"),
  12502. default: true
  12503. },
  12504. {
  12505. name: "Macro",
  12506. height: math.unit(20, "meters")
  12507. },
  12508. {
  12509. name: "Macro+",
  12510. height: math.unit(200, "meters")
  12511. },
  12512. {
  12513. name: "Megamacro",
  12514. height: math.unit(2, "km")
  12515. },
  12516. {
  12517. name: "Megamacro+",
  12518. height: math.unit(20, "km")
  12519. },
  12520. {
  12521. name: "Gigamacro",
  12522. height: math.unit(2500, "km")
  12523. },
  12524. {
  12525. name: "Gigamacro+",
  12526. height: math.unit(120000, "km")
  12527. },
  12528. {
  12529. name: "Teramacro",
  12530. height: math.unit(7.77e6, "km")
  12531. },
  12532. ]
  12533. ))
  12534. characterMakers.push(() => makeCharacter(
  12535. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12536. {
  12537. front: {
  12538. height: math.unit(6 + 4/12, "feet"),
  12539. weight: math.unit(190, "lb"),
  12540. name: "Front",
  12541. image: {
  12542. source: "./media/characters/bmc/front.svg",
  12543. extra: 1626/1472,
  12544. bottom: 79/1705
  12545. }
  12546. },
  12547. back: {
  12548. height: math.unit(6 + 4/12, "feet"),
  12549. weight: math.unit(190, "lb"),
  12550. name: "Back",
  12551. image: {
  12552. source: "./media/characters/bmc/back.svg",
  12553. extra: 1640/1479,
  12554. bottom: 45/1685
  12555. }
  12556. },
  12557. frontArmor: {
  12558. height: math.unit(6 + 4/12, "feet"),
  12559. weight: math.unit(190, "lb"),
  12560. name: "Front-armor",
  12561. image: {
  12562. source: "./media/characters/bmc/front-armor.svg",
  12563. extra: 1538/1468,
  12564. bottom: 79/1617
  12565. }
  12566. },
  12567. },
  12568. [
  12569. {
  12570. name: "Human-sized",
  12571. height: math.unit(6 + 4 / 12, "feet")
  12572. },
  12573. {
  12574. name: "Interactive Size",
  12575. height: math.unit(25, "feet")
  12576. },
  12577. {
  12578. name: "Small",
  12579. height: math.unit(250, "feet")
  12580. },
  12581. {
  12582. name: "Normal",
  12583. height: math.unit(1250, "feet"),
  12584. default: true
  12585. },
  12586. {
  12587. name: "Good Day",
  12588. height: math.unit(88, "miles")
  12589. },
  12590. {
  12591. name: "Largest Measured Size",
  12592. height: math.unit(105.960, "galaxies")
  12593. },
  12594. ]
  12595. ))
  12596. characterMakers.push(() => makeCharacter(
  12597. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12598. {
  12599. front: {
  12600. height: math.unit(20, "feet"),
  12601. weight: math.unit(2016, "kg"),
  12602. name: "Front",
  12603. image: {
  12604. source: "./media/characters/sven-the-kaiju/front.svg",
  12605. extra: 1277/1250,
  12606. bottom: 35/1312
  12607. }
  12608. },
  12609. mouth: {
  12610. height: math.unit(1.85, "feet"),
  12611. name: "Mouth",
  12612. image: {
  12613. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12614. }
  12615. },
  12616. },
  12617. [
  12618. {
  12619. name: "Fairy",
  12620. height: math.unit(6, "inches")
  12621. },
  12622. {
  12623. name: "Normal",
  12624. height: math.unit(20, "feet"),
  12625. default: true
  12626. },
  12627. {
  12628. name: "Rampage",
  12629. height: math.unit(200, "feet")
  12630. },
  12631. {
  12632. name: "Archfey Forest Guardian",
  12633. height: math.unit(1, "mile")
  12634. },
  12635. ]
  12636. ))
  12637. characterMakers.push(() => makeCharacter(
  12638. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12639. {
  12640. front: {
  12641. height: math.unit(4, "meters"),
  12642. weight: math.unit(2, "tons"),
  12643. name: "Front",
  12644. image: {
  12645. source: "./media/characters/marik/front.svg",
  12646. extra: 1057 / 1003,
  12647. bottom: 0.08
  12648. }
  12649. },
  12650. },
  12651. [
  12652. {
  12653. name: "Normal",
  12654. height: math.unit(4, "meters"),
  12655. default: true
  12656. },
  12657. {
  12658. name: "Macro",
  12659. height: math.unit(20, "meters")
  12660. },
  12661. {
  12662. name: "Megamacro",
  12663. height: math.unit(50, "km")
  12664. },
  12665. {
  12666. name: "Gigamacro",
  12667. height: math.unit(100, "km")
  12668. },
  12669. {
  12670. name: "Alpha Macro",
  12671. height: math.unit(7.88e7, "yottameters")
  12672. },
  12673. ]
  12674. ))
  12675. characterMakers.push(() => makeCharacter(
  12676. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12677. {
  12678. front: {
  12679. height: math.unit(6, "feet"),
  12680. weight: math.unit(110, "lb"),
  12681. name: "Front",
  12682. image: {
  12683. source: "./media/characters/mel/front.svg",
  12684. extra: 736 / 617,
  12685. bottom: 0.017
  12686. }
  12687. },
  12688. },
  12689. [
  12690. {
  12691. name: "Pico",
  12692. height: math.unit(3, "pm")
  12693. },
  12694. {
  12695. name: "Nano",
  12696. height: math.unit(3, "nm")
  12697. },
  12698. {
  12699. name: "Micro",
  12700. height: math.unit(0.3, "mm"),
  12701. default: true
  12702. },
  12703. {
  12704. name: "Micro+",
  12705. height: math.unit(3, "mm")
  12706. },
  12707. {
  12708. name: "Normal",
  12709. height: math.unit(5 + 10.5 / 12, "feet")
  12710. },
  12711. ]
  12712. ))
  12713. characterMakers.push(() => makeCharacter(
  12714. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12715. {
  12716. kaiju: {
  12717. height: math.unit(1.75, "meters"),
  12718. weight: math.unit(55, "kg"),
  12719. name: "Kaiju",
  12720. image: {
  12721. source: "./media/characters/lykonous/kaiju.svg",
  12722. extra: 1055 / 946,
  12723. bottom: 0.135
  12724. }
  12725. },
  12726. },
  12727. [
  12728. {
  12729. name: "Normal",
  12730. height: math.unit(2.5, "meters"),
  12731. default: true
  12732. },
  12733. {
  12734. name: "Kaiju Dragon",
  12735. height: math.unit(60, "meters")
  12736. },
  12737. {
  12738. name: "Mega Kaiju",
  12739. height: math.unit(120, "km")
  12740. },
  12741. {
  12742. name: "Giga Kaiju",
  12743. height: math.unit(200, "megameters")
  12744. },
  12745. {
  12746. name: "Terra Kaiju",
  12747. height: math.unit(400, "gigameters")
  12748. },
  12749. {
  12750. name: "Kaiju Dragon God",
  12751. height: math.unit(13000, "exaparsecs")
  12752. },
  12753. ]
  12754. ))
  12755. characterMakers.push(() => makeCharacter(
  12756. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12757. {
  12758. front: {
  12759. height: math.unit(6, "feet"),
  12760. weight: math.unit(150, "lb"),
  12761. name: "Front",
  12762. image: {
  12763. source: "./media/characters/blü/front.svg",
  12764. extra: 1883 / 1564,
  12765. bottom: 0.031
  12766. }
  12767. },
  12768. },
  12769. [
  12770. {
  12771. name: "Normal",
  12772. height: math.unit(13, "feet"),
  12773. default: true
  12774. },
  12775. {
  12776. name: "Big Boi",
  12777. height: math.unit(150, "meters")
  12778. },
  12779. {
  12780. name: "Mini Stomper",
  12781. height: math.unit(300, "meters")
  12782. },
  12783. {
  12784. name: "Macro",
  12785. height: math.unit(1000, "meters")
  12786. },
  12787. {
  12788. name: "Megamacro",
  12789. height: math.unit(11000, "meters")
  12790. },
  12791. {
  12792. name: "Gigamacro",
  12793. height: math.unit(11000, "km")
  12794. },
  12795. {
  12796. name: "Teramacro",
  12797. height: math.unit(420000, "km")
  12798. },
  12799. {
  12800. name: "Examacro",
  12801. height: math.unit(120, "parsecs")
  12802. },
  12803. {
  12804. name: "God Tho",
  12805. height: math.unit(98000000000, "parsecs")
  12806. },
  12807. ]
  12808. ))
  12809. characterMakers.push(() => makeCharacter(
  12810. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12811. {
  12812. taurFront: {
  12813. height: math.unit(6, "feet"),
  12814. weight: math.unit(200, "lb"),
  12815. name: "Taur (Front)",
  12816. image: {
  12817. source: "./media/characters/scales/taur-front.svg",
  12818. extra: 1,
  12819. bottom: 0.05
  12820. }
  12821. },
  12822. taurBack: {
  12823. height: math.unit(6, "feet"),
  12824. weight: math.unit(200, "lb"),
  12825. name: "Taur (Back)",
  12826. image: {
  12827. source: "./media/characters/scales/taur-back.svg",
  12828. extra: 1,
  12829. bottom: 0.08
  12830. }
  12831. },
  12832. anthro: {
  12833. height: math.unit(6 * 7 / 12, "feet"),
  12834. weight: math.unit(100, "lb"),
  12835. name: "Anthro",
  12836. image: {
  12837. source: "./media/characters/scales/anthro.svg",
  12838. extra: 1,
  12839. bottom: 0.06
  12840. }
  12841. },
  12842. },
  12843. [
  12844. {
  12845. name: "Normal",
  12846. height: math.unit(12, "feet"),
  12847. default: true
  12848. },
  12849. ]
  12850. ))
  12851. characterMakers.push(() => makeCharacter(
  12852. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12853. {
  12854. front: {
  12855. height: math.unit(6, "feet"),
  12856. weight: math.unit(150, "lb"),
  12857. name: "Front",
  12858. image: {
  12859. source: "./media/characters/koragos/front.svg",
  12860. extra: 841 / 794,
  12861. bottom: 0.035
  12862. }
  12863. },
  12864. back: {
  12865. height: math.unit(6, "feet"),
  12866. weight: math.unit(150, "lb"),
  12867. name: "Back",
  12868. image: {
  12869. source: "./media/characters/koragos/back.svg",
  12870. extra: 841 / 810,
  12871. bottom: 0.022
  12872. }
  12873. },
  12874. },
  12875. [
  12876. {
  12877. name: "Normal",
  12878. height: math.unit(6 + 11 / 12, "feet"),
  12879. default: true
  12880. },
  12881. {
  12882. name: "Macro",
  12883. height: math.unit(490, "feet")
  12884. },
  12885. {
  12886. name: "Megamacro",
  12887. height: math.unit(10, "miles")
  12888. },
  12889. {
  12890. name: "Gigamacro",
  12891. height: math.unit(50, "miles")
  12892. },
  12893. ]
  12894. ))
  12895. characterMakers.push(() => makeCharacter(
  12896. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12897. {
  12898. front: {
  12899. height: math.unit(6, "feet"),
  12900. weight: math.unit(250, "lb"),
  12901. name: "Front",
  12902. image: {
  12903. source: "./media/characters/xylrem/front.svg",
  12904. extra: 3323 / 3050,
  12905. bottom: 0.065
  12906. }
  12907. },
  12908. },
  12909. [
  12910. {
  12911. name: "Micro",
  12912. height: math.unit(4, "feet")
  12913. },
  12914. {
  12915. name: "Normal",
  12916. height: math.unit(16, "feet"),
  12917. default: true
  12918. },
  12919. {
  12920. name: "Macro",
  12921. height: math.unit(2720, "feet")
  12922. },
  12923. {
  12924. name: "Megamacro",
  12925. height: math.unit(25000, "miles")
  12926. },
  12927. ]
  12928. ))
  12929. characterMakers.push(() => makeCharacter(
  12930. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12931. {
  12932. front: {
  12933. height: math.unit(8, "feet"),
  12934. weight: math.unit(250, "kg"),
  12935. name: "Front",
  12936. image: {
  12937. source: "./media/characters/ikideru/front.svg",
  12938. extra: 930 / 870,
  12939. bottom: 0.087
  12940. }
  12941. },
  12942. back: {
  12943. height: math.unit(8, "feet"),
  12944. weight: math.unit(250, "kg"),
  12945. name: "Back",
  12946. image: {
  12947. source: "./media/characters/ikideru/back.svg",
  12948. extra: 919 / 852,
  12949. bottom: 0.055
  12950. }
  12951. },
  12952. },
  12953. [
  12954. {
  12955. name: "Rare",
  12956. height: math.unit(8, "feet"),
  12957. default: true
  12958. },
  12959. {
  12960. name: "Playful Loom",
  12961. height: math.unit(80, "feet")
  12962. },
  12963. {
  12964. name: "City Leaner",
  12965. height: math.unit(230, "feet")
  12966. },
  12967. {
  12968. name: "Megamacro",
  12969. height: math.unit(2500, "feet")
  12970. },
  12971. {
  12972. name: "Gigamacro",
  12973. height: math.unit(26400, "feet")
  12974. },
  12975. {
  12976. name: "Tectonic Shifter",
  12977. height: math.unit(1.7, "megameters")
  12978. },
  12979. {
  12980. name: "Planet Carer",
  12981. height: math.unit(21, "megameters")
  12982. },
  12983. {
  12984. name: "God",
  12985. height: math.unit(11157.22, "parsecs")
  12986. },
  12987. ]
  12988. ))
  12989. characterMakers.push(() => makeCharacter(
  12990. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12991. {
  12992. front: {
  12993. height: math.unit(6, "feet"),
  12994. weight: math.unit(120, "lb"),
  12995. name: "Front",
  12996. image: {
  12997. source: "./media/characters/neo/front.svg"
  12998. }
  12999. },
  13000. },
  13001. [
  13002. {
  13003. name: "Micro",
  13004. height: math.unit(2, "inches"),
  13005. default: true
  13006. },
  13007. {
  13008. name: "Human Size",
  13009. height: math.unit(5 + 8 / 12, "feet")
  13010. },
  13011. ]
  13012. ))
  13013. characterMakers.push(() => makeCharacter(
  13014. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13015. {
  13016. front: {
  13017. height: math.unit(13 + 10 / 12, "feet"),
  13018. weight: math.unit(5320, "lb"),
  13019. name: "Front",
  13020. image: {
  13021. source: "./media/characters/chauncey-chantz/front.svg",
  13022. extra: 1587 / 1435,
  13023. bottom: 0.02
  13024. }
  13025. },
  13026. },
  13027. [
  13028. {
  13029. name: "Normal",
  13030. height: math.unit(13 + 10 / 12, "feet"),
  13031. default: true
  13032. },
  13033. {
  13034. name: "Macro",
  13035. height: math.unit(45, "feet")
  13036. },
  13037. {
  13038. name: "Megamacro",
  13039. height: math.unit(250, "miles")
  13040. },
  13041. {
  13042. name: "Planetary",
  13043. height: math.unit(10000, "miles")
  13044. },
  13045. {
  13046. name: "Galactic",
  13047. height: math.unit(40000, "parsecs")
  13048. },
  13049. {
  13050. name: "Universal",
  13051. height: math.unit(1, "yottameter")
  13052. },
  13053. ]
  13054. ))
  13055. characterMakers.push(() => makeCharacter(
  13056. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13057. {
  13058. front: {
  13059. height: math.unit(6, "feet"),
  13060. weight: math.unit(150, "lb"),
  13061. name: "Front",
  13062. image: {
  13063. source: "./media/characters/epifox/front.svg",
  13064. extra: 1,
  13065. bottom: 0.075
  13066. }
  13067. },
  13068. },
  13069. [
  13070. {
  13071. name: "Micro",
  13072. height: math.unit(6, "inches")
  13073. },
  13074. {
  13075. name: "Normal",
  13076. height: math.unit(12, "feet"),
  13077. default: true
  13078. },
  13079. {
  13080. name: "Macro",
  13081. height: math.unit(3810, "feet")
  13082. },
  13083. {
  13084. name: "Megamacro",
  13085. height: math.unit(500, "miles")
  13086. },
  13087. ]
  13088. ))
  13089. characterMakers.push(() => makeCharacter(
  13090. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13091. {
  13092. front: {
  13093. height: math.unit(1.8796, "m"),
  13094. weight: math.unit(230, "lb"),
  13095. name: "Front",
  13096. image: {
  13097. source: "./media/characters/colin-t/front.svg",
  13098. extra: 1272 / 1193,
  13099. bottom: 0.07
  13100. }
  13101. },
  13102. },
  13103. [
  13104. {
  13105. name: "Micro",
  13106. height: math.unit(0.571, "meters")
  13107. },
  13108. {
  13109. name: "Normal",
  13110. height: math.unit(1.8796, "meters"),
  13111. default: true
  13112. },
  13113. {
  13114. name: "Tall",
  13115. height: math.unit(4, "meters")
  13116. },
  13117. {
  13118. name: "Macro",
  13119. height: math.unit(67.241, "meters")
  13120. },
  13121. {
  13122. name: "Megamacro",
  13123. height: math.unit(371.856, "meters")
  13124. },
  13125. {
  13126. name: "Planetary",
  13127. height: math.unit(12631.5689, "km")
  13128. },
  13129. ]
  13130. ))
  13131. characterMakers.push(() => makeCharacter(
  13132. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13133. {
  13134. front: {
  13135. height: math.unit(1.85, "meters"),
  13136. weight: math.unit(80, "kg"),
  13137. name: "Front",
  13138. image: {
  13139. source: "./media/characters/matvei/front.svg",
  13140. extra: 456/447,
  13141. bottom: 8/464
  13142. }
  13143. },
  13144. back: {
  13145. height: math.unit(1.85, "meters"),
  13146. weight: math.unit(80, "kg"),
  13147. name: "Back",
  13148. image: {
  13149. source: "./media/characters/matvei/back.svg",
  13150. extra: 434/427,
  13151. bottom: 11/445
  13152. }
  13153. },
  13154. },
  13155. [
  13156. {
  13157. name: "Normal",
  13158. height: math.unit(1.85, "meters"),
  13159. default: true
  13160. },
  13161. ]
  13162. ))
  13163. characterMakers.push(() => makeCharacter(
  13164. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13165. {
  13166. front: {
  13167. height: math.unit(5 + 9 / 12, "feet"),
  13168. weight: math.unit(70, "lb"),
  13169. name: "Front",
  13170. image: {
  13171. source: "./media/characters/quincy/front.svg",
  13172. extra: 3041 / 2751
  13173. }
  13174. },
  13175. back: {
  13176. height: math.unit(5 + 9 / 12, "feet"),
  13177. weight: math.unit(70, "lb"),
  13178. name: "Back",
  13179. image: {
  13180. source: "./media/characters/quincy/back.svg",
  13181. extra: 3041 / 2751
  13182. }
  13183. },
  13184. flying: {
  13185. height: math.unit(5 + 4 / 12, "feet"),
  13186. weight: math.unit(70, "lb"),
  13187. name: "Flying",
  13188. image: {
  13189. source: "./media/characters/quincy/flying.svg",
  13190. extra: 1044 / 930
  13191. }
  13192. },
  13193. },
  13194. [
  13195. {
  13196. name: "Micro",
  13197. height: math.unit(3, "cm")
  13198. },
  13199. {
  13200. name: "Normal",
  13201. height: math.unit(5 + 9 / 12, "feet")
  13202. },
  13203. {
  13204. name: "Macro",
  13205. height: math.unit(200, "meters"),
  13206. default: true
  13207. },
  13208. {
  13209. name: "Megamacro",
  13210. height: math.unit(1000, "meters")
  13211. },
  13212. ]
  13213. ))
  13214. characterMakers.push(() => makeCharacter(
  13215. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13216. {
  13217. front: {
  13218. height: math.unit(3 + 11/12, "feet"),
  13219. weight: math.unit(50, "lb"),
  13220. name: "Front",
  13221. image: {
  13222. source: "./media/characters/vanrel/front.svg",
  13223. extra: 1104/949,
  13224. bottom: 52/1156
  13225. }
  13226. },
  13227. back: {
  13228. height: math.unit(3 + 11/12, "feet"),
  13229. weight: math.unit(50, "lb"),
  13230. name: "Back",
  13231. image: {
  13232. source: "./media/characters/vanrel/back.svg",
  13233. extra: 1119/976,
  13234. bottom: 37/1156
  13235. }
  13236. },
  13237. tome: {
  13238. height: math.unit(1.35, "feet"),
  13239. weight: math.unit(10, "lb"),
  13240. name: "Vanrel's Tome",
  13241. rename: true,
  13242. image: {
  13243. source: "./media/characters/vanrel/tome.svg"
  13244. }
  13245. },
  13246. beans: {
  13247. height: math.unit(0.89, "feet"),
  13248. name: "Beans",
  13249. image: {
  13250. source: "./media/characters/vanrel/beans.svg"
  13251. }
  13252. },
  13253. },
  13254. [
  13255. {
  13256. name: "Normal",
  13257. height: math.unit(3 + 11/12, "feet"),
  13258. default: true
  13259. },
  13260. ]
  13261. ))
  13262. characterMakers.push(() => makeCharacter(
  13263. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13264. {
  13265. front: {
  13266. height: math.unit(7 + 5 / 12, "feet"),
  13267. name: "Front",
  13268. image: {
  13269. source: "./media/characters/kuiper-vanrel/front.svg",
  13270. extra: 1219/1169,
  13271. bottom: 69/1288
  13272. }
  13273. },
  13274. back: {
  13275. height: math.unit(7 + 5 / 12, "feet"),
  13276. name: "Back",
  13277. image: {
  13278. source: "./media/characters/kuiper-vanrel/back.svg",
  13279. extra: 1236/1193,
  13280. bottom: 27/1263
  13281. }
  13282. },
  13283. foot: {
  13284. height: math.unit(0.55, "meters"),
  13285. name: "Foot",
  13286. image: {
  13287. source: "./media/characters/kuiper-vanrel/foot.svg",
  13288. }
  13289. },
  13290. battle: {
  13291. height: math.unit(6.824, "feet"),
  13292. name: "Battle",
  13293. image: {
  13294. source: "./media/characters/kuiper-vanrel/battle.svg",
  13295. extra: 1466 / 1327,
  13296. bottom: 29 / 1492.5
  13297. }
  13298. },
  13299. meerkui: {
  13300. height: math.unit(18, "inches"),
  13301. name: "Meerkui",
  13302. image: {
  13303. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13304. extra: 1354/1289,
  13305. bottom: 69/1423
  13306. }
  13307. },
  13308. },
  13309. [
  13310. {
  13311. name: "Normal",
  13312. height: math.unit(7 + 5 / 12, "feet"),
  13313. default: true
  13314. },
  13315. ]
  13316. ))
  13317. characterMakers.push(() => makeCharacter(
  13318. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13319. {
  13320. front: {
  13321. height: math.unit(8 + 5 / 12, "feet"),
  13322. name: "Front",
  13323. image: {
  13324. source: "./media/characters/keset-vanrel/front.svg",
  13325. extra: 1231/1148,
  13326. bottom: 82/1313
  13327. }
  13328. },
  13329. back: {
  13330. height: math.unit(8 + 5 / 12, "feet"),
  13331. name: "Back",
  13332. image: {
  13333. source: "./media/characters/keset-vanrel/back.svg",
  13334. extra: 1240/1174,
  13335. bottom: 33/1273
  13336. }
  13337. },
  13338. hand: {
  13339. height: math.unit(0.6, "meters"),
  13340. name: "Hand",
  13341. image: {
  13342. source: "./media/characters/keset-vanrel/hand.svg"
  13343. }
  13344. },
  13345. foot: {
  13346. height: math.unit(0.94978, "meters"),
  13347. name: "Foot",
  13348. image: {
  13349. source: "./media/characters/keset-vanrel/foot.svg"
  13350. }
  13351. },
  13352. battle: {
  13353. height: math.unit(7.408, "feet"),
  13354. name: "Battle",
  13355. image: {
  13356. source: "./media/characters/keset-vanrel/battle.svg",
  13357. extra: 1890 / 1386,
  13358. bottom: 73.28 / 1970
  13359. }
  13360. },
  13361. },
  13362. [
  13363. {
  13364. name: "Normal",
  13365. height: math.unit(8 + 5 / 12, "feet"),
  13366. default: true
  13367. },
  13368. ]
  13369. ))
  13370. characterMakers.push(() => makeCharacter(
  13371. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13372. {
  13373. front: {
  13374. height: math.unit(6, "feet"),
  13375. weight: math.unit(150, "lb"),
  13376. name: "Front",
  13377. image: {
  13378. source: "./media/characters/neos/front.svg",
  13379. extra: 1696 / 992,
  13380. bottom: 0.14
  13381. }
  13382. },
  13383. },
  13384. [
  13385. {
  13386. name: "Normal",
  13387. height: math.unit(54, "cm"),
  13388. default: true
  13389. },
  13390. {
  13391. name: "Macro",
  13392. height: math.unit(100, "m")
  13393. },
  13394. {
  13395. name: "Megamacro",
  13396. height: math.unit(10, "km")
  13397. },
  13398. {
  13399. name: "Megamacro+",
  13400. height: math.unit(100, "km")
  13401. },
  13402. {
  13403. name: "Gigamacro",
  13404. height: math.unit(100, "Mm")
  13405. },
  13406. {
  13407. name: "Teramacro",
  13408. height: math.unit(100, "Gm")
  13409. },
  13410. {
  13411. name: "Examacro",
  13412. height: math.unit(100, "Em")
  13413. },
  13414. {
  13415. name: "Godly",
  13416. height: math.unit(10000, "Ym")
  13417. },
  13418. {
  13419. name: "Beyond Godly",
  13420. height: math.unit(25, "multiverses")
  13421. },
  13422. ]
  13423. ))
  13424. characterMakers.push(() => makeCharacter(
  13425. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13426. {
  13427. feminine: {
  13428. height: math.unit(5, "feet"),
  13429. weight: math.unit(100, "lb"),
  13430. name: "Feminine",
  13431. image: {
  13432. source: "./media/characters/sammy-mouse/feminine.svg",
  13433. extra: 2526 / 2425,
  13434. bottom: 0.123
  13435. }
  13436. },
  13437. masculine: {
  13438. height: math.unit(5, "feet"),
  13439. weight: math.unit(100, "lb"),
  13440. name: "Masculine",
  13441. image: {
  13442. source: "./media/characters/sammy-mouse/masculine.svg",
  13443. extra: 2526 / 2425,
  13444. bottom: 0.123
  13445. }
  13446. },
  13447. },
  13448. [
  13449. {
  13450. name: "Micro",
  13451. height: math.unit(5, "inches")
  13452. },
  13453. {
  13454. name: "Normal",
  13455. height: math.unit(5, "feet"),
  13456. default: true
  13457. },
  13458. {
  13459. name: "Macro",
  13460. height: math.unit(60, "feet")
  13461. },
  13462. ]
  13463. ))
  13464. characterMakers.push(() => makeCharacter(
  13465. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13466. {
  13467. front: {
  13468. height: math.unit(4, "feet"),
  13469. weight: math.unit(50, "lb"),
  13470. name: "Front",
  13471. image: {
  13472. source: "./media/characters/kole/front.svg",
  13473. extra: 1423 / 1303,
  13474. bottom: 0.025
  13475. }
  13476. },
  13477. back: {
  13478. height: math.unit(4, "feet"),
  13479. weight: math.unit(50, "lb"),
  13480. name: "Back",
  13481. image: {
  13482. source: "./media/characters/kole/back.svg",
  13483. extra: 1426 / 1280,
  13484. bottom: 0.02
  13485. }
  13486. },
  13487. },
  13488. [
  13489. {
  13490. name: "Normal",
  13491. height: math.unit(4, "feet"),
  13492. default: true
  13493. },
  13494. ]
  13495. ))
  13496. characterMakers.push(() => makeCharacter(
  13497. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13498. {
  13499. front: {
  13500. height: math.unit(2.5, "feet"),
  13501. weight: math.unit(32, "lb"),
  13502. name: "Front",
  13503. image: {
  13504. source: "./media/characters/rufran/front.svg",
  13505. extra: 1313/885,
  13506. bottom: 94/1407
  13507. }
  13508. },
  13509. side: {
  13510. height: math.unit(2.5, "feet"),
  13511. weight: math.unit(32, "lb"),
  13512. name: "Side",
  13513. image: {
  13514. source: "./media/characters/rufran/side.svg",
  13515. extra: 1109/852,
  13516. bottom: 118/1227
  13517. }
  13518. },
  13519. back: {
  13520. height: math.unit(2.5, "feet"),
  13521. weight: math.unit(32, "lb"),
  13522. name: "Back",
  13523. image: {
  13524. source: "./media/characters/rufran/back.svg",
  13525. extra: 1280/878,
  13526. bottom: 131/1411
  13527. }
  13528. },
  13529. mouth: {
  13530. height: math.unit(1.13, "feet"),
  13531. name: "Mouth",
  13532. image: {
  13533. source: "./media/characters/rufran/mouth.svg"
  13534. }
  13535. },
  13536. foot: {
  13537. height: math.unit(1.33, "feet"),
  13538. name: "Foot",
  13539. image: {
  13540. source: "./media/characters/rufran/foot.svg"
  13541. }
  13542. },
  13543. koboldFront: {
  13544. height: math.unit(2 + 6 / 12, "feet"),
  13545. weight: math.unit(20, "lb"),
  13546. name: "Front (Kobold)",
  13547. image: {
  13548. source: "./media/characters/rufran/kobold-front.svg",
  13549. extra: 2041 / 1839,
  13550. bottom: 0.055
  13551. }
  13552. },
  13553. koboldBack: {
  13554. height: math.unit(2 + 6 / 12, "feet"),
  13555. weight: math.unit(20, "lb"),
  13556. name: "Back (Kobold)",
  13557. image: {
  13558. source: "./media/characters/rufran/kobold-back.svg",
  13559. extra: 2054 / 1839,
  13560. bottom: 0.01
  13561. }
  13562. },
  13563. koboldHand: {
  13564. height: math.unit(0.2166, "meters"),
  13565. name: "Hand (Kobold)",
  13566. image: {
  13567. source: "./media/characters/rufran/kobold-hand.svg"
  13568. }
  13569. },
  13570. koboldFoot: {
  13571. height: math.unit(0.185, "meters"),
  13572. name: "Foot (Kobold)",
  13573. image: {
  13574. source: "./media/characters/rufran/kobold-foot.svg"
  13575. }
  13576. },
  13577. },
  13578. [
  13579. {
  13580. name: "Micro",
  13581. height: math.unit(1, "inch")
  13582. },
  13583. {
  13584. name: "Normal",
  13585. height: math.unit(2 + 6 / 12, "feet"),
  13586. default: true
  13587. },
  13588. {
  13589. name: "Big",
  13590. height: math.unit(60, "feet")
  13591. },
  13592. {
  13593. name: "Macro",
  13594. height: math.unit(325, "feet")
  13595. },
  13596. ]
  13597. ))
  13598. characterMakers.push(() => makeCharacter(
  13599. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13600. {
  13601. front: {
  13602. height: math.unit(0.3, "meters"),
  13603. weight: math.unit(3.5, "kg"),
  13604. name: "Front",
  13605. image: {
  13606. source: "./media/characters/chip/front.svg",
  13607. extra: 748 / 674
  13608. }
  13609. },
  13610. },
  13611. [
  13612. {
  13613. name: "Micro",
  13614. height: math.unit(1, "inch"),
  13615. default: true
  13616. },
  13617. ]
  13618. ))
  13619. characterMakers.push(() => makeCharacter(
  13620. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13621. {
  13622. side: {
  13623. height: math.unit(2.3, "meters"),
  13624. weight: math.unit(3500, "lb"),
  13625. name: "Side",
  13626. image: {
  13627. source: "./media/characters/torvid/side.svg",
  13628. extra: 1972 / 722,
  13629. bottom: 0.035
  13630. }
  13631. },
  13632. },
  13633. [
  13634. {
  13635. name: "Normal",
  13636. height: math.unit(2.3, "meters"),
  13637. default: true
  13638. },
  13639. ]
  13640. ))
  13641. characterMakers.push(() => makeCharacter(
  13642. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13643. {
  13644. front: {
  13645. height: math.unit(2, "meters"),
  13646. weight: math.unit(150.5, "kg"),
  13647. name: "Front",
  13648. image: {
  13649. source: "./media/characters/susan/front.svg",
  13650. extra: 693 / 635,
  13651. bottom: 0.05
  13652. }
  13653. },
  13654. },
  13655. [
  13656. {
  13657. name: "Megamacro",
  13658. height: math.unit(505, "miles"),
  13659. default: true
  13660. },
  13661. ]
  13662. ))
  13663. characterMakers.push(() => makeCharacter(
  13664. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13665. {
  13666. front: {
  13667. height: math.unit(6, "feet"),
  13668. weight: math.unit(150, "lb"),
  13669. name: "Front",
  13670. image: {
  13671. source: "./media/characters/raindrops/front.svg",
  13672. extra: 2655 / 2461,
  13673. bottom: 49 / 2705
  13674. }
  13675. },
  13676. back: {
  13677. height: math.unit(6, "feet"),
  13678. weight: math.unit(150, "lb"),
  13679. name: "Back",
  13680. image: {
  13681. source: "./media/characters/raindrops/back.svg",
  13682. extra: 2574 / 2400,
  13683. bottom: 65 / 2634
  13684. }
  13685. },
  13686. },
  13687. [
  13688. {
  13689. name: "Micro",
  13690. height: math.unit(6, "inches")
  13691. },
  13692. {
  13693. name: "Normal",
  13694. height: math.unit(6 + 2 / 12, "feet")
  13695. },
  13696. {
  13697. name: "Macro",
  13698. height: math.unit(131, "feet"),
  13699. default: true
  13700. },
  13701. {
  13702. name: "Megamacro",
  13703. height: math.unit(15, "miles")
  13704. },
  13705. {
  13706. name: "Gigamacro",
  13707. height: math.unit(4000, "miles")
  13708. },
  13709. {
  13710. name: "Teramacro",
  13711. height: math.unit(315000, "miles")
  13712. },
  13713. ]
  13714. ))
  13715. characterMakers.push(() => makeCharacter(
  13716. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13717. {
  13718. front: {
  13719. height: math.unit(2.794, "meters"),
  13720. weight: math.unit(325, "kg"),
  13721. name: "Front",
  13722. image: {
  13723. source: "./media/characters/tezwa/front.svg",
  13724. extra: 2083 / 1906,
  13725. bottom: 0.031
  13726. }
  13727. },
  13728. foot: {
  13729. height: math.unit(0.687, "meters"),
  13730. name: "Foot",
  13731. image: {
  13732. source: "./media/characters/tezwa/foot.svg"
  13733. }
  13734. },
  13735. },
  13736. [
  13737. {
  13738. name: "Normal",
  13739. height: math.unit(9 + 2 / 12, "feet"),
  13740. default: true
  13741. },
  13742. ]
  13743. ))
  13744. characterMakers.push(() => makeCharacter(
  13745. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13746. {
  13747. front: {
  13748. height: math.unit(58, "feet"),
  13749. weight: math.unit(89000, "lb"),
  13750. name: "Front",
  13751. image: {
  13752. source: "./media/characters/typhus/front.svg",
  13753. extra: 816 / 800,
  13754. bottom: 0.065
  13755. }
  13756. },
  13757. },
  13758. [
  13759. {
  13760. name: "Macro",
  13761. height: math.unit(58, "feet"),
  13762. default: true
  13763. },
  13764. ]
  13765. ))
  13766. characterMakers.push(() => makeCharacter(
  13767. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13768. {
  13769. front: {
  13770. height: math.unit(12, "feet"),
  13771. weight: math.unit(6, "tonnes"),
  13772. name: "Front",
  13773. image: {
  13774. source: "./media/characters/lyra-von-wulf/front.svg",
  13775. extra: 1,
  13776. bottom: 0.10
  13777. }
  13778. },
  13779. frontMecha: {
  13780. height: math.unit(12, "feet"),
  13781. weight: math.unit(12, "tonnes"),
  13782. name: "Front (Mecha)",
  13783. image: {
  13784. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13785. extra: 1,
  13786. bottom: 0.042
  13787. }
  13788. },
  13789. maw: {
  13790. height: math.unit(2.2, "feet"),
  13791. name: "Maw",
  13792. image: {
  13793. source: "./media/characters/lyra-von-wulf/maw.svg"
  13794. }
  13795. },
  13796. },
  13797. [
  13798. {
  13799. name: "Normal",
  13800. height: math.unit(12, "feet"),
  13801. default: true
  13802. },
  13803. {
  13804. name: "Classic",
  13805. height: math.unit(50, "feet")
  13806. },
  13807. {
  13808. name: "Macro",
  13809. height: math.unit(500, "feet")
  13810. },
  13811. {
  13812. name: "Megamacro",
  13813. height: math.unit(1, "mile")
  13814. },
  13815. {
  13816. name: "Gigamacro",
  13817. height: math.unit(400, "miles")
  13818. },
  13819. {
  13820. name: "Teramacro",
  13821. height: math.unit(22000, "miles")
  13822. },
  13823. {
  13824. name: "Solarmacro",
  13825. height: math.unit(8600000, "miles")
  13826. },
  13827. {
  13828. name: "Galactic",
  13829. height: math.unit(1057000, "lightyears")
  13830. },
  13831. ]
  13832. ))
  13833. characterMakers.push(() => makeCharacter(
  13834. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13835. {
  13836. front: {
  13837. height: math.unit(6 + 10 / 12, "feet"),
  13838. weight: math.unit(150, "lb"),
  13839. name: "Front",
  13840. image: {
  13841. source: "./media/characters/dixon/front.svg",
  13842. extra: 3361 / 3209,
  13843. bottom: 0.01
  13844. }
  13845. },
  13846. },
  13847. [
  13848. {
  13849. name: "Normal",
  13850. height: math.unit(6 + 10 / 12, "feet"),
  13851. default: true
  13852. },
  13853. {
  13854. name: "Big",
  13855. height: math.unit(12, "meters")
  13856. },
  13857. {
  13858. name: "Macro",
  13859. height: math.unit(500, "meters")
  13860. },
  13861. {
  13862. name: "Megamacro",
  13863. height: math.unit(2, "km")
  13864. },
  13865. ]
  13866. ))
  13867. characterMakers.push(() => makeCharacter(
  13868. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13869. {
  13870. front: {
  13871. height: math.unit(185, "cm"),
  13872. weight: math.unit(68, "kg"),
  13873. name: "Front",
  13874. image: {
  13875. source: "./media/characters/kauko/front.svg",
  13876. extra: 1455 / 1421,
  13877. bottom: 0.03
  13878. }
  13879. },
  13880. back: {
  13881. height: math.unit(185, "cm"),
  13882. weight: math.unit(68, "kg"),
  13883. name: "Back",
  13884. image: {
  13885. source: "./media/characters/kauko/back.svg",
  13886. extra: 1455 / 1421,
  13887. bottom: 0.004
  13888. }
  13889. },
  13890. },
  13891. [
  13892. {
  13893. name: "Normal",
  13894. height: math.unit(185, "cm"),
  13895. default: true
  13896. },
  13897. ]
  13898. ))
  13899. characterMakers.push(() => makeCharacter(
  13900. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13901. {
  13902. frontSfw: {
  13903. height: math.unit(5, "meters"),
  13904. weight: math.unit(4250, "lb"),
  13905. name: "Front",
  13906. image: {
  13907. source: "./media/characters/varg/front-sfw.svg",
  13908. extra: 1103/1010,
  13909. bottom: 50/1153
  13910. },
  13911. form: "anthro",
  13912. default: true
  13913. },
  13914. backSfw: {
  13915. height: math.unit(5, "meters"),
  13916. weight: math.unit(4250, "lb"),
  13917. name: "Back",
  13918. image: {
  13919. source: "./media/characters/varg/back-sfw.svg",
  13920. extra: 1038/1022,
  13921. bottom: 36/1074
  13922. },
  13923. form: "anthro"
  13924. },
  13925. frontNsfw: {
  13926. height: math.unit(5, "meters"),
  13927. weight: math.unit(4250, "lb"),
  13928. name: "Front (NSFW)",
  13929. image: {
  13930. source: "./media/characters/varg/front-nsfw.svg",
  13931. extra: 1103/1010,
  13932. bottom: 50/1153
  13933. },
  13934. form: "anthro"
  13935. },
  13936. sheath: {
  13937. height: math.unit(3.8, "feet"),
  13938. weight: math.unit(90, "kilograms"),
  13939. name: "Sheath",
  13940. image: {
  13941. source: "./media/characters/varg/sheath.svg"
  13942. },
  13943. form: "anthro"
  13944. },
  13945. dick: {
  13946. height: math.unit(4.6, "feet"),
  13947. weight: math.unit(451, "kilograms"),
  13948. name: "Dick",
  13949. image: {
  13950. source: "./media/characters/varg/dick.svg"
  13951. },
  13952. form: "anthro"
  13953. },
  13954. feralSfw: {
  13955. height: math.unit(5, "meters"),
  13956. weight: math.unit(100000, "lb"),
  13957. name: "Side",
  13958. image: {
  13959. source: "./media/characters/varg/feral-sfw.svg",
  13960. extra: 1065/511,
  13961. bottom: 211/1276
  13962. },
  13963. form: "feral",
  13964. default: true
  13965. },
  13966. feralNsfw: {
  13967. height: math.unit(5, "meters"),
  13968. weight: math.unit(100000, "lb"),
  13969. name: "Side (NSFW)",
  13970. image: {
  13971. source: "./media/characters/varg/feral-nsfw.svg",
  13972. extra: 1065/511,
  13973. bottom: 211/1276
  13974. },
  13975. form: "feral",
  13976. },
  13977. feralSheath: {
  13978. height: math.unit(9.8, "feet"),
  13979. weight: math.unit(2000, "kilograms"),
  13980. name: "Sheath",
  13981. image: {
  13982. source: "./media/characters/varg/sheath.svg"
  13983. },
  13984. form: "feral"
  13985. },
  13986. feralDick: {
  13987. height: math.unit(13.11, "feet"),
  13988. weight: math.unit(10440, "kilograms"),
  13989. name: "Dick",
  13990. image: {
  13991. source: "./media/characters/varg/dick.svg"
  13992. },
  13993. form: "feral"
  13994. },
  13995. },
  13996. [
  13997. {
  13998. name: "Normal",
  13999. height: math.unit(5, "meters"),
  14000. form: "anthro"
  14001. },
  14002. {
  14003. name: "Macro",
  14004. height: math.unit(200, "meters"),
  14005. form: "anthro"
  14006. },
  14007. {
  14008. name: "Megamacro",
  14009. height: math.unit(20, "kilometers"),
  14010. form: "anthro"
  14011. },
  14012. {
  14013. name: "True Size",
  14014. height: math.unit(211, "km"),
  14015. form: "anthro",
  14016. default: true
  14017. },
  14018. {
  14019. name: "Gigamacro",
  14020. height: math.unit(1000, "km"),
  14021. form: "anthro"
  14022. },
  14023. {
  14024. name: "Gigamacro+",
  14025. height: math.unit(8000, "km"),
  14026. form: "anthro"
  14027. },
  14028. {
  14029. name: "Teramacro",
  14030. height: math.unit(1000000, "km"),
  14031. form: "anthro"
  14032. },
  14033. {
  14034. name: "Normal",
  14035. height: math.unit(5, "meters"),
  14036. form: "feral"
  14037. },
  14038. {
  14039. name: "Macro",
  14040. height: math.unit(200, "meters"),
  14041. form: "feral"
  14042. },
  14043. {
  14044. name: "Megamacro",
  14045. height: math.unit(20, "kilometers"),
  14046. form: "feral"
  14047. },
  14048. {
  14049. name: "True Size",
  14050. height: math.unit(211, "km"),
  14051. form: "feral",
  14052. default: true
  14053. },
  14054. {
  14055. name: "Gigamacro",
  14056. height: math.unit(1000, "km"),
  14057. form: "feral"
  14058. },
  14059. {
  14060. name: "Gigamacro+",
  14061. height: math.unit(8000, "km"),
  14062. form: "feral"
  14063. },
  14064. {
  14065. name: "Teramacro",
  14066. height: math.unit(1000000, "km"),
  14067. form: "feral"
  14068. },
  14069. ],
  14070. {
  14071. "anthro": {
  14072. name: "Anthro",
  14073. default: true
  14074. },
  14075. "feral": {
  14076. name: "Feral",
  14077. },
  14078. }
  14079. ))
  14080. characterMakers.push(() => makeCharacter(
  14081. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14082. {
  14083. front: {
  14084. height: math.unit(7 + 7 / 12, "feet"),
  14085. weight: math.unit(267, "lb"),
  14086. name: "Front",
  14087. image: {
  14088. source: "./media/characters/dayza/front.svg",
  14089. extra: 1262 / 1200,
  14090. bottom: 0.035
  14091. }
  14092. },
  14093. side: {
  14094. height: math.unit(7 + 7 / 12, "feet"),
  14095. weight: math.unit(267, "lb"),
  14096. name: "Side",
  14097. image: {
  14098. source: "./media/characters/dayza/side.svg",
  14099. extra: 1295 / 1245,
  14100. bottom: 0.05
  14101. }
  14102. },
  14103. back: {
  14104. height: math.unit(7 + 7 / 12, "feet"),
  14105. weight: math.unit(267, "lb"),
  14106. name: "Back",
  14107. image: {
  14108. source: "./media/characters/dayza/back.svg",
  14109. extra: 1241 / 1170
  14110. }
  14111. },
  14112. },
  14113. [
  14114. {
  14115. name: "Normal",
  14116. height: math.unit(7 + 7 / 12, "feet"),
  14117. default: true
  14118. },
  14119. {
  14120. name: "Macro",
  14121. height: math.unit(155, "feet")
  14122. },
  14123. ]
  14124. ))
  14125. characterMakers.push(() => makeCharacter(
  14126. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14127. {
  14128. front: {
  14129. height: math.unit(6 + 5 / 12, "feet"),
  14130. weight: math.unit(160, "lb"),
  14131. name: "Front",
  14132. image: {
  14133. source: "./media/characters/xanthos/front.svg",
  14134. extra: 1,
  14135. bottom: 0.04
  14136. }
  14137. },
  14138. back: {
  14139. height: math.unit(6 + 5 / 12, "feet"),
  14140. weight: math.unit(160, "lb"),
  14141. name: "Back",
  14142. image: {
  14143. source: "./media/characters/xanthos/back.svg",
  14144. extra: 1,
  14145. bottom: 0.03
  14146. }
  14147. },
  14148. hand: {
  14149. height: math.unit(0.928, "feet"),
  14150. name: "Hand",
  14151. image: {
  14152. source: "./media/characters/xanthos/hand.svg"
  14153. }
  14154. },
  14155. foot: {
  14156. height: math.unit(1.286, "feet"),
  14157. name: "Foot",
  14158. image: {
  14159. source: "./media/characters/xanthos/foot.svg"
  14160. }
  14161. },
  14162. },
  14163. [
  14164. {
  14165. name: "Normal",
  14166. height: math.unit(6 + 5 / 12, "feet"),
  14167. default: true
  14168. },
  14169. {
  14170. name: "Normal+",
  14171. height: math.unit(6, "meters")
  14172. },
  14173. {
  14174. name: "Macro",
  14175. height: math.unit(40, "feet")
  14176. },
  14177. {
  14178. name: "Macro+",
  14179. height: math.unit(200, "meters")
  14180. },
  14181. {
  14182. name: "Megamacro",
  14183. height: math.unit(20, "km")
  14184. },
  14185. {
  14186. name: "Megamacro+",
  14187. height: math.unit(100, "km")
  14188. },
  14189. {
  14190. name: "Gigamacro",
  14191. height: math.unit(200, "megameters")
  14192. },
  14193. {
  14194. name: "Gigamacro+",
  14195. height: math.unit(1.5, "gigameters")
  14196. },
  14197. ]
  14198. ))
  14199. characterMakers.push(() => makeCharacter(
  14200. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14201. {
  14202. front: {
  14203. height: math.unit(6 + 3 / 12, "feet"),
  14204. weight: math.unit(215, "lb"),
  14205. name: "Front",
  14206. image: {
  14207. source: "./media/characters/grynn/front.svg",
  14208. extra: 4627 / 4209,
  14209. bottom: 0.047
  14210. }
  14211. },
  14212. },
  14213. [
  14214. {
  14215. name: "Micro",
  14216. height: math.unit(6, "inches")
  14217. },
  14218. {
  14219. name: "Normal",
  14220. height: math.unit(6 + 3 / 12, "feet"),
  14221. default: true
  14222. },
  14223. {
  14224. name: "Big",
  14225. height: math.unit(104, "feet")
  14226. },
  14227. {
  14228. name: "Macro",
  14229. height: math.unit(944, "feet")
  14230. },
  14231. {
  14232. name: "Macro+",
  14233. height: math.unit(9480, "feet")
  14234. },
  14235. {
  14236. name: "Megamacro",
  14237. height: math.unit(78752, "feet")
  14238. },
  14239. {
  14240. name: "Megamacro+",
  14241. height: math.unit(630128, "feet")
  14242. },
  14243. {
  14244. name: "Megamacro++",
  14245. height: math.unit(3150695, "feet")
  14246. },
  14247. ]
  14248. ))
  14249. characterMakers.push(() => makeCharacter(
  14250. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14251. {
  14252. front: {
  14253. height: math.unit(7 + 5 / 12, "feet"),
  14254. weight: math.unit(450, "lb"),
  14255. name: "Front",
  14256. image: {
  14257. source: "./media/characters/mocha-aura/front.svg",
  14258. extra: 1907 / 1817,
  14259. bottom: 0.04
  14260. }
  14261. },
  14262. back: {
  14263. height: math.unit(7 + 5 / 12, "feet"),
  14264. weight: math.unit(450, "lb"),
  14265. name: "Back",
  14266. image: {
  14267. source: "./media/characters/mocha-aura/back.svg",
  14268. extra: 1900 / 1825,
  14269. bottom: 0.045
  14270. }
  14271. },
  14272. },
  14273. [
  14274. {
  14275. name: "Nano",
  14276. height: math.unit(1, "nm")
  14277. },
  14278. {
  14279. name: "Megamicro",
  14280. height: math.unit(1, "mm")
  14281. },
  14282. {
  14283. name: "Micro",
  14284. height: math.unit(3, "inches")
  14285. },
  14286. {
  14287. name: "Normal",
  14288. height: math.unit(7 + 5 / 12, "feet"),
  14289. default: true
  14290. },
  14291. {
  14292. name: "Macro",
  14293. height: math.unit(30, "feet")
  14294. },
  14295. {
  14296. name: "Megamacro",
  14297. height: math.unit(3500, "feet")
  14298. },
  14299. {
  14300. name: "Teramacro",
  14301. height: math.unit(500000, "miles")
  14302. },
  14303. {
  14304. name: "Petamacro",
  14305. height: math.unit(50000000000000000, "parsecs")
  14306. },
  14307. ]
  14308. ))
  14309. characterMakers.push(() => makeCharacter(
  14310. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14311. {
  14312. front: {
  14313. height: math.unit(6, "feet"),
  14314. weight: math.unit(150, "lb"),
  14315. name: "Front",
  14316. image: {
  14317. source: "./media/characters/ilisha-devya/front.svg",
  14318. extra: 1053/1049,
  14319. bottom: 270/1323
  14320. }
  14321. },
  14322. back: {
  14323. height: math.unit(6, "feet"),
  14324. weight: math.unit(150, "lb"),
  14325. name: "Back",
  14326. image: {
  14327. source: "./media/characters/ilisha-devya/back.svg",
  14328. extra: 1131/1128,
  14329. bottom: 39/1170
  14330. }
  14331. },
  14332. },
  14333. [
  14334. {
  14335. name: "Macro",
  14336. height: math.unit(500, "feet"),
  14337. default: true
  14338. },
  14339. {
  14340. name: "Megamacro",
  14341. height: math.unit(10, "miles")
  14342. },
  14343. {
  14344. name: "Gigamacro",
  14345. height: math.unit(100000, "miles")
  14346. },
  14347. {
  14348. name: "Examacro",
  14349. height: math.unit(1e9, "lightyears")
  14350. },
  14351. {
  14352. name: "Omniversal",
  14353. height: math.unit(1e33, "lightyears")
  14354. },
  14355. {
  14356. name: "Beyond Infinite",
  14357. height: math.unit(1e100, "lightyears")
  14358. },
  14359. ]
  14360. ))
  14361. characterMakers.push(() => makeCharacter(
  14362. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14363. {
  14364. Side: {
  14365. height: math.unit(6, "feet"),
  14366. weight: math.unit(150, "lb"),
  14367. name: "Side",
  14368. image: {
  14369. source: "./media/characters/mira/side.svg",
  14370. extra: 900 / 799,
  14371. bottom: 0.02
  14372. }
  14373. },
  14374. },
  14375. [
  14376. {
  14377. name: "Human Size",
  14378. height: math.unit(6, "feet")
  14379. },
  14380. {
  14381. name: "Macro",
  14382. height: math.unit(100, "feet"),
  14383. default: true
  14384. },
  14385. {
  14386. name: "Megamacro",
  14387. height: math.unit(10, "miles")
  14388. },
  14389. {
  14390. name: "Gigamacro",
  14391. height: math.unit(25000, "miles")
  14392. },
  14393. {
  14394. name: "Teramacro",
  14395. height: math.unit(300, "AU")
  14396. },
  14397. {
  14398. name: "Full Size",
  14399. height: math.unit(4.5e10, "lightyears")
  14400. },
  14401. ]
  14402. ))
  14403. characterMakers.push(() => makeCharacter(
  14404. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14405. {
  14406. front: {
  14407. height: math.unit(6, "feet"),
  14408. weight: math.unit(150, "lb"),
  14409. name: "Front",
  14410. image: {
  14411. source: "./media/characters/holly/front.svg",
  14412. extra: 639 / 606
  14413. }
  14414. },
  14415. back: {
  14416. height: math.unit(6, "feet"),
  14417. weight: math.unit(150, "lb"),
  14418. name: "Back",
  14419. image: {
  14420. source: "./media/characters/holly/back.svg",
  14421. extra: 623 / 598
  14422. }
  14423. },
  14424. frontWorking: {
  14425. height: math.unit(6, "feet"),
  14426. weight: math.unit(150, "lb"),
  14427. name: "Front (Working)",
  14428. image: {
  14429. source: "./media/characters/holly/front-working.svg",
  14430. extra: 607 / 577,
  14431. bottom: 0.048
  14432. }
  14433. },
  14434. },
  14435. [
  14436. {
  14437. name: "Normal",
  14438. height: math.unit(12 + 3 / 12, "feet"),
  14439. default: true
  14440. },
  14441. ]
  14442. ))
  14443. characterMakers.push(() => makeCharacter(
  14444. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14445. {
  14446. front: {
  14447. height: math.unit(6, "feet"),
  14448. weight: math.unit(150, "lb"),
  14449. name: "Front",
  14450. image: {
  14451. source: "./media/characters/porter/front.svg",
  14452. extra: 1,
  14453. bottom: 0.01
  14454. }
  14455. },
  14456. frontRobes: {
  14457. height: math.unit(6, "feet"),
  14458. weight: math.unit(150, "lb"),
  14459. name: "Front (Robes)",
  14460. image: {
  14461. source: "./media/characters/porter/front-robes.svg",
  14462. extra: 1.01,
  14463. bottom: 0.01
  14464. }
  14465. },
  14466. },
  14467. [
  14468. {
  14469. name: "Normal",
  14470. height: math.unit(11 + 9 / 12, "feet"),
  14471. default: true
  14472. },
  14473. ]
  14474. ))
  14475. characterMakers.push(() => makeCharacter(
  14476. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14477. {
  14478. legendary: {
  14479. height: math.unit(6, "feet"),
  14480. weight: math.unit(150, "lb"),
  14481. name: "Legendary",
  14482. image: {
  14483. source: "./media/characters/lucy/legendary.svg",
  14484. extra: 1355 / 1100,
  14485. bottom: 0.045
  14486. }
  14487. },
  14488. },
  14489. [
  14490. {
  14491. name: "Legendary",
  14492. height: math.unit(86882 * 2, "miles"),
  14493. default: true
  14494. },
  14495. ]
  14496. ))
  14497. characterMakers.push(() => makeCharacter(
  14498. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14499. {
  14500. front: {
  14501. height: math.unit(6, "feet"),
  14502. weight: math.unit(150, "lb"),
  14503. name: "Front",
  14504. image: {
  14505. source: "./media/characters/drusilla/front.svg",
  14506. extra: 678 / 635,
  14507. bottom: 0.03
  14508. }
  14509. },
  14510. back: {
  14511. height: math.unit(6, "feet"),
  14512. weight: math.unit(150, "lb"),
  14513. name: "Back",
  14514. image: {
  14515. source: "./media/characters/drusilla/back.svg",
  14516. extra: 678 / 635,
  14517. bottom: 0.005
  14518. }
  14519. },
  14520. },
  14521. [
  14522. {
  14523. name: "Macro",
  14524. height: math.unit(100, "feet")
  14525. },
  14526. {
  14527. name: "Canon Height",
  14528. height: math.unit(2000, "feet"),
  14529. default: true
  14530. },
  14531. ]
  14532. ))
  14533. characterMakers.push(() => makeCharacter(
  14534. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14535. {
  14536. front: {
  14537. height: math.unit(6, "feet"),
  14538. weight: math.unit(180, "lb"),
  14539. name: "Front",
  14540. image: {
  14541. source: "./media/characters/renard-thatch/front.svg",
  14542. extra: 2411 / 2275,
  14543. bottom: 0.01
  14544. }
  14545. },
  14546. frontPosing: {
  14547. height: math.unit(6, "feet"),
  14548. weight: math.unit(180, "lb"),
  14549. name: "Front (Posing)",
  14550. image: {
  14551. source: "./media/characters/renard-thatch/front-posing.svg",
  14552. extra: 2381 / 2261,
  14553. bottom: 0.01
  14554. }
  14555. },
  14556. back: {
  14557. height: math.unit(6, "feet"),
  14558. weight: math.unit(180, "lb"),
  14559. name: "Back",
  14560. image: {
  14561. source: "./media/characters/renard-thatch/back.svg",
  14562. extra: 2428 / 2288
  14563. }
  14564. },
  14565. },
  14566. [
  14567. {
  14568. name: "Micro",
  14569. height: math.unit(3, "inches")
  14570. },
  14571. {
  14572. name: "Default",
  14573. height: math.unit(6, "feet"),
  14574. default: true
  14575. },
  14576. {
  14577. name: "Macro",
  14578. height: math.unit(75, "feet")
  14579. },
  14580. ]
  14581. ))
  14582. characterMakers.push(() => makeCharacter(
  14583. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14584. {
  14585. front: {
  14586. height: math.unit(1450, "feet"),
  14587. weight: math.unit(1.21e6, "tons"),
  14588. name: "Front",
  14589. image: {
  14590. source: "./media/characters/sekvra/front.svg",
  14591. extra: 1193/1190,
  14592. bottom: 78/1271
  14593. }
  14594. },
  14595. side: {
  14596. height: math.unit(1450, "feet"),
  14597. weight: math.unit(1.21e6, "tons"),
  14598. name: "Side",
  14599. image: {
  14600. source: "./media/characters/sekvra/side.svg",
  14601. extra: 1193/1190,
  14602. bottom: 52/1245
  14603. }
  14604. },
  14605. back: {
  14606. height: math.unit(1450, "feet"),
  14607. weight: math.unit(1.21e6, "tons"),
  14608. name: "Back",
  14609. image: {
  14610. source: "./media/characters/sekvra/back.svg",
  14611. extra: 1219/1216,
  14612. bottom: 21/1240
  14613. }
  14614. },
  14615. frontClothed: {
  14616. height: math.unit(1450, "feet"),
  14617. weight: math.unit(1.21e6, "tons"),
  14618. name: "Front (Clothed)",
  14619. image: {
  14620. source: "./media/characters/sekvra/front-clothed.svg",
  14621. extra: 1192/1189,
  14622. bottom: 79/1271
  14623. }
  14624. },
  14625. },
  14626. [
  14627. {
  14628. name: "Macro",
  14629. height: math.unit(1450, "feet"),
  14630. default: true
  14631. },
  14632. {
  14633. name: "Megamacro",
  14634. height: math.unit(15000, "feet")
  14635. },
  14636. ]
  14637. ))
  14638. characterMakers.push(() => makeCharacter(
  14639. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14640. {
  14641. front: {
  14642. height: math.unit(6, "feet"),
  14643. weight: math.unit(150, "lb"),
  14644. name: "Front",
  14645. image: {
  14646. source: "./media/characters/carmine/front.svg",
  14647. extra: 1,
  14648. bottom: 0.035
  14649. }
  14650. },
  14651. frontArmor: {
  14652. height: math.unit(6, "feet"),
  14653. weight: math.unit(150, "lb"),
  14654. name: "Front (Armor)",
  14655. image: {
  14656. source: "./media/characters/carmine/front-armor.svg",
  14657. extra: 1,
  14658. bottom: 0.035
  14659. }
  14660. },
  14661. },
  14662. [
  14663. {
  14664. name: "Large",
  14665. height: math.unit(1, "mile")
  14666. },
  14667. {
  14668. name: "Huge",
  14669. height: math.unit(40, "miles"),
  14670. default: true
  14671. },
  14672. {
  14673. name: "Colossal",
  14674. height: math.unit(2500, "miles")
  14675. },
  14676. ]
  14677. ))
  14678. characterMakers.push(() => makeCharacter(
  14679. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14680. {
  14681. front: {
  14682. height: math.unit(6, "feet"),
  14683. weight: math.unit(150, "lb"),
  14684. name: "Front",
  14685. image: {
  14686. source: "./media/characters/elyssia/front.svg",
  14687. extra: 2201 / 2035,
  14688. bottom: 0.05
  14689. }
  14690. },
  14691. frontClothed: {
  14692. height: math.unit(6, "feet"),
  14693. weight: math.unit(150, "lb"),
  14694. name: "Front (Clothed)",
  14695. image: {
  14696. source: "./media/characters/elyssia/front-clothed.svg",
  14697. extra: 2201 / 2035,
  14698. bottom: 0.05
  14699. }
  14700. },
  14701. back: {
  14702. height: math.unit(6, "feet"),
  14703. weight: math.unit(150, "lb"),
  14704. name: "Back",
  14705. image: {
  14706. source: "./media/characters/elyssia/back.svg",
  14707. extra: 2201 / 2035,
  14708. bottom: 0.013
  14709. }
  14710. },
  14711. },
  14712. [
  14713. {
  14714. name: "Smaller",
  14715. height: math.unit(150, "feet")
  14716. },
  14717. {
  14718. name: "Standard",
  14719. height: math.unit(1400, "feet"),
  14720. default: true
  14721. },
  14722. {
  14723. name: "Distracted",
  14724. height: math.unit(15000, "feet")
  14725. },
  14726. ]
  14727. ))
  14728. characterMakers.push(() => makeCharacter(
  14729. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14730. {
  14731. front: {
  14732. height: math.unit(7 + 4/12, "feet"),
  14733. weight: math.unit(690, "lb"),
  14734. name: "Front",
  14735. image: {
  14736. source: "./media/characters/geno-maxwell/front.svg",
  14737. extra: 984/856,
  14738. bottom: 87/1071
  14739. }
  14740. },
  14741. back: {
  14742. height: math.unit(7 + 4/12, "feet"),
  14743. weight: math.unit(690, "lb"),
  14744. name: "Back",
  14745. image: {
  14746. source: "./media/characters/geno-maxwell/back.svg",
  14747. extra: 981/854,
  14748. bottom: 57/1038
  14749. }
  14750. },
  14751. frontCostume: {
  14752. height: math.unit(7 + 4/12, "feet"),
  14753. weight: math.unit(690, "lb"),
  14754. name: "Front (Costume)",
  14755. image: {
  14756. source: "./media/characters/geno-maxwell/front-costume.svg",
  14757. extra: 984/856,
  14758. bottom: 87/1071
  14759. }
  14760. },
  14761. backcostume: {
  14762. height: math.unit(7 + 4/12, "feet"),
  14763. weight: math.unit(690, "lb"),
  14764. name: "Back (Costume)",
  14765. image: {
  14766. source: "./media/characters/geno-maxwell/back-costume.svg",
  14767. extra: 981/854,
  14768. bottom: 57/1038
  14769. }
  14770. },
  14771. },
  14772. [
  14773. {
  14774. name: "Micro",
  14775. height: math.unit(3, "inches")
  14776. },
  14777. {
  14778. name: "Normal",
  14779. height: math.unit(7 + 4 / 12, "feet"),
  14780. default: true
  14781. },
  14782. {
  14783. name: "Macro",
  14784. height: math.unit(220, "feet")
  14785. },
  14786. {
  14787. name: "Megamacro",
  14788. height: math.unit(11, "miles")
  14789. },
  14790. ]
  14791. ))
  14792. characterMakers.push(() => makeCharacter(
  14793. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14794. {
  14795. front: {
  14796. height: math.unit(7 + 4/12, "feet"),
  14797. weight: math.unit(750, "lb"),
  14798. name: "Front",
  14799. image: {
  14800. source: "./media/characters/regena-maxwell/front.svg",
  14801. extra: 984/856,
  14802. bottom: 87/1071
  14803. }
  14804. },
  14805. back: {
  14806. height: math.unit(7 + 4/12, "feet"),
  14807. weight: math.unit(750, "lb"),
  14808. name: "Back",
  14809. image: {
  14810. source: "./media/characters/regena-maxwell/back.svg",
  14811. extra: 981/854,
  14812. bottom: 57/1038
  14813. }
  14814. },
  14815. frontCostume: {
  14816. height: math.unit(7 + 4/12, "feet"),
  14817. weight: math.unit(750, "lb"),
  14818. name: "Front (Costume)",
  14819. image: {
  14820. source: "./media/characters/regena-maxwell/front-costume.svg",
  14821. extra: 984/856,
  14822. bottom: 87/1071
  14823. }
  14824. },
  14825. backcostume: {
  14826. height: math.unit(7 + 4/12, "feet"),
  14827. weight: math.unit(750, "lb"),
  14828. name: "Back (Costume)",
  14829. image: {
  14830. source: "./media/characters/regena-maxwell/back-costume.svg",
  14831. extra: 981/854,
  14832. bottom: 57/1038
  14833. }
  14834. },
  14835. },
  14836. [
  14837. {
  14838. name: "Normal",
  14839. height: math.unit(7 + 4 / 12, "feet"),
  14840. default: true
  14841. },
  14842. {
  14843. name: "Macro",
  14844. height: math.unit(220, "feet")
  14845. },
  14846. {
  14847. name: "Megamacro",
  14848. height: math.unit(11, "miles")
  14849. },
  14850. ]
  14851. ))
  14852. characterMakers.push(() => makeCharacter(
  14853. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14854. {
  14855. front: {
  14856. height: math.unit(6, "feet"),
  14857. weight: math.unit(150, "lb"),
  14858. name: "Front",
  14859. image: {
  14860. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14861. extra: 860 / 690,
  14862. bottom: 0.03
  14863. }
  14864. },
  14865. },
  14866. [
  14867. {
  14868. name: "Normal",
  14869. height: math.unit(1.7, "meters"),
  14870. default: true
  14871. },
  14872. ]
  14873. ))
  14874. characterMakers.push(() => makeCharacter(
  14875. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14876. {
  14877. front: {
  14878. height: math.unit(6, "feet"),
  14879. weight: math.unit(150, "lb"),
  14880. name: "Front",
  14881. image: {
  14882. source: "./media/characters/quilly/front.svg",
  14883. extra: 890 / 776
  14884. }
  14885. },
  14886. },
  14887. [
  14888. {
  14889. name: "Gigamacro",
  14890. height: math.unit(404090, "miles"),
  14891. default: true
  14892. },
  14893. ]
  14894. ))
  14895. characterMakers.push(() => makeCharacter(
  14896. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14897. {
  14898. front: {
  14899. height: math.unit(7 + 8 / 12, "feet"),
  14900. weight: math.unit(350, "lb"),
  14901. name: "Front",
  14902. image: {
  14903. source: "./media/characters/tempest/front.svg",
  14904. extra: 1175 / 1086,
  14905. bottom: 0.02
  14906. }
  14907. },
  14908. },
  14909. [
  14910. {
  14911. name: "Normal",
  14912. height: math.unit(7 + 8 / 12, "feet"),
  14913. default: true
  14914. },
  14915. ]
  14916. ))
  14917. characterMakers.push(() => makeCharacter(
  14918. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14919. {
  14920. side: {
  14921. height: math.unit(4 + 5 / 12, "feet"),
  14922. weight: math.unit(80, "lb"),
  14923. name: "Side",
  14924. image: {
  14925. source: "./media/characters/rodger/side.svg",
  14926. extra: 1235 / 1118
  14927. }
  14928. },
  14929. },
  14930. [
  14931. {
  14932. name: "Micro",
  14933. height: math.unit(1, "inch")
  14934. },
  14935. {
  14936. name: "Normal",
  14937. height: math.unit(4 + 5 / 12, "feet"),
  14938. default: true
  14939. },
  14940. {
  14941. name: "Macro",
  14942. height: math.unit(120, "feet")
  14943. },
  14944. ]
  14945. ))
  14946. characterMakers.push(() => makeCharacter(
  14947. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14948. {
  14949. front: {
  14950. height: math.unit(6, "feet"),
  14951. weight: math.unit(150, "lb"),
  14952. name: "Front",
  14953. image: {
  14954. source: "./media/characters/danyel/front.svg",
  14955. extra: 1185 / 1123,
  14956. bottom: 0.05
  14957. }
  14958. },
  14959. },
  14960. [
  14961. {
  14962. name: "Shrunken",
  14963. height: math.unit(0.5, "mm")
  14964. },
  14965. {
  14966. name: "Micro",
  14967. height: math.unit(1, "mm"),
  14968. default: true
  14969. },
  14970. {
  14971. name: "Upsized",
  14972. height: math.unit(5 + 5 / 12, "feet")
  14973. },
  14974. ]
  14975. ))
  14976. characterMakers.push(() => makeCharacter(
  14977. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14978. {
  14979. front: {
  14980. height: math.unit(5 + 6 / 12, "feet"),
  14981. weight: math.unit(200, "lb"),
  14982. name: "Front",
  14983. image: {
  14984. source: "./media/characters/vivian-bijoux/front.svg",
  14985. extra: 1217/1209,
  14986. bottom: 76/1293
  14987. }
  14988. },
  14989. back: {
  14990. height: math.unit(5 + 6 / 12, "feet"),
  14991. weight: math.unit(200, "lb"),
  14992. name: "Back",
  14993. image: {
  14994. source: "./media/characters/vivian-bijoux/back.svg",
  14995. extra: 1214/1208,
  14996. bottom: 51/1265
  14997. }
  14998. },
  14999. dressed: {
  15000. height: math.unit(5 + 6 / 12, "feet"),
  15001. weight: math.unit(200, "lb"),
  15002. name: "Dressed",
  15003. image: {
  15004. source: "./media/characters/vivian-bijoux/dressed.svg",
  15005. extra: 1217/1209,
  15006. bottom: 76/1293
  15007. }
  15008. },
  15009. },
  15010. [
  15011. {
  15012. name: "Normal",
  15013. height: math.unit(5 + 6 / 12, "feet"),
  15014. default: true
  15015. },
  15016. {
  15017. name: "Bad Dream",
  15018. height: math.unit(500, "feet")
  15019. },
  15020. {
  15021. name: "Nightmare",
  15022. height: math.unit(500, "miles")
  15023. },
  15024. ]
  15025. ))
  15026. characterMakers.push(() => makeCharacter(
  15027. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15028. {
  15029. front: {
  15030. height: math.unit(6 + 1 / 12, "feet"),
  15031. weight: math.unit(260, "lb"),
  15032. name: "Front",
  15033. image: {
  15034. source: "./media/characters/zeta/front.svg",
  15035. extra: 1968 / 1889,
  15036. bottom: 0.06
  15037. }
  15038. },
  15039. back: {
  15040. height: math.unit(6 + 1 / 12, "feet"),
  15041. weight: math.unit(260, "lb"),
  15042. name: "Back",
  15043. image: {
  15044. source: "./media/characters/zeta/back.svg",
  15045. extra: 1944 / 1858,
  15046. bottom: 0.03
  15047. }
  15048. },
  15049. hand: {
  15050. height: math.unit(1.112, "feet"),
  15051. name: "Hand",
  15052. image: {
  15053. source: "./media/characters/zeta/hand.svg"
  15054. }
  15055. },
  15056. foot: {
  15057. height: math.unit(1.48, "feet"),
  15058. name: "Foot",
  15059. image: {
  15060. source: "./media/characters/zeta/foot.svg"
  15061. }
  15062. },
  15063. },
  15064. [
  15065. {
  15066. name: "Micro",
  15067. height: math.unit(6, "inches")
  15068. },
  15069. {
  15070. name: "Normal",
  15071. height: math.unit(6 + 1 / 12, "feet"),
  15072. default: true
  15073. },
  15074. {
  15075. name: "Macro",
  15076. height: math.unit(20, "feet")
  15077. },
  15078. ]
  15079. ))
  15080. characterMakers.push(() => makeCharacter(
  15081. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15082. {
  15083. front: {
  15084. height: math.unit(6, "feet"),
  15085. weight: math.unit(150, "lb"),
  15086. name: "Front",
  15087. image: {
  15088. source: "./media/characters/jamie-larsen/front.svg",
  15089. extra: 962 / 933,
  15090. bottom: 0.02
  15091. }
  15092. },
  15093. back: {
  15094. height: math.unit(6, "feet"),
  15095. weight: math.unit(150, "lb"),
  15096. name: "Back",
  15097. image: {
  15098. source: "./media/characters/jamie-larsen/back.svg",
  15099. extra: 997 / 946
  15100. }
  15101. },
  15102. },
  15103. [
  15104. {
  15105. name: "Macro",
  15106. height: math.unit(28 + 7 / 12, "feet"),
  15107. default: true
  15108. },
  15109. {
  15110. name: "Macro+",
  15111. height: math.unit(180, "feet")
  15112. },
  15113. {
  15114. name: "Megamacro",
  15115. height: math.unit(10, "miles")
  15116. },
  15117. {
  15118. name: "Gigamacro",
  15119. height: math.unit(200000, "miles")
  15120. },
  15121. ]
  15122. ))
  15123. characterMakers.push(() => makeCharacter(
  15124. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15125. {
  15126. front: {
  15127. height: math.unit(6, "feet"),
  15128. weight: math.unit(120, "lb"),
  15129. name: "Front",
  15130. image: {
  15131. source: "./media/characters/vance/front.svg",
  15132. extra: 1980 / 1890,
  15133. bottom: 0.09
  15134. }
  15135. },
  15136. back: {
  15137. height: math.unit(6, "feet"),
  15138. weight: math.unit(120, "lb"),
  15139. name: "Back",
  15140. image: {
  15141. source: "./media/characters/vance/back.svg",
  15142. extra: 2081 / 1994,
  15143. bottom: 0.014
  15144. }
  15145. },
  15146. hand: {
  15147. height: math.unit(0.88, "feet"),
  15148. name: "Hand",
  15149. image: {
  15150. source: "./media/characters/vance/hand.svg"
  15151. }
  15152. },
  15153. foot: {
  15154. height: math.unit(0.64, "feet"),
  15155. name: "Foot",
  15156. image: {
  15157. source: "./media/characters/vance/foot.svg"
  15158. }
  15159. },
  15160. },
  15161. [
  15162. {
  15163. name: "Small",
  15164. height: math.unit(90, "feet"),
  15165. default: true
  15166. },
  15167. {
  15168. name: "Macro",
  15169. height: math.unit(100, "meters")
  15170. },
  15171. {
  15172. name: "Megamacro",
  15173. height: math.unit(15, "miles")
  15174. },
  15175. ]
  15176. ))
  15177. characterMakers.push(() => makeCharacter(
  15178. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15179. {
  15180. front: {
  15181. height: math.unit(6, "feet"),
  15182. weight: math.unit(180, "lb"),
  15183. name: "Front",
  15184. image: {
  15185. source: "./media/characters/xochitl/front.svg",
  15186. extra: 2297 / 2261,
  15187. bottom: 0.065
  15188. }
  15189. },
  15190. back: {
  15191. height: math.unit(6, "feet"),
  15192. weight: math.unit(180, "lb"),
  15193. name: "Back",
  15194. image: {
  15195. source: "./media/characters/xochitl/back.svg",
  15196. extra: 2386 / 2354,
  15197. bottom: 0.01
  15198. }
  15199. },
  15200. foot: {
  15201. height: math.unit(6 / 5 * 1.15, "feet"),
  15202. weight: math.unit(150, "lb"),
  15203. name: "Foot",
  15204. image: {
  15205. source: "./media/characters/xochitl/foot.svg"
  15206. }
  15207. },
  15208. },
  15209. [
  15210. {
  15211. name: "Macro",
  15212. height: math.unit(80, "feet")
  15213. },
  15214. {
  15215. name: "Macro+",
  15216. height: math.unit(400, "feet"),
  15217. default: true
  15218. },
  15219. {
  15220. name: "Gigamacro",
  15221. height: math.unit(80000, "miles")
  15222. },
  15223. {
  15224. name: "Gigamacro+",
  15225. height: math.unit(400000, "miles")
  15226. },
  15227. {
  15228. name: "Teramacro",
  15229. height: math.unit(300, "AU")
  15230. },
  15231. ]
  15232. ))
  15233. characterMakers.push(() => makeCharacter(
  15234. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15235. {
  15236. front: {
  15237. height: math.unit(6, "feet"),
  15238. weight: math.unit(150, "lb"),
  15239. name: "Front",
  15240. image: {
  15241. source: "./media/characters/vincent/front.svg",
  15242. extra: 1130 / 1080,
  15243. bottom: 0.055
  15244. }
  15245. },
  15246. beak: {
  15247. height: math.unit(6 * 0.1, "feet"),
  15248. name: "Beak",
  15249. image: {
  15250. source: "./media/characters/vincent/beak.svg"
  15251. }
  15252. },
  15253. hand: {
  15254. height: math.unit(6 * 0.85, "feet"),
  15255. weight: math.unit(150, "lb"),
  15256. name: "Hand",
  15257. image: {
  15258. source: "./media/characters/vincent/hand.svg"
  15259. }
  15260. },
  15261. foot: {
  15262. height: math.unit(6 * 0.19, "feet"),
  15263. weight: math.unit(150, "lb"),
  15264. name: "Foot",
  15265. image: {
  15266. source: "./media/characters/vincent/foot.svg"
  15267. }
  15268. },
  15269. },
  15270. [
  15271. {
  15272. name: "Base",
  15273. height: math.unit(6 + 5 / 12, "feet"),
  15274. default: true
  15275. },
  15276. {
  15277. name: "Macro",
  15278. height: math.unit(300, "feet")
  15279. },
  15280. {
  15281. name: "Megamacro",
  15282. height: math.unit(2, "miles")
  15283. },
  15284. {
  15285. name: "Gigamacro",
  15286. height: math.unit(1000, "miles")
  15287. },
  15288. ]
  15289. ))
  15290. characterMakers.push(() => makeCharacter(
  15291. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15292. {
  15293. front: {
  15294. height: math.unit(2, "meters"),
  15295. weight: math.unit(500, "kg"),
  15296. name: "Front",
  15297. image: {
  15298. source: "./media/characters/coatl/front.svg",
  15299. extra: 3948 / 3500,
  15300. bottom: 0.082
  15301. }
  15302. },
  15303. },
  15304. [
  15305. {
  15306. name: "Normal",
  15307. height: math.unit(4, "meters")
  15308. },
  15309. {
  15310. name: "Macro",
  15311. height: math.unit(100, "meters"),
  15312. default: true
  15313. },
  15314. {
  15315. name: "Macro+",
  15316. height: math.unit(300, "meters")
  15317. },
  15318. {
  15319. name: "Megamacro",
  15320. height: math.unit(3, "gigameters")
  15321. },
  15322. {
  15323. name: "Megamacro+",
  15324. height: math.unit(300, "terameters")
  15325. },
  15326. {
  15327. name: "Megamacro++",
  15328. height: math.unit(3, "lightyears")
  15329. },
  15330. ]
  15331. ))
  15332. characterMakers.push(() => makeCharacter(
  15333. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15334. {
  15335. front: {
  15336. height: math.unit(6, "feet"),
  15337. weight: math.unit(50, "kg"),
  15338. name: "front",
  15339. image: {
  15340. source: "./media/characters/shiroryu/front.svg",
  15341. extra: 1990 / 1935
  15342. }
  15343. },
  15344. },
  15345. [
  15346. {
  15347. name: "Mortal Mingling",
  15348. height: math.unit(3, "meters")
  15349. },
  15350. {
  15351. name: "Kaiju-ish",
  15352. height: math.unit(250, "meters")
  15353. },
  15354. {
  15355. name: "Somewhat Godly",
  15356. height: math.unit(400, "km"),
  15357. default: true
  15358. },
  15359. {
  15360. name: "Planetary",
  15361. height: math.unit(300, "megameters")
  15362. },
  15363. {
  15364. name: "Galaxy-dwarfing",
  15365. height: math.unit(450, "kiloparsecs")
  15366. },
  15367. {
  15368. name: "Universe Eater",
  15369. height: math.unit(150, "gigaparsecs")
  15370. },
  15371. {
  15372. name: "Almost Immeasurable",
  15373. height: math.unit(1.3e266, "yottaparsecs")
  15374. },
  15375. ]
  15376. ))
  15377. characterMakers.push(() => makeCharacter(
  15378. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15379. {
  15380. front: {
  15381. height: math.unit(6, "feet"),
  15382. weight: math.unit(150, "lb"),
  15383. name: "Front",
  15384. image: {
  15385. source: "./media/characters/umeko/front.svg",
  15386. extra: 1,
  15387. bottom: 0.019
  15388. }
  15389. },
  15390. frontArmored: {
  15391. height: math.unit(6, "feet"),
  15392. weight: math.unit(150, "lb"),
  15393. name: "Front (Armored)",
  15394. image: {
  15395. source: "./media/characters/umeko/front-armored.svg",
  15396. extra: 1,
  15397. bottom: 0.021
  15398. }
  15399. },
  15400. },
  15401. [
  15402. {
  15403. name: "Macro",
  15404. height: math.unit(220, "feet"),
  15405. default: true
  15406. },
  15407. {
  15408. name: "Guardian Dragon",
  15409. height: math.unit(50, "miles")
  15410. },
  15411. {
  15412. name: "Cosmic",
  15413. height: math.unit(800000, "miles")
  15414. },
  15415. ]
  15416. ))
  15417. characterMakers.push(() => makeCharacter(
  15418. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15419. {
  15420. front: {
  15421. height: math.unit(6, "feet"),
  15422. weight: math.unit(150, "lb"),
  15423. name: "Front",
  15424. image: {
  15425. source: "./media/characters/cassidy/front.svg",
  15426. extra: 810/808,
  15427. bottom: 41/851
  15428. }
  15429. },
  15430. },
  15431. [
  15432. {
  15433. name: "Canon Height",
  15434. height: math.unit(120, "feet"),
  15435. default: true
  15436. },
  15437. {
  15438. name: "Macro+",
  15439. height: math.unit(400, "feet")
  15440. },
  15441. {
  15442. name: "Macro++",
  15443. height: math.unit(4000, "feet")
  15444. },
  15445. {
  15446. name: "Megamacro",
  15447. height: math.unit(3, "miles")
  15448. },
  15449. ]
  15450. ))
  15451. characterMakers.push(() => makeCharacter(
  15452. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15453. {
  15454. front: {
  15455. height: math.unit(6, "feet"),
  15456. weight: math.unit(150, "lb"),
  15457. name: "Front",
  15458. image: {
  15459. source: "./media/characters/isaac/front.svg",
  15460. extra: 896 / 815,
  15461. bottom: 0.11
  15462. }
  15463. },
  15464. },
  15465. [
  15466. {
  15467. name: "Human Size",
  15468. height: math.unit(8, "feet"),
  15469. default: true
  15470. },
  15471. {
  15472. name: "Macro",
  15473. height: math.unit(400, "feet")
  15474. },
  15475. {
  15476. name: "Megamacro",
  15477. height: math.unit(50, "miles")
  15478. },
  15479. {
  15480. name: "Canon Height",
  15481. height: math.unit(200, "AU")
  15482. },
  15483. ]
  15484. ))
  15485. characterMakers.push(() => makeCharacter(
  15486. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15487. {
  15488. front: {
  15489. height: math.unit(6, "feet"),
  15490. weight: math.unit(72, "kg"),
  15491. name: "Front",
  15492. image: {
  15493. source: "./media/characters/sleekit/front.svg",
  15494. extra: 4693 / 4487,
  15495. bottom: 0.012
  15496. }
  15497. },
  15498. },
  15499. [
  15500. {
  15501. name: "Minimum Height",
  15502. height: math.unit(10, "meters")
  15503. },
  15504. {
  15505. name: "Smaller",
  15506. height: math.unit(25, "meters")
  15507. },
  15508. {
  15509. name: "Larger",
  15510. height: math.unit(38, "meters"),
  15511. default: true
  15512. },
  15513. {
  15514. name: "Maximum height",
  15515. height: math.unit(100, "meters")
  15516. },
  15517. ]
  15518. ))
  15519. characterMakers.push(() => makeCharacter(
  15520. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15521. {
  15522. front: {
  15523. height: math.unit(6, "feet"),
  15524. weight: math.unit(150, "lb"),
  15525. name: "Front",
  15526. image: {
  15527. source: "./media/characters/nillia/front.svg",
  15528. extra: 2195 / 2037,
  15529. bottom: 0.005
  15530. }
  15531. },
  15532. back: {
  15533. height: math.unit(6, "feet"),
  15534. weight: math.unit(150, "lb"),
  15535. name: "Back",
  15536. image: {
  15537. source: "./media/characters/nillia/back.svg",
  15538. extra: 2195 / 2037,
  15539. bottom: 0.005
  15540. }
  15541. },
  15542. },
  15543. [
  15544. {
  15545. name: "Canon Height",
  15546. height: math.unit(489, "feet"),
  15547. default: true
  15548. }
  15549. ]
  15550. ))
  15551. characterMakers.push(() => makeCharacter(
  15552. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15553. {
  15554. front: {
  15555. height: math.unit(6, "feet"),
  15556. weight: math.unit(150, "lb"),
  15557. name: "Front",
  15558. image: {
  15559. source: "./media/characters/mesmyriza/front.svg",
  15560. extra: 2067 / 1784,
  15561. bottom: 0.035
  15562. }
  15563. },
  15564. foot: {
  15565. height: math.unit(6 / (250 / 35), "feet"),
  15566. name: "Foot",
  15567. image: {
  15568. source: "./media/characters/mesmyriza/foot.svg"
  15569. }
  15570. },
  15571. },
  15572. [
  15573. {
  15574. name: "Macro",
  15575. height: math.unit(457, "meters"),
  15576. default: true
  15577. },
  15578. {
  15579. name: "Megamacro",
  15580. height: math.unit(8, "megameters")
  15581. },
  15582. ]
  15583. ))
  15584. characterMakers.push(() => makeCharacter(
  15585. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15586. {
  15587. front: {
  15588. height: math.unit(6, "feet"),
  15589. weight: math.unit(250, "lb"),
  15590. name: "Front",
  15591. image: {
  15592. source: "./media/characters/saudade/front.svg",
  15593. extra: 1172 / 1139,
  15594. bottom: 0.035
  15595. }
  15596. },
  15597. },
  15598. [
  15599. {
  15600. name: "Micro",
  15601. height: math.unit(3, "inches")
  15602. },
  15603. {
  15604. name: "Normal",
  15605. height: math.unit(6, "feet"),
  15606. default: true
  15607. },
  15608. {
  15609. name: "Macro",
  15610. height: math.unit(50, "feet")
  15611. },
  15612. {
  15613. name: "Megamacro",
  15614. height: math.unit(2800, "feet")
  15615. },
  15616. ]
  15617. ))
  15618. characterMakers.push(() => makeCharacter(
  15619. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15620. {
  15621. front: {
  15622. height: math.unit(5 + 4 / 12, "feet"),
  15623. weight: math.unit(100, "lb"),
  15624. name: "Front",
  15625. image: {
  15626. source: "./media/characters/keireer/front.svg",
  15627. extra: 716 / 666,
  15628. bottom: 0.05
  15629. }
  15630. },
  15631. },
  15632. [
  15633. {
  15634. name: "Normal",
  15635. height: math.unit(5 + 4 / 12, "feet"),
  15636. default: true
  15637. },
  15638. ]
  15639. ))
  15640. characterMakers.push(() => makeCharacter(
  15641. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15642. {
  15643. front: {
  15644. height: math.unit(5.5, "feet"),
  15645. weight: math.unit(90, "kg"),
  15646. name: "Front",
  15647. image: {
  15648. source: "./media/characters/mirja/front.svg",
  15649. extra: 1452/1262,
  15650. bottom: 67/1519
  15651. }
  15652. },
  15653. frontDressed: {
  15654. height: math.unit(5.5, "feet"),
  15655. weight: math.unit(90, "lb"),
  15656. name: "Front (Dressed)",
  15657. image: {
  15658. source: "./media/characters/mirja/dressed.svg",
  15659. extra: 1452/1262,
  15660. bottom: 67/1519
  15661. }
  15662. },
  15663. back: {
  15664. height: math.unit(6, "feet"),
  15665. weight: math.unit(90, "lb"),
  15666. name: "Back",
  15667. image: {
  15668. source: "./media/characters/mirja/back.svg",
  15669. extra: 1892/1795,
  15670. bottom: 48/1940
  15671. }
  15672. },
  15673. maw: {
  15674. height: math.unit(1.312, "feet"),
  15675. name: "Maw",
  15676. image: {
  15677. source: "./media/characters/mirja/maw.svg"
  15678. }
  15679. },
  15680. paw: {
  15681. height: math.unit(1.15, "feet"),
  15682. name: "Paw",
  15683. image: {
  15684. source: "./media/characters/mirja/paw.svg"
  15685. }
  15686. },
  15687. },
  15688. [
  15689. {
  15690. name: "\"Incognito\"",
  15691. height: math.unit(3, "meters")
  15692. },
  15693. {
  15694. name: "Strolling Size",
  15695. height: math.unit(15, "km")
  15696. },
  15697. {
  15698. name: "Larger Strolling Size",
  15699. height: math.unit(400, "km")
  15700. },
  15701. {
  15702. name: "Preferred Size",
  15703. height: math.unit(5000, "km"),
  15704. default: true
  15705. },
  15706. {
  15707. name: "True Size",
  15708. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15709. },
  15710. ]
  15711. ))
  15712. characterMakers.push(() => makeCharacter(
  15713. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15714. {
  15715. front: {
  15716. height: math.unit(15, "feet"),
  15717. weight: math.unit(880, "kg"),
  15718. name: "Front",
  15719. image: {
  15720. source: "./media/characters/nightraver/front.svg",
  15721. extra: 2444 / 2160,
  15722. bottom: 0.027
  15723. }
  15724. },
  15725. back: {
  15726. height: math.unit(15, "feet"),
  15727. weight: math.unit(880, "kg"),
  15728. name: "Back",
  15729. image: {
  15730. source: "./media/characters/nightraver/back.svg",
  15731. extra: 2309 / 2180,
  15732. bottom: 0.005
  15733. }
  15734. },
  15735. sole: {
  15736. height: math.unit(2.878, "feet"),
  15737. name: "Sole",
  15738. image: {
  15739. source: "./media/characters/nightraver/sole.svg"
  15740. }
  15741. },
  15742. foot: {
  15743. height: math.unit(2.285, "feet"),
  15744. name: "Foot",
  15745. image: {
  15746. source: "./media/characters/nightraver/foot.svg"
  15747. }
  15748. },
  15749. maw: {
  15750. height: math.unit(2.67, "feet"),
  15751. name: "Maw",
  15752. image: {
  15753. source: "./media/characters/nightraver/maw.svg"
  15754. }
  15755. },
  15756. },
  15757. [
  15758. {
  15759. name: "Micro",
  15760. height: math.unit(1, "cm")
  15761. },
  15762. {
  15763. name: "Normal",
  15764. height: math.unit(15, "feet"),
  15765. default: true
  15766. },
  15767. {
  15768. name: "Macro",
  15769. height: math.unit(300, "feet")
  15770. },
  15771. {
  15772. name: "Megamacro",
  15773. height: math.unit(300, "miles")
  15774. },
  15775. {
  15776. name: "Gigamacro",
  15777. height: math.unit(10000, "miles")
  15778. },
  15779. ]
  15780. ))
  15781. characterMakers.push(() => makeCharacter(
  15782. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15783. {
  15784. side: {
  15785. height: math.unit(2, "inches"),
  15786. weight: math.unit(5, "grams"),
  15787. name: "Side",
  15788. image: {
  15789. source: "./media/characters/arc/side.svg"
  15790. }
  15791. },
  15792. },
  15793. [
  15794. {
  15795. name: "Micro",
  15796. height: math.unit(2, "inches"),
  15797. default: true
  15798. },
  15799. ]
  15800. ))
  15801. characterMakers.push(() => makeCharacter(
  15802. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15803. {
  15804. front: {
  15805. height: math.unit(1.1938, "meters"),
  15806. weight: math.unit(54, "kg"),
  15807. name: "Front",
  15808. image: {
  15809. source: "./media/characters/nebula-shahar/front.svg",
  15810. extra: 1642 / 1436,
  15811. bottom: 0.06
  15812. }
  15813. },
  15814. },
  15815. [
  15816. {
  15817. name: "Megamicro",
  15818. height: math.unit(0.3, "mm")
  15819. },
  15820. {
  15821. name: "Micro",
  15822. height: math.unit(3, "cm")
  15823. },
  15824. {
  15825. name: "Normal",
  15826. height: math.unit(138, "cm"),
  15827. default: true
  15828. },
  15829. {
  15830. name: "Macro",
  15831. height: math.unit(30, "m")
  15832. },
  15833. ]
  15834. ))
  15835. characterMakers.push(() => makeCharacter(
  15836. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15837. {
  15838. front: {
  15839. height: math.unit(5.24, "feet"),
  15840. weight: math.unit(150, "lb"),
  15841. name: "Front",
  15842. image: {
  15843. source: "./media/characters/shayla/front.svg",
  15844. extra: 1512 / 1414,
  15845. bottom: 0.01
  15846. }
  15847. },
  15848. back: {
  15849. height: math.unit(5.24, "feet"),
  15850. weight: math.unit(150, "lb"),
  15851. name: "Back",
  15852. image: {
  15853. source: "./media/characters/shayla/back.svg",
  15854. extra: 1512 / 1414
  15855. }
  15856. },
  15857. hand: {
  15858. height: math.unit(0.7781496062992126, "feet"),
  15859. name: "Hand",
  15860. image: {
  15861. source: "./media/characters/shayla/hand.svg"
  15862. }
  15863. },
  15864. foot: {
  15865. height: math.unit(1.4206036745406823, "feet"),
  15866. name: "Foot",
  15867. image: {
  15868. source: "./media/characters/shayla/foot.svg"
  15869. }
  15870. },
  15871. },
  15872. [
  15873. {
  15874. name: "Micro",
  15875. height: math.unit(0.32, "feet")
  15876. },
  15877. {
  15878. name: "Normal",
  15879. height: math.unit(5.24, "feet"),
  15880. default: true
  15881. },
  15882. {
  15883. name: "Macro",
  15884. height: math.unit(492.12, "feet")
  15885. },
  15886. {
  15887. name: "Megamacro",
  15888. height: math.unit(186.41, "miles")
  15889. },
  15890. ]
  15891. ))
  15892. characterMakers.push(() => makeCharacter(
  15893. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15894. {
  15895. front: {
  15896. height: math.unit(2.2, "m"),
  15897. weight: math.unit(120, "kg"),
  15898. name: "Front",
  15899. image: {
  15900. source: "./media/characters/pia-jr/front.svg",
  15901. extra: 1000 / 970,
  15902. bottom: 0.035
  15903. }
  15904. },
  15905. hand: {
  15906. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15907. name: "Hand",
  15908. image: {
  15909. source: "./media/characters/pia-jr/hand.svg"
  15910. }
  15911. },
  15912. paw: {
  15913. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15914. name: "Paw",
  15915. image: {
  15916. source: "./media/characters/pia-jr/paw.svg"
  15917. }
  15918. },
  15919. },
  15920. [
  15921. {
  15922. name: "Micro",
  15923. height: math.unit(1.2, "cm")
  15924. },
  15925. {
  15926. name: "Normal",
  15927. height: math.unit(2.2, "m"),
  15928. default: true
  15929. },
  15930. {
  15931. name: "Macro",
  15932. height: math.unit(180, "m")
  15933. },
  15934. {
  15935. name: "Megamacro",
  15936. height: math.unit(420, "km")
  15937. },
  15938. ]
  15939. ))
  15940. characterMakers.push(() => makeCharacter(
  15941. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15942. {
  15943. front: {
  15944. height: math.unit(2, "m"),
  15945. weight: math.unit(115, "kg"),
  15946. name: "Front",
  15947. image: {
  15948. source: "./media/characters/pia-sr/front.svg",
  15949. extra: 760 / 730,
  15950. bottom: 0.015
  15951. }
  15952. },
  15953. back: {
  15954. height: math.unit(2, "m"),
  15955. weight: math.unit(115, "kg"),
  15956. name: "Back",
  15957. image: {
  15958. source: "./media/characters/pia-sr/back.svg",
  15959. extra: 760 / 730,
  15960. bottom: 0.01
  15961. }
  15962. },
  15963. hand: {
  15964. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15965. name: "Hand",
  15966. image: {
  15967. source: "./media/characters/pia-sr/hand.svg"
  15968. }
  15969. },
  15970. foot: {
  15971. height: math.unit(1.83, "feet"),
  15972. name: "Foot",
  15973. image: {
  15974. source: "./media/characters/pia-sr/foot.svg"
  15975. }
  15976. },
  15977. },
  15978. [
  15979. {
  15980. name: "Micro",
  15981. height: math.unit(88, "mm")
  15982. },
  15983. {
  15984. name: "Normal",
  15985. height: math.unit(2, "m"),
  15986. default: true
  15987. },
  15988. {
  15989. name: "Macro",
  15990. height: math.unit(200, "m")
  15991. },
  15992. {
  15993. name: "Megamacro",
  15994. height: math.unit(420, "km")
  15995. },
  15996. ]
  15997. ))
  15998. characterMakers.push(() => makeCharacter(
  15999. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16000. {
  16001. front: {
  16002. height: math.unit(8 + 2 / 12, "feet"),
  16003. weight: math.unit(300, "lb"),
  16004. name: "Front",
  16005. image: {
  16006. source: "./media/characters/kibibyte/front.svg",
  16007. extra: 2221 / 2098,
  16008. bottom: 0.04
  16009. }
  16010. },
  16011. },
  16012. [
  16013. {
  16014. name: "Normal",
  16015. height: math.unit(8 + 2 / 12, "feet"),
  16016. default: true
  16017. },
  16018. {
  16019. name: "Socialable Macro",
  16020. height: math.unit(50, "feet")
  16021. },
  16022. {
  16023. name: "Macro",
  16024. height: math.unit(300, "feet")
  16025. },
  16026. {
  16027. name: "Megamacro",
  16028. height: math.unit(500, "miles")
  16029. },
  16030. ]
  16031. ))
  16032. characterMakers.push(() => makeCharacter(
  16033. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16034. {
  16035. front: {
  16036. height: math.unit(6, "feet"),
  16037. weight: math.unit(150, "lb"),
  16038. name: "Front",
  16039. image: {
  16040. source: "./media/characters/felix/front.svg",
  16041. extra: 762 / 722,
  16042. bottom: 0.02
  16043. }
  16044. },
  16045. frontClothed: {
  16046. height: math.unit(6, "feet"),
  16047. weight: math.unit(150, "lb"),
  16048. name: "Front (Clothed)",
  16049. image: {
  16050. source: "./media/characters/felix/front-clothed.svg",
  16051. extra: 762 / 722,
  16052. bottom: 0.02
  16053. }
  16054. },
  16055. },
  16056. [
  16057. {
  16058. name: "Normal",
  16059. height: math.unit(6 + 8 / 12, "feet"),
  16060. default: true
  16061. },
  16062. {
  16063. name: "Macro",
  16064. height: math.unit(2600, "feet")
  16065. },
  16066. {
  16067. name: "Megamacro",
  16068. height: math.unit(450, "miles")
  16069. },
  16070. ]
  16071. ))
  16072. characterMakers.push(() => makeCharacter(
  16073. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16074. {
  16075. front: {
  16076. height: math.unit(6 + 1 / 12, "feet"),
  16077. weight: math.unit(250, "lb"),
  16078. name: "Front",
  16079. image: {
  16080. source: "./media/characters/tobo/front.svg",
  16081. extra: 608 / 586,
  16082. bottom: 0.023
  16083. }
  16084. },
  16085. back: {
  16086. height: math.unit(6 + 1 / 12, "feet"),
  16087. weight: math.unit(250, "lb"),
  16088. name: "Back",
  16089. image: {
  16090. source: "./media/characters/tobo/back.svg",
  16091. extra: 608 / 586
  16092. }
  16093. },
  16094. },
  16095. [
  16096. {
  16097. name: "Nano",
  16098. height: math.unit(2, "nm")
  16099. },
  16100. {
  16101. name: "Megamicro",
  16102. height: math.unit(0.1, "mm")
  16103. },
  16104. {
  16105. name: "Micro",
  16106. height: math.unit(1, "inch"),
  16107. default: true
  16108. },
  16109. {
  16110. name: "Human-sized",
  16111. height: math.unit(6 + 1 / 12, "feet")
  16112. },
  16113. {
  16114. name: "Macro",
  16115. height: math.unit(250, "feet")
  16116. },
  16117. {
  16118. name: "Megamacro",
  16119. height: math.unit(75, "miles")
  16120. },
  16121. {
  16122. name: "Texas-sized",
  16123. height: math.unit(750, "miles")
  16124. },
  16125. {
  16126. name: "Teramacro",
  16127. height: math.unit(50000, "miles")
  16128. },
  16129. ]
  16130. ))
  16131. characterMakers.push(() => makeCharacter(
  16132. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16133. {
  16134. front: {
  16135. height: math.unit(6, "feet"),
  16136. weight: math.unit(269, "lb"),
  16137. name: "Front",
  16138. image: {
  16139. source: "./media/characters/danny-kapowsky/front.svg",
  16140. extra: 766 / 736,
  16141. bottom: 0.044
  16142. }
  16143. },
  16144. back: {
  16145. height: math.unit(6, "feet"),
  16146. weight: math.unit(269, "lb"),
  16147. name: "Back",
  16148. image: {
  16149. source: "./media/characters/danny-kapowsky/back.svg",
  16150. extra: 797 / 760,
  16151. bottom: 0.025
  16152. }
  16153. },
  16154. },
  16155. [
  16156. {
  16157. name: "Macro",
  16158. height: math.unit(150, "feet"),
  16159. default: true
  16160. },
  16161. {
  16162. name: "Macro+",
  16163. height: math.unit(200, "feet")
  16164. },
  16165. {
  16166. name: "Macro++",
  16167. height: math.unit(300, "feet")
  16168. },
  16169. {
  16170. name: "Macro+++",
  16171. height: math.unit(400, "feet")
  16172. },
  16173. ]
  16174. ))
  16175. characterMakers.push(() => makeCharacter(
  16176. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16177. {
  16178. side: {
  16179. height: math.unit(6, "feet"),
  16180. weight: math.unit(170, "lb"),
  16181. name: "Side",
  16182. image: {
  16183. source: "./media/characters/finn/side.svg",
  16184. extra: 1953 / 1807,
  16185. bottom: 0.057
  16186. }
  16187. },
  16188. },
  16189. [
  16190. {
  16191. name: "Megamacro",
  16192. height: math.unit(14445, "feet"),
  16193. default: true
  16194. },
  16195. ]
  16196. ))
  16197. characterMakers.push(() => makeCharacter(
  16198. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16199. {
  16200. front: {
  16201. height: math.unit(5 + 6 / 12, "feet"),
  16202. weight: math.unit(125, "lb"),
  16203. name: "Front",
  16204. image: {
  16205. source: "./media/characters/roy/front.svg",
  16206. extra: 1,
  16207. bottom: 0.11
  16208. }
  16209. },
  16210. },
  16211. [
  16212. {
  16213. name: "Micro",
  16214. height: math.unit(3, "inches"),
  16215. default: true
  16216. },
  16217. {
  16218. name: "Normal",
  16219. height: math.unit(5 + 6 / 12, "feet")
  16220. },
  16221. {
  16222. name: "Lesser Macro",
  16223. height: math.unit(60, "feet")
  16224. },
  16225. {
  16226. name: "Greater Macro",
  16227. height: math.unit(120, "feet")
  16228. },
  16229. ]
  16230. ))
  16231. characterMakers.push(() => makeCharacter(
  16232. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16233. {
  16234. front: {
  16235. height: math.unit(6, "feet"),
  16236. weight: math.unit(100, "lb"),
  16237. name: "Front",
  16238. image: {
  16239. source: "./media/characters/aevsivs/front.svg",
  16240. extra: 1,
  16241. bottom: 0.03
  16242. }
  16243. },
  16244. back: {
  16245. height: math.unit(6, "feet"),
  16246. weight: math.unit(100, "lb"),
  16247. name: "Back",
  16248. image: {
  16249. source: "./media/characters/aevsivs/back.svg"
  16250. }
  16251. },
  16252. },
  16253. [
  16254. {
  16255. name: "Micro",
  16256. height: math.unit(2, "inches"),
  16257. default: true
  16258. },
  16259. {
  16260. name: "Normal",
  16261. height: math.unit(5, "feet")
  16262. },
  16263. ]
  16264. ))
  16265. characterMakers.push(() => makeCharacter(
  16266. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16267. {
  16268. front: {
  16269. height: math.unit(5 + 7 / 12, "feet"),
  16270. weight: math.unit(159, "lb"),
  16271. name: "Front",
  16272. image: {
  16273. source: "./media/characters/hildegard/front.svg",
  16274. extra: 289 / 269,
  16275. bottom: 7.63 / 297.8
  16276. }
  16277. },
  16278. back: {
  16279. height: math.unit(5 + 7 / 12, "feet"),
  16280. weight: math.unit(159, "lb"),
  16281. name: "Back",
  16282. image: {
  16283. source: "./media/characters/hildegard/back.svg",
  16284. extra: 280 / 260,
  16285. bottom: 2.3 / 282
  16286. }
  16287. },
  16288. },
  16289. [
  16290. {
  16291. name: "Normal",
  16292. height: math.unit(5 + 7 / 12, "feet"),
  16293. default: true
  16294. },
  16295. ]
  16296. ))
  16297. characterMakers.push(() => makeCharacter(
  16298. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16299. {
  16300. bernard: {
  16301. height: math.unit(2 + 7 / 12, "feet"),
  16302. weight: math.unit(66, "lb"),
  16303. name: "Bernard",
  16304. rename: true,
  16305. image: {
  16306. source: "./media/characters/bernard-wilder/bernard.svg",
  16307. extra: 192 / 128,
  16308. bottom: 0.05
  16309. }
  16310. },
  16311. wilder: {
  16312. height: math.unit(5 + 8 / 12, "feet"),
  16313. weight: math.unit(143, "lb"),
  16314. name: "Wilder",
  16315. rename: true,
  16316. image: {
  16317. source: "./media/characters/bernard-wilder/wilder.svg",
  16318. extra: 361 / 312,
  16319. bottom: 0.02
  16320. }
  16321. },
  16322. },
  16323. [
  16324. {
  16325. name: "Normal",
  16326. height: math.unit(2 + 7 / 12, "feet"),
  16327. default: true
  16328. },
  16329. ]
  16330. ))
  16331. characterMakers.push(() => makeCharacter(
  16332. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16333. {
  16334. anthro: {
  16335. height: math.unit(6 + 1 / 12, "feet"),
  16336. weight: math.unit(155, "lb"),
  16337. name: "Anthro",
  16338. image: {
  16339. source: "./media/characters/hearth/anthro.svg",
  16340. extra: 1178/1136,
  16341. bottom: 28/1206
  16342. }
  16343. },
  16344. feral: {
  16345. height: math.unit(3.78, "feet"),
  16346. weight: math.unit(35, "kg"),
  16347. name: "Feral",
  16348. image: {
  16349. source: "./media/characters/hearth/feral.svg",
  16350. extra: 153 / 135,
  16351. bottom: 0.03
  16352. }
  16353. },
  16354. },
  16355. [
  16356. {
  16357. name: "Normal",
  16358. height: math.unit(6 + 1 / 12, "feet"),
  16359. default: true
  16360. },
  16361. ]
  16362. ))
  16363. characterMakers.push(() => makeCharacter(
  16364. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16365. {
  16366. front: {
  16367. height: math.unit(6, "feet"),
  16368. weight: math.unit(182, "lb"),
  16369. name: "Front",
  16370. image: {
  16371. source: "./media/characters/ingrid/front.svg",
  16372. extra: 294 / 268,
  16373. bottom: 0.027
  16374. }
  16375. },
  16376. },
  16377. [
  16378. {
  16379. name: "Normal",
  16380. height: math.unit(6, "feet"),
  16381. default: true
  16382. },
  16383. ]
  16384. ))
  16385. characterMakers.push(() => makeCharacter(
  16386. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16387. {
  16388. eevee: {
  16389. height: math.unit(2 + 10 / 12, "feet"),
  16390. weight: math.unit(86, "lb"),
  16391. name: "Malgam",
  16392. image: {
  16393. source: "./media/characters/malgam/eevee.svg",
  16394. extra: 952/784,
  16395. bottom: 38/990
  16396. }
  16397. },
  16398. sylveon: {
  16399. height: math.unit(4, "feet"),
  16400. weight: math.unit(101, "lb"),
  16401. name: "Future Malgam",
  16402. rename: true,
  16403. image: {
  16404. source: "./media/characters/malgam/sylveon.svg",
  16405. extra: 371 / 325,
  16406. bottom: 0.015
  16407. }
  16408. },
  16409. gigantamax: {
  16410. height: math.unit(50, "feet"),
  16411. name: "Gigantamax Malgam",
  16412. rename: true,
  16413. image: {
  16414. source: "./media/characters/malgam/gigantamax.svg"
  16415. }
  16416. },
  16417. },
  16418. [
  16419. {
  16420. name: "Normal",
  16421. height: math.unit(2 + 10 / 12, "feet"),
  16422. default: true
  16423. },
  16424. ]
  16425. ))
  16426. characterMakers.push(() => makeCharacter(
  16427. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16428. {
  16429. front: {
  16430. height: math.unit(5 + 11 / 12, "feet"),
  16431. weight: math.unit(188, "lb"),
  16432. name: "Front",
  16433. image: {
  16434. source: "./media/characters/fleur/front.svg",
  16435. extra: 309 / 283,
  16436. bottom: 0.007
  16437. }
  16438. },
  16439. },
  16440. [
  16441. {
  16442. name: "Normal",
  16443. height: math.unit(5 + 11 / 12, "feet"),
  16444. default: true
  16445. },
  16446. ]
  16447. ))
  16448. characterMakers.push(() => makeCharacter(
  16449. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16450. {
  16451. front: {
  16452. height: math.unit(5 + 4 / 12, "feet"),
  16453. weight: math.unit(122, "lb"),
  16454. name: "Front",
  16455. image: {
  16456. source: "./media/characters/jude/front.svg",
  16457. extra: 288 / 273,
  16458. bottom: 0.03
  16459. }
  16460. },
  16461. },
  16462. [
  16463. {
  16464. name: "Normal",
  16465. height: math.unit(5 + 4 / 12, "feet"),
  16466. default: true
  16467. },
  16468. ]
  16469. ))
  16470. characterMakers.push(() => makeCharacter(
  16471. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16472. {
  16473. front: {
  16474. height: math.unit(5 + 11 / 12, "feet"),
  16475. weight: math.unit(190, "lb"),
  16476. name: "Front",
  16477. image: {
  16478. source: "./media/characters/seara/front.svg",
  16479. extra: 1,
  16480. bottom: 0.05
  16481. }
  16482. },
  16483. },
  16484. [
  16485. {
  16486. name: "Normal",
  16487. height: math.unit(5 + 11 / 12, "feet"),
  16488. default: true
  16489. },
  16490. ]
  16491. ))
  16492. characterMakers.push(() => makeCharacter(
  16493. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16494. {
  16495. front: {
  16496. height: math.unit(16 + 5 / 12, "feet"),
  16497. weight: math.unit(524, "lb"),
  16498. name: "Front",
  16499. image: {
  16500. source: "./media/characters/caspian-lugia/front.svg",
  16501. extra: 1,
  16502. bottom: 0.04
  16503. }
  16504. },
  16505. },
  16506. [
  16507. {
  16508. name: "Normal",
  16509. height: math.unit(16 + 5 / 12, "feet"),
  16510. default: true
  16511. },
  16512. ]
  16513. ))
  16514. characterMakers.push(() => makeCharacter(
  16515. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16516. {
  16517. front: {
  16518. height: math.unit(5 + 7 / 12, "feet"),
  16519. weight: math.unit(170, "lb"),
  16520. name: "Front",
  16521. image: {
  16522. source: "./media/characters/mika/front.svg",
  16523. extra: 1,
  16524. bottom: 0.016
  16525. }
  16526. },
  16527. },
  16528. [
  16529. {
  16530. name: "Normal",
  16531. height: math.unit(5 + 7 / 12, "feet"),
  16532. default: true
  16533. },
  16534. ]
  16535. ))
  16536. characterMakers.push(() => makeCharacter(
  16537. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16538. {
  16539. front: {
  16540. height: math.unit(6 + 2 / 12, "feet"),
  16541. weight: math.unit(268, "lb"),
  16542. name: "Front",
  16543. image: {
  16544. source: "./media/characters/sol/front.svg",
  16545. extra: 247 / 231,
  16546. bottom: 0.05
  16547. }
  16548. },
  16549. },
  16550. [
  16551. {
  16552. name: "Normal",
  16553. height: math.unit(6 + 2 / 12, "feet"),
  16554. default: true
  16555. },
  16556. ]
  16557. ))
  16558. characterMakers.push(() => makeCharacter(
  16559. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16560. {
  16561. buizel: {
  16562. height: math.unit(2 + 5 / 12, "feet"),
  16563. weight: math.unit(87, "lb"),
  16564. name: "Front",
  16565. image: {
  16566. source: "./media/characters/umiko/buizel.svg",
  16567. extra: 172 / 157,
  16568. bottom: 0.01
  16569. },
  16570. form: "buizel",
  16571. default: true
  16572. },
  16573. floatzel: {
  16574. height: math.unit(5 + 9 / 12, "feet"),
  16575. weight: math.unit(250, "lb"),
  16576. name: "Front",
  16577. image: {
  16578. source: "./media/characters/umiko/floatzel.svg",
  16579. extra: 1076/1006,
  16580. bottom: 15/1091
  16581. },
  16582. form: "floatzel",
  16583. default: true
  16584. },
  16585. },
  16586. [
  16587. {
  16588. name: "Normal",
  16589. height: math.unit(2 + 5 / 12, "feet"),
  16590. form: "buizel",
  16591. default: true
  16592. },
  16593. {
  16594. name: "Normal",
  16595. height: math.unit(5 + 9 / 12, "feet"),
  16596. form: "floatzel",
  16597. default: true
  16598. },
  16599. ],
  16600. {
  16601. "buizel": {
  16602. name: "Buizel"
  16603. },
  16604. "floatzel": {
  16605. name: "Floatzel",
  16606. default: true
  16607. }
  16608. }
  16609. ))
  16610. characterMakers.push(() => makeCharacter(
  16611. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16612. {
  16613. front: {
  16614. height: math.unit(6 + 2 / 12, "feet"),
  16615. weight: math.unit(146, "lb"),
  16616. name: "Front",
  16617. image: {
  16618. source: "./media/characters/iliac/front.svg",
  16619. extra: 389 / 365,
  16620. bottom: 0.035
  16621. }
  16622. },
  16623. },
  16624. [
  16625. {
  16626. name: "Normal",
  16627. height: math.unit(6 + 2 / 12, "feet"),
  16628. default: true
  16629. },
  16630. ]
  16631. ))
  16632. characterMakers.push(() => makeCharacter(
  16633. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16634. {
  16635. front: {
  16636. height: math.unit(6, "feet"),
  16637. weight: math.unit(170, "lb"),
  16638. name: "Front",
  16639. image: {
  16640. source: "./media/characters/topaz/front.svg",
  16641. extra: 317 / 303,
  16642. bottom: 0.055
  16643. }
  16644. },
  16645. },
  16646. [
  16647. {
  16648. name: "Normal",
  16649. height: math.unit(6, "feet"),
  16650. default: true
  16651. },
  16652. ]
  16653. ))
  16654. characterMakers.push(() => makeCharacter(
  16655. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16656. {
  16657. front: {
  16658. height: math.unit(5 + 11 / 12, "feet"),
  16659. weight: math.unit(144, "lb"),
  16660. name: "Front",
  16661. image: {
  16662. source: "./media/characters/gabriel/front.svg",
  16663. extra: 285 / 262,
  16664. bottom: 0.004
  16665. }
  16666. },
  16667. },
  16668. [
  16669. {
  16670. name: "Normal",
  16671. height: math.unit(5 + 11 / 12, "feet"),
  16672. default: true
  16673. },
  16674. ]
  16675. ))
  16676. characterMakers.push(() => makeCharacter(
  16677. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16678. {
  16679. side: {
  16680. height: math.unit(6 + 5 / 12, "feet"),
  16681. weight: math.unit(300, "lb"),
  16682. name: "Side",
  16683. image: {
  16684. source: "./media/characters/tempest-suicune/side.svg",
  16685. extra: 195 / 154,
  16686. bottom: 0.04
  16687. }
  16688. },
  16689. },
  16690. [
  16691. {
  16692. name: "Normal",
  16693. height: math.unit(6 + 5 / 12, "feet"),
  16694. default: true
  16695. },
  16696. ]
  16697. ))
  16698. characterMakers.push(() => makeCharacter(
  16699. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16700. {
  16701. front: {
  16702. height: math.unit(7 + 2 / 12, "feet"),
  16703. weight: math.unit(322, "lb"),
  16704. name: "Front",
  16705. image: {
  16706. source: "./media/characters/vulcan/front.svg",
  16707. extra: 154 / 147,
  16708. bottom: 0.04
  16709. }
  16710. },
  16711. },
  16712. [
  16713. {
  16714. name: "Normal",
  16715. height: math.unit(7 + 2 / 12, "feet"),
  16716. default: true
  16717. },
  16718. ]
  16719. ))
  16720. characterMakers.push(() => makeCharacter(
  16721. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16722. {
  16723. front: {
  16724. height: math.unit(5 + 10 / 12, "feet"),
  16725. weight: math.unit(264, "lb"),
  16726. name: "Front",
  16727. image: {
  16728. source: "./media/characters/gault/front.svg",
  16729. extra: 161 / 140,
  16730. bottom: 0.028
  16731. }
  16732. },
  16733. },
  16734. [
  16735. {
  16736. name: "Normal",
  16737. height: math.unit(5 + 10 / 12, "feet"),
  16738. default: true
  16739. },
  16740. ]
  16741. ))
  16742. characterMakers.push(() => makeCharacter(
  16743. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16744. {
  16745. front: {
  16746. height: math.unit(6, "feet"),
  16747. weight: math.unit(150, "lb"),
  16748. name: "Front",
  16749. image: {
  16750. source: "./media/characters/shard/front.svg",
  16751. extra: 273 / 238,
  16752. bottom: 0.02
  16753. }
  16754. },
  16755. },
  16756. [
  16757. {
  16758. name: "Normal",
  16759. height: math.unit(3 + 6 / 12, "feet"),
  16760. default: true
  16761. },
  16762. ]
  16763. ))
  16764. characterMakers.push(() => makeCharacter(
  16765. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16766. {
  16767. front: {
  16768. height: math.unit(5 + 11 / 12, "feet"),
  16769. weight: math.unit(146, "lb"),
  16770. name: "Front",
  16771. image: {
  16772. source: "./media/characters/ashe/front.svg",
  16773. extra: 400 / 373,
  16774. bottom: 0.01
  16775. }
  16776. },
  16777. },
  16778. [
  16779. {
  16780. name: "Normal",
  16781. height: math.unit(5 + 11 / 12, "feet"),
  16782. default: true
  16783. },
  16784. ]
  16785. ))
  16786. characterMakers.push(() => makeCharacter(
  16787. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16788. {
  16789. front: {
  16790. height: math.unit(5 + 5 / 12, "feet"),
  16791. weight: math.unit(135, "lb"),
  16792. name: "Front",
  16793. image: {
  16794. source: "./media/characters/beatrix/front.svg",
  16795. extra: 392 / 379,
  16796. bottom: 0.01
  16797. }
  16798. },
  16799. },
  16800. [
  16801. {
  16802. name: "Normal",
  16803. height: math.unit(6, "feet"),
  16804. default: true
  16805. },
  16806. ]
  16807. ))
  16808. characterMakers.push(() => makeCharacter(
  16809. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16810. {
  16811. front: {
  16812. height: math.unit(6 + 2/12, "feet"),
  16813. weight: math.unit(135, "lb"),
  16814. name: "Front",
  16815. image: {
  16816. source: "./media/characters/ignatius/front.svg",
  16817. extra: 1380/1259,
  16818. bottom: 27/1407
  16819. }
  16820. },
  16821. },
  16822. [
  16823. {
  16824. name: "Normal",
  16825. height: math.unit(6 + 2/12, "feet"),
  16826. default: true
  16827. },
  16828. ]
  16829. ))
  16830. characterMakers.push(() => makeCharacter(
  16831. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16832. {
  16833. front: {
  16834. height: math.unit(6 + 2 / 12, "feet"),
  16835. weight: math.unit(138, "lb"),
  16836. name: "Front",
  16837. image: {
  16838. source: "./media/characters/mei-li/front.svg",
  16839. extra: 237 / 229,
  16840. bottom: 0.03
  16841. }
  16842. },
  16843. },
  16844. [
  16845. {
  16846. name: "Normal",
  16847. height: math.unit(6 + 2 / 12, "feet"),
  16848. default: true
  16849. },
  16850. ]
  16851. ))
  16852. characterMakers.push(() => makeCharacter(
  16853. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16854. {
  16855. front: {
  16856. height: math.unit(2 + 4 / 12, "feet"),
  16857. weight: math.unit(62, "lb"),
  16858. name: "Front",
  16859. image: {
  16860. source: "./media/characters/puru/front.svg",
  16861. extra: 206 / 149,
  16862. bottom: 0.06
  16863. }
  16864. },
  16865. },
  16866. [
  16867. {
  16868. name: "Normal",
  16869. height: math.unit(2 + 4 / 12, "feet"),
  16870. default: true
  16871. },
  16872. ]
  16873. ))
  16874. characterMakers.push(() => makeCharacter(
  16875. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16876. {
  16877. anthro: {
  16878. height: math.unit(5 + 8/12, "feet"),
  16879. weight: math.unit(200, "lb"),
  16880. energyNeed: math.unit(2000, "kcal"),
  16881. name: "Anthro",
  16882. image: {
  16883. source: "./media/characters/kee/anthro.svg",
  16884. extra: 3251/3184,
  16885. bottom: 250/3501
  16886. }
  16887. },
  16888. taur: {
  16889. height: math.unit(11, "feet"),
  16890. weight: math.unit(500, "lb"),
  16891. energyNeed: math.unit(5000, "kcal"),
  16892. name: "Taur",
  16893. image: {
  16894. source: "./media/characters/kee/taur.svg",
  16895. extra: 1362/1320,
  16896. bottom: 83/1445
  16897. }
  16898. },
  16899. },
  16900. [
  16901. {
  16902. name: "Normal",
  16903. height: math.unit(5 + 8/12, "feet"),
  16904. default: true
  16905. },
  16906. {
  16907. name: "Macro",
  16908. height: math.unit(35, "feet")
  16909. },
  16910. ]
  16911. ))
  16912. characterMakers.push(() => makeCharacter(
  16913. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16914. {
  16915. anthro: {
  16916. height: math.unit(7, "feet"),
  16917. weight: math.unit(190, "lb"),
  16918. name: "Anthro",
  16919. image: {
  16920. source: "./media/characters/cobalt-dracha/anthro.svg",
  16921. extra: 231 / 225,
  16922. bottom: 0.04
  16923. }
  16924. },
  16925. feral: {
  16926. height: math.unit(9 + 7 / 12, "feet"),
  16927. weight: math.unit(294, "lb"),
  16928. name: "Feral",
  16929. image: {
  16930. source: "./media/characters/cobalt-dracha/feral.svg",
  16931. extra: 692 / 633,
  16932. bottom: 0.05
  16933. }
  16934. },
  16935. },
  16936. [
  16937. {
  16938. name: "Normal",
  16939. height: math.unit(7, "feet"),
  16940. default: true
  16941. },
  16942. ]
  16943. ))
  16944. characterMakers.push(() => makeCharacter(
  16945. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16946. {
  16947. fallen: {
  16948. height: math.unit(11 + 8 / 12, "feet"),
  16949. weight: math.unit(485, "lb"),
  16950. name: "Java (Fallen)",
  16951. rename: true,
  16952. image: {
  16953. source: "./media/characters/java/fallen.svg",
  16954. extra: 226 / 208,
  16955. bottom: 0.005
  16956. }
  16957. },
  16958. godkin: {
  16959. height: math.unit(10 + 6 / 12, "feet"),
  16960. weight: math.unit(328, "lb"),
  16961. name: "Java (Godkin)",
  16962. rename: true,
  16963. image: {
  16964. source: "./media/characters/java/godkin.svg",
  16965. extra: 1104/1068,
  16966. bottom: 36/1140
  16967. }
  16968. },
  16969. },
  16970. [
  16971. {
  16972. name: "Normal",
  16973. height: math.unit(11 + 8 / 12, "feet"),
  16974. default: true
  16975. },
  16976. ]
  16977. ))
  16978. characterMakers.push(() => makeCharacter(
  16979. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16980. {
  16981. front: {
  16982. height: math.unit(5 + 9 / 12, "feet"),
  16983. weight: math.unit(170, "lb"),
  16984. name: "Front",
  16985. image: {
  16986. source: "./media/characters/purna/front.svg",
  16987. extra: 239 / 229,
  16988. bottom: 0.01
  16989. }
  16990. },
  16991. },
  16992. [
  16993. {
  16994. name: "Normal",
  16995. height: math.unit(5 + 9 / 12, "feet"),
  16996. default: true
  16997. },
  16998. ]
  16999. ))
  17000. characterMakers.push(() => makeCharacter(
  17001. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17002. {
  17003. front: {
  17004. height: math.unit(5 + 9 / 12, "feet"),
  17005. weight: math.unit(142, "lb"),
  17006. name: "Front",
  17007. image: {
  17008. source: "./media/characters/kuva/front.svg",
  17009. extra: 281 / 271,
  17010. bottom: 0.006
  17011. }
  17012. },
  17013. },
  17014. [
  17015. {
  17016. name: "Normal",
  17017. height: math.unit(5 + 9 / 12, "feet"),
  17018. default: true
  17019. },
  17020. ]
  17021. ))
  17022. characterMakers.push(() => makeCharacter(
  17023. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17024. {
  17025. anthro: {
  17026. height: math.unit(9 + 2 / 12, "feet"),
  17027. weight: math.unit(270, "lb"),
  17028. name: "Anthro",
  17029. image: {
  17030. source: "./media/characters/embra/anthro.svg",
  17031. extra: 200 / 187,
  17032. bottom: 0.02
  17033. }
  17034. },
  17035. feral: {
  17036. height: math.unit(18 + 8 / 12, "feet"),
  17037. weight: math.unit(576, "lb"),
  17038. name: "Feral",
  17039. image: {
  17040. source: "./media/characters/embra/feral.svg",
  17041. extra: 152 / 137,
  17042. bottom: 0.037
  17043. }
  17044. },
  17045. },
  17046. [
  17047. {
  17048. name: "Normal",
  17049. height: math.unit(9 + 2 / 12, "feet"),
  17050. default: true
  17051. },
  17052. ]
  17053. ))
  17054. characterMakers.push(() => makeCharacter(
  17055. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17056. {
  17057. anthro: {
  17058. height: math.unit(10 + 9 / 12, "feet"),
  17059. weight: math.unit(224, "lb"),
  17060. name: "Anthro",
  17061. image: {
  17062. source: "./media/characters/grottos/anthro.svg",
  17063. extra: 350 / 332,
  17064. bottom: 0.045
  17065. }
  17066. },
  17067. feral: {
  17068. height: math.unit(20 + 7 / 12, "feet"),
  17069. weight: math.unit(629, "lb"),
  17070. name: "Feral",
  17071. image: {
  17072. source: "./media/characters/grottos/feral.svg",
  17073. extra: 207 / 190,
  17074. bottom: 0.05
  17075. }
  17076. },
  17077. },
  17078. [
  17079. {
  17080. name: "Normal",
  17081. height: math.unit(10 + 9 / 12, "feet"),
  17082. default: true
  17083. },
  17084. ]
  17085. ))
  17086. characterMakers.push(() => makeCharacter(
  17087. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17088. {
  17089. anthro: {
  17090. height: math.unit(9 + 6 / 12, "feet"),
  17091. weight: math.unit(298, "lb"),
  17092. name: "Anthro",
  17093. image: {
  17094. source: "./media/characters/frifna/anthro.svg",
  17095. extra: 282 / 269,
  17096. bottom: 0.015
  17097. }
  17098. },
  17099. feral: {
  17100. height: math.unit(16 + 2 / 12, "feet"),
  17101. weight: math.unit(624, "lb"),
  17102. name: "Feral",
  17103. image: {
  17104. source: "./media/characters/frifna/feral.svg"
  17105. }
  17106. },
  17107. },
  17108. [
  17109. {
  17110. name: "Normal",
  17111. height: math.unit(9 + 6 / 12, "feet"),
  17112. default: true
  17113. },
  17114. ]
  17115. ))
  17116. characterMakers.push(() => makeCharacter(
  17117. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17118. {
  17119. front: {
  17120. height: math.unit(6 + 2 / 12, "feet"),
  17121. weight: math.unit(168, "lb"),
  17122. name: "Front",
  17123. image: {
  17124. source: "./media/characters/elise/front.svg",
  17125. extra: 276 / 271
  17126. }
  17127. },
  17128. },
  17129. [
  17130. {
  17131. name: "Normal",
  17132. height: math.unit(6 + 2 / 12, "feet"),
  17133. default: true
  17134. },
  17135. ]
  17136. ))
  17137. characterMakers.push(() => makeCharacter(
  17138. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17139. {
  17140. front: {
  17141. height: math.unit(5 + 10 / 12, "feet"),
  17142. weight: math.unit(210, "lb"),
  17143. name: "Front",
  17144. image: {
  17145. source: "./media/characters/glade/front.svg",
  17146. extra: 258 / 247,
  17147. bottom: 0.008
  17148. }
  17149. },
  17150. },
  17151. [
  17152. {
  17153. name: "Normal",
  17154. height: math.unit(5 + 10 / 12, "feet"),
  17155. default: true
  17156. },
  17157. ]
  17158. ))
  17159. characterMakers.push(() => makeCharacter(
  17160. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17161. {
  17162. front: {
  17163. height: math.unit(5 + 10 / 12, "feet"),
  17164. weight: math.unit(129, "lb"),
  17165. name: "Front",
  17166. image: {
  17167. source: "./media/characters/rina/front.svg",
  17168. extra: 266 / 255,
  17169. bottom: 0.005
  17170. }
  17171. },
  17172. },
  17173. [
  17174. {
  17175. name: "Normal",
  17176. height: math.unit(5 + 10 / 12, "feet"),
  17177. default: true
  17178. },
  17179. ]
  17180. ))
  17181. characterMakers.push(() => makeCharacter(
  17182. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17183. {
  17184. front: {
  17185. height: math.unit(6 + 1 / 12, "feet"),
  17186. weight: math.unit(192, "lb"),
  17187. name: "Front",
  17188. image: {
  17189. source: "./media/characters/veronica/front.svg",
  17190. extra: 319 / 309,
  17191. bottom: 0.005
  17192. }
  17193. },
  17194. },
  17195. [
  17196. {
  17197. name: "Normal",
  17198. height: math.unit(6 + 1 / 12, "feet"),
  17199. default: true
  17200. },
  17201. ]
  17202. ))
  17203. characterMakers.push(() => makeCharacter(
  17204. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17205. {
  17206. front: {
  17207. height: math.unit(9 + 3 / 12, "feet"),
  17208. weight: math.unit(1100, "lb"),
  17209. name: "Front",
  17210. image: {
  17211. source: "./media/characters/braxton/front.svg",
  17212. extra: 1057 / 984,
  17213. bottom: 0.05
  17214. }
  17215. },
  17216. },
  17217. [
  17218. {
  17219. name: "Normal",
  17220. height: math.unit(9 + 3 / 12, "feet")
  17221. },
  17222. {
  17223. name: "Giant",
  17224. height: math.unit(300, "feet"),
  17225. default: true
  17226. },
  17227. {
  17228. name: "Macro",
  17229. height: math.unit(700, "feet")
  17230. },
  17231. {
  17232. name: "Megamacro",
  17233. height: math.unit(6000, "feet")
  17234. },
  17235. ]
  17236. ))
  17237. characterMakers.push(() => makeCharacter(
  17238. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17239. {
  17240. front: {
  17241. height: math.unit(6 + 7 / 12, "feet"),
  17242. weight: math.unit(150, "lb"),
  17243. name: "Front",
  17244. image: {
  17245. source: "./media/characters/blue-feyonics/front.svg",
  17246. extra: 1403 / 1306,
  17247. bottom: 0.047
  17248. }
  17249. },
  17250. },
  17251. [
  17252. {
  17253. name: "Normal",
  17254. height: math.unit(6 + 7 / 12, "feet"),
  17255. default: true
  17256. },
  17257. ]
  17258. ))
  17259. characterMakers.push(() => makeCharacter(
  17260. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17261. {
  17262. front: {
  17263. height: math.unit(1.8, "meters"),
  17264. weight: math.unit(60, "kg"),
  17265. name: "Front",
  17266. image: {
  17267. source: "./media/characters/maxwell/front.svg",
  17268. extra: 2060 / 1873
  17269. }
  17270. },
  17271. },
  17272. [
  17273. {
  17274. name: "Micro",
  17275. height: math.unit(1, "mm")
  17276. },
  17277. {
  17278. name: "Normal",
  17279. height: math.unit(1.8, "meter"),
  17280. default: true
  17281. },
  17282. {
  17283. name: "Macro",
  17284. height: math.unit(30, "meters")
  17285. },
  17286. {
  17287. name: "Megamacro",
  17288. height: math.unit(10, "km")
  17289. },
  17290. ]
  17291. ))
  17292. characterMakers.push(() => makeCharacter(
  17293. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17294. {
  17295. front: {
  17296. height: math.unit(6, "feet"),
  17297. weight: math.unit(150, "lb"),
  17298. name: "Front",
  17299. image: {
  17300. source: "./media/characters/jack/front.svg",
  17301. extra: 1754 / 1640,
  17302. bottom: 0.01
  17303. }
  17304. },
  17305. },
  17306. [
  17307. {
  17308. name: "Normal",
  17309. height: math.unit(80000, "feet"),
  17310. default: true
  17311. },
  17312. {
  17313. name: "Max size",
  17314. height: math.unit(10, "lightyears")
  17315. },
  17316. ]
  17317. ))
  17318. characterMakers.push(() => makeCharacter(
  17319. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17320. {
  17321. urban: {
  17322. height: math.unit(5, "feet"),
  17323. weight: math.unit(240, "lb"),
  17324. name: "Urban",
  17325. image: {
  17326. source: "./media/characters/cafat/urban.svg",
  17327. extra: 1223/1126,
  17328. bottom: 205/1428
  17329. }
  17330. },
  17331. summer: {
  17332. height: math.unit(5, "feet"),
  17333. weight: math.unit(240, "lb"),
  17334. name: "Summer",
  17335. image: {
  17336. source: "./media/characters/cafat/summer.svg",
  17337. extra: 1223/1126,
  17338. bottom: 205/1428
  17339. }
  17340. },
  17341. winter: {
  17342. height: math.unit(5, "feet"),
  17343. weight: math.unit(240, "lb"),
  17344. name: "Winter",
  17345. image: {
  17346. source: "./media/characters/cafat/winter.svg",
  17347. extra: 1223/1126,
  17348. bottom: 205/1428
  17349. }
  17350. },
  17351. lingerie: {
  17352. height: math.unit(5, "feet"),
  17353. weight: math.unit(240, "lb"),
  17354. name: "Lingerie",
  17355. image: {
  17356. source: "./media/characters/cafat/lingerie.svg",
  17357. extra: 1223/1126,
  17358. bottom: 205/1428
  17359. }
  17360. },
  17361. upright: {
  17362. height: math.unit(6.3, "feet"),
  17363. weight: math.unit(240, "lb"),
  17364. name: "Upright",
  17365. image: {
  17366. source: "./media/characters/cafat/upright.svg",
  17367. bottom: 0.01
  17368. }
  17369. },
  17370. uprightFull: {
  17371. height: math.unit(6.3, "feet"),
  17372. weight: math.unit(240, "lb"),
  17373. name: "Upright (Full)",
  17374. image: {
  17375. source: "./media/characters/cafat/upright-full.svg",
  17376. bottom: 0.01
  17377. }
  17378. },
  17379. },
  17380. [
  17381. {
  17382. name: "Small",
  17383. height: math.unit(5, "feet"),
  17384. default: true
  17385. },
  17386. {
  17387. name: "Large",
  17388. height: math.unit(13, "feet")
  17389. },
  17390. ]
  17391. ))
  17392. characterMakers.push(() => makeCharacter(
  17393. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17394. {
  17395. front: {
  17396. height: math.unit(6, "feet"),
  17397. weight: math.unit(150, "lb"),
  17398. name: "Front",
  17399. image: {
  17400. source: "./media/characters/verin-raharra/front.svg",
  17401. extra: 5019 / 4835,
  17402. bottom: 0.023
  17403. }
  17404. },
  17405. },
  17406. [
  17407. {
  17408. name: "Normal",
  17409. height: math.unit(7 + 5 / 12, "feet"),
  17410. default: true
  17411. },
  17412. {
  17413. name: "Upsized",
  17414. height: math.unit(20, "feet")
  17415. },
  17416. ]
  17417. ))
  17418. characterMakers.push(() => makeCharacter(
  17419. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17420. {
  17421. front: {
  17422. height: math.unit(7, "feet"),
  17423. weight: math.unit(230, "lb"),
  17424. name: "Front",
  17425. image: {
  17426. source: "./media/characters/nakata/front.svg",
  17427. extra: 1.005,
  17428. bottom: 0.01
  17429. }
  17430. },
  17431. },
  17432. [
  17433. {
  17434. name: "Normal",
  17435. height: math.unit(7, "feet"),
  17436. default: true
  17437. },
  17438. {
  17439. name: "Big",
  17440. height: math.unit(14, "feet")
  17441. },
  17442. {
  17443. name: "Macro",
  17444. height: math.unit(400, "feet")
  17445. },
  17446. ]
  17447. ))
  17448. characterMakers.push(() => makeCharacter(
  17449. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17450. {
  17451. front: {
  17452. height: math.unit(4.91, "feet"),
  17453. weight: math.unit(100, "lb"),
  17454. name: "Front",
  17455. image: {
  17456. source: "./media/characters/lily/front.svg",
  17457. extra: 1585 / 1415,
  17458. bottom: 0.02
  17459. }
  17460. },
  17461. },
  17462. [
  17463. {
  17464. name: "Normal",
  17465. height: math.unit(4.91, "feet"),
  17466. default: true
  17467. },
  17468. ]
  17469. ))
  17470. characterMakers.push(() => makeCharacter(
  17471. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17472. {
  17473. laying: {
  17474. height: math.unit(4 + 4 / 12, "feet"),
  17475. weight: math.unit(600, "lb"),
  17476. name: "Laying",
  17477. image: {
  17478. source: "./media/characters/sheila/laying.svg",
  17479. extra: 1333 / 1265,
  17480. bottom: 0.16
  17481. }
  17482. },
  17483. },
  17484. [
  17485. {
  17486. name: "Normal",
  17487. height: math.unit(4 + 4 / 12, "feet"),
  17488. default: true
  17489. },
  17490. ]
  17491. ))
  17492. characterMakers.push(() => makeCharacter(
  17493. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17494. {
  17495. front: {
  17496. height: math.unit(6, "feet"),
  17497. weight: math.unit(190, "lb"),
  17498. name: "Front",
  17499. image: {
  17500. source: "./media/characters/sax/front.svg",
  17501. extra: 1187 / 973,
  17502. bottom: 0.042
  17503. }
  17504. },
  17505. },
  17506. [
  17507. {
  17508. name: "Micro",
  17509. height: math.unit(4, "inches"),
  17510. default: true
  17511. },
  17512. ]
  17513. ))
  17514. characterMakers.push(() => makeCharacter(
  17515. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17516. {
  17517. front: {
  17518. height: math.unit(6, "feet"),
  17519. weight: math.unit(150, "lb"),
  17520. name: "Front",
  17521. image: {
  17522. source: "./media/characters/pandora/front.svg",
  17523. extra: 2720 / 2556,
  17524. bottom: 0.015
  17525. }
  17526. },
  17527. back: {
  17528. height: math.unit(6, "feet"),
  17529. weight: math.unit(150, "lb"),
  17530. name: "Back",
  17531. image: {
  17532. source: "./media/characters/pandora/back.svg",
  17533. extra: 2720 / 2556,
  17534. bottom: 0.01
  17535. }
  17536. },
  17537. beans: {
  17538. height: math.unit(6 / 8, "feet"),
  17539. name: "Beans",
  17540. image: {
  17541. source: "./media/characters/pandora/beans.svg"
  17542. }
  17543. },
  17544. collar: {
  17545. height: math.unit(0.31, "feet"),
  17546. name: "Collar",
  17547. image: {
  17548. source: "./media/characters/pandora/collar.svg"
  17549. }
  17550. },
  17551. skirt: {
  17552. height: math.unit(6, "feet"),
  17553. weight: math.unit(150, "lb"),
  17554. name: "Skirt",
  17555. image: {
  17556. source: "./media/characters/pandora/skirt.svg",
  17557. extra: 1622 / 1525,
  17558. bottom: 0.015
  17559. }
  17560. },
  17561. hoodie: {
  17562. height: math.unit(6, "feet"),
  17563. weight: math.unit(150, "lb"),
  17564. name: "Hoodie",
  17565. image: {
  17566. source: "./media/characters/pandora/hoodie.svg",
  17567. extra: 1622 / 1525,
  17568. bottom: 0.015
  17569. }
  17570. },
  17571. casual: {
  17572. height: math.unit(6, "feet"),
  17573. weight: math.unit(150, "lb"),
  17574. name: "Casual",
  17575. image: {
  17576. source: "./media/characters/pandora/casual.svg",
  17577. extra: 1622 / 1525,
  17578. bottom: 0.015
  17579. }
  17580. },
  17581. },
  17582. [
  17583. {
  17584. name: "Normal",
  17585. height: math.unit(6, "feet")
  17586. },
  17587. {
  17588. name: "Big Steppy",
  17589. height: math.unit(1, "km"),
  17590. default: true
  17591. },
  17592. {
  17593. name: "Galactic Steppy",
  17594. height: math.unit(2, "gigameters")
  17595. },
  17596. ]
  17597. ))
  17598. characterMakers.push(() => makeCharacter(
  17599. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17600. {
  17601. side: {
  17602. height: math.unit(10, "feet"),
  17603. weight: math.unit(800, "kg"),
  17604. name: "Side",
  17605. image: {
  17606. source: "./media/characters/venio-darcony/side.svg",
  17607. extra: 1373 / 1003,
  17608. bottom: 0.037
  17609. }
  17610. },
  17611. front: {
  17612. height: math.unit(19, "feet"),
  17613. weight: math.unit(800, "kg"),
  17614. name: "Front",
  17615. image: {
  17616. source: "./media/characters/venio-darcony/front.svg"
  17617. }
  17618. },
  17619. back: {
  17620. height: math.unit(19, "feet"),
  17621. weight: math.unit(800, "kg"),
  17622. name: "Back",
  17623. image: {
  17624. source: "./media/characters/venio-darcony/back.svg"
  17625. }
  17626. },
  17627. sideNsfw: {
  17628. height: math.unit(10, "feet"),
  17629. weight: math.unit(800, "kg"),
  17630. name: "Side (NSFW)",
  17631. image: {
  17632. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17633. extra: 1373 / 1003,
  17634. bottom: 0.037
  17635. }
  17636. },
  17637. frontNsfw: {
  17638. height: math.unit(19, "feet"),
  17639. weight: math.unit(800, "kg"),
  17640. name: "Front (NSFW)",
  17641. image: {
  17642. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17643. }
  17644. },
  17645. backNsfw: {
  17646. height: math.unit(19, "feet"),
  17647. weight: math.unit(800, "kg"),
  17648. name: "Back (NSFW)",
  17649. image: {
  17650. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17651. }
  17652. },
  17653. sideArmored: {
  17654. height: math.unit(10, "feet"),
  17655. weight: math.unit(800, "kg"),
  17656. name: "Side (Armored)",
  17657. image: {
  17658. source: "./media/characters/venio-darcony/side-armored.svg",
  17659. extra: 1373 / 1003,
  17660. bottom: 0.037
  17661. }
  17662. },
  17663. frontArmored: {
  17664. height: math.unit(19, "feet"),
  17665. weight: math.unit(900, "kg"),
  17666. name: "Front (Armored)",
  17667. image: {
  17668. source: "./media/characters/venio-darcony/front-armored.svg"
  17669. }
  17670. },
  17671. backArmored: {
  17672. height: math.unit(19, "feet"),
  17673. weight: math.unit(900, "kg"),
  17674. name: "Back (Armored)",
  17675. image: {
  17676. source: "./media/characters/venio-darcony/back-armored.svg"
  17677. }
  17678. },
  17679. sword: {
  17680. height: math.unit(10, "feet"),
  17681. weight: math.unit(50, "lb"),
  17682. name: "Sword",
  17683. image: {
  17684. source: "./media/characters/venio-darcony/sword.svg"
  17685. }
  17686. },
  17687. },
  17688. [
  17689. {
  17690. name: "Normal",
  17691. height: math.unit(10, "feet")
  17692. },
  17693. {
  17694. name: "Macro",
  17695. height: math.unit(130, "feet"),
  17696. default: true
  17697. },
  17698. {
  17699. name: "Macro+",
  17700. height: math.unit(240, "feet")
  17701. },
  17702. ]
  17703. ))
  17704. characterMakers.push(() => makeCharacter(
  17705. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17706. {
  17707. front: {
  17708. height: math.unit(6, "feet"),
  17709. weight: math.unit(150, "lb"),
  17710. name: "Front",
  17711. image: {
  17712. source: "./media/characters/veski/front.svg",
  17713. extra: 1299 / 1225,
  17714. bottom: 0.04
  17715. }
  17716. },
  17717. back: {
  17718. height: math.unit(6, "feet"),
  17719. weight: math.unit(150, "lb"),
  17720. name: "Back",
  17721. image: {
  17722. source: "./media/characters/veski/back.svg",
  17723. extra: 1299 / 1225,
  17724. bottom: 0.008
  17725. }
  17726. },
  17727. maw: {
  17728. height: math.unit(1.5 * 1.21, "feet"),
  17729. name: "Maw",
  17730. image: {
  17731. source: "./media/characters/veski/maw.svg"
  17732. }
  17733. },
  17734. },
  17735. [
  17736. {
  17737. name: "Macro",
  17738. height: math.unit(2, "km"),
  17739. default: true
  17740. },
  17741. ]
  17742. ))
  17743. characterMakers.push(() => makeCharacter(
  17744. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17745. {
  17746. front: {
  17747. height: math.unit(5 + 7 / 12, "feet"),
  17748. name: "Front",
  17749. image: {
  17750. source: "./media/characters/isabelle/front.svg",
  17751. extra: 2130 / 1976,
  17752. bottom: 0.05
  17753. }
  17754. },
  17755. },
  17756. [
  17757. {
  17758. name: "Supermicro",
  17759. height: math.unit(10, "micrometers")
  17760. },
  17761. {
  17762. name: "Micro",
  17763. height: math.unit(1, "inch")
  17764. },
  17765. {
  17766. name: "Tiny",
  17767. height: math.unit(5, "inches")
  17768. },
  17769. {
  17770. name: "Standard",
  17771. height: math.unit(5 + 7 / 12, "inches")
  17772. },
  17773. {
  17774. name: "Macro",
  17775. height: math.unit(80, "meters"),
  17776. default: true
  17777. },
  17778. {
  17779. name: "Megamacro",
  17780. height: math.unit(250, "meters")
  17781. },
  17782. {
  17783. name: "Gigamacro",
  17784. height: math.unit(5, "km")
  17785. },
  17786. {
  17787. name: "Cosmic",
  17788. height: math.unit(2.5e6, "miles")
  17789. },
  17790. ]
  17791. ))
  17792. characterMakers.push(() => makeCharacter(
  17793. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17794. {
  17795. front: {
  17796. height: math.unit(6, "feet"),
  17797. weight: math.unit(150, "lb"),
  17798. name: "Front",
  17799. image: {
  17800. source: "./media/characters/hanzo/front.svg",
  17801. extra: 374 / 344,
  17802. bottom: 0.02
  17803. }
  17804. },
  17805. },
  17806. [
  17807. {
  17808. name: "Normal",
  17809. height: math.unit(8, "feet"),
  17810. default: true
  17811. },
  17812. ]
  17813. ))
  17814. characterMakers.push(() => makeCharacter(
  17815. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17816. {
  17817. front: {
  17818. height: math.unit(7, "feet"),
  17819. weight: math.unit(130, "lb"),
  17820. name: "Front",
  17821. image: {
  17822. source: "./media/characters/anna/front.svg",
  17823. extra: 169 / 145,
  17824. bottom: 0.06
  17825. }
  17826. },
  17827. full: {
  17828. height: math.unit(4.96, "feet"),
  17829. weight: math.unit(220, "lb"),
  17830. name: "Full",
  17831. image: {
  17832. source: "./media/characters/anna/full.svg",
  17833. extra: 138 / 114,
  17834. bottom: 0.15
  17835. }
  17836. },
  17837. tongue: {
  17838. height: math.unit(2.53, "feet"),
  17839. name: "Tongue",
  17840. image: {
  17841. source: "./media/characters/anna/tongue.svg"
  17842. }
  17843. },
  17844. },
  17845. [
  17846. {
  17847. name: "Normal",
  17848. height: math.unit(7, "feet"),
  17849. default: true
  17850. },
  17851. ]
  17852. ))
  17853. characterMakers.push(() => makeCharacter(
  17854. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17855. {
  17856. front: {
  17857. height: math.unit(7, "feet"),
  17858. weight: math.unit(150, "lb"),
  17859. name: "Front",
  17860. image: {
  17861. source: "./media/characters/ian-corvid/front.svg",
  17862. extra: 150 / 142,
  17863. bottom: 0.02
  17864. }
  17865. },
  17866. back: {
  17867. height: math.unit(7, "feet"),
  17868. weight: math.unit(150, "lb"),
  17869. name: "Back",
  17870. image: {
  17871. source: "./media/characters/ian-corvid/back.svg",
  17872. extra: 150 / 143,
  17873. bottom: 0.01
  17874. }
  17875. },
  17876. stomping: {
  17877. height: math.unit(7, "feet"),
  17878. weight: math.unit(150, "lb"),
  17879. name: "Stomping",
  17880. image: {
  17881. source: "./media/characters/ian-corvid/stomping.svg",
  17882. extra: 76 / 72
  17883. }
  17884. },
  17885. sitting: {
  17886. height: math.unit(7 / 1.8, "feet"),
  17887. weight: math.unit(150, "lb"),
  17888. name: "Sitting",
  17889. image: {
  17890. source: "./media/characters/ian-corvid/sitting.svg",
  17891. extra: 1400 / 1269,
  17892. bottom: 0.15
  17893. }
  17894. },
  17895. },
  17896. [
  17897. {
  17898. name: "Tiny Microw",
  17899. height: math.unit(1, "inch")
  17900. },
  17901. {
  17902. name: "Microw",
  17903. height: math.unit(6, "inches")
  17904. },
  17905. {
  17906. name: "Crow",
  17907. height: math.unit(7 + 1 / 12, "feet"),
  17908. default: true
  17909. },
  17910. {
  17911. name: "Macrow",
  17912. height: math.unit(176, "feet")
  17913. },
  17914. ]
  17915. ))
  17916. characterMakers.push(() => makeCharacter(
  17917. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17918. {
  17919. front: {
  17920. height: math.unit(5 + 7 / 12, "feet"),
  17921. weight: math.unit(147, "lb"),
  17922. name: "Front",
  17923. image: {
  17924. source: "./media/characters/natalie-kellon/front.svg",
  17925. extra: 1214 / 1141,
  17926. bottom: 0.02
  17927. }
  17928. },
  17929. },
  17930. [
  17931. {
  17932. name: "Micro",
  17933. height: math.unit(1 / 16, "inch")
  17934. },
  17935. {
  17936. name: "Tiny",
  17937. height: math.unit(4, "inches")
  17938. },
  17939. {
  17940. name: "Normal",
  17941. height: math.unit(5 + 7 / 12, "feet"),
  17942. default: true
  17943. },
  17944. {
  17945. name: "Amazon",
  17946. height: math.unit(12, "feet")
  17947. },
  17948. {
  17949. name: "Giantess",
  17950. height: math.unit(160, "meters")
  17951. },
  17952. {
  17953. name: "Titaness",
  17954. height: math.unit(800, "meters")
  17955. },
  17956. ]
  17957. ))
  17958. characterMakers.push(() => makeCharacter(
  17959. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17960. {
  17961. front: {
  17962. height: math.unit(6, "feet"),
  17963. weight: math.unit(150, "lb"),
  17964. name: "Front",
  17965. image: {
  17966. source: "./media/characters/alluria/front.svg",
  17967. extra: 806 / 738,
  17968. bottom: 0.01
  17969. }
  17970. },
  17971. side: {
  17972. height: math.unit(6, "feet"),
  17973. weight: math.unit(150, "lb"),
  17974. name: "Side",
  17975. image: {
  17976. source: "./media/characters/alluria/side.svg",
  17977. extra: 800 / 750,
  17978. }
  17979. },
  17980. back: {
  17981. height: math.unit(6, "feet"),
  17982. weight: math.unit(150, "lb"),
  17983. name: "Back",
  17984. image: {
  17985. source: "./media/characters/alluria/back.svg",
  17986. extra: 806 / 738,
  17987. }
  17988. },
  17989. frontMaid: {
  17990. height: math.unit(6, "feet"),
  17991. weight: math.unit(150, "lb"),
  17992. name: "Front (Maid)",
  17993. image: {
  17994. source: "./media/characters/alluria/front-maid.svg",
  17995. extra: 806 / 738,
  17996. bottom: 0.01
  17997. }
  17998. },
  17999. sideMaid: {
  18000. height: math.unit(6, "feet"),
  18001. weight: math.unit(150, "lb"),
  18002. name: "Side (Maid)",
  18003. image: {
  18004. source: "./media/characters/alluria/side-maid.svg",
  18005. extra: 800 / 750,
  18006. bottom: 0.005
  18007. }
  18008. },
  18009. backMaid: {
  18010. height: math.unit(6, "feet"),
  18011. weight: math.unit(150, "lb"),
  18012. name: "Back (Maid)",
  18013. image: {
  18014. source: "./media/characters/alluria/back-maid.svg",
  18015. extra: 806 / 738,
  18016. }
  18017. },
  18018. },
  18019. [
  18020. {
  18021. name: "Micro",
  18022. height: math.unit(6, "inches"),
  18023. default: true
  18024. },
  18025. ]
  18026. ))
  18027. characterMakers.push(() => makeCharacter(
  18028. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18029. {
  18030. front: {
  18031. height: math.unit(6, "feet"),
  18032. weight: math.unit(150, "lb"),
  18033. name: "Front",
  18034. image: {
  18035. source: "./media/characters/kyle/front.svg",
  18036. extra: 1069 / 962,
  18037. bottom: 77.228 / 1727.45
  18038. }
  18039. },
  18040. },
  18041. [
  18042. {
  18043. name: "Macro",
  18044. height: math.unit(150, "feet"),
  18045. default: true
  18046. },
  18047. ]
  18048. ))
  18049. characterMakers.push(() => makeCharacter(
  18050. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18051. {
  18052. front: {
  18053. height: math.unit(6, "feet"),
  18054. weight: math.unit(300, "lb"),
  18055. name: "Front",
  18056. image: {
  18057. source: "./media/characters/duncan/front.svg",
  18058. extra: 1650 / 1482,
  18059. bottom: 0.05
  18060. }
  18061. },
  18062. },
  18063. [
  18064. {
  18065. name: "Macro",
  18066. height: math.unit(100, "feet"),
  18067. default: true
  18068. },
  18069. ]
  18070. ))
  18071. characterMakers.push(() => makeCharacter(
  18072. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18073. {
  18074. front: {
  18075. height: math.unit(5 + 4 / 12, "feet"),
  18076. weight: math.unit(220, "lb"),
  18077. name: "Front",
  18078. image: {
  18079. source: "./media/characters/memory/front.svg",
  18080. extra: 3641 / 3545,
  18081. bottom: 0.03
  18082. }
  18083. },
  18084. back: {
  18085. height: math.unit(5 + 4 / 12, "feet"),
  18086. weight: math.unit(220, "lb"),
  18087. name: "Back",
  18088. image: {
  18089. source: "./media/characters/memory/back.svg",
  18090. extra: 3641 / 3545,
  18091. bottom: 0.025
  18092. }
  18093. },
  18094. frontSkirt: {
  18095. height: math.unit(5 + 4 / 12, "feet"),
  18096. weight: math.unit(220, "lb"),
  18097. name: "Front (Skirt)",
  18098. image: {
  18099. source: "./media/characters/memory/front-skirt.svg",
  18100. extra: 3641 / 3545,
  18101. bottom: 0.03
  18102. }
  18103. },
  18104. frontDress: {
  18105. height: math.unit(5 + 4 / 12, "feet"),
  18106. weight: math.unit(220, "lb"),
  18107. name: "Front (Dress)",
  18108. image: {
  18109. source: "./media/characters/memory/front-dress.svg",
  18110. extra: 3641 / 3545,
  18111. bottom: 0.03
  18112. }
  18113. },
  18114. },
  18115. [
  18116. {
  18117. name: "Micro",
  18118. height: math.unit(6, "inches"),
  18119. default: true
  18120. },
  18121. {
  18122. name: "Normal",
  18123. height: math.unit(5 + 4 / 12, "feet")
  18124. },
  18125. ]
  18126. ))
  18127. characterMakers.push(() => makeCharacter(
  18128. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18129. {
  18130. front: {
  18131. height: math.unit(4 + 11 / 12, "feet"),
  18132. weight: math.unit(100, "lb"),
  18133. name: "Front",
  18134. image: {
  18135. source: "./media/characters/luno/front.svg",
  18136. extra: 1535 / 1487,
  18137. bottom: 0.03
  18138. }
  18139. },
  18140. },
  18141. [
  18142. {
  18143. name: "Micro",
  18144. height: math.unit(3, "inches")
  18145. },
  18146. {
  18147. name: "Normal",
  18148. height: math.unit(4 + 11 / 12, "feet"),
  18149. default: true
  18150. },
  18151. {
  18152. name: "Macro",
  18153. height: math.unit(300, "feet")
  18154. },
  18155. {
  18156. name: "Megamacro",
  18157. height: math.unit(700, "miles")
  18158. },
  18159. ]
  18160. ))
  18161. characterMakers.push(() => makeCharacter(
  18162. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18163. {
  18164. front: {
  18165. height: math.unit(6 + 2 / 12, "feet"),
  18166. weight: math.unit(170, "lb"),
  18167. name: "Front",
  18168. image: {
  18169. source: "./media/characters/jamesy/front.svg",
  18170. extra: 440 / 382,
  18171. bottom: 0.005
  18172. }
  18173. },
  18174. },
  18175. [
  18176. {
  18177. name: "Micro",
  18178. height: math.unit(3, "inches")
  18179. },
  18180. {
  18181. name: "Normal",
  18182. height: math.unit(6 + 2 / 12, "feet"),
  18183. default: true
  18184. },
  18185. {
  18186. name: "Macro",
  18187. height: math.unit(300, "feet")
  18188. },
  18189. {
  18190. name: "Megamacro",
  18191. height: math.unit(700, "miles")
  18192. },
  18193. ]
  18194. ))
  18195. characterMakers.push(() => makeCharacter(
  18196. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18197. {
  18198. front: {
  18199. height: math.unit(6, "feet"),
  18200. weight: math.unit(160, "lb"),
  18201. name: "Front",
  18202. image: {
  18203. source: "./media/characters/mark/front.svg",
  18204. extra: 3300 / 3100,
  18205. bottom: 136.42 / 3440.47
  18206. }
  18207. },
  18208. },
  18209. [
  18210. {
  18211. name: "Macro",
  18212. height: math.unit(120, "meters")
  18213. },
  18214. {
  18215. name: "Bigger Macro",
  18216. height: math.unit(350, "meters")
  18217. },
  18218. {
  18219. name: "Megamacro",
  18220. height: math.unit(8, "km"),
  18221. default: true
  18222. },
  18223. {
  18224. name: "Continental",
  18225. height: math.unit(4550, "km")
  18226. },
  18227. {
  18228. name: "Planetary",
  18229. height: math.unit(65000, "km")
  18230. },
  18231. ]
  18232. ))
  18233. characterMakers.push(() => makeCharacter(
  18234. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18235. {
  18236. front: {
  18237. height: math.unit(6, "feet"),
  18238. weight: math.unit(400, "lb"),
  18239. name: "Front",
  18240. image: {
  18241. source: "./media/characters/mac/front.svg",
  18242. extra: 1048 / 987.7,
  18243. bottom: 60 / 1107.6,
  18244. }
  18245. },
  18246. },
  18247. [
  18248. {
  18249. name: "Macro",
  18250. height: math.unit(500, "feet"),
  18251. default: true
  18252. },
  18253. ]
  18254. ))
  18255. characterMakers.push(() => makeCharacter(
  18256. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18257. {
  18258. front: {
  18259. height: math.unit(5 + 2 / 12, "feet"),
  18260. weight: math.unit(190, "lb"),
  18261. name: "Front",
  18262. image: {
  18263. source: "./media/characters/bari/front.svg",
  18264. extra: 3156 / 2880,
  18265. bottom: 0.03
  18266. }
  18267. },
  18268. back: {
  18269. height: math.unit(5 + 2 / 12, "feet"),
  18270. weight: math.unit(190, "lb"),
  18271. name: "Back",
  18272. image: {
  18273. source: "./media/characters/bari/back.svg",
  18274. extra: 3260 / 2834,
  18275. bottom: 0.025
  18276. }
  18277. },
  18278. frontPlush: {
  18279. height: math.unit(5 + 2 / 12, "feet"),
  18280. weight: math.unit(190, "lb"),
  18281. name: "Front (Plush)",
  18282. image: {
  18283. source: "./media/characters/bari/front-plush.svg",
  18284. extra: 1112 / 1061,
  18285. bottom: 0.002
  18286. }
  18287. },
  18288. },
  18289. [
  18290. {
  18291. name: "Micro",
  18292. height: math.unit(3, "inches")
  18293. },
  18294. {
  18295. name: "Normal",
  18296. height: math.unit(5 + 2 / 12, "feet"),
  18297. default: true
  18298. },
  18299. {
  18300. name: "Macro",
  18301. height: math.unit(20, "feet")
  18302. },
  18303. ]
  18304. ))
  18305. characterMakers.push(() => makeCharacter(
  18306. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18307. {
  18308. front: {
  18309. height: math.unit(6 + 1 / 12, "feet"),
  18310. weight: math.unit(275, "lb"),
  18311. name: "Front",
  18312. image: {
  18313. source: "./media/characters/hunter-misha-raven/front.svg"
  18314. }
  18315. },
  18316. },
  18317. [
  18318. {
  18319. name: "Mortal",
  18320. height: math.unit(6 + 1 / 12, "feet")
  18321. },
  18322. {
  18323. name: "Divine",
  18324. height: math.unit(1.12134e34, "parsecs"),
  18325. default: true
  18326. },
  18327. ]
  18328. ))
  18329. characterMakers.push(() => makeCharacter(
  18330. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18331. {
  18332. front: {
  18333. height: math.unit(6 + 3 / 12, "feet"),
  18334. weight: math.unit(220, "lb"),
  18335. name: "Front",
  18336. image: {
  18337. source: "./media/characters/max-calore/front.svg",
  18338. extra: 1700 / 1648,
  18339. bottom: 0.01
  18340. }
  18341. },
  18342. back: {
  18343. height: math.unit(6 + 3 / 12, "feet"),
  18344. weight: math.unit(220, "lb"),
  18345. name: "Back",
  18346. image: {
  18347. source: "./media/characters/max-calore/back.svg",
  18348. extra: 1700 / 1648,
  18349. bottom: 0.01
  18350. }
  18351. },
  18352. },
  18353. [
  18354. {
  18355. name: "Normal",
  18356. height: math.unit(6 + 3 / 12, "feet"),
  18357. default: true
  18358. },
  18359. ]
  18360. ))
  18361. characterMakers.push(() => makeCharacter(
  18362. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18363. {
  18364. side: {
  18365. height: math.unit(2 + 8 / 12, "feet"),
  18366. weight: math.unit(99, "lb"),
  18367. name: "Side",
  18368. image: {
  18369. source: "./media/characters/aspen/side.svg",
  18370. extra: 152 / 138,
  18371. bottom: 0.032
  18372. }
  18373. },
  18374. },
  18375. [
  18376. {
  18377. name: "Normal",
  18378. height: math.unit(2 + 8 / 12, "feet"),
  18379. default: true
  18380. },
  18381. ]
  18382. ))
  18383. characterMakers.push(() => makeCharacter(
  18384. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18385. {
  18386. side: {
  18387. height: math.unit(3 + 2 / 12, "feet"),
  18388. weight: math.unit(224, "lb"),
  18389. name: "Side",
  18390. image: {
  18391. source: "./media/characters/sheila-feral-wolf/side.svg",
  18392. extra: 179 / 166,
  18393. bottom: 0.03
  18394. }
  18395. },
  18396. },
  18397. [
  18398. {
  18399. name: "Normal",
  18400. height: math.unit(3 + 2 / 12, "feet"),
  18401. default: true
  18402. },
  18403. ]
  18404. ))
  18405. characterMakers.push(() => makeCharacter(
  18406. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18407. {
  18408. side: {
  18409. height: math.unit(1 + 9 / 12, "feet"),
  18410. weight: math.unit(38, "lb"),
  18411. name: "Side",
  18412. image: {
  18413. source: "./media/characters/michelle/side.svg",
  18414. extra: 147 / 136.7,
  18415. bottom: 0.03
  18416. }
  18417. },
  18418. },
  18419. [
  18420. {
  18421. name: "Normal",
  18422. height: math.unit(1 + 9 / 12, "feet"),
  18423. default: true
  18424. },
  18425. ]
  18426. ))
  18427. characterMakers.push(() => makeCharacter(
  18428. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18429. {
  18430. front: {
  18431. height: math.unit(1.54, "feet"),
  18432. weight: math.unit(50, "lb"),
  18433. name: "Front",
  18434. image: {
  18435. source: "./media/characters/nino/front.svg"
  18436. }
  18437. },
  18438. },
  18439. [
  18440. {
  18441. name: "Normal",
  18442. height: math.unit(1.54, "feet"),
  18443. default: true
  18444. },
  18445. ]
  18446. ))
  18447. characterMakers.push(() => makeCharacter(
  18448. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18449. {
  18450. front: {
  18451. height: math.unit(1.49, "feet"),
  18452. weight: math.unit(45, "lb"),
  18453. name: "Front",
  18454. image: {
  18455. source: "./media/characters/viola/front.svg"
  18456. }
  18457. },
  18458. },
  18459. [
  18460. {
  18461. name: "Normal",
  18462. height: math.unit(1.49, "feet"),
  18463. default: true
  18464. },
  18465. ]
  18466. ))
  18467. characterMakers.push(() => makeCharacter(
  18468. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18469. {
  18470. front: {
  18471. height: math.unit(6 + 5 / 12, "feet"),
  18472. weight: math.unit(580, "lb"),
  18473. name: "Front",
  18474. image: {
  18475. source: "./media/characters/atlas/front.svg",
  18476. extra: 298.5 / 290,
  18477. bottom: 0.015
  18478. }
  18479. },
  18480. },
  18481. [
  18482. {
  18483. name: "Normal",
  18484. height: math.unit(6 + 5 / 12, "feet"),
  18485. default: true
  18486. },
  18487. ]
  18488. ))
  18489. characterMakers.push(() => makeCharacter(
  18490. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18491. {
  18492. side: {
  18493. height: math.unit(15.6, "inches"),
  18494. weight: math.unit(10, "lb"),
  18495. name: "Side",
  18496. image: {
  18497. source: "./media/characters/davy/side.svg",
  18498. extra: 200 / 170,
  18499. bottom: 0.01
  18500. }
  18501. },
  18502. },
  18503. [
  18504. {
  18505. name: "Normal",
  18506. height: math.unit(15.6, "inches"),
  18507. default: true
  18508. },
  18509. ]
  18510. ))
  18511. characterMakers.push(() => makeCharacter(
  18512. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18513. {
  18514. side: {
  18515. height: math.unit(4 + 8 / 12, "feet"),
  18516. weight: math.unit(166, "lb"),
  18517. name: "Side",
  18518. image: {
  18519. source: "./media/characters/fiona/side.svg",
  18520. extra: 232 / 220,
  18521. bottom: 0.03
  18522. }
  18523. },
  18524. },
  18525. [
  18526. {
  18527. name: "Normal",
  18528. height: math.unit(4 + 8 / 12, "feet"),
  18529. default: true
  18530. },
  18531. ]
  18532. ))
  18533. characterMakers.push(() => makeCharacter(
  18534. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18535. {
  18536. front: {
  18537. height: math.unit(26, "inches"),
  18538. weight: math.unit(35, "lb"),
  18539. name: "Front",
  18540. image: {
  18541. source: "./media/characters/lyla/front.svg",
  18542. bottom: 0.1
  18543. }
  18544. },
  18545. },
  18546. [
  18547. {
  18548. name: "Normal",
  18549. height: math.unit(3, "feet"),
  18550. default: true
  18551. },
  18552. ]
  18553. ))
  18554. characterMakers.push(() => makeCharacter(
  18555. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18556. {
  18557. side: {
  18558. height: math.unit(1.8, "feet"),
  18559. weight: math.unit(44, "lb"),
  18560. name: "Side",
  18561. image: {
  18562. source: "./media/characters/perseus/side.svg",
  18563. bottom: 0.21
  18564. }
  18565. },
  18566. },
  18567. [
  18568. {
  18569. name: "Normal",
  18570. height: math.unit(1.8, "feet"),
  18571. default: true
  18572. },
  18573. ]
  18574. ))
  18575. characterMakers.push(() => makeCharacter(
  18576. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18577. {
  18578. side: {
  18579. height: math.unit(4 + 2 / 12, "feet"),
  18580. weight: math.unit(20, "lb"),
  18581. name: "Side",
  18582. image: {
  18583. source: "./media/characters/remus/side.svg"
  18584. }
  18585. },
  18586. },
  18587. [
  18588. {
  18589. name: "Normal",
  18590. height: math.unit(4 + 2 / 12, "feet"),
  18591. default: true
  18592. },
  18593. ]
  18594. ))
  18595. characterMakers.push(() => makeCharacter(
  18596. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18597. {
  18598. front: {
  18599. height: math.unit(4 + 11 / 12, "feet"),
  18600. weight: math.unit(114, "lb"),
  18601. name: "Front",
  18602. image: {
  18603. source: "./media/characters/raf/front.svg",
  18604. extra: 1504/1339,
  18605. bottom: 26/1530
  18606. }
  18607. },
  18608. side: {
  18609. height: math.unit(4 + 11 / 12, "feet"),
  18610. weight: math.unit(114, "lb"),
  18611. name: "Side",
  18612. image: {
  18613. source: "./media/characters/raf/side.svg",
  18614. extra: 1466/1316,
  18615. bottom: 29/1495
  18616. }
  18617. },
  18618. paw: {
  18619. height: math.unit(1.45, "feet"),
  18620. name: "Paw",
  18621. image: {
  18622. source: "./media/characters/raf/paw.svg"
  18623. },
  18624. extraAttributes: {
  18625. "toeSize": {
  18626. name: "Toe Size",
  18627. power: 2,
  18628. type: "area",
  18629. base: math.unit(0.004, "m^2")
  18630. },
  18631. "padSize": {
  18632. name: "Pad Size",
  18633. power: 2,
  18634. type: "area",
  18635. base: math.unit(0.04, "m^2")
  18636. },
  18637. "footSize": {
  18638. name: "Foot Size",
  18639. power: 2,
  18640. type: "area",
  18641. base: math.unit(0.08, "m^2")
  18642. },
  18643. }
  18644. },
  18645. },
  18646. [
  18647. {
  18648. name: "Micro",
  18649. height: math.unit(2, "inches")
  18650. },
  18651. {
  18652. name: "Normal",
  18653. height: math.unit(4 + 11 / 12, "feet"),
  18654. default: true
  18655. },
  18656. {
  18657. name: "Macro",
  18658. height: math.unit(70, "feet")
  18659. },
  18660. ]
  18661. ))
  18662. characterMakers.push(() => makeCharacter(
  18663. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18664. {
  18665. front: {
  18666. height: math.unit(1.5, "meters"),
  18667. weight: math.unit(68, "kg"),
  18668. name: "Front",
  18669. image: {
  18670. source: "./media/characters/liam-einarr/front.svg",
  18671. extra: 2822 / 2666
  18672. }
  18673. },
  18674. back: {
  18675. height: math.unit(1.5, "meters"),
  18676. weight: math.unit(68, "kg"),
  18677. name: "Back",
  18678. image: {
  18679. source: "./media/characters/liam-einarr/back.svg",
  18680. extra: 2822 / 2666,
  18681. bottom: 0.015
  18682. }
  18683. },
  18684. },
  18685. [
  18686. {
  18687. name: "Normal",
  18688. height: math.unit(1.5, "meters"),
  18689. default: true
  18690. },
  18691. {
  18692. name: "Macro",
  18693. height: math.unit(150, "meters")
  18694. },
  18695. {
  18696. name: "Megamacro",
  18697. height: math.unit(35, "km")
  18698. },
  18699. ]
  18700. ))
  18701. characterMakers.push(() => makeCharacter(
  18702. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18703. {
  18704. front: {
  18705. height: math.unit(6, "feet"),
  18706. weight: math.unit(75, "kg"),
  18707. name: "Front",
  18708. image: {
  18709. source: "./media/characters/linda/front.svg",
  18710. extra: 930 / 874,
  18711. bottom: 0.004
  18712. }
  18713. },
  18714. },
  18715. [
  18716. {
  18717. name: "Normal",
  18718. height: math.unit(6, "feet"),
  18719. default: true
  18720. },
  18721. ]
  18722. ))
  18723. characterMakers.push(() => makeCharacter(
  18724. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18725. {
  18726. front: {
  18727. height: math.unit(6 + 8 / 12, "feet"),
  18728. weight: math.unit(220, "lb"),
  18729. name: "Front",
  18730. image: {
  18731. source: "./media/characters/caylex/front.svg",
  18732. extra: 821 / 772,
  18733. bottom: 0.07
  18734. }
  18735. },
  18736. back: {
  18737. height: math.unit(6 + 8 / 12, "feet"),
  18738. weight: math.unit(220, "lb"),
  18739. name: "Back",
  18740. image: {
  18741. source: "./media/characters/caylex/back.svg",
  18742. extra: 821 / 772,
  18743. bottom: 0.022
  18744. }
  18745. },
  18746. hand: {
  18747. height: math.unit(1.25, "feet"),
  18748. name: "Hand",
  18749. image: {
  18750. source: "./media/characters/caylex/hand.svg"
  18751. }
  18752. },
  18753. foot: {
  18754. height: math.unit(1.6, "feet"),
  18755. name: "Foot",
  18756. image: {
  18757. source: "./media/characters/caylex/foot.svg"
  18758. }
  18759. },
  18760. armored: {
  18761. height: math.unit(6 + 8 / 12, "feet"),
  18762. weight: math.unit(250, "lb"),
  18763. name: "Armored",
  18764. image: {
  18765. source: "./media/characters/caylex/armored.svg",
  18766. extra: 1420 / 1310,
  18767. bottom: 0.045
  18768. }
  18769. },
  18770. },
  18771. [
  18772. {
  18773. name: "Normal",
  18774. height: math.unit(6 + 8 / 12, "feet"),
  18775. default: true
  18776. },
  18777. {
  18778. name: "Normal+",
  18779. height: math.unit(12, "feet")
  18780. },
  18781. ]
  18782. ))
  18783. characterMakers.push(() => makeCharacter(
  18784. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18785. {
  18786. front: {
  18787. height: math.unit(7 + 6 / 12, "feet"),
  18788. weight: math.unit(288, "lb"),
  18789. name: "Front",
  18790. image: {
  18791. source: "./media/characters/alana/front.svg",
  18792. extra: 679 / 653,
  18793. bottom: 22.5 / 701
  18794. }
  18795. },
  18796. },
  18797. [
  18798. {
  18799. name: "Normal",
  18800. height: math.unit(7 + 6 / 12, "feet")
  18801. },
  18802. {
  18803. name: "Large",
  18804. height: math.unit(50, "feet")
  18805. },
  18806. {
  18807. name: "Macro",
  18808. height: math.unit(100, "feet"),
  18809. default: true
  18810. },
  18811. {
  18812. name: "Macro+",
  18813. height: math.unit(200, "feet")
  18814. },
  18815. ]
  18816. ))
  18817. characterMakers.push(() => makeCharacter(
  18818. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18819. {
  18820. front: {
  18821. height: math.unit(6 + 1 / 12, "feet"),
  18822. weight: math.unit(210, "lb"),
  18823. name: "Front",
  18824. image: {
  18825. source: "./media/characters/hasani/front.svg",
  18826. extra: 244 / 232,
  18827. bottom: 0.01
  18828. }
  18829. },
  18830. back: {
  18831. height: math.unit(6 + 1 / 12, "feet"),
  18832. weight: math.unit(210, "lb"),
  18833. name: "Back",
  18834. image: {
  18835. source: "./media/characters/hasani/back.svg",
  18836. extra: 244 / 232,
  18837. bottom: 0.01
  18838. }
  18839. },
  18840. },
  18841. [
  18842. {
  18843. name: "Normal",
  18844. height: math.unit(6 + 1 / 12, "feet")
  18845. },
  18846. {
  18847. name: "Macro",
  18848. height: math.unit(175, "feet"),
  18849. default: true
  18850. },
  18851. ]
  18852. ))
  18853. characterMakers.push(() => makeCharacter(
  18854. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18855. {
  18856. front: {
  18857. height: math.unit(1.82, "meters"),
  18858. weight: math.unit(140, "lb"),
  18859. name: "Front",
  18860. image: {
  18861. source: "./media/characters/nita/front.svg",
  18862. extra: 2473 / 2363,
  18863. bottom: 0.01
  18864. }
  18865. },
  18866. },
  18867. [
  18868. {
  18869. name: "Normal",
  18870. height: math.unit(1.82, "m")
  18871. },
  18872. {
  18873. name: "Macro",
  18874. height: math.unit(300, "m")
  18875. },
  18876. {
  18877. name: "Mistake Canon",
  18878. height: math.unit(0.5, "miles"),
  18879. default: true
  18880. },
  18881. {
  18882. name: "Big Mistake",
  18883. height: math.unit(13, "miles")
  18884. },
  18885. {
  18886. name: "Playing God",
  18887. height: math.unit(2450, "miles")
  18888. },
  18889. ]
  18890. ))
  18891. characterMakers.push(() => makeCharacter(
  18892. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18893. {
  18894. front: {
  18895. height: math.unit(4, "feet"),
  18896. weight: math.unit(120, "lb"),
  18897. name: "Front",
  18898. image: {
  18899. source: "./media/characters/shiriko/front.svg",
  18900. extra: 970/934,
  18901. bottom: 5/975
  18902. }
  18903. },
  18904. },
  18905. [
  18906. {
  18907. name: "Normal",
  18908. height: math.unit(4, "feet"),
  18909. default: true
  18910. },
  18911. ]
  18912. ))
  18913. characterMakers.push(() => makeCharacter(
  18914. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18915. {
  18916. front: {
  18917. height: math.unit(6, "feet"),
  18918. name: "front",
  18919. image: {
  18920. source: "./media/characters/deja/front.svg",
  18921. extra: 926 / 840,
  18922. bottom: 0.07
  18923. }
  18924. },
  18925. },
  18926. [
  18927. {
  18928. name: "Planck Length",
  18929. height: math.unit(1.6e-35, "meters")
  18930. },
  18931. {
  18932. name: "Normal",
  18933. height: math.unit(30.48, "meters"),
  18934. default: true
  18935. },
  18936. {
  18937. name: "Universal",
  18938. height: math.unit(8.8e26, "meters")
  18939. },
  18940. ]
  18941. ))
  18942. characterMakers.push(() => makeCharacter(
  18943. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18944. {
  18945. side: {
  18946. height: math.unit(8, "feet"),
  18947. weight: math.unit(6300, "lb"),
  18948. name: "Side",
  18949. image: {
  18950. source: "./media/characters/anima/side.svg",
  18951. bottom: 0.035
  18952. }
  18953. },
  18954. },
  18955. [
  18956. {
  18957. name: "Normal",
  18958. height: math.unit(8, "feet"),
  18959. default: true
  18960. },
  18961. ]
  18962. ))
  18963. characterMakers.push(() => makeCharacter(
  18964. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18965. {
  18966. front: {
  18967. height: math.unit(8, "feet"),
  18968. weight: math.unit(350, "lb"),
  18969. name: "Front",
  18970. image: {
  18971. source: "./media/characters/bianca/front.svg",
  18972. extra: 234 / 225,
  18973. bottom: 0.03
  18974. }
  18975. },
  18976. },
  18977. [
  18978. {
  18979. name: "Normal",
  18980. height: math.unit(8, "feet"),
  18981. default: true
  18982. },
  18983. ]
  18984. ))
  18985. characterMakers.push(() => makeCharacter(
  18986. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18987. {
  18988. front: {
  18989. height: math.unit(11 + 5/12, "feet"),
  18990. weight: math.unit(1200, "lb"),
  18991. name: "Front",
  18992. image: {
  18993. source: "./media/characters/adinia/front.svg",
  18994. extra: 1767/1641,
  18995. bottom: 44/1811
  18996. },
  18997. extraAttributes: {
  18998. "energyIntake": {
  18999. name: "Energy Intake",
  19000. power: 3,
  19001. type: "energy",
  19002. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19003. },
  19004. }
  19005. },
  19006. back: {
  19007. height: math.unit(11 + 5/12, "feet"),
  19008. weight: math.unit(1200, "lb"),
  19009. name: "Back",
  19010. image: {
  19011. source: "./media/characters/adinia/back.svg",
  19012. extra: 1834/1684,
  19013. bottom: 14/1848
  19014. },
  19015. extraAttributes: {
  19016. "energyIntake": {
  19017. name: "Energy Intake",
  19018. power: 3,
  19019. type: "energy",
  19020. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19021. },
  19022. }
  19023. },
  19024. maw: {
  19025. height: math.unit(3.79, "feet"),
  19026. name: "Maw",
  19027. image: {
  19028. source: "./media/characters/adinia/maw.svg"
  19029. }
  19030. },
  19031. rump: {
  19032. height: math.unit(4.6, "feet"),
  19033. name: "Rump",
  19034. image: {
  19035. source: "./media/characters/adinia/rump.svg"
  19036. }
  19037. },
  19038. },
  19039. [
  19040. {
  19041. name: "Normal",
  19042. height: math.unit(11 + 5 / 12, "feet"),
  19043. default: true
  19044. },
  19045. ]
  19046. ))
  19047. characterMakers.push(() => makeCharacter(
  19048. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19049. {
  19050. front: {
  19051. height: math.unit(3, "meters"),
  19052. weight: math.unit(200, "kg"),
  19053. name: "Front",
  19054. image: {
  19055. source: "./media/characters/lykasa/front.svg",
  19056. extra: 1076 / 976,
  19057. bottom: 0.06
  19058. }
  19059. },
  19060. },
  19061. [
  19062. {
  19063. name: "Normal",
  19064. height: math.unit(3, "meters")
  19065. },
  19066. {
  19067. name: "Kaiju",
  19068. height: math.unit(120, "meters"),
  19069. default: true
  19070. },
  19071. {
  19072. name: "Mega Kaiju",
  19073. height: math.unit(240, "km")
  19074. },
  19075. {
  19076. name: "Giga Kaiju",
  19077. height: math.unit(400, "megameters")
  19078. },
  19079. {
  19080. name: "Tera Kaiju",
  19081. height: math.unit(800, "gigameters")
  19082. },
  19083. {
  19084. name: "Kaiju Dragon Goddess",
  19085. height: math.unit(26, "zettaparsecs")
  19086. },
  19087. ]
  19088. ))
  19089. characterMakers.push(() => makeCharacter(
  19090. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19091. {
  19092. side: {
  19093. height: math.unit(283 / 124 * 6, "feet"),
  19094. weight: math.unit(35000, "lb"),
  19095. name: "Side",
  19096. image: {
  19097. source: "./media/characters/malfaren/side.svg",
  19098. extra: 1310/529,
  19099. bottom: 24/1334
  19100. }
  19101. },
  19102. front: {
  19103. height: math.unit(22.36, "feet"),
  19104. weight: math.unit(35000, "lb"),
  19105. name: "Front",
  19106. image: {
  19107. source: "./media/characters/malfaren/front.svg",
  19108. extra: 1237/1115,
  19109. bottom: 32/1269
  19110. }
  19111. },
  19112. maw: {
  19113. height: math.unit(6.9, "feet"),
  19114. name: "Maw",
  19115. image: {
  19116. source: "./media/characters/malfaren/maw.svg"
  19117. }
  19118. },
  19119. dick: {
  19120. height: math.unit(6.19, "feet"),
  19121. name: "Dick",
  19122. image: {
  19123. source: "./media/characters/malfaren/dick.svg"
  19124. }
  19125. },
  19126. eye: {
  19127. height: math.unit(0.69, "feet"),
  19128. name: "Eye",
  19129. image: {
  19130. source: "./media/characters/malfaren/eye.svg"
  19131. }
  19132. },
  19133. },
  19134. [
  19135. {
  19136. name: "Big",
  19137. height: math.unit(283 / 162 * 6, "feet"),
  19138. },
  19139. {
  19140. name: "Bigger",
  19141. height: math.unit(283 / 124 * 6, "feet")
  19142. },
  19143. {
  19144. name: "Massive",
  19145. height: math.unit(283 / 92 * 6, "feet"),
  19146. default: true
  19147. },
  19148. {
  19149. name: "👀💦",
  19150. height: math.unit(283 / 73 * 6, "feet"),
  19151. },
  19152. ]
  19153. ))
  19154. characterMakers.push(() => makeCharacter(
  19155. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19156. {
  19157. front: {
  19158. height: math.unit(1.7, "m"),
  19159. weight: math.unit(70, "kg"),
  19160. name: "Front",
  19161. image: {
  19162. source: "./media/characters/kernel/front.svg",
  19163. extra: 222 / 210,
  19164. bottom: 0.007
  19165. }
  19166. },
  19167. },
  19168. [
  19169. {
  19170. name: "Nano",
  19171. height: math.unit(17, "micrometers")
  19172. },
  19173. {
  19174. name: "Micro",
  19175. height: math.unit(1.7, "mm")
  19176. },
  19177. {
  19178. name: "Small",
  19179. height: math.unit(1.7, "cm")
  19180. },
  19181. {
  19182. name: "Normal",
  19183. height: math.unit(1.7, "m"),
  19184. default: true
  19185. },
  19186. ]
  19187. ))
  19188. characterMakers.push(() => makeCharacter(
  19189. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19190. {
  19191. front: {
  19192. height: math.unit(1.75, "meters"),
  19193. weight: math.unit(65, "kg"),
  19194. name: "Front",
  19195. image: {
  19196. source: "./media/characters/jayne-folest/front.svg",
  19197. extra: 2115 / 2007,
  19198. bottom: 0.02
  19199. }
  19200. },
  19201. back: {
  19202. height: math.unit(1.75, "meters"),
  19203. weight: math.unit(65, "kg"),
  19204. name: "Back",
  19205. image: {
  19206. source: "./media/characters/jayne-folest/back.svg",
  19207. extra: 2115 / 2007,
  19208. bottom: 0.005
  19209. }
  19210. },
  19211. frontClothed: {
  19212. height: math.unit(1.75, "meters"),
  19213. weight: math.unit(65, "kg"),
  19214. name: "Front (Clothed)",
  19215. image: {
  19216. source: "./media/characters/jayne-folest/front-clothed.svg",
  19217. extra: 2115 / 2007,
  19218. bottom: 0.035
  19219. }
  19220. },
  19221. hand: {
  19222. height: math.unit(1 / 1.260, "feet"),
  19223. name: "Hand",
  19224. image: {
  19225. source: "./media/characters/jayne-folest/hand.svg"
  19226. }
  19227. },
  19228. foot: {
  19229. height: math.unit(1 / 0.918, "feet"),
  19230. name: "Foot",
  19231. image: {
  19232. source: "./media/characters/jayne-folest/foot.svg"
  19233. }
  19234. },
  19235. },
  19236. [
  19237. {
  19238. name: "Micro",
  19239. height: math.unit(4, "cm")
  19240. },
  19241. {
  19242. name: "Normal",
  19243. height: math.unit(1.75, "meters")
  19244. },
  19245. {
  19246. name: "Macro",
  19247. height: math.unit(47.5, "meters"),
  19248. default: true
  19249. },
  19250. ]
  19251. ))
  19252. characterMakers.push(() => makeCharacter(
  19253. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19254. {
  19255. front: {
  19256. height: math.unit(180, "cm"),
  19257. weight: math.unit(70, "kg"),
  19258. name: "Front",
  19259. image: {
  19260. source: "./media/characters/algier/front.svg",
  19261. extra: 596 / 572,
  19262. bottom: 0.04
  19263. }
  19264. },
  19265. back: {
  19266. height: math.unit(180, "cm"),
  19267. weight: math.unit(70, "kg"),
  19268. name: "Back",
  19269. image: {
  19270. source: "./media/characters/algier/back.svg",
  19271. extra: 596 / 572,
  19272. bottom: 0.025
  19273. }
  19274. },
  19275. frontdressed: {
  19276. height: math.unit(180, "cm"),
  19277. weight: math.unit(150, "kg"),
  19278. name: "Front-dressed",
  19279. image: {
  19280. source: "./media/characters/algier/front-dressed.svg",
  19281. extra: 596 / 572,
  19282. bottom: 0.038
  19283. }
  19284. },
  19285. },
  19286. [
  19287. {
  19288. name: "Micro",
  19289. height: math.unit(5, "cm")
  19290. },
  19291. {
  19292. name: "Normal",
  19293. height: math.unit(180, "cm"),
  19294. default: true
  19295. },
  19296. {
  19297. name: "Macro",
  19298. height: math.unit(64, "m")
  19299. },
  19300. ]
  19301. ))
  19302. characterMakers.push(() => makeCharacter(
  19303. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19304. {
  19305. upright: {
  19306. height: math.unit(7, "feet"),
  19307. weight: math.unit(300, "lb"),
  19308. name: "Upright",
  19309. image: {
  19310. source: "./media/characters/pretzel/upright.svg",
  19311. extra: 534 / 522,
  19312. bottom: 0.065
  19313. }
  19314. },
  19315. sprawling: {
  19316. height: math.unit(3.75, "feet"),
  19317. weight: math.unit(300, "lb"),
  19318. name: "Sprawling",
  19319. image: {
  19320. source: "./media/characters/pretzel/sprawling.svg",
  19321. extra: 314 / 281,
  19322. bottom: 0.1
  19323. }
  19324. },
  19325. tongue: {
  19326. height: math.unit(2, "feet"),
  19327. name: "Tongue",
  19328. image: {
  19329. source: "./media/characters/pretzel/tongue.svg"
  19330. }
  19331. },
  19332. },
  19333. [
  19334. {
  19335. name: "Normal",
  19336. height: math.unit(7, "feet"),
  19337. default: true
  19338. },
  19339. {
  19340. name: "Oversized",
  19341. height: math.unit(15, "feet")
  19342. },
  19343. {
  19344. name: "Huge",
  19345. height: math.unit(30, "feet")
  19346. },
  19347. {
  19348. name: "Macro",
  19349. height: math.unit(250, "feet")
  19350. },
  19351. ]
  19352. ))
  19353. characterMakers.push(() => makeCharacter(
  19354. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19355. {
  19356. sideFront: {
  19357. height: math.unit(5 + 2 / 12, "feet"),
  19358. weight: math.unit(120, "lb"),
  19359. name: "Front Side",
  19360. image: {
  19361. source: "./media/characters/roxi/side-front.svg",
  19362. extra: 2924 / 2717,
  19363. bottom: 0.08
  19364. }
  19365. },
  19366. sideBack: {
  19367. height: math.unit(5 + 2 / 12, "feet"),
  19368. weight: math.unit(120, "lb"),
  19369. name: "Back Side",
  19370. image: {
  19371. source: "./media/characters/roxi/side-back.svg",
  19372. extra: 2904 / 2693,
  19373. bottom: 0.06
  19374. }
  19375. },
  19376. front: {
  19377. height: math.unit(5 + 2 / 12, "feet"),
  19378. weight: math.unit(120, "lb"),
  19379. name: "Front",
  19380. image: {
  19381. source: "./media/characters/roxi/front.svg",
  19382. extra: 2028 / 1907,
  19383. bottom: 0.01
  19384. }
  19385. },
  19386. frontAlt: {
  19387. height: math.unit(5 + 2 / 12, "feet"),
  19388. weight: math.unit(120, "lb"),
  19389. name: "Front (Alt)",
  19390. image: {
  19391. source: "./media/characters/roxi/front-alt.svg",
  19392. extra: 1828 / 1798,
  19393. bottom: 0.01
  19394. }
  19395. },
  19396. sitting: {
  19397. height: math.unit(2.8, "feet"),
  19398. weight: math.unit(120, "lb"),
  19399. name: "Sitting",
  19400. image: {
  19401. source: "./media/characters/roxi/sitting.svg",
  19402. extra: 2660 / 2462,
  19403. bottom: 0.1
  19404. }
  19405. },
  19406. },
  19407. [
  19408. {
  19409. name: "Normal",
  19410. height: math.unit(5 + 2 / 12, "feet"),
  19411. default: true
  19412. },
  19413. ]
  19414. ))
  19415. characterMakers.push(() => makeCharacter(
  19416. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19417. {
  19418. side: {
  19419. height: math.unit(55, "feet"),
  19420. weight: math.unit(153, "tons"),
  19421. name: "Side",
  19422. image: {
  19423. source: "./media/characters/shadow/side.svg",
  19424. extra: 701 / 628,
  19425. bottom: 0.02
  19426. }
  19427. },
  19428. flying: {
  19429. height: math.unit(145, "feet"),
  19430. weight: math.unit(153, "tons"),
  19431. name: "Flying",
  19432. image: {
  19433. source: "./media/characters/shadow/flying.svg"
  19434. }
  19435. },
  19436. },
  19437. [
  19438. {
  19439. name: "Normal",
  19440. height: math.unit(55, "feet"),
  19441. default: true
  19442. },
  19443. ]
  19444. ))
  19445. characterMakers.push(() => makeCharacter(
  19446. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19447. {
  19448. front: {
  19449. height: math.unit(6, "feet"),
  19450. weight: math.unit(200, "lb"),
  19451. name: "Front",
  19452. image: {
  19453. source: "./media/characters/marcie/front.svg",
  19454. extra: 960 / 876,
  19455. bottom: 58 / 1017.87
  19456. }
  19457. },
  19458. },
  19459. [
  19460. {
  19461. name: "Macro",
  19462. height: math.unit(1, "mile"),
  19463. default: true
  19464. },
  19465. ]
  19466. ))
  19467. characterMakers.push(() => makeCharacter(
  19468. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19469. {
  19470. front: {
  19471. height: math.unit(7, "feet"),
  19472. weight: math.unit(200, "lb"),
  19473. name: "Front",
  19474. image: {
  19475. source: "./media/characters/kachina/front.svg",
  19476. extra: 1290.68 / 1119,
  19477. bottom: 36.5 / 1327.18
  19478. }
  19479. },
  19480. },
  19481. [
  19482. {
  19483. name: "Normal",
  19484. height: math.unit(7, "feet"),
  19485. default: true
  19486. },
  19487. ]
  19488. ))
  19489. characterMakers.push(() => makeCharacter(
  19490. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19491. {
  19492. looking: {
  19493. height: math.unit(2, "meters"),
  19494. weight: math.unit(300, "kg"),
  19495. name: "Looking",
  19496. image: {
  19497. source: "./media/characters/kash/looking.svg",
  19498. extra: 474 / 344,
  19499. bottom: 0.03
  19500. }
  19501. },
  19502. side: {
  19503. height: math.unit(2, "meters"),
  19504. weight: math.unit(300, "kg"),
  19505. name: "Side",
  19506. image: {
  19507. source: "./media/characters/kash/side.svg",
  19508. extra: 302 / 251,
  19509. bottom: 0.03
  19510. }
  19511. },
  19512. front: {
  19513. height: math.unit(2, "meters"),
  19514. weight: math.unit(300, "kg"),
  19515. name: "Front",
  19516. image: {
  19517. source: "./media/characters/kash/front.svg",
  19518. extra: 495 / 360,
  19519. bottom: 0.015
  19520. }
  19521. },
  19522. },
  19523. [
  19524. {
  19525. name: "Normal",
  19526. height: math.unit(2, "meters"),
  19527. default: true
  19528. },
  19529. {
  19530. name: "Big",
  19531. height: math.unit(3, "meters")
  19532. },
  19533. {
  19534. name: "Large",
  19535. height: math.unit(5, "meters")
  19536. },
  19537. ]
  19538. ))
  19539. characterMakers.push(() => makeCharacter(
  19540. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19541. {
  19542. feeding: {
  19543. height: math.unit(6.7, "feet"),
  19544. weight: math.unit(350, "lb"),
  19545. name: "Feeding",
  19546. image: {
  19547. source: "./media/characters/lalim/feeding.svg",
  19548. }
  19549. },
  19550. },
  19551. [
  19552. {
  19553. name: "Normal",
  19554. height: math.unit(6.7, "feet"),
  19555. default: true
  19556. },
  19557. ]
  19558. ))
  19559. characterMakers.push(() => makeCharacter(
  19560. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19561. {
  19562. front: {
  19563. height: math.unit(9.5, "feet"),
  19564. weight: math.unit(600, "lb"),
  19565. name: "Front",
  19566. image: {
  19567. source: "./media/characters/de'vout/front.svg",
  19568. extra: 1443 / 1328,
  19569. bottom: 0.025
  19570. }
  19571. },
  19572. back: {
  19573. height: math.unit(9.5, "feet"),
  19574. weight: math.unit(600, "lb"),
  19575. name: "Back",
  19576. image: {
  19577. source: "./media/characters/de'vout/back.svg",
  19578. extra: 1443 / 1328
  19579. }
  19580. },
  19581. frontDressed: {
  19582. height: math.unit(9.5, "feet"),
  19583. weight: math.unit(600, "lb"),
  19584. name: "Front (Dressed",
  19585. image: {
  19586. source: "./media/characters/de'vout/front-dressed.svg",
  19587. extra: 1443 / 1328,
  19588. bottom: 0.025
  19589. }
  19590. },
  19591. backDressed: {
  19592. height: math.unit(9.5, "feet"),
  19593. weight: math.unit(600, "lb"),
  19594. name: "Back (Dressed",
  19595. image: {
  19596. source: "./media/characters/de'vout/back-dressed.svg",
  19597. extra: 1443 / 1328
  19598. }
  19599. },
  19600. },
  19601. [
  19602. {
  19603. name: "Normal",
  19604. height: math.unit(9.5, "feet"),
  19605. default: true
  19606. },
  19607. ]
  19608. ))
  19609. characterMakers.push(() => makeCharacter(
  19610. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19611. {
  19612. front: {
  19613. height: math.unit(8, "feet"),
  19614. weight: math.unit(225, "lb"),
  19615. name: "Front",
  19616. image: {
  19617. source: "./media/characters/talana/front.svg",
  19618. extra: 1410 / 1300,
  19619. bottom: 0.015
  19620. }
  19621. },
  19622. frontDressed: {
  19623. height: math.unit(8, "feet"),
  19624. weight: math.unit(225, "lb"),
  19625. name: "Front (Dressed",
  19626. image: {
  19627. source: "./media/characters/talana/front-dressed.svg",
  19628. extra: 1410 / 1300,
  19629. bottom: 0.015
  19630. }
  19631. },
  19632. },
  19633. [
  19634. {
  19635. name: "Normal",
  19636. height: math.unit(8, "feet"),
  19637. default: true
  19638. },
  19639. ]
  19640. ))
  19641. characterMakers.push(() => makeCharacter(
  19642. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19643. {
  19644. side: {
  19645. height: math.unit(7.2, "feet"),
  19646. weight: math.unit(150, "lb"),
  19647. name: "Side",
  19648. image: {
  19649. source: "./media/characters/xeauvok/side.svg",
  19650. extra: 1975 / 1523,
  19651. bottom: 0.07
  19652. }
  19653. },
  19654. },
  19655. [
  19656. {
  19657. name: "Normal",
  19658. height: math.unit(7.2, "feet"),
  19659. default: true
  19660. },
  19661. ]
  19662. ))
  19663. characterMakers.push(() => makeCharacter(
  19664. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19665. {
  19666. side: {
  19667. height: math.unit(4, "meters"),
  19668. weight: math.unit(2200, "kg"),
  19669. name: "Side",
  19670. image: {
  19671. source: "./media/characters/zara/side.svg",
  19672. extra: 765/744,
  19673. bottom: 156/921
  19674. }
  19675. },
  19676. },
  19677. [
  19678. {
  19679. name: "Normal",
  19680. height: math.unit(4, "meters"),
  19681. default: true
  19682. },
  19683. ]
  19684. ))
  19685. characterMakers.push(() => makeCharacter(
  19686. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19687. {
  19688. side: {
  19689. height: math.unit(6, "feet"),
  19690. weight: math.unit(150, "lb"),
  19691. name: "Side",
  19692. image: {
  19693. source: "./media/characters/richard-dragon/side.svg",
  19694. extra: 845 / 340,
  19695. bottom: 0.017
  19696. }
  19697. },
  19698. maw: {
  19699. height: math.unit(2.97, "feet"),
  19700. name: "Maw",
  19701. image: {
  19702. source: "./media/characters/richard-dragon/maw.svg"
  19703. }
  19704. },
  19705. },
  19706. [
  19707. ]
  19708. ))
  19709. characterMakers.push(() => makeCharacter(
  19710. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19711. {
  19712. front: {
  19713. height: math.unit(4, "feet"),
  19714. weight: math.unit(100, "lb"),
  19715. name: "Front",
  19716. image: {
  19717. source: "./media/characters/richard-smeargle/front.svg",
  19718. extra: 2952 / 2820,
  19719. bottom: 0.028
  19720. }
  19721. },
  19722. },
  19723. [
  19724. {
  19725. name: "Normal",
  19726. height: math.unit(4, "feet"),
  19727. default: true
  19728. },
  19729. {
  19730. name: "Dynamax",
  19731. height: math.unit(20, "meters")
  19732. },
  19733. ]
  19734. ))
  19735. characterMakers.push(() => makeCharacter(
  19736. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19737. {
  19738. front: {
  19739. height: math.unit(6, "feet"),
  19740. weight: math.unit(110, "lb"),
  19741. name: "Front",
  19742. image: {
  19743. source: "./media/characters/klay/front.svg",
  19744. extra: 962 / 883,
  19745. bottom: 0.04
  19746. }
  19747. },
  19748. back: {
  19749. height: math.unit(6, "feet"),
  19750. weight: math.unit(110, "lb"),
  19751. name: "Back",
  19752. image: {
  19753. source: "./media/characters/klay/back.svg",
  19754. extra: 962 / 883
  19755. }
  19756. },
  19757. beans: {
  19758. height: math.unit(1.15, "feet"),
  19759. name: "Beans",
  19760. image: {
  19761. source: "./media/characters/klay/beans.svg"
  19762. }
  19763. },
  19764. },
  19765. [
  19766. {
  19767. name: "Micro",
  19768. height: math.unit(6, "inches")
  19769. },
  19770. {
  19771. name: "Mini",
  19772. height: math.unit(3, "feet")
  19773. },
  19774. {
  19775. name: "Normal",
  19776. height: math.unit(6, "feet"),
  19777. default: true
  19778. },
  19779. {
  19780. name: "Big",
  19781. height: math.unit(25, "feet")
  19782. },
  19783. {
  19784. name: "Macro",
  19785. height: math.unit(100, "feet")
  19786. },
  19787. {
  19788. name: "Megamacro",
  19789. height: math.unit(400, "feet")
  19790. },
  19791. ]
  19792. ))
  19793. characterMakers.push(() => makeCharacter(
  19794. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19795. {
  19796. front: {
  19797. height: math.unit(6, "feet"),
  19798. weight: math.unit(160, "lb"),
  19799. name: "Front",
  19800. image: {
  19801. source: "./media/characters/marcus/front.svg",
  19802. extra: 734 / 676,
  19803. bottom: 0.03
  19804. }
  19805. },
  19806. },
  19807. [
  19808. {
  19809. name: "Little",
  19810. height: math.unit(6, "feet")
  19811. },
  19812. {
  19813. name: "Normal",
  19814. height: math.unit(110, "feet"),
  19815. default: true
  19816. },
  19817. {
  19818. name: "Macro",
  19819. height: math.unit(250, "feet")
  19820. },
  19821. {
  19822. name: "Megamacro",
  19823. height: math.unit(1000, "feet")
  19824. },
  19825. ]
  19826. ))
  19827. characterMakers.push(() => makeCharacter(
  19828. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19829. {
  19830. front: {
  19831. height: math.unit(7, "feet"),
  19832. weight: math.unit(275, "lb"),
  19833. name: "Front",
  19834. image: {
  19835. source: "./media/characters/claude-delroute/front.svg",
  19836. extra: 902/827,
  19837. bottom: 26/928
  19838. }
  19839. },
  19840. side: {
  19841. height: math.unit(7, "feet"),
  19842. weight: math.unit(275, "lb"),
  19843. name: "Side",
  19844. image: {
  19845. source: "./media/characters/claude-delroute/side.svg",
  19846. extra: 908/853,
  19847. bottom: 16/924
  19848. }
  19849. },
  19850. back: {
  19851. height: math.unit(7, "feet"),
  19852. weight: math.unit(275, "lb"),
  19853. name: "Back",
  19854. image: {
  19855. source: "./media/characters/claude-delroute/back.svg",
  19856. extra: 911/829,
  19857. bottom: 18/929
  19858. }
  19859. },
  19860. maw: {
  19861. height: math.unit(0.6407, "meters"),
  19862. name: "Maw",
  19863. image: {
  19864. source: "./media/characters/claude-delroute/maw.svg"
  19865. }
  19866. },
  19867. },
  19868. [
  19869. {
  19870. name: "Normal",
  19871. height: math.unit(7, "feet"),
  19872. default: true
  19873. },
  19874. {
  19875. name: "Lorge",
  19876. height: math.unit(20, "feet")
  19877. },
  19878. ]
  19879. ))
  19880. characterMakers.push(() => makeCharacter(
  19881. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19882. {
  19883. front: {
  19884. height: math.unit(8 + 4 / 12, "feet"),
  19885. weight: math.unit(600, "lb"),
  19886. name: "Front",
  19887. image: {
  19888. source: "./media/characters/dragonien/front.svg",
  19889. extra: 100 / 94,
  19890. bottom: 3.3 / 103.3445
  19891. }
  19892. },
  19893. back: {
  19894. height: math.unit(8 + 4 / 12, "feet"),
  19895. weight: math.unit(600, "lb"),
  19896. name: "Back",
  19897. image: {
  19898. source: "./media/characters/dragonien/back.svg",
  19899. extra: 776 / 746,
  19900. bottom: 6.4 / 782.0616
  19901. }
  19902. },
  19903. foot: {
  19904. height: math.unit(1.54, "feet"),
  19905. name: "Foot",
  19906. image: {
  19907. source: "./media/characters/dragonien/foot.svg",
  19908. }
  19909. },
  19910. },
  19911. [
  19912. {
  19913. name: "Normal",
  19914. height: math.unit(8 + 4 / 12, "feet"),
  19915. default: true
  19916. },
  19917. {
  19918. name: "Macro",
  19919. height: math.unit(200, "feet")
  19920. },
  19921. {
  19922. name: "Megamacro",
  19923. height: math.unit(1, "mile")
  19924. },
  19925. {
  19926. name: "Gigamacro",
  19927. height: math.unit(1000, "miles")
  19928. },
  19929. ]
  19930. ))
  19931. characterMakers.push(() => makeCharacter(
  19932. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19933. {
  19934. front: {
  19935. height: math.unit(5 + 2 / 12, "feet"),
  19936. weight: math.unit(110, "lb"),
  19937. name: "Front",
  19938. image: {
  19939. source: "./media/characters/desta/front.svg",
  19940. extra: 767 / 726,
  19941. bottom: 11.7 / 779
  19942. }
  19943. },
  19944. back: {
  19945. height: math.unit(5 + 2 / 12, "feet"),
  19946. weight: math.unit(110, "lb"),
  19947. name: "Back",
  19948. image: {
  19949. source: "./media/characters/desta/back.svg",
  19950. extra: 777 / 728,
  19951. bottom: 6 / 784
  19952. }
  19953. },
  19954. frontAlt: {
  19955. height: math.unit(5 + 2 / 12, "feet"),
  19956. weight: math.unit(110, "lb"),
  19957. name: "Front",
  19958. image: {
  19959. source: "./media/characters/desta/front-alt.svg",
  19960. extra: 1482 / 1417
  19961. }
  19962. },
  19963. side: {
  19964. height: math.unit(5 + 2 / 12, "feet"),
  19965. weight: math.unit(110, "lb"),
  19966. name: "Side",
  19967. image: {
  19968. source: "./media/characters/desta/side.svg",
  19969. extra: 2579 / 2491,
  19970. bottom: 0.053
  19971. }
  19972. },
  19973. },
  19974. [
  19975. {
  19976. name: "Micro",
  19977. height: math.unit(6, "inches")
  19978. },
  19979. {
  19980. name: "Normal",
  19981. height: math.unit(5 + 2 / 12, "feet"),
  19982. default: true
  19983. },
  19984. {
  19985. name: "Macro",
  19986. height: math.unit(62, "feet")
  19987. },
  19988. {
  19989. name: "Megamacro",
  19990. height: math.unit(1800, "feet")
  19991. },
  19992. ]
  19993. ))
  19994. characterMakers.push(() => makeCharacter(
  19995. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19996. {
  19997. front: {
  19998. height: math.unit(10, "feet"),
  19999. weight: math.unit(700, "lb"),
  20000. name: "Front",
  20001. image: {
  20002. source: "./media/characters/storm-alystar/front.svg",
  20003. extra: 2112 / 1898,
  20004. bottom: 0.034
  20005. }
  20006. },
  20007. },
  20008. [
  20009. {
  20010. name: "Micro",
  20011. height: math.unit(3.5, "inches")
  20012. },
  20013. {
  20014. name: "Normal",
  20015. height: math.unit(10, "feet"),
  20016. default: true
  20017. },
  20018. {
  20019. name: "Macro",
  20020. height: math.unit(400, "feet")
  20021. },
  20022. {
  20023. name: "Deific",
  20024. height: math.unit(60, "miles")
  20025. },
  20026. ]
  20027. ))
  20028. characterMakers.push(() => makeCharacter(
  20029. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20030. {
  20031. front: {
  20032. height: math.unit(2.35, "meters"),
  20033. weight: math.unit(119, "kg"),
  20034. name: "Front",
  20035. image: {
  20036. source: "./media/characters/ilia/front.svg",
  20037. extra: 1285 / 1255,
  20038. bottom: 0.06
  20039. }
  20040. },
  20041. },
  20042. [
  20043. {
  20044. name: "Normal",
  20045. height: math.unit(2.35, "meters")
  20046. },
  20047. {
  20048. name: "Macro",
  20049. height: math.unit(140, "meters"),
  20050. default: true
  20051. },
  20052. {
  20053. name: "Megamacro",
  20054. height: math.unit(100, "miles")
  20055. },
  20056. ]
  20057. ))
  20058. characterMakers.push(() => makeCharacter(
  20059. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20060. {
  20061. front: {
  20062. height: math.unit(6 + 5 / 12, "feet"),
  20063. weight: math.unit(190, "lb"),
  20064. name: "Front",
  20065. image: {
  20066. source: "./media/characters/kingdead/front.svg",
  20067. extra: 1228 / 1177
  20068. }
  20069. },
  20070. },
  20071. [
  20072. {
  20073. name: "Micro",
  20074. height: math.unit(7, "inches")
  20075. },
  20076. {
  20077. name: "Normal",
  20078. height: math.unit(6 + 5 / 12, "feet")
  20079. },
  20080. {
  20081. name: "Macro",
  20082. height: math.unit(150, "feet"),
  20083. default: true
  20084. },
  20085. {
  20086. name: "Megamacro",
  20087. height: math.unit(200, "miles")
  20088. },
  20089. ]
  20090. ))
  20091. characterMakers.push(() => makeCharacter(
  20092. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20093. {
  20094. front: {
  20095. height: math.unit(8, "feet"),
  20096. weight: math.unit(600, "lb"),
  20097. name: "Front",
  20098. image: {
  20099. source: "./media/characters/kyrehx/front.svg",
  20100. extra: 1195 / 1095,
  20101. bottom: 0.034
  20102. }
  20103. },
  20104. },
  20105. [
  20106. {
  20107. name: "Micro",
  20108. height: math.unit(2, "inches")
  20109. },
  20110. {
  20111. name: "Normal",
  20112. height: math.unit(8, "feet"),
  20113. default: true
  20114. },
  20115. {
  20116. name: "Macro",
  20117. height: math.unit(255, "feet")
  20118. },
  20119. ]
  20120. ))
  20121. characterMakers.push(() => makeCharacter(
  20122. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20123. {
  20124. front: {
  20125. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20126. weight: math.unit(184, "lb"),
  20127. name: "Front",
  20128. image: {
  20129. source: "./media/characters/xang/front.svg",
  20130. extra: 845 / 755
  20131. }
  20132. },
  20133. },
  20134. [
  20135. {
  20136. name: "Normal",
  20137. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20138. default: true
  20139. },
  20140. {
  20141. name: "Macro",
  20142. height: math.unit(0.935 * 146, "feet")
  20143. },
  20144. {
  20145. name: "Megamacro",
  20146. height: math.unit(0.935 * 3, "miles")
  20147. },
  20148. ]
  20149. ))
  20150. characterMakers.push(() => makeCharacter(
  20151. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20152. {
  20153. frontDressed: {
  20154. height: math.unit(5 + 7 / 12, "feet"),
  20155. weight: math.unit(140, "lb"),
  20156. name: "Front (Dressed)",
  20157. image: {
  20158. source: "./media/characters/doc-weardno/front-dressed.svg",
  20159. extra: 263 / 234
  20160. }
  20161. },
  20162. backDressed: {
  20163. height: math.unit(5 + 7 / 12, "feet"),
  20164. weight: math.unit(140, "lb"),
  20165. name: "Back (Dressed)",
  20166. image: {
  20167. source: "./media/characters/doc-weardno/back-dressed.svg",
  20168. extra: 266 / 238
  20169. }
  20170. },
  20171. front: {
  20172. height: math.unit(5 + 7 / 12, "feet"),
  20173. weight: math.unit(140, "lb"),
  20174. name: "Front",
  20175. image: {
  20176. source: "./media/characters/doc-weardno/front.svg",
  20177. extra: 254 / 233
  20178. }
  20179. },
  20180. },
  20181. [
  20182. {
  20183. name: "Micro",
  20184. height: math.unit(3, "inches")
  20185. },
  20186. {
  20187. name: "Normal",
  20188. height: math.unit(5 + 7 / 12, "feet"),
  20189. default: true
  20190. },
  20191. {
  20192. name: "Macro",
  20193. height: math.unit(25, "feet")
  20194. },
  20195. {
  20196. name: "Megamacro",
  20197. height: math.unit(2, "miles")
  20198. },
  20199. ]
  20200. ))
  20201. characterMakers.push(() => makeCharacter(
  20202. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20203. {
  20204. front: {
  20205. height: math.unit(6 + 2 / 12, "feet"),
  20206. weight: math.unit(153, "lb"),
  20207. name: "Front",
  20208. image: {
  20209. source: "./media/characters/seth-whilst/front.svg",
  20210. bottom: 0.07
  20211. }
  20212. },
  20213. },
  20214. [
  20215. {
  20216. name: "Micro",
  20217. height: math.unit(5, "inches")
  20218. },
  20219. {
  20220. name: "Normal",
  20221. height: math.unit(6 + 2 / 12, "feet"),
  20222. default: true
  20223. },
  20224. ]
  20225. ))
  20226. characterMakers.push(() => makeCharacter(
  20227. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20228. {
  20229. front: {
  20230. height: math.unit(3, "inches"),
  20231. weight: math.unit(8, "grams"),
  20232. name: "Front",
  20233. image: {
  20234. source: "./media/characters/pocket-jabari/front.svg",
  20235. extra: 1024 / 974,
  20236. bottom: 0.039
  20237. }
  20238. },
  20239. },
  20240. [
  20241. {
  20242. name: "Minimicro",
  20243. height: math.unit(8, "mm")
  20244. },
  20245. {
  20246. name: "Micro",
  20247. height: math.unit(3, "inches"),
  20248. default: true
  20249. },
  20250. {
  20251. name: "Normal",
  20252. height: math.unit(3, "feet")
  20253. },
  20254. ]
  20255. ))
  20256. characterMakers.push(() => makeCharacter(
  20257. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20258. {
  20259. frontDressed: {
  20260. height: math.unit(15, "feet"),
  20261. weight: math.unit(3280, "lb"),
  20262. name: "Front (Dressed)",
  20263. image: {
  20264. source: "./media/characters/sapphy/front-dressed.svg",
  20265. extra: 1951/1654,
  20266. bottom: 194/2145
  20267. },
  20268. form: "anthro",
  20269. default: true
  20270. },
  20271. backDressed: {
  20272. height: math.unit(15, "feet"),
  20273. weight: math.unit(3280, "lb"),
  20274. name: "Back (Dressed)",
  20275. image: {
  20276. source: "./media/characters/sapphy/back-dressed.svg",
  20277. extra: 2058/1918,
  20278. bottom: 125/2183
  20279. },
  20280. form: "anthro"
  20281. },
  20282. frontNude: {
  20283. height: math.unit(15, "feet"),
  20284. weight: math.unit(3280, "lb"),
  20285. name: "Front (Nude)",
  20286. image: {
  20287. source: "./media/characters/sapphy/front-nude.svg",
  20288. extra: 1951/1654,
  20289. bottom: 194/2145
  20290. },
  20291. form: "anthro"
  20292. },
  20293. backNude: {
  20294. height: math.unit(15, "feet"),
  20295. weight: math.unit(3280, "lb"),
  20296. name: "Back (Nude)",
  20297. image: {
  20298. source: "./media/characters/sapphy/back-nude.svg",
  20299. extra: 2058/1918,
  20300. bottom: 125/2183
  20301. },
  20302. form: "anthro"
  20303. },
  20304. full: {
  20305. height: math.unit(15, "feet"),
  20306. weight: math.unit(3280, "lb"),
  20307. name: "Full",
  20308. image: {
  20309. source: "./media/characters/sapphy/full.svg",
  20310. extra: 1396/1317,
  20311. bottom: 44/1440
  20312. },
  20313. form: "anthro"
  20314. },
  20315. dick: {
  20316. height: math.unit(3.8, "feet"),
  20317. name: "Dick",
  20318. image: {
  20319. source: "./media/characters/sapphy/dick.svg"
  20320. },
  20321. form: "anthro"
  20322. },
  20323. feral: {
  20324. height: math.unit(35, "feet"),
  20325. weight: math.unit(160, "tons"),
  20326. name: "Feral",
  20327. image: {
  20328. source: "./media/characters/sapphy/feral.svg",
  20329. extra: 1050/573,
  20330. bottom: 60/1110
  20331. },
  20332. form: "feral",
  20333. default: true
  20334. },
  20335. },
  20336. [
  20337. {
  20338. name: "Normal",
  20339. height: math.unit(15, "feet"),
  20340. form: "anthro"
  20341. },
  20342. {
  20343. name: "Casual Macro",
  20344. height: math.unit(120, "feet"),
  20345. form: "anthro"
  20346. },
  20347. {
  20348. name: "Macro",
  20349. height: math.unit(2150, "feet"),
  20350. default: true,
  20351. form: "anthro"
  20352. },
  20353. {
  20354. name: "Megamacro",
  20355. height: math.unit(8, "miles"),
  20356. form: "anthro"
  20357. },
  20358. {
  20359. name: "Galaxy Mom",
  20360. height: math.unit(6, "megalightyears"),
  20361. form: "anthro"
  20362. },
  20363. {
  20364. name: "Normal",
  20365. height: math.unit(35, "feet"),
  20366. form: "feral",
  20367. default: true
  20368. },
  20369. {
  20370. name: "Macro",
  20371. height: math.unit(300, "feet"),
  20372. form: "feral"
  20373. },
  20374. {
  20375. name: "Galaxy Mom",
  20376. height: math.unit(10, "megalightyears"),
  20377. form: "feral"
  20378. },
  20379. ],
  20380. {
  20381. "anthro": {
  20382. name: "Anthro",
  20383. default: true
  20384. },
  20385. "feral": {
  20386. name: "Feral"
  20387. }
  20388. }
  20389. ))
  20390. characterMakers.push(() => makeCharacter(
  20391. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20392. {
  20393. hyenaFront: {
  20394. height: math.unit(6, "feet"),
  20395. weight: math.unit(190, "lb"),
  20396. name: "Front",
  20397. image: {
  20398. source: "./media/characters/kiro/hyena-front.svg",
  20399. extra: 927/839,
  20400. bottom: 91/1018
  20401. },
  20402. form: "hyena",
  20403. default: true
  20404. },
  20405. front: {
  20406. height: math.unit(6, "feet"),
  20407. weight: math.unit(170, "lb"),
  20408. name: "Front",
  20409. image: {
  20410. source: "./media/characters/kiro/front.svg",
  20411. extra: 1064 / 1012,
  20412. bottom: 0.052
  20413. },
  20414. form: "folf",
  20415. default: true
  20416. },
  20417. },
  20418. [
  20419. {
  20420. name: "Micro",
  20421. height: math.unit(6, "inches"),
  20422. form: "folf"
  20423. },
  20424. {
  20425. name: "Normal",
  20426. height: math.unit(6, "feet"),
  20427. form: "folf",
  20428. default: true
  20429. },
  20430. {
  20431. name: "Macro",
  20432. height: math.unit(72, "feet"),
  20433. form: "folf"
  20434. },
  20435. {
  20436. name: "Micro",
  20437. height: math.unit(6, "inches"),
  20438. form: "hyena"
  20439. },
  20440. {
  20441. name: "Normal",
  20442. height: math.unit(6, "feet"),
  20443. form: "hyena",
  20444. default: true
  20445. },
  20446. {
  20447. name: "Macro",
  20448. height: math.unit(72, "feet"),
  20449. form: "hyena"
  20450. },
  20451. ],
  20452. {
  20453. "hyena": {
  20454. name: "Hyena",
  20455. default: true
  20456. },
  20457. "folf": {
  20458. name: "Folf",
  20459. },
  20460. }
  20461. ))
  20462. characterMakers.push(() => makeCharacter(
  20463. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20464. {
  20465. front: {
  20466. height: math.unit(5 + 9 / 12, "feet"),
  20467. weight: math.unit(175, "lb"),
  20468. name: "Front",
  20469. image: {
  20470. source: "./media/characters/irishfox/front.svg",
  20471. extra: 1912 / 1680,
  20472. bottom: 0.02
  20473. }
  20474. },
  20475. },
  20476. [
  20477. {
  20478. name: "Nano",
  20479. height: math.unit(1, "mm")
  20480. },
  20481. {
  20482. name: "Micro",
  20483. height: math.unit(2, "inches")
  20484. },
  20485. {
  20486. name: "Normal",
  20487. height: math.unit(5 + 9 / 12, "feet"),
  20488. default: true
  20489. },
  20490. {
  20491. name: "Macro",
  20492. height: math.unit(45, "feet")
  20493. },
  20494. ]
  20495. ))
  20496. characterMakers.push(() => makeCharacter(
  20497. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20498. {
  20499. front: {
  20500. height: math.unit(6 + 1 / 12, "feet"),
  20501. weight: math.unit(75, "lb"),
  20502. name: "Front",
  20503. image: {
  20504. source: "./media/characters/aronai-sieyes/front.svg",
  20505. extra: 1532/1450,
  20506. bottom: 42/1574
  20507. }
  20508. },
  20509. side: {
  20510. height: math.unit(6 + 1 / 12, "feet"),
  20511. weight: math.unit(75, "lb"),
  20512. name: "Side",
  20513. image: {
  20514. source: "./media/characters/aronai-sieyes/side.svg",
  20515. extra: 1422/1365,
  20516. bottom: 148/1570
  20517. }
  20518. },
  20519. back: {
  20520. height: math.unit(6 + 1 / 12, "feet"),
  20521. weight: math.unit(75, "lb"),
  20522. name: "Back",
  20523. image: {
  20524. source: "./media/characters/aronai-sieyes/back.svg",
  20525. extra: 1526/1464,
  20526. bottom: 51/1577
  20527. }
  20528. },
  20529. dressed: {
  20530. height: math.unit(6 + 1 / 12, "feet"),
  20531. weight: math.unit(75, "lb"),
  20532. name: "Dressed",
  20533. image: {
  20534. source: "./media/characters/aronai-sieyes/dressed.svg",
  20535. extra: 1559/1483,
  20536. bottom: 39/1598
  20537. }
  20538. },
  20539. slit: {
  20540. height: math.unit(1.3, "feet"),
  20541. name: "Slit",
  20542. image: {
  20543. source: "./media/characters/aronai-sieyes/slit.svg"
  20544. }
  20545. },
  20546. slitSpread: {
  20547. height: math.unit(0.9, "feet"),
  20548. name: "Slit (Spread)",
  20549. image: {
  20550. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20551. }
  20552. },
  20553. rump: {
  20554. height: math.unit(1.3, "feet"),
  20555. name: "Rump",
  20556. image: {
  20557. source: "./media/characters/aronai-sieyes/rump.svg"
  20558. }
  20559. },
  20560. maw: {
  20561. height: math.unit(1.25, "feet"),
  20562. name: "Maw",
  20563. image: {
  20564. source: "./media/characters/aronai-sieyes/maw.svg"
  20565. }
  20566. },
  20567. feral: {
  20568. height: math.unit(18, "feet"),
  20569. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20570. name: "Feral",
  20571. image: {
  20572. source: "./media/characters/aronai-sieyes/feral.svg",
  20573. extra: 1530 / 1240,
  20574. bottom: 0.035
  20575. }
  20576. },
  20577. },
  20578. [
  20579. {
  20580. name: "Micro",
  20581. height: math.unit(2, "inches")
  20582. },
  20583. {
  20584. name: "Normal",
  20585. height: math.unit(6 + 1 / 12, "feet"),
  20586. default: true
  20587. }
  20588. ]
  20589. ))
  20590. characterMakers.push(() => makeCharacter(
  20591. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20592. {
  20593. front: {
  20594. height: math.unit(12, "feet"),
  20595. weight: math.unit(410, "kg"),
  20596. name: "Front",
  20597. image: {
  20598. source: "./media/characters/xuna/front.svg",
  20599. extra: 2184 / 1980
  20600. }
  20601. },
  20602. side: {
  20603. height: math.unit(12, "feet"),
  20604. weight: math.unit(410, "kg"),
  20605. name: "Side",
  20606. image: {
  20607. source: "./media/characters/xuna/side.svg",
  20608. extra: 2184 / 1980
  20609. }
  20610. },
  20611. back: {
  20612. height: math.unit(12, "feet"),
  20613. weight: math.unit(410, "kg"),
  20614. name: "Back",
  20615. image: {
  20616. source: "./media/characters/xuna/back.svg",
  20617. extra: 2184 / 1980
  20618. }
  20619. },
  20620. },
  20621. [
  20622. {
  20623. name: "Nano glow",
  20624. height: math.unit(10, "nm")
  20625. },
  20626. {
  20627. name: "Micro floof",
  20628. height: math.unit(0.3, "m")
  20629. },
  20630. {
  20631. name: "Huggable softy boi",
  20632. height: math.unit(3.6576, "m"),
  20633. default: true
  20634. },
  20635. {
  20636. name: "Admirable floof",
  20637. height: math.unit(80, "meters")
  20638. },
  20639. {
  20640. name: "Gentle macro",
  20641. height: math.unit(300, "meters")
  20642. },
  20643. {
  20644. name: "Very careful floof",
  20645. height: math.unit(3200, "meters")
  20646. },
  20647. {
  20648. name: "The mega floof",
  20649. height: math.unit(36000, "meters")
  20650. },
  20651. {
  20652. name: "Giga-fur-Wicker",
  20653. height: math.unit(4800000, "meters")
  20654. },
  20655. {
  20656. name: "Licky world",
  20657. height: math.unit(20000000, "meters")
  20658. },
  20659. {
  20660. name: "Floofy cyan sun",
  20661. height: math.unit(1500000000, "meters")
  20662. },
  20663. {
  20664. name: "Milky Wicker",
  20665. height: math.unit(1000000000000000000000, "meters")
  20666. },
  20667. {
  20668. name: "The observing Wicker",
  20669. height: math.unit(999999999999999999999999999, "meters")
  20670. },
  20671. ]
  20672. ))
  20673. characterMakers.push(() => makeCharacter(
  20674. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20675. {
  20676. front: {
  20677. height: math.unit(5 + 9 / 12, "feet"),
  20678. weight: math.unit(150, "lb"),
  20679. name: "Front",
  20680. image: {
  20681. source: "./media/characters/arokha-sieyes/front.svg",
  20682. extra: 1425 / 1284,
  20683. bottom: 0.05
  20684. }
  20685. },
  20686. },
  20687. [
  20688. {
  20689. name: "Normal",
  20690. height: math.unit(5 + 9 / 12, "feet")
  20691. },
  20692. {
  20693. name: "Macro",
  20694. height: math.unit(30, "meters"),
  20695. default: true
  20696. },
  20697. ]
  20698. ))
  20699. characterMakers.push(() => makeCharacter(
  20700. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20701. {
  20702. front: {
  20703. height: math.unit(6, "feet"),
  20704. weight: math.unit(180, "lb"),
  20705. name: "Front",
  20706. image: {
  20707. source: "./media/characters/arokh-sieyes/front.svg",
  20708. extra: 1830 / 1769,
  20709. bottom: 0.01
  20710. }
  20711. },
  20712. },
  20713. [
  20714. {
  20715. name: "Normal",
  20716. height: math.unit(6, "feet")
  20717. },
  20718. {
  20719. name: "Macro",
  20720. height: math.unit(30, "meters"),
  20721. default: true
  20722. },
  20723. ]
  20724. ))
  20725. characterMakers.push(() => makeCharacter(
  20726. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20727. {
  20728. side: {
  20729. height: math.unit(13 + 1 / 12, "feet"),
  20730. weight: math.unit(8.5, "tonnes"),
  20731. preyCapacity: math.unit(36, "people"),
  20732. name: "Side",
  20733. image: {
  20734. source: "./media/characters/goldeneye/side.svg",
  20735. extra: 1139/741,
  20736. bottom: 98/1237
  20737. }
  20738. },
  20739. front: {
  20740. height: math.unit(5.1, "feet"),
  20741. weight: math.unit(8.5, "tonnes"),
  20742. preyCapacity: math.unit(36, "people"),
  20743. name: "Front",
  20744. image: {
  20745. source: "./media/characters/goldeneye/front.svg",
  20746. extra: 635/365,
  20747. bottom: 598/1233
  20748. }
  20749. },
  20750. maw: {
  20751. height: math.unit(6.6, "feet"),
  20752. name: "Maw",
  20753. image: {
  20754. source: "./media/characters/goldeneye/maw.svg"
  20755. }
  20756. },
  20757. headFront: {
  20758. height: math.unit(8, "feet"),
  20759. name: "Head (Front)",
  20760. image: {
  20761. source: "./media/characters/goldeneye/head-front.svg"
  20762. }
  20763. },
  20764. headSide: {
  20765. height: math.unit(6, "feet"),
  20766. name: "Head (Side)",
  20767. image: {
  20768. source: "./media/characters/goldeneye/head-side.svg"
  20769. }
  20770. },
  20771. headBack: {
  20772. height: math.unit(8, "feet"),
  20773. name: "Head (Back)",
  20774. image: {
  20775. source: "./media/characters/goldeneye/head-back.svg"
  20776. }
  20777. },
  20778. paw: {
  20779. height: math.unit(3.4, "feet"),
  20780. name: "Paw",
  20781. image: {
  20782. source: "./media/characters/goldeneye/paw.svg"
  20783. }
  20784. },
  20785. toering: {
  20786. height: math.unit(0.45, "feet"),
  20787. name: "Toering",
  20788. image: {
  20789. source: "./media/characters/goldeneye/toering.svg"
  20790. }
  20791. },
  20792. eyes: {
  20793. height: math.unit(0.5, "feet"),
  20794. name: "Eyes",
  20795. image: {
  20796. source: "./media/characters/goldeneye/eyes.svg"
  20797. }
  20798. },
  20799. },
  20800. [
  20801. {
  20802. name: "Normal",
  20803. height: math.unit(13 + 1 / 12, "feet"),
  20804. default: true
  20805. },
  20806. ]
  20807. ))
  20808. characterMakers.push(() => makeCharacter(
  20809. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20810. {
  20811. front: {
  20812. height: math.unit(6 + 1 / 12, "feet"),
  20813. weight: math.unit(210, "lb"),
  20814. name: "Front",
  20815. image: {
  20816. source: "./media/characters/leonardo-lycheborne/front.svg",
  20817. extra: 776/723,
  20818. bottom: 34/810
  20819. }
  20820. },
  20821. side: {
  20822. height: math.unit(6 + 1 / 12, "feet"),
  20823. weight: math.unit(210, "lb"),
  20824. name: "Side",
  20825. image: {
  20826. source: "./media/characters/leonardo-lycheborne/side.svg",
  20827. extra: 780/728,
  20828. bottom: 12/792
  20829. }
  20830. },
  20831. back: {
  20832. height: math.unit(6 + 1 / 12, "feet"),
  20833. weight: math.unit(210, "lb"),
  20834. name: "Back",
  20835. image: {
  20836. source: "./media/characters/leonardo-lycheborne/back.svg",
  20837. extra: 775/721,
  20838. bottom: 17/792
  20839. }
  20840. },
  20841. hand: {
  20842. height: math.unit(1.08, "feet"),
  20843. name: "Hand",
  20844. image: {
  20845. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20846. }
  20847. },
  20848. foot: {
  20849. height: math.unit(1.32, "feet"),
  20850. name: "Foot",
  20851. image: {
  20852. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20853. }
  20854. },
  20855. maw: {
  20856. height: math.unit(1, "feet"),
  20857. name: "Maw",
  20858. image: {
  20859. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20860. }
  20861. },
  20862. were: {
  20863. height: math.unit(20, "feet"),
  20864. weight: math.unit(7800, "lb"),
  20865. name: "Were",
  20866. image: {
  20867. source: "./media/characters/leonardo-lycheborne/were.svg",
  20868. extra: 1224/1165,
  20869. bottom: 72/1296
  20870. }
  20871. },
  20872. feral: {
  20873. height: math.unit(7.5, "feet"),
  20874. weight: math.unit(600, "lb"),
  20875. name: "Feral",
  20876. image: {
  20877. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20878. extra: 797/702,
  20879. bottom: 139/936
  20880. }
  20881. },
  20882. taur: {
  20883. height: math.unit(11, "feet"),
  20884. weight: math.unit(3300, "lb"),
  20885. name: "Taur",
  20886. image: {
  20887. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20888. extra: 1271/1197,
  20889. bottom: 47/1318
  20890. }
  20891. },
  20892. barghest: {
  20893. height: math.unit(11, "feet"),
  20894. weight: math.unit(1300, "lb"),
  20895. name: "Barghest",
  20896. image: {
  20897. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20898. extra: 1291/1204,
  20899. bottom: 37/1328
  20900. }
  20901. },
  20902. dick: {
  20903. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20904. name: "Dick",
  20905. image: {
  20906. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20907. }
  20908. },
  20909. dickWere: {
  20910. height: math.unit((20) / 3.8, "feet"),
  20911. name: "Dick (Were)",
  20912. image: {
  20913. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20914. }
  20915. },
  20916. },
  20917. [
  20918. {
  20919. name: "Normal",
  20920. height: math.unit(6 + 1 / 12, "feet"),
  20921. default: true
  20922. },
  20923. ]
  20924. ))
  20925. characterMakers.push(() => makeCharacter(
  20926. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20927. {
  20928. front: {
  20929. height: math.unit(10, "feet"),
  20930. weight: math.unit(350, "lb"),
  20931. name: "Front",
  20932. image: {
  20933. source: "./media/characters/jet/front.svg",
  20934. extra: 2050 / 1980,
  20935. bottom: 0.013
  20936. }
  20937. },
  20938. back: {
  20939. height: math.unit(10, "feet"),
  20940. weight: math.unit(350, "lb"),
  20941. name: "Back",
  20942. image: {
  20943. source: "./media/characters/jet/back.svg",
  20944. extra: 2050 / 1980,
  20945. bottom: 0.013
  20946. }
  20947. },
  20948. },
  20949. [
  20950. {
  20951. name: "Micro",
  20952. height: math.unit(6, "inches")
  20953. },
  20954. {
  20955. name: "Normal",
  20956. height: math.unit(10, "feet"),
  20957. default: true
  20958. },
  20959. {
  20960. name: "Macro",
  20961. height: math.unit(100, "feet")
  20962. },
  20963. ]
  20964. ))
  20965. characterMakers.push(() => makeCharacter(
  20966. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20967. {
  20968. front: {
  20969. height: math.unit(15, "feet"),
  20970. weight: math.unit(2800, "lb"),
  20971. name: "Front",
  20972. image: {
  20973. source: "./media/characters/tanarath/front.svg",
  20974. extra: 2392 / 2220,
  20975. bottom: 0.03
  20976. }
  20977. },
  20978. back: {
  20979. height: math.unit(15, "feet"),
  20980. weight: math.unit(2800, "lb"),
  20981. name: "Back",
  20982. image: {
  20983. source: "./media/characters/tanarath/back.svg",
  20984. extra: 2392 / 2220,
  20985. bottom: 0.03
  20986. }
  20987. },
  20988. },
  20989. [
  20990. {
  20991. name: "Normal",
  20992. height: math.unit(15, "feet"),
  20993. default: true
  20994. },
  20995. ]
  20996. ))
  20997. characterMakers.push(() => makeCharacter(
  20998. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20999. {
  21000. front: {
  21001. height: math.unit(7 + 1 / 12, "feet"),
  21002. weight: math.unit(175, "lb"),
  21003. name: "Front",
  21004. image: {
  21005. source: "./media/characters/patty-cattybatty/front.svg",
  21006. extra: 908 / 874,
  21007. bottom: 0.025
  21008. }
  21009. },
  21010. },
  21011. [
  21012. {
  21013. name: "Micro",
  21014. height: math.unit(1, "inch")
  21015. },
  21016. {
  21017. name: "Normal",
  21018. height: math.unit(7 + 1 / 12, "feet")
  21019. },
  21020. {
  21021. name: "Mini Macro",
  21022. height: math.unit(155, "feet")
  21023. },
  21024. {
  21025. name: "Macro",
  21026. height: math.unit(1077, "feet")
  21027. },
  21028. {
  21029. name: "Mega Macro",
  21030. height: math.unit(47650, "feet"),
  21031. default: true
  21032. },
  21033. {
  21034. name: "Giga Macro",
  21035. height: math.unit(440, "miles")
  21036. },
  21037. {
  21038. name: "Tera Macro",
  21039. height: math.unit(8700, "miles")
  21040. },
  21041. {
  21042. name: "Planetary Macro",
  21043. height: math.unit(32700, "miles")
  21044. },
  21045. {
  21046. name: "Solar Macro",
  21047. height: math.unit(550000, "miles")
  21048. },
  21049. {
  21050. name: "Celestial Macro",
  21051. height: math.unit(2.5, "AU")
  21052. },
  21053. ]
  21054. ))
  21055. characterMakers.push(() => makeCharacter(
  21056. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21057. {
  21058. front: {
  21059. height: math.unit(4 + 5 / 12, "feet"),
  21060. weight: math.unit(90, "lb"),
  21061. name: "Front",
  21062. image: {
  21063. source: "./media/characters/cappu/front.svg",
  21064. extra: 1247 / 1152,
  21065. bottom: 0.012
  21066. }
  21067. },
  21068. },
  21069. [
  21070. {
  21071. name: "Normal",
  21072. height: math.unit(4 + 5 / 12, "feet"),
  21073. default: true
  21074. },
  21075. ]
  21076. ))
  21077. characterMakers.push(() => makeCharacter(
  21078. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21079. {
  21080. frontDressed: {
  21081. height: math.unit(70, "cm"),
  21082. weight: math.unit(6, "kg"),
  21083. name: "Front (Dressed)",
  21084. image: {
  21085. source: "./media/characters/sebi/front-dressed.svg",
  21086. extra: 713.5 / 686.5,
  21087. bottom: 0.003
  21088. }
  21089. },
  21090. front: {
  21091. height: math.unit(70, "cm"),
  21092. weight: math.unit(5, "kg"),
  21093. name: "Front",
  21094. image: {
  21095. source: "./media/characters/sebi/front.svg",
  21096. extra: 713.5 / 686.5,
  21097. bottom: 0.003
  21098. }
  21099. }
  21100. },
  21101. [
  21102. {
  21103. name: "Normal",
  21104. height: math.unit(70, "cm"),
  21105. default: true
  21106. },
  21107. {
  21108. name: "Macro",
  21109. height: math.unit(8, "meters")
  21110. },
  21111. ]
  21112. ))
  21113. characterMakers.push(() => makeCharacter(
  21114. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21115. {
  21116. front: {
  21117. height: math.unit(6, "feet"),
  21118. weight: math.unit(150, "lb"),
  21119. name: "Front",
  21120. image: {
  21121. source: "./media/characters/typhek/front.svg",
  21122. extra: 1948 / 1929,
  21123. bottom: 0.025
  21124. }
  21125. },
  21126. side: {
  21127. height: math.unit(6, "feet"),
  21128. weight: math.unit(150, "lb"),
  21129. name: "Side",
  21130. image: {
  21131. source: "./media/characters/typhek/side.svg",
  21132. extra: 2034 / 2010,
  21133. bottom: 0.003
  21134. }
  21135. },
  21136. back: {
  21137. height: math.unit(6, "feet"),
  21138. weight: math.unit(150, "lb"),
  21139. name: "Back",
  21140. image: {
  21141. source: "./media/characters/typhek/back.svg",
  21142. extra: 2005 / 1978,
  21143. bottom: 0.004
  21144. }
  21145. },
  21146. palm: {
  21147. height: math.unit(1.2, "feet"),
  21148. name: "Palm",
  21149. image: {
  21150. source: "./media/characters/typhek/palm.svg"
  21151. }
  21152. },
  21153. fist: {
  21154. height: math.unit(1.1, "feet"),
  21155. name: "Fist",
  21156. image: {
  21157. source: "./media/characters/typhek/fist.svg"
  21158. }
  21159. },
  21160. foot: {
  21161. height: math.unit(1.57, "feet"),
  21162. name: "Foot",
  21163. image: {
  21164. source: "./media/characters/typhek/foot.svg"
  21165. }
  21166. },
  21167. sole: {
  21168. height: math.unit(2.05, "feet"),
  21169. name: "Sole",
  21170. image: {
  21171. source: "./media/characters/typhek/sole.svg"
  21172. }
  21173. },
  21174. },
  21175. [
  21176. {
  21177. name: "Macro",
  21178. height: math.unit(40, "stories"),
  21179. default: true
  21180. },
  21181. {
  21182. name: "Megamacro",
  21183. height: math.unit(1, "mile")
  21184. },
  21185. {
  21186. name: "Gigamacro",
  21187. height: math.unit(4000, "solarradii")
  21188. },
  21189. {
  21190. name: "Universal",
  21191. height: math.unit(1.1, "universes")
  21192. }
  21193. ]
  21194. ))
  21195. characterMakers.push(() => makeCharacter(
  21196. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21197. {
  21198. side: {
  21199. height: math.unit(5 + 7 / 12, "feet"),
  21200. weight: math.unit(150, "lb"),
  21201. name: "Side",
  21202. image: {
  21203. source: "./media/characters/kassy/side.svg",
  21204. extra: 1280 / 1225,
  21205. bottom: 0.002
  21206. }
  21207. },
  21208. front: {
  21209. height: math.unit(5 + 7 / 12, "feet"),
  21210. weight: math.unit(150, "lb"),
  21211. name: "Front",
  21212. image: {
  21213. source: "./media/characters/kassy/front.svg",
  21214. extra: 1280 / 1225,
  21215. bottom: 0.025
  21216. }
  21217. },
  21218. back: {
  21219. height: math.unit(5 + 7 / 12, "feet"),
  21220. weight: math.unit(150, "lb"),
  21221. name: "Back",
  21222. image: {
  21223. source: "./media/characters/kassy/back.svg",
  21224. extra: 1280 / 1225,
  21225. bottom: 0.002
  21226. }
  21227. },
  21228. foot: {
  21229. height: math.unit(1.266, "feet"),
  21230. name: "Foot",
  21231. image: {
  21232. source: "./media/characters/kassy/foot.svg"
  21233. }
  21234. },
  21235. },
  21236. [
  21237. {
  21238. name: "Normal",
  21239. height: math.unit(5 + 7 / 12, "feet")
  21240. },
  21241. {
  21242. name: "Macro",
  21243. height: math.unit(137, "feet"),
  21244. default: true
  21245. },
  21246. {
  21247. name: "Megamacro",
  21248. height: math.unit(1, "mile")
  21249. },
  21250. ]
  21251. ))
  21252. characterMakers.push(() => makeCharacter(
  21253. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21254. {
  21255. front: {
  21256. height: math.unit(6 + 1 / 12, "feet"),
  21257. weight: math.unit(200, "lb"),
  21258. name: "Front",
  21259. image: {
  21260. source: "./media/characters/neil/front.svg",
  21261. extra: 1326 / 1250,
  21262. bottom: 0.023
  21263. }
  21264. },
  21265. },
  21266. [
  21267. {
  21268. name: "Normal",
  21269. height: math.unit(6 + 1 / 12, "feet"),
  21270. default: true
  21271. },
  21272. {
  21273. name: "Macro",
  21274. height: math.unit(200, "feet")
  21275. },
  21276. ]
  21277. ))
  21278. characterMakers.push(() => makeCharacter(
  21279. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21280. {
  21281. front: {
  21282. height: math.unit(5 + 9 / 12, "feet"),
  21283. weight: math.unit(190, "lb"),
  21284. name: "Front",
  21285. image: {
  21286. source: "./media/characters/atticus/front.svg",
  21287. extra: 2934 / 2785,
  21288. bottom: 0.025
  21289. }
  21290. },
  21291. },
  21292. [
  21293. {
  21294. name: "Normal",
  21295. height: math.unit(5 + 9 / 12, "feet"),
  21296. default: true
  21297. },
  21298. {
  21299. name: "Macro",
  21300. height: math.unit(180, "feet")
  21301. },
  21302. ]
  21303. ))
  21304. characterMakers.push(() => makeCharacter(
  21305. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21306. {
  21307. side: {
  21308. height: math.unit(9, "feet"),
  21309. weight: math.unit(650, "lb"),
  21310. name: "Side",
  21311. image: {
  21312. source: "./media/characters/milo/side.svg",
  21313. extra: 2644 / 2310,
  21314. bottom: 0.032
  21315. }
  21316. },
  21317. },
  21318. [
  21319. {
  21320. name: "Normal",
  21321. height: math.unit(9, "feet"),
  21322. default: true
  21323. },
  21324. {
  21325. name: "Macro",
  21326. height: math.unit(300, "feet")
  21327. },
  21328. ]
  21329. ))
  21330. characterMakers.push(() => makeCharacter(
  21331. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21332. {
  21333. side: {
  21334. height: math.unit(8, "meters"),
  21335. weight: math.unit(90000, "kg"),
  21336. name: "Side",
  21337. image: {
  21338. source: "./media/characters/ijzer/side.svg",
  21339. extra: 2756 / 1600,
  21340. bottom: 0.01
  21341. }
  21342. },
  21343. },
  21344. [
  21345. {
  21346. name: "Small",
  21347. height: math.unit(3, "meters")
  21348. },
  21349. {
  21350. name: "Normal",
  21351. height: math.unit(8, "meters"),
  21352. default: true
  21353. },
  21354. {
  21355. name: "Normal+",
  21356. height: math.unit(10, "meters")
  21357. },
  21358. {
  21359. name: "Bigger",
  21360. height: math.unit(24, "meters")
  21361. },
  21362. {
  21363. name: "Huge",
  21364. height: math.unit(80, "meters")
  21365. },
  21366. ]
  21367. ))
  21368. characterMakers.push(() => makeCharacter(
  21369. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21370. {
  21371. front: {
  21372. height: math.unit(6 + 2 / 12, "feet"),
  21373. weight: math.unit(153, "lb"),
  21374. name: "Front",
  21375. image: {
  21376. source: "./media/characters/luca-cervicum/front.svg",
  21377. extra: 370 / 327,
  21378. bottom: 0.015
  21379. }
  21380. },
  21381. back: {
  21382. height: math.unit(6 + 2 / 12, "feet"),
  21383. weight: math.unit(153, "lb"),
  21384. name: "Back",
  21385. image: {
  21386. source: "./media/characters/luca-cervicum/back.svg",
  21387. extra: 367 / 333,
  21388. bottom: 0.005
  21389. }
  21390. },
  21391. frontGear: {
  21392. height: math.unit(6 + 2 / 12, "feet"),
  21393. weight: math.unit(173, "lb"),
  21394. name: "Front (Gear)",
  21395. image: {
  21396. source: "./media/characters/luca-cervicum/front-gear.svg",
  21397. extra: 377 / 333,
  21398. bottom: 0.006
  21399. }
  21400. },
  21401. },
  21402. [
  21403. {
  21404. name: "Normal",
  21405. height: math.unit(6 + 2 / 12, "feet"),
  21406. default: true
  21407. },
  21408. ]
  21409. ))
  21410. characterMakers.push(() => makeCharacter(
  21411. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21412. {
  21413. front: {
  21414. height: math.unit(6 + 1 / 12, "feet"),
  21415. weight: math.unit(304, "lb"),
  21416. name: "Front",
  21417. image: {
  21418. source: "./media/characters/oliver/front.svg",
  21419. extra: 157 / 143,
  21420. bottom: 0.08
  21421. }
  21422. },
  21423. },
  21424. [
  21425. {
  21426. name: "Normal",
  21427. height: math.unit(6 + 1 / 12, "feet"),
  21428. default: true
  21429. },
  21430. ]
  21431. ))
  21432. characterMakers.push(() => makeCharacter(
  21433. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21434. {
  21435. front: {
  21436. height: math.unit(5 + 7 / 12, "feet"),
  21437. weight: math.unit(140, "lb"),
  21438. name: "Front",
  21439. image: {
  21440. source: "./media/characters/shane/front.svg",
  21441. extra: 304 / 289,
  21442. bottom: 0.005
  21443. }
  21444. },
  21445. },
  21446. [
  21447. {
  21448. name: "Normal",
  21449. height: math.unit(5 + 7 / 12, "feet"),
  21450. default: true
  21451. },
  21452. ]
  21453. ))
  21454. characterMakers.push(() => makeCharacter(
  21455. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21456. {
  21457. front: {
  21458. height: math.unit(5 + 9 / 12, "feet"),
  21459. weight: math.unit(178, "lb"),
  21460. name: "Front",
  21461. image: {
  21462. source: "./media/characters/shin/front.svg",
  21463. extra: 159 / 151,
  21464. bottom: 0.015
  21465. }
  21466. },
  21467. },
  21468. [
  21469. {
  21470. name: "Normal",
  21471. height: math.unit(5 + 9 / 12, "feet"),
  21472. default: true
  21473. },
  21474. ]
  21475. ))
  21476. characterMakers.push(() => makeCharacter(
  21477. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21478. {
  21479. front: {
  21480. height: math.unit(5 + 10 / 12, "feet"),
  21481. weight: math.unit(168, "lb"),
  21482. name: "Front",
  21483. image: {
  21484. source: "./media/characters/xerxes/front.svg",
  21485. extra: 282 / 260,
  21486. bottom: 0.045
  21487. }
  21488. },
  21489. },
  21490. [
  21491. {
  21492. name: "Normal",
  21493. height: math.unit(5 + 10 / 12, "feet"),
  21494. default: true
  21495. },
  21496. ]
  21497. ))
  21498. characterMakers.push(() => makeCharacter(
  21499. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21500. {
  21501. front: {
  21502. height: math.unit(6 + 7 / 12, "feet"),
  21503. weight: math.unit(208, "lb"),
  21504. name: "Front",
  21505. image: {
  21506. source: "./media/characters/chaska/front.svg",
  21507. extra: 332 / 319,
  21508. bottom: 0.015
  21509. }
  21510. },
  21511. },
  21512. [
  21513. {
  21514. name: "Normal",
  21515. height: math.unit(6 + 7 / 12, "feet"),
  21516. default: true
  21517. },
  21518. ]
  21519. ))
  21520. characterMakers.push(() => makeCharacter(
  21521. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21522. {
  21523. front: {
  21524. height: math.unit(5 + 8 / 12, "feet"),
  21525. weight: math.unit(208, "lb"),
  21526. name: "Front",
  21527. image: {
  21528. source: "./media/characters/enuk/front.svg",
  21529. extra: 437 / 406,
  21530. bottom: 0.02
  21531. }
  21532. },
  21533. },
  21534. [
  21535. {
  21536. name: "Normal",
  21537. height: math.unit(5 + 8 / 12, "feet"),
  21538. default: true
  21539. },
  21540. ]
  21541. ))
  21542. characterMakers.push(() => makeCharacter(
  21543. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21544. {
  21545. front: {
  21546. height: math.unit(5 + 10 / 12, "feet"),
  21547. weight: math.unit(252, "lb"),
  21548. name: "Front",
  21549. image: {
  21550. source: "./media/characters/bruun/front.svg",
  21551. extra: 197 / 187,
  21552. bottom: 0.012
  21553. }
  21554. },
  21555. },
  21556. [
  21557. {
  21558. name: "Normal",
  21559. height: math.unit(5 + 10 / 12, "feet"),
  21560. default: true
  21561. },
  21562. ]
  21563. ))
  21564. characterMakers.push(() => makeCharacter(
  21565. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21566. {
  21567. front: {
  21568. height: math.unit(6 + 10 / 12, "feet"),
  21569. weight: math.unit(255, "lb"),
  21570. name: "Front",
  21571. image: {
  21572. source: "./media/characters/alexeev/front.svg",
  21573. extra: 213 / 200,
  21574. bottom: 0.05
  21575. }
  21576. },
  21577. },
  21578. [
  21579. {
  21580. name: "Normal",
  21581. height: math.unit(6 + 10 / 12, "feet"),
  21582. default: true
  21583. },
  21584. ]
  21585. ))
  21586. characterMakers.push(() => makeCharacter(
  21587. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21588. {
  21589. front: {
  21590. height: math.unit(2 + 8 / 12, "feet"),
  21591. weight: math.unit(22, "lb"),
  21592. name: "Front",
  21593. image: {
  21594. source: "./media/characters/evelyn/front.svg",
  21595. extra: 208 / 180
  21596. }
  21597. },
  21598. },
  21599. [
  21600. {
  21601. name: "Normal",
  21602. height: math.unit(2 + 8 / 12, "feet"),
  21603. default: true
  21604. },
  21605. ]
  21606. ))
  21607. characterMakers.push(() => makeCharacter(
  21608. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21609. {
  21610. front: {
  21611. height: math.unit(5 + 9 / 12, "feet"),
  21612. weight: math.unit(139, "lb"),
  21613. name: "Front",
  21614. image: {
  21615. source: "./media/characters/inca/front.svg",
  21616. extra: 294 / 291,
  21617. bottom: 0.03
  21618. }
  21619. },
  21620. },
  21621. [
  21622. {
  21623. name: "Normal",
  21624. height: math.unit(5 + 9 / 12, "feet"),
  21625. default: true
  21626. },
  21627. ]
  21628. ))
  21629. characterMakers.push(() => makeCharacter(
  21630. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21631. {
  21632. front: {
  21633. height: math.unit(6 + 3 / 12, "feet"),
  21634. weight: math.unit(185, "lb"),
  21635. name: "Front",
  21636. image: {
  21637. source: "./media/characters/mera/front.svg",
  21638. extra: 291 / 277,
  21639. bottom: 0.03
  21640. }
  21641. },
  21642. },
  21643. [
  21644. {
  21645. name: "Normal",
  21646. height: math.unit(6 + 3 / 12, "feet"),
  21647. default: true
  21648. },
  21649. ]
  21650. ))
  21651. characterMakers.push(() => makeCharacter(
  21652. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21653. {
  21654. front: {
  21655. height: math.unit(6 + 7 / 12, "feet"),
  21656. weight: math.unit(160, "lb"),
  21657. name: "Front",
  21658. image: {
  21659. source: "./media/characters/ceres/front.svg",
  21660. extra: 1023 / 950,
  21661. bottom: 0.027
  21662. }
  21663. },
  21664. back: {
  21665. height: math.unit(6 + 7 / 12, "feet"),
  21666. weight: math.unit(160, "lb"),
  21667. name: "Back",
  21668. image: {
  21669. source: "./media/characters/ceres/back.svg",
  21670. extra: 1023 / 950
  21671. }
  21672. },
  21673. },
  21674. [
  21675. {
  21676. name: "Normal",
  21677. height: math.unit(6 + 7 / 12, "feet"),
  21678. default: true
  21679. },
  21680. ]
  21681. ))
  21682. characterMakers.push(() => makeCharacter(
  21683. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21684. {
  21685. front: {
  21686. height: math.unit(5 + 10 / 12, "feet"),
  21687. weight: math.unit(150, "lb"),
  21688. name: "Front",
  21689. image: {
  21690. source: "./media/characters/kris/front.svg",
  21691. extra: 885 / 803,
  21692. bottom: 0.03
  21693. }
  21694. },
  21695. },
  21696. [
  21697. {
  21698. name: "Normal",
  21699. height: math.unit(5 + 10 / 12, "feet"),
  21700. default: true
  21701. },
  21702. ]
  21703. ))
  21704. characterMakers.push(() => makeCharacter(
  21705. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21706. {
  21707. front: {
  21708. height: math.unit(7, "feet"),
  21709. weight: math.unit(120, "kg"),
  21710. name: "Front",
  21711. image: {
  21712. source: "./media/characters/taluthus/front.svg",
  21713. extra: 903 / 833,
  21714. bottom: 0.015
  21715. }
  21716. },
  21717. },
  21718. [
  21719. {
  21720. name: "Normal",
  21721. height: math.unit(7, "feet"),
  21722. default: true
  21723. },
  21724. {
  21725. name: "Macro",
  21726. height: math.unit(300, "feet")
  21727. },
  21728. ]
  21729. ))
  21730. characterMakers.push(() => makeCharacter(
  21731. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21732. {
  21733. front: {
  21734. height: math.unit(5 + 9 / 12, "feet"),
  21735. weight: math.unit(145, "lb"),
  21736. name: "Front",
  21737. image: {
  21738. source: "./media/characters/dawn/front.svg",
  21739. extra: 2094 / 2016,
  21740. bottom: 0.025
  21741. }
  21742. },
  21743. back: {
  21744. height: math.unit(5 + 9 / 12, "feet"),
  21745. weight: math.unit(160, "lb"),
  21746. name: "Back",
  21747. image: {
  21748. source: "./media/characters/dawn/back.svg",
  21749. extra: 2112 / 2080,
  21750. bottom: 0.005
  21751. }
  21752. },
  21753. },
  21754. [
  21755. {
  21756. name: "Normal",
  21757. height: math.unit(6 + 7 / 12, "feet"),
  21758. default: true
  21759. },
  21760. ]
  21761. ))
  21762. characterMakers.push(() => makeCharacter(
  21763. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21764. {
  21765. anthro: {
  21766. height: math.unit(8 + 3 / 12, "feet"),
  21767. weight: math.unit(450, "lb"),
  21768. name: "Anthro",
  21769. image: {
  21770. source: "./media/characters/arador/anthro.svg",
  21771. extra: 1835 / 1718,
  21772. bottom: 0.025
  21773. }
  21774. },
  21775. feral: {
  21776. height: math.unit(4, "feet"),
  21777. weight: math.unit(200, "lb"),
  21778. name: "Feral",
  21779. image: {
  21780. source: "./media/characters/arador/feral.svg",
  21781. extra: 1683 / 1514,
  21782. bottom: 0.07
  21783. }
  21784. },
  21785. },
  21786. [
  21787. {
  21788. name: "Normal",
  21789. height: math.unit(8 + 3 / 12, "feet")
  21790. },
  21791. {
  21792. name: "Macro",
  21793. height: math.unit(82.5, "feet"),
  21794. default: true
  21795. },
  21796. ]
  21797. ))
  21798. characterMakers.push(() => makeCharacter(
  21799. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21800. {
  21801. front: {
  21802. height: math.unit(5 + 10 / 12, "feet"),
  21803. weight: math.unit(125, "lb"),
  21804. name: "Front",
  21805. image: {
  21806. source: "./media/characters/dharsi/front.svg",
  21807. extra: 716 / 630,
  21808. bottom: 0.035
  21809. }
  21810. },
  21811. },
  21812. [
  21813. {
  21814. name: "Nano",
  21815. height: math.unit(100, "nm")
  21816. },
  21817. {
  21818. name: "Micro",
  21819. height: math.unit(2, "inches")
  21820. },
  21821. {
  21822. name: "Normal",
  21823. height: math.unit(5 + 10 / 12, "feet"),
  21824. default: true
  21825. },
  21826. {
  21827. name: "Macro",
  21828. height: math.unit(1000, "feet")
  21829. },
  21830. {
  21831. name: "Megamacro",
  21832. height: math.unit(10, "miles")
  21833. },
  21834. {
  21835. name: "Gigamacro",
  21836. height: math.unit(3000, "miles")
  21837. },
  21838. {
  21839. name: "Teramacro",
  21840. height: math.unit(500000, "miles")
  21841. },
  21842. {
  21843. name: "Teramacro+",
  21844. height: math.unit(30, "galaxies")
  21845. },
  21846. ]
  21847. ))
  21848. characterMakers.push(() => makeCharacter(
  21849. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21850. {
  21851. front: {
  21852. height: math.unit(6, "feet"),
  21853. weight: math.unit(150, "lb"),
  21854. name: "Front",
  21855. image: {
  21856. source: "./media/characters/deathy/front.svg",
  21857. extra: 1552 / 1463,
  21858. bottom: 0.025
  21859. }
  21860. },
  21861. side: {
  21862. height: math.unit(6, "feet"),
  21863. weight: math.unit(150, "lb"),
  21864. name: "Side",
  21865. image: {
  21866. source: "./media/characters/deathy/side.svg",
  21867. extra: 1604 / 1455,
  21868. bottom: 0.025
  21869. }
  21870. },
  21871. back: {
  21872. height: math.unit(6, "feet"),
  21873. weight: math.unit(150, "lb"),
  21874. name: "Back",
  21875. image: {
  21876. source: "./media/characters/deathy/back.svg",
  21877. extra: 1580 / 1463,
  21878. bottom: 0.005
  21879. }
  21880. },
  21881. },
  21882. [
  21883. {
  21884. name: "Micro",
  21885. height: math.unit(5, "millimeters")
  21886. },
  21887. {
  21888. name: "Normal",
  21889. height: math.unit(6 + 5 / 12, "feet"),
  21890. default: true
  21891. },
  21892. ]
  21893. ))
  21894. characterMakers.push(() => makeCharacter(
  21895. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21896. {
  21897. front: {
  21898. height: math.unit(16, "feet"),
  21899. weight: math.unit(4000, "lb"),
  21900. name: "Front",
  21901. image: {
  21902. source: "./media/characters/juniper/front.svg",
  21903. bottom: 0.04
  21904. }
  21905. },
  21906. },
  21907. [
  21908. {
  21909. name: "Normal",
  21910. height: math.unit(16, "feet"),
  21911. default: true
  21912. },
  21913. ]
  21914. ))
  21915. characterMakers.push(() => makeCharacter(
  21916. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21917. {
  21918. front: {
  21919. height: math.unit(6, "feet"),
  21920. weight: math.unit(150, "lb"),
  21921. name: "Front",
  21922. image: {
  21923. source: "./media/characters/hipster/front.svg",
  21924. extra: 1312 / 1209,
  21925. bottom: 0.025
  21926. }
  21927. },
  21928. back: {
  21929. height: math.unit(6, "feet"),
  21930. weight: math.unit(150, "lb"),
  21931. name: "Back",
  21932. image: {
  21933. source: "./media/characters/hipster/back.svg",
  21934. extra: 1281 / 1196,
  21935. bottom: 0.01
  21936. }
  21937. },
  21938. },
  21939. [
  21940. {
  21941. name: "Micro",
  21942. height: math.unit(1, "mm")
  21943. },
  21944. {
  21945. name: "Normal",
  21946. height: math.unit(4, "inches"),
  21947. default: true
  21948. },
  21949. {
  21950. name: "Macro",
  21951. height: math.unit(500, "feet")
  21952. },
  21953. {
  21954. name: "Megamacro",
  21955. height: math.unit(1000, "miles")
  21956. },
  21957. ]
  21958. ))
  21959. characterMakers.push(() => makeCharacter(
  21960. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21961. {
  21962. front: {
  21963. height: math.unit(6, "feet"),
  21964. weight: math.unit(150, "lb"),
  21965. name: "Front",
  21966. image: {
  21967. source: "./media/characters/tendirmuldr/front.svg",
  21968. extra: 1878 / 1772,
  21969. bottom: 0.015
  21970. }
  21971. },
  21972. },
  21973. [
  21974. {
  21975. name: "Megamacro",
  21976. height: math.unit(1500, "miles"),
  21977. default: true
  21978. },
  21979. ]
  21980. ))
  21981. characterMakers.push(() => makeCharacter(
  21982. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21983. {
  21984. front: {
  21985. height: math.unit(14, "feet"),
  21986. weight: math.unit(12000, "lb"),
  21987. name: "Front",
  21988. image: {
  21989. source: "./media/characters/mort/front.svg",
  21990. extra: 365 / 318,
  21991. bottom: 0.01
  21992. }
  21993. },
  21994. side: {
  21995. height: math.unit(14, "feet"),
  21996. weight: math.unit(12000, "lb"),
  21997. name: "Side",
  21998. image: {
  21999. source: "./media/characters/mort/side.svg",
  22000. extra: 365 / 318,
  22001. bottom: 0.052
  22002. },
  22003. default: true
  22004. },
  22005. back: {
  22006. height: math.unit(14, "feet"),
  22007. weight: math.unit(12000, "lb"),
  22008. name: "Back",
  22009. image: {
  22010. source: "./media/characters/mort/back.svg",
  22011. extra: 371 / 332,
  22012. bottom: 0.18
  22013. }
  22014. },
  22015. },
  22016. [
  22017. {
  22018. name: "Normal",
  22019. height: math.unit(14, "feet"),
  22020. default: true
  22021. },
  22022. ]
  22023. ))
  22024. characterMakers.push(() => makeCharacter(
  22025. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22026. {
  22027. front: {
  22028. height: math.unit(8, "feet"),
  22029. weight: math.unit(1, "ton"),
  22030. name: "Front",
  22031. image: {
  22032. source: "./media/characters/lycoa/front.svg",
  22033. extra: 1836/1728,
  22034. bottom: 81/1917
  22035. }
  22036. },
  22037. back: {
  22038. height: math.unit(8, "feet"),
  22039. weight: math.unit(1, "ton"),
  22040. name: "Back",
  22041. image: {
  22042. source: "./media/characters/lycoa/back.svg",
  22043. extra: 1785/1720,
  22044. bottom: 91/1876
  22045. }
  22046. },
  22047. head: {
  22048. height: math.unit(1.6243, "feet"),
  22049. name: "Head",
  22050. image: {
  22051. source: "./media/characters/lycoa/head.svg",
  22052. extra: 1011/782,
  22053. bottom: 0/1011
  22054. }
  22055. },
  22056. tailmaw: {
  22057. height: math.unit(1.9, "feet"),
  22058. name: "Tailmaw",
  22059. image: {
  22060. source: "./media/characters/lycoa/tailmaw.svg"
  22061. }
  22062. },
  22063. tentacles: {
  22064. height: math.unit(2.1, "feet"),
  22065. name: "Tentacles",
  22066. image: {
  22067. source: "./media/characters/lycoa/tentacles.svg"
  22068. }
  22069. },
  22070. dick: {
  22071. height: math.unit(1.73, "feet"),
  22072. name: "Dick",
  22073. image: {
  22074. source: "./media/characters/lycoa/dick.svg"
  22075. }
  22076. },
  22077. },
  22078. [
  22079. {
  22080. name: "Normal",
  22081. height: math.unit(8, "feet"),
  22082. default: true
  22083. },
  22084. {
  22085. name: "Macro",
  22086. height: math.unit(30, "feet")
  22087. },
  22088. ]
  22089. ))
  22090. characterMakers.push(() => makeCharacter(
  22091. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22092. {
  22093. front: {
  22094. height: math.unit(4 + 2 / 12, "feet"),
  22095. weight: math.unit(70, "lb"),
  22096. name: "Front",
  22097. image: {
  22098. source: "./media/characters/naldara/front.svg",
  22099. extra: 1664/1387,
  22100. bottom: 81/1745
  22101. },
  22102. form: "anthro",
  22103. default: true
  22104. },
  22105. naga: {
  22106. height: math.unit(20, "feet"),
  22107. weight: math.unit(15000, "kg"),
  22108. name: "Front",
  22109. image: {
  22110. source: "./media/characters/naldara/naga.svg",
  22111. extra: 1590/1396,
  22112. bottom: 285/1875
  22113. },
  22114. form: "naga",
  22115. default: true
  22116. },
  22117. },
  22118. [
  22119. {
  22120. name: "Normal",
  22121. height: math.unit(4 + 2 / 12, "feet"),
  22122. form: "anthro",
  22123. default: true
  22124. },
  22125. {
  22126. name: "Normal",
  22127. height: math.unit(20, "feet"),
  22128. form: "naga",
  22129. default: true
  22130. },
  22131. ],
  22132. {
  22133. "anthro": {
  22134. name: "Anthro",
  22135. default: true
  22136. },
  22137. "naga": {
  22138. name: "Naga"
  22139. }
  22140. }
  22141. ))
  22142. characterMakers.push(() => makeCharacter(
  22143. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22144. {
  22145. front: {
  22146. height: math.unit(13 + 7 / 12, "feet"),
  22147. weight: math.unit(1500, "lb"),
  22148. name: "Front",
  22149. image: {
  22150. source: "./media/characters/briar/front.svg",
  22151. extra: 1223/1157,
  22152. bottom: 123/1346
  22153. }
  22154. },
  22155. },
  22156. [
  22157. {
  22158. name: "Normal",
  22159. height: math.unit(13 + 7 / 12, "feet"),
  22160. default: true
  22161. },
  22162. ]
  22163. ))
  22164. characterMakers.push(() => makeCharacter(
  22165. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22166. {
  22167. side: {
  22168. height: math.unit(16, "feet"),
  22169. weight: math.unit(500, "lb"),
  22170. name: "Side",
  22171. image: {
  22172. source: "./media/characters/vanguard/side.svg",
  22173. extra: 1022/914,
  22174. bottom: 30/1052
  22175. }
  22176. },
  22177. sideAlt: {
  22178. height: math.unit(10, "feet"),
  22179. weight: math.unit(500, "lb"),
  22180. name: "Side (Alt)",
  22181. image: {
  22182. source: "./media/characters/vanguard/side-alt.svg",
  22183. extra: 502 / 425,
  22184. bottom: 0.087
  22185. }
  22186. },
  22187. },
  22188. [
  22189. {
  22190. name: "Normal",
  22191. height: math.unit(17.71, "feet"),
  22192. default: true
  22193. },
  22194. ]
  22195. ))
  22196. characterMakers.push(() => makeCharacter(
  22197. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22198. {
  22199. front: {
  22200. height: math.unit(7.5, "feet"),
  22201. weight: math.unit(2, "lb"),
  22202. name: "Front",
  22203. image: {
  22204. source: "./media/characters/artemis/work-safe-front.svg",
  22205. extra: 1192 / 1075,
  22206. bottom: 0.07
  22207. },
  22208. form: "work-safe",
  22209. default: true
  22210. },
  22211. frontNsfw: {
  22212. height: math.unit(7.5, "feet"),
  22213. weight: math.unit(2, "lb"),
  22214. name: "Front",
  22215. image: {
  22216. source: "./media/characters/artemis/calibrating-front.svg",
  22217. extra: 1192 / 1075,
  22218. bottom: 0.07
  22219. },
  22220. form: "calibrating",
  22221. default: true
  22222. },
  22223. frontNsfwer: {
  22224. height: math.unit(7.5, "feet"),
  22225. weight: math.unit(2, "lb"),
  22226. name: "Front",
  22227. image: {
  22228. source: "./media/characters/artemis/oversize-load-front.svg",
  22229. extra: 1192 / 1075,
  22230. bottom: 0.07
  22231. },
  22232. form: "oversize-load",
  22233. default: true
  22234. },
  22235. side: {
  22236. height: math.unit(7.5, "feet"),
  22237. weight: math.unit(2, "lb"),
  22238. name: "Side",
  22239. image: {
  22240. source: "./media/characters/artemis/work-safe-side.svg",
  22241. extra: 1192 / 1075,
  22242. bottom: 0.07
  22243. },
  22244. form: "work-safe"
  22245. },
  22246. sideNsfw: {
  22247. height: math.unit(7.5, "feet"),
  22248. weight: math.unit(2, "lb"),
  22249. name: "Side",
  22250. image: {
  22251. source: "./media/characters/artemis/calibrating-side.svg",
  22252. extra: 1192 / 1075,
  22253. bottom: 0.07
  22254. },
  22255. form: "calibrating"
  22256. },
  22257. sideNsfwer: {
  22258. height: math.unit(7.5, "feet"),
  22259. weight: math.unit(2, "lb"),
  22260. name: "Side",
  22261. image: {
  22262. source: "./media/characters/artemis/oversize-load-side.svg",
  22263. extra: 1192 / 1075,
  22264. bottom: 0.07
  22265. },
  22266. form: "oversize-load"
  22267. },
  22268. maw: {
  22269. height: math.unit(1.1, "feet"),
  22270. name: "Maw",
  22271. image: {
  22272. source: "./media/characters/artemis/maw.svg"
  22273. },
  22274. form: "work-safe"
  22275. },
  22276. stomach: {
  22277. height: math.unit(0.95, "feet"),
  22278. name: "Stomach",
  22279. image: {
  22280. source: "./media/characters/artemis/stomach.svg"
  22281. },
  22282. form: "work-safe"
  22283. },
  22284. dickCanine: {
  22285. height: math.unit(1, "feet"),
  22286. name: "Dick (Canine)",
  22287. image: {
  22288. source: "./media/characters/artemis/dick-canine.svg"
  22289. },
  22290. form: "calibrating"
  22291. },
  22292. dickEquine: {
  22293. height: math.unit(0.85, "feet"),
  22294. name: "Dick (Equine)",
  22295. image: {
  22296. source: "./media/characters/artemis/dick-equine.svg"
  22297. },
  22298. form: "calibrating"
  22299. },
  22300. dickExotic: {
  22301. height: math.unit(0.85, "feet"),
  22302. name: "Dick (Exotic)",
  22303. image: {
  22304. source: "./media/characters/artemis/dick-exotic.svg"
  22305. },
  22306. form: "calibrating"
  22307. },
  22308. dickCanineBigger: {
  22309. height: math.unit(1 * 1.33, "feet"),
  22310. name: "Dick (Canine)",
  22311. image: {
  22312. source: "./media/characters/artemis/dick-canine.svg"
  22313. },
  22314. form: "oversize-load"
  22315. },
  22316. dickEquineBigger: {
  22317. height: math.unit(0.85 * 1.33, "feet"),
  22318. name: "Dick (Equine)",
  22319. image: {
  22320. source: "./media/characters/artemis/dick-equine.svg"
  22321. },
  22322. form: "oversize-load"
  22323. },
  22324. dickExoticBigger: {
  22325. height: math.unit(0.85 * 1.33, "feet"),
  22326. name: "Dick (Exotic)",
  22327. image: {
  22328. source: "./media/characters/artemis/dick-exotic.svg"
  22329. },
  22330. form: "oversize-load"
  22331. },
  22332. },
  22333. [
  22334. {
  22335. name: "Normal",
  22336. height: math.unit(7.5, "feet"),
  22337. form: "work-safe",
  22338. default: true
  22339. },
  22340. {
  22341. name: "Normal",
  22342. height: math.unit(7.5, "feet"),
  22343. form: "calibrating",
  22344. default: true
  22345. },
  22346. {
  22347. name: "Normal",
  22348. height: math.unit(7.5, "feet"),
  22349. form: "oversize-load",
  22350. default: true
  22351. },
  22352. {
  22353. name: "Enlarged",
  22354. height: math.unit(12, "feet"),
  22355. form: "work-safe",
  22356. },
  22357. {
  22358. name: "Enlarged",
  22359. height: math.unit(12, "feet"),
  22360. form: "calibrating",
  22361. },
  22362. {
  22363. name: "Enlarged",
  22364. height: math.unit(12, "feet"),
  22365. form: "oversize-load",
  22366. },
  22367. ],
  22368. {
  22369. "work-safe": {
  22370. name: "Work-Safe",
  22371. default: true
  22372. },
  22373. "calibrating": {
  22374. name: "Calibrating"
  22375. },
  22376. "oversize-load": {
  22377. name: "Oversize Load"
  22378. }
  22379. }
  22380. ))
  22381. characterMakers.push(() => makeCharacter(
  22382. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22383. {
  22384. front: {
  22385. height: math.unit(5 + 3 / 12, "feet"),
  22386. weight: math.unit(160, "lb"),
  22387. name: "Front",
  22388. image: {
  22389. source: "./media/characters/kira/front.svg",
  22390. extra: 906 / 786,
  22391. bottom: 0.01
  22392. }
  22393. },
  22394. back: {
  22395. height: math.unit(5 + 3 / 12, "feet"),
  22396. weight: math.unit(160, "lb"),
  22397. name: "Back",
  22398. image: {
  22399. source: "./media/characters/kira/back.svg",
  22400. extra: 882 / 757,
  22401. bottom: 0.005
  22402. }
  22403. },
  22404. frontDressed: {
  22405. height: math.unit(5 + 3 / 12, "feet"),
  22406. weight: math.unit(160, "lb"),
  22407. name: "Front (Dressed)",
  22408. image: {
  22409. source: "./media/characters/kira/front-dressed.svg",
  22410. extra: 906 / 786,
  22411. bottom: 0.01
  22412. }
  22413. },
  22414. beans: {
  22415. height: math.unit(0.92, "feet"),
  22416. name: "Beans",
  22417. image: {
  22418. source: "./media/characters/kira/beans.svg"
  22419. }
  22420. },
  22421. },
  22422. [
  22423. {
  22424. name: "Normal",
  22425. height: math.unit(5 + 3 / 12, "feet"),
  22426. default: true
  22427. },
  22428. ]
  22429. ))
  22430. characterMakers.push(() => makeCharacter(
  22431. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22432. {
  22433. front: {
  22434. height: math.unit(5 + 4 / 12, "feet"),
  22435. weight: math.unit(145, "lb"),
  22436. name: "Front",
  22437. image: {
  22438. source: "./media/characters/scramble/front.svg",
  22439. extra: 763 / 727,
  22440. bottom: 0.05
  22441. }
  22442. },
  22443. back: {
  22444. height: math.unit(5 + 4 / 12, "feet"),
  22445. weight: math.unit(145, "lb"),
  22446. name: "Back",
  22447. image: {
  22448. source: "./media/characters/scramble/back.svg",
  22449. extra: 826 / 737,
  22450. bottom: 0.002
  22451. }
  22452. },
  22453. },
  22454. [
  22455. {
  22456. name: "Normal",
  22457. height: math.unit(5 + 4 / 12, "feet"),
  22458. default: true
  22459. },
  22460. ]
  22461. ))
  22462. characterMakers.push(() => makeCharacter(
  22463. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22464. {
  22465. side: {
  22466. height: math.unit(6 + 2 / 12, "feet"),
  22467. weight: math.unit(190, "lb"),
  22468. name: "Side",
  22469. image: {
  22470. source: "./media/characters/biscuit/side.svg",
  22471. extra: 858 / 791,
  22472. bottom: 0.044
  22473. }
  22474. },
  22475. },
  22476. [
  22477. {
  22478. name: "Normal",
  22479. height: math.unit(6 + 2 / 12, "feet"),
  22480. default: true
  22481. },
  22482. ]
  22483. ))
  22484. characterMakers.push(() => makeCharacter(
  22485. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22486. {
  22487. front: {
  22488. height: math.unit(5 + 2 / 12, "feet"),
  22489. weight: math.unit(120, "lb"),
  22490. name: "Front",
  22491. image: {
  22492. source: "./media/characters/poffin/front.svg",
  22493. extra: 786 / 680,
  22494. bottom: 0.005
  22495. }
  22496. },
  22497. },
  22498. [
  22499. {
  22500. name: "Normal",
  22501. height: math.unit(5 + 2 / 12, "feet"),
  22502. default: true
  22503. },
  22504. ]
  22505. ))
  22506. characterMakers.push(() => makeCharacter(
  22507. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22508. {
  22509. front: {
  22510. height: math.unit(6 + 3 / 12, "feet"),
  22511. weight: math.unit(519, "lb"),
  22512. name: "Front",
  22513. image: {
  22514. source: "./media/characters/dhari/front.svg",
  22515. extra: 1048 / 946,
  22516. bottom: 0.015
  22517. }
  22518. },
  22519. back: {
  22520. height: math.unit(6 + 3 / 12, "feet"),
  22521. weight: math.unit(519, "lb"),
  22522. name: "Back",
  22523. image: {
  22524. source: "./media/characters/dhari/back.svg",
  22525. extra: 1048 / 931,
  22526. bottom: 0.005
  22527. }
  22528. },
  22529. frontDressed: {
  22530. height: math.unit(6 + 3 / 12, "feet"),
  22531. weight: math.unit(519, "lb"),
  22532. name: "Front (Dressed)",
  22533. image: {
  22534. source: "./media/characters/dhari/front-dressed.svg",
  22535. extra: 1713 / 1546,
  22536. bottom: 0.02
  22537. }
  22538. },
  22539. backDressed: {
  22540. height: math.unit(6 + 3 / 12, "feet"),
  22541. weight: math.unit(519, "lb"),
  22542. name: "Back (Dressed)",
  22543. image: {
  22544. source: "./media/characters/dhari/back-dressed.svg",
  22545. extra: 1699 / 1537,
  22546. bottom: 0.01
  22547. }
  22548. },
  22549. maw: {
  22550. height: math.unit(0.95, "feet"),
  22551. name: "Maw",
  22552. image: {
  22553. source: "./media/characters/dhari/maw.svg"
  22554. }
  22555. },
  22556. wereFront: {
  22557. height: math.unit(12 + 8 / 12, "feet"),
  22558. weight: math.unit(4000, "lb"),
  22559. name: "Front (Were)",
  22560. image: {
  22561. source: "./media/characters/dhari/were-front.svg",
  22562. extra: 1065 / 969,
  22563. bottom: 0.015
  22564. }
  22565. },
  22566. wereBack: {
  22567. height: math.unit(12 + 8 / 12, "feet"),
  22568. weight: math.unit(4000, "lb"),
  22569. name: "Back (Were)",
  22570. image: {
  22571. source: "./media/characters/dhari/were-back.svg",
  22572. extra: 1065 / 969,
  22573. bottom: 0.012
  22574. }
  22575. },
  22576. wereMaw: {
  22577. height: math.unit(0.625, "meters"),
  22578. name: "Maw (Were)",
  22579. image: {
  22580. source: "./media/characters/dhari/were-maw.svg"
  22581. }
  22582. },
  22583. },
  22584. [
  22585. {
  22586. name: "Normal",
  22587. height: math.unit(6 + 3 / 12, "feet"),
  22588. default: true
  22589. },
  22590. ]
  22591. ))
  22592. characterMakers.push(() => makeCharacter(
  22593. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22594. {
  22595. anthro: {
  22596. height: math.unit(5 + 7 / 12, "feet"),
  22597. weight: math.unit(175, "lb"),
  22598. name: "Anthro",
  22599. image: {
  22600. source: "./media/characters/rena-dyne/anthro.svg",
  22601. extra: 1849 / 1785,
  22602. bottom: 0.005
  22603. }
  22604. },
  22605. taur: {
  22606. height: math.unit(15 + 6 / 12, "feet"),
  22607. weight: math.unit(8000, "lb"),
  22608. name: "Taur",
  22609. image: {
  22610. source: "./media/characters/rena-dyne/taur.svg",
  22611. extra: 2315 / 2234,
  22612. bottom: 0.033
  22613. }
  22614. },
  22615. },
  22616. [
  22617. {
  22618. name: "Normal",
  22619. height: math.unit(5 + 7 / 12, "feet"),
  22620. default: true
  22621. },
  22622. ]
  22623. ))
  22624. characterMakers.push(() => makeCharacter(
  22625. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22626. {
  22627. front: {
  22628. height: math.unit(8, "feet"),
  22629. weight: math.unit(600, "lb"),
  22630. name: "Front",
  22631. image: {
  22632. source: "./media/characters/weremeep/front.svg",
  22633. extra: 970/849,
  22634. bottom: 7/977
  22635. }
  22636. },
  22637. },
  22638. [
  22639. {
  22640. name: "Normal",
  22641. height: math.unit(8, "feet"),
  22642. default: true
  22643. },
  22644. {
  22645. name: "Lorg",
  22646. height: math.unit(12, "feet")
  22647. },
  22648. {
  22649. name: "Oh Lawd She Comin'",
  22650. height: math.unit(20, "feet")
  22651. },
  22652. ]
  22653. ))
  22654. characterMakers.push(() => makeCharacter(
  22655. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22656. {
  22657. front: {
  22658. height: math.unit(4, "feet"),
  22659. weight: math.unit(90, "lb"),
  22660. name: "Front",
  22661. image: {
  22662. source: "./media/characters/reza/front.svg",
  22663. extra: 1183 / 1111,
  22664. bottom: 0.017
  22665. }
  22666. },
  22667. back: {
  22668. height: math.unit(4, "feet"),
  22669. weight: math.unit(90, "lb"),
  22670. name: "Back",
  22671. image: {
  22672. source: "./media/characters/reza/back.svg",
  22673. extra: 1183 / 1111,
  22674. bottom: 0.01
  22675. }
  22676. },
  22677. drake: {
  22678. height: math.unit(30, "feet"),
  22679. weight: math.unit(246960, "lb"),
  22680. name: "Drake",
  22681. image: {
  22682. source: "./media/characters/reza/drake.svg",
  22683. extra: 2350 / 2024,
  22684. bottom: 60.7 / 2403
  22685. }
  22686. },
  22687. },
  22688. [
  22689. {
  22690. name: "Normal",
  22691. height: math.unit(4, "feet"),
  22692. default: true
  22693. },
  22694. ]
  22695. ))
  22696. characterMakers.push(() => makeCharacter(
  22697. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22698. {
  22699. side: {
  22700. height: math.unit(15, "feet"),
  22701. weight: math.unit(14, "tons"),
  22702. name: "Side",
  22703. image: {
  22704. source: "./media/characters/athea/side.svg",
  22705. extra: 960 / 540,
  22706. bottom: 0.003
  22707. }
  22708. },
  22709. sitting: {
  22710. height: math.unit(6 * 2.85, "feet"),
  22711. weight: math.unit(14, "tons"),
  22712. name: "Sitting",
  22713. image: {
  22714. source: "./media/characters/athea/sitting.svg",
  22715. extra: 621 / 581,
  22716. bottom: 0.075
  22717. }
  22718. },
  22719. maw: {
  22720. height: math.unit(7.59498031496063, "feet"),
  22721. name: "Maw",
  22722. image: {
  22723. source: "./media/characters/athea/maw.svg"
  22724. }
  22725. },
  22726. },
  22727. [
  22728. {
  22729. name: "Lap Cat",
  22730. height: math.unit(2.5, "feet")
  22731. },
  22732. {
  22733. name: "Minimacro",
  22734. height: math.unit(15, "feet"),
  22735. default: true
  22736. },
  22737. {
  22738. name: "Macro",
  22739. height: math.unit(120, "feet")
  22740. },
  22741. {
  22742. name: "Macro+",
  22743. height: math.unit(640, "feet")
  22744. },
  22745. {
  22746. name: "Colossus",
  22747. height: math.unit(2.2, "miles")
  22748. },
  22749. ]
  22750. ))
  22751. characterMakers.push(() => makeCharacter(
  22752. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22753. {
  22754. front: {
  22755. height: math.unit(8 + 8 / 12, "feet"),
  22756. weight: math.unit(130, "kg"),
  22757. name: "Front",
  22758. image: {
  22759. source: "./media/characters/seroko/front.svg",
  22760. extra: 1385 / 1280,
  22761. bottom: 0.025
  22762. }
  22763. },
  22764. back: {
  22765. height: math.unit(8 + 8 / 12, "feet"),
  22766. weight: math.unit(130, "kg"),
  22767. name: "Back",
  22768. image: {
  22769. source: "./media/characters/seroko/back.svg",
  22770. extra: 1369 / 1238,
  22771. bottom: 0.018
  22772. }
  22773. },
  22774. frontDressed: {
  22775. height: math.unit(8 + 8 / 12, "feet"),
  22776. weight: math.unit(130, "kg"),
  22777. name: "Front (Dressed)",
  22778. image: {
  22779. source: "./media/characters/seroko/front-dressed.svg",
  22780. extra: 1366 / 1275,
  22781. bottom: 0.03
  22782. }
  22783. },
  22784. },
  22785. [
  22786. {
  22787. name: "Normal",
  22788. height: math.unit(8 + 8 / 12, "feet"),
  22789. default: true
  22790. },
  22791. ]
  22792. ))
  22793. characterMakers.push(() => makeCharacter(
  22794. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22795. {
  22796. front: {
  22797. height: math.unit(5.5, "feet"),
  22798. weight: math.unit(160, "lb"),
  22799. name: "Front",
  22800. image: {
  22801. source: "./media/characters/quatzi/front.svg",
  22802. extra: 2346 / 2242,
  22803. bottom: 0.015
  22804. }
  22805. },
  22806. },
  22807. [
  22808. {
  22809. name: "Normal",
  22810. height: math.unit(5.5, "feet"),
  22811. default: true
  22812. },
  22813. {
  22814. name: "Big",
  22815. height: math.unit(7.7, "feet")
  22816. },
  22817. ]
  22818. ))
  22819. characterMakers.push(() => makeCharacter(
  22820. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22821. {
  22822. front: {
  22823. height: math.unit(5 + 11 / 12, "feet"),
  22824. weight: math.unit(180, "lb"),
  22825. name: "Front",
  22826. image: {
  22827. source: "./media/characters/sen/front.svg",
  22828. extra: 1321 / 1254,
  22829. bottom: 0.015
  22830. }
  22831. },
  22832. side: {
  22833. height: math.unit(5 + 11 / 12, "feet"),
  22834. weight: math.unit(180, "lb"),
  22835. name: "Side",
  22836. image: {
  22837. source: "./media/characters/sen/side.svg",
  22838. extra: 1321 / 1254,
  22839. bottom: 0.007
  22840. }
  22841. },
  22842. back: {
  22843. height: math.unit(5 + 11 / 12, "feet"),
  22844. weight: math.unit(180, "lb"),
  22845. name: "Back",
  22846. image: {
  22847. source: "./media/characters/sen/back.svg",
  22848. extra: 1321 / 1254
  22849. }
  22850. },
  22851. },
  22852. [
  22853. {
  22854. name: "Normal",
  22855. height: math.unit(5 + 11 / 12, "feet"),
  22856. default: true
  22857. },
  22858. ]
  22859. ))
  22860. characterMakers.push(() => makeCharacter(
  22861. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22862. {
  22863. front: {
  22864. height: math.unit(166.6, "cm"),
  22865. weight: math.unit(66.6, "kg"),
  22866. name: "Front",
  22867. image: {
  22868. source: "./media/characters/fruity/front.svg",
  22869. extra: 1510 / 1386,
  22870. bottom: 0.04
  22871. }
  22872. },
  22873. back: {
  22874. height: math.unit(166.6, "cm"),
  22875. weight: math.unit(66.6, "lb"),
  22876. name: "Back",
  22877. image: {
  22878. source: "./media/characters/fruity/back.svg",
  22879. extra: 1563 / 1435,
  22880. bottom: 0.005
  22881. }
  22882. },
  22883. },
  22884. [
  22885. {
  22886. name: "Normal",
  22887. height: math.unit(166.6, "cm"),
  22888. default: true
  22889. },
  22890. {
  22891. name: "Demonic",
  22892. height: math.unit(166.6, "feet")
  22893. },
  22894. ]
  22895. ))
  22896. characterMakers.push(() => makeCharacter(
  22897. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22898. {
  22899. side: {
  22900. height: math.unit(10, "feet"),
  22901. weight: math.unit(500, "lb"),
  22902. name: "Side",
  22903. image: {
  22904. source: "./media/characters/zost/side.svg",
  22905. extra: 2870/2533,
  22906. bottom: 252/3122
  22907. }
  22908. },
  22909. mawFront: {
  22910. height: math.unit(1.08, "meters"),
  22911. name: "Maw (Front)",
  22912. image: {
  22913. source: "./media/characters/zost/maw-front.svg"
  22914. }
  22915. },
  22916. mawSide: {
  22917. height: math.unit(2.66, "feet"),
  22918. name: "Maw (Side)",
  22919. image: {
  22920. source: "./media/characters/zost/maw-side.svg"
  22921. }
  22922. },
  22923. wingspan: {
  22924. height: math.unit(7.4, "feet"),
  22925. name: "Wingspan",
  22926. image: {
  22927. source: "./media/characters/zost/wingspan.svg"
  22928. }
  22929. },
  22930. },
  22931. [
  22932. {
  22933. name: "Normal",
  22934. height: math.unit(10, "feet"),
  22935. default: true
  22936. },
  22937. ]
  22938. ))
  22939. characterMakers.push(() => makeCharacter(
  22940. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22941. {
  22942. front: {
  22943. height: math.unit(5 + 4 / 12, "feet"),
  22944. weight: math.unit(120, "lb"),
  22945. name: "Front",
  22946. image: {
  22947. source: "./media/characters/luci/front.svg",
  22948. extra: 1985 / 1884,
  22949. bottom: 0.04
  22950. }
  22951. },
  22952. back: {
  22953. height: math.unit(5 + 4 / 12, "feet"),
  22954. weight: math.unit(120, "lb"),
  22955. name: "Back",
  22956. image: {
  22957. source: "./media/characters/luci/back.svg",
  22958. extra: 1892 / 1791,
  22959. bottom: 0.002
  22960. }
  22961. },
  22962. },
  22963. [
  22964. {
  22965. name: "Normal",
  22966. height: math.unit(5 + 4 / 12, "feet"),
  22967. default: true
  22968. },
  22969. ]
  22970. ))
  22971. characterMakers.push(() => makeCharacter(
  22972. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22973. {
  22974. front: {
  22975. height: math.unit(1500, "feet"),
  22976. weight: math.unit(3.8e6, "tons"),
  22977. name: "Front",
  22978. image: {
  22979. source: "./media/characters/2th/front.svg",
  22980. extra: 3489 / 3350,
  22981. bottom: 0.1
  22982. }
  22983. },
  22984. foot: {
  22985. height: math.unit(461, "feet"),
  22986. name: "Foot",
  22987. image: {
  22988. source: "./media/characters/2th/foot.svg"
  22989. }
  22990. },
  22991. },
  22992. [
  22993. {
  22994. name: "\"Micro\"",
  22995. height: math.unit(15 + 7 / 12, "feet")
  22996. },
  22997. {
  22998. name: "Normal",
  22999. height: math.unit(1500, "feet"),
  23000. default: true
  23001. },
  23002. {
  23003. name: "Macro",
  23004. height: math.unit(5000, "feet")
  23005. },
  23006. {
  23007. name: "Megamacro",
  23008. height: math.unit(15, "miles")
  23009. },
  23010. {
  23011. name: "Gigamacro",
  23012. height: math.unit(4000, "miles")
  23013. },
  23014. {
  23015. name: "Galactic",
  23016. height: math.unit(50, "AU")
  23017. },
  23018. ]
  23019. ))
  23020. characterMakers.push(() => makeCharacter(
  23021. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23022. {
  23023. front: {
  23024. height: math.unit(5 + 6 / 12, "feet"),
  23025. weight: math.unit(220, "lb"),
  23026. name: "Front",
  23027. image: {
  23028. source: "./media/characters/amethyst/front.svg",
  23029. extra: 2078 / 2040,
  23030. bottom: 0.045
  23031. }
  23032. },
  23033. back: {
  23034. height: math.unit(5 + 6 / 12, "feet"),
  23035. weight: math.unit(220, "lb"),
  23036. name: "Back",
  23037. image: {
  23038. source: "./media/characters/amethyst/back.svg",
  23039. extra: 2021 / 1989,
  23040. bottom: 0.02
  23041. }
  23042. },
  23043. },
  23044. [
  23045. {
  23046. name: "Normal",
  23047. height: math.unit(5 + 6 / 12, "feet"),
  23048. default: true
  23049. },
  23050. ]
  23051. ))
  23052. characterMakers.push(() => makeCharacter(
  23053. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23054. {
  23055. front: {
  23056. height: math.unit(4 + 11 / 12, "feet"),
  23057. weight: math.unit(120, "lb"),
  23058. name: "Front",
  23059. image: {
  23060. source: "./media/characters/yumi-akiyama/front.svg",
  23061. extra: 1327 / 1235,
  23062. bottom: 0.02
  23063. }
  23064. },
  23065. back: {
  23066. height: math.unit(4 + 11 / 12, "feet"),
  23067. weight: math.unit(120, "lb"),
  23068. name: "Back",
  23069. image: {
  23070. source: "./media/characters/yumi-akiyama/back.svg",
  23071. extra: 1287 / 1245,
  23072. bottom: 0.002
  23073. }
  23074. },
  23075. },
  23076. [
  23077. {
  23078. name: "Galactic",
  23079. height: math.unit(50, "galaxies"),
  23080. default: true
  23081. },
  23082. {
  23083. name: "Universal",
  23084. height: math.unit(100, "universes")
  23085. },
  23086. ]
  23087. ))
  23088. characterMakers.push(() => makeCharacter(
  23089. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23090. {
  23091. front: {
  23092. height: math.unit(8, "feet"),
  23093. weight: math.unit(500, "lb"),
  23094. name: "Front",
  23095. image: {
  23096. source: "./media/characters/rifter-yrmori/front.svg",
  23097. extra: 1180 / 1125,
  23098. bottom: 0.02
  23099. }
  23100. },
  23101. back: {
  23102. height: math.unit(8, "feet"),
  23103. weight: math.unit(500, "lb"),
  23104. name: "Back",
  23105. image: {
  23106. source: "./media/characters/rifter-yrmori/back.svg",
  23107. extra: 1190 / 1145,
  23108. bottom: 0.001
  23109. }
  23110. },
  23111. wings: {
  23112. height: math.unit(7.75, "feet"),
  23113. weight: math.unit(500, "lb"),
  23114. name: "Wings",
  23115. image: {
  23116. source: "./media/characters/rifter-yrmori/wings.svg",
  23117. extra: 1357 / 1285
  23118. }
  23119. },
  23120. maw: {
  23121. height: math.unit(0.8, "feet"),
  23122. name: "Maw",
  23123. image: {
  23124. source: "./media/characters/rifter-yrmori/maw.svg"
  23125. }
  23126. },
  23127. mawfront: {
  23128. height: math.unit(1.45, "feet"),
  23129. name: "Maw (Front)",
  23130. image: {
  23131. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23132. }
  23133. },
  23134. },
  23135. [
  23136. {
  23137. name: "Normal",
  23138. height: math.unit(8, "feet"),
  23139. default: true
  23140. },
  23141. {
  23142. name: "Macro",
  23143. height: math.unit(42, "meters")
  23144. },
  23145. ]
  23146. ))
  23147. characterMakers.push(() => makeCharacter(
  23148. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23149. {
  23150. were: {
  23151. height: math.unit(25 + 6 / 12, "feet"),
  23152. weight: math.unit(10000, "lb"),
  23153. name: "Were",
  23154. image: {
  23155. source: "./media/characters/tahajin/were.svg",
  23156. extra: 801 / 770,
  23157. bottom: 0.042
  23158. }
  23159. },
  23160. aquatic: {
  23161. height: math.unit(6 + 4 / 12, "feet"),
  23162. weight: math.unit(160, "lb"),
  23163. name: "Aquatic",
  23164. image: {
  23165. source: "./media/characters/tahajin/aquatic.svg",
  23166. extra: 572 / 542,
  23167. bottom: 0.04
  23168. }
  23169. },
  23170. chow: {
  23171. height: math.unit(8 + 11 / 12, "feet"),
  23172. weight: math.unit(450, "lb"),
  23173. name: "Chow",
  23174. image: {
  23175. source: "./media/characters/tahajin/chow.svg",
  23176. extra: 660 / 640,
  23177. bottom: 0.015
  23178. }
  23179. },
  23180. demiNaga: {
  23181. height: math.unit(6 + 8 / 12, "feet"),
  23182. weight: math.unit(300, "lb"),
  23183. name: "Demi Naga",
  23184. image: {
  23185. source: "./media/characters/tahajin/demi-naga.svg",
  23186. extra: 643 / 615,
  23187. bottom: 0.1
  23188. }
  23189. },
  23190. data: {
  23191. height: math.unit(5, "inches"),
  23192. weight: math.unit(0.1, "lb"),
  23193. name: "Data",
  23194. image: {
  23195. source: "./media/characters/tahajin/data.svg"
  23196. }
  23197. },
  23198. fluu: {
  23199. height: math.unit(5 + 7 / 12, "feet"),
  23200. weight: math.unit(140, "lb"),
  23201. name: "Fluu",
  23202. image: {
  23203. source: "./media/characters/tahajin/fluu.svg",
  23204. extra: 628 / 592,
  23205. bottom: 0.02
  23206. }
  23207. },
  23208. starWarrior: {
  23209. height: math.unit(4 + 5 / 12, "feet"),
  23210. weight: math.unit(50, "lb"),
  23211. name: "Star Warrior",
  23212. image: {
  23213. source: "./media/characters/tahajin/star-warrior.svg"
  23214. }
  23215. },
  23216. },
  23217. [
  23218. {
  23219. name: "Normal",
  23220. height: math.unit(25 + 6 / 12, "feet"),
  23221. default: true
  23222. },
  23223. ]
  23224. ))
  23225. characterMakers.push(() => makeCharacter(
  23226. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23227. {
  23228. front: {
  23229. height: math.unit(8, "feet"),
  23230. weight: math.unit(350, "lb"),
  23231. name: "Front",
  23232. image: {
  23233. source: "./media/characters/gabira/front.svg",
  23234. extra: 1261/1154,
  23235. bottom: 51/1312
  23236. }
  23237. },
  23238. back: {
  23239. height: math.unit(8, "feet"),
  23240. weight: math.unit(350, "lb"),
  23241. name: "Back",
  23242. image: {
  23243. source: "./media/characters/gabira/back.svg",
  23244. extra: 1265/1163,
  23245. bottom: 46/1311
  23246. }
  23247. },
  23248. head: {
  23249. height: math.unit(2.85, "feet"),
  23250. name: "Head",
  23251. image: {
  23252. source: "./media/characters/gabira/head.svg"
  23253. }
  23254. },
  23255. },
  23256. [
  23257. {
  23258. name: "Normal",
  23259. height: math.unit(8, "feet"),
  23260. default: true
  23261. },
  23262. ]
  23263. ))
  23264. characterMakers.push(() => makeCharacter(
  23265. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23266. {
  23267. front: {
  23268. height: math.unit(5 + 3 / 12, "feet"),
  23269. weight: math.unit(137, "lb"),
  23270. name: "Front",
  23271. image: {
  23272. source: "./media/characters/sasha-katraine/front.svg",
  23273. extra: 1745/1694,
  23274. bottom: 37/1782
  23275. }
  23276. },
  23277. back: {
  23278. height: math.unit(5 + 3 / 12, "feet"),
  23279. weight: math.unit(137, "lb"),
  23280. name: "Back",
  23281. image: {
  23282. source: "./media/characters/sasha-katraine/back.svg",
  23283. extra: 1776/1699,
  23284. bottom: 26/1802
  23285. }
  23286. },
  23287. },
  23288. [
  23289. {
  23290. name: "Micro",
  23291. height: math.unit(5, "inches")
  23292. },
  23293. {
  23294. name: "Normal",
  23295. height: math.unit(5 + 3 / 12, "feet"),
  23296. default: true
  23297. },
  23298. ]
  23299. ))
  23300. characterMakers.push(() => makeCharacter(
  23301. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23302. {
  23303. side: {
  23304. height: math.unit(4, "inches"),
  23305. weight: math.unit(200, "grams"),
  23306. name: "Side",
  23307. image: {
  23308. source: "./media/characters/der/side.svg",
  23309. extra: 719 / 400,
  23310. bottom: 30.6 / 749.9187
  23311. }
  23312. },
  23313. },
  23314. [
  23315. {
  23316. name: "Micro",
  23317. height: math.unit(4, "inches"),
  23318. default: true
  23319. },
  23320. ]
  23321. ))
  23322. characterMakers.push(() => makeCharacter(
  23323. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23324. {
  23325. side: {
  23326. height: math.unit(30, "meters"),
  23327. weight: math.unit(700, "tonnes"),
  23328. name: "Side",
  23329. image: {
  23330. source: "./media/characters/fixerdragon/side.svg",
  23331. extra: (1293.0514 - 116.03) / 1106.86,
  23332. bottom: 116.03 / 1293.0514
  23333. }
  23334. },
  23335. },
  23336. [
  23337. {
  23338. name: "Planck",
  23339. height: math.unit(1.6e-35, "meters")
  23340. },
  23341. {
  23342. name: "Micro",
  23343. height: math.unit(0.4, "meters")
  23344. },
  23345. {
  23346. name: "Normal",
  23347. height: math.unit(30, "meters"),
  23348. default: true
  23349. },
  23350. {
  23351. name: "Megamacro",
  23352. height: math.unit(1.2, "megameters")
  23353. },
  23354. {
  23355. name: "Teramacro",
  23356. height: math.unit(130, "terameters")
  23357. },
  23358. {
  23359. name: "Yottamacro",
  23360. height: math.unit(6200, "yottameters")
  23361. },
  23362. ]
  23363. ));
  23364. characterMakers.push(() => makeCharacter(
  23365. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23366. {
  23367. front: {
  23368. height: math.unit(8, "feet"),
  23369. weight: math.unit(250, "lb"),
  23370. name: "Front",
  23371. image: {
  23372. source: "./media/characters/kite/front.svg",
  23373. extra: 2796 / 2659,
  23374. bottom: 0.002
  23375. }
  23376. },
  23377. },
  23378. [
  23379. {
  23380. name: "Normal",
  23381. height: math.unit(8, "feet"),
  23382. default: true
  23383. },
  23384. {
  23385. name: "Macro",
  23386. height: math.unit(360, "feet")
  23387. },
  23388. {
  23389. name: "Megamacro",
  23390. height: math.unit(1500, "feet")
  23391. },
  23392. ]
  23393. ))
  23394. characterMakers.push(() => makeCharacter(
  23395. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23396. {
  23397. front: {
  23398. height: math.unit(5 + 11/12, "feet"),
  23399. weight: math.unit(170, "lb"),
  23400. name: "Front",
  23401. image: {
  23402. source: "./media/characters/poojawa-vynar/front.svg",
  23403. extra: 1735/1585,
  23404. bottom: 96/1831
  23405. }
  23406. },
  23407. back: {
  23408. height: math.unit(5 + 11/12, "feet"),
  23409. weight: math.unit(170, "lb"),
  23410. name: "Back",
  23411. image: {
  23412. source: "./media/characters/poojawa-vynar/back.svg",
  23413. extra: 1749/1607,
  23414. bottom: 28/1777
  23415. }
  23416. },
  23417. male: {
  23418. height: math.unit(5 + 11/12, "feet"),
  23419. weight: math.unit(170, "lb"),
  23420. name: "Male",
  23421. image: {
  23422. source: "./media/characters/poojawa-vynar/male.svg",
  23423. extra: 1855/1713,
  23424. bottom: 63/1918
  23425. }
  23426. },
  23427. taur: {
  23428. height: math.unit(5 + 11/12, "feet"),
  23429. weight: math.unit(170, "lb"),
  23430. name: "Taur",
  23431. image: {
  23432. source: "./media/characters/poojawa-vynar/taur.svg",
  23433. extra: 1151/1059,
  23434. bottom: 356/1507
  23435. }
  23436. },
  23437. frontDressed: {
  23438. height: math.unit(5 + 11/12, "feet"),
  23439. weight: math.unit(170, "lb"),
  23440. name: "Front (Dressed)",
  23441. image: {
  23442. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23443. extra: 1735/1585,
  23444. bottom: 96/1831
  23445. }
  23446. },
  23447. backDressed: {
  23448. height: math.unit(5 + 11/12, "feet"),
  23449. weight: math.unit(170, "lb"),
  23450. name: "Back (Dressed)",
  23451. image: {
  23452. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23453. extra: 1749/1607,
  23454. bottom: 28/1777
  23455. }
  23456. },
  23457. maleDressed: {
  23458. height: math.unit(5 + 11/12, "feet"),
  23459. weight: math.unit(170, "lb"),
  23460. name: "Male (Dressed)",
  23461. image: {
  23462. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23463. extra: 1855/1713,
  23464. bottom: 63/1918
  23465. }
  23466. },
  23467. taurDressed: {
  23468. height: math.unit(5 + 11/12, "feet"),
  23469. weight: math.unit(170, "lb"),
  23470. name: "Taur (Dressed)",
  23471. image: {
  23472. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23473. extra: 1151/1059,
  23474. bottom: 356/1507
  23475. }
  23476. },
  23477. maw: {
  23478. height: math.unit(1.46, "feet"),
  23479. name: "Maw",
  23480. image: {
  23481. source: "./media/characters/poojawa-vynar/maw.svg"
  23482. }
  23483. },
  23484. head: {
  23485. height: math.unit(2.34, "feet"),
  23486. name: "Head",
  23487. image: {
  23488. source: "./media/characters/poojawa-vynar/head.svg"
  23489. }
  23490. },
  23491. paw: {
  23492. height: math.unit(1.61, "feet"),
  23493. name: "Paw",
  23494. image: {
  23495. source: "./media/characters/poojawa-vynar/paw.svg"
  23496. }
  23497. },
  23498. pawToering: {
  23499. height: math.unit(1.72, "feet"),
  23500. name: "Paw (Toering)",
  23501. image: {
  23502. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23503. }
  23504. },
  23505. toering: {
  23506. height: math.unit(2.9, "inches"),
  23507. name: "Toering",
  23508. image: {
  23509. source: "./media/characters/poojawa-vynar/toering.svg"
  23510. }
  23511. },
  23512. shaft: {
  23513. height: math.unit(0.625, "feet"),
  23514. name: "Shaft",
  23515. image: {
  23516. source: "./media/characters/poojawa-vynar/shaft.svg"
  23517. }
  23518. },
  23519. spade: {
  23520. height: math.unit(0.42, "feet"),
  23521. name: "Spade",
  23522. image: {
  23523. source: "./media/characters/poojawa-vynar/spade.svg"
  23524. }
  23525. },
  23526. },
  23527. [
  23528. {
  23529. name: "Shortstack",
  23530. height: math.unit(4, "feet")
  23531. },
  23532. {
  23533. name: "Normal",
  23534. height: math.unit(5 + 11 / 12, "feet"),
  23535. default: true
  23536. },
  23537. {
  23538. name: "Tauric",
  23539. height: math.unit(4, "meters")
  23540. },
  23541. ]
  23542. ))
  23543. characterMakers.push(() => makeCharacter(
  23544. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23545. {
  23546. front: {
  23547. height: math.unit(293, "meters"),
  23548. weight: math.unit(70400, "tons"),
  23549. name: "Front",
  23550. image: {
  23551. source: "./media/characters/violette/front.svg",
  23552. extra: 1227 / 1180,
  23553. bottom: 0.005
  23554. }
  23555. },
  23556. back: {
  23557. height: math.unit(293, "meters"),
  23558. weight: math.unit(70400, "tons"),
  23559. name: "Back",
  23560. image: {
  23561. source: "./media/characters/violette/back.svg",
  23562. extra: 1227 / 1180,
  23563. bottom: 0.005
  23564. }
  23565. },
  23566. },
  23567. [
  23568. {
  23569. name: "Macro",
  23570. height: math.unit(293, "meters"),
  23571. default: true
  23572. },
  23573. ]
  23574. ))
  23575. characterMakers.push(() => makeCharacter(
  23576. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23577. {
  23578. front: {
  23579. height: math.unit(1050, "feet"),
  23580. weight: math.unit(200000, "tons"),
  23581. name: "Front",
  23582. image: {
  23583. source: "./media/characters/alessandra/front.svg",
  23584. extra: 960 / 912,
  23585. bottom: 0.06
  23586. }
  23587. },
  23588. },
  23589. [
  23590. {
  23591. name: "Macro",
  23592. height: math.unit(1050, "feet")
  23593. },
  23594. {
  23595. name: "Macro+",
  23596. height: math.unit(900, "meters"),
  23597. default: true
  23598. },
  23599. ]
  23600. ))
  23601. characterMakers.push(() => makeCharacter(
  23602. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23603. {
  23604. front: {
  23605. height: math.unit(5, "feet"),
  23606. weight: math.unit(187, "lb"),
  23607. name: "Front",
  23608. image: {
  23609. source: "./media/characters/person/front.svg",
  23610. extra: 3087 / 2945,
  23611. bottom: 91 / 3181
  23612. }
  23613. },
  23614. },
  23615. [
  23616. {
  23617. name: "Micro",
  23618. height: math.unit(3, "inches")
  23619. },
  23620. {
  23621. name: "Normal",
  23622. height: math.unit(5, "feet"),
  23623. default: true
  23624. },
  23625. {
  23626. name: "Macro",
  23627. height: math.unit(90, "feet")
  23628. },
  23629. {
  23630. name: "Max Size",
  23631. height: math.unit(280, "feet")
  23632. },
  23633. ]
  23634. ))
  23635. characterMakers.push(() => makeCharacter(
  23636. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23637. {
  23638. front: {
  23639. height: math.unit(4.5, "meters"),
  23640. weight: math.unit(3200, "lb"),
  23641. name: "Front",
  23642. image: {
  23643. source: "./media/characters/ty/front.svg",
  23644. extra: 1038 / 960,
  23645. bottom: 31.156 / 1068
  23646. }
  23647. },
  23648. back: {
  23649. height: math.unit(4.5, "meters"),
  23650. weight: math.unit(3200, "lb"),
  23651. name: "Back",
  23652. image: {
  23653. source: "./media/characters/ty/back.svg",
  23654. extra: 1044 / 966,
  23655. bottom: 7.48 / 1049
  23656. }
  23657. },
  23658. },
  23659. [
  23660. {
  23661. name: "Normal",
  23662. height: math.unit(4.5, "meters"),
  23663. default: true
  23664. },
  23665. ]
  23666. ))
  23667. characterMakers.push(() => makeCharacter(
  23668. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23669. {
  23670. front: {
  23671. height: math.unit(5 + 4 / 12, "feet"),
  23672. weight: math.unit(115, "lb"),
  23673. name: "Front",
  23674. image: {
  23675. source: "./media/characters/rocky/front.svg",
  23676. extra: 1012 / 975,
  23677. bottom: 54 / 1066
  23678. }
  23679. },
  23680. },
  23681. [
  23682. {
  23683. name: "Normal",
  23684. height: math.unit(5 + 4 / 12, "feet"),
  23685. default: true
  23686. },
  23687. ]
  23688. ))
  23689. characterMakers.push(() => makeCharacter(
  23690. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23691. {
  23692. upright: {
  23693. height: math.unit(6, "meters"),
  23694. weight: math.unit(4000, "kg"),
  23695. name: "Upright",
  23696. image: {
  23697. source: "./media/characters/ruin/upright.svg",
  23698. extra: 668 / 661,
  23699. bottom: 42 / 799.8396
  23700. }
  23701. },
  23702. },
  23703. [
  23704. {
  23705. name: "Normal",
  23706. height: math.unit(6, "meters"),
  23707. default: true
  23708. },
  23709. ]
  23710. ))
  23711. characterMakers.push(() => makeCharacter(
  23712. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23713. {
  23714. front: {
  23715. height: math.unit(5, "feet"),
  23716. weight: math.unit(106, "lb"),
  23717. name: "Front",
  23718. image: {
  23719. source: "./media/characters/robin/front.svg",
  23720. extra: 862 / 799,
  23721. bottom: 42.4 / 914.8856
  23722. }
  23723. },
  23724. },
  23725. [
  23726. {
  23727. name: "Normal",
  23728. height: math.unit(5, "feet"),
  23729. default: true
  23730. },
  23731. ]
  23732. ))
  23733. characterMakers.push(() => makeCharacter(
  23734. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23735. {
  23736. side: {
  23737. height: math.unit(3, "feet"),
  23738. weight: math.unit(225, "lb"),
  23739. name: "Side",
  23740. image: {
  23741. source: "./media/characters/saian/side.svg",
  23742. extra: 566 / 356,
  23743. bottom: 79.7 / 643
  23744. }
  23745. },
  23746. maw: {
  23747. height: math.unit(2.85, "feet"),
  23748. name: "Maw",
  23749. image: {
  23750. source: "./media/characters/saian/maw.svg"
  23751. }
  23752. },
  23753. },
  23754. [
  23755. {
  23756. name: "Normal",
  23757. height: math.unit(3, "feet"),
  23758. default: true
  23759. },
  23760. ]
  23761. ))
  23762. characterMakers.push(() => makeCharacter(
  23763. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23764. {
  23765. side: {
  23766. height: math.unit(8, "feet"),
  23767. weight: math.unit(300, "lb"),
  23768. name: "Side",
  23769. image: {
  23770. source: "./media/characters/equus-silvermane/side.svg",
  23771. extra: 2176 / 2050,
  23772. bottom: 65.7 / 2245
  23773. }
  23774. },
  23775. front: {
  23776. height: math.unit(8, "feet"),
  23777. weight: math.unit(300, "lb"),
  23778. name: "Front",
  23779. image: {
  23780. source: "./media/characters/equus-silvermane/front.svg",
  23781. extra: 4633 / 4400,
  23782. bottom: 71.3 / 4706.915
  23783. }
  23784. },
  23785. sideStepping: {
  23786. height: math.unit(8, "feet"),
  23787. weight: math.unit(300, "lb"),
  23788. name: "Side (Stepping)",
  23789. image: {
  23790. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23791. extra: 1968 / 1860,
  23792. bottom: 16.4 / 1989
  23793. }
  23794. },
  23795. },
  23796. [
  23797. {
  23798. name: "Normal",
  23799. height: math.unit(8, "feet")
  23800. },
  23801. {
  23802. name: "Minimacro",
  23803. height: math.unit(75, "feet"),
  23804. default: true
  23805. },
  23806. {
  23807. name: "Macro",
  23808. height: math.unit(150, "feet")
  23809. },
  23810. {
  23811. name: "Macro+",
  23812. height: math.unit(1000, "feet")
  23813. },
  23814. {
  23815. name: "Megamacro",
  23816. height: math.unit(1, "mile")
  23817. },
  23818. ]
  23819. ))
  23820. characterMakers.push(() => makeCharacter(
  23821. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23822. {
  23823. side: {
  23824. height: math.unit(20, "feet"),
  23825. weight: math.unit(30000, "kg"),
  23826. name: "Side",
  23827. image: {
  23828. source: "./media/characters/windar/side.svg",
  23829. extra: 1491 / 1248,
  23830. bottom: 82.56 / 1568
  23831. }
  23832. },
  23833. },
  23834. [
  23835. {
  23836. name: "Normal",
  23837. height: math.unit(20, "feet"),
  23838. default: true
  23839. },
  23840. ]
  23841. ))
  23842. characterMakers.push(() => makeCharacter(
  23843. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23844. {
  23845. side: {
  23846. height: math.unit(15.66, "feet"),
  23847. weight: math.unit(150, "lb"),
  23848. name: "Side",
  23849. image: {
  23850. source: "./media/characters/melody/side.svg",
  23851. extra: 1097 / 944,
  23852. bottom: 11.8 / 1109
  23853. }
  23854. },
  23855. sideOutfit: {
  23856. height: math.unit(15.66, "feet"),
  23857. weight: math.unit(150, "lb"),
  23858. name: "Side (Outfit)",
  23859. image: {
  23860. source: "./media/characters/melody/side-outfit.svg",
  23861. extra: 1097 / 944,
  23862. bottom: 11.8 / 1109
  23863. }
  23864. },
  23865. },
  23866. [
  23867. {
  23868. name: "Normal",
  23869. height: math.unit(15.66, "feet"),
  23870. default: true
  23871. },
  23872. ]
  23873. ))
  23874. characterMakers.push(() => makeCharacter(
  23875. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23876. {
  23877. armoredFront: {
  23878. height: math.unit(8, "feet"),
  23879. weight: math.unit(325, "lb"),
  23880. name: "Front",
  23881. image: {
  23882. source: "./media/characters/windera/armored-front.svg",
  23883. extra: 1830/1598,
  23884. bottom: 151/1981
  23885. },
  23886. form: "armored",
  23887. default: true
  23888. },
  23889. macroFront: {
  23890. height: math.unit(70, "feet"),
  23891. weight: math.unit(315453, "lb"),
  23892. name: "Front",
  23893. image: {
  23894. source: "./media/characters/windera/macro-front.svg",
  23895. extra: 963/883,
  23896. bottom: 23/986
  23897. },
  23898. form: "macro",
  23899. default: true
  23900. },
  23901. },
  23902. [
  23903. {
  23904. name: "Normal",
  23905. height: math.unit(8, "feet"),
  23906. default: true,
  23907. form: "armored"
  23908. },
  23909. {
  23910. name: "Normal",
  23911. height: math.unit(70, "feet"),
  23912. default: true,
  23913. form: "macro"
  23914. },
  23915. ],
  23916. {
  23917. "armored": {
  23918. name: "Armored",
  23919. default: true
  23920. },
  23921. "macro": {
  23922. name: "Macro",
  23923. },
  23924. }
  23925. ))
  23926. characterMakers.push(() => makeCharacter(
  23927. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23928. {
  23929. front: {
  23930. height: math.unit(28.75, "feet"),
  23931. weight: math.unit(2000, "kg"),
  23932. name: "Front",
  23933. image: {
  23934. source: "./media/characters/sonear/front.svg",
  23935. extra: 1041.1 / 964.9,
  23936. bottom: 53.7 / 1096.6
  23937. }
  23938. },
  23939. },
  23940. [
  23941. {
  23942. name: "Normal",
  23943. height: math.unit(28.75, "feet"),
  23944. default: true
  23945. },
  23946. ]
  23947. ))
  23948. characterMakers.push(() => makeCharacter(
  23949. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23950. {
  23951. side: {
  23952. height: math.unit(25.5, "feet"),
  23953. weight: math.unit(23000, "kg"),
  23954. name: "Side",
  23955. image: {
  23956. source: "./media/characters/kanara/side.svg"
  23957. }
  23958. },
  23959. },
  23960. [
  23961. {
  23962. name: "Normal",
  23963. height: math.unit(25.5, "feet"),
  23964. default: true
  23965. },
  23966. ]
  23967. ))
  23968. characterMakers.push(() => makeCharacter(
  23969. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23970. {
  23971. side: {
  23972. height: math.unit(10, "feet"),
  23973. weight: math.unit(1000, "kg"),
  23974. name: "Side",
  23975. image: {
  23976. source: "./media/characters/ereus/side.svg",
  23977. extra: 1157 / 959,
  23978. bottom: 153 / 1312.5
  23979. }
  23980. },
  23981. },
  23982. [
  23983. {
  23984. name: "Normal",
  23985. height: math.unit(10, "feet"),
  23986. default: true
  23987. },
  23988. ]
  23989. ))
  23990. characterMakers.push(() => makeCharacter(
  23991. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23992. {
  23993. side: {
  23994. height: math.unit(4.5, "feet"),
  23995. weight: math.unit(500, "lb"),
  23996. name: "Side",
  23997. image: {
  23998. source: "./media/characters/e-ter/side.svg",
  23999. extra: 1550 / 1248,
  24000. bottom: 146 / 1694
  24001. }
  24002. },
  24003. },
  24004. [
  24005. {
  24006. name: "Normal",
  24007. height: math.unit(4.5, "feet"),
  24008. default: true
  24009. },
  24010. ]
  24011. ))
  24012. characterMakers.push(() => makeCharacter(
  24013. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24014. {
  24015. side: {
  24016. height: math.unit(9.7, "feet"),
  24017. weight: math.unit(4000, "kg"),
  24018. name: "Side",
  24019. image: {
  24020. source: "./media/characters/yamie/side.svg"
  24021. }
  24022. },
  24023. },
  24024. [
  24025. {
  24026. name: "Normal",
  24027. height: math.unit(9.7, "feet"),
  24028. default: true
  24029. },
  24030. ]
  24031. ))
  24032. characterMakers.push(() => makeCharacter(
  24033. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24034. {
  24035. front: {
  24036. height: math.unit(50, "feet"),
  24037. weight: math.unit(50000, "kg"),
  24038. name: "Front",
  24039. image: {
  24040. source: "./media/characters/anders/front.svg",
  24041. extra: 570 / 539,
  24042. bottom: 14.7 / 586.7
  24043. }
  24044. },
  24045. },
  24046. [
  24047. {
  24048. name: "Large",
  24049. height: math.unit(50, "feet")
  24050. },
  24051. {
  24052. name: "Macro",
  24053. height: math.unit(2000, "feet"),
  24054. default: true
  24055. },
  24056. {
  24057. name: "Megamacro",
  24058. height: math.unit(12, "miles")
  24059. },
  24060. ]
  24061. ))
  24062. characterMakers.push(() => makeCharacter(
  24063. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24064. {
  24065. front: {
  24066. height: math.unit(7 + 2 / 12, "feet"),
  24067. weight: math.unit(300, "lb"),
  24068. name: "Front",
  24069. image: {
  24070. source: "./media/characters/reban/front.svg",
  24071. extra: 1287/1212,
  24072. bottom: 148/1435
  24073. }
  24074. },
  24075. head: {
  24076. height: math.unit(1.95, "feet"),
  24077. name: "Head",
  24078. image: {
  24079. source: "./media/characters/reban/head.svg"
  24080. }
  24081. },
  24082. maw: {
  24083. height: math.unit(0.95, "feet"),
  24084. name: "Maw",
  24085. image: {
  24086. source: "./media/characters/reban/maw.svg"
  24087. }
  24088. },
  24089. foot: {
  24090. height: math.unit(1.65, "feet"),
  24091. name: "Foot",
  24092. image: {
  24093. source: "./media/characters/reban/foot.svg"
  24094. }
  24095. },
  24096. dick: {
  24097. height: math.unit(7 / 5, "feet"),
  24098. name: "Dick",
  24099. image: {
  24100. source: "./media/characters/reban/dick.svg"
  24101. }
  24102. },
  24103. },
  24104. [
  24105. {
  24106. name: "Natural Height",
  24107. height: math.unit(7 + 2 / 12, "feet")
  24108. },
  24109. {
  24110. name: "Macro",
  24111. height: math.unit(500, "feet"),
  24112. default: true
  24113. },
  24114. {
  24115. name: "Canon Height",
  24116. height: math.unit(50, "AU")
  24117. },
  24118. ]
  24119. ))
  24120. characterMakers.push(() => makeCharacter(
  24121. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24122. {
  24123. front: {
  24124. height: math.unit(6, "feet"),
  24125. weight: math.unit(150, "lb"),
  24126. name: "Front",
  24127. image: {
  24128. source: "./media/characters/terrance-keayes/front.svg",
  24129. extra: 1.005,
  24130. bottom: 151 / 1615
  24131. }
  24132. },
  24133. side: {
  24134. height: math.unit(6, "feet"),
  24135. weight: math.unit(150, "lb"),
  24136. name: "Side",
  24137. image: {
  24138. source: "./media/characters/terrance-keayes/side.svg",
  24139. extra: 1.005,
  24140. bottom: 129.4 / 1544
  24141. }
  24142. },
  24143. back: {
  24144. height: math.unit(6, "feet"),
  24145. weight: math.unit(150, "lb"),
  24146. name: "Back",
  24147. image: {
  24148. source: "./media/characters/terrance-keayes/back.svg",
  24149. extra: 1.005,
  24150. bottom: 58.4 / 1557.3
  24151. }
  24152. },
  24153. dick: {
  24154. height: math.unit(6 * 0.208, "feet"),
  24155. name: "Dick",
  24156. image: {
  24157. source: "./media/characters/terrance-keayes/dick.svg"
  24158. }
  24159. },
  24160. },
  24161. [
  24162. {
  24163. name: "Canon Height",
  24164. height: math.unit(35, "miles"),
  24165. default: true
  24166. },
  24167. ]
  24168. ))
  24169. characterMakers.push(() => makeCharacter(
  24170. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24171. {
  24172. front: {
  24173. height: math.unit(6, "feet"),
  24174. weight: math.unit(150, "lb"),
  24175. name: "Front",
  24176. image: {
  24177. source: "./media/characters/ofelia/front.svg",
  24178. extra: 1130/1117,
  24179. bottom: 91/1221
  24180. }
  24181. },
  24182. back: {
  24183. height: math.unit(6, "feet"),
  24184. weight: math.unit(150, "lb"),
  24185. name: "Back",
  24186. image: {
  24187. source: "./media/characters/ofelia/back.svg",
  24188. extra: 1172/1159,
  24189. bottom: 28/1200
  24190. }
  24191. },
  24192. maw: {
  24193. height: math.unit(1, "feet"),
  24194. name: "Maw",
  24195. image: {
  24196. source: "./media/characters/ofelia/maw.svg"
  24197. }
  24198. },
  24199. foot: {
  24200. height: math.unit(1.949, "feet"),
  24201. name: "Foot",
  24202. image: {
  24203. source: "./media/characters/ofelia/foot.svg"
  24204. }
  24205. },
  24206. },
  24207. [
  24208. {
  24209. name: "Canon Height",
  24210. height: math.unit(2000, "miles"),
  24211. default: true
  24212. },
  24213. ]
  24214. ))
  24215. characterMakers.push(() => makeCharacter(
  24216. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24217. {
  24218. front: {
  24219. height: math.unit(6, "feet"),
  24220. weight: math.unit(150, "lb"),
  24221. name: "Front",
  24222. image: {
  24223. source: "./media/characters/samuel/front.svg",
  24224. extra: 265 / 258,
  24225. bottom: 2 / 266.1566
  24226. }
  24227. },
  24228. },
  24229. [
  24230. {
  24231. name: "Macro",
  24232. height: math.unit(100, "feet"),
  24233. default: true
  24234. },
  24235. {
  24236. name: "Full Size",
  24237. height: math.unit(1000, "miles")
  24238. },
  24239. ]
  24240. ))
  24241. characterMakers.push(() => makeCharacter(
  24242. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24243. {
  24244. front: {
  24245. height: math.unit(6, "feet"),
  24246. weight: math.unit(300, "lb"),
  24247. name: "Front",
  24248. image: {
  24249. source: "./media/characters/beishir-kiel/front.svg",
  24250. extra: 569 / 547,
  24251. bottom: 41.9 / 609
  24252. }
  24253. },
  24254. maw: {
  24255. height: math.unit(6 * 0.202, "feet"),
  24256. name: "Maw",
  24257. image: {
  24258. source: "./media/characters/beishir-kiel/maw.svg"
  24259. }
  24260. },
  24261. },
  24262. [
  24263. {
  24264. name: "Macro",
  24265. height: math.unit(300, "feet"),
  24266. default: true
  24267. },
  24268. ]
  24269. ))
  24270. characterMakers.push(() => makeCharacter(
  24271. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24272. {
  24273. front: {
  24274. height: math.unit(5 + 7/12, "feet"),
  24275. weight: math.unit(120, "lb"),
  24276. name: "Front",
  24277. image: {
  24278. source: "./media/characters/logan-grey/front.svg",
  24279. extra: 1836/1738,
  24280. bottom: 108/1944
  24281. }
  24282. },
  24283. back: {
  24284. height: math.unit(5 + 7/12, "feet"),
  24285. weight: math.unit(120, "lb"),
  24286. name: "Back",
  24287. image: {
  24288. source: "./media/characters/logan-grey/back.svg",
  24289. extra: 1880/1794,
  24290. bottom: 24/1904
  24291. }
  24292. },
  24293. frontSfw: {
  24294. height: math.unit(5 + 7/12, "feet"),
  24295. weight: math.unit(120, "lb"),
  24296. name: "Front (SFW)",
  24297. image: {
  24298. source: "./media/characters/logan-grey/front-sfw.svg",
  24299. extra: 1836/1738,
  24300. bottom: 108/1944
  24301. }
  24302. },
  24303. backSfw: {
  24304. height: math.unit(5 + 7/12, "feet"),
  24305. weight: math.unit(120, "lb"),
  24306. name: "Back (SFW)",
  24307. image: {
  24308. source: "./media/characters/logan-grey/back-sfw.svg",
  24309. extra: 1880/1794,
  24310. bottom: 24/1904
  24311. }
  24312. },
  24313. hands: {
  24314. height: math.unit(0.84, "feet"),
  24315. name: "Hands",
  24316. image: {
  24317. source: "./media/characters/logan-grey/hands.svg"
  24318. }
  24319. },
  24320. paws: {
  24321. height: math.unit(0.72, "feet"),
  24322. name: "Paws",
  24323. image: {
  24324. source: "./media/characters/logan-grey/paws.svg"
  24325. }
  24326. },
  24327. cock: {
  24328. height: math.unit(1.45, "feet"),
  24329. name: "Cock",
  24330. image: {
  24331. source: "./media/characters/logan-grey/cock.svg"
  24332. }
  24333. },
  24334. cockAlt: {
  24335. height: math.unit(1.437, "feet"),
  24336. name: "Cock (alt)",
  24337. image: {
  24338. source: "./media/characters/logan-grey/cock-alt.svg"
  24339. }
  24340. },
  24341. },
  24342. [
  24343. {
  24344. name: "Normal",
  24345. height: math.unit(5 + 8 / 12, "feet")
  24346. },
  24347. {
  24348. name: "The 500 Foot Femboy",
  24349. height: math.unit(500, "feet"),
  24350. default: true
  24351. },
  24352. {
  24353. name: "Megmacro",
  24354. height: math.unit(20, "miles")
  24355. },
  24356. ]
  24357. ))
  24358. characterMakers.push(() => makeCharacter(
  24359. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24360. {
  24361. front: {
  24362. height: math.unit(8 + 2 / 12, "feet"),
  24363. weight: math.unit(275, "lb"),
  24364. name: "Front",
  24365. image: {
  24366. source: "./media/characters/draganta/front.svg",
  24367. extra: 1177 / 1135,
  24368. bottom: 33.46 / 1212.1
  24369. }
  24370. },
  24371. },
  24372. [
  24373. {
  24374. name: "Normal",
  24375. height: math.unit(8 + 6 / 12, "feet"),
  24376. default: true
  24377. },
  24378. {
  24379. name: "Macro",
  24380. height: math.unit(150, "feet")
  24381. },
  24382. {
  24383. name: "Megamacro",
  24384. height: math.unit(1000, "miles")
  24385. },
  24386. ]
  24387. ))
  24388. characterMakers.push(() => makeCharacter(
  24389. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24390. {
  24391. front: {
  24392. height: math.unit(1.72, "m"),
  24393. weight: math.unit(80, "lb"),
  24394. name: "Front",
  24395. image: {
  24396. source: "./media/characters/voski/front.svg",
  24397. extra: 2076.22 / 2022.4,
  24398. bottom: 102.7 / 2177.3866
  24399. }
  24400. },
  24401. frontFlaccid: {
  24402. height: math.unit(1.72, "m"),
  24403. weight: math.unit(80, "lb"),
  24404. name: "Front (Flaccid)",
  24405. image: {
  24406. source: "./media/characters/voski/front-flaccid.svg",
  24407. extra: 2076.22 / 2022.4,
  24408. bottom: 102.7 / 2177.3866
  24409. }
  24410. },
  24411. frontErect: {
  24412. height: math.unit(1.72, "m"),
  24413. weight: math.unit(80, "lb"),
  24414. name: "Front (Erect)",
  24415. image: {
  24416. source: "./media/characters/voski/front-erect.svg",
  24417. extra: 2076.22 / 2022.4,
  24418. bottom: 102.7 / 2177.3866
  24419. }
  24420. },
  24421. back: {
  24422. height: math.unit(1.72, "m"),
  24423. weight: math.unit(80, "lb"),
  24424. name: "Back",
  24425. image: {
  24426. source: "./media/characters/voski/back.svg",
  24427. extra: 2104 / 2051,
  24428. bottom: 10.45 / 2113.63
  24429. }
  24430. },
  24431. },
  24432. [
  24433. {
  24434. name: "Normal",
  24435. height: math.unit(1.72, "m")
  24436. },
  24437. {
  24438. name: "Macro",
  24439. height: math.unit(55, "m"),
  24440. default: true
  24441. },
  24442. {
  24443. name: "Macro+",
  24444. height: math.unit(300, "m")
  24445. },
  24446. {
  24447. name: "Macro++",
  24448. height: math.unit(700, "m")
  24449. },
  24450. {
  24451. name: "Macro+++",
  24452. height: math.unit(4500, "m")
  24453. },
  24454. {
  24455. name: "Macro++++",
  24456. height: math.unit(45, "km")
  24457. },
  24458. {
  24459. name: "Macro+++++",
  24460. height: math.unit(1220, "km")
  24461. },
  24462. ]
  24463. ))
  24464. characterMakers.push(() => makeCharacter(
  24465. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24466. {
  24467. front: {
  24468. height: math.unit(2.3, "m"),
  24469. weight: math.unit(304, "kg"),
  24470. name: "Front",
  24471. image: {
  24472. source: "./media/characters/icowom-lee/front.svg",
  24473. extra: 985 / 955,
  24474. bottom: 25.4 / 1012
  24475. }
  24476. },
  24477. fronttentacles: {
  24478. height: math.unit(2.3, "m"),
  24479. weight: math.unit(304, "kg"),
  24480. name: "Front-tentacles",
  24481. image: {
  24482. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24483. extra: 985 / 955,
  24484. bottom: 25.4 / 1012
  24485. }
  24486. },
  24487. back: {
  24488. height: math.unit(2.3, "m"),
  24489. weight: math.unit(304, "kg"),
  24490. name: "Back",
  24491. image: {
  24492. source: "./media/characters/icowom-lee/back.svg",
  24493. extra: 975 / 954,
  24494. bottom: 9.5 / 985
  24495. }
  24496. },
  24497. backtentacles: {
  24498. height: math.unit(2.3, "m"),
  24499. weight: math.unit(304, "kg"),
  24500. name: "Back-tentacles",
  24501. image: {
  24502. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24503. extra: 975 / 954,
  24504. bottom: 9.5 / 985
  24505. }
  24506. },
  24507. frontDressed: {
  24508. height: math.unit(2.3, "m"),
  24509. weight: math.unit(304, "kg"),
  24510. name: "Front (Dressed)",
  24511. image: {
  24512. source: "./media/characters/icowom-lee/front-dressed.svg",
  24513. extra: 3076 / 2933,
  24514. bottom: 51.4 / 3125.1889
  24515. }
  24516. },
  24517. rump: {
  24518. height: math.unit(0.776, "meters"),
  24519. name: "Rump",
  24520. image: {
  24521. source: "./media/characters/icowom-lee/rump.svg"
  24522. }
  24523. },
  24524. genitals: {
  24525. height: math.unit(0.78, "meters"),
  24526. name: "Genitals",
  24527. image: {
  24528. source: "./media/characters/icowom-lee/genitals.svg"
  24529. }
  24530. },
  24531. },
  24532. [
  24533. {
  24534. name: "Normal",
  24535. height: math.unit(2.3, "meters"),
  24536. default: true
  24537. },
  24538. {
  24539. name: "Macro",
  24540. height: math.unit(94, "meters"),
  24541. default: true
  24542. },
  24543. ]
  24544. ))
  24545. characterMakers.push(() => makeCharacter(
  24546. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24547. {
  24548. front: {
  24549. height: math.unit(22, "meters"),
  24550. weight: math.unit(21000, "kg"),
  24551. name: "Front",
  24552. image: {
  24553. source: "./media/characters/shock-diamond/front.svg",
  24554. extra: 2204 / 2053,
  24555. bottom: 65 / 2239.47
  24556. }
  24557. },
  24558. frontNude: {
  24559. height: math.unit(22, "meters"),
  24560. weight: math.unit(21000, "kg"),
  24561. name: "Front (Nude)",
  24562. image: {
  24563. source: "./media/characters/shock-diamond/front-nude.svg",
  24564. extra: 2514 / 2285,
  24565. bottom: 13 / 2527.56
  24566. }
  24567. },
  24568. },
  24569. [
  24570. {
  24571. name: "Normal",
  24572. height: math.unit(3, "meters")
  24573. },
  24574. {
  24575. name: "Macro",
  24576. height: math.unit(22, "meters"),
  24577. default: true
  24578. },
  24579. ]
  24580. ))
  24581. characterMakers.push(() => makeCharacter(
  24582. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24583. {
  24584. frontNsfw: {
  24585. height: math.unit(5 + 4/12, "feet"),
  24586. weight: math.unit(195, "lb"),
  24587. name: "Front",
  24588. image: {
  24589. source: "./media/characters/rory/front.svg",
  24590. extra: 1220/1100,
  24591. bottom: 103/1323
  24592. }
  24593. },
  24594. back: {
  24595. height: math.unit(5 + 4/12, "feet"),
  24596. weight: math.unit(195, "lb"),
  24597. name: "Back",
  24598. image: {
  24599. source: "./media/characters/rory/back.svg",
  24600. extra: 1166/1086,
  24601. bottom: 35/1201
  24602. }
  24603. },
  24604. },
  24605. [
  24606. {
  24607. name: "Micro",
  24608. height: math.unit(3, "inches")
  24609. },
  24610. {
  24611. name: "Normal",
  24612. height: math.unit(5 + 4/12, "feet"),
  24613. default: true
  24614. },
  24615. {
  24616. name: "Macro",
  24617. height: math.unit(90, "feet")
  24618. },
  24619. {
  24620. name: "Supercharged",
  24621. height: math.unit(270, "feet")
  24622. },
  24623. ]
  24624. ))
  24625. characterMakers.push(() => makeCharacter(
  24626. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24627. {
  24628. front: {
  24629. height: math.unit(5 + 9 / 12, "feet"),
  24630. weight: math.unit(190, "lb"),
  24631. name: "Front",
  24632. image: {
  24633. source: "./media/characters/sprisk/front.svg",
  24634. extra: 1225 / 1180,
  24635. bottom: 42.7 / 1266.4
  24636. }
  24637. },
  24638. frontNsfw: {
  24639. height: math.unit(5 + 9 / 12, "feet"),
  24640. weight: math.unit(190, "lb"),
  24641. name: "Front (NSFW)",
  24642. image: {
  24643. source: "./media/characters/sprisk/front-nsfw.svg",
  24644. extra: 1225 / 1180,
  24645. bottom: 42.7 / 1266.4
  24646. }
  24647. },
  24648. back: {
  24649. height: math.unit(5 + 9 / 12, "feet"),
  24650. weight: math.unit(190, "lb"),
  24651. name: "Back",
  24652. image: {
  24653. source: "./media/characters/sprisk/back.svg",
  24654. extra: 1247 / 1200,
  24655. bottom: 5.6 / 1253.04
  24656. }
  24657. },
  24658. },
  24659. [
  24660. {
  24661. name: "Tiny",
  24662. height: math.unit(2, "inches")
  24663. },
  24664. {
  24665. name: "Normal",
  24666. height: math.unit(5 + 9 / 12, "feet"),
  24667. default: true
  24668. },
  24669. {
  24670. name: "Mini Macro",
  24671. height: math.unit(18, "feet")
  24672. },
  24673. {
  24674. name: "Macro",
  24675. height: math.unit(100, "feet")
  24676. },
  24677. {
  24678. name: "MACRO",
  24679. height: math.unit(50, "miles")
  24680. },
  24681. {
  24682. name: "M A C R O",
  24683. height: math.unit(300, "miles")
  24684. },
  24685. ]
  24686. ))
  24687. characterMakers.push(() => makeCharacter(
  24688. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24689. {
  24690. side: {
  24691. height: math.unit(15.6, "meters"),
  24692. weight: math.unit(700000, "kg"),
  24693. name: "Side",
  24694. image: {
  24695. source: "./media/characters/bunsen/side.svg",
  24696. extra: 1644 / 358
  24697. }
  24698. },
  24699. foot: {
  24700. height: math.unit(1.611 * 1644 / 358, "meter"),
  24701. name: "Foot",
  24702. image: {
  24703. source: "./media/characters/bunsen/foot.svg"
  24704. }
  24705. },
  24706. },
  24707. [
  24708. {
  24709. name: "Small",
  24710. height: math.unit(10, "feet")
  24711. },
  24712. {
  24713. name: "Normal",
  24714. height: math.unit(15.6, "meters"),
  24715. default: true
  24716. },
  24717. ]
  24718. ))
  24719. characterMakers.push(() => makeCharacter(
  24720. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24721. {
  24722. front: {
  24723. height: math.unit(4 + 11 / 12, "feet"),
  24724. weight: math.unit(140, "lb"),
  24725. name: "Front",
  24726. image: {
  24727. source: "./media/characters/sesh/front.svg",
  24728. extra: 3420 / 3231,
  24729. bottom: 72 / 3949.5
  24730. }
  24731. },
  24732. },
  24733. [
  24734. {
  24735. name: "Normal",
  24736. height: math.unit(4 + 11 / 12, "feet")
  24737. },
  24738. {
  24739. name: "Grown",
  24740. height: math.unit(15, "feet"),
  24741. default: true
  24742. },
  24743. {
  24744. name: "Macro",
  24745. height: math.unit(1500, "feet")
  24746. },
  24747. {
  24748. name: "Megamacro",
  24749. height: math.unit(30, "miles")
  24750. },
  24751. {
  24752. name: "Continental",
  24753. height: math.unit(3000, "miles")
  24754. },
  24755. {
  24756. name: "Gravity Mass",
  24757. height: math.unit(300000, "miles")
  24758. },
  24759. {
  24760. name: "Planet Buster",
  24761. height: math.unit(30000000, "miles")
  24762. },
  24763. {
  24764. name: "Big",
  24765. height: math.unit(3000000000, "miles")
  24766. },
  24767. ]
  24768. ))
  24769. characterMakers.push(() => makeCharacter(
  24770. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24771. {
  24772. front: {
  24773. height: math.unit(9, "feet"),
  24774. weight: math.unit(350, "lb"),
  24775. name: "Front",
  24776. image: {
  24777. source: "./media/characters/pepper/front.svg",
  24778. extra: 1448 / 1312,
  24779. bottom: 9.4 / 1457.88
  24780. }
  24781. },
  24782. back: {
  24783. height: math.unit(9, "feet"),
  24784. weight: math.unit(350, "lb"),
  24785. name: "Back",
  24786. image: {
  24787. source: "./media/characters/pepper/back.svg",
  24788. extra: 1423 / 1300,
  24789. bottom: 4.6 / 1429
  24790. }
  24791. },
  24792. maw: {
  24793. height: math.unit(0.932, "feet"),
  24794. name: "Maw",
  24795. image: {
  24796. source: "./media/characters/pepper/maw.svg"
  24797. }
  24798. },
  24799. },
  24800. [
  24801. {
  24802. name: "Normal",
  24803. height: math.unit(9, "feet"),
  24804. default: true
  24805. },
  24806. ]
  24807. ))
  24808. characterMakers.push(() => makeCharacter(
  24809. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24810. {
  24811. front: {
  24812. height: math.unit(6, "feet"),
  24813. weight: math.unit(150, "lb"),
  24814. name: "Front",
  24815. image: {
  24816. source: "./media/characters/maelstrom/front.svg",
  24817. extra: 2100 / 1883,
  24818. bottom: 94 / 2196.7
  24819. }
  24820. },
  24821. },
  24822. [
  24823. {
  24824. name: "Less Kaiju",
  24825. height: math.unit(200, "feet")
  24826. },
  24827. {
  24828. name: "Kaiju",
  24829. height: math.unit(400, "feet"),
  24830. default: true
  24831. },
  24832. {
  24833. name: "Kaiju-er",
  24834. height: math.unit(600, "feet")
  24835. },
  24836. ]
  24837. ))
  24838. characterMakers.push(() => makeCharacter(
  24839. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24840. {
  24841. front: {
  24842. height: math.unit(6 + 5 / 12, "feet"),
  24843. weight: math.unit(180, "lb"),
  24844. name: "Front",
  24845. image: {
  24846. source: "./media/characters/lexir/front.svg",
  24847. extra: 180 / 172,
  24848. bottom: 12 / 192
  24849. }
  24850. },
  24851. back: {
  24852. height: math.unit(6 + 5 / 12, "feet"),
  24853. weight: math.unit(180, "lb"),
  24854. name: "Back",
  24855. image: {
  24856. source: "./media/characters/lexir/back.svg",
  24857. extra: 1273/1201,
  24858. bottom: 39/1312
  24859. }
  24860. },
  24861. },
  24862. [
  24863. {
  24864. name: "Very Smal",
  24865. height: math.unit(1, "nm")
  24866. },
  24867. {
  24868. name: "Normal",
  24869. height: math.unit(6 + 5 / 12, "feet"),
  24870. default: true
  24871. },
  24872. {
  24873. name: "Macro",
  24874. height: math.unit(1, "mile")
  24875. },
  24876. {
  24877. name: "Megamacro",
  24878. height: math.unit(50, "miles")
  24879. },
  24880. ]
  24881. ))
  24882. characterMakers.push(() => makeCharacter(
  24883. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24884. {
  24885. front: {
  24886. height: math.unit(1.5, "meters"),
  24887. weight: math.unit(100, "lb"),
  24888. name: "Front",
  24889. image: {
  24890. source: "./media/characters/maksio/front.svg",
  24891. extra: 1549 / 1531,
  24892. bottom: 123.7 / 1674.5429
  24893. }
  24894. },
  24895. back: {
  24896. height: math.unit(1.5, "meters"),
  24897. weight: math.unit(100, "lb"),
  24898. name: "Back",
  24899. image: {
  24900. source: "./media/characters/maksio/back.svg",
  24901. extra: 1541 / 1509,
  24902. bottom: 97 / 1639
  24903. }
  24904. },
  24905. hand: {
  24906. height: math.unit(0.621, "feet"),
  24907. name: "Hand",
  24908. image: {
  24909. source: "./media/characters/maksio/hand.svg"
  24910. }
  24911. },
  24912. foot: {
  24913. height: math.unit(1.611, "feet"),
  24914. name: "Foot",
  24915. image: {
  24916. source: "./media/characters/maksio/foot.svg"
  24917. }
  24918. },
  24919. },
  24920. [
  24921. {
  24922. name: "Shrunken",
  24923. height: math.unit(10, "cm")
  24924. },
  24925. {
  24926. name: "Normal",
  24927. height: math.unit(150, "cm"),
  24928. default: true
  24929. },
  24930. ]
  24931. ))
  24932. characterMakers.push(() => makeCharacter(
  24933. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24934. {
  24935. front: {
  24936. height: math.unit(100, "feet"),
  24937. name: "Front",
  24938. image: {
  24939. source: "./media/characters/erza-bear/front.svg",
  24940. extra: 2449 / 2390,
  24941. bottom: 46 / 2494
  24942. }
  24943. },
  24944. back: {
  24945. height: math.unit(100, "feet"),
  24946. name: "Back",
  24947. image: {
  24948. source: "./media/characters/erza-bear/back.svg",
  24949. extra: 2489 / 2430,
  24950. bottom: 85.4 / 2480
  24951. }
  24952. },
  24953. tail: {
  24954. height: math.unit(42, "feet"),
  24955. name: "Tail",
  24956. image: {
  24957. source: "./media/characters/erza-bear/tail.svg"
  24958. }
  24959. },
  24960. tongue: {
  24961. height: math.unit(8, "feet"),
  24962. name: "Tongue",
  24963. image: {
  24964. source: "./media/characters/erza-bear/tongue.svg"
  24965. }
  24966. },
  24967. dick: {
  24968. height: math.unit(10.5, "feet"),
  24969. name: "Dick",
  24970. image: {
  24971. source: "./media/characters/erza-bear/dick.svg"
  24972. }
  24973. },
  24974. dickVertical: {
  24975. height: math.unit(16.9, "feet"),
  24976. name: "Dick (Vertical)",
  24977. image: {
  24978. source: "./media/characters/erza-bear/dick-vertical.svg"
  24979. }
  24980. },
  24981. },
  24982. [
  24983. {
  24984. name: "Macro",
  24985. height: math.unit(100, "feet"),
  24986. default: true
  24987. },
  24988. ]
  24989. ))
  24990. characterMakers.push(() => makeCharacter(
  24991. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24992. {
  24993. front: {
  24994. height: math.unit(172, "cm"),
  24995. weight: math.unit(73, "kg"),
  24996. name: "Front",
  24997. image: {
  24998. source: "./media/characters/violet-flor/front.svg",
  24999. extra: 1530 / 1442,
  25000. bottom: 61.9 / 1588.8
  25001. }
  25002. },
  25003. back: {
  25004. height: math.unit(180, "cm"),
  25005. weight: math.unit(73, "kg"),
  25006. name: "Back",
  25007. image: {
  25008. source: "./media/characters/violet-flor/back.svg",
  25009. extra: 1692 / 1630,
  25010. bottom: 20 / 1712
  25011. }
  25012. },
  25013. },
  25014. [
  25015. {
  25016. name: "Normal",
  25017. height: math.unit(172, "cm"),
  25018. default: true
  25019. },
  25020. ]
  25021. ))
  25022. characterMakers.push(() => makeCharacter(
  25023. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25024. {
  25025. front: {
  25026. height: math.unit(6, "feet"),
  25027. weight: math.unit(220, "lb"),
  25028. name: "Front",
  25029. image: {
  25030. source: "./media/characters/lynn-rhea/front.svg",
  25031. extra: 310 / 273
  25032. }
  25033. },
  25034. back: {
  25035. height: math.unit(6, "feet"),
  25036. weight: math.unit(220, "lb"),
  25037. name: "Back",
  25038. image: {
  25039. source: "./media/characters/lynn-rhea/back.svg",
  25040. extra: 310 / 273
  25041. }
  25042. },
  25043. dicks: {
  25044. height: math.unit(0.9, "feet"),
  25045. name: "Dicks",
  25046. image: {
  25047. source: "./media/characters/lynn-rhea/dicks.svg"
  25048. }
  25049. },
  25050. slit: {
  25051. height: math.unit(0.4, "feet"),
  25052. name: "Slit",
  25053. image: {
  25054. source: "./media/characters/lynn-rhea/slit.svg"
  25055. }
  25056. },
  25057. },
  25058. [
  25059. {
  25060. name: "Micro",
  25061. height: math.unit(1, "inch")
  25062. },
  25063. {
  25064. name: "Macro",
  25065. height: math.unit(60, "feet"),
  25066. default: true
  25067. },
  25068. {
  25069. name: "Megamacro",
  25070. height: math.unit(2, "miles")
  25071. },
  25072. {
  25073. name: "Gigamacro",
  25074. height: math.unit(3, "earths")
  25075. },
  25076. {
  25077. name: "Galactic",
  25078. height: math.unit(0.8, "galaxies")
  25079. },
  25080. ]
  25081. ))
  25082. characterMakers.push(() => makeCharacter(
  25083. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25084. {
  25085. front: {
  25086. height: math.unit(1600, "feet"),
  25087. weight: math.unit(85758785169, "kg"),
  25088. name: "Front",
  25089. image: {
  25090. source: "./media/characters/valathos/front.svg",
  25091. extra: 1451 / 1339
  25092. }
  25093. },
  25094. },
  25095. [
  25096. {
  25097. name: "Macro",
  25098. height: math.unit(1600, "feet"),
  25099. default: true
  25100. },
  25101. ]
  25102. ))
  25103. characterMakers.push(() => makeCharacter(
  25104. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25105. {
  25106. front: {
  25107. height: math.unit(7 + 5 / 12, "feet"),
  25108. weight: math.unit(300, "lb"),
  25109. name: "Front",
  25110. image: {
  25111. source: "./media/characters/azula/front.svg",
  25112. extra: 3208 / 2880,
  25113. bottom: 80.2 / 3277
  25114. }
  25115. },
  25116. back: {
  25117. height: math.unit(7 + 5 / 12, "feet"),
  25118. weight: math.unit(300, "lb"),
  25119. name: "Back",
  25120. image: {
  25121. source: "./media/characters/azula/back.svg",
  25122. extra: 3169 / 2822,
  25123. bottom: 150.6 / 3321
  25124. }
  25125. },
  25126. },
  25127. [
  25128. {
  25129. name: "Normal",
  25130. height: math.unit(7 + 5 / 12, "feet"),
  25131. default: true
  25132. },
  25133. {
  25134. name: "Big",
  25135. height: math.unit(20, "feet")
  25136. },
  25137. ]
  25138. ))
  25139. characterMakers.push(() => makeCharacter(
  25140. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25141. {
  25142. front: {
  25143. height: math.unit(5 + 1 / 12, "feet"),
  25144. weight: math.unit(110, "lb"),
  25145. name: "Front",
  25146. image: {
  25147. source: "./media/characters/rupert/front.svg",
  25148. extra: 1549 / 1495,
  25149. bottom: 54.2 / 1604.4
  25150. }
  25151. },
  25152. },
  25153. [
  25154. {
  25155. name: "Normal",
  25156. height: math.unit(5 + 1 / 12, "feet"),
  25157. default: true
  25158. },
  25159. ]
  25160. ))
  25161. characterMakers.push(() => makeCharacter(
  25162. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25163. {
  25164. front: {
  25165. height: math.unit(8 + 4 / 12, "feet"),
  25166. weight: math.unit(350, "lb"),
  25167. name: "Front",
  25168. image: {
  25169. source: "./media/characters/sheera-castellar/front.svg",
  25170. extra: 1957 / 1894,
  25171. bottom: 26.97 / 1975.017
  25172. }
  25173. },
  25174. side: {
  25175. height: math.unit(8 + 4 / 12, "feet"),
  25176. weight: math.unit(350, "lb"),
  25177. name: "Side",
  25178. image: {
  25179. source: "./media/characters/sheera-castellar/side.svg",
  25180. extra: 1957 / 1894
  25181. }
  25182. },
  25183. back: {
  25184. height: math.unit(8 + 4 / 12, "feet"),
  25185. weight: math.unit(350, "lb"),
  25186. name: "Back",
  25187. image: {
  25188. source: "./media/characters/sheera-castellar/back.svg",
  25189. extra: 1957 / 1894
  25190. }
  25191. },
  25192. angled: {
  25193. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25194. weight: math.unit(350, "lb"),
  25195. name: "Angled",
  25196. image: {
  25197. source: "./media/characters/sheera-castellar/angled.svg",
  25198. extra: 1807 / 1707,
  25199. bottom: 68 / 1875
  25200. }
  25201. },
  25202. genitals: {
  25203. height: math.unit(2.2, "feet"),
  25204. name: "Genitals",
  25205. image: {
  25206. source: "./media/characters/sheera-castellar/genitals.svg"
  25207. }
  25208. },
  25209. taur: {
  25210. height: math.unit(10 + 6/12, "feet"),
  25211. name: "Taur",
  25212. image: {
  25213. source: "./media/characters/sheera-castellar/taur.svg",
  25214. extra: 2017/1909,
  25215. bottom: 185/2202
  25216. }
  25217. },
  25218. },
  25219. [
  25220. {
  25221. name: "Normal",
  25222. height: math.unit(8 + 4 / 12, "feet")
  25223. },
  25224. {
  25225. name: "Macro",
  25226. height: math.unit(150, "feet"),
  25227. default: true
  25228. },
  25229. {
  25230. name: "Macro+",
  25231. height: math.unit(800, "feet")
  25232. },
  25233. ]
  25234. ))
  25235. characterMakers.push(() => makeCharacter(
  25236. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25237. {
  25238. front: {
  25239. height: math.unit(6, "feet"),
  25240. weight: math.unit(150, "lb"),
  25241. name: "Front",
  25242. image: {
  25243. source: "./media/characters/jaipur/front.svg",
  25244. extra: 3860 / 3731,
  25245. bottom: 287 / 4140
  25246. }
  25247. },
  25248. back: {
  25249. height: math.unit(6, "feet"),
  25250. weight: math.unit(150, "lb"),
  25251. name: "Back",
  25252. image: {
  25253. source: "./media/characters/jaipur/back.svg",
  25254. extra: 1637/1561,
  25255. bottom: 154/1791
  25256. }
  25257. },
  25258. },
  25259. [
  25260. {
  25261. name: "Normal",
  25262. height: math.unit(1.85, "meters"),
  25263. default: true
  25264. },
  25265. {
  25266. name: "Macro",
  25267. height: math.unit(150, "meters")
  25268. },
  25269. {
  25270. name: "Macro+",
  25271. height: math.unit(0.5, "miles")
  25272. },
  25273. {
  25274. name: "Macro++",
  25275. height: math.unit(2.5, "miles")
  25276. },
  25277. {
  25278. name: "Macro+++",
  25279. height: math.unit(12, "miles")
  25280. },
  25281. {
  25282. name: "Macro++++",
  25283. height: math.unit(120, "miles")
  25284. },
  25285. {
  25286. name: "Macro+++++",
  25287. height: math.unit(1200, "miles")
  25288. },
  25289. ]
  25290. ))
  25291. characterMakers.push(() => makeCharacter(
  25292. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25293. {
  25294. front: {
  25295. height: math.unit(6, "feet"),
  25296. weight: math.unit(150, "lb"),
  25297. name: "Front",
  25298. image: {
  25299. source: "./media/characters/sheila-wolf/front.svg",
  25300. extra: 1931 / 1808,
  25301. bottom: 29.5 / 1960
  25302. }
  25303. },
  25304. dick: {
  25305. height: math.unit(1.464, "feet"),
  25306. name: "Dick",
  25307. image: {
  25308. source: "./media/characters/sheila-wolf/dick.svg"
  25309. }
  25310. },
  25311. muzzle: {
  25312. height: math.unit(0.513, "feet"),
  25313. name: "Muzzle",
  25314. image: {
  25315. source: "./media/characters/sheila-wolf/muzzle.svg"
  25316. }
  25317. },
  25318. },
  25319. [
  25320. {
  25321. name: "Macro",
  25322. height: math.unit(70, "feet"),
  25323. default: true
  25324. },
  25325. ]
  25326. ))
  25327. characterMakers.push(() => makeCharacter(
  25328. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25329. {
  25330. front: {
  25331. height: math.unit(32, "meters"),
  25332. weight: math.unit(300000, "kg"),
  25333. name: "Front",
  25334. image: {
  25335. source: "./media/characters/almor/front.svg",
  25336. extra: 1408 / 1322,
  25337. bottom: 94.6 / 1506.5
  25338. }
  25339. },
  25340. },
  25341. [
  25342. {
  25343. name: "Macro",
  25344. height: math.unit(32, "meters"),
  25345. default: true
  25346. },
  25347. ]
  25348. ))
  25349. characterMakers.push(() => makeCharacter(
  25350. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25351. {
  25352. front: {
  25353. height: math.unit(7, "feet"),
  25354. weight: math.unit(200, "lb"),
  25355. name: "Front",
  25356. image: {
  25357. source: "./media/characters/silver/front.svg",
  25358. extra: 472.1 / 450.5,
  25359. bottom: 26.5 / 499.424
  25360. }
  25361. },
  25362. },
  25363. [
  25364. {
  25365. name: "Normal",
  25366. height: math.unit(7, "feet"),
  25367. default: true
  25368. },
  25369. {
  25370. name: "Macro",
  25371. height: math.unit(800, "feet")
  25372. },
  25373. {
  25374. name: "Megamacro",
  25375. height: math.unit(250, "miles")
  25376. },
  25377. ]
  25378. ))
  25379. characterMakers.push(() => makeCharacter(
  25380. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25381. {
  25382. front: {
  25383. height: math.unit(6, "feet"),
  25384. weight: math.unit(150, "lb"),
  25385. name: "Front",
  25386. image: {
  25387. source: "./media/characters/pliskin/front.svg",
  25388. extra: 1469 / 1359,
  25389. bottom: 70 / 1540
  25390. }
  25391. },
  25392. },
  25393. [
  25394. {
  25395. name: "Micro",
  25396. height: math.unit(3, "inches")
  25397. },
  25398. {
  25399. name: "Normal",
  25400. height: math.unit(5 + 11 / 12, "feet"),
  25401. default: true
  25402. },
  25403. {
  25404. name: "Macro",
  25405. height: math.unit(120, "feet")
  25406. },
  25407. ]
  25408. ))
  25409. characterMakers.push(() => makeCharacter(
  25410. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25411. {
  25412. front: {
  25413. height: math.unit(6, "feet"),
  25414. weight: math.unit(150, "lb"),
  25415. name: "Front",
  25416. image: {
  25417. source: "./media/characters/sammy/front.svg",
  25418. extra: 1193 / 1089,
  25419. bottom: 30.5 / 1226
  25420. }
  25421. },
  25422. },
  25423. [
  25424. {
  25425. name: "Macro",
  25426. height: math.unit(1700, "feet"),
  25427. default: true
  25428. },
  25429. {
  25430. name: "Examacro",
  25431. height: math.unit(2.5e9, "lightyears")
  25432. },
  25433. ]
  25434. ))
  25435. characterMakers.push(() => makeCharacter(
  25436. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25437. {
  25438. front: {
  25439. height: math.unit(21, "meters"),
  25440. weight: math.unit(12, "tonnes"),
  25441. name: "Front",
  25442. image: {
  25443. source: "./media/characters/kuru/front.svg",
  25444. extra: 4301 / 3785,
  25445. bottom: 371.3 / 4691
  25446. }
  25447. },
  25448. },
  25449. [
  25450. {
  25451. name: "Macro",
  25452. height: math.unit(21, "meters"),
  25453. default: true
  25454. },
  25455. ]
  25456. ))
  25457. characterMakers.push(() => makeCharacter(
  25458. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25459. {
  25460. front: {
  25461. height: math.unit(23, "meters"),
  25462. weight: math.unit(12.2, "tonnes"),
  25463. name: "Front",
  25464. image: {
  25465. source: "./media/characters/rakka/front.svg",
  25466. extra: 4670 / 4169,
  25467. bottom: 301 / 4968.7
  25468. }
  25469. },
  25470. },
  25471. [
  25472. {
  25473. name: "Macro",
  25474. height: math.unit(23, "meters"),
  25475. default: true
  25476. },
  25477. ]
  25478. ))
  25479. characterMakers.push(() => makeCharacter(
  25480. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25481. {
  25482. front: {
  25483. height: math.unit(6, "feet"),
  25484. weight: math.unit(150, "lb"),
  25485. name: "Front",
  25486. image: {
  25487. source: "./media/characters/rhys-feline/front.svg",
  25488. extra: 2488 / 2308,
  25489. bottom: 35.67 / 2519.19
  25490. }
  25491. },
  25492. },
  25493. [
  25494. {
  25495. name: "Really Small",
  25496. height: math.unit(1, "nm")
  25497. },
  25498. {
  25499. name: "Micro",
  25500. height: math.unit(4, "inches")
  25501. },
  25502. {
  25503. name: "Normal",
  25504. height: math.unit(4 + 10 / 12, "feet"),
  25505. default: true
  25506. },
  25507. {
  25508. name: "Macro",
  25509. height: math.unit(100, "feet")
  25510. },
  25511. {
  25512. name: "Megamacto",
  25513. height: math.unit(50, "miles")
  25514. },
  25515. ]
  25516. ))
  25517. characterMakers.push(() => makeCharacter(
  25518. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25519. {
  25520. side: {
  25521. height: math.unit(30, "feet"),
  25522. weight: math.unit(35000, "kg"),
  25523. name: "Side",
  25524. image: {
  25525. source: "./media/characters/alydar/side.svg",
  25526. extra: 234 / 222,
  25527. bottom: 6.5 / 241
  25528. }
  25529. },
  25530. front: {
  25531. height: math.unit(30, "feet"),
  25532. weight: math.unit(35000, "kg"),
  25533. name: "Front",
  25534. image: {
  25535. source: "./media/characters/alydar/front.svg",
  25536. extra: 223.37 / 210.2,
  25537. bottom: 22.3 / 246.76
  25538. }
  25539. },
  25540. top: {
  25541. height: math.unit(64.54, "feet"),
  25542. weight: math.unit(35000, "kg"),
  25543. name: "Top",
  25544. image: {
  25545. source: "./media/characters/alydar/top.svg"
  25546. }
  25547. },
  25548. anthro: {
  25549. height: math.unit(30, "feet"),
  25550. weight: math.unit(9000, "kg"),
  25551. name: "Anthro",
  25552. image: {
  25553. source: "./media/characters/alydar/anthro.svg",
  25554. extra: 432 / 421,
  25555. bottom: 7.18 / 440
  25556. }
  25557. },
  25558. maw: {
  25559. height: math.unit(11.693, "feet"),
  25560. name: "Maw",
  25561. image: {
  25562. source: "./media/characters/alydar/maw.svg"
  25563. }
  25564. },
  25565. head: {
  25566. height: math.unit(11.693, "feet"),
  25567. name: "Head",
  25568. image: {
  25569. source: "./media/characters/alydar/head.svg"
  25570. }
  25571. },
  25572. headAlt: {
  25573. height: math.unit(12.861, "feet"),
  25574. name: "Head (Alt)",
  25575. image: {
  25576. source: "./media/characters/alydar/head-alt.svg"
  25577. }
  25578. },
  25579. wing: {
  25580. height: math.unit(20.712, "feet"),
  25581. name: "Wing",
  25582. image: {
  25583. source: "./media/characters/alydar/wing.svg"
  25584. }
  25585. },
  25586. wingFeather: {
  25587. height: math.unit(9.662, "feet"),
  25588. name: "Wing Feather",
  25589. image: {
  25590. source: "./media/characters/alydar/wing-feather.svg"
  25591. }
  25592. },
  25593. countourFeather: {
  25594. height: math.unit(4.154, "feet"),
  25595. name: "Contour Feather",
  25596. image: {
  25597. source: "./media/characters/alydar/contour-feather.svg"
  25598. }
  25599. },
  25600. },
  25601. [
  25602. {
  25603. name: "Diplomatic",
  25604. height: math.unit(13, "feet"),
  25605. default: true
  25606. },
  25607. {
  25608. name: "Small",
  25609. height: math.unit(30, "feet")
  25610. },
  25611. {
  25612. name: "Normal",
  25613. height: math.unit(95, "feet"),
  25614. default: true
  25615. },
  25616. {
  25617. name: "Large",
  25618. height: math.unit(285, "feet")
  25619. },
  25620. {
  25621. name: "Incomprehensible",
  25622. height: math.unit(450, "megameters")
  25623. },
  25624. ]
  25625. ))
  25626. characterMakers.push(() => makeCharacter(
  25627. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25628. {
  25629. side: {
  25630. height: math.unit(11, "feet"),
  25631. weight: math.unit(1750, "kg"),
  25632. name: "Side",
  25633. image: {
  25634. source: "./media/characters/selicia/side.svg",
  25635. extra: 440 / 396,
  25636. bottom: 24.8 / 465.979
  25637. }
  25638. },
  25639. maw: {
  25640. height: math.unit(4.665, "feet"),
  25641. name: "Maw",
  25642. image: {
  25643. source: "./media/characters/selicia/maw.svg"
  25644. }
  25645. },
  25646. },
  25647. [
  25648. {
  25649. name: "Normal",
  25650. height: math.unit(11, "feet"),
  25651. default: true
  25652. },
  25653. ]
  25654. ))
  25655. characterMakers.push(() => makeCharacter(
  25656. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25657. {
  25658. side: {
  25659. height: math.unit(2 + 6 / 12, "feet"),
  25660. weight: math.unit(30, "lb"),
  25661. name: "Side",
  25662. image: {
  25663. source: "./media/characters/layla/side.svg",
  25664. extra: 244 / 188,
  25665. bottom: 18.2 / 262.1
  25666. }
  25667. },
  25668. back: {
  25669. height: math.unit(2 + 6 / 12, "feet"),
  25670. weight: math.unit(30, "lb"),
  25671. name: "Back",
  25672. image: {
  25673. source: "./media/characters/layla/back.svg",
  25674. extra: 308 / 241.5,
  25675. bottom: 8.9 / 316.8
  25676. }
  25677. },
  25678. cumming: {
  25679. height: math.unit(2 + 6 / 12, "feet"),
  25680. weight: math.unit(30, "lb"),
  25681. name: "Cumming",
  25682. image: {
  25683. source: "./media/characters/layla/cumming.svg",
  25684. extra: 342 / 279,
  25685. bottom: 595 / 938
  25686. }
  25687. },
  25688. dickFlaccid: {
  25689. height: math.unit(2.595, "feet"),
  25690. name: "Flaccid Genitals",
  25691. image: {
  25692. source: "./media/characters/layla/dick-flaccid.svg"
  25693. }
  25694. },
  25695. dickErect: {
  25696. height: math.unit(2.359, "feet"),
  25697. name: "Erect Genitals",
  25698. image: {
  25699. source: "./media/characters/layla/dick-erect.svg"
  25700. }
  25701. },
  25702. dragon: {
  25703. height: math.unit(40, "feet"),
  25704. name: "Dragon",
  25705. image: {
  25706. source: "./media/characters/layla/dragon.svg",
  25707. extra: 610/535,
  25708. bottom: 367/977
  25709. }
  25710. },
  25711. taur: {
  25712. height: math.unit(30, "feet"),
  25713. name: "Taur",
  25714. image: {
  25715. source: "./media/characters/layla/taur.svg",
  25716. extra: 1268/1199,
  25717. bottom: 112/1380
  25718. }
  25719. },
  25720. },
  25721. [
  25722. {
  25723. name: "Micro",
  25724. height: math.unit(1, "inch")
  25725. },
  25726. {
  25727. name: "Small",
  25728. height: math.unit(1, "foot")
  25729. },
  25730. {
  25731. name: "Normal",
  25732. height: math.unit(2 + 6 / 12, "feet"),
  25733. default: true
  25734. },
  25735. {
  25736. name: "Macro",
  25737. height: math.unit(200, "feet")
  25738. },
  25739. {
  25740. name: "Megamacro",
  25741. height: math.unit(1000, "miles")
  25742. },
  25743. {
  25744. name: "Planetary",
  25745. height: math.unit(8000, "miles")
  25746. },
  25747. {
  25748. name: "True Layla",
  25749. height: math.unit(200000 * 7, "multiverses")
  25750. },
  25751. ]
  25752. ))
  25753. characterMakers.push(() => makeCharacter(
  25754. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25755. {
  25756. back: {
  25757. height: math.unit(10.5, "feet"),
  25758. weight: math.unit(800, "lb"),
  25759. name: "Back",
  25760. image: {
  25761. source: "./media/characters/knox/back.svg",
  25762. extra: 1486 / 1089,
  25763. bottom: 107 / 1601.4
  25764. }
  25765. },
  25766. side: {
  25767. height: math.unit(10.5, "feet"),
  25768. weight: math.unit(800, "lb"),
  25769. name: "Side",
  25770. image: {
  25771. source: "./media/characters/knox/side.svg",
  25772. extra: 244 / 218,
  25773. bottom: 14 / 260
  25774. }
  25775. },
  25776. },
  25777. [
  25778. {
  25779. name: "Compact",
  25780. height: math.unit(10.5, "feet"),
  25781. default: true
  25782. },
  25783. {
  25784. name: "Dynamax",
  25785. height: math.unit(210, "feet")
  25786. },
  25787. {
  25788. name: "Full Macro",
  25789. height: math.unit(850, "feet")
  25790. },
  25791. ]
  25792. ))
  25793. characterMakers.push(() => makeCharacter(
  25794. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25795. {
  25796. front: {
  25797. height: math.unit(28, "feet"),
  25798. weight: math.unit(10500, "lb"),
  25799. name: "Front",
  25800. image: {
  25801. source: "./media/characters/kayda/front.svg",
  25802. extra: 1536 / 1428,
  25803. bottom: 68.7 / 1603
  25804. }
  25805. },
  25806. back: {
  25807. height: math.unit(28, "feet"),
  25808. weight: math.unit(10500, "lb"),
  25809. name: "Back",
  25810. image: {
  25811. source: "./media/characters/kayda/back.svg",
  25812. extra: 1557 / 1464,
  25813. bottom: 39.5 / 1597.49
  25814. }
  25815. },
  25816. dick: {
  25817. height: math.unit(3.858, "feet"),
  25818. name: "Dick",
  25819. image: {
  25820. source: "./media/characters/kayda/dick.svg"
  25821. }
  25822. },
  25823. },
  25824. [
  25825. {
  25826. name: "Macro",
  25827. height: math.unit(28, "feet"),
  25828. default: true
  25829. },
  25830. ]
  25831. ))
  25832. characterMakers.push(() => makeCharacter(
  25833. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25834. {
  25835. front: {
  25836. height: math.unit(10 + 11 / 12, "feet"),
  25837. weight: math.unit(1400, "lb"),
  25838. name: "Front",
  25839. image: {
  25840. source: "./media/characters/brian/front.svg",
  25841. extra: 737 / 692,
  25842. bottom: 55.4 / 785
  25843. }
  25844. },
  25845. },
  25846. [
  25847. {
  25848. name: "Normal",
  25849. height: math.unit(10 + 11 / 12, "feet"),
  25850. default: true
  25851. },
  25852. ]
  25853. ))
  25854. characterMakers.push(() => makeCharacter(
  25855. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25856. {
  25857. front: {
  25858. height: math.unit(5 + 8 / 12, "feet"),
  25859. weight: math.unit(140, "lb"),
  25860. name: "Front",
  25861. image: {
  25862. source: "./media/characters/khemri/front.svg",
  25863. extra: 4780 / 4059,
  25864. bottom: 80.1 / 4859.25
  25865. }
  25866. },
  25867. },
  25868. [
  25869. {
  25870. name: "Micro",
  25871. height: math.unit(6, "inches")
  25872. },
  25873. {
  25874. name: "Normal",
  25875. height: math.unit(5 + 8 / 12, "feet"),
  25876. default: true
  25877. },
  25878. ]
  25879. ))
  25880. characterMakers.push(() => makeCharacter(
  25881. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25882. {
  25883. front: {
  25884. height: math.unit(13, "feet"),
  25885. weight: math.unit(1700, "lb"),
  25886. name: "Front",
  25887. image: {
  25888. source: "./media/characters/felix-braveheart/front.svg",
  25889. extra: 1222 / 1157,
  25890. bottom: 53.2 / 1280
  25891. }
  25892. },
  25893. back: {
  25894. height: math.unit(13, "feet"),
  25895. weight: math.unit(1700, "lb"),
  25896. name: "Back",
  25897. image: {
  25898. source: "./media/characters/felix-braveheart/back.svg",
  25899. extra: 1277 / 1203,
  25900. bottom: 50.2 / 1327
  25901. }
  25902. },
  25903. feral: {
  25904. height: math.unit(6, "feet"),
  25905. weight: math.unit(400, "lb"),
  25906. name: "Feral",
  25907. image: {
  25908. source: "./media/characters/felix-braveheart/feral.svg",
  25909. extra: 682 / 625,
  25910. bottom: 6.9 / 688
  25911. }
  25912. },
  25913. },
  25914. [
  25915. {
  25916. name: "Normal",
  25917. height: math.unit(13, "feet"),
  25918. default: true
  25919. },
  25920. ]
  25921. ))
  25922. characterMakers.push(() => makeCharacter(
  25923. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25924. {
  25925. side: {
  25926. height: math.unit(5 + 11 / 12, "feet"),
  25927. weight: math.unit(1400, "lb"),
  25928. name: "Side",
  25929. image: {
  25930. source: "./media/characters/shadow-blade/side.svg",
  25931. extra: 1726 / 1267,
  25932. bottom: 58.4 / 1785
  25933. }
  25934. },
  25935. },
  25936. [
  25937. {
  25938. name: "Normal",
  25939. height: math.unit(5 + 11 / 12, "feet"),
  25940. default: true
  25941. },
  25942. ]
  25943. ))
  25944. characterMakers.push(() => makeCharacter(
  25945. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25946. {
  25947. front: {
  25948. height: math.unit(1 + 6 / 12, "feet"),
  25949. weight: math.unit(25, "lb"),
  25950. name: "Front",
  25951. image: {
  25952. source: "./media/characters/karla-halldor/front.svg",
  25953. extra: 1459 / 1383,
  25954. bottom: 12 / 1472
  25955. }
  25956. },
  25957. },
  25958. [
  25959. {
  25960. name: "Normal",
  25961. height: math.unit(1 + 6 / 12, "feet"),
  25962. default: true
  25963. },
  25964. ]
  25965. ))
  25966. characterMakers.push(() => makeCharacter(
  25967. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25968. {
  25969. front: {
  25970. height: math.unit(6 + 2 / 12, "feet"),
  25971. weight: math.unit(160, "lb"),
  25972. name: "Front",
  25973. image: {
  25974. source: "./media/characters/ariam/front.svg",
  25975. extra: 1073/976,
  25976. bottom: 52/1125
  25977. }
  25978. },
  25979. back: {
  25980. height: math.unit(6 + 2/12, "feet"),
  25981. weight: math.unit(160, "lb"),
  25982. name: "Back",
  25983. image: {
  25984. source: "./media/characters/ariam/back.svg",
  25985. extra: 1103/1023,
  25986. bottom: 9/1112
  25987. }
  25988. },
  25989. dressed: {
  25990. height: math.unit(6 + 2/12, "feet"),
  25991. weight: math.unit(160, "lb"),
  25992. name: "Dressed",
  25993. image: {
  25994. source: "./media/characters/ariam/dressed.svg",
  25995. extra: 1099/1009,
  25996. bottom: 25/1124
  25997. }
  25998. },
  25999. squatting: {
  26000. height: math.unit(4.1, "feet"),
  26001. weight: math.unit(160, "lb"),
  26002. name: "Squatting",
  26003. image: {
  26004. source: "./media/characters/ariam/squatting.svg",
  26005. extra: 2617 / 2112,
  26006. bottom: 61.2 / 2681,
  26007. }
  26008. },
  26009. },
  26010. [
  26011. {
  26012. name: "Normal",
  26013. height: math.unit(6 + 2 / 12, "feet"),
  26014. default: true
  26015. },
  26016. {
  26017. name: "Normal+",
  26018. height: math.unit(4, "meters")
  26019. },
  26020. {
  26021. name: "Macro",
  26022. height: math.unit(50, "meters")
  26023. },
  26024. {
  26025. name: "Macro+",
  26026. height: math.unit(100, "meters")
  26027. },
  26028. {
  26029. name: "Megamacro",
  26030. height: math.unit(20, "km")
  26031. },
  26032. {
  26033. name: "Caretaker",
  26034. height: math.unit(444, "megameters")
  26035. },
  26036. ]
  26037. ))
  26038. characterMakers.push(() => makeCharacter(
  26039. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26040. {
  26041. front: {
  26042. height: math.unit(1.67, "meters"),
  26043. weight: math.unit(140, "lb"),
  26044. name: "Front",
  26045. image: {
  26046. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26047. extra: 438 / 410,
  26048. bottom: 0.75 / 439
  26049. }
  26050. },
  26051. },
  26052. [
  26053. {
  26054. name: "Shrunken",
  26055. height: math.unit(7.6, "cm")
  26056. },
  26057. {
  26058. name: "Human Scale",
  26059. height: math.unit(1.67, "meters")
  26060. },
  26061. {
  26062. name: "Wolxi Scale",
  26063. height: math.unit(36.7, "meters"),
  26064. default: true
  26065. },
  26066. ]
  26067. ))
  26068. characterMakers.push(() => makeCharacter(
  26069. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26070. {
  26071. front: {
  26072. height: math.unit(1.73, "meters"),
  26073. weight: math.unit(240, "lb"),
  26074. name: "Front",
  26075. image: {
  26076. source: "./media/characters/izue-two-mothers/front.svg",
  26077. extra: 469 / 437,
  26078. bottom: 1.24 / 470.6
  26079. }
  26080. },
  26081. },
  26082. [
  26083. {
  26084. name: "Shrunken",
  26085. height: math.unit(7.86, "cm")
  26086. },
  26087. {
  26088. name: "Human Scale",
  26089. height: math.unit(1.73, "meters")
  26090. },
  26091. {
  26092. name: "Wolxi Scale",
  26093. height: math.unit(38, "meters"),
  26094. default: true
  26095. },
  26096. ]
  26097. ))
  26098. characterMakers.push(() => makeCharacter(
  26099. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26100. {
  26101. front: {
  26102. height: math.unit(1.55, "meters"),
  26103. weight: math.unit(120, "lb"),
  26104. name: "Front",
  26105. image: {
  26106. source: "./media/characters/teeku-love-shack/front.svg",
  26107. extra: 387 / 362,
  26108. bottom: 1.51 / 388
  26109. }
  26110. },
  26111. },
  26112. [
  26113. {
  26114. name: "Shrunken",
  26115. height: math.unit(7, "cm")
  26116. },
  26117. {
  26118. name: "Human Scale",
  26119. height: math.unit(1.55, "meters")
  26120. },
  26121. {
  26122. name: "Wolxi Scale",
  26123. height: math.unit(34.1, "meters"),
  26124. default: true
  26125. },
  26126. ]
  26127. ))
  26128. characterMakers.push(() => makeCharacter(
  26129. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26130. {
  26131. front: {
  26132. height: math.unit(1.83, "meters"),
  26133. weight: math.unit(135, "lb"),
  26134. name: "Front",
  26135. image: {
  26136. source: "./media/characters/dejma-the-red/front.svg",
  26137. extra: 480 / 458,
  26138. bottom: 1.8 / 482
  26139. }
  26140. },
  26141. },
  26142. [
  26143. {
  26144. name: "Shrunken",
  26145. height: math.unit(8.3, "cm")
  26146. },
  26147. {
  26148. name: "Human Scale",
  26149. height: math.unit(1.83, "meters")
  26150. },
  26151. {
  26152. name: "Wolxi Scale",
  26153. height: math.unit(40, "meters"),
  26154. default: true
  26155. },
  26156. ]
  26157. ))
  26158. characterMakers.push(() => makeCharacter(
  26159. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26160. {
  26161. front: {
  26162. height: math.unit(1.78, "meters"),
  26163. weight: math.unit(65, "kg"),
  26164. name: "Front",
  26165. image: {
  26166. source: "./media/characters/aki/front.svg",
  26167. extra: 452 / 415
  26168. }
  26169. },
  26170. frontNsfw: {
  26171. height: math.unit(1.78, "meters"),
  26172. weight: math.unit(65, "kg"),
  26173. name: "Front (NSFW)",
  26174. image: {
  26175. source: "./media/characters/aki/front-nsfw.svg",
  26176. extra: 452 / 415
  26177. }
  26178. },
  26179. back: {
  26180. height: math.unit(1.78, "meters"),
  26181. weight: math.unit(65, "kg"),
  26182. name: "Back",
  26183. image: {
  26184. source: "./media/characters/aki/back.svg",
  26185. extra: 452 / 415
  26186. }
  26187. },
  26188. rump: {
  26189. height: math.unit(2.05, "feet"),
  26190. name: "Rump",
  26191. image: {
  26192. source: "./media/characters/aki/rump.svg"
  26193. }
  26194. },
  26195. dick: {
  26196. height: math.unit(0.95, "feet"),
  26197. name: "Dick",
  26198. image: {
  26199. source: "./media/characters/aki/dick.svg"
  26200. }
  26201. },
  26202. },
  26203. [
  26204. {
  26205. name: "Micro",
  26206. height: math.unit(15, "cm")
  26207. },
  26208. {
  26209. name: "Normal",
  26210. height: math.unit(178, "cm"),
  26211. default: true
  26212. },
  26213. {
  26214. name: "Macro",
  26215. height: math.unit(214, "m")
  26216. },
  26217. {
  26218. name: "Macro+",
  26219. height: math.unit(534, "m")
  26220. },
  26221. ]
  26222. ))
  26223. characterMakers.push(() => makeCharacter(
  26224. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26225. {
  26226. front: {
  26227. height: math.unit(5 + 5 / 12, "feet"),
  26228. weight: math.unit(120, "lb"),
  26229. name: "Front",
  26230. image: {
  26231. source: "./media/characters/ari/front.svg",
  26232. extra: 1550/1471,
  26233. bottom: 39/1589
  26234. }
  26235. },
  26236. },
  26237. [
  26238. {
  26239. name: "Normal",
  26240. height: math.unit(5 + 5 / 12, "feet")
  26241. },
  26242. {
  26243. name: "Macro",
  26244. height: math.unit(100, "feet"),
  26245. default: true
  26246. },
  26247. {
  26248. name: "Megamacro",
  26249. height: math.unit(100, "miles")
  26250. },
  26251. {
  26252. name: "Gigamacro",
  26253. height: math.unit(80000, "miles")
  26254. },
  26255. ]
  26256. ))
  26257. characterMakers.push(() => makeCharacter(
  26258. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26259. {
  26260. side: {
  26261. height: math.unit(9, "feet"),
  26262. weight: math.unit(400, "kg"),
  26263. name: "Side",
  26264. image: {
  26265. source: "./media/characters/bolt/side.svg",
  26266. extra: 1126 / 896,
  26267. bottom: 60 / 1187.3,
  26268. }
  26269. },
  26270. },
  26271. [
  26272. {
  26273. name: "Micro",
  26274. height: math.unit(5, "inches")
  26275. },
  26276. {
  26277. name: "Normal",
  26278. height: math.unit(9, "feet"),
  26279. default: true
  26280. },
  26281. {
  26282. name: "Macro",
  26283. height: math.unit(700, "feet")
  26284. },
  26285. {
  26286. name: "Max Size",
  26287. height: math.unit(1.52e22, "yottameters")
  26288. },
  26289. ]
  26290. ))
  26291. characterMakers.push(() => makeCharacter(
  26292. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26293. {
  26294. front: {
  26295. height: math.unit(4.3, "meters"),
  26296. weight: math.unit(3, "tons"),
  26297. name: "Front",
  26298. image: {
  26299. source: "./media/characters/draekon-sylviar/front.svg",
  26300. extra: 2072/1512,
  26301. bottom: 74/2146
  26302. }
  26303. },
  26304. back: {
  26305. height: math.unit(4.3, "meters"),
  26306. weight: math.unit(3, "tons"),
  26307. name: "Back",
  26308. image: {
  26309. source: "./media/characters/draekon-sylviar/back.svg",
  26310. extra: 1639/1483,
  26311. bottom: 41/1680
  26312. }
  26313. },
  26314. feral: {
  26315. height: math.unit(1.15, "meters"),
  26316. weight: math.unit(3, "tons"),
  26317. name: "Feral",
  26318. image: {
  26319. source: "./media/characters/draekon-sylviar/feral.svg",
  26320. extra: 1033/395,
  26321. bottom: 130/1163
  26322. }
  26323. },
  26324. maw: {
  26325. height: math.unit(1.3, "meters"),
  26326. name: "Maw",
  26327. image: {
  26328. source: "./media/characters/draekon-sylviar/maw.svg"
  26329. }
  26330. },
  26331. mawSeparated: {
  26332. height: math.unit(1.53, "meters"),
  26333. name: "Separated Maw",
  26334. image: {
  26335. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26336. }
  26337. },
  26338. tail: {
  26339. height: math.unit(1.15, "meters"),
  26340. name: "Tail",
  26341. image: {
  26342. source: "./media/characters/draekon-sylviar/tail.svg"
  26343. }
  26344. },
  26345. tailDick: {
  26346. height: math.unit(1.15, "meters"),
  26347. name: "Tail (Dick)",
  26348. image: {
  26349. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26350. }
  26351. },
  26352. tailDickSeparated: {
  26353. height: math.unit(1.19, "meters"),
  26354. name: "Tail (Separated Dick)",
  26355. image: {
  26356. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26357. }
  26358. },
  26359. slit: {
  26360. height: math.unit(1, "meters"),
  26361. name: "Slit",
  26362. image: {
  26363. source: "./media/characters/draekon-sylviar/slit.svg"
  26364. }
  26365. },
  26366. dick: {
  26367. height: math.unit(1.15, "meters"),
  26368. name: "Dick",
  26369. image: {
  26370. source: "./media/characters/draekon-sylviar/dick.svg"
  26371. }
  26372. },
  26373. dickSeparated: {
  26374. height: math.unit(1.1, "meters"),
  26375. name: "Separated Dick",
  26376. image: {
  26377. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26378. }
  26379. },
  26380. sheath: {
  26381. height: math.unit(1.15, "meters"),
  26382. name: "Sheath",
  26383. image: {
  26384. source: "./media/characters/draekon-sylviar/sheath.svg"
  26385. }
  26386. },
  26387. },
  26388. [
  26389. {
  26390. name: "Small",
  26391. height: math.unit(4.53 / 2, "meters"),
  26392. default: true
  26393. },
  26394. {
  26395. name: "Normal",
  26396. height: math.unit(4.53, "meters"),
  26397. default: true
  26398. },
  26399. {
  26400. name: "Large",
  26401. height: math.unit(4.53 * 2, "meters"),
  26402. },
  26403. ]
  26404. ))
  26405. characterMakers.push(() => makeCharacter(
  26406. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26407. {
  26408. front: {
  26409. height: math.unit(6 + 2 / 12, "feet"),
  26410. weight: math.unit(180, "lb"),
  26411. name: "Front",
  26412. image: {
  26413. source: "./media/characters/brawler/front.svg",
  26414. extra: 3301 / 3027,
  26415. bottom: 138 / 3439
  26416. }
  26417. },
  26418. },
  26419. [
  26420. {
  26421. name: "Normal",
  26422. height: math.unit(6 + 2 / 12, "feet"),
  26423. default: true
  26424. },
  26425. ]
  26426. ))
  26427. characterMakers.push(() => makeCharacter(
  26428. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26429. {
  26430. front: {
  26431. height: math.unit(11, "feet"),
  26432. weight: math.unit(1000, "lb"),
  26433. name: "Front",
  26434. image: {
  26435. source: "./media/characters/alex/front.svg",
  26436. bottom: 44.5 / 620
  26437. }
  26438. },
  26439. },
  26440. [
  26441. {
  26442. name: "Micro",
  26443. height: math.unit(5, "inches")
  26444. },
  26445. {
  26446. name: "Normal",
  26447. height: math.unit(11, "feet"),
  26448. default: true
  26449. },
  26450. {
  26451. name: "Macro",
  26452. height: math.unit(9.5e9, "feet")
  26453. },
  26454. {
  26455. name: "Max Size",
  26456. height: math.unit(1.4e283, "yottameters")
  26457. },
  26458. ]
  26459. ))
  26460. characterMakers.push(() => makeCharacter(
  26461. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26462. {
  26463. female: {
  26464. height: math.unit(29.9, "m"),
  26465. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26466. name: "Female",
  26467. image: {
  26468. source: "./media/characters/zenari/female.svg",
  26469. extra: 3281.6 / 3217,
  26470. bottom: 72.2 / 3353
  26471. }
  26472. },
  26473. male: {
  26474. height: math.unit(27.7, "m"),
  26475. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26476. name: "Male",
  26477. image: {
  26478. source: "./media/characters/zenari/male.svg",
  26479. extra: 3008 / 2991,
  26480. bottom: 54.6 / 3069
  26481. }
  26482. },
  26483. },
  26484. [
  26485. {
  26486. name: "Macro",
  26487. height: math.unit(29.7, "meters"),
  26488. default: true
  26489. },
  26490. ]
  26491. ))
  26492. characterMakers.push(() => makeCharacter(
  26493. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26494. {
  26495. female: {
  26496. height: math.unit(23.8, "m"),
  26497. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26498. name: "Female",
  26499. image: {
  26500. source: "./media/characters/mactarian/female.svg",
  26501. extra: 2662 / 2569,
  26502. bottom: 73 / 2736
  26503. }
  26504. },
  26505. male: {
  26506. height: math.unit(23.8, "m"),
  26507. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26508. name: "Male",
  26509. image: {
  26510. source: "./media/characters/mactarian/male.svg",
  26511. extra: 2673 / 2600,
  26512. bottom: 76 / 2750
  26513. }
  26514. },
  26515. },
  26516. [
  26517. {
  26518. name: "Macro",
  26519. height: math.unit(23.8, "meters"),
  26520. default: true
  26521. },
  26522. ]
  26523. ))
  26524. characterMakers.push(() => makeCharacter(
  26525. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26526. {
  26527. female: {
  26528. height: math.unit(19.3, "m"),
  26529. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26530. name: "Female",
  26531. image: {
  26532. source: "./media/characters/umok/female.svg",
  26533. extra: 2186 / 2078,
  26534. bottom: 87 / 2277
  26535. }
  26536. },
  26537. male: {
  26538. height: math.unit(19.5, "m"),
  26539. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26540. name: "Male",
  26541. image: {
  26542. source: "./media/characters/umok/male.svg",
  26543. extra: 2233 / 2140,
  26544. bottom: 24.4 / 2258
  26545. }
  26546. },
  26547. },
  26548. [
  26549. {
  26550. name: "Macro",
  26551. height: math.unit(19.3, "meters"),
  26552. default: true
  26553. },
  26554. ]
  26555. ))
  26556. characterMakers.push(() => makeCharacter(
  26557. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26558. {
  26559. female: {
  26560. height: math.unit(26.15, "m"),
  26561. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26562. name: "Female",
  26563. image: {
  26564. source: "./media/characters/joraxian/female.svg",
  26565. extra: 2912 / 2824,
  26566. bottom: 36 / 2956
  26567. }
  26568. },
  26569. male: {
  26570. height: math.unit(25.4, "m"),
  26571. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26572. name: "Male",
  26573. image: {
  26574. source: "./media/characters/joraxian/male.svg",
  26575. extra: 2877 / 2721,
  26576. bottom: 82 / 2967
  26577. }
  26578. },
  26579. },
  26580. [
  26581. {
  26582. name: "Macro",
  26583. height: math.unit(26.15, "meters"),
  26584. default: true
  26585. },
  26586. ]
  26587. ))
  26588. characterMakers.push(() => makeCharacter(
  26589. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26590. {
  26591. female: {
  26592. height: math.unit(21.6, "m"),
  26593. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26594. name: "Female",
  26595. image: {
  26596. source: "./media/characters/sthara/female.svg",
  26597. extra: 2516 / 2347,
  26598. bottom: 21.5 / 2537
  26599. }
  26600. },
  26601. male: {
  26602. height: math.unit(24, "m"),
  26603. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26604. name: "Male",
  26605. image: {
  26606. source: "./media/characters/sthara/male.svg",
  26607. extra: 2732 / 2607,
  26608. bottom: 23 / 2732
  26609. }
  26610. },
  26611. },
  26612. [
  26613. {
  26614. name: "Macro",
  26615. height: math.unit(21.6, "meters"),
  26616. default: true
  26617. },
  26618. ]
  26619. ))
  26620. characterMakers.push(() => makeCharacter(
  26621. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26622. {
  26623. front: {
  26624. height: math.unit(6 + 4 / 12, "feet"),
  26625. weight: math.unit(175, "lb"),
  26626. name: "Front",
  26627. image: {
  26628. source: "./media/characters/luka-bryzant/front.svg",
  26629. extra: 311 / 289,
  26630. bottom: 4 / 315
  26631. }
  26632. },
  26633. back: {
  26634. height: math.unit(6 + 4 / 12, "feet"),
  26635. weight: math.unit(175, "lb"),
  26636. name: "Back",
  26637. image: {
  26638. source: "./media/characters/luka-bryzant/back.svg",
  26639. extra: 311 / 289,
  26640. bottom: 3.8 / 313.7
  26641. }
  26642. },
  26643. },
  26644. [
  26645. {
  26646. name: "Micro",
  26647. height: math.unit(10, "inches")
  26648. },
  26649. {
  26650. name: "Normal",
  26651. height: math.unit(6 + 4 / 12, "feet"),
  26652. default: true
  26653. },
  26654. {
  26655. name: "Large",
  26656. height: math.unit(12, "feet")
  26657. },
  26658. ]
  26659. ))
  26660. characterMakers.push(() => makeCharacter(
  26661. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26662. {
  26663. front: {
  26664. height: math.unit(5 + 7 / 12, "feet"),
  26665. weight: math.unit(185, "lb"),
  26666. name: "Front",
  26667. image: {
  26668. source: "./media/characters/aman-aquila/front.svg",
  26669. extra: 1013 / 976,
  26670. bottom: 45.6 / 1057
  26671. }
  26672. },
  26673. side: {
  26674. height: math.unit(5 + 7 / 12, "feet"),
  26675. weight: math.unit(185, "lb"),
  26676. name: "Side",
  26677. image: {
  26678. source: "./media/characters/aman-aquila/side.svg",
  26679. extra: 1054 / 1011,
  26680. bottom: 15 / 1070
  26681. }
  26682. },
  26683. back: {
  26684. height: math.unit(5 + 7 / 12, "feet"),
  26685. weight: math.unit(185, "lb"),
  26686. name: "Back",
  26687. image: {
  26688. source: "./media/characters/aman-aquila/back.svg",
  26689. extra: 1026 / 970,
  26690. bottom: 12 / 1039
  26691. }
  26692. },
  26693. head: {
  26694. height: math.unit(1.211, "feet"),
  26695. name: "Head",
  26696. image: {
  26697. source: "./media/characters/aman-aquila/head.svg",
  26698. }
  26699. },
  26700. },
  26701. [
  26702. {
  26703. name: "Minimicro",
  26704. height: math.unit(0.057, "inches")
  26705. },
  26706. {
  26707. name: "Micro",
  26708. height: math.unit(7, "inches")
  26709. },
  26710. {
  26711. name: "Mini",
  26712. height: math.unit(3 + 7 / 12, "feet")
  26713. },
  26714. {
  26715. name: "Normal",
  26716. height: math.unit(5 + 7 / 12, "feet"),
  26717. default: true
  26718. },
  26719. {
  26720. name: "Macro",
  26721. height: math.unit(157 + 7 / 12, "feet")
  26722. },
  26723. {
  26724. name: "Megamacro",
  26725. height: math.unit(1557 + 7 / 12, "feet")
  26726. },
  26727. {
  26728. name: "Gigamacro",
  26729. height: math.unit(15557 + 7 / 12, "feet")
  26730. },
  26731. ]
  26732. ))
  26733. characterMakers.push(() => makeCharacter(
  26734. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26735. {
  26736. front: {
  26737. height: math.unit(3 + 2 / 12, "inches"),
  26738. weight: math.unit(0.3, "ounces"),
  26739. name: "Front",
  26740. image: {
  26741. source: "./media/characters/hiphae/front.svg",
  26742. extra: 1931 / 1683,
  26743. bottom: 24 / 1955
  26744. }
  26745. },
  26746. },
  26747. [
  26748. {
  26749. name: "Normal",
  26750. height: math.unit(3 + 1 / 2, "inches"),
  26751. default: true
  26752. },
  26753. ]
  26754. ))
  26755. characterMakers.push(() => makeCharacter(
  26756. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26757. {
  26758. front: {
  26759. height: math.unit(5 + 10 / 12, "feet"),
  26760. weight: math.unit(165, "lb"),
  26761. name: "Front",
  26762. image: {
  26763. source: "./media/characters/nicky/front.svg",
  26764. extra: 3144 / 2886,
  26765. bottom: 45.6 / 3192
  26766. }
  26767. },
  26768. back: {
  26769. height: math.unit(5 + 10 / 12, "feet"),
  26770. weight: math.unit(165, "lb"),
  26771. name: "Back",
  26772. image: {
  26773. source: "./media/characters/nicky/back.svg",
  26774. extra: 3055 / 2804,
  26775. bottom: 28.4 / 3087
  26776. }
  26777. },
  26778. frontclothed: {
  26779. height: math.unit(5 + 10 / 12, "feet"),
  26780. weight: math.unit(165, "lb"),
  26781. name: "Front-clothed",
  26782. image: {
  26783. source: "./media/characters/nicky/front-clothed.svg",
  26784. extra: 3184.9 / 2926.9,
  26785. bottom: 86.5 / 3239.9
  26786. }
  26787. },
  26788. foot: {
  26789. height: math.unit(1.16, "feet"),
  26790. name: "Foot",
  26791. image: {
  26792. source: "./media/characters/nicky/foot.svg"
  26793. }
  26794. },
  26795. feet: {
  26796. height: math.unit(1.34, "feet"),
  26797. name: "Feet",
  26798. image: {
  26799. source: "./media/characters/nicky/feet.svg"
  26800. }
  26801. },
  26802. maw: {
  26803. height: math.unit(0.9, "feet"),
  26804. name: "Maw",
  26805. image: {
  26806. source: "./media/characters/nicky/maw.svg"
  26807. }
  26808. },
  26809. },
  26810. [
  26811. {
  26812. name: "Normal",
  26813. height: math.unit(5 + 10 / 12, "feet"),
  26814. default: true
  26815. },
  26816. {
  26817. name: "Macro",
  26818. height: math.unit(60, "feet")
  26819. },
  26820. {
  26821. name: "Megamacro",
  26822. height: math.unit(1, "mile")
  26823. },
  26824. ]
  26825. ))
  26826. characterMakers.push(() => makeCharacter(
  26827. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26828. {
  26829. side: {
  26830. height: math.unit(10, "feet"),
  26831. weight: math.unit(600, "lb"),
  26832. name: "Side",
  26833. image: {
  26834. source: "./media/characters/blair/side.svg",
  26835. bottom: 16.6 / 475,
  26836. extra: 458 / 431
  26837. }
  26838. },
  26839. },
  26840. [
  26841. {
  26842. name: "Micro",
  26843. height: math.unit(8, "inches")
  26844. },
  26845. {
  26846. name: "Normal",
  26847. height: math.unit(10, "feet"),
  26848. default: true
  26849. },
  26850. {
  26851. name: "Macro",
  26852. height: math.unit(180, "feet")
  26853. },
  26854. ]
  26855. ))
  26856. characterMakers.push(() => makeCharacter(
  26857. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26858. {
  26859. front: {
  26860. height: math.unit(5 + 4 / 12, "feet"),
  26861. weight: math.unit(125, "lb"),
  26862. name: "Front",
  26863. image: {
  26864. source: "./media/characters/fisher/front.svg",
  26865. extra: 444 / 390,
  26866. bottom: 2 / 444.8
  26867. }
  26868. },
  26869. },
  26870. [
  26871. {
  26872. name: "Micro",
  26873. height: math.unit(4, "inches")
  26874. },
  26875. {
  26876. name: "Normal",
  26877. height: math.unit(5 + 4 / 12, "feet"),
  26878. default: true
  26879. },
  26880. {
  26881. name: "Macro",
  26882. height: math.unit(100, "feet")
  26883. },
  26884. ]
  26885. ))
  26886. characterMakers.push(() => makeCharacter(
  26887. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26888. {
  26889. front: {
  26890. height: math.unit(6.71, "feet"),
  26891. weight: math.unit(200, "lb"),
  26892. preyCapacity: math.unit(1000000, "people"),
  26893. name: "Front",
  26894. image: {
  26895. source: "./media/characters/gliss/front.svg",
  26896. extra: 2347 / 2231,
  26897. bottom: 113 / 2462
  26898. }
  26899. },
  26900. hammerspaceSize: {
  26901. height: math.unit(6.71 * 717, "feet"),
  26902. weight: math.unit(200, "lb"),
  26903. preyCapacity: math.unit(1000000, "people"),
  26904. name: "Hammerspace Size",
  26905. image: {
  26906. source: "./media/characters/gliss/front.svg",
  26907. extra: 2347 / 2231,
  26908. bottom: 113 / 2462
  26909. }
  26910. },
  26911. },
  26912. [
  26913. {
  26914. name: "Normal",
  26915. height: math.unit(6.71, "feet"),
  26916. default: true
  26917. },
  26918. ]
  26919. ))
  26920. characterMakers.push(() => makeCharacter(
  26921. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26922. {
  26923. side: {
  26924. height: math.unit(1.44, "m"),
  26925. weight: math.unit(80, "kg"),
  26926. name: "Side",
  26927. image: {
  26928. source: "./media/characters/dune-anderson/side.svg",
  26929. bottom: 49 / 1426
  26930. }
  26931. },
  26932. },
  26933. [
  26934. {
  26935. name: "Wolf-sized",
  26936. height: math.unit(1.44, "meters")
  26937. },
  26938. {
  26939. name: "Normal",
  26940. height: math.unit(5.05, "meters"),
  26941. default: true
  26942. },
  26943. {
  26944. name: "Big",
  26945. height: math.unit(14.4, "meters")
  26946. },
  26947. {
  26948. name: "Huge",
  26949. height: math.unit(144, "meters")
  26950. },
  26951. ]
  26952. ))
  26953. characterMakers.push(() => makeCharacter(
  26954. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26955. {
  26956. front: {
  26957. height: math.unit(7, "feet"),
  26958. weight: math.unit(425, "lb"),
  26959. name: "Front",
  26960. image: {
  26961. source: "./media/characters/hind/front.svg",
  26962. extra: 2091 / 1860,
  26963. bottom: 129 / 2220
  26964. }
  26965. },
  26966. back: {
  26967. height: math.unit(7, "feet"),
  26968. weight: math.unit(425, "lb"),
  26969. name: "Back",
  26970. image: {
  26971. source: "./media/characters/hind/back.svg",
  26972. extra: 2091 / 1860,
  26973. bottom: 24.6 / 2309
  26974. }
  26975. },
  26976. tail: {
  26977. height: math.unit(2.8, "feet"),
  26978. name: "Tail",
  26979. image: {
  26980. source: "./media/characters/hind/tail.svg"
  26981. }
  26982. },
  26983. head: {
  26984. height: math.unit(2.55, "feet"),
  26985. name: "Head",
  26986. image: {
  26987. source: "./media/characters/hind/head.svg"
  26988. }
  26989. },
  26990. },
  26991. [
  26992. {
  26993. name: "XS",
  26994. height: math.unit(0.7, "feet")
  26995. },
  26996. {
  26997. name: "Normal",
  26998. height: math.unit(7, "feet"),
  26999. default: true
  27000. },
  27001. {
  27002. name: "XL",
  27003. height: math.unit(70, "feet")
  27004. },
  27005. ]
  27006. ))
  27007. characterMakers.push(() => makeCharacter(
  27008. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27009. {
  27010. front: {
  27011. height: math.unit(2.1, "meters"),
  27012. weight: math.unit(150, "lb"),
  27013. name: "Front",
  27014. image: {
  27015. source: "./media/characters/tharquench-sizestealer/front.svg",
  27016. extra: 1605/1470,
  27017. bottom: 36/1641
  27018. }
  27019. },
  27020. frontAlt: {
  27021. height: math.unit(2.1, "meters"),
  27022. weight: math.unit(150, "lb"),
  27023. name: "Front (Alt)",
  27024. image: {
  27025. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27026. extra: 2318 / 2063,
  27027. bottom: 93.4 / 2410
  27028. }
  27029. },
  27030. },
  27031. [
  27032. {
  27033. name: "Nano",
  27034. height: math.unit(1, "mm")
  27035. },
  27036. {
  27037. name: "Micro",
  27038. height: math.unit(1, "cm")
  27039. },
  27040. {
  27041. name: "Normal",
  27042. height: math.unit(2.1, "meters"),
  27043. default: true
  27044. },
  27045. ]
  27046. ))
  27047. characterMakers.push(() => makeCharacter(
  27048. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27049. {
  27050. front: {
  27051. height: math.unit(7 + 5 / 12, "feet"),
  27052. weight: math.unit(357, "lb"),
  27053. name: "Front",
  27054. image: {
  27055. source: "./media/characters/solex-draconov/front.svg",
  27056. extra: 1993 / 1865,
  27057. bottom: 117 / 2111
  27058. }
  27059. },
  27060. },
  27061. [
  27062. {
  27063. name: "Natural Height",
  27064. height: math.unit(7 + 5 / 12, "feet"),
  27065. default: true
  27066. },
  27067. {
  27068. name: "Macro",
  27069. height: math.unit(350, "feet")
  27070. },
  27071. {
  27072. name: "Macro+",
  27073. height: math.unit(1000, "feet")
  27074. },
  27075. {
  27076. name: "Megamacro",
  27077. height: math.unit(20, "km")
  27078. },
  27079. {
  27080. name: "Megamacro+",
  27081. height: math.unit(1000, "km")
  27082. },
  27083. {
  27084. name: "Gigamacro",
  27085. height: math.unit(2.5, "Gm")
  27086. },
  27087. {
  27088. name: "Teramacro",
  27089. height: math.unit(15, "Tm")
  27090. },
  27091. {
  27092. name: "Galactic",
  27093. height: math.unit(30, "Zm")
  27094. },
  27095. {
  27096. name: "Universal",
  27097. height: math.unit(21000, "Ym")
  27098. },
  27099. {
  27100. name: "Omniversal",
  27101. height: math.unit(9.861e50, "Ym")
  27102. },
  27103. {
  27104. name: "Existential",
  27105. height: math.unit(1e300, "meters")
  27106. },
  27107. ]
  27108. ))
  27109. characterMakers.push(() => makeCharacter(
  27110. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27111. {
  27112. side: {
  27113. height: math.unit(25, "feet"),
  27114. weight: math.unit(90000, "lb"),
  27115. name: "Side",
  27116. image: {
  27117. source: "./media/characters/mandarax/side.svg",
  27118. extra: 614 / 332,
  27119. bottom: 55 / 630
  27120. }
  27121. },
  27122. lounging: {
  27123. height: math.unit(15.4, "feet"),
  27124. weight: math.unit(90000, "lb"),
  27125. name: "Lounging",
  27126. image: {
  27127. source: "./media/characters/mandarax/lounging.svg",
  27128. extra: 817/609,
  27129. bottom: 685/1502
  27130. }
  27131. },
  27132. head: {
  27133. height: math.unit(11.4, "feet"),
  27134. name: "Head",
  27135. image: {
  27136. source: "./media/characters/mandarax/head.svg"
  27137. }
  27138. },
  27139. belly: {
  27140. height: math.unit(33, "feet"),
  27141. name: "Belly",
  27142. preyCapacity: math.unit(500, "people"),
  27143. image: {
  27144. source: "./media/characters/mandarax/belly.svg"
  27145. }
  27146. },
  27147. dick: {
  27148. height: math.unit(8.46, "feet"),
  27149. name: "Dick",
  27150. image: {
  27151. source: "./media/characters/mandarax/dick.svg"
  27152. }
  27153. },
  27154. top: {
  27155. height: math.unit(28, "meters"),
  27156. name: "Top",
  27157. image: {
  27158. source: "./media/characters/mandarax/top.svg"
  27159. }
  27160. },
  27161. },
  27162. [
  27163. {
  27164. name: "Normal",
  27165. height: math.unit(25, "feet"),
  27166. default: true
  27167. },
  27168. ]
  27169. ))
  27170. characterMakers.push(() => makeCharacter(
  27171. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27172. {
  27173. front: {
  27174. height: math.unit(5, "feet"),
  27175. weight: math.unit(90, "lb"),
  27176. name: "Front",
  27177. image: {
  27178. source: "./media/characters/pixil/front.svg",
  27179. extra: 2000 / 1618,
  27180. bottom: 12.3 / 2011
  27181. }
  27182. },
  27183. },
  27184. [
  27185. {
  27186. name: "Normal",
  27187. height: math.unit(5, "feet"),
  27188. default: true
  27189. },
  27190. {
  27191. name: "Megamacro",
  27192. height: math.unit(10, "miles"),
  27193. },
  27194. ]
  27195. ))
  27196. characterMakers.push(() => makeCharacter(
  27197. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27198. {
  27199. front: {
  27200. height: math.unit(7 + 2 / 12, "feet"),
  27201. weight: math.unit(200, "lb"),
  27202. name: "Front",
  27203. image: {
  27204. source: "./media/characters/angel/front.svg",
  27205. extra: 1830 / 1737,
  27206. bottom: 22.6 / 1854,
  27207. }
  27208. },
  27209. },
  27210. [
  27211. {
  27212. name: "Normal",
  27213. height: math.unit(7 + 2 / 12, "feet"),
  27214. default: true
  27215. },
  27216. {
  27217. name: "Macro",
  27218. height: math.unit(1000, "feet")
  27219. },
  27220. {
  27221. name: "Megamacro",
  27222. height: math.unit(2, "miles")
  27223. },
  27224. {
  27225. name: "Gigamacro",
  27226. height: math.unit(20, "earths")
  27227. },
  27228. ]
  27229. ))
  27230. characterMakers.push(() => makeCharacter(
  27231. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27232. {
  27233. front: {
  27234. height: math.unit(5, "feet"),
  27235. weight: math.unit(180, "lb"),
  27236. name: "Front",
  27237. image: {
  27238. source: "./media/characters/mekana/front.svg",
  27239. extra: 1671 / 1605,
  27240. bottom: 3.5 / 1691
  27241. }
  27242. },
  27243. side: {
  27244. height: math.unit(5, "feet"),
  27245. weight: math.unit(180, "lb"),
  27246. name: "Side",
  27247. image: {
  27248. source: "./media/characters/mekana/side.svg",
  27249. extra: 1671 / 1605,
  27250. bottom: 3.5 / 1691
  27251. }
  27252. },
  27253. back: {
  27254. height: math.unit(5, "feet"),
  27255. weight: math.unit(180, "lb"),
  27256. name: "Back",
  27257. image: {
  27258. source: "./media/characters/mekana/back.svg",
  27259. extra: 1671 / 1605,
  27260. bottom: 3.5 / 1691
  27261. }
  27262. },
  27263. },
  27264. [
  27265. {
  27266. name: "Normal",
  27267. height: math.unit(5, "feet"),
  27268. default: true
  27269. },
  27270. ]
  27271. ))
  27272. characterMakers.push(() => makeCharacter(
  27273. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27274. {
  27275. front: {
  27276. height: math.unit(4 + 6 / 12, "feet"),
  27277. weight: math.unit(80, "lb"),
  27278. name: "Front",
  27279. image: {
  27280. source: "./media/characters/pixie/front.svg",
  27281. extra: 1924 / 1825,
  27282. bottom: 22.4 / 1946
  27283. }
  27284. },
  27285. },
  27286. [
  27287. {
  27288. name: "Normal",
  27289. height: math.unit(4 + 6 / 12, "feet"),
  27290. default: true
  27291. },
  27292. {
  27293. name: "Macro",
  27294. height: math.unit(40, "feet")
  27295. },
  27296. ]
  27297. ))
  27298. characterMakers.push(() => makeCharacter(
  27299. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27300. {
  27301. front: {
  27302. height: math.unit(2.1, "meters"),
  27303. weight: math.unit(200, "lb"),
  27304. name: "Front",
  27305. image: {
  27306. source: "./media/characters/the-lascivious/front.svg",
  27307. extra: 1 / 0.893,
  27308. bottom: 3.5 / 573.7
  27309. }
  27310. },
  27311. },
  27312. [
  27313. {
  27314. name: "Human Scale",
  27315. height: math.unit(2.1, "meters")
  27316. },
  27317. {
  27318. name: "Wolxi Scale",
  27319. height: math.unit(46.2, "m"),
  27320. default: true
  27321. },
  27322. {
  27323. name: "Boinker of Buildings",
  27324. height: math.unit(10, "km")
  27325. },
  27326. {
  27327. name: "Shagger of Skyscrapers",
  27328. height: math.unit(40, "km")
  27329. },
  27330. {
  27331. name: "Banger of Boroughs",
  27332. height: math.unit(4000, "km")
  27333. },
  27334. {
  27335. name: "Screwer of States",
  27336. height: math.unit(100000, "km")
  27337. },
  27338. {
  27339. name: "Pounder of Planets",
  27340. height: math.unit(2000000, "km")
  27341. },
  27342. ]
  27343. ))
  27344. characterMakers.push(() => makeCharacter(
  27345. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27346. {
  27347. front: {
  27348. height: math.unit(6, "feet"),
  27349. weight: math.unit(150, "lb"),
  27350. name: "Front",
  27351. image: {
  27352. source: "./media/characters/aj/front.svg",
  27353. extra: 2039 / 1562,
  27354. bottom: 40 / 2079
  27355. }
  27356. },
  27357. },
  27358. [
  27359. {
  27360. name: "Normal",
  27361. height: math.unit(11 + 6 / 12, "feet"),
  27362. default: true
  27363. },
  27364. {
  27365. name: "Megamacro",
  27366. height: math.unit(60, "megameters")
  27367. },
  27368. ]
  27369. ))
  27370. characterMakers.push(() => makeCharacter(
  27371. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27372. {
  27373. side: {
  27374. height: math.unit(31 + 8 / 12, "feet"),
  27375. weight: math.unit(75000, "kg"),
  27376. name: "Side",
  27377. image: {
  27378. source: "./media/characters/koros/side.svg",
  27379. extra: 1442 / 1297,
  27380. bottom: 122.7 / 1562
  27381. }
  27382. },
  27383. dicksKingsCrown: {
  27384. height: math.unit(6, "feet"),
  27385. name: "Dicks (King's Crown)",
  27386. image: {
  27387. source: "./media/characters/koros/dicks-kings-crown.svg"
  27388. }
  27389. },
  27390. dicksTailSet: {
  27391. height: math.unit(3, "feet"),
  27392. name: "Dicks (Tail Set)",
  27393. image: {
  27394. source: "./media/characters/koros/dicks-tail-set.svg"
  27395. }
  27396. },
  27397. dickCumming: {
  27398. height: math.unit(7.98, "feet"),
  27399. name: "Dick (Cumming)",
  27400. image: {
  27401. source: "./media/characters/koros/dick-cumming.svg"
  27402. }
  27403. },
  27404. dicksBack: {
  27405. height: math.unit(5.9, "feet"),
  27406. name: "Dicks (Back)",
  27407. image: {
  27408. source: "./media/characters/koros/dicks-back.svg"
  27409. }
  27410. },
  27411. dicksFront: {
  27412. height: math.unit(3.72, "feet"),
  27413. name: "Dicks (Front)",
  27414. image: {
  27415. source: "./media/characters/koros/dicks-front.svg"
  27416. }
  27417. },
  27418. dicksPeeking: {
  27419. height: math.unit(3.0, "feet"),
  27420. name: "Dicks (Peeking)",
  27421. image: {
  27422. source: "./media/characters/koros/dicks-peeking.svg"
  27423. }
  27424. },
  27425. eye: {
  27426. height: math.unit(1.7, "feet"),
  27427. name: "Eye",
  27428. image: {
  27429. source: "./media/characters/koros/eye.svg"
  27430. }
  27431. },
  27432. headFront: {
  27433. height: math.unit(11.69, "feet"),
  27434. name: "Head (Front)",
  27435. image: {
  27436. source: "./media/characters/koros/head-front.svg"
  27437. }
  27438. },
  27439. headSide: {
  27440. height: math.unit(14, "feet"),
  27441. name: "Head (Side)",
  27442. image: {
  27443. source: "./media/characters/koros/head-side.svg"
  27444. }
  27445. },
  27446. leg: {
  27447. height: math.unit(17, "feet"),
  27448. name: "Leg",
  27449. image: {
  27450. source: "./media/characters/koros/leg.svg"
  27451. }
  27452. },
  27453. mawSide: {
  27454. height: math.unit(12.8, "feet"),
  27455. name: "Maw (Side)",
  27456. image: {
  27457. source: "./media/characters/koros/maw-side.svg"
  27458. }
  27459. },
  27460. mawSpitting: {
  27461. height: math.unit(17, "feet"),
  27462. name: "Maw (Spitting)",
  27463. image: {
  27464. source: "./media/characters/koros/maw-spitting.svg"
  27465. }
  27466. },
  27467. slit: {
  27468. height: math.unit(2.8, "feet"),
  27469. name: "Slit",
  27470. image: {
  27471. source: "./media/characters/koros/slit.svg"
  27472. }
  27473. },
  27474. stomach: {
  27475. height: math.unit(6.8, "feet"),
  27476. preyCapacity: math.unit(20, "people"),
  27477. name: "Stomach",
  27478. image: {
  27479. source: "./media/characters/koros/stomach.svg"
  27480. }
  27481. },
  27482. wingspanBottom: {
  27483. height: math.unit(114, "feet"),
  27484. name: "Wingspan (Bottom)",
  27485. image: {
  27486. source: "./media/characters/koros/wingspan-bottom.svg"
  27487. }
  27488. },
  27489. wingspanTop: {
  27490. height: math.unit(104, "feet"),
  27491. name: "Wingspan (Top)",
  27492. image: {
  27493. source: "./media/characters/koros/wingspan-top.svg"
  27494. }
  27495. },
  27496. },
  27497. [
  27498. {
  27499. name: "Normal",
  27500. height: math.unit(31 + 8 / 12, "feet"),
  27501. default: true
  27502. },
  27503. ]
  27504. ))
  27505. characterMakers.push(() => makeCharacter(
  27506. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27507. {
  27508. front: {
  27509. height: math.unit(18 + 5 / 12, "feet"),
  27510. weight: math.unit(3750, "kg"),
  27511. name: "Front",
  27512. image: {
  27513. source: "./media/characters/vexx/front.svg",
  27514. extra: 426 / 396,
  27515. bottom: 31.5 / 458
  27516. }
  27517. },
  27518. maw: {
  27519. height: math.unit(6, "feet"),
  27520. name: "Maw",
  27521. image: {
  27522. source: "./media/characters/vexx/maw.svg"
  27523. }
  27524. },
  27525. },
  27526. [
  27527. {
  27528. name: "Normal",
  27529. height: math.unit(18 + 5 / 12, "feet"),
  27530. default: true
  27531. },
  27532. ]
  27533. ))
  27534. characterMakers.push(() => makeCharacter(
  27535. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27536. {
  27537. front: {
  27538. height: math.unit(17 + 6 / 12, "feet"),
  27539. weight: math.unit(150, "lb"),
  27540. name: "Front",
  27541. image: {
  27542. source: "./media/characters/baadra/front.svg",
  27543. extra: 1694/1553,
  27544. bottom: 179/1873
  27545. }
  27546. },
  27547. frontAlt: {
  27548. height: math.unit(17 + 6 / 12, "feet"),
  27549. weight: math.unit(150, "lb"),
  27550. name: "Front (Alt)",
  27551. image: {
  27552. source: "./media/characters/baadra/front-alt.svg",
  27553. extra: 3137 / 2890,
  27554. bottom: 168.4 / 3305
  27555. }
  27556. },
  27557. back: {
  27558. height: math.unit(17 + 6 / 12, "feet"),
  27559. weight: math.unit(150, "lb"),
  27560. name: "Back",
  27561. image: {
  27562. source: "./media/characters/baadra/back.svg",
  27563. extra: 3142 / 2890,
  27564. bottom: 220 / 3371
  27565. }
  27566. },
  27567. head: {
  27568. height: math.unit(5.45, "feet"),
  27569. name: "Head",
  27570. image: {
  27571. source: "./media/characters/baadra/head.svg"
  27572. }
  27573. },
  27574. headAngry: {
  27575. height: math.unit(4.95, "feet"),
  27576. name: "Head (Angry)",
  27577. image: {
  27578. source: "./media/characters/baadra/head-angry.svg"
  27579. }
  27580. },
  27581. headOpen: {
  27582. height: math.unit(6, "feet"),
  27583. name: "Head (Open)",
  27584. image: {
  27585. source: "./media/characters/baadra/head-open.svg"
  27586. }
  27587. },
  27588. },
  27589. [
  27590. {
  27591. name: "Normal",
  27592. height: math.unit(17 + 6 / 12, "feet"),
  27593. default: true
  27594. },
  27595. ]
  27596. ))
  27597. characterMakers.push(() => makeCharacter(
  27598. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27599. {
  27600. front: {
  27601. height: math.unit(7 + 3 / 12, "feet"),
  27602. weight: math.unit(180, "lb"),
  27603. name: "Front",
  27604. image: {
  27605. source: "./media/characters/juri/front.svg",
  27606. extra: 1401 / 1237,
  27607. bottom: 18.5 / 1418
  27608. }
  27609. },
  27610. side: {
  27611. height: math.unit(7 + 3 / 12, "feet"),
  27612. weight: math.unit(180, "lb"),
  27613. name: "Side",
  27614. image: {
  27615. source: "./media/characters/juri/side.svg",
  27616. extra: 1424 / 1242,
  27617. bottom: 18.5 / 1447
  27618. }
  27619. },
  27620. sitting: {
  27621. height: math.unit(6, "feet"),
  27622. weight: math.unit(180, "lb"),
  27623. name: "Sitting",
  27624. image: {
  27625. source: "./media/characters/juri/sitting.svg",
  27626. extra: 1270 / 1143,
  27627. bottom: 100 / 1343
  27628. }
  27629. },
  27630. back: {
  27631. height: math.unit(7 + 3 / 12, "feet"),
  27632. weight: math.unit(180, "lb"),
  27633. name: "Back",
  27634. image: {
  27635. source: "./media/characters/juri/back.svg",
  27636. extra: 1377 / 1240,
  27637. bottom: 23.7 / 1405
  27638. }
  27639. },
  27640. maw: {
  27641. height: math.unit(2.8, "feet"),
  27642. name: "Maw",
  27643. image: {
  27644. source: "./media/characters/juri/maw.svg"
  27645. }
  27646. },
  27647. stomach: {
  27648. height: math.unit(0.89, "feet"),
  27649. preyCapacity: math.unit(4, "liters"),
  27650. name: "Stomach",
  27651. image: {
  27652. source: "./media/characters/juri/stomach.svg"
  27653. }
  27654. },
  27655. },
  27656. [
  27657. {
  27658. name: "Normal",
  27659. height: math.unit(7 + 3 / 12, "feet"),
  27660. default: true
  27661. },
  27662. ]
  27663. ))
  27664. characterMakers.push(() => makeCharacter(
  27665. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27666. {
  27667. fox: {
  27668. height: math.unit(5 + 6 / 12, "feet"),
  27669. weight: math.unit(140, "lb"),
  27670. name: "Fox",
  27671. image: {
  27672. source: "./media/characters/maxene-sita/fox.svg",
  27673. extra: 146 / 138,
  27674. bottom: 2.1 / 148.19
  27675. }
  27676. },
  27677. foxLaying: {
  27678. height: math.unit(1.70, "feet"),
  27679. weight: math.unit(140, "lb"),
  27680. name: "Fox (Laying)",
  27681. image: {
  27682. source: "./media/characters/maxene-sita/fox-laying.svg",
  27683. extra: 910 / 572,
  27684. bottom: 71 / 981
  27685. }
  27686. },
  27687. kitsune: {
  27688. height: math.unit(10, "feet"),
  27689. weight: math.unit(800, "lb"),
  27690. name: "Kitsune",
  27691. image: {
  27692. source: "./media/characters/maxene-sita/kitsune.svg",
  27693. extra: 185 / 176,
  27694. bottom: 4.7 / 189.9
  27695. }
  27696. },
  27697. hellhound: {
  27698. height: math.unit(10, "feet"),
  27699. weight: math.unit(700, "lb"),
  27700. name: "Hellhound",
  27701. image: {
  27702. source: "./media/characters/maxene-sita/hellhound.svg",
  27703. extra: 1600 / 1545,
  27704. bottom: 81 / 1681
  27705. }
  27706. },
  27707. },
  27708. [
  27709. {
  27710. name: "Normal",
  27711. height: math.unit(5 + 6 / 12, "feet"),
  27712. default: true
  27713. },
  27714. ]
  27715. ))
  27716. characterMakers.push(() => makeCharacter(
  27717. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27718. {
  27719. front: {
  27720. height: math.unit(3 + 4 / 12, "feet"),
  27721. weight: math.unit(70, "lb"),
  27722. name: "Front",
  27723. image: {
  27724. source: "./media/characters/maia/front.svg",
  27725. extra: 227 / 219.5,
  27726. bottom: 40 / 267
  27727. }
  27728. },
  27729. back: {
  27730. height: math.unit(3 + 4 / 12, "feet"),
  27731. weight: math.unit(70, "lb"),
  27732. name: "Back",
  27733. image: {
  27734. source: "./media/characters/maia/back.svg",
  27735. extra: 237 / 225
  27736. }
  27737. },
  27738. },
  27739. [
  27740. {
  27741. name: "Normal",
  27742. height: math.unit(3 + 4 / 12, "feet"),
  27743. default: true
  27744. },
  27745. ]
  27746. ))
  27747. characterMakers.push(() => makeCharacter(
  27748. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27749. {
  27750. front: {
  27751. height: math.unit(5 + 10 / 12, "feet"),
  27752. weight: math.unit(197, "lb"),
  27753. name: "Front",
  27754. image: {
  27755. source: "./media/characters/jabaro/front.svg",
  27756. extra: 225 / 216,
  27757. bottom: 5.06 / 230
  27758. }
  27759. },
  27760. back: {
  27761. height: math.unit(5 + 10 / 12, "feet"),
  27762. weight: math.unit(197, "lb"),
  27763. name: "Back",
  27764. image: {
  27765. source: "./media/characters/jabaro/back.svg",
  27766. extra: 225 / 219,
  27767. bottom: 1.9 / 227
  27768. }
  27769. },
  27770. },
  27771. [
  27772. {
  27773. name: "Normal",
  27774. height: math.unit(5 + 10 / 12, "feet"),
  27775. default: true
  27776. },
  27777. ]
  27778. ))
  27779. characterMakers.push(() => makeCharacter(
  27780. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27781. {
  27782. front: {
  27783. height: math.unit(5 + 8 / 12, "feet"),
  27784. weight: math.unit(139, "lb"),
  27785. name: "Front",
  27786. image: {
  27787. source: "./media/characters/risa/front.svg",
  27788. extra: 270 / 260,
  27789. bottom: 11.2 / 282
  27790. }
  27791. },
  27792. back: {
  27793. height: math.unit(5 + 8 / 12, "feet"),
  27794. weight: math.unit(139, "lb"),
  27795. name: "Back",
  27796. image: {
  27797. source: "./media/characters/risa/back.svg",
  27798. extra: 264 / 255,
  27799. bottom: 4 / 268
  27800. }
  27801. },
  27802. },
  27803. [
  27804. {
  27805. name: "Normal",
  27806. height: math.unit(5 + 8 / 12, "feet"),
  27807. default: true
  27808. },
  27809. ]
  27810. ))
  27811. characterMakers.push(() => makeCharacter(
  27812. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27813. {
  27814. front: {
  27815. height: math.unit(2 + 11 / 12, "feet"),
  27816. weight: math.unit(30, "lb"),
  27817. name: "Front",
  27818. image: {
  27819. source: "./media/characters/weatley/front.svg",
  27820. bottom: 10.7 / 414,
  27821. extra: 403.5 / 362
  27822. }
  27823. },
  27824. back: {
  27825. height: math.unit(2 + 11 / 12, "feet"),
  27826. weight: math.unit(30, "lb"),
  27827. name: "Back",
  27828. image: {
  27829. source: "./media/characters/weatley/back.svg",
  27830. bottom: 10.7 / 414,
  27831. extra: 403.5 / 362
  27832. }
  27833. },
  27834. },
  27835. [
  27836. {
  27837. name: "Normal",
  27838. height: math.unit(2 + 11 / 12, "feet"),
  27839. default: true
  27840. },
  27841. ]
  27842. ))
  27843. characterMakers.push(() => makeCharacter(
  27844. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27845. {
  27846. front: {
  27847. height: math.unit(5 + 2 / 12, "feet"),
  27848. weight: math.unit(50, "kg"),
  27849. name: "Front",
  27850. image: {
  27851. source: "./media/characters/mercury-crescent/front.svg",
  27852. extra: 1088 / 1033,
  27853. bottom: 18.9 / 1109
  27854. }
  27855. },
  27856. },
  27857. [
  27858. {
  27859. name: "Normal",
  27860. height: math.unit(5 + 2 / 12, "feet"),
  27861. default: true
  27862. },
  27863. ]
  27864. ))
  27865. characterMakers.push(() => makeCharacter(
  27866. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27867. {
  27868. front: {
  27869. height: math.unit(2, "feet"),
  27870. weight: math.unit(15, "kg"),
  27871. name: "Front",
  27872. image: {
  27873. source: "./media/characters/diamond-jones/front.svg",
  27874. extra: 727/723,
  27875. bottom: 46/773
  27876. }
  27877. },
  27878. },
  27879. [
  27880. {
  27881. name: "Normal",
  27882. height: math.unit(2, "feet"),
  27883. default: true
  27884. },
  27885. ]
  27886. ))
  27887. characterMakers.push(() => makeCharacter(
  27888. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27889. {
  27890. front: {
  27891. height: math.unit(3, "feet"),
  27892. weight: math.unit(30, "kg"),
  27893. name: "Front",
  27894. image: {
  27895. source: "./media/characters/sweet-bit/front.svg",
  27896. extra: 675 / 567,
  27897. bottom: 27.7 / 703
  27898. }
  27899. },
  27900. },
  27901. [
  27902. {
  27903. name: "Normal",
  27904. height: math.unit(3, "feet"),
  27905. default: true
  27906. },
  27907. ]
  27908. ))
  27909. characterMakers.push(() => makeCharacter(
  27910. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27911. {
  27912. side: {
  27913. height: math.unit(9.178, "feet"),
  27914. weight: math.unit(500, "lb"),
  27915. name: "Side",
  27916. image: {
  27917. source: "./media/characters/umbrazen/side.svg",
  27918. extra: 1730 / 1473,
  27919. bottom: 34.6 / 1765
  27920. }
  27921. },
  27922. },
  27923. [
  27924. {
  27925. name: "Normal",
  27926. height: math.unit(9.178, "feet"),
  27927. default: true
  27928. },
  27929. ]
  27930. ))
  27931. characterMakers.push(() => makeCharacter(
  27932. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27933. {
  27934. front: {
  27935. height: math.unit(10, "feet"),
  27936. weight: math.unit(750, "lb"),
  27937. name: "Front",
  27938. image: {
  27939. source: "./media/characters/arlist/front.svg",
  27940. extra: 961 / 778,
  27941. bottom: 6.2 / 986
  27942. }
  27943. },
  27944. },
  27945. [
  27946. {
  27947. name: "Normal",
  27948. height: math.unit(10, "feet"),
  27949. default: true
  27950. },
  27951. ]
  27952. ))
  27953. characterMakers.push(() => makeCharacter(
  27954. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27955. {
  27956. front: {
  27957. height: math.unit(5 + 1 / 12, "feet"),
  27958. weight: math.unit(110, "lb"),
  27959. name: "Front",
  27960. image: {
  27961. source: "./media/characters/aradel/front.svg",
  27962. extra: 324 / 303,
  27963. bottom: 3.6 / 329.4
  27964. }
  27965. },
  27966. },
  27967. [
  27968. {
  27969. name: "Normal",
  27970. height: math.unit(5 + 1 / 12, "feet"),
  27971. default: true
  27972. },
  27973. ]
  27974. ))
  27975. characterMakers.push(() => makeCharacter(
  27976. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27977. {
  27978. dressed: {
  27979. height: math.unit(3 + 8 / 12, "feet"),
  27980. weight: math.unit(50, "lb"),
  27981. name: "Dressed",
  27982. image: {
  27983. source: "./media/characters/serryn/dressed.svg",
  27984. extra: 1792 / 1656,
  27985. bottom: 43.5 / 1840
  27986. }
  27987. },
  27988. nude: {
  27989. height: math.unit(3 + 8 / 12, "feet"),
  27990. weight: math.unit(50, "lb"),
  27991. name: "Nude",
  27992. image: {
  27993. source: "./media/characters/serryn/nude.svg",
  27994. extra: 1792 / 1656,
  27995. bottom: 43.5 / 1840
  27996. }
  27997. },
  27998. },
  27999. [
  28000. {
  28001. name: "Normal",
  28002. height: math.unit(3 + 8 / 12, "feet"),
  28003. default: true
  28004. },
  28005. ]
  28006. ))
  28007. characterMakers.push(() => makeCharacter(
  28008. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28009. {
  28010. front: {
  28011. height: math.unit(7 + 10 / 12, "feet"),
  28012. weight: math.unit(255, "lb"),
  28013. name: "Front",
  28014. image: {
  28015. source: "./media/characters/xavier-thyme/front.svg",
  28016. extra: 3733 / 3642,
  28017. bottom: 131 / 3869
  28018. }
  28019. },
  28020. frontRaven: {
  28021. height: math.unit(7 + 10 / 12, "feet"),
  28022. weight: math.unit(255, "lb"),
  28023. name: "Front (Raven)",
  28024. image: {
  28025. source: "./media/characters/xavier-thyme/front-raven.svg",
  28026. extra: 4385 / 3642,
  28027. bottom: 131 / 4517
  28028. }
  28029. },
  28030. },
  28031. [
  28032. {
  28033. name: "Normal",
  28034. height: math.unit(7 + 10 / 12, "feet"),
  28035. default: true
  28036. },
  28037. ]
  28038. ))
  28039. characterMakers.push(() => makeCharacter(
  28040. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28041. {
  28042. front: {
  28043. height: math.unit(1.6, "m"),
  28044. weight: math.unit(50, "kg"),
  28045. name: "Front",
  28046. image: {
  28047. source: "./media/characters/kiki/front.svg",
  28048. extra: 4682 / 3610,
  28049. bottom: 115 / 4777
  28050. }
  28051. },
  28052. },
  28053. [
  28054. {
  28055. name: "Normal",
  28056. height: math.unit(1.6, "meters"),
  28057. default: true
  28058. },
  28059. ]
  28060. ))
  28061. characterMakers.push(() => makeCharacter(
  28062. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28063. {
  28064. front: {
  28065. height: math.unit(50, "m"),
  28066. weight: math.unit(500, "tonnes"),
  28067. name: "Front",
  28068. image: {
  28069. source: "./media/characters/ryoko/front.svg",
  28070. extra: 4632 / 3926,
  28071. bottom: 193 / 4823
  28072. }
  28073. },
  28074. },
  28075. [
  28076. {
  28077. name: "Normal",
  28078. height: math.unit(50, "meters"),
  28079. default: true
  28080. },
  28081. ]
  28082. ))
  28083. characterMakers.push(() => makeCharacter(
  28084. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28085. {
  28086. front: {
  28087. height: math.unit(30, "m"),
  28088. weight: math.unit(22, "tonnes"),
  28089. name: "Front",
  28090. image: {
  28091. source: "./media/characters/elio/front.svg",
  28092. extra: 4582 / 3720,
  28093. bottom: 236 / 4828
  28094. }
  28095. },
  28096. },
  28097. [
  28098. {
  28099. name: "Normal",
  28100. height: math.unit(30, "meters"),
  28101. default: true
  28102. },
  28103. ]
  28104. ))
  28105. characterMakers.push(() => makeCharacter(
  28106. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28107. {
  28108. front: {
  28109. height: math.unit(6 + 3 / 12, "feet"),
  28110. weight: math.unit(120, "lb"),
  28111. name: "Front",
  28112. image: {
  28113. source: "./media/characters/azura/front.svg",
  28114. extra: 1149 / 1135,
  28115. bottom: 45 / 1194
  28116. }
  28117. },
  28118. frontClothed: {
  28119. height: math.unit(6 + 3 / 12, "feet"),
  28120. weight: math.unit(120, "lb"),
  28121. name: "Front (Clothed)",
  28122. image: {
  28123. source: "./media/characters/azura/front-clothed.svg",
  28124. extra: 1149 / 1135,
  28125. bottom: 45 / 1194
  28126. }
  28127. },
  28128. },
  28129. [
  28130. {
  28131. name: "Normal",
  28132. height: math.unit(6 + 3 / 12, "feet"),
  28133. default: true
  28134. },
  28135. {
  28136. name: "Macro",
  28137. height: math.unit(20 + 6 / 12, "feet")
  28138. },
  28139. {
  28140. name: "Megamacro",
  28141. height: math.unit(12, "miles")
  28142. },
  28143. {
  28144. name: "Gigamacro",
  28145. height: math.unit(10000, "miles")
  28146. },
  28147. {
  28148. name: "Teramacro",
  28149. height: math.unit(900000, "miles")
  28150. },
  28151. ]
  28152. ))
  28153. characterMakers.push(() => makeCharacter(
  28154. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28155. {
  28156. front: {
  28157. height: math.unit(12, "feet"),
  28158. weight: math.unit(1, "ton"),
  28159. capacity: math.unit(660000, "gallons"),
  28160. name: "Front",
  28161. image: {
  28162. source: "./media/characters/zeus/front.svg",
  28163. extra: 5005 / 4717,
  28164. bottom: 363 / 5388
  28165. }
  28166. },
  28167. },
  28168. [
  28169. {
  28170. name: "Normal",
  28171. height: math.unit(12, "feet")
  28172. },
  28173. {
  28174. name: "Preferred Size",
  28175. height: math.unit(0.5, "miles"),
  28176. default: true
  28177. },
  28178. {
  28179. name: "Giga Horse",
  28180. height: math.unit(300, "miles")
  28181. },
  28182. {
  28183. name: "Riding Planets",
  28184. height: math.unit(30, "megameters")
  28185. },
  28186. {
  28187. name: "Cosmic Giant",
  28188. height: math.unit(3, "zettameters")
  28189. },
  28190. {
  28191. name: "Breeding God",
  28192. height: math.unit(9.92e22, "yottameters")
  28193. },
  28194. ]
  28195. ))
  28196. characterMakers.push(() => makeCharacter(
  28197. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28198. {
  28199. side: {
  28200. height: math.unit(9, "feet"),
  28201. weight: math.unit(1500, "kg"),
  28202. name: "Side",
  28203. image: {
  28204. source: "./media/characters/fang/side.svg",
  28205. extra: 924 / 866,
  28206. bottom: 47.5 / 972.3
  28207. }
  28208. },
  28209. },
  28210. [
  28211. {
  28212. name: "Normal",
  28213. height: math.unit(9, "feet"),
  28214. default: true
  28215. },
  28216. {
  28217. name: "Macro",
  28218. height: math.unit(75 + 6 / 12, "feet")
  28219. },
  28220. {
  28221. name: "Teramacro",
  28222. height: math.unit(50000, "miles")
  28223. },
  28224. ]
  28225. ))
  28226. characterMakers.push(() => makeCharacter(
  28227. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28228. {
  28229. front: {
  28230. height: math.unit(10, "feet"),
  28231. weight: math.unit(2, "tons"),
  28232. name: "Front",
  28233. image: {
  28234. source: "./media/characters/rekhit/front.svg",
  28235. extra: 2796 / 2590,
  28236. bottom: 225 / 3022
  28237. }
  28238. },
  28239. },
  28240. [
  28241. {
  28242. name: "Normal",
  28243. height: math.unit(10, "feet"),
  28244. default: true
  28245. },
  28246. {
  28247. name: "Macro",
  28248. height: math.unit(500, "feet")
  28249. },
  28250. ]
  28251. ))
  28252. characterMakers.push(() => makeCharacter(
  28253. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28254. {
  28255. front: {
  28256. height: math.unit(7 + 6.451 / 12, "feet"),
  28257. weight: math.unit(310, "lb"),
  28258. name: "Front",
  28259. image: {
  28260. source: "./media/characters/dahlia-verrick/front.svg",
  28261. extra: 1488 / 1365,
  28262. bottom: 6.2 / 1495
  28263. }
  28264. },
  28265. back: {
  28266. height: math.unit(7 + 6.451 / 12, "feet"),
  28267. weight: math.unit(310, "lb"),
  28268. name: "Back",
  28269. image: {
  28270. source: "./media/characters/dahlia-verrick/back.svg",
  28271. extra: 1472 / 1351,
  28272. bottom: 5.28 / 1477
  28273. }
  28274. },
  28275. frontBusiness: {
  28276. height: math.unit(7 + 6.451 / 12, "feet"),
  28277. weight: math.unit(200, "lb"),
  28278. name: "Front (Business)",
  28279. image: {
  28280. source: "./media/characters/dahlia-verrick/front-business.svg",
  28281. extra: 1478 / 1381,
  28282. bottom: 5.5 / 1484
  28283. }
  28284. },
  28285. frontCasual: {
  28286. height: math.unit(7 + 6.451 / 12, "feet"),
  28287. weight: math.unit(200, "lb"),
  28288. name: "Front (Casual)",
  28289. image: {
  28290. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28291. extra: 1478 / 1381,
  28292. bottom: 5.5 / 1484
  28293. }
  28294. },
  28295. },
  28296. [
  28297. {
  28298. name: "Travel-Sized",
  28299. height: math.unit(7.45, "inches")
  28300. },
  28301. {
  28302. name: "Normal",
  28303. height: math.unit(7 + 6.451 / 12, "feet"),
  28304. default: true
  28305. },
  28306. {
  28307. name: "Hitting the Town",
  28308. height: math.unit(37 + 8 / 12, "feet")
  28309. },
  28310. {
  28311. name: "Stomp in the Suburbs",
  28312. height: math.unit(964 + 9.728 / 12, "feet")
  28313. },
  28314. {
  28315. name: "Sit on the City",
  28316. height: math.unit(61747 + 10.592 / 12, "feet")
  28317. },
  28318. {
  28319. name: "Glomp the Globe",
  28320. height: math.unit(252919327 + 4.832 / 12, "feet")
  28321. },
  28322. ]
  28323. ))
  28324. characterMakers.push(() => makeCharacter(
  28325. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28326. {
  28327. front: {
  28328. height: math.unit(6 + 4 / 12, "feet"),
  28329. weight: math.unit(320, "lb"),
  28330. name: "Front",
  28331. image: {
  28332. source: "./media/characters/balina-mahigan/front.svg",
  28333. extra: 447 / 428,
  28334. bottom: 18 / 466
  28335. }
  28336. },
  28337. back: {
  28338. height: math.unit(6 + 4 / 12, "feet"),
  28339. weight: math.unit(320, "lb"),
  28340. name: "Back",
  28341. image: {
  28342. source: "./media/characters/balina-mahigan/back.svg",
  28343. extra: 445 / 428,
  28344. bottom: 4.07 / 448
  28345. }
  28346. },
  28347. arm: {
  28348. height: math.unit(1.88, "feet"),
  28349. name: "Arm",
  28350. image: {
  28351. source: "./media/characters/balina-mahigan/arm.svg"
  28352. }
  28353. },
  28354. backPort: {
  28355. height: math.unit(0.685, "feet"),
  28356. name: "Back Port",
  28357. image: {
  28358. source: "./media/characters/balina-mahigan/back-port.svg"
  28359. }
  28360. },
  28361. hoofpaw: {
  28362. height: math.unit(1.41, "feet"),
  28363. name: "Hoofpaw",
  28364. image: {
  28365. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28366. }
  28367. },
  28368. leftHandBack: {
  28369. height: math.unit(0.938, "feet"),
  28370. name: "Left Hand (Back)",
  28371. image: {
  28372. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28373. }
  28374. },
  28375. leftHandFront: {
  28376. height: math.unit(0.938, "feet"),
  28377. name: "Left Hand (Front)",
  28378. image: {
  28379. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28380. }
  28381. },
  28382. rightHandBack: {
  28383. height: math.unit(0.95, "feet"),
  28384. name: "Right Hand (Back)",
  28385. image: {
  28386. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28387. }
  28388. },
  28389. rightHandFront: {
  28390. height: math.unit(0.95, "feet"),
  28391. name: "Right Hand (Front)",
  28392. image: {
  28393. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28394. }
  28395. },
  28396. },
  28397. [
  28398. {
  28399. name: "Normal",
  28400. height: math.unit(6 + 4 / 12, "feet"),
  28401. default: true
  28402. },
  28403. ]
  28404. ))
  28405. characterMakers.push(() => makeCharacter(
  28406. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28407. {
  28408. front: {
  28409. height: math.unit(6, "feet"),
  28410. weight: math.unit(320, "lb"),
  28411. name: "Front",
  28412. image: {
  28413. source: "./media/characters/balina-mejeri/front.svg",
  28414. extra: 517 / 488,
  28415. bottom: 44.2 / 561
  28416. }
  28417. },
  28418. },
  28419. [
  28420. {
  28421. name: "Normal",
  28422. height: math.unit(6 + 4 / 12, "feet")
  28423. },
  28424. {
  28425. name: "Business",
  28426. height: math.unit(155, "feet"),
  28427. default: true
  28428. },
  28429. ]
  28430. ))
  28431. characterMakers.push(() => makeCharacter(
  28432. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28433. {
  28434. kneeling: {
  28435. height: math.unit(6 + 4 / 12, "feet"),
  28436. weight: math.unit(300 * 20, "lb"),
  28437. name: "Kneeling",
  28438. image: {
  28439. source: "./media/characters/balbarian/kneeling.svg",
  28440. extra: 922 / 862,
  28441. bottom: 42.4 / 965
  28442. }
  28443. },
  28444. },
  28445. [
  28446. {
  28447. name: "Normal",
  28448. height: math.unit(6 + 4 / 12, "feet")
  28449. },
  28450. {
  28451. name: "Treasured",
  28452. height: math.unit(18 + 9 / 12, "feet"),
  28453. default: true
  28454. },
  28455. {
  28456. name: "Macro",
  28457. height: math.unit(900, "feet")
  28458. },
  28459. ]
  28460. ))
  28461. characterMakers.push(() => makeCharacter(
  28462. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28463. {
  28464. front: {
  28465. height: math.unit(6 + 4 / 12, "feet"),
  28466. weight: math.unit(325, "lb"),
  28467. name: "Front",
  28468. image: {
  28469. source: "./media/characters/balina-amarini/front.svg",
  28470. extra: 415 / 403,
  28471. bottom: 19 / 433.4
  28472. }
  28473. },
  28474. back: {
  28475. height: math.unit(6 + 4 / 12, "feet"),
  28476. weight: math.unit(325, "lb"),
  28477. name: "Back",
  28478. image: {
  28479. source: "./media/characters/balina-amarini/back.svg",
  28480. extra: 415 / 403,
  28481. bottom: 13.5 / 432
  28482. }
  28483. },
  28484. overdrive: {
  28485. height: math.unit(6 + 4 / 12, "feet"),
  28486. weight: math.unit(400, "lb"),
  28487. name: "Overdrive",
  28488. image: {
  28489. source: "./media/characters/balina-amarini/overdrive.svg",
  28490. extra: 269 / 259,
  28491. bottom: 12 / 282
  28492. }
  28493. },
  28494. },
  28495. [
  28496. {
  28497. name: "Boom",
  28498. height: math.unit(9 + 10 / 12, "feet"),
  28499. default: true
  28500. },
  28501. {
  28502. name: "Macro",
  28503. height: math.unit(280, "feet")
  28504. },
  28505. ]
  28506. ))
  28507. characterMakers.push(() => makeCharacter(
  28508. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28509. {
  28510. goddess: {
  28511. height: math.unit(600, "feet"),
  28512. weight: math.unit(2000000, "tons"),
  28513. name: "Goddess",
  28514. image: {
  28515. source: "./media/characters/lady-kubwa/goddess.svg",
  28516. extra: 1240.5 / 1223,
  28517. bottom: 22 / 1263
  28518. }
  28519. },
  28520. goddesser: {
  28521. height: math.unit(900, "feet"),
  28522. weight: math.unit(20000000, "lb"),
  28523. name: "Goddess-er",
  28524. image: {
  28525. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28526. extra: 899 / 888,
  28527. bottom: 12.6 / 912
  28528. }
  28529. },
  28530. },
  28531. [
  28532. {
  28533. name: "Macro",
  28534. height: math.unit(600, "feet"),
  28535. default: true
  28536. },
  28537. {
  28538. name: "Megamacro",
  28539. height: math.unit(250, "miles")
  28540. },
  28541. ]
  28542. ))
  28543. characterMakers.push(() => makeCharacter(
  28544. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28545. {
  28546. front: {
  28547. height: math.unit(7 + 7 / 12, "feet"),
  28548. weight: math.unit(250, "lb"),
  28549. name: "Front",
  28550. image: {
  28551. source: "./media/characters/tala-grovehorn/front.svg",
  28552. extra: 2636 / 2525,
  28553. bottom: 147 / 2781
  28554. }
  28555. },
  28556. back: {
  28557. height: math.unit(7 + 7 / 12, "feet"),
  28558. weight: math.unit(250, "lb"),
  28559. name: "Back",
  28560. image: {
  28561. source: "./media/characters/tala-grovehorn/back.svg",
  28562. extra: 2635 / 2539,
  28563. bottom: 100 / 2732.8
  28564. }
  28565. },
  28566. mouth: {
  28567. height: math.unit(1.15, "feet"),
  28568. name: "Mouth",
  28569. image: {
  28570. source: "./media/characters/tala-grovehorn/mouth.svg"
  28571. }
  28572. },
  28573. dick: {
  28574. height: math.unit(2.36, "feet"),
  28575. name: "Dick",
  28576. image: {
  28577. source: "./media/characters/tala-grovehorn/dick.svg"
  28578. }
  28579. },
  28580. slit: {
  28581. height: math.unit(0.61, "feet"),
  28582. name: "Slit",
  28583. image: {
  28584. source: "./media/characters/tala-grovehorn/slit.svg"
  28585. }
  28586. },
  28587. },
  28588. [
  28589. ]
  28590. ))
  28591. characterMakers.push(() => makeCharacter(
  28592. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28593. {
  28594. front: {
  28595. height: math.unit(7 + 7 / 12, "feet"),
  28596. weight: math.unit(225, "lb"),
  28597. name: "Front",
  28598. image: {
  28599. source: "./media/characters/epona/front.svg",
  28600. extra: 2445 / 2290,
  28601. bottom: 251 / 2696
  28602. }
  28603. },
  28604. back: {
  28605. height: math.unit(7 + 7 / 12, "feet"),
  28606. weight: math.unit(225, "lb"),
  28607. name: "Back",
  28608. image: {
  28609. source: "./media/characters/epona/back.svg",
  28610. extra: 2546 / 2408,
  28611. bottom: 44 / 2589
  28612. }
  28613. },
  28614. genitals: {
  28615. height: math.unit(1.5, "feet"),
  28616. name: "Genitals",
  28617. image: {
  28618. source: "./media/characters/epona/genitals.svg"
  28619. }
  28620. },
  28621. },
  28622. [
  28623. {
  28624. name: "Normal",
  28625. height: math.unit(7 + 7 / 12, "feet"),
  28626. default: true
  28627. },
  28628. ]
  28629. ))
  28630. characterMakers.push(() => makeCharacter(
  28631. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28632. {
  28633. front: {
  28634. height: math.unit(7, "feet"),
  28635. weight: math.unit(518, "lb"),
  28636. name: "Front",
  28637. image: {
  28638. source: "./media/characters/avia-bloodbourn/front.svg",
  28639. extra: 1466 / 1350,
  28640. bottom: 65 / 1527
  28641. }
  28642. },
  28643. },
  28644. [
  28645. ]
  28646. ))
  28647. characterMakers.push(() => makeCharacter(
  28648. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28649. {
  28650. front: {
  28651. height: math.unit(9.35, "feet"),
  28652. weight: math.unit(600, "lb"),
  28653. name: "Front",
  28654. image: {
  28655. source: "./media/characters/amera/front.svg",
  28656. extra: 891 / 818,
  28657. bottom: 30 / 922.7
  28658. }
  28659. },
  28660. back: {
  28661. height: math.unit(9.35, "feet"),
  28662. weight: math.unit(600, "lb"),
  28663. name: "Back",
  28664. image: {
  28665. source: "./media/characters/amera/back.svg",
  28666. extra: 876 / 824,
  28667. bottom: 6.8 / 884
  28668. }
  28669. },
  28670. dick: {
  28671. height: math.unit(2.14, "feet"),
  28672. name: "Dick",
  28673. image: {
  28674. source: "./media/characters/amera/dick.svg"
  28675. }
  28676. },
  28677. },
  28678. [
  28679. {
  28680. name: "Normal",
  28681. height: math.unit(9.35, "feet"),
  28682. default: true
  28683. },
  28684. ]
  28685. ))
  28686. characterMakers.push(() => makeCharacter(
  28687. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28688. {
  28689. kneeling: {
  28690. height: math.unit(3 + 4 / 12, "feet"),
  28691. weight: math.unit(90, "lb"),
  28692. name: "Kneeling",
  28693. image: {
  28694. source: "./media/characters/rosewen/kneeling.svg",
  28695. extra: 1835 / 1571,
  28696. bottom: 27.7 / 1862
  28697. }
  28698. },
  28699. },
  28700. [
  28701. {
  28702. name: "Normal",
  28703. height: math.unit(3 + 4 / 12, "feet"),
  28704. default: true
  28705. },
  28706. ]
  28707. ))
  28708. characterMakers.push(() => makeCharacter(
  28709. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28710. {
  28711. front: {
  28712. height: math.unit(5 + 10 / 12, "feet"),
  28713. weight: math.unit(200, "lb"),
  28714. name: "Front",
  28715. image: {
  28716. source: "./media/characters/sabah/front.svg",
  28717. extra: 849 / 763,
  28718. bottom: 33.9 / 881
  28719. }
  28720. },
  28721. },
  28722. [
  28723. {
  28724. name: "Normal",
  28725. height: math.unit(5 + 10 / 12, "feet"),
  28726. default: true
  28727. },
  28728. ]
  28729. ))
  28730. characterMakers.push(() => makeCharacter(
  28731. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28732. {
  28733. front: {
  28734. height: math.unit(3 + 5 / 12, "feet"),
  28735. weight: math.unit(40, "kg"),
  28736. name: "Front",
  28737. image: {
  28738. source: "./media/characters/purple-flame/front.svg",
  28739. extra: 1577 / 1412,
  28740. bottom: 97 / 1694
  28741. }
  28742. },
  28743. frontDressed: {
  28744. height: math.unit(3 + 5 / 12, "feet"),
  28745. weight: math.unit(40, "kg"),
  28746. name: "Front (Dressed)",
  28747. image: {
  28748. source: "./media/characters/purple-flame/front-dressed.svg",
  28749. extra: 1577 / 1412,
  28750. bottom: 97 / 1694
  28751. }
  28752. },
  28753. headphones: {
  28754. height: math.unit(0.85, "feet"),
  28755. name: "Headphones",
  28756. image: {
  28757. source: "./media/characters/purple-flame/headphones.svg"
  28758. }
  28759. },
  28760. },
  28761. [
  28762. {
  28763. name: "Really Small",
  28764. height: math.unit(5, "cm")
  28765. },
  28766. {
  28767. name: "Micro",
  28768. height: math.unit(1 + 5 / 12, "feet")
  28769. },
  28770. {
  28771. name: "Normal",
  28772. height: math.unit(3 + 5 / 12, "feet"),
  28773. default: true
  28774. },
  28775. {
  28776. name: "Minimacro",
  28777. height: math.unit(125, "feet")
  28778. },
  28779. {
  28780. name: "Macro",
  28781. height: math.unit(0.5, "miles")
  28782. },
  28783. {
  28784. name: "Megamacro",
  28785. height: math.unit(50, "miles")
  28786. },
  28787. {
  28788. name: "Gigantic",
  28789. height: math.unit(750, "miles")
  28790. },
  28791. {
  28792. name: "Planetary",
  28793. height: math.unit(15000, "miles")
  28794. },
  28795. ]
  28796. ))
  28797. characterMakers.push(() => makeCharacter(
  28798. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28799. {
  28800. front: {
  28801. height: math.unit(14, "feet"),
  28802. weight: math.unit(959, "lb"),
  28803. name: "Front",
  28804. image: {
  28805. source: "./media/characters/arsenal/front.svg",
  28806. extra: 2357 / 2157,
  28807. bottom: 93 / 2458
  28808. }
  28809. },
  28810. },
  28811. [
  28812. {
  28813. name: "Normal",
  28814. height: math.unit(14, "feet"),
  28815. default: true
  28816. },
  28817. ]
  28818. ))
  28819. characterMakers.push(() => makeCharacter(
  28820. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28821. {
  28822. front: {
  28823. height: math.unit(6, "feet"),
  28824. weight: math.unit(150, "lb"),
  28825. name: "Front",
  28826. image: {
  28827. source: "./media/characters/adira/front.svg",
  28828. extra: 1078 / 1029,
  28829. bottom: 87 / 1166
  28830. }
  28831. },
  28832. },
  28833. [
  28834. {
  28835. name: "Micro",
  28836. height: math.unit(4, "inches"),
  28837. default: true
  28838. },
  28839. {
  28840. name: "Macro",
  28841. height: math.unit(50, "feet")
  28842. },
  28843. ]
  28844. ))
  28845. characterMakers.push(() => makeCharacter(
  28846. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28847. {
  28848. front: {
  28849. height: math.unit(16, "feet"),
  28850. weight: math.unit(1000, "lb"),
  28851. name: "Front",
  28852. image: {
  28853. source: "./media/characters/grim/front.svg",
  28854. extra: 622 / 614,
  28855. bottom: 18.1 / 642
  28856. }
  28857. },
  28858. back: {
  28859. height: math.unit(16, "feet"),
  28860. weight: math.unit(1000, "lb"),
  28861. name: "Back",
  28862. image: {
  28863. source: "./media/characters/grim/back.svg",
  28864. extra: 610.6 / 602,
  28865. bottom: 40.8 / 652
  28866. }
  28867. },
  28868. hunched: {
  28869. height: math.unit(9.75, "feet"),
  28870. weight: math.unit(1000, "lb"),
  28871. name: "Hunched",
  28872. image: {
  28873. source: "./media/characters/grim/hunched.svg",
  28874. extra: 304 / 297,
  28875. bottom: 35.4 / 394
  28876. }
  28877. },
  28878. },
  28879. [
  28880. {
  28881. name: "Normal",
  28882. height: math.unit(16, "feet"),
  28883. default: true
  28884. },
  28885. ]
  28886. ))
  28887. characterMakers.push(() => makeCharacter(
  28888. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28889. {
  28890. front: {
  28891. height: math.unit(2.3, "meters"),
  28892. weight: math.unit(300, "lb"),
  28893. name: "Front",
  28894. image: {
  28895. source: "./media/characters/sinja/front-sfw.svg",
  28896. extra: 1393 / 1294,
  28897. bottom: 70 / 1463
  28898. }
  28899. },
  28900. frontNsfw: {
  28901. height: math.unit(2.3, "meters"),
  28902. weight: math.unit(300, "lb"),
  28903. name: "Front (NSFW)",
  28904. image: {
  28905. source: "./media/characters/sinja/front-nsfw.svg",
  28906. extra: 1393 / 1294,
  28907. bottom: 70 / 1463
  28908. }
  28909. },
  28910. back: {
  28911. height: math.unit(2.3, "meters"),
  28912. weight: math.unit(300, "lb"),
  28913. name: "Back",
  28914. image: {
  28915. source: "./media/characters/sinja/back.svg",
  28916. extra: 1393 / 1294,
  28917. bottom: 70 / 1463
  28918. }
  28919. },
  28920. head: {
  28921. height: math.unit(1.771, "feet"),
  28922. name: "Head",
  28923. image: {
  28924. source: "./media/characters/sinja/head.svg"
  28925. }
  28926. },
  28927. slit: {
  28928. height: math.unit(0.8, "feet"),
  28929. name: "Slit",
  28930. image: {
  28931. source: "./media/characters/sinja/slit.svg"
  28932. }
  28933. },
  28934. },
  28935. [
  28936. {
  28937. name: "Normal",
  28938. height: math.unit(2.3, "meters")
  28939. },
  28940. {
  28941. name: "Macro",
  28942. height: math.unit(91, "meters"),
  28943. default: true
  28944. },
  28945. {
  28946. name: "Megamacro",
  28947. height: math.unit(91440, "meters")
  28948. },
  28949. {
  28950. name: "Gigamacro",
  28951. height: math.unit(60960000, "meters")
  28952. },
  28953. {
  28954. name: "Teramacro",
  28955. height: math.unit(9144000000, "meters")
  28956. },
  28957. ]
  28958. ))
  28959. characterMakers.push(() => makeCharacter(
  28960. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28961. {
  28962. front: {
  28963. height: math.unit(1.7, "meters"),
  28964. weight: math.unit(130, "lb"),
  28965. name: "Front",
  28966. image: {
  28967. source: "./media/characters/kyu/front.svg",
  28968. extra: 415 / 395,
  28969. bottom: 5 / 420
  28970. }
  28971. },
  28972. head: {
  28973. height: math.unit(1.75, "feet"),
  28974. name: "Head",
  28975. image: {
  28976. source: "./media/characters/kyu/head.svg"
  28977. }
  28978. },
  28979. foot: {
  28980. height: math.unit(0.81, "feet"),
  28981. name: "Foot",
  28982. image: {
  28983. source: "./media/characters/kyu/foot.svg"
  28984. }
  28985. },
  28986. },
  28987. [
  28988. {
  28989. name: "Normal",
  28990. height: math.unit(1.7, "meters")
  28991. },
  28992. {
  28993. name: "Macro",
  28994. height: math.unit(131, "feet"),
  28995. default: true
  28996. },
  28997. {
  28998. name: "Megamacro",
  28999. height: math.unit(91440, "meters")
  29000. },
  29001. {
  29002. name: "Gigamacro",
  29003. height: math.unit(60960000, "meters")
  29004. },
  29005. {
  29006. name: "Teramacro",
  29007. height: math.unit(9144000000, "meters")
  29008. },
  29009. ]
  29010. ))
  29011. characterMakers.push(() => makeCharacter(
  29012. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29013. {
  29014. front: {
  29015. height: math.unit(7 + 1 / 12, "feet"),
  29016. weight: math.unit(250, "lb"),
  29017. name: "Front",
  29018. image: {
  29019. source: "./media/characters/joey/front.svg",
  29020. extra: 1791 / 1537,
  29021. bottom: 28 / 1816
  29022. }
  29023. },
  29024. },
  29025. [
  29026. {
  29027. name: "Micro",
  29028. height: math.unit(3, "inches")
  29029. },
  29030. {
  29031. name: "Normal",
  29032. height: math.unit(7 + 1 / 12, "feet"),
  29033. default: true
  29034. },
  29035. ]
  29036. ))
  29037. characterMakers.push(() => makeCharacter(
  29038. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29039. {
  29040. front: {
  29041. height: math.unit(165, "cm"),
  29042. weight: math.unit(140, "lb"),
  29043. name: "Front",
  29044. image: {
  29045. source: "./media/characters/sam-evans/front.svg",
  29046. extra: 3417 / 3230,
  29047. bottom: 41.3 / 3417
  29048. }
  29049. },
  29050. frontSixTails: {
  29051. height: math.unit(165, "cm"),
  29052. weight: math.unit(140, "lb"),
  29053. name: "Front-six-tails",
  29054. image: {
  29055. source: "./media/characters/sam-evans/front-six-tails.svg",
  29056. extra: 3417 / 3230,
  29057. bottom: 41.3 / 3417
  29058. }
  29059. },
  29060. back: {
  29061. height: math.unit(165, "cm"),
  29062. weight: math.unit(140, "lb"),
  29063. name: "Back",
  29064. image: {
  29065. source: "./media/characters/sam-evans/back.svg",
  29066. extra: 3227 / 3032,
  29067. bottom: 6.8 / 3234
  29068. }
  29069. },
  29070. face: {
  29071. height: math.unit(0.68, "feet"),
  29072. name: "Face",
  29073. image: {
  29074. source: "./media/characters/sam-evans/face.svg"
  29075. }
  29076. },
  29077. },
  29078. [
  29079. {
  29080. name: "Normal",
  29081. height: math.unit(165, "cm"),
  29082. default: true
  29083. },
  29084. {
  29085. name: "Macro",
  29086. height: math.unit(100, "meters")
  29087. },
  29088. {
  29089. name: "Macro+",
  29090. height: math.unit(800, "meters")
  29091. },
  29092. {
  29093. name: "Macro++",
  29094. height: math.unit(3, "km")
  29095. },
  29096. {
  29097. name: "Macro+++",
  29098. height: math.unit(30, "km")
  29099. },
  29100. ]
  29101. ))
  29102. characterMakers.push(() => makeCharacter(
  29103. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29104. {
  29105. front: {
  29106. height: math.unit(10, "feet"),
  29107. weight: math.unit(750, "lb"),
  29108. name: "Front",
  29109. image: {
  29110. source: "./media/characters/juliet-a/front.svg",
  29111. extra: 1766 / 1720,
  29112. bottom: 43 / 1809
  29113. }
  29114. },
  29115. back: {
  29116. height: math.unit(10, "feet"),
  29117. weight: math.unit(750, "lb"),
  29118. name: "Back",
  29119. image: {
  29120. source: "./media/characters/juliet-a/back.svg",
  29121. extra: 1781 / 1734,
  29122. bottom: 35 / 1810,
  29123. }
  29124. },
  29125. },
  29126. [
  29127. {
  29128. name: "Normal",
  29129. height: math.unit(10, "feet"),
  29130. default: true
  29131. },
  29132. {
  29133. name: "Dragon Form",
  29134. height: math.unit(250, "feet")
  29135. },
  29136. {
  29137. name: "Macro",
  29138. height: math.unit(1000, "feet")
  29139. },
  29140. {
  29141. name: "Megamacro",
  29142. height: math.unit(10000, "feet")
  29143. }
  29144. ]
  29145. ))
  29146. characterMakers.push(() => makeCharacter(
  29147. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29148. {
  29149. regular: {
  29150. height: math.unit(7 + 3 / 12, "feet"),
  29151. weight: math.unit(260, "lb"),
  29152. name: "Regular",
  29153. image: {
  29154. source: "./media/characters/wild/regular.svg",
  29155. extra: 97.45 / 92,
  29156. bottom: 6.8 / 104.3
  29157. }
  29158. },
  29159. biggums: {
  29160. height: math.unit(8 + 6 / 12, "feet"),
  29161. weight: math.unit(425, "lb"),
  29162. name: "Biggums",
  29163. image: {
  29164. source: "./media/characters/wild/biggums.svg",
  29165. extra: 97.45 / 92,
  29166. bottom: 7.5 / 132.34
  29167. }
  29168. },
  29169. mawRegular: {
  29170. height: math.unit(1.24, "feet"),
  29171. name: "Maw (Regular)",
  29172. image: {
  29173. source: "./media/characters/wild/maw.svg"
  29174. }
  29175. },
  29176. mawBiggums: {
  29177. height: math.unit(1.47, "feet"),
  29178. name: "Maw (Biggums)",
  29179. image: {
  29180. source: "./media/characters/wild/maw.svg"
  29181. }
  29182. },
  29183. },
  29184. [
  29185. {
  29186. name: "Normal",
  29187. height: math.unit(7 + 3 / 12, "feet"),
  29188. default: true
  29189. },
  29190. ]
  29191. ))
  29192. characterMakers.push(() => makeCharacter(
  29193. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29194. {
  29195. front: {
  29196. height: math.unit(2.5, "meters"),
  29197. weight: math.unit(200, "kg"),
  29198. name: "Front",
  29199. image: {
  29200. source: "./media/characters/vidar/front.svg",
  29201. extra: 2994 / 2795,
  29202. bottom: 56 / 3061
  29203. }
  29204. },
  29205. back: {
  29206. height: math.unit(2.5, "meters"),
  29207. weight: math.unit(200, "kg"),
  29208. name: "Back",
  29209. image: {
  29210. source: "./media/characters/vidar/back.svg",
  29211. extra: 3131 / 2928,
  29212. bottom: 13.5 / 3141.5
  29213. }
  29214. },
  29215. feral: {
  29216. height: math.unit(2.5, "meters"),
  29217. weight: math.unit(2000, "kg"),
  29218. name: "Feral",
  29219. image: {
  29220. source: "./media/characters/vidar/feral.svg",
  29221. extra: 2790 / 1765,
  29222. bottom: 6 / 2796
  29223. }
  29224. },
  29225. },
  29226. [
  29227. {
  29228. name: "Normal",
  29229. height: math.unit(2.5, "meters"),
  29230. default: true
  29231. },
  29232. {
  29233. name: "Macro",
  29234. height: math.unit(100, "meters")
  29235. },
  29236. ]
  29237. ))
  29238. characterMakers.push(() => makeCharacter(
  29239. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29240. {
  29241. front: {
  29242. height: math.unit(5 + 9 / 12, "feet"),
  29243. weight: math.unit(120, "lb"),
  29244. name: "Front",
  29245. image: {
  29246. source: "./media/characters/ash/front.svg",
  29247. extra: 2189 / 1961,
  29248. bottom: 5.2 / 2194
  29249. }
  29250. },
  29251. },
  29252. [
  29253. {
  29254. name: "Normal",
  29255. height: math.unit(5 + 9 / 12, "feet"),
  29256. default: true
  29257. },
  29258. ]
  29259. ))
  29260. characterMakers.push(() => makeCharacter(
  29261. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29262. {
  29263. front: {
  29264. height: math.unit(9, "feet"),
  29265. weight: math.unit(10000, "lb"),
  29266. name: "Front",
  29267. image: {
  29268. source: "./media/characters/gygabite/front.svg",
  29269. bottom: 31.7 / 537.8,
  29270. extra: 505 / 370
  29271. }
  29272. },
  29273. },
  29274. [
  29275. {
  29276. name: "Normal",
  29277. height: math.unit(9, "feet"),
  29278. default: true
  29279. },
  29280. ]
  29281. ))
  29282. characterMakers.push(() => makeCharacter(
  29283. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29284. {
  29285. front: {
  29286. height: math.unit(12, "feet"),
  29287. weight: math.unit(4000, "lb"),
  29288. name: "Front",
  29289. image: {
  29290. source: "./media/characters/p0tat0/front.svg",
  29291. extra: 1065 / 921,
  29292. bottom: 55.7 / 1121.25
  29293. }
  29294. },
  29295. },
  29296. [
  29297. {
  29298. name: "Normal",
  29299. height: math.unit(12, "feet"),
  29300. default: true
  29301. },
  29302. ]
  29303. ))
  29304. characterMakers.push(() => makeCharacter(
  29305. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29306. {
  29307. side: {
  29308. height: math.unit(6.5, "feet"),
  29309. weight: math.unit(800, "lb"),
  29310. name: "Side",
  29311. image: {
  29312. source: "./media/characters/dusk/side.svg",
  29313. extra: 615 / 373,
  29314. bottom: 53 / 664
  29315. }
  29316. },
  29317. sitting: {
  29318. height: math.unit(7, "feet"),
  29319. weight: math.unit(800, "lb"),
  29320. name: "Sitting",
  29321. image: {
  29322. source: "./media/characters/dusk/sitting.svg",
  29323. extra: 753 / 425,
  29324. bottom: 33 / 774
  29325. }
  29326. },
  29327. head: {
  29328. height: math.unit(6.1, "feet"),
  29329. name: "Head",
  29330. image: {
  29331. source: "./media/characters/dusk/head.svg"
  29332. }
  29333. },
  29334. },
  29335. [
  29336. {
  29337. name: "Normal",
  29338. height: math.unit(7, "feet"),
  29339. default: true
  29340. },
  29341. ]
  29342. ))
  29343. characterMakers.push(() => makeCharacter(
  29344. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29345. {
  29346. front: {
  29347. height: math.unit(15, "feet"),
  29348. weight: math.unit(7000, "lb"),
  29349. name: "Front",
  29350. image: {
  29351. source: "./media/characters/jay-direwolf/front.svg",
  29352. extra: 1810 / 1732,
  29353. bottom: 66 / 1892
  29354. }
  29355. },
  29356. },
  29357. [
  29358. {
  29359. name: "Normal",
  29360. height: math.unit(15, "feet"),
  29361. default: true
  29362. },
  29363. ]
  29364. ))
  29365. characterMakers.push(() => makeCharacter(
  29366. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29367. {
  29368. front: {
  29369. height: math.unit(4 + 9 / 12, "feet"),
  29370. weight: math.unit(130, "lb"),
  29371. name: "Front",
  29372. image: {
  29373. source: "./media/characters/anchovie/front.svg",
  29374. extra: 382 / 350,
  29375. bottom: 25 / 409
  29376. }
  29377. },
  29378. back: {
  29379. height: math.unit(4 + 9 / 12, "feet"),
  29380. weight: math.unit(130, "lb"),
  29381. name: "Back",
  29382. image: {
  29383. source: "./media/characters/anchovie/back.svg",
  29384. extra: 385 / 352,
  29385. bottom: 16.6 / 402
  29386. }
  29387. },
  29388. frontDressed: {
  29389. height: math.unit(4 + 9 / 12, "feet"),
  29390. weight: math.unit(130, "lb"),
  29391. name: "Front (Dressed)",
  29392. image: {
  29393. source: "./media/characters/anchovie/front-dressed.svg",
  29394. extra: 382 / 350,
  29395. bottom: 25 / 409
  29396. }
  29397. },
  29398. backDressed: {
  29399. height: math.unit(4 + 9 / 12, "feet"),
  29400. weight: math.unit(130, "lb"),
  29401. name: "Back (Dressed)",
  29402. image: {
  29403. source: "./media/characters/anchovie/back-dressed.svg",
  29404. extra: 385 / 352,
  29405. bottom: 16.6 / 402
  29406. }
  29407. },
  29408. },
  29409. [
  29410. {
  29411. name: "Micro",
  29412. height: math.unit(6.4, "inches")
  29413. },
  29414. {
  29415. name: "Normal",
  29416. height: math.unit(4 + 9 / 12, "feet"),
  29417. default: true
  29418. },
  29419. ]
  29420. ))
  29421. characterMakers.push(() => makeCharacter(
  29422. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29423. {
  29424. front: {
  29425. height: math.unit(2, "meters"),
  29426. weight: math.unit(180, "lb"),
  29427. name: "Front",
  29428. image: {
  29429. source: "./media/characters/acidrenamon/front.svg",
  29430. extra: 987 / 890,
  29431. bottom: 22.8 / 1009
  29432. }
  29433. },
  29434. back: {
  29435. height: math.unit(2, "meters"),
  29436. weight: math.unit(180, "lb"),
  29437. name: "Back",
  29438. image: {
  29439. source: "./media/characters/acidrenamon/back.svg",
  29440. extra: 983 / 891,
  29441. bottom: 8.4 / 992
  29442. }
  29443. },
  29444. head: {
  29445. height: math.unit(1.92, "feet"),
  29446. name: "Head",
  29447. image: {
  29448. source: "./media/characters/acidrenamon/head.svg"
  29449. }
  29450. },
  29451. rump: {
  29452. height: math.unit(1.72, "feet"),
  29453. name: "Rump",
  29454. image: {
  29455. source: "./media/characters/acidrenamon/rump.svg"
  29456. }
  29457. },
  29458. tail: {
  29459. height: math.unit(4.2, "feet"),
  29460. name: "Tail",
  29461. image: {
  29462. source: "./media/characters/acidrenamon/tail.svg"
  29463. }
  29464. },
  29465. },
  29466. [
  29467. {
  29468. name: "Normal",
  29469. height: math.unit(2, "meters"),
  29470. default: true
  29471. },
  29472. {
  29473. name: "Minimacro",
  29474. height: math.unit(7, "meters")
  29475. },
  29476. {
  29477. name: "Macro",
  29478. height: math.unit(200, "meters")
  29479. },
  29480. {
  29481. name: "Gigamacro",
  29482. height: math.unit(0.2, "earths")
  29483. },
  29484. ]
  29485. ))
  29486. characterMakers.push(() => makeCharacter(
  29487. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29488. {
  29489. front: {
  29490. height: math.unit(152, "feet"),
  29491. name: "Front",
  29492. image: {
  29493. source: "./media/characters/kenzie-lee/front.svg",
  29494. extra: 1869/1774,
  29495. bottom: 128/1997
  29496. }
  29497. },
  29498. side: {
  29499. height: math.unit(86, "feet"),
  29500. name: "Side",
  29501. image: {
  29502. source: "./media/characters/kenzie-lee/side.svg",
  29503. extra: 930/815,
  29504. bottom: 177/1107
  29505. }
  29506. },
  29507. paw: {
  29508. height: math.unit(15, "feet"),
  29509. name: "Paw",
  29510. image: {
  29511. source: "./media/characters/kenzie-lee/paw.svg"
  29512. }
  29513. },
  29514. },
  29515. [
  29516. {
  29517. name: "Kenzie Flea",
  29518. height: math.unit(2, "mm"),
  29519. default: true
  29520. },
  29521. {
  29522. name: "Micro",
  29523. height: math.unit(2, "inches")
  29524. },
  29525. {
  29526. name: "Normal",
  29527. height: math.unit(152, "feet")
  29528. },
  29529. {
  29530. name: "Megamacro",
  29531. height: math.unit(7, "miles")
  29532. },
  29533. {
  29534. name: "Gigamacro",
  29535. height: math.unit(8000, "miles")
  29536. },
  29537. ]
  29538. ))
  29539. characterMakers.push(() => makeCharacter(
  29540. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29541. {
  29542. front: {
  29543. height: math.unit(6, "feet"),
  29544. name: "Front",
  29545. image: {
  29546. source: "./media/characters/withers/front.svg",
  29547. extra: 1935/1760,
  29548. bottom: 72/2007
  29549. }
  29550. },
  29551. back: {
  29552. height: math.unit(6, "feet"),
  29553. name: "Back",
  29554. image: {
  29555. source: "./media/characters/withers/back.svg",
  29556. extra: 1944/1792,
  29557. bottom: 12/1956
  29558. }
  29559. },
  29560. dressed: {
  29561. height: math.unit(6, "feet"),
  29562. name: "Dressed",
  29563. image: {
  29564. source: "./media/characters/withers/dressed.svg",
  29565. extra: 1937/1765,
  29566. bottom: 73/2010
  29567. }
  29568. },
  29569. phase1: {
  29570. height: math.unit(1.1, "feet"),
  29571. name: "Phase 1",
  29572. image: {
  29573. source: "./media/characters/withers/phase-1.svg",
  29574. extra: 1885/1232,
  29575. bottom: 0/1885
  29576. }
  29577. },
  29578. phase2: {
  29579. height: math.unit(1.05, "feet"),
  29580. name: "Phase 2",
  29581. image: {
  29582. source: "./media/characters/withers/phase-2.svg",
  29583. extra: 1792/1090,
  29584. bottom: 0/1792
  29585. }
  29586. },
  29587. partyWipe: {
  29588. height: math.unit(1.1, "feet"),
  29589. name: "Party Wipe",
  29590. image: {
  29591. source: "./media/characters/withers/party-wipe.svg",
  29592. extra: 1864/1207,
  29593. bottom: 0/1864
  29594. }
  29595. },
  29596. },
  29597. [
  29598. {
  29599. name: "Macro",
  29600. height: math.unit(167, "feet"),
  29601. default: true
  29602. },
  29603. {
  29604. name: "Megamacro",
  29605. height: math.unit(15, "miles")
  29606. }
  29607. ]
  29608. ))
  29609. characterMakers.push(() => makeCharacter(
  29610. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29611. {
  29612. front: {
  29613. height: math.unit(6 + 7 / 12, "feet"),
  29614. weight: math.unit(250, "lb"),
  29615. name: "Front",
  29616. image: {
  29617. source: "./media/characters/nemoskii/front.svg",
  29618. extra: 2270 / 1734,
  29619. bottom: 86 / 2354
  29620. }
  29621. },
  29622. back: {
  29623. height: math.unit(6 + 7 / 12, "feet"),
  29624. weight: math.unit(250, "lb"),
  29625. name: "Back",
  29626. image: {
  29627. source: "./media/characters/nemoskii/back.svg",
  29628. extra: 1845 / 1788,
  29629. bottom: 10.5 / 1852
  29630. }
  29631. },
  29632. head: {
  29633. height: math.unit(1.31, "feet"),
  29634. name: "Head",
  29635. image: {
  29636. source: "./media/characters/nemoskii/head.svg"
  29637. }
  29638. },
  29639. },
  29640. [
  29641. {
  29642. name: "Micro",
  29643. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29644. },
  29645. {
  29646. name: "Normal",
  29647. height: math.unit(6 + 7 / 12, "feet"),
  29648. default: true
  29649. },
  29650. {
  29651. name: "Macro",
  29652. height: math.unit((6 + 7 / 12) * 150, "feet")
  29653. },
  29654. {
  29655. name: "Macro+",
  29656. height: math.unit((6 + 7 / 12) * 500, "feet")
  29657. },
  29658. {
  29659. name: "Megamacro",
  29660. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29661. },
  29662. ]
  29663. ))
  29664. characterMakers.push(() => makeCharacter(
  29665. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29666. {
  29667. front: {
  29668. height: math.unit(1, "mile"),
  29669. weight: math.unit(265261.9, "lb"),
  29670. name: "Front",
  29671. image: {
  29672. source: "./media/characters/shui/front.svg",
  29673. extra: 1633 / 1564,
  29674. bottom: 91.5 / 1726
  29675. }
  29676. },
  29677. },
  29678. [
  29679. {
  29680. name: "Macro",
  29681. height: math.unit(1, "mile"),
  29682. default: true
  29683. },
  29684. ]
  29685. ))
  29686. characterMakers.push(() => makeCharacter(
  29687. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29688. {
  29689. front: {
  29690. height: math.unit(12 + 6 / 12, "feet"),
  29691. weight: math.unit(1342, "lb"),
  29692. name: "Front",
  29693. image: {
  29694. source: "./media/characters/arokh-takakura/front.svg",
  29695. extra: 1089 / 1043,
  29696. bottom: 77.4 / 1176.7
  29697. }
  29698. },
  29699. back: {
  29700. height: math.unit(12 + 6 / 12, "feet"),
  29701. weight: math.unit(1342, "lb"),
  29702. name: "Back",
  29703. image: {
  29704. source: "./media/characters/arokh-takakura/back.svg",
  29705. extra: 1046 / 1019,
  29706. bottom: 102 / 1150
  29707. }
  29708. },
  29709. },
  29710. [
  29711. {
  29712. name: "Big",
  29713. height: math.unit(12 + 6 / 12, "feet"),
  29714. default: true
  29715. },
  29716. ]
  29717. ))
  29718. characterMakers.push(() => makeCharacter(
  29719. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29720. {
  29721. front: {
  29722. height: math.unit(5 + 6 / 12, "feet"),
  29723. weight: math.unit(150, "lb"),
  29724. name: "Front",
  29725. image: {
  29726. source: "./media/characters/theo/front.svg",
  29727. extra: 1184 / 1131,
  29728. bottom: 7.4 / 1191
  29729. }
  29730. },
  29731. },
  29732. [
  29733. {
  29734. name: "Micro",
  29735. height: math.unit(5, "inches")
  29736. },
  29737. {
  29738. name: "Normal",
  29739. height: math.unit(5 + 6 / 12, "feet"),
  29740. default: true
  29741. },
  29742. ]
  29743. ))
  29744. characterMakers.push(() => makeCharacter(
  29745. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29746. {
  29747. front: {
  29748. height: math.unit(5 + 9 / 12, "feet"),
  29749. weight: math.unit(130, "lb"),
  29750. name: "Front",
  29751. image: {
  29752. source: "./media/characters/cecelia-swift/front.svg",
  29753. extra: 502 / 484,
  29754. bottom: 23 / 523
  29755. }
  29756. },
  29757. back: {
  29758. height: math.unit(5 + 9 / 12, "feet"),
  29759. weight: math.unit(130, "lb"),
  29760. name: "Back",
  29761. image: {
  29762. source: "./media/characters/cecelia-swift/back.svg",
  29763. extra: 499 / 485,
  29764. bottom: 12 / 511
  29765. }
  29766. },
  29767. head: {
  29768. height: math.unit(0.90, "feet"),
  29769. name: "Head",
  29770. image: {
  29771. source: "./media/characters/cecelia-swift/head.svg"
  29772. }
  29773. },
  29774. rump: {
  29775. height: math.unit(1.75, "feet"),
  29776. name: "Rump",
  29777. image: {
  29778. source: "./media/characters/cecelia-swift/rump.svg"
  29779. }
  29780. },
  29781. },
  29782. [
  29783. {
  29784. name: "Normal",
  29785. height: math.unit(5 + 9 / 12, "feet"),
  29786. default: true
  29787. },
  29788. {
  29789. name: "Big",
  29790. height: math.unit(50, "feet")
  29791. },
  29792. {
  29793. name: "Macro",
  29794. height: math.unit(100, "feet")
  29795. },
  29796. {
  29797. name: "Macro+",
  29798. height: math.unit(500, "feet")
  29799. },
  29800. {
  29801. name: "Macro++",
  29802. height: math.unit(1000, "feet")
  29803. },
  29804. ]
  29805. ))
  29806. characterMakers.push(() => makeCharacter(
  29807. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29808. {
  29809. front: {
  29810. height: math.unit(6, "feet"),
  29811. weight: math.unit(150, "lb"),
  29812. name: "Front",
  29813. image: {
  29814. source: "./media/characters/kaunan/front.svg",
  29815. extra: 2890 / 2523,
  29816. bottom: 49 / 2939
  29817. }
  29818. },
  29819. },
  29820. [
  29821. {
  29822. name: "Macro",
  29823. height: math.unit(150, "feet"),
  29824. default: true
  29825. },
  29826. ]
  29827. ))
  29828. characterMakers.push(() => makeCharacter(
  29829. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29830. {
  29831. dressed: {
  29832. height: math.unit(175, "cm"),
  29833. weight: math.unit(60, "kg"),
  29834. name: "Dressed",
  29835. image: {
  29836. source: "./media/characters/fei/dressed.svg",
  29837. extra: 1402/1278,
  29838. bottom: 27/1429
  29839. }
  29840. },
  29841. nude: {
  29842. height: math.unit(175, "cm"),
  29843. weight: math.unit(60, "kg"),
  29844. name: "Nude",
  29845. image: {
  29846. source: "./media/characters/fei/nude.svg",
  29847. extra: 1402/1278,
  29848. bottom: 27/1429
  29849. }
  29850. },
  29851. heels: {
  29852. height: math.unit(0.466, "feet"),
  29853. name: "Heels",
  29854. image: {
  29855. source: "./media/characters/fei/heels.svg",
  29856. extra: 156/152,
  29857. bottom: 28/184
  29858. }
  29859. },
  29860. },
  29861. [
  29862. {
  29863. name: "Mortal",
  29864. height: math.unit(175, "cm")
  29865. },
  29866. {
  29867. name: "Normal",
  29868. height: math.unit(3500, "m")
  29869. },
  29870. {
  29871. name: "Stroll",
  29872. height: math.unit(18.4, "km"),
  29873. default: true
  29874. },
  29875. {
  29876. name: "Showoff",
  29877. height: math.unit(175, "km")
  29878. },
  29879. ]
  29880. ))
  29881. characterMakers.push(() => makeCharacter(
  29882. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29883. {
  29884. front: {
  29885. height: math.unit(7, "feet"),
  29886. weight: math.unit(1000, "kg"),
  29887. name: "Front",
  29888. image: {
  29889. source: "./media/characters/edrax/front.svg",
  29890. extra: 2838 / 2550,
  29891. bottom: 130 / 2968
  29892. }
  29893. },
  29894. },
  29895. [
  29896. {
  29897. name: "Small",
  29898. height: math.unit(7, "feet")
  29899. },
  29900. {
  29901. name: "Normal",
  29902. height: math.unit(1500, "meters")
  29903. },
  29904. {
  29905. name: "Mega",
  29906. height: math.unit(12000000, "km"),
  29907. default: true
  29908. },
  29909. {
  29910. name: "Megamacro",
  29911. height: math.unit(10600000, "lightyears")
  29912. },
  29913. {
  29914. name: "Hypermacro",
  29915. height: math.unit(256, "yottameters")
  29916. },
  29917. ]
  29918. ))
  29919. characterMakers.push(() => makeCharacter(
  29920. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29921. {
  29922. front: {
  29923. height: math.unit(10, "feet"),
  29924. weight: math.unit(750, "lb"),
  29925. name: "Front",
  29926. image: {
  29927. source: "./media/characters/clove/front.svg",
  29928. extra: 1918/1751,
  29929. bottom: 52/1970
  29930. }
  29931. },
  29932. back: {
  29933. height: math.unit(10, "feet"),
  29934. weight: math.unit(750, "lb"),
  29935. name: "Back",
  29936. image: {
  29937. source: "./media/characters/clove/back.svg",
  29938. extra: 1912/1747,
  29939. bottom: 50/1962
  29940. }
  29941. },
  29942. },
  29943. [
  29944. {
  29945. name: "Normal",
  29946. height: math.unit(10, "feet"),
  29947. default: true
  29948. },
  29949. ]
  29950. ))
  29951. characterMakers.push(() => makeCharacter(
  29952. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29953. {
  29954. front: {
  29955. height: math.unit(4, "feet"),
  29956. weight: math.unit(50, "lb"),
  29957. name: "Front",
  29958. image: {
  29959. source: "./media/characters/alex-rabbit/front.svg",
  29960. extra: 507 / 458,
  29961. bottom: 18.5 / 527
  29962. }
  29963. },
  29964. back: {
  29965. height: math.unit(4, "feet"),
  29966. weight: math.unit(50, "lb"),
  29967. name: "Back",
  29968. image: {
  29969. source: "./media/characters/alex-rabbit/back.svg",
  29970. extra: 502 / 460,
  29971. bottom: 18.9 / 521
  29972. }
  29973. },
  29974. },
  29975. [
  29976. {
  29977. name: "Normal",
  29978. height: math.unit(4, "feet"),
  29979. default: true
  29980. },
  29981. ]
  29982. ))
  29983. characterMakers.push(() => makeCharacter(
  29984. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29985. {
  29986. front: {
  29987. height: math.unit(1 + 3 / 12, "feet"),
  29988. weight: math.unit(80, "lb"),
  29989. name: "Front",
  29990. image: {
  29991. source: "./media/characters/zander-rose/front.svg",
  29992. extra: 916 / 797,
  29993. bottom: 17 / 933
  29994. }
  29995. },
  29996. back: {
  29997. height: math.unit(1 + 3 / 12, "feet"),
  29998. weight: math.unit(80, "lb"),
  29999. name: "Back",
  30000. image: {
  30001. source: "./media/characters/zander-rose/back.svg",
  30002. extra: 903 / 779,
  30003. bottom: 31 / 934
  30004. }
  30005. },
  30006. },
  30007. [
  30008. {
  30009. name: "Normal",
  30010. height: math.unit(1 + 3 / 12, "feet"),
  30011. default: true
  30012. },
  30013. ]
  30014. ))
  30015. characterMakers.push(() => makeCharacter(
  30016. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30017. {
  30018. anthro: {
  30019. height: math.unit(6, "feet"),
  30020. weight: math.unit(150, "lb"),
  30021. name: "Anthro",
  30022. image: {
  30023. source: "./media/characters/razz/anthro.svg",
  30024. extra: 1437 / 1343,
  30025. bottom: 48 / 1485
  30026. }
  30027. },
  30028. feral: {
  30029. height: math.unit(6, "feet"),
  30030. weight: math.unit(150, "lb"),
  30031. name: "Feral",
  30032. image: {
  30033. source: "./media/characters/razz/feral.svg",
  30034. extra: 2569 / 1385,
  30035. bottom: 95 / 2664
  30036. }
  30037. },
  30038. },
  30039. [
  30040. {
  30041. name: "Normal",
  30042. height: math.unit(6, "feet"),
  30043. default: true
  30044. },
  30045. ]
  30046. ))
  30047. characterMakers.push(() => makeCharacter(
  30048. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30049. {
  30050. front: {
  30051. height: math.unit(9 + 4 / 12, "feet"),
  30052. weight: math.unit(500, "lb"),
  30053. name: "Front",
  30054. image: {
  30055. source: "./media/characters/morrigan/front.svg",
  30056. extra: 2707 / 2579,
  30057. bottom: 156 / 2863
  30058. }
  30059. },
  30060. },
  30061. [
  30062. {
  30063. name: "Normal",
  30064. height: math.unit(9 + 4 / 12, "feet"),
  30065. default: true
  30066. },
  30067. ]
  30068. ))
  30069. characterMakers.push(() => makeCharacter(
  30070. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30071. {
  30072. front: {
  30073. height: math.unit(5, "stories"),
  30074. weight: math.unit(4000, "lb"),
  30075. name: "Front",
  30076. image: {
  30077. source: "./media/characters/jenene/front.svg",
  30078. extra: 1780 / 1710,
  30079. bottom: 57 / 1837
  30080. }
  30081. },
  30082. },
  30083. [
  30084. {
  30085. name: "Normal",
  30086. height: math.unit(5, "stories"),
  30087. default: true
  30088. },
  30089. ]
  30090. ))
  30091. characterMakers.push(() => makeCharacter(
  30092. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30093. {
  30094. taurSfw: {
  30095. height: math.unit(10, "meters"),
  30096. weight: math.unit(17500, "kg"),
  30097. name: "Taur",
  30098. image: {
  30099. source: "./media/characters/faey/taur-sfw.svg",
  30100. extra: 1200 / 968,
  30101. bottom: 41 / 1241
  30102. }
  30103. },
  30104. chestmaw: {
  30105. height: math.unit(2.01, "meters"),
  30106. name: "Chestmaw",
  30107. image: {
  30108. source: "./media/characters/faey/chestmaw.svg"
  30109. }
  30110. },
  30111. foot: {
  30112. height: math.unit(2.43, "meters"),
  30113. name: "Foot",
  30114. image: {
  30115. source: "./media/characters/faey/foot.svg"
  30116. }
  30117. },
  30118. jaws: {
  30119. height: math.unit(1.66, "meters"),
  30120. name: "Jaws",
  30121. image: {
  30122. source: "./media/characters/faey/jaws.svg"
  30123. }
  30124. },
  30125. tongues: {
  30126. height: math.unit(2.01, "meters"),
  30127. name: "Tongues",
  30128. image: {
  30129. source: "./media/characters/faey/tongues.svg"
  30130. }
  30131. },
  30132. },
  30133. [
  30134. {
  30135. name: "Small",
  30136. height: math.unit(10, "meters"),
  30137. default: true
  30138. },
  30139. {
  30140. name: "Big",
  30141. height: math.unit(500000, "km")
  30142. },
  30143. ]
  30144. ))
  30145. characterMakers.push(() => makeCharacter(
  30146. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30147. {
  30148. front: {
  30149. height: math.unit(7, "feet"),
  30150. weight: math.unit(275, "lb"),
  30151. name: "Front",
  30152. image: {
  30153. source: "./media/characters/roku/front.svg",
  30154. extra: 903 / 878,
  30155. bottom: 37 / 940
  30156. }
  30157. },
  30158. },
  30159. [
  30160. {
  30161. name: "Normal",
  30162. height: math.unit(7, "feet"),
  30163. default: true
  30164. },
  30165. {
  30166. name: "Macro",
  30167. height: math.unit(500, "feet")
  30168. },
  30169. {
  30170. name: "Megamacro",
  30171. height: math.unit(200, "miles")
  30172. },
  30173. ]
  30174. ))
  30175. characterMakers.push(() => makeCharacter(
  30176. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30177. {
  30178. front: {
  30179. height: math.unit(6 + 2 / 12, "feet"),
  30180. weight: math.unit(150, "lb"),
  30181. name: "Front",
  30182. image: {
  30183. source: "./media/characters/lira/front.svg",
  30184. extra: 1727 / 1605,
  30185. bottom: 26 / 1753
  30186. }
  30187. },
  30188. back: {
  30189. height: math.unit(6 + 2 / 12, "feet"),
  30190. weight: math.unit(150, "lb"),
  30191. name: "Back",
  30192. image: {
  30193. source: "./media/characters/lira/back.svg",
  30194. extra: 1713/1621,
  30195. bottom: 20/1733
  30196. }
  30197. },
  30198. hand: {
  30199. height: math.unit(0.75, "feet"),
  30200. name: "Hand",
  30201. image: {
  30202. source: "./media/characters/lira/hand.svg"
  30203. }
  30204. },
  30205. maw: {
  30206. height: math.unit(0.65, "feet"),
  30207. name: "Maw",
  30208. image: {
  30209. source: "./media/characters/lira/maw.svg"
  30210. }
  30211. },
  30212. pawDigi: {
  30213. height: math.unit(1.6, "feet"),
  30214. name: "Paw Digi",
  30215. image: {
  30216. source: "./media/characters/lira/paw-digi.svg"
  30217. }
  30218. },
  30219. pawPlanti: {
  30220. height: math.unit(1.4, "feet"),
  30221. name: "Paw Planti",
  30222. image: {
  30223. source: "./media/characters/lira/paw-planti.svg"
  30224. }
  30225. },
  30226. },
  30227. [
  30228. {
  30229. name: "Normal",
  30230. height: math.unit(6 + 2 / 12, "feet"),
  30231. default: true
  30232. },
  30233. {
  30234. name: "Macro",
  30235. height: math.unit(100, "feet")
  30236. },
  30237. {
  30238. name: "Macro²",
  30239. height: math.unit(1600, "feet")
  30240. },
  30241. {
  30242. name: "Planetary",
  30243. height: math.unit(20, "earths")
  30244. },
  30245. ]
  30246. ))
  30247. characterMakers.push(() => makeCharacter(
  30248. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30249. {
  30250. front: {
  30251. height: math.unit(6, "feet"),
  30252. weight: math.unit(150, "lb"),
  30253. name: "Front",
  30254. image: {
  30255. source: "./media/characters/hadjet/front.svg",
  30256. extra: 1480 / 1346,
  30257. bottom: 26 / 1506
  30258. }
  30259. },
  30260. frontNsfw: {
  30261. height: math.unit(6, "feet"),
  30262. weight: math.unit(150, "lb"),
  30263. name: "Front (NSFW)",
  30264. image: {
  30265. source: "./media/characters/hadjet/front-nsfw.svg",
  30266. extra: 1440 / 1358,
  30267. bottom: 52 / 1492
  30268. }
  30269. },
  30270. },
  30271. [
  30272. {
  30273. name: "Macro",
  30274. height: math.unit(10, "stories"),
  30275. default: true
  30276. },
  30277. {
  30278. name: "Megamacro",
  30279. height: math.unit(1.5, "miles")
  30280. },
  30281. {
  30282. name: "Megamacro+",
  30283. height: math.unit(5, "miles")
  30284. },
  30285. ]
  30286. ))
  30287. characterMakers.push(() => makeCharacter(
  30288. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30289. {
  30290. side: {
  30291. height: math.unit(106, "feet"),
  30292. weight: math.unit(500, "tonnes"),
  30293. name: "Side",
  30294. image: {
  30295. source: "./media/characters/kodran/side.svg",
  30296. extra: 553 / 480,
  30297. bottom: 33 / 586
  30298. }
  30299. },
  30300. front: {
  30301. height: math.unit(132, "feet"),
  30302. weight: math.unit(500, "tonnes"),
  30303. name: "Front",
  30304. image: {
  30305. source: "./media/characters/kodran/front.svg",
  30306. extra: 667 / 643,
  30307. bottom: 42 / 709
  30308. }
  30309. },
  30310. flying: {
  30311. height: math.unit(350, "feet"),
  30312. weight: math.unit(500, "tonnes"),
  30313. name: "Flying",
  30314. image: {
  30315. source: "./media/characters/kodran/flying.svg"
  30316. }
  30317. },
  30318. foot: {
  30319. height: math.unit(33, "feet"),
  30320. name: "Foot",
  30321. image: {
  30322. source: "./media/characters/kodran/foot.svg"
  30323. }
  30324. },
  30325. footFront: {
  30326. height: math.unit(19, "feet"),
  30327. name: "Foot (Front)",
  30328. image: {
  30329. source: "./media/characters/kodran/foot-front.svg",
  30330. extra: 261 / 261,
  30331. bottom: 91 / 352
  30332. }
  30333. },
  30334. headFront: {
  30335. height: math.unit(53, "feet"),
  30336. name: "Head (Front)",
  30337. image: {
  30338. source: "./media/characters/kodran/head-front.svg"
  30339. }
  30340. },
  30341. headSide: {
  30342. height: math.unit(65, "feet"),
  30343. name: "Head (Side)",
  30344. image: {
  30345. source: "./media/characters/kodran/head-side.svg"
  30346. }
  30347. },
  30348. throat: {
  30349. height: math.unit(79, "feet"),
  30350. name: "Throat",
  30351. image: {
  30352. source: "./media/characters/kodran/throat.svg"
  30353. }
  30354. },
  30355. },
  30356. [
  30357. {
  30358. name: "Large",
  30359. height: math.unit(106, "feet"),
  30360. default: true
  30361. },
  30362. ]
  30363. ))
  30364. characterMakers.push(() => makeCharacter(
  30365. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30366. {
  30367. side: {
  30368. height: math.unit(11, "feet"),
  30369. weight: math.unit(150, "lb"),
  30370. name: "Side",
  30371. image: {
  30372. source: "./media/characters/pyxaron/side.svg",
  30373. extra: 305 / 195,
  30374. bottom: 17 / 322
  30375. }
  30376. },
  30377. },
  30378. [
  30379. {
  30380. name: "Normal",
  30381. height: math.unit(11, "feet"),
  30382. default: true
  30383. },
  30384. ]
  30385. ))
  30386. characterMakers.push(() => makeCharacter(
  30387. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30388. {
  30389. front: {
  30390. height: math.unit(6, "feet"),
  30391. weight: math.unit(150, "lb"),
  30392. name: "Front",
  30393. image: {
  30394. source: "./media/characters/meep/front.svg",
  30395. extra: 88 / 80,
  30396. bottom: 6 / 94
  30397. }
  30398. },
  30399. },
  30400. [
  30401. {
  30402. name: "Fun Sized",
  30403. height: math.unit(2, "inches"),
  30404. default: true
  30405. },
  30406. {
  30407. name: "Friend Sized",
  30408. height: math.unit(8, "inches")
  30409. },
  30410. ]
  30411. ))
  30412. characterMakers.push(() => makeCharacter(
  30413. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30414. {
  30415. front: {
  30416. height: math.unit(15, "feet"),
  30417. weight: math.unit(2500, "lb"),
  30418. name: "Front",
  30419. image: {
  30420. source: "./media/characters/holly-rabbit/front.svg",
  30421. extra: 1433 / 1233,
  30422. bottom: 125 / 1558
  30423. }
  30424. },
  30425. dick: {
  30426. height: math.unit(4.6, "feet"),
  30427. name: "Dick",
  30428. image: {
  30429. source: "./media/characters/holly-rabbit/dick.svg"
  30430. }
  30431. },
  30432. },
  30433. [
  30434. {
  30435. name: "Normal",
  30436. height: math.unit(15, "feet"),
  30437. default: true
  30438. },
  30439. {
  30440. name: "Macro",
  30441. height: math.unit(250, "feet")
  30442. },
  30443. {
  30444. name: "Macro+",
  30445. height: math.unit(2500, "feet")
  30446. },
  30447. ]
  30448. ))
  30449. characterMakers.push(() => makeCharacter(
  30450. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30451. {
  30452. front: {
  30453. height: math.unit(3.02, "meters"),
  30454. weight: math.unit(500, "kg"),
  30455. name: "Front",
  30456. image: {
  30457. source: "./media/characters/drena/front.svg",
  30458. extra: 282 / 243,
  30459. bottom: 8 / 290
  30460. }
  30461. },
  30462. side: {
  30463. height: math.unit(3.02, "meters"),
  30464. weight: math.unit(500, "kg"),
  30465. name: "Side",
  30466. image: {
  30467. source: "./media/characters/drena/side.svg",
  30468. extra: 280 / 245,
  30469. bottom: 10 / 290
  30470. }
  30471. },
  30472. back: {
  30473. height: math.unit(3.02, "meters"),
  30474. weight: math.unit(500, "kg"),
  30475. name: "Back",
  30476. image: {
  30477. source: "./media/characters/drena/back.svg",
  30478. extra: 278 / 243,
  30479. bottom: 2 / 280
  30480. }
  30481. },
  30482. foot: {
  30483. height: math.unit(0.75, "meters"),
  30484. name: "Foot",
  30485. image: {
  30486. source: "./media/characters/drena/foot.svg"
  30487. }
  30488. },
  30489. maw: {
  30490. height: math.unit(0.82, "meters"),
  30491. name: "Maw",
  30492. image: {
  30493. source: "./media/characters/drena/maw.svg"
  30494. }
  30495. },
  30496. eating: {
  30497. height: math.unit(0.75, "meters"),
  30498. name: "Eating",
  30499. image: {
  30500. source: "./media/characters/drena/eating.svg"
  30501. }
  30502. },
  30503. rump: {
  30504. height: math.unit(0.93, "meters"),
  30505. name: "Rump",
  30506. image: {
  30507. source: "./media/characters/drena/rump.svg"
  30508. }
  30509. },
  30510. },
  30511. [
  30512. {
  30513. name: "Normal",
  30514. height: math.unit(3.02, "meters"),
  30515. default: true
  30516. },
  30517. ]
  30518. ))
  30519. characterMakers.push(() => makeCharacter(
  30520. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30521. {
  30522. front: {
  30523. height: math.unit(6 + 4 / 12, "feet"),
  30524. weight: math.unit(250, "lb"),
  30525. name: "Front",
  30526. image: {
  30527. source: "./media/characters/remmyzilla/front.svg",
  30528. extra: 4033 / 3588,
  30529. bottom: 123 / 4156
  30530. }
  30531. },
  30532. back: {
  30533. height: math.unit(6 + 4 / 12, "feet"),
  30534. weight: math.unit(250, "lb"),
  30535. name: "Back",
  30536. image: {
  30537. source: "./media/characters/remmyzilla/back.svg",
  30538. extra: 2687 / 2555,
  30539. bottom: 48 / 2735
  30540. }
  30541. },
  30542. paw: {
  30543. height: math.unit(1.73, "feet"),
  30544. name: "Paw",
  30545. image: {
  30546. source: "./media/characters/remmyzilla/paw.svg"
  30547. },
  30548. extraAttributes: {
  30549. "toeSize": {
  30550. name: "Toe Size",
  30551. power: 2,
  30552. type: "area",
  30553. base: math.unit(0.0035, "m^2")
  30554. },
  30555. "padSize": {
  30556. name: "Pad Size",
  30557. power: 2,
  30558. type: "area",
  30559. base: math.unit(0.015, "m^2")
  30560. },
  30561. "pawsize": {
  30562. name: "Paw Size",
  30563. power: 2,
  30564. type: "area",
  30565. base: math.unit(0.072, "m^2")
  30566. },
  30567. }
  30568. },
  30569. maw: {
  30570. height: math.unit(1.73, "feet"),
  30571. name: "Maw",
  30572. image: {
  30573. source: "./media/characters/remmyzilla/maw.svg"
  30574. }
  30575. },
  30576. },
  30577. [
  30578. {
  30579. name: "Normal",
  30580. height: math.unit(6 + 4 / 12, "feet")
  30581. },
  30582. {
  30583. name: "Minimacro",
  30584. height: math.unit(12 + 8 / 12, "feet")
  30585. },
  30586. {
  30587. name: "Normal",
  30588. height: math.unit(640, "feet"),
  30589. default: true
  30590. },
  30591. {
  30592. name: "Megamacro",
  30593. height: math.unit(6400, "feet")
  30594. },
  30595. {
  30596. name: "Gigamacro",
  30597. height: math.unit(64000, "miles")
  30598. },
  30599. ]
  30600. ))
  30601. characterMakers.push(() => makeCharacter(
  30602. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30603. {
  30604. front: {
  30605. height: math.unit(2.5, "meters"),
  30606. weight: math.unit(300, "lb"),
  30607. name: "Front",
  30608. image: {
  30609. source: "./media/characters/lawrence/front.svg",
  30610. extra: 357 / 335,
  30611. bottom: 30 / 387
  30612. }
  30613. },
  30614. back: {
  30615. height: math.unit(2.5, "meters"),
  30616. weight: math.unit(300, "lb"),
  30617. name: "Back",
  30618. image: {
  30619. source: "./media/characters/lawrence/back.svg",
  30620. extra: 357 / 338,
  30621. bottom: 16 / 373
  30622. }
  30623. },
  30624. head: {
  30625. height: math.unit(0.9, "meter"),
  30626. name: "Head",
  30627. image: {
  30628. source: "./media/characters/lawrence/head.svg"
  30629. }
  30630. },
  30631. maw: {
  30632. height: math.unit(0.7, "meter"),
  30633. name: "Maw",
  30634. image: {
  30635. source: "./media/characters/lawrence/maw.svg"
  30636. }
  30637. },
  30638. footBottom: {
  30639. height: math.unit(0.5, "meter"),
  30640. name: "Foot (Bottom)",
  30641. image: {
  30642. source: "./media/characters/lawrence/foot-bottom.svg"
  30643. }
  30644. },
  30645. footTop: {
  30646. height: math.unit(0.5, "meter"),
  30647. name: "Foot (Top)",
  30648. image: {
  30649. source: "./media/characters/lawrence/foot-top.svg"
  30650. }
  30651. },
  30652. },
  30653. [
  30654. {
  30655. name: "Normal",
  30656. height: math.unit(2.5, "meters"),
  30657. default: true
  30658. },
  30659. {
  30660. name: "Macro",
  30661. height: math.unit(95, "meters")
  30662. },
  30663. {
  30664. name: "Megamacro",
  30665. height: math.unit(150, "km")
  30666. },
  30667. ]
  30668. ))
  30669. characterMakers.push(() => makeCharacter(
  30670. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30671. {
  30672. front: {
  30673. height: math.unit(4.2, "meters"),
  30674. preyCapacity: math.unit(50, "m^3"),
  30675. weight: math.unit(30, "tonnes"),
  30676. name: "Front",
  30677. image: {
  30678. source: "./media/characters/sydney/front.svg",
  30679. extra: 1177/1129,
  30680. bottom: 197/1374
  30681. },
  30682. extraAttributes: {
  30683. "length": {
  30684. name: "Length",
  30685. power: 1,
  30686. type: "length",
  30687. base: math.unit(21, "meters")
  30688. },
  30689. }
  30690. },
  30691. },
  30692. [
  30693. {
  30694. name: "Normal",
  30695. height: math.unit(4.2, "meters"),
  30696. default: true
  30697. },
  30698. ]
  30699. ))
  30700. characterMakers.push(() => makeCharacter(
  30701. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30702. {
  30703. back: {
  30704. height: math.unit(201, "feet"),
  30705. name: "Back",
  30706. image: {
  30707. source: "./media/characters/jessica/back.svg",
  30708. extra: 273 / 259,
  30709. bottom: 7 / 280
  30710. }
  30711. },
  30712. },
  30713. [
  30714. {
  30715. name: "Normal",
  30716. height: math.unit(201, "feet"),
  30717. default: true
  30718. },
  30719. {
  30720. name: "Megamacro",
  30721. height: math.unit(8, "miles")
  30722. },
  30723. ]
  30724. ))
  30725. characterMakers.push(() => makeCharacter(
  30726. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30727. {
  30728. side: {
  30729. height: math.unit(5.6, "m"),
  30730. weight: math.unit(8000, "kg"),
  30731. name: "Side",
  30732. image: {
  30733. source: "./media/characters/victoria/side.svg",
  30734. extra: 1542/1229,
  30735. bottom: 124/1666
  30736. }
  30737. },
  30738. maw: {
  30739. height: math.unit(7.14, "feet"),
  30740. name: "Maw",
  30741. image: {
  30742. source: "./media/characters/victoria/maw.svg"
  30743. }
  30744. },
  30745. },
  30746. [
  30747. {
  30748. name: "Normal",
  30749. height: math.unit(5.6, "m"),
  30750. default: true
  30751. },
  30752. ]
  30753. ))
  30754. characterMakers.push(() => makeCharacter(
  30755. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30756. {
  30757. front: {
  30758. height: math.unit(5 + 6 / 12, "feet"),
  30759. name: "Front",
  30760. image: {
  30761. source: "./media/characters/cat/front.svg",
  30762. extra: 1449/1295,
  30763. bottom: 34/1483
  30764. },
  30765. form: "cat",
  30766. default: true
  30767. },
  30768. back: {
  30769. height: math.unit(5 + 6 / 12, "feet"),
  30770. name: "Back",
  30771. image: {
  30772. source: "./media/characters/cat/back.svg",
  30773. extra: 1466/1301,
  30774. bottom: 19/1485
  30775. },
  30776. form: "cat"
  30777. },
  30778. taur: {
  30779. height: math.unit(7, "feet"),
  30780. name: "Taur",
  30781. image: {
  30782. source: "./media/characters/cat/taur.svg",
  30783. extra: 1389/1233,
  30784. bottom: 83/1472
  30785. },
  30786. form: "taur",
  30787. default: true
  30788. },
  30789. lucarioFront: {
  30790. height: math.unit(4, "feet"),
  30791. name: "Lucario (Front)",
  30792. image: {
  30793. source: "./media/characters/cat/lucario-front.svg",
  30794. extra: 1149/1019,
  30795. bottom: 84/1233
  30796. },
  30797. form: "lucario",
  30798. default: true
  30799. },
  30800. lucarioBack: {
  30801. height: math.unit(4, "feet"),
  30802. name: "Lucario (Back)",
  30803. image: {
  30804. source: "./media/characters/cat/lucario-back.svg",
  30805. extra: 1190/1059,
  30806. bottom: 33/1223
  30807. },
  30808. form: "lucario"
  30809. },
  30810. megaLucario: {
  30811. height: math.unit(4, "feet"),
  30812. name: "Mega Lucario",
  30813. image: {
  30814. source: "./media/characters/cat/mega-lucario.svg",
  30815. extra: 1515 / 1319,
  30816. bottom: 63 / 1578
  30817. },
  30818. form: "lucario"
  30819. },
  30820. nickit: {
  30821. height: math.unit(2, "feet"),
  30822. name: "Nickit",
  30823. image: {
  30824. source: "./media/characters/cat/nickit.svg",
  30825. extra: 1980 / 1585,
  30826. bottom: 102 / 2082
  30827. },
  30828. form: "nickit",
  30829. default: true
  30830. },
  30831. lopunnyFront: {
  30832. height: math.unit(5, "feet"),
  30833. name: "Lopunny (Front)",
  30834. image: {
  30835. source: "./media/characters/cat/lopunny-front.svg",
  30836. extra: 1782 / 1469,
  30837. bottom: 38 / 1820
  30838. },
  30839. form: "lopunny",
  30840. default: true
  30841. },
  30842. lopunnyBack: {
  30843. height: math.unit(5, "feet"),
  30844. name: "Lopunny (Back)",
  30845. image: {
  30846. source: "./media/characters/cat/lopunny-back.svg",
  30847. extra: 1660 / 1490,
  30848. bottom: 25 / 1685
  30849. },
  30850. form: "lopunny"
  30851. },
  30852. },
  30853. [
  30854. {
  30855. name: "Really small",
  30856. height: math.unit(1, "nm")
  30857. },
  30858. {
  30859. name: "Micro",
  30860. height: math.unit(5, "inches")
  30861. },
  30862. {
  30863. name: "Normal",
  30864. height: math.unit(5 + 6 / 12, "feet"),
  30865. default: true
  30866. },
  30867. {
  30868. name: "Macro",
  30869. height: math.unit(50, "feet")
  30870. },
  30871. {
  30872. name: "Macro+",
  30873. height: math.unit(150, "feet")
  30874. },
  30875. {
  30876. name: "Megamacro",
  30877. height: math.unit(100, "miles")
  30878. },
  30879. ]
  30880. ))
  30881. characterMakers.push(() => makeCharacter(
  30882. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30883. {
  30884. front: {
  30885. height: math.unit(63.4, "meters"),
  30886. weight: math.unit(3.28349e+6, "kilograms"),
  30887. name: "Front",
  30888. image: {
  30889. source: "./media/characters/kirina-violet/front.svg",
  30890. extra: 2812 / 2725,
  30891. bottom: 0 / 2812
  30892. }
  30893. },
  30894. back: {
  30895. height: math.unit(63.4, "meters"),
  30896. weight: math.unit(3.28349e+6, "kilograms"),
  30897. name: "Back",
  30898. image: {
  30899. source: "./media/characters/kirina-violet/back.svg",
  30900. extra: 2812 / 2725,
  30901. bottom: 0 / 2812
  30902. }
  30903. },
  30904. mouth: {
  30905. height: math.unit(4.35, "meters"),
  30906. name: "Mouth",
  30907. image: {
  30908. source: "./media/characters/kirina-violet/mouth.svg"
  30909. }
  30910. },
  30911. paw: {
  30912. height: math.unit(5.6, "meters"),
  30913. name: "Paw",
  30914. image: {
  30915. source: "./media/characters/kirina-violet/paw.svg"
  30916. }
  30917. },
  30918. tail: {
  30919. height: math.unit(18, "meters"),
  30920. name: "Tail",
  30921. image: {
  30922. source: "./media/characters/kirina-violet/tail.svg"
  30923. }
  30924. },
  30925. },
  30926. [
  30927. {
  30928. name: "Macro",
  30929. height: math.unit(63.4, "meters"),
  30930. default: true
  30931. },
  30932. ]
  30933. ))
  30934. characterMakers.push(() => makeCharacter(
  30935. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30936. {
  30937. front: {
  30938. height: math.unit(75, "feet"),
  30939. name: "Front",
  30940. image: {
  30941. source: "./media/characters/cat-gigachu/front.svg",
  30942. extra: 1239/1027,
  30943. bottom: 32/1271
  30944. }
  30945. },
  30946. back: {
  30947. height: math.unit(75, "feet"),
  30948. name: "Back",
  30949. image: {
  30950. source: "./media/characters/cat-gigachu/back.svg",
  30951. extra: 1229/1030,
  30952. bottom: 9/1238
  30953. }
  30954. },
  30955. },
  30956. [
  30957. {
  30958. name: "Dynamax",
  30959. height: math.unit(75, "feet"),
  30960. default: true
  30961. },
  30962. ]
  30963. ))
  30964. characterMakers.push(() => makeCharacter(
  30965. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30966. {
  30967. front: {
  30968. height: math.unit(6, "feet"),
  30969. weight: math.unit(150, "lb"),
  30970. name: "Front",
  30971. image: {
  30972. source: "./media/characters/sfaiyan/front.svg",
  30973. extra: 999 / 978,
  30974. bottom: 5 / 1004
  30975. }
  30976. },
  30977. },
  30978. [
  30979. {
  30980. name: "Normal",
  30981. height: math.unit(1.82, "meters")
  30982. },
  30983. {
  30984. name: "Giant",
  30985. height: math.unit(2.27, "km"),
  30986. default: true
  30987. },
  30988. ]
  30989. ))
  30990. characterMakers.push(() => makeCharacter(
  30991. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30992. {
  30993. front: {
  30994. height: math.unit(179, "cm"),
  30995. weight: math.unit(100, "kg"),
  30996. name: "Front",
  30997. image: {
  30998. source: "./media/characters/raunehkeli/front.svg",
  30999. extra: 1934 / 1926,
  31000. bottom: 0 / 1934
  31001. }
  31002. },
  31003. },
  31004. [
  31005. {
  31006. name: "Normal",
  31007. height: math.unit(179, "cm")
  31008. },
  31009. {
  31010. name: "Maximum",
  31011. height: math.unit(575, "meters"),
  31012. default: true
  31013. },
  31014. ]
  31015. ))
  31016. characterMakers.push(() => makeCharacter(
  31017. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31018. {
  31019. front: {
  31020. height: math.unit(6, "feet"),
  31021. weight: math.unit(150, "lb"),
  31022. name: "Front",
  31023. image: {
  31024. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31025. extra: 2625 / 2518,
  31026. bottom: 60 / 2685
  31027. }
  31028. },
  31029. },
  31030. [
  31031. {
  31032. name: "Normal",
  31033. height: math.unit(6 + 2 / 12, "feet")
  31034. },
  31035. {
  31036. name: "Macro",
  31037. height: math.unit(1180, "feet"),
  31038. default: true
  31039. },
  31040. ]
  31041. ))
  31042. characterMakers.push(() => makeCharacter(
  31043. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31044. {
  31045. front: {
  31046. height: math.unit(5 + 6 / 12, "feet"),
  31047. weight: math.unit(108, "lb"),
  31048. name: "Front",
  31049. image: {
  31050. source: "./media/characters/lilith-zott/front.svg",
  31051. extra: 2510 / 2238,
  31052. bottom: 100 / 2610
  31053. }
  31054. },
  31055. frontDressed: {
  31056. height: math.unit(5 + 6 / 12, "feet"),
  31057. weight: math.unit(108, "lb"),
  31058. name: "Front (Dressed)",
  31059. image: {
  31060. source: "./media/characters/lilith-zott/front-dressed.svg",
  31061. extra: 2510 / 2238,
  31062. bottom: 100 / 2610
  31063. }
  31064. },
  31065. },
  31066. [
  31067. {
  31068. name: "Normal",
  31069. height: math.unit(5 + 6 / 12, "feet")
  31070. },
  31071. {
  31072. name: "Macro",
  31073. height: math.unit(1030, "feet"),
  31074. default: true
  31075. },
  31076. ]
  31077. ))
  31078. characterMakers.push(() => makeCharacter(
  31079. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31080. {
  31081. front: {
  31082. height: math.unit(6, "feet"),
  31083. weight: math.unit(150, "lb"),
  31084. name: "Front",
  31085. image: {
  31086. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31087. extra: 2567 / 2435,
  31088. bottom: 39 / 2606
  31089. }
  31090. },
  31091. frontSuper: {
  31092. height: math.unit(6, "feet"),
  31093. name: "Front (Super)",
  31094. image: {
  31095. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31096. extra: 2567 / 2435,
  31097. bottom: 39 / 2606
  31098. }
  31099. },
  31100. },
  31101. [
  31102. {
  31103. name: "Normal",
  31104. height: math.unit(5 + 10 / 12, "feet")
  31105. },
  31106. {
  31107. name: "Macro",
  31108. height: math.unit(1100, "feet"),
  31109. default: true
  31110. },
  31111. ]
  31112. ))
  31113. characterMakers.push(() => makeCharacter(
  31114. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31115. {
  31116. front: {
  31117. height: math.unit(100, "miles"),
  31118. name: "Front",
  31119. image: {
  31120. source: "./media/characters/sona/front.svg",
  31121. extra: 2433 / 2201,
  31122. bottom: 53 / 2486
  31123. }
  31124. },
  31125. foot: {
  31126. height: math.unit(16.1, "miles"),
  31127. name: "Foot",
  31128. image: {
  31129. source: "./media/characters/sona/foot.svg"
  31130. }
  31131. },
  31132. },
  31133. [
  31134. {
  31135. name: "Macro",
  31136. height: math.unit(100, "miles"),
  31137. default: true
  31138. },
  31139. ]
  31140. ))
  31141. characterMakers.push(() => makeCharacter(
  31142. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31143. {
  31144. front: {
  31145. height: math.unit(6, "feet"),
  31146. weight: math.unit(150, "lb"),
  31147. name: "Front",
  31148. image: {
  31149. source: "./media/characters/bailey/front.svg",
  31150. extra: 1778 / 1724,
  31151. bottom: 30 / 1808
  31152. }
  31153. },
  31154. },
  31155. [
  31156. {
  31157. name: "Micro",
  31158. height: math.unit(4, "inches")
  31159. },
  31160. {
  31161. name: "Normal",
  31162. height: math.unit(5 + 5 / 12, "feet"),
  31163. default: true
  31164. },
  31165. {
  31166. name: "Macro",
  31167. height: math.unit(250, "feet")
  31168. },
  31169. {
  31170. name: "Megamacro",
  31171. height: math.unit(100, "miles")
  31172. },
  31173. ]
  31174. ))
  31175. characterMakers.push(() => makeCharacter(
  31176. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31177. {
  31178. front: {
  31179. height: math.unit(5 + 2 / 12, "feet"),
  31180. weight: math.unit(120, "lb"),
  31181. name: "Front",
  31182. image: {
  31183. source: "./media/characters/snaps/front.svg",
  31184. extra: 2370 / 2177,
  31185. bottom: 48 / 2418
  31186. }
  31187. },
  31188. back: {
  31189. height: math.unit(5 + 2 / 12, "feet"),
  31190. weight: math.unit(120, "lb"),
  31191. name: "Back",
  31192. image: {
  31193. source: "./media/characters/snaps/back.svg",
  31194. extra: 2408 / 2258,
  31195. bottom: 15 / 2423
  31196. }
  31197. },
  31198. },
  31199. [
  31200. {
  31201. name: "Micro",
  31202. height: math.unit(9, "inches")
  31203. },
  31204. {
  31205. name: "Normal",
  31206. height: math.unit(5 + 2 / 12, "feet"),
  31207. default: true
  31208. },
  31209. {
  31210. name: "Mini Macro",
  31211. height: math.unit(10, "feet")
  31212. },
  31213. ]
  31214. ))
  31215. characterMakers.push(() => makeCharacter(
  31216. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31217. {
  31218. front: {
  31219. height: math.unit(1.8, "meters"),
  31220. weight: math.unit(85, "kg"),
  31221. name: "Front",
  31222. image: {
  31223. source: "./media/characters/azteck/front.svg",
  31224. extra: 2815 / 2625,
  31225. bottom: 89 / 2904
  31226. }
  31227. },
  31228. back: {
  31229. height: math.unit(1.8, "meters"),
  31230. weight: math.unit(85, "kg"),
  31231. name: "Back",
  31232. image: {
  31233. source: "./media/characters/azteck/back.svg",
  31234. extra: 2856 / 2648,
  31235. bottom: 85 / 2941
  31236. }
  31237. },
  31238. frontDressed: {
  31239. height: math.unit(1.8, "meters"),
  31240. weight: math.unit(85, "kg"),
  31241. name: "Front (Dressed)",
  31242. image: {
  31243. source: "./media/characters/azteck/front-dressed.svg",
  31244. extra: 2147 / 2003,
  31245. bottom: 68 / 2215
  31246. }
  31247. },
  31248. head: {
  31249. height: math.unit(0.47, "meters"),
  31250. weight: math.unit(85, "kg"),
  31251. name: "Head",
  31252. image: {
  31253. source: "./media/characters/azteck/head.svg"
  31254. }
  31255. },
  31256. },
  31257. [
  31258. {
  31259. name: "Bite sized",
  31260. height: math.unit(16, "cm")
  31261. },
  31262. {
  31263. name: "Normal",
  31264. height: math.unit(1.8, "meters"),
  31265. default: true
  31266. },
  31267. ]
  31268. ))
  31269. characterMakers.push(() => makeCharacter(
  31270. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31271. {
  31272. front: {
  31273. height: math.unit(6, "feet"),
  31274. weight: math.unit(150, "lb"),
  31275. name: "Front",
  31276. image: {
  31277. source: "./media/characters/pidge/front.svg",
  31278. extra: 1936/1820,
  31279. bottom: 0/1936
  31280. }
  31281. },
  31282. back: {
  31283. height: math.unit(6, "feet"),
  31284. weight: math.unit(150, "lb"),
  31285. name: "Back",
  31286. image: {
  31287. source: "./media/characters/pidge/back.svg",
  31288. extra: 1938/1843,
  31289. bottom: 0/1938
  31290. }
  31291. },
  31292. casual: {
  31293. height: math.unit(6, "feet"),
  31294. weight: math.unit(150, "lb"),
  31295. name: "Casual",
  31296. image: {
  31297. source: "./media/characters/pidge/casual.svg",
  31298. extra: 1936/1820,
  31299. bottom: 0/1936
  31300. }
  31301. },
  31302. tech: {
  31303. height: math.unit(6, "feet"),
  31304. weight: math.unit(150, "lb"),
  31305. name: "Tech",
  31306. image: {
  31307. source: "./media/characters/pidge/tech.svg",
  31308. extra: 1802/1682,
  31309. bottom: 0/1802
  31310. }
  31311. },
  31312. head: {
  31313. height: math.unit(1.61, "feet"),
  31314. name: "Head",
  31315. image: {
  31316. source: "./media/characters/pidge/head.svg"
  31317. }
  31318. },
  31319. collar: {
  31320. height: math.unit(0.82, "feet"),
  31321. name: "Collar",
  31322. image: {
  31323. source: "./media/characters/pidge/collar.svg"
  31324. }
  31325. },
  31326. },
  31327. [
  31328. {
  31329. name: "Macro",
  31330. height: math.unit(2, "mile"),
  31331. default: true
  31332. },
  31333. {
  31334. name: "PUPPY",
  31335. height: math.unit(20, "miles")
  31336. },
  31337. ]
  31338. ))
  31339. characterMakers.push(() => makeCharacter(
  31340. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31341. {
  31342. front: {
  31343. height: math.unit(6, "feet"),
  31344. weight: math.unit(150, "lb"),
  31345. name: "Front",
  31346. image: {
  31347. source: "./media/characters/en/front.svg",
  31348. extra: 1697 / 1563,
  31349. bottom: 103 / 1800
  31350. }
  31351. },
  31352. back: {
  31353. height: math.unit(6, "feet"),
  31354. weight: math.unit(150, "lb"),
  31355. name: "Back",
  31356. image: {
  31357. source: "./media/characters/en/back.svg",
  31358. extra: 1700 / 1570,
  31359. bottom: 51 / 1751
  31360. }
  31361. },
  31362. frontDressed: {
  31363. height: math.unit(6, "feet"),
  31364. weight: math.unit(150, "lb"),
  31365. name: "Front (Dressed)",
  31366. image: {
  31367. source: "./media/characters/en/front-dressed.svg",
  31368. extra: 1697 / 1563,
  31369. bottom: 103 / 1800
  31370. }
  31371. },
  31372. backDressed: {
  31373. height: math.unit(6, "feet"),
  31374. weight: math.unit(150, "lb"),
  31375. name: "Back (Dressed)",
  31376. image: {
  31377. source: "./media/characters/en/back-dressed.svg",
  31378. extra: 1700 / 1570,
  31379. bottom: 51 / 1751
  31380. }
  31381. },
  31382. },
  31383. [
  31384. {
  31385. name: "Macro",
  31386. height: math.unit(210, "feet"),
  31387. default: true
  31388. },
  31389. ]
  31390. ))
  31391. characterMakers.push(() => makeCharacter(
  31392. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31393. {
  31394. front: {
  31395. height: math.unit(6, "feet"),
  31396. weight: math.unit(150, "lb"),
  31397. name: "Front",
  31398. image: {
  31399. source: "./media/characters/haze-orris/front.svg",
  31400. extra: 3975 / 3525,
  31401. bottom: 137 / 4112
  31402. }
  31403. },
  31404. },
  31405. [
  31406. {
  31407. name: "Micro",
  31408. height: math.unit(150, "mm"),
  31409. default: true
  31410. },
  31411. ]
  31412. ))
  31413. characterMakers.push(() => makeCharacter(
  31414. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31415. {
  31416. front: {
  31417. height: math.unit(6, "feet"),
  31418. weight: math.unit(150, "lb"),
  31419. name: "Front",
  31420. image: {
  31421. source: "./media/characters/casselene-yaro/front.svg",
  31422. extra: 4721 / 4541,
  31423. bottom: 82 / 4803
  31424. }
  31425. },
  31426. back: {
  31427. height: math.unit(6, "feet"),
  31428. weight: math.unit(150, "lb"),
  31429. name: "Back",
  31430. image: {
  31431. source: "./media/characters/casselene-yaro/back.svg",
  31432. extra: 4569 / 4377,
  31433. bottom: 69 / 4638
  31434. }
  31435. },
  31436. dressed: {
  31437. height: math.unit(6, "feet"),
  31438. weight: math.unit(150, "lb"),
  31439. name: "Dressed",
  31440. image: {
  31441. source: "./media/characters/casselene-yaro/dressed.svg",
  31442. extra: 4721 / 4541,
  31443. bottom: 82 / 4803
  31444. }
  31445. },
  31446. maw: {
  31447. height: math.unit(1, "feet"),
  31448. name: "Maw",
  31449. image: {
  31450. source: "./media/characters/casselene-yaro/maw.svg"
  31451. }
  31452. },
  31453. },
  31454. [
  31455. {
  31456. name: "Macro",
  31457. height: math.unit(190, "feet"),
  31458. default: true
  31459. },
  31460. ]
  31461. ))
  31462. characterMakers.push(() => makeCharacter(
  31463. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31464. {
  31465. front: {
  31466. height: math.unit(10, "feet"),
  31467. weight: math.unit(15015, "lb"),
  31468. name: "Front",
  31469. image: {
  31470. source: "./media/characters/platine/front.svg",
  31471. extra: 1741/1650,
  31472. bottom: 84/1825
  31473. }
  31474. },
  31475. side: {
  31476. height: math.unit(10, "feet"),
  31477. weight: math.unit(15015, "lb"),
  31478. name: "Side",
  31479. image: {
  31480. source: "./media/characters/platine/side.svg",
  31481. extra: 1790/1705,
  31482. bottom: 29/1819
  31483. }
  31484. },
  31485. },
  31486. [
  31487. {
  31488. name: "Normal",
  31489. height: math.unit(10, "feet"),
  31490. default: true
  31491. },
  31492. {
  31493. name: "Macro",
  31494. height: math.unit(100, "feet")
  31495. },
  31496. {
  31497. name: "Megamacro",
  31498. height: math.unit(1000, "feet")
  31499. },
  31500. ]
  31501. ))
  31502. characterMakers.push(() => makeCharacter(
  31503. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31504. {
  31505. front: {
  31506. height: math.unit(15 + 5 / 12, "feet"),
  31507. weight: math.unit(4600, "lb"),
  31508. name: "Front",
  31509. image: {
  31510. source: "./media/characters/neapolitan-ananassa/front.svg",
  31511. extra: 2903 / 2736,
  31512. bottom: 0 / 2903
  31513. }
  31514. },
  31515. side: {
  31516. height: math.unit(15 + 5 / 12, "feet"),
  31517. weight: math.unit(4600, "lb"),
  31518. name: "Side",
  31519. image: {
  31520. source: "./media/characters/neapolitan-ananassa/side.svg",
  31521. extra: 2925 / 2719,
  31522. bottom: 0 / 2925
  31523. }
  31524. },
  31525. back: {
  31526. height: math.unit(15 + 5 / 12, "feet"),
  31527. weight: math.unit(4600, "lb"),
  31528. name: "Back",
  31529. image: {
  31530. source: "./media/characters/neapolitan-ananassa/back.svg",
  31531. extra: 2903 / 2736,
  31532. bottom: 0 / 2903
  31533. }
  31534. },
  31535. },
  31536. [
  31537. {
  31538. name: "Normal",
  31539. height: math.unit(15 + 5 / 12, "feet"),
  31540. default: true
  31541. },
  31542. {
  31543. name: "Post-Millenium",
  31544. height: math.unit(35 + 5 / 12, "feet")
  31545. },
  31546. {
  31547. name: "Post-Era",
  31548. height: math.unit(450 + 5 / 12, "feet")
  31549. },
  31550. ]
  31551. ))
  31552. characterMakers.push(() => makeCharacter(
  31553. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31554. {
  31555. front: {
  31556. height: math.unit(300, "meters"),
  31557. weight: math.unit(125000, "tonnes"),
  31558. name: "Front",
  31559. image: {
  31560. source: "./media/characters/pazuzu/front.svg",
  31561. extra: 877 / 794,
  31562. bottom: 47 / 924
  31563. }
  31564. },
  31565. },
  31566. [
  31567. {
  31568. name: "Macro",
  31569. height: math.unit(300, "meters"),
  31570. default: true
  31571. },
  31572. ]
  31573. ))
  31574. characterMakers.push(() => makeCharacter(
  31575. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31576. {
  31577. side: {
  31578. height: math.unit(10 + 7 / 12, "feet"),
  31579. weight: math.unit(2.5, "tons"),
  31580. name: "Side",
  31581. image: {
  31582. source: "./media/characters/aasha/side.svg",
  31583. extra: 1345 / 1245,
  31584. bottom: 111 / 1456
  31585. }
  31586. },
  31587. back: {
  31588. height: math.unit(10 + 7 / 12, "feet"),
  31589. weight: math.unit(2.5, "tons"),
  31590. name: "Back",
  31591. image: {
  31592. source: "./media/characters/aasha/back.svg",
  31593. extra: 1133 / 1057,
  31594. bottom: 257 / 1390
  31595. }
  31596. },
  31597. },
  31598. [
  31599. {
  31600. name: "Normal",
  31601. height: math.unit(10 + 7 / 12, "feet"),
  31602. default: true
  31603. },
  31604. ]
  31605. ))
  31606. characterMakers.push(() => makeCharacter(
  31607. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31608. {
  31609. front: {
  31610. height: math.unit(6 + 3 / 12, "feet"),
  31611. name: "Front",
  31612. image: {
  31613. source: "./media/characters/nevan/front.svg",
  31614. extra: 704 / 704,
  31615. bottom: 28 / 732
  31616. }
  31617. },
  31618. back: {
  31619. height: math.unit(6 + 3 / 12, "feet"),
  31620. name: "Back",
  31621. image: {
  31622. source: "./media/characters/nevan/back.svg",
  31623. extra: 714 / 714,
  31624. bottom: 21 / 735
  31625. }
  31626. },
  31627. frontFlaccid: {
  31628. height: math.unit(6 + 3 / 12, "feet"),
  31629. name: "Front (Flaccid)",
  31630. image: {
  31631. source: "./media/characters/nevan/front-flaccid.svg",
  31632. extra: 704 / 704,
  31633. bottom: 28 / 732
  31634. }
  31635. },
  31636. frontErect: {
  31637. height: math.unit(6 + 3 / 12, "feet"),
  31638. name: "Front (Erect)",
  31639. image: {
  31640. source: "./media/characters/nevan/front-erect.svg",
  31641. extra: 704 / 704,
  31642. bottom: 28 / 732
  31643. }
  31644. },
  31645. backFlaccid: {
  31646. height: math.unit(6 + 3 / 12, "feet"),
  31647. name: "Back (Flaccid)",
  31648. image: {
  31649. source: "./media/characters/nevan/back-flaccid.svg",
  31650. extra: 714 / 714,
  31651. bottom: 21 / 735
  31652. }
  31653. },
  31654. },
  31655. [
  31656. {
  31657. name: "Normal",
  31658. height: math.unit(6 + 3 / 12, "feet"),
  31659. default: true
  31660. },
  31661. ]
  31662. ))
  31663. characterMakers.push(() => makeCharacter(
  31664. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31665. {
  31666. front: {
  31667. height: math.unit(4, "feet"),
  31668. name: "Front",
  31669. image: {
  31670. source: "./media/characters/arhan/front.svg",
  31671. extra: 3368 / 3133,
  31672. bottom: 0 / 3368
  31673. }
  31674. },
  31675. side: {
  31676. height: math.unit(4, "feet"),
  31677. name: "Side",
  31678. image: {
  31679. source: "./media/characters/arhan/side.svg",
  31680. extra: 3347 / 3105,
  31681. bottom: 0 / 3347
  31682. }
  31683. },
  31684. tongue: {
  31685. height: math.unit(1.42, "feet"),
  31686. name: "Tongue",
  31687. image: {
  31688. source: "./media/characters/arhan/tongue.svg"
  31689. }
  31690. },
  31691. head: {
  31692. height: math.unit(0.85, "feet"),
  31693. name: "Head",
  31694. image: {
  31695. source: "./media/characters/arhan/head.svg"
  31696. }
  31697. },
  31698. },
  31699. [
  31700. {
  31701. name: "Normal",
  31702. height: math.unit(4, "feet"),
  31703. default: true
  31704. },
  31705. ]
  31706. ))
  31707. characterMakers.push(() => makeCharacter(
  31708. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31709. {
  31710. front: {
  31711. height: math.unit(5 + 7.5 / 12, "feet"),
  31712. weight: math.unit(120, "lb"),
  31713. name: "Front",
  31714. image: {
  31715. source: "./media/characters/digi-duncan/front.svg",
  31716. extra: 330 / 326,
  31717. bottom: 16 / 346
  31718. }
  31719. },
  31720. side: {
  31721. height: math.unit(5 + 7.5 / 12, "feet"),
  31722. weight: math.unit(120, "lb"),
  31723. name: "Side",
  31724. image: {
  31725. source: "./media/characters/digi-duncan/side.svg",
  31726. extra: 341 / 337,
  31727. bottom: 1 / 342
  31728. }
  31729. },
  31730. back: {
  31731. height: math.unit(5 + 7.5 / 12, "feet"),
  31732. weight: math.unit(120, "lb"),
  31733. name: "Back",
  31734. image: {
  31735. source: "./media/characters/digi-duncan/back.svg",
  31736. extra: 330 / 326,
  31737. bottom: 12 / 342
  31738. }
  31739. },
  31740. },
  31741. [
  31742. {
  31743. name: "Speck",
  31744. height: math.unit(0.25, "mm")
  31745. },
  31746. {
  31747. name: "Micro",
  31748. height: math.unit(5, "mm")
  31749. },
  31750. {
  31751. name: "Tiny",
  31752. height: math.unit(0.5, "inches"),
  31753. default: true
  31754. },
  31755. {
  31756. name: "Human",
  31757. height: math.unit(5 + 7.5 / 12, "feet")
  31758. },
  31759. {
  31760. name: "Minigiant",
  31761. height: math.unit(8 + 5.25, "feet")
  31762. },
  31763. {
  31764. name: "Giant",
  31765. height: math.unit(2000, "feet")
  31766. },
  31767. {
  31768. name: "Mega",
  31769. height: math.unit(371.1, "miles")
  31770. },
  31771. ]
  31772. ))
  31773. characterMakers.push(() => makeCharacter(
  31774. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31775. {
  31776. front: {
  31777. height: math.unit(2, "meters"),
  31778. weight: math.unit(350, "kg"),
  31779. name: "Front",
  31780. image: {
  31781. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31782. extra: 898 / 838,
  31783. bottom: 9 / 907
  31784. }
  31785. },
  31786. },
  31787. [
  31788. {
  31789. name: "Micro",
  31790. height: math.unit(8, "meters")
  31791. },
  31792. {
  31793. name: "Normal",
  31794. height: math.unit(50, "meters"),
  31795. default: true
  31796. },
  31797. {
  31798. name: "Macro",
  31799. height: math.unit(500, "meters")
  31800. },
  31801. ]
  31802. ))
  31803. characterMakers.push(() => makeCharacter(
  31804. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31805. {
  31806. front: {
  31807. height: math.unit(6 + 6 / 12, "feet"),
  31808. name: "Front",
  31809. image: {
  31810. source: "./media/characters/khardesh/front.svg",
  31811. extra: 1788/1596,
  31812. bottom: 66/1854
  31813. }
  31814. },
  31815. back: {
  31816. height: math.unit(6 + 6 / 12, "feet"),
  31817. name: "Back",
  31818. image: {
  31819. source: "./media/characters/khardesh/back.svg",
  31820. extra: 1781/1584,
  31821. bottom: 68/1849
  31822. }
  31823. },
  31824. },
  31825. [
  31826. {
  31827. name: "Normal",
  31828. height: math.unit(6 + 6 / 12, "feet"),
  31829. default: true
  31830. },
  31831. {
  31832. name: "Normal+",
  31833. height: math.unit(4, "meters")
  31834. },
  31835. {
  31836. name: "Macro",
  31837. height: math.unit(50, "meters")
  31838. },
  31839. {
  31840. name: "Macro+",
  31841. height: math.unit(100, "meters")
  31842. },
  31843. {
  31844. name: "Megamacro",
  31845. height: math.unit(20, "km")
  31846. },
  31847. ]
  31848. ))
  31849. characterMakers.push(() => makeCharacter(
  31850. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31851. {
  31852. front: {
  31853. height: math.unit(6, "feet"),
  31854. weight: math.unit(150, "lb"),
  31855. name: "Front",
  31856. image: {
  31857. source: "./media/characters/kosho/front.svg",
  31858. extra: 1847 / 1847,
  31859. bottom: 86 / 1933
  31860. }
  31861. },
  31862. },
  31863. [
  31864. {
  31865. name: "Second-stage micro",
  31866. height: math.unit(0.5, "inches")
  31867. },
  31868. {
  31869. name: "First-stage micro",
  31870. height: math.unit(6, "inches")
  31871. },
  31872. {
  31873. name: "Normal",
  31874. height: math.unit(6, "feet"),
  31875. default: true
  31876. },
  31877. {
  31878. name: "First-stage macro",
  31879. height: math.unit(72, "feet")
  31880. },
  31881. {
  31882. name: "Second-stage macro",
  31883. height: math.unit(864, "feet")
  31884. },
  31885. ]
  31886. ))
  31887. characterMakers.push(() => makeCharacter(
  31888. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31889. {
  31890. normal: {
  31891. height: math.unit(4 + 6 / 12, "feet"),
  31892. name: "Normal",
  31893. image: {
  31894. source: "./media/characters/hydra/normal.svg",
  31895. extra: 2833 / 2634,
  31896. bottom: 68 / 2901
  31897. }
  31898. },
  31899. smol: {
  31900. height: math.unit(0.705, "inches"),
  31901. name: "Smol",
  31902. image: {
  31903. source: "./media/characters/hydra/smol.svg",
  31904. extra: 2715 / 2540,
  31905. bottom: 0 / 2715
  31906. }
  31907. },
  31908. },
  31909. [
  31910. {
  31911. name: "Normal",
  31912. height: math.unit(4 + 6 / 12, "feet"),
  31913. default: true
  31914. }
  31915. ]
  31916. ))
  31917. characterMakers.push(() => makeCharacter(
  31918. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31919. {
  31920. front: {
  31921. height: math.unit(0.6, "cm"),
  31922. name: "Front",
  31923. image: {
  31924. source: "./media/characters/daz/front.svg",
  31925. extra: 1682 / 1164,
  31926. bottom: 42 / 1724
  31927. }
  31928. },
  31929. },
  31930. [
  31931. {
  31932. name: "Normal",
  31933. height: math.unit(0.6, "cm"),
  31934. default: true
  31935. },
  31936. ]
  31937. ))
  31938. characterMakers.push(() => makeCharacter(
  31939. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31940. {
  31941. front: {
  31942. height: math.unit(6, "feet"),
  31943. weight: math.unit(235, "lb"),
  31944. name: "Front",
  31945. image: {
  31946. source: "./media/characters/theo-pangolin/front.svg",
  31947. extra: 1996 / 1969,
  31948. bottom: 115 / 2111
  31949. }
  31950. },
  31951. back: {
  31952. height: math.unit(6, "feet"),
  31953. weight: math.unit(235, "lb"),
  31954. name: "Back",
  31955. image: {
  31956. source: "./media/characters/theo-pangolin/back.svg",
  31957. extra: 1979 / 1979,
  31958. bottom: 40 / 2019
  31959. }
  31960. },
  31961. feral: {
  31962. height: math.unit(2, "feet"),
  31963. weight: math.unit(30, "lb"),
  31964. name: "Feral",
  31965. image: {
  31966. source: "./media/characters/theo-pangolin/feral.svg",
  31967. extra: 803 / 791,
  31968. bottom: 181 / 984
  31969. }
  31970. },
  31971. footFive: {
  31972. height: math.unit(1.43, "feet"),
  31973. name: "Foot (Five Toes)",
  31974. image: {
  31975. source: "./media/characters/theo-pangolin/foot-five.svg"
  31976. }
  31977. },
  31978. footFour: {
  31979. height: math.unit(1.43, "feet"),
  31980. name: "Foot (Four Toes)",
  31981. image: {
  31982. source: "./media/characters/theo-pangolin/foot-four.svg"
  31983. }
  31984. },
  31985. handFour: {
  31986. height: math.unit(0.81, "feet"),
  31987. name: "Hand (Four Fingers)",
  31988. image: {
  31989. source: "./media/characters/theo-pangolin/hand-four.svg"
  31990. }
  31991. },
  31992. handThree: {
  31993. height: math.unit(0.81, "feet"),
  31994. name: "Hand (Three Fingers)",
  31995. image: {
  31996. source: "./media/characters/theo-pangolin/hand-three.svg"
  31997. }
  31998. },
  31999. headFront: {
  32000. height: math.unit(1.37, "feet"),
  32001. name: "Head (Front)",
  32002. image: {
  32003. source: "./media/characters/theo-pangolin/head-front.svg"
  32004. }
  32005. },
  32006. headSide: {
  32007. height: math.unit(1.43, "feet"),
  32008. name: "Head (Side)",
  32009. image: {
  32010. source: "./media/characters/theo-pangolin/head-side.svg"
  32011. }
  32012. },
  32013. tongue: {
  32014. height: math.unit(2.29, "feet"),
  32015. name: "Tongue",
  32016. image: {
  32017. source: "./media/characters/theo-pangolin/tongue.svg"
  32018. }
  32019. },
  32020. },
  32021. [
  32022. {
  32023. name: "Normal",
  32024. height: math.unit(6, "feet")
  32025. },
  32026. {
  32027. name: "Macro",
  32028. height: math.unit(400, "feet"),
  32029. default: true
  32030. },
  32031. ]
  32032. ))
  32033. characterMakers.push(() => makeCharacter(
  32034. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32035. {
  32036. front: {
  32037. height: math.unit(6, "inches"),
  32038. weight: math.unit(0.036, "kg"),
  32039. name: "Front",
  32040. image: {
  32041. source: "./media/characters/renée/front.svg",
  32042. extra: 900 / 886,
  32043. bottom: 8 / 908
  32044. }
  32045. },
  32046. },
  32047. [
  32048. {
  32049. name: "Nano",
  32050. height: math.unit(1, "nm")
  32051. },
  32052. {
  32053. name: "Micro",
  32054. height: math.unit(1, "mm")
  32055. },
  32056. {
  32057. name: "Normal",
  32058. height: math.unit(6, "inches")
  32059. },
  32060. {
  32061. name: "Macro",
  32062. height: math.unit(2000, "feet"),
  32063. default: true
  32064. },
  32065. {
  32066. name: "Megamacro",
  32067. height: math.unit(2, "km")
  32068. },
  32069. {
  32070. name: "Gigamacro",
  32071. height: math.unit(2000, "km")
  32072. },
  32073. {
  32074. name: "Teramacro",
  32075. height: math.unit(250000, "km")
  32076. },
  32077. ]
  32078. ))
  32079. characterMakers.push(() => makeCharacter(
  32080. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32081. {
  32082. front: {
  32083. height: math.unit(4, "meters"),
  32084. weight: math.unit(150, "kg"),
  32085. name: "Front",
  32086. image: {
  32087. source: "./media/characters/caledvwlch/front.svg",
  32088. extra: 1757/1537,
  32089. bottom: 31/1788
  32090. }
  32091. },
  32092. side: {
  32093. height: math.unit(4, "meters"),
  32094. weight: math.unit(150, "kg"),
  32095. name: "Side",
  32096. image: {
  32097. source: "./media/characters/caledvwlch/side.svg",
  32098. extra: 1605 / 1536,
  32099. bottom: 31 / 1636
  32100. }
  32101. },
  32102. back: {
  32103. height: math.unit(4, "meters"),
  32104. weight: math.unit(150, "kg"),
  32105. name: "Back",
  32106. image: {
  32107. source: "./media/characters/caledvwlch/back.svg",
  32108. extra: 1635 / 1565,
  32109. bottom: 27 / 1662
  32110. }
  32111. },
  32112. },
  32113. [
  32114. {
  32115. name: "\"Incognito\"",
  32116. height: math.unit(4, "meters")
  32117. },
  32118. {
  32119. name: "Small rampage",
  32120. height: math.unit(600, "meters")
  32121. },
  32122. {
  32123. name: "Mega",
  32124. height: math.unit(30, "km")
  32125. },
  32126. {
  32127. name: "Home-size",
  32128. height: math.unit(50, "km"),
  32129. default: true
  32130. },
  32131. {
  32132. name: "Giga",
  32133. height: math.unit(300, "km")
  32134. },
  32135. {
  32136. name: "Lounging",
  32137. height: math.unit(11000, "km")
  32138. },
  32139. {
  32140. name: "Planet snacking",
  32141. height: math.unit(2000000, "km")
  32142. },
  32143. ]
  32144. ))
  32145. characterMakers.push(() => makeCharacter(
  32146. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32147. {
  32148. front: {
  32149. height: math.unit(6, "feet"),
  32150. weight: math.unit(215, "lb"),
  32151. name: "Front",
  32152. image: {
  32153. source: "./media/characters/sapphire-svell/front.svg",
  32154. extra: 495 / 455,
  32155. bottom: 20 / 515
  32156. }
  32157. },
  32158. back: {
  32159. height: math.unit(6, "feet"),
  32160. weight: math.unit(216, "lb"),
  32161. name: "Back",
  32162. image: {
  32163. source: "./media/characters/sapphire-svell/back.svg",
  32164. extra: 497 / 477,
  32165. bottom: 7 / 504
  32166. }
  32167. },
  32168. maw: {
  32169. height: math.unit(1.57, "feet"),
  32170. name: "Maw",
  32171. image: {
  32172. source: "./media/characters/sapphire-svell/maw.svg"
  32173. }
  32174. },
  32175. foot: {
  32176. height: math.unit(1.07, "feet"),
  32177. name: "Foot",
  32178. image: {
  32179. source: "./media/characters/sapphire-svell/foot.svg"
  32180. }
  32181. },
  32182. toering: {
  32183. height: math.unit(1.7, "inch"),
  32184. name: "Toering",
  32185. image: {
  32186. source: "./media/characters/sapphire-svell/toering.svg"
  32187. }
  32188. },
  32189. },
  32190. [
  32191. {
  32192. name: "Normal",
  32193. height: math.unit(300, "feet"),
  32194. default: true
  32195. },
  32196. {
  32197. name: "Augmented",
  32198. height: math.unit(1250, "feet")
  32199. },
  32200. {
  32201. name: "Unleashed",
  32202. height: math.unit(3000, "feet")
  32203. },
  32204. ]
  32205. ))
  32206. characterMakers.push(() => makeCharacter(
  32207. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32208. {
  32209. side: {
  32210. height: math.unit(2 + 3 / 12, "feet"),
  32211. weight: math.unit(110, "lb"),
  32212. name: "Side",
  32213. image: {
  32214. source: "./media/characters/glitch-flux/side.svg",
  32215. extra: 997 / 805,
  32216. bottom: 20 / 1017
  32217. }
  32218. },
  32219. },
  32220. [
  32221. {
  32222. name: "Normal",
  32223. height: math.unit(2 + 3 / 12, "feet"),
  32224. default: true
  32225. },
  32226. ]
  32227. ))
  32228. characterMakers.push(() => makeCharacter(
  32229. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32230. {
  32231. front: {
  32232. height: math.unit(4, "meters"),
  32233. name: "Front",
  32234. image: {
  32235. source: "./media/characters/mid/front.svg",
  32236. extra: 507 / 476,
  32237. bottom: 17 / 524
  32238. }
  32239. },
  32240. back: {
  32241. height: math.unit(4, "meters"),
  32242. name: "Back",
  32243. image: {
  32244. source: "./media/characters/mid/back.svg",
  32245. extra: 519 / 487,
  32246. bottom: 7 / 526
  32247. }
  32248. },
  32249. stuck: {
  32250. height: math.unit(2.2, "meters"),
  32251. name: "Stuck",
  32252. image: {
  32253. source: "./media/characters/mid/stuck.svg",
  32254. extra: 1951 / 1869,
  32255. bottom: 88 / 2039
  32256. }
  32257. }
  32258. },
  32259. [
  32260. {
  32261. name: "Normal",
  32262. height: math.unit(4, "meters"),
  32263. default: true
  32264. },
  32265. {
  32266. name: "Big",
  32267. height: math.unit(10, "meters")
  32268. },
  32269. {
  32270. name: "Macro",
  32271. height: math.unit(800, "meters")
  32272. },
  32273. {
  32274. name: "Megamacro",
  32275. height: math.unit(100, "km")
  32276. },
  32277. {
  32278. name: "Overgrown",
  32279. height: math.unit(1, "parsec")
  32280. },
  32281. ]
  32282. ))
  32283. characterMakers.push(() => makeCharacter(
  32284. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32285. {
  32286. front: {
  32287. height: math.unit(2.5, "meters"),
  32288. weight: math.unit(225, "kg"),
  32289. name: "Front",
  32290. image: {
  32291. source: "./media/characters/iris/front.svg",
  32292. extra: 3348 / 3251,
  32293. bottom: 205 / 3553
  32294. }
  32295. },
  32296. maw: {
  32297. height: math.unit(0.56, "meter"),
  32298. name: "Maw",
  32299. image: {
  32300. source: "./media/characters/iris/maw.svg"
  32301. }
  32302. },
  32303. },
  32304. [
  32305. {
  32306. name: "Mewter cat",
  32307. height: math.unit(1.2, "meters")
  32308. },
  32309. {
  32310. name: "Normal",
  32311. height: math.unit(2.5, "meters"),
  32312. default: true
  32313. },
  32314. {
  32315. name: "Minimacro",
  32316. height: math.unit(18, "feet")
  32317. },
  32318. {
  32319. name: "Macro",
  32320. height: math.unit(140, "feet")
  32321. },
  32322. {
  32323. name: "Macro+",
  32324. height: math.unit(180, "meters")
  32325. },
  32326. {
  32327. name: "Megamacro",
  32328. height: math.unit(2746, "meters")
  32329. },
  32330. ]
  32331. ))
  32332. characterMakers.push(() => makeCharacter(
  32333. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32334. {
  32335. front: {
  32336. height: math.unit(6, "feet"),
  32337. weight: math.unit(135, "lb"),
  32338. name: "Front",
  32339. image: {
  32340. source: "./media/characters/axel/front.svg",
  32341. extra: 908 / 908,
  32342. bottom: 58 / 966
  32343. }
  32344. },
  32345. side: {
  32346. height: math.unit(6, "feet"),
  32347. weight: math.unit(135, "lb"),
  32348. name: "Side",
  32349. image: {
  32350. source: "./media/characters/axel/side.svg",
  32351. extra: 958 / 958,
  32352. bottom: 11 / 969
  32353. }
  32354. },
  32355. back: {
  32356. height: math.unit(6, "feet"),
  32357. weight: math.unit(135, "lb"),
  32358. name: "Back",
  32359. image: {
  32360. source: "./media/characters/axel/back.svg",
  32361. extra: 887 / 887,
  32362. bottom: 34 / 921
  32363. }
  32364. },
  32365. head: {
  32366. height: math.unit(1.07, "feet"),
  32367. name: "Head",
  32368. image: {
  32369. source: "./media/characters/axel/head.svg"
  32370. }
  32371. },
  32372. beak: {
  32373. height: math.unit(1.4, "feet"),
  32374. name: "Beak",
  32375. image: {
  32376. source: "./media/characters/axel/beak.svg"
  32377. }
  32378. },
  32379. beakSide: {
  32380. height: math.unit(1.4, "feet"),
  32381. name: "Beak Side",
  32382. image: {
  32383. source: "./media/characters/axel/beak-side.svg"
  32384. }
  32385. },
  32386. sheath: {
  32387. height: math.unit(0.5, "feet"),
  32388. name: "Sheath",
  32389. image: {
  32390. source: "./media/characters/axel/sheath.svg"
  32391. }
  32392. },
  32393. dick: {
  32394. height: math.unit(0.98, "feet"),
  32395. name: "Dick",
  32396. image: {
  32397. source: "./media/characters/axel/dick.svg"
  32398. }
  32399. },
  32400. },
  32401. [
  32402. {
  32403. name: "Macro",
  32404. height: math.unit(68, "meters"),
  32405. default: true
  32406. },
  32407. ]
  32408. ))
  32409. characterMakers.push(() => makeCharacter(
  32410. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32411. {
  32412. front: {
  32413. height: math.unit(3.5, "meters"),
  32414. weight: math.unit(1200, "kg"),
  32415. name: "Front",
  32416. image: {
  32417. source: "./media/characters/joanna/front.svg",
  32418. extra: 1596 / 1488,
  32419. bottom: 29 / 1625
  32420. }
  32421. },
  32422. back: {
  32423. height: math.unit(3.5, "meters"),
  32424. weight: math.unit(1200, "kg"),
  32425. name: "Back",
  32426. image: {
  32427. source: "./media/characters/joanna/back.svg",
  32428. extra: 1594 / 1495,
  32429. bottom: 26 / 1620
  32430. }
  32431. },
  32432. frontShorts: {
  32433. height: math.unit(3.5, "meters"),
  32434. weight: math.unit(1200, "kg"),
  32435. name: "Front (Shorts)",
  32436. image: {
  32437. source: "./media/characters/joanna/front-shorts.svg",
  32438. extra: 1596 / 1488,
  32439. bottom: 29 / 1625
  32440. }
  32441. },
  32442. frontBiker: {
  32443. height: math.unit(3.5, "meters"),
  32444. weight: math.unit(1200, "kg"),
  32445. name: "Front (Biker)",
  32446. image: {
  32447. source: "./media/characters/joanna/front-biker.svg",
  32448. extra: 1596 / 1488,
  32449. bottom: 29 / 1625
  32450. }
  32451. },
  32452. backBiker: {
  32453. height: math.unit(3.5, "meters"),
  32454. weight: math.unit(1200, "kg"),
  32455. name: "Back (Biker)",
  32456. image: {
  32457. source: "./media/characters/joanna/back-biker.svg",
  32458. extra: 1594 / 1495,
  32459. bottom: 88 / 1682
  32460. }
  32461. },
  32462. bikeLeft: {
  32463. height: math.unit(2.4, "meters"),
  32464. weight: math.unit(1600, "kg"),
  32465. name: "Bike (Left)",
  32466. image: {
  32467. source: "./media/characters/joanna/bike-left.svg",
  32468. extra: 720 / 720,
  32469. bottom: 8 / 728
  32470. }
  32471. },
  32472. bikeRight: {
  32473. height: math.unit(2.4, "meters"),
  32474. weight: math.unit(1600, "kg"),
  32475. name: "Bike (Right)",
  32476. image: {
  32477. source: "./media/characters/joanna/bike-right.svg",
  32478. extra: 720 / 720,
  32479. bottom: 8 / 728
  32480. }
  32481. },
  32482. },
  32483. [
  32484. {
  32485. name: "Incognito",
  32486. height: math.unit(3.5, "meters")
  32487. },
  32488. {
  32489. name: "Casual Big",
  32490. height: math.unit(200, "meters")
  32491. },
  32492. {
  32493. name: "Macro",
  32494. height: math.unit(600, "meters")
  32495. },
  32496. {
  32497. name: "Original",
  32498. height: math.unit(20, "km"),
  32499. default: true
  32500. },
  32501. {
  32502. name: "Giga",
  32503. height: math.unit(400, "km")
  32504. },
  32505. {
  32506. name: "Lounging",
  32507. height: math.unit(1500, "km")
  32508. },
  32509. {
  32510. name: "Planetary",
  32511. height: math.unit(200000, "km")
  32512. },
  32513. ]
  32514. ))
  32515. characterMakers.push(() => makeCharacter(
  32516. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32517. {
  32518. front: {
  32519. height: math.unit(6, "feet"),
  32520. weight: math.unit(150, "lb"),
  32521. name: "Front",
  32522. image: {
  32523. source: "./media/characters/hugo-sigil/front.svg",
  32524. extra: 522 / 500,
  32525. bottom: 2 / 524
  32526. }
  32527. },
  32528. back: {
  32529. height: math.unit(6, "feet"),
  32530. weight: math.unit(150, "lb"),
  32531. name: "Back",
  32532. image: {
  32533. source: "./media/characters/hugo-sigil/back.svg",
  32534. extra: 519 / 495,
  32535. bottom: 5 / 524
  32536. }
  32537. },
  32538. maw: {
  32539. height: math.unit(1.4, "feet"),
  32540. weight: math.unit(150, "lb"),
  32541. name: "Maw",
  32542. image: {
  32543. source: "./media/characters/hugo-sigil/maw.svg"
  32544. }
  32545. },
  32546. feet: {
  32547. height: math.unit(1.56, "feet"),
  32548. weight: math.unit(150, "lb"),
  32549. name: "Feet",
  32550. image: {
  32551. source: "./media/characters/hugo-sigil/feet.svg",
  32552. extra: 177 / 177,
  32553. bottom: 12 / 189
  32554. }
  32555. },
  32556. },
  32557. [
  32558. {
  32559. name: "Normal",
  32560. height: math.unit(6, "feet")
  32561. },
  32562. {
  32563. name: "Macro",
  32564. height: math.unit(200, "feet"),
  32565. default: true
  32566. },
  32567. ]
  32568. ))
  32569. characterMakers.push(() => makeCharacter(
  32570. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32571. {
  32572. front: {
  32573. height: math.unit(6, "feet"),
  32574. weight: math.unit(150, "lb"),
  32575. name: "Front",
  32576. image: {
  32577. source: "./media/characters/peri/front.svg",
  32578. extra: 2354 / 2233,
  32579. bottom: 49 / 2403
  32580. }
  32581. },
  32582. },
  32583. [
  32584. {
  32585. name: "Really Small",
  32586. height: math.unit(1, "nm")
  32587. },
  32588. {
  32589. name: "Micro",
  32590. height: math.unit(4, "inches")
  32591. },
  32592. {
  32593. name: "Normal",
  32594. height: math.unit(7, "inches"),
  32595. default: true
  32596. },
  32597. {
  32598. name: "Macro",
  32599. height: math.unit(400, "feet")
  32600. },
  32601. {
  32602. name: "Megamacro",
  32603. height: math.unit(100, "miles")
  32604. },
  32605. ]
  32606. ))
  32607. characterMakers.push(() => makeCharacter(
  32608. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32609. {
  32610. frontSlim: {
  32611. height: math.unit(7, "feet"),
  32612. name: "Front (Slim)",
  32613. image: {
  32614. source: "./media/characters/issilora/front-slim.svg",
  32615. extra: 529 / 449,
  32616. bottom: 53 / 582
  32617. }
  32618. },
  32619. sideSlim: {
  32620. height: math.unit(7, "feet"),
  32621. name: "Side (Slim)",
  32622. image: {
  32623. source: "./media/characters/issilora/side-slim.svg",
  32624. extra: 570 / 480,
  32625. bottom: 30 / 600
  32626. }
  32627. },
  32628. backSlim: {
  32629. height: math.unit(7, "feet"),
  32630. name: "Back (Slim)",
  32631. image: {
  32632. source: "./media/characters/issilora/back-slim.svg",
  32633. extra: 537 / 455,
  32634. bottom: 46 / 583
  32635. }
  32636. },
  32637. frontBuff: {
  32638. height: math.unit(7, "feet"),
  32639. name: "Front (Buff)",
  32640. image: {
  32641. source: "./media/characters/issilora/front-buff.svg",
  32642. extra: 2310 / 2035,
  32643. bottom: 335 / 2645
  32644. }
  32645. },
  32646. head: {
  32647. height: math.unit(1.94, "feet"),
  32648. name: "Head",
  32649. image: {
  32650. source: "./media/characters/issilora/head.svg"
  32651. }
  32652. },
  32653. },
  32654. [
  32655. {
  32656. name: "Minimum",
  32657. height: math.unit(7, "feet")
  32658. },
  32659. {
  32660. name: "Comfortable",
  32661. height: math.unit(17, "feet")
  32662. },
  32663. {
  32664. name: "Fun Size",
  32665. height: math.unit(47, "feet")
  32666. },
  32667. {
  32668. name: "Natural Macro",
  32669. height: math.unit(137, "feet"),
  32670. default: true
  32671. },
  32672. {
  32673. name: "Maximum Kaiju",
  32674. height: math.unit(397, "feet")
  32675. },
  32676. ]
  32677. ))
  32678. characterMakers.push(() => makeCharacter(
  32679. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32680. {
  32681. front: {
  32682. height: math.unit(50 + 9/12, "feet"),
  32683. weight: math.unit(32.8, "tons"),
  32684. name: "Front",
  32685. image: {
  32686. source: "./media/characters/irb'iiritaahn/front.svg",
  32687. extra: 1878/1826,
  32688. bottom: 326/2204
  32689. }
  32690. },
  32691. back: {
  32692. height: math.unit(50 + 9/12, "feet"),
  32693. weight: math.unit(32.8, "tons"),
  32694. name: "Back",
  32695. image: {
  32696. source: "./media/characters/irb'iiritaahn/back.svg",
  32697. extra: 2052/2018,
  32698. bottom: 152/2204
  32699. }
  32700. },
  32701. head: {
  32702. height: math.unit(12.86, "feet"),
  32703. name: "Head",
  32704. image: {
  32705. source: "./media/characters/irb'iiritaahn/head.svg"
  32706. }
  32707. },
  32708. maw: {
  32709. height: math.unit(9.66, "feet"),
  32710. name: "Maw",
  32711. image: {
  32712. source: "./media/characters/irb'iiritaahn/maw.svg"
  32713. }
  32714. },
  32715. frontDick: {
  32716. height: math.unit(8.78461, "feet"),
  32717. name: "Front Dick",
  32718. image: {
  32719. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32720. }
  32721. },
  32722. rearDick: {
  32723. height: math.unit(8.78461, "feet"),
  32724. name: "Rear Dick",
  32725. image: {
  32726. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32727. }
  32728. },
  32729. rearDickUnfolded: {
  32730. height: math.unit(8.78, "feet"),
  32731. name: "Rear Dick (Unfolded)",
  32732. image: {
  32733. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32734. }
  32735. },
  32736. wings: {
  32737. height: math.unit(43, "feet"),
  32738. name: "Wings",
  32739. image: {
  32740. source: "./media/characters/irb'iiritaahn/wings.svg"
  32741. }
  32742. },
  32743. },
  32744. [
  32745. {
  32746. name: "Macro",
  32747. height: math.unit(50 + 9/12, "feet"),
  32748. default: true
  32749. },
  32750. ]
  32751. ))
  32752. characterMakers.push(() => makeCharacter(
  32753. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32754. {
  32755. front: {
  32756. height: math.unit(205, "cm"),
  32757. weight: math.unit(102, "kg"),
  32758. name: "Front",
  32759. image: {
  32760. source: "./media/characters/irbisgreif/front.svg",
  32761. extra: 785/706,
  32762. bottom: 13/798
  32763. }
  32764. },
  32765. back: {
  32766. height: math.unit(205, "cm"),
  32767. weight: math.unit(102, "kg"),
  32768. name: "Back",
  32769. image: {
  32770. source: "./media/characters/irbisgreif/back.svg",
  32771. extra: 713/701,
  32772. bottom: 26/739
  32773. }
  32774. },
  32775. frontDressed: {
  32776. height: math.unit(216, "cm"),
  32777. weight: math.unit(102, "kg"),
  32778. name: "Front-dressed",
  32779. image: {
  32780. source: "./media/characters/irbisgreif/front-dressed.svg",
  32781. extra: 902/776,
  32782. bottom: 14/916
  32783. }
  32784. },
  32785. sideDressed: {
  32786. height: math.unit(195, "cm"),
  32787. weight: math.unit(102, "kg"),
  32788. name: "Side-dressed",
  32789. image: {
  32790. source: "./media/characters/irbisgreif/side-dressed.svg",
  32791. extra: 788/688,
  32792. bottom: 21/809
  32793. }
  32794. },
  32795. backDressed: {
  32796. height: math.unit(216, "cm"),
  32797. weight: math.unit(102, "kg"),
  32798. name: "Back-dressed",
  32799. image: {
  32800. source: "./media/characters/irbisgreif/back-dressed.svg",
  32801. extra: 901/783,
  32802. bottom: 10/911
  32803. }
  32804. },
  32805. dick: {
  32806. height: math.unit(0.49, "feet"),
  32807. name: "Dick",
  32808. image: {
  32809. source: "./media/characters/irbisgreif/dick.svg"
  32810. }
  32811. },
  32812. wingTop: {
  32813. height: math.unit(1.93 , "feet"),
  32814. name: "Wing-top",
  32815. image: {
  32816. source: "./media/characters/irbisgreif/wing-top.svg"
  32817. }
  32818. },
  32819. wingBottom: {
  32820. height: math.unit(1.93 , "feet"),
  32821. name: "Wing-bottom",
  32822. image: {
  32823. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32824. }
  32825. },
  32826. },
  32827. [
  32828. {
  32829. name: "Normal",
  32830. height: math.unit(216, "cm"),
  32831. default: true
  32832. },
  32833. ]
  32834. ))
  32835. characterMakers.push(() => makeCharacter(
  32836. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32837. {
  32838. front: {
  32839. height: math.unit(6, "feet"),
  32840. weight: math.unit(150, "lb"),
  32841. name: "Front",
  32842. image: {
  32843. source: "./media/characters/pride/front.svg",
  32844. extra: 1299/1230,
  32845. bottom: 18/1317
  32846. }
  32847. },
  32848. },
  32849. [
  32850. {
  32851. name: "Normal",
  32852. height: math.unit(7, "feet")
  32853. },
  32854. {
  32855. name: "Mini-macro",
  32856. height: math.unit(11, "feet")
  32857. },
  32858. {
  32859. name: "Macro",
  32860. height: math.unit(15, "meters"),
  32861. default: true
  32862. },
  32863. {
  32864. name: "Macro+",
  32865. height: math.unit(40, "meters")
  32866. },
  32867. ]
  32868. ))
  32869. characterMakers.push(() => makeCharacter(
  32870. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32871. {
  32872. front: {
  32873. height: math.unit(4 + 2 / 12, "feet"),
  32874. weight: math.unit(95, "lb"),
  32875. name: "Front",
  32876. image: {
  32877. source: "./media/characters/vaelophis-nyx/front.svg",
  32878. extra: 2532/2330,
  32879. bottom: 0/2532
  32880. }
  32881. },
  32882. back: {
  32883. height: math.unit(4 + 2 / 12, "feet"),
  32884. weight: math.unit(95, "lb"),
  32885. name: "Back",
  32886. image: {
  32887. source: "./media/characters/vaelophis-nyx/back.svg",
  32888. extra: 2484/2361,
  32889. bottom: 0/2484
  32890. }
  32891. },
  32892. feralSide: {
  32893. height: math.unit(2 + 1/12, "feet"),
  32894. weight: math.unit(20, "lb"),
  32895. name: "Feral (Side)",
  32896. image: {
  32897. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32898. extra: 1721/1581,
  32899. bottom: 70/1791
  32900. }
  32901. },
  32902. feralLazing: {
  32903. height: math.unit(1.08, "feet"),
  32904. weight: math.unit(20, "lb"),
  32905. name: "Feral (Lazing)",
  32906. image: {
  32907. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32908. extra: 822/822,
  32909. bottom: 248/1070
  32910. }
  32911. },
  32912. ear: {
  32913. height: math.unit(0.416, "feet"),
  32914. name: "Ear",
  32915. image: {
  32916. source: "./media/characters/vaelophis-nyx/ear.svg"
  32917. }
  32918. },
  32919. eye: {
  32920. height: math.unit(0.0748, "feet"),
  32921. name: "Eye",
  32922. image: {
  32923. source: "./media/characters/vaelophis-nyx/eye.svg"
  32924. }
  32925. },
  32926. mouth: {
  32927. height: math.unit(0.378, "feet"),
  32928. name: "Mouth",
  32929. image: {
  32930. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32931. }
  32932. },
  32933. spade: {
  32934. height: math.unit(0.55, "feet"),
  32935. name: "Spade",
  32936. image: {
  32937. source: "./media/characters/vaelophis-nyx/spade.svg"
  32938. }
  32939. },
  32940. },
  32941. [
  32942. {
  32943. name: "Normal",
  32944. height: math.unit(4 + 2/12, "feet"),
  32945. default: true
  32946. },
  32947. ]
  32948. ))
  32949. characterMakers.push(() => makeCharacter(
  32950. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32951. {
  32952. front: {
  32953. height: math.unit(7, "feet"),
  32954. weight: math.unit(231, "lb"),
  32955. name: "Front",
  32956. image: {
  32957. source: "./media/characters/flux/front.svg",
  32958. extra: 919/871,
  32959. bottom: 0/919
  32960. }
  32961. },
  32962. back: {
  32963. height: math.unit(7, "feet"),
  32964. weight: math.unit(231, "lb"),
  32965. name: "Back",
  32966. image: {
  32967. source: "./media/characters/flux/back.svg",
  32968. extra: 1040/992,
  32969. bottom: 0/1040
  32970. }
  32971. },
  32972. frontDressed: {
  32973. height: math.unit(7, "feet"),
  32974. weight: math.unit(231, "lb"),
  32975. name: "Front (Dressed)",
  32976. image: {
  32977. source: "./media/characters/flux/front-dressed.svg",
  32978. extra: 919/871,
  32979. bottom: 0/919
  32980. }
  32981. },
  32982. feralSide: {
  32983. height: math.unit(5, "feet"),
  32984. weight: math.unit(150, "lb"),
  32985. name: "Feral (Side)",
  32986. image: {
  32987. source: "./media/characters/flux/feral-side.svg",
  32988. extra: 598/528,
  32989. bottom: 28/626
  32990. }
  32991. },
  32992. head: {
  32993. height: math.unit(1.585, "feet"),
  32994. name: "Head",
  32995. image: {
  32996. source: "./media/characters/flux/head.svg"
  32997. }
  32998. },
  32999. headSide: {
  33000. height: math.unit(1.74, "feet"),
  33001. name: "Head (Side)",
  33002. image: {
  33003. source: "./media/characters/flux/head-side.svg"
  33004. }
  33005. },
  33006. headSideFire: {
  33007. height: math.unit(1.76, "feet"),
  33008. name: "Head (Side, Fire)",
  33009. image: {
  33010. source: "./media/characters/flux/head-side-fire.svg"
  33011. }
  33012. },
  33013. },
  33014. [
  33015. {
  33016. name: "Normal",
  33017. height: math.unit(7, "feet"),
  33018. default: true
  33019. },
  33020. ]
  33021. ))
  33022. characterMakers.push(() => makeCharacter(
  33023. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33024. {
  33025. front: {
  33026. height: math.unit(9, "feet"),
  33027. weight: math.unit(1012, "lb"),
  33028. name: "Front",
  33029. image: {
  33030. source: "./media/characters/ulfra-lupae/front.svg",
  33031. extra: 1083/1011,
  33032. bottom: 67/1150
  33033. }
  33034. },
  33035. },
  33036. [
  33037. {
  33038. name: "Micro",
  33039. height: math.unit(6, "inches")
  33040. },
  33041. {
  33042. name: "Socializing",
  33043. height: math.unit(6 + 5/12, "feet")
  33044. },
  33045. {
  33046. name: "Normal",
  33047. height: math.unit(9, "feet"),
  33048. default: true
  33049. },
  33050. {
  33051. name: "Macro",
  33052. height: math.unit(150, "feet")
  33053. },
  33054. ]
  33055. ))
  33056. characterMakers.push(() => makeCharacter(
  33057. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33058. {
  33059. front: {
  33060. height: math.unit(5 + 2/12, "feet"),
  33061. weight: math.unit(120, "lb"),
  33062. name: "Front",
  33063. image: {
  33064. source: "./media/characters/timber/front.svg",
  33065. extra: 2814/2705,
  33066. bottom: 181/2995
  33067. }
  33068. },
  33069. },
  33070. [
  33071. {
  33072. name: "Normal",
  33073. height: math.unit(5 + 2/12, "feet"),
  33074. default: true
  33075. },
  33076. ]
  33077. ))
  33078. characterMakers.push(() => makeCharacter(
  33079. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33080. {
  33081. front: {
  33082. height: math.unit(9, "feet"),
  33083. name: "Front",
  33084. image: {
  33085. source: "./media/characters/nicki/front.svg",
  33086. extra: 1240/990,
  33087. bottom: 45/1285
  33088. },
  33089. form: "anthro",
  33090. default: true
  33091. },
  33092. side: {
  33093. height: math.unit(9, "feet"),
  33094. name: "Side",
  33095. image: {
  33096. source: "./media/characters/nicki/side.svg",
  33097. extra: 1047/973,
  33098. bottom: 61/1108
  33099. },
  33100. form: "anthro"
  33101. },
  33102. back: {
  33103. height: math.unit(9, "feet"),
  33104. name: "Back",
  33105. image: {
  33106. source: "./media/characters/nicki/back.svg",
  33107. extra: 1006/965,
  33108. bottom: 39/1045
  33109. },
  33110. form: "anthro"
  33111. },
  33112. taur: {
  33113. height: math.unit(15, "feet"),
  33114. name: "Taur",
  33115. image: {
  33116. source: "./media/characters/nicki/taur.svg",
  33117. extra: 1592/1347,
  33118. bottom: 0/1592
  33119. },
  33120. form: "taur",
  33121. default: true
  33122. },
  33123. },
  33124. [
  33125. {
  33126. name: "Normal",
  33127. height: math.unit(9, "feet"),
  33128. form: "anthro",
  33129. default: true
  33130. },
  33131. {
  33132. name: "Normal",
  33133. height: math.unit(15, "feet"),
  33134. form: "taur",
  33135. default: true
  33136. }
  33137. ],
  33138. {
  33139. "anthro": {
  33140. name: "Anthro",
  33141. default: true
  33142. },
  33143. "taur": {
  33144. name: "Taur"
  33145. }
  33146. }
  33147. ))
  33148. characterMakers.push(() => makeCharacter(
  33149. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33150. {
  33151. front: {
  33152. height: math.unit(7 + 10/12, "feet"),
  33153. weight: math.unit(3.5, "tons"),
  33154. name: "Front",
  33155. image: {
  33156. source: "./media/characters/lee/front.svg",
  33157. extra: 1773/1615,
  33158. bottom: 86/1859
  33159. }
  33160. },
  33161. hand: {
  33162. height: math.unit(1.78, "feet"),
  33163. name: "Hand",
  33164. image: {
  33165. source: "./media/characters/lee/hand.svg"
  33166. }
  33167. },
  33168. maw: {
  33169. height: math.unit(1.18, "feet"),
  33170. name: "Maw",
  33171. image: {
  33172. source: "./media/characters/lee/maw.svg"
  33173. }
  33174. },
  33175. },
  33176. [
  33177. {
  33178. name: "Normal",
  33179. height: math.unit(7 + 10/12, "feet"),
  33180. default: true
  33181. },
  33182. ]
  33183. ))
  33184. characterMakers.push(() => makeCharacter(
  33185. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33186. {
  33187. front: {
  33188. height: math.unit(9, "feet"),
  33189. name: "Front",
  33190. image: {
  33191. source: "./media/characters/guti/front.svg",
  33192. extra: 4551/4355,
  33193. bottom: 123/4674
  33194. }
  33195. },
  33196. tongue: {
  33197. height: math.unit(1, "feet"),
  33198. name: "Tongue",
  33199. image: {
  33200. source: "./media/characters/guti/tongue.svg"
  33201. }
  33202. },
  33203. paw: {
  33204. height: math.unit(1.18, "feet"),
  33205. name: "Paw",
  33206. image: {
  33207. source: "./media/characters/guti/paw.svg"
  33208. }
  33209. },
  33210. },
  33211. [
  33212. {
  33213. name: "Normal",
  33214. height: math.unit(9, "feet"),
  33215. default: true
  33216. },
  33217. ]
  33218. ))
  33219. characterMakers.push(() => makeCharacter(
  33220. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33221. {
  33222. side: {
  33223. height: math.unit(5, "meters"),
  33224. name: "Side",
  33225. image: {
  33226. source: "./media/characters/vesper/side.svg",
  33227. extra: 1605/1518,
  33228. bottom: 0/1605
  33229. }
  33230. },
  33231. },
  33232. [
  33233. {
  33234. name: "Small",
  33235. height: math.unit(5, "meters")
  33236. },
  33237. {
  33238. name: "Sage",
  33239. height: math.unit(100, "meters"),
  33240. default: true
  33241. },
  33242. {
  33243. name: "Fun Size",
  33244. height: math.unit(600, "meters")
  33245. },
  33246. {
  33247. name: "Goddess",
  33248. height: math.unit(20000, "km")
  33249. },
  33250. {
  33251. name: "Maximum",
  33252. height: math.unit(5, "galaxies")
  33253. },
  33254. ]
  33255. ))
  33256. characterMakers.push(() => makeCharacter(
  33257. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33258. {
  33259. front: {
  33260. height: math.unit(6 + 3/12, "feet"),
  33261. weight: math.unit(190, "lb"),
  33262. name: "Front",
  33263. image: {
  33264. source: "./media/characters/gawain/front.svg",
  33265. extra: 2222/2139,
  33266. bottom: 90/2312
  33267. }
  33268. },
  33269. back: {
  33270. height: math.unit(6 + 3/12, "feet"),
  33271. weight: math.unit(190, "lb"),
  33272. name: "Back",
  33273. image: {
  33274. source: "./media/characters/gawain/back.svg",
  33275. extra: 2199/2111,
  33276. bottom: 73/2272
  33277. }
  33278. },
  33279. },
  33280. [
  33281. {
  33282. name: "Normal",
  33283. height: math.unit(6 + 3/12, "feet"),
  33284. default: true
  33285. },
  33286. ]
  33287. ))
  33288. characterMakers.push(() => makeCharacter(
  33289. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33290. {
  33291. side: {
  33292. height: math.unit(3.5, "meters"),
  33293. weight: math.unit(16000, "lb"),
  33294. name: "Side",
  33295. image: {
  33296. source: "./media/characters/dascalti/side.svg",
  33297. extra: 392/273,
  33298. bottom: 47/439
  33299. }
  33300. },
  33301. breath: {
  33302. height: math.unit(7.4, "feet"),
  33303. name: "Breath",
  33304. image: {
  33305. source: "./media/characters/dascalti/breath.svg"
  33306. }
  33307. },
  33308. fed: {
  33309. height: math.unit(3.6, "meters"),
  33310. weight: math.unit(16000, "lb"),
  33311. name: "Fed",
  33312. image: {
  33313. source: "./media/characters/dascalti/fed.svg",
  33314. extra: 1419/820,
  33315. bottom: 95/1514
  33316. }
  33317. },
  33318. },
  33319. [
  33320. {
  33321. name: "Normal",
  33322. height: math.unit(3.5, "meters"),
  33323. default: true
  33324. },
  33325. ]
  33326. ))
  33327. characterMakers.push(() => makeCharacter(
  33328. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33329. {
  33330. front: {
  33331. height: math.unit(3 + 5/12, "feet"),
  33332. name: "Front",
  33333. image: {
  33334. source: "./media/characters/mauve/front.svg",
  33335. extra: 1126/1033,
  33336. bottom: 65/1191
  33337. }
  33338. },
  33339. side: {
  33340. height: math.unit(3 + 5/12, "feet"),
  33341. name: "Side",
  33342. image: {
  33343. source: "./media/characters/mauve/side.svg",
  33344. extra: 1089/1001,
  33345. bottom: 29/1118
  33346. }
  33347. },
  33348. back: {
  33349. height: math.unit(3 + 5/12, "feet"),
  33350. name: "Back",
  33351. image: {
  33352. source: "./media/characters/mauve/back.svg",
  33353. extra: 1173/1053,
  33354. bottom: 109/1282
  33355. }
  33356. },
  33357. },
  33358. [
  33359. {
  33360. name: "Normal",
  33361. height: math.unit(3 + 5/12, "feet"),
  33362. default: true
  33363. },
  33364. ]
  33365. ))
  33366. characterMakers.push(() => makeCharacter(
  33367. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33368. {
  33369. front: {
  33370. height: math.unit(6 + 3/12, "feet"),
  33371. weight: math.unit(430, "lb"),
  33372. name: "Front",
  33373. image: {
  33374. source: "./media/characters/carlos/front.svg",
  33375. extra: 1964/1913,
  33376. bottom: 70/2034
  33377. }
  33378. },
  33379. },
  33380. [
  33381. {
  33382. name: "Normal",
  33383. height: math.unit(6 + 3/12, "feet"),
  33384. default: true
  33385. },
  33386. ]
  33387. ))
  33388. characterMakers.push(() => makeCharacter(
  33389. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33390. {
  33391. back: {
  33392. height: math.unit(5 + 10/12, "feet"),
  33393. weight: math.unit(200, "lb"),
  33394. name: "Back",
  33395. image: {
  33396. source: "./media/characters/jax/back.svg",
  33397. extra: 764/739,
  33398. bottom: 25/789
  33399. }
  33400. },
  33401. },
  33402. [
  33403. {
  33404. name: "Normal",
  33405. height: math.unit(5 + 10/12, "feet"),
  33406. default: true
  33407. },
  33408. ]
  33409. ))
  33410. characterMakers.push(() => makeCharacter(
  33411. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33412. {
  33413. front: {
  33414. height: math.unit(8, "feet"),
  33415. weight: math.unit(250, "lb"),
  33416. name: "Front",
  33417. image: {
  33418. source: "./media/characters/eikthynir/front.svg",
  33419. extra: 1332/1166,
  33420. bottom: 82/1414
  33421. }
  33422. },
  33423. back: {
  33424. height: math.unit(8, "feet"),
  33425. weight: math.unit(250, "lb"),
  33426. name: "Back",
  33427. image: {
  33428. source: "./media/characters/eikthynir/back.svg",
  33429. extra: 1342/1190,
  33430. bottom: 19/1361
  33431. }
  33432. },
  33433. dick: {
  33434. height: math.unit(2.35, "feet"),
  33435. name: "Dick",
  33436. image: {
  33437. source: "./media/characters/eikthynir/dick.svg"
  33438. }
  33439. },
  33440. },
  33441. [
  33442. {
  33443. name: "Normal",
  33444. height: math.unit(8, "feet"),
  33445. default: true
  33446. },
  33447. ]
  33448. ))
  33449. characterMakers.push(() => makeCharacter(
  33450. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33451. {
  33452. front: {
  33453. height: math.unit(99, "meters"),
  33454. weight: math.unit(13000, "tons"),
  33455. name: "Front",
  33456. image: {
  33457. source: "./media/characters/zlmos/front.svg",
  33458. extra: 2202/1992,
  33459. bottom: 315/2517
  33460. }
  33461. },
  33462. },
  33463. [
  33464. {
  33465. name: "Macro",
  33466. height: math.unit(99, "meters"),
  33467. default: true
  33468. },
  33469. ]
  33470. ))
  33471. characterMakers.push(() => makeCharacter(
  33472. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33473. {
  33474. front: {
  33475. height: math.unit(6 + 5/12, "feet"),
  33476. name: "Front",
  33477. image: {
  33478. source: "./media/characters/purri/front.svg",
  33479. extra: 1698/1610,
  33480. bottom: 32/1730
  33481. }
  33482. },
  33483. frontAlt: {
  33484. height: math.unit(6 + 5/12, "feet"),
  33485. name: "Front (Alt)",
  33486. image: {
  33487. source: "./media/characters/purri/front-alt.svg",
  33488. extra: 450/420,
  33489. bottom: 26/476
  33490. }
  33491. },
  33492. boots: {
  33493. height: math.unit(5.5, "feet"),
  33494. name: "Boots",
  33495. image: {
  33496. source: "./media/characters/purri/boots.svg",
  33497. extra: 905/853,
  33498. bottom: 18/923
  33499. }
  33500. },
  33501. lying: {
  33502. height: math.unit(2, "feet"),
  33503. name: "Lying",
  33504. image: {
  33505. source: "./media/characters/purri/lying.svg",
  33506. extra: 940/843,
  33507. bottom: 146/1086
  33508. }
  33509. },
  33510. devious: {
  33511. height: math.unit(1.77, "feet"),
  33512. name: "Devious",
  33513. image: {
  33514. source: "./media/characters/purri/devious.svg",
  33515. extra: 1440/1155,
  33516. bottom: 147/1587
  33517. }
  33518. },
  33519. bean: {
  33520. height: math.unit(1.94, "feet"),
  33521. name: "Bean",
  33522. image: {
  33523. source: "./media/characters/purri/bean.svg"
  33524. }
  33525. },
  33526. },
  33527. [
  33528. {
  33529. name: "Micro",
  33530. height: math.unit(1, "mm")
  33531. },
  33532. {
  33533. name: "Normal",
  33534. height: math.unit(6 + 5/12, "feet"),
  33535. default: true
  33536. },
  33537. {
  33538. name: "Macro :3c",
  33539. height: math.unit(2, "miles")
  33540. },
  33541. ]
  33542. ))
  33543. characterMakers.push(() => makeCharacter(
  33544. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33545. {
  33546. front: {
  33547. height: math.unit(6 + 2/12, "feet"),
  33548. weight: math.unit(250, "lb"),
  33549. name: "Front",
  33550. image: {
  33551. source: "./media/characters/moonlight/front.svg",
  33552. extra: 1044/908,
  33553. bottom: 56/1100
  33554. }
  33555. },
  33556. feral: {
  33557. height: math.unit(3 + 1/12, "feet"),
  33558. weight: math.unit(50, "kg"),
  33559. name: "Feral",
  33560. image: {
  33561. source: "./media/characters/moonlight/feral.svg",
  33562. extra: 3705/2791,
  33563. bottom: 145/3850
  33564. }
  33565. },
  33566. paw: {
  33567. height: math.unit(1, "feet"),
  33568. name: "Paw",
  33569. image: {
  33570. source: "./media/characters/moonlight/paw.svg"
  33571. }
  33572. },
  33573. paws: {
  33574. height: math.unit(0.98, "feet"),
  33575. name: "Paws",
  33576. image: {
  33577. source: "./media/characters/moonlight/paws.svg",
  33578. extra: 939/939,
  33579. bottom: 50/989
  33580. }
  33581. },
  33582. mouth: {
  33583. height: math.unit(0.48, "feet"),
  33584. name: "Mouth",
  33585. image: {
  33586. source: "./media/characters/moonlight/mouth.svg"
  33587. }
  33588. },
  33589. dick: {
  33590. height: math.unit(1.46, "feet"),
  33591. name: "Dick",
  33592. image: {
  33593. source: "./media/characters/moonlight/dick.svg"
  33594. }
  33595. },
  33596. },
  33597. [
  33598. {
  33599. name: "Normal",
  33600. height: math.unit(6 + 2/12, "feet"),
  33601. default: true
  33602. },
  33603. {
  33604. name: "Macro",
  33605. height: math.unit(300, "feet")
  33606. },
  33607. {
  33608. name: "Macro+",
  33609. height: math.unit(1, "mile")
  33610. },
  33611. {
  33612. name: "Mt. Moon",
  33613. height: math.unit(5, "miles")
  33614. },
  33615. {
  33616. name: "Megamacro",
  33617. height: math.unit(15, "miles")
  33618. },
  33619. ]
  33620. ))
  33621. characterMakers.push(() => makeCharacter(
  33622. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33623. {
  33624. back: {
  33625. height: math.unit(6, "feet"),
  33626. weight: math.unit(150, "lb"),
  33627. name: "Back",
  33628. image: {
  33629. source: "./media/characters/sylen/back.svg",
  33630. extra: 1335/1273,
  33631. bottom: 107/1442
  33632. }
  33633. },
  33634. },
  33635. [
  33636. {
  33637. name: "Normal",
  33638. height: math.unit(5 + 5/12, "feet")
  33639. },
  33640. {
  33641. name: "Megamacro",
  33642. height: math.unit(3, "miles"),
  33643. default: true
  33644. },
  33645. ]
  33646. ))
  33647. characterMakers.push(() => makeCharacter(
  33648. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33649. {
  33650. front: {
  33651. height: math.unit(6, "feet"),
  33652. weight: math.unit(190, "lb"),
  33653. name: "Front",
  33654. image: {
  33655. source: "./media/characters/huttser/front.svg",
  33656. extra: 1152/1058,
  33657. bottom: 23/1175
  33658. }
  33659. },
  33660. side: {
  33661. height: math.unit(6, "feet"),
  33662. weight: math.unit(190, "lb"),
  33663. name: "Side",
  33664. image: {
  33665. source: "./media/characters/huttser/side.svg",
  33666. extra: 1174/1065,
  33667. bottom: 18/1192
  33668. }
  33669. },
  33670. back: {
  33671. height: math.unit(6, "feet"),
  33672. weight: math.unit(190, "lb"),
  33673. name: "Back",
  33674. image: {
  33675. source: "./media/characters/huttser/back.svg",
  33676. extra: 1158/1056,
  33677. bottom: 12/1170
  33678. }
  33679. },
  33680. },
  33681. [
  33682. ]
  33683. ))
  33684. characterMakers.push(() => makeCharacter(
  33685. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33686. {
  33687. side: {
  33688. height: math.unit(12 + 9/12, "feet"),
  33689. weight: math.unit(15000, "lb"),
  33690. name: "Side",
  33691. image: {
  33692. source: "./media/characters/faan/side.svg",
  33693. extra: 2747/2697,
  33694. bottom: 0/2747
  33695. }
  33696. },
  33697. front: {
  33698. height: math.unit(12 + 9/12, "feet"),
  33699. weight: math.unit(15000, "lb"),
  33700. name: "Front",
  33701. image: {
  33702. source: "./media/characters/faan/front.svg",
  33703. extra: 607/571,
  33704. bottom: 24/631
  33705. }
  33706. },
  33707. head: {
  33708. height: math.unit(2.85, "feet"),
  33709. name: "Head",
  33710. image: {
  33711. source: "./media/characters/faan/head.svg"
  33712. }
  33713. },
  33714. headAlt: {
  33715. height: math.unit(3.13, "feet"),
  33716. name: "Head-alt",
  33717. image: {
  33718. source: "./media/characters/faan/head-alt.svg"
  33719. }
  33720. },
  33721. },
  33722. [
  33723. {
  33724. name: "Normal",
  33725. height: math.unit(12 + 9/12, "feet"),
  33726. default: true
  33727. },
  33728. ]
  33729. ))
  33730. characterMakers.push(() => makeCharacter(
  33731. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33732. {
  33733. front: {
  33734. height: math.unit(6, "feet"),
  33735. weight: math.unit(300, "lb"),
  33736. name: "Front",
  33737. image: {
  33738. source: "./media/characters/tanio/front.svg",
  33739. extra: 711/673,
  33740. bottom: 25/736
  33741. }
  33742. },
  33743. },
  33744. [
  33745. {
  33746. name: "Normal",
  33747. height: math.unit(6, "feet"),
  33748. default: true
  33749. },
  33750. ]
  33751. ))
  33752. characterMakers.push(() => makeCharacter(
  33753. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33754. {
  33755. front: {
  33756. height: math.unit(3, "inches"),
  33757. name: "Front",
  33758. image: {
  33759. source: "./media/characters/noboru/front.svg",
  33760. extra: 1039/932,
  33761. bottom: 18/1057
  33762. }
  33763. },
  33764. },
  33765. [
  33766. {
  33767. name: "Micro",
  33768. height: math.unit(3, "inches"),
  33769. default: true
  33770. },
  33771. ]
  33772. ))
  33773. characterMakers.push(() => makeCharacter(
  33774. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33775. {
  33776. front: {
  33777. height: math.unit(1.85, "meters"),
  33778. weight: math.unit(80, "kg"),
  33779. name: "Front",
  33780. image: {
  33781. source: "./media/characters/daniel-barrett/front.svg",
  33782. extra: 355/337,
  33783. bottom: 9/364
  33784. }
  33785. },
  33786. },
  33787. [
  33788. {
  33789. name: "Pico",
  33790. height: math.unit(0.0433, "mm")
  33791. },
  33792. {
  33793. name: "Nano",
  33794. height: math.unit(1.5, "mm")
  33795. },
  33796. {
  33797. name: "Micro",
  33798. height: math.unit(5.3, "cm"),
  33799. default: true
  33800. },
  33801. {
  33802. name: "Normal",
  33803. height: math.unit(1.85, "meters")
  33804. },
  33805. {
  33806. name: "Macro",
  33807. height: math.unit(64.7, "meters")
  33808. },
  33809. {
  33810. name: "Megamacro",
  33811. height: math.unit(2.26, "km")
  33812. },
  33813. {
  33814. name: "Gigamacro",
  33815. height: math.unit(79, "km")
  33816. },
  33817. {
  33818. name: "Teramacro",
  33819. height: math.unit(2765, "km")
  33820. },
  33821. {
  33822. name: "Petamacro",
  33823. height: math.unit(96678, "km")
  33824. },
  33825. ]
  33826. ))
  33827. characterMakers.push(() => makeCharacter(
  33828. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33829. {
  33830. front: {
  33831. height: math.unit(30, "meters"),
  33832. weight: math.unit(400, "tons"),
  33833. name: "Front",
  33834. image: {
  33835. source: "./media/characters/zeel/front.svg",
  33836. extra: 2599/2599,
  33837. bottom: 226/2825
  33838. }
  33839. },
  33840. },
  33841. [
  33842. {
  33843. name: "Macro",
  33844. height: math.unit(30, "meters"),
  33845. default: true
  33846. },
  33847. ]
  33848. ))
  33849. characterMakers.push(() => makeCharacter(
  33850. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33851. {
  33852. front: {
  33853. height: math.unit(6 + 7/12, "feet"),
  33854. weight: math.unit(210, "lb"),
  33855. name: "Front",
  33856. image: {
  33857. source: "./media/characters/tarn/front.svg",
  33858. extra: 3517/3220,
  33859. bottom: 91/3608
  33860. }
  33861. },
  33862. back: {
  33863. height: math.unit(6 + 7/12, "feet"),
  33864. weight: math.unit(210, "lb"),
  33865. name: "Back",
  33866. image: {
  33867. source: "./media/characters/tarn/back.svg",
  33868. extra: 3566/3241,
  33869. bottom: 34/3600
  33870. }
  33871. },
  33872. dick: {
  33873. height: math.unit(1.65, "feet"),
  33874. name: "Dick",
  33875. image: {
  33876. source: "./media/characters/tarn/dick.svg"
  33877. }
  33878. },
  33879. paw: {
  33880. height: math.unit(1.80, "feet"),
  33881. name: "Paw",
  33882. image: {
  33883. source: "./media/characters/tarn/paw.svg"
  33884. }
  33885. },
  33886. tongue: {
  33887. height: math.unit(0.97, "feet"),
  33888. name: "Tongue",
  33889. image: {
  33890. source: "./media/characters/tarn/tongue.svg"
  33891. }
  33892. },
  33893. },
  33894. [
  33895. {
  33896. name: "Micro",
  33897. height: math.unit(4, "inches")
  33898. },
  33899. {
  33900. name: "Normal",
  33901. height: math.unit(6 + 7/12, "feet"),
  33902. default: true
  33903. },
  33904. {
  33905. name: "Macro",
  33906. height: math.unit(300, "feet")
  33907. },
  33908. ]
  33909. ))
  33910. characterMakers.push(() => makeCharacter(
  33911. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33912. {
  33913. front: {
  33914. height: math.unit(5 + 7/12, "feet"),
  33915. weight: math.unit(80, "kg"),
  33916. name: "Front",
  33917. image: {
  33918. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33919. extra: 3023/2865,
  33920. bottom: 33/3056
  33921. }
  33922. },
  33923. back: {
  33924. height: math.unit(5 + 7/12, "feet"),
  33925. weight: math.unit(80, "kg"),
  33926. name: "Back",
  33927. image: {
  33928. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33929. extra: 3020/2886,
  33930. bottom: 30/3050
  33931. }
  33932. },
  33933. dick: {
  33934. height: math.unit(0.98, "feet"),
  33935. name: "Dick",
  33936. image: {
  33937. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33938. }
  33939. },
  33940. anatomy: {
  33941. height: math.unit(2.86, "feet"),
  33942. name: "Anatomy",
  33943. image: {
  33944. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33945. }
  33946. },
  33947. },
  33948. [
  33949. {
  33950. name: "Really Small",
  33951. height: math.unit(2, "inches")
  33952. },
  33953. {
  33954. name: "Micro",
  33955. height: math.unit(5.583, "inches")
  33956. },
  33957. {
  33958. name: "Normal",
  33959. height: math.unit(5 + 7/12, "feet"),
  33960. default: true
  33961. },
  33962. {
  33963. name: "Macro",
  33964. height: math.unit(67, "feet")
  33965. },
  33966. {
  33967. name: "Megamacro",
  33968. height: math.unit(134, "feet")
  33969. },
  33970. ]
  33971. ))
  33972. characterMakers.push(() => makeCharacter(
  33973. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33974. {
  33975. front: {
  33976. height: math.unit(9, "feet"),
  33977. weight: math.unit(120, "lb"),
  33978. name: "Front",
  33979. image: {
  33980. source: "./media/characters/sally/front.svg",
  33981. extra: 1506/1349,
  33982. bottom: 66/1572
  33983. }
  33984. },
  33985. },
  33986. [
  33987. {
  33988. name: "Normal",
  33989. height: math.unit(9, "feet"),
  33990. default: true
  33991. },
  33992. ]
  33993. ))
  33994. characterMakers.push(() => makeCharacter(
  33995. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33996. {
  33997. front: {
  33998. height: math.unit(8, "feet"),
  33999. weight: math.unit(900, "lb"),
  34000. name: "Front",
  34001. image: {
  34002. source: "./media/characters/owen/front.svg",
  34003. extra: 1761/1657,
  34004. bottom: 74/1835
  34005. }
  34006. },
  34007. side: {
  34008. height: math.unit(8, "feet"),
  34009. weight: math.unit(900, "lb"),
  34010. name: "Side",
  34011. image: {
  34012. source: "./media/characters/owen/side.svg",
  34013. extra: 1797/1734,
  34014. bottom: 30/1827
  34015. }
  34016. },
  34017. back: {
  34018. height: math.unit(8, "feet"),
  34019. weight: math.unit(900, "lb"),
  34020. name: "Back",
  34021. image: {
  34022. source: "./media/characters/owen/back.svg",
  34023. extra: 1796/1706,
  34024. bottom: 59/1855
  34025. }
  34026. },
  34027. maw: {
  34028. height: math.unit(1.76, "feet"),
  34029. name: "Maw",
  34030. image: {
  34031. source: "./media/characters/owen/maw.svg"
  34032. }
  34033. },
  34034. },
  34035. [
  34036. {
  34037. name: "Normal",
  34038. height: math.unit(8, "feet"),
  34039. default: true
  34040. },
  34041. ]
  34042. ))
  34043. characterMakers.push(() => makeCharacter(
  34044. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34045. {
  34046. front: {
  34047. height: math.unit(4, "feet"),
  34048. weight: math.unit(400, "lb"),
  34049. name: "Front",
  34050. image: {
  34051. source: "./media/characters/ryth/front.svg",
  34052. extra: 1920/1748,
  34053. bottom: 42/1962
  34054. }
  34055. },
  34056. back: {
  34057. height: math.unit(4, "feet"),
  34058. weight: math.unit(400, "lb"),
  34059. name: "Back",
  34060. image: {
  34061. source: "./media/characters/ryth/back.svg",
  34062. extra: 1897/1690,
  34063. bottom: 89/1986
  34064. }
  34065. },
  34066. mouth: {
  34067. height: math.unit(1.39, "feet"),
  34068. name: "Mouth",
  34069. image: {
  34070. source: "./media/characters/ryth/mouth.svg"
  34071. }
  34072. },
  34073. tailmaw: {
  34074. height: math.unit(1.23, "feet"),
  34075. name: "Tailmaw",
  34076. image: {
  34077. source: "./media/characters/ryth/tailmaw.svg"
  34078. }
  34079. },
  34080. goia: {
  34081. height: math.unit(4, "meters"),
  34082. weight: math.unit(10800, "lb"),
  34083. name: "Goia",
  34084. image: {
  34085. source: "./media/characters/ryth/goia.svg",
  34086. extra: 745/640,
  34087. bottom: 107/852
  34088. }
  34089. },
  34090. goiaFront: {
  34091. height: math.unit(4, "meters"),
  34092. weight: math.unit(10800, "lb"),
  34093. name: "Goia (Front)",
  34094. image: {
  34095. source: "./media/characters/ryth/goia-front.svg",
  34096. extra: 750/586,
  34097. bottom: 114/864
  34098. }
  34099. },
  34100. goiaMaw: {
  34101. height: math.unit(5.55, "feet"),
  34102. name: "Goia Maw",
  34103. image: {
  34104. source: "./media/characters/ryth/goia-maw.svg"
  34105. }
  34106. },
  34107. goiaForepaw: {
  34108. height: math.unit(3.5, "feet"),
  34109. name: "Goia Forepaw",
  34110. image: {
  34111. source: "./media/characters/ryth/goia-forepaw.svg"
  34112. }
  34113. },
  34114. goiaHindpaw: {
  34115. height: math.unit(5.55, "feet"),
  34116. name: "Goia Hindpaw",
  34117. image: {
  34118. source: "./media/characters/ryth/goia-hindpaw.svg"
  34119. }
  34120. },
  34121. },
  34122. [
  34123. {
  34124. name: "Normal",
  34125. height: math.unit(4, "feet"),
  34126. default: true
  34127. },
  34128. ]
  34129. ))
  34130. characterMakers.push(() => makeCharacter(
  34131. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34132. {
  34133. front: {
  34134. height: math.unit(7, "feet"),
  34135. weight: math.unit(180, "lb"),
  34136. name: "Front",
  34137. image: {
  34138. source: "./media/characters/necrolance/front.svg",
  34139. extra: 1062/947,
  34140. bottom: 41/1103
  34141. }
  34142. },
  34143. back: {
  34144. height: math.unit(7, "feet"),
  34145. weight: math.unit(180, "lb"),
  34146. name: "Back",
  34147. image: {
  34148. source: "./media/characters/necrolance/back.svg",
  34149. extra: 1045/984,
  34150. bottom: 14/1059
  34151. }
  34152. },
  34153. wing: {
  34154. height: math.unit(2.67, "feet"),
  34155. name: "Wing",
  34156. image: {
  34157. source: "./media/characters/necrolance/wing.svg"
  34158. }
  34159. },
  34160. },
  34161. [
  34162. {
  34163. name: "Normal",
  34164. height: math.unit(7, "feet"),
  34165. default: true
  34166. },
  34167. ]
  34168. ))
  34169. characterMakers.push(() => makeCharacter(
  34170. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34171. {
  34172. front: {
  34173. height: math.unit(76, "meters"),
  34174. weight: math.unit(30000, "tons"),
  34175. name: "Front",
  34176. image: {
  34177. source: "./media/characters/tyler/front.svg",
  34178. extra: 1640/1640,
  34179. bottom: 114/1754
  34180. }
  34181. },
  34182. },
  34183. [
  34184. {
  34185. name: "Macro",
  34186. height: math.unit(76, "meters"),
  34187. default: true
  34188. },
  34189. ]
  34190. ))
  34191. characterMakers.push(() => makeCharacter(
  34192. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34193. {
  34194. front: {
  34195. height: math.unit(4 + 11/12, "feet"),
  34196. weight: math.unit(132, "lb"),
  34197. name: "Front",
  34198. image: {
  34199. source: "./media/characters/icey/front.svg",
  34200. extra: 2750/2550,
  34201. bottom: 33/2783
  34202. }
  34203. },
  34204. back: {
  34205. height: math.unit(4 + 11/12, "feet"),
  34206. weight: math.unit(132, "lb"),
  34207. name: "Back",
  34208. image: {
  34209. source: "./media/characters/icey/back.svg",
  34210. extra: 2624/2481,
  34211. bottom: 35/2659
  34212. }
  34213. },
  34214. },
  34215. [
  34216. {
  34217. name: "Normal",
  34218. height: math.unit(4 + 11/12, "feet"),
  34219. default: true
  34220. },
  34221. ]
  34222. ))
  34223. characterMakers.push(() => makeCharacter(
  34224. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34225. {
  34226. front: {
  34227. height: math.unit(100, "feet"),
  34228. weight: math.unit(0, "lb"),
  34229. name: "Front",
  34230. image: {
  34231. source: "./media/characters/smile/front.svg",
  34232. extra: 2983/2912,
  34233. bottom: 162/3145
  34234. }
  34235. },
  34236. back: {
  34237. height: math.unit(100, "feet"),
  34238. weight: math.unit(0, "lb"),
  34239. name: "Back",
  34240. image: {
  34241. source: "./media/characters/smile/back.svg",
  34242. extra: 3143/3031,
  34243. bottom: 91/3234
  34244. }
  34245. },
  34246. head: {
  34247. height: math.unit(26.3, "feet"),
  34248. weight: math.unit(0, "lb"),
  34249. name: "Head",
  34250. image: {
  34251. source: "./media/characters/smile/head.svg"
  34252. }
  34253. },
  34254. collar: {
  34255. height: math.unit(5.3, "feet"),
  34256. weight: math.unit(0, "lb"),
  34257. name: "Collar",
  34258. image: {
  34259. source: "./media/characters/smile/collar.svg"
  34260. }
  34261. },
  34262. },
  34263. [
  34264. {
  34265. name: "Macro",
  34266. height: math.unit(100, "feet"),
  34267. default: true
  34268. },
  34269. ]
  34270. ))
  34271. characterMakers.push(() => makeCharacter(
  34272. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34273. {
  34274. dragon: {
  34275. height: math.unit(26, "feet"),
  34276. weight: math.unit(36, "tons"),
  34277. name: "Dragon",
  34278. image: {
  34279. source: "./media/characters/arimphae/dragon.svg",
  34280. extra: 1574/983,
  34281. bottom: 357/1931
  34282. }
  34283. },
  34284. drake: {
  34285. height: math.unit(9, "feet"),
  34286. weight: math.unit(1.5, "tons"),
  34287. name: "Drake",
  34288. image: {
  34289. source: "./media/characters/arimphae/drake.svg",
  34290. extra: 1120/925,
  34291. bottom: 435/1555
  34292. }
  34293. },
  34294. },
  34295. [
  34296. {
  34297. name: "Small",
  34298. height: math.unit(26*5/9, "feet")
  34299. },
  34300. {
  34301. name: "Normal",
  34302. height: math.unit(26, "feet"),
  34303. default: true
  34304. },
  34305. ]
  34306. ))
  34307. characterMakers.push(() => makeCharacter(
  34308. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34309. {
  34310. front: {
  34311. height: math.unit(8 + 9/12, "feet"),
  34312. name: "Front",
  34313. image: {
  34314. source: "./media/characters/xander/front.svg",
  34315. extra: 1237/974,
  34316. bottom: 94/1331
  34317. }
  34318. },
  34319. },
  34320. [
  34321. {
  34322. name: "Normal",
  34323. height: math.unit(8 + 9/12, "feet"),
  34324. default: true
  34325. },
  34326. {
  34327. name: "Gaze Grabber",
  34328. height: math.unit(13 + 8/12, "feet")
  34329. },
  34330. {
  34331. name: "Jaw Dropper",
  34332. height: math.unit(27, "feet")
  34333. },
  34334. {
  34335. name: "Show Stopper",
  34336. height: math.unit(136, "feet")
  34337. },
  34338. {
  34339. name: "Superstar",
  34340. height: math.unit(1.9e6, "miles")
  34341. },
  34342. ]
  34343. ))
  34344. characterMakers.push(() => makeCharacter(
  34345. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34346. {
  34347. side: {
  34348. height: math.unit(2100, "feet"),
  34349. name: "Side",
  34350. image: {
  34351. source: "./media/characters/osiris/side.svg",
  34352. extra: 1105/939,
  34353. bottom: 167/1272
  34354. }
  34355. },
  34356. },
  34357. [
  34358. {
  34359. name: "Macro",
  34360. height: math.unit(2100, "feet"),
  34361. default: true
  34362. },
  34363. ]
  34364. ))
  34365. characterMakers.push(() => makeCharacter(
  34366. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34367. {
  34368. front: {
  34369. height: math.unit(6 + 8/12, "feet"),
  34370. weight: math.unit(225, "lb"),
  34371. name: "Front",
  34372. image: {
  34373. source: "./media/characters/rhys-londe/front.svg",
  34374. extra: 2258/2141,
  34375. bottom: 188/2446
  34376. }
  34377. },
  34378. back: {
  34379. height: math.unit(6 + 8/12, "feet"),
  34380. weight: math.unit(225, "lb"),
  34381. name: "Back",
  34382. image: {
  34383. source: "./media/characters/rhys-londe/back.svg",
  34384. extra: 2237/2137,
  34385. bottom: 63/2300
  34386. }
  34387. },
  34388. frontNsfw: {
  34389. height: math.unit(6 + 8/12, "feet"),
  34390. weight: math.unit(225, "lb"),
  34391. name: "Front (NSFW)",
  34392. image: {
  34393. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34394. extra: 2258/2141,
  34395. bottom: 188/2446
  34396. }
  34397. },
  34398. backNsfw: {
  34399. height: math.unit(6 + 8/12, "feet"),
  34400. weight: math.unit(225, "lb"),
  34401. name: "Back (NSFW)",
  34402. image: {
  34403. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34404. extra: 2237/2137,
  34405. bottom: 63/2300
  34406. }
  34407. },
  34408. dick: {
  34409. height: math.unit(30, "inches"),
  34410. name: "Dick",
  34411. image: {
  34412. source: "./media/characters/rhys-londe/dick.svg"
  34413. }
  34414. },
  34415. maw: {
  34416. height: math.unit(1.6, "feet"),
  34417. name: "Maw",
  34418. image: {
  34419. source: "./media/characters/rhys-londe/maw.svg"
  34420. }
  34421. },
  34422. },
  34423. [
  34424. {
  34425. name: "Normal",
  34426. height: math.unit(6 + 8/12, "feet"),
  34427. default: true
  34428. },
  34429. ]
  34430. ))
  34431. characterMakers.push(() => makeCharacter(
  34432. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34433. {
  34434. front: {
  34435. height: math.unit(3 + 10/12, "feet"),
  34436. weight: math.unit(90, "lb"),
  34437. name: "Front",
  34438. image: {
  34439. source: "./media/characters/taivas-ensim/front.svg",
  34440. extra: 1327/1216,
  34441. bottom: 96/1423
  34442. }
  34443. },
  34444. back: {
  34445. height: math.unit(3 + 10/12, "feet"),
  34446. weight: math.unit(90, "lb"),
  34447. name: "Back",
  34448. image: {
  34449. source: "./media/characters/taivas-ensim/back.svg",
  34450. extra: 1355/1247,
  34451. bottom: 11/1366
  34452. }
  34453. },
  34454. frontNsfw: {
  34455. height: math.unit(3 + 10/12, "feet"),
  34456. weight: math.unit(90, "lb"),
  34457. name: "Front (NSFW)",
  34458. image: {
  34459. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34460. extra: 1327/1216,
  34461. bottom: 96/1423
  34462. }
  34463. },
  34464. backNsfw: {
  34465. height: math.unit(3 + 10/12, "feet"),
  34466. weight: math.unit(90, "lb"),
  34467. name: "Back (NSFW)",
  34468. image: {
  34469. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34470. extra: 1355/1247,
  34471. bottom: 11/1366
  34472. }
  34473. },
  34474. },
  34475. [
  34476. {
  34477. name: "Normal",
  34478. height: math.unit(3 + 10/12, "feet"),
  34479. default: true
  34480. },
  34481. ]
  34482. ))
  34483. characterMakers.push(() => makeCharacter(
  34484. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34485. {
  34486. front: {
  34487. height: math.unit(9 + 6/12, "feet"),
  34488. weight: math.unit(940, "lb"),
  34489. name: "Front",
  34490. image: {
  34491. source: "./media/characters/byliss/front.svg",
  34492. extra: 1327/1290,
  34493. bottom: 82/1409
  34494. }
  34495. },
  34496. back: {
  34497. height: math.unit(9 + 6/12, "feet"),
  34498. weight: math.unit(940, "lb"),
  34499. name: "Back",
  34500. image: {
  34501. source: "./media/characters/byliss/back.svg",
  34502. extra: 1376/1349,
  34503. bottom: 9/1385
  34504. }
  34505. },
  34506. frontNsfw: {
  34507. height: math.unit(9 + 6/12, "feet"),
  34508. weight: math.unit(940, "lb"),
  34509. name: "Front (NSFW)",
  34510. image: {
  34511. source: "./media/characters/byliss/front-nsfw.svg",
  34512. extra: 1327/1290,
  34513. bottom: 82/1409
  34514. }
  34515. },
  34516. backNsfw: {
  34517. height: math.unit(9 + 6/12, "feet"),
  34518. weight: math.unit(940, "lb"),
  34519. name: "Back (NSFW)",
  34520. image: {
  34521. source: "./media/characters/byliss/back-nsfw.svg",
  34522. extra: 1376/1349,
  34523. bottom: 9/1385
  34524. }
  34525. },
  34526. },
  34527. [
  34528. {
  34529. name: "Normal",
  34530. height: math.unit(9 + 6/12, "feet"),
  34531. default: true
  34532. },
  34533. ]
  34534. ))
  34535. characterMakers.push(() => makeCharacter(
  34536. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34537. {
  34538. front: {
  34539. height: math.unit(5 + 2/12, "feet"),
  34540. weight: math.unit(200, "lb"),
  34541. name: "Front",
  34542. image: {
  34543. source: "./media/characters/noraly/front.svg",
  34544. extra: 4985/4773,
  34545. bottom: 150/5135
  34546. }
  34547. },
  34548. full: {
  34549. height: math.unit(5 + 2/12, "feet"),
  34550. weight: math.unit(164, "lb"),
  34551. name: "Full",
  34552. image: {
  34553. source: "./media/characters/noraly/full.svg",
  34554. extra: 1114/1059,
  34555. bottom: 35/1149
  34556. }
  34557. },
  34558. fuller: {
  34559. height: math.unit(5 + 2/12, "feet"),
  34560. weight: math.unit(230, "lb"),
  34561. name: "Fuller",
  34562. image: {
  34563. source: "./media/characters/noraly/fuller.svg",
  34564. extra: 1114/1059,
  34565. bottom: 35/1149
  34566. }
  34567. },
  34568. fullest: {
  34569. height: math.unit(5 + 2/12, "feet"),
  34570. weight: math.unit(300, "lb"),
  34571. name: "Fullest",
  34572. image: {
  34573. source: "./media/characters/noraly/fullest.svg",
  34574. extra: 1114/1059,
  34575. bottom: 35/1149
  34576. }
  34577. },
  34578. },
  34579. [
  34580. {
  34581. name: "Normal",
  34582. height: math.unit(5 + 2/12, "feet"),
  34583. default: true
  34584. },
  34585. ]
  34586. ))
  34587. characterMakers.push(() => makeCharacter(
  34588. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34589. {
  34590. front: {
  34591. height: math.unit(5 + 2/12, "feet"),
  34592. weight: math.unit(210, "lb"),
  34593. name: "Front",
  34594. image: {
  34595. source: "./media/characters/pera/front.svg",
  34596. extra: 1560/1531,
  34597. bottom: 165/1725
  34598. }
  34599. },
  34600. back: {
  34601. height: math.unit(5 + 2/12, "feet"),
  34602. weight: math.unit(210, "lb"),
  34603. name: "Back",
  34604. image: {
  34605. source: "./media/characters/pera/back.svg",
  34606. extra: 1523/1493,
  34607. bottom: 152/1675
  34608. }
  34609. },
  34610. dick: {
  34611. height: math.unit(2.4, "feet"),
  34612. name: "Dick",
  34613. image: {
  34614. source: "./media/characters/pera/dick.svg"
  34615. }
  34616. },
  34617. },
  34618. [
  34619. {
  34620. name: "Normal",
  34621. height: math.unit(5 + 2/12, "feet"),
  34622. default: true
  34623. },
  34624. ]
  34625. ))
  34626. characterMakers.push(() => makeCharacter(
  34627. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34628. {
  34629. front: {
  34630. height: math.unit(12, "feet"),
  34631. weight: math.unit(3200, "lb"),
  34632. name: "Front",
  34633. image: {
  34634. source: "./media/characters/julian/front.svg",
  34635. extra: 2962/2701,
  34636. bottom: 184/3146
  34637. }
  34638. },
  34639. maw: {
  34640. height: math.unit(5.35, "feet"),
  34641. name: "Maw",
  34642. image: {
  34643. source: "./media/characters/julian/maw.svg"
  34644. }
  34645. },
  34646. paw: {
  34647. height: math.unit(3.07, "feet"),
  34648. name: "Paw",
  34649. image: {
  34650. source: "./media/characters/julian/paw.svg"
  34651. }
  34652. },
  34653. },
  34654. [
  34655. {
  34656. name: "Default",
  34657. height: math.unit(12, "feet"),
  34658. default: true
  34659. },
  34660. {
  34661. name: "Big",
  34662. height: math.unit(50, "feet")
  34663. },
  34664. {
  34665. name: "Really Big",
  34666. height: math.unit(1, "mile")
  34667. },
  34668. {
  34669. name: "Extremely Big",
  34670. height: math.unit(100, "miles")
  34671. },
  34672. {
  34673. name: "Planet Hugger",
  34674. height: math.unit(200, "megameters")
  34675. },
  34676. {
  34677. name: "Unreasonably Big",
  34678. height: math.unit(1e300, "meters")
  34679. },
  34680. ]
  34681. ))
  34682. characterMakers.push(() => makeCharacter(
  34683. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34684. {
  34685. solgooleo: {
  34686. height: math.unit(4, "meters"),
  34687. weight: math.unit(6000*1.5, "kg"),
  34688. volume: math.unit(6000, "liters"),
  34689. name: "Solgooleo",
  34690. image: {
  34691. source: "./media/characters/pi/solgooleo.svg",
  34692. extra: 388/331,
  34693. bottom: 29/417
  34694. }
  34695. },
  34696. },
  34697. [
  34698. {
  34699. name: "Normal",
  34700. height: math.unit(4, "meters"),
  34701. default: true
  34702. },
  34703. ]
  34704. ))
  34705. characterMakers.push(() => makeCharacter(
  34706. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34707. {
  34708. front: {
  34709. height: math.unit(8, "feet"),
  34710. weight: math.unit(4, "tons"),
  34711. name: "Front",
  34712. image: {
  34713. source: "./media/characters/shaun/front.svg",
  34714. extra: 503/495,
  34715. bottom: 20/523
  34716. }
  34717. },
  34718. back: {
  34719. height: math.unit(8, "feet"),
  34720. weight: math.unit(4, "tons"),
  34721. name: "Back",
  34722. image: {
  34723. source: "./media/characters/shaun/back.svg",
  34724. extra: 487/480,
  34725. bottom: 20/507
  34726. }
  34727. },
  34728. },
  34729. [
  34730. {
  34731. name: "Lorg",
  34732. height: math.unit(8, "feet"),
  34733. default: true
  34734. },
  34735. ]
  34736. ))
  34737. characterMakers.push(() => makeCharacter(
  34738. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34739. {
  34740. frontAnthro: {
  34741. height: math.unit(7, "feet"),
  34742. name: "Front",
  34743. image: {
  34744. source: "./media/characters/sini/front-anthro.svg",
  34745. extra: 726/678,
  34746. bottom: 35/761
  34747. },
  34748. form: "anthro",
  34749. default: true
  34750. },
  34751. backAnthro: {
  34752. height: math.unit(7, "feet"),
  34753. name: "Back",
  34754. image: {
  34755. source: "./media/characters/sini/back-anthro.svg",
  34756. extra: 743/701,
  34757. bottom: 12/755
  34758. },
  34759. form: "anthro",
  34760. },
  34761. frontAnthroNsfw: {
  34762. height: math.unit(7, "feet"),
  34763. name: "Front (NSFW)",
  34764. image: {
  34765. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34766. extra: 726/678,
  34767. bottom: 35/761
  34768. },
  34769. form: "anthro"
  34770. },
  34771. backAnthroNsfw: {
  34772. height: math.unit(7, "feet"),
  34773. name: "Back (NSFW)",
  34774. image: {
  34775. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34776. extra: 743/701,
  34777. bottom: 12/755
  34778. },
  34779. form: "anthro",
  34780. },
  34781. mawAnthro: {
  34782. height: math.unit(2.14, "feet"),
  34783. name: "Maw",
  34784. image: {
  34785. source: "./media/characters/sini/maw-anthro.svg"
  34786. },
  34787. form: "anthro"
  34788. },
  34789. dick: {
  34790. height: math.unit(1.45, "feet"),
  34791. name: "Dick",
  34792. image: {
  34793. source: "./media/characters/sini/dick-anthro.svg"
  34794. },
  34795. form: "anthro"
  34796. },
  34797. feral: {
  34798. height: math.unit(16, "feet"),
  34799. name: "Feral",
  34800. image: {
  34801. source: "./media/characters/sini/feral.svg",
  34802. extra: 814/605,
  34803. bottom: 11/825
  34804. },
  34805. form: "feral",
  34806. default: true
  34807. },
  34808. feralNsfw: {
  34809. height: math.unit(16, "feet"),
  34810. name: "Feral (NSFW)",
  34811. image: {
  34812. source: "./media/characters/sini/feral-nsfw.svg",
  34813. extra: 814/605,
  34814. bottom: 11/825
  34815. },
  34816. form: "feral"
  34817. },
  34818. mawFeral: {
  34819. height: math.unit(5.66, "feet"),
  34820. name: "Maw",
  34821. image: {
  34822. source: "./media/characters/sini/maw-feral.svg"
  34823. },
  34824. form: "feral",
  34825. },
  34826. pawFeral: {
  34827. height: math.unit(5.17, "feet"),
  34828. name: "Paw",
  34829. image: {
  34830. source: "./media/characters/sini/paw-feral.svg"
  34831. },
  34832. form: "feral",
  34833. },
  34834. rumpFeral: {
  34835. height: math.unit(13.11, "feet"),
  34836. name: "Rump",
  34837. image: {
  34838. source: "./media/characters/sini/rump-feral.svg"
  34839. },
  34840. form: "feral",
  34841. },
  34842. dickFeral: {
  34843. height: math.unit(1, "feet"),
  34844. name: "Dick",
  34845. image: {
  34846. source: "./media/characters/sini/dick-feral.svg"
  34847. },
  34848. form: "feral",
  34849. },
  34850. eyeFeral: {
  34851. height: math.unit(1.23, "feet"),
  34852. name: "Eye",
  34853. image: {
  34854. source: "./media/characters/sini/eye-feral.svg"
  34855. },
  34856. form: "feral",
  34857. },
  34858. },
  34859. [
  34860. {
  34861. name: "Normal",
  34862. height: math.unit(7, "feet"),
  34863. default: true,
  34864. form: "anthro"
  34865. },
  34866. {
  34867. name: "Normal",
  34868. height: math.unit(16, "feet"),
  34869. default: true,
  34870. form: "feral"
  34871. },
  34872. ],
  34873. {
  34874. "anthro": {
  34875. name: "Anthro",
  34876. default: true
  34877. },
  34878. "feral": {
  34879. name: "Feral",
  34880. }
  34881. }
  34882. ))
  34883. characterMakers.push(() => makeCharacter(
  34884. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34885. {
  34886. side: {
  34887. height: math.unit(47.2, "meters"),
  34888. weight: math.unit(10000, "tons"),
  34889. name: "Side",
  34890. image: {
  34891. source: "./media/characters/raylldo/side.svg",
  34892. extra: 2363/642,
  34893. bottom: 221/2584
  34894. }
  34895. },
  34896. top: {
  34897. height: math.unit(240, "meters"),
  34898. weight: math.unit(10000, "tons"),
  34899. name: "Top",
  34900. image: {
  34901. source: "./media/characters/raylldo/top.svg"
  34902. }
  34903. },
  34904. bottom: {
  34905. height: math.unit(240, "meters"),
  34906. weight: math.unit(10000, "tons"),
  34907. name: "Bottom",
  34908. image: {
  34909. source: "./media/characters/raylldo/bottom.svg"
  34910. }
  34911. },
  34912. head: {
  34913. height: math.unit(38.6, "meters"),
  34914. name: "Head",
  34915. image: {
  34916. source: "./media/characters/raylldo/head.svg",
  34917. extra: 1335/1112,
  34918. bottom: 0/1335
  34919. }
  34920. },
  34921. maw: {
  34922. height: math.unit(16.37, "meters"),
  34923. name: "Maw",
  34924. image: {
  34925. source: "./media/characters/raylldo/maw.svg",
  34926. extra: 883/660,
  34927. bottom: 0/883
  34928. },
  34929. extraAttributes: {
  34930. preyCapacity: {
  34931. name: "Capacity",
  34932. power: 3,
  34933. type: "volume",
  34934. base: math.unit(1000, "people")
  34935. },
  34936. tongueSize: {
  34937. name: "Tongue Size",
  34938. power: 2,
  34939. type: "area",
  34940. base: math.unit(21, "m^2")
  34941. }
  34942. }
  34943. },
  34944. forepaw: {
  34945. height: math.unit(18, "meters"),
  34946. name: "Forepaw",
  34947. image: {
  34948. source: "./media/characters/raylldo/forepaw.svg"
  34949. }
  34950. },
  34951. hindpaw: {
  34952. height: math.unit(23, "meters"),
  34953. name: "Hindpaw",
  34954. image: {
  34955. source: "./media/characters/raylldo/hindpaw.svg"
  34956. }
  34957. },
  34958. genitals: {
  34959. height: math.unit(42, "meters"),
  34960. name: "Genitals",
  34961. image: {
  34962. source: "./media/characters/raylldo/genitals.svg"
  34963. }
  34964. },
  34965. },
  34966. [
  34967. {
  34968. name: "Normal",
  34969. height: math.unit(47.2, "meters"),
  34970. default: true
  34971. },
  34972. ]
  34973. ))
  34974. characterMakers.push(() => makeCharacter(
  34975. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34976. {
  34977. anthroFront: {
  34978. height: math.unit(9, "feet"),
  34979. weight: math.unit(600, "lb"),
  34980. name: "Anthro (Front)",
  34981. image: {
  34982. source: "./media/characters/glint/anthro-front.svg",
  34983. extra: 1097/1018,
  34984. bottom: 28/1125
  34985. }
  34986. },
  34987. anthroBack: {
  34988. height: math.unit(9, "feet"),
  34989. weight: math.unit(600, "lb"),
  34990. name: "Anthro (Back)",
  34991. image: {
  34992. source: "./media/characters/glint/anthro-back.svg",
  34993. extra: 1154/997,
  34994. bottom: 36/1190
  34995. }
  34996. },
  34997. feral: {
  34998. height: math.unit(11, "feet"),
  34999. weight: math.unit(50000, "lb"),
  35000. name: "Feral",
  35001. image: {
  35002. source: "./media/characters/glint/feral.svg",
  35003. extra: 3035/1585,
  35004. bottom: 1169/4204
  35005. }
  35006. },
  35007. dickAnthro: {
  35008. height: math.unit(0.7, "meters"),
  35009. name: "Dick (Anthro)",
  35010. image: {
  35011. source: "./media/characters/glint/dick-anthro.svg"
  35012. }
  35013. },
  35014. dickFeral: {
  35015. height: math.unit(2.65, "meters"),
  35016. name: "Dick (Feral)",
  35017. image: {
  35018. source: "./media/characters/glint/dick-feral.svg"
  35019. }
  35020. },
  35021. slitHidden: {
  35022. height: math.unit(5.85, "meters"),
  35023. name: "Slit (Hidden)",
  35024. image: {
  35025. source: "./media/characters/glint/slit-hidden.svg"
  35026. }
  35027. },
  35028. slitErect: {
  35029. height: math.unit(5.85, "meters"),
  35030. name: "Slit (Erect)",
  35031. image: {
  35032. source: "./media/characters/glint/slit-erect.svg"
  35033. }
  35034. },
  35035. mawAnthro: {
  35036. height: math.unit(0.63, "meters"),
  35037. name: "Maw (Anthro)",
  35038. image: {
  35039. source: "./media/characters/glint/maw.svg"
  35040. }
  35041. },
  35042. mawFeral: {
  35043. height: math.unit(2.89, "meters"),
  35044. name: "Maw (Feral)",
  35045. image: {
  35046. source: "./media/characters/glint/maw.svg"
  35047. }
  35048. },
  35049. },
  35050. [
  35051. {
  35052. name: "Normal",
  35053. height: math.unit(9, "feet"),
  35054. default: true
  35055. },
  35056. ]
  35057. ))
  35058. characterMakers.push(() => makeCharacter(
  35059. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35060. {
  35061. side: {
  35062. height: math.unit(15, "feet"),
  35063. weight: math.unit(5000, "kg"),
  35064. name: "Side",
  35065. image: {
  35066. source: "./media/characters/kairne/side.svg",
  35067. extra: 979/811,
  35068. bottom: 13/992
  35069. }
  35070. },
  35071. front: {
  35072. height: math.unit(15, "feet"),
  35073. weight: math.unit(5000, "kg"),
  35074. name: "Front",
  35075. image: {
  35076. source: "./media/characters/kairne/front.svg",
  35077. extra: 908/814,
  35078. bottom: 26/934
  35079. }
  35080. },
  35081. sideNsfw: {
  35082. height: math.unit(15, "feet"),
  35083. weight: math.unit(5000, "kg"),
  35084. name: "Side (NSFW)",
  35085. image: {
  35086. source: "./media/characters/kairne/side-nsfw.svg",
  35087. extra: 979/811,
  35088. bottom: 13/992
  35089. }
  35090. },
  35091. frontNsfw: {
  35092. height: math.unit(15, "feet"),
  35093. weight: math.unit(5000, "kg"),
  35094. name: "Front (NSFW)",
  35095. image: {
  35096. source: "./media/characters/kairne/front-nsfw.svg",
  35097. extra: 908/814,
  35098. bottom: 26/934
  35099. }
  35100. },
  35101. dickCaged: {
  35102. height: math.unit(0.65, "meters"),
  35103. name: "Dick-caged",
  35104. image: {
  35105. source: "./media/characters/kairne/dick-caged.svg"
  35106. }
  35107. },
  35108. dick: {
  35109. height: math.unit(0.79, "meters"),
  35110. name: "Dick",
  35111. image: {
  35112. source: "./media/characters/kairne/dick.svg"
  35113. }
  35114. },
  35115. genitals: {
  35116. height: math.unit(1.29, "meters"),
  35117. name: "Genitals",
  35118. image: {
  35119. source: "./media/characters/kairne/genitals.svg"
  35120. }
  35121. },
  35122. maw: {
  35123. height: math.unit(1.73, "meters"),
  35124. name: "Maw",
  35125. image: {
  35126. source: "./media/characters/kairne/maw.svg"
  35127. }
  35128. },
  35129. },
  35130. [
  35131. {
  35132. name: "Normal",
  35133. height: math.unit(15, "feet"),
  35134. default: true
  35135. },
  35136. ]
  35137. ))
  35138. characterMakers.push(() => makeCharacter(
  35139. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35140. {
  35141. front: {
  35142. height: math.unit(5 + 8/12, "feet"),
  35143. weight: math.unit(139, "lb"),
  35144. name: "Front",
  35145. image: {
  35146. source: "./media/characters/biscuit-jackal/front.svg",
  35147. extra: 2106/1961,
  35148. bottom: 58/2164
  35149. }
  35150. },
  35151. back: {
  35152. height: math.unit(5 + 8/12, "feet"),
  35153. weight: math.unit(139, "lb"),
  35154. name: "Back",
  35155. image: {
  35156. source: "./media/characters/biscuit-jackal/back.svg",
  35157. extra: 2132/1976,
  35158. bottom: 57/2189
  35159. }
  35160. },
  35161. werejackal: {
  35162. height: math.unit(6 + 3/12, "feet"),
  35163. weight: math.unit(188, "lb"),
  35164. name: "Werejackal",
  35165. image: {
  35166. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35167. extra: 2373/2178,
  35168. bottom: 53/2426
  35169. }
  35170. },
  35171. },
  35172. [
  35173. {
  35174. name: "Normal",
  35175. height: math.unit(5 + 8/12, "feet"),
  35176. default: true
  35177. },
  35178. ]
  35179. ))
  35180. characterMakers.push(() => makeCharacter(
  35181. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35182. {
  35183. front: {
  35184. height: math.unit(140, "cm"),
  35185. weight: math.unit(45, "kg"),
  35186. name: "Front",
  35187. image: {
  35188. source: "./media/characters/tayra-white/front.svg",
  35189. extra: 2229/2192,
  35190. bottom: 75/2304
  35191. }
  35192. },
  35193. },
  35194. [
  35195. {
  35196. name: "Normal",
  35197. height: math.unit(140, "cm"),
  35198. default: true
  35199. },
  35200. ]
  35201. ))
  35202. characterMakers.push(() => makeCharacter(
  35203. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35204. {
  35205. front: {
  35206. height: math.unit(4 + 5/12, "feet"),
  35207. name: "Front",
  35208. image: {
  35209. source: "./media/characters/scoop/front.svg",
  35210. extra: 1257/1136,
  35211. bottom: 69/1326
  35212. }
  35213. },
  35214. back: {
  35215. height: math.unit(4 + 5/12, "feet"),
  35216. name: "Back",
  35217. image: {
  35218. source: "./media/characters/scoop/back.svg",
  35219. extra: 1321/1152,
  35220. bottom: 32/1353
  35221. }
  35222. },
  35223. maw: {
  35224. height: math.unit(0.68, "feet"),
  35225. name: "Maw",
  35226. image: {
  35227. source: "./media/characters/scoop/maw.svg"
  35228. }
  35229. },
  35230. },
  35231. [
  35232. {
  35233. name: "Really Small",
  35234. height: math.unit(1, "mm")
  35235. },
  35236. {
  35237. name: "Micro",
  35238. height: math.unit(1, "inch")
  35239. },
  35240. {
  35241. name: "Normal",
  35242. height: math.unit(4 + 5/12, "feet"),
  35243. default: true
  35244. },
  35245. {
  35246. name: "Macro",
  35247. height: math.unit(200, "feet")
  35248. },
  35249. {
  35250. name: "Megamacro",
  35251. height: math.unit(3240, "feet")
  35252. },
  35253. {
  35254. name: "Teramacro",
  35255. height: math.unit(2500, "miles")
  35256. },
  35257. ]
  35258. ))
  35259. characterMakers.push(() => makeCharacter(
  35260. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35261. {
  35262. front: {
  35263. height: math.unit(15 + 7/12, "feet"),
  35264. weight: math.unit(1150, "tons"),
  35265. name: "Front",
  35266. image: {
  35267. source: "./media/characters/saphinara/front.svg",
  35268. extra: 1837/1643,
  35269. bottom: 84/1921
  35270. },
  35271. form: "normal",
  35272. default: true
  35273. },
  35274. side: {
  35275. height: math.unit(15 + 7/12, "feet"),
  35276. weight: math.unit(1150, "tons"),
  35277. name: "Side",
  35278. image: {
  35279. source: "./media/characters/saphinara/side.svg",
  35280. extra: 605/547,
  35281. bottom: 6/611
  35282. },
  35283. form: "normal"
  35284. },
  35285. back: {
  35286. height: math.unit(15 + 7/12, "feet"),
  35287. weight: math.unit(1150, "tons"),
  35288. name: "Back",
  35289. image: {
  35290. source: "./media/characters/saphinara/back.svg",
  35291. extra: 591/531,
  35292. bottom: 13/604
  35293. },
  35294. form: "normal"
  35295. },
  35296. frontTail: {
  35297. height: math.unit(15 + 7/12, "feet"),
  35298. weight: math.unit(1150, "tons"),
  35299. name: "Front (Full Tail)",
  35300. image: {
  35301. source: "./media/characters/saphinara/front-tail.svg",
  35302. extra: 2256/1630,
  35303. bottom: 261/2517
  35304. },
  35305. form: "normal"
  35306. },
  35307. insides: {
  35308. height: math.unit(11.92, "feet"),
  35309. name: "Insides",
  35310. image: {
  35311. source: "./media/characters/saphinara/insides.svg"
  35312. },
  35313. form: "normal"
  35314. },
  35315. head: {
  35316. height: math.unit(4.17, "feet"),
  35317. name: "Head",
  35318. image: {
  35319. source: "./media/characters/saphinara/head.svg"
  35320. },
  35321. form: "normal"
  35322. },
  35323. tongue: {
  35324. height: math.unit(4.60, "feet"),
  35325. name: "Tongue",
  35326. image: {
  35327. source: "./media/characters/saphinara/tongue.svg"
  35328. },
  35329. form: "normal"
  35330. },
  35331. headEnraged: {
  35332. height: math.unit(5.55, "feet"),
  35333. name: "Head (Enraged)",
  35334. image: {
  35335. source: "./media/characters/saphinara/head-enraged.svg"
  35336. },
  35337. form: "normal"
  35338. },
  35339. wings: {
  35340. height: math.unit(11.95, "feet"),
  35341. name: "Wings",
  35342. image: {
  35343. source: "./media/characters/saphinara/wings.svg"
  35344. },
  35345. form: "normal"
  35346. },
  35347. feathers: {
  35348. height: math.unit(8.92, "feet"),
  35349. name: "Feathers",
  35350. image: {
  35351. source: "./media/characters/saphinara/feathers.svg"
  35352. },
  35353. form: "normal"
  35354. },
  35355. shackles: {
  35356. height: math.unit(2, "feet"),
  35357. name: "Shackles",
  35358. image: {
  35359. source: "./media/characters/saphinara/shackles.svg"
  35360. },
  35361. form: "normal"
  35362. },
  35363. eyes: {
  35364. height: math.unit(1.331, "feet"),
  35365. name: "Eyes",
  35366. image: {
  35367. source: "./media/characters/saphinara/eyes.svg"
  35368. },
  35369. form: "normal"
  35370. },
  35371. eyesEnraged: {
  35372. height: math.unit(1.331, "feet"),
  35373. name: "Eyes (Enraged)",
  35374. image: {
  35375. source: "./media/characters/saphinara/eyes-enraged.svg"
  35376. },
  35377. form: "normal"
  35378. },
  35379. trueFormSide: {
  35380. height: math.unit(200, "feet"),
  35381. weight: math.unit(1e7, "tons"),
  35382. name: "Side",
  35383. image: {
  35384. source: "./media/characters/saphinara/true-form-side.svg",
  35385. extra: 1399/770,
  35386. bottom: 97/1496
  35387. },
  35388. form: "true-form",
  35389. default: true
  35390. },
  35391. trueFormMaw: {
  35392. height: math.unit(71.5, "feet"),
  35393. name: "Maw",
  35394. image: {
  35395. source: "./media/characters/saphinara/true-form-maw.svg",
  35396. extra: 2302/1453,
  35397. bottom: 0/2302
  35398. },
  35399. form: "true-form"
  35400. },
  35401. meowberusSide: {
  35402. height: math.unit(75, "feet"),
  35403. weight: math.unit(180000, "kg"),
  35404. preyCapacity: math.unit(50000, "people"),
  35405. name: "Side",
  35406. image: {
  35407. source: "./media/characters/saphinara/meowberus-side.svg",
  35408. extra: 1400/711,
  35409. bottom: 126/1526
  35410. },
  35411. form: "meowberus",
  35412. extraAttributes: {
  35413. "pawArea": {
  35414. name: "Paw Size",
  35415. power: 2,
  35416. type: "area",
  35417. base: math.unit(35, "m^2")
  35418. }
  35419. }
  35420. },
  35421. },
  35422. [
  35423. {
  35424. name: "Normal",
  35425. height: math.unit(15 + 7/12, "feet"),
  35426. default: true,
  35427. form: "normal"
  35428. },
  35429. {
  35430. name: "Angry",
  35431. height: math.unit(30 + 6/12, "feet"),
  35432. form: "normal"
  35433. },
  35434. {
  35435. name: "Enraged",
  35436. height: math.unit(102 + 1/12, "feet"),
  35437. form: "normal"
  35438. },
  35439. {
  35440. name: "True",
  35441. height: math.unit(200, "feet"),
  35442. default: true,
  35443. form: "true-form"
  35444. },
  35445. {
  35446. name: "Normal",
  35447. height: math.unit(75, "feet"),
  35448. default: true,
  35449. form: "meowberus"
  35450. },
  35451. ],
  35452. {
  35453. "normal": {
  35454. name: "Normal",
  35455. default: true
  35456. },
  35457. "true-form": {
  35458. name: "True Form"
  35459. },
  35460. "meowberus": {
  35461. name: "Meowberus",
  35462. },
  35463. }
  35464. ))
  35465. characterMakers.push(() => makeCharacter(
  35466. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35467. {
  35468. front: {
  35469. height: math.unit(6 + 8/12, "feet"),
  35470. weight: math.unit(300, "lb"),
  35471. name: "Front",
  35472. image: {
  35473. source: "./media/characters/jrain/front.svg",
  35474. extra: 3039/2865,
  35475. bottom: 399/3438
  35476. }
  35477. },
  35478. back: {
  35479. height: math.unit(6 + 8/12, "feet"),
  35480. weight: math.unit(300, "lb"),
  35481. name: "Back",
  35482. image: {
  35483. source: "./media/characters/jrain/back.svg",
  35484. extra: 3089/2938,
  35485. bottom: 172/3261
  35486. }
  35487. },
  35488. head: {
  35489. height: math.unit(2.14, "feet"),
  35490. name: "Head",
  35491. image: {
  35492. source: "./media/characters/jrain/head.svg"
  35493. }
  35494. },
  35495. maw: {
  35496. height: math.unit(1.77, "feet"),
  35497. name: "Maw",
  35498. image: {
  35499. source: "./media/characters/jrain/maw.svg"
  35500. }
  35501. },
  35502. leftHand: {
  35503. height: math.unit(1.1, "feet"),
  35504. name: "Left Hand",
  35505. image: {
  35506. source: "./media/characters/jrain/left-hand.svg"
  35507. }
  35508. },
  35509. rightHand: {
  35510. height: math.unit(1.1, "feet"),
  35511. name: "Right Hand",
  35512. image: {
  35513. source: "./media/characters/jrain/right-hand.svg"
  35514. }
  35515. },
  35516. eye: {
  35517. height: math.unit(0.35, "feet"),
  35518. name: "Eye",
  35519. image: {
  35520. source: "./media/characters/jrain/eye.svg"
  35521. }
  35522. },
  35523. },
  35524. [
  35525. {
  35526. name: "Normal",
  35527. height: math.unit(6 + 8/12, "feet"),
  35528. default: true
  35529. },
  35530. {
  35531. name: "Casually Large",
  35532. height: math.unit(25, "feet")
  35533. },
  35534. {
  35535. name: "Giant",
  35536. height: math.unit(100, "feet")
  35537. },
  35538. {
  35539. name: "Kaiju",
  35540. height: math.unit(300, "feet")
  35541. },
  35542. ]
  35543. ))
  35544. characterMakers.push(() => makeCharacter(
  35545. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35546. {
  35547. dragon: {
  35548. height: math.unit(5, "meters"),
  35549. name: "Dragon",
  35550. image: {
  35551. source: "./media/characters/sabrina/dragon.svg",
  35552. extra: 3670 / 2365,
  35553. bottom: 333 / 4003
  35554. }
  35555. },
  35556. gryphon: {
  35557. height: math.unit(3, "meters"),
  35558. name: "Gryphon",
  35559. image: {
  35560. source: "./media/characters/sabrina/gryphon.svg",
  35561. extra: 1576 / 945,
  35562. bottom: 71 / 1647
  35563. }
  35564. },
  35565. snake: {
  35566. height: math.unit(12, "meters"),
  35567. name: "Snake",
  35568. image: {
  35569. source: "./media/characters/sabrina/snake.svg",
  35570. extra: 1758 / 1320,
  35571. bottom: 186 / 1944
  35572. }
  35573. },
  35574. collar: {
  35575. height: math.unit(1.86, "meters"),
  35576. name: "Collar",
  35577. image: {
  35578. source: "./media/characters/sabrina/collar.svg"
  35579. }
  35580. },
  35581. eye: {
  35582. height: math.unit(0.53, "meters"),
  35583. name: "Eye",
  35584. image: {
  35585. source: "./media/characters/sabrina/eye.svg"
  35586. }
  35587. },
  35588. foot: {
  35589. height: math.unit(1.86, "meters"),
  35590. name: "Foot",
  35591. image: {
  35592. source: "./media/characters/sabrina/foot.svg"
  35593. }
  35594. },
  35595. hand: {
  35596. height: math.unit(1.32, "meters"),
  35597. name: "Hand",
  35598. image: {
  35599. source: "./media/characters/sabrina/hand.svg"
  35600. }
  35601. },
  35602. head: {
  35603. height: math.unit(2.44, "meters"),
  35604. name: "Head",
  35605. image: {
  35606. source: "./media/characters/sabrina/head.svg"
  35607. }
  35608. },
  35609. headAngry: {
  35610. height: math.unit(2.44, "meters"),
  35611. name: "Head (Angry))",
  35612. image: {
  35613. source: "./media/characters/sabrina/head-angry.svg"
  35614. }
  35615. },
  35616. maw: {
  35617. height: math.unit(1.65, "meters"),
  35618. name: "Maw",
  35619. image: {
  35620. source: "./media/characters/sabrina/maw.svg"
  35621. }
  35622. },
  35623. spikes: {
  35624. height: math.unit(1.69, "meters"),
  35625. name: "Spikes",
  35626. image: {
  35627. source: "./media/characters/sabrina/spikes.svg"
  35628. }
  35629. },
  35630. stomach: {
  35631. height: math.unit(1.15, "meters"),
  35632. name: "Stomach",
  35633. image: {
  35634. source: "./media/characters/sabrina/stomach.svg"
  35635. }
  35636. },
  35637. tongue: {
  35638. height: math.unit(1.27, "meters"),
  35639. name: "Tongue",
  35640. image: {
  35641. source: "./media/characters/sabrina/tongue.svg"
  35642. }
  35643. },
  35644. wingDorsal: {
  35645. height: math.unit(4.85, "meters"),
  35646. name: "Wing (Dorsal)",
  35647. image: {
  35648. source: "./media/characters/sabrina/wing-dorsal.svg"
  35649. }
  35650. },
  35651. wingVentral: {
  35652. height: math.unit(4.85, "meters"),
  35653. name: "Wing (Ventral)",
  35654. image: {
  35655. source: "./media/characters/sabrina/wing-ventral.svg"
  35656. }
  35657. },
  35658. },
  35659. [
  35660. {
  35661. name: "Normal",
  35662. height: math.unit(5, "meters"),
  35663. default: true
  35664. },
  35665. ]
  35666. ))
  35667. characterMakers.push(() => makeCharacter(
  35668. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35669. {
  35670. frontMaid: {
  35671. height: math.unit(5 + 5/12, "feet"),
  35672. weight: math.unit(130, "lb"),
  35673. name: "Front (Maid)",
  35674. image: {
  35675. source: "./media/characters/midnight-tales/front-maid.svg",
  35676. extra: 489/454,
  35677. bottom: 61/550
  35678. }
  35679. },
  35680. frontFormal: {
  35681. height: math.unit(5 + 5/12, "feet"),
  35682. weight: math.unit(130, "lb"),
  35683. name: "Front (Formal)",
  35684. image: {
  35685. source: "./media/characters/midnight-tales/front-formal.svg",
  35686. extra: 489/454,
  35687. bottom: 61/550
  35688. }
  35689. },
  35690. back: {
  35691. height: math.unit(5 + 5/12, "feet"),
  35692. weight: math.unit(130, "lb"),
  35693. name: "Back",
  35694. image: {
  35695. source: "./media/characters/midnight-tales/back.svg",
  35696. extra: 498/456,
  35697. bottom: 33/531
  35698. }
  35699. },
  35700. frontBeast: {
  35701. height: math.unit(40, "feet"),
  35702. weight: math.unit(64000, "lb"),
  35703. name: "Front (Beast)",
  35704. image: {
  35705. source: "./media/characters/midnight-tales/front-beast.svg",
  35706. extra: 927/860,
  35707. bottom: 53/980
  35708. }
  35709. },
  35710. backBeast: {
  35711. height: math.unit(40, "feet"),
  35712. weight: math.unit(64000, "lb"),
  35713. name: "Back (Beast)",
  35714. image: {
  35715. source: "./media/characters/midnight-tales/back-beast.svg",
  35716. extra: 929/855,
  35717. bottom: 16/945
  35718. }
  35719. },
  35720. footBeast: {
  35721. height: math.unit(6.7, "feet"),
  35722. name: "Foot (Beast)",
  35723. image: {
  35724. source: "./media/characters/midnight-tales/foot-beast.svg"
  35725. }
  35726. },
  35727. headBeast: {
  35728. height: math.unit(8, "feet"),
  35729. name: "Head (Beast)",
  35730. image: {
  35731. source: "./media/characters/midnight-tales/head-beast.svg"
  35732. }
  35733. },
  35734. },
  35735. [
  35736. {
  35737. name: "Normal",
  35738. height: math.unit(5 + 5 / 12, "feet"),
  35739. default: true
  35740. },
  35741. {
  35742. name: "Macro",
  35743. height: math.unit(25, "feet")
  35744. },
  35745. ]
  35746. ))
  35747. characterMakers.push(() => makeCharacter(
  35748. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35749. {
  35750. front: {
  35751. height: math.unit(5 + 10/12, "feet"),
  35752. name: "Front",
  35753. image: {
  35754. source: "./media/characters/argon/front.svg",
  35755. extra: 2009/1935,
  35756. bottom: 118/2127
  35757. }
  35758. },
  35759. back: {
  35760. height: math.unit(5 + 10/12, "feet"),
  35761. name: "Back",
  35762. image: {
  35763. source: "./media/characters/argon/back.svg",
  35764. extra: 2047/1992,
  35765. bottom: 20/2067
  35766. }
  35767. },
  35768. frontDressed: {
  35769. height: math.unit(5 + 10/12, "feet"),
  35770. name: "Front (Dressed)",
  35771. image: {
  35772. source: "./media/characters/argon/front-dressed.svg",
  35773. extra: 2009/1935,
  35774. bottom: 118/2127
  35775. }
  35776. },
  35777. },
  35778. [
  35779. {
  35780. name: "Normal",
  35781. height: math.unit(5 + 10/12, "feet"),
  35782. default: true
  35783. },
  35784. ]
  35785. ))
  35786. characterMakers.push(() => makeCharacter(
  35787. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35788. {
  35789. front: {
  35790. height: math.unit(8 + 6/12, "feet"),
  35791. weight: math.unit(1150, "lb"),
  35792. name: "Front",
  35793. image: {
  35794. source: "./media/characters/kichi/front.svg",
  35795. extra: 1267/1164,
  35796. bottom: 61/1328
  35797. }
  35798. },
  35799. back: {
  35800. height: math.unit(8 + 6/12, "feet"),
  35801. weight: math.unit(1150, "lb"),
  35802. name: "Back",
  35803. image: {
  35804. source: "./media/characters/kichi/back.svg",
  35805. extra: 1273/1166,
  35806. bottom: 33/1306
  35807. }
  35808. },
  35809. },
  35810. [
  35811. {
  35812. name: "Normal",
  35813. height: math.unit(8 + 6/12, "feet"),
  35814. default: true
  35815. },
  35816. ]
  35817. ))
  35818. characterMakers.push(() => makeCharacter(
  35819. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35820. {
  35821. front: {
  35822. height: math.unit(6, "feet"),
  35823. weight: math.unit(210, "lb"),
  35824. name: "Front",
  35825. image: {
  35826. source: "./media/characters/manetel-greyscale/front.svg",
  35827. extra: 350/312,
  35828. bottom: 8/358
  35829. }
  35830. },
  35831. },
  35832. [
  35833. {
  35834. name: "Micro",
  35835. height: math.unit(2, "inches")
  35836. },
  35837. {
  35838. name: "Normal",
  35839. height: math.unit(6, "feet"),
  35840. default: true
  35841. },
  35842. {
  35843. name: "Minimacro",
  35844. height: math.unit(17, "feet")
  35845. },
  35846. {
  35847. name: "Macro",
  35848. height: math.unit(117, "feet")
  35849. },
  35850. ]
  35851. ))
  35852. characterMakers.push(() => makeCharacter(
  35853. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35854. {
  35855. side: {
  35856. height: math.unit(5 + 1/12, "feet"),
  35857. weight: math.unit(418, "lb"),
  35858. name: "Side",
  35859. image: {
  35860. source: "./media/characters/softpurr/side.svg",
  35861. extra: 1993/1945,
  35862. bottom: 134/2127
  35863. }
  35864. },
  35865. front: {
  35866. height: math.unit(5 + 1/12, "feet"),
  35867. weight: math.unit(418, "lb"),
  35868. name: "Front",
  35869. image: {
  35870. source: "./media/characters/softpurr/front.svg",
  35871. extra: 1950/1856,
  35872. bottom: 174/2124
  35873. }
  35874. },
  35875. paw: {
  35876. height: math.unit(1, "feet"),
  35877. name: "Paw",
  35878. image: {
  35879. source: "./media/characters/softpurr/paw.svg"
  35880. }
  35881. },
  35882. },
  35883. [
  35884. {
  35885. name: "Normal",
  35886. height: math.unit(5 + 1/12, "feet"),
  35887. default: true
  35888. },
  35889. ]
  35890. ))
  35891. characterMakers.push(() => makeCharacter(
  35892. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35893. {
  35894. front: {
  35895. height: math.unit(260, "meters"),
  35896. name: "Front",
  35897. image: {
  35898. source: "./media/characters/anahita/front.svg",
  35899. extra: 665/635,
  35900. bottom: 89/754
  35901. }
  35902. },
  35903. },
  35904. [
  35905. {
  35906. name: "Macro",
  35907. height: math.unit(260, "meters"),
  35908. default: true
  35909. },
  35910. ]
  35911. ))
  35912. characterMakers.push(() => makeCharacter(
  35913. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35914. {
  35915. front: {
  35916. height: math.unit(4 + 10/12, "feet"),
  35917. weight: math.unit(160, "lb"),
  35918. name: "Front",
  35919. image: {
  35920. source: "./media/characters/chip-mouse/front.svg",
  35921. extra: 3528/3408,
  35922. bottom: 0/3528
  35923. }
  35924. },
  35925. frontNsfw: {
  35926. height: math.unit(4 + 10/12, "feet"),
  35927. weight: math.unit(160, "lb"),
  35928. name: "Front (NSFW)",
  35929. image: {
  35930. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35931. extra: 3528/3408,
  35932. bottom: 0/3528
  35933. }
  35934. },
  35935. },
  35936. [
  35937. {
  35938. name: "Normal",
  35939. height: math.unit(4 + 10/12, "feet"),
  35940. default: true
  35941. },
  35942. ]
  35943. ))
  35944. characterMakers.push(() => makeCharacter(
  35945. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35946. {
  35947. side: {
  35948. height: math.unit(10, "feet"),
  35949. weight: math.unit(14000, "lb"),
  35950. name: "Side",
  35951. image: {
  35952. source: "./media/characters/kremm/side.svg",
  35953. extra: 1390/1053,
  35954. bottom: 90/1480
  35955. }
  35956. },
  35957. gut: {
  35958. height: math.unit(5.8, "feet"),
  35959. name: "Gut",
  35960. image: {
  35961. source: "./media/characters/kremm/gut.svg"
  35962. }
  35963. },
  35964. ass: {
  35965. height: math.unit(6.1, "feet"),
  35966. name: "Ass",
  35967. image: {
  35968. source: "./media/characters/kremm/ass.svg"
  35969. }
  35970. },
  35971. jaws: {
  35972. height: math.unit(2.2, "feet"),
  35973. name: "Jaws",
  35974. image: {
  35975. source: "./media/characters/kremm/jaws.svg"
  35976. }
  35977. },
  35978. dick: {
  35979. height: math.unit(4.26, "feet"),
  35980. name: "Dick",
  35981. image: {
  35982. source: "./media/characters/kremm/dick.svg"
  35983. }
  35984. },
  35985. },
  35986. [
  35987. {
  35988. name: "Normal",
  35989. height: math.unit(10, "feet"),
  35990. default: true
  35991. },
  35992. ]
  35993. ))
  35994. characterMakers.push(() => makeCharacter(
  35995. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35996. {
  35997. front: {
  35998. height: math.unit(30, "stories"),
  35999. name: "Front",
  36000. image: {
  36001. source: "./media/characters/kai/front.svg",
  36002. extra: 1892/1718,
  36003. bottom: 162/2054
  36004. }
  36005. },
  36006. },
  36007. [
  36008. {
  36009. name: "Macro",
  36010. height: math.unit(30, "stories"),
  36011. default: true
  36012. },
  36013. ]
  36014. ))
  36015. characterMakers.push(() => makeCharacter(
  36016. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36017. {
  36018. front: {
  36019. height: math.unit(6 + 4/12, "feet"),
  36020. weight: math.unit(145, "lb"),
  36021. name: "Front",
  36022. image: {
  36023. source: "./media/characters/sykes/front.svg",
  36024. extra: 1321 / 1187,
  36025. bottom: 66 / 1387
  36026. }
  36027. },
  36028. back: {
  36029. height: math.unit(6 + 4/12, "feet"),
  36030. weight: math.unit(145, "lb"),
  36031. name: "Back",
  36032. image: {
  36033. source: "./media/characters/sykes/back.svg",
  36034. extra: 1326/1181,
  36035. bottom: 31/1357
  36036. }
  36037. },
  36038. traditionalOutfit: {
  36039. height: math.unit(6 + 4/12, "feet"),
  36040. weight: math.unit(145, "lb"),
  36041. name: "Traditional Outfit",
  36042. image: {
  36043. source: "./media/characters/sykes/traditional-outfit.svg",
  36044. extra: 1321 / 1187,
  36045. bottom: 66 / 1387
  36046. }
  36047. },
  36048. adventureOutfit: {
  36049. height: math.unit(6 + 4/12, "feet"),
  36050. weight: math.unit(145, "lb"),
  36051. name: "Adventure Outfit",
  36052. image: {
  36053. source: "./media/characters/sykes/adventure-outfit.svg",
  36054. extra: 1321 / 1187,
  36055. bottom: 66 / 1387
  36056. }
  36057. },
  36058. handLeft: {
  36059. height: math.unit(0.9, "feet"),
  36060. name: "Hand (Left)",
  36061. image: {
  36062. source: "./media/characters/sykes/hand-left.svg"
  36063. }
  36064. },
  36065. handRight: {
  36066. height: math.unit(0.839, "feet"),
  36067. name: "Hand (Right)",
  36068. image: {
  36069. source: "./media/characters/sykes/hand-right.svg"
  36070. }
  36071. },
  36072. leftFoot: {
  36073. height: math.unit(1.2, "feet"),
  36074. name: "Foot (Left)",
  36075. image: {
  36076. source: "./media/characters/sykes/foot-left.svg"
  36077. }
  36078. },
  36079. rightFoot: {
  36080. height: math.unit(1.2, "feet"),
  36081. name: "Foot (Right)",
  36082. image: {
  36083. source: "./media/characters/sykes/foot-right.svg"
  36084. }
  36085. },
  36086. maw: {
  36087. height: math.unit(1.93, "feet"),
  36088. name: "Maw",
  36089. image: {
  36090. source: "./media/characters/sykes/maw.svg"
  36091. }
  36092. },
  36093. teeth: {
  36094. height: math.unit(0.51, "feet"),
  36095. name: "Teeth",
  36096. image: {
  36097. source: "./media/characters/sykes/teeth.svg"
  36098. }
  36099. },
  36100. tongue: {
  36101. height: math.unit(2.13, "feet"),
  36102. name: "Tongue",
  36103. image: {
  36104. source: "./media/characters/sykes/tongue.svg"
  36105. }
  36106. },
  36107. uvula: {
  36108. height: math.unit(0.16, "feet"),
  36109. name: "Uvula",
  36110. image: {
  36111. source: "./media/characters/sykes/uvula.svg"
  36112. }
  36113. },
  36114. collar: {
  36115. height: math.unit(0.287, "feet"),
  36116. name: "Collar",
  36117. image: {
  36118. source: "./media/characters/sykes/collar.svg"
  36119. }
  36120. },
  36121. tail: {
  36122. height: math.unit(3.8, "feet"),
  36123. name: "Tail",
  36124. image: {
  36125. source: "./media/characters/sykes/tail.svg"
  36126. }
  36127. },
  36128. },
  36129. [
  36130. {
  36131. name: "Shrunken",
  36132. height: math.unit(5, "inches")
  36133. },
  36134. {
  36135. name: "Normal",
  36136. height: math.unit(6 + 4 / 12, "feet"),
  36137. default: true
  36138. },
  36139. {
  36140. name: "Big",
  36141. height: math.unit(15, "feet")
  36142. },
  36143. ]
  36144. ))
  36145. characterMakers.push(() => makeCharacter(
  36146. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36147. {
  36148. front: {
  36149. height: math.unit(5 + 8/12, "feet"),
  36150. weight: math.unit(190, "lb"),
  36151. name: "Front",
  36152. image: {
  36153. source: "./media/characters/oven-otter/front.svg",
  36154. extra: 1809/1740,
  36155. bottom: 181/1990
  36156. }
  36157. },
  36158. back: {
  36159. height: math.unit(5 + 8/12, "feet"),
  36160. weight: math.unit(190, "lb"),
  36161. name: "Back",
  36162. image: {
  36163. source: "./media/characters/oven-otter/back.svg",
  36164. extra: 1709/1635,
  36165. bottom: 118/1827
  36166. }
  36167. },
  36168. hand: {
  36169. height: math.unit(1.07, "feet"),
  36170. name: "Hand",
  36171. image: {
  36172. source: "./media/characters/oven-otter/hand.svg"
  36173. }
  36174. },
  36175. beans: {
  36176. height: math.unit(1.74, "feet"),
  36177. name: "Beans",
  36178. image: {
  36179. source: "./media/characters/oven-otter/beans.svg"
  36180. }
  36181. },
  36182. },
  36183. [
  36184. {
  36185. name: "Micro",
  36186. height: math.unit(0.5, "inches")
  36187. },
  36188. {
  36189. name: "Normal",
  36190. height: math.unit(5 + 8/12, "feet"),
  36191. default: true
  36192. },
  36193. {
  36194. name: "Macro",
  36195. height: math.unit(250, "feet")
  36196. },
  36197. {
  36198. name: "Really High",
  36199. height: math.unit(420, "feet")
  36200. },
  36201. ]
  36202. ))
  36203. characterMakers.push(() => makeCharacter(
  36204. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36205. {
  36206. front: {
  36207. height: math.unit(5, "meters"),
  36208. weight: math.unit(292000000000000, "kg"),
  36209. name: "Front",
  36210. image: {
  36211. source: "./media/characters/devourer/front.svg",
  36212. extra: 1800/1733,
  36213. bottom: 211/2011
  36214. }
  36215. },
  36216. maw: {
  36217. height: math.unit(1.1, "meter"),
  36218. name: "Maw",
  36219. image: {
  36220. source: "./media/characters/devourer/maw.svg"
  36221. }
  36222. },
  36223. },
  36224. [
  36225. {
  36226. name: "Small",
  36227. height: math.unit(3, "meters")
  36228. },
  36229. {
  36230. name: "Large",
  36231. height: math.unit(5, "meters"),
  36232. default: true
  36233. },
  36234. ]
  36235. ))
  36236. characterMakers.push(() => makeCharacter(
  36237. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36238. {
  36239. front: {
  36240. height: math.unit(6, "feet"),
  36241. weight: math.unit(400, "lb"),
  36242. name: "Front",
  36243. image: {
  36244. source: "./media/characters/ellarby/front.svg",
  36245. extra: 1909/1763,
  36246. bottom: 80/1989
  36247. }
  36248. },
  36249. back: {
  36250. height: math.unit(6, "feet"),
  36251. weight: math.unit(400, "lb"),
  36252. name: "Back",
  36253. image: {
  36254. source: "./media/characters/ellarby/back.svg",
  36255. extra: 1914/1784,
  36256. bottom: 172/2086
  36257. }
  36258. },
  36259. },
  36260. [
  36261. {
  36262. name: "Mischief",
  36263. height: math.unit(18, "inches")
  36264. },
  36265. {
  36266. name: "Trouble",
  36267. height: math.unit(12, "feet")
  36268. },
  36269. {
  36270. name: "Havoc",
  36271. height: math.unit(200, "feet"),
  36272. default: true
  36273. },
  36274. {
  36275. name: "Pandemonium",
  36276. height: math.unit(1, "mile")
  36277. },
  36278. {
  36279. name: "Catastrophe",
  36280. height: math.unit(100, "miles")
  36281. },
  36282. ]
  36283. ))
  36284. characterMakers.push(() => makeCharacter(
  36285. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36286. {
  36287. front: {
  36288. height: math.unit(4.7, "meters"),
  36289. weight: math.unit(6500, "kg"),
  36290. name: "Front",
  36291. image: {
  36292. source: "./media/characters/vex/front.svg",
  36293. extra: 1288/1140,
  36294. bottom: 100/1388
  36295. }
  36296. },
  36297. },
  36298. [
  36299. {
  36300. name: "Normal",
  36301. height: math.unit(4.7, "meters"),
  36302. default: true
  36303. },
  36304. ]
  36305. ))
  36306. characterMakers.push(() => makeCharacter(
  36307. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36308. {
  36309. normal: {
  36310. height: math.unit(6, "feet"),
  36311. weight: math.unit(350, "lb"),
  36312. name: "Normal",
  36313. image: {
  36314. source: "./media/characters/teshy/normal.svg",
  36315. extra: 1795/1735,
  36316. bottom: 16/1811
  36317. }
  36318. },
  36319. monsterFront: {
  36320. height: math.unit(12, "feet"),
  36321. weight: math.unit(4700, "lb"),
  36322. name: "Monster (Front)",
  36323. image: {
  36324. source: "./media/characters/teshy/monster-front.svg",
  36325. extra: 2042/2034,
  36326. bottom: 128/2170
  36327. }
  36328. },
  36329. monsterSide: {
  36330. height: math.unit(12, "feet"),
  36331. weight: math.unit(4700, "lb"),
  36332. name: "Monster (Side)",
  36333. image: {
  36334. source: "./media/characters/teshy/monster-side.svg",
  36335. extra: 2067/2056,
  36336. bottom: 70/2137
  36337. }
  36338. },
  36339. monsterBack: {
  36340. height: math.unit(12, "feet"),
  36341. weight: math.unit(4700, "lb"),
  36342. name: "Monster (Back)",
  36343. image: {
  36344. source: "./media/characters/teshy/monster-back.svg",
  36345. extra: 1921/1914,
  36346. bottom: 171/2092
  36347. }
  36348. },
  36349. },
  36350. [
  36351. {
  36352. name: "Normal",
  36353. height: math.unit(6, "feet"),
  36354. default: true
  36355. },
  36356. ]
  36357. ))
  36358. characterMakers.push(() => makeCharacter(
  36359. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36360. {
  36361. front: {
  36362. height: math.unit(6, "feet"),
  36363. name: "Front",
  36364. image: {
  36365. source: "./media/characters/ramey/front.svg",
  36366. extra: 790/787,
  36367. bottom: 27/817
  36368. }
  36369. },
  36370. },
  36371. [
  36372. {
  36373. name: "Normal",
  36374. height: math.unit(6, "feet"),
  36375. default: true
  36376. },
  36377. ]
  36378. ))
  36379. characterMakers.push(() => makeCharacter(
  36380. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36381. {
  36382. front: {
  36383. height: math.unit(5 + 5/12, "feet"),
  36384. weight: math.unit(120, "lb"),
  36385. name: "Front",
  36386. image: {
  36387. source: "./media/characters/phirae/front.svg",
  36388. extra: 2491/2436,
  36389. bottom: 38/2529
  36390. }
  36391. },
  36392. },
  36393. [
  36394. {
  36395. name: "Normal",
  36396. height: math.unit(5 + 5/12, "feet"),
  36397. default: true
  36398. },
  36399. ]
  36400. ))
  36401. characterMakers.push(() => makeCharacter(
  36402. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36403. {
  36404. front: {
  36405. height: math.unit(5 + 3/12, "feet"),
  36406. name: "Front",
  36407. image: {
  36408. source: "./media/characters/stagglas/front.svg",
  36409. extra: 962/882,
  36410. bottom: 53/1015
  36411. }
  36412. },
  36413. feral: {
  36414. height: math.unit(335, "cm"),
  36415. name: "Feral",
  36416. image: {
  36417. source: "./media/characters/stagglas/feral.svg",
  36418. extra: 1732/1090,
  36419. bottom: 48/1780
  36420. }
  36421. },
  36422. },
  36423. [
  36424. {
  36425. name: "Normal",
  36426. height: math.unit(5 + 3/12, "feet"),
  36427. default: true
  36428. },
  36429. ]
  36430. ))
  36431. characterMakers.push(() => makeCharacter(
  36432. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36433. {
  36434. front: {
  36435. height: math.unit(5 + 4/12, "feet"),
  36436. weight: math.unit(145, "lb"),
  36437. name: "Front",
  36438. image: {
  36439. source: "./media/characters/starra/front.svg",
  36440. extra: 1790/1691,
  36441. bottom: 91/1881
  36442. }
  36443. },
  36444. },
  36445. [
  36446. {
  36447. name: "Normal",
  36448. height: math.unit(5 + 4/12, "feet"),
  36449. default: true
  36450. },
  36451. ]
  36452. ))
  36453. characterMakers.push(() => makeCharacter(
  36454. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36455. {
  36456. front: {
  36457. height: math.unit(2.2, "meters"),
  36458. name: "Front",
  36459. image: {
  36460. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36461. extra: 1248/972,
  36462. bottom: 38/1286
  36463. }
  36464. },
  36465. },
  36466. [
  36467. {
  36468. name: "Normal",
  36469. height: math.unit(2.2, "meters"),
  36470. default: true
  36471. },
  36472. ]
  36473. ))
  36474. characterMakers.push(() => makeCharacter(
  36475. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36476. {
  36477. side: {
  36478. height: math.unit(8 + 2/12, "feet"),
  36479. weight: math.unit(1240, "lb"),
  36480. name: "Side",
  36481. image: {
  36482. source: "./media/characters/mika-valentine/side.svg",
  36483. extra: 2670/2501,
  36484. bottom: 250/2920
  36485. }
  36486. },
  36487. },
  36488. [
  36489. {
  36490. name: "Normal",
  36491. height: math.unit(8 + 2/12, "feet"),
  36492. default: true
  36493. },
  36494. ]
  36495. ))
  36496. characterMakers.push(() => makeCharacter(
  36497. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36498. {
  36499. front: {
  36500. height: math.unit(7 + 2/12, "feet"),
  36501. name: "Front",
  36502. image: {
  36503. source: "./media/characters/xoltol/front.svg",
  36504. extra: 2212/2124,
  36505. bottom: 84/2296
  36506. }
  36507. },
  36508. side: {
  36509. height: math.unit(7 + 2/12, "feet"),
  36510. name: "Side",
  36511. image: {
  36512. source: "./media/characters/xoltol/side.svg",
  36513. extra: 2273/2197,
  36514. bottom: 26/2299
  36515. }
  36516. },
  36517. hand: {
  36518. height: math.unit(2.5, "feet"),
  36519. name: "Hand",
  36520. image: {
  36521. source: "./media/characters/xoltol/hand.svg"
  36522. }
  36523. },
  36524. },
  36525. [
  36526. {
  36527. name: "Small-ish",
  36528. height: math.unit(5 + 11/12, "feet")
  36529. },
  36530. {
  36531. name: "Normal",
  36532. height: math.unit(7 + 2/12, "feet")
  36533. },
  36534. {
  36535. name: "\"Macro\"",
  36536. height: math.unit(14 + 9/12, "feet"),
  36537. default: true
  36538. },
  36539. {
  36540. name: "Alternate Height",
  36541. height: math.unit(20, "feet")
  36542. },
  36543. {
  36544. name: "Actually Macro",
  36545. height: math.unit(100, "feet")
  36546. },
  36547. ]
  36548. ))
  36549. characterMakers.push(() => makeCharacter(
  36550. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36551. {
  36552. front: {
  36553. height: math.unit(5 + 2/12, "feet"),
  36554. name: "Front",
  36555. image: {
  36556. source: "./media/characters/kotetsu-redwood/front.svg",
  36557. extra: 1053/942,
  36558. bottom: 60/1113
  36559. }
  36560. },
  36561. },
  36562. [
  36563. {
  36564. name: "Normal",
  36565. height: math.unit(5 + 2/12, "feet"),
  36566. default: true
  36567. },
  36568. ]
  36569. ))
  36570. characterMakers.push(() => makeCharacter(
  36571. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36572. {
  36573. front: {
  36574. height: math.unit(2.4, "meters"),
  36575. weight: math.unit(125, "kg"),
  36576. name: "Front",
  36577. image: {
  36578. source: "./media/characters/lilith/front.svg",
  36579. extra: 1590/1513,
  36580. bottom: 203/1793
  36581. }
  36582. },
  36583. },
  36584. [
  36585. {
  36586. name: "Humanoid",
  36587. height: math.unit(2.4, "meters")
  36588. },
  36589. {
  36590. name: "Normal",
  36591. height: math.unit(6, "meters"),
  36592. default: true
  36593. },
  36594. {
  36595. name: "Largest",
  36596. height: math.unit(55, "meters")
  36597. },
  36598. ]
  36599. ))
  36600. characterMakers.push(() => makeCharacter(
  36601. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36602. {
  36603. front: {
  36604. height: math.unit(8 + 4/12, "feet"),
  36605. weight: math.unit(535, "lb"),
  36606. name: "Front",
  36607. image: {
  36608. source: "./media/characters/beh'kah-bolger/front.svg",
  36609. extra: 1660/1603,
  36610. bottom: 37/1697
  36611. }
  36612. },
  36613. },
  36614. [
  36615. {
  36616. name: "Normal",
  36617. height: math.unit(8 + 4/12, "feet"),
  36618. default: true
  36619. },
  36620. {
  36621. name: "Kaiju",
  36622. height: math.unit(250, "feet")
  36623. },
  36624. {
  36625. name: "Still Growing",
  36626. height: math.unit(10, "miles")
  36627. },
  36628. {
  36629. name: "Continental",
  36630. height: math.unit(5000, "miles")
  36631. },
  36632. {
  36633. name: "Final Form",
  36634. height: math.unit(2500000, "miles")
  36635. },
  36636. ]
  36637. ))
  36638. characterMakers.push(() => makeCharacter(
  36639. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36640. {
  36641. front: {
  36642. height: math.unit(7 + 2/12, "feet"),
  36643. weight: math.unit(230, "kg"),
  36644. name: "Front",
  36645. image: {
  36646. source: "./media/characters/tatyana-milewska/front.svg",
  36647. extra: 1199/1150,
  36648. bottom: 86/1285
  36649. }
  36650. },
  36651. },
  36652. [
  36653. {
  36654. name: "Normal",
  36655. height: math.unit(7 + 2/12, "feet"),
  36656. default: true
  36657. },
  36658. {
  36659. name: "Big",
  36660. height: math.unit(12, "feet")
  36661. },
  36662. {
  36663. name: "Minimacro",
  36664. height: math.unit(20, "feet")
  36665. },
  36666. {
  36667. name: "Macro",
  36668. height: math.unit(120, "feet")
  36669. },
  36670. ]
  36671. ))
  36672. characterMakers.push(() => makeCharacter(
  36673. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36674. {
  36675. front: {
  36676. height: math.unit(7 + 8/12, "feet"),
  36677. weight: math.unit(152, "kg"),
  36678. name: "Front",
  36679. image: {
  36680. source: "./media/characters/helen-arri/front.svg",
  36681. extra: 440/423,
  36682. bottom: 14/454
  36683. }
  36684. },
  36685. back: {
  36686. height: math.unit(7 + 8/12, "feet"),
  36687. weight: math.unit(152, "kg"),
  36688. name: "Back",
  36689. image: {
  36690. source: "./media/characters/helen-arri/back.svg",
  36691. extra: 443/426,
  36692. bottom: 8/451
  36693. }
  36694. },
  36695. },
  36696. [
  36697. {
  36698. name: "Normal",
  36699. height: math.unit(7 + 8/12, "feet"),
  36700. default: true
  36701. },
  36702. {
  36703. name: "Big",
  36704. height: math.unit(14, "feet")
  36705. },
  36706. {
  36707. name: "Minimacro",
  36708. height: math.unit(24, "feet")
  36709. },
  36710. {
  36711. name: "Macro",
  36712. height: math.unit(140, "feet")
  36713. },
  36714. ]
  36715. ))
  36716. characterMakers.push(() => makeCharacter(
  36717. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36718. {
  36719. front: {
  36720. height: math.unit(6, "meters"),
  36721. name: "Front",
  36722. image: {
  36723. source: "./media/characters/ehanu-rehu/front.svg",
  36724. extra: 1800/1800,
  36725. bottom: 59/1859
  36726. }
  36727. },
  36728. },
  36729. [
  36730. {
  36731. name: "Normal",
  36732. height: math.unit(6, "meters"),
  36733. default: true
  36734. },
  36735. ]
  36736. ))
  36737. characterMakers.push(() => makeCharacter(
  36738. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36739. {
  36740. front: {
  36741. height: math.unit(7 + 3/12, "feet"),
  36742. name: "Front",
  36743. image: {
  36744. source: "./media/characters/renholder/front.svg",
  36745. extra: 3096/2960,
  36746. bottom: 250/3346
  36747. }
  36748. },
  36749. },
  36750. [
  36751. {
  36752. name: "Normal Bat",
  36753. height: math.unit(7 + 3/12, "feet"),
  36754. default: true
  36755. },
  36756. {
  36757. name: "Slightly Tall Bat",
  36758. height: math.unit(100, "feet")
  36759. },
  36760. {
  36761. name: "Big Bat",
  36762. height: math.unit(1000, "feet")
  36763. },
  36764. {
  36765. name: "City-Sized Bat",
  36766. height: math.unit(200000, "feet")
  36767. },
  36768. {
  36769. name: "Bigger Bat",
  36770. height: math.unit(10000, "miles")
  36771. },
  36772. {
  36773. name: "Solar Sized Bat",
  36774. height: math.unit(100, "AU")
  36775. },
  36776. {
  36777. name: "Galactic Bat",
  36778. height: math.unit(200000, "lightyears")
  36779. },
  36780. {
  36781. name: "Universally Known Bat",
  36782. height: math.unit(1, "universe")
  36783. },
  36784. ]
  36785. ))
  36786. characterMakers.push(() => makeCharacter(
  36787. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36788. {
  36789. front: {
  36790. height: math.unit(6 + 11/12, "feet"),
  36791. weight: math.unit(250, "lb"),
  36792. name: "Front",
  36793. image: {
  36794. source: "./media/characters/cookiecat/front.svg",
  36795. extra: 893/827,
  36796. bottom: 14/907
  36797. }
  36798. },
  36799. },
  36800. [
  36801. {
  36802. name: "Micro",
  36803. height: math.unit(3, "inches")
  36804. },
  36805. {
  36806. name: "Normal",
  36807. height: math.unit(6 + 11/12, "feet"),
  36808. default: true
  36809. },
  36810. {
  36811. name: "Macro",
  36812. height: math.unit(100, "feet")
  36813. },
  36814. {
  36815. name: "Macro+",
  36816. height: math.unit(404, "feet")
  36817. },
  36818. {
  36819. name: "Megamacro",
  36820. height: math.unit(165, "miles")
  36821. },
  36822. {
  36823. name: "Planetary",
  36824. height: math.unit(4600, "miles")
  36825. },
  36826. ]
  36827. ))
  36828. characterMakers.push(() => makeCharacter(
  36829. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36830. {
  36831. front: {
  36832. height: math.unit(10 + 3/12, "feet"),
  36833. weight: math.unit(1500, "lb"),
  36834. name: "Front",
  36835. image: {
  36836. source: "./media/characters/tux-kusanagi/front.svg",
  36837. extra: 944/840,
  36838. bottom: 39/983
  36839. }
  36840. },
  36841. back: {
  36842. height: math.unit(10 + 3/12, "feet"),
  36843. weight: math.unit(1500, "lb"),
  36844. name: "Back",
  36845. image: {
  36846. source: "./media/characters/tux-kusanagi/back.svg",
  36847. extra: 941/842,
  36848. bottom: 28/969
  36849. }
  36850. },
  36851. rump: {
  36852. height: math.unit(5.25, "feet"),
  36853. name: "Rump",
  36854. image: {
  36855. source: "./media/characters/tux-kusanagi/rump.svg"
  36856. }
  36857. },
  36858. beak: {
  36859. height: math.unit(1.54, "feet"),
  36860. name: "Beak",
  36861. image: {
  36862. source: "./media/characters/tux-kusanagi/beak.svg"
  36863. }
  36864. },
  36865. },
  36866. [
  36867. {
  36868. name: "Normal",
  36869. height: math.unit(10 + 3/12, "feet"),
  36870. default: true
  36871. },
  36872. ]
  36873. ))
  36874. characterMakers.push(() => makeCharacter(
  36875. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36876. {
  36877. front: {
  36878. height: math.unit(58, "feet"),
  36879. weight: math.unit(200, "tons"),
  36880. name: "Front",
  36881. image: {
  36882. source: "./media/characters/uzarmazari/front.svg",
  36883. extra: 1575/1455,
  36884. bottom: 152/1727
  36885. }
  36886. },
  36887. back: {
  36888. height: math.unit(58, "feet"),
  36889. weight: math.unit(200, "tons"),
  36890. name: "Back",
  36891. image: {
  36892. source: "./media/characters/uzarmazari/back.svg",
  36893. extra: 1585/1510,
  36894. bottom: 157/1742
  36895. }
  36896. },
  36897. head: {
  36898. height: math.unit(26, "feet"),
  36899. name: "Head",
  36900. image: {
  36901. source: "./media/characters/uzarmazari/head.svg"
  36902. }
  36903. },
  36904. },
  36905. [
  36906. {
  36907. name: "Normal",
  36908. height: math.unit(58, "feet"),
  36909. default: true
  36910. },
  36911. ]
  36912. ))
  36913. characterMakers.push(() => makeCharacter(
  36914. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36915. {
  36916. side: {
  36917. height: math.unit(15, "feet"),
  36918. name: "Side",
  36919. image: {
  36920. source: "./media/characters/akitu/side.svg",
  36921. extra: 1421/1321,
  36922. bottom: 157/1578
  36923. }
  36924. },
  36925. front: {
  36926. height: math.unit(15, "feet"),
  36927. name: "Front",
  36928. image: {
  36929. source: "./media/characters/akitu/front.svg",
  36930. extra: 1435/1326,
  36931. bottom: 232/1667
  36932. }
  36933. },
  36934. },
  36935. [
  36936. {
  36937. name: "Normal",
  36938. height: math.unit(15, "feet"),
  36939. default: true
  36940. },
  36941. ]
  36942. ))
  36943. characterMakers.push(() => makeCharacter(
  36944. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36945. {
  36946. front: {
  36947. height: math.unit(10 + 8/12, "feet"),
  36948. name: "Front",
  36949. image: {
  36950. source: "./media/characters/azalie-croixland/front.svg",
  36951. extra: 1972/1856,
  36952. bottom: 31/2003
  36953. }
  36954. },
  36955. },
  36956. [
  36957. {
  36958. name: "Original Height",
  36959. height: math.unit(5 + 4/12, "feet")
  36960. },
  36961. {
  36962. name: "Normal Height",
  36963. height: math.unit(10 + 8/12, "feet"),
  36964. default: true
  36965. },
  36966. ]
  36967. ))
  36968. characterMakers.push(() => makeCharacter(
  36969. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36970. {
  36971. side: {
  36972. height: math.unit(7 + 1/12, "feet"),
  36973. weight: math.unit(245, "lb"),
  36974. name: "Side",
  36975. image: {
  36976. source: "./media/characters/kavus-kazian/side.svg",
  36977. extra: 349/342,
  36978. bottom: 15/364
  36979. }
  36980. },
  36981. },
  36982. [
  36983. {
  36984. name: "Normal",
  36985. height: math.unit(7 + 1/12, "feet"),
  36986. default: true
  36987. },
  36988. ]
  36989. ))
  36990. characterMakers.push(() => makeCharacter(
  36991. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36992. {
  36993. normalFront: {
  36994. height: math.unit(5 + 11/12, "feet"),
  36995. name: "Front",
  36996. image: {
  36997. source: "./media/characters/moonlight-rose/normal-front.svg",
  36998. extra: 1980/1825,
  36999. bottom: 18/1998
  37000. },
  37001. form: "normal",
  37002. default: true
  37003. },
  37004. normalBack: {
  37005. height: math.unit(5 + 11/12, "feet"),
  37006. name: "Back",
  37007. image: {
  37008. source: "./media/characters/moonlight-rose/normal-back.svg",
  37009. extra: 2010/1839,
  37010. bottom: 10/2020
  37011. },
  37012. form: "normal"
  37013. },
  37014. demonFront: {
  37015. height: math.unit(1.5, "earths"),
  37016. name: "Front",
  37017. image: {
  37018. source: "./media/characters/moonlight-rose/demon.svg",
  37019. extra: 1400/1294,
  37020. bottom: 45/1445
  37021. },
  37022. form: "demon",
  37023. default: true
  37024. },
  37025. terraFront: {
  37026. height: math.unit(1.5, "earths"),
  37027. name: "Front",
  37028. image: {
  37029. source: "./media/characters/moonlight-rose/terra.svg"
  37030. },
  37031. form: "terra",
  37032. default: true
  37033. },
  37034. jupiterFront: {
  37035. height: math.unit(69911*2, "km"),
  37036. name: "Front",
  37037. image: {
  37038. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37039. extra: 1367/1286,
  37040. bottom: 55/1422
  37041. },
  37042. form: "jupiter",
  37043. default: true
  37044. },
  37045. neptuneFront: {
  37046. height: math.unit(24622*2, "feet"),
  37047. name: "Front",
  37048. image: {
  37049. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37050. extra: 1851/1712,
  37051. bottom: 0/1851
  37052. },
  37053. form: "neptune",
  37054. default: true
  37055. },
  37056. },
  37057. [
  37058. {
  37059. name: "\"Natural\" Height",
  37060. height: math.unit(5 + 11/12, "feet"),
  37061. form: "normal"
  37062. },
  37063. {
  37064. name: "Smallest comfortable size",
  37065. height: math.unit(40, "meters"),
  37066. form: "normal"
  37067. },
  37068. {
  37069. name: "Common size",
  37070. height: math.unit(50, "km"),
  37071. form: "normal",
  37072. default: true
  37073. },
  37074. {
  37075. name: "Normal",
  37076. height: math.unit(1.5, "earths"),
  37077. form: "demon",
  37078. default: true
  37079. },
  37080. {
  37081. name: "Universal",
  37082. height: math.unit(15, "universes"),
  37083. form: "demon"
  37084. },
  37085. {
  37086. name: "Earth",
  37087. height: math.unit(1.5, "earths"),
  37088. form: "terra",
  37089. default: true
  37090. },
  37091. {
  37092. name: "Super Earth",
  37093. height: math.unit(67.5, "earths"),
  37094. form: "terra"
  37095. },
  37096. {
  37097. name: "Doesn't fit in a solar system...",
  37098. height: math.unit(1, "galaxy"),
  37099. form: "terra"
  37100. },
  37101. {
  37102. name: "Saturn",
  37103. height: math.unit(58232*2, "km"),
  37104. form: "jupiter"
  37105. },
  37106. {
  37107. name: "Jupiter",
  37108. height: math.unit(69911*2, "km"),
  37109. form: "jupiter",
  37110. default: true
  37111. },
  37112. {
  37113. name: "HD 100546 b",
  37114. height: math.unit(482938, "km"),
  37115. form: "jupiter"
  37116. },
  37117. {
  37118. name: "Enceladus",
  37119. height: math.unit(513*2, "km"),
  37120. form: "neptune"
  37121. },
  37122. {
  37123. name: "Europe",
  37124. height: math.unit(1560*2, "km"),
  37125. form: "neptune"
  37126. },
  37127. {
  37128. name: "Neptune",
  37129. height: math.unit(24622*2, "km"),
  37130. form: "neptune",
  37131. default: true
  37132. },
  37133. {
  37134. name: "CoRoT-9b",
  37135. height: math.unit(75067*2, "km"),
  37136. form: "neptune"
  37137. },
  37138. ],
  37139. {
  37140. "normal": {
  37141. name: "Normal",
  37142. default: true
  37143. },
  37144. "demon": {
  37145. name: "Demon"
  37146. },
  37147. "terra": {
  37148. name: "Terra"
  37149. },
  37150. "jupiter": {
  37151. name: "Jupiter"
  37152. },
  37153. "neptune": {
  37154. name: "Neptune"
  37155. }
  37156. }
  37157. ))
  37158. characterMakers.push(() => makeCharacter(
  37159. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37160. {
  37161. front: {
  37162. height: math.unit(16, "feet"),
  37163. weight: math.unit(610, "kg"),
  37164. name: "Front",
  37165. image: {
  37166. source: "./media/characters/huckle/front.svg",
  37167. extra: 1731/1625,
  37168. bottom: 33/1764
  37169. }
  37170. },
  37171. back: {
  37172. height: math.unit(16, "feet"),
  37173. weight: math.unit(610, "kg"),
  37174. name: "Back",
  37175. image: {
  37176. source: "./media/characters/huckle/back.svg",
  37177. extra: 1738/1651,
  37178. bottom: 37/1775
  37179. }
  37180. },
  37181. laughing: {
  37182. height: math.unit(3.75, "feet"),
  37183. name: "Laughing",
  37184. image: {
  37185. source: "./media/characters/huckle/laughing.svg"
  37186. }
  37187. },
  37188. angry: {
  37189. height: math.unit(4.15, "feet"),
  37190. name: "Angry",
  37191. image: {
  37192. source: "./media/characters/huckle/angry.svg"
  37193. }
  37194. },
  37195. },
  37196. [
  37197. {
  37198. name: "Normal",
  37199. height: math.unit(16, "feet"),
  37200. default: true
  37201. },
  37202. {
  37203. name: "Mini Macro",
  37204. height: math.unit(463, "feet")
  37205. },
  37206. {
  37207. name: "Macro",
  37208. height: math.unit(1680, "meters")
  37209. },
  37210. {
  37211. name: "Mega Macro",
  37212. height: math.unit(175, "km")
  37213. },
  37214. {
  37215. name: "Terra Macro",
  37216. height: math.unit(32, "gigameters")
  37217. },
  37218. {
  37219. name: "Multiverse+",
  37220. height: math.unit(2.56e23, "yottameters")
  37221. },
  37222. ]
  37223. ))
  37224. characterMakers.push(() => makeCharacter(
  37225. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37226. {
  37227. front: {
  37228. height: math.unit(6 + 9/12, "feet"),
  37229. weight: math.unit(280, "lb"),
  37230. name: "Front",
  37231. image: {
  37232. source: "./media/characters/candy/front.svg",
  37233. extra: 234/217,
  37234. bottom: 11/245
  37235. }
  37236. },
  37237. },
  37238. [
  37239. {
  37240. name: "Really Small",
  37241. height: math.unit(0.1, "nm")
  37242. },
  37243. {
  37244. name: "Micro",
  37245. height: math.unit(2, "inches")
  37246. },
  37247. {
  37248. name: "Normal",
  37249. height: math.unit(6 + 9/12, "feet"),
  37250. default: true
  37251. },
  37252. {
  37253. name: "Small Macro",
  37254. height: math.unit(69, "feet")
  37255. },
  37256. {
  37257. name: "Macro",
  37258. height: math.unit(160, "feet")
  37259. },
  37260. {
  37261. name: "Megamacro",
  37262. height: math.unit(22000, "miles")
  37263. },
  37264. {
  37265. name: "Gigamacro",
  37266. height: math.unit(50000, "miles")
  37267. },
  37268. ]
  37269. ))
  37270. characterMakers.push(() => makeCharacter(
  37271. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37272. {
  37273. front: {
  37274. height: math.unit(4, "feet"),
  37275. weight: math.unit(90, "lb"),
  37276. name: "Front",
  37277. image: {
  37278. source: "./media/characters/joey-mcdonald/front.svg",
  37279. extra: 1059/852,
  37280. bottom: 33/1092
  37281. }
  37282. },
  37283. back: {
  37284. height: math.unit(4, "feet"),
  37285. weight: math.unit(90, "lb"),
  37286. name: "Back",
  37287. image: {
  37288. source: "./media/characters/joey-mcdonald/back.svg",
  37289. extra: 1077/879,
  37290. bottom: 5/1082
  37291. }
  37292. },
  37293. frontKobold: {
  37294. height: math.unit(4, "feet"),
  37295. weight: math.unit(100, "lb"),
  37296. name: "Front-kobold",
  37297. image: {
  37298. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37299. extra: 1480/1367,
  37300. bottom: 0/1480
  37301. }
  37302. },
  37303. backKobold: {
  37304. height: math.unit(4, "feet"),
  37305. weight: math.unit(100, "lb"),
  37306. name: "Back-kobold",
  37307. image: {
  37308. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37309. extra: 1449/1361,
  37310. bottom: 0/1449
  37311. }
  37312. },
  37313. },
  37314. [
  37315. {
  37316. name: "Normal",
  37317. height: math.unit(4, "feet"),
  37318. default: true
  37319. },
  37320. ]
  37321. ))
  37322. characterMakers.push(() => makeCharacter(
  37323. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37324. {
  37325. front: {
  37326. height: math.unit(12 + 6/12, "feet"),
  37327. name: "Front",
  37328. image: {
  37329. source: "./media/characters/kass-lockheed/front.svg",
  37330. extra: 354/343,
  37331. bottom: 9/363
  37332. }
  37333. },
  37334. back: {
  37335. height: math.unit(12 + 6/12, "feet"),
  37336. name: "Back",
  37337. image: {
  37338. source: "./media/characters/kass-lockheed/back.svg",
  37339. extra: 364/352,
  37340. bottom: 3/367
  37341. }
  37342. },
  37343. dick: {
  37344. height: math.unit(3.12, "feet"),
  37345. name: "Dick",
  37346. image: {
  37347. source: "./media/characters/kass-lockheed/dick.svg"
  37348. }
  37349. },
  37350. head: {
  37351. height: math.unit(2.6, "feet"),
  37352. name: "Head",
  37353. image: {
  37354. source: "./media/characters/kass-lockheed/head.svg"
  37355. }
  37356. },
  37357. bleh: {
  37358. height: math.unit(2.85, "feet"),
  37359. name: "Bleh",
  37360. image: {
  37361. source: "./media/characters/kass-lockheed/bleh.svg"
  37362. }
  37363. },
  37364. smug: {
  37365. height: math.unit(2.85, "feet"),
  37366. name: "Smug",
  37367. image: {
  37368. source: "./media/characters/kass-lockheed/smug.svg"
  37369. }
  37370. },
  37371. },
  37372. [
  37373. {
  37374. name: "Normal",
  37375. height: math.unit(12 + 6/12, "feet"),
  37376. default: true
  37377. },
  37378. ]
  37379. ))
  37380. characterMakers.push(() => makeCharacter(
  37381. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37382. {
  37383. front: {
  37384. height: math.unit(6 + 2/12, "feet"),
  37385. name: "Front",
  37386. image: {
  37387. source: "./media/characters/taylor/front.svg",
  37388. extra: 639/495,
  37389. bottom: 12/651
  37390. }
  37391. },
  37392. },
  37393. [
  37394. {
  37395. name: "Normal",
  37396. height: math.unit(6 + 2/12, "feet"),
  37397. default: true
  37398. },
  37399. {
  37400. name: "Big",
  37401. height: math.unit(15, "feet")
  37402. },
  37403. {
  37404. name: "Lorg",
  37405. height: math.unit(80, "feet")
  37406. },
  37407. {
  37408. name: "Too Lorg",
  37409. height: math.unit(120, "feet")
  37410. },
  37411. ]
  37412. ))
  37413. characterMakers.push(() => makeCharacter(
  37414. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37415. {
  37416. front: {
  37417. height: math.unit(15, "feet"),
  37418. name: "Front",
  37419. image: {
  37420. source: "./media/characters/kaizer/front.svg",
  37421. extra: 1612/1436,
  37422. bottom: 43/1655
  37423. }
  37424. },
  37425. },
  37426. [
  37427. {
  37428. name: "Normal",
  37429. height: math.unit(15, "feet"),
  37430. default: true
  37431. },
  37432. ]
  37433. ))
  37434. characterMakers.push(() => makeCharacter(
  37435. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37436. {
  37437. front: {
  37438. height: math.unit(2, "feet"),
  37439. weight: math.unit(30, "lb"),
  37440. name: "Front",
  37441. image: {
  37442. source: "./media/characters/sandy/front.svg",
  37443. extra: 1439/1307,
  37444. bottom: 194/1633
  37445. }
  37446. },
  37447. },
  37448. [
  37449. {
  37450. name: "Normal",
  37451. height: math.unit(2, "feet"),
  37452. default: true
  37453. },
  37454. ]
  37455. ))
  37456. characterMakers.push(() => makeCharacter(
  37457. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37458. {
  37459. front: {
  37460. height: math.unit(3, "feet"),
  37461. name: "Front",
  37462. image: {
  37463. source: "./media/characters/mellvi/front.svg",
  37464. extra: 1831/1630,
  37465. bottom: 58/1889
  37466. }
  37467. },
  37468. },
  37469. [
  37470. {
  37471. name: "Normal",
  37472. height: math.unit(3, "feet"),
  37473. default: true
  37474. },
  37475. ]
  37476. ))
  37477. characterMakers.push(() => makeCharacter(
  37478. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37479. {
  37480. front: {
  37481. height: math.unit(5 + 11/12, "feet"),
  37482. weight: math.unit(200, "lb"),
  37483. name: "Front",
  37484. image: {
  37485. source: "./media/characters/shirou/front.svg",
  37486. extra: 2491/2383,
  37487. bottom: 189/2680
  37488. }
  37489. },
  37490. back: {
  37491. height: math.unit(5 + 11/12, "feet"),
  37492. weight: math.unit(200, "lb"),
  37493. name: "Back",
  37494. image: {
  37495. source: "./media/characters/shirou/back.svg",
  37496. extra: 2554/2450,
  37497. bottom: 76/2630
  37498. }
  37499. },
  37500. },
  37501. [
  37502. {
  37503. name: "Normal",
  37504. height: math.unit(5 + 11/12, "feet"),
  37505. default: true
  37506. },
  37507. ]
  37508. ))
  37509. characterMakers.push(() => makeCharacter(
  37510. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37511. {
  37512. front: {
  37513. height: math.unit(6 + 3/12, "feet"),
  37514. weight: math.unit(177, "lb"),
  37515. name: "Front",
  37516. image: {
  37517. source: "./media/characters/noryu/front.svg",
  37518. extra: 973/885,
  37519. bottom: 10/983
  37520. }
  37521. },
  37522. },
  37523. [
  37524. {
  37525. name: "Normal",
  37526. height: math.unit(6 + 3/12, "feet"),
  37527. default: true
  37528. },
  37529. ]
  37530. ))
  37531. characterMakers.push(() => makeCharacter(
  37532. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37533. {
  37534. front: {
  37535. height: math.unit(5 + 6/12, "feet"),
  37536. weight: math.unit(170, "lb"),
  37537. name: "Front",
  37538. image: {
  37539. source: "./media/characters/mevolas-rubenido/front.svg",
  37540. extra: 2109/1901,
  37541. bottom: 96/2205
  37542. }
  37543. },
  37544. },
  37545. [
  37546. {
  37547. name: "Normal",
  37548. height: math.unit(5 + 6/12, "feet"),
  37549. default: true
  37550. },
  37551. ]
  37552. ))
  37553. characterMakers.push(() => makeCharacter(
  37554. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37555. {
  37556. front: {
  37557. height: math.unit(100, "feet"),
  37558. name: "Front",
  37559. image: {
  37560. source: "./media/characters/dee/front.svg",
  37561. extra: 2153/2036,
  37562. bottom: 59/2212
  37563. }
  37564. },
  37565. back: {
  37566. height: math.unit(100, "feet"),
  37567. name: "Back",
  37568. image: {
  37569. source: "./media/characters/dee/back.svg",
  37570. extra: 2183/2058,
  37571. bottom: 75/2258
  37572. }
  37573. },
  37574. foot: {
  37575. height: math.unit(19.43, "feet"),
  37576. name: "Foot",
  37577. image: {
  37578. source: "./media/characters/dee/foot.svg"
  37579. }
  37580. },
  37581. hoof: {
  37582. height: math.unit(20.6, "feet"),
  37583. name: "Hoof",
  37584. image: {
  37585. source: "./media/characters/dee/hoof.svg"
  37586. }
  37587. },
  37588. },
  37589. [
  37590. {
  37591. name: "Macro",
  37592. height: math.unit(100, "feet"),
  37593. default: true
  37594. },
  37595. ]
  37596. ))
  37597. characterMakers.push(() => makeCharacter(
  37598. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37599. {
  37600. front: {
  37601. height: math.unit(5 + 6/12, "feet"),
  37602. name: "Front",
  37603. image: {
  37604. source: "./media/characters/teh/front.svg",
  37605. extra: 1002/847,
  37606. bottom: 62/1064
  37607. }
  37608. },
  37609. },
  37610. [
  37611. {
  37612. name: "Normal",
  37613. height: math.unit(5 + 6/12, "feet"),
  37614. default: true
  37615. },
  37616. ]
  37617. ))
  37618. characterMakers.push(() => makeCharacter(
  37619. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37620. {
  37621. side: {
  37622. height: math.unit(6 + 1/12, "feet"),
  37623. weight: math.unit(204, "lb"),
  37624. name: "Side",
  37625. image: {
  37626. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37627. extra: 974/775,
  37628. bottom: 169/1143
  37629. }
  37630. },
  37631. sitting: {
  37632. height: math.unit(6 + 2/12, "feet"),
  37633. weight: math.unit(204, "lb"),
  37634. name: "Sitting",
  37635. image: {
  37636. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37637. extra: 1175/964,
  37638. bottom: 378/1553
  37639. }
  37640. },
  37641. },
  37642. [
  37643. {
  37644. name: "Normal",
  37645. height: math.unit(6 + 1/12, "feet"),
  37646. default: true
  37647. },
  37648. ]
  37649. ))
  37650. characterMakers.push(() => makeCharacter(
  37651. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37652. {
  37653. front: {
  37654. height: math.unit(6, "inches"),
  37655. name: "Front",
  37656. image: {
  37657. source: "./media/characters/tululi/front.svg",
  37658. extra: 1997/1876,
  37659. bottom: 20/2017
  37660. }
  37661. },
  37662. },
  37663. [
  37664. {
  37665. name: "Normal",
  37666. height: math.unit(6, "inches"),
  37667. default: true
  37668. },
  37669. ]
  37670. ))
  37671. characterMakers.push(() => makeCharacter(
  37672. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37673. {
  37674. front: {
  37675. height: math.unit(4 + 1/12, "feet"),
  37676. name: "Front",
  37677. image: {
  37678. source: "./media/characters/star/front.svg",
  37679. extra: 1493/1189,
  37680. bottom: 48/1541
  37681. }
  37682. },
  37683. },
  37684. [
  37685. {
  37686. name: "Normal",
  37687. height: math.unit(4 + 1/12, "feet"),
  37688. default: true
  37689. },
  37690. ]
  37691. ))
  37692. characterMakers.push(() => makeCharacter(
  37693. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37694. {
  37695. front: {
  37696. height: math.unit(6 + 3/12, "feet"),
  37697. name: "Front",
  37698. image: {
  37699. source: "./media/characters/comet/front.svg",
  37700. extra: 1681/1462,
  37701. bottom: 26/1707
  37702. }
  37703. },
  37704. },
  37705. [
  37706. {
  37707. name: "Normal",
  37708. height: math.unit(6 + 3/12, "feet"),
  37709. default: true
  37710. },
  37711. ]
  37712. ))
  37713. characterMakers.push(() => makeCharacter(
  37714. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37715. {
  37716. front: {
  37717. height: math.unit(950, "feet"),
  37718. name: "Front",
  37719. image: {
  37720. source: "./media/characters/vortex/front.svg",
  37721. extra: 1497/1434,
  37722. bottom: 56/1553
  37723. }
  37724. },
  37725. maw: {
  37726. height: math.unit(285, "feet"),
  37727. name: "Maw",
  37728. image: {
  37729. source: "./media/characters/vortex/maw.svg"
  37730. }
  37731. },
  37732. },
  37733. [
  37734. {
  37735. name: "Macro",
  37736. height: math.unit(950, "feet"),
  37737. default: true
  37738. },
  37739. ]
  37740. ))
  37741. characterMakers.push(() => makeCharacter(
  37742. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37743. {
  37744. front: {
  37745. height: math.unit(600, "feet"),
  37746. weight: math.unit(0.02, "grams"),
  37747. name: "Front",
  37748. image: {
  37749. source: "./media/characters/doodle/front.svg",
  37750. extra: 1578/1413,
  37751. bottom: 37/1615
  37752. }
  37753. },
  37754. },
  37755. [
  37756. {
  37757. name: "Macro",
  37758. height: math.unit(600, "feet"),
  37759. default: true
  37760. },
  37761. ]
  37762. ))
  37763. characterMakers.push(() => makeCharacter(
  37764. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37765. {
  37766. front: {
  37767. height: math.unit(6 + 6/12, "feet"),
  37768. name: "Front",
  37769. image: {
  37770. source: "./media/characters/jai/front.svg",
  37771. extra: 1645/1534,
  37772. bottom: 115/1760
  37773. }
  37774. },
  37775. },
  37776. [
  37777. {
  37778. name: "Normal",
  37779. height: math.unit(6 + 6/12, "feet"),
  37780. default: true
  37781. },
  37782. ]
  37783. ))
  37784. characterMakers.push(() => makeCharacter(
  37785. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37786. {
  37787. front: {
  37788. height: math.unit(6 + 8/12, "feet"),
  37789. name: "Front",
  37790. image: {
  37791. source: "./media/characters/pixel/front.svg",
  37792. extra: 1900/1735,
  37793. bottom: 63/1963
  37794. }
  37795. },
  37796. },
  37797. [
  37798. {
  37799. name: "Normal",
  37800. height: math.unit(6 + 8/12, "feet"),
  37801. default: true
  37802. },
  37803. ]
  37804. ))
  37805. characterMakers.push(() => makeCharacter(
  37806. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37807. {
  37808. back: {
  37809. height: math.unit(4 + 1/12, "feet"),
  37810. weight: math.unit(75, "lb"),
  37811. name: "Back",
  37812. image: {
  37813. source: "./media/characters/rhett/back.svg",
  37814. extra: 930/878,
  37815. bottom: 25/955
  37816. }
  37817. },
  37818. front: {
  37819. height: math.unit(4 + 1/12, "feet"),
  37820. weight: math.unit(75, "lb"),
  37821. name: "Front",
  37822. image: {
  37823. source: "./media/characters/rhett/front.svg",
  37824. extra: 1682/1586,
  37825. bottom: 92/1774
  37826. }
  37827. },
  37828. },
  37829. [
  37830. {
  37831. name: "Micro",
  37832. height: math.unit(8, "inches")
  37833. },
  37834. {
  37835. name: "Tiny",
  37836. height: math.unit(2, "feet")
  37837. },
  37838. {
  37839. name: "Normal",
  37840. height: math.unit(4 + 1/12, "feet"),
  37841. default: true
  37842. },
  37843. ]
  37844. ))
  37845. characterMakers.push(() => makeCharacter(
  37846. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37847. {
  37848. front: {
  37849. height: math.unit(3 + 3/12, "feet"),
  37850. name: "Front",
  37851. image: {
  37852. source: "./media/characters/penny/front.svg",
  37853. extra: 1406/1311,
  37854. bottom: 26/1432
  37855. }
  37856. },
  37857. },
  37858. [
  37859. {
  37860. name: "Normal",
  37861. height: math.unit(3 + 3/12, "feet"),
  37862. default: true
  37863. },
  37864. ]
  37865. ))
  37866. characterMakers.push(() => makeCharacter(
  37867. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37868. {
  37869. front: {
  37870. height: math.unit(4 + 11/12, "feet"),
  37871. name: "Front",
  37872. image: {
  37873. source: "./media/characters/monty/front.svg",
  37874. extra: 1479/1209,
  37875. bottom: 0/1479
  37876. }
  37877. },
  37878. },
  37879. [
  37880. {
  37881. name: "Normal",
  37882. height: math.unit(4 + 11/12, "feet"),
  37883. default: true
  37884. },
  37885. ]
  37886. ))
  37887. characterMakers.push(() => makeCharacter(
  37888. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37889. {
  37890. front: {
  37891. height: math.unit(8 + 4/12, "feet"),
  37892. name: "Front",
  37893. image: {
  37894. source: "./media/characters/sterling/front.svg",
  37895. extra: 1420/1236,
  37896. bottom: 27/1447
  37897. }
  37898. },
  37899. },
  37900. [
  37901. {
  37902. name: "Normal",
  37903. height: math.unit(8 + 4/12, "feet"),
  37904. default: true
  37905. },
  37906. ]
  37907. ))
  37908. characterMakers.push(() => makeCharacter(
  37909. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37910. {
  37911. front: {
  37912. height: math.unit(15, "feet"),
  37913. name: "Front",
  37914. image: {
  37915. source: "./media/characters/marble/front.svg",
  37916. extra: 973/937,
  37917. bottom: 32/1005
  37918. }
  37919. },
  37920. },
  37921. [
  37922. {
  37923. name: "Normal",
  37924. height: math.unit(15, "feet"),
  37925. default: true
  37926. },
  37927. ]
  37928. ))
  37929. characterMakers.push(() => makeCharacter(
  37930. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37931. {
  37932. front: {
  37933. height: math.unit(3, "inches"),
  37934. name: "Front",
  37935. image: {
  37936. source: "./media/characters/powder/front.svg",
  37937. extra: 1504/1334,
  37938. bottom: 518/2022
  37939. }
  37940. },
  37941. },
  37942. [
  37943. {
  37944. name: "Normal",
  37945. height: math.unit(3, "inches"),
  37946. default: true
  37947. },
  37948. ]
  37949. ))
  37950. characterMakers.push(() => makeCharacter(
  37951. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37952. {
  37953. front: {
  37954. height: math.unit(4 + 5/12, "feet"),
  37955. name: "Front",
  37956. image: {
  37957. source: "./media/characters/joey-raccoon/front.svg",
  37958. extra: 1273/1197,
  37959. bottom: 0/1273
  37960. }
  37961. },
  37962. },
  37963. [
  37964. {
  37965. name: "Normal",
  37966. height: math.unit(4 + 5/12, "feet"),
  37967. default: true
  37968. },
  37969. ]
  37970. ))
  37971. characterMakers.push(() => makeCharacter(
  37972. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37973. {
  37974. front: {
  37975. height: math.unit(8 + 4/12, "feet"),
  37976. name: "Front",
  37977. image: {
  37978. source: "./media/characters/vick/front.svg",
  37979. extra: 2187/2118,
  37980. bottom: 47/2234
  37981. }
  37982. },
  37983. },
  37984. [
  37985. {
  37986. name: "Normal",
  37987. height: math.unit(8 + 4/12, "feet"),
  37988. default: true
  37989. },
  37990. ]
  37991. ))
  37992. characterMakers.push(() => makeCharacter(
  37993. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37994. {
  37995. front: {
  37996. height: math.unit(5 + 5/12, "feet"),
  37997. name: "Front",
  37998. image: {
  37999. source: "./media/characters/mitsy/front.svg",
  38000. extra: 1842/1695,
  38001. bottom: 0/1842
  38002. }
  38003. },
  38004. },
  38005. [
  38006. {
  38007. name: "Normal",
  38008. height: math.unit(5 + 5/12, "feet"),
  38009. default: true
  38010. },
  38011. ]
  38012. ))
  38013. characterMakers.push(() => makeCharacter(
  38014. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38015. {
  38016. front: {
  38017. height: math.unit(6 + 3/12, "feet"),
  38018. name: "Front",
  38019. image: {
  38020. source: "./media/characters/silvy/front.svg",
  38021. extra: 1995/1836,
  38022. bottom: 225/2220
  38023. }
  38024. },
  38025. },
  38026. [
  38027. {
  38028. name: "Normal",
  38029. height: math.unit(6 + 3/12, "feet"),
  38030. default: true
  38031. },
  38032. ]
  38033. ))
  38034. characterMakers.push(() => makeCharacter(
  38035. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38036. {
  38037. front: {
  38038. height: math.unit(3 + 8/12, "feet"),
  38039. name: "Front",
  38040. image: {
  38041. source: "./media/characters/rodney/front.svg",
  38042. extra: 1956/1747,
  38043. bottom: 31/1987
  38044. }
  38045. },
  38046. frontDressed: {
  38047. height: math.unit(2.9, "feet"),
  38048. name: "Front (Dressed)",
  38049. image: {
  38050. source: "./media/characters/rodney/front-dressed.svg",
  38051. extra: 1382/1241,
  38052. bottom: 385/1767
  38053. }
  38054. },
  38055. },
  38056. [
  38057. {
  38058. name: "Normal",
  38059. height: math.unit(3 + 8/12, "feet"),
  38060. default: true
  38061. },
  38062. ]
  38063. ))
  38064. characterMakers.push(() => makeCharacter(
  38065. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38066. {
  38067. front: {
  38068. height: math.unit(5 + 9/12, "feet"),
  38069. weight: math.unit(194, "lbs"),
  38070. name: "Front",
  38071. image: {
  38072. source: "./media/characters/zakail-sudekai/front.svg",
  38073. extra: 2696/2533,
  38074. bottom: 248/2944
  38075. }
  38076. },
  38077. maw: {
  38078. height: math.unit(1.35, "feet"),
  38079. name: "Maw",
  38080. image: {
  38081. source: "./media/characters/zakail-sudekai/maw.svg"
  38082. }
  38083. },
  38084. },
  38085. [
  38086. {
  38087. name: "Normal",
  38088. height: math.unit(5 + 9/12, "feet"),
  38089. default: true
  38090. },
  38091. ]
  38092. ))
  38093. characterMakers.push(() => makeCharacter(
  38094. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38095. {
  38096. front: {
  38097. height: math.unit(8 + 4/12, "feet"),
  38098. weight: math.unit(1200, "lb"),
  38099. name: "Front",
  38100. image: {
  38101. source: "./media/characters/eleanor/front.svg",
  38102. extra: 1226/1192,
  38103. bottom: 52/1278
  38104. }
  38105. },
  38106. back: {
  38107. height: math.unit(8 + 4/12, "feet"),
  38108. weight: math.unit(1200, "lb"),
  38109. name: "Back",
  38110. image: {
  38111. source: "./media/characters/eleanor/back.svg",
  38112. extra: 1242/1184,
  38113. bottom: 60/1302
  38114. }
  38115. },
  38116. head: {
  38117. height: math.unit(2.62, "feet"),
  38118. name: "Head",
  38119. image: {
  38120. source: "./media/characters/eleanor/head.svg"
  38121. }
  38122. },
  38123. },
  38124. [
  38125. {
  38126. name: "Normal",
  38127. height: math.unit(8 + 4/12, "feet"),
  38128. default: true
  38129. },
  38130. ]
  38131. ))
  38132. characterMakers.push(() => makeCharacter(
  38133. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38134. {
  38135. front: {
  38136. height: math.unit(8 + 4/12, "feet"),
  38137. weight: math.unit(750, "lb"),
  38138. name: "Front",
  38139. image: {
  38140. source: "./media/characters/tanya/front.svg",
  38141. extra: 1749/1615,
  38142. bottom: 33/1782
  38143. }
  38144. },
  38145. },
  38146. [
  38147. {
  38148. name: "Normal",
  38149. height: math.unit(8 + 4/12, "feet"),
  38150. default: true
  38151. },
  38152. ]
  38153. ))
  38154. characterMakers.push(() => makeCharacter(
  38155. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38156. {
  38157. front: {
  38158. height: math.unit(5, "feet"),
  38159. weight: math.unit(225, "lb"),
  38160. name: "Front",
  38161. image: {
  38162. source: "./media/characters/cindy/front.svg",
  38163. extra: 1320/1250,
  38164. bottom: 42/1362
  38165. }
  38166. },
  38167. frontDressed: {
  38168. height: math.unit(5, "feet"),
  38169. weight: math.unit(225, "lb"),
  38170. name: "Front (Dressed)",
  38171. image: {
  38172. source: "./media/characters/cindy/front-dressed.svg",
  38173. extra: 1320/1250,
  38174. bottom: 42/1362
  38175. }
  38176. },
  38177. back: {
  38178. height: math.unit(5, "feet"),
  38179. weight: math.unit(225, "lb"),
  38180. name: "Back",
  38181. image: {
  38182. source: "./media/characters/cindy/back.svg",
  38183. extra: 1384/1346,
  38184. bottom: 14/1398
  38185. }
  38186. },
  38187. },
  38188. [
  38189. {
  38190. name: "Normal",
  38191. height: math.unit(5, "feet"),
  38192. default: true
  38193. },
  38194. ]
  38195. ))
  38196. characterMakers.push(() => makeCharacter(
  38197. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38198. {
  38199. front: {
  38200. height: math.unit(6 + 9/12, "feet"),
  38201. weight: math.unit(440, "lb"),
  38202. name: "Front",
  38203. image: {
  38204. source: "./media/characters/wilbur-owen/front.svg",
  38205. extra: 1575/1448,
  38206. bottom: 72/1647
  38207. }
  38208. },
  38209. back: {
  38210. height: math.unit(6 + 9/12, "feet"),
  38211. weight: math.unit(440, "lb"),
  38212. name: "Back",
  38213. image: {
  38214. source: "./media/characters/wilbur-owen/back.svg",
  38215. extra: 1578/1445,
  38216. bottom: 36/1614
  38217. }
  38218. },
  38219. },
  38220. [
  38221. {
  38222. name: "Normal",
  38223. height: math.unit(6 + 9/12, "feet"),
  38224. default: true
  38225. },
  38226. ]
  38227. ))
  38228. characterMakers.push(() => makeCharacter(
  38229. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38230. {
  38231. front: {
  38232. height: math.unit(6 + 5/12, "feet"),
  38233. weight: math.unit(650, "lb"),
  38234. name: "Front",
  38235. image: {
  38236. source: "./media/characters/keegan/front.svg",
  38237. extra: 2387/2198,
  38238. bottom: 33/2420
  38239. }
  38240. },
  38241. side: {
  38242. height: math.unit(6 + 5/12, "feet"),
  38243. weight: math.unit(650, "lb"),
  38244. name: "Side",
  38245. image: {
  38246. source: "./media/characters/keegan/side.svg",
  38247. extra: 2390/2202,
  38248. bottom: 47/2437
  38249. }
  38250. },
  38251. back: {
  38252. height: math.unit(6 + 5/12, "feet"),
  38253. weight: math.unit(650, "lb"),
  38254. name: "Back",
  38255. image: {
  38256. source: "./media/characters/keegan/back.svg",
  38257. extra: 2418/2268,
  38258. bottom: 15/2433
  38259. }
  38260. },
  38261. frontSfw: {
  38262. height: math.unit(6 + 5/12, "feet"),
  38263. weight: math.unit(650, "lb"),
  38264. name: "Front (SFW)",
  38265. image: {
  38266. source: "./media/characters/keegan/front-sfw.svg",
  38267. extra: 2387/2198,
  38268. bottom: 33/2420
  38269. }
  38270. },
  38271. beans: {
  38272. height: math.unit(1.85, "feet"),
  38273. name: "Beans",
  38274. image: {
  38275. source: "./media/characters/keegan/beans.svg"
  38276. }
  38277. },
  38278. },
  38279. [
  38280. {
  38281. name: "Normal",
  38282. height: math.unit(6 + 5/12, "feet"),
  38283. default: true
  38284. },
  38285. ]
  38286. ))
  38287. characterMakers.push(() => makeCharacter(
  38288. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38289. {
  38290. front: {
  38291. height: math.unit(9, "feet"),
  38292. name: "Front",
  38293. image: {
  38294. source: "./media/characters/colton/front.svg",
  38295. extra: 1589/1326,
  38296. bottom: 139/1728
  38297. }
  38298. },
  38299. },
  38300. [
  38301. {
  38302. name: "Normal",
  38303. height: math.unit(9, "feet"),
  38304. default: true
  38305. },
  38306. ]
  38307. ))
  38308. characterMakers.push(() => makeCharacter(
  38309. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38310. {
  38311. front: {
  38312. height: math.unit(2 + 9/12, "feet"),
  38313. name: "Front",
  38314. image: {
  38315. source: "./media/characters/bora/front.svg",
  38316. extra: 1265/1250,
  38317. bottom: 24/1289
  38318. }
  38319. },
  38320. },
  38321. [
  38322. {
  38323. name: "Normal",
  38324. height: math.unit(2 + 9/12, "feet"),
  38325. default: true
  38326. },
  38327. ]
  38328. ))
  38329. characterMakers.push(() => makeCharacter(
  38330. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38331. {
  38332. front: {
  38333. height: math.unit(8, "feet"),
  38334. name: "Front",
  38335. image: {
  38336. source: "./media/characters/myu-myu/front.svg",
  38337. extra: 1949/1857,
  38338. bottom: 90/2039
  38339. }
  38340. },
  38341. },
  38342. [
  38343. {
  38344. name: "Normal",
  38345. height: math.unit(8, "feet"),
  38346. default: true
  38347. },
  38348. {
  38349. name: "Big",
  38350. height: math.unit(15, "feet")
  38351. },
  38352. {
  38353. name: "BIG",
  38354. height: math.unit(25, "feet")
  38355. },
  38356. ]
  38357. ))
  38358. characterMakers.push(() => makeCharacter(
  38359. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38360. {
  38361. side: {
  38362. height: math.unit(7 + 5/12, "feet"),
  38363. weight: math.unit(2800, "lb"),
  38364. name: "Side",
  38365. image: {
  38366. source: "./media/characters/haloren/side.svg",
  38367. extra: 1793/409,
  38368. bottom: 59/1852
  38369. }
  38370. },
  38371. frontPaw: {
  38372. height: math.unit(2.36, "feet"),
  38373. name: "Front paw",
  38374. image: {
  38375. source: "./media/characters/haloren/front-paw.svg"
  38376. }
  38377. },
  38378. hindPaw: {
  38379. height: math.unit(3.18, "feet"),
  38380. name: "Hind paw",
  38381. image: {
  38382. source: "./media/characters/haloren/hind-paw.svg"
  38383. }
  38384. },
  38385. maw: {
  38386. height: math.unit(5.05, "feet"),
  38387. name: "Maw",
  38388. image: {
  38389. source: "./media/characters/haloren/maw.svg"
  38390. }
  38391. },
  38392. dick: {
  38393. height: math.unit(2.90, "feet"),
  38394. name: "Dick",
  38395. image: {
  38396. source: "./media/characters/haloren/dick.svg"
  38397. }
  38398. },
  38399. },
  38400. [
  38401. {
  38402. name: "Normal",
  38403. height: math.unit(7 + 5/12, "feet"),
  38404. default: true
  38405. },
  38406. {
  38407. name: "Enhanced",
  38408. height: math.unit(14 + 3/12, "feet")
  38409. },
  38410. ]
  38411. ))
  38412. characterMakers.push(() => makeCharacter(
  38413. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38414. {
  38415. front: {
  38416. height: math.unit(171, "cm"),
  38417. name: "Front",
  38418. image: {
  38419. source: "./media/characters/kimmy/front.svg",
  38420. extra: 1491/1435,
  38421. bottom: 53/1544
  38422. }
  38423. },
  38424. },
  38425. [
  38426. {
  38427. name: "Small",
  38428. height: math.unit(9, "cm")
  38429. },
  38430. {
  38431. name: "Normal",
  38432. height: math.unit(171, "cm"),
  38433. default: true
  38434. },
  38435. ]
  38436. ))
  38437. characterMakers.push(() => makeCharacter(
  38438. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38439. {
  38440. front: {
  38441. height: math.unit(8, "feet"),
  38442. weight: math.unit(300, "lb"),
  38443. name: "Front",
  38444. image: {
  38445. source: "./media/characters/galeboomer/front.svg",
  38446. extra: 4651/4415,
  38447. bottom: 162/4813
  38448. }
  38449. },
  38450. back: {
  38451. height: math.unit(8, "feet"),
  38452. weight: math.unit(300, "lb"),
  38453. name: "Back",
  38454. image: {
  38455. source: "./media/characters/galeboomer/back.svg",
  38456. extra: 4544/4314,
  38457. bottom: 16/4560
  38458. }
  38459. },
  38460. frontAlt: {
  38461. height: math.unit(8, "feet"),
  38462. weight: math.unit(300, "lb"),
  38463. name: "Front (Alt)",
  38464. image: {
  38465. source: "./media/characters/galeboomer/front-alt.svg",
  38466. extra: 4458/4228,
  38467. bottom: 68/4526
  38468. }
  38469. },
  38470. maw: {
  38471. height: math.unit(1.2, "feet"),
  38472. name: "Maw",
  38473. image: {
  38474. source: "./media/characters/galeboomer/maw.svg"
  38475. }
  38476. },
  38477. },
  38478. [
  38479. {
  38480. name: "Normal",
  38481. height: math.unit(8, "feet"),
  38482. default: true
  38483. },
  38484. ]
  38485. ))
  38486. characterMakers.push(() => makeCharacter(
  38487. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38488. {
  38489. front: {
  38490. height: math.unit(5 + 9/12, "feet"),
  38491. weight: math.unit(120, "lb"),
  38492. name: "Front",
  38493. image: {
  38494. source: "./media/characters/chyr/front.svg",
  38495. extra: 1323/1254,
  38496. bottom: 63/1386
  38497. }
  38498. },
  38499. back: {
  38500. height: math.unit(5 + 9/12, "feet"),
  38501. weight: math.unit(120, "lb"),
  38502. name: "Back",
  38503. image: {
  38504. source: "./media/characters/chyr/back.svg",
  38505. extra: 1323/1252,
  38506. bottom: 48/1371
  38507. }
  38508. },
  38509. },
  38510. [
  38511. {
  38512. name: "Normal",
  38513. height: math.unit(5 + 9/12, "feet"),
  38514. default: true
  38515. },
  38516. ]
  38517. ))
  38518. characterMakers.push(() => makeCharacter(
  38519. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38520. {
  38521. front: {
  38522. height: math.unit(7, "feet"),
  38523. weight: math.unit(310, "lb"),
  38524. name: "Front",
  38525. image: {
  38526. source: "./media/characters/solarus/front.svg",
  38527. extra: 2415/2021,
  38528. bottom: 103/2518
  38529. }
  38530. },
  38531. back: {
  38532. height: math.unit(7, "feet"),
  38533. weight: math.unit(310, "lb"),
  38534. name: "Back",
  38535. image: {
  38536. source: "./media/characters/solarus/back.svg",
  38537. extra: 2463/2089,
  38538. bottom: 79/2542
  38539. }
  38540. },
  38541. },
  38542. [
  38543. {
  38544. name: "Normal",
  38545. height: math.unit(7, "feet"),
  38546. default: true
  38547. },
  38548. ]
  38549. ))
  38550. characterMakers.push(() => makeCharacter(
  38551. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38552. {
  38553. front: {
  38554. height: math.unit(16, "feet"),
  38555. name: "Front",
  38556. image: {
  38557. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38558. extra: 1844/1780,
  38559. bottom: 58/1902
  38560. }
  38561. },
  38562. winterCoat: {
  38563. height: math.unit(16, "feet"),
  38564. name: "Winter Coat",
  38565. image: {
  38566. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38567. extra: 1807/1775,
  38568. bottom: 69/1876
  38569. }
  38570. },
  38571. },
  38572. [
  38573. {
  38574. name: "Normal",
  38575. height: math.unit(16, "feet"),
  38576. default: true
  38577. },
  38578. {
  38579. name: "Chicago Size",
  38580. height: math.unit(560, "feet")
  38581. },
  38582. ]
  38583. ))
  38584. characterMakers.push(() => makeCharacter(
  38585. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38586. {
  38587. front: {
  38588. height: math.unit(11 + 6/12, "feet"),
  38589. weight: math.unit(1366, "lb"),
  38590. name: "Front",
  38591. image: {
  38592. source: "./media/characters/lexor/front.svg",
  38593. extra: 1560/1481,
  38594. bottom: 211/1771
  38595. }
  38596. },
  38597. back: {
  38598. height: math.unit(11 + 6/12, "feet"),
  38599. weight: math.unit(1366, "lb"),
  38600. name: "Back",
  38601. image: {
  38602. source: "./media/characters/lexor/back.svg",
  38603. extra: 1614/1533,
  38604. bottom: 76/1690
  38605. }
  38606. },
  38607. maw: {
  38608. height: math.unit(3, "feet"),
  38609. name: "Maw",
  38610. image: {
  38611. source: "./media/characters/lexor/maw.svg"
  38612. }
  38613. },
  38614. dick: {
  38615. height: math.unit(2.59, "feet"),
  38616. name: "Dick",
  38617. image: {
  38618. source: "./media/characters/lexor/dick.svg"
  38619. }
  38620. },
  38621. },
  38622. [
  38623. {
  38624. name: "Normal",
  38625. height: math.unit(11 + 6/12, "feet"),
  38626. default: true
  38627. },
  38628. ]
  38629. ))
  38630. characterMakers.push(() => makeCharacter(
  38631. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38632. {
  38633. front: {
  38634. height: math.unit(5 + 8/12, "feet"),
  38635. name: "Front",
  38636. image: {
  38637. source: "./media/characters/magnum/front.svg",
  38638. extra: 942/855,
  38639. bottom: 26/968
  38640. }
  38641. },
  38642. },
  38643. [
  38644. {
  38645. name: "Normal",
  38646. height: math.unit(5 + 8/12, "feet"),
  38647. default: true
  38648. },
  38649. ]
  38650. ))
  38651. characterMakers.push(() => makeCharacter(
  38652. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38653. {
  38654. front: {
  38655. height: math.unit(18 + 4/12, "feet"),
  38656. weight: math.unit(1500, "kg"),
  38657. name: "Front",
  38658. image: {
  38659. source: "./media/characters/solas-sharpsman/front.svg",
  38660. extra: 1698/1589,
  38661. bottom: 0/1698
  38662. }
  38663. },
  38664. },
  38665. [
  38666. {
  38667. name: "Normal",
  38668. height: math.unit(18 + 4/12, "feet"),
  38669. default: true
  38670. },
  38671. ]
  38672. ))
  38673. characterMakers.push(() => makeCharacter(
  38674. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38675. {
  38676. front: {
  38677. height: math.unit(5 + 5/12, "feet"),
  38678. weight: math.unit(180, "lb"),
  38679. name: "Front",
  38680. image: {
  38681. source: "./media/characters/october/front.svg",
  38682. extra: 1800/1650,
  38683. bottom: 0/1800
  38684. }
  38685. },
  38686. frontNsfw: {
  38687. height: math.unit(5 + 5/12, "feet"),
  38688. weight: math.unit(180, "lb"),
  38689. name: "Front (NSFW)",
  38690. image: {
  38691. source: "./media/characters/october/front-nsfw.svg",
  38692. extra: 1392/1307,
  38693. bottom: 42/1434
  38694. }
  38695. },
  38696. },
  38697. [
  38698. {
  38699. name: "Normal",
  38700. height: math.unit(5 + 5/12, "feet"),
  38701. default: true
  38702. },
  38703. ]
  38704. ))
  38705. characterMakers.push(() => makeCharacter(
  38706. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38707. {
  38708. front: {
  38709. height: math.unit(8 + 6/12, "feet"),
  38710. name: "Front",
  38711. image: {
  38712. source: "./media/characters/essynkardi/front.svg",
  38713. extra: 1914/1846,
  38714. bottom: 22/1936
  38715. }
  38716. },
  38717. },
  38718. [
  38719. {
  38720. name: "Normal",
  38721. height: math.unit(8 + 6/12, "feet"),
  38722. default: true
  38723. },
  38724. ]
  38725. ))
  38726. characterMakers.push(() => makeCharacter(
  38727. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38728. {
  38729. front: {
  38730. height: math.unit(6 + 6/12, "feet"),
  38731. weight: math.unit(7, "lb"),
  38732. name: "Front",
  38733. image: {
  38734. source: "./media/characters/icky/front.svg",
  38735. extra: 813/782,
  38736. bottom: 66/879
  38737. }
  38738. },
  38739. back: {
  38740. height: math.unit(6 + 6/12, "feet"),
  38741. weight: math.unit(7, "lb"),
  38742. name: "Back",
  38743. image: {
  38744. source: "./media/characters/icky/back.svg",
  38745. extra: 754/735,
  38746. bottom: 56/810
  38747. }
  38748. },
  38749. },
  38750. [
  38751. {
  38752. name: "Normal",
  38753. height: math.unit(6 + 6/12, "feet"),
  38754. default: true
  38755. },
  38756. ]
  38757. ))
  38758. characterMakers.push(() => makeCharacter(
  38759. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38760. {
  38761. front: {
  38762. height: math.unit(15, "feet"),
  38763. name: "Front",
  38764. image: {
  38765. source: "./media/characters/rojas/front.svg",
  38766. extra: 1462/1408,
  38767. bottom: 95/1557
  38768. }
  38769. },
  38770. back: {
  38771. height: math.unit(15, "feet"),
  38772. name: "Back",
  38773. image: {
  38774. source: "./media/characters/rojas/back.svg",
  38775. extra: 1023/954,
  38776. bottom: 28/1051
  38777. }
  38778. },
  38779. },
  38780. [
  38781. {
  38782. name: "Normal",
  38783. height: math.unit(15, "feet"),
  38784. default: true
  38785. },
  38786. ]
  38787. ))
  38788. characterMakers.push(() => makeCharacter(
  38789. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38790. {
  38791. frontHuman: {
  38792. height: math.unit(5 + 7/12, "feet"),
  38793. name: "Front (Human)",
  38794. image: {
  38795. source: "./media/characters/alek-dryagan/front-human.svg",
  38796. extra: 1687/1667,
  38797. bottom: 69/1756
  38798. }
  38799. },
  38800. backHuman: {
  38801. height: math.unit(5 + 7/12, "feet"),
  38802. name: "Back (Human)",
  38803. image: {
  38804. source: "./media/characters/alek-dryagan/back-human.svg",
  38805. extra: 1670/1649,
  38806. bottom: 65/1735
  38807. }
  38808. },
  38809. frontDemi: {
  38810. height: math.unit(65, "feet"),
  38811. name: "Front (Demi)",
  38812. image: {
  38813. source: "./media/characters/alek-dryagan/front-demi.svg",
  38814. extra: 1669/1642,
  38815. bottom: 49/1718
  38816. }
  38817. },
  38818. backDemi: {
  38819. height: math.unit(65, "feet"),
  38820. name: "Back (Demi)",
  38821. image: {
  38822. source: "./media/characters/alek-dryagan/back-demi.svg",
  38823. extra: 1658/1637,
  38824. bottom: 40/1698
  38825. }
  38826. },
  38827. mawHuman: {
  38828. height: math.unit(0.3, "feet"),
  38829. name: "Maw (Human)",
  38830. image: {
  38831. source: "./media/characters/alek-dryagan/maw-human.svg"
  38832. }
  38833. },
  38834. mawDemi: {
  38835. height: math.unit(3.8, "feet"),
  38836. name: "Maw (Demi)",
  38837. image: {
  38838. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38839. }
  38840. },
  38841. },
  38842. [
  38843. {
  38844. name: "Normal",
  38845. height: math.unit(5 + 7/12, "feet"),
  38846. default: true
  38847. },
  38848. ]
  38849. ))
  38850. characterMakers.push(() => makeCharacter(
  38851. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38852. {
  38853. frontHuman: {
  38854. height: math.unit(5 + 2/12, "feet"),
  38855. name: "Front (Human)",
  38856. image: {
  38857. source: "./media/characters/gen/front-human.svg",
  38858. extra: 1627/1538,
  38859. bottom: 71/1698
  38860. }
  38861. },
  38862. backHuman: {
  38863. height: math.unit(5 + 2/12, "feet"),
  38864. name: "Back (Human)",
  38865. image: {
  38866. source: "./media/characters/gen/back-human.svg",
  38867. extra: 1638/1548,
  38868. bottom: 69/1707
  38869. }
  38870. },
  38871. frontDemi: {
  38872. height: math.unit(5 + 2/12, "feet"),
  38873. name: "Front (Demi)",
  38874. image: {
  38875. source: "./media/characters/gen/front-demi.svg",
  38876. extra: 1627/1538,
  38877. bottom: 71/1698
  38878. }
  38879. },
  38880. backDemi: {
  38881. height: math.unit(5 + 2/12, "feet"),
  38882. name: "Back (Demi)",
  38883. image: {
  38884. source: "./media/characters/gen/back-demi.svg",
  38885. extra: 1638/1548,
  38886. bottom: 69/1707
  38887. }
  38888. },
  38889. },
  38890. [
  38891. {
  38892. name: "Normal",
  38893. height: math.unit(5 + 2/12, "feet"),
  38894. default: true
  38895. },
  38896. ]
  38897. ))
  38898. characterMakers.push(() => makeCharacter(
  38899. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38900. {
  38901. frontImp: {
  38902. height: math.unit(1 + 11/12, "feet"),
  38903. name: "Front (Imp)",
  38904. image: {
  38905. source: "./media/characters/max-kobold/front-imp.svg",
  38906. extra: 1238/1134,
  38907. bottom: 81/1319
  38908. }
  38909. },
  38910. backImp: {
  38911. height: math.unit(1 + 11/12, "feet"),
  38912. name: "Back (Imp)",
  38913. image: {
  38914. source: "./media/characters/max-kobold/back-imp.svg",
  38915. extra: 1334/1175,
  38916. bottom: 34/1368
  38917. }
  38918. },
  38919. frontDemi: {
  38920. height: math.unit(5 + 9/12, "feet"),
  38921. name: "Front (Demi)",
  38922. image: {
  38923. source: "./media/characters/max-kobold/front-demi.svg",
  38924. extra: 1715/1685,
  38925. bottom: 54/1769
  38926. }
  38927. },
  38928. backDemi: {
  38929. height: math.unit(5 + 9/12, "feet"),
  38930. name: "Back (Demi)",
  38931. image: {
  38932. source: "./media/characters/max-kobold/back-demi.svg",
  38933. extra: 1752/1729,
  38934. bottom: 41/1793
  38935. }
  38936. },
  38937. handImp: {
  38938. height: math.unit(0.45, "feet"),
  38939. name: "Hand (Imp)",
  38940. image: {
  38941. source: "./media/characters/max-kobold/hand.svg"
  38942. }
  38943. },
  38944. pawImp: {
  38945. height: math.unit(0.46, "feet"),
  38946. name: "Paw (Imp)",
  38947. image: {
  38948. source: "./media/characters/max-kobold/paw.svg"
  38949. }
  38950. },
  38951. handDemi: {
  38952. height: math.unit(0.80, "feet"),
  38953. name: "Hand (Demi)",
  38954. image: {
  38955. source: "./media/characters/max-kobold/hand.svg"
  38956. }
  38957. },
  38958. pawDemi: {
  38959. height: math.unit(1.1, "feet"),
  38960. name: "Paw (Demi)",
  38961. image: {
  38962. source: "./media/characters/max-kobold/paw.svg"
  38963. }
  38964. },
  38965. headImp: {
  38966. height: math.unit(1.33, "feet"),
  38967. name: "Head (Imp)",
  38968. image: {
  38969. source: "./media/characters/max-kobold/head-imp.svg"
  38970. }
  38971. },
  38972. mawImp: {
  38973. height: math.unit(0.75, "feet"),
  38974. name: "Maw (Imp)",
  38975. image: {
  38976. source: "./media/characters/max-kobold/maw-imp.svg"
  38977. }
  38978. },
  38979. mawDemi: {
  38980. height: math.unit(0.42, "feet"),
  38981. name: "Maw (Demi)",
  38982. image: {
  38983. source: "./media/characters/max-kobold/maw-demi.svg"
  38984. }
  38985. },
  38986. },
  38987. [
  38988. {
  38989. name: "Normal",
  38990. height: math.unit(1 + 11/12, "feet"),
  38991. default: true
  38992. },
  38993. ]
  38994. ))
  38995. characterMakers.push(() => makeCharacter(
  38996. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38997. {
  38998. front: {
  38999. height: math.unit(7 + 5/12, "feet"),
  39000. name: "Front",
  39001. image: {
  39002. source: "./media/characters/carbon/front.svg",
  39003. extra: 1754/1689,
  39004. bottom: 65/1819
  39005. }
  39006. },
  39007. back: {
  39008. height: math.unit(7 + 5/12, "feet"),
  39009. name: "Back",
  39010. image: {
  39011. source: "./media/characters/carbon/back.svg",
  39012. extra: 1762/1695,
  39013. bottom: 24/1786
  39014. }
  39015. },
  39016. frontGigantamax: {
  39017. height: math.unit(150, "feet"),
  39018. name: "Front (Gigantamax)",
  39019. image: {
  39020. source: "./media/characters/carbon/front-gigantamax.svg",
  39021. extra: 1826/1669,
  39022. bottom: 59/1885
  39023. }
  39024. },
  39025. backGigantamax: {
  39026. height: math.unit(150, "feet"),
  39027. name: "Back (Gigantamax)",
  39028. image: {
  39029. source: "./media/characters/carbon/back-gigantamax.svg",
  39030. extra: 1796/1653,
  39031. bottom: 53/1849
  39032. }
  39033. },
  39034. maw: {
  39035. height: math.unit(0.48, "feet"),
  39036. name: "Maw",
  39037. image: {
  39038. source: "./media/characters/carbon/maw.svg"
  39039. }
  39040. },
  39041. mawGigantamax: {
  39042. height: math.unit(7.5, "feet"),
  39043. name: "Maw (Gigantamax)",
  39044. image: {
  39045. source: "./media/characters/carbon/maw-gigantamax.svg"
  39046. }
  39047. },
  39048. },
  39049. [
  39050. {
  39051. name: "Normal",
  39052. height: math.unit(7 + 5/12, "feet"),
  39053. default: true
  39054. },
  39055. ]
  39056. ))
  39057. characterMakers.push(() => makeCharacter(
  39058. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39059. {
  39060. front: {
  39061. height: math.unit(6, "feet"),
  39062. name: "Front",
  39063. image: {
  39064. source: "./media/characters/maverick/front.svg",
  39065. extra: 1672/1661,
  39066. bottom: 85/1757
  39067. }
  39068. },
  39069. back: {
  39070. height: math.unit(6, "feet"),
  39071. name: "Back",
  39072. image: {
  39073. source: "./media/characters/maverick/back.svg",
  39074. extra: 1642/1631,
  39075. bottom: 38/1680
  39076. }
  39077. },
  39078. },
  39079. [
  39080. {
  39081. name: "Normal",
  39082. height: math.unit(6, "feet"),
  39083. default: true
  39084. },
  39085. ]
  39086. ))
  39087. characterMakers.push(() => makeCharacter(
  39088. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39089. {
  39090. front: {
  39091. height: math.unit(15, "feet"),
  39092. weight: math.unit(615, "lb"),
  39093. name: "Front",
  39094. image: {
  39095. source: "./media/characters/grockle/front.svg",
  39096. extra: 1535/1427,
  39097. bottom: 56/1591
  39098. }
  39099. },
  39100. },
  39101. [
  39102. {
  39103. name: "Normal",
  39104. height: math.unit(15, "feet"),
  39105. default: true
  39106. },
  39107. {
  39108. name: "Large",
  39109. height: math.unit(150, "feet")
  39110. },
  39111. {
  39112. name: "Macro",
  39113. height: math.unit(1876, "feet")
  39114. },
  39115. {
  39116. name: "Mega Macro",
  39117. height: math.unit(121940, "feet")
  39118. },
  39119. {
  39120. name: "Giga Macro",
  39121. height: math.unit(750, "km")
  39122. },
  39123. {
  39124. name: "Tera Macro",
  39125. height: math.unit(750000, "km")
  39126. },
  39127. {
  39128. name: "Galactic",
  39129. height: math.unit(1.4e5, "km")
  39130. },
  39131. {
  39132. name: "Godlike",
  39133. height: math.unit(9.8e280, "galaxies")
  39134. },
  39135. ]
  39136. ))
  39137. characterMakers.push(() => makeCharacter(
  39138. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39139. {
  39140. front: {
  39141. height: math.unit(11, "meters"),
  39142. weight: math.unit(20, "tonnes"),
  39143. name: "Front",
  39144. image: {
  39145. source: "./media/characters/alistair/front.svg",
  39146. extra: 1265/1009,
  39147. bottom: 93/1358
  39148. }
  39149. },
  39150. },
  39151. [
  39152. {
  39153. name: "Normal",
  39154. height: math.unit(11, "meters"),
  39155. default: true
  39156. },
  39157. ]
  39158. ))
  39159. characterMakers.push(() => makeCharacter(
  39160. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39161. {
  39162. front: {
  39163. height: math.unit(5 + 8/12, "feet"),
  39164. name: "Front",
  39165. image: {
  39166. source: "./media/characters/haruka/front.svg",
  39167. extra: 2012/1952,
  39168. bottom: 0/2012
  39169. }
  39170. },
  39171. },
  39172. [
  39173. {
  39174. name: "Normal",
  39175. height: math.unit(5 + 8/12, "feet"),
  39176. default: true
  39177. },
  39178. ]
  39179. ))
  39180. characterMakers.push(() => makeCharacter(
  39181. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39182. {
  39183. back: {
  39184. height: math.unit(9, "feet"),
  39185. name: "Back",
  39186. image: {
  39187. source: "./media/characters/vivian-sylveon/back.svg",
  39188. extra: 1853/1714,
  39189. bottom: 0/1853
  39190. }
  39191. },
  39192. },
  39193. [
  39194. {
  39195. name: "Normal",
  39196. height: math.unit(9, "feet"),
  39197. default: true
  39198. },
  39199. {
  39200. name: "Macro",
  39201. height: math.unit(500, "feet")
  39202. },
  39203. {
  39204. name: "Megamacro",
  39205. height: math.unit(600, "miles")
  39206. },
  39207. {
  39208. name: "Gigamacro",
  39209. height: math.unit(30000, "miles")
  39210. },
  39211. ]
  39212. ))
  39213. characterMakers.push(() => makeCharacter(
  39214. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39215. {
  39216. anthro: {
  39217. height: math.unit(5 + 10/12, "feet"),
  39218. weight: math.unit(100, "lb"),
  39219. name: "Anthro",
  39220. image: {
  39221. source: "./media/characters/daiki/anthro.svg",
  39222. extra: 1115/1027,
  39223. bottom: 69/1184
  39224. }
  39225. },
  39226. feral: {
  39227. height: math.unit(200, "feet"),
  39228. name: "Feral",
  39229. image: {
  39230. source: "./media/characters/daiki/feral.svg",
  39231. extra: 1256/313,
  39232. bottom: 39/1295
  39233. }
  39234. },
  39235. feralHead: {
  39236. height: math.unit(171, "feet"),
  39237. name: "Feral Head",
  39238. image: {
  39239. source: "./media/characters/daiki/feral-head.svg"
  39240. }
  39241. },
  39242. manaDragon: {
  39243. height: math.unit(170, "meters"),
  39244. name: "Mana-dragon",
  39245. image: {
  39246. source: "./media/characters/daiki/mana-dragon.svg",
  39247. extra: 763/420,
  39248. bottom: 97/860
  39249. }
  39250. },
  39251. },
  39252. [
  39253. {
  39254. name: "Normal",
  39255. height: math.unit(5 + 10/12, "feet"),
  39256. default: true
  39257. },
  39258. ]
  39259. ))
  39260. characterMakers.push(() => makeCharacter(
  39261. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39262. {
  39263. fullyEquippedFront: {
  39264. height: math.unit(3 + 1/12, "feet"),
  39265. weight: math.unit(24, "lb"),
  39266. name: "Fully Equipped (Front)",
  39267. image: {
  39268. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39269. extra: 687/605,
  39270. bottom: 18/705
  39271. }
  39272. },
  39273. fullyEquippedBack: {
  39274. height: math.unit(3 + 1/12, "feet"),
  39275. weight: math.unit(24, "lb"),
  39276. name: "Fully Equipped (Back)",
  39277. image: {
  39278. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39279. extra: 689/590,
  39280. bottom: 18/707
  39281. }
  39282. },
  39283. dailyWear: {
  39284. height: math.unit(3 + 1/12, "feet"),
  39285. weight: math.unit(24, "lb"),
  39286. name: "Daily Wear",
  39287. image: {
  39288. source: "./media/characters/tea-spot/daily-wear.svg",
  39289. extra: 701/620,
  39290. bottom: 21/722
  39291. }
  39292. },
  39293. maidWork: {
  39294. height: math.unit(3 + 1/12, "feet"),
  39295. weight: math.unit(24, "lb"),
  39296. name: "Maid Work",
  39297. image: {
  39298. source: "./media/characters/tea-spot/maid-work.svg",
  39299. extra: 693/609,
  39300. bottom: 15/708
  39301. }
  39302. },
  39303. },
  39304. [
  39305. {
  39306. name: "Normal",
  39307. height: math.unit(3 + 1/12, "feet"),
  39308. default: true
  39309. },
  39310. ]
  39311. ))
  39312. characterMakers.push(() => makeCharacter(
  39313. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39314. {
  39315. front: {
  39316. height: math.unit(175, "cm"),
  39317. weight: math.unit(75, "kg"),
  39318. name: "Front",
  39319. image: {
  39320. source: "./media/characters/chee/front.svg",
  39321. extra: 1796/1740,
  39322. bottom: 40/1836
  39323. }
  39324. },
  39325. },
  39326. [
  39327. {
  39328. name: "Micro-Micro",
  39329. height: math.unit(1, "nm")
  39330. },
  39331. {
  39332. name: "Micro-erst",
  39333. height: math.unit(1, "micrometer")
  39334. },
  39335. {
  39336. name: "Micro-er",
  39337. height: math.unit(1, "cm")
  39338. },
  39339. {
  39340. name: "Normal",
  39341. height: math.unit(175, "cm"),
  39342. default: true
  39343. },
  39344. {
  39345. name: "Macro",
  39346. height: math.unit(100, "m")
  39347. },
  39348. {
  39349. name: "Macro-er",
  39350. height: math.unit(1, "km")
  39351. },
  39352. {
  39353. name: "Macro-erst",
  39354. height: math.unit(10, "km")
  39355. },
  39356. {
  39357. name: "Macro-Macro",
  39358. height: math.unit(100, "km")
  39359. },
  39360. ]
  39361. ))
  39362. characterMakers.push(() => makeCharacter(
  39363. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39364. {
  39365. front: {
  39366. height: math.unit(11 + 9/12, "feet"),
  39367. weight: math.unit(935, "lb"),
  39368. name: "Front",
  39369. image: {
  39370. source: "./media/characters/kingsley/front.svg",
  39371. extra: 1803/1674,
  39372. bottom: 127/1930
  39373. }
  39374. },
  39375. frontNude: {
  39376. height: math.unit(11 + 9/12, "feet"),
  39377. weight: math.unit(935, "lb"),
  39378. name: "Front (Nude)",
  39379. image: {
  39380. source: "./media/characters/kingsley/front-nude.svg",
  39381. extra: 1803/1674,
  39382. bottom: 127/1930
  39383. }
  39384. },
  39385. },
  39386. [
  39387. {
  39388. name: "Normal",
  39389. height: math.unit(11 + 9/12, "feet"),
  39390. default: true
  39391. },
  39392. ]
  39393. ))
  39394. characterMakers.push(() => makeCharacter(
  39395. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39396. {
  39397. side: {
  39398. height: math.unit(9, "feet"),
  39399. name: "Side",
  39400. image: {
  39401. source: "./media/characters/rymel/side.svg",
  39402. extra: 792/469,
  39403. bottom: 121/913
  39404. }
  39405. },
  39406. maw: {
  39407. height: math.unit(2.4, "meters"),
  39408. name: "Maw",
  39409. image: {
  39410. source: "./media/characters/rymel/maw.svg"
  39411. }
  39412. },
  39413. },
  39414. [
  39415. {
  39416. name: "House Drake",
  39417. height: math.unit(2, "feet")
  39418. },
  39419. {
  39420. name: "Reduced",
  39421. height: math.unit(4.5, "feet")
  39422. },
  39423. {
  39424. name: "Normal",
  39425. height: math.unit(9, "feet"),
  39426. default: true
  39427. },
  39428. ]
  39429. ))
  39430. characterMakers.push(() => makeCharacter(
  39431. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39432. {
  39433. front: {
  39434. height: math.unit(1.74, "meters"),
  39435. weight: math.unit(55, "kg"),
  39436. name: "Front",
  39437. image: {
  39438. source: "./media/characters/rubus/front.svg",
  39439. extra: 1894/1742,
  39440. bottom: 44/1938
  39441. }
  39442. },
  39443. },
  39444. [
  39445. {
  39446. name: "Normal",
  39447. height: math.unit(1.74, "meters"),
  39448. default: true
  39449. },
  39450. ]
  39451. ))
  39452. characterMakers.push(() => makeCharacter(
  39453. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39454. {
  39455. front: {
  39456. height: math.unit(5 + 2/12, "feet"),
  39457. weight: math.unit(112, "lb"),
  39458. name: "Front",
  39459. image: {
  39460. source: "./media/characters/cassie-kingston/front.svg",
  39461. extra: 1438/1390,
  39462. bottom: 47/1485
  39463. }
  39464. },
  39465. },
  39466. [
  39467. {
  39468. name: "Normal",
  39469. height: math.unit(5 + 2/12, "feet"),
  39470. default: true
  39471. },
  39472. {
  39473. name: "Macro",
  39474. height: math.unit(128, "feet")
  39475. },
  39476. {
  39477. name: "Megamacro",
  39478. height: math.unit(2.56, "miles")
  39479. },
  39480. ]
  39481. ))
  39482. characterMakers.push(() => makeCharacter(
  39483. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39484. {
  39485. front: {
  39486. height: math.unit(7, "feet"),
  39487. name: "Front",
  39488. image: {
  39489. source: "./media/characters/fox/front.svg",
  39490. extra: 1798/1703,
  39491. bottom: 55/1853
  39492. }
  39493. },
  39494. back: {
  39495. height: math.unit(7, "feet"),
  39496. name: "Back",
  39497. image: {
  39498. source: "./media/characters/fox/back.svg",
  39499. extra: 1748/1649,
  39500. bottom: 32/1780
  39501. }
  39502. },
  39503. head: {
  39504. height: math.unit(1.95, "feet"),
  39505. name: "Head",
  39506. image: {
  39507. source: "./media/characters/fox/head.svg"
  39508. }
  39509. },
  39510. dick: {
  39511. height: math.unit(1.33, "feet"),
  39512. name: "Dick",
  39513. image: {
  39514. source: "./media/characters/fox/dick.svg"
  39515. }
  39516. },
  39517. foot: {
  39518. height: math.unit(1, "feet"),
  39519. name: "Foot",
  39520. image: {
  39521. source: "./media/characters/fox/foot.svg"
  39522. }
  39523. },
  39524. paw: {
  39525. height: math.unit(0.92, "feet"),
  39526. name: "Paw",
  39527. image: {
  39528. source: "./media/characters/fox/paw.svg"
  39529. }
  39530. },
  39531. },
  39532. [
  39533. {
  39534. name: "Small",
  39535. height: math.unit(3, "inches")
  39536. },
  39537. {
  39538. name: "\"Realistic\"",
  39539. height: math.unit(7, "feet")
  39540. },
  39541. {
  39542. name: "Normal",
  39543. height: math.unit(150, "feet"),
  39544. default: true
  39545. },
  39546. {
  39547. name: "BIG",
  39548. height: math.unit(1200, "feet")
  39549. },
  39550. {
  39551. name: "👀",
  39552. height: math.unit(5, "miles")
  39553. },
  39554. {
  39555. name: "👀👀👀",
  39556. height: math.unit(64, "miles")
  39557. },
  39558. ]
  39559. ))
  39560. characterMakers.push(() => makeCharacter(
  39561. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39562. {
  39563. front: {
  39564. height: math.unit(625, "feet"),
  39565. name: "Front",
  39566. image: {
  39567. source: "./media/characters/asonja-rossa/front.svg",
  39568. extra: 1833/1686,
  39569. bottom: 24/1857
  39570. }
  39571. },
  39572. back: {
  39573. height: math.unit(625, "feet"),
  39574. name: "Back",
  39575. image: {
  39576. source: "./media/characters/asonja-rossa/back.svg",
  39577. extra: 1852/1753,
  39578. bottom: 26/1878
  39579. }
  39580. },
  39581. },
  39582. [
  39583. {
  39584. name: "Macro",
  39585. height: math.unit(625, "feet"),
  39586. default: true
  39587. },
  39588. ]
  39589. ))
  39590. characterMakers.push(() => makeCharacter(
  39591. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39592. {
  39593. side: {
  39594. height: math.unit(8, "feet"),
  39595. name: "Side",
  39596. image: {
  39597. source: "./media/characters/rezukii/side.svg",
  39598. extra: 979/542,
  39599. bottom: 87/1066
  39600. }
  39601. },
  39602. sitting: {
  39603. height: math.unit(14.6, "feet"),
  39604. name: "Sitting",
  39605. image: {
  39606. source: "./media/characters/rezukii/sitting.svg",
  39607. extra: 1023/813,
  39608. bottom: 45/1068
  39609. }
  39610. },
  39611. },
  39612. [
  39613. {
  39614. name: "Tiny",
  39615. height: math.unit(2, "feet")
  39616. },
  39617. {
  39618. name: "Smol",
  39619. height: math.unit(4, "feet")
  39620. },
  39621. {
  39622. name: "Normal",
  39623. height: math.unit(8, "feet"),
  39624. default: true
  39625. },
  39626. {
  39627. name: "Big",
  39628. height: math.unit(12, "feet")
  39629. },
  39630. {
  39631. name: "Macro",
  39632. height: math.unit(30, "feet")
  39633. },
  39634. ]
  39635. ))
  39636. characterMakers.push(() => makeCharacter(
  39637. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39638. {
  39639. front: {
  39640. height: math.unit(14, "feet"),
  39641. weight: math.unit(9.5, "tonnes"),
  39642. name: "Front",
  39643. image: {
  39644. source: "./media/characters/dawnheart/front.svg",
  39645. extra: 2792/2675,
  39646. bottom: 64/2856
  39647. }
  39648. },
  39649. },
  39650. [
  39651. {
  39652. name: "Normal",
  39653. height: math.unit(14, "feet"),
  39654. default: true
  39655. },
  39656. ]
  39657. ))
  39658. characterMakers.push(() => makeCharacter(
  39659. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39660. {
  39661. front: {
  39662. height: math.unit(1.7, "m"),
  39663. name: "Front",
  39664. image: {
  39665. source: "./media/characters/gladi/front.svg",
  39666. extra: 1460/1362,
  39667. bottom: 19/1479
  39668. }
  39669. },
  39670. back: {
  39671. height: math.unit(1.7, "m"),
  39672. name: "Back",
  39673. image: {
  39674. source: "./media/characters/gladi/back.svg",
  39675. extra: 1459/1357,
  39676. bottom: 12/1471
  39677. }
  39678. },
  39679. feral: {
  39680. height: math.unit(2.05, "m"),
  39681. name: "Feral",
  39682. image: {
  39683. source: "./media/characters/gladi/feral.svg",
  39684. extra: 821/557,
  39685. bottom: 91/912
  39686. }
  39687. },
  39688. },
  39689. [
  39690. {
  39691. name: "Shortest",
  39692. height: math.unit(70, "cm")
  39693. },
  39694. {
  39695. name: "Normal",
  39696. height: math.unit(1.7, "m")
  39697. },
  39698. {
  39699. name: "Macro",
  39700. height: math.unit(10, "m"),
  39701. default: true
  39702. },
  39703. {
  39704. name: "Tallest",
  39705. height: math.unit(200, "m")
  39706. },
  39707. ]
  39708. ))
  39709. characterMakers.push(() => makeCharacter(
  39710. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39711. {
  39712. front: {
  39713. height: math.unit(5 + 7/12, "feet"),
  39714. weight: math.unit(2, "tons"),
  39715. name: "Front",
  39716. image: {
  39717. source: "./media/characters/erdno/front.svg",
  39718. extra: 1234/1129,
  39719. bottom: 35/1269
  39720. }
  39721. },
  39722. angled: {
  39723. height: math.unit(5 + 7/12, "feet"),
  39724. weight: math.unit(2, "tons"),
  39725. name: "Angled",
  39726. image: {
  39727. source: "./media/characters/erdno/angled.svg",
  39728. extra: 1185/1139,
  39729. bottom: 36/1221
  39730. }
  39731. },
  39732. side: {
  39733. height: math.unit(5 + 7/12, "feet"),
  39734. weight: math.unit(2, "tons"),
  39735. name: "Side",
  39736. image: {
  39737. source: "./media/characters/erdno/side.svg",
  39738. extra: 1191/1144,
  39739. bottom: 40/1231
  39740. }
  39741. },
  39742. back: {
  39743. height: math.unit(5 + 7/12, "feet"),
  39744. weight: math.unit(2, "tons"),
  39745. name: "Back",
  39746. image: {
  39747. source: "./media/characters/erdno/back.svg",
  39748. extra: 1202/1146,
  39749. bottom: 17/1219
  39750. }
  39751. },
  39752. frontNsfw: {
  39753. height: math.unit(5 + 7/12, "feet"),
  39754. weight: math.unit(2, "tons"),
  39755. name: "Front (NSFW)",
  39756. image: {
  39757. source: "./media/characters/erdno/front-nsfw.svg",
  39758. extra: 1234/1129,
  39759. bottom: 35/1269
  39760. }
  39761. },
  39762. angledNsfw: {
  39763. height: math.unit(5 + 7/12, "feet"),
  39764. weight: math.unit(2, "tons"),
  39765. name: "Angled (NSFW)",
  39766. image: {
  39767. source: "./media/characters/erdno/angled-nsfw.svg",
  39768. extra: 1185/1139,
  39769. bottom: 36/1221
  39770. }
  39771. },
  39772. sideNsfw: {
  39773. height: math.unit(5 + 7/12, "feet"),
  39774. weight: math.unit(2, "tons"),
  39775. name: "Side (NSFW)",
  39776. image: {
  39777. source: "./media/characters/erdno/side-nsfw.svg",
  39778. extra: 1191/1144,
  39779. bottom: 40/1231
  39780. }
  39781. },
  39782. backNsfw: {
  39783. height: math.unit(5 + 7/12, "feet"),
  39784. weight: math.unit(2, "tons"),
  39785. name: "Back (NSFW)",
  39786. image: {
  39787. source: "./media/characters/erdno/back-nsfw.svg",
  39788. extra: 1202/1146,
  39789. bottom: 17/1219
  39790. }
  39791. },
  39792. frontHyper: {
  39793. height: math.unit(5 + 7/12, "feet"),
  39794. weight: math.unit(2, "tons"),
  39795. name: "Front (Hyper)",
  39796. image: {
  39797. source: "./media/characters/erdno/front-hyper.svg",
  39798. extra: 1298/1136,
  39799. bottom: 35/1333
  39800. }
  39801. },
  39802. },
  39803. [
  39804. {
  39805. name: "Normal",
  39806. height: math.unit(5 + 7/12, "feet"),
  39807. default: true
  39808. },
  39809. {
  39810. name: "Big",
  39811. height: math.unit(5.7, "meters")
  39812. },
  39813. {
  39814. name: "Macro",
  39815. height: math.unit(5.7, "kilometers")
  39816. },
  39817. {
  39818. name: "Megamacro",
  39819. height: math.unit(5.7, "earths")
  39820. },
  39821. ]
  39822. ))
  39823. characterMakers.push(() => makeCharacter(
  39824. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39825. {
  39826. front: {
  39827. height: math.unit(5 + 10/12, "feet"),
  39828. weight: math.unit(150, "lb"),
  39829. name: "Front",
  39830. image: {
  39831. source: "./media/characters/jamie/front.svg",
  39832. extra: 1908/1768,
  39833. bottom: 19/1927
  39834. }
  39835. },
  39836. },
  39837. [
  39838. {
  39839. name: "Minimum",
  39840. height: math.unit(2, "cm")
  39841. },
  39842. {
  39843. name: "Micro",
  39844. height: math.unit(3, "inches")
  39845. },
  39846. {
  39847. name: "Normal",
  39848. height: math.unit(5 + 10/12, "feet"),
  39849. default: true
  39850. },
  39851. {
  39852. name: "Macro",
  39853. height: math.unit(150, "feet")
  39854. },
  39855. {
  39856. name: "Megamacro",
  39857. height: math.unit(10000, "m")
  39858. },
  39859. ]
  39860. ))
  39861. characterMakers.push(() => makeCharacter(
  39862. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39863. {
  39864. front: {
  39865. height: math.unit(2, "meters"),
  39866. weight: math.unit(100, "kg"),
  39867. name: "Front",
  39868. image: {
  39869. source: "./media/characters/shiron/front.svg",
  39870. extra: 2103/1985,
  39871. bottom: 98/2201
  39872. }
  39873. },
  39874. back: {
  39875. height: math.unit(2, "meters"),
  39876. weight: math.unit(100, "kg"),
  39877. name: "Back",
  39878. image: {
  39879. source: "./media/characters/shiron/back.svg",
  39880. extra: 2110/2015,
  39881. bottom: 89/2199
  39882. }
  39883. },
  39884. hand: {
  39885. height: math.unit(0.96, "feet"),
  39886. name: "Hand",
  39887. image: {
  39888. source: "./media/characters/shiron/hand.svg"
  39889. }
  39890. },
  39891. foot: {
  39892. height: math.unit(1.464, "feet"),
  39893. name: "Foot",
  39894. image: {
  39895. source: "./media/characters/shiron/foot.svg"
  39896. }
  39897. },
  39898. },
  39899. [
  39900. {
  39901. name: "Normal",
  39902. height: math.unit(2, "meters")
  39903. },
  39904. {
  39905. name: "Macro",
  39906. height: math.unit(500, "meters"),
  39907. default: true
  39908. },
  39909. {
  39910. name: "Megamacro",
  39911. height: math.unit(20, "km")
  39912. },
  39913. ]
  39914. ))
  39915. characterMakers.push(() => makeCharacter(
  39916. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39917. {
  39918. front: {
  39919. height: math.unit(6, "feet"),
  39920. name: "Front",
  39921. image: {
  39922. source: "./media/characters/sam/front.svg",
  39923. extra: 849/826,
  39924. bottom: 19/868
  39925. }
  39926. },
  39927. },
  39928. [
  39929. {
  39930. name: "Normal",
  39931. height: math.unit(6, "feet"),
  39932. default: true
  39933. },
  39934. ]
  39935. ))
  39936. characterMakers.push(() => makeCharacter(
  39937. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39938. {
  39939. front: {
  39940. height: math.unit(8 + 4/12, "feet"),
  39941. weight: math.unit(122, "kg"),
  39942. name: "Front",
  39943. image: {
  39944. source: "./media/characters/namori-kurogawa/front.svg",
  39945. extra: 1894/1576,
  39946. bottom: 34/1928
  39947. }
  39948. },
  39949. },
  39950. [
  39951. {
  39952. name: "Normal",
  39953. height: math.unit(8 + 4/12, "feet"),
  39954. default: true
  39955. },
  39956. ]
  39957. ))
  39958. characterMakers.push(() => makeCharacter(
  39959. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39960. {
  39961. front: {
  39962. height: math.unit(9, "feet"),
  39963. weight: math.unit(621, "lb"),
  39964. name: "Front",
  39965. image: {
  39966. source: "./media/characters/unmru/front.svg",
  39967. extra: 1853/1747,
  39968. bottom: 73/1926
  39969. }
  39970. },
  39971. side: {
  39972. height: math.unit(9, "feet"),
  39973. weight: math.unit(621, "lb"),
  39974. name: "Side",
  39975. image: {
  39976. source: "./media/characters/unmru/side.svg",
  39977. extra: 1781/1671,
  39978. bottom: 127/1908
  39979. }
  39980. },
  39981. back: {
  39982. height: math.unit(9, "feet"),
  39983. weight: math.unit(621, "lb"),
  39984. name: "Back",
  39985. image: {
  39986. source: "./media/characters/unmru/back.svg",
  39987. extra: 1894/1765,
  39988. bottom: 75/1969
  39989. }
  39990. },
  39991. dick: {
  39992. height: math.unit(3, "feet"),
  39993. weight: math.unit(35, "lb"),
  39994. name: "Dick",
  39995. image: {
  39996. source: "./media/characters/unmru/dick.svg"
  39997. }
  39998. },
  39999. },
  40000. [
  40001. {
  40002. name: "Normal",
  40003. height: math.unit(9, "feet")
  40004. },
  40005. {
  40006. name: "Natural",
  40007. height: math.unit(27, "feet"),
  40008. default: true
  40009. },
  40010. {
  40011. name: "Giant",
  40012. height: math.unit(90, "feet")
  40013. },
  40014. {
  40015. name: "Kaiju",
  40016. height: math.unit(270, "feet")
  40017. },
  40018. {
  40019. name: "Macro",
  40020. height: math.unit(900, "feet")
  40021. },
  40022. {
  40023. name: "Macro+",
  40024. height: math.unit(2700, "feet")
  40025. },
  40026. {
  40027. name: "Megamacro",
  40028. height: math.unit(9000, "feet")
  40029. },
  40030. {
  40031. name: "City-Crushing",
  40032. height: math.unit(27000, "feet")
  40033. },
  40034. {
  40035. name: "Mountain-Mashing",
  40036. height: math.unit(90000, "feet")
  40037. },
  40038. {
  40039. name: "Earth-Eclipsing",
  40040. height: math.unit(2.7e8, "feet")
  40041. },
  40042. {
  40043. name: "Sol-Swallowing",
  40044. height: math.unit(9e10, "feet")
  40045. },
  40046. {
  40047. name: "Majoris-Munching",
  40048. height: math.unit(2.7e13, "feet")
  40049. },
  40050. ]
  40051. ))
  40052. characterMakers.push(() => makeCharacter(
  40053. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40054. {
  40055. front: {
  40056. height: math.unit(1, "inch"),
  40057. name: "Front",
  40058. image: {
  40059. source: "./media/characters/squeaks-mouse/front.svg",
  40060. extra: 352/308,
  40061. bottom: 25/377
  40062. }
  40063. },
  40064. },
  40065. [
  40066. {
  40067. name: "Micro",
  40068. height: math.unit(1, "inch"),
  40069. default: true
  40070. },
  40071. ]
  40072. ))
  40073. characterMakers.push(() => makeCharacter(
  40074. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40075. {
  40076. side: {
  40077. height: math.unit(35, "feet"),
  40078. name: "Side",
  40079. image: {
  40080. source: "./media/characters/sayko/side.svg",
  40081. extra: 1697/1021,
  40082. bottom: 82/1779
  40083. }
  40084. },
  40085. head: {
  40086. height: math.unit(16, "feet"),
  40087. name: "Head",
  40088. image: {
  40089. source: "./media/characters/sayko/head.svg"
  40090. }
  40091. },
  40092. forepaw: {
  40093. height: math.unit(7.85, "feet"),
  40094. name: "Forepaw",
  40095. image: {
  40096. source: "./media/characters/sayko/forepaw.svg"
  40097. }
  40098. },
  40099. hindpaw: {
  40100. height: math.unit(8.8, "feet"),
  40101. name: "Hindpaw",
  40102. image: {
  40103. source: "./media/characters/sayko/hindpaw.svg"
  40104. }
  40105. },
  40106. },
  40107. [
  40108. {
  40109. name: "Normal",
  40110. height: math.unit(35, "feet"),
  40111. default: true
  40112. },
  40113. {
  40114. name: "Colossus",
  40115. height: math.unit(100, "meters")
  40116. },
  40117. {
  40118. name: "\"Small\" Deity",
  40119. height: math.unit(1, "km")
  40120. },
  40121. {
  40122. name: "\"Large\" Deity",
  40123. height: math.unit(15, "km")
  40124. },
  40125. ]
  40126. ))
  40127. characterMakers.push(() => makeCharacter(
  40128. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40129. {
  40130. front: {
  40131. height: math.unit(6, "feet"),
  40132. weight: math.unit(250, "lb"),
  40133. name: "Front",
  40134. image: {
  40135. source: "./media/characters/mukiro/front.svg",
  40136. extra: 1368/1310,
  40137. bottom: 34/1402
  40138. }
  40139. },
  40140. },
  40141. [
  40142. {
  40143. name: "Normal",
  40144. height: math.unit(6, "feet"),
  40145. default: true
  40146. },
  40147. ]
  40148. ))
  40149. characterMakers.push(() => makeCharacter(
  40150. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40151. {
  40152. front: {
  40153. height: math.unit(12 + 4/12, "feet"),
  40154. name: "Front",
  40155. image: {
  40156. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40157. extra: 1346/1311,
  40158. bottom: 65/1411
  40159. }
  40160. },
  40161. },
  40162. [
  40163. {
  40164. name: "Base",
  40165. height: math.unit(12 + 4/12, "feet"),
  40166. default: true
  40167. },
  40168. {
  40169. name: "Macro",
  40170. height: math.unit(150, "feet")
  40171. },
  40172. {
  40173. name: "Mega",
  40174. height: math.unit(2, "miles")
  40175. },
  40176. {
  40177. name: "Demi God",
  40178. height: math.unit(4, "AU")
  40179. },
  40180. {
  40181. name: "God Size",
  40182. height: math.unit(1, "universe")
  40183. },
  40184. ]
  40185. ))
  40186. characterMakers.push(() => makeCharacter(
  40187. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40188. {
  40189. front: {
  40190. height: math.unit(3 + 3/12, "feet"),
  40191. weight: math.unit(88, "lb"),
  40192. name: "Front",
  40193. image: {
  40194. source: "./media/characters/trey/front.svg",
  40195. extra: 1815/1509,
  40196. bottom: 60/1875
  40197. }
  40198. },
  40199. },
  40200. [
  40201. {
  40202. name: "Normal",
  40203. height: math.unit(3 + 3/12, "feet"),
  40204. default: true
  40205. },
  40206. ]
  40207. ))
  40208. characterMakers.push(() => makeCharacter(
  40209. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40210. {
  40211. front: {
  40212. height: math.unit(4, "meters"),
  40213. name: "Front",
  40214. image: {
  40215. source: "./media/characters/adelonda/front.svg",
  40216. extra: 1077/982,
  40217. bottom: 39/1116
  40218. }
  40219. },
  40220. back: {
  40221. height: math.unit(4, "meters"),
  40222. name: "Back",
  40223. image: {
  40224. source: "./media/characters/adelonda/back.svg",
  40225. extra: 1105/1003,
  40226. bottom: 25/1130
  40227. }
  40228. },
  40229. feral: {
  40230. height: math.unit(40/1.5, "meters"),
  40231. name: "Feral",
  40232. image: {
  40233. source: "./media/characters/adelonda/feral.svg",
  40234. extra: 597/271,
  40235. bottom: 387/984
  40236. }
  40237. },
  40238. },
  40239. [
  40240. {
  40241. name: "Normal",
  40242. height: math.unit(4, "meters"),
  40243. default: true
  40244. },
  40245. ]
  40246. ))
  40247. characterMakers.push(() => makeCharacter(
  40248. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40249. {
  40250. front: {
  40251. height: math.unit(8 + 4/12, "feet"),
  40252. weight: math.unit(670, "lb"),
  40253. name: "Front",
  40254. image: {
  40255. source: "./media/characters/acadiel/front.svg",
  40256. extra: 1901/1595,
  40257. bottom: 142/2043
  40258. }
  40259. },
  40260. },
  40261. [
  40262. {
  40263. name: "Normal",
  40264. height: math.unit(8 + 4/12, "feet"),
  40265. default: true
  40266. },
  40267. {
  40268. name: "Macro",
  40269. height: math.unit(200, "feet")
  40270. },
  40271. ]
  40272. ))
  40273. characterMakers.push(() => makeCharacter(
  40274. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40275. {
  40276. front: {
  40277. height: math.unit(6 + 2/12, "feet"),
  40278. weight: math.unit(185, "lb"),
  40279. name: "Front",
  40280. image: {
  40281. source: "./media/characters/kayne-ein/front.svg",
  40282. extra: 1780/1560,
  40283. bottom: 81/1861
  40284. }
  40285. },
  40286. },
  40287. [
  40288. {
  40289. name: "Normal",
  40290. height: math.unit(6 + 2/12, "feet"),
  40291. default: true
  40292. },
  40293. {
  40294. name: "Transformation Stage",
  40295. height: math.unit(15, "feet")
  40296. },
  40297. {
  40298. name: "Macro",
  40299. height: math.unit(150, "feet")
  40300. },
  40301. {
  40302. name: "Earth's Shadow",
  40303. height: math.unit(6200, "miles")
  40304. },
  40305. {
  40306. name: "Universal Demon",
  40307. height: math.unit(28e9, "parsecs")
  40308. },
  40309. {
  40310. name: "Multiverse God",
  40311. height: math.unit(3, "multiverses")
  40312. },
  40313. ]
  40314. ))
  40315. characterMakers.push(() => makeCharacter(
  40316. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40317. {
  40318. front: {
  40319. height: math.unit(5 + 5/12, "feet"),
  40320. name: "Front",
  40321. image: {
  40322. source: "./media/characters/fawn/front.svg",
  40323. extra: 1873/1731,
  40324. bottom: 95/1968
  40325. }
  40326. },
  40327. back: {
  40328. height: math.unit(5 + 5/12, "feet"),
  40329. name: "Back",
  40330. image: {
  40331. source: "./media/characters/fawn/back.svg",
  40332. extra: 1813/1700,
  40333. bottom: 14/1827
  40334. }
  40335. },
  40336. hoof: {
  40337. height: math.unit(1.45, "feet"),
  40338. name: "Hoof",
  40339. image: {
  40340. source: "./media/characters/fawn/hoof.svg"
  40341. }
  40342. },
  40343. },
  40344. [
  40345. {
  40346. name: "Normal",
  40347. height: math.unit(5 + 5/12, "feet"),
  40348. default: true
  40349. },
  40350. ]
  40351. ))
  40352. characterMakers.push(() => makeCharacter(
  40353. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40354. {
  40355. front: {
  40356. height: math.unit(2 + 5/12, "feet"),
  40357. name: "Front",
  40358. image: {
  40359. source: "./media/characters/orion/front.svg",
  40360. extra: 1366/1304,
  40361. bottom: 43/1409
  40362. }
  40363. },
  40364. paw: {
  40365. height: math.unit(0.52, "feet"),
  40366. name: "Paw",
  40367. image: {
  40368. source: "./media/characters/orion/paw.svg"
  40369. }
  40370. },
  40371. },
  40372. [
  40373. {
  40374. name: "Normal",
  40375. height: math.unit(2 + 5/12, "feet"),
  40376. default: true
  40377. },
  40378. ]
  40379. ))
  40380. characterMakers.push(() => makeCharacter(
  40381. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40382. {
  40383. front: {
  40384. height: math.unit(5 + 10/12, "feet"),
  40385. name: "Front",
  40386. image: {
  40387. source: "./media/characters/vera/front.svg",
  40388. extra: 1680/1575,
  40389. bottom: 49/1729
  40390. }
  40391. },
  40392. back: {
  40393. height: math.unit(5 + 10/12, "feet"),
  40394. name: "Back",
  40395. image: {
  40396. source: "./media/characters/vera/back.svg",
  40397. extra: 1700/1588,
  40398. bottom: 18/1718
  40399. }
  40400. },
  40401. arcanine: {
  40402. height: math.unit(6 + 8/12, "feet"),
  40403. name: "Arcanine",
  40404. image: {
  40405. source: "./media/characters/vera/arcanine.svg",
  40406. extra: 1590/1511,
  40407. bottom: 71/1661
  40408. }
  40409. },
  40410. maw: {
  40411. height: math.unit(0.82, "feet"),
  40412. name: "Maw",
  40413. image: {
  40414. source: "./media/characters/vera/maw.svg"
  40415. }
  40416. },
  40417. mawArcanine: {
  40418. height: math.unit(0.97, "feet"),
  40419. name: "Maw (Arcanine)",
  40420. image: {
  40421. source: "./media/characters/vera/maw-arcanine.svg"
  40422. }
  40423. },
  40424. paw: {
  40425. height: math.unit(0.75, "feet"),
  40426. name: "Paw",
  40427. image: {
  40428. source: "./media/characters/vera/paw.svg"
  40429. }
  40430. },
  40431. pawprint: {
  40432. height: math.unit(0.52, "feet"),
  40433. name: "Pawprint",
  40434. image: {
  40435. source: "./media/characters/vera/pawprint.svg"
  40436. }
  40437. },
  40438. },
  40439. [
  40440. {
  40441. name: "Normal",
  40442. height: math.unit(5 + 10/12, "feet"),
  40443. default: true
  40444. },
  40445. {
  40446. name: "Macro",
  40447. height: math.unit(75, "feet")
  40448. },
  40449. ]
  40450. ))
  40451. characterMakers.push(() => makeCharacter(
  40452. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40453. {
  40454. front: {
  40455. height: math.unit(4, "feet"),
  40456. weight: math.unit(40, "lb"),
  40457. name: "Front",
  40458. image: {
  40459. source: "./media/characters/orvan-rabbit/front.svg",
  40460. extra: 1896/1642,
  40461. bottom: 29/1925
  40462. }
  40463. },
  40464. },
  40465. [
  40466. {
  40467. name: "Normal",
  40468. height: math.unit(4, "feet"),
  40469. default: true
  40470. },
  40471. ]
  40472. ))
  40473. characterMakers.push(() => makeCharacter(
  40474. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40475. {
  40476. front: {
  40477. height: math.unit(6, "feet"),
  40478. weight: math.unit(168, "lb"),
  40479. name: "Front",
  40480. image: {
  40481. source: "./media/characters/lisa/front.svg",
  40482. extra: 2065/1867,
  40483. bottom: 46/2111
  40484. }
  40485. },
  40486. back: {
  40487. height: math.unit(6, "feet"),
  40488. weight: math.unit(168, "lb"),
  40489. name: "Back",
  40490. image: {
  40491. source: "./media/characters/lisa/back.svg",
  40492. extra: 1982/1838,
  40493. bottom: 29/2011
  40494. }
  40495. },
  40496. maw: {
  40497. height: math.unit(0.81, "feet"),
  40498. name: "Maw",
  40499. image: {
  40500. source: "./media/characters/lisa/maw.svg"
  40501. }
  40502. },
  40503. paw: {
  40504. height: math.unit(0.9, "feet"),
  40505. name: "Paw",
  40506. image: {
  40507. source: "./media/characters/lisa/paw.svg"
  40508. }
  40509. },
  40510. caribousune: {
  40511. height: math.unit(7 + 2/12, "feet"),
  40512. weight: math.unit(268, "lb"),
  40513. name: "Caribousune",
  40514. image: {
  40515. source: "./media/characters/lisa/caribousune.svg",
  40516. extra: 1843/1633,
  40517. bottom: 29/1872
  40518. }
  40519. },
  40520. frontCaribousune: {
  40521. height: math.unit(7 + 2/12, "feet"),
  40522. weight: math.unit(268, "lb"),
  40523. name: "Front (Caribousune)",
  40524. image: {
  40525. source: "./media/characters/lisa/front-caribousune.svg",
  40526. extra: 1818/1638,
  40527. bottom: 52/1870
  40528. }
  40529. },
  40530. sideCaribousune: {
  40531. height: math.unit(7 + 2/12, "feet"),
  40532. weight: math.unit(268, "lb"),
  40533. name: "Side (Caribousune)",
  40534. image: {
  40535. source: "./media/characters/lisa/side-caribousune.svg",
  40536. extra: 1851/1635,
  40537. bottom: 16/1867
  40538. }
  40539. },
  40540. backCaribousune: {
  40541. height: math.unit(7 + 2/12, "feet"),
  40542. weight: math.unit(268, "lb"),
  40543. name: "Back (Caribousune)",
  40544. image: {
  40545. source: "./media/characters/lisa/back-caribousune.svg",
  40546. extra: 1801/1604,
  40547. bottom: 44/1845
  40548. }
  40549. },
  40550. caribou: {
  40551. height: math.unit(7 + 2/12, "feet"),
  40552. weight: math.unit(268, "lb"),
  40553. name: "Caribou",
  40554. image: {
  40555. source: "./media/characters/lisa/caribou.svg",
  40556. extra: 1843/1633,
  40557. bottom: 29/1872
  40558. }
  40559. },
  40560. frontCaribou: {
  40561. height: math.unit(7 + 2/12, "feet"),
  40562. weight: math.unit(268, "lb"),
  40563. name: "Front (Caribou)",
  40564. image: {
  40565. source: "./media/characters/lisa/front-caribou.svg",
  40566. extra: 1818/1638,
  40567. bottom: 52/1870
  40568. }
  40569. },
  40570. sideCaribou: {
  40571. height: math.unit(7 + 2/12, "feet"),
  40572. weight: math.unit(268, "lb"),
  40573. name: "Side (Caribou)",
  40574. image: {
  40575. source: "./media/characters/lisa/side-caribou.svg",
  40576. extra: 1851/1635,
  40577. bottom: 16/1867
  40578. }
  40579. },
  40580. backCaribou: {
  40581. height: math.unit(7 + 2/12, "feet"),
  40582. weight: math.unit(268, "lb"),
  40583. name: "Back (Caribou)",
  40584. image: {
  40585. source: "./media/characters/lisa/back-caribou.svg",
  40586. extra: 1801/1604,
  40587. bottom: 44/1845
  40588. }
  40589. },
  40590. mawCaribou: {
  40591. height: math.unit(1.45, "feet"),
  40592. name: "Maw (Caribou)",
  40593. image: {
  40594. source: "./media/characters/lisa/maw-caribou.svg"
  40595. }
  40596. },
  40597. mawCaribousune: {
  40598. height: math.unit(1.45, "feet"),
  40599. name: "Maw (Caribousune)",
  40600. image: {
  40601. source: "./media/characters/lisa/maw-caribousune.svg"
  40602. }
  40603. },
  40604. pawCaribousune: {
  40605. height: math.unit(1.61, "feet"),
  40606. name: "Paw (Caribou)",
  40607. image: {
  40608. source: "./media/characters/lisa/paw-caribousune.svg"
  40609. }
  40610. },
  40611. },
  40612. [
  40613. {
  40614. name: "Normal",
  40615. height: math.unit(6, "feet")
  40616. },
  40617. {
  40618. name: "God Size",
  40619. height: math.unit(72, "feet"),
  40620. default: true
  40621. },
  40622. {
  40623. name: "Towering",
  40624. height: math.unit(288, "feet")
  40625. },
  40626. {
  40627. name: "City Size",
  40628. height: math.unit(48384, "feet")
  40629. },
  40630. {
  40631. name: "Continental",
  40632. height: math.unit(4200, "miles")
  40633. },
  40634. {
  40635. name: "Planet Eater",
  40636. height: math.unit(42, "earths")
  40637. },
  40638. {
  40639. name: "Star Swallower",
  40640. height: math.unit(42, "solarradii")
  40641. },
  40642. {
  40643. name: "System Swallower",
  40644. height: math.unit(84000, "AU")
  40645. },
  40646. {
  40647. name: "Galaxy Gobbler",
  40648. height: math.unit(42, "galaxies")
  40649. },
  40650. {
  40651. name: "Universe Devourer",
  40652. height: math.unit(42, "universes")
  40653. },
  40654. {
  40655. name: "Multiverse Muncher",
  40656. height: math.unit(42, "multiverses")
  40657. },
  40658. ]
  40659. ))
  40660. characterMakers.push(() => makeCharacter(
  40661. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40662. {
  40663. front: {
  40664. height: math.unit(36, "feet"),
  40665. name: "Front",
  40666. image: {
  40667. source: "./media/characters/shadow-rat/front.svg",
  40668. extra: 1845/1758,
  40669. bottom: 83/1928
  40670. }
  40671. },
  40672. },
  40673. [
  40674. {
  40675. name: "Macro",
  40676. height: math.unit(36, "feet"),
  40677. default: true
  40678. },
  40679. ]
  40680. ))
  40681. characterMakers.push(() => makeCharacter(
  40682. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40683. {
  40684. side: {
  40685. height: math.unit(8, "feet"),
  40686. weight: math.unit(2630, "lb"),
  40687. name: "Side",
  40688. image: {
  40689. source: "./media/characters/torallia/side.svg",
  40690. extra: 2164/2021,
  40691. bottom: 371/2535
  40692. }
  40693. },
  40694. },
  40695. [
  40696. {
  40697. name: "Mortal Interaction",
  40698. height: math.unit(8, "feet")
  40699. },
  40700. {
  40701. name: "Natural",
  40702. height: math.unit(24, "feet"),
  40703. default: true
  40704. },
  40705. {
  40706. name: "Giant",
  40707. height: math.unit(80, "feet")
  40708. },
  40709. {
  40710. name: "Kaiju",
  40711. height: math.unit(240, "feet")
  40712. },
  40713. {
  40714. name: "Macro",
  40715. height: math.unit(800, "feet")
  40716. },
  40717. {
  40718. name: "Macro+",
  40719. height: math.unit(2400, "feet")
  40720. },
  40721. {
  40722. name: "Macro++",
  40723. height: math.unit(8000, "feet")
  40724. },
  40725. {
  40726. name: "City-Crushing",
  40727. height: math.unit(24000, "feet")
  40728. },
  40729. {
  40730. name: "Mountain-Mashing",
  40731. height: math.unit(80000, "feet")
  40732. },
  40733. {
  40734. name: "District Demolisher",
  40735. height: math.unit(240000, "feet")
  40736. },
  40737. {
  40738. name: "Tri-County Terror",
  40739. height: math.unit(800000, "feet")
  40740. },
  40741. {
  40742. name: "State Smasher",
  40743. height: math.unit(2.4e6, "feet")
  40744. },
  40745. {
  40746. name: "Nation Nemesis",
  40747. height: math.unit(8e6, "feet")
  40748. },
  40749. {
  40750. name: "Continent Cracker",
  40751. height: math.unit(2.4e7, "feet")
  40752. },
  40753. {
  40754. name: "Planet-Pillaging",
  40755. height: math.unit(8e7, "feet")
  40756. },
  40757. {
  40758. name: "Earth-Eclipsing",
  40759. height: math.unit(2.4e8, "feet")
  40760. },
  40761. {
  40762. name: "Jovian-Jostling",
  40763. height: math.unit(8e8, "feet")
  40764. },
  40765. {
  40766. name: "Gas Giant Gulper",
  40767. height: math.unit(2.4e9, "feet")
  40768. },
  40769. {
  40770. name: "Astral Annihilator",
  40771. height: math.unit(8e9, "feet")
  40772. },
  40773. {
  40774. name: "Celestial Conqueror",
  40775. height: math.unit(2.4e10, "feet")
  40776. },
  40777. {
  40778. name: "Sol-Swallowing",
  40779. height: math.unit(8e10, "feet")
  40780. },
  40781. {
  40782. name: "Hunter of the Heavens",
  40783. height: math.unit(2.4e13, "feet")
  40784. },
  40785. ]
  40786. ))
  40787. characterMakers.push(() => makeCharacter(
  40788. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40789. {
  40790. front: {
  40791. height: math.unit(6 + 8/12, "feet"),
  40792. weight: math.unit(250, "kilograms"),
  40793. volume: math.unit(28, "liters"),
  40794. name: "Front",
  40795. image: {
  40796. source: "./media/characters/rebecca-pawlson/front.svg",
  40797. extra: 1737/1596,
  40798. bottom: 107/1844
  40799. }
  40800. },
  40801. back: {
  40802. height: math.unit(6 + 8/12, "feet"),
  40803. weight: math.unit(250, "kilograms"),
  40804. volume: math.unit(28, "liters"),
  40805. name: "Back",
  40806. image: {
  40807. source: "./media/characters/rebecca-pawlson/back.svg",
  40808. extra: 1702/1523,
  40809. bottom: 86/1788
  40810. }
  40811. },
  40812. },
  40813. [
  40814. {
  40815. name: "Normal",
  40816. height: math.unit(6 + 8/12, "feet")
  40817. },
  40818. {
  40819. name: "Mini Macro",
  40820. height: math.unit(10, "feet"),
  40821. default: true
  40822. },
  40823. {
  40824. name: "Macro",
  40825. height: math.unit(100, "feet")
  40826. },
  40827. {
  40828. name: "Mega Macro",
  40829. height: math.unit(2500, "feet")
  40830. },
  40831. {
  40832. name: "Giga Macro",
  40833. height: math.unit(50, "miles")
  40834. },
  40835. ]
  40836. ))
  40837. characterMakers.push(() => makeCharacter(
  40838. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40839. {
  40840. front: {
  40841. height: math.unit(7 + 6/12, "feet"),
  40842. weight: math.unit(600, "lb"),
  40843. name: "Front",
  40844. image: {
  40845. source: "./media/characters/moxie-nova/front.svg",
  40846. extra: 1734/1652,
  40847. bottom: 41/1775
  40848. }
  40849. },
  40850. },
  40851. [
  40852. {
  40853. name: "Normal",
  40854. height: math.unit(7 + 6/12, "feet"),
  40855. default: true
  40856. },
  40857. ]
  40858. ))
  40859. characterMakers.push(() => makeCharacter(
  40860. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40861. {
  40862. goat: {
  40863. height: math.unit(4, "feet"),
  40864. weight: math.unit(180, "lb"),
  40865. name: "Goat",
  40866. image: {
  40867. source: "./media/characters/tiffany/goat.svg",
  40868. extra: 1845/1595,
  40869. bottom: 106/1951
  40870. }
  40871. },
  40872. front: {
  40873. height: math.unit(5, "feet"),
  40874. weight: math.unit(150, "lb"),
  40875. name: "Foxcoon",
  40876. image: {
  40877. source: "./media/characters/tiffany/foxcoon.svg",
  40878. extra: 1941/1845,
  40879. bottom: 58/1999
  40880. }
  40881. },
  40882. },
  40883. [
  40884. {
  40885. name: "Normal",
  40886. height: math.unit(5, "feet"),
  40887. default: true
  40888. },
  40889. ]
  40890. ))
  40891. characterMakers.push(() => makeCharacter(
  40892. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40893. {
  40894. front: {
  40895. height: math.unit(8, "feet"),
  40896. weight: math.unit(300, "lb"),
  40897. name: "Front",
  40898. image: {
  40899. source: "./media/characters/raxinath/front.svg",
  40900. extra: 1407/1309,
  40901. bottom: 39/1446
  40902. }
  40903. },
  40904. back: {
  40905. height: math.unit(8, "feet"),
  40906. weight: math.unit(300, "lb"),
  40907. name: "Back",
  40908. image: {
  40909. source: "./media/characters/raxinath/back.svg",
  40910. extra: 1405/1315,
  40911. bottom: 9/1414
  40912. }
  40913. },
  40914. },
  40915. [
  40916. {
  40917. name: "Speck",
  40918. height: math.unit(0.5, "nm")
  40919. },
  40920. {
  40921. name: "Micro",
  40922. height: math.unit(3, "inches")
  40923. },
  40924. {
  40925. name: "Kobold",
  40926. height: math.unit(3, "feet")
  40927. },
  40928. {
  40929. name: "Normal",
  40930. height: math.unit(8, "feet"),
  40931. default: true
  40932. },
  40933. {
  40934. name: "Giant",
  40935. height: math.unit(50, "feet")
  40936. },
  40937. {
  40938. name: "Macro",
  40939. height: math.unit(1000, "feet")
  40940. },
  40941. {
  40942. name: "Megamacro",
  40943. height: math.unit(1, "mile")
  40944. },
  40945. ]
  40946. ))
  40947. characterMakers.push(() => makeCharacter(
  40948. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40949. {
  40950. front: {
  40951. height: math.unit(10, "feet"),
  40952. weight: math.unit(1442, "lb"),
  40953. name: "Front",
  40954. image: {
  40955. source: "./media/characters/mal-dragon/front.svg",
  40956. extra: 1515/1444,
  40957. bottom: 113/1628
  40958. }
  40959. },
  40960. back: {
  40961. height: math.unit(10, "feet"),
  40962. weight: math.unit(1442, "lb"),
  40963. name: "Back",
  40964. image: {
  40965. source: "./media/characters/mal-dragon/back.svg",
  40966. extra: 1527/1434,
  40967. bottom: 25/1552
  40968. }
  40969. },
  40970. },
  40971. [
  40972. {
  40973. name: "Mortal Interaction",
  40974. height: math.unit(10, "feet"),
  40975. default: true
  40976. },
  40977. {
  40978. name: "Large",
  40979. height: math.unit(30, "feet")
  40980. },
  40981. {
  40982. name: "Kaiju",
  40983. height: math.unit(300, "feet")
  40984. },
  40985. {
  40986. name: "Megamacro",
  40987. height: math.unit(10000, "feet")
  40988. },
  40989. {
  40990. name: "Continent Cracker",
  40991. height: math.unit(30000000, "feet")
  40992. },
  40993. {
  40994. name: "Sol-Swallowing",
  40995. height: math.unit(1e11, "feet")
  40996. },
  40997. {
  40998. name: "Light Universal",
  40999. height: math.unit(5, "universes")
  41000. },
  41001. {
  41002. name: "Universe Atoms",
  41003. height: math.unit(1.829e9, "universes")
  41004. },
  41005. {
  41006. name: "Light Multiversal",
  41007. height: math.unit(5, "multiverses")
  41008. },
  41009. {
  41010. name: "Multiverse Atoms",
  41011. height: math.unit(1.829e9, "multiverses")
  41012. },
  41013. {
  41014. name: "Fabric of Time",
  41015. height: math.unit(1e262, "multiverses")
  41016. },
  41017. ]
  41018. ))
  41019. characterMakers.push(() => makeCharacter(
  41020. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41021. {
  41022. front: {
  41023. height: math.unit(9, "feet"),
  41024. weight: math.unit(1050, "lb"),
  41025. name: "Front",
  41026. image: {
  41027. source: "./media/characters/tabitha/front.svg",
  41028. extra: 2083/1994,
  41029. bottom: 68/2151
  41030. }
  41031. },
  41032. },
  41033. [
  41034. {
  41035. name: "Baseline",
  41036. height: math.unit(9, "feet"),
  41037. default: true
  41038. },
  41039. {
  41040. name: "Giant",
  41041. height: math.unit(90, "feet")
  41042. },
  41043. {
  41044. name: "Macro",
  41045. height: math.unit(900, "feet")
  41046. },
  41047. {
  41048. name: "Megamacro",
  41049. height: math.unit(9000, "feet")
  41050. },
  41051. {
  41052. name: "City-Crushing",
  41053. height: math.unit(27000, "feet")
  41054. },
  41055. {
  41056. name: "Mountain-Mashing",
  41057. height: math.unit(90000, "feet")
  41058. },
  41059. {
  41060. name: "Nation Nemesis",
  41061. height: math.unit(9e6, "feet")
  41062. },
  41063. {
  41064. name: "Continent Cracker",
  41065. height: math.unit(27e6, "feet")
  41066. },
  41067. {
  41068. name: "Earth-Eclipsing",
  41069. height: math.unit(2.7e8, "feet")
  41070. },
  41071. {
  41072. name: "Gas Giant Gulper",
  41073. height: math.unit(2.7e9, "feet")
  41074. },
  41075. {
  41076. name: "Sol-Swallowing",
  41077. height: math.unit(9e10, "feet")
  41078. },
  41079. {
  41080. name: "Galaxy Gulper",
  41081. height: math.unit(9, "galaxies")
  41082. },
  41083. {
  41084. name: "Cosmos Churner",
  41085. height: math.unit(9, "universes")
  41086. },
  41087. ]
  41088. ))
  41089. characterMakers.push(() => makeCharacter(
  41090. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41091. {
  41092. front: {
  41093. height: math.unit(160, "cm"),
  41094. weight: math.unit(55, "kg"),
  41095. name: "Front",
  41096. image: {
  41097. source: "./media/characters/tow/front.svg",
  41098. extra: 1751/1722,
  41099. bottom: 74/1825
  41100. }
  41101. },
  41102. },
  41103. [
  41104. {
  41105. name: "Norm",
  41106. height: math.unit(160, "cm")
  41107. },
  41108. {
  41109. name: "Casual",
  41110. height: math.unit(3200, "m"),
  41111. default: true
  41112. },
  41113. {
  41114. name: "Show-Off",
  41115. height: math.unit(160, "km")
  41116. },
  41117. ]
  41118. ))
  41119. characterMakers.push(() => makeCharacter(
  41120. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41121. {
  41122. front: {
  41123. height: math.unit(7 + 11/12, "feet"),
  41124. weight: math.unit(342.8, "lb"),
  41125. name: "Front",
  41126. image: {
  41127. source: "./media/characters/vivian-orca-dragon/front.svg",
  41128. extra: 1890/1865,
  41129. bottom: 28/1918
  41130. }
  41131. },
  41132. },
  41133. [
  41134. {
  41135. name: "Micro",
  41136. height: math.unit(5, "inches")
  41137. },
  41138. {
  41139. name: "Normal",
  41140. height: math.unit(7 + 11/12, "feet"),
  41141. default: true
  41142. },
  41143. {
  41144. name: "Macro",
  41145. height: math.unit(395 + 7/12, "feet")
  41146. },
  41147. ]
  41148. ))
  41149. characterMakers.push(() => makeCharacter(
  41150. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41151. {
  41152. side: {
  41153. height: math.unit(10, "feet"),
  41154. weight: math.unit(1442, "lb"),
  41155. name: "Side",
  41156. image: {
  41157. source: "./media/characters/lotherakon/side.svg",
  41158. extra: 1604/1497,
  41159. bottom: 89/1693
  41160. }
  41161. },
  41162. },
  41163. [
  41164. {
  41165. name: "Mortal Interaction",
  41166. height: math.unit(10, "feet")
  41167. },
  41168. {
  41169. name: "Large",
  41170. height: math.unit(30, "feet"),
  41171. default: true
  41172. },
  41173. {
  41174. name: "Giant",
  41175. height: math.unit(100, "feet")
  41176. },
  41177. {
  41178. name: "Kaiju",
  41179. height: math.unit(300, "feet")
  41180. },
  41181. {
  41182. name: "Macro",
  41183. height: math.unit(1000, "feet")
  41184. },
  41185. {
  41186. name: "Macro+",
  41187. height: math.unit(3000, "feet")
  41188. },
  41189. {
  41190. name: "Megamacro",
  41191. height: math.unit(10000, "feet")
  41192. },
  41193. {
  41194. name: "City-Crushing",
  41195. height: math.unit(30000, "feet")
  41196. },
  41197. {
  41198. name: "Continent Cracker",
  41199. height: math.unit(30e6, "feet")
  41200. },
  41201. {
  41202. name: "Earth Eclipsing",
  41203. height: math.unit(3e8, "feet")
  41204. },
  41205. {
  41206. name: "Gas Giant Gulper",
  41207. height: math.unit(3e9, "feet")
  41208. },
  41209. {
  41210. name: "Sol-Swallowing",
  41211. height: math.unit(1e11, "feet")
  41212. },
  41213. {
  41214. name: "System Swallower",
  41215. height: math.unit(3e14, "feet")
  41216. },
  41217. {
  41218. name: "Galaxy Gulper",
  41219. height: math.unit(10, "galaxies")
  41220. },
  41221. {
  41222. name: "Light Universal",
  41223. height: math.unit(5, "universes")
  41224. },
  41225. {
  41226. name: "Universe Palm",
  41227. height: math.unit(20, "universes")
  41228. },
  41229. {
  41230. name: "Light Multiversal",
  41231. height: math.unit(5, "multiverses")
  41232. },
  41233. {
  41234. name: "Multiverse Palm",
  41235. height: math.unit(20, "multiverses")
  41236. },
  41237. {
  41238. name: "Inferno Incarnate",
  41239. height: math.unit(1e7, "multiverses")
  41240. },
  41241. ]
  41242. ))
  41243. characterMakers.push(() => makeCharacter(
  41244. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41245. {
  41246. front: {
  41247. height: math.unit(8, "feet"),
  41248. weight: math.unit(1200, "lb"),
  41249. name: "Front",
  41250. image: {
  41251. source: "./media/characters/malithee/front.svg",
  41252. extra: 1675/1640,
  41253. bottom: 162/1837
  41254. }
  41255. },
  41256. },
  41257. [
  41258. {
  41259. name: "Mortal Interaction",
  41260. height: math.unit(8, "feet"),
  41261. default: true
  41262. },
  41263. {
  41264. name: "Large",
  41265. height: math.unit(24, "feet")
  41266. },
  41267. {
  41268. name: "Kaiju",
  41269. height: math.unit(240, "feet")
  41270. },
  41271. {
  41272. name: "Megamacro",
  41273. height: math.unit(8000, "feet")
  41274. },
  41275. {
  41276. name: "Continent Cracker",
  41277. height: math.unit(24e6, "feet")
  41278. },
  41279. {
  41280. name: "Earth-Eclipsing",
  41281. height: math.unit(2.4e8, "feet")
  41282. },
  41283. {
  41284. name: "Sol-Swallowing",
  41285. height: math.unit(8e10, "feet")
  41286. },
  41287. {
  41288. name: "Galaxy Gulper",
  41289. height: math.unit(8, "galaxies")
  41290. },
  41291. {
  41292. name: "Light Universal",
  41293. height: math.unit(4, "universes")
  41294. },
  41295. {
  41296. name: "Universe Atoms",
  41297. height: math.unit(1.829e9, "universes")
  41298. },
  41299. {
  41300. name: "Light Multiversal",
  41301. height: math.unit(4, "multiverses")
  41302. },
  41303. {
  41304. name: "Multiverse Atoms",
  41305. height: math.unit(1.829e9, "multiverses")
  41306. },
  41307. {
  41308. name: "Nigh-Omnipresence",
  41309. height: math.unit(8e261, "multiverses")
  41310. },
  41311. ]
  41312. ))
  41313. characterMakers.push(() => makeCharacter(
  41314. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41315. {
  41316. front: {
  41317. height: math.unit(10, "feet"),
  41318. weight: math.unit(1500, "lb"),
  41319. name: "Front",
  41320. image: {
  41321. source: "./media/characters/miles-thestia/front.svg",
  41322. extra: 1812/1727,
  41323. bottom: 86/1898
  41324. }
  41325. },
  41326. back: {
  41327. height: math.unit(10, "feet"),
  41328. weight: math.unit(1500, "lb"),
  41329. name: "Back",
  41330. image: {
  41331. source: "./media/characters/miles-thestia/back.svg",
  41332. extra: 1799/1690,
  41333. bottom: 47/1846
  41334. }
  41335. },
  41336. frontNsfw: {
  41337. height: math.unit(10, "feet"),
  41338. weight: math.unit(1500, "lb"),
  41339. name: "Front (NSFW)",
  41340. image: {
  41341. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41342. extra: 1812/1727,
  41343. bottom: 86/1898
  41344. }
  41345. },
  41346. },
  41347. [
  41348. {
  41349. name: "Mini-Macro",
  41350. height: math.unit(10, "feet"),
  41351. default: true
  41352. },
  41353. ]
  41354. ))
  41355. characterMakers.push(() => makeCharacter(
  41356. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41357. {
  41358. front: {
  41359. height: math.unit(25, "feet"),
  41360. name: "Front",
  41361. image: {
  41362. source: "./media/characters/titan-s-wulf/front.svg",
  41363. extra: 1560/1484,
  41364. bottom: 76/1636
  41365. }
  41366. },
  41367. },
  41368. [
  41369. {
  41370. name: "Smallest",
  41371. height: math.unit(25, "feet"),
  41372. default: true
  41373. },
  41374. {
  41375. name: "Normal",
  41376. height: math.unit(200, "feet")
  41377. },
  41378. {
  41379. name: "Macro",
  41380. height: math.unit(200000, "feet")
  41381. },
  41382. {
  41383. name: "Multiversal Original",
  41384. height: math.unit(10000, "multiverses")
  41385. },
  41386. ]
  41387. ))
  41388. characterMakers.push(() => makeCharacter(
  41389. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41390. {
  41391. front: {
  41392. height: math.unit(8, "feet"),
  41393. weight: math.unit(553, "lb"),
  41394. name: "Front",
  41395. image: {
  41396. source: "./media/characters/tawendeh/front.svg",
  41397. extra: 2365/2268,
  41398. bottom: 83/2448
  41399. }
  41400. },
  41401. frontClothed: {
  41402. height: math.unit(8, "feet"),
  41403. weight: math.unit(553, "lb"),
  41404. name: "Front (Clothed)",
  41405. image: {
  41406. source: "./media/characters/tawendeh/front-clothed.svg",
  41407. extra: 2365/2268,
  41408. bottom: 83/2448
  41409. }
  41410. },
  41411. back: {
  41412. height: math.unit(8, "feet"),
  41413. weight: math.unit(553, "lb"),
  41414. name: "Back",
  41415. image: {
  41416. source: "./media/characters/tawendeh/back.svg",
  41417. extra: 2397/2294,
  41418. bottom: 42/2439
  41419. }
  41420. },
  41421. },
  41422. [
  41423. {
  41424. name: "Mortal Interaction",
  41425. height: math.unit(8, "feet"),
  41426. default: true
  41427. },
  41428. {
  41429. name: "Giant",
  41430. height: math.unit(80, "feet")
  41431. },
  41432. {
  41433. name: "Macro",
  41434. height: math.unit(800, "feet")
  41435. },
  41436. {
  41437. name: "Megamacro",
  41438. height: math.unit(8000, "feet")
  41439. },
  41440. {
  41441. name: "City-Crushing",
  41442. height: math.unit(24000, "feet")
  41443. },
  41444. {
  41445. name: "Mountain-Mashing",
  41446. height: math.unit(80000, "feet")
  41447. },
  41448. {
  41449. name: "Nation Nemesis",
  41450. height: math.unit(8e6, "feet")
  41451. },
  41452. {
  41453. name: "Continent Cracker",
  41454. height: math.unit(24e6, "feet")
  41455. },
  41456. {
  41457. name: "Earth-Eclipsing",
  41458. height: math.unit(2.4e8, "feet")
  41459. },
  41460. {
  41461. name: "Gas Giant Gulper",
  41462. height: math.unit(2.4e9, "feet")
  41463. },
  41464. {
  41465. name: "Sol-Swallowing",
  41466. height: math.unit(8e10, "feet")
  41467. },
  41468. {
  41469. name: "Galaxy Gulper",
  41470. height: math.unit(8, "galaxies")
  41471. },
  41472. {
  41473. name: "Cosmos Churner",
  41474. height: math.unit(8, "universes")
  41475. },
  41476. {
  41477. name: "Omnipotent Otter",
  41478. height: math.unit(80, "universes")
  41479. },
  41480. ]
  41481. ))
  41482. characterMakers.push(() => makeCharacter(
  41483. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41484. {
  41485. front: {
  41486. height: math.unit(2.6, "meters"),
  41487. weight: math.unit(900, "kg"),
  41488. name: "Front",
  41489. image: {
  41490. source: "./media/characters/neesha/front.svg",
  41491. extra: 1803/1653,
  41492. bottom: 128/1931
  41493. }
  41494. },
  41495. },
  41496. [
  41497. {
  41498. name: "Normal",
  41499. height: math.unit(2.6, "meters"),
  41500. default: true
  41501. },
  41502. {
  41503. name: "Macro",
  41504. height: math.unit(50, "meters")
  41505. },
  41506. ]
  41507. ))
  41508. characterMakers.push(() => makeCharacter(
  41509. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41510. {
  41511. front: {
  41512. height: math.unit(5, "feet"),
  41513. weight: math.unit(185, "lb"),
  41514. name: "Front",
  41515. image: {
  41516. source: "./media/characters/kyera/front.svg",
  41517. extra: 1875/1790,
  41518. bottom: 96/1971
  41519. }
  41520. },
  41521. },
  41522. [
  41523. {
  41524. name: "Normal",
  41525. height: math.unit(5, "feet"),
  41526. default: true
  41527. },
  41528. ]
  41529. ))
  41530. characterMakers.push(() => makeCharacter(
  41531. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41532. {
  41533. front: {
  41534. height: math.unit(7 + 6/12, "feet"),
  41535. weight: math.unit(540, "lb"),
  41536. name: "Front",
  41537. image: {
  41538. source: "./media/characters/yuko/front.svg",
  41539. extra: 1282/1222,
  41540. bottom: 101/1383
  41541. }
  41542. },
  41543. frontClothed: {
  41544. height: math.unit(7 + 6/12, "feet"),
  41545. weight: math.unit(540, "lb"),
  41546. name: "Front (Clothed)",
  41547. image: {
  41548. source: "./media/characters/yuko/front-clothed.svg",
  41549. extra: 1282/1222,
  41550. bottom: 101/1383
  41551. }
  41552. },
  41553. },
  41554. [
  41555. {
  41556. name: "Normal",
  41557. height: math.unit(7 + 6/12, "feet"),
  41558. default: true
  41559. },
  41560. {
  41561. name: "Macro",
  41562. height: math.unit(26 + 9/12, "feet")
  41563. },
  41564. {
  41565. name: "Megamacro",
  41566. height: math.unit(300, "feet")
  41567. },
  41568. {
  41569. name: "Gigamacro",
  41570. height: math.unit(5000, "feet")
  41571. },
  41572. {
  41573. name: "Planetary",
  41574. height: math.unit(10000, "miles")
  41575. },
  41576. ]
  41577. ))
  41578. characterMakers.push(() => makeCharacter(
  41579. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41580. {
  41581. front: {
  41582. height: math.unit(8 + 2/12, "feet"),
  41583. weight: math.unit(600, "lb"),
  41584. name: "Front",
  41585. image: {
  41586. source: "./media/characters/deam-nitrel/front.svg",
  41587. extra: 1308/1234,
  41588. bottom: 125/1433
  41589. }
  41590. },
  41591. },
  41592. [
  41593. {
  41594. name: "Normal",
  41595. height: math.unit(8 + 2/12, "feet"),
  41596. default: true
  41597. },
  41598. ]
  41599. ))
  41600. characterMakers.push(() => makeCharacter(
  41601. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41602. {
  41603. front: {
  41604. height: math.unit(6.1, "feet"),
  41605. weight: math.unit(180, "lb"),
  41606. name: "Front",
  41607. image: {
  41608. source: "./media/characters/skyress/front.svg",
  41609. extra: 1045/915,
  41610. bottom: 28/1073
  41611. }
  41612. },
  41613. maw: {
  41614. height: math.unit(1, "feet"),
  41615. name: "Maw",
  41616. image: {
  41617. source: "./media/characters/skyress/maw.svg"
  41618. }
  41619. },
  41620. },
  41621. [
  41622. {
  41623. name: "Normal",
  41624. height: math.unit(6.1, "feet"),
  41625. default: true
  41626. },
  41627. {
  41628. name: "Macro",
  41629. height: math.unit(200, "feet")
  41630. },
  41631. ]
  41632. ))
  41633. characterMakers.push(() => makeCharacter(
  41634. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41635. {
  41636. front: {
  41637. height: math.unit(4 + 2/12, "feet"),
  41638. weight: math.unit(40, "kg"),
  41639. name: "Front",
  41640. image: {
  41641. source: "./media/characters/amethyst-jones/front.svg",
  41642. extra: 1220/1150,
  41643. bottom: 101/1321
  41644. }
  41645. },
  41646. },
  41647. [
  41648. {
  41649. name: "Normal",
  41650. height: math.unit(4 + 2/12, "feet"),
  41651. default: true
  41652. },
  41653. ]
  41654. ))
  41655. characterMakers.push(() => makeCharacter(
  41656. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41657. {
  41658. front: {
  41659. height: math.unit(1.7, "m"),
  41660. weight: math.unit(135, "lb"),
  41661. name: "Front",
  41662. image: {
  41663. source: "./media/characters/jade/front.svg",
  41664. extra: 1818/1767,
  41665. bottom: 32/1850
  41666. }
  41667. },
  41668. back: {
  41669. height: math.unit(1.7, "m"),
  41670. weight: math.unit(135, "lb"),
  41671. name: "Back",
  41672. image: {
  41673. source: "./media/characters/jade/back.svg",
  41674. extra: 1869/1809,
  41675. bottom: 35/1904
  41676. }
  41677. },
  41678. hand: {
  41679. height: math.unit(0.24, "m"),
  41680. name: "Hand",
  41681. image: {
  41682. source: "./media/characters/jade/hand.svg"
  41683. }
  41684. },
  41685. foot: {
  41686. height: math.unit(0.263, "m"),
  41687. name: "Foot",
  41688. image: {
  41689. source: "./media/characters/jade/foot.svg"
  41690. }
  41691. },
  41692. dick: {
  41693. height: math.unit(0.47, "m"),
  41694. name: "Dick",
  41695. image: {
  41696. source: "./media/characters/jade/dick.svg"
  41697. }
  41698. },
  41699. },
  41700. [
  41701. {
  41702. name: "Micro",
  41703. height: math.unit(22, "cm")
  41704. },
  41705. {
  41706. name: "Normal",
  41707. height: math.unit(1.7, "m"),
  41708. default: true
  41709. },
  41710. {
  41711. name: "Macro",
  41712. height: math.unit(152, "m")
  41713. },
  41714. ]
  41715. ))
  41716. characterMakers.push(() => makeCharacter(
  41717. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41718. {
  41719. front: {
  41720. height: math.unit(100, "miles"),
  41721. weight: math.unit(20000, "tons"),
  41722. name: "Front",
  41723. image: {
  41724. source: "./media/characters/cookie/front.svg",
  41725. extra: 1125/1070,
  41726. bottom: 30/1155
  41727. }
  41728. },
  41729. },
  41730. [
  41731. {
  41732. name: "Big",
  41733. height: math.unit(50, "feet")
  41734. },
  41735. {
  41736. name: "Macro",
  41737. height: math.unit(100, "miles"),
  41738. default: true
  41739. },
  41740. {
  41741. name: "Megamacro",
  41742. height: math.unit(90000, "miles")
  41743. },
  41744. ]
  41745. ))
  41746. characterMakers.push(() => makeCharacter(
  41747. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41748. {
  41749. front: {
  41750. height: math.unit(6, "feet"),
  41751. weight: math.unit(145, "lb"),
  41752. name: "Front",
  41753. image: {
  41754. source: "./media/characters/farzian/front.svg",
  41755. extra: 1902/1693,
  41756. bottom: 108/2010
  41757. }
  41758. },
  41759. },
  41760. [
  41761. {
  41762. name: "Macro",
  41763. height: math.unit(500, "feet"),
  41764. default: true
  41765. },
  41766. ]
  41767. ))
  41768. characterMakers.push(() => makeCharacter(
  41769. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41770. {
  41771. front: {
  41772. height: math.unit(3 + 6/12, "feet"),
  41773. weight: math.unit(50, "lb"),
  41774. name: "Front",
  41775. image: {
  41776. source: "./media/characters/kimberly-tilson/front.svg",
  41777. extra: 1400/1322,
  41778. bottom: 36/1436
  41779. }
  41780. },
  41781. back: {
  41782. height: math.unit(3 + 6/12, "feet"),
  41783. weight: math.unit(50, "lb"),
  41784. name: "Back",
  41785. image: {
  41786. source: "./media/characters/kimberly-tilson/back.svg",
  41787. extra: 1370/1307,
  41788. bottom: 20/1390
  41789. }
  41790. },
  41791. },
  41792. [
  41793. {
  41794. name: "Normal",
  41795. height: math.unit(3 + 6/12, "feet"),
  41796. default: true
  41797. },
  41798. ]
  41799. ))
  41800. characterMakers.push(() => makeCharacter(
  41801. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41802. {
  41803. front: {
  41804. height: math.unit(1148, "feet"),
  41805. weight: math.unit(34057, "lb"),
  41806. name: "Front",
  41807. image: {
  41808. source: "./media/characters/harthos/front.svg",
  41809. extra: 1391/1339,
  41810. bottom: 13/1404
  41811. }
  41812. },
  41813. },
  41814. [
  41815. {
  41816. name: "Macro",
  41817. height: math.unit(1148, "feet"),
  41818. default: true
  41819. },
  41820. ]
  41821. ))
  41822. characterMakers.push(() => makeCharacter(
  41823. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41824. {
  41825. front: {
  41826. height: math.unit(15, "feet"),
  41827. name: "Front",
  41828. image: {
  41829. source: "./media/characters/hypatia/front.svg",
  41830. extra: 1653/1591,
  41831. bottom: 79/1732
  41832. }
  41833. },
  41834. },
  41835. [
  41836. {
  41837. name: "Normal",
  41838. height: math.unit(15, "feet")
  41839. },
  41840. {
  41841. name: "Small",
  41842. height: math.unit(300, "feet")
  41843. },
  41844. {
  41845. name: "Macro",
  41846. height: math.unit(2500, "feet"),
  41847. default: true
  41848. },
  41849. {
  41850. name: "Mega Macro",
  41851. height: math.unit(1500, "miles")
  41852. },
  41853. {
  41854. name: "Giga Macro",
  41855. height: math.unit(1.5e6, "miles")
  41856. },
  41857. ]
  41858. ))
  41859. characterMakers.push(() => makeCharacter(
  41860. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41861. {
  41862. front: {
  41863. height: math.unit(6, "feet"),
  41864. weight: math.unit(200, "lb"),
  41865. name: "Front",
  41866. image: {
  41867. source: "./media/characters/wulver/front.svg",
  41868. extra: 1724/1632,
  41869. bottom: 130/1854
  41870. }
  41871. },
  41872. frontNsfw: {
  41873. height: math.unit(6, "feet"),
  41874. weight: math.unit(200, "lb"),
  41875. name: "Front (NSFW)",
  41876. image: {
  41877. source: "./media/characters/wulver/front-nsfw.svg",
  41878. extra: 1724/1632,
  41879. bottom: 130/1854
  41880. }
  41881. },
  41882. },
  41883. [
  41884. {
  41885. name: "Human-Sized",
  41886. height: math.unit(6, "feet")
  41887. },
  41888. {
  41889. name: "Normal",
  41890. height: math.unit(4, "meters"),
  41891. default: true
  41892. },
  41893. {
  41894. name: "Large",
  41895. height: math.unit(6, "m")
  41896. },
  41897. ]
  41898. ))
  41899. characterMakers.push(() => makeCharacter(
  41900. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41901. {
  41902. front: {
  41903. height: math.unit(7, "feet"),
  41904. name: "Front",
  41905. image: {
  41906. source: "./media/characters/maru/front.svg",
  41907. extra: 1595/1570,
  41908. bottom: 0/1595
  41909. }
  41910. },
  41911. },
  41912. [
  41913. {
  41914. name: "Normal",
  41915. height: math.unit(7, "feet"),
  41916. default: true
  41917. },
  41918. {
  41919. name: "Macro",
  41920. height: math.unit(700, "feet")
  41921. },
  41922. {
  41923. name: "Mega Macro",
  41924. height: math.unit(25, "miles")
  41925. },
  41926. ]
  41927. ))
  41928. characterMakers.push(() => makeCharacter(
  41929. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41930. {
  41931. front: {
  41932. height: math.unit(6, "feet"),
  41933. weight: math.unit(170, "lb"),
  41934. name: "Front",
  41935. image: {
  41936. source: "./media/characters/xenon/front.svg",
  41937. extra: 1376/1305,
  41938. bottom: 56/1432
  41939. }
  41940. },
  41941. back: {
  41942. height: math.unit(6, "feet"),
  41943. weight: math.unit(170, "lb"),
  41944. name: "Back",
  41945. image: {
  41946. source: "./media/characters/xenon/back.svg",
  41947. extra: 1328/1259,
  41948. bottom: 95/1423
  41949. }
  41950. },
  41951. maw: {
  41952. height: math.unit(0.52, "feet"),
  41953. name: "Maw",
  41954. image: {
  41955. source: "./media/characters/xenon/maw.svg"
  41956. }
  41957. },
  41958. handLeft: {
  41959. height: math.unit(0.82 * 169 / 153, "feet"),
  41960. name: "Hand (Left)",
  41961. image: {
  41962. source: "./media/characters/xenon/hand-left.svg"
  41963. }
  41964. },
  41965. handRight: {
  41966. height: math.unit(0.82, "feet"),
  41967. name: "Hand (Right)",
  41968. image: {
  41969. source: "./media/characters/xenon/hand-right.svg"
  41970. }
  41971. },
  41972. footLeft: {
  41973. height: math.unit(1.13, "feet"),
  41974. name: "Foot (Left)",
  41975. image: {
  41976. source: "./media/characters/xenon/foot-left.svg"
  41977. }
  41978. },
  41979. footRight: {
  41980. height: math.unit(1.13 * 194 / 196, "feet"),
  41981. name: "Foot (Right)",
  41982. image: {
  41983. source: "./media/characters/xenon/foot-right.svg"
  41984. }
  41985. },
  41986. },
  41987. [
  41988. {
  41989. name: "Micro",
  41990. height: math.unit(0.8, "inches")
  41991. },
  41992. {
  41993. name: "Normal",
  41994. height: math.unit(6, "feet")
  41995. },
  41996. {
  41997. name: "Macro",
  41998. height: math.unit(50, "feet"),
  41999. default: true
  42000. },
  42001. {
  42002. name: "Macro+",
  42003. height: math.unit(250, "feet")
  42004. },
  42005. {
  42006. name: "Megamacro",
  42007. height: math.unit(1500, "feet")
  42008. },
  42009. ]
  42010. ))
  42011. characterMakers.push(() => makeCharacter(
  42012. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42013. {
  42014. front: {
  42015. height: math.unit(7 + 5/12, "feet"),
  42016. name: "Front",
  42017. image: {
  42018. source: "./media/characters/zane/front.svg",
  42019. extra: 1260/1203,
  42020. bottom: 94/1354
  42021. }
  42022. },
  42023. back: {
  42024. height: math.unit(5.05, "feet"),
  42025. name: "Back",
  42026. image: {
  42027. source: "./media/characters/zane/back.svg",
  42028. extra: 893/829,
  42029. bottom: 30/923
  42030. }
  42031. },
  42032. werewolf: {
  42033. height: math.unit(11, "feet"),
  42034. name: "Werewolf",
  42035. image: {
  42036. source: "./media/characters/zane/werewolf.svg",
  42037. extra: 1383/1323,
  42038. bottom: 89/1472
  42039. }
  42040. },
  42041. foot: {
  42042. height: math.unit(1.46, "feet"),
  42043. name: "Foot",
  42044. image: {
  42045. source: "./media/characters/zane/foot.svg"
  42046. }
  42047. },
  42048. footFront: {
  42049. height: math.unit(0.784, "feet"),
  42050. name: "Foot (Front)",
  42051. image: {
  42052. source: "./media/characters/zane/foot-front.svg"
  42053. }
  42054. },
  42055. dick: {
  42056. height: math.unit(1.95, "feet"),
  42057. name: "Dick",
  42058. image: {
  42059. source: "./media/characters/zane/dick.svg"
  42060. }
  42061. },
  42062. dickWerewolf: {
  42063. height: math.unit(3.77, "feet"),
  42064. name: "Dick (Werewolf)",
  42065. image: {
  42066. source: "./media/characters/zane/dick.svg"
  42067. }
  42068. },
  42069. },
  42070. [
  42071. {
  42072. name: "Normal",
  42073. height: math.unit(7 + 5/12, "feet"),
  42074. default: true
  42075. },
  42076. ]
  42077. ))
  42078. characterMakers.push(() => makeCharacter(
  42079. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42080. {
  42081. front: {
  42082. height: math.unit(6 + 2/12, "feet"),
  42083. weight: math.unit(284, "lb"),
  42084. name: "Front",
  42085. image: {
  42086. source: "./media/characters/benni-desparque/front.svg",
  42087. extra: 1353/1126,
  42088. bottom: 69/1422
  42089. }
  42090. },
  42091. },
  42092. [
  42093. {
  42094. name: "Civilian",
  42095. height: math.unit(6 + 2/12, "feet")
  42096. },
  42097. {
  42098. name: "Normal",
  42099. height: math.unit(98, "feet"),
  42100. default: true
  42101. },
  42102. {
  42103. name: "Kaiju Fighter",
  42104. height: math.unit(268, "feet")
  42105. },
  42106. ]
  42107. ))
  42108. characterMakers.push(() => makeCharacter(
  42109. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42110. {
  42111. front: {
  42112. height: math.unit(5, "feet"),
  42113. weight: math.unit(105, "lb"),
  42114. name: "Front",
  42115. image: {
  42116. source: "./media/characters/maxine/front.svg",
  42117. extra: 1386/1250,
  42118. bottom: 71/1457
  42119. }
  42120. },
  42121. },
  42122. [
  42123. {
  42124. name: "Normal",
  42125. height: math.unit(5, "feet"),
  42126. default: true
  42127. },
  42128. ]
  42129. ))
  42130. characterMakers.push(() => makeCharacter(
  42131. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42132. {
  42133. front: {
  42134. height: math.unit(11 + 7/12, "feet"),
  42135. weight: math.unit(9576, "lb"),
  42136. name: "Front",
  42137. image: {
  42138. source: "./media/characters/scaly/front.svg",
  42139. extra: 888/867,
  42140. bottom: 36/924
  42141. }
  42142. },
  42143. },
  42144. [
  42145. {
  42146. name: "Normal",
  42147. height: math.unit(11 + 7/12, "feet"),
  42148. default: true
  42149. },
  42150. ]
  42151. ))
  42152. characterMakers.push(() => makeCharacter(
  42153. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42154. {
  42155. front: {
  42156. height: math.unit(6 + 3/12, "feet"),
  42157. name: "Front",
  42158. image: {
  42159. source: "./media/characters/saelria/front.svg",
  42160. extra: 1243/1138,
  42161. bottom: 46/1289
  42162. }
  42163. },
  42164. },
  42165. [
  42166. {
  42167. name: "Micro",
  42168. height: math.unit(6, "inches"),
  42169. },
  42170. {
  42171. name: "Normal",
  42172. height: math.unit(6 + 3/12, "feet"),
  42173. default: true
  42174. },
  42175. {
  42176. name: "Macro",
  42177. height: math.unit(25, "feet")
  42178. },
  42179. ]
  42180. ))
  42181. characterMakers.push(() => makeCharacter(
  42182. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42183. {
  42184. front: {
  42185. height: math.unit(80, "meters"),
  42186. weight: math.unit(7000, "tonnes"),
  42187. name: "Front",
  42188. image: {
  42189. source: "./media/characters/tef/front.svg",
  42190. extra: 2036/1991,
  42191. bottom: 54/2090
  42192. }
  42193. },
  42194. back: {
  42195. height: math.unit(80, "meters"),
  42196. weight: math.unit(7000, "tonnes"),
  42197. name: "Back",
  42198. image: {
  42199. source: "./media/characters/tef/back.svg",
  42200. extra: 2036/1991,
  42201. bottom: 54/2090
  42202. }
  42203. },
  42204. },
  42205. [
  42206. {
  42207. name: "Macro",
  42208. height: math.unit(80, "meters"),
  42209. default: true
  42210. },
  42211. ]
  42212. ))
  42213. characterMakers.push(() => makeCharacter(
  42214. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42215. {
  42216. front: {
  42217. height: math.unit(13, "feet"),
  42218. weight: math.unit(6, "tons"),
  42219. name: "Front",
  42220. image: {
  42221. source: "./media/characters/rover/front.svg",
  42222. extra: 1233/1156,
  42223. bottom: 50/1283
  42224. }
  42225. },
  42226. back: {
  42227. height: math.unit(13, "feet"),
  42228. weight: math.unit(6, "tons"),
  42229. name: "Back",
  42230. image: {
  42231. source: "./media/characters/rover/back.svg",
  42232. extra: 1327/1258,
  42233. bottom: 39/1366
  42234. }
  42235. },
  42236. },
  42237. [
  42238. {
  42239. name: "Normal",
  42240. height: math.unit(13, "feet"),
  42241. default: true
  42242. },
  42243. {
  42244. name: "Macro",
  42245. height: math.unit(1300, "feet")
  42246. },
  42247. {
  42248. name: "Megamacro",
  42249. height: math.unit(1300, "miles")
  42250. },
  42251. {
  42252. name: "Gigamacro",
  42253. height: math.unit(1300000, "miles")
  42254. },
  42255. ]
  42256. ))
  42257. characterMakers.push(() => makeCharacter(
  42258. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42259. {
  42260. front: {
  42261. height: math.unit(6, "feet"),
  42262. weight: math.unit(150, "lb"),
  42263. name: "Front",
  42264. image: {
  42265. source: "./media/characters/ariz/front.svg",
  42266. extra: 1401/1346,
  42267. bottom: 5/1406
  42268. }
  42269. },
  42270. },
  42271. [
  42272. {
  42273. name: "Normal",
  42274. height: math.unit(10, "feet"),
  42275. default: true
  42276. },
  42277. ]
  42278. ))
  42279. characterMakers.push(() => makeCharacter(
  42280. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42281. {
  42282. front: {
  42283. height: math.unit(6, "feet"),
  42284. weight: math.unit(140, "lb"),
  42285. name: "Front",
  42286. image: {
  42287. source: "./media/characters/sigrun/front.svg",
  42288. extra: 1418/1359,
  42289. bottom: 27/1445
  42290. }
  42291. },
  42292. },
  42293. [
  42294. {
  42295. name: "Macro",
  42296. height: math.unit(35, "feet"),
  42297. default: true
  42298. },
  42299. ]
  42300. ))
  42301. characterMakers.push(() => makeCharacter(
  42302. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42303. {
  42304. front: {
  42305. height: math.unit(6, "feet"),
  42306. weight: math.unit(150, "lb"),
  42307. name: "Front",
  42308. image: {
  42309. source: "./media/characters/numin/front.svg",
  42310. extra: 1433/1388,
  42311. bottom: 12/1445
  42312. }
  42313. },
  42314. },
  42315. [
  42316. {
  42317. name: "Macro",
  42318. height: math.unit(21.5, "km"),
  42319. default: true
  42320. },
  42321. ]
  42322. ))
  42323. characterMakers.push(() => makeCharacter(
  42324. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42325. {
  42326. front: {
  42327. height: math.unit(6, "feet"),
  42328. weight: math.unit(463, "lb"),
  42329. name: "Front",
  42330. image: {
  42331. source: "./media/characters/melwa/front.svg",
  42332. extra: 1307/1248,
  42333. bottom: 93/1400
  42334. }
  42335. },
  42336. },
  42337. [
  42338. {
  42339. name: "Macro",
  42340. height: math.unit(50, "meters"),
  42341. default: true
  42342. },
  42343. ]
  42344. ))
  42345. characterMakers.push(() => makeCharacter(
  42346. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42347. {
  42348. front: {
  42349. height: math.unit(325, "feet"),
  42350. name: "Front",
  42351. image: {
  42352. source: "./media/characters/zorkaiju/front.svg",
  42353. extra: 1955/1814,
  42354. bottom: 40/1995
  42355. }
  42356. },
  42357. frontExtended: {
  42358. height: math.unit(325, "feet"),
  42359. name: "Front (Extended)",
  42360. image: {
  42361. source: "./media/characters/zorkaiju/front-extended.svg",
  42362. extra: 1955/1814,
  42363. bottom: 40/1995
  42364. }
  42365. },
  42366. side: {
  42367. height: math.unit(325, "feet"),
  42368. name: "Side",
  42369. image: {
  42370. source: "./media/characters/zorkaiju/side.svg",
  42371. extra: 1495/1396,
  42372. bottom: 17/1512
  42373. }
  42374. },
  42375. sideExtended: {
  42376. height: math.unit(325, "feet"),
  42377. name: "Side (Extended)",
  42378. image: {
  42379. source: "./media/characters/zorkaiju/side-extended.svg",
  42380. extra: 1495/1396,
  42381. bottom: 17/1512
  42382. }
  42383. },
  42384. back: {
  42385. height: math.unit(325, "feet"),
  42386. name: "Back",
  42387. image: {
  42388. source: "./media/characters/zorkaiju/back.svg",
  42389. extra: 1959/1821,
  42390. bottom: 31/1990
  42391. }
  42392. },
  42393. backExtended: {
  42394. height: math.unit(325, "feet"),
  42395. name: "Back (Extended)",
  42396. image: {
  42397. source: "./media/characters/zorkaiju/back-extended.svg",
  42398. extra: 1959/1821,
  42399. bottom: 31/1990
  42400. }
  42401. },
  42402. hand: {
  42403. height: math.unit(58.4, "feet"),
  42404. name: "Hand",
  42405. image: {
  42406. source: "./media/characters/zorkaiju/hand.svg"
  42407. }
  42408. },
  42409. handExtended: {
  42410. height: math.unit(61.4, "feet"),
  42411. name: "Hand (Extended)",
  42412. image: {
  42413. source: "./media/characters/zorkaiju/hand-extended.svg"
  42414. }
  42415. },
  42416. foot: {
  42417. height: math.unit(95, "feet"),
  42418. name: "Foot",
  42419. image: {
  42420. source: "./media/characters/zorkaiju/foot.svg"
  42421. }
  42422. },
  42423. leftArm: {
  42424. height: math.unit(59, "feet"),
  42425. name: "Left Arm",
  42426. image: {
  42427. source: "./media/characters/zorkaiju/left-arm.svg"
  42428. }
  42429. },
  42430. rightArm: {
  42431. height: math.unit(59, "feet"),
  42432. name: "Right Arm",
  42433. image: {
  42434. source: "./media/characters/zorkaiju/right-arm.svg"
  42435. }
  42436. },
  42437. leftArmExtended: {
  42438. height: math.unit(59 * 1.033546, "feet"),
  42439. name: "Left Arm (Extended)",
  42440. image: {
  42441. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42442. }
  42443. },
  42444. rightArmExtended: {
  42445. height: math.unit(59 * 1.0496, "feet"),
  42446. name: "Right Arm (Extended)",
  42447. image: {
  42448. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42449. }
  42450. },
  42451. tail: {
  42452. height: math.unit(104, "feet"),
  42453. name: "Tail",
  42454. image: {
  42455. source: "./media/characters/zorkaiju/tail.svg"
  42456. }
  42457. },
  42458. tailExtended: {
  42459. height: math.unit(104, "feet"),
  42460. name: "Tail (Extended)",
  42461. image: {
  42462. source: "./media/characters/zorkaiju/tail-extended.svg"
  42463. }
  42464. },
  42465. tailBottom: {
  42466. height: math.unit(104, "feet"),
  42467. name: "Tail Bottom",
  42468. image: {
  42469. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42470. }
  42471. },
  42472. crystal: {
  42473. height: math.unit(27.54, "feet"),
  42474. name: "Crystal",
  42475. image: {
  42476. source: "./media/characters/zorkaiju/crystal.svg"
  42477. }
  42478. },
  42479. },
  42480. [
  42481. {
  42482. name: "Kaiju",
  42483. height: math.unit(325, "feet"),
  42484. default: true
  42485. },
  42486. ]
  42487. ))
  42488. characterMakers.push(() => makeCharacter(
  42489. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42490. {
  42491. front: {
  42492. height: math.unit(6 + 1/12, "feet"),
  42493. weight: math.unit(115, "lb"),
  42494. name: "Front",
  42495. image: {
  42496. source: "./media/characters/bailey-belfry/front.svg",
  42497. extra: 1240/1121,
  42498. bottom: 101/1341
  42499. }
  42500. },
  42501. },
  42502. [
  42503. {
  42504. name: "Normal",
  42505. height: math.unit(6 + 1/12, "feet"),
  42506. default: true
  42507. },
  42508. ]
  42509. ))
  42510. characterMakers.push(() => makeCharacter(
  42511. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42512. {
  42513. side: {
  42514. height: math.unit(4, "meters"),
  42515. weight: math.unit(250, "kg"),
  42516. name: "Side",
  42517. image: {
  42518. source: "./media/characters/blacky/side.svg",
  42519. extra: 1027/919,
  42520. bottom: 43/1070
  42521. }
  42522. },
  42523. maw: {
  42524. height: math.unit(1, "meters"),
  42525. name: "Maw",
  42526. image: {
  42527. source: "./media/characters/blacky/maw.svg"
  42528. }
  42529. },
  42530. paw: {
  42531. height: math.unit(1, "meters"),
  42532. name: "Paw",
  42533. image: {
  42534. source: "./media/characters/blacky/paw.svg"
  42535. }
  42536. },
  42537. },
  42538. [
  42539. {
  42540. name: "Normal",
  42541. height: math.unit(4, "meters"),
  42542. default: true
  42543. },
  42544. ]
  42545. ))
  42546. characterMakers.push(() => makeCharacter(
  42547. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42548. {
  42549. front: {
  42550. height: math.unit(170, "cm"),
  42551. weight: math.unit(66, "kg"),
  42552. name: "Front",
  42553. image: {
  42554. source: "./media/characters/thux-ei/front.svg",
  42555. extra: 1109/1011,
  42556. bottom: 8/1117
  42557. }
  42558. },
  42559. },
  42560. [
  42561. {
  42562. name: "Normal",
  42563. height: math.unit(170, "cm"),
  42564. default: true
  42565. },
  42566. ]
  42567. ))
  42568. characterMakers.push(() => makeCharacter(
  42569. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42570. {
  42571. front: {
  42572. height: math.unit(5, "feet"),
  42573. weight: math.unit(120, "lb"),
  42574. name: "Front",
  42575. image: {
  42576. source: "./media/characters/roxanne-voltaire/front.svg",
  42577. extra: 1901/1779,
  42578. bottom: 53/1954
  42579. }
  42580. },
  42581. },
  42582. [
  42583. {
  42584. name: "Normal",
  42585. height: math.unit(5, "feet"),
  42586. default: true
  42587. },
  42588. {
  42589. name: "Giant",
  42590. height: math.unit(50, "feet")
  42591. },
  42592. {
  42593. name: "Titan",
  42594. height: math.unit(500, "feet")
  42595. },
  42596. {
  42597. name: "Macro",
  42598. height: math.unit(5000, "feet")
  42599. },
  42600. {
  42601. name: "Megamacro",
  42602. height: math.unit(50000, "feet")
  42603. },
  42604. {
  42605. name: "Gigamacro",
  42606. height: math.unit(500000, "feet")
  42607. },
  42608. {
  42609. name: "Teramacro",
  42610. height: math.unit(5e6, "feet")
  42611. },
  42612. ]
  42613. ))
  42614. characterMakers.push(() => makeCharacter(
  42615. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42616. {
  42617. front: {
  42618. height: math.unit(6 + 2/12, "feet"),
  42619. name: "Front",
  42620. image: {
  42621. source: "./media/characters/squeaks/front.svg",
  42622. extra: 1823/1768,
  42623. bottom: 138/1961
  42624. }
  42625. },
  42626. },
  42627. [
  42628. {
  42629. name: "Micro",
  42630. height: math.unit(0.5, "inches")
  42631. },
  42632. {
  42633. name: "Normal",
  42634. height: math.unit(6 + 2/12, "feet"),
  42635. default: true
  42636. },
  42637. {
  42638. name: "Macro",
  42639. height: math.unit(600, "feet")
  42640. },
  42641. ]
  42642. ))
  42643. characterMakers.push(() => makeCharacter(
  42644. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42645. {
  42646. front: {
  42647. height: math.unit(1.72, "meters"),
  42648. name: "Front",
  42649. image: {
  42650. source: "./media/characters/archinger/front.svg",
  42651. extra: 1861/1675,
  42652. bottom: 125/1986
  42653. }
  42654. },
  42655. back: {
  42656. height: math.unit(1.72, "meters"),
  42657. name: "Back",
  42658. image: {
  42659. source: "./media/characters/archinger/back.svg",
  42660. extra: 1844/1701,
  42661. bottom: 104/1948
  42662. }
  42663. },
  42664. cock: {
  42665. height: math.unit(0.59, "feet"),
  42666. name: "Cock",
  42667. image: {
  42668. source: "./media/characters/archinger/cock.svg"
  42669. }
  42670. },
  42671. },
  42672. [
  42673. {
  42674. name: "Normal",
  42675. height: math.unit(1.72, "meters"),
  42676. default: true
  42677. },
  42678. {
  42679. name: "Macro",
  42680. height: math.unit(84, "meters")
  42681. },
  42682. {
  42683. name: "Macro+",
  42684. height: math.unit(112, "meters")
  42685. },
  42686. {
  42687. name: "Macro++",
  42688. height: math.unit(960, "meters")
  42689. },
  42690. {
  42691. name: "Macro+++",
  42692. height: math.unit(4, "km")
  42693. },
  42694. {
  42695. name: "Macro++++",
  42696. height: math.unit(48, "km")
  42697. },
  42698. {
  42699. name: "Macro+++++",
  42700. height: math.unit(4500, "km")
  42701. },
  42702. ]
  42703. ))
  42704. characterMakers.push(() => makeCharacter(
  42705. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42706. {
  42707. front: {
  42708. height: math.unit(5 + 5/12, "feet"),
  42709. name: "Front",
  42710. image: {
  42711. source: "./media/characters/alsnapz/front.svg",
  42712. extra: 1157/1065,
  42713. bottom: 42/1199
  42714. }
  42715. },
  42716. },
  42717. [
  42718. {
  42719. name: "Normal",
  42720. height: math.unit(5 + 5/12, "feet"),
  42721. default: true
  42722. },
  42723. ]
  42724. ))
  42725. characterMakers.push(() => makeCharacter(
  42726. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42727. {
  42728. side: {
  42729. height: math.unit(3.2, "earths"),
  42730. name: "Side",
  42731. image: {
  42732. source: "./media/characters/mag/side.svg",
  42733. extra: 1331/1008,
  42734. bottom: 52/1383
  42735. }
  42736. },
  42737. wing: {
  42738. height: math.unit(1.94, "earths"),
  42739. name: "Wing",
  42740. image: {
  42741. source: "./media/characters/mag/wing.svg"
  42742. }
  42743. },
  42744. dick: {
  42745. height: math.unit(1.8, "earths"),
  42746. name: "Dick",
  42747. image: {
  42748. source: "./media/characters/mag/dick.svg"
  42749. }
  42750. },
  42751. ass: {
  42752. height: math.unit(1.33, "earths"),
  42753. name: "Ass",
  42754. image: {
  42755. source: "./media/characters/mag/ass.svg"
  42756. }
  42757. },
  42758. head: {
  42759. height: math.unit(1.1, "earths"),
  42760. name: "Head",
  42761. image: {
  42762. source: "./media/characters/mag/head.svg"
  42763. }
  42764. },
  42765. maw: {
  42766. height: math.unit(1.62, "earths"),
  42767. name: "Maw",
  42768. image: {
  42769. source: "./media/characters/mag/maw.svg"
  42770. }
  42771. },
  42772. },
  42773. [
  42774. {
  42775. name: "Small",
  42776. height: math.unit(162, "feet")
  42777. },
  42778. {
  42779. name: "Normal",
  42780. height: math.unit(3.2, "earths"),
  42781. default: true
  42782. },
  42783. ]
  42784. ))
  42785. characterMakers.push(() => makeCharacter(
  42786. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42787. {
  42788. front: {
  42789. height: math.unit(512, "feet"),
  42790. weight: math.unit(63509, "tonnes"),
  42791. name: "Front",
  42792. image: {
  42793. source: "./media/characters/vorrel-harroc/front.svg",
  42794. extra: 1075/1063,
  42795. bottom: 62/1137
  42796. }
  42797. },
  42798. },
  42799. [
  42800. {
  42801. name: "Normal",
  42802. height: math.unit(10, "feet")
  42803. },
  42804. {
  42805. name: "Macro",
  42806. height: math.unit(512, "feet"),
  42807. default: true
  42808. },
  42809. {
  42810. name: "Megamacro",
  42811. height: math.unit(256, "miles")
  42812. },
  42813. {
  42814. name: "Gigamacro",
  42815. height: math.unit(4096, "miles")
  42816. },
  42817. ]
  42818. ))
  42819. characterMakers.push(() => makeCharacter(
  42820. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42821. {
  42822. side: {
  42823. height: math.unit(50, "feet"),
  42824. name: "Side",
  42825. image: {
  42826. source: "./media/characters/froimar/side.svg",
  42827. extra: 855/638,
  42828. bottom: 99/954
  42829. }
  42830. },
  42831. },
  42832. [
  42833. {
  42834. name: "Macro",
  42835. height: math.unit(50, "feet"),
  42836. default: true
  42837. },
  42838. ]
  42839. ))
  42840. characterMakers.push(() => makeCharacter(
  42841. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42842. {
  42843. front: {
  42844. height: math.unit(210, "miles"),
  42845. name: "Front",
  42846. image: {
  42847. source: "./media/characters/timothy/front.svg",
  42848. extra: 1007/943,
  42849. bottom: 62/1069
  42850. }
  42851. },
  42852. frontSkirt: {
  42853. height: math.unit(210, "miles"),
  42854. name: "Front (Skirt)",
  42855. image: {
  42856. source: "./media/characters/timothy/front-skirt.svg",
  42857. extra: 1007/943,
  42858. bottom: 62/1069
  42859. }
  42860. },
  42861. frontCoat: {
  42862. height: math.unit(210, "miles"),
  42863. name: "Front (Coat)",
  42864. image: {
  42865. source: "./media/characters/timothy/front-coat.svg",
  42866. extra: 1007/943,
  42867. bottom: 62/1069
  42868. }
  42869. },
  42870. },
  42871. [
  42872. {
  42873. name: "Macro",
  42874. height: math.unit(210, "miles"),
  42875. default: true
  42876. },
  42877. {
  42878. name: "Megamacro",
  42879. height: math.unit(210000, "miles")
  42880. },
  42881. ]
  42882. ))
  42883. characterMakers.push(() => makeCharacter(
  42884. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42885. {
  42886. front: {
  42887. height: math.unit(188, "feet"),
  42888. name: "Front",
  42889. image: {
  42890. source: "./media/characters/pyotr/front.svg",
  42891. extra: 1912/1826,
  42892. bottom: 18/1930
  42893. }
  42894. },
  42895. },
  42896. [
  42897. {
  42898. name: "Macro",
  42899. height: math.unit(188, "feet"),
  42900. default: true
  42901. },
  42902. {
  42903. name: "Megamacro",
  42904. height: math.unit(8, "miles")
  42905. },
  42906. ]
  42907. ))
  42908. characterMakers.push(() => makeCharacter(
  42909. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42910. {
  42911. side: {
  42912. height: math.unit(10, "feet"),
  42913. weight: math.unit(4500, "lb"),
  42914. name: "Side",
  42915. image: {
  42916. source: "./media/characters/ackart/side.svg",
  42917. extra: 1776/1668,
  42918. bottom: 116/1892
  42919. }
  42920. },
  42921. },
  42922. [
  42923. {
  42924. name: "Normal",
  42925. height: math.unit(10, "feet"),
  42926. default: true
  42927. },
  42928. ]
  42929. ))
  42930. characterMakers.push(() => makeCharacter(
  42931. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42932. {
  42933. side: {
  42934. height: math.unit(21, "feet"),
  42935. name: "Side",
  42936. image: {
  42937. source: "./media/characters/nolow/side.svg",
  42938. extra: 1484/1434,
  42939. bottom: 85/1569
  42940. }
  42941. },
  42942. sideErect: {
  42943. height: math.unit(21, "feet"),
  42944. name: "Side-erect",
  42945. image: {
  42946. source: "./media/characters/nolow/side-erect.svg",
  42947. extra: 1484/1434,
  42948. bottom: 85/1569
  42949. }
  42950. },
  42951. },
  42952. [
  42953. {
  42954. name: "Regular",
  42955. height: math.unit(12, "feet")
  42956. },
  42957. {
  42958. name: "Big Chee",
  42959. height: math.unit(21, "feet"),
  42960. default: true
  42961. },
  42962. ]
  42963. ))
  42964. characterMakers.push(() => makeCharacter(
  42965. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42966. {
  42967. front: {
  42968. height: math.unit(7, "feet"),
  42969. weight: math.unit(250, "lb"),
  42970. name: "Front",
  42971. image: {
  42972. source: "./media/characters/nines/front.svg",
  42973. extra: 1741/1607,
  42974. bottom: 41/1782
  42975. }
  42976. },
  42977. side: {
  42978. height: math.unit(7, "feet"),
  42979. weight: math.unit(250, "lb"),
  42980. name: "Side",
  42981. image: {
  42982. source: "./media/characters/nines/side.svg",
  42983. extra: 1854/1735,
  42984. bottom: 93/1947
  42985. }
  42986. },
  42987. back: {
  42988. height: math.unit(7, "feet"),
  42989. weight: math.unit(250, "lb"),
  42990. name: "Back",
  42991. image: {
  42992. source: "./media/characters/nines/back.svg",
  42993. extra: 1748/1615,
  42994. bottom: 20/1768
  42995. }
  42996. },
  42997. },
  42998. [
  42999. {
  43000. name: "Megamacro",
  43001. height: math.unit(99, "km"),
  43002. default: true
  43003. },
  43004. ]
  43005. ))
  43006. characterMakers.push(() => makeCharacter(
  43007. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43008. {
  43009. front: {
  43010. height: math.unit(5 + 10/12, "feet"),
  43011. weight: math.unit(210, "lb"),
  43012. name: "Front",
  43013. image: {
  43014. source: "./media/characters/zenith/front.svg",
  43015. extra: 1531/1452,
  43016. bottom: 198/1729
  43017. }
  43018. },
  43019. back: {
  43020. height: math.unit(5 + 10/12, "feet"),
  43021. weight: math.unit(210, "lb"),
  43022. name: "Back",
  43023. image: {
  43024. source: "./media/characters/zenith/back.svg",
  43025. extra: 1571/1487,
  43026. bottom: 75/1646
  43027. }
  43028. },
  43029. },
  43030. [
  43031. {
  43032. name: "Normal",
  43033. height: math.unit(5 + 10/12, "feet"),
  43034. default: true
  43035. }
  43036. ]
  43037. ))
  43038. characterMakers.push(() => makeCharacter(
  43039. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43040. {
  43041. front: {
  43042. height: math.unit(4, "feet"),
  43043. weight: math.unit(60, "lb"),
  43044. name: "Front",
  43045. image: {
  43046. source: "./media/characters/jasper/front.svg",
  43047. extra: 1450/1379,
  43048. bottom: 19/1469
  43049. }
  43050. },
  43051. },
  43052. [
  43053. {
  43054. name: "Normal",
  43055. height: math.unit(4, "feet"),
  43056. default: true
  43057. },
  43058. ]
  43059. ))
  43060. characterMakers.push(() => makeCharacter(
  43061. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43062. {
  43063. front: {
  43064. height: math.unit(6 + 5/12, "feet"),
  43065. weight: math.unit(290, "lb"),
  43066. name: "Front",
  43067. image: {
  43068. source: "./media/characters/tiberius-thyben/front.svg",
  43069. extra: 757/739,
  43070. bottom: 39/796
  43071. }
  43072. },
  43073. },
  43074. [
  43075. {
  43076. name: "Micro",
  43077. height: math.unit(1.5, "inches")
  43078. },
  43079. {
  43080. name: "Normal",
  43081. height: math.unit(6 + 5/12, "feet"),
  43082. default: true
  43083. },
  43084. {
  43085. name: "Macro",
  43086. height: math.unit(300, "feet")
  43087. },
  43088. ]
  43089. ))
  43090. characterMakers.push(() => makeCharacter(
  43091. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43092. {
  43093. front: {
  43094. height: math.unit(5 + 6/12, "feet"),
  43095. weight: math.unit(60, "kg"),
  43096. name: "Front",
  43097. image: {
  43098. source: "./media/characters/sabre/front.svg",
  43099. extra: 738/671,
  43100. bottom: 27/765
  43101. }
  43102. },
  43103. },
  43104. [
  43105. {
  43106. name: "Teeny",
  43107. height: math.unit(2, "inches")
  43108. },
  43109. {
  43110. name: "Smol",
  43111. height: math.unit(8, "inches")
  43112. },
  43113. {
  43114. name: "Normal",
  43115. height: math.unit(5 + 6/12, "feet"),
  43116. default: true
  43117. },
  43118. {
  43119. name: "Mini-Macro",
  43120. height: math.unit(15, "feet")
  43121. },
  43122. {
  43123. name: "Macro",
  43124. height: math.unit(50, "feet")
  43125. },
  43126. ]
  43127. ))
  43128. characterMakers.push(() => makeCharacter(
  43129. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43130. {
  43131. front: {
  43132. height: math.unit(6 + 4/12, "feet"),
  43133. weight: math.unit(170, "lb"),
  43134. name: "Front",
  43135. image: {
  43136. source: "./media/characters/charlie/front.svg",
  43137. extra: 1348/1228,
  43138. bottom: 15/1363
  43139. }
  43140. },
  43141. },
  43142. [
  43143. {
  43144. name: "Macro",
  43145. height: math.unit(1700, "meters"),
  43146. default: true
  43147. },
  43148. {
  43149. name: "MegaMacro",
  43150. height: math.unit(20400, "meters")
  43151. },
  43152. ]
  43153. ))
  43154. characterMakers.push(() => makeCharacter(
  43155. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43156. {
  43157. front: {
  43158. height: math.unit(6 + 3/12, "feet"),
  43159. weight: math.unit(185, "lb"),
  43160. name: "Front",
  43161. image: {
  43162. source: "./media/characters/susan-grant/front.svg",
  43163. extra: 1351/1327,
  43164. bottom: 26/1377
  43165. }
  43166. },
  43167. },
  43168. [
  43169. {
  43170. name: "Normal",
  43171. height: math.unit(6 + 3/12, "feet"),
  43172. default: true
  43173. },
  43174. {
  43175. name: "Macro",
  43176. height: math.unit(225, "feet")
  43177. },
  43178. {
  43179. name: "Macro+",
  43180. height: math.unit(900, "feet")
  43181. },
  43182. {
  43183. name: "MegaMacro",
  43184. height: math.unit(14400, "feet")
  43185. },
  43186. ]
  43187. ))
  43188. characterMakers.push(() => makeCharacter(
  43189. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43190. {
  43191. front: {
  43192. height: math.unit(5 + 4/12, "feet"),
  43193. weight: math.unit(110, "lb"),
  43194. name: "Front",
  43195. image: {
  43196. source: "./media/characters/axel-isanov/front.svg",
  43197. extra: 1096/1065,
  43198. bottom: 13/1109
  43199. }
  43200. },
  43201. },
  43202. [
  43203. {
  43204. name: "Normal",
  43205. height: math.unit(5 + 4/12, "feet"),
  43206. default: true
  43207. },
  43208. ]
  43209. ))
  43210. characterMakers.push(() => makeCharacter(
  43211. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43212. {
  43213. front: {
  43214. height: math.unit(9, "feet"),
  43215. weight: math.unit(467, "lb"),
  43216. name: "Front",
  43217. image: {
  43218. source: "./media/characters/necahual/front.svg",
  43219. extra: 920/873,
  43220. bottom: 26/946
  43221. }
  43222. },
  43223. back: {
  43224. height: math.unit(9, "feet"),
  43225. weight: math.unit(467, "lb"),
  43226. name: "Back",
  43227. image: {
  43228. source: "./media/characters/necahual/back.svg",
  43229. extra: 930/884,
  43230. bottom: 16/946
  43231. }
  43232. },
  43233. frontUnderwear: {
  43234. height: math.unit(9, "feet"),
  43235. weight: math.unit(467, "lb"),
  43236. name: "Front (Underwear)",
  43237. image: {
  43238. source: "./media/characters/necahual/front-underwear.svg",
  43239. extra: 920/873,
  43240. bottom: 26/946
  43241. }
  43242. },
  43243. frontDressed: {
  43244. height: math.unit(9, "feet"),
  43245. weight: math.unit(467, "lb"),
  43246. name: "Front (Dressed)",
  43247. image: {
  43248. source: "./media/characters/necahual/front-dressed.svg",
  43249. extra: 920/873,
  43250. bottom: 26/946
  43251. }
  43252. },
  43253. },
  43254. [
  43255. {
  43256. name: "Comprsesed",
  43257. height: math.unit(9, "feet")
  43258. },
  43259. {
  43260. name: "Natural",
  43261. height: math.unit(15, "feet"),
  43262. default: true
  43263. },
  43264. {
  43265. name: "Boosted",
  43266. height: math.unit(50, "feet")
  43267. },
  43268. {
  43269. name: "Boosted+",
  43270. height: math.unit(150, "feet")
  43271. },
  43272. {
  43273. name: "Max",
  43274. height: math.unit(500, "feet")
  43275. },
  43276. ]
  43277. ))
  43278. characterMakers.push(() => makeCharacter(
  43279. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43280. {
  43281. front: {
  43282. height: math.unit(22 + 1/12, "feet"),
  43283. weight: math.unit(3200, "lb"),
  43284. name: "Front",
  43285. image: {
  43286. source: "./media/characters/theo-acacia/front.svg",
  43287. extra: 1796/1741,
  43288. bottom: 83/1879
  43289. }
  43290. },
  43291. frontUnderwear: {
  43292. height: math.unit(22 + 1/12, "feet"),
  43293. weight: math.unit(3200, "lb"),
  43294. name: "Front (Underwear)",
  43295. image: {
  43296. source: "./media/characters/theo-acacia/front-underwear.svg",
  43297. extra: 1796/1741,
  43298. bottom: 83/1879
  43299. }
  43300. },
  43301. frontNude: {
  43302. height: math.unit(22 + 1/12, "feet"),
  43303. weight: math.unit(3200, "lb"),
  43304. name: "Front (Nude)",
  43305. image: {
  43306. source: "./media/characters/theo-acacia/front-nude.svg",
  43307. extra: 1796/1741,
  43308. bottom: 83/1879
  43309. }
  43310. },
  43311. },
  43312. [
  43313. {
  43314. name: "Normal",
  43315. height: math.unit(22 + 1/12, "feet"),
  43316. default: true
  43317. },
  43318. ]
  43319. ))
  43320. characterMakers.push(() => makeCharacter(
  43321. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43322. {
  43323. front: {
  43324. height: math.unit(20, "feet"),
  43325. name: "Front",
  43326. image: {
  43327. source: "./media/characters/astra/front.svg",
  43328. extra: 1850/1714,
  43329. bottom: 106/1956
  43330. }
  43331. },
  43332. frontUndressed: {
  43333. height: math.unit(20, "feet"),
  43334. name: "Front (Undressed)",
  43335. image: {
  43336. source: "./media/characters/astra/front-undressed.svg",
  43337. extra: 1926/1749,
  43338. bottom: 0/1926
  43339. }
  43340. },
  43341. hand: {
  43342. height: math.unit(1.53, "feet"),
  43343. name: "Hand",
  43344. image: {
  43345. source: "./media/characters/astra/hand.svg"
  43346. }
  43347. },
  43348. paw: {
  43349. height: math.unit(1.53, "feet"),
  43350. name: "Paw",
  43351. image: {
  43352. source: "./media/characters/astra/paw.svg"
  43353. }
  43354. },
  43355. },
  43356. [
  43357. {
  43358. name: "Smallest",
  43359. height: math.unit(20, "feet")
  43360. },
  43361. {
  43362. name: "Normal",
  43363. height: math.unit(1e9, "miles"),
  43364. default: true
  43365. },
  43366. {
  43367. name: "Larger",
  43368. height: math.unit(5, "multiverses")
  43369. },
  43370. {
  43371. name: "Largest",
  43372. height: math.unit(1e9, "multiverses")
  43373. },
  43374. ]
  43375. ))
  43376. characterMakers.push(() => makeCharacter(
  43377. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43378. {
  43379. front: {
  43380. height: math.unit(8, "feet"),
  43381. name: "Front",
  43382. image: {
  43383. source: "./media/characters/breanna/front.svg",
  43384. extra: 1912/1632,
  43385. bottom: 33/1945
  43386. }
  43387. },
  43388. },
  43389. [
  43390. {
  43391. name: "Smallest",
  43392. height: math.unit(8, "feet")
  43393. },
  43394. {
  43395. name: "Normal",
  43396. height: math.unit(1, "mile"),
  43397. default: true
  43398. },
  43399. {
  43400. name: "Maximum",
  43401. height: math.unit(1500000000000, "lightyears")
  43402. },
  43403. ]
  43404. ))
  43405. characterMakers.push(() => makeCharacter(
  43406. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43407. {
  43408. front: {
  43409. height: math.unit(5 + 11/12, "feet"),
  43410. weight: math.unit(155, "lb"),
  43411. name: "Front",
  43412. image: {
  43413. source: "./media/characters/cai/front.svg",
  43414. extra: 1823/1702,
  43415. bottom: 32/1855
  43416. }
  43417. },
  43418. back: {
  43419. height: math.unit(5 + 11/12, "feet"),
  43420. weight: math.unit(155, "lb"),
  43421. name: "Back",
  43422. image: {
  43423. source: "./media/characters/cai/back.svg",
  43424. extra: 1809/1708,
  43425. bottom: 31/1840
  43426. }
  43427. },
  43428. },
  43429. [
  43430. {
  43431. name: "Normal",
  43432. height: math.unit(5 + 11/12, "feet"),
  43433. default: true
  43434. },
  43435. {
  43436. name: "Big",
  43437. height: math.unit(15, "feet")
  43438. },
  43439. {
  43440. name: "Macro",
  43441. height: math.unit(200, "feet")
  43442. },
  43443. ]
  43444. ))
  43445. characterMakers.push(() => makeCharacter(
  43446. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43447. {
  43448. front: {
  43449. height: math.unit(5 + 6/12, "feet"),
  43450. weight: math.unit(160, "lb"),
  43451. name: "Front",
  43452. image: {
  43453. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43454. extra: 1227/1174,
  43455. bottom: 37/1264
  43456. }
  43457. },
  43458. },
  43459. [
  43460. {
  43461. name: "Macro",
  43462. height: math.unit(444, "meters"),
  43463. default: true
  43464. },
  43465. ]
  43466. ))
  43467. characterMakers.push(() => makeCharacter(
  43468. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43469. {
  43470. front: {
  43471. height: math.unit(18 + 7/12, "feet"),
  43472. name: "Front",
  43473. image: {
  43474. source: "./media/characters/rex/front.svg",
  43475. extra: 1941/1807,
  43476. bottom: 66/2007
  43477. }
  43478. },
  43479. back: {
  43480. height: math.unit(18 + 7/12, "feet"),
  43481. name: "Back",
  43482. image: {
  43483. source: "./media/characters/rex/back.svg",
  43484. extra: 1937/1822,
  43485. bottom: 42/1979
  43486. }
  43487. },
  43488. boot: {
  43489. height: math.unit(3.45, "feet"),
  43490. name: "Boot",
  43491. image: {
  43492. source: "./media/characters/rex/boot.svg"
  43493. }
  43494. },
  43495. paw: {
  43496. height: math.unit(4.17, "feet"),
  43497. name: "Paw",
  43498. image: {
  43499. source: "./media/characters/rex/paw.svg"
  43500. }
  43501. },
  43502. head: {
  43503. height: math.unit(6.728, "feet"),
  43504. name: "Head",
  43505. image: {
  43506. source: "./media/characters/rex/head.svg"
  43507. }
  43508. },
  43509. },
  43510. [
  43511. {
  43512. name: "Nano",
  43513. height: math.unit(18 + 7/12, "feet")
  43514. },
  43515. {
  43516. name: "Micro",
  43517. height: math.unit(1.5, "megameters")
  43518. },
  43519. {
  43520. name: "Normal",
  43521. height: math.unit(440, "megameters"),
  43522. default: true
  43523. },
  43524. {
  43525. name: "Macro",
  43526. height: math.unit(2.5, "gigameters")
  43527. },
  43528. {
  43529. name: "Gigamacro",
  43530. height: math.unit(2, "galaxies")
  43531. },
  43532. ]
  43533. ))
  43534. characterMakers.push(() => makeCharacter(
  43535. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43536. {
  43537. side: {
  43538. height: math.unit(32, "feet"),
  43539. weight: math.unit(250000, "lb"),
  43540. name: "Side",
  43541. image: {
  43542. source: "./media/characters/silverwing/side.svg",
  43543. extra: 1100/1019,
  43544. bottom: 204/1304
  43545. }
  43546. },
  43547. },
  43548. [
  43549. {
  43550. name: "Normal",
  43551. height: math.unit(32, "feet"),
  43552. default: true
  43553. },
  43554. ]
  43555. ))
  43556. characterMakers.push(() => makeCharacter(
  43557. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43558. {
  43559. front: {
  43560. height: math.unit(6 + 6/12, "feet"),
  43561. weight: math.unit(350, "lb"),
  43562. name: "Front",
  43563. image: {
  43564. source: "./media/characters/tristan-hawthorne/front.svg",
  43565. extra: 1159/1124,
  43566. bottom: 37/1196
  43567. },
  43568. form: "labrador",
  43569. default: true
  43570. },
  43571. skunkFront: {
  43572. height: math.unit(4 + 6/12, "feet"),
  43573. weight: math.unit(120, "lb"),
  43574. name: "Front",
  43575. image: {
  43576. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43577. extra: 1609/1551,
  43578. bottom: 169/1778
  43579. },
  43580. form: "skunk",
  43581. default: true
  43582. },
  43583. },
  43584. [
  43585. {
  43586. name: "Normal",
  43587. height: math.unit(6 + 6/12, "feet"),
  43588. form: "labrador",
  43589. default: true
  43590. },
  43591. {
  43592. name: "Normal",
  43593. height: math.unit(4 + 6/12, "feet"),
  43594. form: "skunk",
  43595. default: true
  43596. },
  43597. ],
  43598. {
  43599. "labrador": {
  43600. name: "Labrador",
  43601. default: true
  43602. },
  43603. "skunk": {
  43604. name: "Skunk"
  43605. }
  43606. }
  43607. ))
  43608. characterMakers.push(() => makeCharacter(
  43609. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43610. {
  43611. front: {
  43612. height: math.unit(5 + 11/12, "feet"),
  43613. weight: math.unit(190, "lb"),
  43614. name: "Front",
  43615. image: {
  43616. source: "./media/characters/mizu/front.svg",
  43617. extra: 1988/1788,
  43618. bottom: 14/2002
  43619. }
  43620. },
  43621. },
  43622. [
  43623. {
  43624. name: "Normal",
  43625. height: math.unit(5 + 11/12, "feet"),
  43626. default: true
  43627. },
  43628. ]
  43629. ))
  43630. characterMakers.push(() => makeCharacter(
  43631. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43632. {
  43633. front: {
  43634. height: math.unit(1.7, "feet"),
  43635. weight: math.unit(50, "lb"),
  43636. name: "Front",
  43637. image: {
  43638. source: "./media/characters/dechroma/front.svg",
  43639. extra: 1095/859,
  43640. bottom: 64/1159
  43641. }
  43642. },
  43643. },
  43644. [
  43645. {
  43646. name: "Normal",
  43647. height: math.unit(1.7, "feet"),
  43648. default: true
  43649. },
  43650. ]
  43651. ))
  43652. characterMakers.push(() => makeCharacter(
  43653. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43654. {
  43655. side: {
  43656. height: math.unit(30, "feet"),
  43657. name: "Side",
  43658. image: {
  43659. source: "./media/characters/veluren-thanazel/side.svg",
  43660. extra: 1611/633,
  43661. bottom: 118/1729
  43662. }
  43663. },
  43664. front: {
  43665. height: math.unit(30, "feet"),
  43666. name: "Front",
  43667. image: {
  43668. source: "./media/characters/veluren-thanazel/front.svg",
  43669. extra: 1486/636,
  43670. bottom: 238/1724
  43671. }
  43672. },
  43673. head: {
  43674. height: math.unit(21.4, "feet"),
  43675. name: "Head",
  43676. image: {
  43677. source: "./media/characters/veluren-thanazel/head.svg"
  43678. }
  43679. },
  43680. genitals: {
  43681. height: math.unit(19.4, "feet"),
  43682. name: "Genitals",
  43683. image: {
  43684. source: "./media/characters/veluren-thanazel/genitals.svg"
  43685. }
  43686. },
  43687. },
  43688. [
  43689. {
  43690. name: "Social",
  43691. height: math.unit(6, "feet")
  43692. },
  43693. {
  43694. name: "Play",
  43695. height: math.unit(12, "feet")
  43696. },
  43697. {
  43698. name: "True",
  43699. height: math.unit(30, "feet"),
  43700. default: true
  43701. },
  43702. ]
  43703. ))
  43704. characterMakers.push(() => makeCharacter(
  43705. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43706. {
  43707. front: {
  43708. height: math.unit(7 + 6/12, "feet"),
  43709. weight: math.unit(500, "kg"),
  43710. name: "Front",
  43711. image: {
  43712. source: "./media/characters/arcturas/front.svg",
  43713. extra: 1700/1500,
  43714. bottom: 145/1845
  43715. }
  43716. },
  43717. },
  43718. [
  43719. {
  43720. name: "Normal",
  43721. height: math.unit(7 + 6/12, "feet"),
  43722. default: true
  43723. },
  43724. ]
  43725. ))
  43726. characterMakers.push(() => makeCharacter(
  43727. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43728. {
  43729. side: {
  43730. height: math.unit(6, "feet"),
  43731. weight: math.unit(2, "tons"),
  43732. name: "Side",
  43733. image: {
  43734. source: "./media/characters/vitaen/side.svg",
  43735. extra: 1157/617,
  43736. bottom: 122/1279
  43737. }
  43738. },
  43739. },
  43740. [
  43741. {
  43742. name: "Normal",
  43743. height: math.unit(6, "feet"),
  43744. default: true
  43745. },
  43746. ]
  43747. ))
  43748. characterMakers.push(() => makeCharacter(
  43749. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43750. {
  43751. front: {
  43752. height: math.unit(19, "feet"),
  43753. name: "Front",
  43754. image: {
  43755. source: "./media/characters/fia-dreamweaver/front.svg",
  43756. extra: 1630/1504,
  43757. bottom: 25/1655
  43758. }
  43759. },
  43760. },
  43761. [
  43762. {
  43763. name: "Normal",
  43764. height: math.unit(19, "feet"),
  43765. default: true
  43766. },
  43767. ]
  43768. ))
  43769. characterMakers.push(() => makeCharacter(
  43770. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43771. {
  43772. front: {
  43773. height: math.unit(5 + 4/12, "feet"),
  43774. name: "Front",
  43775. image: {
  43776. source: "./media/characters/artan/front.svg",
  43777. extra: 1618/1535,
  43778. bottom: 46/1664
  43779. }
  43780. },
  43781. back: {
  43782. height: math.unit(5 + 4/12, "feet"),
  43783. name: "Back",
  43784. image: {
  43785. source: "./media/characters/artan/back.svg",
  43786. extra: 1618/1543,
  43787. bottom: 31/1649
  43788. }
  43789. },
  43790. },
  43791. [
  43792. {
  43793. name: "Normal",
  43794. height: math.unit(5 + 4/12, "feet"),
  43795. default: true
  43796. },
  43797. ]
  43798. ))
  43799. characterMakers.push(() => makeCharacter(
  43800. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43801. {
  43802. side: {
  43803. height: math.unit(182, "cm"),
  43804. weight: math.unit(1000, "lb"),
  43805. name: "Side",
  43806. image: {
  43807. source: "./media/characters/silver-dragon/side.svg",
  43808. extra: 710/287,
  43809. bottom: 88/798
  43810. }
  43811. },
  43812. },
  43813. [
  43814. {
  43815. name: "Normal",
  43816. height: math.unit(182, "cm"),
  43817. default: true
  43818. },
  43819. ]
  43820. ))
  43821. characterMakers.push(() => makeCharacter(
  43822. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43823. {
  43824. side: {
  43825. height: math.unit(6 + 6/12, "feet"),
  43826. weight: math.unit(1.5, "tons"),
  43827. name: "Side",
  43828. image: {
  43829. source: "./media/characters/zephyr/side.svg",
  43830. extra: 1433/586,
  43831. bottom: 109/1542
  43832. }
  43833. },
  43834. },
  43835. [
  43836. {
  43837. name: "Normal",
  43838. height: math.unit(6 + 6/12, "feet"),
  43839. default: true
  43840. },
  43841. ]
  43842. ))
  43843. characterMakers.push(() => makeCharacter(
  43844. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43845. {
  43846. side: {
  43847. height: math.unit(1, "feet"),
  43848. name: "Side",
  43849. image: {
  43850. source: "./media/characters/vixye/side.svg",
  43851. extra: 632/541,
  43852. bottom: 0/632
  43853. }
  43854. },
  43855. },
  43856. [
  43857. {
  43858. name: "Normal",
  43859. height: math.unit(1, "feet"),
  43860. default: true
  43861. },
  43862. {
  43863. name: "True",
  43864. height: math.unit(1e15, "multiverses")
  43865. },
  43866. ]
  43867. ))
  43868. characterMakers.push(() => makeCharacter(
  43869. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43870. {
  43871. front: {
  43872. height: math.unit(8 + 2/12, "feet"),
  43873. weight: math.unit(650, "lb"),
  43874. name: "Front",
  43875. image: {
  43876. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43877. extra: 1174/1137,
  43878. bottom: 82/1256
  43879. }
  43880. },
  43881. back: {
  43882. height: math.unit(8 + 2/12, "feet"),
  43883. weight: math.unit(650, "lb"),
  43884. name: "Back",
  43885. image: {
  43886. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43887. extra: 1204/1157,
  43888. bottom: 46/1250
  43889. }
  43890. },
  43891. },
  43892. [
  43893. {
  43894. name: "Wildform",
  43895. height: math.unit(8 + 2/12, "feet"),
  43896. default: true
  43897. },
  43898. ]
  43899. ))
  43900. characterMakers.push(() => makeCharacter(
  43901. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43902. {
  43903. front: {
  43904. height: math.unit(18, "feet"),
  43905. name: "Front",
  43906. image: {
  43907. source: "./media/characters/cyphin/front.svg",
  43908. extra: 970/886,
  43909. bottom: 42/1012
  43910. }
  43911. },
  43912. back: {
  43913. height: math.unit(18, "feet"),
  43914. name: "Back",
  43915. image: {
  43916. source: "./media/characters/cyphin/back.svg",
  43917. extra: 1009/894,
  43918. bottom: 24/1033
  43919. }
  43920. },
  43921. head: {
  43922. height: math.unit(5.05, "feet"),
  43923. name: "Head",
  43924. image: {
  43925. source: "./media/characters/cyphin/head.svg"
  43926. }
  43927. },
  43928. tailbud: {
  43929. height: math.unit(5, "feet"),
  43930. name: "Tailbud",
  43931. image: {
  43932. source: "./media/characters/cyphin/tailbud.svg"
  43933. }
  43934. },
  43935. },
  43936. [
  43937. ]
  43938. ))
  43939. characterMakers.push(() => makeCharacter(
  43940. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43941. {
  43942. side: {
  43943. height: math.unit(10, "feet"),
  43944. weight: math.unit(6, "tons"),
  43945. name: "Side",
  43946. image: {
  43947. source: "./media/characters/raijin/side.svg",
  43948. extra: 1529/613,
  43949. bottom: 337/1866
  43950. }
  43951. },
  43952. },
  43953. [
  43954. {
  43955. name: "Normal",
  43956. height: math.unit(10, "feet"),
  43957. default: true
  43958. },
  43959. ]
  43960. ))
  43961. characterMakers.push(() => makeCharacter(
  43962. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43963. {
  43964. side: {
  43965. height: math.unit(9, "feet"),
  43966. name: "Side",
  43967. image: {
  43968. source: "./media/characters/nilghais/side.svg",
  43969. extra: 1047/744,
  43970. bottom: 91/1138
  43971. }
  43972. },
  43973. head: {
  43974. height: math.unit(3.14, "feet"),
  43975. name: "Head",
  43976. image: {
  43977. source: "./media/characters/nilghais/head.svg"
  43978. }
  43979. },
  43980. mouth: {
  43981. height: math.unit(4.6, "feet"),
  43982. name: "Mouth",
  43983. image: {
  43984. source: "./media/characters/nilghais/mouth.svg"
  43985. }
  43986. },
  43987. wings: {
  43988. height: math.unit(24, "feet"),
  43989. name: "Wings",
  43990. image: {
  43991. source: "./media/characters/nilghais/wings.svg"
  43992. }
  43993. },
  43994. ass: {
  43995. height: math.unit(6.12, "feet"),
  43996. name: "Ass",
  43997. image: {
  43998. source: "./media/characters/nilghais/ass.svg"
  43999. }
  44000. },
  44001. },
  44002. [
  44003. {
  44004. name: "Normal",
  44005. height: math.unit(9, "feet"),
  44006. default: true
  44007. },
  44008. ]
  44009. ))
  44010. characterMakers.push(() => makeCharacter(
  44011. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44012. {
  44013. regular: {
  44014. height: math.unit(16 + 2/12, "feet"),
  44015. weight: math.unit(2300, "lb"),
  44016. name: "Regular",
  44017. image: {
  44018. source: "./media/characters/zolgar/regular.svg",
  44019. extra: 1246/1004,
  44020. bottom: 124/1370
  44021. }
  44022. },
  44023. boxers: {
  44024. height: math.unit(16 + 2/12, "feet"),
  44025. weight: math.unit(2300, "lb"),
  44026. name: "Boxers",
  44027. image: {
  44028. source: "./media/characters/zolgar/boxers.svg",
  44029. extra: 1246/1004,
  44030. bottom: 124/1370
  44031. }
  44032. },
  44033. armored: {
  44034. height: math.unit(16 + 2/12, "feet"),
  44035. weight: math.unit(2300, "lb"),
  44036. name: "Armored",
  44037. image: {
  44038. source: "./media/characters/zolgar/armored.svg",
  44039. extra: 1246/1004,
  44040. bottom: 124/1370
  44041. }
  44042. },
  44043. goth: {
  44044. height: math.unit(16 + 2/12, "feet"),
  44045. weight: math.unit(2300, "lb"),
  44046. name: "Goth",
  44047. image: {
  44048. source: "./media/characters/zolgar/goth.svg",
  44049. extra: 1246/1004,
  44050. bottom: 124/1370
  44051. }
  44052. },
  44053. },
  44054. [
  44055. {
  44056. name: "Shrunken Down",
  44057. height: math.unit(9 + 2/12, "feet")
  44058. },
  44059. {
  44060. name: "Normal",
  44061. height: math.unit(16 + 2/12, "feet"),
  44062. default: true
  44063. },
  44064. ]
  44065. ))
  44066. characterMakers.push(() => makeCharacter(
  44067. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44068. {
  44069. front: {
  44070. height: math.unit(6, "feet"),
  44071. weight: math.unit(168, "lb"),
  44072. name: "Front",
  44073. image: {
  44074. source: "./media/characters/luca/front.svg",
  44075. extra: 841/667,
  44076. bottom: 102/943
  44077. }
  44078. },
  44079. },
  44080. [
  44081. {
  44082. name: "Normal",
  44083. height: math.unit(6, "feet"),
  44084. default: true
  44085. },
  44086. ]
  44087. ))
  44088. characterMakers.push(() => makeCharacter(
  44089. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44090. {
  44091. side: {
  44092. height: math.unit(7 + 3/12, "feet"),
  44093. weight: math.unit(312, "lb"),
  44094. name: "Side",
  44095. image: {
  44096. source: "./media/characters/zezo/side.svg",
  44097. extra: 1192/1067,
  44098. bottom: 63/1255
  44099. }
  44100. },
  44101. },
  44102. [
  44103. {
  44104. name: "Normal",
  44105. height: math.unit(7 + 3/12, "feet"),
  44106. default: true
  44107. },
  44108. ]
  44109. ))
  44110. characterMakers.push(() => makeCharacter(
  44111. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44112. {
  44113. front: {
  44114. height: math.unit(5 + 5/12, "feet"),
  44115. weight: math.unit(170, "lb"),
  44116. name: "Front",
  44117. image: {
  44118. source: "./media/characters/mayso/front.svg",
  44119. extra: 1215/1108,
  44120. bottom: 16/1231
  44121. }
  44122. },
  44123. },
  44124. [
  44125. {
  44126. name: "Normal",
  44127. height: math.unit(5 + 5/12, "feet"),
  44128. default: true
  44129. },
  44130. ]
  44131. ))
  44132. characterMakers.push(() => makeCharacter(
  44133. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44134. {
  44135. front: {
  44136. height: math.unit(4 + 3/12, "feet"),
  44137. weight: math.unit(80, "lb"),
  44138. name: "Front",
  44139. image: {
  44140. source: "./media/characters/hess/front.svg",
  44141. extra: 1200/1123,
  44142. bottom: 16/1216
  44143. }
  44144. },
  44145. },
  44146. [
  44147. {
  44148. name: "Normal",
  44149. height: math.unit(4 + 3/12, "feet"),
  44150. default: true
  44151. },
  44152. ]
  44153. ))
  44154. characterMakers.push(() => makeCharacter(
  44155. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44156. {
  44157. front: {
  44158. height: math.unit(1.9, "meters"),
  44159. name: "Front",
  44160. image: {
  44161. source: "./media/characters/ashgar/front.svg",
  44162. extra: 1177/1146,
  44163. bottom: 99/1276
  44164. }
  44165. },
  44166. back: {
  44167. height: math.unit(1.9, "meters"),
  44168. name: "Back",
  44169. image: {
  44170. source: "./media/characters/ashgar/back.svg",
  44171. extra: 1201/1183,
  44172. bottom: 53/1254
  44173. }
  44174. },
  44175. feral: {
  44176. height: math.unit(1.4, "meters"),
  44177. name: "Feral",
  44178. image: {
  44179. source: "./media/characters/ashgar/feral.svg",
  44180. extra: 370/345,
  44181. bottom: 45/415
  44182. }
  44183. },
  44184. },
  44185. [
  44186. {
  44187. name: "Normal",
  44188. height: math.unit(1.9, "meters"),
  44189. default: true
  44190. },
  44191. ]
  44192. ))
  44193. characterMakers.push(() => makeCharacter(
  44194. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44195. {
  44196. regular: {
  44197. height: math.unit(6, "feet"),
  44198. weight: math.unit(220, "lb"),
  44199. name: "Regular",
  44200. image: {
  44201. source: "./media/characters/phillip/regular.svg",
  44202. extra: 1373/1277,
  44203. bottom: 75/1448
  44204. }
  44205. },
  44206. dressed: {
  44207. height: math.unit(6, "feet"),
  44208. weight: math.unit(220, "lb"),
  44209. name: "Dressed",
  44210. image: {
  44211. source: "./media/characters/phillip/dressed.svg",
  44212. extra: 1373/1277,
  44213. bottom: 75/1448
  44214. }
  44215. },
  44216. paw: {
  44217. height: math.unit(1.44, "feet"),
  44218. name: "Paw",
  44219. image: {
  44220. source: "./media/characters/phillip/paw.svg"
  44221. }
  44222. },
  44223. },
  44224. [
  44225. {
  44226. name: "Normal",
  44227. height: math.unit(6, "feet"),
  44228. default: true
  44229. },
  44230. ]
  44231. ))
  44232. characterMakers.push(() => makeCharacter(
  44233. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44234. {
  44235. side: {
  44236. height: math.unit(42, "feet"),
  44237. name: "Side",
  44238. image: {
  44239. source: "./media/characters/uvula/side.svg",
  44240. extra: 683/586,
  44241. bottom: 60/743
  44242. }
  44243. },
  44244. front: {
  44245. height: math.unit(42, "feet"),
  44246. name: "Front",
  44247. image: {
  44248. source: "./media/characters/uvula/front.svg",
  44249. extra: 705/613,
  44250. bottom: 54/759
  44251. }
  44252. },
  44253. maw: {
  44254. height: math.unit(23.5, "feet"),
  44255. name: "Maw",
  44256. image: {
  44257. source: "./media/characters/uvula/maw.svg"
  44258. }
  44259. },
  44260. },
  44261. [
  44262. {
  44263. name: "Original Size",
  44264. height: math.unit(14, "inches")
  44265. },
  44266. {
  44267. name: "Human Size",
  44268. height: math.unit(6, "feet")
  44269. },
  44270. {
  44271. name: "Big",
  44272. height: math.unit(42, "feet"),
  44273. default: true
  44274. },
  44275. {
  44276. name: "Bigger",
  44277. height: math.unit(100, "feet")
  44278. },
  44279. ]
  44280. ))
  44281. characterMakers.push(() => makeCharacter(
  44282. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44283. {
  44284. front: {
  44285. height: math.unit(5 + 11/12, "feet"),
  44286. name: "Front",
  44287. image: {
  44288. source: "./media/characters/lannah/front.svg",
  44289. extra: 1208/1113,
  44290. bottom: 97/1305
  44291. }
  44292. },
  44293. },
  44294. [
  44295. {
  44296. name: "Normal",
  44297. height: math.unit(5 + 11/12, "feet"),
  44298. default: true
  44299. },
  44300. ]
  44301. ))
  44302. characterMakers.push(() => makeCharacter(
  44303. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44304. {
  44305. front: {
  44306. height: math.unit(6 + 3/12, "feet"),
  44307. weight: math.unit(3.5, "tons"),
  44308. name: "Front",
  44309. image: {
  44310. source: "./media/characters/emberflame/front.svg",
  44311. extra: 1198/672,
  44312. bottom: 82/1280
  44313. }
  44314. },
  44315. side: {
  44316. height: math.unit(6 + 3/12, "feet"),
  44317. weight: math.unit(3.5, "tons"),
  44318. name: "Side",
  44319. image: {
  44320. source: "./media/characters/emberflame/side.svg",
  44321. extra: 938/527,
  44322. bottom: 56/994
  44323. }
  44324. },
  44325. },
  44326. [
  44327. {
  44328. name: "Normal",
  44329. height: math.unit(6 + 3/12, "feet"),
  44330. default: true
  44331. },
  44332. ]
  44333. ))
  44334. characterMakers.push(() => makeCharacter(
  44335. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44336. {
  44337. side: {
  44338. height: math.unit(17.5, "feet"),
  44339. weight: math.unit(35, "tons"),
  44340. name: "Side",
  44341. image: {
  44342. source: "./media/characters/sophie-ambrose/side.svg",
  44343. extra: 1573/1242,
  44344. bottom: 71/1644
  44345. }
  44346. },
  44347. maw: {
  44348. height: math.unit(7.4, "feet"),
  44349. name: "Maw",
  44350. image: {
  44351. source: "./media/characters/sophie-ambrose/maw.svg"
  44352. }
  44353. },
  44354. },
  44355. [
  44356. {
  44357. name: "Normal",
  44358. height: math.unit(17.5, "feet"),
  44359. default: true
  44360. },
  44361. ]
  44362. ))
  44363. characterMakers.push(() => makeCharacter(
  44364. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44365. {
  44366. front: {
  44367. height: math.unit(280, "feet"),
  44368. weight: math.unit(550, "tons"),
  44369. name: "Front",
  44370. image: {
  44371. source: "./media/characters/king-mugi/front.svg",
  44372. extra: 1102/947,
  44373. bottom: 104/1206
  44374. }
  44375. },
  44376. },
  44377. [
  44378. {
  44379. name: "King Mugi",
  44380. height: math.unit(280, "feet"),
  44381. default: true
  44382. },
  44383. ]
  44384. ))
  44385. characterMakers.push(() => makeCharacter(
  44386. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44387. {
  44388. front: {
  44389. height: math.unit(64, "meters"),
  44390. name: "Front",
  44391. image: {
  44392. source: "./media/characters/nova-fox/front.svg",
  44393. extra: 1310/1246,
  44394. bottom: 65/1375
  44395. }
  44396. },
  44397. },
  44398. [
  44399. {
  44400. name: "Macro",
  44401. height: math.unit(64, "meters"),
  44402. default: true
  44403. },
  44404. ]
  44405. ))
  44406. characterMakers.push(() => makeCharacter(
  44407. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44408. {
  44409. front: {
  44410. height: math.unit(6 + 3/12, "feet"),
  44411. weight: math.unit(170, "lb"),
  44412. name: "Front",
  44413. image: {
  44414. source: "./media/characters/sam-bat/front.svg",
  44415. extra: 1601/1411,
  44416. bottom: 125/1726
  44417. }
  44418. },
  44419. back: {
  44420. height: math.unit(6 + 3/12, "feet"),
  44421. weight: math.unit(170, "lb"),
  44422. name: "Back",
  44423. image: {
  44424. source: "./media/characters/sam-bat/back.svg",
  44425. extra: 1577/1405,
  44426. bottom: 58/1635
  44427. }
  44428. },
  44429. },
  44430. [
  44431. {
  44432. name: "Normal",
  44433. height: math.unit(6 + 3/12, "feet"),
  44434. default: true
  44435. },
  44436. ]
  44437. ))
  44438. characterMakers.push(() => makeCharacter(
  44439. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44440. {
  44441. front: {
  44442. height: math.unit(59, "feet"),
  44443. weight: math.unit(40000, "lb"),
  44444. name: "Front",
  44445. image: {
  44446. source: "./media/characters/inari/front.svg",
  44447. extra: 1884/1350,
  44448. bottom: 95/1979
  44449. }
  44450. },
  44451. },
  44452. [
  44453. {
  44454. name: "Gigantamax",
  44455. height: math.unit(59, "feet"),
  44456. default: true
  44457. },
  44458. ]
  44459. ))
  44460. characterMakers.push(() => makeCharacter(
  44461. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44462. {
  44463. front: {
  44464. height: math.unit(5 + 8/12, "feet"),
  44465. name: "Front",
  44466. image: {
  44467. source: "./media/characters/elizabeth/front.svg",
  44468. extra: 1395/1298,
  44469. bottom: 54/1449
  44470. }
  44471. },
  44472. mouth: {
  44473. height: math.unit(1.97, "feet"),
  44474. name: "Mouth",
  44475. image: {
  44476. source: "./media/characters/elizabeth/mouth.svg"
  44477. }
  44478. },
  44479. foot: {
  44480. height: math.unit(1.17, "feet"),
  44481. name: "Foot",
  44482. image: {
  44483. source: "./media/characters/elizabeth/foot.svg"
  44484. }
  44485. },
  44486. },
  44487. [
  44488. {
  44489. name: "Normal",
  44490. height: math.unit(5 + 8/12, "feet"),
  44491. default: true
  44492. },
  44493. {
  44494. name: "Minimacro",
  44495. height: math.unit(18, "feet")
  44496. },
  44497. {
  44498. name: "Macro",
  44499. height: math.unit(180, "feet")
  44500. },
  44501. ]
  44502. ))
  44503. characterMakers.push(() => makeCharacter(
  44504. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44505. {
  44506. front: {
  44507. height: math.unit(5 + 2/12, "feet"),
  44508. name: "Front",
  44509. image: {
  44510. source: "./media/characters/october-gossamer/front.svg",
  44511. extra: 505/454,
  44512. bottom: 7/512
  44513. }
  44514. },
  44515. back: {
  44516. height: math.unit(5 + 2/12, "feet"),
  44517. name: "Back",
  44518. image: {
  44519. source: "./media/characters/october-gossamer/back.svg",
  44520. extra: 501/454,
  44521. bottom: 11/512
  44522. }
  44523. },
  44524. },
  44525. [
  44526. {
  44527. name: "Normal",
  44528. height: math.unit(5 + 2/12, "feet"),
  44529. default: true
  44530. },
  44531. ]
  44532. ))
  44533. characterMakers.push(() => makeCharacter(
  44534. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44535. {
  44536. front: {
  44537. height: math.unit(5, "feet"),
  44538. name: "Front",
  44539. image: {
  44540. source: "./media/characters/epiglottis/front.svg",
  44541. extra: 923/849,
  44542. bottom: 17/940
  44543. }
  44544. },
  44545. },
  44546. [
  44547. {
  44548. name: "Original Size",
  44549. height: math.unit(10, "inches")
  44550. },
  44551. {
  44552. name: "Human Size",
  44553. height: math.unit(5, "feet"),
  44554. default: true
  44555. },
  44556. {
  44557. name: "Big",
  44558. height: math.unit(25, "feet")
  44559. },
  44560. {
  44561. name: "Bigger",
  44562. height: math.unit(50, "feet")
  44563. },
  44564. {
  44565. name: "oh lawd",
  44566. height: math.unit(75, "feet")
  44567. },
  44568. ]
  44569. ))
  44570. characterMakers.push(() => makeCharacter(
  44571. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44572. {
  44573. front: {
  44574. height: math.unit(2 + 4/12, "feet"),
  44575. weight: math.unit(60, "lb"),
  44576. name: "Front",
  44577. image: {
  44578. source: "./media/characters/lerm/front.svg",
  44579. extra: 796/790,
  44580. bottom: 79/875
  44581. }
  44582. },
  44583. },
  44584. [
  44585. {
  44586. name: "Normal",
  44587. height: math.unit(2 + 4/12, "feet"),
  44588. default: true
  44589. },
  44590. ]
  44591. ))
  44592. characterMakers.push(() => makeCharacter(
  44593. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44594. {
  44595. front: {
  44596. height: math.unit(5.5, "feet"),
  44597. weight: math.unit(130, "lb"),
  44598. name: "Front",
  44599. image: {
  44600. source: "./media/characters/xena-nebadon/front.svg",
  44601. extra: 1828/1730,
  44602. bottom: 79/1907
  44603. }
  44604. },
  44605. },
  44606. [
  44607. {
  44608. name: "Tiny Puppy",
  44609. height: math.unit(3, "inches")
  44610. },
  44611. {
  44612. name: "Normal",
  44613. height: math.unit(5.5, "feet"),
  44614. default: true
  44615. },
  44616. {
  44617. name: "Lotta Lady",
  44618. height: math.unit(12, "feet")
  44619. },
  44620. {
  44621. name: "Pretty Big",
  44622. height: math.unit(100, "feet")
  44623. },
  44624. {
  44625. name: "Big",
  44626. height: math.unit(500, "feet")
  44627. },
  44628. {
  44629. name: "Skyscraper Toys",
  44630. height: math.unit(2500, "feet")
  44631. },
  44632. {
  44633. name: "Plane Catcher",
  44634. height: math.unit(8, "miles")
  44635. },
  44636. {
  44637. name: "Planet Toys",
  44638. height: math.unit(15, "earths")
  44639. },
  44640. {
  44641. name: "Stardust",
  44642. height: math.unit(0.25, "galaxies")
  44643. },
  44644. {
  44645. name: "Snacks",
  44646. height: math.unit(70, "universes")
  44647. },
  44648. ]
  44649. ))
  44650. characterMakers.push(() => makeCharacter(
  44651. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44652. {
  44653. front: {
  44654. height: math.unit(1.6, "meters"),
  44655. weight: math.unit(60, "kg"),
  44656. name: "Front",
  44657. image: {
  44658. source: "./media/characters/bounty/front.svg",
  44659. extra: 1426/1308,
  44660. bottom: 15/1441
  44661. }
  44662. },
  44663. back: {
  44664. height: math.unit(1.6, "meters"),
  44665. weight: math.unit(60, "kg"),
  44666. name: "Back",
  44667. image: {
  44668. source: "./media/characters/bounty/back.svg",
  44669. extra: 1417/1307,
  44670. bottom: 8/1425
  44671. }
  44672. },
  44673. },
  44674. [
  44675. {
  44676. name: "Normal",
  44677. height: math.unit(1.6, "meters"),
  44678. default: true
  44679. },
  44680. {
  44681. name: "Macro",
  44682. height: math.unit(300, "meters")
  44683. },
  44684. ]
  44685. ))
  44686. characterMakers.push(() => makeCharacter(
  44687. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44688. {
  44689. front: {
  44690. height: math.unit(2 + 8/12, "feet"),
  44691. weight: math.unit(15, "lb"),
  44692. name: "Front",
  44693. image: {
  44694. source: "./media/characters/mochi/front.svg",
  44695. extra: 1022/852,
  44696. bottom: 435/1457
  44697. }
  44698. },
  44699. back: {
  44700. height: math.unit(2 + 8/12, "feet"),
  44701. weight: math.unit(15, "lb"),
  44702. name: "Back",
  44703. image: {
  44704. source: "./media/characters/mochi/back.svg",
  44705. extra: 1335/1119,
  44706. bottom: 39/1374
  44707. }
  44708. },
  44709. bird: {
  44710. height: math.unit(2 + 8/12, "feet"),
  44711. weight: math.unit(15, "lb"),
  44712. name: "Bird",
  44713. image: {
  44714. source: "./media/characters/mochi/bird.svg",
  44715. extra: 1251/1113,
  44716. bottom: 178/1429
  44717. }
  44718. },
  44719. kaiju: {
  44720. height: math.unit(154, "feet"),
  44721. weight: math.unit(1e7, "lb"),
  44722. name: "Kaiju",
  44723. image: {
  44724. source: "./media/characters/mochi/kaiju.svg",
  44725. extra: 460/324,
  44726. bottom: 40/500
  44727. }
  44728. },
  44729. head: {
  44730. height: math.unit(1.21, "feet"),
  44731. name: "Head",
  44732. image: {
  44733. source: "./media/characters/mochi/head.svg"
  44734. }
  44735. },
  44736. alternateTail: {
  44737. height: math.unit(2 + 8/12, "feet"),
  44738. weight: math.unit(45, "lb"),
  44739. name: "Alternate Tail",
  44740. image: {
  44741. source: "./media/characters/mochi/alternate-tail.svg",
  44742. extra: 139/76,
  44743. bottom: 45/184
  44744. }
  44745. },
  44746. },
  44747. [
  44748. {
  44749. name: "Micro",
  44750. height: math.unit(2, "inches")
  44751. },
  44752. {
  44753. name: "Normal",
  44754. height: math.unit(2 + 8/12, "feet"),
  44755. default: true
  44756. },
  44757. {
  44758. name: "Macro",
  44759. height: math.unit(106, "feet")
  44760. },
  44761. ]
  44762. ))
  44763. characterMakers.push(() => makeCharacter(
  44764. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44765. {
  44766. front: {
  44767. height: math.unit(5.67, "feet"),
  44768. weight: math.unit(135, "lb"),
  44769. name: "Front",
  44770. image: {
  44771. source: "./media/characters/sarel/front.svg",
  44772. extra: 865/788,
  44773. bottom: 97/962
  44774. }
  44775. },
  44776. back: {
  44777. height: math.unit(5.67, "feet"),
  44778. weight: math.unit(135, "lb"),
  44779. name: "Back",
  44780. image: {
  44781. source: "./media/characters/sarel/back.svg",
  44782. extra: 857/777,
  44783. bottom: 32/889
  44784. }
  44785. },
  44786. chozoan: {
  44787. height: math.unit(5.67, "feet"),
  44788. weight: math.unit(135, "lb"),
  44789. name: "Chozoan",
  44790. image: {
  44791. source: "./media/characters/sarel/chozoan.svg",
  44792. extra: 865/788,
  44793. bottom: 97/962
  44794. }
  44795. },
  44796. current: {
  44797. height: math.unit(5.67, "feet"),
  44798. weight: math.unit(135, "lb"),
  44799. name: "Current",
  44800. image: {
  44801. source: "./media/characters/sarel/current.svg",
  44802. extra: 865/788,
  44803. bottom: 97/962
  44804. }
  44805. },
  44806. head: {
  44807. height: math.unit(1.77, "feet"),
  44808. name: "Head",
  44809. image: {
  44810. source: "./media/characters/sarel/head.svg"
  44811. }
  44812. },
  44813. claws: {
  44814. height: math.unit(1.8, "feet"),
  44815. name: "Claws",
  44816. image: {
  44817. source: "./media/characters/sarel/claws.svg"
  44818. }
  44819. },
  44820. clawsAlt: {
  44821. height: math.unit(1.8, "feet"),
  44822. name: "Claws-alt",
  44823. image: {
  44824. source: "./media/characters/sarel/claws-alt.svg"
  44825. }
  44826. },
  44827. },
  44828. [
  44829. {
  44830. name: "Normal",
  44831. height: math.unit(5.67, "feet"),
  44832. default: true
  44833. },
  44834. ]
  44835. ))
  44836. characterMakers.push(() => makeCharacter(
  44837. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44838. {
  44839. front: {
  44840. height: math.unit(5500, "feet"),
  44841. name: "Front",
  44842. image: {
  44843. source: "./media/characters/alyonia/front.svg",
  44844. extra: 1200/1135,
  44845. bottom: 29/1229
  44846. }
  44847. },
  44848. back: {
  44849. height: math.unit(5500, "feet"),
  44850. name: "Back",
  44851. image: {
  44852. source: "./media/characters/alyonia/back.svg",
  44853. extra: 1205/1138,
  44854. bottom: 10/1215
  44855. }
  44856. },
  44857. },
  44858. [
  44859. {
  44860. name: "Small",
  44861. height: math.unit(10, "feet")
  44862. },
  44863. {
  44864. name: "Macro",
  44865. height: math.unit(500, "feet")
  44866. },
  44867. {
  44868. name: "Mega Macro",
  44869. height: math.unit(5500, "feet"),
  44870. default: true
  44871. },
  44872. {
  44873. name: "Mega Macro+",
  44874. height: math.unit(500000, "feet")
  44875. },
  44876. {
  44877. name: "Giga Macro",
  44878. height: math.unit(3000, "miles")
  44879. },
  44880. {
  44881. name: "Tera Macro",
  44882. height: math.unit(2.8e6, "miles")
  44883. },
  44884. {
  44885. name: "Galactic",
  44886. height: math.unit(120000, "lightyears")
  44887. },
  44888. ]
  44889. ))
  44890. characterMakers.push(() => makeCharacter(
  44891. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44892. {
  44893. werewolf: {
  44894. height: math.unit(8, "feet"),
  44895. weight: math.unit(425, "lb"),
  44896. name: "Werewolf",
  44897. image: {
  44898. source: "./media/characters/autumn/werewolf.svg",
  44899. extra: 2154/2031,
  44900. bottom: 160/2314
  44901. }
  44902. },
  44903. human: {
  44904. height: math.unit(5 + 8/12, "feet"),
  44905. weight: math.unit(150, "lb"),
  44906. name: "Human",
  44907. image: {
  44908. source: "./media/characters/autumn/human.svg",
  44909. extra: 1200/1149,
  44910. bottom: 30/1230
  44911. }
  44912. },
  44913. },
  44914. [
  44915. {
  44916. name: "Normal",
  44917. height: math.unit(8, "feet"),
  44918. default: true
  44919. },
  44920. ]
  44921. ))
  44922. characterMakers.push(() => makeCharacter(
  44923. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44924. {
  44925. front: {
  44926. height: math.unit(8 + 5/12, "feet"),
  44927. weight: math.unit(825, "lb"),
  44928. name: "Front",
  44929. image: {
  44930. source: "./media/characters/cobalt-charizard/front.svg",
  44931. extra: 1268/1155,
  44932. bottom: 122/1390
  44933. }
  44934. },
  44935. side: {
  44936. height: math.unit(8 + 5/12, "feet"),
  44937. weight: math.unit(825, "lb"),
  44938. name: "Side",
  44939. image: {
  44940. source: "./media/characters/cobalt-charizard/side.svg",
  44941. extra: 1348/1257,
  44942. bottom: 58/1406
  44943. }
  44944. },
  44945. gMax: {
  44946. height: math.unit(134 + 11/12, "feet"),
  44947. name: "G-Max",
  44948. image: {
  44949. source: "./media/characters/cobalt-charizard/g-max.svg",
  44950. extra: 1835/1541,
  44951. bottom: 151/1986
  44952. }
  44953. },
  44954. },
  44955. [
  44956. {
  44957. name: "Normal",
  44958. height: math.unit(8 + 5/12, "feet"),
  44959. default: true
  44960. },
  44961. ]
  44962. ))
  44963. characterMakers.push(() => makeCharacter(
  44964. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44965. {
  44966. front: {
  44967. height: math.unit(6 + 3/12, "feet"),
  44968. weight: math.unit(210, "lb"),
  44969. name: "Front",
  44970. image: {
  44971. source: "./media/characters/stella/front.svg",
  44972. extra: 3549/3335,
  44973. bottom: 51/3600
  44974. }
  44975. },
  44976. },
  44977. [
  44978. {
  44979. name: "Normal",
  44980. height: math.unit(6 + 3/12, "feet"),
  44981. default: true
  44982. },
  44983. ]
  44984. ))
  44985. characterMakers.push(() => makeCharacter(
  44986. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44987. {
  44988. front: {
  44989. height: math.unit(5, "feet"),
  44990. weight: math.unit(90, "lb"),
  44991. name: "Front",
  44992. image: {
  44993. source: "./media/characters/riley-bishop/front.svg",
  44994. extra: 1450/1428,
  44995. bottom: 152/1602
  44996. }
  44997. },
  44998. },
  44999. [
  45000. {
  45001. name: "Normal",
  45002. height: math.unit(5, "feet"),
  45003. default: true
  45004. },
  45005. ]
  45006. ))
  45007. characterMakers.push(() => makeCharacter(
  45008. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45009. {
  45010. side: {
  45011. height: math.unit(8 + 2/12, "feet"),
  45012. weight: math.unit(500, "kg"),
  45013. name: "Side",
  45014. image: {
  45015. source: "./media/characters/theo-arcanine/side.svg",
  45016. extra: 1342/1074,
  45017. bottom: 111/1453
  45018. }
  45019. },
  45020. },
  45021. [
  45022. {
  45023. name: "Normal",
  45024. height: math.unit(8 + 2/12, "feet"),
  45025. default: true
  45026. },
  45027. ]
  45028. ))
  45029. characterMakers.push(() => makeCharacter(
  45030. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45031. {
  45032. front: {
  45033. height: math.unit(4, "feet"),
  45034. name: "Front",
  45035. image: {
  45036. source: "./media/characters/kali/front.svg",
  45037. extra: 1921/1357,
  45038. bottom: 70/1991
  45039. }
  45040. },
  45041. },
  45042. [
  45043. {
  45044. name: "Normal",
  45045. height: math.unit(4, "feet"),
  45046. default: true
  45047. },
  45048. {
  45049. name: "Macro",
  45050. height: math.unit(32, "meters")
  45051. },
  45052. {
  45053. name: "Macro+",
  45054. height: math.unit(150, "meters")
  45055. },
  45056. {
  45057. name: "Megamacro",
  45058. height: math.unit(7500, "meters")
  45059. },
  45060. {
  45061. name: "Megamacro+",
  45062. height: math.unit(80, "kilometers")
  45063. },
  45064. ]
  45065. ))
  45066. characterMakers.push(() => makeCharacter(
  45067. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45068. {
  45069. side: {
  45070. height: math.unit(5 + 11/12, "feet"),
  45071. weight: math.unit(236, "lb"),
  45072. name: "Side",
  45073. image: {
  45074. source: "./media/characters/gapp/side.svg",
  45075. extra: 775/340,
  45076. bottom: 58/833
  45077. }
  45078. },
  45079. mouth: {
  45080. height: math.unit(2.98, "feet"),
  45081. name: "Mouth",
  45082. image: {
  45083. source: "./media/characters/gapp/mouth.svg"
  45084. }
  45085. },
  45086. },
  45087. [
  45088. {
  45089. name: "Normal",
  45090. height: math.unit(5 + 1/12, "feet"),
  45091. default: true
  45092. },
  45093. ]
  45094. ))
  45095. characterMakers.push(() => makeCharacter(
  45096. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45097. {
  45098. front: {
  45099. height: math.unit(6, "feet"),
  45100. name: "Front",
  45101. image: {
  45102. source: "./media/characters/persephone/front.svg",
  45103. extra: 1895/1717,
  45104. bottom: 96/1991
  45105. }
  45106. },
  45107. back: {
  45108. height: math.unit(6, "feet"),
  45109. name: "Back",
  45110. image: {
  45111. source: "./media/characters/persephone/back.svg",
  45112. extra: 1868/1679,
  45113. bottom: 26/1894
  45114. }
  45115. },
  45116. casual: {
  45117. height: math.unit(6, "feet"),
  45118. name: "Casual",
  45119. image: {
  45120. source: "./media/characters/persephone/casual.svg",
  45121. extra: 1713/1541,
  45122. bottom: 76/1789
  45123. }
  45124. },
  45125. },
  45126. [
  45127. {
  45128. name: "Human Size",
  45129. height: math.unit(6, "feet")
  45130. },
  45131. {
  45132. name: "Big Steppy",
  45133. height: math.unit(600, "meters"),
  45134. default: true
  45135. },
  45136. {
  45137. name: "Galaxy Brain",
  45138. height: math.unit(1, "zettameter")
  45139. },
  45140. ]
  45141. ))
  45142. characterMakers.push(() => makeCharacter(
  45143. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45144. {
  45145. front: {
  45146. height: math.unit(1.85, "meters"),
  45147. name: "Front",
  45148. image: {
  45149. source: "./media/characters/riley-foxthing/front.svg",
  45150. extra: 1495/1354,
  45151. bottom: 122/1617
  45152. }
  45153. },
  45154. frontAlt: {
  45155. height: math.unit(1.85, "meters"),
  45156. name: "Front (Alt)",
  45157. image: {
  45158. source: "./media/characters/riley-foxthing/front-alt.svg",
  45159. extra: 1572/1389,
  45160. bottom: 116/1688
  45161. }
  45162. },
  45163. },
  45164. [
  45165. {
  45166. name: "Normal Sized",
  45167. height: math.unit(1.85, "meters"),
  45168. default: true
  45169. },
  45170. {
  45171. name: "Quite Sizable",
  45172. height: math.unit(5, "meters")
  45173. },
  45174. {
  45175. name: "Rather Large",
  45176. height: math.unit(20, "meters")
  45177. },
  45178. {
  45179. name: "Macro",
  45180. height: math.unit(450, "meters")
  45181. },
  45182. {
  45183. name: "Giga",
  45184. height: math.unit(5, "km")
  45185. },
  45186. ]
  45187. ))
  45188. characterMakers.push(() => makeCharacter(
  45189. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45190. {
  45191. front: {
  45192. height: math.unit(6, "feet"),
  45193. weight: math.unit(200, "lb"),
  45194. name: "Front",
  45195. image: {
  45196. source: "./media/characters/blizzard/front.svg",
  45197. extra: 1136/990,
  45198. bottom: 136/1272
  45199. }
  45200. },
  45201. back: {
  45202. height: math.unit(6, "feet"),
  45203. weight: math.unit(200, "lb"),
  45204. name: "Back",
  45205. image: {
  45206. source: "./media/characters/blizzard/back.svg",
  45207. extra: 1175/1034,
  45208. bottom: 97/1272
  45209. }
  45210. },
  45211. sitting: {
  45212. height: math.unit(3.725, "feet"),
  45213. weight: math.unit(200, "lb"),
  45214. name: "Sitting",
  45215. image: {
  45216. source: "./media/characters/blizzard/sitting.svg",
  45217. extra: 581/485,
  45218. bottom: 90/671
  45219. }
  45220. },
  45221. frontWizard: {
  45222. height: math.unit(7.9, "feet"),
  45223. weight: math.unit(200, "lb"),
  45224. name: "Front (Wizard)",
  45225. image: {
  45226. source: "./media/characters/blizzard/front-wizard.svg"
  45227. }
  45228. },
  45229. backWizard: {
  45230. height: math.unit(7.9, "feet"),
  45231. weight: math.unit(200, "lb"),
  45232. name: "Back (Wizard)",
  45233. image: {
  45234. source: "./media/characters/blizzard/back-wizard.svg"
  45235. }
  45236. },
  45237. frontNsfw: {
  45238. height: math.unit(6, "feet"),
  45239. weight: math.unit(200, "lb"),
  45240. name: "Front (NSFW)",
  45241. image: {
  45242. source: "./media/characters/blizzard/front-nsfw.svg",
  45243. extra: 1136/990,
  45244. bottom: 136/1272
  45245. }
  45246. },
  45247. backNsfw: {
  45248. height: math.unit(6, "feet"),
  45249. weight: math.unit(200, "lb"),
  45250. name: "Back (NSFW)",
  45251. image: {
  45252. source: "./media/characters/blizzard/back-nsfw.svg",
  45253. extra: 1175/1034,
  45254. bottom: 97/1272
  45255. }
  45256. },
  45257. sittingNsfw: {
  45258. height: math.unit(3.725, "feet"),
  45259. weight: math.unit(200, "lb"),
  45260. name: "Sitting (NSFW)",
  45261. image: {
  45262. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45263. extra: 581/485,
  45264. bottom: 90/671
  45265. }
  45266. },
  45267. wizardFrontNsfw: {
  45268. height: math.unit(7.9, "feet"),
  45269. weight: math.unit(200, "lb"),
  45270. name: "Wizard (Front, NSFW)",
  45271. image: {
  45272. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45273. }
  45274. },
  45275. },
  45276. [
  45277. {
  45278. name: "Normal",
  45279. height: math.unit(6, "feet"),
  45280. default: true
  45281. },
  45282. ]
  45283. ))
  45284. characterMakers.push(() => makeCharacter(
  45285. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45286. {
  45287. front: {
  45288. height: math.unit(5 + 2/12, "feet"),
  45289. name: "Front",
  45290. image: {
  45291. source: "./media/characters/lumi/front.svg",
  45292. extra: 1328/1268,
  45293. bottom: 103/1431
  45294. }
  45295. },
  45296. back: {
  45297. height: math.unit(5 + 2/12, "feet"),
  45298. name: "Back",
  45299. image: {
  45300. source: "./media/characters/lumi/back.svg",
  45301. extra: 1381/1327,
  45302. bottom: 43/1424
  45303. }
  45304. },
  45305. },
  45306. [
  45307. {
  45308. name: "Normal",
  45309. height: math.unit(5 + 2/12, "feet"),
  45310. default: true
  45311. },
  45312. ]
  45313. ))
  45314. characterMakers.push(() => makeCharacter(
  45315. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45316. {
  45317. front: {
  45318. height: math.unit(5 + 9/12, "feet"),
  45319. name: "Front",
  45320. image: {
  45321. source: "./media/characters/aliya-cotton/front.svg",
  45322. extra: 577/564,
  45323. bottom: 29/606
  45324. }
  45325. },
  45326. },
  45327. [
  45328. {
  45329. name: "Normal",
  45330. height: math.unit(5 + 9/12, "feet"),
  45331. default: true
  45332. },
  45333. ]
  45334. ))
  45335. characterMakers.push(() => makeCharacter(
  45336. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45337. {
  45338. front: {
  45339. height: math.unit(2.7, "meters"),
  45340. weight: math.unit(25000, "lb"),
  45341. name: "Front",
  45342. image: {
  45343. source: "./media/characters/noah-luxray/front.svg",
  45344. extra: 1644/825,
  45345. bottom: 339/1983
  45346. }
  45347. },
  45348. side: {
  45349. height: math.unit(2.97, "meters"),
  45350. weight: math.unit(25000, "lb"),
  45351. name: "Side",
  45352. image: {
  45353. source: "./media/characters/noah-luxray/side.svg",
  45354. extra: 1319/650,
  45355. bottom: 163/1482
  45356. }
  45357. },
  45358. dick: {
  45359. height: math.unit(7.4, "feet"),
  45360. weight: math.unit(2500, "lb"),
  45361. name: "Dick",
  45362. image: {
  45363. source: "./media/characters/noah-luxray/dick.svg"
  45364. }
  45365. },
  45366. dickAlt: {
  45367. height: math.unit(10.83, "feet"),
  45368. weight: math.unit(2500, "lb"),
  45369. name: "Dick-alt",
  45370. image: {
  45371. source: "./media/characters/noah-luxray/dick-alt.svg"
  45372. }
  45373. },
  45374. },
  45375. [
  45376. {
  45377. name: "BIG",
  45378. height: math.unit(2.7, "meters"),
  45379. default: true
  45380. },
  45381. ]
  45382. ))
  45383. characterMakers.push(() => makeCharacter(
  45384. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45385. {
  45386. standing: {
  45387. height: math.unit(183, "cm"),
  45388. weight: math.unit(68, "kg"),
  45389. name: "Standing",
  45390. image: {
  45391. source: "./media/characters/arion/standing.svg",
  45392. extra: 1869/1807,
  45393. bottom: 93/1962
  45394. }
  45395. },
  45396. reclining: {
  45397. height: math.unit(70.5, "cm"),
  45398. weight: math.unit(68, "lb"),
  45399. name: "Reclining",
  45400. image: {
  45401. source: "./media/characters/arion/reclining.svg",
  45402. extra: 937/870,
  45403. bottom: 63/1000
  45404. }
  45405. },
  45406. },
  45407. [
  45408. {
  45409. name: "Colossus Size, Low",
  45410. height: math.unit(33, "meters"),
  45411. default: true
  45412. },
  45413. {
  45414. name: "Colossus Size, Mid",
  45415. height: math.unit(52, "meters")
  45416. },
  45417. {
  45418. name: "Colossus Size, High",
  45419. height: math.unit(60, "meters")
  45420. },
  45421. {
  45422. name: "Titan Size, Low",
  45423. height: math.unit(91, "meters"),
  45424. },
  45425. {
  45426. name: "Titan Size, Mid",
  45427. height: math.unit(122, "meters")
  45428. },
  45429. {
  45430. name: "Titan Size, High",
  45431. height: math.unit(162, "meters")
  45432. },
  45433. ]
  45434. ))
  45435. characterMakers.push(() => makeCharacter(
  45436. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45437. {
  45438. front: {
  45439. height: math.unit(53, "meters"),
  45440. name: "Front",
  45441. image: {
  45442. source: "./media/characters/stellar-marbey/front.svg",
  45443. extra: 1913/1805,
  45444. bottom: 92/2005
  45445. }
  45446. },
  45447. back: {
  45448. height: math.unit(53, "meters"),
  45449. name: "Back",
  45450. image: {
  45451. source: "./media/characters/stellar-marbey/back.svg",
  45452. extra: 1960/1851,
  45453. bottom: 28/1988
  45454. }
  45455. },
  45456. mouth: {
  45457. height: math.unit(3.5, "meters"),
  45458. name: "Mouth",
  45459. image: {
  45460. source: "./media/characters/stellar-marbey/mouth.svg"
  45461. }
  45462. },
  45463. },
  45464. [
  45465. {
  45466. name: "Macro",
  45467. height: math.unit(53, "meters"),
  45468. default: true
  45469. },
  45470. ]
  45471. ))
  45472. characterMakers.push(() => makeCharacter(
  45473. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45474. {
  45475. front: {
  45476. height: math.unit(8 + 1/12, "feet"),
  45477. weight: math.unit(233, "lb"),
  45478. name: "Front",
  45479. image: {
  45480. source: "./media/characters/matsu/front.svg",
  45481. extra: 832/772,
  45482. bottom: 40/872
  45483. }
  45484. },
  45485. back: {
  45486. height: math.unit(8 + 1/12, "feet"),
  45487. weight: math.unit(233, "lb"),
  45488. name: "Back",
  45489. image: {
  45490. source: "./media/characters/matsu/back.svg",
  45491. extra: 839/780,
  45492. bottom: 47/886
  45493. }
  45494. },
  45495. },
  45496. [
  45497. {
  45498. name: "Normal",
  45499. height: math.unit(8 + 1/12, "feet"),
  45500. default: true
  45501. },
  45502. ]
  45503. ))
  45504. characterMakers.push(() => makeCharacter(
  45505. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45506. {
  45507. front: {
  45508. height: math.unit(4, "feet"),
  45509. weight: math.unit(148, "lb"),
  45510. name: "Front",
  45511. image: {
  45512. source: "./media/characters/thiz/front.svg",
  45513. extra: 1913/1748,
  45514. bottom: 62/1975
  45515. }
  45516. },
  45517. },
  45518. [
  45519. {
  45520. name: "Normal",
  45521. height: math.unit(4, "feet"),
  45522. default: true
  45523. },
  45524. ]
  45525. ))
  45526. characterMakers.push(() => makeCharacter(
  45527. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45528. {
  45529. front: {
  45530. height: math.unit(7 + 6/12, "feet"),
  45531. weight: math.unit(267, "lb"),
  45532. name: "Front",
  45533. image: {
  45534. source: "./media/characters/marcel/front.svg",
  45535. extra: 1221/1096,
  45536. bottom: 76/1297
  45537. }
  45538. },
  45539. },
  45540. [
  45541. {
  45542. name: "Normal",
  45543. height: math.unit(7 + 6/12, "feet"),
  45544. default: true
  45545. },
  45546. ]
  45547. ))
  45548. characterMakers.push(() => makeCharacter(
  45549. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45550. {
  45551. side: {
  45552. height: math.unit(42, "meters"),
  45553. name: "Side",
  45554. image: {
  45555. source: "./media/characters/flake/side.svg",
  45556. extra: 1525/1306,
  45557. bottom: 209/1734
  45558. }
  45559. },
  45560. },
  45561. [
  45562. {
  45563. name: "Normal",
  45564. height: math.unit(42, "meters"),
  45565. default: true
  45566. },
  45567. ]
  45568. ))
  45569. characterMakers.push(() => makeCharacter(
  45570. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45571. {
  45572. dressed: {
  45573. height: math.unit(6 + 4/12, "feet"),
  45574. weight: math.unit(520, "lb"),
  45575. name: "Dressed",
  45576. image: {
  45577. source: "./media/characters/someonne/dressed.svg",
  45578. extra: 1020/1010,
  45579. bottom: 178/1198
  45580. }
  45581. },
  45582. undressed: {
  45583. height: math.unit(6 + 4/12, "feet"),
  45584. weight: math.unit(520, "lb"),
  45585. name: "Undressed",
  45586. image: {
  45587. source: "./media/characters/someonne/undressed.svg",
  45588. extra: 1019/1014,
  45589. bottom: 169/1188
  45590. }
  45591. },
  45592. },
  45593. [
  45594. {
  45595. name: "Normal",
  45596. height: math.unit(6 + 4/12, "feet"),
  45597. default: true
  45598. },
  45599. ]
  45600. ))
  45601. characterMakers.push(() => makeCharacter(
  45602. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45603. {
  45604. front: {
  45605. height: math.unit(3, "feet"),
  45606. weight: math.unit(30, "lb"),
  45607. name: "Front",
  45608. image: {
  45609. source: "./media/characters/till/front.svg",
  45610. extra: 892/823,
  45611. bottom: 55/947
  45612. }
  45613. },
  45614. },
  45615. [
  45616. {
  45617. name: "Normal",
  45618. height: math.unit(3, "feet"),
  45619. default: true
  45620. },
  45621. ]
  45622. ))
  45623. characterMakers.push(() => makeCharacter(
  45624. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45625. {
  45626. front: {
  45627. height: math.unit(9 + 8/12, "feet"),
  45628. weight: math.unit(800, "lb"),
  45629. name: "Front",
  45630. image: {
  45631. source: "./media/characters/sydney-heki/front.svg",
  45632. extra: 1360/1300,
  45633. bottom: 22/1382
  45634. }
  45635. },
  45636. back: {
  45637. height: math.unit(9 + 8/12, "feet"),
  45638. weight: math.unit(800, "lb"),
  45639. name: "Back",
  45640. image: {
  45641. source: "./media/characters/sydney-heki/back.svg",
  45642. extra: 1356/1293,
  45643. bottom: 12/1368
  45644. }
  45645. },
  45646. frontDressed: {
  45647. height: math.unit(9 + 8/12, "feet"),
  45648. weight: math.unit(800, "lb"),
  45649. name: "Front-dressed",
  45650. image: {
  45651. source: "./media/characters/sydney-heki/front-dressed.svg",
  45652. extra: 1360/1300,
  45653. bottom: 22/1382
  45654. }
  45655. },
  45656. },
  45657. [
  45658. {
  45659. name: "Normal",
  45660. height: math.unit(9 + 8/12, "feet"),
  45661. default: true
  45662. },
  45663. {
  45664. name: "Macro",
  45665. height: math.unit(500, "feet")
  45666. },
  45667. {
  45668. name: "Megamacro",
  45669. height: math.unit(3.6, "miles")
  45670. },
  45671. ]
  45672. ))
  45673. characterMakers.push(() => makeCharacter(
  45674. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45675. {
  45676. front: {
  45677. height: math.unit(200, "cm"),
  45678. weight: math.unit(250, "lb"),
  45679. name: "Front",
  45680. image: {
  45681. source: "./media/characters/fowler-karlsson/front.svg",
  45682. extra: 897/845,
  45683. bottom: 123/1020
  45684. }
  45685. },
  45686. back: {
  45687. height: math.unit(200, "cm"),
  45688. weight: math.unit(250, "lb"),
  45689. name: "Back",
  45690. image: {
  45691. source: "./media/characters/fowler-karlsson/back.svg",
  45692. extra: 999/944,
  45693. bottom: 26/1025
  45694. }
  45695. },
  45696. dick: {
  45697. height: math.unit(1.92, "feet"),
  45698. weight: math.unit(150, "lb"),
  45699. name: "Dick",
  45700. image: {
  45701. source: "./media/characters/fowler-karlsson/dick.svg"
  45702. }
  45703. },
  45704. },
  45705. [
  45706. {
  45707. name: "Normal",
  45708. height: math.unit(200, "cm"),
  45709. default: true
  45710. },
  45711. {
  45712. name: "Smaller Macro",
  45713. height: math.unit(90, "m")
  45714. },
  45715. {
  45716. name: "Macro",
  45717. height: math.unit(150, "m")
  45718. },
  45719. {
  45720. name: "Bigger Macro",
  45721. height: math.unit(300, "m")
  45722. },
  45723. ]
  45724. ))
  45725. characterMakers.push(() => makeCharacter(
  45726. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45727. {
  45728. side: {
  45729. height: math.unit(8 + 2/12, "feet"),
  45730. weight: math.unit(1, "tonne"),
  45731. name: "Side",
  45732. image: {
  45733. source: "./media/characters/rylide/side.svg",
  45734. extra: 1318/1034,
  45735. bottom: 106/1424
  45736. }
  45737. },
  45738. sitting: {
  45739. height: math.unit(303, "cm"),
  45740. weight: math.unit(1, "tonne"),
  45741. name: "Sitting",
  45742. image: {
  45743. source: "./media/characters/rylide/sitting.svg",
  45744. extra: 1303/1103,
  45745. bottom: 36/1339
  45746. }
  45747. },
  45748. },
  45749. [
  45750. {
  45751. name: "Normal",
  45752. height: math.unit(8 + 2/12, "feet"),
  45753. default: true
  45754. },
  45755. ]
  45756. ))
  45757. characterMakers.push(() => makeCharacter(
  45758. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45759. {
  45760. front: {
  45761. height: math.unit(5 + 10/12, "feet"),
  45762. weight: math.unit(160, "lb"),
  45763. name: "Front",
  45764. image: {
  45765. source: "./media/characters/pudask/front.svg",
  45766. extra: 1616/1590,
  45767. bottom: 161/1777
  45768. }
  45769. },
  45770. },
  45771. [
  45772. {
  45773. name: "Ferret Height",
  45774. height: math.unit(2 + 5/12, "feet")
  45775. },
  45776. {
  45777. name: "Canon Height",
  45778. height: math.unit(5 + 10/12, "feet"),
  45779. default: true
  45780. },
  45781. ]
  45782. ))
  45783. characterMakers.push(() => makeCharacter(
  45784. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45785. {
  45786. front: {
  45787. height: math.unit(3 + 6/12, "feet"),
  45788. weight: math.unit(60, "lb"),
  45789. name: "Front",
  45790. image: {
  45791. source: "./media/characters/ramita/front.svg",
  45792. extra: 1402/1232,
  45793. bottom: 62/1464
  45794. }
  45795. },
  45796. dressed: {
  45797. height: math.unit(3 + 6/12, "feet"),
  45798. weight: math.unit(60, "lb"),
  45799. name: "Dressed",
  45800. image: {
  45801. source: "./media/characters/ramita/dressed.svg",
  45802. extra: 1534/1249,
  45803. bottom: 50/1584
  45804. }
  45805. },
  45806. },
  45807. [
  45808. {
  45809. name: "Normal",
  45810. height: math.unit(3 + 6/12, "feet"),
  45811. default: true
  45812. },
  45813. ]
  45814. ))
  45815. characterMakers.push(() => makeCharacter(
  45816. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45817. {
  45818. front: {
  45819. height: math.unit(8, "feet"),
  45820. name: "Front",
  45821. image: {
  45822. source: "./media/characters/ark/front.svg",
  45823. extra: 772/693,
  45824. bottom: 45/817
  45825. }
  45826. },
  45827. },
  45828. [
  45829. {
  45830. name: "Normal",
  45831. height: math.unit(8, "feet"),
  45832. default: true
  45833. },
  45834. ]
  45835. ))
  45836. characterMakers.push(() => makeCharacter(
  45837. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45838. {
  45839. front: {
  45840. height: math.unit(6, "feet"),
  45841. weight: math.unit(250, "lb"),
  45842. volume: math.unit(5/8, "gallons"),
  45843. name: "Front",
  45844. image: {
  45845. source: "./media/characters/ludwig-horn/front.svg",
  45846. extra: 1782/1635,
  45847. bottom: 96/1878
  45848. }
  45849. },
  45850. back: {
  45851. height: math.unit(6, "feet"),
  45852. weight: math.unit(250, "lb"),
  45853. volume: math.unit(5/8, "gallons"),
  45854. name: "Back",
  45855. image: {
  45856. source: "./media/characters/ludwig-horn/back.svg",
  45857. extra: 1874/1729,
  45858. bottom: 27/1901
  45859. }
  45860. },
  45861. dick: {
  45862. height: math.unit(1.05, "feet"),
  45863. weight: math.unit(15, "lb"),
  45864. volume: math.unit(5/8, "gallons"),
  45865. name: "Dick",
  45866. image: {
  45867. source: "./media/characters/ludwig-horn/dick.svg"
  45868. }
  45869. },
  45870. },
  45871. [
  45872. {
  45873. name: "Small",
  45874. height: math.unit(6, "feet")
  45875. },
  45876. {
  45877. name: "Typical",
  45878. height: math.unit(12, "feet"),
  45879. default: true
  45880. },
  45881. {
  45882. name: "Building",
  45883. height: math.unit(80, "feet")
  45884. },
  45885. {
  45886. name: "Town",
  45887. height: math.unit(800, "feet")
  45888. },
  45889. {
  45890. name: "Kingdom",
  45891. height: math.unit(80000, "feet")
  45892. },
  45893. {
  45894. name: "Planet",
  45895. height: math.unit(8000000, "feet")
  45896. },
  45897. {
  45898. name: "Universe",
  45899. height: math.unit(8000000000, "feet")
  45900. },
  45901. {
  45902. name: "Transcended",
  45903. height: math.unit(8e27, "feet")
  45904. },
  45905. ]
  45906. ))
  45907. characterMakers.push(() => makeCharacter(
  45908. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45909. {
  45910. front: {
  45911. height: math.unit(5, "feet"),
  45912. weight: math.unit(50, "kg"),
  45913. name: "Front",
  45914. image: {
  45915. source: "./media/characters/biot-avery/front.svg",
  45916. extra: 1295/1232,
  45917. bottom: 86/1381
  45918. }
  45919. },
  45920. },
  45921. [
  45922. {
  45923. name: "Normal",
  45924. height: math.unit(5, "feet"),
  45925. default: true
  45926. },
  45927. ]
  45928. ))
  45929. characterMakers.push(() => makeCharacter(
  45930. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45931. {
  45932. front: {
  45933. height: math.unit(6, "feet"),
  45934. name: "Front",
  45935. image: {
  45936. source: "./media/characters/kitsune-kiro/front.svg",
  45937. extra: 1270/1158,
  45938. bottom: 42/1312
  45939. }
  45940. },
  45941. frontAlt: {
  45942. height: math.unit(6, "feet"),
  45943. name: "Front-alt",
  45944. image: {
  45945. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45946. extra: 1130/1081,
  45947. bottom: 36/1166
  45948. }
  45949. },
  45950. },
  45951. [
  45952. {
  45953. name: "Smol",
  45954. height: math.unit(3, "feet")
  45955. },
  45956. {
  45957. name: "Normal",
  45958. height: math.unit(6, "feet"),
  45959. default: true
  45960. },
  45961. ]
  45962. ))
  45963. characterMakers.push(() => makeCharacter(
  45964. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45965. {
  45966. front: {
  45967. height: math.unit(6, "feet"),
  45968. weight: math.unit(125, "lb"),
  45969. name: "Front",
  45970. image: {
  45971. source: "./media/characters/jack-thatcher/front.svg",
  45972. extra: 1474/1370,
  45973. bottom: 26/1500
  45974. }
  45975. },
  45976. back: {
  45977. height: math.unit(6, "feet"),
  45978. weight: math.unit(125, "lb"),
  45979. name: "Back",
  45980. image: {
  45981. source: "./media/characters/jack-thatcher/back.svg",
  45982. extra: 1489/1384,
  45983. bottom: 18/1507
  45984. }
  45985. },
  45986. },
  45987. [
  45988. {
  45989. name: "Normal",
  45990. height: math.unit(6, "feet"),
  45991. default: true
  45992. },
  45993. {
  45994. name: "Macro",
  45995. height: math.unit(75, "feet")
  45996. },
  45997. {
  45998. name: "Macro-er",
  45999. height: math.unit(250, "feet")
  46000. },
  46001. ]
  46002. ))
  46003. characterMakers.push(() => makeCharacter(
  46004. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46005. {
  46006. front: {
  46007. height: math.unit(7, "feet"),
  46008. weight: math.unit(110, "kg"),
  46009. name: "Front",
  46010. image: {
  46011. source: "./media/characters/max-hyper/front.svg",
  46012. extra: 1969/1881,
  46013. bottom: 49/2018
  46014. }
  46015. },
  46016. },
  46017. [
  46018. {
  46019. name: "Normal",
  46020. height: math.unit(7, "feet"),
  46021. default: true
  46022. },
  46023. ]
  46024. ))
  46025. characterMakers.push(() => makeCharacter(
  46026. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46027. {
  46028. front: {
  46029. height: math.unit(5 + 5/12, "feet"),
  46030. weight: math.unit(160, "lb"),
  46031. name: "Front",
  46032. image: {
  46033. source: "./media/characters/spook/front.svg",
  46034. extra: 794/791,
  46035. bottom: 54/848
  46036. }
  46037. },
  46038. back: {
  46039. height: math.unit(5 + 5/12, "feet"),
  46040. weight: math.unit(160, "lb"),
  46041. name: "Back",
  46042. image: {
  46043. source: "./media/characters/spook/back.svg",
  46044. extra: 812/798,
  46045. bottom: 32/844
  46046. }
  46047. },
  46048. },
  46049. [
  46050. {
  46051. name: "Normal",
  46052. height: math.unit(5 + 5/12, "feet"),
  46053. default: true
  46054. },
  46055. ]
  46056. ))
  46057. characterMakers.push(() => makeCharacter(
  46058. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46059. {
  46060. front: {
  46061. height: math.unit(18, "feet"),
  46062. name: "Front",
  46063. image: {
  46064. source: "./media/characters/xeaduulix/front.svg",
  46065. extra: 1380/1166,
  46066. bottom: 110/1490
  46067. }
  46068. },
  46069. back: {
  46070. height: math.unit(18, "feet"),
  46071. name: "Back",
  46072. image: {
  46073. source: "./media/characters/xeaduulix/back.svg",
  46074. extra: 1592/1170,
  46075. bottom: 128/1720
  46076. }
  46077. },
  46078. frontNsfw: {
  46079. height: math.unit(18, "feet"),
  46080. name: "Front (NSFW)",
  46081. image: {
  46082. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46083. extra: 1380/1166,
  46084. bottom: 110/1490
  46085. }
  46086. },
  46087. backNsfw: {
  46088. height: math.unit(18, "feet"),
  46089. name: "Back (NSFW)",
  46090. image: {
  46091. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46092. extra: 1592/1170,
  46093. bottom: 128/1720
  46094. }
  46095. },
  46096. },
  46097. [
  46098. {
  46099. name: "Normal",
  46100. height: math.unit(18, "feet"),
  46101. default: true
  46102. },
  46103. ]
  46104. ))
  46105. characterMakers.push(() => makeCharacter(
  46106. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46107. {
  46108. spreadWings: {
  46109. height: math.unit(20, "feet"),
  46110. name: "Spread Wings",
  46111. image: {
  46112. source: "./media/characters/fledge/spread-wings.svg",
  46113. extra: 693/635,
  46114. bottom: 26/719
  46115. }
  46116. },
  46117. front: {
  46118. height: math.unit(20, "feet"),
  46119. name: "Front",
  46120. image: {
  46121. source: "./media/characters/fledge/front.svg",
  46122. extra: 684/637,
  46123. bottom: 18/702
  46124. }
  46125. },
  46126. frontAlt: {
  46127. height: math.unit(20, "feet"),
  46128. name: "Front (Alt)",
  46129. image: {
  46130. source: "./media/characters/fledge/front-alt.svg",
  46131. extra: 708/664,
  46132. bottom: 13/721
  46133. }
  46134. },
  46135. back: {
  46136. height: math.unit(20, "feet"),
  46137. name: "Back",
  46138. image: {
  46139. source: "./media/characters/fledge/back.svg",
  46140. extra: 718/634,
  46141. bottom: 22/740
  46142. }
  46143. },
  46144. head: {
  46145. height: math.unit(5.55, "feet"),
  46146. name: "Head",
  46147. image: {
  46148. source: "./media/characters/fledge/head.svg"
  46149. }
  46150. },
  46151. headAlt: {
  46152. height: math.unit(5.1, "feet"),
  46153. name: "Head (Alt)",
  46154. image: {
  46155. source: "./media/characters/fledge/head-alt.svg"
  46156. }
  46157. },
  46158. },
  46159. [
  46160. {
  46161. name: "Small",
  46162. height: math.unit(6 + 2/12, "feet")
  46163. },
  46164. {
  46165. name: "Big",
  46166. height: math.unit(20, "feet"),
  46167. default: true
  46168. },
  46169. {
  46170. name: "Giant",
  46171. height: math.unit(100, "feet")
  46172. },
  46173. {
  46174. name: "Macro",
  46175. height: math.unit(200, "feet")
  46176. },
  46177. ]
  46178. ))
  46179. characterMakers.push(() => makeCharacter(
  46180. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46181. {
  46182. front: {
  46183. height: math.unit(1, "meter"),
  46184. name: "Front",
  46185. image: {
  46186. source: "./media/characters/atlas-morenai/front.svg",
  46187. extra: 1275/1043,
  46188. bottom: 19/1294
  46189. }
  46190. },
  46191. back: {
  46192. height: math.unit(1, "meter"),
  46193. name: "Back",
  46194. image: {
  46195. source: "./media/characters/atlas-morenai/back.svg",
  46196. extra: 1141/1001,
  46197. bottom: 25/1166
  46198. }
  46199. },
  46200. },
  46201. [
  46202. {
  46203. name: "Normal",
  46204. height: math.unit(1, "meter"),
  46205. default: true
  46206. },
  46207. {
  46208. name: "Magic-Infused",
  46209. height: math.unit(5, "meters")
  46210. },
  46211. ]
  46212. ))
  46213. characterMakers.push(() => makeCharacter(
  46214. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46215. {
  46216. front: {
  46217. height: math.unit(5, "meters"),
  46218. name: "Front",
  46219. image: {
  46220. source: "./media/characters/cintia/front.svg",
  46221. extra: 1312/1228,
  46222. bottom: 38/1350
  46223. }
  46224. },
  46225. back: {
  46226. height: math.unit(5, "meters"),
  46227. name: "Back",
  46228. image: {
  46229. source: "./media/characters/cintia/back.svg",
  46230. extra: 1260/1166,
  46231. bottom: 98/1358
  46232. }
  46233. },
  46234. frontDick: {
  46235. height: math.unit(5, "meters"),
  46236. name: "Front (Dick)",
  46237. image: {
  46238. source: "./media/characters/cintia/front-dick.svg",
  46239. extra: 1312/1228,
  46240. bottom: 38/1350
  46241. }
  46242. },
  46243. backDick: {
  46244. height: math.unit(5, "meters"),
  46245. name: "Back (Dick)",
  46246. image: {
  46247. source: "./media/characters/cintia/back-dick.svg",
  46248. extra: 1260/1166,
  46249. bottom: 98/1358
  46250. }
  46251. },
  46252. bust: {
  46253. height: math.unit(1.97, "meters"),
  46254. name: "Bust",
  46255. image: {
  46256. source: "./media/characters/cintia/bust.svg",
  46257. extra: 617/565,
  46258. bottom: 0/617
  46259. }
  46260. },
  46261. },
  46262. [
  46263. {
  46264. name: "Normal",
  46265. height: math.unit(5, "meters"),
  46266. default: true
  46267. },
  46268. ]
  46269. ))
  46270. characterMakers.push(() => makeCharacter(
  46271. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46272. {
  46273. side: {
  46274. height: math.unit(100, "feet"),
  46275. name: "Side",
  46276. image: {
  46277. source: "./media/characters/denora/side.svg",
  46278. extra: 875/803,
  46279. bottom: 9/884
  46280. }
  46281. },
  46282. },
  46283. [
  46284. {
  46285. name: "Standard",
  46286. height: math.unit(100, "feet"),
  46287. default: true
  46288. },
  46289. {
  46290. name: "Grand",
  46291. height: math.unit(1000, "feet")
  46292. },
  46293. {
  46294. name: "Conquering",
  46295. height: math.unit(10000, "feet")
  46296. },
  46297. ]
  46298. ))
  46299. characterMakers.push(() => makeCharacter(
  46300. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46301. {
  46302. dressed: {
  46303. height: math.unit(8 + 5/12, "feet"),
  46304. weight: math.unit(700, "lb"),
  46305. name: "Dressed",
  46306. image: {
  46307. source: "./media/characters/kiva/dressed.svg",
  46308. extra: 1102/1055,
  46309. bottom: 60/1162
  46310. }
  46311. },
  46312. nude: {
  46313. height: math.unit(8 + 5/12, "feet"),
  46314. weight: math.unit(700, "lb"),
  46315. name: "Nude",
  46316. image: {
  46317. source: "./media/characters/kiva/nude.svg",
  46318. extra: 1102/1055,
  46319. bottom: 60/1162
  46320. }
  46321. },
  46322. },
  46323. [
  46324. {
  46325. name: "Base Height",
  46326. height: math.unit(8 + 5/12, "feet"),
  46327. default: true
  46328. },
  46329. {
  46330. name: "Macro",
  46331. height: math.unit(100, "feet")
  46332. },
  46333. {
  46334. name: "Max",
  46335. height: math.unit(3280, "feet")
  46336. },
  46337. ]
  46338. ))
  46339. characterMakers.push(() => makeCharacter(
  46340. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46341. {
  46342. front: {
  46343. height: math.unit(6 + 8/12, "feet"),
  46344. weight: math.unit(250, "lb"),
  46345. name: "Front",
  46346. image: {
  46347. source: "./media/characters/ztragon/front.svg",
  46348. extra: 1825/1684,
  46349. bottom: 98/1923
  46350. }
  46351. },
  46352. },
  46353. [
  46354. {
  46355. name: "Normal",
  46356. height: math.unit(6 + 8/12, "feet"),
  46357. default: true
  46358. },
  46359. {
  46360. name: "Macro",
  46361. height: math.unit(80, "feet")
  46362. },
  46363. ]
  46364. ))
  46365. characterMakers.push(() => makeCharacter(
  46366. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46367. {
  46368. front: {
  46369. height: math.unit(10.4, "feet"),
  46370. weight: math.unit(2, "tons"),
  46371. name: "Front",
  46372. image: {
  46373. source: "./media/characters/yesenia/front.svg",
  46374. extra: 1479/1474,
  46375. bottom: 233/1712
  46376. }
  46377. },
  46378. },
  46379. [
  46380. {
  46381. name: "Normal",
  46382. height: math.unit(10.4, "feet"),
  46383. default: true
  46384. },
  46385. ]
  46386. ))
  46387. characterMakers.push(() => makeCharacter(
  46388. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46389. {
  46390. normal: {
  46391. height: math.unit(6 + 1/12, "feet"),
  46392. weight: math.unit(180, "lb"),
  46393. name: "Normal",
  46394. image: {
  46395. source: "./media/characters/leanne-lycheborne/normal.svg",
  46396. extra: 1748/1660,
  46397. bottom: 98/1846
  46398. }
  46399. },
  46400. were: {
  46401. height: math.unit(12, "feet"),
  46402. weight: math.unit(1600, "lb"),
  46403. name: "Were",
  46404. image: {
  46405. source: "./media/characters/leanne-lycheborne/were.svg",
  46406. extra: 1485/1432,
  46407. bottom: 66/1551
  46408. }
  46409. },
  46410. },
  46411. [
  46412. {
  46413. name: "Normal",
  46414. height: math.unit(6 + 1/12, "feet"),
  46415. default: true
  46416. },
  46417. ]
  46418. ))
  46419. characterMakers.push(() => makeCharacter(
  46420. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46421. {
  46422. side: {
  46423. height: math.unit(13, "feet"),
  46424. name: "Side",
  46425. image: {
  46426. source: "./media/characters/kira-tyler/side.svg",
  46427. extra: 693/393,
  46428. bottom: 58/751
  46429. }
  46430. },
  46431. },
  46432. [
  46433. {
  46434. name: "Normal",
  46435. height: math.unit(13, "feet"),
  46436. default: true
  46437. },
  46438. ]
  46439. ))
  46440. characterMakers.push(() => makeCharacter(
  46441. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46442. {
  46443. front: {
  46444. height: math.unit(10.3, "feet"),
  46445. weight: math.unit(150, "lb"),
  46446. name: "Front",
  46447. image: {
  46448. source: "./media/characters/blaze/front.svg",
  46449. extra: 1378/1286,
  46450. bottom: 172/1550
  46451. }
  46452. },
  46453. },
  46454. [
  46455. {
  46456. name: "Normal",
  46457. height: math.unit(10.3, "feet"),
  46458. default: true
  46459. },
  46460. ]
  46461. ))
  46462. characterMakers.push(() => makeCharacter(
  46463. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46464. {
  46465. side: {
  46466. height: math.unit(2, "meters"),
  46467. weight: math.unit(400, "kg"),
  46468. name: "Side",
  46469. image: {
  46470. source: "./media/characters/anu/side.svg",
  46471. extra: 506/394,
  46472. bottom: 18/524
  46473. }
  46474. },
  46475. },
  46476. [
  46477. {
  46478. name: "Humanoid",
  46479. height: math.unit(2, "meters")
  46480. },
  46481. {
  46482. name: "Normal",
  46483. height: math.unit(5, "meters"),
  46484. default: true
  46485. },
  46486. ]
  46487. ))
  46488. characterMakers.push(() => makeCharacter(
  46489. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46490. {
  46491. front: {
  46492. height: math.unit(5 + 5/12, "feet"),
  46493. weight: math.unit(170, "lb"),
  46494. name: "Front",
  46495. image: {
  46496. source: "./media/characters/synx-the-lynx/front.svg",
  46497. extra: 1893/1745,
  46498. bottom: 17/1910
  46499. }
  46500. },
  46501. side: {
  46502. height: math.unit(5 + 5/12, "feet"),
  46503. weight: math.unit(170, "lb"),
  46504. name: "Side",
  46505. image: {
  46506. source: "./media/characters/synx-the-lynx/side.svg",
  46507. extra: 1884/1740,
  46508. bottom: 39/1923
  46509. }
  46510. },
  46511. back: {
  46512. height: math.unit(5 + 5/12, "feet"),
  46513. weight: math.unit(170, "lb"),
  46514. name: "Back",
  46515. image: {
  46516. source: "./media/characters/synx-the-lynx/back.svg",
  46517. extra: 1903/1755,
  46518. bottom: 14/1917
  46519. }
  46520. },
  46521. },
  46522. [
  46523. {
  46524. name: "Normal",
  46525. height: math.unit(5 + 5/12, "feet"),
  46526. default: true
  46527. },
  46528. ]
  46529. ))
  46530. characterMakers.push(() => makeCharacter(
  46531. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46532. {
  46533. back: {
  46534. height: math.unit(15, "feet"),
  46535. name: "Back",
  46536. image: {
  46537. source: "./media/characters/nadezda-fex/back.svg",
  46538. extra: 1695/1481,
  46539. bottom: 25/1720
  46540. }
  46541. },
  46542. },
  46543. [
  46544. {
  46545. name: "Normal",
  46546. height: math.unit(15, "feet"),
  46547. default: true
  46548. },
  46549. {
  46550. name: "Macro",
  46551. height: math.unit(2.5, "miles")
  46552. },
  46553. {
  46554. name: "Goddess",
  46555. height: math.unit(2, "multiverses")
  46556. },
  46557. ]
  46558. ))
  46559. characterMakers.push(() => makeCharacter(
  46560. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46561. {
  46562. front: {
  46563. height: math.unit(216, "cm"),
  46564. name: "Front",
  46565. image: {
  46566. source: "./media/characters/lev/front.svg",
  46567. extra: 1728/1670,
  46568. bottom: 82/1810
  46569. }
  46570. },
  46571. back: {
  46572. height: math.unit(216, "cm"),
  46573. name: "Back",
  46574. image: {
  46575. source: "./media/characters/lev/back.svg",
  46576. extra: 1738/1675,
  46577. bottom: 24/1762
  46578. }
  46579. },
  46580. dressed: {
  46581. height: math.unit(216, "cm"),
  46582. name: "Dressed",
  46583. image: {
  46584. source: "./media/characters/lev/dressed.svg",
  46585. extra: 1397/1351,
  46586. bottom: 73/1470
  46587. }
  46588. },
  46589. head: {
  46590. height: math.unit(0.51, "meter"),
  46591. name: "Head",
  46592. image: {
  46593. source: "./media/characters/lev/head.svg"
  46594. }
  46595. },
  46596. },
  46597. [
  46598. {
  46599. name: "Normal",
  46600. height: math.unit(216, "cm"),
  46601. default: true
  46602. },
  46603. {
  46604. name: "Relatively Macro",
  46605. height: math.unit(80, "meters")
  46606. },
  46607. {
  46608. name: "Megamacro",
  46609. height: math.unit(21600, "meters")
  46610. },
  46611. {
  46612. name: "Megamacro+",
  46613. height: math.unit(64800, "meters")
  46614. },
  46615. ]
  46616. ))
  46617. characterMakers.push(() => makeCharacter(
  46618. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46619. {
  46620. front: {
  46621. height: math.unit(2, "meters"),
  46622. weight: math.unit(80, "kg"),
  46623. name: "Front",
  46624. image: {
  46625. source: "./media/characters/moka/front.svg",
  46626. extra: 1337/1255,
  46627. bottom: 58/1395
  46628. }
  46629. },
  46630. },
  46631. [
  46632. {
  46633. name: "Micro",
  46634. height: math.unit(15, "cm")
  46635. },
  46636. {
  46637. name: "Normal",
  46638. height: math.unit(2, "meters"),
  46639. default: true
  46640. },
  46641. {
  46642. name: "Macro",
  46643. height: math.unit(20, "meters"),
  46644. },
  46645. ]
  46646. ))
  46647. characterMakers.push(() => makeCharacter(
  46648. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46649. {
  46650. front: {
  46651. height: math.unit(9, "feet"),
  46652. weight: math.unit(240, "lb"),
  46653. name: "Front",
  46654. image: {
  46655. source: "./media/characters/kuzco/front.svg",
  46656. extra: 1593/1487,
  46657. bottom: 32/1625
  46658. }
  46659. },
  46660. side: {
  46661. height: math.unit(9, "feet"),
  46662. weight: math.unit(240, "lb"),
  46663. name: "Side",
  46664. image: {
  46665. source: "./media/characters/kuzco/side.svg",
  46666. extra: 1575/1485,
  46667. bottom: 30/1605
  46668. }
  46669. },
  46670. back: {
  46671. height: math.unit(9, "feet"),
  46672. weight: math.unit(240, "lb"),
  46673. name: "Back",
  46674. image: {
  46675. source: "./media/characters/kuzco/back.svg",
  46676. extra: 1603/1514,
  46677. bottom: 14/1617
  46678. }
  46679. },
  46680. },
  46681. [
  46682. {
  46683. name: "Normal",
  46684. height: math.unit(9, "feet"),
  46685. default: true
  46686. },
  46687. ]
  46688. ))
  46689. characterMakers.push(() => makeCharacter(
  46690. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46691. {
  46692. side: {
  46693. height: math.unit(2, "meters"),
  46694. weight: math.unit(300, "kg"),
  46695. name: "Side",
  46696. image: {
  46697. source: "./media/characters/ceruleus/side.svg",
  46698. extra: 1068/974,
  46699. bottom: 126/1194
  46700. }
  46701. },
  46702. maw: {
  46703. height: math.unit(0.8125, "meter"),
  46704. name: "Maw",
  46705. image: {
  46706. source: "./media/characters/ceruleus/maw.svg"
  46707. }
  46708. },
  46709. },
  46710. [
  46711. {
  46712. name: "Normal",
  46713. height: math.unit(16, "meters"),
  46714. default: true
  46715. },
  46716. ]
  46717. ))
  46718. characterMakers.push(() => makeCharacter(
  46719. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46720. {
  46721. front: {
  46722. height: math.unit(9, "feet"),
  46723. weight: math.unit(500, "kg"),
  46724. name: "Front",
  46725. image: {
  46726. source: "./media/characters/acouya/front.svg",
  46727. extra: 1660/1473,
  46728. bottom: 28/1688
  46729. }
  46730. },
  46731. },
  46732. [
  46733. {
  46734. name: "Normal",
  46735. height: math.unit(9, "feet"),
  46736. default: true
  46737. },
  46738. ]
  46739. ))
  46740. characterMakers.push(() => makeCharacter(
  46741. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46742. {
  46743. front: {
  46744. height: math.unit(5 + 6/12, "feet"),
  46745. weight: math.unit(195, "lb"),
  46746. name: "Front",
  46747. image: {
  46748. source: "./media/characters/vant/front.svg",
  46749. extra: 1396/1320,
  46750. bottom: 20/1416
  46751. }
  46752. },
  46753. back: {
  46754. height: math.unit(5 + 6/12, "feet"),
  46755. weight: math.unit(195, "lb"),
  46756. name: "Back",
  46757. image: {
  46758. source: "./media/characters/vant/back.svg",
  46759. extra: 1396/1320,
  46760. bottom: 20/1416
  46761. }
  46762. },
  46763. maw: {
  46764. height: math.unit(0.75, "feet"),
  46765. name: "Maw",
  46766. image: {
  46767. source: "./media/characters/vant/maw.svg"
  46768. }
  46769. },
  46770. paw: {
  46771. height: math.unit(1.07, "feet"),
  46772. name: "Paw",
  46773. image: {
  46774. source: "./media/characters/vant/paw.svg"
  46775. }
  46776. },
  46777. },
  46778. [
  46779. {
  46780. name: "Micro",
  46781. height: math.unit(0.25, "inches")
  46782. },
  46783. {
  46784. name: "Normal",
  46785. height: math.unit(5 + 6/12, "feet"),
  46786. default: true
  46787. },
  46788. {
  46789. name: "Macro",
  46790. height: math.unit(75, "feet")
  46791. },
  46792. ]
  46793. ))
  46794. characterMakers.push(() => makeCharacter(
  46795. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46796. {
  46797. front: {
  46798. height: math.unit(30, "meters"),
  46799. weight: math.unit(363, "tons"),
  46800. name: "Front",
  46801. image: {
  46802. source: "./media/characters/ahra/front.svg",
  46803. extra: 1914/1814,
  46804. bottom: 46/1960
  46805. }
  46806. },
  46807. },
  46808. [
  46809. {
  46810. name: "Macro",
  46811. height: math.unit(30, "meters"),
  46812. default: true
  46813. },
  46814. ]
  46815. ))
  46816. characterMakers.push(() => makeCharacter(
  46817. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46818. {
  46819. undressed: {
  46820. height: math.unit(2, "m"),
  46821. weight: math.unit(250, "kg"),
  46822. name: "Undressed",
  46823. image: {
  46824. source: "./media/characters/coriander/undressed.svg",
  46825. extra: 1757/1606,
  46826. bottom: 107/1864
  46827. }
  46828. },
  46829. dressed: {
  46830. height: math.unit(2, "m"),
  46831. weight: math.unit(250, "kg"),
  46832. name: "Dressed",
  46833. image: {
  46834. source: "./media/characters/coriander/dressed.svg",
  46835. extra: 1757/1606,
  46836. bottom: 107/1864
  46837. }
  46838. },
  46839. },
  46840. [
  46841. {
  46842. name: "Normal",
  46843. height: math.unit(4, "meters"),
  46844. default: true
  46845. },
  46846. {
  46847. name: "XL",
  46848. height: math.unit(6, "meters")
  46849. },
  46850. {
  46851. name: "XXL",
  46852. height: math.unit(8, "meters")
  46853. },
  46854. ]
  46855. ))
  46856. characterMakers.push(() => makeCharacter(
  46857. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46858. {
  46859. front: {
  46860. height: math.unit(6, "feet"),
  46861. name: "Front",
  46862. image: {
  46863. source: "./media/characters/syrinx/front.svg",
  46864. extra: 1557/1259,
  46865. bottom: 171/1728
  46866. }
  46867. },
  46868. },
  46869. [
  46870. {
  46871. name: "Normal",
  46872. height: math.unit(6 + 3/12, "feet"),
  46873. default: true
  46874. },
  46875. ]
  46876. ))
  46877. characterMakers.push(() => makeCharacter(
  46878. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46879. {
  46880. front: {
  46881. height: math.unit(11 + 6/12, "feet"),
  46882. weight: math.unit(1.5, "tons"),
  46883. name: "Front",
  46884. image: {
  46885. source: "./media/characters/bor/front.svg",
  46886. extra: 1189/1109,
  46887. bottom: 170/1359
  46888. }
  46889. },
  46890. },
  46891. [
  46892. {
  46893. name: "Normal",
  46894. height: math.unit(11 + 6/12, "feet"),
  46895. default: true
  46896. },
  46897. {
  46898. name: "Macro",
  46899. height: math.unit(32 + 9/12, "feet")
  46900. },
  46901. ]
  46902. ))
  46903. characterMakers.push(() => makeCharacter(
  46904. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46905. {
  46906. anthro: {
  46907. height: math.unit(9, "feet"),
  46908. weight: math.unit(2076, "lb"),
  46909. name: "Anthro",
  46910. image: {
  46911. source: "./media/characters/abacus/anthro.svg",
  46912. extra: 1540/1494,
  46913. bottom: 233/1773
  46914. }
  46915. },
  46916. pigeon: {
  46917. height: math.unit(1, "feet"),
  46918. name: "Pigeon",
  46919. image: {
  46920. source: "./media/characters/abacus/pigeon.svg",
  46921. extra: 528/525,
  46922. bottom: 46/574
  46923. }
  46924. },
  46925. },
  46926. [
  46927. {
  46928. name: "Normal",
  46929. height: math.unit(9, "feet"),
  46930. default: true
  46931. },
  46932. ]
  46933. ))
  46934. characterMakers.push(() => makeCharacter(
  46935. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46936. {
  46937. side: {
  46938. height: math.unit(6, "feet"),
  46939. name: "Side",
  46940. image: {
  46941. source: "./media/characters/delkhan/side.svg",
  46942. extra: 1884/1786,
  46943. bottom: 308/2192
  46944. }
  46945. },
  46946. head: {
  46947. height: math.unit(3.38, "feet"),
  46948. name: "Head",
  46949. image: {
  46950. source: "./media/characters/delkhan/head.svg"
  46951. }
  46952. },
  46953. },
  46954. [
  46955. {
  46956. name: "Normal",
  46957. height: math.unit(72, "feet"),
  46958. default: true
  46959. },
  46960. {
  46961. name: "Giant",
  46962. height: math.unit(172, "feet")
  46963. },
  46964. ]
  46965. ))
  46966. characterMakers.push(() => makeCharacter(
  46967. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46968. {
  46969. standing: {
  46970. height: math.unit(6, "feet"),
  46971. name: "Standing",
  46972. image: {
  46973. source: "./media/characters/euchidat/standing.svg",
  46974. extra: 1612/1553,
  46975. bottom: 116/1728
  46976. }
  46977. },
  46978. leaning: {
  46979. height: math.unit(6, "feet"),
  46980. name: "Leaning",
  46981. image: {
  46982. source: "./media/characters/euchidat/leaning.svg",
  46983. extra: 1719/1674,
  46984. bottom: 27/1746
  46985. }
  46986. },
  46987. },
  46988. [
  46989. {
  46990. name: "Normal",
  46991. height: math.unit(175, "feet"),
  46992. default: true
  46993. },
  46994. {
  46995. name: "Megamacro",
  46996. height: math.unit(190, "miles")
  46997. },
  46998. {
  46999. name: "Gigamacro",
  47000. height: math.unit(190000, "miles")
  47001. },
  47002. ]
  47003. ))
  47004. characterMakers.push(() => makeCharacter(
  47005. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47006. {
  47007. front: {
  47008. height: math.unit(6, "feet"),
  47009. weight: math.unit(150, "lb"),
  47010. name: "Front",
  47011. image: {
  47012. source: "./media/characters/rebecca-stack/front.svg",
  47013. extra: 1256/1201,
  47014. bottom: 18/1274
  47015. }
  47016. },
  47017. },
  47018. [
  47019. {
  47020. name: "Normal",
  47021. height: math.unit(5 + 8/12, "feet"),
  47022. default: true
  47023. },
  47024. {
  47025. name: "Demolitionist",
  47026. height: math.unit(200, "feet")
  47027. },
  47028. {
  47029. name: "Out of Control",
  47030. height: math.unit(2, "miles")
  47031. },
  47032. {
  47033. name: "Giga",
  47034. height: math.unit(7200, "miles")
  47035. },
  47036. ]
  47037. ))
  47038. characterMakers.push(() => makeCharacter(
  47039. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47040. {
  47041. front: {
  47042. height: math.unit(6, "feet"),
  47043. weight: math.unit(150, "lb"),
  47044. name: "Front",
  47045. image: {
  47046. source: "./media/characters/jenny-cartwright/front.svg",
  47047. extra: 1384/1376,
  47048. bottom: 58/1442
  47049. }
  47050. },
  47051. },
  47052. [
  47053. {
  47054. name: "Normal",
  47055. height: math.unit(6 + 7/12, "feet"),
  47056. default: true
  47057. },
  47058. {
  47059. name: "Librarian",
  47060. height: math.unit(55, "feet")
  47061. },
  47062. {
  47063. name: "Sightseer",
  47064. height: math.unit(50, "miles")
  47065. },
  47066. {
  47067. name: "Giga",
  47068. height: math.unit(30000, "miles")
  47069. },
  47070. ]
  47071. ))
  47072. characterMakers.push(() => makeCharacter(
  47073. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47074. {
  47075. nude: {
  47076. height: math.unit(8, "feet"),
  47077. weight: math.unit(225, "lb"),
  47078. name: "Nude",
  47079. image: {
  47080. source: "./media/characters/marvy/nude.svg",
  47081. extra: 1900/1683,
  47082. bottom: 89/1989
  47083. }
  47084. },
  47085. dressed: {
  47086. height: math.unit(8, "feet"),
  47087. weight: math.unit(225, "lb"),
  47088. name: "Dressed",
  47089. image: {
  47090. source: "./media/characters/marvy/dressed.svg",
  47091. extra: 1900/1683,
  47092. bottom: 89/1989
  47093. }
  47094. },
  47095. head: {
  47096. height: math.unit(2.85, "feet"),
  47097. name: "Head",
  47098. image: {
  47099. source: "./media/characters/marvy/head.svg"
  47100. }
  47101. },
  47102. },
  47103. [
  47104. {
  47105. name: "Normal",
  47106. height: math.unit(8, "feet"),
  47107. default: true
  47108. },
  47109. ]
  47110. ))
  47111. characterMakers.push(() => makeCharacter(
  47112. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47113. {
  47114. front: {
  47115. height: math.unit(8, "feet"),
  47116. weight: math.unit(250, "lb"),
  47117. name: "Front",
  47118. image: {
  47119. source: "./media/characters/leah/front.svg",
  47120. extra: 1257/1149,
  47121. bottom: 109/1366
  47122. }
  47123. },
  47124. },
  47125. [
  47126. {
  47127. name: "Normal",
  47128. height: math.unit(8, "feet"),
  47129. default: true
  47130. },
  47131. {
  47132. name: "Minimacro",
  47133. height: math.unit(40, "feet")
  47134. },
  47135. {
  47136. name: "Macro",
  47137. height: math.unit(124, "feet")
  47138. },
  47139. {
  47140. name: "Megamacro",
  47141. height: math.unit(850, "feet")
  47142. },
  47143. ]
  47144. ))
  47145. characterMakers.push(() => makeCharacter(
  47146. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47147. {
  47148. side: {
  47149. height: math.unit(13 + 6/12, "feet"),
  47150. weight: math.unit(3200, "lb"),
  47151. name: "Side",
  47152. image: {
  47153. source: "./media/characters/alvir/side.svg",
  47154. extra: 896/589,
  47155. bottom: 26/922
  47156. }
  47157. },
  47158. },
  47159. [
  47160. {
  47161. name: "Normal",
  47162. height: math.unit(13 + 6/12, "feet"),
  47163. default: true
  47164. },
  47165. ]
  47166. ))
  47167. characterMakers.push(() => makeCharacter(
  47168. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47169. {
  47170. front: {
  47171. height: math.unit(5 + 4/12, "feet"),
  47172. weight: math.unit(236, "lb"),
  47173. name: "Front",
  47174. image: {
  47175. source: "./media/characters/zaina-khalil/front.svg",
  47176. extra: 1533/1485,
  47177. bottom: 94/1627
  47178. }
  47179. },
  47180. side: {
  47181. height: math.unit(5 + 4/12, "feet"),
  47182. weight: math.unit(236, "lb"),
  47183. name: "Side",
  47184. image: {
  47185. source: "./media/characters/zaina-khalil/side.svg",
  47186. extra: 1537/1498,
  47187. bottom: 66/1603
  47188. }
  47189. },
  47190. back: {
  47191. height: math.unit(5 + 4/12, "feet"),
  47192. weight: math.unit(236, "lb"),
  47193. name: "Back",
  47194. image: {
  47195. source: "./media/characters/zaina-khalil/back.svg",
  47196. extra: 1546/1494,
  47197. bottom: 89/1635
  47198. }
  47199. },
  47200. },
  47201. [
  47202. {
  47203. name: "Normal",
  47204. height: math.unit(5 + 4/12, "feet"),
  47205. default: true
  47206. },
  47207. ]
  47208. ))
  47209. characterMakers.push(() => makeCharacter(
  47210. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47211. {
  47212. side: {
  47213. height: math.unit(12, "feet"),
  47214. weight: math.unit(4000, "lb"),
  47215. name: "Side",
  47216. image: {
  47217. source: "./media/characters/terry/side.svg",
  47218. extra: 1518/1439,
  47219. bottom: 149/1667
  47220. }
  47221. },
  47222. },
  47223. [
  47224. {
  47225. name: "Normal",
  47226. height: math.unit(12, "feet"),
  47227. default: true
  47228. },
  47229. ]
  47230. ))
  47231. characterMakers.push(() => makeCharacter(
  47232. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47233. {
  47234. front: {
  47235. height: math.unit(12, "feet"),
  47236. weight: math.unit(1500, "lb"),
  47237. name: "Front",
  47238. image: {
  47239. source: "./media/characters/kahea/front.svg",
  47240. extra: 1722/1617,
  47241. bottom: 179/1901
  47242. }
  47243. },
  47244. },
  47245. [
  47246. {
  47247. name: "Normal",
  47248. height: math.unit(12, "feet"),
  47249. default: true
  47250. },
  47251. ]
  47252. ))
  47253. characterMakers.push(() => makeCharacter(
  47254. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47255. {
  47256. demonFront: {
  47257. height: math.unit(36, "feet"),
  47258. name: "Front",
  47259. image: {
  47260. source: "./media/characters/alex-xuria/demon-front.svg",
  47261. extra: 1705/1673,
  47262. bottom: 198/1903
  47263. },
  47264. form: "demon",
  47265. default: true
  47266. },
  47267. demonBack: {
  47268. height: math.unit(36, "feet"),
  47269. name: "Back",
  47270. image: {
  47271. source: "./media/characters/alex-xuria/demon-back.svg",
  47272. extra: 1725/1693,
  47273. bottom: 70/1795
  47274. },
  47275. form: "demon"
  47276. },
  47277. demonHead: {
  47278. height: math.unit(2.14, "meters"),
  47279. name: "Head",
  47280. image: {
  47281. source: "./media/characters/alex-xuria/demon-head.svg"
  47282. },
  47283. form: "demon"
  47284. },
  47285. demonHand: {
  47286. height: math.unit(1.61, "meters"),
  47287. name: "Hand",
  47288. image: {
  47289. source: "./media/characters/alex-xuria/demon-hand.svg"
  47290. },
  47291. form: "demon"
  47292. },
  47293. demonPaw: {
  47294. height: math.unit(1.35, "meters"),
  47295. name: "Paw",
  47296. image: {
  47297. source: "./media/characters/alex-xuria/demon-paw.svg"
  47298. },
  47299. form: "demon"
  47300. },
  47301. demonFoot: {
  47302. height: math.unit(2.2, "meters"),
  47303. name: "Foot",
  47304. image: {
  47305. source: "./media/characters/alex-xuria/demon-foot.svg"
  47306. },
  47307. form: "demon"
  47308. },
  47309. demonCock: {
  47310. height: math.unit(1.74, "meters"),
  47311. name: "Cock",
  47312. image: {
  47313. source: "./media/characters/alex-xuria/demon-cock.svg"
  47314. },
  47315. form: "demon"
  47316. },
  47317. demonTailClosed: {
  47318. height: math.unit(1.47, "meters"),
  47319. name: "Tail (Closed)",
  47320. image: {
  47321. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47322. },
  47323. form: "demon"
  47324. },
  47325. demonTailOpen: {
  47326. height: math.unit(2.85, "meters"),
  47327. name: "Tail (Open)",
  47328. image: {
  47329. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47330. },
  47331. form: "demon"
  47332. },
  47333. incubusFront: {
  47334. height: math.unit(12, "feet"),
  47335. name: "Front",
  47336. image: {
  47337. source: "./media/characters/alex-xuria/incubus-front.svg",
  47338. extra: 1754/1677,
  47339. bottom: 125/1879
  47340. },
  47341. form: "incubus",
  47342. default: true
  47343. },
  47344. incubusBack: {
  47345. height: math.unit(12, "feet"),
  47346. name: "Back",
  47347. image: {
  47348. source: "./media/characters/alex-xuria/incubus-back.svg",
  47349. extra: 1702/1647,
  47350. bottom: 30/1732
  47351. },
  47352. form: "incubus"
  47353. },
  47354. incubusHead: {
  47355. height: math.unit(3.45, "feet"),
  47356. name: "Head",
  47357. image: {
  47358. source: "./media/characters/alex-xuria/incubus-head.svg"
  47359. },
  47360. form: "incubus"
  47361. },
  47362. rabbitFront: {
  47363. height: math.unit(6, "feet"),
  47364. name: "Front",
  47365. image: {
  47366. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47367. extra: 1369/1349,
  47368. bottom: 45/1414
  47369. },
  47370. form: "rabbit",
  47371. default: true
  47372. },
  47373. rabbitSide: {
  47374. height: math.unit(6, "feet"),
  47375. name: "Side",
  47376. image: {
  47377. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47378. extra: 1370/1356,
  47379. bottom: 37/1407
  47380. },
  47381. form: "rabbit"
  47382. },
  47383. rabbitBack: {
  47384. height: math.unit(6, "feet"),
  47385. name: "Back",
  47386. image: {
  47387. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47388. extra: 1375/1358,
  47389. bottom: 43/1418
  47390. },
  47391. form: "rabbit"
  47392. },
  47393. },
  47394. [
  47395. {
  47396. name: "Normal",
  47397. height: math.unit(6, "feet"),
  47398. default: true,
  47399. form: "rabbit"
  47400. },
  47401. {
  47402. name: "Incubus",
  47403. height: math.unit(12, "feet"),
  47404. default: true,
  47405. form: "incubus"
  47406. },
  47407. {
  47408. name: "Demon",
  47409. height: math.unit(36, "feet"),
  47410. default: true,
  47411. form: "demon"
  47412. }
  47413. ],
  47414. {
  47415. "demon": {
  47416. name: "Demon",
  47417. default: true
  47418. },
  47419. "incubus": {
  47420. name: "Incubus",
  47421. },
  47422. "rabbit": {
  47423. name: "Rabbit"
  47424. }
  47425. }
  47426. ))
  47427. characterMakers.push(() => makeCharacter(
  47428. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47429. {
  47430. front: {
  47431. height: math.unit(7 + 5/12, "feet"),
  47432. weight: math.unit(510, "lb"),
  47433. name: "Front",
  47434. image: {
  47435. source: "./media/characters/syrup/front.svg",
  47436. extra: 932/916,
  47437. bottom: 26/958
  47438. }
  47439. },
  47440. },
  47441. [
  47442. {
  47443. name: "Normal",
  47444. height: math.unit(7 + 5/12, "feet"),
  47445. default: true
  47446. },
  47447. {
  47448. name: "Big",
  47449. height: math.unit(50, "feet")
  47450. },
  47451. {
  47452. name: "Macro",
  47453. height: math.unit(300, "feet")
  47454. },
  47455. {
  47456. name: "Megamacro",
  47457. height: math.unit(1, "mile")
  47458. },
  47459. ]
  47460. ))
  47461. characterMakers.push(() => makeCharacter(
  47462. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47463. {
  47464. front: {
  47465. height: math.unit(6 + 9/12, "feet"),
  47466. name: "Front",
  47467. image: {
  47468. source: "./media/characters/zeimne/front.svg",
  47469. extra: 1969/1806,
  47470. bottom: 53/2022
  47471. }
  47472. },
  47473. },
  47474. [
  47475. {
  47476. name: "Normal",
  47477. height: math.unit(6 + 9/12, "feet"),
  47478. default: true
  47479. },
  47480. {
  47481. name: "Giant",
  47482. height: math.unit(550, "feet")
  47483. },
  47484. {
  47485. name: "Mega",
  47486. height: math.unit(3, "miles")
  47487. },
  47488. {
  47489. name: "Giga",
  47490. height: math.unit(250, "miles")
  47491. },
  47492. {
  47493. name: "Tera",
  47494. height: math.unit(1, "AU")
  47495. },
  47496. ]
  47497. ))
  47498. characterMakers.push(() => makeCharacter(
  47499. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47500. {
  47501. front: {
  47502. height: math.unit(5 + 2/12, "feet"),
  47503. name: "Front",
  47504. image: {
  47505. source: "./media/characters/grar/front.svg",
  47506. extra: 1331/1119,
  47507. bottom: 60/1391
  47508. }
  47509. },
  47510. back: {
  47511. height: math.unit(5 + 2/12, "feet"),
  47512. name: "Back",
  47513. image: {
  47514. source: "./media/characters/grar/back.svg",
  47515. extra: 1385/1169,
  47516. bottom: 23/1408
  47517. }
  47518. },
  47519. },
  47520. [
  47521. {
  47522. name: "Normal",
  47523. height: math.unit(5 + 2/12, "feet"),
  47524. default: true
  47525. },
  47526. ]
  47527. ))
  47528. characterMakers.push(() => makeCharacter(
  47529. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47530. {
  47531. front: {
  47532. height: math.unit(13 + 7/12, "feet"),
  47533. weight: math.unit(2200, "lb"),
  47534. name: "Front",
  47535. image: {
  47536. source: "./media/characters/endraya/front.svg",
  47537. extra: 1289/1215,
  47538. bottom: 50/1339
  47539. }
  47540. },
  47541. nude: {
  47542. height: math.unit(13 + 7/12, "feet"),
  47543. weight: math.unit(2200, "lb"),
  47544. name: "Nude",
  47545. image: {
  47546. source: "./media/characters/endraya/nude.svg",
  47547. extra: 1247/1171,
  47548. bottom: 40/1287
  47549. }
  47550. },
  47551. head: {
  47552. height: math.unit(2.6, "feet"),
  47553. name: "Head",
  47554. image: {
  47555. source: "./media/characters/endraya/head.svg"
  47556. }
  47557. },
  47558. slit: {
  47559. height: math.unit(3.4, "feet"),
  47560. name: "Slit",
  47561. image: {
  47562. source: "./media/characters/endraya/slit.svg"
  47563. }
  47564. },
  47565. },
  47566. [
  47567. {
  47568. name: "Normal",
  47569. height: math.unit(13 + 7/12, "feet"),
  47570. default: true
  47571. },
  47572. {
  47573. name: "Macro",
  47574. height: math.unit(200, "feet")
  47575. },
  47576. ]
  47577. ))
  47578. characterMakers.push(() => makeCharacter(
  47579. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47580. {
  47581. front: {
  47582. height: math.unit(1.81, "meters"),
  47583. weight: math.unit(69, "kg"),
  47584. name: "Front",
  47585. image: {
  47586. source: "./media/characters/rodryana/front.svg",
  47587. extra: 2002/1921,
  47588. bottom: 53/2055
  47589. }
  47590. },
  47591. back: {
  47592. height: math.unit(1.81, "meters"),
  47593. weight: math.unit(69, "kg"),
  47594. name: "Back",
  47595. image: {
  47596. source: "./media/characters/rodryana/back.svg",
  47597. extra: 1993/1926,
  47598. bottom: 48/2041
  47599. }
  47600. },
  47601. maw: {
  47602. height: math.unit(0.19769417475, "meters"),
  47603. name: "Maw",
  47604. image: {
  47605. source: "./media/characters/rodryana/maw.svg"
  47606. }
  47607. },
  47608. slit: {
  47609. height: math.unit(0.31631067961, "meters"),
  47610. name: "Slit",
  47611. image: {
  47612. source: "./media/characters/rodryana/slit.svg"
  47613. }
  47614. },
  47615. },
  47616. [
  47617. {
  47618. name: "Normal",
  47619. height: math.unit(1.81, "meters")
  47620. },
  47621. {
  47622. name: "Mini Macro",
  47623. height: math.unit(181, "meters")
  47624. },
  47625. {
  47626. name: "Macro",
  47627. height: math.unit(452, "meters"),
  47628. default: true
  47629. },
  47630. {
  47631. name: "Mega Macro",
  47632. height: math.unit(1.375, "km")
  47633. },
  47634. {
  47635. name: "Giga Macro",
  47636. height: math.unit(13.575, "km")
  47637. },
  47638. ]
  47639. ))
  47640. characterMakers.push(() => makeCharacter(
  47641. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47642. {
  47643. front: {
  47644. height: math.unit(6, "feet"),
  47645. weight: math.unit(1000, "lb"),
  47646. name: "Front",
  47647. image: {
  47648. source: "./media/characters/asaya/front.svg",
  47649. extra: 1460/1200,
  47650. bottom: 71/1531
  47651. }
  47652. },
  47653. },
  47654. [
  47655. {
  47656. name: "Normal",
  47657. height: math.unit(8, "km"),
  47658. default: true
  47659. },
  47660. ]
  47661. ))
  47662. characterMakers.push(() => makeCharacter(
  47663. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47664. {
  47665. front: {
  47666. height: math.unit(3.5, "meters"),
  47667. name: "Front",
  47668. image: {
  47669. source: "./media/characters/sarzu-and-israz/front.svg",
  47670. extra: 1570/1558,
  47671. bottom: 150/1720
  47672. },
  47673. },
  47674. back: {
  47675. height: math.unit(3.5, "meters"),
  47676. name: "Back",
  47677. image: {
  47678. source: "./media/characters/sarzu-and-israz/back.svg",
  47679. extra: 1523/1509,
  47680. bottom: 132/1655
  47681. },
  47682. },
  47683. frontFemale: {
  47684. height: math.unit(3.5, "meters"),
  47685. name: "Front (Female)",
  47686. image: {
  47687. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47688. extra: 1570/1558,
  47689. bottom: 150/1720
  47690. },
  47691. },
  47692. frontHerm: {
  47693. height: math.unit(3.5, "meters"),
  47694. name: "Front (Herm)",
  47695. image: {
  47696. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47697. extra: 1570/1558,
  47698. bottom: 150/1720
  47699. },
  47700. },
  47701. },
  47702. [
  47703. {
  47704. name: "Normal",
  47705. height: math.unit(3.5, "meters"),
  47706. default: true,
  47707. },
  47708. {
  47709. name: "Macro",
  47710. height: math.unit(65.5, "meters"),
  47711. },
  47712. ],
  47713. ))
  47714. characterMakers.push(() => makeCharacter(
  47715. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47716. {
  47717. front: {
  47718. height: math.unit(6, "feet"),
  47719. weight: math.unit(250, "lb"),
  47720. name: "Front",
  47721. image: {
  47722. source: "./media/characters/zenimma/front.svg",
  47723. extra: 1346/1320,
  47724. bottom: 58/1404
  47725. }
  47726. },
  47727. back: {
  47728. height: math.unit(6, "feet"),
  47729. weight: math.unit(250, "lb"),
  47730. name: "Back",
  47731. image: {
  47732. source: "./media/characters/zenimma/back.svg",
  47733. extra: 1324/1308,
  47734. bottom: 44/1368
  47735. }
  47736. },
  47737. dick: {
  47738. height: math.unit(1.44, "feet"),
  47739. name: "Dick",
  47740. image: {
  47741. source: "./media/characters/zenimma/dick.svg"
  47742. }
  47743. },
  47744. },
  47745. [
  47746. {
  47747. name: "Canon Height",
  47748. height: math.unit(66, "miles"),
  47749. default: true
  47750. },
  47751. ]
  47752. ))
  47753. characterMakers.push(() => makeCharacter(
  47754. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47755. {
  47756. nude: {
  47757. height: math.unit(6, "feet"),
  47758. weight: math.unit(150, "lb"),
  47759. name: "Nude",
  47760. image: {
  47761. source: "./media/characters/shavon/nude.svg",
  47762. extra: 1242/1096,
  47763. bottom: 98/1340
  47764. }
  47765. },
  47766. dressed: {
  47767. height: math.unit(6, "feet"),
  47768. weight: math.unit(150, "lb"),
  47769. name: "Dressed",
  47770. image: {
  47771. source: "./media/characters/shavon/dressed.svg",
  47772. extra: 1242/1096,
  47773. bottom: 98/1340
  47774. }
  47775. },
  47776. },
  47777. [
  47778. {
  47779. name: "Macro",
  47780. height: math.unit(255, "feet"),
  47781. default: true
  47782. },
  47783. ]
  47784. ))
  47785. characterMakers.push(() => makeCharacter(
  47786. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47787. {
  47788. front: {
  47789. height: math.unit(6, "feet"),
  47790. name: "Front",
  47791. image: {
  47792. source: "./media/characters/steph/front.svg",
  47793. extra: 1430/1330,
  47794. bottom: 54/1484
  47795. }
  47796. },
  47797. },
  47798. [
  47799. {
  47800. name: "Normal",
  47801. height: math.unit(6, "feet"),
  47802. default: true
  47803. },
  47804. ]
  47805. ))
  47806. characterMakers.push(() => makeCharacter(
  47807. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47808. {
  47809. front: {
  47810. height: math.unit(9, "feet"),
  47811. weight: math.unit(400, "lb"),
  47812. name: "Front",
  47813. image: {
  47814. source: "./media/characters/kil'aman/front.svg",
  47815. extra: 1210/1159,
  47816. bottom: 109/1319
  47817. }
  47818. },
  47819. head: {
  47820. height: math.unit(2.14, "feet"),
  47821. name: "Head",
  47822. image: {
  47823. source: "./media/characters/kil'aman/head.svg"
  47824. }
  47825. },
  47826. maw: {
  47827. height: math.unit(1.21, "feet"),
  47828. name: "Maw",
  47829. image: {
  47830. source: "./media/characters/kil'aman/maw.svg"
  47831. }
  47832. },
  47833. foot: {
  47834. height: math.unit(1.7, "feet"),
  47835. name: "Foot",
  47836. image: {
  47837. source: "./media/characters/kil'aman/foot.svg"
  47838. }
  47839. },
  47840. dick: {
  47841. height: math.unit(2.1, "feet"),
  47842. name: "Dick",
  47843. image: {
  47844. source: "./media/characters/kil'aman/dick.svg"
  47845. }
  47846. },
  47847. },
  47848. [
  47849. {
  47850. name: "Normal",
  47851. height: math.unit(9, "feet")
  47852. },
  47853. {
  47854. name: "Canon Height",
  47855. height: math.unit(10, "miles"),
  47856. default: true
  47857. },
  47858. {
  47859. name: "Maximum",
  47860. height: math.unit(6e9, "miles")
  47861. },
  47862. ]
  47863. ))
  47864. characterMakers.push(() => makeCharacter(
  47865. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47866. {
  47867. front: {
  47868. height: math.unit(90, "feet"),
  47869. weight: math.unit(675000, "lb"),
  47870. name: "Front",
  47871. image: {
  47872. source: "./media/characters/qadan/front.svg",
  47873. extra: 1012/1004,
  47874. bottom: 78/1090
  47875. }
  47876. },
  47877. back: {
  47878. height: math.unit(90, "feet"),
  47879. weight: math.unit(675000, "lb"),
  47880. name: "Back",
  47881. image: {
  47882. source: "./media/characters/qadan/back.svg",
  47883. extra: 1042/1031,
  47884. bottom: 55/1097
  47885. }
  47886. },
  47887. armored: {
  47888. height: math.unit(90, "feet"),
  47889. weight: math.unit(675000, "lb"),
  47890. name: "Armored",
  47891. image: {
  47892. source: "./media/characters/qadan/armored.svg",
  47893. extra: 1047/1037,
  47894. bottom: 48/1095
  47895. }
  47896. },
  47897. },
  47898. [
  47899. {
  47900. name: "Normal",
  47901. height: math.unit(90, "feet"),
  47902. default: true
  47903. },
  47904. ]
  47905. ))
  47906. characterMakers.push(() => makeCharacter(
  47907. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47908. {
  47909. front: {
  47910. height: math.unit(6, "feet"),
  47911. weight: math.unit(225, "lb"),
  47912. name: "Front",
  47913. image: {
  47914. source: "./media/characters/brooke/front.svg",
  47915. extra: 1050/1010,
  47916. bottom: 66/1116
  47917. }
  47918. },
  47919. back: {
  47920. height: math.unit(6, "feet"),
  47921. weight: math.unit(225, "lb"),
  47922. name: "Back",
  47923. image: {
  47924. source: "./media/characters/brooke/back.svg",
  47925. extra: 1053/1013,
  47926. bottom: 41/1094
  47927. }
  47928. },
  47929. dressed: {
  47930. height: math.unit(6, "feet"),
  47931. weight: math.unit(225, "lb"),
  47932. name: "Dressed",
  47933. image: {
  47934. source: "./media/characters/brooke/dressed.svg",
  47935. extra: 1050/1010,
  47936. bottom: 66/1116
  47937. }
  47938. },
  47939. },
  47940. [
  47941. {
  47942. name: "Canon Height",
  47943. height: math.unit(500, "miles"),
  47944. default: true
  47945. },
  47946. ]
  47947. ))
  47948. characterMakers.push(() => makeCharacter(
  47949. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47950. {
  47951. front: {
  47952. height: math.unit(6 + 2/12, "feet"),
  47953. weight: math.unit(210, "lb"),
  47954. name: "Front",
  47955. image: {
  47956. source: "./media/characters/wubs/front.svg",
  47957. extra: 1345/1325,
  47958. bottom: 70/1415
  47959. }
  47960. },
  47961. back: {
  47962. height: math.unit(6 + 2/12, "feet"),
  47963. weight: math.unit(210, "lb"),
  47964. name: "Back",
  47965. image: {
  47966. source: "./media/characters/wubs/back.svg",
  47967. extra: 1296/1275,
  47968. bottom: 58/1354
  47969. }
  47970. },
  47971. },
  47972. [
  47973. {
  47974. name: "Normal",
  47975. height: math.unit(6 + 2/12, "feet"),
  47976. default: true
  47977. },
  47978. {
  47979. name: "Macro",
  47980. height: math.unit(1000, "feet")
  47981. },
  47982. {
  47983. name: "Megamacro",
  47984. height: math.unit(1, "mile")
  47985. },
  47986. ]
  47987. ))
  47988. characterMakers.push(() => makeCharacter(
  47989. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47990. {
  47991. front: {
  47992. height: math.unit(4, "feet"),
  47993. weight: math.unit(120, "lb"),
  47994. name: "Front",
  47995. image: {
  47996. source: "./media/characters/blue/front.svg",
  47997. extra: 1636/1525,
  47998. bottom: 43/1679
  47999. }
  48000. },
  48001. back: {
  48002. height: math.unit(4, "feet"),
  48003. weight: math.unit(120, "lb"),
  48004. name: "Back",
  48005. image: {
  48006. source: "./media/characters/blue/back.svg",
  48007. extra: 1660/1560,
  48008. bottom: 57/1717
  48009. }
  48010. },
  48011. paws: {
  48012. height: math.unit(0.826, "feet"),
  48013. name: "Paws",
  48014. image: {
  48015. source: "./media/characters/blue/paws.svg"
  48016. }
  48017. },
  48018. },
  48019. [
  48020. {
  48021. name: "Micro",
  48022. height: math.unit(3, "inches")
  48023. },
  48024. {
  48025. name: "Normal",
  48026. height: math.unit(4, "feet"),
  48027. default: true
  48028. },
  48029. {
  48030. name: "Femenine Form",
  48031. height: math.unit(14, "feet")
  48032. },
  48033. {
  48034. name: "Werebat Form",
  48035. height: math.unit(18, "feet")
  48036. },
  48037. ]
  48038. ))
  48039. characterMakers.push(() => makeCharacter(
  48040. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48041. {
  48042. female: {
  48043. height: math.unit(7 + 4/12, "feet"),
  48044. weight: math.unit(243, "lb"),
  48045. name: "Female",
  48046. image: {
  48047. source: "./media/characters/kaya/female.svg",
  48048. extra: 975/898,
  48049. bottom: 34/1009
  48050. }
  48051. },
  48052. herm: {
  48053. height: math.unit(7 + 4/12, "feet"),
  48054. weight: math.unit(243, "lb"),
  48055. name: "Herm",
  48056. image: {
  48057. source: "./media/characters/kaya/herm.svg",
  48058. extra: 975/898,
  48059. bottom: 34/1009
  48060. }
  48061. },
  48062. },
  48063. [
  48064. {
  48065. name: "Normal",
  48066. height: math.unit(7 + 4/12, "feet"),
  48067. default: true
  48068. },
  48069. ]
  48070. ))
  48071. characterMakers.push(() => makeCharacter(
  48072. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48073. {
  48074. female: {
  48075. height: math.unit(9 + 4/12, "feet"),
  48076. weight: math.unit(398, "lb"),
  48077. name: "Female",
  48078. image: {
  48079. source: "./media/characters/kassandra/female.svg",
  48080. extra: 908/839,
  48081. bottom: 61/969
  48082. }
  48083. },
  48084. intersex: {
  48085. height: math.unit(9 + 4/12, "feet"),
  48086. weight: math.unit(398, "lb"),
  48087. name: "Intersex",
  48088. image: {
  48089. source: "./media/characters/kassandra/intersex.svg",
  48090. extra: 908/839,
  48091. bottom: 61/969
  48092. }
  48093. },
  48094. },
  48095. [
  48096. {
  48097. name: "Normal",
  48098. height: math.unit(9 + 4/12, "feet"),
  48099. default: true
  48100. },
  48101. ]
  48102. ))
  48103. characterMakers.push(() => makeCharacter(
  48104. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48105. {
  48106. front: {
  48107. height: math.unit(3, "meters"),
  48108. name: "Front",
  48109. image: {
  48110. source: "./media/characters/amy/front.svg",
  48111. extra: 1380/1343,
  48112. bottom: 70/1450
  48113. }
  48114. },
  48115. back: {
  48116. height: math.unit(3, "meters"),
  48117. name: "Back",
  48118. image: {
  48119. source: "./media/characters/amy/back.svg",
  48120. extra: 1380/1347,
  48121. bottom: 66/1446
  48122. }
  48123. },
  48124. },
  48125. [
  48126. {
  48127. name: "Normal",
  48128. height: math.unit(3, "meters"),
  48129. default: true
  48130. },
  48131. ]
  48132. ))
  48133. characterMakers.push(() => makeCharacter(
  48134. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48135. {
  48136. side: {
  48137. height: math.unit(47, "cm"),
  48138. weight: math.unit(10.8, "kg"),
  48139. name: "Side",
  48140. image: {
  48141. source: "./media/characters/alphaschakal/side.svg",
  48142. extra: 1058/568,
  48143. bottom: 62/1120
  48144. }
  48145. },
  48146. back: {
  48147. height: math.unit(78, "cm"),
  48148. weight: math.unit(10.8, "kg"),
  48149. name: "Back",
  48150. image: {
  48151. source: "./media/characters/alphaschakal/back.svg",
  48152. extra: 1102/942,
  48153. bottom: 185/1287
  48154. }
  48155. },
  48156. head: {
  48157. height: math.unit(28, "cm"),
  48158. name: "Head",
  48159. image: {
  48160. source: "./media/characters/alphaschakal/head.svg",
  48161. extra: 696/508,
  48162. bottom: 0/696
  48163. }
  48164. },
  48165. paw: {
  48166. height: math.unit(16, "cm"),
  48167. name: "Paw",
  48168. image: {
  48169. source: "./media/characters/alphaschakal/paw.svg"
  48170. }
  48171. },
  48172. },
  48173. [
  48174. {
  48175. name: "Normal",
  48176. height: math.unit(47, "cm"),
  48177. default: true
  48178. },
  48179. {
  48180. name: "Macro",
  48181. height: math.unit(340, "cm")
  48182. },
  48183. ]
  48184. ))
  48185. characterMakers.push(() => makeCharacter(
  48186. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48187. {
  48188. front: {
  48189. height: math.unit(36, "earths"),
  48190. name: "Front",
  48191. image: {
  48192. source: "./media/characters/ecobyss/front.svg",
  48193. extra: 1282/1215,
  48194. bottom: 11/1293
  48195. }
  48196. },
  48197. back: {
  48198. height: math.unit(36, "earths"),
  48199. name: "Back",
  48200. image: {
  48201. source: "./media/characters/ecobyss/back.svg",
  48202. extra: 1291/1222,
  48203. bottom: 8/1299
  48204. }
  48205. },
  48206. },
  48207. [
  48208. {
  48209. name: "Normal",
  48210. height: math.unit(36, "earths"),
  48211. default: true
  48212. },
  48213. ]
  48214. ))
  48215. characterMakers.push(() => makeCharacter(
  48216. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48217. {
  48218. front: {
  48219. height: math.unit(12, "feet"),
  48220. name: "Front",
  48221. image: {
  48222. source: "./media/characters/vasuk/front.svg",
  48223. extra: 1326/1207,
  48224. bottom: 64/1390
  48225. }
  48226. },
  48227. },
  48228. [
  48229. {
  48230. name: "Normal",
  48231. height: math.unit(12, "feet"),
  48232. default: true
  48233. },
  48234. ]
  48235. ))
  48236. characterMakers.push(() => makeCharacter(
  48237. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48238. {
  48239. side: {
  48240. height: math.unit(100, "feet"),
  48241. name: "Side",
  48242. image: {
  48243. source: "./media/characters/linneaus/side.svg",
  48244. extra: 987/807,
  48245. bottom: 47/1034
  48246. }
  48247. },
  48248. },
  48249. [
  48250. {
  48251. name: "Macro",
  48252. height: math.unit(100, "feet"),
  48253. default: true
  48254. },
  48255. ]
  48256. ))
  48257. characterMakers.push(() => makeCharacter(
  48258. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48259. {
  48260. front: {
  48261. height: math.unit(8, "feet"),
  48262. weight: math.unit(1200, "lb"),
  48263. name: "Front",
  48264. image: {
  48265. source: "./media/characters/nyterious-daligdig/front.svg",
  48266. extra: 1284/1094,
  48267. bottom: 84/1368
  48268. }
  48269. },
  48270. back: {
  48271. height: math.unit(8, "feet"),
  48272. weight: math.unit(1200, "lb"),
  48273. name: "Back",
  48274. image: {
  48275. source: "./media/characters/nyterious-daligdig/back.svg",
  48276. extra: 1301/1121,
  48277. bottom: 129/1430
  48278. }
  48279. },
  48280. mouth: {
  48281. height: math.unit(1.464, "feet"),
  48282. name: "Mouth",
  48283. image: {
  48284. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48285. }
  48286. },
  48287. },
  48288. [
  48289. {
  48290. name: "Small",
  48291. height: math.unit(8, "feet"),
  48292. default: true
  48293. },
  48294. {
  48295. name: "Normal",
  48296. height: math.unit(15, "feet")
  48297. },
  48298. {
  48299. name: "Macro",
  48300. height: math.unit(90, "feet")
  48301. },
  48302. ]
  48303. ))
  48304. characterMakers.push(() => makeCharacter(
  48305. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48306. {
  48307. front: {
  48308. height: math.unit(7 + 4/12, "feet"),
  48309. weight: math.unit(252, "lb"),
  48310. name: "Front",
  48311. image: {
  48312. source: "./media/characters/bandel/front.svg",
  48313. extra: 1946/1775,
  48314. bottom: 26/1972
  48315. }
  48316. },
  48317. back: {
  48318. height: math.unit(7 + 4/12, "feet"),
  48319. weight: math.unit(252, "lb"),
  48320. name: "Back",
  48321. image: {
  48322. source: "./media/characters/bandel/back.svg",
  48323. extra: 1940/1770,
  48324. bottom: 25/1965
  48325. }
  48326. },
  48327. maw: {
  48328. height: math.unit(2.15, "feet"),
  48329. name: "Maw",
  48330. image: {
  48331. source: "./media/characters/bandel/maw.svg"
  48332. }
  48333. },
  48334. stomach: {
  48335. height: math.unit(1.95, "feet"),
  48336. name: "Stomach",
  48337. image: {
  48338. source: "./media/characters/bandel/stomach.svg"
  48339. }
  48340. },
  48341. },
  48342. [
  48343. {
  48344. name: "Normal",
  48345. height: math.unit(7 + 4/12, "feet"),
  48346. default: true
  48347. },
  48348. ]
  48349. ))
  48350. characterMakers.push(() => makeCharacter(
  48351. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48352. {
  48353. front: {
  48354. height: math.unit(10 + 5/12, "feet"),
  48355. weight: math.unit(773.5, "kg"),
  48356. name: "Front",
  48357. image: {
  48358. source: "./media/characters/zed/front.svg",
  48359. extra: 987/941,
  48360. bottom: 52/1039
  48361. }
  48362. },
  48363. },
  48364. [
  48365. {
  48366. name: "Short",
  48367. height: math.unit(5 + 4/12, "feet")
  48368. },
  48369. {
  48370. name: "Average",
  48371. height: math.unit(10 + 5/12, "feet"),
  48372. default: true
  48373. },
  48374. {
  48375. name: "Mini-Macro",
  48376. height: math.unit(24 + 9/12, "feet")
  48377. },
  48378. {
  48379. name: "Macro",
  48380. height: math.unit(249, "feet")
  48381. },
  48382. {
  48383. name: "Mega-Macro",
  48384. height: math.unit(12490, "feet")
  48385. },
  48386. {
  48387. name: "Giga-Macro",
  48388. height: math.unit(24.9, "miles")
  48389. },
  48390. {
  48391. name: "Tera-Macro",
  48392. height: math.unit(24900, "miles")
  48393. },
  48394. {
  48395. name: "Cosmic Scale",
  48396. height: math.unit(38.9, "lightyears")
  48397. },
  48398. {
  48399. name: "Universal Scale",
  48400. height: math.unit(138e12, "lightyears")
  48401. },
  48402. ]
  48403. ))
  48404. characterMakers.push(() => makeCharacter(
  48405. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48406. {
  48407. front: {
  48408. height: math.unit(1561, "inches"),
  48409. name: "Front",
  48410. image: {
  48411. source: "./media/characters/ivan/front.svg",
  48412. extra: 1126/1071,
  48413. bottom: 26/1152
  48414. }
  48415. },
  48416. back: {
  48417. height: math.unit(1561, "inches"),
  48418. name: "Back",
  48419. image: {
  48420. source: "./media/characters/ivan/back.svg",
  48421. extra: 1134/1079,
  48422. bottom: 30/1164
  48423. }
  48424. },
  48425. },
  48426. [
  48427. {
  48428. name: "Normal",
  48429. height: math.unit(1561, "inches"),
  48430. default: true
  48431. },
  48432. ]
  48433. ))
  48434. characterMakers.push(() => makeCharacter(
  48435. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48436. {
  48437. front: {
  48438. height: math.unit(5 + 7/12, "feet"),
  48439. weight: math.unit(150, "lb"),
  48440. name: "Front",
  48441. image: {
  48442. source: "./media/characters/robin-arctic-hare/front.svg",
  48443. extra: 1148/974,
  48444. bottom: 20/1168
  48445. }
  48446. },
  48447. },
  48448. [
  48449. {
  48450. name: "Normal",
  48451. height: math.unit(5 + 7/12, "feet"),
  48452. default: true
  48453. },
  48454. ]
  48455. ))
  48456. characterMakers.push(() => makeCharacter(
  48457. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48458. {
  48459. side: {
  48460. height: math.unit(5, "feet"),
  48461. name: "Side",
  48462. image: {
  48463. source: "./media/characters/birch/side.svg",
  48464. extra: 985/796,
  48465. bottom: 111/1096
  48466. }
  48467. },
  48468. },
  48469. [
  48470. {
  48471. name: "Normal",
  48472. height: math.unit(5, "feet"),
  48473. default: true
  48474. },
  48475. ]
  48476. ))
  48477. characterMakers.push(() => makeCharacter(
  48478. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48479. {
  48480. front: {
  48481. height: math.unit(4, "feet"),
  48482. name: "Front",
  48483. image: {
  48484. source: "./media/characters/rasp/front.svg",
  48485. extra: 561/478,
  48486. bottom: 74/635
  48487. }
  48488. },
  48489. },
  48490. [
  48491. {
  48492. name: "Normal",
  48493. height: math.unit(4, "feet"),
  48494. default: true
  48495. },
  48496. ]
  48497. ))
  48498. characterMakers.push(() => makeCharacter(
  48499. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48500. {
  48501. front: {
  48502. height: math.unit(4 + 6/12, "feet"),
  48503. name: "Front",
  48504. image: {
  48505. source: "./media/characters/agatha/front.svg",
  48506. extra: 947/933,
  48507. bottom: 42/989
  48508. }
  48509. },
  48510. back: {
  48511. height: math.unit(4 + 6/12, "feet"),
  48512. name: "Back",
  48513. image: {
  48514. source: "./media/characters/agatha/back.svg",
  48515. extra: 935/922,
  48516. bottom: 48/983
  48517. }
  48518. },
  48519. },
  48520. [
  48521. {
  48522. name: "Normal",
  48523. height: math.unit(4 + 6 /12, "feet"),
  48524. default: true
  48525. },
  48526. {
  48527. name: "Max Size",
  48528. height: math.unit(500, "feet")
  48529. },
  48530. ]
  48531. ))
  48532. characterMakers.push(() => makeCharacter(
  48533. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48534. {
  48535. side: {
  48536. height: math.unit(30, "feet"),
  48537. name: "Side",
  48538. image: {
  48539. source: "./media/characters/roggy/side.svg",
  48540. extra: 909/643,
  48541. bottom: 63/972
  48542. }
  48543. },
  48544. lounging: {
  48545. height: math.unit(20, "feet"),
  48546. name: "Lounging",
  48547. image: {
  48548. source: "./media/characters/roggy/lounging.svg",
  48549. extra: 643/479,
  48550. bottom: 145/788
  48551. }
  48552. },
  48553. handpaw: {
  48554. height: math.unit(13.1, "feet"),
  48555. name: "Handpaw",
  48556. image: {
  48557. source: "./media/characters/roggy/handpaw.svg"
  48558. }
  48559. },
  48560. footpaw: {
  48561. height: math.unit(15.8, "feet"),
  48562. name: "Footpaw",
  48563. image: {
  48564. source: "./media/characters/roggy/footpaw.svg"
  48565. }
  48566. },
  48567. },
  48568. [
  48569. {
  48570. name: "Menacing",
  48571. height: math.unit(30, "feet"),
  48572. default: true
  48573. },
  48574. ]
  48575. ))
  48576. characterMakers.push(() => makeCharacter(
  48577. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48578. {
  48579. front: {
  48580. height: math.unit(5 + 7/12, "feet"),
  48581. weight: math.unit(135, "lb"),
  48582. name: "Front",
  48583. image: {
  48584. source: "./media/characters/naomi/front.svg",
  48585. extra: 1209/1154,
  48586. bottom: 129/1338
  48587. }
  48588. },
  48589. back: {
  48590. height: math.unit(5 + 7/12, "feet"),
  48591. weight: math.unit(135, "lb"),
  48592. name: "Back",
  48593. image: {
  48594. source: "./media/characters/naomi/back.svg",
  48595. extra: 1252/1190,
  48596. bottom: 23/1275
  48597. }
  48598. },
  48599. },
  48600. [
  48601. {
  48602. name: "Normal",
  48603. height: math.unit(5 + 7 /12, "feet"),
  48604. default: true
  48605. },
  48606. ]
  48607. ))
  48608. characterMakers.push(() => makeCharacter(
  48609. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48610. {
  48611. side: {
  48612. height: math.unit(35, "meters"),
  48613. name: "Side",
  48614. image: {
  48615. source: "./media/characters/kimpi/side.svg",
  48616. extra: 419/382,
  48617. bottom: 63/482
  48618. }
  48619. },
  48620. hand: {
  48621. height: math.unit(8.96, "meters"),
  48622. name: "Hand",
  48623. image: {
  48624. source: "./media/characters/kimpi/hand.svg"
  48625. }
  48626. },
  48627. },
  48628. [
  48629. {
  48630. name: "Normal",
  48631. height: math.unit(35, "meters"),
  48632. default: true
  48633. },
  48634. ]
  48635. ))
  48636. characterMakers.push(() => makeCharacter(
  48637. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48638. {
  48639. front: {
  48640. height: math.unit(4 + 4/12, "feet"),
  48641. name: "Front",
  48642. image: {
  48643. source: "./media/characters/pepper-purrloin/front.svg",
  48644. extra: 1141/1024,
  48645. bottom: 21/1162
  48646. }
  48647. },
  48648. },
  48649. [
  48650. {
  48651. name: "Normal",
  48652. height: math.unit(4 + 4/12, "feet"),
  48653. default: true
  48654. },
  48655. ]
  48656. ))
  48657. characterMakers.push(() => makeCharacter(
  48658. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48659. {
  48660. front: {
  48661. height: math.unit(6 + 2/12, "feet"),
  48662. name: "Front",
  48663. image: {
  48664. source: "./media/characters/raphael/front.svg",
  48665. extra: 1101/962,
  48666. bottom: 59/1160
  48667. }
  48668. },
  48669. },
  48670. [
  48671. {
  48672. name: "Normal",
  48673. height: math.unit(6 + 2/12, "feet"),
  48674. default: true
  48675. },
  48676. ]
  48677. ))
  48678. characterMakers.push(() => makeCharacter(
  48679. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48680. {
  48681. front: {
  48682. height: math.unit(6, "feet"),
  48683. weight: math.unit(150, "lb"),
  48684. name: "Front",
  48685. image: {
  48686. source: "./media/characters/victor-williams/front.svg",
  48687. extra: 1894/1825,
  48688. bottom: 67/1961
  48689. }
  48690. },
  48691. },
  48692. [
  48693. {
  48694. name: "Normal",
  48695. height: math.unit(6, "feet"),
  48696. default: true
  48697. },
  48698. ]
  48699. ))
  48700. characterMakers.push(() => makeCharacter(
  48701. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48702. {
  48703. front: {
  48704. height: math.unit(5 + 8/12, "feet"),
  48705. weight: math.unit(150, "lb"),
  48706. name: "Front",
  48707. image: {
  48708. source: "./media/characters/rachel/front.svg",
  48709. extra: 1902/1787,
  48710. bottom: 46/1948
  48711. }
  48712. },
  48713. },
  48714. [
  48715. {
  48716. name: "Base Height",
  48717. height: math.unit(5 + 8/12, "feet"),
  48718. default: true
  48719. },
  48720. {
  48721. name: "Macro",
  48722. height: math.unit(200, "feet")
  48723. },
  48724. {
  48725. name: "Mega Macro",
  48726. height: math.unit(1, "mile")
  48727. },
  48728. {
  48729. name: "Giga Macro",
  48730. height: math.unit(1500, "miles")
  48731. },
  48732. {
  48733. name: "Tera Macro",
  48734. height: math.unit(8000, "miles")
  48735. },
  48736. {
  48737. name: "Tera Macro+",
  48738. height: math.unit(2e5, "miles")
  48739. },
  48740. ]
  48741. ))
  48742. characterMakers.push(() => makeCharacter(
  48743. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48744. {
  48745. front: {
  48746. height: math.unit(6.5, "feet"),
  48747. name: "Front",
  48748. image: {
  48749. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48750. extra: 860/819,
  48751. bottom: 307/1167
  48752. }
  48753. },
  48754. back: {
  48755. height: math.unit(6.5, "feet"),
  48756. name: "Back",
  48757. image: {
  48758. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48759. extra: 880/837,
  48760. bottom: 395/1275
  48761. }
  48762. },
  48763. sleeping: {
  48764. height: math.unit(2.79, "feet"),
  48765. name: "Sleeping",
  48766. image: {
  48767. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48768. extra: 465/383,
  48769. bottom: 263/728
  48770. }
  48771. },
  48772. maw: {
  48773. height: math.unit(2.52, "feet"),
  48774. name: "Maw",
  48775. image: {
  48776. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48777. }
  48778. },
  48779. },
  48780. [
  48781. {
  48782. name: "Normal",
  48783. height: math.unit(6.5, "feet"),
  48784. default: true
  48785. },
  48786. ]
  48787. ))
  48788. characterMakers.push(() => makeCharacter(
  48789. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48790. {
  48791. front: {
  48792. height: math.unit(5, "feet"),
  48793. name: "Front",
  48794. image: {
  48795. source: "./media/characters/nova-nerium/front.svg",
  48796. extra: 1548/1392,
  48797. bottom: 374/1922
  48798. }
  48799. },
  48800. back: {
  48801. height: math.unit(5, "feet"),
  48802. name: "Back",
  48803. image: {
  48804. source: "./media/characters/nova-nerium/back.svg",
  48805. extra: 1658/1468,
  48806. bottom: 257/1915
  48807. }
  48808. },
  48809. },
  48810. [
  48811. {
  48812. name: "Normal",
  48813. height: math.unit(5, "feet"),
  48814. default: true
  48815. },
  48816. ]
  48817. ))
  48818. characterMakers.push(() => makeCharacter(
  48819. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48820. {
  48821. front: {
  48822. height: math.unit(5 + 4/12, "feet"),
  48823. name: "Front",
  48824. image: {
  48825. source: "./media/characters/ashe-pyriph/front.svg",
  48826. extra: 1935/1747,
  48827. bottom: 60/1995
  48828. }
  48829. },
  48830. },
  48831. [
  48832. {
  48833. name: "Normal",
  48834. height: math.unit(5 + 4/12, "feet"),
  48835. default: true
  48836. },
  48837. ]
  48838. ))
  48839. characterMakers.push(() => makeCharacter(
  48840. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48841. {
  48842. front: {
  48843. height: math.unit(8.7, "feet"),
  48844. name: "Front",
  48845. image: {
  48846. source: "./media/characters/flicker-wisp/front.svg",
  48847. extra: 1835/1613,
  48848. bottom: 449/2284
  48849. }
  48850. },
  48851. side: {
  48852. height: math.unit(8.7, "feet"),
  48853. name: "Side",
  48854. image: {
  48855. source: "./media/characters/flicker-wisp/side.svg",
  48856. extra: 1841/1642,
  48857. bottom: 336/2177
  48858. },
  48859. default: true
  48860. },
  48861. maw: {
  48862. height: math.unit(3.35, "feet"),
  48863. name: "Maw",
  48864. image: {
  48865. source: "./media/characters/flicker-wisp/maw.svg",
  48866. extra: 2338/1506,
  48867. bottom: 0/2338
  48868. }
  48869. },
  48870. ovipositor: {
  48871. height: math.unit(4.95, "feet"),
  48872. name: "Ovipositor",
  48873. image: {
  48874. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48875. }
  48876. },
  48877. egg: {
  48878. height: math.unit(0.385, "feet"),
  48879. weight: math.unit(2, "lb"),
  48880. name: "Egg",
  48881. image: {
  48882. source: "./media/characters/flicker-wisp/egg.svg"
  48883. }
  48884. },
  48885. },
  48886. [
  48887. {
  48888. name: "Normal",
  48889. height: math.unit(8.7, "feet"),
  48890. default: true
  48891. },
  48892. ]
  48893. ))
  48894. characterMakers.push(() => makeCharacter(
  48895. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48896. {
  48897. side: {
  48898. height: math.unit(11, "feet"),
  48899. name: "Side",
  48900. image: {
  48901. source: "./media/characters/faefnul/side.svg",
  48902. extra: 1100/1007,
  48903. bottom: 0/1100
  48904. }
  48905. },
  48906. },
  48907. [
  48908. {
  48909. name: "Normal",
  48910. height: math.unit(11, "feet"),
  48911. default: true
  48912. },
  48913. ]
  48914. ))
  48915. characterMakers.push(() => makeCharacter(
  48916. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48917. {
  48918. front: {
  48919. height: math.unit(6 + 2/12, "feet"),
  48920. name: "Front",
  48921. image: {
  48922. source: "./media/characters/shady/front.svg",
  48923. extra: 502/461,
  48924. bottom: 9/511
  48925. }
  48926. },
  48927. kneeling: {
  48928. height: math.unit(4.6, "feet"),
  48929. name: "Kneeling",
  48930. image: {
  48931. source: "./media/characters/shady/kneeling.svg",
  48932. extra: 1328/1219,
  48933. bottom: 117/1445
  48934. }
  48935. },
  48936. maw: {
  48937. height: math.unit(2, "feet"),
  48938. name: "Maw",
  48939. image: {
  48940. source: "./media/characters/shady/maw.svg"
  48941. }
  48942. },
  48943. },
  48944. [
  48945. {
  48946. name: "Nano",
  48947. height: math.unit(1, "mm")
  48948. },
  48949. {
  48950. name: "Micro",
  48951. height: math.unit(12, "mm")
  48952. },
  48953. {
  48954. name: "Tiny",
  48955. height: math.unit(3, "inches")
  48956. },
  48957. {
  48958. name: "Normal",
  48959. height: math.unit(6 + 2/12, "feet"),
  48960. default: true
  48961. },
  48962. {
  48963. name: "Big",
  48964. height: math.unit(15, "feet")
  48965. },
  48966. {
  48967. name: "Macro",
  48968. height: math.unit(150, "feet")
  48969. },
  48970. {
  48971. name: "Titanic",
  48972. height: math.unit(500, "feet")
  48973. },
  48974. ]
  48975. ))
  48976. characterMakers.push(() => makeCharacter(
  48977. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48978. {
  48979. front: {
  48980. height: math.unit(12, "feet"),
  48981. name: "Front",
  48982. image: {
  48983. source: "./media/characters/fenrir/front.svg",
  48984. extra: 968/875,
  48985. bottom: 22/990
  48986. }
  48987. },
  48988. },
  48989. [
  48990. {
  48991. name: "Big",
  48992. height: math.unit(12, "feet"),
  48993. default: true
  48994. },
  48995. ]
  48996. ))
  48997. characterMakers.push(() => makeCharacter(
  48998. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48999. {
  49000. front: {
  49001. height: math.unit(5 + 4/12, "feet"),
  49002. name: "Front",
  49003. image: {
  49004. source: "./media/characters/makar/front.svg",
  49005. extra: 1181/1112,
  49006. bottom: 78/1259
  49007. }
  49008. },
  49009. },
  49010. [
  49011. {
  49012. name: "Normal",
  49013. height: math.unit(5 + 4/12, "feet"),
  49014. default: true
  49015. },
  49016. ]
  49017. ))
  49018. characterMakers.push(() => makeCharacter(
  49019. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49020. {
  49021. front: {
  49022. height: math.unit(5 + 7/12, "feet"),
  49023. name: "Front",
  49024. image: {
  49025. source: "./media/characters/callow/front.svg",
  49026. extra: 1482/1304,
  49027. bottom: 23/1505
  49028. }
  49029. },
  49030. back: {
  49031. height: math.unit(5 + 7/12, "feet"),
  49032. name: "Back",
  49033. image: {
  49034. source: "./media/characters/callow/back.svg",
  49035. extra: 1484/1296,
  49036. bottom: 25/1509
  49037. }
  49038. },
  49039. },
  49040. [
  49041. {
  49042. name: "Micro",
  49043. height: math.unit(3, "inches"),
  49044. default: true
  49045. },
  49046. {
  49047. name: "Normal",
  49048. height: math.unit(5 + 7/12, "feet")
  49049. },
  49050. ]
  49051. ))
  49052. characterMakers.push(() => makeCharacter(
  49053. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49054. {
  49055. front: {
  49056. height: math.unit(6 + 2/12, "feet"),
  49057. name: "Front",
  49058. image: {
  49059. source: "./media/characters/natel/front.svg",
  49060. extra: 1833/1692,
  49061. bottom: 166/1999
  49062. }
  49063. },
  49064. },
  49065. [
  49066. {
  49067. name: "Normal",
  49068. height: math.unit(6 + 2/12, "feet"),
  49069. default: true
  49070. },
  49071. ]
  49072. ))
  49073. characterMakers.push(() => makeCharacter(
  49074. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49075. {
  49076. front: {
  49077. height: math.unit(1.75, "meters"),
  49078. name: "Front",
  49079. image: {
  49080. source: "./media/characters/misu/front.svg",
  49081. extra: 1690/1558,
  49082. bottom: 234/1924
  49083. }
  49084. },
  49085. back: {
  49086. height: math.unit(1.75, "meters"),
  49087. name: "Back",
  49088. image: {
  49089. source: "./media/characters/misu/back.svg",
  49090. extra: 1762/1618,
  49091. bottom: 146/1908
  49092. }
  49093. },
  49094. frontNude: {
  49095. height: math.unit(1.75, "meters"),
  49096. name: "Front (Nude)",
  49097. image: {
  49098. source: "./media/characters/misu/front-nude.svg",
  49099. extra: 1690/1558,
  49100. bottom: 234/1924
  49101. }
  49102. },
  49103. backNude: {
  49104. height: math.unit(1.75, "meters"),
  49105. name: "Back (Nude)",
  49106. image: {
  49107. source: "./media/characters/misu/back-nude.svg",
  49108. extra: 1762/1618,
  49109. bottom: 146/1908
  49110. }
  49111. },
  49112. frontErect: {
  49113. height: math.unit(1.75, "meters"),
  49114. name: "Front (Erect)",
  49115. image: {
  49116. source: "./media/characters/misu/front-erect.svg",
  49117. extra: 1690/1558,
  49118. bottom: 234/1924
  49119. }
  49120. },
  49121. maw: {
  49122. height: math.unit(0.47, "meters"),
  49123. name: "Maw",
  49124. image: {
  49125. source: "./media/characters/misu/maw.svg"
  49126. }
  49127. },
  49128. head: {
  49129. height: math.unit(0.35, "meters"),
  49130. name: "Head",
  49131. image: {
  49132. source: "./media/characters/misu/head.svg"
  49133. }
  49134. },
  49135. rear: {
  49136. height: math.unit(0.47, "meters"),
  49137. name: "Rear",
  49138. image: {
  49139. source: "./media/characters/misu/rear.svg"
  49140. }
  49141. },
  49142. },
  49143. [
  49144. {
  49145. name: "Normal",
  49146. height: math.unit(1.75, "meters")
  49147. },
  49148. {
  49149. name: "Not good for the people",
  49150. height: math.unit(42, "meters")
  49151. },
  49152. {
  49153. name: "Not good for the neighborhood",
  49154. height: math.unit(135, "meters")
  49155. },
  49156. {
  49157. name: "Bit bigger problem",
  49158. height: math.unit(380, "meters"),
  49159. default: true
  49160. },
  49161. {
  49162. name: "Not good for the city",
  49163. height: math.unit(1.5, "km")
  49164. },
  49165. {
  49166. name: "Not good for the county",
  49167. height: math.unit(5.5, "km")
  49168. },
  49169. {
  49170. name: "Not good for the state",
  49171. height: math.unit(25, "km")
  49172. },
  49173. {
  49174. name: "Not good for the country",
  49175. height: math.unit(125, "km")
  49176. },
  49177. {
  49178. name: "Not good for the continent",
  49179. height: math.unit(2100, "km")
  49180. },
  49181. {
  49182. name: "Not good for the planet",
  49183. height: math.unit(35000, "km")
  49184. },
  49185. {
  49186. name: "Just no",
  49187. height: math.unit(8.5e18, "km")
  49188. },
  49189. ]
  49190. ))
  49191. characterMakers.push(() => makeCharacter(
  49192. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49193. {
  49194. front: {
  49195. height: math.unit(6.5, "feet"),
  49196. name: "Front",
  49197. image: {
  49198. source: "./media/characters/poppy/front.svg",
  49199. extra: 1878/1812,
  49200. bottom: 43/1921
  49201. }
  49202. },
  49203. feet: {
  49204. height: math.unit(1.06, "feet"),
  49205. name: "Feet",
  49206. image: {
  49207. source: "./media/characters/poppy/feet.svg",
  49208. extra: 1083/1083,
  49209. bottom: 87/1170
  49210. }
  49211. },
  49212. },
  49213. [
  49214. {
  49215. name: "Human",
  49216. height: math.unit(6.5, "feet")
  49217. },
  49218. {
  49219. name: "Default",
  49220. height: math.unit(300, "feet"),
  49221. default: true
  49222. },
  49223. {
  49224. name: "Huge",
  49225. height: math.unit(850, "feet")
  49226. },
  49227. {
  49228. name: "Mega",
  49229. height: math.unit(8000, "feet")
  49230. },
  49231. {
  49232. name: "Giga",
  49233. height: math.unit(300, "miles")
  49234. },
  49235. ]
  49236. ))
  49237. characterMakers.push(() => makeCharacter(
  49238. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49239. {
  49240. bipedal: {
  49241. height: math.unit(7, "feet"),
  49242. name: "Bipedal",
  49243. image: {
  49244. source: "./media/characters/zener/bipedal.svg",
  49245. extra: 874/805,
  49246. bottom: 109/983
  49247. }
  49248. },
  49249. quadrupedal: {
  49250. height: math.unit(4.64, "feet"),
  49251. name: "Quadrupedal",
  49252. image: {
  49253. source: "./media/characters/zener/quadrupedal.svg",
  49254. extra: 638/507,
  49255. bottom: 190/828
  49256. }
  49257. },
  49258. cock: {
  49259. height: math.unit(18, "inches"),
  49260. name: "Cock",
  49261. image: {
  49262. source: "./media/characters/zener/cock.svg"
  49263. }
  49264. },
  49265. },
  49266. [
  49267. {
  49268. name: "Normal",
  49269. height: math.unit(7, "feet"),
  49270. default: true
  49271. },
  49272. ]
  49273. ))
  49274. characterMakers.push(() => makeCharacter(
  49275. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49276. {
  49277. nude: {
  49278. height: math.unit(5 + 6/12, "feet"),
  49279. name: "Nude",
  49280. image: {
  49281. source: "./media/characters/charlie-dog/nude.svg",
  49282. extra: 768/734,
  49283. bottom: 26/794
  49284. }
  49285. },
  49286. dressed: {
  49287. height: math.unit(5 + 6/12, "feet"),
  49288. name: "Dressed",
  49289. image: {
  49290. source: "./media/characters/charlie-dog/dressed.svg",
  49291. extra: 768/734,
  49292. bottom: 26/794
  49293. }
  49294. },
  49295. },
  49296. [
  49297. {
  49298. name: "Normal",
  49299. height: math.unit(5 + 6/12, "feet"),
  49300. default: true
  49301. },
  49302. ]
  49303. ))
  49304. characterMakers.push(() => makeCharacter(
  49305. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49306. {
  49307. front: {
  49308. height: math.unit(6 + 4/12, "feet"),
  49309. name: "Front",
  49310. image: {
  49311. source: "./media/characters/ir'istrasz/front.svg",
  49312. extra: 1014/977,
  49313. bottom: 65/1079
  49314. }
  49315. },
  49316. back: {
  49317. height: math.unit(6 + 4/12, "feet"),
  49318. name: "Back",
  49319. image: {
  49320. source: "./media/characters/ir'istrasz/back.svg",
  49321. extra: 1024/992,
  49322. bottom: 34/1058
  49323. }
  49324. },
  49325. },
  49326. [
  49327. {
  49328. name: "Normal",
  49329. height: math.unit(6 + 4/12, "feet"),
  49330. default: true
  49331. },
  49332. ]
  49333. ))
  49334. characterMakers.push(() => makeCharacter(
  49335. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49336. {
  49337. front: {
  49338. height: math.unit(5 + 8/12, "feet"),
  49339. name: "Front",
  49340. image: {
  49341. source: "./media/characters/dee-ditto/front.svg",
  49342. extra: 1874/1785,
  49343. bottom: 68/1942
  49344. }
  49345. },
  49346. back: {
  49347. height: math.unit(5 + 8/12, "feet"),
  49348. name: "Back",
  49349. image: {
  49350. source: "./media/characters/dee-ditto/back.svg",
  49351. extra: 1870/1783,
  49352. bottom: 77/1947
  49353. }
  49354. },
  49355. },
  49356. [
  49357. {
  49358. name: "Normal",
  49359. height: math.unit(5 + 8/12, "feet"),
  49360. default: true
  49361. },
  49362. ]
  49363. ))
  49364. characterMakers.push(() => makeCharacter(
  49365. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49366. {
  49367. front: {
  49368. height: math.unit(7 + 6/12, "feet"),
  49369. name: "Front",
  49370. image: {
  49371. source: "./media/characters/fey/front.svg",
  49372. extra: 995/979,
  49373. bottom: 30/1025
  49374. }
  49375. },
  49376. back: {
  49377. height: math.unit(7 + 6/12, "feet"),
  49378. name: "Back",
  49379. image: {
  49380. source: "./media/characters/fey/back.svg",
  49381. extra: 1079/1008,
  49382. bottom: 5/1084
  49383. }
  49384. },
  49385. dressed: {
  49386. height: math.unit(7 + 6/12, "feet"),
  49387. name: "Dressed",
  49388. image: {
  49389. source: "./media/characters/fey/dressed.svg",
  49390. extra: 995/979,
  49391. bottom: 30/1025
  49392. }
  49393. },
  49394. },
  49395. [
  49396. {
  49397. name: "Normal",
  49398. height: math.unit(7 + 6/12, "feet"),
  49399. default: true
  49400. },
  49401. ]
  49402. ))
  49403. characterMakers.push(() => makeCharacter(
  49404. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49405. {
  49406. standing: {
  49407. height: math.unit(17, "feet"),
  49408. name: "Standing",
  49409. image: {
  49410. source: "./media/characters/aster/standing.svg",
  49411. extra: 1798/1598,
  49412. bottom: 117/1915
  49413. }
  49414. },
  49415. },
  49416. [
  49417. {
  49418. name: "Normal",
  49419. height: math.unit(17, "feet"),
  49420. default: true
  49421. },
  49422. {
  49423. name: "Homewrecker",
  49424. height: math.unit(95, "feet")
  49425. },
  49426. {
  49427. name: "Planet Devourer",
  49428. height: math.unit(1008000, "miles")
  49429. },
  49430. ]
  49431. ))
  49432. characterMakers.push(() => makeCharacter(
  49433. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49434. {
  49435. front: {
  49436. height: math.unit(6 + 5/12, "feet"),
  49437. weight: math.unit(265, "lb"),
  49438. name: "Front",
  49439. image: {
  49440. source: "./media/characters/devon-childs/front.svg",
  49441. extra: 1795/1721,
  49442. bottom: 41/1836
  49443. }
  49444. },
  49445. side: {
  49446. height: math.unit(6 + 5/12, "feet"),
  49447. weight: math.unit(265, "lb"),
  49448. name: "Side",
  49449. image: {
  49450. source: "./media/characters/devon-childs/side.svg",
  49451. extra: 1812/1738,
  49452. bottom: 30/1842
  49453. }
  49454. },
  49455. back: {
  49456. height: math.unit(6 + 5/12, "feet"),
  49457. weight: math.unit(265, "lb"),
  49458. name: "Back",
  49459. image: {
  49460. source: "./media/characters/devon-childs/back.svg",
  49461. extra: 1808/1735,
  49462. bottom: 23/1831
  49463. }
  49464. },
  49465. hand: {
  49466. height: math.unit(1.464, "feet"),
  49467. name: "Hand",
  49468. image: {
  49469. source: "./media/characters/devon-childs/hand.svg"
  49470. }
  49471. },
  49472. foot: {
  49473. height: math.unit(1.6, "feet"),
  49474. name: "Foot",
  49475. image: {
  49476. source: "./media/characters/devon-childs/foot.svg"
  49477. }
  49478. },
  49479. },
  49480. [
  49481. {
  49482. name: "Micro",
  49483. height: math.unit(7, "cm")
  49484. },
  49485. {
  49486. name: "Normal",
  49487. height: math.unit(6 + 5/12, "feet"),
  49488. default: true
  49489. },
  49490. {
  49491. name: "Macro",
  49492. height: math.unit(154, "feet")
  49493. },
  49494. ]
  49495. ))
  49496. characterMakers.push(() => makeCharacter(
  49497. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49498. {
  49499. front: {
  49500. height: math.unit(6, "feet"),
  49501. weight: math.unit(180, "lb"),
  49502. name: "Front",
  49503. image: {
  49504. source: "./media/characters/lydemox-vir/front.svg",
  49505. extra: 1632/1435,
  49506. bottom: 58/1690
  49507. }
  49508. },
  49509. frontSFW: {
  49510. height: math.unit(6, "feet"),
  49511. weight: math.unit(180, "lb"),
  49512. name: "Front (SFW)",
  49513. image: {
  49514. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49515. extra: 1632/1435,
  49516. bottom: 58/1690
  49517. }
  49518. },
  49519. back: {
  49520. height: math.unit(6, "feet"),
  49521. weight: math.unit(180, "lb"),
  49522. name: "Back",
  49523. image: {
  49524. source: "./media/characters/lydemox-vir/back.svg",
  49525. extra: 1593/1408,
  49526. bottom: 31/1624
  49527. }
  49528. },
  49529. paw: {
  49530. height: math.unit(1.85, "feet"),
  49531. name: "Paw",
  49532. image: {
  49533. source: "./media/characters/lydemox-vir/paw.svg"
  49534. }
  49535. },
  49536. dick: {
  49537. height: math.unit(1.8, "feet"),
  49538. name: "Dick",
  49539. image: {
  49540. source: "./media/characters/lydemox-vir/dick.svg"
  49541. }
  49542. },
  49543. },
  49544. [
  49545. {
  49546. name: "Macro",
  49547. height: math.unit(100, "feet"),
  49548. default: true
  49549. },
  49550. {
  49551. name: "Teramacro",
  49552. height: math.unit(1, "earth")
  49553. },
  49554. {
  49555. name: "Planetary",
  49556. height: math.unit(20, "earths")
  49557. },
  49558. ]
  49559. ))
  49560. characterMakers.push(() => makeCharacter(
  49561. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49562. {
  49563. front: {
  49564. height: math.unit(15 + 8/12, "feet"),
  49565. weight: math.unit(1237, "kg"),
  49566. name: "Front",
  49567. image: {
  49568. source: "./media/characters/mia/front.svg",
  49569. extra: 1573/1446,
  49570. bottom: 58/1631
  49571. }
  49572. },
  49573. },
  49574. [
  49575. {
  49576. name: "Small",
  49577. height: math.unit(9 + 5/12, "feet")
  49578. },
  49579. {
  49580. name: "Normal",
  49581. height: math.unit(15 + 8/12, "feet"),
  49582. default: true
  49583. },
  49584. ]
  49585. ))
  49586. characterMakers.push(() => makeCharacter(
  49587. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49588. {
  49589. front: {
  49590. height: math.unit(10 + 6/12, "feet"),
  49591. weight: math.unit(1.3, "tons"),
  49592. name: "Front",
  49593. image: {
  49594. source: "./media/characters/mr-graves/front.svg",
  49595. extra: 1779/1695,
  49596. bottom: 198/1977
  49597. }
  49598. },
  49599. },
  49600. [
  49601. {
  49602. name: "Normal",
  49603. height: math.unit(10 + 6 /12, "feet"),
  49604. default: true
  49605. },
  49606. ]
  49607. ))
  49608. characterMakers.push(() => makeCharacter(
  49609. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49610. {
  49611. dressedFront: {
  49612. height: math.unit(5 + 8/12, "feet"),
  49613. weight: math.unit(125, "lb"),
  49614. name: "Dressed (Front)",
  49615. image: {
  49616. source: "./media/characters/jess/dressed-front.svg",
  49617. extra: 1176/1152,
  49618. bottom: 42/1218
  49619. }
  49620. },
  49621. dressedSide: {
  49622. height: math.unit(5 + 8/12, "feet"),
  49623. weight: math.unit(125, "lb"),
  49624. name: "Dressed (Side)",
  49625. image: {
  49626. source: "./media/characters/jess/dressed-side.svg",
  49627. extra: 1204/1190,
  49628. bottom: 6/1210
  49629. }
  49630. },
  49631. nudeFront: {
  49632. height: math.unit(5 + 8/12, "feet"),
  49633. weight: math.unit(125, "lb"),
  49634. name: "Nude (Front)",
  49635. image: {
  49636. source: "./media/characters/jess/nude-front.svg",
  49637. extra: 1176/1152,
  49638. bottom: 42/1218
  49639. }
  49640. },
  49641. nudeSide: {
  49642. height: math.unit(5 + 8/12, "feet"),
  49643. weight: math.unit(125, "lb"),
  49644. name: "Nude (Side)",
  49645. image: {
  49646. source: "./media/characters/jess/nude-side.svg",
  49647. extra: 1204/1190,
  49648. bottom: 6/1210
  49649. }
  49650. },
  49651. organsFront: {
  49652. height: math.unit(2.83799342105, "feet"),
  49653. name: "Organs (Front)",
  49654. image: {
  49655. source: "./media/characters/jess/organs-front.svg"
  49656. }
  49657. },
  49658. organsSide: {
  49659. height: math.unit(2.64225290474, "feet"),
  49660. name: "Organs (Side)",
  49661. image: {
  49662. source: "./media/characters/jess/organs-side.svg"
  49663. }
  49664. },
  49665. digestiveTractFront: {
  49666. height: math.unit(2.8106580871, "feet"),
  49667. name: "Digestive Tract (Front)",
  49668. image: {
  49669. source: "./media/characters/jess/digestive-tract-front.svg"
  49670. }
  49671. },
  49672. digestiveTractSide: {
  49673. height: math.unit(2.54365045014, "feet"),
  49674. name: "Digestive Tract (Side)",
  49675. image: {
  49676. source: "./media/characters/jess/digestive-tract-side.svg"
  49677. }
  49678. },
  49679. respiratorySystemFront: {
  49680. height: math.unit(1.11196233456, "feet"),
  49681. name: "Respiratory System (Front)",
  49682. image: {
  49683. source: "./media/characters/jess/respiratory-system-front.svg"
  49684. }
  49685. },
  49686. respiratorySystemSide: {
  49687. height: math.unit(0.89327966297, "feet"),
  49688. name: "Respiratory System (Side)",
  49689. image: {
  49690. source: "./media/characters/jess/respiratory-system-side.svg"
  49691. }
  49692. },
  49693. urinaryTractFront: {
  49694. height: math.unit(1.16126356186, "feet"),
  49695. name: "Urinary Tract (Front)",
  49696. image: {
  49697. source: "./media/characters/jess/urinary-tract-front.svg"
  49698. }
  49699. },
  49700. urinaryTractSide: {
  49701. height: math.unit(1.20910039627, "feet"),
  49702. name: "Urinary Tract (Side)",
  49703. image: {
  49704. source: "./media/characters/jess/urinary-tract-side.svg"
  49705. }
  49706. },
  49707. reproductiveOrgansFront: {
  49708. height: math.unit(0.48422591566, "feet"),
  49709. name: "Reproductive Organs (Front)",
  49710. image: {
  49711. source: "./media/characters/jess/reproductive-organs-front.svg"
  49712. }
  49713. },
  49714. reproductiveOrgansSide: {
  49715. height: math.unit(0.61553314481, "feet"),
  49716. name: "Reproductive Organs (Side)",
  49717. image: {
  49718. source: "./media/characters/jess/reproductive-organs-side.svg"
  49719. }
  49720. },
  49721. breastsFront: {
  49722. height: math.unit(0.47690395121, "feet"),
  49723. name: "Breasts (Front)",
  49724. image: {
  49725. source: "./media/characters/jess/breasts-front.svg"
  49726. }
  49727. },
  49728. breastsSide: {
  49729. height: math.unit(0.30556998307, "feet"),
  49730. name: "Breasts (Side)",
  49731. image: {
  49732. source: "./media/characters/jess/breasts-side.svg"
  49733. }
  49734. },
  49735. heartFront: {
  49736. height: math.unit(0.53011022622, "feet"),
  49737. name: "Heart (Front)",
  49738. image: {
  49739. source: "./media/characters/jess/heart-front.svg"
  49740. }
  49741. },
  49742. heartSide: {
  49743. height: math.unit(0.51790695213, "feet"),
  49744. name: "Heart (Side)",
  49745. image: {
  49746. source: "./media/characters/jess/heart-side.svg"
  49747. }
  49748. },
  49749. earsAndNoseFront: {
  49750. height: math.unit(0.29385483995, "feet"),
  49751. name: "Ears and Nose (Front)",
  49752. image: {
  49753. source: "./media/characters/jess/ears-and-nose-front.svg"
  49754. }
  49755. },
  49756. earsAndNoseSide: {
  49757. height: math.unit(0.18109658741, "feet"),
  49758. name: "Ears and Nose (Side)",
  49759. image: {
  49760. source: "./media/characters/jess/ears-and-nose-side.svg"
  49761. }
  49762. },
  49763. },
  49764. [
  49765. {
  49766. name: "Normal",
  49767. height: math.unit(5 + 8/12, "feet"),
  49768. default: true
  49769. },
  49770. ]
  49771. ))
  49772. characterMakers.push(() => makeCharacter(
  49773. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49774. {
  49775. front: {
  49776. height: math.unit(6, "feet"),
  49777. weight: math.unit(6.64467e-7, "grams"),
  49778. name: "Front",
  49779. image: {
  49780. source: "./media/characters/wimpering/front.svg",
  49781. extra: 597/587,
  49782. bottom: 34/631
  49783. }
  49784. },
  49785. },
  49786. [
  49787. {
  49788. name: "Micro",
  49789. height: math.unit(0.4, "mm"),
  49790. default: true
  49791. },
  49792. ]
  49793. ))
  49794. characterMakers.push(() => makeCharacter(
  49795. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49796. {
  49797. front: {
  49798. height: math.unit(5 + 2/12, "feet"),
  49799. weight: math.unit(110, "lb"),
  49800. name: "Front",
  49801. image: {
  49802. source: "./media/characters/keltre/front.svg",
  49803. extra: 1099/1057,
  49804. bottom: 22/1121
  49805. }
  49806. },
  49807. back: {
  49808. height: math.unit(5 + 2/12, "feet"),
  49809. weight: math.unit(110, "lb"),
  49810. name: "Back",
  49811. image: {
  49812. source: "./media/characters/keltre/back.svg",
  49813. extra: 1095/1053,
  49814. bottom: 17/1112
  49815. }
  49816. },
  49817. dressed: {
  49818. height: math.unit(5 + 2/12, "feet"),
  49819. weight: math.unit(110, "lb"),
  49820. name: "Dressed",
  49821. image: {
  49822. source: "./media/characters/keltre/dressed.svg",
  49823. extra: 1099/1057,
  49824. bottom: 22/1121
  49825. }
  49826. },
  49827. winter: {
  49828. height: math.unit(5 + 2/12, "feet"),
  49829. weight: math.unit(110, "lb"),
  49830. name: "Winter",
  49831. image: {
  49832. source: "./media/characters/keltre/winter.svg",
  49833. extra: 1099/1057,
  49834. bottom: 22/1121
  49835. }
  49836. },
  49837. head: {
  49838. height: math.unit(1.61 * 0.86, "feet"),
  49839. name: "Head",
  49840. image: {
  49841. source: "./media/characters/keltre/head.svg",
  49842. extra: 534/421,
  49843. bottom: 0/534
  49844. }
  49845. },
  49846. hand: {
  49847. height: math.unit(1.3 * 0.86, "feet"),
  49848. name: "Hand",
  49849. image: {
  49850. source: "./media/characters/keltre/hand.svg"
  49851. }
  49852. },
  49853. foot: {
  49854. height: math.unit(1.8 * 0.86, "feet"),
  49855. name: "Foot",
  49856. image: {
  49857. source: "./media/characters/keltre/foot.svg"
  49858. }
  49859. },
  49860. },
  49861. [
  49862. {
  49863. name: "Fine",
  49864. height: math.unit(1, "inch")
  49865. },
  49866. {
  49867. name: "Dimnutive",
  49868. height: math.unit(4, "inches")
  49869. },
  49870. {
  49871. name: "Tiny",
  49872. height: math.unit(1, "foot")
  49873. },
  49874. {
  49875. name: "Small",
  49876. height: math.unit(3, "feet")
  49877. },
  49878. {
  49879. name: "Normal",
  49880. height: math.unit(5 + 2/12, "feet"),
  49881. default: true
  49882. },
  49883. ]
  49884. ))
  49885. characterMakers.push(() => makeCharacter(
  49886. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49887. {
  49888. front: {
  49889. height: math.unit(6 + 2/12, "feet"),
  49890. name: "Front",
  49891. image: {
  49892. source: "./media/characters/nox/front.svg",
  49893. extra: 1917/1830,
  49894. bottom: 74/1991
  49895. }
  49896. },
  49897. back: {
  49898. height: math.unit(6 + 2/12, "feet"),
  49899. name: "Back",
  49900. image: {
  49901. source: "./media/characters/nox/back.svg",
  49902. extra: 1896/1815,
  49903. bottom: 21/1917
  49904. }
  49905. },
  49906. head: {
  49907. height: math.unit(1.1, "feet"),
  49908. name: "Head",
  49909. image: {
  49910. source: "./media/characters/nox/head.svg",
  49911. extra: 874/704,
  49912. bottom: 0/874
  49913. }
  49914. },
  49915. tattoo: {
  49916. height: math.unit(0.729, "feet"),
  49917. name: "Tattoo",
  49918. image: {
  49919. source: "./media/characters/nox/tattoo.svg"
  49920. }
  49921. },
  49922. },
  49923. [
  49924. {
  49925. name: "Normal",
  49926. height: math.unit(6 + 2/12, "feet")
  49927. },
  49928. {
  49929. name: "Gigamacro",
  49930. height: math.unit(2, "earths"),
  49931. default: true
  49932. },
  49933. {
  49934. name: "Cosmic",
  49935. height: math.unit(867, "yottameters")
  49936. },
  49937. ]
  49938. ))
  49939. characterMakers.push(() => makeCharacter(
  49940. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49941. {
  49942. front: {
  49943. height: math.unit(6, "feet"),
  49944. weight: math.unit(150, "lb"),
  49945. name: "Front",
  49946. image: {
  49947. source: "./media/characters/caspian/front.svg",
  49948. extra: 1443/1359,
  49949. bottom: 0/1443
  49950. }
  49951. },
  49952. back: {
  49953. height: math.unit(6, "feet"),
  49954. weight: math.unit(150, "lb"),
  49955. name: "Back",
  49956. image: {
  49957. source: "./media/characters/caspian/back.svg",
  49958. extra: 1379/1309,
  49959. bottom: 0/1379
  49960. }
  49961. },
  49962. head: {
  49963. height: math.unit(0.9, "feet"),
  49964. name: "Head",
  49965. image: {
  49966. source: "./media/characters/caspian/head.svg",
  49967. extra: 692/492,
  49968. bottom: 0/692
  49969. }
  49970. },
  49971. headAlt: {
  49972. height: math.unit(0.95, "feet"),
  49973. name: "Head (Alt)",
  49974. image: {
  49975. source: "./media/characters/caspian/head-alt.svg",
  49976. extra: 668/508,
  49977. bottom: 0/668
  49978. }
  49979. },
  49980. hand: {
  49981. height: math.unit(0.8, "feet"),
  49982. name: "Hand",
  49983. image: {
  49984. source: "./media/characters/caspian/hand.svg"
  49985. }
  49986. },
  49987. paw: {
  49988. height: math.unit(0.95, "feet"),
  49989. name: "Paw",
  49990. image: {
  49991. source: "./media/characters/caspian/paw.svg"
  49992. }
  49993. },
  49994. },
  49995. [
  49996. {
  49997. name: "Normal",
  49998. height: math.unit(162, "feet"),
  49999. default: true
  50000. },
  50001. ]
  50002. ))
  50003. characterMakers.push(() => makeCharacter(
  50004. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50005. {
  50006. front: {
  50007. height: math.unit(6, "feet"),
  50008. name: "Front",
  50009. image: {
  50010. source: "./media/characters/myra-aisling/front.svg",
  50011. extra: 1268/1166,
  50012. bottom: 73/1341
  50013. }
  50014. },
  50015. back: {
  50016. height: math.unit(6, "feet"),
  50017. name: "Back",
  50018. image: {
  50019. source: "./media/characters/myra-aisling/back.svg",
  50020. extra: 1249/1149,
  50021. bottom: 79/1328
  50022. }
  50023. },
  50024. dressed: {
  50025. height: math.unit(6, "feet"),
  50026. name: "Dressed",
  50027. image: {
  50028. source: "./media/characters/myra-aisling/dressed.svg",
  50029. extra: 1290/1189,
  50030. bottom: 47/1337
  50031. }
  50032. },
  50033. hand: {
  50034. height: math.unit(1.1, "feet"),
  50035. name: "Hand",
  50036. image: {
  50037. source: "./media/characters/myra-aisling/hand.svg"
  50038. }
  50039. },
  50040. paw: {
  50041. height: math.unit(1.23, "feet"),
  50042. name: "Paw",
  50043. image: {
  50044. source: "./media/characters/myra-aisling/paw.svg"
  50045. }
  50046. },
  50047. },
  50048. [
  50049. {
  50050. name: "Normal",
  50051. height: math.unit(160, "feet"),
  50052. default: true
  50053. },
  50054. ]
  50055. ))
  50056. characterMakers.push(() => makeCharacter(
  50057. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50058. {
  50059. front: {
  50060. height: math.unit(6, "feet"),
  50061. name: "Front",
  50062. image: {
  50063. source: "./media/characters/tenley-sidero/front.svg",
  50064. extra: 1365/1276,
  50065. bottom: 47/1412
  50066. }
  50067. },
  50068. back: {
  50069. height: math.unit(6, "feet"),
  50070. name: "Back",
  50071. image: {
  50072. source: "./media/characters/tenley-sidero/back.svg",
  50073. extra: 1383/1283,
  50074. bottom: 35/1418
  50075. }
  50076. },
  50077. dressed: {
  50078. height: math.unit(6, "feet"),
  50079. name: "Dressed",
  50080. image: {
  50081. source: "./media/characters/tenley-sidero/dressed.svg",
  50082. extra: 1364/1275,
  50083. bottom: 42/1406
  50084. }
  50085. },
  50086. head: {
  50087. height: math.unit(1.47, "feet"),
  50088. name: "Head",
  50089. image: {
  50090. source: "./media/characters/tenley-sidero/head.svg",
  50091. extra: 610/490,
  50092. bottom: 0/610
  50093. }
  50094. },
  50095. },
  50096. [
  50097. {
  50098. name: "Normal",
  50099. height: math.unit(154, "feet"),
  50100. default: true
  50101. },
  50102. ]
  50103. ))
  50104. characterMakers.push(() => makeCharacter(
  50105. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50106. {
  50107. front: {
  50108. height: math.unit(5, "inches"),
  50109. name: "Front",
  50110. image: {
  50111. source: "./media/characters/mallory/front.svg",
  50112. extra: 1919/1678,
  50113. bottom: 29/1948
  50114. }
  50115. },
  50116. hand: {
  50117. height: math.unit(0.73, "inches"),
  50118. name: "Hand",
  50119. image: {
  50120. source: "./media/characters/mallory/hand.svg"
  50121. }
  50122. },
  50123. paw: {
  50124. height: math.unit(0.68, "inches"),
  50125. name: "Paw",
  50126. image: {
  50127. source: "./media/characters/mallory/paw.svg"
  50128. }
  50129. },
  50130. },
  50131. [
  50132. {
  50133. name: "Small",
  50134. height: math.unit(5, "inches"),
  50135. default: true
  50136. },
  50137. ]
  50138. ))
  50139. characterMakers.push(() => makeCharacter(
  50140. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50141. {
  50142. naked: {
  50143. height: math.unit(6, "feet"),
  50144. name: "Naked",
  50145. image: {
  50146. source: "./media/characters/mab/naked.svg",
  50147. extra: 1855/1757,
  50148. bottom: 208/2063
  50149. }
  50150. },
  50151. outside: {
  50152. height: math.unit(6, "feet"),
  50153. name: "Outside",
  50154. image: {
  50155. source: "./media/characters/mab/outside.svg",
  50156. extra: 1855/1757,
  50157. bottom: 208/2063
  50158. }
  50159. },
  50160. party: {
  50161. height: math.unit(6, "feet"),
  50162. name: "Party",
  50163. image: {
  50164. source: "./media/characters/mab/party.svg",
  50165. extra: 1855/1757,
  50166. bottom: 208/2063
  50167. }
  50168. },
  50169. },
  50170. [
  50171. {
  50172. name: "Normal",
  50173. height: math.unit(165, "feet"),
  50174. default: true
  50175. },
  50176. ]
  50177. ))
  50178. characterMakers.push(() => makeCharacter(
  50179. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50180. {
  50181. feral: {
  50182. height: math.unit(12, "feet"),
  50183. weight: math.unit(20000, "lb"),
  50184. name: "Side",
  50185. image: {
  50186. source: "./media/characters/winter/feral.svg",
  50187. extra: 1286/943,
  50188. bottom: 112/1398
  50189. },
  50190. form: "feral",
  50191. default: true
  50192. },
  50193. feralNsfw: {
  50194. height: math.unit(12, "feet"),
  50195. weight: math.unit(20000, "lb"),
  50196. name: "Side (NSFW)",
  50197. image: {
  50198. source: "./media/characters/winter/feral-nsfw.svg",
  50199. extra: 1286/943,
  50200. bottom: 112/1398
  50201. },
  50202. form: "feral"
  50203. },
  50204. dick: {
  50205. height: math.unit(3.79, "feet"),
  50206. name: "Dick",
  50207. image: {
  50208. source: "./media/characters/winter/dick.svg"
  50209. },
  50210. form: "feral"
  50211. },
  50212. anthro: {
  50213. height: math.unit(12, "feet"),
  50214. weight: math.unit(10, "tons"),
  50215. name: "Anthro",
  50216. image: {
  50217. source: "./media/characters/winter/anthro.svg",
  50218. extra: 1701/1553,
  50219. bottom: 64/1765
  50220. },
  50221. form: "anthro",
  50222. default: true
  50223. },
  50224. },
  50225. [
  50226. {
  50227. name: "Big",
  50228. height: math.unit(12, "feet"),
  50229. default: true,
  50230. form: "feral"
  50231. },
  50232. {
  50233. name: "Big",
  50234. height: math.unit(12, "feet"),
  50235. default: true,
  50236. form: "anthro"
  50237. },
  50238. ],
  50239. {
  50240. "feral": {
  50241. name: "Feral",
  50242. default: true
  50243. },
  50244. "anthro": {
  50245. name: "Anthro"
  50246. }
  50247. }
  50248. ))
  50249. characterMakers.push(() => makeCharacter(
  50250. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50251. {
  50252. front: {
  50253. height: math.unit(4.1, "inches"),
  50254. name: "Front",
  50255. image: {
  50256. source: "./media/characters/alto/front.svg",
  50257. extra: 736/627,
  50258. bottom: 90/826
  50259. }
  50260. },
  50261. },
  50262. [
  50263. {
  50264. name: "Normal",
  50265. height: math.unit(4.1, "inches"),
  50266. default: true
  50267. },
  50268. ]
  50269. ))
  50270. characterMakers.push(() => makeCharacter(
  50271. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50272. {
  50273. sitting: {
  50274. height: math.unit(3, "feet"),
  50275. name: "Sitting",
  50276. image: {
  50277. source: "./media/characters/ratstrid-v/sitting.svg",
  50278. extra: 355/310,
  50279. bottom: 136/491
  50280. }
  50281. },
  50282. },
  50283. [
  50284. {
  50285. name: "Normal",
  50286. height: math.unit(3, "feet"),
  50287. default: true
  50288. },
  50289. ]
  50290. ))
  50291. characterMakers.push(() => makeCharacter(
  50292. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50293. {
  50294. back: {
  50295. height: math.unit(6, "feet"),
  50296. weight: math.unit(450, "lb"),
  50297. name: "Back",
  50298. image: {
  50299. source: "./media/characters/siz/back.svg",
  50300. extra: 1449/1274,
  50301. bottom: 13/1462
  50302. }
  50303. },
  50304. },
  50305. [
  50306. {
  50307. name: "Smallest",
  50308. height: math.unit(18 + 3/12, "feet")
  50309. },
  50310. {
  50311. name: "Modest",
  50312. height: math.unit(56 + 8/12, "feet"),
  50313. default: true
  50314. },
  50315. {
  50316. name: "Largest",
  50317. height: math.unit(3590, "feet")
  50318. },
  50319. ]
  50320. ))
  50321. characterMakers.push(() => makeCharacter(
  50322. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50323. {
  50324. front: {
  50325. height: math.unit(5 + 9/12, "feet"),
  50326. weight: math.unit(150, "lb"),
  50327. name: "Front",
  50328. image: {
  50329. source: "./media/characters/ven/front.svg",
  50330. extra: 1372/1320,
  50331. bottom: 73/1445
  50332. }
  50333. },
  50334. side: {
  50335. height: math.unit(5 + 9/12, "feet"),
  50336. weight: math.unit(1150, "lb"),
  50337. name: "Side",
  50338. image: {
  50339. source: "./media/characters/ven/side.svg",
  50340. extra: 1119/1070,
  50341. bottom: 42/1161
  50342. },
  50343. default: true
  50344. },
  50345. },
  50346. [
  50347. {
  50348. name: "Normal",
  50349. height: math.unit(5 + 9/12, "feet"),
  50350. default: true
  50351. },
  50352. ]
  50353. ))
  50354. characterMakers.push(() => makeCharacter(
  50355. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50356. {
  50357. front: {
  50358. height: math.unit(12, "feet"),
  50359. weight: math.unit(1000, "kg"),
  50360. name: "Front",
  50361. image: {
  50362. source: "./media/characters/maple/front.svg",
  50363. extra: 1193/1081,
  50364. bottom: 22/1215
  50365. }
  50366. },
  50367. },
  50368. [
  50369. {
  50370. name: "Compressed",
  50371. height: math.unit(7, "feet")
  50372. },
  50373. {
  50374. name: "Normal",
  50375. height: math.unit(12, "feet"),
  50376. default: true
  50377. },
  50378. ]
  50379. ))
  50380. characterMakers.push(() => makeCharacter(
  50381. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50382. {
  50383. front: {
  50384. height: math.unit(9, "feet"),
  50385. weight: math.unit(1500, "lb"),
  50386. name: "Front",
  50387. image: {
  50388. source: "./media/characters/nora/front.svg",
  50389. extra: 1348/1286,
  50390. bottom: 218/1566
  50391. }
  50392. },
  50393. erect: {
  50394. height: math.unit(9, "feet"),
  50395. weight: math.unit(11500, "lb"),
  50396. name: "Erect",
  50397. image: {
  50398. source: "./media/characters/nora/erect.svg",
  50399. extra: 1488/1433,
  50400. bottom: 133/1621
  50401. }
  50402. },
  50403. },
  50404. [
  50405. {
  50406. name: "Normal",
  50407. height: math.unit(9, "feet"),
  50408. default: true
  50409. },
  50410. ]
  50411. ))
  50412. characterMakers.push(() => makeCharacter(
  50413. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50414. {
  50415. front: {
  50416. height: math.unit(25, "feet"),
  50417. weight: math.unit(27500, "lb"),
  50418. name: "Front",
  50419. image: {
  50420. source: "./media/characters/north-caudin/front.svg",
  50421. extra: 1184/1082,
  50422. bottom: 23/1207
  50423. }
  50424. },
  50425. },
  50426. [
  50427. {
  50428. name: "Compressed",
  50429. height: math.unit(10, "feet")
  50430. },
  50431. {
  50432. name: "Normal",
  50433. height: math.unit(25, "feet"),
  50434. default: true
  50435. },
  50436. ]
  50437. ))
  50438. characterMakers.push(() => makeCharacter(
  50439. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50440. {
  50441. front: {
  50442. height: math.unit(9, "feet"),
  50443. weight: math.unit(1250, "lb"),
  50444. name: "Front",
  50445. image: {
  50446. source: "./media/characters/merrian/front.svg",
  50447. extra: 2393/2304,
  50448. bottom: 40/2433
  50449. }
  50450. },
  50451. },
  50452. [
  50453. {
  50454. name: "Normal",
  50455. height: math.unit(9, "feet"),
  50456. default: true
  50457. },
  50458. ]
  50459. ))
  50460. characterMakers.push(() => makeCharacter(
  50461. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50462. {
  50463. front: {
  50464. height: math.unit(9, "feet"),
  50465. weight: math.unit(1000, "lb"),
  50466. name: "Front",
  50467. image: {
  50468. source: "./media/characters/hazel/front.svg",
  50469. extra: 2351/2298,
  50470. bottom: 38/2389
  50471. }
  50472. },
  50473. },
  50474. [
  50475. {
  50476. name: "Normal",
  50477. height: math.unit(9, "feet"),
  50478. default: true
  50479. },
  50480. ]
  50481. ))
  50482. characterMakers.push(() => makeCharacter(
  50483. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50484. {
  50485. front: {
  50486. height: math.unit(13, "feet"),
  50487. weight: math.unit(3200, "lb"),
  50488. name: "Front",
  50489. image: {
  50490. source: "./media/characters/emma/front.svg",
  50491. extra: 2263/2029,
  50492. bottom: 68/2331
  50493. }
  50494. },
  50495. },
  50496. [
  50497. {
  50498. name: "Normal",
  50499. height: math.unit(13, "feet"),
  50500. default: true
  50501. },
  50502. ]
  50503. ))
  50504. characterMakers.push(() => makeCharacter(
  50505. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50506. {
  50507. front: {
  50508. height: math.unit(11 + 9/12, "feet"),
  50509. weight: math.unit(2500, "lb"),
  50510. name: "Front",
  50511. image: {
  50512. source: "./media/characters/ilumina/front.svg",
  50513. extra: 2248/2209,
  50514. bottom: 164/2412
  50515. }
  50516. },
  50517. },
  50518. [
  50519. {
  50520. name: "Normal",
  50521. height: math.unit(11 + 9/12, "feet"),
  50522. default: true
  50523. },
  50524. ]
  50525. ))
  50526. characterMakers.push(() => makeCharacter(
  50527. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50528. {
  50529. front: {
  50530. height: math.unit(8 + 10/12, "feet"),
  50531. weight: math.unit(1350, "lb"),
  50532. name: "Front",
  50533. image: {
  50534. source: "./media/characters/moonshine/front.svg",
  50535. extra: 2395/2288,
  50536. bottom: 40/2435
  50537. }
  50538. },
  50539. },
  50540. [
  50541. {
  50542. name: "Normal",
  50543. height: math.unit(8 + 10/12, "feet"),
  50544. default: true
  50545. },
  50546. ]
  50547. ))
  50548. characterMakers.push(() => makeCharacter(
  50549. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50550. {
  50551. front: {
  50552. height: math.unit(14, "feet"),
  50553. weight: math.unit(3400, "lb"),
  50554. name: "Front",
  50555. image: {
  50556. source: "./media/characters/aletia/front.svg",
  50557. extra: 1185/1052,
  50558. bottom: 21/1206
  50559. }
  50560. },
  50561. },
  50562. [
  50563. {
  50564. name: "Compressed",
  50565. height: math.unit(8, "feet")
  50566. },
  50567. {
  50568. name: "Normal",
  50569. height: math.unit(14, "feet"),
  50570. default: true
  50571. },
  50572. ]
  50573. ))
  50574. characterMakers.push(() => makeCharacter(
  50575. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50576. {
  50577. front: {
  50578. height: math.unit(17, "feet"),
  50579. weight: math.unit(6500, "lb"),
  50580. name: "Front",
  50581. image: {
  50582. source: "./media/characters/deidra/front.svg",
  50583. extra: 1201/1081,
  50584. bottom: 16/1217
  50585. }
  50586. },
  50587. },
  50588. [
  50589. {
  50590. name: "Compressed",
  50591. height: math.unit(9 + 6/12, "feet")
  50592. },
  50593. {
  50594. name: "Normal",
  50595. height: math.unit(17, "feet"),
  50596. default: true
  50597. },
  50598. ]
  50599. ))
  50600. characterMakers.push(() => makeCharacter(
  50601. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50602. {
  50603. front: {
  50604. height: math.unit(7 + 4/12, "feet"),
  50605. weight: math.unit(280, "lb"),
  50606. name: "Front",
  50607. image: {
  50608. source: "./media/characters/freki-yrmori/front.svg",
  50609. extra: 1286/1182,
  50610. bottom: 29/1315
  50611. }
  50612. },
  50613. maw: {
  50614. height: math.unit(0.9, "feet"),
  50615. name: "Maw",
  50616. image: {
  50617. source: "./media/characters/freki-yrmori/maw.svg"
  50618. }
  50619. },
  50620. },
  50621. [
  50622. {
  50623. name: "Normal",
  50624. height: math.unit(7 + 4/12, "feet"),
  50625. default: true
  50626. },
  50627. {
  50628. name: "Macro",
  50629. height: math.unit(38.5, "meters")
  50630. },
  50631. ]
  50632. ))
  50633. characterMakers.push(() => makeCharacter(
  50634. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50635. {
  50636. side: {
  50637. height: math.unit(47.2, "meters"),
  50638. weight: math.unit(10000, "tons"),
  50639. name: "Side",
  50640. image: {
  50641. source: "./media/characters/aetherios/side.svg",
  50642. extra: 2363/642,
  50643. bottom: 221/2584
  50644. }
  50645. },
  50646. top: {
  50647. height: math.unit(240, "meters"),
  50648. weight: math.unit(10000, "tons"),
  50649. name: "Top",
  50650. image: {
  50651. source: "./media/characters/aetherios/top.svg"
  50652. }
  50653. },
  50654. bottom: {
  50655. height: math.unit(240, "meters"),
  50656. weight: math.unit(10000, "tons"),
  50657. name: "Bottom",
  50658. image: {
  50659. source: "./media/characters/aetherios/bottom.svg"
  50660. }
  50661. },
  50662. head: {
  50663. height: math.unit(38.6, "meters"),
  50664. name: "Head",
  50665. image: {
  50666. source: "./media/characters/aetherios/head.svg",
  50667. extra: 1335/1112,
  50668. bottom: 0/1335
  50669. }
  50670. },
  50671. front: {
  50672. height: math.unit(29, "meters"),
  50673. name: "Front",
  50674. image: {
  50675. source: "./media/characters/aetherios/front.svg",
  50676. extra: 1266/953,
  50677. bottom: 158/1424
  50678. }
  50679. },
  50680. maw: {
  50681. height: math.unit(16.37, "meters"),
  50682. name: "Maw",
  50683. image: {
  50684. source: "./media/characters/aetherios/maw.svg",
  50685. extra: 748/637,
  50686. bottom: 0/748
  50687. },
  50688. extraAttributes: {
  50689. preyCapacity: {
  50690. name: "Capacity",
  50691. power: 3,
  50692. type: "volume",
  50693. base: math.unit(1000, "people")
  50694. },
  50695. tongueSize: {
  50696. name: "Tongue Size",
  50697. power: 2,
  50698. type: "area",
  50699. base: math.unit(21, "m^2")
  50700. }
  50701. }
  50702. },
  50703. forepaw: {
  50704. height: math.unit(18, "meters"),
  50705. name: "Forepaw",
  50706. image: {
  50707. source: "./media/characters/aetherios/forepaw.svg"
  50708. }
  50709. },
  50710. hindpaw: {
  50711. height: math.unit(23, "meters"),
  50712. name: "Hindpaw",
  50713. image: {
  50714. source: "./media/characters/aetherios/hindpaw.svg"
  50715. }
  50716. },
  50717. genitals: {
  50718. height: math.unit(42, "meters"),
  50719. name: "Genitals",
  50720. image: {
  50721. source: "./media/characters/aetherios/genitals.svg"
  50722. }
  50723. },
  50724. },
  50725. [
  50726. {
  50727. name: "Normal",
  50728. height: math.unit(47.2, "meters"),
  50729. default: true
  50730. },
  50731. {
  50732. name: "Macro",
  50733. height: math.unit(160, "meters")
  50734. },
  50735. {
  50736. name: "Mega",
  50737. height: math.unit(1.87, "km")
  50738. },
  50739. {
  50740. name: "Giga",
  50741. height: math.unit(40000, "km")
  50742. },
  50743. {
  50744. name: "Stellar",
  50745. height: math.unit(158000000, "km")
  50746. },
  50747. {
  50748. name: "Cosmic",
  50749. height: math.unit(9.46e12, "km")
  50750. },
  50751. ]
  50752. ))
  50753. characterMakers.push(() => makeCharacter(
  50754. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50755. {
  50756. front: {
  50757. height: math.unit(5 + 4/12, "feet"),
  50758. weight: math.unit(80, "lb"),
  50759. name: "Front",
  50760. image: {
  50761. source: "./media/characters/mizu-gieeg/front.svg",
  50762. extra: 850/709,
  50763. bottom: 52/902
  50764. }
  50765. },
  50766. back: {
  50767. height: math.unit(5 + 4/12, "feet"),
  50768. weight: math.unit(80, "lb"),
  50769. name: "Back",
  50770. image: {
  50771. source: "./media/characters/mizu-gieeg/back.svg",
  50772. extra: 882/745,
  50773. bottom: 25/907
  50774. }
  50775. },
  50776. },
  50777. [
  50778. {
  50779. name: "Normal",
  50780. height: math.unit(5 + 4/12, "feet"),
  50781. default: true
  50782. },
  50783. ]
  50784. ))
  50785. characterMakers.push(() => makeCharacter(
  50786. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50787. {
  50788. front: {
  50789. height: math.unit(6, "feet"),
  50790. name: "Front",
  50791. image: {
  50792. source: "./media/characters/roselle-st-papier/front.svg",
  50793. extra: 1430/1280,
  50794. bottom: 37/1467
  50795. }
  50796. },
  50797. back: {
  50798. height: math.unit(6, "feet"),
  50799. name: "Back",
  50800. image: {
  50801. source: "./media/characters/roselle-st-papier/back.svg",
  50802. extra: 1491/1296,
  50803. bottom: 23/1514
  50804. }
  50805. },
  50806. ear: {
  50807. height: math.unit(1.26, "feet"),
  50808. name: "Ear",
  50809. image: {
  50810. source: "./media/characters/roselle-st-papier/ear.svg"
  50811. }
  50812. },
  50813. },
  50814. [
  50815. {
  50816. name: "Normal",
  50817. height: math.unit(150, "feet"),
  50818. default: true
  50819. },
  50820. ]
  50821. ))
  50822. characterMakers.push(() => makeCharacter(
  50823. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50824. {
  50825. front: {
  50826. height: math.unit(1, "inches"),
  50827. name: "Front",
  50828. image: {
  50829. source: "./media/characters/valargent/front.svg",
  50830. extra: 1825/1694,
  50831. bottom: 62/1887
  50832. }
  50833. },
  50834. back: {
  50835. height: math.unit(1, "inches"),
  50836. name: "Back",
  50837. image: {
  50838. source: "./media/characters/valargent/back.svg",
  50839. extra: 1775/1682,
  50840. bottom: 88/1863
  50841. }
  50842. },
  50843. },
  50844. [
  50845. {
  50846. name: "Micro",
  50847. height: math.unit(1, "inch"),
  50848. default: true
  50849. },
  50850. ]
  50851. ))
  50852. characterMakers.push(() => makeCharacter(
  50853. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50854. {
  50855. front: {
  50856. height: math.unit(3.4, "meters"),
  50857. name: "Front",
  50858. image: {
  50859. source: "./media/characters/zarina/front.svg",
  50860. extra: 1733/1425,
  50861. bottom: 93/1826
  50862. }
  50863. },
  50864. squatting: {
  50865. height: math.unit(2.14, "meters"),
  50866. name: "Squatting",
  50867. image: {
  50868. source: "./media/characters/zarina/squatting.svg",
  50869. extra: 1073/788,
  50870. bottom: 63/1136
  50871. }
  50872. },
  50873. back: {
  50874. height: math.unit(2.14, "meters"),
  50875. name: "Back",
  50876. image: {
  50877. source: "./media/characters/zarina/back.svg",
  50878. extra: 1128/885,
  50879. bottom: 0/1128
  50880. }
  50881. },
  50882. },
  50883. [
  50884. {
  50885. name: "Normal",
  50886. height: math.unit(3.4, "meters"),
  50887. default: true
  50888. },
  50889. {
  50890. name: "Big",
  50891. height: math.unit(5, "meters")
  50892. },
  50893. {
  50894. name: "Macro",
  50895. height: math.unit(110, "meters")
  50896. },
  50897. ]
  50898. ))
  50899. characterMakers.push(() => makeCharacter(
  50900. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50901. {
  50902. front: {
  50903. height: math.unit(7, "feet"),
  50904. name: "Front",
  50905. image: {
  50906. source: "./media/characters/ventus-astro-fox/front.svg",
  50907. extra: 1792/1623,
  50908. bottom: 28/1820
  50909. }
  50910. },
  50911. back: {
  50912. height: math.unit(7, "feet"),
  50913. name: "Back",
  50914. image: {
  50915. source: "./media/characters/ventus-astro-fox/back.svg",
  50916. extra: 1789/1620,
  50917. bottom: 31/1820
  50918. }
  50919. },
  50920. outfit: {
  50921. height: math.unit(7, "feet"),
  50922. name: "Outfit",
  50923. image: {
  50924. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50925. extra: 1054/925,
  50926. bottom: 15/1069
  50927. }
  50928. },
  50929. head: {
  50930. height: math.unit(1.12, "feet"),
  50931. name: "Head",
  50932. image: {
  50933. source: "./media/characters/ventus-astro-fox/head.svg",
  50934. extra: 866/504,
  50935. bottom: 0/866
  50936. }
  50937. },
  50938. hand: {
  50939. height: math.unit(1, "feet"),
  50940. name: "Hand",
  50941. image: {
  50942. source: "./media/characters/ventus-astro-fox/hand.svg"
  50943. }
  50944. },
  50945. paw: {
  50946. height: math.unit(1.5, "feet"),
  50947. name: "Paw",
  50948. image: {
  50949. source: "./media/characters/ventus-astro-fox/paw.svg"
  50950. }
  50951. },
  50952. },
  50953. [
  50954. {
  50955. name: "Normal",
  50956. height: math.unit(7, "feet"),
  50957. default: true
  50958. },
  50959. {
  50960. name: "Macro",
  50961. height: math.unit(200, "feet")
  50962. },
  50963. {
  50964. name: "Cosmic",
  50965. height: math.unit(3, "universes")
  50966. },
  50967. ]
  50968. ))
  50969. characterMakers.push(() => makeCharacter(
  50970. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50971. {
  50972. front: {
  50973. height: math.unit(3, "meters"),
  50974. weight: math.unit(7000, "lb"),
  50975. name: "Front",
  50976. image: {
  50977. source: "./media/characters/core-t/front.svg",
  50978. extra: 5729/4941,
  50979. bottom: 1129/6858
  50980. }
  50981. },
  50982. },
  50983. [
  50984. {
  50985. name: "Big",
  50986. height: math.unit(3, "meters"),
  50987. default: true
  50988. },
  50989. ]
  50990. ))
  50991. characterMakers.push(() => makeCharacter(
  50992. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50993. {
  50994. normal: {
  50995. height: math.unit(6 + 6/12, "feet"),
  50996. weight: math.unit(275, "lb"),
  50997. name: "Front",
  50998. image: {
  50999. source: "./media/characters/cadbunny/normal.svg",
  51000. extra: 1129/947,
  51001. bottom: 93/1222
  51002. },
  51003. default: true,
  51004. form: "normal"
  51005. },
  51006. gigantamax: {
  51007. height: math.unit(26, "feet"),
  51008. weight: math.unit(16000, "lb"),
  51009. name: "Front",
  51010. image: {
  51011. source: "./media/characters/cadbunny/gigantamax.svg",
  51012. extra: 1133/944,
  51013. bottom: 90/1223
  51014. },
  51015. default: true,
  51016. form: "gigantamax"
  51017. },
  51018. },
  51019. [
  51020. {
  51021. name: "Normal",
  51022. height: math.unit(6 + 6/12, "feet"),
  51023. default: true,
  51024. form: "normal"
  51025. },
  51026. {
  51027. name: "Small",
  51028. height: math.unit(26, "feet"),
  51029. default: true,
  51030. form: "gigantamax"
  51031. },
  51032. {
  51033. name: "Large",
  51034. height: math.unit(78, "feet"),
  51035. form: "gigantamax"
  51036. },
  51037. ],
  51038. {
  51039. "normal": {
  51040. name: "Normal",
  51041. default: true
  51042. },
  51043. "gigantamax": {
  51044. name: "Gigantamax"
  51045. }
  51046. }
  51047. ))
  51048. characterMakers.push(() => makeCharacter(
  51049. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51050. {
  51051. anthroFront: {
  51052. height: math.unit(8, "feet"),
  51053. weight: math.unit(300, "lb"),
  51054. name: "Front",
  51055. image: {
  51056. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51057. extra: 1272/1176,
  51058. bottom: 53/1325
  51059. },
  51060. form: "anthro",
  51061. default: true
  51062. },
  51063. feralSide: {
  51064. height: math.unit(4, "feet"),
  51065. weight: math.unit(250, "lb"),
  51066. name: "Side",
  51067. image: {
  51068. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51069. extra: 731/621,
  51070. bottom: 0/731
  51071. },
  51072. form: "feral",
  51073. default: true
  51074. },
  51075. },
  51076. [
  51077. {
  51078. name: "Regular",
  51079. height: math.unit(8, "feet"),
  51080. form: "anthro"
  51081. },
  51082. {
  51083. name: "Macro",
  51084. height: math.unit(250, "feet"),
  51085. form: "anthro",
  51086. default: true
  51087. },
  51088. {
  51089. name: "Regular",
  51090. height: math.unit(4, "feet"),
  51091. form: "feral"
  51092. },
  51093. {
  51094. name: "Macro",
  51095. height: math.unit(125, "feet"),
  51096. form: "feral",
  51097. default: true
  51098. },
  51099. ],
  51100. {
  51101. "anthro": {
  51102. name: "Anthro",
  51103. default: true
  51104. },
  51105. "feral": {
  51106. name: "Feral",
  51107. },
  51108. }
  51109. ))
  51110. characterMakers.push(() => makeCharacter(
  51111. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51112. {
  51113. front: {
  51114. height: math.unit(11 + 10/12, "feet"),
  51115. weight: math.unit(1587, "kg"),
  51116. name: "Front",
  51117. image: {
  51118. source: "./media/characters/maple-javira-dragon/front.svg",
  51119. extra: 1136/744,
  51120. bottom: 73/1209
  51121. }
  51122. },
  51123. side: {
  51124. height: math.unit(11 + 10/12, "feet"),
  51125. weight: math.unit(1587, "kg"),
  51126. name: "Side",
  51127. image: {
  51128. source: "./media/characters/maple-javira-dragon/side.svg",
  51129. extra: 712/505,
  51130. bottom: 17/729
  51131. }
  51132. },
  51133. head: {
  51134. height: math.unit(8.05, "feet"),
  51135. name: "Head",
  51136. image: {
  51137. source: "./media/characters/maple-javira-dragon/head.svg",
  51138. extra: 1420/1344,
  51139. bottom: 0/1420
  51140. }
  51141. },
  51142. },
  51143. [
  51144. {
  51145. name: "Normal",
  51146. height: math.unit(11 + 10/12, "feet"),
  51147. default: true
  51148. },
  51149. ]
  51150. ))
  51151. characterMakers.push(() => makeCharacter(
  51152. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51153. {
  51154. front: {
  51155. height: math.unit(117, "cm"),
  51156. weight: math.unit(50, "kg"),
  51157. name: "Front",
  51158. image: {
  51159. source: "./media/characters/sonia-wyverntail/front.svg",
  51160. extra: 708/592,
  51161. bottom: 25/733
  51162. }
  51163. },
  51164. },
  51165. [
  51166. {
  51167. name: "Normal",
  51168. height: math.unit(117, "cm"),
  51169. default: true
  51170. },
  51171. ]
  51172. ))
  51173. characterMakers.push(() => makeCharacter(
  51174. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51175. {
  51176. front: {
  51177. height: math.unit(6 + 5/12, "feet"),
  51178. name: "Front",
  51179. image: {
  51180. source: "./media/characters/micah/front.svg",
  51181. extra: 1758/1546,
  51182. bottom: 214/1972
  51183. }
  51184. },
  51185. },
  51186. [
  51187. {
  51188. name: "Normal",
  51189. height: math.unit(6 + 5/12, "feet"),
  51190. default: true
  51191. },
  51192. ]
  51193. ))
  51194. characterMakers.push(() => makeCharacter(
  51195. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  51196. {
  51197. front: {
  51198. height: math.unit(1.75, "meters"),
  51199. weight: math.unit(100, "kg"),
  51200. name: "Front",
  51201. image: {
  51202. source: "./media/characters/zarya/front.svg",
  51203. extra: 741/735,
  51204. bottom: 44/785
  51205. },
  51206. extraAttributes: {
  51207. "tailLength": {
  51208. name: "Tail Length",
  51209. power: 1,
  51210. type: "length",
  51211. base: math.unit(180, "cm")
  51212. },
  51213. "pawLength": {
  51214. name: "Paw Length",
  51215. power: 1,
  51216. type: "length",
  51217. base: math.unit(31, "cm")
  51218. },
  51219. }
  51220. },
  51221. side: {
  51222. height: math.unit(1.75, "meters"),
  51223. weight: math.unit(100, "kg"),
  51224. name: "Side",
  51225. image: {
  51226. source: "./media/characters/zarya/side.svg",
  51227. extra: 776/770,
  51228. bottom: 17/793
  51229. },
  51230. extraAttributes: {
  51231. "tailLength": {
  51232. name: "Tail Length",
  51233. power: 1,
  51234. type: "length",
  51235. base: math.unit(180, "cm")
  51236. },
  51237. "pawLength": {
  51238. name: "Paw Length",
  51239. power: 1,
  51240. type: "length",
  51241. base: math.unit(31, "cm")
  51242. },
  51243. }
  51244. },
  51245. back: {
  51246. height: math.unit(1.75, "meters"),
  51247. weight: math.unit(100, "kg"),
  51248. name: "Back",
  51249. image: {
  51250. source: "./media/characters/zarya/back.svg",
  51251. extra: 741/735,
  51252. bottom: 44/785
  51253. },
  51254. extraAttributes: {
  51255. "tailLength": {
  51256. name: "Tail Length",
  51257. power: 1,
  51258. type: "length",
  51259. base: math.unit(180, "cm")
  51260. },
  51261. "pawLength": {
  51262. name: "Paw Length",
  51263. power: 1,
  51264. type: "length",
  51265. base: math.unit(31, "cm")
  51266. },
  51267. }
  51268. },
  51269. frontNoTail: {
  51270. height: math.unit(1.75, "meters"),
  51271. weight: math.unit(100, "kg"),
  51272. name: "Front (No Tail)",
  51273. image: {
  51274. source: "./media/characters/zarya/front-no-tail.svg",
  51275. extra: 741/735,
  51276. bottom: 44/785
  51277. },
  51278. extraAttributes: {
  51279. "tailLength": {
  51280. name: "Tail Length",
  51281. power: 1,
  51282. type: "length",
  51283. base: math.unit(180, "cm")
  51284. },
  51285. "pawLength": {
  51286. name: "Paw Length",
  51287. power: 1,
  51288. type: "length",
  51289. base: math.unit(31, "cm")
  51290. },
  51291. }
  51292. },
  51293. dressed: {
  51294. height: math.unit(1.75, "meters"),
  51295. weight: math.unit(100, "kg"),
  51296. name: "Dressed",
  51297. image: {
  51298. source: "./media/characters/zarya/dressed.svg",
  51299. extra: 683/672,
  51300. bottom: 79/762
  51301. },
  51302. extraAttributes: {
  51303. "tailLength": {
  51304. name: "Tail Length",
  51305. power: 1,
  51306. type: "length",
  51307. base: math.unit(180, "cm")
  51308. },
  51309. "pawLength": {
  51310. name: "Paw Length",
  51311. power: 1,
  51312. type: "length",
  51313. base: math.unit(31, "cm")
  51314. },
  51315. }
  51316. },
  51317. },
  51318. [
  51319. {
  51320. name: "Micro",
  51321. height: math.unit(5, "cm")
  51322. },
  51323. {
  51324. name: "Normal",
  51325. height: math.unit(1.75, "meters"),
  51326. default: true
  51327. },
  51328. {
  51329. name: "Macro",
  51330. height: math.unit(122, "meters")
  51331. },
  51332. ]
  51333. ))
  51334. characterMakers.push(() => makeCharacter(
  51335. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51336. {
  51337. front: {
  51338. height: math.unit(7.5, "feet"),
  51339. name: "Front",
  51340. image: {
  51341. source: "./media/characters/sven-hatisson/front.svg",
  51342. extra: 917/857,
  51343. bottom: 42/959
  51344. }
  51345. },
  51346. back: {
  51347. height: math.unit(7.5, "feet"),
  51348. name: "Back",
  51349. image: {
  51350. source: "./media/characters/sven-hatisson/back.svg",
  51351. extra: 903/856,
  51352. bottom: 15/918
  51353. }
  51354. },
  51355. },
  51356. [
  51357. {
  51358. name: "Base Height",
  51359. height: math.unit(7.5, "feet")
  51360. },
  51361. {
  51362. name: "Usual Height",
  51363. height: math.unit(13.5, "feet"),
  51364. default: true
  51365. },
  51366. {
  51367. name: "Smaller Macro",
  51368. height: math.unit(85, "feet")
  51369. },
  51370. {
  51371. name: "Moderate Macro",
  51372. height: math.unit(320, "feet")
  51373. },
  51374. {
  51375. name: "Large Macro",
  51376. height: math.unit(1000, "feet")
  51377. },
  51378. {
  51379. name: "Largest Size",
  51380. height: math.unit(2, "miles")
  51381. },
  51382. ]
  51383. ))
  51384. characterMakers.push(() => makeCharacter(
  51385. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51386. {
  51387. side: {
  51388. height: math.unit(1.8, "meters"),
  51389. weight: math.unit(275, "kg"),
  51390. name: "Side",
  51391. image: {
  51392. source: "./media/characters/terra/side.svg",
  51393. extra: 1273/1147,
  51394. bottom: 0/1273
  51395. }
  51396. },
  51397. },
  51398. [
  51399. {
  51400. name: "Normal",
  51401. height: math.unit(16.2, "meters"),
  51402. default: true
  51403. },
  51404. ]
  51405. ))
  51406. characterMakers.push(() => makeCharacter(
  51407. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51408. {
  51409. borzoiFront: {
  51410. height: math.unit(6 + 9/12, "feet"),
  51411. name: "Front",
  51412. image: {
  51413. source: "./media/characters/rae/borzoi-front.svg",
  51414. extra: 1161/1098,
  51415. bottom: 31/1192
  51416. },
  51417. form: "borzoi",
  51418. default: true
  51419. },
  51420. werewolfFront: {
  51421. height: math.unit(8 + 7/12, "feet"),
  51422. name: "Front",
  51423. image: {
  51424. source: "./media/characters/rae/werewolf-front.svg",
  51425. extra: 1411/1334,
  51426. bottom: 127/1538
  51427. },
  51428. form: "werewolf",
  51429. default: true
  51430. },
  51431. },
  51432. [
  51433. {
  51434. name: "Normal",
  51435. height: math.unit(6 + 9/12, "feet"),
  51436. default: true,
  51437. form: "borzoi"
  51438. },
  51439. {
  51440. name: "Normal",
  51441. height: math.unit(8 + 7/12, "feet"),
  51442. default: true,
  51443. form: "werewolf"
  51444. },
  51445. ],
  51446. {
  51447. "borzoi": {
  51448. name: "Borzoi",
  51449. default: true
  51450. },
  51451. "werewolf": {
  51452. name: "Werewolf",
  51453. },
  51454. }
  51455. ))
  51456. characterMakers.push(() => makeCharacter(
  51457. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51458. {
  51459. front: {
  51460. height: math.unit(8 + 7/12, "feet"),
  51461. weight: math.unit(482, "lb"),
  51462. name: "Front",
  51463. image: {
  51464. source: "./media/characters/kit/front.svg",
  51465. extra: 1247/1103,
  51466. bottom: 41/1288
  51467. }
  51468. },
  51469. back: {
  51470. height: math.unit(8 + 7/12, "feet"),
  51471. weight: math.unit(482, "lb"),
  51472. name: "Back",
  51473. image: {
  51474. source: "./media/characters/kit/back.svg",
  51475. extra: 1252/1123,
  51476. bottom: 21/1273
  51477. }
  51478. },
  51479. paw: {
  51480. height: math.unit(1.46, "feet"),
  51481. name: "Paw",
  51482. image: {
  51483. source: "./media/characters/kit/paw.svg"
  51484. }
  51485. },
  51486. },
  51487. [
  51488. {
  51489. name: "Normal",
  51490. height: math.unit(2.61, "meters"),
  51491. default: true
  51492. },
  51493. {
  51494. name: "\"Tall\"",
  51495. height: math.unit(8.21, "meters")
  51496. },
  51497. {
  51498. name: "Tall",
  51499. height: math.unit(19.6, "meters")
  51500. },
  51501. {
  51502. name: "Very Tall",
  51503. height: math.unit(57.91, "meters")
  51504. },
  51505. {
  51506. name: "Semi-Macro",
  51507. height: math.unit(138.64, "meters")
  51508. },
  51509. {
  51510. name: "Macro",
  51511. height: math.unit(831.99, "meters")
  51512. },
  51513. {
  51514. name: "EX-Macro",
  51515. height: math.unit(96451121, "meters")
  51516. },
  51517. {
  51518. name: "S1-Omnipotent",
  51519. height: math.unit(4.42074e+9, "meters")
  51520. },
  51521. {
  51522. name: "S2-Omnipotent",
  51523. height: math.unit(9.42074e+17, "meters")
  51524. },
  51525. {
  51526. name: "Omnipotent",
  51527. height: math.unit(4.23112e+24, "meters")
  51528. },
  51529. {
  51530. name: "Hypergod",
  51531. height: math.unit(5.05176e+27, "meters")
  51532. },
  51533. {
  51534. name: "Hypergod-EX",
  51535. height: math.unit(9.45532e+49, "meters")
  51536. },
  51537. {
  51538. name: "Hypergod-SP",
  51539. height: math.unit(9.45532e+195, "meters")
  51540. },
  51541. ]
  51542. ))
  51543. characterMakers.push(() => makeCharacter(
  51544. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51545. {
  51546. side: {
  51547. height: math.unit(0.6, "meters"),
  51548. weight: math.unit(24, "kg"),
  51549. name: "Side",
  51550. image: {
  51551. source: "./media/characters/celeste/side.svg",
  51552. extra: 810/517,
  51553. bottom: 53/863
  51554. }
  51555. },
  51556. },
  51557. [
  51558. {
  51559. name: "Velociraptor",
  51560. height: math.unit(0.6, "meters"),
  51561. default: true
  51562. },
  51563. {
  51564. name: "Utahraptor",
  51565. height: math.unit(1.8, "meters")
  51566. },
  51567. {
  51568. name: "Gallimimus",
  51569. height: math.unit(4.0, "meters")
  51570. },
  51571. {
  51572. name: "Large",
  51573. height: math.unit(20, "meters")
  51574. },
  51575. {
  51576. name: "Planetary",
  51577. height: math.unit(50, "megameters")
  51578. },
  51579. {
  51580. name: "Stellar",
  51581. height: math.unit(1.5, "gigameters")
  51582. },
  51583. {
  51584. name: "Galactic",
  51585. height: math.unit(100, "exameters")
  51586. },
  51587. ]
  51588. ))
  51589. characterMakers.push(() => makeCharacter(
  51590. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51591. {
  51592. front: {
  51593. height: math.unit(6, "feet"),
  51594. weight: math.unit(210, "lb"),
  51595. name: "Front",
  51596. image: {
  51597. source: "./media/characters/glacia/front.svg",
  51598. extra: 958/901,
  51599. bottom: 45/1003
  51600. }
  51601. },
  51602. },
  51603. [
  51604. {
  51605. name: "Macro",
  51606. height: math.unit(1000, "meters"),
  51607. default: true
  51608. },
  51609. ]
  51610. ))
  51611. characterMakers.push(() => makeCharacter(
  51612. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51613. {
  51614. front: {
  51615. height: math.unit(4, "meters"),
  51616. name: "Front",
  51617. image: {
  51618. source: "./media/characters/giri/front.svg",
  51619. extra: 966/894,
  51620. bottom: 21/987
  51621. }
  51622. },
  51623. },
  51624. [
  51625. {
  51626. name: "Normal",
  51627. height: math.unit(4, "meters"),
  51628. default: true
  51629. },
  51630. ]
  51631. ))
  51632. characterMakers.push(() => makeCharacter(
  51633. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51634. {
  51635. back: {
  51636. height: math.unit(4, "feet"),
  51637. weight: math.unit(37, "lb"),
  51638. name: "Back",
  51639. image: {
  51640. source: "./media/characters/tin/back.svg",
  51641. extra: 845/780,
  51642. bottom: 28/873
  51643. }
  51644. },
  51645. },
  51646. [
  51647. {
  51648. name: "Normal",
  51649. height: math.unit(4, "feet"),
  51650. default: true
  51651. },
  51652. ]
  51653. ))
  51654. characterMakers.push(() => makeCharacter(
  51655. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51656. {
  51657. front: {
  51658. height: math.unit(25, "feet"),
  51659. name: "Front",
  51660. image: {
  51661. source: "./media/characters/cadenza-vivace/front.svg",
  51662. extra: 1842/1578,
  51663. bottom: 30/1872
  51664. }
  51665. },
  51666. },
  51667. [
  51668. {
  51669. name: "Macro",
  51670. height: math.unit(25, "feet"),
  51671. default: true
  51672. },
  51673. ]
  51674. ))
  51675. characterMakers.push(() => makeCharacter(
  51676. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51677. {
  51678. front: {
  51679. height: math.unit(10, "feet"),
  51680. weight: math.unit(625, "kg"),
  51681. name: "Front",
  51682. image: {
  51683. source: "./media/characters/zain/front.svg",
  51684. extra: 1682/1498,
  51685. bottom: 223/1905
  51686. }
  51687. },
  51688. back: {
  51689. height: math.unit(10, "feet"),
  51690. weight: math.unit(625, "kg"),
  51691. name: "Back",
  51692. image: {
  51693. source: "./media/characters/zain/back.svg",
  51694. extra: 1814/1657,
  51695. bottom: 152/1966
  51696. }
  51697. },
  51698. head: {
  51699. height: math.unit(10, "feet"),
  51700. weight: math.unit(625, "kg"),
  51701. name: "Head",
  51702. image: {
  51703. source: "./media/characters/zain/head.svg",
  51704. extra: 1059/762,
  51705. bottom: 0/1059
  51706. }
  51707. },
  51708. },
  51709. [
  51710. {
  51711. name: "Normal",
  51712. height: math.unit(10, "feet"),
  51713. default: true
  51714. },
  51715. ]
  51716. ))
  51717. characterMakers.push(() => makeCharacter(
  51718. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51719. {
  51720. front: {
  51721. height: math.unit(6 + 5/12, "feet"),
  51722. weight: math.unit(750, "lb"),
  51723. name: "Front",
  51724. image: {
  51725. source: "./media/characters/ruchex/front.svg",
  51726. extra: 877/820,
  51727. bottom: 17/894
  51728. },
  51729. extraAttributes: {
  51730. "width": {
  51731. name: "Width",
  51732. power: 1,
  51733. type: "length",
  51734. base: math.unit(4.757, "feet")
  51735. },
  51736. }
  51737. },
  51738. },
  51739. [
  51740. {
  51741. name: "Normal",
  51742. height: math.unit(6 + 5/12, "feet"),
  51743. default: true
  51744. },
  51745. ]
  51746. ))
  51747. characterMakers.push(() => makeCharacter(
  51748. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51749. {
  51750. dressedFront: {
  51751. height: math.unit(191, "cm"),
  51752. weight: math.unit(80, "kg"),
  51753. name: "Front",
  51754. image: {
  51755. source: "./media/characters/buster/dressed-front.svg",
  51756. extra: 1022/973,
  51757. bottom: 69/1091
  51758. }
  51759. },
  51760. dressedBack: {
  51761. height: math.unit(191, "cm"),
  51762. weight: math.unit(80, "kg"),
  51763. name: "Back",
  51764. image: {
  51765. source: "./media/characters/buster/dressed-back.svg",
  51766. extra: 1018/970,
  51767. bottom: 55/1073
  51768. }
  51769. },
  51770. nudeFront: {
  51771. height: math.unit(191, "cm"),
  51772. weight: math.unit(80, "kg"),
  51773. name: "Front (Nude)",
  51774. image: {
  51775. source: "./media/characters/buster/nude-front.svg",
  51776. extra: 1022/973,
  51777. bottom: 69/1091
  51778. }
  51779. },
  51780. nudeBack: {
  51781. height: math.unit(191, "cm"),
  51782. weight: math.unit(80, "kg"),
  51783. name: "Back (Nude)",
  51784. image: {
  51785. source: "./media/characters/buster/nude-back.svg",
  51786. extra: 1018/970,
  51787. bottom: 55/1073
  51788. }
  51789. },
  51790. dick: {
  51791. height: math.unit(2.59, "feet"),
  51792. name: "Dick",
  51793. image: {
  51794. source: "./media/characters/buster/dick.svg"
  51795. }
  51796. },
  51797. ass: {
  51798. height: math.unit(1.2, "feet"),
  51799. name: "Ass",
  51800. image: {
  51801. source: "./media/characters/buster/ass.svg"
  51802. }
  51803. },
  51804. },
  51805. [
  51806. {
  51807. name: "Normal",
  51808. height: math.unit(191, "cm"),
  51809. default: true
  51810. },
  51811. ]
  51812. ))
  51813. characterMakers.push(() => makeCharacter(
  51814. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51815. {
  51816. side: {
  51817. height: math.unit(8.1, "feet"),
  51818. weight: math.unit(3500, "lb"),
  51819. name: "Side",
  51820. image: {
  51821. source: "./media/characters/sonya/side.svg",
  51822. extra: 1730/1317,
  51823. bottom: 86/1816
  51824. }
  51825. },
  51826. },
  51827. [
  51828. {
  51829. name: "Normal",
  51830. height: math.unit(8.1, "feet"),
  51831. default: true
  51832. },
  51833. ]
  51834. ))
  51835. characterMakers.push(() => makeCharacter(
  51836. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51837. {
  51838. front: {
  51839. height: math.unit(6, "feet"),
  51840. weight: math.unit(150, "lb"),
  51841. name: "Front",
  51842. image: {
  51843. source: "./media/characters/cadence-andrysiak/front.svg",
  51844. extra: 1164/1121,
  51845. bottom: 60/1224
  51846. }
  51847. },
  51848. back: {
  51849. height: math.unit(6, "feet"),
  51850. weight: math.unit(150, "lb"),
  51851. name: "Back",
  51852. image: {
  51853. source: "./media/characters/cadence-andrysiak/back.svg",
  51854. extra: 1200/1165,
  51855. bottom: 9/1209
  51856. }
  51857. },
  51858. dressed: {
  51859. height: math.unit(6, "feet"),
  51860. weight: math.unit(150, "lb"),
  51861. name: "Dressed",
  51862. image: {
  51863. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51864. extra: 1164/1121,
  51865. bottom: 60/1224
  51866. }
  51867. },
  51868. },
  51869. [
  51870. {
  51871. name: "Micro",
  51872. height: math.unit(1, "mm")
  51873. },
  51874. {
  51875. name: "Normal",
  51876. height: math.unit(6, "feet"),
  51877. default: true
  51878. },
  51879. ]
  51880. ))
  51881. characterMakers.push(() => makeCharacter(
  51882. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51883. {
  51884. front: {
  51885. height: math.unit(60, "inches"),
  51886. weight: math.unit(16, "lb"),
  51887. preyCapacity: math.unit(80, "liters"),
  51888. name: "Front",
  51889. image: {
  51890. source: "./media/characters/penny-lynx/front.svg",
  51891. extra: 1959/1769,
  51892. bottom: 49/2008
  51893. }
  51894. },
  51895. },
  51896. [
  51897. {
  51898. name: "Nokia",
  51899. height: math.unit(2, "inches")
  51900. },
  51901. {
  51902. name: "Desktop",
  51903. height: math.unit(24, "inches")
  51904. },
  51905. {
  51906. name: "TV",
  51907. height: math.unit(60, "inches")
  51908. },
  51909. {
  51910. name: "Jumbotron",
  51911. height: math.unit(12, "feet")
  51912. },
  51913. {
  51914. name: "Billboard",
  51915. height: math.unit(48, "feet"),
  51916. default: true
  51917. },
  51918. {
  51919. name: "IMAX",
  51920. height: math.unit(96, "feet")
  51921. },
  51922. {
  51923. name: "SINGULARITY",
  51924. height: math.unit(864938, "miles")
  51925. },
  51926. ]
  51927. ))
  51928. characterMakers.push(() => makeCharacter(
  51929. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51930. {
  51931. front: {
  51932. height: math.unit(5 + 4/12, "feet"),
  51933. weight: math.unit(230, "lb"),
  51934. name: "Front",
  51935. image: {
  51936. source: "./media/characters/sukebe/front.svg",
  51937. extra: 2130/2038,
  51938. bottom: 90/2220
  51939. }
  51940. },
  51941. back: {
  51942. height: math.unit(3.48, "feet"),
  51943. weight: math.unit(230, "lb"),
  51944. name: "Back",
  51945. image: {
  51946. source: "./media/characters/sukebe/back.svg",
  51947. extra: 1670/1604,
  51948. bottom: 0/1670
  51949. }
  51950. },
  51951. },
  51952. [
  51953. {
  51954. name: "Normal",
  51955. height: math.unit(5 + 4/12, "feet"),
  51956. default: true
  51957. },
  51958. ]
  51959. ))
  51960. characterMakers.push(() => makeCharacter(
  51961. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51962. {
  51963. front: {
  51964. height: math.unit(6, "feet"),
  51965. name: "Front",
  51966. image: {
  51967. source: "./media/characters/nylla/front.svg",
  51968. extra: 1868/1699,
  51969. bottom: 97/1965
  51970. }
  51971. },
  51972. back: {
  51973. height: math.unit(6, "feet"),
  51974. name: "Back",
  51975. image: {
  51976. source: "./media/characters/nylla/back.svg",
  51977. extra: 1889/1712,
  51978. bottom: 93/1982
  51979. }
  51980. },
  51981. frontNsfw: {
  51982. height: math.unit(6, "feet"),
  51983. name: "Front (NSFW)",
  51984. image: {
  51985. source: "./media/characters/nylla/front-nsfw.svg",
  51986. extra: 1868/1699,
  51987. bottom: 97/1965
  51988. },
  51989. extraAttributes: {
  51990. "dickLength": {
  51991. name: "Dick Length",
  51992. power: 1,
  51993. type: "length",
  51994. base: math.unit(1.4, "feet")
  51995. },
  51996. "cumVolume": {
  51997. name: "Cum Volume",
  51998. power: 3,
  51999. type: "volume",
  52000. base: math.unit(100, "mL")
  52001. },
  52002. }
  52003. },
  52004. backNsfw: {
  52005. height: math.unit(6, "feet"),
  52006. name: "Back (NSFW)",
  52007. image: {
  52008. source: "./media/characters/nylla/back-nsfw.svg",
  52009. extra: 1889/1712,
  52010. bottom: 93/1982
  52011. }
  52012. },
  52013. maw: {
  52014. height: math.unit(2.10, "feet"),
  52015. name: "Maw",
  52016. image: {
  52017. source: "./media/characters/nylla/maw.svg"
  52018. }
  52019. },
  52020. paws: {
  52021. height: math.unit(2.06, "feet"),
  52022. name: "Paws",
  52023. image: {
  52024. source: "./media/characters/nylla/paws.svg"
  52025. }
  52026. },
  52027. muzzle: {
  52028. height: math.unit(0.61, "feet"),
  52029. name: "Muzzle",
  52030. image: {
  52031. source: "./media/characters/nylla/muzzle.svg"
  52032. }
  52033. },
  52034. sheath: {
  52035. height: math.unit(1.305, "feet"),
  52036. name: "Sheath",
  52037. image: {
  52038. source: "./media/characters/nylla/sheath.svg"
  52039. }
  52040. },
  52041. },
  52042. [
  52043. {
  52044. name: "Micro",
  52045. height: math.unit(7.5, "inches")
  52046. },
  52047. {
  52048. name: "Normal",
  52049. height: math.unit(7, "feet"),
  52050. default: true
  52051. },
  52052. {
  52053. name: "Macro",
  52054. height: math.unit(60, "feet")
  52055. },
  52056. {
  52057. name: "Mega",
  52058. height: math.unit(200, "feet")
  52059. },
  52060. ]
  52061. ))
  52062. characterMakers.push(() => makeCharacter(
  52063. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  52064. {
  52065. front: {
  52066. height: math.unit(10, "feet"),
  52067. weight: math.unit(2300, "lb"),
  52068. name: "Front",
  52069. image: {
  52070. source: "./media/characters/hunt3r/front.svg",
  52071. extra: 1909/1742,
  52072. bottom: 46/1955
  52073. }
  52074. },
  52075. },
  52076. [
  52077. {
  52078. name: "Normal",
  52079. height: math.unit(10, "feet"),
  52080. default: true
  52081. },
  52082. ]
  52083. ))
  52084. characterMakers.push(() => makeCharacter(
  52085. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  52086. {
  52087. dressed: {
  52088. height: math.unit(11, "feet"),
  52089. weight: math.unit(18500, "lb"),
  52090. preyCapacity: math.unit(9, "people"),
  52091. name: "Dressed",
  52092. image: {
  52093. source: "./media/characters/cylphis/dressed.svg",
  52094. extra: 1028/1003,
  52095. bottom: 75/1103
  52096. },
  52097. },
  52098. undressed: {
  52099. height: math.unit(11, "feet"),
  52100. weight: math.unit(18500, "lb"),
  52101. preyCapacity: math.unit(9, "people"),
  52102. name: "Undressed",
  52103. image: {
  52104. source: "./media/characters/cylphis/undressed.svg",
  52105. extra: 1028/1003,
  52106. bottom: 75/1103
  52107. }
  52108. },
  52109. full: {
  52110. height: math.unit(11, "feet"),
  52111. weight: math.unit(18500 + 150*9, "lb"),
  52112. preyCapacity: math.unit(9, "people"),
  52113. name: "Full",
  52114. image: {
  52115. source: "./media/characters/cylphis/full.svg",
  52116. extra: 1028/1003,
  52117. bottom: 75/1103
  52118. }
  52119. },
  52120. },
  52121. [
  52122. {
  52123. name: "Small",
  52124. height: math.unit(8, "feet")
  52125. },
  52126. {
  52127. name: "Normal",
  52128. height: math.unit(11, "feet"),
  52129. default: true
  52130. },
  52131. ]
  52132. ))
  52133. characterMakers.push(() => makeCharacter(
  52134. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52135. {
  52136. front: {
  52137. height: math.unit(2 + 7/12, "feet"),
  52138. name: "Front",
  52139. image: {
  52140. source: "./media/characters/orishan/front.svg",
  52141. extra: 1058/1023,
  52142. bottom: 23/1081
  52143. }
  52144. },
  52145. back: {
  52146. height: math.unit(2 + 7/12, "feet"),
  52147. name: "Back",
  52148. image: {
  52149. source: "./media/characters/orishan/back.svg",
  52150. extra: 1058/1023,
  52151. bottom: 23/1081
  52152. }
  52153. },
  52154. },
  52155. [
  52156. {
  52157. name: "Micro",
  52158. height: math.unit(2, "cm")
  52159. },
  52160. {
  52161. name: "Normal",
  52162. height: math.unit(2 + 7/12, "feet"),
  52163. default: true
  52164. },
  52165. ]
  52166. ))
  52167. characterMakers.push(() => makeCharacter(
  52168. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52169. {
  52170. front: {
  52171. height: math.unit(3, "meters"),
  52172. weight: math.unit(508, "kg"),
  52173. name: "Front",
  52174. image: {
  52175. source: "./media/characters/seranis/front.svg",
  52176. extra: 1478/1454,
  52177. bottom: 41/1519
  52178. }
  52179. },
  52180. },
  52181. [
  52182. {
  52183. name: "Normal",
  52184. height: math.unit(3, "meters"),
  52185. default: true
  52186. },
  52187. {
  52188. name: "Macro",
  52189. height: math.unit(108, "meters")
  52190. },
  52191. {
  52192. name: "Megamacro",
  52193. height: math.unit(1250, "meters")
  52194. },
  52195. ]
  52196. ))
  52197. characterMakers.push(() => makeCharacter(
  52198. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52199. {
  52200. undressed: {
  52201. height: math.unit(5 + 3/12, "feet"),
  52202. name: "Undressed",
  52203. image: {
  52204. source: "./media/characters/ankou/undressed.svg",
  52205. extra: 1301/1213,
  52206. bottom: 87/1388
  52207. }
  52208. },
  52209. dressed: {
  52210. height: math.unit(5 + 3/12, "feet"),
  52211. name: "Dressed",
  52212. image: {
  52213. source: "./media/characters/ankou/dressed.svg",
  52214. extra: 1301/1213,
  52215. bottom: 87/1388
  52216. }
  52217. },
  52218. head: {
  52219. height: math.unit(1.61, "feet"),
  52220. name: "Head",
  52221. image: {
  52222. source: "./media/characters/ankou/head.svg"
  52223. }
  52224. },
  52225. },
  52226. [
  52227. {
  52228. name: "Normal",
  52229. height: math.unit(5 + 3/12, "feet"),
  52230. default: true
  52231. },
  52232. ]
  52233. ))
  52234. characterMakers.push(() => makeCharacter(
  52235. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52236. {
  52237. side: {
  52238. height: math.unit(6 + 3/12, "feet"),
  52239. weight: math.unit(200, "kg"),
  52240. name: "Side",
  52241. image: {
  52242. source: "./media/characters/juniper-skunktaur/side.svg",
  52243. extra: 1574/1229,
  52244. bottom: 38/1612
  52245. }
  52246. },
  52247. front: {
  52248. height: math.unit(6 + 3/12, "feet"),
  52249. weight: math.unit(200, "kg"),
  52250. name: "Front",
  52251. image: {
  52252. source: "./media/characters/juniper-skunktaur/front.svg",
  52253. extra: 1337/1278,
  52254. bottom: 22/1359
  52255. }
  52256. },
  52257. back: {
  52258. height: math.unit(6 + 3/12, "feet"),
  52259. weight: math.unit(200, "kg"),
  52260. name: "Back",
  52261. image: {
  52262. source: "./media/characters/juniper-skunktaur/back.svg",
  52263. extra: 1618/1273,
  52264. bottom: 13/1631
  52265. }
  52266. },
  52267. top: {
  52268. height: math.unit(2.62, "feet"),
  52269. weight: math.unit(200, "kg"),
  52270. name: "Top",
  52271. image: {
  52272. source: "./media/characters/juniper-skunktaur/top.svg"
  52273. }
  52274. },
  52275. },
  52276. [
  52277. {
  52278. name: "Normal",
  52279. height: math.unit(6 + 3/12, "feet"),
  52280. default: true
  52281. },
  52282. ]
  52283. ))
  52284. characterMakers.push(() => makeCharacter(
  52285. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52286. {
  52287. front: {
  52288. height: math.unit(20.5, "feet"),
  52289. name: "Front",
  52290. image: {
  52291. source: "./media/characters/rei/front.svg",
  52292. extra: 1349/1195,
  52293. bottom: 31/1380
  52294. }
  52295. },
  52296. back: {
  52297. height: math.unit(20.5, "feet"),
  52298. name: "Back",
  52299. image: {
  52300. source: "./media/characters/rei/back.svg",
  52301. extra: 1358/1204,
  52302. bottom: 22/1380
  52303. }
  52304. },
  52305. pawsDigi: {
  52306. height: math.unit(3.45, "feet"),
  52307. name: "Paws (Digi)",
  52308. image: {
  52309. source: "./media/characters/rei/paws-digi.svg"
  52310. }
  52311. },
  52312. pawsPlanti: {
  52313. height: math.unit(3.45, "feet"),
  52314. name: "Paws (Planti)",
  52315. image: {
  52316. source: "./media/characters/rei/paws-planti.svg"
  52317. }
  52318. },
  52319. },
  52320. [
  52321. {
  52322. name: "Normal",
  52323. height: math.unit(20.5, "feet"),
  52324. default: true
  52325. },
  52326. ]
  52327. ))
  52328. characterMakers.push(() => makeCharacter(
  52329. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52330. {
  52331. front: {
  52332. height: math.unit(5 + 11/12, "feet"),
  52333. name: "Front",
  52334. image: {
  52335. source: "./media/characters/carina/front.svg",
  52336. extra: 1720/1449,
  52337. bottom: 14/1734
  52338. }
  52339. },
  52340. back: {
  52341. height: math.unit(5 + 11/12, "feet"),
  52342. name: "Back",
  52343. image: {
  52344. source: "./media/characters/carina/back.svg",
  52345. extra: 1493/1445,
  52346. bottom: 17/1510
  52347. }
  52348. },
  52349. paw: {
  52350. height: math.unit(0.92, "feet"),
  52351. name: "Paw",
  52352. image: {
  52353. source: "./media/characters/carina/paw.svg"
  52354. }
  52355. },
  52356. },
  52357. [
  52358. {
  52359. name: "Normal",
  52360. height: math.unit(5 + 11/12, "feet"),
  52361. default: true
  52362. },
  52363. ]
  52364. ))
  52365. characterMakers.push(() => makeCharacter(
  52366. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  52367. {
  52368. front: {
  52369. height: math.unit(4.88, "meters"),
  52370. name: "Front",
  52371. image: {
  52372. source: "./media/characters/maya/front.svg",
  52373. extra: 1222/1145,
  52374. bottom: 57/1279
  52375. }
  52376. },
  52377. },
  52378. [
  52379. {
  52380. name: "Normal",
  52381. height: math.unit(4.88, "meters"),
  52382. default: true
  52383. },
  52384. {
  52385. name: "Macro",
  52386. height: math.unit(38.1, "meters")
  52387. },
  52388. {
  52389. name: "Macro+",
  52390. height: math.unit(152.4, "meters")
  52391. },
  52392. {
  52393. name: "Macro++",
  52394. height: math.unit(16.09, "km")
  52395. },
  52396. {
  52397. name: "Mega-macro",
  52398. height: math.unit(700, "megameters")
  52399. },
  52400. ]
  52401. ))
  52402. characterMakers.push(() => makeCharacter(
  52403. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52404. {
  52405. front: {
  52406. height: math.unit(6 + 2/12, "feet"),
  52407. weight: math.unit(500, "lb"),
  52408. preyCapacity: math.unit(4, "people"),
  52409. name: "Front",
  52410. image: {
  52411. source: "./media/characters/yepir/front.svg"
  52412. }
  52413. },
  52414. side: {
  52415. height: math.unit(6 + 2/12, "feet"),
  52416. weight: math.unit(500, "lb"),
  52417. preyCapacity: math.unit(4, "people"),
  52418. name: "Side",
  52419. image: {
  52420. source: "./media/characters/yepir/side.svg"
  52421. }
  52422. },
  52423. paw: {
  52424. height: math.unit(1.05, "feet"),
  52425. name: "Paw",
  52426. image: {
  52427. source: "./media/characters/yepir/paw.svg"
  52428. }
  52429. },
  52430. },
  52431. [
  52432. {
  52433. name: "Normal",
  52434. height: math.unit(6 + 2/12, "feet"),
  52435. default: true
  52436. },
  52437. ]
  52438. ))
  52439. characterMakers.push(() => makeCharacter(
  52440. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52441. {
  52442. front: {
  52443. height: math.unit(5 + 4/12, "feet"),
  52444. name: "Front",
  52445. image: {
  52446. source: "./media/characters/russec/front.svg",
  52447. extra: 1926/1626,
  52448. bottom: 72/1998
  52449. }
  52450. },
  52451. back: {
  52452. height: math.unit(5 + 4/12, "feet"),
  52453. name: "Back",
  52454. image: {
  52455. source: "./media/characters/russec/back.svg",
  52456. extra: 1910/1591,
  52457. bottom: 48/1958
  52458. }
  52459. },
  52460. },
  52461. [
  52462. {
  52463. name: "Small",
  52464. height: math.unit(5 + 4/12, "feet")
  52465. },
  52466. {
  52467. name: "Normal",
  52468. height: math.unit(72, "feet"),
  52469. default: true
  52470. },
  52471. ]
  52472. ))
  52473. characterMakers.push(() => makeCharacter(
  52474. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52475. {
  52476. side: {
  52477. height: math.unit(12, "feet"),
  52478. name: "Side",
  52479. image: {
  52480. source: "./media/characters/cianus/side.svg",
  52481. extra: 808/526,
  52482. bottom: 61/869
  52483. }
  52484. },
  52485. },
  52486. [
  52487. {
  52488. name: "Normal",
  52489. height: math.unit(12, "feet"),
  52490. default: true
  52491. },
  52492. ]
  52493. ))
  52494. characterMakers.push(() => makeCharacter(
  52495. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52496. {
  52497. front: {
  52498. height: math.unit(9 + 6/12, "feet"),
  52499. weight: math.unit(300, "lb"),
  52500. name: "Front",
  52501. image: {
  52502. source: "./media/characters/ahab/front.svg",
  52503. extra: 1897/1868,
  52504. bottom: 121/2018
  52505. }
  52506. },
  52507. frontNsfw: {
  52508. height: math.unit(9 + 6/12, "feet"),
  52509. weight: math.unit(300, "lb"),
  52510. name: "Front-nsfw",
  52511. image: {
  52512. source: "./media/characters/ahab/front-nsfw.svg",
  52513. extra: 1897/1868,
  52514. bottom: 121/2018
  52515. }
  52516. },
  52517. },
  52518. [
  52519. {
  52520. name: "Normal",
  52521. height: math.unit(9 + 6/12, "feet")
  52522. },
  52523. {
  52524. name: "Macro",
  52525. height: math.unit(657, "feet"),
  52526. default: true
  52527. },
  52528. ]
  52529. ))
  52530. characterMakers.push(() => makeCharacter(
  52531. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52532. {
  52533. front: {
  52534. height: math.unit(2.69, "meters"),
  52535. weight: math.unit(132, "kg"),
  52536. name: "Front",
  52537. image: {
  52538. source: "./media/characters/aarkus/front.svg",
  52539. extra: 1400/1231,
  52540. bottom: 34/1434
  52541. }
  52542. },
  52543. back: {
  52544. height: math.unit(2.69, "meters"),
  52545. weight: math.unit(132, "kg"),
  52546. name: "Back",
  52547. image: {
  52548. source: "./media/characters/aarkus/back.svg",
  52549. extra: 1381/1218,
  52550. bottom: 30/1411
  52551. }
  52552. },
  52553. frontNsfw: {
  52554. height: math.unit(2.69, "meters"),
  52555. weight: math.unit(132, "kg"),
  52556. name: "Front (NSFW)",
  52557. image: {
  52558. source: "./media/characters/aarkus/front-nsfw.svg",
  52559. extra: 1400/1231,
  52560. bottom: 34/1434
  52561. }
  52562. },
  52563. foot: {
  52564. height: math.unit(1.45, "feet"),
  52565. name: "Foot",
  52566. image: {
  52567. source: "./media/characters/aarkus/foot.svg"
  52568. }
  52569. },
  52570. head: {
  52571. height: math.unit(2.85, "feet"),
  52572. name: "Head",
  52573. image: {
  52574. source: "./media/characters/aarkus/head.svg"
  52575. }
  52576. },
  52577. headAlt: {
  52578. height: math.unit(3.07, "feet"),
  52579. name: "Head (Alt)",
  52580. image: {
  52581. source: "./media/characters/aarkus/head-alt.svg"
  52582. }
  52583. },
  52584. mouth: {
  52585. height: math.unit(1.25, "feet"),
  52586. name: "Mouth",
  52587. image: {
  52588. source: "./media/characters/aarkus/mouth.svg"
  52589. }
  52590. },
  52591. dick: {
  52592. height: math.unit(1.77, "feet"),
  52593. name: "Dick",
  52594. image: {
  52595. source: "./media/characters/aarkus/dick.svg"
  52596. }
  52597. },
  52598. },
  52599. [
  52600. {
  52601. name: "Normal",
  52602. height: math.unit(2.69, "meters"),
  52603. default: true
  52604. },
  52605. {
  52606. name: "Macro",
  52607. height: math.unit(269, "meters")
  52608. },
  52609. {
  52610. name: "Macro+",
  52611. height: math.unit(672.5, "meters")
  52612. },
  52613. {
  52614. name: "Megamacro",
  52615. height: math.unit(2.017, "km")
  52616. },
  52617. ]
  52618. ))
  52619. characterMakers.push(() => makeCharacter(
  52620. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52621. {
  52622. front: {
  52623. height: math.unit(23.47, "cm"),
  52624. weight: math.unit(600, "grams"),
  52625. name: "Front",
  52626. image: {
  52627. source: "./media/characters/diode/front.svg",
  52628. extra: 1778/1396,
  52629. bottom: 95/1873
  52630. }
  52631. },
  52632. side: {
  52633. height: math.unit(23.47, "cm"),
  52634. weight: math.unit(600, "grams"),
  52635. name: "Side",
  52636. image: {
  52637. source: "./media/characters/diode/side.svg",
  52638. extra: 1831/1404,
  52639. bottom: 86/1917
  52640. }
  52641. },
  52642. wings: {
  52643. height: math.unit(0.683, "feet"),
  52644. name: "Wings",
  52645. image: {
  52646. source: "./media/characters/diode/wings.svg"
  52647. }
  52648. },
  52649. },
  52650. [
  52651. {
  52652. name: "Normal",
  52653. height: math.unit(23.47, "cm"),
  52654. default: true
  52655. },
  52656. ]
  52657. ))
  52658. characterMakers.push(() => makeCharacter(
  52659. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52660. {
  52661. front: {
  52662. height: math.unit(6 + 3/12, "feet"),
  52663. weight: math.unit(250, "lb"),
  52664. name: "Front",
  52665. image: {
  52666. source: "./media/characters/reika/front.svg",
  52667. extra: 1120/1078,
  52668. bottom: 86/1206
  52669. }
  52670. },
  52671. },
  52672. [
  52673. {
  52674. name: "Normal",
  52675. height: math.unit(6 + 3/12, "feet"),
  52676. default: true
  52677. },
  52678. ]
  52679. ))
  52680. characterMakers.push(() => makeCharacter(
  52681. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52682. {
  52683. front: {
  52684. height: math.unit(16 + 8/12, "feet"),
  52685. weight: math.unit(9000, "lb"),
  52686. name: "Front",
  52687. image: {
  52688. source: "./media/characters/lokuto-takama/front.svg",
  52689. extra: 1774/1632,
  52690. bottom: 147/1921
  52691. },
  52692. extraAttributes: {
  52693. "bustWidth": {
  52694. name: "Bust Width",
  52695. power: 1,
  52696. type: "length",
  52697. base: math.unit(2.4, "meters")
  52698. },
  52699. "breastWeight": {
  52700. name: "Breast Weight",
  52701. power: 3,
  52702. type: "mass",
  52703. base: math.unit(1000, "kg")
  52704. },
  52705. }
  52706. },
  52707. },
  52708. [
  52709. {
  52710. name: "Normal",
  52711. height: math.unit(16 + 8/12, "feet"),
  52712. default: true
  52713. },
  52714. ]
  52715. ))
  52716. characterMakers.push(() => makeCharacter(
  52717. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  52718. {
  52719. front: {
  52720. height: math.unit(10, "cm"),
  52721. weight: math.unit(850, "grams"),
  52722. name: "Front",
  52723. image: {
  52724. source: "./media/characters/owak-bone/front.svg",
  52725. extra: 1965/1801,
  52726. bottom: 31/1996
  52727. }
  52728. },
  52729. },
  52730. [
  52731. {
  52732. name: "Normal",
  52733. height: math.unit(10, "cm"),
  52734. default: true
  52735. },
  52736. ]
  52737. ))
  52738. characterMakers.push(() => makeCharacter(
  52739. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  52740. {
  52741. front: {
  52742. height: math.unit(2 + 6/12, "feet"),
  52743. weight: math.unit(9, "lb"),
  52744. name: "Front",
  52745. image: {
  52746. source: "./media/characters/muffin/front.svg",
  52747. extra: 1220/1195,
  52748. bottom: 84/1304
  52749. }
  52750. },
  52751. },
  52752. [
  52753. {
  52754. name: "Normal",
  52755. height: math.unit(2 + 6/12, "feet"),
  52756. default: true
  52757. },
  52758. ]
  52759. ))
  52760. characterMakers.push(() => makeCharacter(
  52761. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52762. {
  52763. front: {
  52764. height: math.unit(7, "feet"),
  52765. name: "Front",
  52766. image: {
  52767. source: "./media/characters/chimera/front.svg",
  52768. extra: 1752/1614,
  52769. bottom: 68/1820
  52770. }
  52771. },
  52772. },
  52773. [
  52774. {
  52775. name: "Normal",
  52776. height: math.unit(7, "feet")
  52777. },
  52778. {
  52779. name: "Gigamacro",
  52780. height: math.unit(2.9, "gigameters"),
  52781. default: true
  52782. },
  52783. {
  52784. name: "Universal",
  52785. height: math.unit(1.56e26, "yottameters")
  52786. },
  52787. ]
  52788. ))
  52789. characterMakers.push(() => makeCharacter(
  52790. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52791. {
  52792. front: {
  52793. height: math.unit(3, "feet"),
  52794. weight: math.unit(20, "lb"),
  52795. name: "Front",
  52796. image: {
  52797. source: "./media/characters/kit-fennec-fox/front.svg",
  52798. extra: 1027/932,
  52799. bottom: 16/1043
  52800. }
  52801. },
  52802. back: {
  52803. height: math.unit(3, "feet"),
  52804. weight: math.unit(20, "lb"),
  52805. name: "Back",
  52806. image: {
  52807. source: "./media/characters/kit-fennec-fox/back.svg",
  52808. extra: 1027/932,
  52809. bottom: 16/1043
  52810. }
  52811. },
  52812. },
  52813. [
  52814. {
  52815. name: "Normal",
  52816. height: math.unit(3, "feet"),
  52817. default: true
  52818. },
  52819. ]
  52820. ))
  52821. characterMakers.push(() => makeCharacter(
  52822. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52823. {
  52824. front: {
  52825. height: math.unit(167, "cm"),
  52826. name: "Front",
  52827. image: {
  52828. source: "./media/characters/blue-otter/front.svg",
  52829. extra: 1951/1920,
  52830. bottom: 31/1982
  52831. }
  52832. },
  52833. },
  52834. [
  52835. {
  52836. name: "Otter-Sized",
  52837. height: math.unit(100, "cm")
  52838. },
  52839. {
  52840. name: "Normal",
  52841. height: math.unit(167, "cm"),
  52842. default: true
  52843. },
  52844. ]
  52845. ))
  52846. characterMakers.push(() => makeCharacter(
  52847. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52848. {
  52849. front: {
  52850. height: math.unit(4 + 4/12, "feet"),
  52851. name: "Front",
  52852. image: {
  52853. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52854. extra: 1072/1067,
  52855. bottom: 117/1189
  52856. }
  52857. },
  52858. back: {
  52859. height: math.unit(4 + 4/12, "feet"),
  52860. name: "Back",
  52861. image: {
  52862. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52863. extra: 1135/1129,
  52864. bottom: 57/1192
  52865. }
  52866. },
  52867. head: {
  52868. height: math.unit(1.77, "feet"),
  52869. name: "Head",
  52870. image: {
  52871. source: "./media/characters/maverick-leopard-gecko/head.svg"
  52872. }
  52873. },
  52874. },
  52875. [
  52876. {
  52877. name: "Normal",
  52878. height: math.unit(4 + 4/12, "feet"),
  52879. default: true
  52880. },
  52881. ]
  52882. ))
  52883. characterMakers.push(() => makeCharacter(
  52884. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  52885. {
  52886. front: {
  52887. height: math.unit(2, "inches"),
  52888. name: "Front",
  52889. image: {
  52890. source: "./media/characters/carley-hartford/front.svg",
  52891. extra: 1035/988,
  52892. bottom: 23/1058
  52893. }
  52894. },
  52895. back: {
  52896. height: math.unit(2, "inches"),
  52897. name: "Back",
  52898. image: {
  52899. source: "./media/characters/carley-hartford/back.svg",
  52900. extra: 1035/988,
  52901. bottom: 23/1058
  52902. }
  52903. },
  52904. dressed: {
  52905. height: math.unit(2, "inches"),
  52906. name: "Dressed",
  52907. image: {
  52908. source: "./media/characters/carley-hartford/dressed.svg",
  52909. extra: 651/620,
  52910. bottom: 0/651
  52911. }
  52912. },
  52913. },
  52914. [
  52915. {
  52916. name: "Micro",
  52917. height: math.unit(2, "inches"),
  52918. default: true
  52919. },
  52920. {
  52921. name: "Macro",
  52922. height: math.unit(6 + 3/12, "feet")
  52923. },
  52924. ]
  52925. ))
  52926. characterMakers.push(() => makeCharacter(
  52927. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  52928. {
  52929. front: {
  52930. height: math.unit(2 + 3/12, "feet"),
  52931. weight: math.unit(15 + 7/16, "lb"),
  52932. name: "Front",
  52933. image: {
  52934. source: "./media/characters/duke/front.svg",
  52935. extra: 910/815,
  52936. bottom: 30/940
  52937. }
  52938. },
  52939. },
  52940. [
  52941. {
  52942. name: "Normal",
  52943. height: math.unit(2 + 3/12, "feet"),
  52944. default: true
  52945. },
  52946. ]
  52947. ))
  52948. characterMakers.push(() => makeCharacter(
  52949. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  52950. {
  52951. front: {
  52952. height: math.unit(5 + 4/12, "feet"),
  52953. weight: math.unit(156, "lb"),
  52954. name: "Front",
  52955. image: {
  52956. source: "./media/characters/dein/front.svg",
  52957. extra: 855/815,
  52958. bottom: 48/903
  52959. }
  52960. },
  52961. side: {
  52962. height: math.unit(5 + 4/12, "feet"),
  52963. weight: math.unit(156, "lb"),
  52964. name: "side",
  52965. image: {
  52966. source: "./media/characters/dein/side.svg",
  52967. extra: 846/803,
  52968. bottom: 25/871
  52969. }
  52970. },
  52971. maw: {
  52972. height: math.unit(1.45, "feet"),
  52973. name: "Maw",
  52974. image: {
  52975. source: "./media/characters/dein/maw.svg"
  52976. }
  52977. },
  52978. },
  52979. [
  52980. {
  52981. name: "Ferret Sized",
  52982. height: math.unit(2 + 5/12, "feet")
  52983. },
  52984. {
  52985. name: "Normal",
  52986. height: math.unit(5 + 4/12, "feet"),
  52987. default: true
  52988. },
  52989. ]
  52990. ))
  52991. characterMakers.push(() => makeCharacter(
  52992. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  52993. {
  52994. front: {
  52995. height: math.unit(84 + 8/12, "feet"),
  52996. weight: math.unit(942180, "lb"),
  52997. name: "Front",
  52998. image: {
  52999. source: "./media/characters/daurine-arima/front.svg",
  53000. extra: 1989/1782,
  53001. bottom: 37/2026
  53002. }
  53003. },
  53004. side: {
  53005. height: math.unit(84 + 8/12, "feet"),
  53006. weight: math.unit(942180, "lb"),
  53007. name: "Side",
  53008. image: {
  53009. source: "./media/characters/daurine-arima/side.svg",
  53010. extra: 1997/1790,
  53011. bottom: 21/2018
  53012. }
  53013. },
  53014. back: {
  53015. height: math.unit(84 + 8/12, "feet"),
  53016. weight: math.unit(942180, "lb"),
  53017. name: "Back",
  53018. image: {
  53019. source: "./media/characters/daurine-arima/back.svg",
  53020. extra: 1992/1800,
  53021. bottom: 12/2004
  53022. }
  53023. },
  53024. head: {
  53025. height: math.unit(15.5, "feet"),
  53026. name: "Head",
  53027. image: {
  53028. source: "./media/characters/daurine-arima/head.svg"
  53029. }
  53030. },
  53031. headAlt: {
  53032. height: math.unit(19.19, "feet"),
  53033. name: "Head (Alt)",
  53034. image: {
  53035. source: "./media/characters/daurine-arima/head-alt.svg"
  53036. }
  53037. },
  53038. },
  53039. [
  53040. {
  53041. name: "Minimum height",
  53042. height: math.unit(8 + 10/12, "feet")
  53043. },
  53044. {
  53045. name: "Comfort height",
  53046. height: math.unit(19 + 6 /12, "feet")
  53047. },
  53048. {
  53049. name: "\"Normal\" height",
  53050. height: math.unit(28 + 10/12, "feet")
  53051. },
  53052. {
  53053. name: "Base height",
  53054. height: math.unit(84 + 8/12, "feet"),
  53055. default: true
  53056. },
  53057. {
  53058. name: "Mini-macro",
  53059. height: math.unit(2360, "feet")
  53060. },
  53061. {
  53062. name: "Macro",
  53063. height: math.unit(10, "miles")
  53064. },
  53065. {
  53066. name: "Goddess",
  53067. height: math.unit(9.99e40, "yottameters")
  53068. },
  53069. ]
  53070. ))
  53071. characterMakers.push(() => makeCharacter(
  53072. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  53073. {
  53074. front: {
  53075. height: math.unit(2.3, "meters"),
  53076. name: "Front",
  53077. image: {
  53078. source: "./media/characters/cilenomon/front.svg",
  53079. extra: 1963/1778,
  53080. bottom: 54/2017
  53081. }
  53082. },
  53083. },
  53084. [
  53085. {
  53086. name: "Normal",
  53087. height: math.unit(2.3, "meters"),
  53088. default: true
  53089. },
  53090. {
  53091. name: "Big",
  53092. height: math.unit(5, "meters")
  53093. },
  53094. {
  53095. name: "Macro",
  53096. height: math.unit(30, "meters")
  53097. },
  53098. {
  53099. name: "True",
  53100. height: math.unit(1, "universe")
  53101. },
  53102. ]
  53103. ))
  53104. characterMakers.push(() => makeCharacter(
  53105. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  53106. {
  53107. front: {
  53108. height: math.unit(5, "feet"),
  53109. name: "Front",
  53110. image: {
  53111. source: "./media/characters/sen-mink/front.svg",
  53112. extra: 1727/1675,
  53113. bottom: 35/1762
  53114. }
  53115. },
  53116. },
  53117. [
  53118. {
  53119. name: "Normal",
  53120. height: math.unit(5, "feet"),
  53121. default: true
  53122. },
  53123. ]
  53124. ))
  53125. characterMakers.push(() => makeCharacter(
  53126. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  53127. {
  53128. front: {
  53129. height: math.unit(5.42999, "feet"),
  53130. weight: math.unit(100, "lb"),
  53131. name: "Front",
  53132. image: {
  53133. source: "./media/characters/ophois/front.svg",
  53134. extra: 1429/1286,
  53135. bottom: 60/1489
  53136. }
  53137. },
  53138. },
  53139. [
  53140. {
  53141. name: "Normal",
  53142. height: math.unit(5.42999, "feet"),
  53143. default: true
  53144. },
  53145. ]
  53146. ))
  53147. characterMakers.push(() => makeCharacter(
  53148. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53149. {
  53150. front: {
  53151. height: math.unit(2, "meters"),
  53152. name: "Front",
  53153. image: {
  53154. source: "./media/characters/riley/front.svg",
  53155. extra: 1779/1754,
  53156. bottom: 139/1918
  53157. }
  53158. },
  53159. },
  53160. [
  53161. {
  53162. name: "Normal",
  53163. height: math.unit(2, "meters"),
  53164. default: true
  53165. },
  53166. ]
  53167. ))
  53168. characterMakers.push(() => makeCharacter(
  53169. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53170. {
  53171. front: {
  53172. height: math.unit(6 + 2/12, "feet"),
  53173. weight: math.unit(195, "lb"),
  53174. preyCapacity: math.unit(6, "people"),
  53175. name: "Front",
  53176. image: {
  53177. source: "./media/characters/shuken-flash/front.svg",
  53178. extra: 1905/1739,
  53179. bottom: 65/1970
  53180. }
  53181. },
  53182. back: {
  53183. height: math.unit(6 + 2/12, "feet"),
  53184. weight: math.unit(195, "lb"),
  53185. preyCapacity: math.unit(6, "people"),
  53186. name: "Back",
  53187. image: {
  53188. source: "./media/characters/shuken-flash/back.svg",
  53189. extra: 1912/1751,
  53190. bottom: 13/1925
  53191. }
  53192. },
  53193. },
  53194. [
  53195. {
  53196. name: "Normal",
  53197. height: math.unit(6 + 2/12, "feet"),
  53198. default: true
  53199. },
  53200. ]
  53201. ))
  53202. characterMakers.push(() => makeCharacter(
  53203. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53204. {
  53205. front: {
  53206. height: math.unit(5 + 9/12, "feet"),
  53207. weight: math.unit(150, "lb"),
  53208. name: "Front",
  53209. image: {
  53210. source: "./media/characters/plat/front.svg",
  53211. extra: 1816/1703,
  53212. bottom: 43/1859
  53213. }
  53214. },
  53215. side: {
  53216. height: math.unit(5 + 9/12, "feet"),
  53217. weight: math.unit(300, "lb"),
  53218. name: "Side",
  53219. image: {
  53220. source: "./media/characters/plat/side.svg",
  53221. extra: 1824/1699,
  53222. bottom: 18/1842
  53223. }
  53224. },
  53225. },
  53226. [
  53227. {
  53228. name: "Normal",
  53229. height: math.unit(5 + 9/12, "feet"),
  53230. default: true
  53231. },
  53232. ]
  53233. ))
  53234. characterMakers.push(() => makeCharacter(
  53235. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53236. {
  53237. front: {
  53238. height: math.unit(9, "feet"),
  53239. weight: math.unit(1800, "lb"),
  53240. name: "Front",
  53241. image: {
  53242. source: "./media/characters/elaine/front.svg",
  53243. extra: 1833/1354,
  53244. bottom: 25/1858
  53245. }
  53246. },
  53247. back: {
  53248. height: math.unit(8.8, "feet"),
  53249. weight: math.unit(1800, "lb"),
  53250. name: "Back",
  53251. image: {
  53252. source: "./media/characters/elaine/back.svg",
  53253. extra: 1641/1233,
  53254. bottom: 53/1694
  53255. }
  53256. },
  53257. },
  53258. [
  53259. {
  53260. name: "Normal",
  53261. height: math.unit(9, "feet"),
  53262. default: true
  53263. },
  53264. ]
  53265. ))
  53266. characterMakers.push(() => makeCharacter(
  53267. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53268. {
  53269. front: {
  53270. height: math.unit(17 + 9/12, "feet"),
  53271. weight: math.unit(8000, "lb"),
  53272. name: "Front",
  53273. image: {
  53274. source: "./media/characters/vera-raven/front.svg",
  53275. extra: 1457/1412,
  53276. bottom: 121/1578
  53277. }
  53278. },
  53279. side: {
  53280. height: math.unit(17 + 9/12, "feet"),
  53281. weight: math.unit(8000, "lb"),
  53282. name: "Side",
  53283. image: {
  53284. source: "./media/characters/vera-raven/side.svg",
  53285. extra: 1510/1464,
  53286. bottom: 54/1564
  53287. }
  53288. },
  53289. },
  53290. [
  53291. {
  53292. name: "Normal",
  53293. height: math.unit(17 + 9/12, "feet"),
  53294. default: true
  53295. },
  53296. ]
  53297. ))
  53298. characterMakers.push(() => makeCharacter(
  53299. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53300. {
  53301. dressed: {
  53302. height: math.unit(6 + 9/12, "feet"),
  53303. name: "Dressed",
  53304. image: {
  53305. source: "./media/characters/nakisha/dressed.svg",
  53306. extra: 1909/1757,
  53307. bottom: 48/1957
  53308. }
  53309. },
  53310. nude: {
  53311. height: math.unit(6 + 9/12, "feet"),
  53312. name: "Nude",
  53313. image: {
  53314. source: "./media/characters/nakisha/nude.svg",
  53315. extra: 1917/1765,
  53316. bottom: 34/1951
  53317. }
  53318. },
  53319. },
  53320. [
  53321. {
  53322. name: "Normal",
  53323. height: math.unit(6 + 9/12, "feet"),
  53324. default: true
  53325. },
  53326. ]
  53327. ))
  53328. characterMakers.push(() => makeCharacter(
  53329. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53330. {
  53331. front: {
  53332. height: math.unit(87, "meters"),
  53333. name: "Front",
  53334. image: {
  53335. source: "./media/characters/serafin/front.svg",
  53336. extra: 1919/1776,
  53337. bottom: 65/1984
  53338. }
  53339. },
  53340. },
  53341. [
  53342. {
  53343. name: "Normal",
  53344. height: math.unit(87, "meters"),
  53345. default: true
  53346. },
  53347. ]
  53348. ))
  53349. characterMakers.push(() => makeCharacter(
  53350. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53351. {
  53352. front: {
  53353. height: math.unit(6, "feet"),
  53354. weight: math.unit(200, "lb"),
  53355. name: "Front",
  53356. image: {
  53357. source: "./media/characters/poptart/front.svg",
  53358. extra: 615/583,
  53359. bottom: 23/638
  53360. }
  53361. },
  53362. back: {
  53363. height: math.unit(6, "feet"),
  53364. weight: math.unit(200, "lb"),
  53365. name: "Back",
  53366. image: {
  53367. source: "./media/characters/poptart/back.svg",
  53368. extra: 617/584,
  53369. bottom: 22/639
  53370. }
  53371. },
  53372. frontNsfw: {
  53373. height: math.unit(6, "feet"),
  53374. weight: math.unit(200, "lb"),
  53375. name: "Front (NSFW)",
  53376. image: {
  53377. source: "./media/characters/poptart/front-nsfw.svg",
  53378. extra: 615/583,
  53379. bottom: 23/638
  53380. }
  53381. },
  53382. backNsfw: {
  53383. height: math.unit(6, "feet"),
  53384. weight: math.unit(200, "lb"),
  53385. name: "Back (NSFW)",
  53386. image: {
  53387. source: "./media/characters/poptart/back-nsfw.svg",
  53388. extra: 617/584,
  53389. bottom: 22/639
  53390. }
  53391. },
  53392. hand: {
  53393. height: math.unit(1.14, "feet"),
  53394. name: "Hand",
  53395. image: {
  53396. source: "./media/characters/poptart/hand.svg"
  53397. }
  53398. },
  53399. foot: {
  53400. height: math.unit(1.5, "feet"),
  53401. name: "Foot",
  53402. image: {
  53403. source: "./media/characters/poptart/foot.svg"
  53404. }
  53405. },
  53406. },
  53407. [
  53408. {
  53409. name: "Normal",
  53410. height: math.unit(6, "feet"),
  53411. default: true
  53412. },
  53413. {
  53414. name: "Grande",
  53415. height: math.unit(350, "feet")
  53416. },
  53417. {
  53418. name: "Massif",
  53419. height: math.unit(967, "feet")
  53420. },
  53421. ]
  53422. ))
  53423. characterMakers.push(() => makeCharacter(
  53424. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53425. {
  53426. hyenaSide: {
  53427. height: math.unit(120, "cm"),
  53428. weight: math.unit(120, "lb"),
  53429. name: "Side",
  53430. image: {
  53431. source: "./media/characters/trance/hyena-side.svg",
  53432. extra: 998/904,
  53433. bottom: 76/1074
  53434. }
  53435. },
  53436. },
  53437. [
  53438. {
  53439. name: "Normal",
  53440. height: math.unit(120, "cm"),
  53441. default: true
  53442. },
  53443. {
  53444. name: "Dire",
  53445. height: math.unit(230, "cm")
  53446. },
  53447. {
  53448. name: "Macro",
  53449. height: math.unit(37, "feet")
  53450. },
  53451. ]
  53452. ))
  53453. characterMakers.push(() => makeCharacter(
  53454. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53455. {
  53456. front: {
  53457. height: math.unit(6 + 3/12, "feet"),
  53458. name: "Front",
  53459. image: {
  53460. source: "./media/characters/michael-berretta/front.svg",
  53461. extra: 515/494,
  53462. bottom: 20/535
  53463. }
  53464. },
  53465. back: {
  53466. height: math.unit(6 + 3/12, "feet"),
  53467. name: "Back",
  53468. image: {
  53469. source: "./media/characters/michael-berretta/back.svg",
  53470. extra: 520/497,
  53471. bottom: 21/541
  53472. }
  53473. },
  53474. frontNsfw: {
  53475. height: math.unit(6 + 3/12, "feet"),
  53476. name: "Front (NSFW)",
  53477. image: {
  53478. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53479. extra: 515/494,
  53480. bottom: 20/535
  53481. }
  53482. },
  53483. dick: {
  53484. height: math.unit(1, "feet"),
  53485. name: "Dick",
  53486. image: {
  53487. source: "./media/characters/michael-berretta/dick.svg"
  53488. }
  53489. },
  53490. },
  53491. [
  53492. {
  53493. name: "Normal",
  53494. height: math.unit(6 + 3/12, "feet"),
  53495. default: true
  53496. },
  53497. {
  53498. name: "Big",
  53499. height: math.unit(12, "feet")
  53500. },
  53501. {
  53502. name: "Macro",
  53503. height: math.unit(187.5, "feet")
  53504. },
  53505. ]
  53506. ))
  53507. characterMakers.push(() => makeCharacter(
  53508. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53509. {
  53510. front: {
  53511. height: math.unit(9 + 9/12, "feet"),
  53512. weight: math.unit(1244, "lb"),
  53513. name: "Front",
  53514. image: {
  53515. source: "./media/characters/stella-edgecomb/front.svg",
  53516. extra: 1835/1706,
  53517. bottom: 49/1884
  53518. }
  53519. },
  53520. pen: {
  53521. height: math.unit(0.95, "feet"),
  53522. name: "Pen",
  53523. image: {
  53524. source: "./media/characters/stella-edgecomb/pen.svg"
  53525. }
  53526. },
  53527. },
  53528. [
  53529. {
  53530. name: "Cozy Bear",
  53531. height: math.unit(0.5, "inches")
  53532. },
  53533. {
  53534. name: "Normal",
  53535. height: math.unit(9 + 9/12, "feet"),
  53536. default: true
  53537. },
  53538. {
  53539. name: "Giga Bear",
  53540. height: math.unit(1, "mile")
  53541. },
  53542. {
  53543. name: "Great Bear",
  53544. height: math.unit(53, "miles")
  53545. },
  53546. {
  53547. name: "Goddess Bear",
  53548. height: math.unit(40000, "miles")
  53549. },
  53550. {
  53551. name: "Sun Bear",
  53552. height: math.unit(900000, "miles")
  53553. },
  53554. ]
  53555. ))
  53556. characterMakers.push(() => makeCharacter(
  53557. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53558. {
  53559. anthroFront: {
  53560. height: math.unit(556, "cm"),
  53561. weight: math.unit(2650, "kg"),
  53562. preyCapacity: math.unit(3, "people"),
  53563. name: "Front",
  53564. image: {
  53565. source: "./media/characters/ash´iika/front.svg",
  53566. extra: 710/673,
  53567. bottom: 15/725
  53568. },
  53569. form: "anthro",
  53570. default: true
  53571. },
  53572. anthroSide: {
  53573. height: math.unit(556, "cm"),
  53574. weight: math.unit(2650, "kg"),
  53575. preyCapacity: math.unit(3, "people"),
  53576. name: "Side",
  53577. image: {
  53578. source: "./media/characters/ash´iika/side.svg",
  53579. extra: 696/676,
  53580. bottom: 13/709
  53581. },
  53582. form: "anthro"
  53583. },
  53584. anthroDressed: {
  53585. height: math.unit(556, "cm"),
  53586. weight: math.unit(2650, "kg"),
  53587. preyCapacity: math.unit(3, "people"),
  53588. name: "Dressed",
  53589. image: {
  53590. source: "./media/characters/ash´iika/dressed.svg",
  53591. extra: 710/673,
  53592. bottom: 15/725
  53593. },
  53594. form: "anthro"
  53595. },
  53596. anthroHead: {
  53597. height: math.unit(3.5, "feet"),
  53598. name: "Head",
  53599. image: {
  53600. source: "./media/characters/ash´iika/head.svg",
  53601. extra: 348/291,
  53602. bottom: 45/393
  53603. },
  53604. form: "anthro"
  53605. },
  53606. feralSide: {
  53607. height: math.unit(870, "cm"),
  53608. weight: math.unit(17500, "kg"),
  53609. preyCapacity: math.unit(15, "people"),
  53610. name: "Side",
  53611. image: {
  53612. source: "./media/characters/ash´iika/feral.svg",
  53613. extra: 595/199,
  53614. bottom: 7/602
  53615. },
  53616. form: "feral",
  53617. default: true,
  53618. },
  53619. },
  53620. [
  53621. {
  53622. name: "Normal",
  53623. height: math.unit(556, "cm"),
  53624. default: true,
  53625. form: "anthro"
  53626. },
  53627. {
  53628. name: "Macro",
  53629. height: math.unit(88, "meters"),
  53630. form: "anthro"
  53631. },
  53632. {
  53633. name: "Normal",
  53634. height: math.unit(870, "cm"),
  53635. default: true,
  53636. form: "feral"
  53637. },
  53638. {
  53639. name: "Large",
  53640. height: math.unit(25, "meters"),
  53641. form: "feral"
  53642. },
  53643. ],
  53644. {
  53645. "anthro": {
  53646. name: "Anthro",
  53647. default: true
  53648. },
  53649. "feral": {
  53650. name: "Feral",
  53651. },
  53652. }
  53653. ))
  53654. characterMakers.push(() => makeCharacter(
  53655. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53656. {
  53657. front: {
  53658. height: math.unit(10, "feet"),
  53659. weight: math.unit(800, "lb"),
  53660. name: "Front",
  53661. image: {
  53662. source: "./media/characters/yen/front.svg",
  53663. extra: 443/411,
  53664. bottom: 6/449
  53665. }
  53666. },
  53667. sleeping: {
  53668. height: math.unit(10, "feet"),
  53669. weight: math.unit(800, "lb"),
  53670. name: "Sleeping",
  53671. image: {
  53672. source: "./media/characters/yen/sleeping.svg",
  53673. extra: 470/422,
  53674. bottom: 0/470
  53675. }
  53676. },
  53677. head: {
  53678. height: math.unit(2.2, "feet"),
  53679. name: "Head",
  53680. image: {
  53681. source: "./media/characters/yen/head.svg"
  53682. }
  53683. },
  53684. headAlt: {
  53685. height: math.unit(2.1, "feet"),
  53686. name: "Head (Alt)",
  53687. image: {
  53688. source: "./media/characters/yen/head-alt.svg"
  53689. }
  53690. },
  53691. },
  53692. [
  53693. {
  53694. name: "Normal",
  53695. height: math.unit(10, "feet"),
  53696. default: true
  53697. },
  53698. ]
  53699. ))
  53700. characterMakers.push(() => makeCharacter(
  53701. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  53702. {
  53703. front: {
  53704. height: math.unit(12, "feet"),
  53705. name: "Front",
  53706. image: {
  53707. source: "./media/characters/citra/front.svg",
  53708. extra: 1950/1710,
  53709. bottom: 47/1997
  53710. }
  53711. },
  53712. },
  53713. [
  53714. {
  53715. name: "Normal",
  53716. height: math.unit(12, "feet"),
  53717. default: true
  53718. },
  53719. ]
  53720. ))
  53721. characterMakers.push(() => makeCharacter(
  53722. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  53723. {
  53724. side: {
  53725. height: math.unit(7 + 10/12, "feet"),
  53726. name: "Side",
  53727. image: {
  53728. source: "./media/characters/sholstim/side.svg",
  53729. extra: 786/682,
  53730. bottom: 40/826
  53731. }
  53732. },
  53733. },
  53734. [
  53735. {
  53736. name: "Normal",
  53737. height: math.unit(7 + 10/12, "feet"),
  53738. default: true
  53739. },
  53740. ]
  53741. ))
  53742. characterMakers.push(() => makeCharacter(
  53743. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  53744. {
  53745. front: {
  53746. height: math.unit(3.10, "meters"),
  53747. name: "Front",
  53748. image: {
  53749. source: "./media/characters/aggyn/front.svg",
  53750. extra: 1188/963,
  53751. bottom: 24/1212
  53752. }
  53753. },
  53754. },
  53755. [
  53756. {
  53757. name: "Normal",
  53758. height: math.unit(3.10, "meters"),
  53759. default: true
  53760. },
  53761. ]
  53762. ))
  53763. characterMakers.push(() => makeCharacter(
  53764. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  53765. {
  53766. front: {
  53767. height: math.unit(7 + 5/12, "feet"),
  53768. weight: math.unit(687, "lb"),
  53769. name: "Front",
  53770. image: {
  53771. source: "./media/characters/alsandair-hergenroether/front.svg",
  53772. extra: 1251/1186,
  53773. bottom: 75/1326
  53774. }
  53775. },
  53776. back: {
  53777. height: math.unit(7 + 5/12, "feet"),
  53778. weight: math.unit(687, "lb"),
  53779. name: "Back",
  53780. image: {
  53781. source: "./media/characters/alsandair-hergenroether/back.svg",
  53782. extra: 1290/1229,
  53783. bottom: 17/1307
  53784. }
  53785. },
  53786. },
  53787. [
  53788. {
  53789. name: "Max Compression",
  53790. height: math.unit(7 + 5/12, "feet"),
  53791. default: true
  53792. },
  53793. {
  53794. name: "\"Normal\"",
  53795. height: math.unit(2, "universes")
  53796. },
  53797. ]
  53798. ))
  53799. characterMakers.push(() => makeCharacter(
  53800. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  53801. {
  53802. front: {
  53803. height: math.unit(4 + 1/12, "feet"),
  53804. weight: math.unit(92, "lb"),
  53805. name: "Front",
  53806. image: {
  53807. source: "./media/characters/ie/front.svg",
  53808. extra: 1585/1352,
  53809. bottom: 91/1676
  53810. }
  53811. },
  53812. },
  53813. [
  53814. {
  53815. name: "Normal",
  53816. height: math.unit(4 + 1/12, "feet"),
  53817. default: true
  53818. },
  53819. ]
  53820. ))
  53821. characterMakers.push(() => makeCharacter(
  53822. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  53823. {
  53824. anthro: {
  53825. height: math.unit(6, "feet"),
  53826. weight: math.unit(150, "lb"),
  53827. name: "Front",
  53828. image: {
  53829. source: "./media/characters/willow/anthro.svg",
  53830. extra: 1073/986,
  53831. bottom: 34/1107
  53832. },
  53833. form: "anthro",
  53834. default: true
  53835. },
  53836. taur: {
  53837. height: math.unit(6, "feet"),
  53838. weight: math.unit(150, "lb"),
  53839. name: "Side",
  53840. image: {
  53841. source: "./media/characters/willow/taur.svg",
  53842. extra: 647/512,
  53843. bottom: 136/783
  53844. },
  53845. form: "taur",
  53846. default: true
  53847. },
  53848. },
  53849. [
  53850. {
  53851. name: "Humanoid",
  53852. height: math.unit(2.7, "meters"),
  53853. form: "anthro"
  53854. },
  53855. {
  53856. name: "Normal",
  53857. height: math.unit(9, "meters"),
  53858. form: "anthro",
  53859. default: true
  53860. },
  53861. {
  53862. name: "Humanoid",
  53863. height: math.unit(2.1, "meters"),
  53864. form: "taur"
  53865. },
  53866. {
  53867. name: "Normal",
  53868. height: math.unit(7, "meters"),
  53869. form: "taur",
  53870. default: true
  53871. },
  53872. ],
  53873. {
  53874. "anthro": {
  53875. name: "Anthro",
  53876. default: true
  53877. },
  53878. "taur": {
  53879. name: "Taur",
  53880. },
  53881. }
  53882. ))
  53883. characterMakers.push(() => makeCharacter(
  53884. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  53885. {
  53886. front: {
  53887. height: math.unit(2 + 5/12, "feet"),
  53888. name: "Front",
  53889. image: {
  53890. source: "./media/characters/kyan/front.svg",
  53891. extra: 460/334,
  53892. bottom: 23/483
  53893. },
  53894. extraAttributes: {
  53895. "toeLength": {
  53896. name: "Toe Length",
  53897. power: 1,
  53898. type: "length",
  53899. base: math.unit(7, "cm")
  53900. },
  53901. "toeclawLength": {
  53902. name: "Toeclaw Length",
  53903. power: 1,
  53904. type: "length",
  53905. base: math.unit(4.7, "cm")
  53906. },
  53907. "earHeight": {
  53908. name: "Ear Height",
  53909. power: 1,
  53910. type: "length",
  53911. base: math.unit(14.1, "cm")
  53912. },
  53913. }
  53914. },
  53915. paws: {
  53916. height: math.unit(0.45, "feet"),
  53917. name: "Paws",
  53918. image: {
  53919. source: "./media/characters/kyan/paws.svg",
  53920. extra: 581/581,
  53921. bottom: 114/695
  53922. }
  53923. },
  53924. },
  53925. [
  53926. {
  53927. name: "Normal",
  53928. height: math.unit(2 + 5/12, "feet"),
  53929. default: true
  53930. },
  53931. ]
  53932. ))
  53933. characterMakers.push(() => makeCharacter(
  53934. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  53935. {
  53936. front: {
  53937. height: math.unit(2 + 2/3, "feet"),
  53938. name: "Front",
  53939. image: {
  53940. source: "./media/characters/xazzon/front.svg",
  53941. extra: 1109/984,
  53942. bottom: 42/1151
  53943. }
  53944. },
  53945. back: {
  53946. height: math.unit(2 + 2/3, "feet"),
  53947. name: "Back",
  53948. image: {
  53949. source: "./media/characters/xazzon/back.svg",
  53950. extra: 1095/971,
  53951. bottom: 23/1118
  53952. }
  53953. },
  53954. },
  53955. [
  53956. {
  53957. name: "Normal",
  53958. height: math.unit(2 + 2/3, "feet"),
  53959. default: true
  53960. },
  53961. ]
  53962. ))
  53963. characterMakers.push(() => makeCharacter(
  53964. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  53965. {
  53966. dressed: {
  53967. height: math.unit(5 + 7/12, "feet"),
  53968. weight: math.unit(173, "lb"),
  53969. name: "Dressed",
  53970. image: {
  53971. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  53972. extra: 3262/2862,
  53973. bottom: 188/3450
  53974. }
  53975. },
  53976. undressed: {
  53977. height: math.unit(5 + 7/12, "feet"),
  53978. weight: math.unit(173, "lb"),
  53979. name: "Undressed",
  53980. image: {
  53981. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  53982. extra: 3262/2862,
  53983. bottom: 188/3450
  53984. }
  53985. },
  53986. },
  53987. [
  53988. {
  53989. name: "The void",
  53990. height: math.unit(7.29193e-34, "angstroms")
  53991. },
  53992. {
  53993. name: "Uh-Oh.",
  53994. height: math.unit(5.734e-7, "angstroms")
  53995. },
  53996. {
  53997. name: "Pico",
  53998. height: math.unit(0.876, "angstroms")
  53999. },
  54000. {
  54001. name: "Nano",
  54002. height: math.unit(0.000134200, "mm")
  54003. },
  54004. {
  54005. name: "Micro",
  54006. height: math.unit(0.0673020, "mm")
  54007. },
  54008. {
  54009. name: "Tiny",
  54010. height: math.unit(2.4, "mm")
  54011. },
  54012. {
  54013. name: "Actual Normal",
  54014. height: math.unit(3, "inches"),
  54015. default: true
  54016. },
  54017. {
  54018. name: "Normal",
  54019. height: math.unit(5 + 8/12, "feet")
  54020. },
  54021. {
  54022. name: "Giant",
  54023. height: math.unit(12, "feet")
  54024. },
  54025. {
  54026. name: "City Ruler",
  54027. height: math.unit(270, "meters")
  54028. },
  54029. {
  54030. name: "Giga",
  54031. height: math.unit(1117.6, "km")
  54032. },
  54033. {
  54034. name: "All-Powerful Queen",
  54035. height: math.unit(70.8, "gigameters")
  54036. },
  54037. {
  54038. name: "'Goddess'",
  54039. height: math.unit(600, "yottameters")
  54040. },
  54041. {
  54042. name: "Biggest!",
  54043. height: math.unit(4.23e5, "yottameters")
  54044. },
  54045. ]
  54046. ))
  54047. characterMakers.push(() => makeCharacter(
  54048. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54049. {
  54050. front: {
  54051. height: math.unit(8, "feet"),
  54052. weight: math.unit(300, "lb"),
  54053. name: "Front",
  54054. image: {
  54055. source: "./media/characters/khyla-shadowsong/front.svg",
  54056. extra: 861/798,
  54057. bottom: 32/893
  54058. }
  54059. },
  54060. side: {
  54061. height: math.unit(8, "feet"),
  54062. weight: math.unit(300, "lb"),
  54063. name: "Side",
  54064. image: {
  54065. source: "./media/characters/khyla-shadowsong/side.svg",
  54066. extra: 790/750,
  54067. bottom: 87/877
  54068. }
  54069. },
  54070. back: {
  54071. height: math.unit(8, "feet"),
  54072. weight: math.unit(300, "lb"),
  54073. name: "Back",
  54074. image: {
  54075. source: "./media/characters/khyla-shadowsong/back.svg",
  54076. extra: 855/808,
  54077. bottom: 14/869
  54078. }
  54079. },
  54080. head: {
  54081. height: math.unit(2.7, "feet"),
  54082. name: "Head",
  54083. image: {
  54084. source: "./media/characters/khyla-shadowsong/head.svg"
  54085. }
  54086. },
  54087. },
  54088. [
  54089. {
  54090. name: "Micro",
  54091. height: math.unit(6, "inches")
  54092. },
  54093. {
  54094. name: "Normal",
  54095. height: math.unit(8, "feet"),
  54096. default: true
  54097. },
  54098. ]
  54099. ))
  54100. characterMakers.push(() => makeCharacter(
  54101. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  54102. {
  54103. hyperFront: {
  54104. height: math.unit(9 + 4/12, "feet"),
  54105. weight: math.unit(2000, "lb"),
  54106. name: "Front",
  54107. image: {
  54108. source: "./media/characters/tiden/hyper-front.svg",
  54109. extra: 400/382,
  54110. bottom: 6/406
  54111. },
  54112. form: "hyper",
  54113. },
  54114. regularFront: {
  54115. height: math.unit(7 + 10/12, "feet"),
  54116. weight: math.unit(470, "lb"),
  54117. name: "Front",
  54118. image: {
  54119. source: "./media/characters/tiden/regular-front.svg",
  54120. extra: 468/442,
  54121. bottom: 6/474
  54122. },
  54123. form: "regular",
  54124. },
  54125. },
  54126. [
  54127. {
  54128. name: "Normal",
  54129. height: math.unit(9 + 4/12, "feet"),
  54130. default: true,
  54131. form: "hyper"
  54132. },
  54133. {
  54134. name: "Normal",
  54135. height: math.unit(7 + 10/12, "feet"),
  54136. default: true,
  54137. form: "regular"
  54138. },
  54139. ],
  54140. {
  54141. "hyper": {
  54142. name: "Hyper",
  54143. default: true
  54144. },
  54145. "regular": {
  54146. name: "Regular",
  54147. },
  54148. }
  54149. ))
  54150. characterMakers.push(() => makeCharacter(
  54151. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54152. {
  54153. side: {
  54154. height: math.unit(6, "feet"),
  54155. weight: math.unit(150, "lb"),
  54156. name: "Side",
  54157. image: {
  54158. source: "./media/characters/jason-crowe/side.svg",
  54159. extra: 1771/766,
  54160. bottom: 219/1990
  54161. }
  54162. },
  54163. },
  54164. [
  54165. {
  54166. name: "Pocket Gryphon",
  54167. height: math.unit(6, "cm")
  54168. },
  54169. {
  54170. name: "Raven",
  54171. height: math.unit(60, "cm")
  54172. },
  54173. {
  54174. name: "Normal",
  54175. height: math.unit(1, "meter"),
  54176. default: true
  54177. },
  54178. ]
  54179. ))
  54180. characterMakers.push(() => makeCharacter(
  54181. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54182. {
  54183. front: {
  54184. height: math.unit(9 + 6/12, "feet"),
  54185. weight: math.unit(1100, "lb"),
  54186. name: "Front",
  54187. image: {
  54188. source: "./media/characters/django/front.svg",
  54189. extra: 1231/1136,
  54190. bottom: 34/1265
  54191. }
  54192. },
  54193. side: {
  54194. height: math.unit(9 + 6/12, "feet"),
  54195. weight: math.unit(1100, "lb"),
  54196. name: "Side",
  54197. image: {
  54198. source: "./media/characters/django/side.svg",
  54199. extra: 1267/1174,
  54200. bottom: 9/1276
  54201. }
  54202. },
  54203. },
  54204. [
  54205. {
  54206. name: "Normal",
  54207. height: math.unit(9 + 6/12, "feet"),
  54208. default: true
  54209. },
  54210. {
  54211. name: "Macro 1",
  54212. height: math.unit(50, "feet")
  54213. },
  54214. {
  54215. name: "Macro 2",
  54216. height: math.unit(500, "feet")
  54217. },
  54218. {
  54219. name: "Mega Macro",
  54220. height: math.unit(5300, "feet")
  54221. },
  54222. ]
  54223. ))
  54224. characterMakers.push(() => makeCharacter(
  54225. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54226. {
  54227. frontSfw: {
  54228. height: math.unit(120, "cm"),
  54229. weight: math.unit(15, "kg"),
  54230. name: "Front (SFW)",
  54231. image: {
  54232. source: "./media/characters/eri/front-sfw.svg",
  54233. extra: 1014/939,
  54234. bottom: 37/1051
  54235. },
  54236. form: "moth",
  54237. },
  54238. frontNsfw: {
  54239. height: math.unit(120, "cm"),
  54240. weight: math.unit(15, "kg"),
  54241. name: "Front (NSFW)",
  54242. image: {
  54243. source: "./media/characters/eri/front-nsfw.svg",
  54244. extra: 1014/939,
  54245. bottom: 37/1051
  54246. },
  54247. form: "moth",
  54248. default: true
  54249. },
  54250. egg: {
  54251. height: math.unit(10, "cm"),
  54252. name: "Egg",
  54253. image: {
  54254. source: "./media/characters/eri/egg.svg"
  54255. },
  54256. form: "egg",
  54257. default: true
  54258. },
  54259. },
  54260. [
  54261. {
  54262. name: "Normal",
  54263. height: math.unit(120, "cm"),
  54264. default: true,
  54265. form: "moth"
  54266. },
  54267. {
  54268. name: "Normal",
  54269. height: math.unit(10, "cm"),
  54270. default: true,
  54271. form: "egg"
  54272. },
  54273. ],
  54274. {
  54275. "moth": {
  54276. name: "Moth",
  54277. default: true
  54278. },
  54279. "egg": {
  54280. name: "Egg",
  54281. },
  54282. }
  54283. ))
  54284. characterMakers.push(() => makeCharacter(
  54285. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54286. {
  54287. front: {
  54288. height: math.unit(200, "feet"),
  54289. name: "Front",
  54290. image: {
  54291. source: "./media/characters/bishop-dowser/front.svg",
  54292. extra: 933/868,
  54293. bottom: 106/1039
  54294. }
  54295. },
  54296. },
  54297. [
  54298. {
  54299. name: "Giant",
  54300. height: math.unit(200, "feet"),
  54301. default: true
  54302. },
  54303. ]
  54304. ))
  54305. characterMakers.push(() => makeCharacter(
  54306. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54307. {
  54308. front: {
  54309. height: math.unit(2, "meters"),
  54310. preyCapacity: math.unit(3, "people"),
  54311. name: "Front",
  54312. image: {
  54313. source: "./media/characters/fryra/front.svg",
  54314. extra: 1025/948,
  54315. bottom: 30/1055
  54316. },
  54317. extraAttributes: {
  54318. "breastVolume": {
  54319. name: "Breast Volume",
  54320. power: 3,
  54321. type: "volume",
  54322. base: math.unit(8, "liters")
  54323. },
  54324. }
  54325. },
  54326. back: {
  54327. height: math.unit(2, "meters"),
  54328. preyCapacity: math.unit(3, "people"),
  54329. name: "Back",
  54330. image: {
  54331. source: "./media/characters/fryra/back.svg",
  54332. extra: 993/938,
  54333. bottom: 38/1031
  54334. },
  54335. extraAttributes: {
  54336. "breastVolume": {
  54337. name: "Breast Volume",
  54338. power: 3,
  54339. type: "volume",
  54340. base: math.unit(8, "liters")
  54341. },
  54342. }
  54343. },
  54344. head: {
  54345. height: math.unit(1.33, "feet"),
  54346. name: "Head",
  54347. image: {
  54348. source: "./media/characters/fryra/head.svg"
  54349. }
  54350. },
  54351. maw: {
  54352. height: math.unit(0.56, "feet"),
  54353. name: "Maw",
  54354. image: {
  54355. source: "./media/characters/fryra/maw.svg"
  54356. }
  54357. },
  54358. },
  54359. [
  54360. {
  54361. name: "Micro",
  54362. height: math.unit(5, "cm")
  54363. },
  54364. {
  54365. name: "Normal",
  54366. height: math.unit(2, "meters"),
  54367. default: true
  54368. },
  54369. {
  54370. name: "Small Macro",
  54371. height: math.unit(8, "meters")
  54372. },
  54373. {
  54374. name: "Macro",
  54375. height: math.unit(50, "meters")
  54376. },
  54377. {
  54378. name: "Megamacro",
  54379. height: math.unit(1, "km")
  54380. },
  54381. {
  54382. name: "Planetary",
  54383. height: math.unit(300000, "km")
  54384. },
  54385. {
  54386. name: "Universal",
  54387. height: math.unit(250, "lightyears")
  54388. },
  54389. {
  54390. name: "Fabric of Reality",
  54391. height: math.unit(1000, "multiverses")
  54392. },
  54393. ]
  54394. ))
  54395. characterMakers.push(() => makeCharacter(
  54396. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54397. {
  54398. frontDressed: {
  54399. height: math.unit(6 + 2/12, "feet"),
  54400. name: "Front (Dressed)",
  54401. image: {
  54402. source: "./media/characters/fiera/front-dressed.svg",
  54403. extra: 1883/1793,
  54404. bottom: 70/1953
  54405. }
  54406. },
  54407. backDressed: {
  54408. height: math.unit(6 + 2/12, "feet"),
  54409. name: "Back (Dressed)",
  54410. image: {
  54411. source: "./media/characters/fiera/back-dressed.svg",
  54412. extra: 1847/1780,
  54413. bottom: 70/1917
  54414. }
  54415. },
  54416. frontNude: {
  54417. height: math.unit(6 + 2/12, "feet"),
  54418. name: "Front (Nude)",
  54419. image: {
  54420. source: "./media/characters/fiera/front-nude.svg",
  54421. extra: 1875/1785,
  54422. bottom: 66/1941
  54423. }
  54424. },
  54425. backNude: {
  54426. height: math.unit(6 + 2/12, "feet"),
  54427. name: "Back (Nude)",
  54428. image: {
  54429. source: "./media/characters/fiera/back-nude.svg",
  54430. extra: 1855/1788,
  54431. bottom: 44/1899
  54432. }
  54433. },
  54434. maw: {
  54435. height: math.unit(1.3, "feet"),
  54436. name: "Maw",
  54437. image: {
  54438. source: "./media/characters/fiera/maw.svg"
  54439. }
  54440. },
  54441. paw: {
  54442. height: math.unit(1, "feet"),
  54443. name: "Paw",
  54444. image: {
  54445. source: "./media/characters/fiera/paw.svg"
  54446. }
  54447. },
  54448. shoe: {
  54449. height: math.unit(1.05, "feet"),
  54450. name: "Shoe",
  54451. image: {
  54452. source: "./media/characters/fiera/shoe.svg"
  54453. }
  54454. },
  54455. },
  54456. [
  54457. {
  54458. name: "Normal",
  54459. height: math.unit(6 + 2/12, "feet"),
  54460. default: true
  54461. },
  54462. {
  54463. name: "Size Difference",
  54464. height: math.unit(13, "feet")
  54465. },
  54466. {
  54467. name: "Macro",
  54468. height: math.unit(60, "feet")
  54469. },
  54470. {
  54471. name: "Mega Macro",
  54472. height: math.unit(200, "feet")
  54473. },
  54474. ]
  54475. ))
  54476. characterMakers.push(() => makeCharacter(
  54477. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54478. {
  54479. back: {
  54480. height: math.unit(6, "feet"),
  54481. name: "Back",
  54482. image: {
  54483. source: "./media/characters/flare/back.svg",
  54484. extra: 1883/1765,
  54485. bottom: 32/1915
  54486. }
  54487. },
  54488. },
  54489. [
  54490. {
  54491. name: "Normal",
  54492. height: math.unit(6 + 2/12, "feet"),
  54493. default: true
  54494. },
  54495. {
  54496. name: "Size Difference",
  54497. height: math.unit(13, "feet")
  54498. },
  54499. {
  54500. name: "Macro",
  54501. height: math.unit(60, "feet")
  54502. },
  54503. {
  54504. name: "Macro 2",
  54505. height: math.unit(100, "feet")
  54506. },
  54507. {
  54508. name: "Mega Macro",
  54509. height: math.unit(200, "feet")
  54510. },
  54511. ]
  54512. ))
  54513. characterMakers.push(() => makeCharacter(
  54514. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54515. {
  54516. front: {
  54517. height: math.unit(2.2, "m"),
  54518. weight: math.unit(300, "kg"),
  54519. name: "Front",
  54520. image: {
  54521. source: "./media/characters/hanna/front.svg",
  54522. extra: 1696/1502,
  54523. bottom: 206/1902
  54524. }
  54525. },
  54526. },
  54527. [
  54528. {
  54529. name: "Humanoid",
  54530. height: math.unit(2.2, "meters")
  54531. },
  54532. {
  54533. name: "Normal",
  54534. height: math.unit(4.8, "meters"),
  54535. default: true
  54536. },
  54537. ]
  54538. ))
  54539. characterMakers.push(() => makeCharacter(
  54540. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  54541. {
  54542. front: {
  54543. height: math.unit(2.8, "meters"),
  54544. name: "Front",
  54545. image: {
  54546. source: "./media/characters/argo/front.svg",
  54547. extra: 731/518,
  54548. bottom: 84/815
  54549. }
  54550. },
  54551. },
  54552. [
  54553. {
  54554. name: "Normal",
  54555. height: math.unit(3, "meters"),
  54556. default: true
  54557. },
  54558. ]
  54559. ))
  54560. characterMakers.push(() => makeCharacter(
  54561. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  54562. {
  54563. side: {
  54564. height: math.unit(3.8, "meters"),
  54565. name: "Side",
  54566. image: {
  54567. source: "./media/characters/sybil/side.svg",
  54568. extra: 382/361,
  54569. bottom: 25/407
  54570. }
  54571. },
  54572. },
  54573. [
  54574. {
  54575. name: "Normal",
  54576. height: math.unit(3.8, "meters"),
  54577. default: true
  54578. },
  54579. ]
  54580. ))
  54581. characterMakers.push(() => makeCharacter(
  54582. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  54583. {
  54584. side: {
  54585. height: math.unit(6, "meters"),
  54586. name: "Side",
  54587. image: {
  54588. source: "./media/characters/plum/side.svg",
  54589. extra: 858/755,
  54590. bottom: 45/903
  54591. },
  54592. form: "taur",
  54593. default: true
  54594. },
  54595. back: {
  54596. height: math.unit(6.3, "meters"),
  54597. name: "Back",
  54598. image: {
  54599. source: "./media/characters/plum/back.svg",
  54600. extra: 887/813,
  54601. bottom: 32/919
  54602. },
  54603. form: "taur",
  54604. },
  54605. feral: {
  54606. height: math.unit(5.5, "meter"),
  54607. name: "Front",
  54608. image: {
  54609. source: "./media/characters/plum/feral.svg",
  54610. extra: 568/403,
  54611. bottom: 51/619
  54612. },
  54613. form: "feral",
  54614. default: true
  54615. },
  54616. head: {
  54617. height: math.unit(1.46, "meter"),
  54618. name: "Head",
  54619. image: {
  54620. source: "./media/characters/plum/head.svg"
  54621. },
  54622. form: "taur"
  54623. },
  54624. tailTop: {
  54625. height: math.unit(5.6, "meter"),
  54626. name: "Tail (Top)",
  54627. image: {
  54628. source: "./media/characters/plum/tail-top.svg"
  54629. },
  54630. form: "taur",
  54631. },
  54632. tailBottom: {
  54633. height: math.unit(5.6, "meter"),
  54634. name: "Tail (Bottom)",
  54635. image: {
  54636. source: "./media/characters/plum/tail-bottom.svg"
  54637. },
  54638. form: "taur",
  54639. },
  54640. feralHead: {
  54641. height: math.unit(2.56549521, "meter"),
  54642. name: "Head",
  54643. image: {
  54644. source: "./media/characters/plum/head.svg"
  54645. },
  54646. form: "feral"
  54647. },
  54648. feralTailTop: {
  54649. height: math.unit(5.44728435, "meter"),
  54650. name: "Tail (Top)",
  54651. image: {
  54652. source: "./media/characters/plum/tail-top.svg"
  54653. },
  54654. form: "feral",
  54655. },
  54656. feralTailBottom: {
  54657. height: math.unit(5.44728435, "meter"),
  54658. name: "Tail (Bottom)",
  54659. image: {
  54660. source: "./media/characters/plum/tail-bottom.svg"
  54661. },
  54662. form: "feral",
  54663. },
  54664. },
  54665. [
  54666. {
  54667. name: "Normal",
  54668. height: math.unit(6, "meters"),
  54669. default: true,
  54670. form: "taur"
  54671. },
  54672. {
  54673. name: "Normal",
  54674. height: math.unit(5.5, "meters"),
  54675. default: true,
  54676. form: "feral"
  54677. },
  54678. ],
  54679. {
  54680. "taur": {
  54681. name: "Taur",
  54682. default: true
  54683. },
  54684. "feral": {
  54685. name: "Feral",
  54686. },
  54687. }
  54688. ))
  54689. characterMakers.push(() => makeCharacter(
  54690. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  54691. {
  54692. front: {
  54693. height: math.unit(6, "feet"),
  54694. weight: math.unit(115, "lb"),
  54695. name: "Front",
  54696. image: {
  54697. source: "./media/characters/celeste-kitsune/front.svg",
  54698. extra: 393/366,
  54699. bottom: 7/400
  54700. }
  54701. },
  54702. side: {
  54703. height: math.unit(6, "feet"),
  54704. weight: math.unit(115, "lb"),
  54705. name: "Side",
  54706. image: {
  54707. source: "./media/characters/celeste-kitsune/side.svg",
  54708. extra: 818/765,
  54709. bottom: 40/858
  54710. }
  54711. },
  54712. },
  54713. [
  54714. {
  54715. name: "Megamacro",
  54716. height: math.unit(1500, "miles"),
  54717. default: true
  54718. },
  54719. ]
  54720. ))
  54721. characterMakers.push(() => makeCharacter(
  54722. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  54723. {
  54724. front: {
  54725. height: math.unit(8, "meters"),
  54726. name: "Front",
  54727. image: {
  54728. source: "./media/characters/io/front.svg",
  54729. extra: 865/722,
  54730. bottom: 58/923
  54731. }
  54732. },
  54733. back: {
  54734. height: math.unit(8, "meters"),
  54735. name: "Back",
  54736. image: {
  54737. source: "./media/characters/io/back.svg",
  54738. extra: 920/776,
  54739. bottom: 42/962
  54740. }
  54741. },
  54742. head: {
  54743. height: math.unit(5.09, "meters"),
  54744. name: "Head",
  54745. image: {
  54746. source: "./media/characters/io/head.svg"
  54747. }
  54748. },
  54749. hand: {
  54750. height: math.unit(1.6, "meters"),
  54751. name: "Hand",
  54752. image: {
  54753. source: "./media/characters/io/hand.svg"
  54754. }
  54755. },
  54756. foot: {
  54757. height: math.unit(2.4, "meters"),
  54758. name: "Foot",
  54759. image: {
  54760. source: "./media/characters/io/foot.svg"
  54761. }
  54762. },
  54763. },
  54764. [
  54765. {
  54766. name: "Normal",
  54767. height: math.unit(8, "meters"),
  54768. default: true
  54769. },
  54770. ]
  54771. ))
  54772. characterMakers.push(() => makeCharacter(
  54773. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  54774. {
  54775. side: {
  54776. height: math.unit(6 + 3/12, "feet"),
  54777. weight: math.unit(225, "lb"),
  54778. name: "Side",
  54779. image: {
  54780. source: "./media/characters/silas/side.svg",
  54781. extra: 703/653,
  54782. bottom: 23/726
  54783. },
  54784. extraAttributes: {
  54785. "pawLength": {
  54786. name: "Paw Length",
  54787. power: 1,
  54788. type: "length",
  54789. base: math.unit(12, "inches")
  54790. },
  54791. "pawWidth": {
  54792. name: "Paw Width",
  54793. power: 1,
  54794. type: "length",
  54795. base: math.unit(4.5, "inches")
  54796. },
  54797. "pawArea": {
  54798. name: "Paw Area",
  54799. power: 2,
  54800. type: "area",
  54801. base: math.unit(12 * 4.5, "inches^2")
  54802. },
  54803. }
  54804. },
  54805. },
  54806. [
  54807. {
  54808. name: "Normal",
  54809. height: math.unit(6 + 3/12, "feet"),
  54810. default: true
  54811. },
  54812. ]
  54813. ))
  54814. characterMakers.push(() => makeCharacter(
  54815. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  54816. {
  54817. back: {
  54818. height: math.unit(1.6, "meters"),
  54819. weight: math.unit(150, "lb"),
  54820. name: "Back",
  54821. image: {
  54822. source: "./media/characters/zari/back.svg",
  54823. extra: 424/411,
  54824. bottom: 32/456
  54825. },
  54826. extraAttributes: {
  54827. "bladderCapacity": {
  54828. name: "Bladder Size",
  54829. power: 3,
  54830. type: "volume",
  54831. base: math.unit(500, "mL")
  54832. },
  54833. "bladderFlow": {
  54834. name: "Flow Rate",
  54835. power: 3,
  54836. type: "volume",
  54837. base: math.unit(25, "mL")
  54838. },
  54839. }
  54840. },
  54841. },
  54842. [
  54843. {
  54844. name: "Normal",
  54845. height: math.unit(1.6, "meters"),
  54846. default: true
  54847. },
  54848. ]
  54849. ))
  54850. characterMakers.push(() => makeCharacter(
  54851. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  54852. {
  54853. front: {
  54854. height: math.unit(25, "feet"),
  54855. weight: math.unit(5, "tons"),
  54856. name: "Front",
  54857. image: {
  54858. source: "./media/characters/charlie-human/front.svg",
  54859. extra: 1870/1740,
  54860. bottom: 102/1972
  54861. },
  54862. extraAttributes: {
  54863. "dickLength": {
  54864. name: "Dick Length",
  54865. power: 1,
  54866. type: "length",
  54867. base: math.unit(9, "feet")
  54868. },
  54869. }
  54870. },
  54871. back: {
  54872. height: math.unit(25, "feet"),
  54873. weight: math.unit(5, "tons"),
  54874. name: "Back",
  54875. image: {
  54876. source: "./media/characters/charlie-human/back.svg",
  54877. extra: 1858/1733,
  54878. bottom: 105/1963
  54879. },
  54880. extraAttributes: {
  54881. "dickLength": {
  54882. name: "Dick Length",
  54883. power: 1,
  54884. type: "length",
  54885. base: math.unit(9, "feet")
  54886. },
  54887. }
  54888. },
  54889. },
  54890. [
  54891. {
  54892. name: "\"Normal\"",
  54893. height: math.unit(6 + 4/12, "feet")
  54894. },
  54895. {
  54896. name: "Big",
  54897. height: math.unit(25, "feet"),
  54898. default: true
  54899. },
  54900. ]
  54901. ))
  54902. characterMakers.push(() => makeCharacter(
  54903. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  54904. {
  54905. front: {
  54906. height: math.unit(6 + 4/12, "feet"),
  54907. weight: math.unit(320, "lb"),
  54908. name: "Front",
  54909. image: {
  54910. source: "./media/characters/ookitsu/front.svg",
  54911. extra: 1160/976,
  54912. bottom: 38/1198
  54913. }
  54914. },
  54915. frontNsfw: {
  54916. height: math.unit(6 + 4/12, "feet"),
  54917. weight: math.unit(320, "lb"),
  54918. name: "Front (NSFW)",
  54919. image: {
  54920. source: "./media/characters/ookitsu/front-nsfw.svg",
  54921. extra: 1160/976,
  54922. bottom: 38/1198
  54923. }
  54924. },
  54925. back: {
  54926. height: math.unit(6 + 4/12, "feet"),
  54927. weight: math.unit(320, "lb"),
  54928. name: "Back",
  54929. image: {
  54930. source: "./media/characters/ookitsu/back.svg",
  54931. extra: 1030/975,
  54932. bottom: 70/1100
  54933. }
  54934. },
  54935. head: {
  54936. height: math.unit(1.79, "feet"),
  54937. name: "Head",
  54938. image: {
  54939. source: "./media/characters/ookitsu/head.svg"
  54940. }
  54941. },
  54942. hand: {
  54943. height: math.unit(0.92, "feet"),
  54944. name: "Hand",
  54945. image: {
  54946. source: "./media/characters/ookitsu/hand.svg"
  54947. }
  54948. },
  54949. tails: {
  54950. height: math.unit(3.3, "feet"),
  54951. name: "Tails",
  54952. image: {
  54953. source: "./media/characters/ookitsu/tails.svg"
  54954. }
  54955. },
  54956. dick: {
  54957. height: math.unit(1.10833, "feet"),
  54958. name: "Dick",
  54959. image: {
  54960. source: "./media/characters/ookitsu/dick.svg"
  54961. }
  54962. },
  54963. },
  54964. [
  54965. {
  54966. name: "Normal",
  54967. height: math.unit(6 + 4/12, "feet"),
  54968. default: true
  54969. },
  54970. {
  54971. name: "Macro",
  54972. height: math.unit(30, "feet")
  54973. },
  54974. ]
  54975. ))
  54976. characterMakers.push(() => makeCharacter(
  54977. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  54978. {
  54979. anthroFront: {
  54980. height: math.unit(6, "feet"),
  54981. weight: math.unit(250, "lb"),
  54982. name: "Front",
  54983. image: {
  54984. source: "./media/characters/jhusky/anthro-front.svg",
  54985. extra: 474/439,
  54986. bottom: 7/481
  54987. },
  54988. form: "anthro",
  54989. default: true
  54990. },
  54991. taurSideSfw: {
  54992. height: math.unit(6 + 4/12, "feet"),
  54993. weight: math.unit(500, "lb"),
  54994. name: "Side (SFW)",
  54995. image: {
  54996. source: "./media/characters/jhusky/taur-side-sfw.svg",
  54997. extra: 1741/1629,
  54998. bottom: 196/1937
  54999. },
  55000. form: "taur",
  55001. default: true
  55002. },
  55003. taurSideNsfw: {
  55004. height: math.unit(6 + 4/12, "feet"),
  55005. weight: math.unit(500, "lb"),
  55006. name: "Taur (NSFW)",
  55007. image: {
  55008. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55009. extra: 1741/1629,
  55010. bottom: 196/1937
  55011. },
  55012. form: "taur",
  55013. },
  55014. },
  55015. [
  55016. {
  55017. name: "Huge",
  55018. height: math.unit(500, "feet"),
  55019. form: "anthro"
  55020. },
  55021. {
  55022. name: "Macro",
  55023. height: math.unit(1000, "feet"),
  55024. default: true,
  55025. form: "anthro"
  55026. },
  55027. {
  55028. name: "Megamacro",
  55029. height: math.unit(10000, "feet"),
  55030. form: "anthro"
  55031. },
  55032. {
  55033. name: "Huge",
  55034. height: math.unit(528, "feet"),
  55035. form: "taur"
  55036. },
  55037. {
  55038. name: "Macro",
  55039. height: math.unit(1056, "feet"),
  55040. default: true,
  55041. form: "taur"
  55042. },
  55043. {
  55044. name: "Megamacro",
  55045. height: math.unit(10556, "feet"),
  55046. form: "taur"
  55047. },
  55048. ],
  55049. {
  55050. "anthro": {
  55051. name: "Anthro",
  55052. default: true
  55053. },
  55054. "taur": {
  55055. name: "Taur",
  55056. },
  55057. }
  55058. ))
  55059. characterMakers.push(() => makeCharacter(
  55060. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  55061. {
  55062. front: {
  55063. height: math.unit(8, "feet"),
  55064. weight: math.unit(500, "lb"),
  55065. name: "Front",
  55066. image: {
  55067. source: "./media/characters/armail/front.svg",
  55068. extra: 1753/1669,
  55069. bottom: 155/1908
  55070. }
  55071. },
  55072. back: {
  55073. height: math.unit(8, "feet"),
  55074. weight: math.unit(500, "lb"),
  55075. name: "Back",
  55076. image: {
  55077. source: "./media/characters/armail/back.svg",
  55078. extra: 1872/1803,
  55079. bottom: 63/1935
  55080. }
  55081. },
  55082. },
  55083. [
  55084. {
  55085. name: "Micro",
  55086. height: math.unit(0.25, "feet")
  55087. },
  55088. {
  55089. name: "Normal",
  55090. height: math.unit(8, "feet"),
  55091. default: true
  55092. },
  55093. {
  55094. name: "Mini-macro",
  55095. height: math.unit(30, "feet")
  55096. },
  55097. {
  55098. name: "Macro",
  55099. height: math.unit(400, "feet")
  55100. },
  55101. {
  55102. name: "Mega-macro",
  55103. height: math.unit(6000, "feet")
  55104. },
  55105. ]
  55106. ))
  55107. characterMakers.push(() => makeCharacter(
  55108. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  55109. {
  55110. front: {
  55111. height: math.unit(6 + 7/12, "feet"),
  55112. weight: math.unit(210, "lb"),
  55113. name: "Front",
  55114. image: {
  55115. source: "./media/characters/wilfred-t-buxton/front.svg",
  55116. extra: 1068/882,
  55117. bottom: 28/1096
  55118. }
  55119. },
  55120. },
  55121. [
  55122. {
  55123. name: "Normal",
  55124. height: math.unit(6 + 7/12, "feet"),
  55125. default: true
  55126. },
  55127. ]
  55128. ))
  55129. characterMakers.push(() => makeCharacter(
  55130. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  55131. {
  55132. front: {
  55133. height: math.unit(5 + 2/12, "feet"),
  55134. weight: math.unit(120, "lb"),
  55135. name: "Front",
  55136. image: {
  55137. source: "./media/characters/leighton-marrow/front.svg",
  55138. extra: 441/409,
  55139. bottom: 37/478
  55140. }
  55141. },
  55142. },
  55143. [
  55144. {
  55145. name: "Normal",
  55146. height: math.unit(5 + 2/12, "feet"),
  55147. default: true
  55148. },
  55149. ]
  55150. ))
  55151. characterMakers.push(() => makeCharacter(
  55152. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  55153. {
  55154. front: {
  55155. height: math.unit(4, "meters"),
  55156. weight: math.unit(1200, "kg"),
  55157. name: "Front",
  55158. image: {
  55159. source: "./media/characters/licos/front.svg",
  55160. extra: 1727/1604,
  55161. bottom: 101/1828
  55162. },
  55163. form: "anthro",
  55164. default: true
  55165. },
  55166. taur_side: {
  55167. height: math.unit(20, "meters"),
  55168. weight: math.unit(1100000, "kg"),
  55169. name: "Side",
  55170. image: {
  55171. source: "./media/characters/licos/taur.svg",
  55172. extra: 1158/1091,
  55173. bottom: 80/1238
  55174. },
  55175. form: "taur",
  55176. default: true
  55177. },
  55178. },
  55179. [
  55180. {
  55181. name: "Normal",
  55182. height: math.unit(4, "meters"),
  55183. default: true,
  55184. form: "anthro"
  55185. },
  55186. {
  55187. name: "Normal",
  55188. height: math.unit(20, "meters"),
  55189. default: true,
  55190. form: "taur"
  55191. },
  55192. ],
  55193. {
  55194. "anthro": {
  55195. name: "Anthro",
  55196. default: true
  55197. },
  55198. "taur": {
  55199. name: "Taur",
  55200. },
  55201. }
  55202. ))
  55203. characterMakers.push(() => makeCharacter(
  55204. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55205. {
  55206. front: {
  55207. height: math.unit(10 + 3/12, "feet"),
  55208. name: "Front",
  55209. image: {
  55210. source: "./media/characters/theo-monkey/front.svg",
  55211. extra: 1735/1658,
  55212. bottom: 73/1808
  55213. }
  55214. },
  55215. back: {
  55216. height: math.unit(10 + 3/12, "feet"),
  55217. name: "Back",
  55218. image: {
  55219. source: "./media/characters/theo-monkey/back.svg",
  55220. extra: 1742/1664,
  55221. bottom: 33/1775
  55222. }
  55223. },
  55224. head: {
  55225. height: math.unit(2.29, "feet"),
  55226. name: "Head",
  55227. image: {
  55228. source: "./media/characters/theo-monkey/head.svg"
  55229. }
  55230. },
  55231. handPalm: {
  55232. height: math.unit(1.73, "feet"),
  55233. name: "Hand (Palm)",
  55234. image: {
  55235. source: "./media/characters/theo-monkey/hand-palm.svg"
  55236. }
  55237. },
  55238. handBack: {
  55239. height: math.unit(1.63, "feet"),
  55240. name: "Hand (Back)",
  55241. image: {
  55242. source: "./media/characters/theo-monkey/hand-back.svg"
  55243. }
  55244. },
  55245. footSole: {
  55246. height: math.unit(2.15, "feet"),
  55247. name: "Foot (Sole)",
  55248. image: {
  55249. source: "./media/characters/theo-monkey/foot-sole.svg"
  55250. }
  55251. },
  55252. footSide: {
  55253. height: math.unit(1.6, "feet"),
  55254. name: "Foot (Side)",
  55255. image: {
  55256. source: "./media/characters/theo-monkey/foot-side.svg"
  55257. }
  55258. },
  55259. },
  55260. [
  55261. {
  55262. name: "Normal",
  55263. height: math.unit(10 + 3/12, "feet"),
  55264. default: true
  55265. },
  55266. ]
  55267. ))
  55268. characterMakers.push(() => makeCharacter(
  55269. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55270. {
  55271. front: {
  55272. height: math.unit(11, "feet"),
  55273. weight: math.unit(3000, "lb"),
  55274. preyCapacity: math.unit(10, "people"),
  55275. name: "Front",
  55276. image: {
  55277. source: "./media/characters/brook/front.svg",
  55278. extra: 909/835,
  55279. bottom: 108/1017
  55280. }
  55281. },
  55282. back: {
  55283. height: math.unit(11, "feet"),
  55284. weight: math.unit(3000, "lb"),
  55285. preyCapacity: math.unit(10, "people"),
  55286. name: "Back",
  55287. image: {
  55288. source: "./media/characters/brook/back.svg",
  55289. extra: 976/916,
  55290. bottom: 34/1010
  55291. }
  55292. },
  55293. backAlt: {
  55294. height: math.unit(11, "feet"),
  55295. weight: math.unit(3000, "lb"),
  55296. preyCapacity: math.unit(10, "people"),
  55297. name: "Back (Alt)",
  55298. image: {
  55299. source: "./media/characters/brook/back-alt.svg",
  55300. extra: 1283/1213,
  55301. bottom: 35/1318
  55302. }
  55303. },
  55304. bust: {
  55305. height: math.unit(9.0859030837, "feet"),
  55306. weight: math.unit(3000, "lb"),
  55307. preyCapacity: math.unit(10, "people"),
  55308. name: "Bust",
  55309. image: {
  55310. source: "./media/characters/brook/bust.svg",
  55311. extra: 2043/1923,
  55312. bottom: 0/2043
  55313. }
  55314. },
  55315. },
  55316. [
  55317. {
  55318. name: "Small",
  55319. height: math.unit(11, "feet"),
  55320. default: true
  55321. },
  55322. {
  55323. name: "Towering",
  55324. height: math.unit(5, "km")
  55325. },
  55326. {
  55327. name: "Enormous",
  55328. height: math.unit(25, "earths")
  55329. },
  55330. ]
  55331. ))
  55332. characterMakers.push(() => makeCharacter(
  55333. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  55334. {
  55335. front: {
  55336. height: math.unit(4, "feet"),
  55337. weight: math.unit(150, "lb"),
  55338. name: "Front",
  55339. image: {
  55340. source: "./media/characters/squishi/front.svg",
  55341. extra: 1428/1271,
  55342. bottom: 30/1458
  55343. },
  55344. extraAttributes: {
  55345. "pawSize": {
  55346. name: "Paw Size",
  55347. power: 1,
  55348. type: "length",
  55349. base: math.unit(14, "ShoeSizeMensUS"),
  55350. defaultUnit: "ShoeSizeMensUS"
  55351. },
  55352. }
  55353. },
  55354. side: {
  55355. height: math.unit(4, "feet"),
  55356. weight: math.unit(150, "lb"),
  55357. name: "Side",
  55358. image: {
  55359. source: "./media/characters/squishi/side.svg",
  55360. extra: 1428/1271,
  55361. bottom: 30/1458
  55362. },
  55363. extraAttributes: {
  55364. "pawSize": {
  55365. name: "Paw Size",
  55366. power: 1,
  55367. type: "length",
  55368. base: math.unit(14, "ShoeSizeMensUS"),
  55369. defaultUnit: "ShoeSizeMensUS"
  55370. },
  55371. }
  55372. },
  55373. back: {
  55374. height: math.unit(4, "feet"),
  55375. weight: math.unit(150, "lb"),
  55376. name: "Back",
  55377. image: {
  55378. source: "./media/characters/squishi/back.svg",
  55379. extra: 1428/1271,
  55380. bottom: 30/1458
  55381. },
  55382. extraAttributes: {
  55383. "pawSize": {
  55384. name: "Paw Size",
  55385. power: 1,
  55386. type: "length",
  55387. base: math.unit(14, "ShoeSizeMensUS"),
  55388. defaultUnit: "ShoeSizeMensUS"
  55389. },
  55390. }
  55391. },
  55392. },
  55393. [
  55394. {
  55395. name: "Normal",
  55396. height: math.unit(4, "feet"),
  55397. default: true
  55398. },
  55399. ]
  55400. ))
  55401. characterMakers.push(() => makeCharacter(
  55402. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  55403. {
  55404. front: {
  55405. height: math.unit(7 + 8/12, "feet"),
  55406. weight: math.unit(333, "lb"),
  55407. name: "Front",
  55408. image: {
  55409. source: "./media/characters/vincent-vasroc/front.svg",
  55410. extra: 1962/1860,
  55411. bottom: 41/2003
  55412. }
  55413. },
  55414. back: {
  55415. height: math.unit(7 + 8/12, "feet"),
  55416. weight: math.unit(333, "lb"),
  55417. name: "Back",
  55418. image: {
  55419. source: "./media/characters/vincent-vasroc/back.svg",
  55420. extra: 1952/1815,
  55421. bottom: 33/1985
  55422. }
  55423. },
  55424. paw: {
  55425. height: math.unit(1.24, "feet"),
  55426. name: "Paw",
  55427. image: {
  55428. source: "./media/characters/vincent-vasroc/paw.svg"
  55429. }
  55430. },
  55431. ear: {
  55432. height: math.unit(0.75, "feet"),
  55433. name: "Ear",
  55434. image: {
  55435. source: "./media/characters/vincent-vasroc/ear.svg"
  55436. }
  55437. },
  55438. },
  55439. [
  55440. {
  55441. name: "Nano",
  55442. height: math.unit(92, "micrometers")
  55443. },
  55444. {
  55445. name: "Normal",
  55446. height: math.unit(7 + 8/12, "feet"),
  55447. default: true
  55448. },
  55449. ]
  55450. ))
  55451. characterMakers.push(() => makeCharacter(
  55452. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  55453. {
  55454. frontNsfw: {
  55455. height: math.unit(40, "feet"),
  55456. weight: math.unit(58, "tons"),
  55457. name: "Front (NSFW)",
  55458. image: {
  55459. source: "./media/characters/ru-kahn/front-nsfw.svg",
  55460. extra: 1265/965,
  55461. bottom: 155/1420
  55462. }
  55463. },
  55464. frontSfw: {
  55465. height: math.unit(40, "feet"),
  55466. weight: math.unit(58, "tons"),
  55467. name: "Front (SFW)",
  55468. image: {
  55469. source: "./media/characters/ru-kahn/front-sfw.svg",
  55470. extra: 1265/965,
  55471. bottom: 80/1345
  55472. }
  55473. },
  55474. },
  55475. [
  55476. {
  55477. name: "Small",
  55478. height: math.unit(4, "feet")
  55479. },
  55480. {
  55481. name: "Normal",
  55482. height: math.unit(40, "feet"),
  55483. default: true
  55484. },
  55485. {
  55486. name: "Macro",
  55487. height: math.unit(400, "feet")
  55488. },
  55489. ]
  55490. ))
  55491. characterMakers.push(() => makeCharacter(
  55492. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  55493. {
  55494. frontNude: {
  55495. height: math.unit(6 + 5/12, "feet"),
  55496. name: "Front (Nude)",
  55497. image: {
  55498. source: "./media/characters/sylvie-laforge/front-nude.svg",
  55499. extra: 1369/1366,
  55500. bottom: 68/1437
  55501. }
  55502. },
  55503. frontDressed: {
  55504. height: math.unit(6 + 5/12, "feet"),
  55505. name: "Front (Dressed)",
  55506. image: {
  55507. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  55508. extra: 1369/1366,
  55509. bottom: 68/1437
  55510. }
  55511. },
  55512. },
  55513. [
  55514. {
  55515. name: "Normal",
  55516. height: math.unit(6 + 5/12, "feet"),
  55517. default: true
  55518. },
  55519. {
  55520. name: "Maximum",
  55521. height: math.unit(1930, "feet")
  55522. },
  55523. ]
  55524. ))
  55525. characterMakers.push(() => makeCharacter(
  55526. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  55527. {
  55528. front: {
  55529. height: math.unit(5 + 6/12, "feet"),
  55530. name: "Front",
  55531. image: {
  55532. source: "./media/characters/kaja/front.svg",
  55533. extra: 1874/1514,
  55534. bottom: 117/1991
  55535. }
  55536. },
  55537. },
  55538. [
  55539. {
  55540. name: "Normal",
  55541. height: math.unit(5 + 6/12, "feet"),
  55542. default: true
  55543. },
  55544. ]
  55545. ))
  55546. characterMakers.push(() => makeCharacter(
  55547. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  55548. {
  55549. front: {
  55550. height: math.unit(5 + 9/12, "feet"),
  55551. weight: math.unit(200, "lb"),
  55552. name: "Front",
  55553. image: {
  55554. source: "./media/characters/mark-smith/front.svg",
  55555. extra: 1004/943,
  55556. bottom: 58/1062
  55557. }
  55558. },
  55559. back: {
  55560. height: math.unit(5 + 9/12, "feet"),
  55561. weight: math.unit(200, "lb"),
  55562. name: "Back",
  55563. image: {
  55564. source: "./media/characters/mark-smith/back.svg",
  55565. extra: 1023/953,
  55566. bottom: 24/1047
  55567. }
  55568. },
  55569. head: {
  55570. height: math.unit(1.82, "feet"),
  55571. name: "Head",
  55572. image: {
  55573. source: "./media/characters/mark-smith/head.svg"
  55574. }
  55575. },
  55576. hand: {
  55577. height: math.unit(1.4, "feet"),
  55578. name: "Hand",
  55579. image: {
  55580. source: "./media/characters/mark-smith/hand.svg"
  55581. }
  55582. },
  55583. paw: {
  55584. height: math.unit(1.69, "feet"),
  55585. name: "Paw",
  55586. image: {
  55587. source: "./media/characters/mark-smith/paw.svg"
  55588. }
  55589. },
  55590. },
  55591. [
  55592. {
  55593. name: "Micro",
  55594. height: math.unit(0.25, "inches")
  55595. },
  55596. {
  55597. name: "Normal",
  55598. height: math.unit(5 + 9/12, "feet"),
  55599. default: true
  55600. },
  55601. {
  55602. name: "Macro",
  55603. height: math.unit(500, "feet")
  55604. },
  55605. ]
  55606. ))
  55607. characterMakers.push(() => makeCharacter(
  55608. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  55609. {
  55610. frontNude: {
  55611. height: math.unit(6, "feet"),
  55612. name: "Front (Nude)",
  55613. image: {
  55614. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  55615. extra: 1384/1321,
  55616. bottom: 57/1441
  55617. }
  55618. },
  55619. frontDressed: {
  55620. height: math.unit(6, "feet"),
  55621. name: "Front (Dressed)",
  55622. image: {
  55623. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  55624. extra: 1384/1321,
  55625. bottom: 57/1441
  55626. }
  55627. },
  55628. },
  55629. [
  55630. {
  55631. name: "Normal",
  55632. height: math.unit(6, "feet"),
  55633. default: true
  55634. },
  55635. {
  55636. name: "Maximum",
  55637. height: math.unit(1776, "feet")
  55638. },
  55639. ]
  55640. ))
  55641. characterMakers.push(() => makeCharacter(
  55642. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  55643. {
  55644. front: {
  55645. height: math.unit(2 + 4/12, "feet"),
  55646. weight: math.unit(350, "lb"),
  55647. name: "Front",
  55648. image: {
  55649. source: "./media/characters/devos/front.svg",
  55650. extra: 958/852,
  55651. bottom: 143/1101
  55652. }
  55653. },
  55654. },
  55655. [
  55656. {
  55657. name: "Base",
  55658. height: math.unit(2 + 4/12, "feet"),
  55659. default: true
  55660. },
  55661. ]
  55662. ))
  55663. characterMakers.push(() => makeCharacter(
  55664. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  55665. {
  55666. front: {
  55667. height: math.unit(9 + 2/12, "feet"),
  55668. name: "Front",
  55669. image: {
  55670. source: "./media/characters/hiveheart/front.svg",
  55671. extra: 394/364,
  55672. bottom: 65/459
  55673. }
  55674. },
  55675. back: {
  55676. height: math.unit(9 + 2/12, "feet"),
  55677. name: "Back",
  55678. image: {
  55679. source: "./media/characters/hiveheart/back.svg",
  55680. extra: 374/357,
  55681. bottom: 63/437
  55682. }
  55683. },
  55684. },
  55685. [
  55686. {
  55687. name: "Base",
  55688. height: math.unit(9 + 2/12, "feet"),
  55689. default: true
  55690. },
  55691. ]
  55692. ))
  55693. characterMakers.push(() => makeCharacter(
  55694. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  55695. {
  55696. front: {
  55697. height: math.unit(2.5, "inches"),
  55698. weight: math.unit(0.6, "oz"),
  55699. name: "Front",
  55700. image: {
  55701. source: "./media/characters/bryn/front.svg",
  55702. extra: 1480/1205,
  55703. bottom: 27/1507
  55704. }
  55705. },
  55706. back: {
  55707. height: math.unit(2.5, "inches"),
  55708. weight: math.unit(0.6, "oz"),
  55709. name: "Back",
  55710. image: {
  55711. source: "./media/characters/bryn/back.svg",
  55712. extra: 1475/1201,
  55713. bottom: 39/1514
  55714. }
  55715. },
  55716. foot: {
  55717. height: math.unit(0.4, "inches"),
  55718. name: "Foot",
  55719. image: {
  55720. source: "./media/characters/bryn/foot.svg"
  55721. }
  55722. },
  55723. },
  55724. [
  55725. {
  55726. name: "Normal",
  55727. height: math.unit(2.5, "inches"),
  55728. default: true
  55729. },
  55730. ]
  55731. ))
  55732. characterMakers.push(() => makeCharacter(
  55733. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  55734. {
  55735. side: {
  55736. height: math.unit(7, "feet"),
  55737. weight: math.unit(657, "kg"),
  55738. name: "Side",
  55739. image: {
  55740. source: "./media/characters/delta/side.svg",
  55741. extra: 781/212,
  55742. bottom: 7/788
  55743. },
  55744. extraAttributes: {
  55745. "wingspan": {
  55746. name: "Wingspan",
  55747. power: 1,
  55748. type: "length",
  55749. base: math.unit(48, "feet")
  55750. },
  55751. "length": {
  55752. name: "Length",
  55753. power: 1,
  55754. type: "length",
  55755. base: math.unit(21, "feet")
  55756. },
  55757. "pawSize": {
  55758. name: "Paw Size",
  55759. power: 2,
  55760. type: "area",
  55761. base: math.unit(1.5*1.4, "feet^2")
  55762. },
  55763. }
  55764. },
  55765. },
  55766. [
  55767. {
  55768. name: "Normal",
  55769. height: math.unit(6, "feet"),
  55770. default: true
  55771. },
  55772. ]
  55773. ))
  55774. characterMakers.push(() => makeCharacter(
  55775. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  55776. {
  55777. front: {
  55778. height: math.unit(6, "feet"),
  55779. name: "Front",
  55780. image: {
  55781. source: "./media/characters/pyrow/front.svg",
  55782. extra: 513/486,
  55783. bottom: 14/527
  55784. }
  55785. },
  55786. frontWing: {
  55787. height: math.unit(6, "feet"),
  55788. name: "Front (Wing)",
  55789. image: {
  55790. source: "./media/characters/pyrow/front-wing.svg",
  55791. extra: 539/383,
  55792. bottom: 20/559
  55793. }
  55794. },
  55795. back: {
  55796. height: math.unit(6, "feet"),
  55797. name: "Back",
  55798. image: {
  55799. source: "./media/characters/pyrow/back.svg",
  55800. extra: 500/473,
  55801. bottom: 9/509
  55802. }
  55803. },
  55804. },
  55805. [
  55806. {
  55807. name: "Normal",
  55808. height: math.unit(6, "feet"),
  55809. default: true
  55810. },
  55811. ]
  55812. ))
  55813. characterMakers.push(() => makeCharacter(
  55814. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  55815. {
  55816. front: {
  55817. height: math.unit(5, "meters"),
  55818. weight: math.unit(3, "tonnes"),
  55819. name: "Front",
  55820. image: {
  55821. source: "./media/characters/velikan/front.svg",
  55822. extra: 867/744,
  55823. bottom: 71/938
  55824. },
  55825. extraAttributes: {
  55826. "shoeSize": {
  55827. name: "Shoe Size",
  55828. power: 1,
  55829. type: "length",
  55830. base: math.unit(135, "ShoeSizeUK"),
  55831. defaultUnit: "ShoeSizeUK"
  55832. },
  55833. }
  55834. },
  55835. },
  55836. [
  55837. {
  55838. name: "Normal",
  55839. height: math.unit(5, "meters"),
  55840. default: true
  55841. },
  55842. {
  55843. name: "Macro",
  55844. height: math.unit(1, "km")
  55845. },
  55846. {
  55847. name: "Mega Macro",
  55848. height: math.unit(100, "km")
  55849. },
  55850. {
  55851. name: "Giga Macro",
  55852. height: math.unit(2, "megameters")
  55853. },
  55854. {
  55855. name: "Planetary",
  55856. height: math.unit(22, "megameters")
  55857. },
  55858. {
  55859. name: "Solar",
  55860. height: math.unit(8, "gigameters")
  55861. },
  55862. {
  55863. name: "Cosmic",
  55864. height: math.unit(10, "zettameters")
  55865. },
  55866. {
  55867. name: "Omni",
  55868. height: math.unit(9e260, "multiverses")
  55869. },
  55870. ]
  55871. ))
  55872. characterMakers.push(() => makeCharacter(
  55873. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  55874. {
  55875. front: {
  55876. height: math.unit(4 + 3/12, "feet"),
  55877. weight: math.unit(90, "lb"),
  55878. name: "Front",
  55879. image: {
  55880. source: "./media/characters/sabiki/front.svg",
  55881. extra: 1662/1423,
  55882. bottom: 65/1727
  55883. }
  55884. },
  55885. },
  55886. [
  55887. {
  55888. name: "Normal",
  55889. height: math.unit(4 + 3/12, "feet"),
  55890. default: true
  55891. },
  55892. ]
  55893. ))
  55894. characterMakers.push(() => makeCharacter(
  55895. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  55896. {
  55897. frontSfw: {
  55898. height: math.unit(2, "mm"),
  55899. name: "Front (SFW)",
  55900. image: {
  55901. source: "./media/characters/carmel/front-sfw.svg",
  55902. extra: 1131/1006,
  55903. bottom: 66/1197
  55904. }
  55905. },
  55906. frontNsfw: {
  55907. height: math.unit(2, "mm"),
  55908. name: "Front (NSFW)",
  55909. image: {
  55910. source: "./media/characters/carmel/front-nsfw.svg",
  55911. extra: 1131/1006,
  55912. bottom: 66/1197
  55913. }
  55914. },
  55915. foot: {
  55916. height: math.unit(0.3, "mm"),
  55917. name: "Foot",
  55918. image: {
  55919. source: "./media/characters/carmel/foot.svg"
  55920. }
  55921. },
  55922. tongue: {
  55923. height: math.unit(0.71, "mm"),
  55924. name: "Tongue",
  55925. image: {
  55926. source: "./media/characters/carmel/tongue.svg"
  55927. }
  55928. },
  55929. dick: {
  55930. height: math.unit(0.085, "mm"),
  55931. name: "Dick",
  55932. image: {
  55933. source: "./media/characters/carmel/dick.svg"
  55934. }
  55935. },
  55936. },
  55937. [
  55938. {
  55939. name: "Micro",
  55940. height: math.unit(2, "mm"),
  55941. default: true
  55942. },
  55943. {
  55944. name: "Normal",
  55945. height: math.unit(4 + 8/12, "feet")
  55946. },
  55947. {
  55948. name: "Mega Macro",
  55949. height: math.unit(250, "feet")
  55950. },
  55951. {
  55952. name: "BIGGER",
  55953. height: math.unit(1000, "feet")
  55954. },
  55955. {
  55956. name: "BIGGEST",
  55957. height: math.unit(2, "miles")
  55958. },
  55959. ]
  55960. ))
  55961. characterMakers.push(() => makeCharacter(
  55962. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  55963. {
  55964. front: {
  55965. height: math.unit(6.5, "feet"),
  55966. weight: math.unit(198, "lb"),
  55967. name: "Front",
  55968. image: {
  55969. source: "./media/characters/tamani/anthro.svg",
  55970. extra: 930/890,
  55971. bottom: 34/964
  55972. },
  55973. form: "anthro",
  55974. default: true
  55975. },
  55976. side: {
  55977. height: math.unit(6, "feet"),
  55978. weight: math.unit(198*2, "lb"),
  55979. name: "Side",
  55980. image: {
  55981. source: "./media/characters/tamani/feral.svg",
  55982. extra: 559/519,
  55983. bottom: 43/602
  55984. },
  55985. form: "feral"
  55986. },
  55987. },
  55988. [
  55989. {
  55990. name: "Normal",
  55991. height: math.unit(6.5, "feet"),
  55992. default: true,
  55993. form: "anthro"
  55994. },
  55995. {
  55996. name: "Normal",
  55997. height: math.unit(6, "feet"),
  55998. default: true,
  55999. form: "feral"
  56000. },
  56001. ],
  56002. {
  56003. "anthro": {
  56004. name: "Anthro",
  56005. default: true
  56006. },
  56007. "feral": {
  56008. name: "Feral",
  56009. },
  56010. }
  56011. ))
  56012. characterMakers.push(() => makeCharacter(
  56013. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56014. {
  56015. front: {
  56016. height: math.unit(4 + 1/12, "feet"),
  56017. weight: math.unit(114, "lb"),
  56018. name: "Front",
  56019. image: {
  56020. source: "./media/characters/dex/front.svg",
  56021. extra: 787/680,
  56022. bottom: 18/805
  56023. }
  56024. },
  56025. side: {
  56026. height: math.unit(4 + 1/12, "feet"),
  56027. weight: math.unit(114, "lb"),
  56028. name: "Side",
  56029. image: {
  56030. source: "./media/characters/dex/side.svg",
  56031. extra: 785/680,
  56032. bottom: 12/797
  56033. }
  56034. },
  56035. back: {
  56036. height: math.unit(4 + 1/12, "feet"),
  56037. weight: math.unit(114, "lb"),
  56038. name: "Back",
  56039. image: {
  56040. source: "./media/characters/dex/back.svg",
  56041. extra: 785/681,
  56042. bottom: 17/802
  56043. }
  56044. },
  56045. loungewear: {
  56046. height: math.unit(4 + 1/12, "feet"),
  56047. weight: math.unit(114, "lb"),
  56048. name: "Loungewear",
  56049. image: {
  56050. source: "./media/characters/dex/loungewear.svg",
  56051. extra: 787/680,
  56052. bottom: 18/805
  56053. }
  56054. },
  56055. workout: {
  56056. height: math.unit(4 + 1/12, "feet"),
  56057. weight: math.unit(114, "lb"),
  56058. name: "Workout",
  56059. image: {
  56060. source: "./media/characters/dex/workout.svg",
  56061. extra: 787/680,
  56062. bottom: 18/805
  56063. }
  56064. },
  56065. schoolUniform: {
  56066. height: math.unit(4 + 1/12, "feet"),
  56067. weight: math.unit(114, "lb"),
  56068. name: "School-uniform",
  56069. image: {
  56070. source: "./media/characters/dex/school-uniform.svg",
  56071. extra: 787/680,
  56072. bottom: 18/805
  56073. }
  56074. },
  56075. maw: {
  56076. height: math.unit(0.55, "feet"),
  56077. name: "Maw",
  56078. image: {
  56079. source: "./media/characters/dex/maw.svg"
  56080. }
  56081. },
  56082. paw: {
  56083. height: math.unit(0.87, "feet"),
  56084. name: "Paw",
  56085. image: {
  56086. source: "./media/characters/dex/paw.svg"
  56087. }
  56088. },
  56089. bust: {
  56090. height: math.unit(1.67, "feet"),
  56091. name: "Bust",
  56092. image: {
  56093. source: "./media/characters/dex/bust.svg"
  56094. }
  56095. },
  56096. },
  56097. [
  56098. {
  56099. name: "Normal",
  56100. height: math.unit(4 + 1/12, "feet"),
  56101. default: true
  56102. },
  56103. ]
  56104. ))
  56105. characterMakers.push(() => makeCharacter(
  56106. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  56107. {
  56108. front: {
  56109. height: math.unit(4 + 3/12, "feet"),
  56110. weight: math.unit(60, "lb"),
  56111. name: "Front",
  56112. image: {
  56113. source: "./media/characters/silke/front.svg",
  56114. extra: 1334/1122,
  56115. bottom: 21/1355
  56116. }
  56117. },
  56118. back: {
  56119. height: math.unit(4 + 3/12, "feet"),
  56120. weight: math.unit(60, "lb"),
  56121. name: "Back",
  56122. image: {
  56123. source: "./media/characters/silke/back.svg",
  56124. extra: 1328/1092,
  56125. bottom: 16/1344
  56126. }
  56127. },
  56128. dressed: {
  56129. height: math.unit(4 + 3/12, "feet"),
  56130. weight: math.unit(60, "lb"),
  56131. name: "Dressed",
  56132. image: {
  56133. source: "./media/characters/silke/dressed.svg",
  56134. extra: 1334/1122,
  56135. bottom: 43/1377
  56136. }
  56137. },
  56138. },
  56139. [
  56140. {
  56141. name: "Normal",
  56142. height: math.unit(4 + 3/12, "feet"),
  56143. default: true
  56144. },
  56145. ]
  56146. ))
  56147. characterMakers.push(() => makeCharacter(
  56148. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  56149. {
  56150. front: {
  56151. height: math.unit(1.58, "meters"),
  56152. weight: math.unit(47, "kg"),
  56153. name: "Front",
  56154. image: {
  56155. source: "./media/characters/wireshark/front.svg",
  56156. extra: 883/838,
  56157. bottom: 66/949
  56158. }
  56159. },
  56160. },
  56161. [
  56162. {
  56163. name: "Normal",
  56164. height: math.unit(1.58, "meters"),
  56165. default: true
  56166. },
  56167. ]
  56168. ))
  56169. characterMakers.push(() => makeCharacter(
  56170. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  56171. {
  56172. front: {
  56173. height: math.unit(6, "meters"),
  56174. weight: math.unit(15000, "kg"),
  56175. name: "Front",
  56176. image: {
  56177. source: "./media/characters/gallagher/front.svg",
  56178. extra: 532/493,
  56179. bottom: 0/532
  56180. }
  56181. },
  56182. },
  56183. [
  56184. {
  56185. name: "Normal",
  56186. height: math.unit(6, "meters"),
  56187. default: true
  56188. },
  56189. ]
  56190. ))
  56191. characterMakers.push(() => makeCharacter(
  56192. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  56193. {
  56194. front: {
  56195. height: math.unit(2.4, "meters"),
  56196. weight: math.unit(270, "kg"),
  56197. name: "Front",
  56198. image: {
  56199. source: "./media/characters/alice/front.svg",
  56200. extra: 950/900,
  56201. bottom: 36/986
  56202. }
  56203. },
  56204. side: {
  56205. height: math.unit(2.4, "meters"),
  56206. weight: math.unit(270, "kg"),
  56207. name: "Side",
  56208. image: {
  56209. source: "./media/characters/alice/side.svg",
  56210. extra: 921/876,
  56211. bottom: 19/940
  56212. }
  56213. },
  56214. dressed: {
  56215. height: math.unit(2.4, "meters"),
  56216. weight: math.unit(270, "kg"),
  56217. name: "Dressed",
  56218. image: {
  56219. source: "./media/characters/alice/dressed.svg",
  56220. extra: 905/850,
  56221. bottom: 81/986
  56222. }
  56223. },
  56224. fishnet: {
  56225. height: math.unit(2.4, "meters"),
  56226. weight: math.unit(270, "kg"),
  56227. name: "Fishnet",
  56228. image: {
  56229. source: "./media/characters/alice/fishnet.svg",
  56230. extra: 905/850,
  56231. bottom: 81/986
  56232. }
  56233. },
  56234. },
  56235. [
  56236. {
  56237. name: "Normal",
  56238. height: math.unit(2.4, "meters"),
  56239. default: true
  56240. },
  56241. ]
  56242. ))
  56243. characterMakers.push(() => makeCharacter(
  56244. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  56245. {
  56246. front: {
  56247. height: math.unit(175.25, "feet"),
  56248. name: "Front",
  56249. image: {
  56250. source: "./media/characters/fio/front.svg",
  56251. extra: 1883/1591,
  56252. bottom: 34/1917
  56253. }
  56254. },
  56255. },
  56256. [
  56257. {
  56258. name: "Normal",
  56259. height: math.unit(175.25, "cm"),
  56260. default: true
  56261. },
  56262. ]
  56263. ))
  56264. characterMakers.push(() => makeCharacter(
  56265. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  56266. {
  56267. side: {
  56268. height: math.unit(6, "meters"),
  56269. weight: math.unit(3400, "kg"),
  56270. preyCapacity: math.unit(1700, "liters"),
  56271. name: "Side",
  56272. image: {
  56273. source: "./media/characters/hass/side.svg",
  56274. extra: 1058/997,
  56275. bottom: 177/1235
  56276. }
  56277. },
  56278. feeding: {
  56279. height: math.unit(6*0.63, "meters"),
  56280. weight: math.unit(3400, "kg"),
  56281. preyCapacity: math.unit(1700, "liters"),
  56282. name: "Feeding",
  56283. image: {
  56284. source: "./media/characters/hass/feeding.svg",
  56285. extra: 689/579,
  56286. bottom: 146/835
  56287. }
  56288. },
  56289. guts: {
  56290. height: math.unit(6, "meters"),
  56291. weight: math.unit(3400, "kg"),
  56292. name: "Guts",
  56293. image: {
  56294. source: "./media/characters/hass/guts.svg",
  56295. extra: 1223/1198,
  56296. bottom: 182/1405
  56297. }
  56298. },
  56299. dickFront: {
  56300. height: math.unit(1.4, "meters"),
  56301. name: "Dick (Front)",
  56302. image: {
  56303. source: "./media/characters/hass/dick-front.svg"
  56304. }
  56305. },
  56306. dickSide: {
  56307. height: math.unit(1.3, "meters"),
  56308. name: "Dick (Side)",
  56309. image: {
  56310. source: "./media/characters/hass/dick-side.svg"
  56311. }
  56312. },
  56313. dickBack: {
  56314. height: math.unit(1.4, "meters"),
  56315. name: "Dick (Back)",
  56316. image: {
  56317. source: "./media/characters/hass/dick-back.svg"
  56318. }
  56319. },
  56320. },
  56321. [
  56322. {
  56323. name: "Normal",
  56324. height: math.unit(6, "meters"),
  56325. default: true
  56326. },
  56327. ]
  56328. ))
  56329. characterMakers.push(() => makeCharacter(
  56330. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  56331. {
  56332. front: {
  56333. height: math.unit(4, "feet"),
  56334. weight: math.unit(60, "lb"),
  56335. name: "Front",
  56336. image: {
  56337. source: "./media/characters/hickory-finnegan/front.svg",
  56338. extra: 444/411,
  56339. bottom: 10/454
  56340. }
  56341. },
  56342. side: {
  56343. height: math.unit(4, "feet"),
  56344. weight: math.unit(60, "lb"),
  56345. name: "Side",
  56346. image: {
  56347. source: "./media/characters/hickory-finnegan/side.svg",
  56348. extra: 444/411,
  56349. bottom: 10/454
  56350. }
  56351. },
  56352. back: {
  56353. height: math.unit(4, "feet"),
  56354. weight: math.unit(60, "lb"),
  56355. name: "Back",
  56356. image: {
  56357. source: "./media/characters/hickory-finnegan/back.svg",
  56358. extra: 444/411,
  56359. bottom: 10/454
  56360. }
  56361. },
  56362. },
  56363. [
  56364. {
  56365. name: "Normal",
  56366. height: math.unit(4, "feet"),
  56367. default: true
  56368. },
  56369. ]
  56370. ))
  56371. characterMakers.push(() => makeCharacter(
  56372. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  56373. {
  56374. snivy_front: {
  56375. height: math.unit(2, "feet"),
  56376. weight: math.unit(17.9, "lb"),
  56377. name: "Front",
  56378. image: {
  56379. source: "./media/characters/robin-phox/snivy-front.svg",
  56380. extra: 569/504,
  56381. bottom: 33/602
  56382. },
  56383. form: "snivy",
  56384. default: true
  56385. },
  56386. snivy_frontNsfw: {
  56387. height: math.unit(2, "feet"),
  56388. weight: math.unit(17.9, "lb"),
  56389. name: "Front (NSFW)",
  56390. image: {
  56391. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  56392. extra: 569/504,
  56393. bottom: 33/602
  56394. },
  56395. form: "snivy",
  56396. },
  56397. snivy_back: {
  56398. height: math.unit(2, "feet"),
  56399. weight: math.unit(17.9, "lb"),
  56400. name: "Back",
  56401. image: {
  56402. source: "./media/characters/robin-phox/snivy-back.svg",
  56403. extra: 577/508,
  56404. bottom: 21/598
  56405. },
  56406. form: "snivy",
  56407. },
  56408. snivy_foot: {
  56409. height: math.unit(0.68, "feet"),
  56410. name: "Foot",
  56411. image: {
  56412. source: "./media/characters/robin-phox/snivy-foot.svg"
  56413. },
  56414. form: "snivy",
  56415. },
  56416. snivy_sole: {
  56417. height: math.unit(0.68, "feet"),
  56418. name: "Sole",
  56419. image: {
  56420. source: "./media/characters/robin-phox/snivy-sole.svg"
  56421. },
  56422. form: "snivy",
  56423. },
  56424. yoshi_front: {
  56425. height: math.unit(6, "feet"),
  56426. weight: math.unit(150, "lb"),
  56427. name: "Front",
  56428. image: {
  56429. source: "./media/characters/robin-phox/yoshi-front.svg",
  56430. extra: 890/792,
  56431. bottom: 29/919
  56432. },
  56433. form: "yoshi",
  56434. default: true
  56435. },
  56436. yoshi_frontNsfw: {
  56437. height: math.unit(6, "feet"),
  56438. weight: math.unit(150, "lb"),
  56439. name: "Front (NSFW)",
  56440. image: {
  56441. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  56442. extra: 890/792,
  56443. bottom: 29/919
  56444. },
  56445. form: "yoshi",
  56446. },
  56447. yoshi_back: {
  56448. height: math.unit(6, "feet"),
  56449. weight: math.unit(150, "lb"),
  56450. name: "Back",
  56451. image: {
  56452. source: "./media/characters/robin-phox/yoshi-back.svg",
  56453. extra: 890/792,
  56454. bottom: 29/919
  56455. },
  56456. form: "yoshi",
  56457. },
  56458. yoshi_foot: {
  56459. height: math.unit(1.5, "feet"),
  56460. name: "Foot",
  56461. image: {
  56462. source: "./media/characters/robin-phox/yoshi-foot.svg"
  56463. },
  56464. form: "yoshi",
  56465. },
  56466. delphox_front: {
  56467. height: math.unit(4 + 11/12, "feet"),
  56468. weight: math.unit(86, "lb"),
  56469. name: "Front",
  56470. image: {
  56471. source: "./media/characters/robin-phox/delphox-front.svg",
  56472. extra: 1266/1069,
  56473. bottom: 32/1298
  56474. },
  56475. form: "delphox",
  56476. default: true
  56477. },
  56478. delphox_frontNsfw: {
  56479. height: math.unit(4 + 11/12, "feet"),
  56480. weight: math.unit(86, "lb"),
  56481. name: "Front (NSFW)",
  56482. image: {
  56483. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  56484. extra: 1266/1069,
  56485. bottom: 32/1298
  56486. },
  56487. form: "delphox",
  56488. },
  56489. delphox_back: {
  56490. height: math.unit(4 + 11/12, "feet"),
  56491. weight: math.unit(86, "lb"),
  56492. name: "Back",
  56493. image: {
  56494. source: "./media/characters/robin-phox/delphox-back.svg",
  56495. extra: 1269/1083,
  56496. bottom: 15/1284
  56497. },
  56498. form: "delphox",
  56499. },
  56500. mienshao_front: {
  56501. height: math.unit(4 + 7/12, "feet"),
  56502. weight: math.unit(78.3, "lb"),
  56503. name: "Front",
  56504. image: {
  56505. source: "./media/characters/robin-phox/mienshao-front.svg",
  56506. extra: 1052/970,
  56507. bottom: 108/1160
  56508. },
  56509. form: "mienshao",
  56510. default: true
  56511. },
  56512. mienshao_frontNsfw: {
  56513. height: math.unit(4 + 7/12, "feet"),
  56514. weight: math.unit(78.3, "lb"),
  56515. name: "Front (NSFW)",
  56516. image: {
  56517. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  56518. extra: 1052/970,
  56519. bottom: 108/1160
  56520. },
  56521. form: "mienshao",
  56522. },
  56523. mienshao_back: {
  56524. height: math.unit(4 + 7/12, "feet"),
  56525. weight: math.unit(78.3, "lb"),
  56526. name: "Back",
  56527. image: {
  56528. source: "./media/characters/robin-phox/mienshao-back.svg",
  56529. extra: 1102/982,
  56530. bottom: 32/1134
  56531. },
  56532. form: "mienshao",
  56533. },
  56534. inteleon_front: {
  56535. height: math.unit(6 + 3/12, "feet"),
  56536. weight: math.unit(99.6, "lb"),
  56537. name: "Front",
  56538. image: {
  56539. source: "./media/characters/robin-phox/inteleon-front.svg",
  56540. extra: 910/799,
  56541. bottom: 76/986
  56542. },
  56543. form: "inteleon",
  56544. default: true
  56545. },
  56546. inteleon_frontNsfw: {
  56547. height: math.unit(6 + 3/12, "feet"),
  56548. weight: math.unit(99.6, "lb"),
  56549. name: "Front (NSFW)",
  56550. image: {
  56551. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  56552. extra: 910/799,
  56553. bottom: 76/986
  56554. },
  56555. form: "inteleon",
  56556. },
  56557. inteleon_back: {
  56558. height: math.unit(6 + 3/12, "feet"),
  56559. weight: math.unit(99.6, "lb"),
  56560. name: "Back",
  56561. image: {
  56562. source: "./media/characters/robin-phox/inteleon-back.svg",
  56563. extra: 907/796,
  56564. bottom: 25/932
  56565. },
  56566. form: "inteleon",
  56567. },
  56568. reshiram_front: {
  56569. height: math.unit(10 + 6/12, "feet"),
  56570. weight: math.unit(727.5, "lb"),
  56571. name: "Front",
  56572. image: {
  56573. source: "./media/characters/robin-phox/reshiram-front.svg",
  56574. extra: 1198/940,
  56575. bottom: 123/1321
  56576. },
  56577. form: "reshiram",
  56578. },
  56579. reshiram_frontNsfw: {
  56580. height: math.unit(10 + 6/12, "feet"),
  56581. weight: math.unit(727.5, "lb"),
  56582. name: "Front-nsfw",
  56583. image: {
  56584. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  56585. extra: 1198/940,
  56586. bottom: 123/1321
  56587. },
  56588. form: "reshiram",
  56589. },
  56590. reshiram_back: {
  56591. height: math.unit(10 + 6/12, "feet"),
  56592. weight: math.unit(727.5, "lb"),
  56593. name: "Back",
  56594. image: {
  56595. source: "./media/characters/robin-phox/reshiram-back.svg",
  56596. extra: 1024/904,
  56597. bottom: 85/1109
  56598. },
  56599. form: "reshiram",
  56600. },
  56601. samurott_front: {
  56602. height: math.unit(8, "feet"),
  56603. weight: math.unit(208.6, "lb"),
  56604. name: "Front",
  56605. image: {
  56606. source: "./media/characters/robin-phox/samurott-front.svg",
  56607. extra: 1048/984,
  56608. bottom: 100/1148
  56609. },
  56610. form: "samurott",
  56611. },
  56612. samurott_frontNsfw: {
  56613. height: math.unit(8, "feet"),
  56614. weight: math.unit(208.6, "lb"),
  56615. name: "Front-nsfw",
  56616. image: {
  56617. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  56618. extra: 1048/984,
  56619. bottom: 100/1148
  56620. },
  56621. form: "samurott",
  56622. },
  56623. samurott_back: {
  56624. height: math.unit(8, "feet"),
  56625. weight: math.unit(208.6, "lb"),
  56626. name: "Back",
  56627. image: {
  56628. source: "./media/characters/robin-phox/samurott-back.svg",
  56629. extra: 1110/1042,
  56630. bottom: 12/1122
  56631. },
  56632. form: "samurott",
  56633. },
  56634. samurott_feral: {
  56635. height: math.unit(4 + 11/12, "feet"),
  56636. weight: math.unit(208.6, "lb"),
  56637. name: "Feral",
  56638. image: {
  56639. source: "./media/characters/robin-phox/samurott-feral.svg",
  56640. extra: 766/681,
  56641. bottom: 108/874
  56642. },
  56643. form: "samurott",
  56644. },
  56645. },
  56646. [
  56647. {
  56648. name: "Normal",
  56649. height: math.unit(2, "feet"),
  56650. default: true,
  56651. form: "snivy"
  56652. },
  56653. {
  56654. name: "Normal",
  56655. height: math.unit(6, "feet"),
  56656. default: true,
  56657. form: "yoshi"
  56658. },
  56659. {
  56660. name: "Normal",
  56661. height: math.unit(4 + 11/12, "feet"),
  56662. default: true,
  56663. form: "delphox"
  56664. },
  56665. {
  56666. name: "Normal",
  56667. height: math.unit(4 + 7/12, "feet"),
  56668. default: true,
  56669. form: "mienshao"
  56670. },
  56671. {
  56672. name: "Normal",
  56673. height: math.unit(6 + 3/12, "feet"),
  56674. default: true,
  56675. form: "inteleon"
  56676. },
  56677. {
  56678. name: "Normal",
  56679. height: math.unit(10 + 6/12, "feet"),
  56680. default: true,
  56681. form: "reshiram"
  56682. },
  56683. {
  56684. name: "Normal",
  56685. height: math.unit(8, "feet"),
  56686. default: true,
  56687. form: "samurott"
  56688. },
  56689. {
  56690. name: "Macro",
  56691. height: math.unit(500, "feet"),
  56692. allForms: true
  56693. },
  56694. {
  56695. name: "Mega Macro",
  56696. height: math.unit(10, "earths"),
  56697. allForms: true
  56698. },
  56699. {
  56700. name: "Giga Macro",
  56701. height: math.unit(1, "galaxy"),
  56702. allForms: true
  56703. },
  56704. {
  56705. name: "Godly Macro",
  56706. height: math.unit(1e10, "multiverses"),
  56707. allForms: true
  56708. },
  56709. ],
  56710. {
  56711. "snivy": {
  56712. name: "Snivy",
  56713. default: true
  56714. },
  56715. "yoshi": {
  56716. name: "Yoshi",
  56717. },
  56718. "delphox": {
  56719. name: "Delphox",
  56720. },
  56721. "mienshao": {
  56722. name: "Mienshao",
  56723. },
  56724. "inteleon": {
  56725. name: "Inteleon",
  56726. },
  56727. "reshiram": {
  56728. name: "Reshiram",
  56729. },
  56730. "samurott": {
  56731. name: "Samurott",
  56732. },
  56733. }
  56734. ))
  56735. characterMakers.push(() => makeCharacter(
  56736. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  56737. {
  56738. front: {
  56739. height: math.unit(4, "feet"),
  56740. name: "Front",
  56741. image: {
  56742. source: "./media/characters/ash-leung/front.svg",
  56743. extra: 1916/1792,
  56744. bottom: 50/1966
  56745. }
  56746. },
  56747. },
  56748. [
  56749. {
  56750. name: "Atomic",
  56751. height: math.unit(1, "angstrom")
  56752. },
  56753. {
  56754. name: "Microscopic",
  56755. height: math.unit(4000, "angstroms")
  56756. },
  56757. {
  56758. name: "Speck",
  56759. height: math.unit(1, "mm")
  56760. },
  56761. {
  56762. name: "Small",
  56763. height: math.unit(1, "inch")
  56764. },
  56765. {
  56766. name: "Normal",
  56767. height: math.unit(4, "feet"),
  56768. default: true
  56769. },
  56770. ]
  56771. ))
  56772. characterMakers.push(() => makeCharacter(
  56773. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  56774. {
  56775. frontDressed: {
  56776. height: math.unit(2.08, "meters"),
  56777. weight: math.unit(175, "lb"),
  56778. name: "Front (Dressed)",
  56779. image: {
  56780. source: "./media/characters/carie/front-dressed.svg",
  56781. extra: 456/417,
  56782. bottom: 7/463
  56783. }
  56784. },
  56785. backDressed: {
  56786. height: math.unit(2.08, "meters"),
  56787. weight: math.unit(175, "lb"),
  56788. name: "Back (Dressed)",
  56789. image: {
  56790. source: "./media/characters/carie/back-dressed.svg",
  56791. extra: 455/414,
  56792. bottom: 11/466
  56793. }
  56794. },
  56795. front: {
  56796. height: math.unit(2, "meters"),
  56797. weight: math.unit(175, "lb"),
  56798. name: "Front",
  56799. image: {
  56800. source: "./media/characters/carie/front.svg",
  56801. extra: 438/399,
  56802. bottom: 12/450
  56803. }
  56804. },
  56805. back: {
  56806. height: math.unit(2, "meters"),
  56807. weight: math.unit(175, "lb"),
  56808. name: "Back",
  56809. image: {
  56810. source: "./media/characters/carie/back.svg",
  56811. extra: 438/397,
  56812. bottom: 7/445
  56813. }
  56814. },
  56815. },
  56816. [
  56817. {
  56818. name: "Normal",
  56819. height: math.unit(2.08, "meters"),
  56820. default: true
  56821. },
  56822. {
  56823. name: "Macro",
  56824. height: math.unit(2.08e3, "meters")
  56825. },
  56826. {
  56827. name: "Mega Macro",
  56828. height: math.unit(2.08e6, "meters")
  56829. },
  56830. {
  56831. name: "Giga Macro",
  56832. height: math.unit(2.08e9, "meters")
  56833. },
  56834. {
  56835. name: "Tera Macro",
  56836. height: math.unit(2.08e12, "meters")
  56837. },
  56838. {
  56839. name: "Peta Macro",
  56840. height: math.unit(2.08e15, "meters")
  56841. },
  56842. {
  56843. name: "Exa Macro",
  56844. height: math.unit(2.08e18, "meters")
  56845. },
  56846. {
  56847. name: "Zetta Macro",
  56848. height: math.unit(2.08e21, "meters")
  56849. },
  56850. {
  56851. name: "Yotta Macro",
  56852. height: math.unit(2.08e24, "meters")
  56853. },
  56854. ]
  56855. ))
  56856. characterMakers.push(() => makeCharacter(
  56857. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  56858. {
  56859. front: {
  56860. height: math.unit(5 + 2/12, "feet"),
  56861. weight: math.unit(120, "lb"),
  56862. name: "Front",
  56863. image: {
  56864. source: "./media/characters/sai-bree/front.svg",
  56865. extra: 1843/1702,
  56866. bottom: 91/1934
  56867. }
  56868. },
  56869. back: {
  56870. height: math.unit(5 + 2/12, "feet"),
  56871. weight: math.unit(120, "lb"),
  56872. name: "Back",
  56873. image: {
  56874. source: "./media/characters/sai-bree/back.svg",
  56875. extra: 1809/1637,
  56876. bottom: 56/1865
  56877. }
  56878. },
  56879. },
  56880. [
  56881. {
  56882. name: "Normal",
  56883. height: math.unit(5 + 2/12, "feet"),
  56884. default: true
  56885. },
  56886. {
  56887. name: "Macro",
  56888. height: math.unit(500, "feet")
  56889. },
  56890. ]
  56891. ))
  56892. characterMakers.push(() => makeCharacter(
  56893. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  56894. {
  56895. side: {
  56896. height: math.unit(0.77, "meters"),
  56897. weight: math.unit(120, "lb"),
  56898. name: "Side",
  56899. image: {
  56900. source: "./media/characters/davwyn/side.svg",
  56901. extra: 1557/1225,
  56902. bottom: 131/1688
  56903. }
  56904. },
  56905. front: {
  56906. height: math.unit(0.835410, "meters"),
  56907. weight: math.unit(120, "lb"),
  56908. name: "Front",
  56909. image: {
  56910. source: "./media/characters/davwyn/front.svg",
  56911. extra: 870/843,
  56912. bottom: 175/1045
  56913. }
  56914. },
  56915. },
  56916. [
  56917. {
  56918. name: "Minidrake",
  56919. height: math.unit(0.77/4, "meters")
  56920. },
  56921. {
  56922. name: "Normal",
  56923. height: math.unit(0.77, "meters"),
  56924. default: true
  56925. },
  56926. ]
  56927. ))
  56928. characterMakers.push(() => makeCharacter(
  56929. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  56930. {
  56931. front: {
  56932. height: math.unit(10 + 3/12, "feet"),
  56933. weight: math.unit(2857, "lb"),
  56934. name: "Front",
  56935. image: {
  56936. source: "./media/characters/balans/front.svg",
  56937. extra: 427/402,
  56938. bottom: 26/453
  56939. }
  56940. },
  56941. side: {
  56942. height: math.unit(10 + 3/12, "feet"),
  56943. weight: math.unit(2857, "lb"),
  56944. name: "Side",
  56945. image: {
  56946. source: "./media/characters/balans/side.svg",
  56947. extra: 397/371,
  56948. bottom: 17/414
  56949. }
  56950. },
  56951. back: {
  56952. height: math.unit(10 + 3/12, "feet"),
  56953. weight: math.unit(2857, "lb"),
  56954. name: "Back",
  56955. image: {
  56956. source: "./media/characters/balans/back.svg",
  56957. extra: 408/381,
  56958. bottom: 14/422
  56959. }
  56960. },
  56961. hand: {
  56962. height: math.unit(1.15, "feet"),
  56963. name: "Hand",
  56964. image: {
  56965. source: "./media/characters/balans/hand.svg"
  56966. }
  56967. },
  56968. footRest: {
  56969. height: math.unit(3.1, "feet"),
  56970. name: "Foot (Rest)",
  56971. image: {
  56972. source: "./media/characters/balans/foot-rest.svg"
  56973. }
  56974. },
  56975. footActive: {
  56976. height: math.unit(3.5, "feet"),
  56977. name: "Foot (Active)",
  56978. image: {
  56979. source: "./media/characters/balans/foot-active.svg"
  56980. }
  56981. },
  56982. },
  56983. [
  56984. {
  56985. name: "Normal",
  56986. height: math.unit(10 + 3/12, "feet"),
  56987. default: true
  56988. },
  56989. ]
  56990. ))
  56991. characterMakers.push(() => makeCharacter(
  56992. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  56993. {
  56994. side: {
  56995. height: math.unit(9, "meters"),
  56996. weight: math.unit(114, "tonnes"),
  56997. name: "Side",
  56998. image: {
  56999. source: "./media/characters/eldkveikir/side.svg",
  57000. extra: 1927/338,
  57001. bottom: 42/1969
  57002. }
  57003. },
  57004. sitting: {
  57005. height: math.unit(13.4, "meters"),
  57006. weight: math.unit(114, "tonnes"),
  57007. name: "Sitting",
  57008. image: {
  57009. source: "./media/characters/eldkveikir/sitting.svg",
  57010. extra: 1108/963,
  57011. bottom: 610/1718
  57012. }
  57013. },
  57014. maw: {
  57015. height: math.unit(8.36, "meters"),
  57016. name: "Maw",
  57017. image: {
  57018. source: "./media/characters/eldkveikir/maw.svg"
  57019. }
  57020. },
  57021. hand: {
  57022. height: math.unit(4.84, "meters"),
  57023. name: "Hand",
  57024. image: {
  57025. source: "./media/characters/eldkveikir/hand.svg"
  57026. }
  57027. },
  57028. foot: {
  57029. height: math.unit(6.9, "meters"),
  57030. name: "Foot",
  57031. image: {
  57032. source: "./media/characters/eldkveikir/foot.svg"
  57033. }
  57034. },
  57035. genitals: {
  57036. height: math.unit(9.6, "meters"),
  57037. name: "Genitals",
  57038. image: {
  57039. source: "./media/characters/eldkveikir/genitals.svg"
  57040. }
  57041. },
  57042. },
  57043. [
  57044. {
  57045. name: "Normal",
  57046. height: math.unit(9, "meters"),
  57047. default: true
  57048. },
  57049. ]
  57050. ))
  57051. characterMakers.push(() => makeCharacter(
  57052. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  57053. {
  57054. front: {
  57055. height: math.unit(14, "feet"),
  57056. weight: math.unit(4100, "lb"),
  57057. name: "Front",
  57058. image: {
  57059. source: "./media/characters/arrow/front.svg",
  57060. extra: 330/318,
  57061. bottom: 56/386
  57062. }
  57063. },
  57064. },
  57065. [
  57066. {
  57067. name: "Normal",
  57068. height: math.unit(14, "feet"),
  57069. default: true
  57070. },
  57071. {
  57072. name: "Minimacro",
  57073. height: math.unit(63, "feet")
  57074. },
  57075. {
  57076. name: "Macro",
  57077. height: math.unit(630, "feet")
  57078. },
  57079. {
  57080. name: "Megamacro",
  57081. height: math.unit(12600, "feet")
  57082. },
  57083. {
  57084. name: "Gigamacro",
  57085. height: math.unit(18000, "miles")
  57086. },
  57087. ]
  57088. ))
  57089. characterMakers.push(() => makeCharacter(
  57090. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  57091. {
  57092. front: {
  57093. height: math.unit(10, "feet"),
  57094. weight: math.unit(2.4, "tons"),
  57095. name: "Front",
  57096. image: {
  57097. source: "./media/characters/3yk-k0-unit/front.svg",
  57098. extra: 573/561,
  57099. bottom: 33/606
  57100. }
  57101. },
  57102. back: {
  57103. height: math.unit(10, "feet"),
  57104. weight: math.unit(2.4, "tons"),
  57105. name: "Back",
  57106. image: {
  57107. source: "./media/characters/3yk-k0-unit/back.svg",
  57108. extra: 614/573,
  57109. bottom: 32/646
  57110. }
  57111. },
  57112. maw: {
  57113. height: math.unit(2.15, "feet"),
  57114. name: "Maw",
  57115. image: {
  57116. source: "./media/characters/3yk-k0-unit/maw.svg"
  57117. }
  57118. },
  57119. },
  57120. [
  57121. {
  57122. name: "Normal",
  57123. height: math.unit(10, "feet"),
  57124. default: true
  57125. },
  57126. ]
  57127. ))
  57128. characterMakers.push(() => makeCharacter(
  57129. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  57130. {
  57131. front: {
  57132. height: math.unit(8 + 8/12, "feet"),
  57133. name: "Front",
  57134. image: {
  57135. source: "./media/characters/nemo/front.svg",
  57136. extra: 1308/1217,
  57137. bottom: 57/1365
  57138. }
  57139. },
  57140. },
  57141. [
  57142. {
  57143. name: "Normal",
  57144. height: math.unit(8 + 8/12, "feet"),
  57145. default: true
  57146. },
  57147. ]
  57148. ))
  57149. characterMakers.push(() => makeCharacter(
  57150. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  57151. {
  57152. front: {
  57153. height: math.unit(8, "feet"),
  57154. weight: math.unit(760, "lb"),
  57155. name: "Front",
  57156. image: {
  57157. source: "./media/characters/rexx/front.svg",
  57158. extra: 786/750,
  57159. bottom: 17/803
  57160. },
  57161. extraAttributes: {
  57162. "pawLength": {
  57163. name: "Paw Length",
  57164. power: 1,
  57165. type: "length",
  57166. base: math.unit(27, "inches")
  57167. },
  57168. }
  57169. },
  57170. },
  57171. [
  57172. {
  57173. name: "Micro",
  57174. height: math.unit(2, "inches")
  57175. },
  57176. {
  57177. name: "Normal",
  57178. height: math.unit(8, "feet"),
  57179. default: true
  57180. },
  57181. {
  57182. name: "Macro",
  57183. height: math.unit(150, "feet")
  57184. },
  57185. ]
  57186. ))
  57187. characterMakers.push(() => makeCharacter(
  57188. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  57189. {
  57190. front: {
  57191. height: math.unit(18, "feet"),
  57192. weight: math.unit(1975, "lb"),
  57193. name: "Front",
  57194. image: {
  57195. source: "./media/characters/draco/front.svg",
  57196. extra: 1325/1241,
  57197. bottom: 83/1408
  57198. }
  57199. },
  57200. back: {
  57201. height: math.unit(18, "feet"),
  57202. weight: math.unit(1975, "lb"),
  57203. name: "Back",
  57204. image: {
  57205. source: "./media/characters/draco/back.svg",
  57206. extra: 1332/1250,
  57207. bottom: 43/1375
  57208. }
  57209. },
  57210. dick: {
  57211. height: math.unit(7.5, "feet"),
  57212. name: "Dick",
  57213. image: {
  57214. source: "./media/characters/draco/dick.svg"
  57215. }
  57216. },
  57217. },
  57218. [
  57219. {
  57220. name: "Normal",
  57221. height: math.unit(18, "feet"),
  57222. default: true
  57223. },
  57224. ]
  57225. ))
  57226. characterMakers.push(() => makeCharacter(
  57227. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  57228. {
  57229. front: {
  57230. height: math.unit(3.2, "meters"),
  57231. name: "Front",
  57232. image: {
  57233. source: "./media/characters/harriett/front.svg",
  57234. extra: 1966/1915,
  57235. bottom: 9/1975
  57236. }
  57237. },
  57238. },
  57239. [
  57240. {
  57241. name: "Normal",
  57242. height: math.unit(3.2, "meters"),
  57243. default: true
  57244. },
  57245. ]
  57246. ))
  57247. characterMakers.push(() => makeCharacter(
  57248. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  57249. {
  57250. sitting: {
  57251. height: math.unit(0.8, "meter"),
  57252. name: "Sitting",
  57253. image: {
  57254. source: "./media/characters/serpentus/sitting.svg",
  57255. extra: 293/290,
  57256. bottom: 140/433
  57257. }
  57258. },
  57259. },
  57260. [
  57261. {
  57262. name: "Normal",
  57263. height: math.unit(0.8, "meter"),
  57264. default: true
  57265. },
  57266. ]
  57267. ))
  57268. //characters
  57269. function makeCharacters() {
  57270. const results = [];
  57271. characterMakers.forEach(character => {
  57272. results.push(character());
  57273. });
  57274. return results;
  57275. }