less copy protection, more size visualization
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 

55737 行
1.4 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity
  51. }
  52. }
  53. if (value.energyNeed) {
  54. views[key].attributes.capacity = {
  55. name: "Food Intake",
  56. power: 3 * 3 / 4,
  57. type: "energy",
  58. base: value.energyNeed
  59. }
  60. }
  61. if (value.extraAttributes) {
  62. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  63. views[key].attributes[attrKey] = attrValue
  64. })
  65. }
  66. });
  67. return createEntityMaker(info, views, defaultSizes, forms);
  68. }
  69. const speciesData = {
  70. animal: {
  71. name: "Animal"
  72. },
  73. dog: {
  74. name: "Dog",
  75. parents: [
  76. "canine"
  77. ]
  78. },
  79. canine: {
  80. name: "Canine",
  81. parents: [
  82. "mammal"
  83. ]
  84. },
  85. crux: {
  86. name: "Crux",
  87. parents: [
  88. "mammal"
  89. ]
  90. },
  91. mammal: {
  92. name: "Mammal",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. "rough-collie": {
  98. name: "Rough Collie",
  99. parents: [
  100. "dog"
  101. ]
  102. },
  103. dragon: {
  104. name: "Dragon",
  105. parents: [
  106. "reptile"
  107. ]
  108. },
  109. reptile: {
  110. name: "Reptile",
  111. parents: [
  112. "animal"
  113. ]
  114. },
  115. woodpecker: {
  116. name: "Woodpecker",
  117. parents: [
  118. "avian"
  119. ]
  120. },
  121. avian: {
  122. name: "Avian",
  123. parents: [
  124. "animal"
  125. ]
  126. },
  127. kitsune: {
  128. name: "Kitsune",
  129. parents: [
  130. "fox"
  131. ]
  132. },
  133. fox: {
  134. name: "Fox",
  135. parents: [
  136. "mammal"
  137. ]
  138. },
  139. pokemon: {
  140. name: "Pokemon",
  141. },
  142. tiger: {
  143. name: "Tiger",
  144. parents: [
  145. "cat"
  146. ]
  147. },
  148. cat: {
  149. name: "Cat",
  150. parents: [
  151. "feliform"
  152. ]
  153. },
  154. "blue-jay": {
  155. name: "Blue Jay",
  156. parents: [
  157. "corvid"
  158. ]
  159. },
  160. wolf: {
  161. name: "Wolf",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. coyote: {
  167. name: "Coyote",
  168. parents: [
  169. "mammal"
  170. ]
  171. },
  172. raccoon: {
  173. name: "Raccoon",
  174. parents: [
  175. "mammal"
  176. ]
  177. },
  178. weasel: {
  179. name: "Weasel",
  180. parents: [
  181. "mustelid"
  182. ]
  183. },
  184. "red-panda": {
  185. name: "Red Panda",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. dolphin: {
  191. name: "Dolphin",
  192. parents: [
  193. "mammal"
  194. ]
  195. },
  196. "african-wild-dog": {
  197. name: "African Wild Dog",
  198. parents: [
  199. "canine"
  200. ]
  201. },
  202. "hyena": {
  203. name: "Hyena",
  204. parents: [
  205. "feliform"
  206. ]
  207. },
  208. "carbuncle": {
  209. name: "Carbuncle",
  210. parents: [
  211. "animal"
  212. ]
  213. },
  214. bat: {
  215. name: "Bat",
  216. parents: [
  217. "mammal"
  218. ]
  219. },
  220. "leaf-nosed-bat": {
  221. name: "Leaf-Nosed Bat",
  222. parents: [
  223. "bat"
  224. ]
  225. },
  226. "fish": {
  227. name: "Fish",
  228. parents: [
  229. "animal"
  230. ]
  231. },
  232. "ram": {
  233. name: "Ram",
  234. parents: [
  235. "mammal"
  236. ]
  237. },
  238. "demon": {
  239. name: "Demon",
  240. parents: [
  241. "supernatural"
  242. ]
  243. },
  244. "cougar": {
  245. name: "Cougar",
  246. parents: [
  247. "cat"
  248. ]
  249. },
  250. "goat": {
  251. name: "Goat",
  252. parents: [
  253. "mammal"
  254. ]
  255. },
  256. "lion": {
  257. name: "Lion",
  258. parents: [
  259. "cat"
  260. ]
  261. },
  262. "harpy-eager": {
  263. name: "Harpy Eagle",
  264. parents: [
  265. "avian"
  266. ]
  267. },
  268. "deer": {
  269. name: "Deer",
  270. parents: [
  271. "mammal"
  272. ]
  273. },
  274. "phoenix": {
  275. name: "Phoenix",
  276. parents: [
  277. "avian"
  278. ]
  279. },
  280. "aeromorph": {
  281. name: "Aeromorph",
  282. parents: [
  283. "machine"
  284. ]
  285. },
  286. "machine": {
  287. name: "Machine",
  288. },
  289. "android": {
  290. name: "Android",
  291. parents: [
  292. "machine"
  293. ]
  294. },
  295. "jackal": {
  296. name: "Jackal",
  297. parents: [
  298. "canine"
  299. ]
  300. },
  301. "corvid": {
  302. name: "Corvid",
  303. parents: [
  304. "passerine"
  305. ]
  306. },
  307. "pharaoh-hound": {
  308. name: "Pharaoh Hound",
  309. parents: [
  310. "dog"
  311. ]
  312. },
  313. "skunk": {
  314. name: "Skunk",
  315. parents: [
  316. "mammal"
  317. ]
  318. },
  319. "shark": {
  320. name: "Shark",
  321. parents: [
  322. "fish"
  323. ]
  324. },
  325. "black-panther": {
  326. name: "Black Panther",
  327. parents: [
  328. "cat"
  329. ]
  330. },
  331. "umbra": {
  332. name: "Umbra",
  333. parents: [
  334. "animal"
  335. ]
  336. },
  337. "raven": {
  338. name: "Raven",
  339. parents: [
  340. "corvid"
  341. ]
  342. },
  343. "snow-leopard": {
  344. name: "Snow Leopard",
  345. parents: [
  346. "cat"
  347. ]
  348. },
  349. "barbary-lion": {
  350. name: "Barbary Lion",
  351. parents: [
  352. "lion"
  353. ]
  354. },
  355. "dra'gal": {
  356. name: "Dra'Gal",
  357. parents: [
  358. "mammal"
  359. ]
  360. },
  361. "german-shepherd": {
  362. name: "German Shepherd",
  363. parents: [
  364. "dog"
  365. ]
  366. },
  367. "bayleef": {
  368. name: "Bayleef",
  369. parents: [
  370. "pokemon",
  371. "plant",
  372. "animal"
  373. ]
  374. },
  375. "mouse": {
  376. name: "Mouse",
  377. parents: [
  378. "rodent"
  379. ]
  380. },
  381. "rat": {
  382. name: "Rat",
  383. parents: [
  384. "mammal"
  385. ]
  386. },
  387. "hoshiko-beast": {
  388. name: "Hoshiko Beast",
  389. parents: ["animal"]
  390. },
  391. "snow-jugani": {
  392. name: "Snow Jugani",
  393. parents: ["cat"]
  394. },
  395. "patamon": {
  396. name: "Patamon",
  397. parents: ["digimon", "guinea-pig"]
  398. },
  399. "digimon": {
  400. name: "Digimon",
  401. },
  402. "jugani": {
  403. name: "Jugani",
  404. parents: ["cat"]
  405. },
  406. "luxray": {
  407. name: "Luxray",
  408. parents: ["pokemon", "lion"]
  409. },
  410. "mech": {
  411. name: "Mech",
  412. parents: ["machine"]
  413. },
  414. "zoid": {
  415. name: "Zoid",
  416. parents: ["mech"]
  417. },
  418. "monster": {
  419. name: "Monster",
  420. parents: ["animal"]
  421. },
  422. "foo-dog": {
  423. name: "Foo Dog",
  424. parents: ["mammal"]
  425. },
  426. "elephant": {
  427. name: "Elephant",
  428. parents: ["mammal"]
  429. },
  430. "eagle": {
  431. name: "Eagle",
  432. parents: ["bird-of-prey"]
  433. },
  434. "cow": {
  435. name: "Cow",
  436. parents: ["mammal"]
  437. },
  438. "crocodile": {
  439. name: "Crocodile",
  440. parents: ["reptile"]
  441. },
  442. "borzoi": {
  443. name: "Borzoi",
  444. parents: ["dog"]
  445. },
  446. "snake": {
  447. name: "Snake",
  448. parents: ["reptile"]
  449. },
  450. "horned-bush-viper": {
  451. name: "Horned Bush Viper",
  452. parents: ["viper"]
  453. },
  454. "cobra": {
  455. name: "Cobra",
  456. parents: ["snake"]
  457. },
  458. "harpy-eagle": {
  459. name: "Harpy Eagle",
  460. parents: ["eagle"]
  461. },
  462. "raptor": {
  463. name: "Raptor",
  464. parents: ["dinosaur"]
  465. },
  466. "dinosaur": {
  467. name: "Dinosaur",
  468. parents: ["reptile"]
  469. },
  470. "veilhound": {
  471. name: "Veilhound",
  472. parents: ["hellhound"]
  473. },
  474. "hellhound": {
  475. name: "Hellhound",
  476. parents: ["canine", "demon"]
  477. },
  478. "insect": {
  479. name: "Insect",
  480. parents: ["animal"]
  481. },
  482. "beetle": {
  483. name: "Beetle",
  484. parents: ["insect"]
  485. },
  486. "moth": {
  487. name: "Moth",
  488. parents: ["insect"]
  489. },
  490. "eastern-dragon": {
  491. name: "Eastern Dragon",
  492. parents: ["dragon"]
  493. },
  494. "jaguar": {
  495. name: "Jaguar",
  496. parents: ["cat"]
  497. },
  498. "horse": {
  499. name: "Horse",
  500. parents: ["mammal"]
  501. },
  502. "sergal": {
  503. name: "Sergal",
  504. parents: ["mammal", "avian", "vilous"]
  505. },
  506. "gryphon": {
  507. name: "Gryphon",
  508. parents: ["lion", "eagle"]
  509. },
  510. "robot": {
  511. name: "Robot",
  512. parents: ["machine"]
  513. },
  514. "medihound": {
  515. name: "Medihound",
  516. parents: ["robot", "dog"]
  517. },
  518. "sylveon": {
  519. name: "Sylveon",
  520. parents: ["pokemon"]
  521. },
  522. "catgirl": {
  523. name: "Catgirl",
  524. parents: ["mammal"]
  525. },
  526. "cowgirl": {
  527. name: "Cowgirl",
  528. parents: ["mammal"]
  529. },
  530. "pony": {
  531. name: "Pony",
  532. parents: ["horse"]
  533. },
  534. "rabbit": {
  535. name: "Rabbit",
  536. parents: ["leporidae"]
  537. },
  538. "fennec-fox": {
  539. name: "Fennec Fox",
  540. parents: ["fox"]
  541. },
  542. "azodian": {
  543. name: "Azodian",
  544. parents: ["mouse"]
  545. },
  546. "shiba-inu": {
  547. name: "Shiba Inu",
  548. parents: ["dog"]
  549. },
  550. "changeling": {
  551. name: "Changeling",
  552. parents: ["insect"]
  553. },
  554. "cheetah": {
  555. name: "Cheetah",
  556. parents: ["cat"]
  557. },
  558. "golden-jackal": {
  559. name: "Golden Jackal",
  560. parents: ["jackal"]
  561. },
  562. "manectric": {
  563. name: "Manectric",
  564. parents: ["pokemon", "wolf"]
  565. },
  566. "rat": {
  567. name: "Rat",
  568. parents: ["rodent"]
  569. },
  570. "rodent": {
  571. name: "Rodent",
  572. parents: ["mammal"]
  573. },
  574. "octocoon": {
  575. name: "Octocoon",
  576. parents: ["raccoon", "octopus"]
  577. },
  578. "octopus": {
  579. name: "Octopus",
  580. parents: ["fish"]
  581. },
  582. "werewolf": {
  583. name: "Werewolf",
  584. parents: ["wolf", "werebeast"]
  585. },
  586. "werebeast": {
  587. name: "Werebeast",
  588. parents: ["monster"]
  589. },
  590. "meerkat": {
  591. name: "Meerkat",
  592. parents: ["mammal"]
  593. },
  594. "human": {
  595. name: "Human",
  596. parents: ["mammal"]
  597. },
  598. "geth": {
  599. name: "Geth",
  600. parents: ["android"]
  601. },
  602. "husky": {
  603. name: "Husky",
  604. parents: ["dog"]
  605. },
  606. "long-eared-bat": {
  607. name: "Long Eared Bat",
  608. parents: ["bat"]
  609. },
  610. "lizard": {
  611. name: "Lizard",
  612. parents: ["reptile"]
  613. },
  614. "salamander": {
  615. name: "Salamander",
  616. parents: ["lizard"]
  617. },
  618. "chameleon": {
  619. name: "Chameleon",
  620. parents: ["lizard"]
  621. },
  622. "gecko": {
  623. name: "Gecko",
  624. parents: ["lizard"]
  625. },
  626. "kobold": {
  627. name: "Kobold",
  628. parents: ["reptile"]
  629. },
  630. "charizard": {
  631. name: "Charizard",
  632. parents: ["pokemon", "dragon"]
  633. },
  634. "lugia": {
  635. name: "Lugia",
  636. parents: ["pokemon", "avian"]
  637. },
  638. "cerberus": {
  639. name: "Cerberus",
  640. parents: ["dog"]
  641. },
  642. "tyrantrum": {
  643. name: "Tyrantrum",
  644. parents: ["pokemon"]
  645. },
  646. "lemur": {
  647. name: "Lemur",
  648. parents: ["mammal"]
  649. },
  650. "kelpie": {
  651. name: "Kelpie",
  652. parents: ["horse", "monster"]
  653. },
  654. "labrador": {
  655. name: "Labrador",
  656. parents: ["dog"]
  657. },
  658. "sylveon": {
  659. name: "Sylveon",
  660. parents: ["eeveelution"]
  661. },
  662. "eeveelution": {
  663. name: "Eeveelution",
  664. parents: ["pokemon", "cat"]
  665. },
  666. "polar-bear": {
  667. name: "Polar Bear",
  668. parents: ["bear"]
  669. },
  670. "bear": {
  671. name: "Bear",
  672. parents: ["mammal"]
  673. },
  674. "absol": {
  675. name: "Absol",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "wolver": {
  679. name: "Wolver",
  680. parents: ["mammal"]
  681. },
  682. "rottweiler": {
  683. name: "Rottweiler",
  684. parents: ["dog"]
  685. },
  686. "zebra": {
  687. name: "Zebra",
  688. parents: ["horse"]
  689. },
  690. "yoshi": {
  691. name: "Yoshi",
  692. parents: ["lizard"]
  693. },
  694. "lynx": {
  695. name: "Lynx",
  696. parents: ["cat"]
  697. },
  698. "unknown": {
  699. name: "Unknown",
  700. parents: []
  701. },
  702. "thylacine": {
  703. name: "Thylacine",
  704. parents: ["mammal"]
  705. },
  706. "gabumon": {
  707. name: "Gabumon",
  708. parents: ["digimon"]
  709. },
  710. "border-collie": {
  711. name: "Border Collie",
  712. parents: ["dog"]
  713. },
  714. "imp": {
  715. name: "Imp",
  716. parents: ["demon"]
  717. },
  718. "kangaroo": {
  719. name: "Kangaroo",
  720. parents: ["marsupial"]
  721. },
  722. "renamon": {
  723. name: "Renamon",
  724. parents: ["digimon", "fox"]
  725. },
  726. "candy-orca-dragon": {
  727. name: "Candy Orca Dragon",
  728. parents: ["fish", "dragon", "candy"]
  729. },
  730. "sabertooth-tiger": {
  731. name: "Sabertooth Tiger",
  732. parents: ["cat"]
  733. },
  734. "espurr": {
  735. name: "Espurr",
  736. parents: ["pokemon", "cat"]
  737. },
  738. "otter": {
  739. name: "Otter",
  740. parents: ["mustelid"]
  741. },
  742. "elemental": {
  743. name: "Elemental",
  744. parents: ["mammal"]
  745. },
  746. "mew": {
  747. name: "Mew",
  748. parents: ["pokemon"]
  749. },
  750. "goodra": {
  751. name: "Goodra",
  752. parents: ["pokemon"]
  753. },
  754. "fairy": {
  755. name: "Fairy",
  756. parents: ["magical"]
  757. },
  758. "typhlosion": {
  759. name: "Typhlosion",
  760. parents: ["pokemon"]
  761. },
  762. "magical": {
  763. name: "Magical",
  764. parents: []
  765. },
  766. "xenomorph": {
  767. name: "Xenomorph",
  768. parents: ["monster", "alien"]
  769. },
  770. "charr": {
  771. name: "Charr",
  772. parents: ["cat"]
  773. },
  774. "siberian-husky": {
  775. name: "Siberian Husky",
  776. parents: ["husky"]
  777. },
  778. "alligator": {
  779. name: "Alligator",
  780. parents: ["reptile"]
  781. },
  782. "bernese-mountain-dog": {
  783. name: "Bernese Mountain Dog",
  784. parents: ["dog"]
  785. },
  786. "reshiram": {
  787. name: "Reshiram",
  788. parents: ["pokemon", "dragon"]
  789. },
  790. "grizzly-bear": {
  791. name: "Grizzly Bear",
  792. parents: ["bear"]
  793. },
  794. "water-monitor": {
  795. name: "Water Monitor",
  796. parents: ["lizard"]
  797. },
  798. "banchofossa": {
  799. name: "Banchofossa",
  800. parents: ["mammal"]
  801. },
  802. "kirin": {
  803. name: "Kirin",
  804. parents: ["monster"]
  805. },
  806. "quilava": {
  807. name: "Quilava",
  808. parents: ["pokemon"]
  809. },
  810. "seviper": {
  811. name: "Seviper",
  812. parents: ["pokemon", "viper"]
  813. },
  814. "flying-fox": {
  815. name: "Flying Fox",
  816. parents: ["bat"]
  817. },
  818. "keynain": {
  819. name: "Keynain",
  820. parents: ["avian"]
  821. },
  822. "lucario": {
  823. name: "Lucario",
  824. parents: ["pokemon", "jackal"]
  825. },
  826. "siamese-cat": {
  827. name: "Siamese Cat",
  828. parents: ["cat"]
  829. },
  830. "spider": {
  831. name: "Spider",
  832. parents: ["insect"]
  833. },
  834. "samurott": {
  835. name: "Samurott",
  836. parents: ["pokemon", "otter"]
  837. },
  838. "megalodon": {
  839. name: "Megalodon",
  840. parents: ["shark"]
  841. },
  842. "unicorn": {
  843. name: "Unicorn",
  844. parents: ["horse"]
  845. },
  846. "greninja": {
  847. name: "Greninja",
  848. parents: ["pokemon", "frog"]
  849. },
  850. "water-dragon": {
  851. name: "Water Dragon",
  852. parents: ["dragon"]
  853. },
  854. "cross-fox": {
  855. name: "Cross Fox",
  856. parents: ["fox"]
  857. },
  858. "synth": {
  859. name: "Synth",
  860. parents: ["machine"]
  861. },
  862. "construct": {
  863. name: "Construct",
  864. parents: []
  865. },
  866. "mexican-wolf": {
  867. name: "Mexican Wolf",
  868. parents: ["wolf"]
  869. },
  870. "leopard": {
  871. name: "Leopard",
  872. parents: ["cat"]
  873. },
  874. "pig": {
  875. name: "Pig",
  876. parents: ["mammal"]
  877. },
  878. "ampharos": {
  879. name: "Ampharos",
  880. parents: ["pokemon", "sheep"]
  881. },
  882. "orca": {
  883. name: "Orca",
  884. parents: ["fish"]
  885. },
  886. "lycanroc": {
  887. name: "Lycanroc",
  888. parents: ["pokemon", "wolf"]
  889. },
  890. "surkanu": {
  891. name: "Surkanu",
  892. parents: ["monster"]
  893. },
  894. "seal": {
  895. name: "Seal",
  896. parents: ["mammal"]
  897. },
  898. "keldeo": {
  899. name: "Keldeo",
  900. parents: ["pokemon"]
  901. },
  902. "great-dane": {
  903. name: "Great Dane",
  904. parents: ["dog"]
  905. },
  906. "black-backed-jackal": {
  907. name: "Black Backed Jackal",
  908. parents: ["jackal"]
  909. },
  910. "sheep": {
  911. name: "Sheep",
  912. parents: ["mammal"]
  913. },
  914. "leopard-seal": {
  915. name: "Leopard Seal",
  916. parents: ["seal"]
  917. },
  918. "zoroark": {
  919. name: "Zoroark",
  920. parents: ["pokemon", "fox"]
  921. },
  922. "maned-wolf": {
  923. name: "Maned Wolf",
  924. parents: ["canine"]
  925. },
  926. "dracha": {
  927. name: "Dracha",
  928. parents: ["dragon"]
  929. },
  930. "wolxi": {
  931. name: "Wolxi",
  932. parents: ["mammal", "alien"]
  933. },
  934. "dratini": {
  935. name: "Dratini",
  936. parents: ["pokemon", "dragon"]
  937. },
  938. "skaven": {
  939. name: "Skaven",
  940. parents: ["rat"]
  941. },
  942. "mongoose": {
  943. name: "Mongoose",
  944. parents: ["mammal"]
  945. },
  946. "lopunny": {
  947. name: "Lopunny",
  948. parents: ["pokemon", "rabbit"]
  949. },
  950. "feraligatr": {
  951. name: "Feraligatr",
  952. parents: ["pokemon", "alligator"]
  953. },
  954. "houndoom": {
  955. name: "Houndoom",
  956. parents: ["pokemon", "dog"]
  957. },
  958. "protogen": {
  959. name: "Protogen",
  960. parents: ["machine"]
  961. },
  962. "saint-bernard": {
  963. name: "Saint Bernard",
  964. parents: ["dog"]
  965. },
  966. "crow": {
  967. name: "Crow",
  968. parents: ["corvid"]
  969. },
  970. "delphox": {
  971. name: "Delphox",
  972. parents: ["pokemon", "fox"]
  973. },
  974. "moose": {
  975. name: "Moose",
  976. parents: ["mammal"]
  977. },
  978. "joraxian": {
  979. name: "Joraxian",
  980. parents: ["monster", "canine", "demon"]
  981. },
  982. "nimbat": {
  983. name: "Nimbat",
  984. parents: ["mammal"]
  985. },
  986. "aardwolf": {
  987. name: "Aardwolf",
  988. parents: ["canine"]
  989. },
  990. "fluudrani": {
  991. name: "Fluudrani",
  992. parents: ["animal"]
  993. },
  994. "arcanine": {
  995. name: "Arcanine",
  996. parents: ["pokemon", "dog"]
  997. },
  998. "inteleon": {
  999. name: "Inteleon",
  1000. parents: ["pokemon", "fish"]
  1001. },
  1002. "ninetales": {
  1003. name: "Ninetales",
  1004. parents: ["pokemon", "kitsune"]
  1005. },
  1006. "tigrex": {
  1007. name: "Tigrex",
  1008. parents: ["tiger"]
  1009. },
  1010. "zorua": {
  1011. name: "Zorua",
  1012. parents: ["pokemon", "fox"]
  1013. },
  1014. "vulpix": {
  1015. name: "Vulpix",
  1016. parents: ["pokemon", "fox"]
  1017. },
  1018. "barghest": {
  1019. name: "Barghest",
  1020. parents: ["monster"]
  1021. },
  1022. "gray-wolf": {
  1023. name: "Gray Wolf",
  1024. parents: ["wolf"]
  1025. },
  1026. "ruppells-fox": {
  1027. name: "Rüppell's Fox",
  1028. parents: ["fox"]
  1029. },
  1030. "bull-terrier": {
  1031. name: "Bull Terrier",
  1032. parents: ["dog"]
  1033. },
  1034. "european-honey-buzzard": {
  1035. name: "European Honey Buzzard",
  1036. parents: ["avian"]
  1037. },
  1038. "t-rex": {
  1039. name: "Tyrannosaurus Rex",
  1040. parents: ["dinosaur"]
  1041. },
  1042. "mactarian": {
  1043. name: "Mactarian",
  1044. parents: ["shark", "monster"]
  1045. },
  1046. "mewtwo-y": {
  1047. name: "Mewtwo Y",
  1048. parents: ["mewtwo"]
  1049. },
  1050. "mewtwo": {
  1051. name: "Mewtwo",
  1052. parents: ["pokemon"]
  1053. },
  1054. "eevee": {
  1055. name: "Eevee",
  1056. parents: ["eeveelution"]
  1057. },
  1058. "mienshao": {
  1059. name: "Mienshao",
  1060. parents: ["pokemon"]
  1061. },
  1062. "sugar-glider": {
  1063. name: "Sugar Glider",
  1064. parents: ["opossum"]
  1065. },
  1066. "spectral-bat": {
  1067. name: "Spectral Bat",
  1068. parents: ["bat"]
  1069. },
  1070. "scolipede": {
  1071. name: "Scolipede",
  1072. parents: ["pokemon", "insect"]
  1073. },
  1074. "jackalope": {
  1075. name: "Jackalope",
  1076. parents: ["rabbit", "antelope"]
  1077. },
  1078. "caracal": {
  1079. name: "Caracal",
  1080. parents: ["cat"]
  1081. },
  1082. "stoat": {
  1083. name: "Stoat",
  1084. parents: ["mammal"]
  1085. },
  1086. "african-golden-cat": {
  1087. name: "African Golden Cat",
  1088. parents: ["cat"]
  1089. },
  1090. "gigantosaurus": {
  1091. name: "Gigantosaurus",
  1092. parents: ["dinosaur"]
  1093. },
  1094. "zorgoia": {
  1095. name: "Zorgoia",
  1096. parents: ["mammal"]
  1097. },
  1098. "monitor-lizard": {
  1099. name: "Monitor Lizard",
  1100. parents: ["lizard"]
  1101. },
  1102. "ziralkia": {
  1103. name: "Ziralkia",
  1104. parents: ["mammal"]
  1105. },
  1106. "kiiasi": {
  1107. name: "Kiiasi",
  1108. parents: ["animal"]
  1109. },
  1110. "synx": {
  1111. name: "Synx",
  1112. parents: ["monster"]
  1113. },
  1114. "panther": {
  1115. name: "Panther",
  1116. parents: ["cat"]
  1117. },
  1118. "azumarill": {
  1119. name: "Azumarill",
  1120. parents: ["pokemon"]
  1121. },
  1122. "river-snaptail": {
  1123. name: "River Snaptail",
  1124. parents: ["otter", "crocodile"]
  1125. },
  1126. "great-blue-heron": {
  1127. name: "Great Blue Heron",
  1128. parents: ["avian"]
  1129. },
  1130. "smeargle": {
  1131. name: "Smeargle",
  1132. parents: ["pokemon"]
  1133. },
  1134. "vendeilen": {
  1135. name: "Vendeilen",
  1136. parents: ["monster"]
  1137. },
  1138. "ventura": {
  1139. name: "Ventura",
  1140. parents: ["canine"]
  1141. },
  1142. "clouded-leopard": {
  1143. name: "Clouded Leopard",
  1144. parents: ["leopard"]
  1145. },
  1146. "argonian": {
  1147. name: "Argonian",
  1148. parents: ["lizard"]
  1149. },
  1150. "salazzle": {
  1151. name: "Salazzle",
  1152. parents: ["pokemon", "lizard"]
  1153. },
  1154. "je-stoff-drachen": {
  1155. name: "Je-Stoff Drachen",
  1156. parents: ["dragon"]
  1157. },
  1158. "finnish-spitz-dog": {
  1159. name: "Finnish Spitz Dog",
  1160. parents: ["dog"]
  1161. },
  1162. "gray-fox": {
  1163. name: "Gray Fox",
  1164. parents: ["fox"]
  1165. },
  1166. "opossum": {
  1167. name: "Opossum",
  1168. parents: ["mammal"]
  1169. },
  1170. "antelope": {
  1171. name: "Antelope",
  1172. parents: ["mammal"]
  1173. },
  1174. "weavile": {
  1175. name: "Weavile",
  1176. parents: ["pokemon"]
  1177. },
  1178. "pikachu": {
  1179. name: "Pikachu",
  1180. parents: ["pokemon", "mouse"]
  1181. },
  1182. "grovyle": {
  1183. name: "Grovyle",
  1184. parents: ["pokemon", "plant"]
  1185. },
  1186. "sthara": {
  1187. name: "Sthara",
  1188. parents: ["snow-leopard", "reptile"]
  1189. },
  1190. "star-warrior": {
  1191. name: "Star Warrior",
  1192. parents: ["magical"]
  1193. },
  1194. "dragonoid": {
  1195. name: "Dragonoid",
  1196. parents: ["dragon"]
  1197. },
  1198. "suicune": {
  1199. name: "Suicune",
  1200. parents: ["pokemon"]
  1201. },
  1202. "vole": {
  1203. name: "Vole",
  1204. parents: ["mammal"]
  1205. },
  1206. "blaziken": {
  1207. name: "Blaziken",
  1208. parents: ["pokemon", "avian"]
  1209. },
  1210. "buizel": {
  1211. name: "Buizel",
  1212. parents: ["pokemon", "fish"]
  1213. },
  1214. "floatzel": {
  1215. name: "Floatzel",
  1216. parents: ["pokemon", "fish"]
  1217. },
  1218. "umok": {
  1219. name: "Umok",
  1220. parents: ["avian"]
  1221. },
  1222. "sea-monster": {
  1223. name: "Sea Monster",
  1224. parents: ["monster", "fish"]
  1225. },
  1226. "egyptian-vulture": {
  1227. name: "Egyptian Vulture",
  1228. parents: ["avian"]
  1229. },
  1230. "doberman": {
  1231. name: "Doberman",
  1232. parents: ["dog"]
  1233. },
  1234. "zangoose": {
  1235. name: "Zangoose",
  1236. parents: ["pokemon", "mongoose"]
  1237. },
  1238. "mongoose": {
  1239. name: "Mongoose",
  1240. parents: ["mammal"]
  1241. },
  1242. "wickerbeast": {
  1243. name: "Wickerbeast",
  1244. parents: ["monster"]
  1245. },
  1246. "zenari": {
  1247. name: "Zenari",
  1248. parents: ["lizard"]
  1249. },
  1250. "plant": {
  1251. name: "Plant",
  1252. parents: []
  1253. },
  1254. "raskatox": {
  1255. name: "Raskatox",
  1256. parents: ["raccoon", "skunk", "cat", "fox"]
  1257. },
  1258. "mikromare": {
  1259. name: "mikromare",
  1260. parents: ["alien"]
  1261. },
  1262. "alien": {
  1263. name: "Alien",
  1264. parents: ["animal"]
  1265. },
  1266. "deity": {
  1267. name: "Deity",
  1268. parents: []
  1269. },
  1270. "skarlan": {
  1271. name: "Skarlan",
  1272. parents: ["slug", "dragon"]
  1273. },
  1274. "slug": {
  1275. name: "Slug",
  1276. parents: ["mollusk"]
  1277. },
  1278. "mollusk": {
  1279. name: "Mollusk",
  1280. parents: ["animal"]
  1281. },
  1282. "chimera": {
  1283. name: "Chimera",
  1284. parents: ["monster"]
  1285. },
  1286. "gestalt": {
  1287. name: "Gestalt",
  1288. parents: ["construct"]
  1289. },
  1290. "mimic": {
  1291. name: "Mimic",
  1292. parents: ["monster"]
  1293. },
  1294. "calico-rat": {
  1295. name: "Calico Rat",
  1296. parents: ["rat"]
  1297. },
  1298. "panda": {
  1299. name: "Panda",
  1300. parents: ["mammal"]
  1301. },
  1302. "oni": {
  1303. name: "Oni",
  1304. parents: ["monster"]
  1305. },
  1306. "pegasus": {
  1307. name: "Pegasus",
  1308. parents: ["horse"]
  1309. },
  1310. "vulpera": {
  1311. name: "Vulpera",
  1312. parents: ["fennec-fox"]
  1313. },
  1314. "ceratosaurus": {
  1315. name: "Ceratosaurus",
  1316. parents: ["dinosaur"]
  1317. },
  1318. "nykur": {
  1319. name: "Nykur",
  1320. parents: ["horse", "monster"]
  1321. },
  1322. "giraffe": {
  1323. name: "Giraffe",
  1324. parents: ["mammal"]
  1325. },
  1326. "tauren": {
  1327. name: "Tauren",
  1328. parents: ["cow"]
  1329. },
  1330. "draconi": {
  1331. name: "Draconi",
  1332. parents: ["alien", "cat", "cyborg"]
  1333. },
  1334. "dire-wolf": {
  1335. name: "Dire Wolf",
  1336. parents: ["wolf"]
  1337. },
  1338. "ferromorph": {
  1339. name: "Ferromorph",
  1340. parents: ["construct"]
  1341. },
  1342. "meowth": {
  1343. name: "Meowth",
  1344. parents: ["cat", "pokemon"]
  1345. },
  1346. "pavodragon": {
  1347. name: "Pavodragon",
  1348. parents: ["dragon"]
  1349. },
  1350. "aaltranae": {
  1351. name: "Aaltranae",
  1352. parents: ["dragon"]
  1353. },
  1354. "cyborg": {
  1355. name: "Cyborg",
  1356. parents: ["machine"]
  1357. },
  1358. "draptor": {
  1359. name: "Draptor",
  1360. parents: ["dragon"]
  1361. },
  1362. "candy": {
  1363. name: "Candy",
  1364. parents: []
  1365. },
  1366. "drenath": {
  1367. name: "Drenath",
  1368. parents: ["dragon", "snake", "rabbit"]
  1369. },
  1370. "coyju": {
  1371. name: "Coyju",
  1372. parents: ["coyote", "kaiju"]
  1373. },
  1374. "kaiju": {
  1375. name: "Kaiju",
  1376. parents: ["monster"]
  1377. },
  1378. "nickit": {
  1379. name: "Nickit",
  1380. parents: ["pokemon", "cat"]
  1381. },
  1382. "lopunny": {
  1383. name: "Lopunny",
  1384. parents: ["pokemon", "rabbit"]
  1385. },
  1386. "korean-jindo-dog": {
  1387. name: "Korean Jindo Dog",
  1388. parents: ["dog"]
  1389. },
  1390. "naga": {
  1391. name: "Naga",
  1392. parents: ["snake", "monster"]
  1393. },
  1394. "undead": {
  1395. name: "Undead",
  1396. parents: ["monster"]
  1397. },
  1398. "whale": {
  1399. name: "Whale",
  1400. parents: ["fish"]
  1401. },
  1402. "gelato-bee": {
  1403. name: "Gelato Bee",
  1404. parents: ["bee"]
  1405. },
  1406. "bee": {
  1407. name: "Bee",
  1408. parents: ["insect"]
  1409. },
  1410. "gardevoir": {
  1411. name: "Gardevoir",
  1412. parents: ["pokemon"]
  1413. },
  1414. "ant": {
  1415. name: "Ant",
  1416. parents: ["insect"]
  1417. },
  1418. "frog": {
  1419. name: "Frog",
  1420. parents: ["amphibian"]
  1421. },
  1422. "amphibian": {
  1423. name: "Amphibian",
  1424. parents: ["animal"]
  1425. },
  1426. "pangolin": {
  1427. name: "Pangolin",
  1428. parents: ["mammal"]
  1429. },
  1430. "uragi'viidorn": {
  1431. name: "Uragi'viidorn",
  1432. parents: ["avian", "bear"]
  1433. },
  1434. "gryphdelphais": {
  1435. name: "Gryphdelphais",
  1436. parents: ["dolphin", "gryphon"]
  1437. },
  1438. "plush": {
  1439. name: "Plush",
  1440. parents: ["construct"]
  1441. },
  1442. "draiger": {
  1443. name: "Draiger",
  1444. parents: ["dragon","tiger"]
  1445. },
  1446. "foxsky": {
  1447. name: "Foxsky",
  1448. parents: ["fox", "husky"]
  1449. },
  1450. "umbreon": {
  1451. name: "Umbreon",
  1452. parents: ["eeveelution"]
  1453. },
  1454. "slime-dragon": {
  1455. name: "Slime Dragon",
  1456. parents: ["dragon", "goo"]
  1457. },
  1458. "enderman": {
  1459. name: "Enderman",
  1460. parents: ["monster"]
  1461. },
  1462. "gremlin": {
  1463. name: "Gremlin",
  1464. parents: ["monster"]
  1465. },
  1466. "dragonsune": {
  1467. name: "Dragonsune",
  1468. parents: ["dragon", "kitsune"]
  1469. },
  1470. "ghost": {
  1471. name: "Ghost",
  1472. parents: ["supernatural"]
  1473. },
  1474. "false-vampire-bat": {
  1475. name: "False Vampire Bat",
  1476. parents: ["bat"]
  1477. },
  1478. "succubus": {
  1479. name: "Succubus",
  1480. parents: ["demon"]
  1481. },
  1482. "mia": {
  1483. name: "Mia",
  1484. parents: ["canine"]
  1485. },
  1486. "rainbow": {
  1487. name: "Rainbow",
  1488. parents: ["monster"]
  1489. },
  1490. "solgaleo": {
  1491. name: "Solgaleo",
  1492. parents: ["pokemon"]
  1493. },
  1494. "lucent-nargacuga": {
  1495. name: "Lucent Nargacuga",
  1496. parents: ["nargacuga"]
  1497. },
  1498. "monster-hunter": {
  1499. name: "Monster Hunter",
  1500. parents: ["monster"]
  1501. },
  1502. "leviathan": {
  1503. "name": "Leviathan",
  1504. "url": "sea-monster"
  1505. },
  1506. "bull": {
  1507. name: "Bull",
  1508. parents: ["mammal"]
  1509. },
  1510. "tanuki": {
  1511. name: "Tanuki",
  1512. parents: ["monster"]
  1513. },
  1514. "chakat": {
  1515. name: "Chakat",
  1516. parents: ["cat"]
  1517. },
  1518. "hydra": {
  1519. name: "Hydra",
  1520. parents: ["monster"]
  1521. },
  1522. "zigzagoon": {
  1523. name: "Zigzagoon",
  1524. parents: ["raccoon", "pokemon"]
  1525. },
  1526. "vulture": {
  1527. name: "Vulture",
  1528. parents: ["avian"]
  1529. },
  1530. "eastern-dragon": {
  1531. name: "Eastern Dragon",
  1532. parents: ["dragon"]
  1533. },
  1534. "gryffon": {
  1535. name: "Gryffon",
  1536. parents: ["phoenix", "red-panda"]
  1537. },
  1538. "amtsvane": {
  1539. name: "Amtsvane",
  1540. parents: ["reptile"]
  1541. },
  1542. "kigavi": {
  1543. name: "Kigavi",
  1544. parents: ["avian"]
  1545. },
  1546. "turian": {
  1547. name: "Turian",
  1548. parents: ["avian"]
  1549. },
  1550. "zeraora": {
  1551. name: "Zeraora",
  1552. parents: ["pokemon", "cat"]
  1553. },
  1554. "sandshrew": {
  1555. name: "Sandshrew",
  1556. parents: ["pokemon", "pangolin"]
  1557. },
  1558. "valais-blacknose-sheep": {
  1559. name: "Valais Blacknose Sheep",
  1560. parents: ["sheep"]
  1561. },
  1562. "novaleit": {
  1563. name: "Novaleit",
  1564. parents: ["mammal"]
  1565. },
  1566. "dunnoh": {
  1567. name: "Dunnoh",
  1568. parents: ["mammal"]
  1569. },
  1570. "lunaral-dragon": {
  1571. name: "Lunaral Dragon",
  1572. parents: ["dragon"]
  1573. },
  1574. "arctic-wolf": {
  1575. name: "Arctic Wolf",
  1576. parents: ["wolf"]
  1577. },
  1578. "donkey": {
  1579. name: "Donkey",
  1580. parents: ["horse"]
  1581. },
  1582. "chinchilla": {
  1583. name: "Chinchilla",
  1584. parents: ["rodent"]
  1585. },
  1586. "felkin": {
  1587. name: "Felkin",
  1588. parents: ["dragon"]
  1589. },
  1590. "tykeriel": {
  1591. name: "Tykeriel",
  1592. parents: ["avian"]
  1593. },
  1594. "folf": {
  1595. name: "Folf",
  1596. parents: ["fox", "wolf"]
  1597. },
  1598. "pooltoy": {
  1599. name: "Pooltoy",
  1600. parents: ["construct"]
  1601. },
  1602. "demi": {
  1603. name: "Demi",
  1604. parents: ["human"]
  1605. },
  1606. "stegosaurus": {
  1607. name: "Stegosaurus",
  1608. parents: ["dinosaur"]
  1609. },
  1610. "computer-virus": {
  1611. name: "Computer Virus",
  1612. parents: ["program"]
  1613. },
  1614. "program": {
  1615. name: "Program",
  1616. parents: ["construct"]
  1617. },
  1618. "space-springhare": {
  1619. name: "Space Springhare",
  1620. parents: ["hare"]
  1621. },
  1622. "river-drake": {
  1623. name: "River Drake",
  1624. parents: ["dragon"]
  1625. },
  1626. "djinn": {
  1627. "name": "Djinn",
  1628. "url": "supernatural"
  1629. },
  1630. "supernatural": {
  1631. name: "Supernatural",
  1632. parents: ["monster"]
  1633. },
  1634. "grasshopper-mouse": {
  1635. name: "Grasshopper Mouse",
  1636. parents: ["mouse"]
  1637. },
  1638. "somali-cat": {
  1639. name: "Somali Cat",
  1640. parents: ["cat"]
  1641. },
  1642. "minccino": {
  1643. name: "Minccino",
  1644. parents: ["pokemon", "chinchilla"]
  1645. },
  1646. "pine-marten": {
  1647. name: "Pine Marten",
  1648. parents: ["marten"]
  1649. },
  1650. "marten": {
  1651. name: "Marten",
  1652. parents: ["mustelid"]
  1653. },
  1654. "mustelid": {
  1655. name: "Mustelid",
  1656. parents: ["mammal"]
  1657. },
  1658. "caribou": {
  1659. name: "Caribou",
  1660. parents: ["deer"]
  1661. },
  1662. "gnoll": {
  1663. name: "Gnoll",
  1664. parents: ["hyena", "monster"]
  1665. },
  1666. "peacekeeper": {
  1667. name: "Peacekeeper",
  1668. parents: ["human"]
  1669. },
  1670. "river-otter": {
  1671. name: "River Otter",
  1672. parents: ["otter"]
  1673. },
  1674. "dhole": {
  1675. name: "Dhole",
  1676. parents: ["canine"]
  1677. },
  1678. "springbok": {
  1679. name: "Springbok",
  1680. parents: ["antelope"]
  1681. },
  1682. "marsupial": {
  1683. name: "Marsupial",
  1684. parents: ["mammal"]
  1685. },
  1686. "townsend-big-eared-bat": {
  1687. name: "Townsend Big-eared Bat",
  1688. parents: ["bat"]
  1689. },
  1690. "squirrel": {
  1691. name: "Squirrel",
  1692. parents: ["rodent"]
  1693. },
  1694. "magpie": {
  1695. name: "Magpie",
  1696. parents: ["corvid"]
  1697. },
  1698. "civet": {
  1699. name: "Civet",
  1700. parents: ["feliform"]
  1701. },
  1702. "feliform": {
  1703. name: "Feliform",
  1704. parents: ["mammal"]
  1705. },
  1706. "tiefling": {
  1707. name: "Tiefling",
  1708. parents: ["devil"]
  1709. },
  1710. "devil": {
  1711. name: "Devil",
  1712. parents: ["supernatural"]
  1713. },
  1714. "sika-deer": {
  1715. name: "Sika Deer",
  1716. parents: ["deer"]
  1717. },
  1718. "vaporeon": {
  1719. name: "Vaporeon",
  1720. parents: ["eeveelution"]
  1721. },
  1722. "leafeon": {
  1723. name: "Leafeon",
  1724. parents: ["eeveelution"]
  1725. },
  1726. "jolteon": {
  1727. name: "Jolteon",
  1728. parents: ["eeveelution"]
  1729. },
  1730. "spireborn": {
  1731. name: "Spireborn",
  1732. parents: ["zorgoia"]
  1733. },
  1734. "vampire": {
  1735. name: "Vampire",
  1736. parents: ["monster"]
  1737. },
  1738. "extraplanar": {
  1739. name: "Extraplanar",
  1740. parents: []
  1741. },
  1742. "goo": {
  1743. name: "Goo",
  1744. parents: []
  1745. },
  1746. "skink": {
  1747. name: "Skink",
  1748. parents: ["lizard"]
  1749. },
  1750. "bat-eared-fox": {
  1751. name: "Bat-eared Fox",
  1752. parents: ["fox"]
  1753. },
  1754. "belted-kingfisher": {
  1755. name: "Belted Kingfisher",
  1756. parents: ["avian"]
  1757. },
  1758. "omnifalcon": {
  1759. name: "Omnifalcon",
  1760. parents: ["gryphon", "falcon", "harpy-eagle"]
  1761. },
  1762. "falcon": {
  1763. name: "Falcon",
  1764. parents: ["bird-of-prey"]
  1765. },
  1766. "avali": {
  1767. name: "Avali",
  1768. parents: ["avian", "alien"]
  1769. },
  1770. "arctic-fox": {
  1771. name: "Arctic Fox",
  1772. parents: ["fox"]
  1773. },
  1774. "snow-tiger": {
  1775. name: "Snow Tiger",
  1776. parents: ["tiger"]
  1777. },
  1778. "marble-fox": {
  1779. name: "Marble Fox",
  1780. parents: ["fox"]
  1781. },
  1782. "king-wickerbeast": {
  1783. name: "King Wickerbeast",
  1784. parents: ["wickerbeast"]
  1785. },
  1786. "wickerbeast": {
  1787. name: "Wickerbeast",
  1788. parents: ["mammal"]
  1789. },
  1790. "european-polecat": {
  1791. name: "European Polecat",
  1792. parents: ["mustelid"]
  1793. },
  1794. "teshari": {
  1795. name: "Teshari",
  1796. parents: ["avian", "raptor"]
  1797. },
  1798. "alicorn": {
  1799. name: "Alicorn",
  1800. parents: ["horse"]
  1801. },
  1802. "atlas-moth": {
  1803. name: "Atlas Moth",
  1804. parents: ["moth"]
  1805. },
  1806. "owlbear": {
  1807. name: "Owlbear",
  1808. parents: ["owl", "bear", "monster"]
  1809. },
  1810. "owl": {
  1811. name: "Owl",
  1812. parents: ["avian"]
  1813. },
  1814. "silvertongue": {
  1815. name: "Silvertongue",
  1816. parents: ["reptile"]
  1817. },
  1818. "ahuizotl": {
  1819. name: "Ahuizotl",
  1820. parents: ["monster"]
  1821. },
  1822. "ender-dragon": {
  1823. name: "Ender Dragon",
  1824. parents: ["dragon"]
  1825. },
  1826. "bruhathkayosaurus": {
  1827. name: "Bruhathkayosaurus",
  1828. parents: ["sauropod"]
  1829. },
  1830. "sauropod": {
  1831. name: "Sauropod",
  1832. parents: ["dinosaur"]
  1833. },
  1834. "black-sable-antelope": {
  1835. name: "Black Sable Antelope",
  1836. parents: ["antelope"]
  1837. },
  1838. "slime": {
  1839. name: "Slime",
  1840. parents: ["goo"]
  1841. },
  1842. "utahraptor": {
  1843. name: "Utahraptor",
  1844. parents: ["raptor"]
  1845. },
  1846. "indian-giant-squirrel": {
  1847. name: "Indian Giant Squirrel",
  1848. parents: ["squirrel"]
  1849. },
  1850. "golden-retriever": {
  1851. name: "Golden Retriever",
  1852. parents: ["dog"]
  1853. },
  1854. "triceratops": {
  1855. name: "Triceratops",
  1856. parents: ["dinosaur"]
  1857. },
  1858. "drake": {
  1859. name: "Drake",
  1860. parents: ["dragon"]
  1861. },
  1862. "okapi": {
  1863. name: "Okapi",
  1864. parents: ["giraffe"]
  1865. },
  1866. "arctic-hare": {
  1867. name: "Arctic Hare",
  1868. parents: ["hare"]
  1869. },
  1870. "hare": {
  1871. name: "Hare",
  1872. parents: ["leporidae"]
  1873. },
  1874. "leporidae": {
  1875. name: "Leporidae",
  1876. parents: ["mammal"]
  1877. },
  1878. "leopard-gecko": {
  1879. name: "Leopard Gecko",
  1880. parents: ["gecko"]
  1881. },
  1882. "dreamspawn": {
  1883. name: "Dreamspawn",
  1884. parents: ["illusion"]
  1885. },
  1886. "illusion": {
  1887. name: "Illusion",
  1888. parents: []
  1889. },
  1890. "purrloin": {
  1891. name: "Purrloin",
  1892. parents: ["cat", "pokemon"]
  1893. },
  1894. "noivern": {
  1895. name: "Noivern",
  1896. parents: ["bat", "dragon", "pokemon"]
  1897. },
  1898. "hedgehog": {
  1899. name: "Hedgehog",
  1900. parents: ["mammal"]
  1901. },
  1902. "liger": {
  1903. name: "Liger",
  1904. parents: ["lion", "tiger", "hybrid"]
  1905. },
  1906. "hybrid": {
  1907. name: "Hybrid",
  1908. parents: []
  1909. },
  1910. "drider": {
  1911. name: "Drider",
  1912. parents: ["spider"]
  1913. },
  1914. "sabresune": {
  1915. name: "Sabresune",
  1916. parents: ["kitsune", "sabertooth-tiger"]
  1917. },
  1918. "ditto": {
  1919. name: "Ditto",
  1920. parents: ["pokemon", "goo"]
  1921. },
  1922. "amogus": {
  1923. name: "Amogus",
  1924. parents: ["deity"]
  1925. },
  1926. "ferret": {
  1927. name: "Ferret",
  1928. parents: ["mustelid"]
  1929. },
  1930. "guinea-pig": {
  1931. name: "Guinea Pig",
  1932. parents: ["rodent"]
  1933. },
  1934. "viper": {
  1935. name: "Viper",
  1936. parents: ["snake"]
  1937. },
  1938. "cinderace": {
  1939. name: "Cinderace",
  1940. parents: ["pokemon", "rabbit"]
  1941. },
  1942. "caudin": {
  1943. name: "Caudin",
  1944. parents: ["dragon"]
  1945. },
  1946. "red-winged-blackbird": {
  1947. name: "Red-Winged Blackbird",
  1948. parents: ["avian"]
  1949. },
  1950. "hooded-wheater": {
  1951. name: "Hooded Wheater",
  1952. parents: ["passerine"]
  1953. },
  1954. "passerine": {
  1955. name: "Passerine",
  1956. parents: ["avian"]
  1957. },
  1958. "gieeg": {
  1959. name: "Gieeg",
  1960. parents: ["alien"]
  1961. },
  1962. "ringtail": {
  1963. name: "Ringtail",
  1964. parents: ["raccoon"]
  1965. },
  1966. "hisuian-zoroark": {
  1967. name: "Hisuian Zoroark",
  1968. parents: ["zoroark", "hisuian"]
  1969. },
  1970. "hisuian": {
  1971. name: "Hisuian",
  1972. parents: ["regional-pokemon"]
  1973. },
  1974. "regional-pokemon": {
  1975. name: "Regional Pokemon",
  1976. parents: ["pokemon"]
  1977. },
  1978. "cybeast": {
  1979. name: "Cybeast",
  1980. parents: ["computer-virus"]
  1981. },
  1982. "javira-dragon": {
  1983. name: "Javira Dragon",
  1984. parents: ["dragon"]
  1985. },
  1986. "koopew": {
  1987. name: "Koopew",
  1988. parents: ["dragon", "alien"]
  1989. },
  1990. "nevrean": {
  1991. name: "Nevrean",
  1992. parents: ["avian", "vilous"]
  1993. },
  1994. "vilous": {
  1995. name: "Vilous Species",
  1996. parents: []
  1997. },
  1998. "titanoboa": {
  1999. name: "Titanoboa",
  2000. parents: ["snake"]
  2001. },
  2002. "raichu": {
  2003. name: "Raichu",
  2004. parents: ["pikachu"]
  2005. },
  2006. "taur": {
  2007. name: "Taur",
  2008. parents: []
  2009. },
  2010. "continental-giant-rabbit": {
  2011. name: "Continental Giant Rabbit",
  2012. parents: ["rabbit"]
  2013. },
  2014. "demigryph": {
  2015. name: "Demigryph",
  2016. parents: ["lion", "eagle"]
  2017. },
  2018. "bald-eagle": {
  2019. name: "Bald Eagle",
  2020. parents: ["eagle"]
  2021. },
  2022. "kestrel": {
  2023. name: "Kestrel",
  2024. parents: ["falcon"]
  2025. },
  2026. "mockingbird": {
  2027. name: "Mockingbird",
  2028. parents: ["songbird"]
  2029. },
  2030. "songbird": {
  2031. name: "Songbird",
  2032. parents: ["avian"]
  2033. },
  2034. "bird-of-prey": {
  2035. name: "Bird of Prey",
  2036. parents: ["avian"]
  2037. },
  2038. "marowak": {
  2039. name: "Marowak",
  2040. parents: ["pokemon", "reptile"]
  2041. },
  2042. "joltik": {
  2043. name: "Joltik",
  2044. parents: ["pokemon", "insect"]
  2045. },
  2046. "mink": {
  2047. name: "Mink",
  2048. parents: ["mustelid"]
  2049. },
  2050. "sandcat": {
  2051. name: "Sandcat",
  2052. parents: ["cat"]
  2053. },
  2054. "hrothgar": {
  2055. name: "Hrothgar",
  2056. parents: ["cat"]
  2057. },
  2058. "garchomp": {
  2059. name: "Garchomp",
  2060. parents: ["dragon", "pokemon"]
  2061. },
  2062. "nargacuga": {
  2063. name: "Nargacuga",
  2064. parents: ["monster-hunter"]
  2065. },
  2066. "sable": {
  2067. name: "Sable",
  2068. parents: ["marten"]
  2069. },
  2070. "deino": {
  2071. name: "Deino",
  2072. parents: ["pokemon", "dinosaur"]
  2073. },
  2074. "housecat": {
  2075. name: "Housecat",
  2076. parents: ["cat"]
  2077. },
  2078. "bombay-cat": {
  2079. name: "Bombay Cat",
  2080. parents: ["housecat"]
  2081. },
  2082. "maine-coon": {
  2083. name: "Maine Coon",
  2084. parents: ["housecat"]
  2085. },
  2086. "coelacanth": {
  2087. name: "Coelacanth",
  2088. parents: ["fish"]
  2089. },
  2090. "silvally": {
  2091. name: "Silvally",
  2092. parents: ["legendary-pokemon"]
  2093. },
  2094. "legendary-pokemon": {
  2095. name: "Legendary Pokemon",
  2096. parents: ["pokemon"]
  2097. },
  2098. "great-maccao": {
  2099. name: "Great Maccao",
  2100. parents: ["monster-hunter", "raptor"]
  2101. },
  2102. }
  2103. //species
  2104. function getSpeciesInfo(speciesList) {
  2105. let result = new Set();
  2106. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2107. result.add(entry)
  2108. });
  2109. return Array.from(result);
  2110. };
  2111. function getSpeciesInfoHelper(species) {
  2112. if (!speciesData[species]) {
  2113. console.warn(species + " doesn't exist");
  2114. return [];
  2115. }
  2116. if (speciesData[species].parents) {
  2117. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2118. } else {
  2119. return [species];
  2120. }
  2121. }
  2122. characterMakers.push(() => makeCharacter(
  2123. {
  2124. name: "Fen",
  2125. species: ["crux"],
  2126. description: {
  2127. title: "Bio",
  2128. text: "Very furry. Sheds on everything."
  2129. },
  2130. tags: [
  2131. "anthro",
  2132. "goo"
  2133. ]
  2134. },
  2135. {
  2136. front: {
  2137. height: math.unit(12, "feet"),
  2138. weight: math.unit(2400, "lb"),
  2139. preyCapacity: math.unit(1, "people"),
  2140. name: "Front",
  2141. image: {
  2142. source: "./media/characters/fen/front.svg",
  2143. extra: 1804/1562,
  2144. bottom: 205/2009
  2145. },
  2146. extraAttributes: {
  2147. pawSize: {
  2148. name: "Paw Size",
  2149. power: 2,
  2150. type: "area",
  2151. base: math.unit(0.35, "m^2")
  2152. }
  2153. }
  2154. },
  2155. diving: {
  2156. height: math.unit(4.9, "meters"),
  2157. weight: math.unit(2400, "lb"),
  2158. name: "Diving",
  2159. image: {
  2160. source: "./media/characters/fen/diving.svg"
  2161. }
  2162. },
  2163. sleeby: {
  2164. height: math.unit(3.45, "meters"),
  2165. weight: math.unit(2400, "lb"),
  2166. name: "Sleeby",
  2167. image: {
  2168. source: "./media/characters/fen/sleeby.svg"
  2169. }
  2170. },
  2171. goo: {
  2172. height: math.unit(12, "feet"),
  2173. weight: math.unit(3600, "lb"),
  2174. volume: math.unit(1000, "liters"),
  2175. preyCapacity: math.unit(6, "people"),
  2176. name: "Goo",
  2177. image: {
  2178. source: "./media/characters/fen/goo.svg",
  2179. extra: 1307/1071,
  2180. bottom: 134/1441
  2181. }
  2182. },
  2183. gooNsfw: {
  2184. height: math.unit(12, "feet"),
  2185. weight: math.unit(3750, "lb"),
  2186. volume: math.unit(1000, "liters"),
  2187. preyCapacity: math.unit(6, "people"),
  2188. name: "Goo (NSFW)",
  2189. image: {
  2190. source: "./media/characters/fen/goo-nsfw.svg",
  2191. extra: 1875/1734,
  2192. bottom: 122/1997
  2193. }
  2194. },
  2195. maw: {
  2196. height: math.unit(5.03, "feet"),
  2197. name: "Maw",
  2198. image: {
  2199. source: "./media/characters/fen/maw.svg"
  2200. }
  2201. },
  2202. gooCeiling: {
  2203. height: math.unit(6.6, "feet"),
  2204. weight: math.unit(3000, "lb"),
  2205. volume: math.unit(1000, "liters"),
  2206. preyCapacity: math.unit(6, "people"),
  2207. name: "Goo (Ceiling)",
  2208. image: {
  2209. source: "./media/characters/fen/goo-ceiling.svg"
  2210. }
  2211. },
  2212. paw: {
  2213. height: math.unit(3.77, "feet"),
  2214. name: "Paw",
  2215. image: {
  2216. source: "./media/characters/fen/paw.svg"
  2217. },
  2218. extraAttributes: {
  2219. "toeSize": {
  2220. name: "Toe Size",
  2221. power: 2,
  2222. type: "area",
  2223. base: math.unit(0.02875, "m^2")
  2224. },
  2225. "pawSize": {
  2226. name: "Paw Size",
  2227. power: 2,
  2228. type: "area",
  2229. base: math.unit(0.378, "m^2")
  2230. },
  2231. }
  2232. },
  2233. tail: {
  2234. height: math.unit(12.1, "feet"),
  2235. name: "Tail",
  2236. image: {
  2237. source: "./media/characters/fen/tail.svg"
  2238. }
  2239. },
  2240. tailFull: {
  2241. height: math.unit(12.1, "feet"),
  2242. name: "Full Tail",
  2243. image: {
  2244. source: "./media/characters/fen/tail-full.svg"
  2245. }
  2246. },
  2247. back: {
  2248. height: math.unit(12, "feet"),
  2249. weight: math.unit(2400, "lb"),
  2250. name: "Back",
  2251. image: {
  2252. source: "./media/characters/fen/back.svg",
  2253. },
  2254. info: {
  2255. description: {
  2256. mode: "append",
  2257. text: "\n\nHe is not currently looking at you."
  2258. }
  2259. }
  2260. },
  2261. full: {
  2262. height: math.unit(1.85, "meter"),
  2263. weight: math.unit(3200, "lb"),
  2264. name: "Full",
  2265. image: {
  2266. source: "./media/characters/fen/full.svg",
  2267. extra: 1133/859,
  2268. bottom: 145/1278
  2269. },
  2270. info: {
  2271. description: {
  2272. mode: "append",
  2273. text: "\n\nMunch."
  2274. }
  2275. }
  2276. },
  2277. gooLounging: {
  2278. height: math.unit(4.53, "feet"),
  2279. weight: math.unit(3000, "lb"),
  2280. preyCapacity: math.unit(6, "people"),
  2281. name: "Goo (Lounging)",
  2282. image: {
  2283. source: "./media/characters/fen/goo-lounging.svg",
  2284. bottom: 116 / 613
  2285. }
  2286. },
  2287. lounging: {
  2288. height: math.unit(10.52, "feet"),
  2289. weight: math.unit(2400, "lb"),
  2290. name: "Lounging",
  2291. image: {
  2292. source: "./media/characters/fen/lounging.svg"
  2293. }
  2294. },
  2295. },
  2296. [
  2297. {
  2298. name: "Small",
  2299. height: math.unit(2.2428, "meter")
  2300. },
  2301. {
  2302. name: "Normal",
  2303. height: math.unit(12, "feet"),
  2304. default: true,
  2305. },
  2306. {
  2307. name: "Big",
  2308. height: math.unit(20, "feet")
  2309. },
  2310. {
  2311. name: "Minimacro",
  2312. height: math.unit(40, "feet"),
  2313. info: {
  2314. description: {
  2315. mode: "append",
  2316. text: "\n\nTOO DAMN BIG"
  2317. }
  2318. }
  2319. },
  2320. {
  2321. name: "Macro",
  2322. height: math.unit(100, "feet"),
  2323. info: {
  2324. description: {
  2325. mode: "append",
  2326. text: "\n\nTOO DAMN BIG"
  2327. }
  2328. }
  2329. },
  2330. {
  2331. name: "Megamacro",
  2332. height: math.unit(2, "miles")
  2333. },
  2334. {
  2335. name: "Gigamacro",
  2336. height: math.unit(10, "earths")
  2337. },
  2338. ]
  2339. ))
  2340. characterMakers.push(() => makeCharacter(
  2341. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2342. {
  2343. front: {
  2344. height: math.unit(183, "cm"),
  2345. weight: math.unit(80, "kg"),
  2346. name: "Front",
  2347. image: {
  2348. source: "./media/characters/sofia-fluttertail/front.svg",
  2349. bottom: 0.01,
  2350. extra: 2154 / 2081
  2351. }
  2352. },
  2353. frontAlt: {
  2354. height: math.unit(183, "cm"),
  2355. weight: math.unit(80, "kg"),
  2356. name: "Front (alt)",
  2357. image: {
  2358. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2359. }
  2360. },
  2361. back: {
  2362. height: math.unit(183, "cm"),
  2363. weight: math.unit(80, "kg"),
  2364. name: "Back",
  2365. image: {
  2366. source: "./media/characters/sofia-fluttertail/back.svg"
  2367. }
  2368. },
  2369. kneeling: {
  2370. height: math.unit(125, "cm"),
  2371. weight: math.unit(80, "kg"),
  2372. name: "Kneeling",
  2373. image: {
  2374. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2375. extra: 1033 / 977,
  2376. bottom: 23.7 / 1057
  2377. }
  2378. },
  2379. maw: {
  2380. height: math.unit(183 / 5, "cm"),
  2381. name: "Maw",
  2382. image: {
  2383. source: "./media/characters/sofia-fluttertail/maw.svg"
  2384. }
  2385. },
  2386. mawcloseup: {
  2387. height: math.unit(183 / 5 * 0.41, "cm"),
  2388. name: "Maw (Closeup)",
  2389. image: {
  2390. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2391. }
  2392. },
  2393. paws: {
  2394. height: math.unit(1.17, "feet"),
  2395. name: "Paws",
  2396. image: {
  2397. source: "./media/characters/sofia-fluttertail/paws.svg",
  2398. extra: 851 / 851,
  2399. bottom: 17 / 868
  2400. }
  2401. },
  2402. },
  2403. [
  2404. {
  2405. name: "Normal",
  2406. height: math.unit(1.83, "meter")
  2407. },
  2408. {
  2409. name: "Size Thief",
  2410. height: math.unit(18, "feet")
  2411. },
  2412. {
  2413. name: "50 Foot Collie",
  2414. height: math.unit(50, "feet")
  2415. },
  2416. {
  2417. name: "Macro",
  2418. height: math.unit(96, "feet"),
  2419. default: true
  2420. },
  2421. {
  2422. name: "Megamerger",
  2423. height: math.unit(650, "feet")
  2424. },
  2425. ]
  2426. ))
  2427. characterMakers.push(() => makeCharacter(
  2428. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2429. {
  2430. front: {
  2431. height: math.unit(7, "feet"),
  2432. weight: math.unit(100, "kg"),
  2433. name: "Front",
  2434. image: {
  2435. source: "./media/characters/march/front.svg",
  2436. extra: 1992/1851,
  2437. bottom: 39/2031
  2438. }
  2439. },
  2440. foot: {
  2441. height: math.unit(0.9, "feet"),
  2442. name: "Foot",
  2443. image: {
  2444. source: "./media/characters/march/foot.svg"
  2445. }
  2446. },
  2447. },
  2448. [
  2449. {
  2450. name: "Normal",
  2451. height: math.unit(7.9, "feet")
  2452. },
  2453. {
  2454. name: "Macro",
  2455. height: math.unit(220, "meters")
  2456. },
  2457. {
  2458. name: "Megamacro",
  2459. height: math.unit(2.98, "km"),
  2460. default: true
  2461. },
  2462. {
  2463. name: "Gigamacro",
  2464. height: math.unit(15963, "km")
  2465. },
  2466. {
  2467. name: "Teramacro",
  2468. height: math.unit(2980000000, "km")
  2469. },
  2470. {
  2471. name: "Examacro",
  2472. height: math.unit(250, "parsecs")
  2473. },
  2474. ]
  2475. ))
  2476. characterMakers.push(() => makeCharacter(
  2477. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2478. {
  2479. front: {
  2480. height: math.unit(6, "feet"),
  2481. weight: math.unit(60, "kg"),
  2482. name: "Front",
  2483. image: {
  2484. source: "./media/characters/noir/front.svg",
  2485. extra: 1,
  2486. bottom: 0.032
  2487. }
  2488. },
  2489. },
  2490. [
  2491. {
  2492. name: "Normal",
  2493. height: math.unit(6.6, "feet")
  2494. },
  2495. {
  2496. name: "Macro",
  2497. height: math.unit(500, "feet")
  2498. },
  2499. {
  2500. name: "Megamacro",
  2501. height: math.unit(2.5, "km"),
  2502. default: true
  2503. },
  2504. {
  2505. name: "Gigamacro",
  2506. height: math.unit(22500, "km")
  2507. },
  2508. {
  2509. name: "Teramacro",
  2510. height: math.unit(2500000000, "km")
  2511. },
  2512. {
  2513. name: "Examacro",
  2514. height: math.unit(200, "parsecs")
  2515. },
  2516. ]
  2517. ))
  2518. characterMakers.push(() => makeCharacter(
  2519. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2520. {
  2521. front: {
  2522. height: math.unit(7, "feet"),
  2523. weight: math.unit(100, "kg"),
  2524. name: "Front",
  2525. image: {
  2526. source: "./media/characters/okuri/front.svg",
  2527. extra: 739/665,
  2528. bottom: 39/778
  2529. }
  2530. },
  2531. back: {
  2532. height: math.unit(7, "feet"),
  2533. weight: math.unit(100, "kg"),
  2534. name: "Back",
  2535. image: {
  2536. source: "./media/characters/okuri/back.svg",
  2537. extra: 734/653,
  2538. bottom: 13/747
  2539. }
  2540. },
  2541. sitting: {
  2542. height: math.unit(2.95, "feet"),
  2543. weight: math.unit(100, "kg"),
  2544. name: "Sitting",
  2545. image: {
  2546. source: "./media/characters/okuri/sitting.svg",
  2547. extra: 370/318,
  2548. bottom: 99/469
  2549. }
  2550. },
  2551. },
  2552. [
  2553. {
  2554. name: "Smallest",
  2555. height: math.unit(5 + 2/12, "feet")
  2556. },
  2557. {
  2558. name: "Smaller",
  2559. height: math.unit(300, "feet")
  2560. },
  2561. {
  2562. name: "Small",
  2563. height: math.unit(1000, "feet")
  2564. },
  2565. {
  2566. name: "Macro",
  2567. height: math.unit(1, "mile")
  2568. },
  2569. {
  2570. name: "Mega Macro (Small)",
  2571. height: math.unit(20, "km")
  2572. },
  2573. {
  2574. name: "Mega Macro (Large)",
  2575. height: math.unit(600, "km")
  2576. },
  2577. {
  2578. name: "Giga Macro",
  2579. height: math.unit(10000, "km")
  2580. },
  2581. {
  2582. name: "Normal",
  2583. height: math.unit(577560, "km"),
  2584. default: true
  2585. },
  2586. {
  2587. name: "Large",
  2588. height: math.unit(4, "galaxies")
  2589. },
  2590. {
  2591. name: "Largest",
  2592. height: math.unit(15, "multiverses")
  2593. },
  2594. ]
  2595. ))
  2596. characterMakers.push(() => makeCharacter(
  2597. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2598. {
  2599. front: {
  2600. height: math.unit(7, "feet"),
  2601. weight: math.unit(100, "kg"),
  2602. name: "Front",
  2603. image: {
  2604. source: "./media/characters/manny/front.svg",
  2605. extra: 1,
  2606. bottom: 0.06
  2607. }
  2608. },
  2609. back: {
  2610. height: math.unit(7, "feet"),
  2611. weight: math.unit(100, "kg"),
  2612. name: "Back",
  2613. image: {
  2614. source: "./media/characters/manny/back.svg",
  2615. extra: 1,
  2616. bottom: 0.014
  2617. }
  2618. },
  2619. },
  2620. [
  2621. {
  2622. name: "Normal",
  2623. height: math.unit(7, "feet"),
  2624. },
  2625. {
  2626. name: "Macro",
  2627. height: math.unit(78, "feet"),
  2628. default: true
  2629. },
  2630. {
  2631. name: "Macro+",
  2632. height: math.unit(300, "meters")
  2633. },
  2634. {
  2635. name: "Macro++",
  2636. height: math.unit(2400, "meters")
  2637. },
  2638. {
  2639. name: "Megamacro",
  2640. height: math.unit(5167, "meters")
  2641. },
  2642. {
  2643. name: "Gigamacro",
  2644. height: math.unit(41769, "miles")
  2645. },
  2646. ]
  2647. ))
  2648. characterMakers.push(() => makeCharacter(
  2649. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2650. {
  2651. front: {
  2652. height: math.unit(7, "feet"),
  2653. weight: math.unit(100, "kg"),
  2654. name: "Front",
  2655. image: {
  2656. source: "./media/characters/adake/front-1.svg"
  2657. }
  2658. },
  2659. frontAlt: {
  2660. height: math.unit(7, "feet"),
  2661. weight: math.unit(100, "kg"),
  2662. name: "Front (Alt)",
  2663. image: {
  2664. source: "./media/characters/adake/front-2.svg",
  2665. extra: 1,
  2666. bottom: 0.01
  2667. }
  2668. },
  2669. back: {
  2670. height: math.unit(7, "feet"),
  2671. weight: math.unit(100, "kg"),
  2672. name: "Back",
  2673. image: {
  2674. source: "./media/characters/adake/back.svg",
  2675. }
  2676. },
  2677. kneel: {
  2678. height: math.unit(5.385, "feet"),
  2679. weight: math.unit(100, "kg"),
  2680. name: "Kneeling",
  2681. image: {
  2682. source: "./media/characters/adake/kneel.svg",
  2683. bottom: 0.052
  2684. }
  2685. },
  2686. },
  2687. [
  2688. {
  2689. name: "Normal",
  2690. height: math.unit(7, "feet"),
  2691. },
  2692. {
  2693. name: "Macro",
  2694. height: math.unit(78, "feet"),
  2695. default: true
  2696. },
  2697. {
  2698. name: "Macro+",
  2699. height: math.unit(300, "meters")
  2700. },
  2701. {
  2702. name: "Macro++",
  2703. height: math.unit(2400, "meters")
  2704. },
  2705. {
  2706. name: "Megamacro",
  2707. height: math.unit(5167, "meters")
  2708. },
  2709. {
  2710. name: "Gigamacro",
  2711. height: math.unit(41769, "miles")
  2712. },
  2713. ]
  2714. ))
  2715. characterMakers.push(() => makeCharacter(
  2716. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2717. {
  2718. front: {
  2719. height: math.unit(1.65, "meters"),
  2720. weight: math.unit(50, "kg"),
  2721. name: "Front",
  2722. image: {
  2723. source: "./media/characters/elijah/front.svg",
  2724. extra: 858 / 830,
  2725. bottom: 95.5 / 953.8559
  2726. }
  2727. },
  2728. back: {
  2729. height: math.unit(1.65, "meters"),
  2730. weight: math.unit(50, "kg"),
  2731. name: "Back",
  2732. image: {
  2733. source: "./media/characters/elijah/back.svg",
  2734. extra: 895 / 850,
  2735. bottom: 5.3 / 897.956
  2736. }
  2737. },
  2738. frontNsfw: {
  2739. height: math.unit(1.65, "meters"),
  2740. weight: math.unit(50, "kg"),
  2741. name: "Front (NSFW)",
  2742. image: {
  2743. source: "./media/characters/elijah/front-nsfw.svg",
  2744. extra: 858 / 830,
  2745. bottom: 95.5 / 953.8559
  2746. }
  2747. },
  2748. backNsfw: {
  2749. height: math.unit(1.65, "meters"),
  2750. weight: math.unit(50, "kg"),
  2751. name: "Back (NSFW)",
  2752. image: {
  2753. source: "./media/characters/elijah/back-nsfw.svg",
  2754. extra: 895 / 850,
  2755. bottom: 5.3 / 897.956
  2756. }
  2757. },
  2758. dick: {
  2759. height: math.unit(1, "feet"),
  2760. name: "Dick",
  2761. image: {
  2762. source: "./media/characters/elijah/dick.svg"
  2763. }
  2764. },
  2765. beakOpen: {
  2766. height: math.unit(1.25, "feet"),
  2767. name: "Beak (Open)",
  2768. image: {
  2769. source: "./media/characters/elijah/beak-open.svg"
  2770. }
  2771. },
  2772. beakShut: {
  2773. height: math.unit(1.25, "feet"),
  2774. name: "Beak (Shut)",
  2775. image: {
  2776. source: "./media/characters/elijah/beak-shut.svg"
  2777. }
  2778. },
  2779. footFlexing: {
  2780. height: math.unit(1.61, "feet"),
  2781. name: "Foot (Flexing)",
  2782. image: {
  2783. source: "./media/characters/elijah/foot-flexing.svg"
  2784. }
  2785. },
  2786. footStepping: {
  2787. height: math.unit(1.44, "feet"),
  2788. name: "Foot (Stepping)",
  2789. image: {
  2790. source: "./media/characters/elijah/foot-stepping.svg"
  2791. }
  2792. },
  2793. plantigradeLeg: {
  2794. height: math.unit(2.34, "feet"),
  2795. name: "Plantigrade Leg",
  2796. image: {
  2797. source: "./media/characters/elijah/plantigrade-leg.svg"
  2798. }
  2799. },
  2800. plantigradeFootLeft: {
  2801. height: math.unit(0.9, "feet"),
  2802. name: "Plantigrade Foot (Left)",
  2803. image: {
  2804. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2805. }
  2806. },
  2807. plantigradeFootRight: {
  2808. height: math.unit(0.9, "feet"),
  2809. name: "Plantigrade Foot (Right)",
  2810. image: {
  2811. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2812. }
  2813. },
  2814. },
  2815. [
  2816. {
  2817. name: "Normal",
  2818. height: math.unit(1.65, "meters")
  2819. },
  2820. {
  2821. name: "Macro",
  2822. height: math.unit(55, "meters"),
  2823. default: true
  2824. },
  2825. {
  2826. name: "Macro+",
  2827. height: math.unit(105, "meters")
  2828. },
  2829. ]
  2830. ))
  2831. characterMakers.push(() => makeCharacter(
  2832. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2833. {
  2834. front: {
  2835. height: math.unit(7 + 2/12, "feet"),
  2836. weight: math.unit(320, "kg"),
  2837. preyCapacity: math.unit(0.276549935, "people"),
  2838. name: "Front",
  2839. image: {
  2840. source: "./media/characters/rai/front.svg",
  2841. extra: 1802/1696,
  2842. bottom: 68/1870
  2843. },
  2844. form: "anthro",
  2845. default: true
  2846. },
  2847. frontDressed: {
  2848. height: math.unit(7 + 2/12, "feet"),
  2849. weight: math.unit(320, "kg"),
  2850. preyCapacity: math.unit(0.276549935, "people"),
  2851. name: "Front (Dressed)",
  2852. image: {
  2853. source: "./media/characters/rai/front-dressed.svg",
  2854. extra: 1802/1696,
  2855. bottom: 68/1870
  2856. },
  2857. form: "anthro"
  2858. },
  2859. side: {
  2860. height: math.unit(7 + 2/12, "feet"),
  2861. weight: math.unit(320, "kg"),
  2862. preyCapacity: math.unit(0.276549935, "people"),
  2863. name: "Side",
  2864. image: {
  2865. source: "./media/characters/rai/side.svg",
  2866. extra: 1789/1710,
  2867. bottom: 115/1904
  2868. },
  2869. form: "anthro"
  2870. },
  2871. back: {
  2872. height: math.unit(7 + 2/12, "feet"),
  2873. weight: math.unit(320, "kg"),
  2874. preyCapacity: math.unit(0.276549935, "people"),
  2875. name: "Back",
  2876. image: {
  2877. source: "./media/characters/rai/back.svg",
  2878. extra: 1770/1707,
  2879. bottom: 28/1798
  2880. },
  2881. form: "anthro"
  2882. },
  2883. feral: {
  2884. height: math.unit(9.5, "feet"),
  2885. weight: math.unit(640, "kg"),
  2886. preyCapacity: math.unit(4, "people"),
  2887. name: "Feral",
  2888. image: {
  2889. source: "./media/characters/rai/feral.svg",
  2890. extra: 945/553,
  2891. bottom: 176/1121
  2892. },
  2893. form: "feral",
  2894. default: true
  2895. },
  2896. dragon: {
  2897. height: math.unit(23, "feet"),
  2898. weight: math.unit(50000, "lb"),
  2899. name: "Dragon",
  2900. image: {
  2901. source: "./media/characters/rai/dragon.svg",
  2902. extra: 2498 / 2030,
  2903. bottom: 85.2 / 2584
  2904. },
  2905. form: "dragon",
  2906. default: true
  2907. },
  2908. maw: {
  2909. height: math.unit(1.69, "feet"),
  2910. name: "Maw",
  2911. image: {
  2912. source: "./media/characters/rai/maw.svg"
  2913. },
  2914. form: "anthro"
  2915. },
  2916. },
  2917. [
  2918. {
  2919. name: "Normal",
  2920. height: math.unit(7 + 2/12, "feet"),
  2921. form: "anthro"
  2922. },
  2923. {
  2924. name: "Big",
  2925. height: math.unit(11, "feet"),
  2926. form: "anthro"
  2927. },
  2928. {
  2929. name: "Minimacro",
  2930. height: math.unit(77, "feet"),
  2931. form: "anthro"
  2932. },
  2933. {
  2934. name: "Macro",
  2935. height: math.unit(302, "feet"),
  2936. default: true,
  2937. form: "anthro"
  2938. },
  2939. {
  2940. name: "Normal",
  2941. height: math.unit(9.5, "feet"),
  2942. form: "feral",
  2943. default: true
  2944. },
  2945. {
  2946. name: "Normal",
  2947. height: math.unit(23, "feet"),
  2948. form: "dragon",
  2949. default: true
  2950. }
  2951. ],
  2952. {
  2953. "anthro": {
  2954. name: "Anthro",
  2955. default: true
  2956. },
  2957. "feral": {
  2958. name: "Feral",
  2959. },
  2960. "dragon": {
  2961. name: "Dragon",
  2962. },
  2963. }
  2964. ))
  2965. characterMakers.push(() => makeCharacter(
  2966. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2967. {
  2968. frontDressed: {
  2969. height: math.unit(216, "feet"),
  2970. weight: math.unit(7000000, "lb"),
  2971. preyCapacity: math.unit(1321, "people"),
  2972. name: "Front (Dressed)",
  2973. image: {
  2974. source: "./media/characters/jazzy/front-dressed.svg",
  2975. extra: 2738 / 2651,
  2976. bottom: 41.8 / 2786
  2977. }
  2978. },
  2979. backDressed: {
  2980. height: math.unit(216, "feet"),
  2981. weight: math.unit(7000000, "lb"),
  2982. preyCapacity: math.unit(1321, "people"),
  2983. name: "Back (Dressed)",
  2984. image: {
  2985. source: "./media/characters/jazzy/back-dressed.svg",
  2986. extra: 2775 / 2673,
  2987. bottom: 36.8 / 2817
  2988. }
  2989. },
  2990. front: {
  2991. height: math.unit(216, "feet"),
  2992. weight: math.unit(7000000, "lb"),
  2993. preyCapacity: math.unit(1321, "people"),
  2994. name: "Front",
  2995. image: {
  2996. source: "./media/characters/jazzy/front.svg",
  2997. extra: 2738 / 2651,
  2998. bottom: 41.8 / 2786
  2999. }
  3000. },
  3001. back: {
  3002. height: math.unit(216, "feet"),
  3003. weight: math.unit(7000000, "lb"),
  3004. preyCapacity: math.unit(1321, "people"),
  3005. name: "Back",
  3006. image: {
  3007. source: "./media/characters/jazzy/back.svg",
  3008. extra: 2775 / 2673,
  3009. bottom: 36.8 / 2817
  3010. }
  3011. },
  3012. maw: {
  3013. height: math.unit(20, "feet"),
  3014. name: "Maw",
  3015. image: {
  3016. source: "./media/characters/jazzy/maw.svg"
  3017. }
  3018. },
  3019. paws: {
  3020. height: math.unit(27.5, "feet"),
  3021. name: "Paws",
  3022. image: {
  3023. source: "./media/characters/jazzy/paws.svg"
  3024. }
  3025. },
  3026. eye: {
  3027. height: math.unit(4.4, "feet"),
  3028. name: "Eye",
  3029. image: {
  3030. source: "./media/characters/jazzy/eye.svg"
  3031. }
  3032. },
  3033. droneOffense: {
  3034. height: math.unit(9.5, "inches"),
  3035. name: "Drone (Offense)",
  3036. image: {
  3037. source: "./media/characters/jazzy/drone-offense.svg"
  3038. }
  3039. },
  3040. droneRecon: {
  3041. height: math.unit(9.5, "inches"),
  3042. name: "Drone (Recon)",
  3043. image: {
  3044. source: "./media/characters/jazzy/drone-recon.svg"
  3045. }
  3046. },
  3047. droneDefense: {
  3048. height: math.unit(9.5, "inches"),
  3049. name: "Drone (Defense)",
  3050. image: {
  3051. source: "./media/characters/jazzy/drone-defense.svg"
  3052. }
  3053. },
  3054. },
  3055. [
  3056. {
  3057. name: "Macro",
  3058. height: math.unit(216, "feet"),
  3059. default: true
  3060. },
  3061. ]
  3062. ))
  3063. characterMakers.push(() => makeCharacter(
  3064. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3065. {
  3066. front: {
  3067. height: math.unit(9 + 6/12, "feet"),
  3068. weight: math.unit(700, "lb"),
  3069. name: "Front",
  3070. image: {
  3071. source: "./media/characters/flamm/front.svg",
  3072. extra: 1751/1632,
  3073. bottom: 46/1797
  3074. }
  3075. },
  3076. buff: {
  3077. height: math.unit(9 + 6/12, "feet"),
  3078. weight: math.unit(950, "lb"),
  3079. name: "Buff",
  3080. image: {
  3081. source: "./media/characters/flamm/buff.svg",
  3082. extra: 3018/2874,
  3083. bottom: 221/3239
  3084. }
  3085. },
  3086. },
  3087. [
  3088. {
  3089. name: "Normal",
  3090. height: math.unit(9.5, "feet")
  3091. },
  3092. {
  3093. name: "Macro",
  3094. height: math.unit(200, "feet"),
  3095. default: true
  3096. },
  3097. ]
  3098. ))
  3099. characterMakers.push(() => makeCharacter(
  3100. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3101. {
  3102. front: {
  3103. height: math.unit(5 + 3/12, "feet"),
  3104. weight: math.unit(60, "kg"),
  3105. name: "Front",
  3106. image: {
  3107. source: "./media/characters/zephiro/front.svg",
  3108. extra: 1873/1761,
  3109. bottom: 147/2020
  3110. }
  3111. },
  3112. side: {
  3113. height: math.unit(5 + 3/12, "feet"),
  3114. weight: math.unit(60, "kg"),
  3115. name: "Side",
  3116. image: {
  3117. source: "./media/characters/zephiro/side.svg",
  3118. extra: 1929/1827,
  3119. bottom: 65/1994
  3120. }
  3121. },
  3122. back: {
  3123. height: math.unit(5 + 3/12, "feet"),
  3124. weight: math.unit(60, "kg"),
  3125. name: "Back",
  3126. image: {
  3127. source: "./media/characters/zephiro/back.svg",
  3128. extra: 1926/1816,
  3129. bottom: 41/1967
  3130. }
  3131. },
  3132. hand: {
  3133. height: math.unit(0.68, "feet"),
  3134. name: "Hand",
  3135. image: {
  3136. source: "./media/characters/zephiro/hand.svg"
  3137. }
  3138. },
  3139. paw: {
  3140. height: math.unit(1, "feet"),
  3141. name: "Paw",
  3142. image: {
  3143. source: "./media/characters/zephiro/paw.svg"
  3144. }
  3145. },
  3146. beans: {
  3147. height: math.unit(0.93, "feet"),
  3148. name: "Beans",
  3149. image: {
  3150. source: "./media/characters/zephiro/beans.svg"
  3151. }
  3152. },
  3153. },
  3154. [
  3155. {
  3156. name: "Micro",
  3157. height: math.unit(3, "inches")
  3158. },
  3159. {
  3160. name: "Normal",
  3161. height: math.unit(5 + 3 / 12, "feet"),
  3162. default: true
  3163. },
  3164. {
  3165. name: "Macro",
  3166. height: math.unit(118, "feet")
  3167. },
  3168. ]
  3169. ))
  3170. characterMakers.push(() => makeCharacter(
  3171. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3172. {
  3173. front: {
  3174. height: math.unit(5, "feet"),
  3175. weight: math.unit(90, "kg"),
  3176. preyCapacity: math.unit(14, "people"),
  3177. name: "Front",
  3178. image: {
  3179. source: "./media/characters/fory/front.svg",
  3180. extra: 2862 / 2674,
  3181. bottom: 180 / 3043.8
  3182. },
  3183. form: "weaselbun",
  3184. default: true,
  3185. extraAttributes: {
  3186. "pawSize": {
  3187. name: "Paw Size",
  3188. power: 2,
  3189. type: "area",
  3190. base: math.unit(0.1596, "m^2")
  3191. },
  3192. "pawLength": {
  3193. name: "Paw Length",
  3194. power: 1,
  3195. type: "length",
  3196. base: math.unit(0.7, "m")
  3197. }
  3198. }
  3199. },
  3200. back: {
  3201. height: math.unit(5, "feet"),
  3202. weight: math.unit(90, "kg"),
  3203. preyCapacity: math.unit(14, "people"),
  3204. name: "Back",
  3205. image: {
  3206. source: "./media/characters/fory/back.svg",
  3207. extra: 1790/1672,
  3208. bottom: 84/1874
  3209. },
  3210. form: "weaselbun",
  3211. extraAttributes: {
  3212. "pawSize": {
  3213. name: "Paw Size",
  3214. power: 2,
  3215. type: "area",
  3216. base: math.unit(0.1596, "m^2")
  3217. },
  3218. "pawLength": {
  3219. name: "Paw Length",
  3220. power: 1,
  3221. type: "length",
  3222. base: math.unit(0.7, "m")
  3223. }
  3224. }
  3225. },
  3226. paw: {
  3227. height: math.unit(2.14, "feet"),
  3228. name: "Paw",
  3229. image: {
  3230. source: "./media/characters/fory/paw.svg"
  3231. },
  3232. form: "weaselbun",
  3233. extraAttributes: {
  3234. "pawSize": {
  3235. name: "Paw Size",
  3236. power: 2,
  3237. type: "area",
  3238. base: math.unit(0.1596, "m^2")
  3239. },
  3240. "pawLength": {
  3241. name: "Paw Length",
  3242. power: 1,
  3243. type: "length",
  3244. base: math.unit(0.48, "m")
  3245. }
  3246. }
  3247. },
  3248. bunBack: {
  3249. height: math.unit(3, "feet"),
  3250. weight: math.unit(20, "kg"),
  3251. preyCapacity: math.unit(3, "people"),
  3252. name: "Back",
  3253. image: {
  3254. source: "./media/characters/fory/bun-back.svg",
  3255. extra: 1749/1564,
  3256. bottom: 246/1995
  3257. },
  3258. form: "bun",
  3259. default: true,
  3260. extraAttributes: {
  3261. "pawSize": {
  3262. name: "Paw Size",
  3263. power: 2,
  3264. type: "area",
  3265. base: math.unit(0.072, "m^2")
  3266. },
  3267. "pawLength": {
  3268. name: "Paw Length",
  3269. power: 1,
  3270. type: "length",
  3271. base: math.unit(0.45, "m")
  3272. }
  3273. }
  3274. },
  3275. },
  3276. [
  3277. {
  3278. name: "Normal",
  3279. height: math.unit(5, "feet"),
  3280. form: "weaselbun"
  3281. },
  3282. {
  3283. name: "Macro",
  3284. height: math.unit(50, "feet"),
  3285. default: true,
  3286. form: "weaselbun"
  3287. },
  3288. {
  3289. name: "Megamacro",
  3290. height: math.unit(10, "miles"),
  3291. form: "weaselbun"
  3292. },
  3293. {
  3294. name: "Gigamacro",
  3295. height: math.unit(5, "earths"),
  3296. form: "weaselbun"
  3297. },
  3298. {
  3299. name: "Normal",
  3300. height: math.unit(3, "feet"),
  3301. default: true,
  3302. form: "bun"
  3303. },
  3304. {
  3305. name: "Fun-Size",
  3306. height: math.unit(12, "feet"),
  3307. form: "bun"
  3308. },
  3309. {
  3310. name: "Macro",
  3311. height: math.unit(100, "feet"),
  3312. form: "bun"
  3313. },
  3314. {
  3315. name: "Planetary",
  3316. height: math.unit(3, "earths"),
  3317. form: "bun"
  3318. },
  3319. ],
  3320. {
  3321. "weaselbun": {
  3322. name: "Weaselbun",
  3323. default: true
  3324. },
  3325. "bun": {
  3326. name: "Bun",
  3327. },
  3328. }
  3329. ))
  3330. characterMakers.push(() => makeCharacter(
  3331. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3332. {
  3333. front: {
  3334. height: math.unit(7, "feet"),
  3335. weight: math.unit(90, "kg"),
  3336. name: "Front",
  3337. image: {
  3338. source: "./media/characters/kurrikage/front.svg",
  3339. extra: 1845/1733,
  3340. bottom: 119/1964
  3341. }
  3342. },
  3343. back: {
  3344. height: math.unit(7, "feet"),
  3345. weight: math.unit(90, "kg"),
  3346. name: "Back",
  3347. image: {
  3348. source: "./media/characters/kurrikage/back.svg",
  3349. extra: 1790/1677,
  3350. bottom: 61/1851
  3351. }
  3352. },
  3353. dressed: {
  3354. height: math.unit(7, "feet"),
  3355. weight: math.unit(90, "kg"),
  3356. name: "Dressed",
  3357. image: {
  3358. source: "./media/characters/kurrikage/dressed.svg",
  3359. extra: 1845/1733,
  3360. bottom: 119/1964
  3361. }
  3362. },
  3363. foot: {
  3364. height: math.unit(1.5, "feet"),
  3365. name: "Foot",
  3366. image: {
  3367. source: "./media/characters/kurrikage/foot.svg"
  3368. }
  3369. },
  3370. staff: {
  3371. height: math.unit(6.7, "feet"),
  3372. name: "Staff",
  3373. image: {
  3374. source: "./media/characters/kurrikage/staff.svg"
  3375. }
  3376. },
  3377. peek: {
  3378. height: math.unit(1.05, "feet"),
  3379. name: "Peeking",
  3380. image: {
  3381. source: "./media/characters/kurrikage/peek.svg",
  3382. bottom: 0.08
  3383. }
  3384. },
  3385. },
  3386. [
  3387. {
  3388. name: "Normal",
  3389. height: math.unit(12, "feet"),
  3390. default: true
  3391. },
  3392. {
  3393. name: "Big",
  3394. height: math.unit(20, "feet")
  3395. },
  3396. {
  3397. name: "Macro",
  3398. height: math.unit(500, "feet")
  3399. },
  3400. {
  3401. name: "Megamacro",
  3402. height: math.unit(20, "miles")
  3403. },
  3404. ]
  3405. ))
  3406. characterMakers.push(() => makeCharacter(
  3407. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3408. {
  3409. front: {
  3410. height: math.unit(6, "feet"),
  3411. weight: math.unit(75, "kg"),
  3412. name: "Front",
  3413. image: {
  3414. source: "./media/characters/shingo/front.svg",
  3415. extra: 1900/1825,
  3416. bottom: 82/1982
  3417. }
  3418. },
  3419. side: {
  3420. height: math.unit(6, "feet"),
  3421. weight: math.unit(75, "kg"),
  3422. name: "Side",
  3423. image: {
  3424. source: "./media/characters/shingo/side.svg",
  3425. extra: 1930/1865,
  3426. bottom: 16/1946
  3427. }
  3428. },
  3429. back: {
  3430. height: math.unit(6, "feet"),
  3431. weight: math.unit(75, "kg"),
  3432. name: "Back",
  3433. image: {
  3434. source: "./media/characters/shingo/back.svg",
  3435. extra: 1922/1852,
  3436. bottom: 16/1938
  3437. }
  3438. },
  3439. frontDressed: {
  3440. height: math.unit(6, "feet"),
  3441. weight: math.unit(150, "lb"),
  3442. name: "Front-dressed",
  3443. image: {
  3444. source: "./media/characters/shingo/front-dressed.svg",
  3445. extra: 1900/1825,
  3446. bottom: 82/1982
  3447. }
  3448. },
  3449. paw: {
  3450. height: math.unit(1.29, "feet"),
  3451. name: "Paw",
  3452. image: {
  3453. source: "./media/characters/shingo/paw.svg"
  3454. }
  3455. },
  3456. hand: {
  3457. height: math.unit(1.07, "feet"),
  3458. name: "Hand",
  3459. image: {
  3460. source: "./media/characters/shingo/hand.svg"
  3461. }
  3462. },
  3463. frontAlt: {
  3464. height: math.unit(6, "feet"),
  3465. weight: math.unit(75, "kg"),
  3466. name: "Front (Alt)",
  3467. image: {
  3468. source: "./media/characters/shingo/front-alt.svg",
  3469. extra: 3511 / 3338,
  3470. bottom: 0.005
  3471. }
  3472. },
  3473. frontAlt2: {
  3474. height: math.unit(6, "feet"),
  3475. weight: math.unit(75, "kg"),
  3476. name: "Front (Alt 2)",
  3477. image: {
  3478. source: "./media/characters/shingo/front-alt-2.svg",
  3479. extra: 706/681,
  3480. bottom: 11/717
  3481. }
  3482. },
  3483. pawAlt: {
  3484. height: math.unit(1, "feet"),
  3485. name: "Paw (Alt)",
  3486. image: {
  3487. source: "./media/characters/shingo/paw-alt.svg"
  3488. }
  3489. },
  3490. },
  3491. [
  3492. {
  3493. name: "Micro",
  3494. height: math.unit(4, "inches")
  3495. },
  3496. {
  3497. name: "Normal",
  3498. height: math.unit(6, "feet"),
  3499. default: true
  3500. },
  3501. {
  3502. name: "Macro",
  3503. height: math.unit(108, "feet")
  3504. },
  3505. {
  3506. name: "Macro+",
  3507. height: math.unit(1500, "feet")
  3508. },
  3509. ]
  3510. ))
  3511. characterMakers.push(() => makeCharacter(
  3512. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3513. {
  3514. side: {
  3515. height: math.unit(6, "feet"),
  3516. weight: math.unit(75, "kg"),
  3517. name: "Side",
  3518. image: {
  3519. source: "./media/characters/aigey/side.svg"
  3520. }
  3521. },
  3522. },
  3523. [
  3524. {
  3525. name: "Macro",
  3526. height: math.unit(200, "feet"),
  3527. default: true
  3528. },
  3529. {
  3530. name: "Megamacro",
  3531. height: math.unit(100, "miles")
  3532. },
  3533. ]
  3534. )
  3535. )
  3536. characterMakers.push(() => makeCharacter(
  3537. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3538. {
  3539. front: {
  3540. height: math.unit(5 + 5 / 12, "feet"),
  3541. weight: math.unit(75, "kg"),
  3542. name: "Front",
  3543. image: {
  3544. source: "./media/characters/natasha/front.svg",
  3545. extra: 859 / 824,
  3546. bottom: 23 / 879.6
  3547. }
  3548. },
  3549. frontNsfw: {
  3550. height: math.unit(5 + 5 / 12, "feet"),
  3551. weight: math.unit(75, "kg"),
  3552. name: "Front (NSFW)",
  3553. image: {
  3554. source: "./media/characters/natasha/front-nsfw.svg",
  3555. extra: 859 / 824,
  3556. bottom: 23 / 879.6
  3557. }
  3558. },
  3559. frontErect: {
  3560. height: math.unit(5 + 5 / 12, "feet"),
  3561. weight: math.unit(75, "kg"),
  3562. name: "Front (Erect)",
  3563. image: {
  3564. source: "./media/characters/natasha/front-erect.svg",
  3565. extra: 859 / 824,
  3566. bottom: 23 / 879.6
  3567. }
  3568. },
  3569. back: {
  3570. height: math.unit(5 + 5 / 12, "feet"),
  3571. weight: math.unit(75, "kg"),
  3572. name: "Back",
  3573. image: {
  3574. source: "./media/characters/natasha/back.svg",
  3575. extra: 887.9 / 852.6,
  3576. bottom: 9.7 / 896.4
  3577. }
  3578. },
  3579. backAlt: {
  3580. height: math.unit(5 + 5 / 12, "feet"),
  3581. weight: math.unit(75, "kg"),
  3582. name: "Back (Alt)",
  3583. image: {
  3584. source: "./media/characters/natasha/back-alt.svg",
  3585. extra: 1236.7 / 1192,
  3586. bottom: 22.3 / 1258.2
  3587. }
  3588. },
  3589. dick: {
  3590. height: math.unit(1.772, "feet"),
  3591. name: "Dick",
  3592. image: {
  3593. source: "./media/characters/natasha/dick.svg"
  3594. }
  3595. },
  3596. paw: {
  3597. height: math.unit(0.250, "meters"),
  3598. name: "Paw",
  3599. image: {
  3600. source: "./media/characters/natasha/paw.svg"
  3601. },
  3602. extraAttributes: {
  3603. "toeSize": {
  3604. name: "Toe Size",
  3605. power: 2,
  3606. type: "area",
  3607. base: math.unit(0.0024, "m^2")
  3608. },
  3609. "padSize": {
  3610. name: "Pad Size",
  3611. power: 2,
  3612. type: "area",
  3613. base: math.unit(0.00889, "m^2")
  3614. },
  3615. "pawSize": {
  3616. name: "Paw Size",
  3617. power: 2,
  3618. type: "area",
  3619. base: math.unit(0.023667, "m^2")
  3620. },
  3621. }
  3622. },
  3623. },
  3624. [
  3625. {
  3626. name: "Shortstack",
  3627. height: math.unit(3, "feet"),
  3628. default: true
  3629. },
  3630. {
  3631. name: "Normal",
  3632. height: math.unit(5 + 5 / 12, "feet")
  3633. },
  3634. {
  3635. name: "Large",
  3636. height: math.unit(12, "feet")
  3637. },
  3638. {
  3639. name: "Macro",
  3640. height: math.unit(100, "feet")
  3641. },
  3642. {
  3643. name: "Macro+",
  3644. height: math.unit(260, "feet")
  3645. },
  3646. {
  3647. name: "Macro++",
  3648. height: math.unit(1, "mile")
  3649. },
  3650. ]
  3651. ))
  3652. characterMakers.push(() => makeCharacter(
  3653. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3654. {
  3655. front: {
  3656. height: math.unit(6, "feet"),
  3657. weight: math.unit(75, "kg"),
  3658. name: "Front",
  3659. image: {
  3660. source: "./media/characters/malik/front.svg",
  3661. extra: 1750/1561,
  3662. bottom: 80/1830
  3663. },
  3664. extraAttributes: {
  3665. "toeSize": {
  3666. name: "Toe Size",
  3667. power: 2,
  3668. type: "area",
  3669. base: math.unit(0.0159, "m^2")
  3670. },
  3671. "pawSize": {
  3672. name: "Paw Size",
  3673. power: 2,
  3674. type: "area",
  3675. base: math.unit(0.09834, "m^2")
  3676. },
  3677. }
  3678. },
  3679. side: {
  3680. height: math.unit(6, "feet"),
  3681. weight: math.unit(75, "kg"),
  3682. name: "Side",
  3683. image: {
  3684. source: "./media/characters/malik/side.svg",
  3685. extra: 1802/1685,
  3686. bottom: 42/1844
  3687. },
  3688. extraAttributes: {
  3689. "toeSize": {
  3690. name: "Toe Size",
  3691. power: 2,
  3692. type: "area",
  3693. base: math.unit(0.0159, "m^2")
  3694. },
  3695. "pawSize": {
  3696. name: "Paw Size",
  3697. power: 2,
  3698. type: "area",
  3699. base: math.unit(0.09834, "m^2")
  3700. },
  3701. }
  3702. },
  3703. back: {
  3704. height: math.unit(6, "feet"),
  3705. weight: math.unit(75, "kg"),
  3706. name: "Back",
  3707. image: {
  3708. source: "./media/characters/malik/back.svg",
  3709. extra: 1803/1607,
  3710. bottom: 33/1836
  3711. },
  3712. extraAttributes: {
  3713. "toeSize": {
  3714. name: "Toe Size",
  3715. power: 2,
  3716. type: "area",
  3717. base: math.unit(0.0159, "m^2")
  3718. },
  3719. "pawSize": {
  3720. name: "Paw Size",
  3721. power: 2,
  3722. type: "area",
  3723. base: math.unit(0.09834, "m^2")
  3724. },
  3725. }
  3726. },
  3727. },
  3728. [
  3729. {
  3730. name: "Macro",
  3731. height: math.unit(156, "feet"),
  3732. default: true
  3733. },
  3734. {
  3735. name: "Macro+",
  3736. height: math.unit(1188, "feet")
  3737. },
  3738. ]
  3739. ))
  3740. characterMakers.push(() => makeCharacter(
  3741. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3742. {
  3743. front: {
  3744. height: math.unit(6, "feet"),
  3745. weight: math.unit(75, "kg"),
  3746. name: "Front",
  3747. image: {
  3748. source: "./media/characters/sefer/front.svg",
  3749. extra: 848 / 659,
  3750. bottom: 28.3 / 876.442
  3751. }
  3752. },
  3753. back: {
  3754. height: math.unit(6, "feet"),
  3755. weight: math.unit(75, "kg"),
  3756. name: "Back",
  3757. image: {
  3758. source: "./media/characters/sefer/back.svg",
  3759. extra: 864 / 695,
  3760. bottom: 10 / 871
  3761. }
  3762. },
  3763. frontDressed: {
  3764. height: math.unit(6, "feet"),
  3765. weight: math.unit(75, "kg"),
  3766. name: "Dressed",
  3767. image: {
  3768. source: "./media/characters/sefer/dressed.svg",
  3769. extra: 839 / 653,
  3770. bottom: 37.6 / 878
  3771. }
  3772. },
  3773. },
  3774. [
  3775. {
  3776. name: "Normal",
  3777. height: math.unit(6, "feet"),
  3778. default: true
  3779. },
  3780. {
  3781. name: "Big",
  3782. height: math.unit(8, "meters")
  3783. },
  3784. ]
  3785. ))
  3786. characterMakers.push(() => makeCharacter(
  3787. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3788. {
  3789. body: {
  3790. height: math.unit(2.2428, "meter"),
  3791. weight: math.unit(124.738, "kg"),
  3792. name: "Body",
  3793. image: {
  3794. extra: 1225 / 1050,
  3795. source: "./media/characters/north/front.svg"
  3796. }
  3797. }
  3798. },
  3799. [
  3800. {
  3801. name: "Micro",
  3802. height: math.unit(4, "inches")
  3803. },
  3804. {
  3805. name: "Macro",
  3806. height: math.unit(63, "meters")
  3807. },
  3808. {
  3809. name: "Megamacro",
  3810. height: math.unit(101, "miles"),
  3811. default: true
  3812. }
  3813. ]
  3814. ))
  3815. characterMakers.push(() => makeCharacter(
  3816. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3817. {
  3818. angled: {
  3819. height: math.unit(4, "meter"),
  3820. weight: math.unit(150, "kg"),
  3821. name: "Angled",
  3822. image: {
  3823. source: "./media/characters/talan/angled-sfw.svg",
  3824. bottom: 29 / 3734
  3825. }
  3826. },
  3827. angledNsfw: {
  3828. height: math.unit(4, "meter"),
  3829. weight: math.unit(150, "kg"),
  3830. name: "Angled (NSFW)",
  3831. image: {
  3832. source: "./media/characters/talan/angled-nsfw.svg",
  3833. bottom: 29 / 3734
  3834. }
  3835. },
  3836. frontNsfw: {
  3837. height: math.unit(4, "meter"),
  3838. weight: math.unit(150, "kg"),
  3839. name: "Front (NSFW)",
  3840. image: {
  3841. source: "./media/characters/talan/front-nsfw.svg",
  3842. bottom: 29 / 3734
  3843. }
  3844. },
  3845. sideNsfw: {
  3846. height: math.unit(4, "meter"),
  3847. weight: math.unit(150, "kg"),
  3848. name: "Side (NSFW)",
  3849. image: {
  3850. source: "./media/characters/talan/side-nsfw.svg",
  3851. bottom: 29 / 3734
  3852. }
  3853. },
  3854. back: {
  3855. height: math.unit(4, "meter"),
  3856. weight: math.unit(150, "kg"),
  3857. name: "Back",
  3858. image: {
  3859. source: "./media/characters/talan/back.svg"
  3860. }
  3861. },
  3862. dickBottom: {
  3863. height: math.unit(0.621, "meter"),
  3864. name: "Dick (Bottom)",
  3865. image: {
  3866. source: "./media/characters/talan/dick-bottom.svg"
  3867. }
  3868. },
  3869. dickTop: {
  3870. height: math.unit(0.621, "meter"),
  3871. name: "Dick (Top)",
  3872. image: {
  3873. source: "./media/characters/talan/dick-top.svg"
  3874. }
  3875. },
  3876. dickSide: {
  3877. height: math.unit(0.305, "meter"),
  3878. name: "Dick (Side)",
  3879. image: {
  3880. source: "./media/characters/talan/dick-side.svg"
  3881. }
  3882. },
  3883. dickFront: {
  3884. height: math.unit(0.305, "meter"),
  3885. name: "Dick (Front)",
  3886. image: {
  3887. source: "./media/characters/talan/dick-front.svg"
  3888. }
  3889. },
  3890. },
  3891. [
  3892. {
  3893. name: "Normal",
  3894. height: math.unit(4, "meters")
  3895. },
  3896. {
  3897. name: "Macro",
  3898. height: math.unit(100, "meters")
  3899. },
  3900. {
  3901. name: "Megamacro",
  3902. height: math.unit(2, "miles"),
  3903. default: true
  3904. },
  3905. {
  3906. name: "Gigamacro",
  3907. height: math.unit(5000, "miles")
  3908. },
  3909. {
  3910. name: "Teramacro",
  3911. height: math.unit(100, "parsecs")
  3912. }
  3913. ]
  3914. ))
  3915. characterMakers.push(() => makeCharacter(
  3916. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3917. {
  3918. front: {
  3919. height: math.unit(2, "meter"),
  3920. weight: math.unit(90, "kg"),
  3921. name: "Front",
  3922. image: {
  3923. source: "./media/characters/gael'rathus/front.svg"
  3924. }
  3925. },
  3926. frontAlt: {
  3927. height: math.unit(2, "meter"),
  3928. weight: math.unit(90, "kg"),
  3929. name: "Front (alt)",
  3930. image: {
  3931. source: "./media/characters/gael'rathus/front-alt.svg"
  3932. }
  3933. },
  3934. frontAlt2: {
  3935. height: math.unit(2, "meter"),
  3936. weight: math.unit(90, "kg"),
  3937. name: "Front (alt 2)",
  3938. image: {
  3939. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3940. }
  3941. }
  3942. },
  3943. [
  3944. {
  3945. name: "Normal",
  3946. height: math.unit(9, "feet"),
  3947. default: true
  3948. },
  3949. {
  3950. name: "Large",
  3951. height: math.unit(25, "feet")
  3952. },
  3953. {
  3954. name: "Macro",
  3955. height: math.unit(0.25, "miles")
  3956. },
  3957. {
  3958. name: "Megamacro",
  3959. height: math.unit(10, "miles")
  3960. }
  3961. ]
  3962. ))
  3963. characterMakers.push(() => makeCharacter(
  3964. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3965. {
  3966. side: {
  3967. height: math.unit(2, "meter"),
  3968. weight: math.unit(140, "kg"),
  3969. name: "Side",
  3970. image: {
  3971. source: "./media/characters/sosha/side.svg",
  3972. extra: 1170/1006,
  3973. bottom: 94/1264
  3974. }
  3975. },
  3976. maw: {
  3977. height: math.unit(2.87, "feet"),
  3978. name: "Maw",
  3979. image: {
  3980. source: "./media/characters/sosha/maw.svg",
  3981. extra: 966/865,
  3982. bottom: 0/966
  3983. }
  3984. },
  3985. cooch: {
  3986. height: math.unit(5.6, "feet"),
  3987. name: "Cooch",
  3988. image: {
  3989. source: "./media/characters/sosha/cooch.svg"
  3990. }
  3991. },
  3992. },
  3993. [
  3994. {
  3995. name: "Normal",
  3996. height: math.unit(12, "feet"),
  3997. default: true
  3998. }
  3999. ]
  4000. ))
  4001. characterMakers.push(() => makeCharacter(
  4002. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4003. {
  4004. side: {
  4005. height: math.unit(5 + 5 / 12, "feet"),
  4006. weight: math.unit(170, "kg"),
  4007. name: "Side",
  4008. image: {
  4009. source: "./media/characters/runnola/side.svg",
  4010. extra: 741 / 448,
  4011. bottom: 0.05
  4012. }
  4013. },
  4014. },
  4015. [
  4016. {
  4017. name: "Small",
  4018. height: math.unit(3, "feet")
  4019. },
  4020. {
  4021. name: "Normal",
  4022. height: math.unit(5 + 5 / 12, "feet"),
  4023. default: true
  4024. },
  4025. {
  4026. name: "Big",
  4027. height: math.unit(10, "feet")
  4028. },
  4029. ]
  4030. ))
  4031. characterMakers.push(() => makeCharacter(
  4032. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4033. {
  4034. front: {
  4035. height: math.unit(2, "meter"),
  4036. weight: math.unit(50, "kg"),
  4037. name: "Front",
  4038. image: {
  4039. source: "./media/characters/kurribird/front.svg",
  4040. bottom: 0.015
  4041. }
  4042. },
  4043. frontAlt: {
  4044. height: math.unit(1.5, "meter"),
  4045. weight: math.unit(50, "kg"),
  4046. name: "Front (Alt)",
  4047. image: {
  4048. source: "./media/characters/kurribird/front-alt.svg",
  4049. extra: 1.45
  4050. }
  4051. },
  4052. },
  4053. [
  4054. {
  4055. name: "Normal",
  4056. height: math.unit(7, "feet")
  4057. },
  4058. {
  4059. name: "Big",
  4060. height: math.unit(12, "feet"),
  4061. default: true
  4062. },
  4063. {
  4064. name: "Macro",
  4065. height: math.unit(1500, "feet")
  4066. },
  4067. {
  4068. name: "Megamacro",
  4069. height: math.unit(2, "miles")
  4070. }
  4071. ]
  4072. ))
  4073. characterMakers.push(() => makeCharacter(
  4074. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4075. {
  4076. front: {
  4077. height: math.unit(2, "meter"),
  4078. weight: math.unit(80, "kg"),
  4079. name: "Front",
  4080. image: {
  4081. source: "./media/characters/elbial/front.svg",
  4082. extra: 1643 / 1556,
  4083. bottom: 60.2 / 1696
  4084. }
  4085. },
  4086. side: {
  4087. height: math.unit(2, "meter"),
  4088. weight: math.unit(80, "kg"),
  4089. name: "Side",
  4090. image: {
  4091. source: "./media/characters/elbial/side.svg",
  4092. extra: 1601/1528,
  4093. bottom: 97/1698
  4094. }
  4095. },
  4096. back: {
  4097. height: math.unit(2, "meter"),
  4098. weight: math.unit(80, "kg"),
  4099. name: "Back",
  4100. image: {
  4101. source: "./media/characters/elbial/back.svg",
  4102. extra: 1653/1569,
  4103. bottom: 20/1673
  4104. }
  4105. },
  4106. frontDressed: {
  4107. height: math.unit(2, "meter"),
  4108. weight: math.unit(80, "kg"),
  4109. name: "Front (Dressed)",
  4110. image: {
  4111. source: "./media/characters/elbial/front-dressed.svg",
  4112. extra: 1638/1569,
  4113. bottom: 70/1708
  4114. }
  4115. },
  4116. genitals: {
  4117. height: math.unit(2 / 3.367, "meter"),
  4118. name: "Genitals",
  4119. image: {
  4120. source: "./media/characters/elbial/genitals.svg"
  4121. }
  4122. },
  4123. },
  4124. [
  4125. {
  4126. name: "Large",
  4127. height: math.unit(100, "feet")
  4128. },
  4129. {
  4130. name: "Macro",
  4131. height: math.unit(500, "feet"),
  4132. default: true
  4133. },
  4134. {
  4135. name: "Megamacro",
  4136. height: math.unit(10, "miles")
  4137. },
  4138. {
  4139. name: "Gigamacro",
  4140. height: math.unit(25000, "miles")
  4141. },
  4142. {
  4143. name: "Full-Size",
  4144. height: math.unit(8000000, "gigaparsecs")
  4145. }
  4146. ]
  4147. ))
  4148. characterMakers.push(() => makeCharacter(
  4149. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4150. {
  4151. front: {
  4152. height: math.unit(2, "meter"),
  4153. weight: math.unit(60, "kg"),
  4154. name: "Front",
  4155. image: {
  4156. source: "./media/characters/noah/front.svg"
  4157. }
  4158. },
  4159. talons: {
  4160. height: math.unit(0.315, "meter"),
  4161. name: "Talons",
  4162. image: {
  4163. source: "./media/characters/noah/talons.svg"
  4164. }
  4165. }
  4166. },
  4167. [
  4168. {
  4169. name: "Large",
  4170. height: math.unit(50, "feet")
  4171. },
  4172. {
  4173. name: "Macro",
  4174. height: math.unit(750, "feet"),
  4175. default: true
  4176. },
  4177. {
  4178. name: "Megamacro",
  4179. height: math.unit(50, "miles")
  4180. },
  4181. {
  4182. name: "Gigamacro",
  4183. height: math.unit(100000, "miles")
  4184. },
  4185. {
  4186. name: "Full-Size",
  4187. height: math.unit(3000000000, "miles")
  4188. }
  4189. ]
  4190. ))
  4191. characterMakers.push(() => makeCharacter(
  4192. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4193. {
  4194. front: {
  4195. height: math.unit(2, "meter"),
  4196. weight: math.unit(80, "kg"),
  4197. name: "Front",
  4198. image: {
  4199. source: "./media/characters/natalya/front.svg"
  4200. }
  4201. },
  4202. back: {
  4203. height: math.unit(2, "meter"),
  4204. weight: math.unit(80, "kg"),
  4205. name: "Back",
  4206. image: {
  4207. source: "./media/characters/natalya/back.svg"
  4208. }
  4209. }
  4210. },
  4211. [
  4212. {
  4213. name: "Normal",
  4214. height: math.unit(150, "feet"),
  4215. default: true
  4216. },
  4217. {
  4218. name: "Megamacro",
  4219. height: math.unit(5, "miles")
  4220. },
  4221. {
  4222. name: "Full-Size",
  4223. height: math.unit(600, "kiloparsecs")
  4224. }
  4225. ]
  4226. ))
  4227. characterMakers.push(() => makeCharacter(
  4228. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4229. {
  4230. front: {
  4231. height: math.unit(2, "meter"),
  4232. weight: math.unit(50, "kg"),
  4233. name: "Front",
  4234. image: {
  4235. source: "./media/characters/erestrebah/front.svg",
  4236. extra: 1262/1162,
  4237. bottom: 96/1358
  4238. }
  4239. },
  4240. back: {
  4241. height: math.unit(2, "meter"),
  4242. weight: math.unit(50, "kg"),
  4243. name: "Back",
  4244. image: {
  4245. source: "./media/characters/erestrebah/back.svg",
  4246. extra: 1257/1139,
  4247. bottom: 13/1270
  4248. }
  4249. },
  4250. wing: {
  4251. height: math.unit(2, "meter"),
  4252. weight: math.unit(50, "kg"),
  4253. name: "Wing",
  4254. image: {
  4255. source: "./media/characters/erestrebah/wing.svg",
  4256. extra: 1262/1162,
  4257. bottom: 96/1358
  4258. }
  4259. },
  4260. mouth: {
  4261. height: math.unit(0.39, "feet"),
  4262. name: "Mouth",
  4263. image: {
  4264. source: "./media/characters/erestrebah/mouth.svg"
  4265. }
  4266. }
  4267. },
  4268. [
  4269. {
  4270. name: "Normal",
  4271. height: math.unit(10, "feet")
  4272. },
  4273. {
  4274. name: "Large",
  4275. height: math.unit(50, "feet"),
  4276. default: true
  4277. },
  4278. {
  4279. name: "Macro",
  4280. height: math.unit(300, "feet")
  4281. },
  4282. {
  4283. name: "Macro+",
  4284. height: math.unit(750, "feet")
  4285. },
  4286. {
  4287. name: "Megamacro",
  4288. height: math.unit(3, "miles")
  4289. }
  4290. ]
  4291. ))
  4292. characterMakers.push(() => makeCharacter(
  4293. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4294. {
  4295. front: {
  4296. height: math.unit(2, "meter"),
  4297. weight: math.unit(80, "kg"),
  4298. name: "Front",
  4299. image: {
  4300. source: "./media/characters/jennifer/front.svg",
  4301. bottom: 0.11,
  4302. extra: 1.16
  4303. }
  4304. },
  4305. frontAlt: {
  4306. height: math.unit(2, "meter"),
  4307. weight: math.unit(80, "kg"),
  4308. name: "Front (Alt)",
  4309. image: {
  4310. source: "./media/characters/jennifer/front-alt.svg"
  4311. }
  4312. }
  4313. },
  4314. [
  4315. {
  4316. name: "Canon Height",
  4317. height: math.unit(120, "feet"),
  4318. default: true
  4319. },
  4320. {
  4321. name: "Macro+",
  4322. height: math.unit(300, "feet")
  4323. },
  4324. {
  4325. name: "Megamacro",
  4326. height: math.unit(20000, "feet")
  4327. }
  4328. ]
  4329. ))
  4330. characterMakers.push(() => makeCharacter(
  4331. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4332. {
  4333. front: {
  4334. height: math.unit(2, "meter"),
  4335. weight: math.unit(50, "kg"),
  4336. name: "Front",
  4337. image: {
  4338. source: "./media/characters/kalista/front.svg",
  4339. extra: 1314/1145,
  4340. bottom: 101/1415
  4341. }
  4342. },
  4343. back: {
  4344. height: math.unit(2, "meter"),
  4345. weight: math.unit(50, "kg"),
  4346. name: "Back",
  4347. image: {
  4348. source: "./media/characters/kalista/back.svg",
  4349. extra: 1366 / 1156,
  4350. bottom: 33.9 / 1362.78
  4351. }
  4352. }
  4353. },
  4354. [
  4355. {
  4356. name: "Uncomfortably Small",
  4357. height: math.unit(10, "feet")
  4358. },
  4359. {
  4360. name: "Small",
  4361. height: math.unit(30, "feet")
  4362. },
  4363. {
  4364. name: "Macro",
  4365. height: math.unit(100, "feet"),
  4366. default: true
  4367. },
  4368. {
  4369. name: "Macro+",
  4370. height: math.unit(2000, "feet")
  4371. },
  4372. {
  4373. name: "True Form",
  4374. height: math.unit(8924, "miles")
  4375. }
  4376. ]
  4377. ))
  4378. characterMakers.push(() => makeCharacter(
  4379. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4380. {
  4381. front: {
  4382. height: math.unit(2, "meter"),
  4383. weight: math.unit(120, "kg"),
  4384. name: "Front",
  4385. image: {
  4386. source: "./media/characters/ggv/front.svg"
  4387. }
  4388. },
  4389. side: {
  4390. height: math.unit(2, "meter"),
  4391. weight: math.unit(120, "kg"),
  4392. name: "Side",
  4393. image: {
  4394. source: "./media/characters/ggv/side.svg"
  4395. }
  4396. }
  4397. },
  4398. [
  4399. {
  4400. name: "Extremely Puny",
  4401. height: math.unit(9 + 5 / 12, "feet")
  4402. },
  4403. {
  4404. name: "Horribly Small",
  4405. height: math.unit(47.7, "miles"),
  4406. default: true
  4407. },
  4408. {
  4409. name: "Reasonably Sized",
  4410. height: math.unit(25000, "parsecs")
  4411. },
  4412. {
  4413. name: "Slightly Uncompressed",
  4414. height: math.unit(7.77e31, "parsecs")
  4415. },
  4416. {
  4417. name: "Omniversal",
  4418. height: math.unit(1e300, "meters")
  4419. },
  4420. ]
  4421. ))
  4422. characterMakers.push(() => makeCharacter(
  4423. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4424. {
  4425. front: {
  4426. height: math.unit(2, "meter"),
  4427. weight: math.unit(75, "lb"),
  4428. name: "Front",
  4429. image: {
  4430. source: "./media/characters/napalm/front.svg"
  4431. }
  4432. },
  4433. back: {
  4434. height: math.unit(2, "meter"),
  4435. weight: math.unit(75, "lb"),
  4436. name: "Back",
  4437. image: {
  4438. source: "./media/characters/napalm/back.svg"
  4439. }
  4440. }
  4441. },
  4442. [
  4443. {
  4444. name: "Standard",
  4445. height: math.unit(55, "feet"),
  4446. default: true
  4447. }
  4448. ]
  4449. ))
  4450. characterMakers.push(() => makeCharacter(
  4451. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4452. {
  4453. front: {
  4454. height: math.unit(7 + 5 / 6, "feet"),
  4455. weight: math.unit(325, "lb"),
  4456. name: "Front",
  4457. image: {
  4458. source: "./media/characters/asana/front.svg",
  4459. extra: 1133 / 1060,
  4460. bottom: 15.2 / 1148.6
  4461. }
  4462. },
  4463. back: {
  4464. height: math.unit(7 + 5 / 6, "feet"),
  4465. weight: math.unit(325, "lb"),
  4466. name: "Back",
  4467. image: {
  4468. source: "./media/characters/asana/back.svg",
  4469. extra: 1114 / 1043,
  4470. bottom: 5 / 1120
  4471. }
  4472. },
  4473. dressedDark: {
  4474. height: math.unit(7 + 5 / 6, "feet"),
  4475. weight: math.unit(325, "lb"),
  4476. name: "Dressed (Dark)",
  4477. image: {
  4478. source: "./media/characters/asana/dressed-dark.svg",
  4479. extra: 1133 / 1060,
  4480. bottom: 15.2 / 1148.6
  4481. }
  4482. },
  4483. dressedLight: {
  4484. height: math.unit(7 + 5 / 6, "feet"),
  4485. weight: math.unit(325, "lb"),
  4486. name: "Dressed (Light)",
  4487. image: {
  4488. source: "./media/characters/asana/dressed-light.svg",
  4489. extra: 1133 / 1060,
  4490. bottom: 15.2 / 1148.6
  4491. }
  4492. },
  4493. },
  4494. [
  4495. {
  4496. name: "Standard",
  4497. height: math.unit(7 + 5 / 6, "feet"),
  4498. default: true
  4499. },
  4500. {
  4501. name: "Large",
  4502. height: math.unit(10, "meters")
  4503. },
  4504. {
  4505. name: "Macro",
  4506. height: math.unit(2500, "meters")
  4507. },
  4508. {
  4509. name: "Megamacro",
  4510. height: math.unit(5e6, "meters")
  4511. },
  4512. {
  4513. name: "Examacro",
  4514. height: math.unit(5e12, "lightyears")
  4515. },
  4516. {
  4517. name: "Max Size",
  4518. height: math.unit(1e31, "lightyears")
  4519. }
  4520. ]
  4521. ))
  4522. characterMakers.push(() => makeCharacter(
  4523. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4524. {
  4525. front: {
  4526. height: math.unit(2, "meter"),
  4527. weight: math.unit(60, "kg"),
  4528. name: "Front",
  4529. image: {
  4530. source: "./media/characters/ebony/front.svg",
  4531. bottom: 0.03,
  4532. extra: 1045 / 810 + 0.03
  4533. }
  4534. },
  4535. side: {
  4536. height: math.unit(2, "meter"),
  4537. weight: math.unit(60, "kg"),
  4538. name: "Side",
  4539. image: {
  4540. source: "./media/characters/ebony/side.svg",
  4541. bottom: 0.03,
  4542. extra: 1045 / 810 + 0.03
  4543. }
  4544. },
  4545. back: {
  4546. height: math.unit(2, "meter"),
  4547. weight: math.unit(60, "kg"),
  4548. name: "Back",
  4549. image: {
  4550. source: "./media/characters/ebony/back.svg",
  4551. bottom: 0.01,
  4552. extra: 1045 / 810 + 0.01
  4553. }
  4554. },
  4555. },
  4556. [
  4557. // TODO check why I did this lol
  4558. {
  4559. name: "Standard",
  4560. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4561. default: true
  4562. },
  4563. {
  4564. name: "Macro",
  4565. height: math.unit(200, "feet")
  4566. },
  4567. {
  4568. name: "Gigamacro",
  4569. height: math.unit(13000, "km")
  4570. }
  4571. ]
  4572. ))
  4573. characterMakers.push(() => makeCharacter(
  4574. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4575. {
  4576. front: {
  4577. height: math.unit(6, "feet"),
  4578. weight: math.unit(175, "lb"),
  4579. name: "Front",
  4580. image: {
  4581. source: "./media/characters/mountain/front.svg",
  4582. extra: 972 / 955,
  4583. bottom: 64 / 1036.6
  4584. }
  4585. },
  4586. back: {
  4587. height: math.unit(6, "feet"),
  4588. weight: math.unit(175, "lb"),
  4589. name: "Back",
  4590. image: {
  4591. source: "./media/characters/mountain/back.svg",
  4592. extra: 970 / 950,
  4593. bottom: 28.25 / 999
  4594. }
  4595. },
  4596. },
  4597. [
  4598. {
  4599. name: "Large",
  4600. height: math.unit(20, "meters")
  4601. },
  4602. {
  4603. name: "Macro",
  4604. height: math.unit(300, "meters")
  4605. },
  4606. {
  4607. name: "Gigamacro",
  4608. height: math.unit(10000, "km"),
  4609. default: true
  4610. },
  4611. {
  4612. name: "Examacro",
  4613. height: math.unit(10e9, "lightyears")
  4614. }
  4615. ]
  4616. ))
  4617. characterMakers.push(() => makeCharacter(
  4618. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4619. {
  4620. front: {
  4621. height: math.unit(8, "feet"),
  4622. weight: math.unit(500, "lb"),
  4623. name: "Front",
  4624. image: {
  4625. source: "./media/characters/rick/front.svg"
  4626. }
  4627. }
  4628. },
  4629. [
  4630. {
  4631. name: "Normal",
  4632. height: math.unit(8, "feet"),
  4633. default: true
  4634. },
  4635. {
  4636. name: "Macro",
  4637. height: math.unit(5, "km")
  4638. }
  4639. ]
  4640. ))
  4641. characterMakers.push(() => makeCharacter(
  4642. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4643. {
  4644. front: {
  4645. height: math.unit(8, "feet"),
  4646. weight: math.unit(120, "lb"),
  4647. name: "Front",
  4648. image: {
  4649. source: "./media/characters/ona/front.svg"
  4650. }
  4651. },
  4652. frontAlt: {
  4653. height: math.unit(8, "feet"),
  4654. weight: math.unit(120, "lb"),
  4655. name: "Front (Alt)",
  4656. image: {
  4657. source: "./media/characters/ona/front-alt.svg"
  4658. }
  4659. },
  4660. back: {
  4661. height: math.unit(8, "feet"),
  4662. weight: math.unit(120, "lb"),
  4663. name: "Back",
  4664. image: {
  4665. source: "./media/characters/ona/back.svg"
  4666. }
  4667. },
  4668. foot: {
  4669. height: math.unit(1.1, "feet"),
  4670. name: "Foot",
  4671. image: {
  4672. source: "./media/characters/ona/foot.svg"
  4673. }
  4674. }
  4675. },
  4676. [
  4677. {
  4678. name: "Megamacro",
  4679. height: math.unit(70, "km"),
  4680. default: true
  4681. },
  4682. {
  4683. name: "Gigamacro",
  4684. height: math.unit(681818, "miles")
  4685. },
  4686. {
  4687. name: "Examacro",
  4688. height: math.unit(3800000, "lightyears")
  4689. },
  4690. ]
  4691. ))
  4692. characterMakers.push(() => makeCharacter(
  4693. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4694. {
  4695. front: {
  4696. height: math.unit(12, "feet"),
  4697. weight: math.unit(3000, "lb"),
  4698. name: "Front",
  4699. image: {
  4700. source: "./media/characters/mech/front.svg",
  4701. extra: 2900 / 2770,
  4702. bottom: 110 / 3010
  4703. }
  4704. },
  4705. back: {
  4706. height: math.unit(12, "feet"),
  4707. weight: math.unit(3000, "lb"),
  4708. name: "Back",
  4709. image: {
  4710. source: "./media/characters/mech/back.svg",
  4711. extra: 3011 / 2890,
  4712. bottom: 94 / 3105
  4713. }
  4714. },
  4715. maw: {
  4716. height: math.unit(3.07, "feet"),
  4717. name: "Maw",
  4718. image: {
  4719. source: "./media/characters/mech/maw.svg"
  4720. }
  4721. },
  4722. head: {
  4723. height: math.unit(3.07, "feet"),
  4724. name: "Head",
  4725. image: {
  4726. source: "./media/characters/mech/head.svg"
  4727. }
  4728. },
  4729. dick: {
  4730. height: math.unit(1.43, "feet"),
  4731. name: "Dick",
  4732. image: {
  4733. source: "./media/characters/mech/dick.svg"
  4734. }
  4735. },
  4736. },
  4737. [
  4738. {
  4739. name: "Normal",
  4740. height: math.unit(12, "feet")
  4741. },
  4742. {
  4743. name: "Macro",
  4744. height: math.unit(300, "feet"),
  4745. default: true
  4746. },
  4747. {
  4748. name: "Macro+",
  4749. height: math.unit(1500, "feet")
  4750. },
  4751. ]
  4752. ))
  4753. characterMakers.push(() => makeCharacter(
  4754. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4755. {
  4756. front: {
  4757. height: math.unit(1.3, "meter"),
  4758. weight: math.unit(30, "kg"),
  4759. name: "Front",
  4760. image: {
  4761. source: "./media/characters/gregory/front.svg",
  4762. }
  4763. }
  4764. },
  4765. [
  4766. {
  4767. name: "Normal",
  4768. height: math.unit(1.3, "meter"),
  4769. default: true
  4770. },
  4771. {
  4772. name: "Macro",
  4773. height: math.unit(20, "meter")
  4774. }
  4775. ]
  4776. ))
  4777. characterMakers.push(() => makeCharacter(
  4778. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4779. {
  4780. front: {
  4781. height: math.unit(2.8, "meter"),
  4782. weight: math.unit(200, "kg"),
  4783. name: "Front",
  4784. image: {
  4785. source: "./media/characters/elory/front.svg",
  4786. }
  4787. }
  4788. },
  4789. [
  4790. {
  4791. name: "Normal",
  4792. height: math.unit(2.8, "meter"),
  4793. default: true
  4794. },
  4795. {
  4796. name: "Macro",
  4797. height: math.unit(38, "meter")
  4798. }
  4799. ]
  4800. ))
  4801. characterMakers.push(() => makeCharacter(
  4802. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4803. {
  4804. front: {
  4805. height: math.unit(470, "feet"),
  4806. weight: math.unit(924, "tons"),
  4807. name: "Front",
  4808. image: {
  4809. source: "./media/characters/angelpatamon/front.svg",
  4810. }
  4811. }
  4812. },
  4813. [
  4814. {
  4815. name: "Normal",
  4816. height: math.unit(470, "feet"),
  4817. default: true
  4818. },
  4819. {
  4820. name: "Deity Size I",
  4821. height: math.unit(28651.2, "km")
  4822. },
  4823. {
  4824. name: "Deity Size II",
  4825. height: math.unit(171907.2, "km")
  4826. }
  4827. ]
  4828. ))
  4829. characterMakers.push(() => makeCharacter(
  4830. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4831. {
  4832. side: {
  4833. height: math.unit(7.2, "meter"),
  4834. weight: math.unit(8.2, "tons"),
  4835. name: "Side",
  4836. image: {
  4837. source: "./media/characters/cryae/side.svg",
  4838. extra: 3500 / 1500
  4839. }
  4840. }
  4841. },
  4842. [
  4843. {
  4844. name: "Normal",
  4845. height: math.unit(7.2, "meter"),
  4846. default: true
  4847. }
  4848. ]
  4849. ))
  4850. characterMakers.push(() => makeCharacter(
  4851. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4852. {
  4853. front: {
  4854. height: math.unit(6, "feet"),
  4855. weight: math.unit(175, "lb"),
  4856. name: "Front",
  4857. image: {
  4858. source: "./media/characters/xera/front.svg",
  4859. extra: 2377 / 1972,
  4860. bottom: 75.5 / 2452
  4861. }
  4862. },
  4863. side: {
  4864. height: math.unit(6, "feet"),
  4865. weight: math.unit(175, "lb"),
  4866. name: "Side",
  4867. image: {
  4868. source: "./media/characters/xera/side.svg",
  4869. extra: 2345 / 2019,
  4870. bottom: 39.7 / 2384
  4871. }
  4872. },
  4873. back: {
  4874. height: math.unit(6, "feet"),
  4875. weight: math.unit(175, "lb"),
  4876. name: "Back",
  4877. image: {
  4878. source: "./media/characters/xera/back.svg",
  4879. extra: 2095 / 1984,
  4880. bottom: 67 / 2166
  4881. }
  4882. },
  4883. },
  4884. [
  4885. {
  4886. name: "Small",
  4887. height: math.unit(10, "feet")
  4888. },
  4889. {
  4890. name: "Macro",
  4891. height: math.unit(500, "meters"),
  4892. default: true
  4893. },
  4894. {
  4895. name: "Macro+",
  4896. height: math.unit(10, "km")
  4897. },
  4898. {
  4899. name: "Gigamacro",
  4900. height: math.unit(25000, "km")
  4901. },
  4902. {
  4903. name: "Teramacro",
  4904. height: math.unit(3e6, "km")
  4905. }
  4906. ]
  4907. ))
  4908. characterMakers.push(() => makeCharacter(
  4909. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4910. {
  4911. front: {
  4912. height: math.unit(6, "feet"),
  4913. weight: math.unit(175, "lb"),
  4914. name: "Front",
  4915. image: {
  4916. source: "./media/characters/nebula/front.svg",
  4917. extra: 2566 / 2362,
  4918. bottom: 81 / 2644
  4919. }
  4920. }
  4921. },
  4922. [
  4923. {
  4924. name: "Small",
  4925. height: math.unit(4.5, "meters")
  4926. },
  4927. {
  4928. name: "Macro",
  4929. height: math.unit(1500, "meters"),
  4930. default: true
  4931. },
  4932. {
  4933. name: "Megamacro",
  4934. height: math.unit(150, "km")
  4935. },
  4936. {
  4937. name: "Gigamacro",
  4938. height: math.unit(27000, "km")
  4939. }
  4940. ]
  4941. ))
  4942. characterMakers.push(() => makeCharacter(
  4943. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4944. {
  4945. front: {
  4946. height: math.unit(6, "feet"),
  4947. weight: math.unit(225, "lb"),
  4948. name: "Front",
  4949. image: {
  4950. source: "./media/characters/abysgar/front.svg",
  4951. extra: 1739/1614,
  4952. bottom: 71/1810
  4953. }
  4954. },
  4955. frontNsfw: {
  4956. height: math.unit(6, "feet"),
  4957. weight: math.unit(225, "lb"),
  4958. name: "Front (NSFW)",
  4959. image: {
  4960. source: "./media/characters/abysgar/front-nsfw.svg",
  4961. extra: 1739/1614,
  4962. bottom: 71/1810
  4963. }
  4964. },
  4965. back: {
  4966. height: math.unit(4.6, "feet"),
  4967. weight: math.unit(225, "lb"),
  4968. name: "Back",
  4969. image: {
  4970. source: "./media/characters/abysgar/back.svg",
  4971. extra: 1384/1327,
  4972. bottom: 0/1384
  4973. }
  4974. },
  4975. head: {
  4976. height: math.unit(1.25, "feet"),
  4977. name: "Head",
  4978. image: {
  4979. source: "./media/characters/abysgar/head.svg",
  4980. extra: 669/569,
  4981. bottom: 0/669
  4982. }
  4983. },
  4984. },
  4985. [
  4986. {
  4987. name: "Small",
  4988. height: math.unit(4.5, "meters")
  4989. },
  4990. {
  4991. name: "Macro",
  4992. height: math.unit(1250, "meters"),
  4993. default: true
  4994. },
  4995. {
  4996. name: "Megamacro",
  4997. height: math.unit(125, "km")
  4998. },
  4999. {
  5000. name: "Gigamacro",
  5001. height: math.unit(26000, "km")
  5002. }
  5003. ]
  5004. ))
  5005. characterMakers.push(() => makeCharacter(
  5006. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5007. {
  5008. front: {
  5009. height: math.unit(6, "feet"),
  5010. weight: math.unit(180, "lb"),
  5011. name: "Front",
  5012. image: {
  5013. source: "./media/characters/yakuz/front.svg"
  5014. }
  5015. }
  5016. },
  5017. [
  5018. {
  5019. name: "Small",
  5020. height: math.unit(5, "meters")
  5021. },
  5022. {
  5023. name: "Macro",
  5024. height: math.unit(1500, "meters"),
  5025. default: true
  5026. },
  5027. {
  5028. name: "Megamacro",
  5029. height: math.unit(200, "km")
  5030. },
  5031. {
  5032. name: "Gigamacro",
  5033. height: math.unit(100000, "km")
  5034. }
  5035. ]
  5036. ))
  5037. characterMakers.push(() => makeCharacter(
  5038. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5039. {
  5040. front: {
  5041. height: math.unit(6, "feet"),
  5042. weight: math.unit(175, "lb"),
  5043. name: "Front",
  5044. image: {
  5045. source: "./media/characters/mirova/front.svg",
  5046. extra: 3334 / 3071,
  5047. bottom: 42 / 3375.6
  5048. }
  5049. }
  5050. },
  5051. [
  5052. {
  5053. name: "Small",
  5054. height: math.unit(5, "meters")
  5055. },
  5056. {
  5057. name: "Macro",
  5058. height: math.unit(900, "meters"),
  5059. default: true
  5060. },
  5061. {
  5062. name: "Megamacro",
  5063. height: math.unit(135, "km")
  5064. },
  5065. {
  5066. name: "Gigamacro",
  5067. height: math.unit(20000, "km")
  5068. }
  5069. ]
  5070. ))
  5071. characterMakers.push(() => makeCharacter(
  5072. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5073. {
  5074. side: {
  5075. height: math.unit(28.35, "feet"),
  5076. weight: math.unit(99.75, "tons"),
  5077. name: "Side",
  5078. image: {
  5079. source: "./media/characters/asana-mech/side.svg",
  5080. extra: 923 / 699,
  5081. bottom: 50 / 975
  5082. }
  5083. },
  5084. chaingun: {
  5085. height: math.unit(7, "feet"),
  5086. weight: math.unit(2400, "lb"),
  5087. name: "Chaingun",
  5088. image: {
  5089. source: "./media/characters/asana-mech/chaingun.svg"
  5090. }
  5091. },
  5092. laser: {
  5093. height: math.unit(7.12, "feet"),
  5094. weight: math.unit(2000, "lb"),
  5095. name: "Laser",
  5096. image: {
  5097. source: "./media/characters/asana-mech/laser.svg"
  5098. }
  5099. },
  5100. },
  5101. [
  5102. {
  5103. name: "Normal",
  5104. height: math.unit(28.35, "feet"),
  5105. default: true
  5106. },
  5107. {
  5108. name: "Macro",
  5109. height: math.unit(2500, "feet")
  5110. },
  5111. {
  5112. name: "Megamacro",
  5113. height: math.unit(25, "miles")
  5114. },
  5115. {
  5116. name: "Examacro",
  5117. height: math.unit(6e8, "lightyears")
  5118. },
  5119. ]
  5120. ))
  5121. characterMakers.push(() => makeCharacter(
  5122. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5123. {
  5124. front: {
  5125. height: math.unit(5, "meters"),
  5126. weight: math.unit(1000, "kg"),
  5127. name: "Front",
  5128. image: {
  5129. source: "./media/characters/asche/front.svg",
  5130. extra: 1258 / 1190,
  5131. bottom: 47 / 1305
  5132. }
  5133. },
  5134. frontUnderwear: {
  5135. height: math.unit(5, "meters"),
  5136. weight: math.unit(1000, "kg"),
  5137. name: "Front (Underwear)",
  5138. image: {
  5139. source: "./media/characters/asche/front-underwear.svg",
  5140. extra: 1258 / 1190,
  5141. bottom: 47 / 1305
  5142. }
  5143. },
  5144. frontDressed: {
  5145. height: math.unit(5, "meters"),
  5146. weight: math.unit(1000, "kg"),
  5147. name: "Front (Dressed)",
  5148. image: {
  5149. source: "./media/characters/asche/front-dressed.svg",
  5150. extra: 1258 / 1190,
  5151. bottom: 47 / 1305
  5152. }
  5153. },
  5154. frontArmor: {
  5155. height: math.unit(5, "meters"),
  5156. weight: math.unit(1000, "kg"),
  5157. name: "Front (Armored)",
  5158. image: {
  5159. source: "./media/characters/asche/front-armored.svg",
  5160. extra: 1374 / 1308,
  5161. bottom: 23 / 1397
  5162. }
  5163. },
  5164. mp724: {
  5165. height: math.unit(0.96, "meters"),
  5166. weight: math.unit(38, "kg"),
  5167. name: "H&K MP724",
  5168. image: {
  5169. source: "./media/characters/asche/h&k-mp724.svg"
  5170. }
  5171. },
  5172. side: {
  5173. height: math.unit(5, "meters"),
  5174. weight: math.unit(1000, "kg"),
  5175. name: "Side",
  5176. image: {
  5177. source: "./media/characters/asche/side.svg",
  5178. extra: 1717 / 1609,
  5179. bottom: 0.005
  5180. }
  5181. },
  5182. back: {
  5183. height: math.unit(5, "meters"),
  5184. weight: math.unit(1000, "kg"),
  5185. name: "Back",
  5186. image: {
  5187. source: "./media/characters/asche/back.svg",
  5188. extra: 1570 / 1501
  5189. }
  5190. },
  5191. },
  5192. [
  5193. {
  5194. name: "DEFCON 5",
  5195. height: math.unit(5, "meters")
  5196. },
  5197. {
  5198. name: "DEFCON 4",
  5199. height: math.unit(500, "meters"),
  5200. default: true
  5201. },
  5202. {
  5203. name: "DEFCON 3",
  5204. height: math.unit(5, "km")
  5205. },
  5206. {
  5207. name: "DEFCON 2",
  5208. height: math.unit(500, "km")
  5209. },
  5210. {
  5211. name: "DEFCON 1",
  5212. height: math.unit(500000, "km")
  5213. },
  5214. {
  5215. name: "DEFCON 0",
  5216. height: math.unit(3, "gigaparsecs")
  5217. },
  5218. ]
  5219. ))
  5220. characterMakers.push(() => makeCharacter(
  5221. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5222. {
  5223. front: {
  5224. height: math.unit(2, "meters"),
  5225. weight: math.unit(76, "kg"),
  5226. name: "Front",
  5227. image: {
  5228. source: "./media/characters/gale/front.svg"
  5229. }
  5230. },
  5231. frontAlt1: {
  5232. height: math.unit(2, "meters"),
  5233. weight: math.unit(76, "kg"),
  5234. name: "Front (Alt 1)",
  5235. image: {
  5236. source: "./media/characters/gale/front-alt-1.svg"
  5237. }
  5238. },
  5239. frontAlt2: {
  5240. height: math.unit(2, "meters"),
  5241. weight: math.unit(76, "kg"),
  5242. name: "Front (Alt 2)",
  5243. image: {
  5244. source: "./media/characters/gale/front-alt-2.svg"
  5245. }
  5246. },
  5247. },
  5248. [
  5249. {
  5250. name: "Normal",
  5251. height: math.unit(7, "feet")
  5252. },
  5253. {
  5254. name: "Macro",
  5255. height: math.unit(150, "feet"),
  5256. default: true
  5257. },
  5258. {
  5259. name: "Macro+",
  5260. height: math.unit(300, "feet")
  5261. },
  5262. ]
  5263. ))
  5264. characterMakers.push(() => makeCharacter(
  5265. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5266. {
  5267. front: {
  5268. height: math.unit(5 + 10/12, "feet"),
  5269. weight: math.unit(67, "kg"),
  5270. name: "Front",
  5271. image: {
  5272. source: "./media/characters/draylen/front.svg",
  5273. extra: 832/777,
  5274. bottom: 85/917
  5275. }
  5276. }
  5277. },
  5278. [
  5279. {
  5280. name: "Normal",
  5281. height: math.unit(5 + 10/12, "feet")
  5282. },
  5283. {
  5284. name: "Macro",
  5285. height: math.unit(150, "feet"),
  5286. default: true
  5287. }
  5288. ]
  5289. ))
  5290. characterMakers.push(() => makeCharacter(
  5291. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5292. {
  5293. front: {
  5294. height: math.unit(7 + 9 / 12, "feet"),
  5295. weight: math.unit(379, "lbs"),
  5296. name: "Front",
  5297. image: {
  5298. source: "./media/characters/chez/front.svg"
  5299. }
  5300. },
  5301. side: {
  5302. height: math.unit(7 + 9 / 12, "feet"),
  5303. weight: math.unit(379, "lbs"),
  5304. name: "Side",
  5305. image: {
  5306. source: "./media/characters/chez/side.svg"
  5307. }
  5308. }
  5309. },
  5310. [
  5311. {
  5312. name: "Normal",
  5313. height: math.unit(7 + 9 / 12, "feet"),
  5314. default: true
  5315. },
  5316. {
  5317. name: "God King",
  5318. height: math.unit(9750000, "meters")
  5319. }
  5320. ]
  5321. ))
  5322. characterMakers.push(() => makeCharacter(
  5323. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5324. {
  5325. front: {
  5326. height: math.unit(6, "feet"),
  5327. weight: math.unit(275, "lbs"),
  5328. name: "Front",
  5329. image: {
  5330. source: "./media/characters/kaylum/front.svg",
  5331. bottom: 0.01,
  5332. extra: 1166 / 1031
  5333. }
  5334. },
  5335. frontWingless: {
  5336. height: math.unit(6, "feet"),
  5337. weight: math.unit(275, "lbs"),
  5338. name: "Front (Wingless)",
  5339. image: {
  5340. source: "./media/characters/kaylum/front-wingless.svg",
  5341. bottom: 0.01,
  5342. extra: 1117 / 1031
  5343. }
  5344. }
  5345. },
  5346. [
  5347. {
  5348. name: "Normal",
  5349. height: math.unit(3.05, "meters")
  5350. },
  5351. {
  5352. name: "Master",
  5353. height: math.unit(5.5, "meters")
  5354. },
  5355. {
  5356. name: "Rampage",
  5357. height: math.unit(19, "meters")
  5358. },
  5359. {
  5360. name: "Macro Lite",
  5361. height: math.unit(37, "meters")
  5362. },
  5363. {
  5364. name: "Hyper Predator",
  5365. height: math.unit(61, "meters")
  5366. },
  5367. {
  5368. name: "Macro",
  5369. height: math.unit(138, "meters"),
  5370. default: true
  5371. }
  5372. ]
  5373. ))
  5374. characterMakers.push(() => makeCharacter(
  5375. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5376. {
  5377. front: {
  5378. height: math.unit(5 + 5 / 12, "feet"),
  5379. weight: math.unit(120, "lbs"),
  5380. name: "Front",
  5381. image: {
  5382. source: "./media/characters/geta/front.svg",
  5383. extra: 1003/933,
  5384. bottom: 21/1024
  5385. }
  5386. },
  5387. paw: {
  5388. height: math.unit(0.35, "feet"),
  5389. name: "Paw",
  5390. image: {
  5391. source: "./media/characters/geta/paw.svg"
  5392. }
  5393. },
  5394. },
  5395. [
  5396. {
  5397. name: "Micro",
  5398. height: math.unit(3, "inches"),
  5399. default: true
  5400. },
  5401. {
  5402. name: "Normal",
  5403. height: math.unit(5 + 5 / 12, "feet")
  5404. }
  5405. ]
  5406. ))
  5407. characterMakers.push(() => makeCharacter(
  5408. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5409. {
  5410. front: {
  5411. height: math.unit(6, "feet"),
  5412. weight: math.unit(300, "lbs"),
  5413. name: "Front",
  5414. image: {
  5415. source: "./media/characters/tyrnn/front.svg"
  5416. }
  5417. }
  5418. },
  5419. [
  5420. {
  5421. name: "Main Height",
  5422. height: math.unit(355, "feet"),
  5423. default: true
  5424. },
  5425. {
  5426. name: "Fave. Height",
  5427. height: math.unit(2400, "feet")
  5428. }
  5429. ]
  5430. ))
  5431. characterMakers.push(() => makeCharacter(
  5432. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5433. {
  5434. front: {
  5435. height: math.unit(6, "feet"),
  5436. weight: math.unit(300, "lbs"),
  5437. name: "Front",
  5438. image: {
  5439. source: "./media/characters/appledectomy/front.svg"
  5440. }
  5441. }
  5442. },
  5443. [
  5444. {
  5445. name: "Macro",
  5446. height: math.unit(2500, "feet")
  5447. },
  5448. {
  5449. name: "Megamacro",
  5450. height: math.unit(50, "miles"),
  5451. default: true
  5452. },
  5453. {
  5454. name: "Gigamacro",
  5455. height: math.unit(5000, "miles")
  5456. },
  5457. {
  5458. name: "Teramacro",
  5459. height: math.unit(250000, "miles")
  5460. },
  5461. ]
  5462. ))
  5463. characterMakers.push(() => makeCharacter(
  5464. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5465. {
  5466. front: {
  5467. height: math.unit(6, "feet"),
  5468. weight: math.unit(200, "lbs"),
  5469. name: "Front",
  5470. image: {
  5471. source: "./media/characters/vulpes/front.svg",
  5472. extra: 573 / 543,
  5473. bottom: 0.033
  5474. }
  5475. },
  5476. side: {
  5477. height: math.unit(6, "feet"),
  5478. weight: math.unit(200, "lbs"),
  5479. name: "Side",
  5480. image: {
  5481. source: "./media/characters/vulpes/side.svg",
  5482. extra: 577 / 549,
  5483. bottom: 11 / 588
  5484. }
  5485. },
  5486. back: {
  5487. height: math.unit(6, "feet"),
  5488. weight: math.unit(200, "lbs"),
  5489. name: "Back",
  5490. image: {
  5491. source: "./media/characters/vulpes/back.svg",
  5492. extra: 573 / 549,
  5493. bottom: 20 / 593
  5494. }
  5495. },
  5496. feet: {
  5497. height: math.unit(1.276, "feet"),
  5498. name: "Feet",
  5499. image: {
  5500. source: "./media/characters/vulpes/feet.svg"
  5501. }
  5502. },
  5503. maw: {
  5504. height: math.unit(1.18, "feet"),
  5505. name: "Maw",
  5506. image: {
  5507. source: "./media/characters/vulpes/maw.svg"
  5508. }
  5509. },
  5510. },
  5511. [
  5512. {
  5513. name: "Micro",
  5514. height: math.unit(2, "inches")
  5515. },
  5516. {
  5517. name: "Normal",
  5518. height: math.unit(6.3, "feet")
  5519. },
  5520. {
  5521. name: "Macro",
  5522. height: math.unit(850, "feet")
  5523. },
  5524. {
  5525. name: "Megamacro",
  5526. height: math.unit(7500, "feet"),
  5527. default: true
  5528. },
  5529. {
  5530. name: "Gigamacro",
  5531. height: math.unit(570000, "miles")
  5532. }
  5533. ]
  5534. ))
  5535. characterMakers.push(() => makeCharacter(
  5536. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5537. {
  5538. front: {
  5539. height: math.unit(6, "feet"),
  5540. weight: math.unit(210, "lbs"),
  5541. name: "Front",
  5542. image: {
  5543. source: "./media/characters/rain-fallen/front.svg"
  5544. }
  5545. },
  5546. side: {
  5547. height: math.unit(6, "feet"),
  5548. weight: math.unit(210, "lbs"),
  5549. name: "Side",
  5550. image: {
  5551. source: "./media/characters/rain-fallen/side.svg"
  5552. }
  5553. },
  5554. back: {
  5555. height: math.unit(6, "feet"),
  5556. weight: math.unit(210, "lbs"),
  5557. name: "Back",
  5558. image: {
  5559. source: "./media/characters/rain-fallen/back.svg"
  5560. }
  5561. },
  5562. feral: {
  5563. height: math.unit(9, "feet"),
  5564. weight: math.unit(700, "lbs"),
  5565. name: "Feral",
  5566. image: {
  5567. source: "./media/characters/rain-fallen/feral.svg"
  5568. }
  5569. },
  5570. },
  5571. [
  5572. {
  5573. name: "Meddling with Mortals",
  5574. height: math.unit(8 + 8/12, "feet")
  5575. },
  5576. {
  5577. name: "Normal",
  5578. height: math.unit(5, "meter")
  5579. },
  5580. {
  5581. name: "Macro",
  5582. height: math.unit(150, "meter"),
  5583. default: true
  5584. },
  5585. {
  5586. name: "Megamacro",
  5587. height: math.unit(278e6, "meter")
  5588. },
  5589. {
  5590. name: "Gigamacro",
  5591. height: math.unit(2e9, "meter")
  5592. },
  5593. {
  5594. name: "Teramacro",
  5595. height: math.unit(8e12, "meter")
  5596. },
  5597. {
  5598. name: "Devourer",
  5599. height: math.unit(14, "zettameters")
  5600. },
  5601. {
  5602. name: "Scarlet King",
  5603. height: math.unit(18, "yottameters")
  5604. },
  5605. {
  5606. name: "Void",
  5607. height: math.unit(1e88, "yottameters")
  5608. }
  5609. ]
  5610. ))
  5611. characterMakers.push(() => makeCharacter(
  5612. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5613. {
  5614. standing: {
  5615. height: math.unit(6, "feet"),
  5616. weight: math.unit(180, "lbs"),
  5617. name: "Standing",
  5618. image: {
  5619. source: "./media/characters/zaakira/standing.svg",
  5620. extra: 1599/1504,
  5621. bottom: 39/1638
  5622. }
  5623. },
  5624. laying: {
  5625. height: math.unit(3.3, "feet"),
  5626. weight: math.unit(180, "lbs"),
  5627. name: "Laying",
  5628. image: {
  5629. source: "./media/characters/zaakira/laying.svg"
  5630. }
  5631. },
  5632. },
  5633. [
  5634. {
  5635. name: "Normal",
  5636. height: math.unit(12, "feet")
  5637. },
  5638. {
  5639. name: "Macro",
  5640. height: math.unit(279, "feet"),
  5641. default: true
  5642. }
  5643. ]
  5644. ))
  5645. characterMakers.push(() => makeCharacter(
  5646. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5647. {
  5648. femSfw: {
  5649. height: math.unit(8, "feet"),
  5650. weight: math.unit(350, "lb"),
  5651. name: "Fem",
  5652. image: {
  5653. source: "./media/characters/sigvald/fem-sfw.svg",
  5654. extra: 182 / 164,
  5655. bottom: 8.7 / 190.5
  5656. }
  5657. },
  5658. femNsfw: {
  5659. height: math.unit(8, "feet"),
  5660. weight: math.unit(350, "lb"),
  5661. name: "Fem (NSFW)",
  5662. image: {
  5663. source: "./media/characters/sigvald/fem-nsfw.svg",
  5664. extra: 182 / 164,
  5665. bottom: 8.7 / 190.5
  5666. }
  5667. },
  5668. maleNsfw: {
  5669. height: math.unit(8, "feet"),
  5670. weight: math.unit(350, "lb"),
  5671. name: "Male (NSFW)",
  5672. image: {
  5673. source: "./media/characters/sigvald/male-nsfw.svg",
  5674. extra: 182 / 164,
  5675. bottom: 8.7 / 190.5
  5676. }
  5677. },
  5678. hermNsfw: {
  5679. height: math.unit(8, "feet"),
  5680. weight: math.unit(350, "lb"),
  5681. name: "Herm (NSFW)",
  5682. image: {
  5683. source: "./media/characters/sigvald/herm-nsfw.svg",
  5684. extra: 182 / 164,
  5685. bottom: 8.7 / 190.5
  5686. }
  5687. },
  5688. dick: {
  5689. height: math.unit(2.36, "feet"),
  5690. name: "Dick",
  5691. image: {
  5692. source: "./media/characters/sigvald/dick.svg"
  5693. }
  5694. },
  5695. eye: {
  5696. height: math.unit(0.31, "feet"),
  5697. name: "Eye",
  5698. image: {
  5699. source: "./media/characters/sigvald/eye.svg"
  5700. }
  5701. },
  5702. mouth: {
  5703. height: math.unit(0.92, "feet"),
  5704. name: "Mouth",
  5705. image: {
  5706. source: "./media/characters/sigvald/mouth.svg"
  5707. }
  5708. },
  5709. paws: {
  5710. height: math.unit(2.2, "feet"),
  5711. name: "Paws",
  5712. image: {
  5713. source: "./media/characters/sigvald/paws.svg"
  5714. }
  5715. }
  5716. },
  5717. [
  5718. {
  5719. name: "Normal",
  5720. height: math.unit(8, "feet")
  5721. },
  5722. {
  5723. name: "Large",
  5724. height: math.unit(12, "feet")
  5725. },
  5726. {
  5727. name: "Larger",
  5728. height: math.unit(20, "feet")
  5729. },
  5730. {
  5731. name: "Macro",
  5732. height: math.unit(150, "feet")
  5733. },
  5734. {
  5735. name: "Macro+",
  5736. height: math.unit(200, "feet"),
  5737. default: true
  5738. },
  5739. ]
  5740. ))
  5741. characterMakers.push(() => makeCharacter(
  5742. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5743. {
  5744. side: {
  5745. height: math.unit(12, "feet"),
  5746. weight: math.unit(2000, "kg"),
  5747. name: "Side",
  5748. image: {
  5749. source: "./media/characters/scott/side.svg",
  5750. extra: 754 / 724,
  5751. bottom: 0.069
  5752. }
  5753. },
  5754. upright: {
  5755. height: math.unit(12, "feet"),
  5756. weight: math.unit(2000, "kg"),
  5757. name: "Upright",
  5758. image: {
  5759. source: "./media/characters/scott/upright.svg",
  5760. extra: 3881 / 3722,
  5761. bottom: 0.05
  5762. }
  5763. },
  5764. },
  5765. [
  5766. {
  5767. name: "Normal",
  5768. height: math.unit(12, "feet"),
  5769. default: true
  5770. },
  5771. ]
  5772. ))
  5773. characterMakers.push(() => makeCharacter(
  5774. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5775. {
  5776. side: {
  5777. height: math.unit(8, "meters"),
  5778. weight: math.unit(84755, "lbs"),
  5779. name: "Side",
  5780. image: {
  5781. source: "./media/characters/tobias/side.svg",
  5782. extra: 1474 / 1096,
  5783. bottom: 38.9 / 1513.1235
  5784. }
  5785. },
  5786. },
  5787. [
  5788. {
  5789. name: "Normal",
  5790. height: math.unit(8, "meters"),
  5791. default: true
  5792. },
  5793. ]
  5794. ))
  5795. characterMakers.push(() => makeCharacter(
  5796. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5797. {
  5798. front: {
  5799. height: math.unit(5.5, "feet"),
  5800. weight: math.unit(400, "lbs"),
  5801. name: "Front",
  5802. image: {
  5803. source: "./media/characters/kieran/front.svg",
  5804. extra: 2694 / 2364,
  5805. bottom: 217 / 2908
  5806. }
  5807. },
  5808. side: {
  5809. height: math.unit(5.5, "feet"),
  5810. weight: math.unit(400, "lbs"),
  5811. name: "Side",
  5812. image: {
  5813. source: "./media/characters/kieran/side.svg",
  5814. extra: 875 / 777,
  5815. bottom: 84.6 / 959
  5816. }
  5817. },
  5818. },
  5819. [
  5820. {
  5821. name: "Normal",
  5822. height: math.unit(5.5, "feet"),
  5823. default: true
  5824. },
  5825. ]
  5826. ))
  5827. characterMakers.push(() => makeCharacter(
  5828. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5829. {
  5830. side: {
  5831. height: math.unit(2, "meters"),
  5832. weight: math.unit(70, "kg"),
  5833. name: "Side",
  5834. image: {
  5835. source: "./media/characters/sanya/side.svg",
  5836. bottom: 0.02,
  5837. extra: 1.02
  5838. }
  5839. },
  5840. },
  5841. [
  5842. {
  5843. name: "Small",
  5844. height: math.unit(2, "meters")
  5845. },
  5846. {
  5847. name: "Normal",
  5848. height: math.unit(3, "meters")
  5849. },
  5850. {
  5851. name: "Macro",
  5852. height: math.unit(16, "meters"),
  5853. default: true
  5854. },
  5855. ]
  5856. ))
  5857. characterMakers.push(() => makeCharacter(
  5858. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5859. {
  5860. front: {
  5861. height: math.unit(2, "meters"),
  5862. weight: math.unit(120, "kg"),
  5863. name: "Front",
  5864. image: {
  5865. source: "./media/characters/miranda/front.svg",
  5866. extra: 195 / 185,
  5867. bottom: 10.9 / 206.5
  5868. }
  5869. },
  5870. back: {
  5871. height: math.unit(2, "meters"),
  5872. weight: math.unit(120, "kg"),
  5873. name: "Back",
  5874. image: {
  5875. source: "./media/characters/miranda/back.svg",
  5876. extra: 201 / 193,
  5877. bottom: 2.3 / 203.7
  5878. }
  5879. },
  5880. },
  5881. [
  5882. {
  5883. name: "Normal",
  5884. height: math.unit(10, "feet"),
  5885. default: true
  5886. }
  5887. ]
  5888. ))
  5889. characterMakers.push(() => makeCharacter(
  5890. { name: "James", species: ["deer"], tags: ["anthro"] },
  5891. {
  5892. side: {
  5893. height: math.unit(2, "meters"),
  5894. weight: math.unit(100, "kg"),
  5895. name: "Front",
  5896. image: {
  5897. source: "./media/characters/james/front.svg",
  5898. extra: 10 / 8.5
  5899. }
  5900. },
  5901. },
  5902. [
  5903. {
  5904. name: "Normal",
  5905. height: math.unit(8.5, "feet"),
  5906. default: true
  5907. }
  5908. ]
  5909. ))
  5910. characterMakers.push(() => makeCharacter(
  5911. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5912. {
  5913. side: {
  5914. height: math.unit(9.5, "feet"),
  5915. weight: math.unit(2500, "lbs"),
  5916. name: "Side",
  5917. image: {
  5918. source: "./media/characters/heather/side.svg"
  5919. }
  5920. },
  5921. },
  5922. [
  5923. {
  5924. name: "Normal",
  5925. height: math.unit(9.5, "feet"),
  5926. default: true
  5927. }
  5928. ]
  5929. ))
  5930. characterMakers.push(() => makeCharacter(
  5931. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5932. {
  5933. side: {
  5934. height: math.unit(6.5, "feet"),
  5935. weight: math.unit(400, "lbs"),
  5936. name: "Side",
  5937. image: {
  5938. source: "./media/characters/lukas/side.svg",
  5939. extra: 7.25 / 6.5
  5940. }
  5941. },
  5942. },
  5943. [
  5944. {
  5945. name: "Normal",
  5946. height: math.unit(6.5, "feet"),
  5947. default: true
  5948. }
  5949. ]
  5950. ))
  5951. characterMakers.push(() => makeCharacter(
  5952. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5953. {
  5954. side: {
  5955. height: math.unit(5, "feet"),
  5956. weight: math.unit(3000, "lbs"),
  5957. name: "Side",
  5958. image: {
  5959. source: "./media/characters/louise/side.svg"
  5960. }
  5961. },
  5962. },
  5963. [
  5964. {
  5965. name: "Normal",
  5966. height: math.unit(5, "feet"),
  5967. default: true
  5968. }
  5969. ]
  5970. ))
  5971. characterMakers.push(() => makeCharacter(
  5972. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5973. {
  5974. side: {
  5975. height: math.unit(6, "feet"),
  5976. weight: math.unit(150, "lbs"),
  5977. name: "Side",
  5978. image: {
  5979. source: "./media/characters/ramona/side.svg",
  5980. extra: 871/854,
  5981. bottom: 41/912
  5982. }
  5983. },
  5984. },
  5985. [
  5986. {
  5987. name: "Normal",
  5988. height: math.unit(6 + 4/12, "feet")
  5989. },
  5990. {
  5991. name: "Minimacro",
  5992. height: math.unit(5.3, "meters"),
  5993. default: true
  5994. },
  5995. {
  5996. name: "Macro",
  5997. height: math.unit(20, "stories")
  5998. },
  5999. {
  6000. name: "Macro+",
  6001. height: math.unit(50, "stories")
  6002. },
  6003. ]
  6004. ))
  6005. characterMakers.push(() => makeCharacter(
  6006. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6007. {
  6008. standing: {
  6009. height: math.unit(5.75, "feet"),
  6010. weight: math.unit(160, "lbs"),
  6011. name: "Standing",
  6012. image: {
  6013. source: "./media/characters/deerpuff/standing.svg",
  6014. extra: 682 / 624
  6015. }
  6016. },
  6017. sitting: {
  6018. height: math.unit(5.75 / 1.79, "feet"),
  6019. weight: math.unit(160, "lbs"),
  6020. name: "Sitting",
  6021. image: {
  6022. source: "./media/characters/deerpuff/sitting.svg",
  6023. bottom: 44 / 400,
  6024. extra: 1
  6025. }
  6026. },
  6027. taurLaying: {
  6028. height: math.unit(6, "feet"),
  6029. weight: math.unit(400, "lbs"),
  6030. name: "Taur (Laying)",
  6031. image: {
  6032. source: "./media/characters/deerpuff/taur-laying.svg"
  6033. }
  6034. },
  6035. },
  6036. [
  6037. {
  6038. name: "Puffball",
  6039. height: math.unit(6, "inches")
  6040. },
  6041. {
  6042. name: "Normalpuff",
  6043. height: math.unit(5.75, "feet")
  6044. },
  6045. {
  6046. name: "Macropuff",
  6047. height: math.unit(1500, "feet"),
  6048. default: true
  6049. },
  6050. {
  6051. name: "Megapuff",
  6052. height: math.unit(500, "miles")
  6053. },
  6054. {
  6055. name: "Gigapuff",
  6056. height: math.unit(250000, "miles")
  6057. },
  6058. {
  6059. name: "Omegapuff",
  6060. height: math.unit(1000, "lightyears")
  6061. },
  6062. ]
  6063. ))
  6064. characterMakers.push(() => makeCharacter(
  6065. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6066. {
  6067. stomping: {
  6068. height: math.unit(6, "feet"),
  6069. weight: math.unit(170, "lbs"),
  6070. name: "Stomping",
  6071. image: {
  6072. source: "./media/characters/vivian/stomping.svg"
  6073. }
  6074. },
  6075. sitting: {
  6076. height: math.unit(6 / 1.75, "feet"),
  6077. weight: math.unit(170, "lbs"),
  6078. name: "Sitting",
  6079. image: {
  6080. source: "./media/characters/vivian/sitting.svg",
  6081. bottom: 1 / 6.4,
  6082. extra: 1,
  6083. }
  6084. },
  6085. },
  6086. [
  6087. {
  6088. name: "Normal",
  6089. height: math.unit(7, "feet"),
  6090. default: true
  6091. },
  6092. {
  6093. name: "Macro",
  6094. height: math.unit(10, "stories")
  6095. },
  6096. {
  6097. name: "Macro+",
  6098. height: math.unit(30, "stories")
  6099. },
  6100. {
  6101. name: "Megamacro",
  6102. height: math.unit(10, "miles")
  6103. },
  6104. {
  6105. name: "Megamacro+",
  6106. height: math.unit(2750000, "meters")
  6107. },
  6108. ]
  6109. ))
  6110. characterMakers.push(() => makeCharacter(
  6111. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6112. {
  6113. front: {
  6114. height: math.unit(6, "feet"),
  6115. weight: math.unit(160, "lbs"),
  6116. name: "Front",
  6117. image: {
  6118. source: "./media/characters/prince/front.svg",
  6119. extra: 3400 / 3000
  6120. }
  6121. },
  6122. jumping: {
  6123. height: math.unit(6, "feet"),
  6124. weight: math.unit(160, "lbs"),
  6125. name: "Jumping",
  6126. image: {
  6127. source: "./media/characters/prince/jump.svg",
  6128. extra: 2555 / 2134
  6129. }
  6130. },
  6131. },
  6132. [
  6133. {
  6134. name: "Normal",
  6135. height: math.unit(7.75, "feet"),
  6136. default: true
  6137. },
  6138. {
  6139. name: "Not cute",
  6140. height: math.unit(17, "feet")
  6141. },
  6142. {
  6143. name: "I said NOT",
  6144. height: math.unit(91, "feet")
  6145. },
  6146. {
  6147. name: "Please stop",
  6148. height: math.unit(560, "feet")
  6149. },
  6150. {
  6151. name: "What have you done",
  6152. height: math.unit(2200, "feet")
  6153. },
  6154. {
  6155. name: "Deer God",
  6156. height: math.unit(3.6, "miles")
  6157. },
  6158. ]
  6159. ))
  6160. characterMakers.push(() => makeCharacter(
  6161. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6162. {
  6163. standing: {
  6164. height: math.unit(6, "feet"),
  6165. weight: math.unit(300, "lbs"),
  6166. name: "Standing",
  6167. image: {
  6168. source: "./media/characters/psymon/standing.svg",
  6169. extra: 1888 / 1810,
  6170. bottom: 0.05
  6171. }
  6172. },
  6173. slithering: {
  6174. height: math.unit(6, "feet"),
  6175. weight: math.unit(300, "lbs"),
  6176. name: "Slithering",
  6177. image: {
  6178. source: "./media/characters/psymon/slithering.svg",
  6179. extra: 1330 / 1224
  6180. }
  6181. },
  6182. slitheringAlt: {
  6183. height: math.unit(6, "feet"),
  6184. weight: math.unit(300, "lbs"),
  6185. name: "Slithering (Alt)",
  6186. image: {
  6187. source: "./media/characters/psymon/slithering-alt.svg",
  6188. extra: 1330 / 1224
  6189. }
  6190. },
  6191. },
  6192. [
  6193. {
  6194. name: "Normal",
  6195. height: math.unit(11.25, "feet"),
  6196. default: true
  6197. },
  6198. {
  6199. name: "Large",
  6200. height: math.unit(27, "feet")
  6201. },
  6202. {
  6203. name: "Giant",
  6204. height: math.unit(87, "feet")
  6205. },
  6206. {
  6207. name: "Macro",
  6208. height: math.unit(365, "feet")
  6209. },
  6210. {
  6211. name: "Megamacro",
  6212. height: math.unit(3, "miles")
  6213. },
  6214. {
  6215. name: "World Serpent",
  6216. height: math.unit(8000, "miles")
  6217. },
  6218. ]
  6219. ))
  6220. characterMakers.push(() => makeCharacter(
  6221. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6222. {
  6223. front: {
  6224. height: math.unit(6, "feet"),
  6225. weight: math.unit(180, "lbs"),
  6226. name: "Front",
  6227. image: {
  6228. source: "./media/characters/daimos/front.svg",
  6229. extra: 4160 / 3897,
  6230. bottom: 0.021
  6231. }
  6232. }
  6233. },
  6234. [
  6235. {
  6236. name: "Normal",
  6237. height: math.unit(8, "feet"),
  6238. default: true
  6239. },
  6240. {
  6241. name: "Big Dog",
  6242. height: math.unit(22, "feet")
  6243. },
  6244. {
  6245. name: "Macro",
  6246. height: math.unit(127, "feet")
  6247. },
  6248. {
  6249. name: "Megamacro",
  6250. height: math.unit(3600, "feet")
  6251. },
  6252. ]
  6253. ))
  6254. characterMakers.push(() => makeCharacter(
  6255. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6256. {
  6257. side: {
  6258. height: math.unit(6, "feet"),
  6259. weight: math.unit(180, "lbs"),
  6260. name: "Side",
  6261. image: {
  6262. source: "./media/characters/blake/side.svg",
  6263. extra: 1212 / 1120,
  6264. bottom: 0.05
  6265. }
  6266. },
  6267. crouched: {
  6268. height: math.unit(6 * 0.57, "feet"),
  6269. weight: math.unit(180, "lbs"),
  6270. name: "Crouched",
  6271. image: {
  6272. source: "./media/characters/blake/crouched.svg",
  6273. extra: 840 / 587,
  6274. bottom: 0.04
  6275. }
  6276. },
  6277. bent: {
  6278. height: math.unit(6 * 0.75, "feet"),
  6279. weight: math.unit(180, "lbs"),
  6280. name: "Bent",
  6281. image: {
  6282. source: "./media/characters/blake/bent.svg",
  6283. extra: 592 / 544,
  6284. bottom: 0.035
  6285. }
  6286. },
  6287. },
  6288. [
  6289. {
  6290. name: "Normal",
  6291. height: math.unit(8 + 1 / 6, "feet"),
  6292. default: true
  6293. },
  6294. {
  6295. name: "Big Backside",
  6296. height: math.unit(37, "feet")
  6297. },
  6298. {
  6299. name: "Subway Shredder",
  6300. height: math.unit(72, "feet")
  6301. },
  6302. {
  6303. name: "City Carver",
  6304. height: math.unit(1675, "feet")
  6305. },
  6306. {
  6307. name: "Tectonic Tweaker",
  6308. height: math.unit(2300, "miles")
  6309. },
  6310. ]
  6311. ))
  6312. characterMakers.push(() => makeCharacter(
  6313. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6314. {
  6315. front: {
  6316. height: math.unit(6, "feet"),
  6317. weight: math.unit(180, "lbs"),
  6318. name: "Front",
  6319. image: {
  6320. source: "./media/characters/guisetto/front.svg",
  6321. extra: 856 / 817,
  6322. bottom: 0.06
  6323. }
  6324. },
  6325. airborne: {
  6326. height: math.unit(6, "feet"),
  6327. weight: math.unit(180, "lbs"),
  6328. name: "Airborne",
  6329. image: {
  6330. source: "./media/characters/guisetto/airborne.svg",
  6331. extra: 584 / 525
  6332. }
  6333. },
  6334. },
  6335. [
  6336. {
  6337. name: "Normal",
  6338. height: math.unit(10 + 11 / 12, "feet"),
  6339. default: true
  6340. },
  6341. {
  6342. name: "Large",
  6343. height: math.unit(35, "feet")
  6344. },
  6345. {
  6346. name: "Macro",
  6347. height: math.unit(475, "feet")
  6348. },
  6349. ]
  6350. ))
  6351. characterMakers.push(() => makeCharacter(
  6352. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6353. {
  6354. front: {
  6355. height: math.unit(6, "feet"),
  6356. weight: math.unit(180, "lbs"),
  6357. name: "Front",
  6358. image: {
  6359. source: "./media/characters/luxor/front.svg",
  6360. extra: 2940 / 2152
  6361. }
  6362. },
  6363. back: {
  6364. height: math.unit(6, "feet"),
  6365. weight: math.unit(180, "lbs"),
  6366. name: "Back",
  6367. image: {
  6368. source: "./media/characters/luxor/back.svg",
  6369. extra: 1083 / 960
  6370. }
  6371. },
  6372. },
  6373. [
  6374. {
  6375. name: "Normal",
  6376. height: math.unit(5 + 5 / 6, "feet"),
  6377. default: true
  6378. },
  6379. {
  6380. name: "Lamp",
  6381. height: math.unit(50, "feet")
  6382. },
  6383. {
  6384. name: "Lämp",
  6385. height: math.unit(300, "feet")
  6386. },
  6387. {
  6388. name: "The sun is a lamp",
  6389. height: math.unit(250000, "miles")
  6390. },
  6391. ]
  6392. ))
  6393. characterMakers.push(() => makeCharacter(
  6394. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6395. {
  6396. front: {
  6397. height: math.unit(6, "feet"),
  6398. weight: math.unit(50, "lbs"),
  6399. name: "Front",
  6400. image: {
  6401. source: "./media/characters/huoyan/front.svg"
  6402. }
  6403. },
  6404. side: {
  6405. height: math.unit(6, "feet"),
  6406. weight: math.unit(180, "lbs"),
  6407. name: "Side",
  6408. image: {
  6409. source: "./media/characters/huoyan/side.svg"
  6410. }
  6411. },
  6412. },
  6413. [
  6414. {
  6415. name: "Chef",
  6416. height: math.unit(9, "feet")
  6417. },
  6418. {
  6419. name: "Normal",
  6420. height: math.unit(65, "feet"),
  6421. default: true
  6422. },
  6423. {
  6424. name: "Macro",
  6425. height: math.unit(780, "feet")
  6426. },
  6427. {
  6428. name: "Flaming Mountain",
  6429. height: math.unit(4.8, "miles")
  6430. },
  6431. {
  6432. name: "Celestial",
  6433. height: math.unit(765000, "miles")
  6434. },
  6435. ]
  6436. ))
  6437. characterMakers.push(() => makeCharacter(
  6438. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6439. {
  6440. front: {
  6441. height: math.unit(5 + 3 / 4, "feet"),
  6442. weight: math.unit(120, "lbs"),
  6443. name: "Front",
  6444. image: {
  6445. source: "./media/characters/tails/front.svg"
  6446. }
  6447. }
  6448. },
  6449. [
  6450. {
  6451. name: "Normal",
  6452. height: math.unit(5 + 3 / 4, "feet"),
  6453. default: true
  6454. }
  6455. ]
  6456. ))
  6457. characterMakers.push(() => makeCharacter(
  6458. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6459. {
  6460. front: {
  6461. height: math.unit(4, "feet"),
  6462. weight: math.unit(50, "lbs"),
  6463. name: "Front",
  6464. image: {
  6465. source: "./media/characters/rainy/front.svg"
  6466. }
  6467. }
  6468. },
  6469. [
  6470. {
  6471. name: "Macro",
  6472. height: math.unit(800, "feet"),
  6473. default: true
  6474. }
  6475. ]
  6476. ))
  6477. characterMakers.push(() => makeCharacter(
  6478. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6479. {
  6480. front: {
  6481. height: math.unit(6, "feet"),
  6482. weight: math.unit(150, "lbs"),
  6483. name: "Front",
  6484. image: {
  6485. source: "./media/characters/rainier/front.svg"
  6486. }
  6487. }
  6488. },
  6489. [
  6490. {
  6491. name: "Micro",
  6492. height: math.unit(2, "mm"),
  6493. default: true
  6494. }
  6495. ]
  6496. ))
  6497. characterMakers.push(() => makeCharacter(
  6498. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6499. {
  6500. front: {
  6501. height: math.unit(8 + 4/12, "feet"),
  6502. weight: math.unit(450, "kilograms"),
  6503. volume: math.unit(5, "cups"),
  6504. name: "Front",
  6505. image: {
  6506. source: "./media/characters/andy-renard/front.svg",
  6507. extra: 1839/1726,
  6508. bottom: 134/1973
  6509. }
  6510. },
  6511. back: {
  6512. height: math.unit(8 + 4/12, "feet"),
  6513. weight: math.unit(450, "kilograms"),
  6514. volume: math.unit(5, "cups"),
  6515. name: "Back",
  6516. image: {
  6517. source: "./media/characters/andy-renard/back.svg",
  6518. extra: 1838/1710,
  6519. bottom: 105/1943
  6520. }
  6521. },
  6522. },
  6523. [
  6524. {
  6525. name: "Tall",
  6526. height: math.unit(8 + 4/12, "feet")
  6527. },
  6528. {
  6529. name: "Mini Macro",
  6530. height: math.unit(15, "feet"),
  6531. default: true
  6532. },
  6533. {
  6534. name: "Macro",
  6535. height: math.unit(100, "feet")
  6536. },
  6537. {
  6538. name: "Mega Macro",
  6539. height: math.unit(1000, "feet")
  6540. },
  6541. {
  6542. name: "Giga Macro",
  6543. height: math.unit(10, "miles")
  6544. },
  6545. {
  6546. name: "God Macro",
  6547. height: math.unit(1, "multiverse")
  6548. },
  6549. ]
  6550. ))
  6551. characterMakers.push(() => makeCharacter(
  6552. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6553. {
  6554. front: {
  6555. height: math.unit(6, "feet"),
  6556. weight: math.unit(210, "lbs"),
  6557. name: "Front",
  6558. image: {
  6559. source: "./media/characters/cimmaron/front-sfw.svg",
  6560. extra: 701 / 676,
  6561. bottom: 0.046
  6562. }
  6563. },
  6564. back: {
  6565. height: math.unit(6, "feet"),
  6566. weight: math.unit(210, "lbs"),
  6567. name: "Back",
  6568. image: {
  6569. source: "./media/characters/cimmaron/back-sfw.svg",
  6570. extra: 701 / 676,
  6571. bottom: 0.046
  6572. }
  6573. },
  6574. frontNsfw: {
  6575. height: math.unit(6, "feet"),
  6576. weight: math.unit(210, "lbs"),
  6577. name: "Front (NSFW)",
  6578. image: {
  6579. source: "./media/characters/cimmaron/front-nsfw.svg",
  6580. extra: 701 / 676,
  6581. bottom: 0.046
  6582. }
  6583. },
  6584. backNsfw: {
  6585. height: math.unit(6, "feet"),
  6586. weight: math.unit(210, "lbs"),
  6587. name: "Back (NSFW)",
  6588. image: {
  6589. source: "./media/characters/cimmaron/back-nsfw.svg",
  6590. extra: 701 / 676,
  6591. bottom: 0.046
  6592. }
  6593. },
  6594. dick: {
  6595. height: math.unit(1.714, "feet"),
  6596. name: "Dick",
  6597. image: {
  6598. source: "./media/characters/cimmaron/dick.svg"
  6599. }
  6600. },
  6601. },
  6602. [
  6603. {
  6604. name: "Normal",
  6605. height: math.unit(6, "feet"),
  6606. default: true
  6607. },
  6608. {
  6609. name: "Macro Mayor",
  6610. height: math.unit(350, "meters")
  6611. },
  6612. ]
  6613. ))
  6614. characterMakers.push(() => makeCharacter(
  6615. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6616. {
  6617. front: {
  6618. height: math.unit(6, "feet"),
  6619. weight: math.unit(200, "lbs"),
  6620. name: "Front",
  6621. image: {
  6622. source: "./media/characters/akari/front.svg",
  6623. extra: 962 / 901,
  6624. bottom: 0.04
  6625. }
  6626. }
  6627. },
  6628. [
  6629. {
  6630. name: "Micro",
  6631. height: math.unit(5, "inches"),
  6632. default: true
  6633. },
  6634. {
  6635. name: "Normal",
  6636. height: math.unit(7, "feet")
  6637. },
  6638. ]
  6639. ))
  6640. characterMakers.push(() => makeCharacter(
  6641. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6642. {
  6643. front: {
  6644. height: math.unit(6, "feet"),
  6645. weight: math.unit(140, "lbs"),
  6646. name: "Front",
  6647. image: {
  6648. source: "./media/characters/cynosura/front.svg",
  6649. extra: 437/410,
  6650. bottom: 9/446
  6651. }
  6652. },
  6653. back: {
  6654. height: math.unit(6, "feet"),
  6655. weight: math.unit(140, "lbs"),
  6656. name: "Back",
  6657. image: {
  6658. source: "./media/characters/cynosura/back.svg",
  6659. extra: 1304/1160,
  6660. bottom: 71/1375
  6661. }
  6662. },
  6663. },
  6664. [
  6665. {
  6666. name: "Micro",
  6667. height: math.unit(4, "inches")
  6668. },
  6669. {
  6670. name: "Normal",
  6671. height: math.unit(5.75, "feet"),
  6672. default: true
  6673. },
  6674. {
  6675. name: "Tall",
  6676. height: math.unit(10, "feet")
  6677. },
  6678. {
  6679. name: "Big",
  6680. height: math.unit(20, "feet")
  6681. },
  6682. {
  6683. name: "Macro",
  6684. height: math.unit(50, "feet")
  6685. },
  6686. ]
  6687. ))
  6688. characterMakers.push(() => makeCharacter(
  6689. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6690. {
  6691. front: {
  6692. height: math.unit(13 + 2/12, "feet"),
  6693. weight: math.unit(800, "kg"),
  6694. name: "Front",
  6695. image: {
  6696. source: "./media/characters/gin/front.svg",
  6697. extra: 1312/1191,
  6698. bottom: 45/1357
  6699. }
  6700. },
  6701. mouth: {
  6702. height: math.unit(2.39 * 1.8, "feet"),
  6703. name: "Mouth",
  6704. image: {
  6705. source: "./media/characters/gin/mouth.svg"
  6706. }
  6707. },
  6708. hand: {
  6709. height: math.unit(1.57 * 2.19, "feet"),
  6710. name: "Hand",
  6711. image: {
  6712. source: "./media/characters/gin/hand.svg"
  6713. }
  6714. },
  6715. foot: {
  6716. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6717. name: "Foot",
  6718. image: {
  6719. source: "./media/characters/gin/foot.svg"
  6720. }
  6721. },
  6722. sole: {
  6723. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6724. name: "Sole",
  6725. image: {
  6726. source: "./media/characters/gin/sole.svg"
  6727. }
  6728. },
  6729. },
  6730. [
  6731. {
  6732. name: "Very Small",
  6733. height: math.unit(13 + 2 / 12, "feet")
  6734. },
  6735. {
  6736. name: "Micro",
  6737. height: math.unit(600, "miles")
  6738. },
  6739. {
  6740. name: "Regular",
  6741. height: math.unit(20, "earths"),
  6742. default: true
  6743. },
  6744. {
  6745. name: "Macro",
  6746. height: math.unit(2.2, "solarradii")
  6747. },
  6748. {
  6749. name: "Teramacro",
  6750. height: math.unit(1.2, "galaxies")
  6751. },
  6752. {
  6753. name: "Omegamacro",
  6754. height: math.unit(200, "universes")
  6755. },
  6756. ]
  6757. ))
  6758. characterMakers.push(() => makeCharacter(
  6759. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6760. {
  6761. front: {
  6762. height: math.unit(6 + 1 / 6, "feet"),
  6763. weight: math.unit(178, "lbs"),
  6764. name: "Front",
  6765. image: {
  6766. source: "./media/characters/guy/front.svg"
  6767. }
  6768. }
  6769. },
  6770. [
  6771. {
  6772. name: "Normal",
  6773. height: math.unit(6 + 1 / 6, "feet"),
  6774. default: true
  6775. },
  6776. {
  6777. name: "Large",
  6778. height: math.unit(25 + 7 / 12, "feet")
  6779. },
  6780. {
  6781. name: "Macro",
  6782. height: math.unit(60 + 9 / 12, "feet")
  6783. },
  6784. {
  6785. name: "Macro+",
  6786. height: math.unit(246, "feet")
  6787. },
  6788. {
  6789. name: "Macro++",
  6790. height: math.unit(878, "feet")
  6791. }
  6792. ]
  6793. ))
  6794. characterMakers.push(() => makeCharacter(
  6795. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6796. {
  6797. front: {
  6798. height: math.unit(9, "feet"),
  6799. weight: math.unit(800, "lbs"),
  6800. name: "Front",
  6801. image: {
  6802. source: "./media/characters/tiberius/front.svg",
  6803. extra: 2295 / 2071
  6804. }
  6805. },
  6806. back: {
  6807. height: math.unit(9, "feet"),
  6808. weight: math.unit(800, "lbs"),
  6809. name: "Back",
  6810. image: {
  6811. source: "./media/characters/tiberius/back.svg",
  6812. extra: 2373 / 2160
  6813. }
  6814. },
  6815. },
  6816. [
  6817. {
  6818. name: "Normal",
  6819. height: math.unit(9, "feet"),
  6820. default: true
  6821. }
  6822. ]
  6823. ))
  6824. characterMakers.push(() => makeCharacter(
  6825. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6826. {
  6827. front: {
  6828. height: math.unit(6, "feet"),
  6829. weight: math.unit(600, "lbs"),
  6830. name: "Front",
  6831. image: {
  6832. source: "./media/characters/surgo/front.svg",
  6833. extra: 3591 / 2227
  6834. }
  6835. },
  6836. back: {
  6837. height: math.unit(6, "feet"),
  6838. weight: math.unit(600, "lbs"),
  6839. name: "Back",
  6840. image: {
  6841. source: "./media/characters/surgo/back.svg",
  6842. extra: 3557 / 2228
  6843. }
  6844. },
  6845. laying: {
  6846. height: math.unit(6 * 0.85, "feet"),
  6847. weight: math.unit(600, "lbs"),
  6848. name: "Laying",
  6849. image: {
  6850. source: "./media/characters/surgo/laying.svg"
  6851. }
  6852. },
  6853. },
  6854. [
  6855. {
  6856. name: "Normal",
  6857. height: math.unit(6, "feet"),
  6858. default: true
  6859. }
  6860. ]
  6861. ))
  6862. characterMakers.push(() => makeCharacter(
  6863. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6864. {
  6865. side: {
  6866. height: math.unit(6, "feet"),
  6867. weight: math.unit(150, "lbs"),
  6868. name: "Side",
  6869. image: {
  6870. source: "./media/characters/cibus/side.svg",
  6871. extra: 800 / 400
  6872. }
  6873. },
  6874. },
  6875. [
  6876. {
  6877. name: "Normal",
  6878. height: math.unit(6, "feet"),
  6879. default: true
  6880. }
  6881. ]
  6882. ))
  6883. characterMakers.push(() => makeCharacter(
  6884. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6885. {
  6886. front: {
  6887. height: math.unit(6, "feet"),
  6888. weight: math.unit(240, "lbs"),
  6889. name: "Front",
  6890. image: {
  6891. source: "./media/characters/nibbles/front.svg"
  6892. }
  6893. },
  6894. side: {
  6895. height: math.unit(6, "feet"),
  6896. weight: math.unit(240, "lbs"),
  6897. name: "Side",
  6898. image: {
  6899. source: "./media/characters/nibbles/side.svg"
  6900. }
  6901. },
  6902. },
  6903. [
  6904. {
  6905. name: "Normal",
  6906. height: math.unit(9, "feet"),
  6907. default: true
  6908. }
  6909. ]
  6910. ))
  6911. characterMakers.push(() => makeCharacter(
  6912. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6913. {
  6914. side: {
  6915. height: math.unit(5 + 1 / 6, "feet"),
  6916. weight: math.unit(130, "lbs"),
  6917. name: "Side",
  6918. image: {
  6919. source: "./media/characters/rikky/side.svg",
  6920. extra: 851 / 801
  6921. }
  6922. },
  6923. },
  6924. [
  6925. {
  6926. name: "Normal",
  6927. height: math.unit(5 + 1 / 6, "feet")
  6928. },
  6929. {
  6930. name: "Macro",
  6931. height: math.unit(152, "feet"),
  6932. default: true
  6933. },
  6934. {
  6935. name: "Megamacro",
  6936. height: math.unit(7, "miles")
  6937. }
  6938. ]
  6939. ))
  6940. characterMakers.push(() => makeCharacter(
  6941. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6942. {
  6943. side: {
  6944. height: math.unit(370, "cm"),
  6945. weight: math.unit(350, "lbs"),
  6946. name: "Side",
  6947. image: {
  6948. source: "./media/characters/malfressa/side.svg"
  6949. }
  6950. },
  6951. walking: {
  6952. height: math.unit(370, "cm"),
  6953. weight: math.unit(350, "lbs"),
  6954. name: "Walking",
  6955. image: {
  6956. source: "./media/characters/malfressa/walking.svg"
  6957. }
  6958. },
  6959. feral: {
  6960. height: math.unit(2500, "cm"),
  6961. weight: math.unit(100000, "lbs"),
  6962. name: "Feral",
  6963. image: {
  6964. source: "./media/characters/malfressa/feral.svg",
  6965. extra: 2108 / 837,
  6966. bottom: 0.02
  6967. }
  6968. },
  6969. },
  6970. [
  6971. {
  6972. name: "Normal",
  6973. height: math.unit(370, "cm")
  6974. },
  6975. {
  6976. name: "Macro",
  6977. height: math.unit(300, "meters"),
  6978. default: true
  6979. }
  6980. ]
  6981. ))
  6982. characterMakers.push(() => makeCharacter(
  6983. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6984. {
  6985. front: {
  6986. height: math.unit(6, "feet"),
  6987. weight: math.unit(60, "kg"),
  6988. name: "Front",
  6989. image: {
  6990. source: "./media/characters/jaro/front.svg",
  6991. extra: 845/817,
  6992. bottom: 45/890
  6993. }
  6994. },
  6995. back: {
  6996. height: math.unit(6, "feet"),
  6997. weight: math.unit(60, "kg"),
  6998. name: "Back",
  6999. image: {
  7000. source: "./media/characters/jaro/back.svg",
  7001. extra: 847/817,
  7002. bottom: 34/881
  7003. }
  7004. },
  7005. },
  7006. [
  7007. {
  7008. name: "Micro",
  7009. height: math.unit(7, "inches")
  7010. },
  7011. {
  7012. name: "Normal",
  7013. height: math.unit(5.5, "feet"),
  7014. default: true
  7015. },
  7016. {
  7017. name: "Minimacro",
  7018. height: math.unit(20, "feet")
  7019. },
  7020. {
  7021. name: "Macro",
  7022. height: math.unit(200, "meters")
  7023. }
  7024. ]
  7025. ))
  7026. characterMakers.push(() => makeCharacter(
  7027. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7028. {
  7029. front: {
  7030. height: math.unit(6, "feet"),
  7031. weight: math.unit(195, "lb"),
  7032. name: "Front",
  7033. image: {
  7034. source: "./media/characters/rogue/front.svg"
  7035. }
  7036. },
  7037. },
  7038. [
  7039. {
  7040. name: "Macro",
  7041. height: math.unit(90, "feet"),
  7042. default: true
  7043. },
  7044. ]
  7045. ))
  7046. characterMakers.push(() => makeCharacter(
  7047. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7048. {
  7049. standing: {
  7050. height: math.unit(5 + 8 / 12, "feet"),
  7051. weight: math.unit(140, "lb"),
  7052. name: "Standing",
  7053. image: {
  7054. source: "./media/characters/piper/standing.svg",
  7055. extra: 1440/1284,
  7056. bottom: 66/1506
  7057. }
  7058. },
  7059. running: {
  7060. height: math.unit(5 + 8 / 12, "feet"),
  7061. weight: math.unit(140, "lb"),
  7062. name: "Running",
  7063. image: {
  7064. source: "./media/characters/piper/running.svg",
  7065. extra: 3948/3655,
  7066. bottom: 0/3948
  7067. }
  7068. },
  7069. sole: {
  7070. height: math.unit(0.81, "feet"),
  7071. weight: math.unit(2, "kg"),
  7072. name: "Sole",
  7073. image: {
  7074. source: "./media/characters/piper/sole.svg"
  7075. }
  7076. },
  7077. nipple: {
  7078. height: math.unit(0.25, "feet"),
  7079. weight: math.unit(1.5, "lb"),
  7080. name: "Nipple",
  7081. image: {
  7082. source: "./media/characters/piper/nipple.svg"
  7083. }
  7084. },
  7085. head: {
  7086. height: math.unit(1.1, "feet"),
  7087. name: "Head",
  7088. image: {
  7089. source: "./media/characters/piper/head.svg"
  7090. }
  7091. },
  7092. },
  7093. [
  7094. {
  7095. name: "Micro",
  7096. height: math.unit(2, "inches")
  7097. },
  7098. {
  7099. name: "Normal",
  7100. height: math.unit(5 + 8 / 12, "feet")
  7101. },
  7102. {
  7103. name: "Macro",
  7104. height: math.unit(250, "feet"),
  7105. default: true
  7106. },
  7107. {
  7108. name: "Megamacro",
  7109. height: math.unit(7, "miles")
  7110. },
  7111. ]
  7112. ))
  7113. characterMakers.push(() => makeCharacter(
  7114. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7115. {
  7116. front: {
  7117. height: math.unit(6, "feet"),
  7118. weight: math.unit(220, "lb"),
  7119. name: "Front",
  7120. image: {
  7121. source: "./media/characters/gemini/front.svg"
  7122. }
  7123. },
  7124. back: {
  7125. height: math.unit(6, "feet"),
  7126. weight: math.unit(220, "lb"),
  7127. name: "Back",
  7128. image: {
  7129. source: "./media/characters/gemini/back.svg"
  7130. }
  7131. },
  7132. kneeling: {
  7133. height: math.unit(6 / 1.5, "feet"),
  7134. weight: math.unit(220, "lb"),
  7135. name: "Kneeling",
  7136. image: {
  7137. source: "./media/characters/gemini/kneeling.svg",
  7138. bottom: 0.02
  7139. }
  7140. },
  7141. },
  7142. [
  7143. {
  7144. name: "Macro",
  7145. height: math.unit(300, "meters"),
  7146. default: true
  7147. },
  7148. {
  7149. name: "Megamacro",
  7150. height: math.unit(6900, "meters")
  7151. },
  7152. ]
  7153. ))
  7154. characterMakers.push(() => makeCharacter(
  7155. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7156. {
  7157. anthro: {
  7158. height: math.unit(2.35, "meters"),
  7159. weight: math.unit(73, "kg"),
  7160. name: "Anthro",
  7161. image: {
  7162. source: "./media/characters/alicia/anthro.svg",
  7163. extra: 2571 / 2385,
  7164. bottom: 75 / 2648
  7165. }
  7166. },
  7167. paw: {
  7168. height: math.unit(1.32, "feet"),
  7169. name: "Paw",
  7170. image: {
  7171. source: "./media/characters/alicia/paw.svg"
  7172. }
  7173. },
  7174. feral: {
  7175. height: math.unit(1.69, "meters"),
  7176. weight: math.unit(73, "kg"),
  7177. name: "Feral",
  7178. image: {
  7179. source: "./media/characters/alicia/feral.svg",
  7180. extra: 2123 / 1715,
  7181. bottom: 222 / 2349
  7182. }
  7183. },
  7184. },
  7185. [
  7186. {
  7187. name: "Normal",
  7188. height: math.unit(2.35, "meters")
  7189. },
  7190. {
  7191. name: "Macro",
  7192. height: math.unit(60, "meters"),
  7193. default: true
  7194. },
  7195. {
  7196. name: "Megamacro",
  7197. height: math.unit(10000, "kilometers")
  7198. },
  7199. ]
  7200. ))
  7201. characterMakers.push(() => makeCharacter(
  7202. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7203. {
  7204. front: {
  7205. height: math.unit(7, "feet"),
  7206. weight: math.unit(250, "lbs"),
  7207. name: "Front",
  7208. image: {
  7209. source: "./media/characters/archy/front.svg"
  7210. }
  7211. }
  7212. },
  7213. [
  7214. {
  7215. name: "Micro",
  7216. height: math.unit(1, "inch")
  7217. },
  7218. {
  7219. name: "Shorty",
  7220. height: math.unit(5, "feet")
  7221. },
  7222. {
  7223. name: "Normal",
  7224. height: math.unit(7, "feet")
  7225. },
  7226. {
  7227. name: "Macro",
  7228. height: math.unit(600, "meters"),
  7229. default: true
  7230. },
  7231. {
  7232. name: "Megamacro",
  7233. height: math.unit(1, "mile")
  7234. },
  7235. ]
  7236. ))
  7237. characterMakers.push(() => makeCharacter(
  7238. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7239. {
  7240. front: {
  7241. height: math.unit(1.65, "meters"),
  7242. weight: math.unit(74, "kg"),
  7243. name: "Front",
  7244. image: {
  7245. source: "./media/characters/berri/front.svg",
  7246. extra: 857 / 837,
  7247. bottom: 18 / 877
  7248. }
  7249. },
  7250. bum: {
  7251. height: math.unit(1.46, "feet"),
  7252. name: "Bum",
  7253. image: {
  7254. source: "./media/characters/berri/bum.svg"
  7255. }
  7256. },
  7257. mouth: {
  7258. height: math.unit(0.44, "feet"),
  7259. name: "Mouth",
  7260. image: {
  7261. source: "./media/characters/berri/mouth.svg"
  7262. }
  7263. },
  7264. paw: {
  7265. height: math.unit(0.826, "feet"),
  7266. name: "Paw",
  7267. image: {
  7268. source: "./media/characters/berri/paw.svg"
  7269. }
  7270. },
  7271. },
  7272. [
  7273. {
  7274. name: "Normal",
  7275. height: math.unit(1.65, "meters")
  7276. },
  7277. {
  7278. name: "Macro",
  7279. height: math.unit(60, "m"),
  7280. default: true
  7281. },
  7282. {
  7283. name: "Megamacro",
  7284. height: math.unit(9.213, "km")
  7285. },
  7286. {
  7287. name: "Planet Eater",
  7288. height: math.unit(489, "megameters")
  7289. },
  7290. {
  7291. name: "Teramacro",
  7292. height: math.unit(2471635000000, "meters")
  7293. },
  7294. {
  7295. name: "Examacro",
  7296. height: math.unit(8.0624e+26, "meters")
  7297. }
  7298. ]
  7299. ))
  7300. characterMakers.push(() => makeCharacter(
  7301. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7302. {
  7303. front: {
  7304. height: math.unit(1.72, "meters"),
  7305. weight: math.unit(68, "kg"),
  7306. name: "Front",
  7307. image: {
  7308. source: "./media/characters/lexi/front.svg"
  7309. }
  7310. }
  7311. },
  7312. [
  7313. {
  7314. name: "Very Smol",
  7315. height: math.unit(10, "mm")
  7316. },
  7317. {
  7318. name: "Micro",
  7319. height: math.unit(6.8, "cm"),
  7320. default: true
  7321. },
  7322. {
  7323. name: "Normal",
  7324. height: math.unit(1.72, "m")
  7325. }
  7326. ]
  7327. ))
  7328. characterMakers.push(() => makeCharacter(
  7329. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7330. {
  7331. front: {
  7332. height: math.unit(1.69, "meters"),
  7333. weight: math.unit(68, "kg"),
  7334. name: "Front",
  7335. image: {
  7336. source: "./media/characters/martin/front.svg",
  7337. extra: 596 / 581
  7338. }
  7339. }
  7340. },
  7341. [
  7342. {
  7343. name: "Micro",
  7344. height: math.unit(6.85, "cm"),
  7345. default: true
  7346. },
  7347. {
  7348. name: "Normal",
  7349. height: math.unit(1.69, "m")
  7350. }
  7351. ]
  7352. ))
  7353. characterMakers.push(() => makeCharacter(
  7354. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7355. {
  7356. front: {
  7357. height: math.unit(1.69, "meters"),
  7358. weight: math.unit(68, "kg"),
  7359. name: "Front",
  7360. image: {
  7361. source: "./media/characters/juno/front.svg"
  7362. }
  7363. }
  7364. },
  7365. [
  7366. {
  7367. name: "Micro",
  7368. height: math.unit(7, "cm")
  7369. },
  7370. {
  7371. name: "Normal",
  7372. height: math.unit(1.89, "m")
  7373. },
  7374. {
  7375. name: "Macro",
  7376. height: math.unit(353, "meters"),
  7377. default: true
  7378. }
  7379. ]
  7380. ))
  7381. characterMakers.push(() => makeCharacter(
  7382. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7383. {
  7384. front: {
  7385. height: math.unit(1.93, "meters"),
  7386. weight: math.unit(83, "kg"),
  7387. name: "Front",
  7388. image: {
  7389. source: "./media/characters/samantha/front.svg"
  7390. }
  7391. },
  7392. frontClothed: {
  7393. height: math.unit(1.93, "meters"),
  7394. weight: math.unit(83, "kg"),
  7395. name: "Front (Clothed)",
  7396. image: {
  7397. source: "./media/characters/samantha/front-clothed.svg"
  7398. }
  7399. },
  7400. back: {
  7401. height: math.unit(1.93, "meters"),
  7402. weight: math.unit(83, "kg"),
  7403. name: "Back",
  7404. image: {
  7405. source: "./media/characters/samantha/back.svg"
  7406. }
  7407. },
  7408. },
  7409. [
  7410. {
  7411. name: "Normal",
  7412. height: math.unit(1.93, "m")
  7413. },
  7414. {
  7415. name: "Macro",
  7416. height: math.unit(74, "meters"),
  7417. default: true
  7418. },
  7419. {
  7420. name: "Macro+",
  7421. height: math.unit(223, "meters"),
  7422. },
  7423. {
  7424. name: "Megamacro",
  7425. height: math.unit(8381, "meters"),
  7426. },
  7427. {
  7428. name: "Megamacro+",
  7429. height: math.unit(12000, "kilometers")
  7430. },
  7431. ]
  7432. ))
  7433. characterMakers.push(() => makeCharacter(
  7434. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7435. {
  7436. front: {
  7437. height: math.unit(1.92, "meters"),
  7438. weight: math.unit(80, "kg"),
  7439. name: "Front",
  7440. image: {
  7441. source: "./media/characters/dr-clay/front.svg"
  7442. }
  7443. },
  7444. frontClothed: {
  7445. height: math.unit(1.92, "meters"),
  7446. weight: math.unit(80, "kg"),
  7447. name: "Front (Clothed)",
  7448. image: {
  7449. source: "./media/characters/dr-clay/front-clothed.svg"
  7450. }
  7451. }
  7452. },
  7453. [
  7454. {
  7455. name: "Normal",
  7456. height: math.unit(1.92, "m")
  7457. },
  7458. {
  7459. name: "Macro",
  7460. height: math.unit(214, "meters"),
  7461. default: true
  7462. },
  7463. {
  7464. name: "Macro+",
  7465. height: math.unit(12.237, "meters"),
  7466. },
  7467. {
  7468. name: "Megamacro",
  7469. height: math.unit(557, "megameters"),
  7470. },
  7471. {
  7472. name: "Unimaginable",
  7473. height: math.unit(120e9, "lightyears")
  7474. },
  7475. ]
  7476. ))
  7477. characterMakers.push(() => makeCharacter(
  7478. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7479. {
  7480. front: {
  7481. height: math.unit(2, "meters"),
  7482. weight: math.unit(80, "kg"),
  7483. name: "Front",
  7484. image: {
  7485. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7486. }
  7487. }
  7488. },
  7489. [
  7490. {
  7491. name: "Teramacro",
  7492. height: math.unit(500000, "lightyears"),
  7493. default: true
  7494. },
  7495. ]
  7496. ))
  7497. characterMakers.push(() => makeCharacter(
  7498. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7499. {
  7500. crux: {
  7501. height: math.unit(2, "meters"),
  7502. weight: math.unit(150, "kg"),
  7503. name: "Crux",
  7504. image: {
  7505. source: "./media/characters/vemus/crux.svg",
  7506. extra: 1074/936,
  7507. bottom: 23/1097
  7508. }
  7509. },
  7510. skunkTanuki: {
  7511. height: math.unit(2, "meters"),
  7512. weight: math.unit(150, "kg"),
  7513. name: "Skunk-Tanuki",
  7514. image: {
  7515. source: "./media/characters/vemus/skunk-tanuki.svg",
  7516. extra: 926/893,
  7517. bottom: 20/946
  7518. }
  7519. },
  7520. },
  7521. [
  7522. {
  7523. name: "Normal",
  7524. height: math.unit(4, "meters"),
  7525. default: true
  7526. },
  7527. {
  7528. name: "Big",
  7529. height: math.unit(8, "meters")
  7530. },
  7531. {
  7532. name: "Macro",
  7533. height: math.unit(100, "meters")
  7534. },
  7535. {
  7536. name: "Macro+",
  7537. height: math.unit(1500, "meters")
  7538. },
  7539. {
  7540. name: "Stellar",
  7541. height: math.unit(14e8, "meters")
  7542. },
  7543. ]
  7544. ))
  7545. characterMakers.push(() => makeCharacter(
  7546. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7547. {
  7548. front: {
  7549. height: math.unit(2, "meters"),
  7550. weight: math.unit(70, "kg"),
  7551. name: "Front",
  7552. image: {
  7553. source: "./media/characters/beherit/front.svg",
  7554. extra: 1234/1109,
  7555. bottom: 55/1289
  7556. }
  7557. }
  7558. },
  7559. [
  7560. {
  7561. name: "Normal",
  7562. height: math.unit(6, "feet")
  7563. },
  7564. {
  7565. name: "Lorg",
  7566. height: math.unit(25, "feet"),
  7567. default: true
  7568. },
  7569. {
  7570. name: "Lorger",
  7571. height: math.unit(75, "feet")
  7572. },
  7573. {
  7574. name: "Macro",
  7575. height: math.unit(200, "meters")
  7576. },
  7577. ]
  7578. ))
  7579. characterMakers.push(() => makeCharacter(
  7580. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7581. {
  7582. front: {
  7583. height: math.unit(2, "meters"),
  7584. weight: math.unit(150, "kg"),
  7585. name: "Front",
  7586. image: {
  7587. source: "./media/characters/everett/front.svg",
  7588. extra: 1017/866,
  7589. bottom: 86/1103
  7590. }
  7591. },
  7592. paw: {
  7593. height: math.unit(2 / 3.6, "meters"),
  7594. name: "Paw",
  7595. image: {
  7596. source: "./media/characters/everett/paw.svg"
  7597. }
  7598. },
  7599. },
  7600. [
  7601. {
  7602. name: "Normal",
  7603. height: math.unit(15, "feet"),
  7604. default: true
  7605. },
  7606. {
  7607. name: "Lorg",
  7608. height: math.unit(70, "feet"),
  7609. default: true
  7610. },
  7611. {
  7612. name: "Lorger",
  7613. height: math.unit(250, "feet")
  7614. },
  7615. {
  7616. name: "Macro",
  7617. height: math.unit(500, "meters")
  7618. },
  7619. ]
  7620. ))
  7621. characterMakers.push(() => makeCharacter(
  7622. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7623. {
  7624. front: {
  7625. height: math.unit(2, "meters"),
  7626. weight: math.unit(86, "kg"),
  7627. name: "Front",
  7628. image: {
  7629. source: "./media/characters/rose/front.svg",
  7630. extra: 1785/1636,
  7631. bottom: 30/1815
  7632. },
  7633. form: "liom",
  7634. default: true
  7635. },
  7636. frontSporty: {
  7637. height: math.unit(2, "meters"),
  7638. weight: math.unit(86, "kg"),
  7639. name: "Front (Sporty)",
  7640. image: {
  7641. source: "./media/characters/rose/front-sporty.svg",
  7642. extra: 350/335,
  7643. bottom: 10/360
  7644. },
  7645. form: "liom"
  7646. },
  7647. frontAlt: {
  7648. height: math.unit(1.6, "meters"),
  7649. weight: math.unit(86, "kg"),
  7650. name: "Front (Alt)",
  7651. image: {
  7652. source: "./media/characters/rose/front-alt.svg",
  7653. extra: 299/283,
  7654. bottom: 3/302
  7655. },
  7656. form: "liom"
  7657. },
  7658. plush: {
  7659. height: math.unit(2, "meters"),
  7660. weight: math.unit(86/3, "kg"),
  7661. name: "Plush",
  7662. image: {
  7663. source: "./media/characters/rose/plush.svg",
  7664. extra: 361/337,
  7665. bottom: 11/372
  7666. },
  7667. form: "plush",
  7668. default: true
  7669. },
  7670. faeStanding: {
  7671. height: math.unit(10, "cm"),
  7672. weight: math.unit(10, "grams"),
  7673. name: "Standing",
  7674. image: {
  7675. source: "./media/characters/rose/fae-standing.svg",
  7676. extra: 1189/1060,
  7677. bottom: 27/1216
  7678. },
  7679. form: "fae",
  7680. default: true
  7681. },
  7682. faeSitting: {
  7683. height: math.unit(5, "cm"),
  7684. weight: math.unit(10, "grams"),
  7685. name: "Sitting",
  7686. image: {
  7687. source: "./media/characters/rose/fae-sitting.svg",
  7688. extra: 737/577,
  7689. bottom: 356/1093
  7690. },
  7691. form: "fae"
  7692. },
  7693. faePaw: {
  7694. height: math.unit(1.35, "cm"),
  7695. name: "Paw",
  7696. image: {
  7697. source: "./media/characters/rose/fae-paw.svg"
  7698. },
  7699. form: "fae"
  7700. },
  7701. },
  7702. [
  7703. {
  7704. name: "True Micro",
  7705. height: math.unit(9, "cm"),
  7706. form: "liom"
  7707. },
  7708. {
  7709. name: "Micro",
  7710. height: math.unit(16, "cm"),
  7711. form: "liom"
  7712. },
  7713. {
  7714. name: "Normal",
  7715. height: math.unit(1.85, "meters"),
  7716. default: true,
  7717. form: "liom"
  7718. },
  7719. {
  7720. name: "Mini-Macro",
  7721. height: math.unit(5, "meters"),
  7722. form: "liom"
  7723. },
  7724. {
  7725. name: "Macro",
  7726. height: math.unit(15, "meters"),
  7727. form: "liom"
  7728. },
  7729. {
  7730. name: "True Macro",
  7731. height: math.unit(40, "meters"),
  7732. form: "liom"
  7733. },
  7734. {
  7735. name: "City Scale",
  7736. height: math.unit(1, "km"),
  7737. form: "liom"
  7738. },
  7739. {
  7740. name: "Plushie",
  7741. height: math.unit(9, "cm"),
  7742. form: "plush",
  7743. default: true
  7744. },
  7745. {
  7746. name: "Fae",
  7747. height: math.unit(10, "cm"),
  7748. form: "fae",
  7749. default: true
  7750. },
  7751. ],
  7752. {
  7753. "liom": {
  7754. name: "Liom"
  7755. },
  7756. "plush": {
  7757. name: "Plush"
  7758. },
  7759. "fae": {
  7760. name: "Fae Fox",
  7761. default: true
  7762. }
  7763. }
  7764. ))
  7765. characterMakers.push(() => makeCharacter(
  7766. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7767. {
  7768. front: {
  7769. height: math.unit(2, "meters"),
  7770. weight: math.unit(350, "lbs"),
  7771. name: "Front",
  7772. image: {
  7773. source: "./media/characters/regal/front.svg"
  7774. }
  7775. },
  7776. back: {
  7777. height: math.unit(2, "meters"),
  7778. weight: math.unit(350, "lbs"),
  7779. name: "Back",
  7780. image: {
  7781. source: "./media/characters/regal/back.svg"
  7782. }
  7783. },
  7784. },
  7785. [
  7786. {
  7787. name: "Macro",
  7788. height: math.unit(350, "feet"),
  7789. default: true
  7790. }
  7791. ]
  7792. ))
  7793. characterMakers.push(() => makeCharacter(
  7794. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7795. {
  7796. front: {
  7797. height: math.unit(4 + 11 / 12, "feet"),
  7798. weight: math.unit(100, "lbs"),
  7799. name: "Front",
  7800. image: {
  7801. source: "./media/characters/opal/front.svg"
  7802. }
  7803. },
  7804. frontAlt: {
  7805. height: math.unit(4 + 11 / 12, "feet"),
  7806. weight: math.unit(100, "lbs"),
  7807. name: "Front (Alt)",
  7808. image: {
  7809. source: "./media/characters/opal/front-alt.svg"
  7810. }
  7811. },
  7812. },
  7813. [
  7814. {
  7815. name: "Small",
  7816. height: math.unit(4 + 11 / 12, "feet")
  7817. },
  7818. {
  7819. name: "Normal",
  7820. height: math.unit(20, "feet"),
  7821. default: true
  7822. },
  7823. {
  7824. name: "Macro",
  7825. height: math.unit(120, "feet")
  7826. },
  7827. {
  7828. name: "Megamacro",
  7829. height: math.unit(80, "miles")
  7830. },
  7831. {
  7832. name: "True Size",
  7833. height: math.unit(100000, "lightyears")
  7834. },
  7835. ]
  7836. ))
  7837. characterMakers.push(() => makeCharacter(
  7838. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7839. {
  7840. front: {
  7841. height: math.unit(6, "feet"),
  7842. weight: math.unit(200, "lbs"),
  7843. name: "Front",
  7844. image: {
  7845. source: "./media/characters/vector-wuff/front.svg"
  7846. }
  7847. }
  7848. },
  7849. [
  7850. {
  7851. name: "Normal",
  7852. height: math.unit(2.8, "meters")
  7853. },
  7854. {
  7855. name: "Macro",
  7856. height: math.unit(450, "meters"),
  7857. default: true
  7858. },
  7859. {
  7860. name: "Megamacro",
  7861. height: math.unit(15, "kilometers")
  7862. }
  7863. ]
  7864. ))
  7865. characterMakers.push(() => makeCharacter(
  7866. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7867. {
  7868. front: {
  7869. height: math.unit(6, "feet"),
  7870. weight: math.unit(256, "lbs"),
  7871. name: "Front",
  7872. image: {
  7873. source: "./media/characters/dannik/front.svg"
  7874. }
  7875. }
  7876. },
  7877. [
  7878. {
  7879. name: "Macro",
  7880. height: math.unit(69.57, "meters"),
  7881. default: true
  7882. },
  7883. ]
  7884. ))
  7885. characterMakers.push(() => makeCharacter(
  7886. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7887. {
  7888. front: {
  7889. height: math.unit(6, "feet"),
  7890. weight: math.unit(120, "lbs"),
  7891. name: "Front",
  7892. image: {
  7893. source: "./media/characters/azura-saharah/front.svg"
  7894. }
  7895. },
  7896. back: {
  7897. height: math.unit(6, "feet"),
  7898. weight: math.unit(120, "lbs"),
  7899. name: "Back",
  7900. image: {
  7901. source: "./media/characters/azura-saharah/back.svg"
  7902. }
  7903. },
  7904. },
  7905. [
  7906. {
  7907. name: "Macro",
  7908. height: math.unit(100, "feet"),
  7909. default: true
  7910. },
  7911. ]
  7912. ))
  7913. characterMakers.push(() => makeCharacter(
  7914. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7915. {
  7916. side: {
  7917. height: math.unit(5 + 4 / 12, "feet"),
  7918. weight: math.unit(163, "lbs"),
  7919. name: "Side",
  7920. image: {
  7921. source: "./media/characters/kennedy/side.svg"
  7922. }
  7923. }
  7924. },
  7925. [
  7926. {
  7927. name: "Standard Doggo",
  7928. height: math.unit(5 + 4 / 12, "feet")
  7929. },
  7930. {
  7931. name: "Big Doggo",
  7932. height: math.unit(25 + 3 / 12, "feet"),
  7933. default: true
  7934. },
  7935. ]
  7936. ))
  7937. characterMakers.push(() => makeCharacter(
  7938. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7939. {
  7940. front: {
  7941. height: math.unit(5 + 5/12, "feet"),
  7942. weight: math.unit(100, "lbs"),
  7943. name: "Front",
  7944. image: {
  7945. source: "./media/characters/odios-de-lunar/front.svg",
  7946. extra: 1468/1323,
  7947. bottom: 22/1490
  7948. }
  7949. }
  7950. },
  7951. [
  7952. {
  7953. name: "Micro",
  7954. height: math.unit(3, "inches")
  7955. },
  7956. {
  7957. name: "Normal",
  7958. height: math.unit(5.5, "feet"),
  7959. default: true
  7960. },
  7961. {
  7962. name: "Macro",
  7963. height: math.unit(100, "feet")
  7964. },
  7965. ]
  7966. ))
  7967. characterMakers.push(() => makeCharacter(
  7968. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7969. {
  7970. back: {
  7971. height: math.unit(6, "feet"),
  7972. weight: math.unit(220, "lbs"),
  7973. name: "Back",
  7974. image: {
  7975. source: "./media/characters/mandake/back.svg"
  7976. }
  7977. }
  7978. },
  7979. [
  7980. {
  7981. name: "Normal",
  7982. height: math.unit(7, "feet"),
  7983. default: true
  7984. },
  7985. {
  7986. name: "Macro",
  7987. height: math.unit(78, "feet")
  7988. },
  7989. {
  7990. name: "Macro+",
  7991. height: math.unit(300, "meters")
  7992. },
  7993. {
  7994. name: "Macro++",
  7995. height: math.unit(2400, "feet")
  7996. },
  7997. {
  7998. name: "Megamacro",
  7999. height: math.unit(5167, "meters")
  8000. },
  8001. {
  8002. name: "Gigamacro",
  8003. height: math.unit(41769, "miles")
  8004. },
  8005. ]
  8006. ))
  8007. characterMakers.push(() => makeCharacter(
  8008. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8009. {
  8010. front: {
  8011. height: math.unit(6, "feet"),
  8012. weight: math.unit(120, "lbs"),
  8013. name: "Front",
  8014. image: {
  8015. source: "./media/characters/yozey/front.svg"
  8016. }
  8017. },
  8018. frontAlt: {
  8019. height: math.unit(6, "feet"),
  8020. weight: math.unit(120, "lbs"),
  8021. name: "Front (Alt)",
  8022. image: {
  8023. source: "./media/characters/yozey/front-alt.svg"
  8024. }
  8025. },
  8026. side: {
  8027. height: math.unit(6, "feet"),
  8028. weight: math.unit(120, "lbs"),
  8029. name: "Side",
  8030. image: {
  8031. source: "./media/characters/yozey/side.svg"
  8032. }
  8033. },
  8034. },
  8035. [
  8036. {
  8037. name: "Micro",
  8038. height: math.unit(3, "inches"),
  8039. default: true
  8040. },
  8041. {
  8042. name: "Normal",
  8043. height: math.unit(6, "feet")
  8044. }
  8045. ]
  8046. ))
  8047. characterMakers.push(() => makeCharacter(
  8048. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8049. {
  8050. front: {
  8051. height: math.unit(6, "feet"),
  8052. weight: math.unit(103, "lbs"),
  8053. name: "Front",
  8054. image: {
  8055. source: "./media/characters/valeska-voss/front.svg"
  8056. }
  8057. }
  8058. },
  8059. [
  8060. {
  8061. name: "Mini-Sized Sub",
  8062. height: math.unit(3.1, "inches")
  8063. },
  8064. {
  8065. name: "Mid-Sized Sub",
  8066. height: math.unit(6.2, "inches")
  8067. },
  8068. {
  8069. name: "Full-Sized Sub",
  8070. height: math.unit(9.3, "inches")
  8071. },
  8072. {
  8073. name: "Normal",
  8074. height: math.unit(5 + 2 / 12, "foot"),
  8075. default: true
  8076. },
  8077. ]
  8078. ))
  8079. characterMakers.push(() => makeCharacter(
  8080. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8081. {
  8082. front: {
  8083. height: math.unit(6, "feet"),
  8084. weight: math.unit(160, "lbs"),
  8085. name: "Front",
  8086. image: {
  8087. source: "./media/characters/gene-zeta/front.svg",
  8088. extra: 3006 / 2826,
  8089. bottom: 182 / 3188
  8090. }
  8091. }
  8092. },
  8093. [
  8094. {
  8095. name: "Micro",
  8096. height: math.unit(6, "inches")
  8097. },
  8098. {
  8099. name: "Normal",
  8100. height: math.unit(5 + 11 / 12, "foot"),
  8101. default: true
  8102. },
  8103. {
  8104. name: "Macro",
  8105. height: math.unit(140, "feet")
  8106. },
  8107. {
  8108. name: "Supercharged",
  8109. height: math.unit(2500, "feet")
  8110. },
  8111. ]
  8112. ))
  8113. characterMakers.push(() => makeCharacter(
  8114. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8115. {
  8116. front: {
  8117. height: math.unit(6, "feet"),
  8118. weight: math.unit(350, "lbs"),
  8119. name: "Front",
  8120. image: {
  8121. source: "./media/characters/razinox/front.svg",
  8122. extra: 1686 / 1548,
  8123. bottom: 28.2 / 1868
  8124. }
  8125. },
  8126. back: {
  8127. height: math.unit(6, "feet"),
  8128. weight: math.unit(350, "lbs"),
  8129. name: "Back",
  8130. image: {
  8131. source: "./media/characters/razinox/back.svg",
  8132. extra: 1660 / 1590,
  8133. bottom: 15 / 1665
  8134. }
  8135. },
  8136. },
  8137. [
  8138. {
  8139. name: "Normal",
  8140. height: math.unit(10 + 8 / 12, "foot")
  8141. },
  8142. {
  8143. name: "Minimacro",
  8144. height: math.unit(15, "foot")
  8145. },
  8146. {
  8147. name: "Macro",
  8148. height: math.unit(60, "foot"),
  8149. default: true
  8150. },
  8151. {
  8152. name: "Megamacro",
  8153. height: math.unit(5, "miles")
  8154. },
  8155. {
  8156. name: "Gigamacro",
  8157. height: math.unit(6000, "miles")
  8158. },
  8159. ]
  8160. ))
  8161. characterMakers.push(() => makeCharacter(
  8162. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8163. {
  8164. front: {
  8165. height: math.unit(6, "feet"),
  8166. weight: math.unit(150, "lbs"),
  8167. name: "Front",
  8168. image: {
  8169. source: "./media/characters/cobalt/front.svg"
  8170. }
  8171. }
  8172. },
  8173. [
  8174. {
  8175. name: "Normal",
  8176. height: math.unit(8 + 1 / 12, "foot")
  8177. },
  8178. {
  8179. name: "Macro",
  8180. height: math.unit(111, "foot"),
  8181. default: true
  8182. },
  8183. {
  8184. name: "Supracosmic",
  8185. height: math.unit(1e42, "feet")
  8186. },
  8187. ]
  8188. ))
  8189. characterMakers.push(() => makeCharacter(
  8190. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8191. {
  8192. front: {
  8193. height: math.unit(5, "inches"),
  8194. name: "Front",
  8195. image: {
  8196. source: "./media/characters/amanda/front.svg",
  8197. extra: 926/791,
  8198. bottom: 38/964
  8199. }
  8200. },
  8201. back: {
  8202. height: math.unit(5, "inches"),
  8203. name: "Back",
  8204. image: {
  8205. source: "./media/characters/amanda/back.svg",
  8206. extra: 909/805,
  8207. bottom: 43/952
  8208. }
  8209. },
  8210. },
  8211. [
  8212. {
  8213. name: "Micro",
  8214. height: math.unit(5, "inches"),
  8215. default: true
  8216. },
  8217. ]
  8218. ))
  8219. characterMakers.push(() => makeCharacter(
  8220. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8221. {
  8222. front: {
  8223. height: math.unit(2.75, "meters"),
  8224. weight: math.unit(1200, "lb"),
  8225. name: "Front",
  8226. image: {
  8227. source: "./media/characters/teal/front.svg",
  8228. extra: 2463 / 2320,
  8229. bottom: 166 / 2629
  8230. }
  8231. },
  8232. back: {
  8233. height: math.unit(2.75, "meters"),
  8234. weight: math.unit(1200, "lb"),
  8235. name: "Back",
  8236. image: {
  8237. source: "./media/characters/teal/back.svg",
  8238. extra: 2580 / 2489,
  8239. bottom: 151 / 2731
  8240. }
  8241. },
  8242. sitting: {
  8243. height: math.unit(1.9, "meters"),
  8244. weight: math.unit(1200, "lb"),
  8245. name: "Sitting",
  8246. image: {
  8247. source: "./media/characters/teal/sitting.svg",
  8248. extra: 623 / 590,
  8249. bottom: 121 / 744
  8250. }
  8251. },
  8252. standing: {
  8253. height: math.unit(2.75, "meters"),
  8254. weight: math.unit(1200, "lb"),
  8255. name: "Standing",
  8256. image: {
  8257. source: "./media/characters/teal/standing.svg",
  8258. extra: 923 / 893,
  8259. bottom: 60 / 983
  8260. }
  8261. },
  8262. stretching: {
  8263. height: math.unit(3.65, "meters"),
  8264. weight: math.unit(1200, "lb"),
  8265. name: "Stretching",
  8266. image: {
  8267. source: "./media/characters/teal/stretching.svg",
  8268. extra: 1276 / 1244,
  8269. bottom: 0 / 1276
  8270. }
  8271. },
  8272. legged: {
  8273. height: math.unit(1.3, "meters"),
  8274. weight: math.unit(100, "lb"),
  8275. name: "Legged",
  8276. image: {
  8277. source: "./media/characters/teal/legged.svg",
  8278. extra: 462 / 437,
  8279. bottom: 24 / 486
  8280. }
  8281. },
  8282. naga: {
  8283. height: math.unit(5.4, "meters"),
  8284. weight: math.unit(4000, "lb"),
  8285. name: "Naga",
  8286. image: {
  8287. source: "./media/characters/teal/naga.svg",
  8288. extra: 1902 / 1858,
  8289. bottom: 0 / 1902
  8290. }
  8291. },
  8292. hand: {
  8293. height: math.unit(0.52, "meters"),
  8294. name: "Hand",
  8295. image: {
  8296. source: "./media/characters/teal/hand.svg"
  8297. }
  8298. },
  8299. maw: {
  8300. height: math.unit(0.43, "meters"),
  8301. name: "Maw",
  8302. image: {
  8303. source: "./media/characters/teal/maw.svg"
  8304. }
  8305. },
  8306. slit: {
  8307. height: math.unit(0.25, "meters"),
  8308. name: "Slit",
  8309. image: {
  8310. source: "./media/characters/teal/slit.svg"
  8311. }
  8312. },
  8313. },
  8314. [
  8315. {
  8316. name: "Normal",
  8317. height: math.unit(2.75, "meters"),
  8318. default: true
  8319. },
  8320. {
  8321. name: "Macro",
  8322. height: math.unit(300, "feet")
  8323. },
  8324. {
  8325. name: "Macro+",
  8326. height: math.unit(2000, "feet")
  8327. },
  8328. ]
  8329. ))
  8330. characterMakers.push(() => makeCharacter(
  8331. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8332. {
  8333. frontCat: {
  8334. height: math.unit(6, "feet"),
  8335. weight: math.unit(180, "lbs"),
  8336. name: "Front (Cat)",
  8337. image: {
  8338. source: "./media/characters/ravin-amulet/front-cat.svg"
  8339. }
  8340. },
  8341. frontCatAlt: {
  8342. height: math.unit(6, "feet"),
  8343. weight: math.unit(180, "lbs"),
  8344. name: "Front (Alt, Cat)",
  8345. image: {
  8346. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8347. }
  8348. },
  8349. frontWerewolf: {
  8350. height: math.unit(6 * 1.2, "feet"),
  8351. weight: math.unit(225, "lbs"),
  8352. name: "Front (Werewolf)",
  8353. image: {
  8354. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8355. }
  8356. },
  8357. backWerewolf: {
  8358. height: math.unit(6 * 1.2, "feet"),
  8359. weight: math.unit(225, "lbs"),
  8360. name: "Back (Werewolf)",
  8361. image: {
  8362. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8363. }
  8364. },
  8365. },
  8366. [
  8367. {
  8368. name: "Nano",
  8369. height: math.unit(1, "micrometer")
  8370. },
  8371. {
  8372. name: "Micro",
  8373. height: math.unit(1, "inch")
  8374. },
  8375. {
  8376. name: "Normal",
  8377. height: math.unit(6, "feet"),
  8378. default: true
  8379. },
  8380. {
  8381. name: "Macro",
  8382. height: math.unit(60, "feet")
  8383. }
  8384. ]
  8385. ))
  8386. characterMakers.push(() => makeCharacter(
  8387. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8388. {
  8389. front: {
  8390. height: math.unit(6, "feet"),
  8391. weight: math.unit(165, "lbs"),
  8392. name: "Front",
  8393. image: {
  8394. source: "./media/characters/fluoresce/front.svg"
  8395. }
  8396. }
  8397. },
  8398. [
  8399. {
  8400. name: "Micro",
  8401. height: math.unit(6, "cm")
  8402. },
  8403. {
  8404. name: "Normal",
  8405. height: math.unit(5 + 7 / 12, "feet"),
  8406. default: true
  8407. },
  8408. {
  8409. name: "Macro",
  8410. height: math.unit(56, "feet")
  8411. },
  8412. {
  8413. name: "Megamacro",
  8414. height: math.unit(1.9, "miles")
  8415. },
  8416. ]
  8417. ))
  8418. characterMakers.push(() => makeCharacter(
  8419. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8420. {
  8421. front: {
  8422. height: math.unit(9 + 6 / 12, "feet"),
  8423. weight: math.unit(523, "lbs"),
  8424. name: "Side",
  8425. image: {
  8426. source: "./media/characters/aurora/side.svg",
  8427. extra: 474/393,
  8428. bottom: 5/479
  8429. }
  8430. }
  8431. },
  8432. [
  8433. {
  8434. name: "Normal",
  8435. height: math.unit(9 + 6 / 12, "feet")
  8436. },
  8437. {
  8438. name: "Macro",
  8439. height: math.unit(96, "feet"),
  8440. default: true
  8441. },
  8442. {
  8443. name: "Macro+",
  8444. height: math.unit(243, "feet")
  8445. },
  8446. ]
  8447. ))
  8448. characterMakers.push(() => makeCharacter(
  8449. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8450. {
  8451. front: {
  8452. height: math.unit(194, "cm"),
  8453. weight: math.unit(90, "kg"),
  8454. name: "Front",
  8455. image: {
  8456. source: "./media/characters/ranek/front.svg",
  8457. extra: 1862/1791,
  8458. bottom: 80/1942
  8459. }
  8460. },
  8461. back: {
  8462. height: math.unit(194, "cm"),
  8463. weight: math.unit(90, "kg"),
  8464. name: "Back",
  8465. image: {
  8466. source: "./media/characters/ranek/back.svg",
  8467. extra: 1853/1787,
  8468. bottom: 74/1927
  8469. }
  8470. },
  8471. feral: {
  8472. height: math.unit(30, "cm"),
  8473. weight: math.unit(1.6, "lbs"),
  8474. name: "Feral",
  8475. image: {
  8476. source: "./media/characters/ranek/feral.svg",
  8477. extra: 990/631,
  8478. bottom: 29/1019
  8479. }
  8480. },
  8481. },
  8482. [
  8483. {
  8484. name: "Normal",
  8485. height: math.unit(194, "cm"),
  8486. default: true
  8487. },
  8488. {
  8489. name: "Macro",
  8490. height: math.unit(100, "meters")
  8491. },
  8492. ]
  8493. ))
  8494. characterMakers.push(() => makeCharacter(
  8495. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8496. {
  8497. front: {
  8498. height: math.unit(5 + 6 / 12, "feet"),
  8499. weight: math.unit(153, "lbs"),
  8500. name: "Front",
  8501. image: {
  8502. source: "./media/characters/andrew-cooper/front.svg"
  8503. }
  8504. },
  8505. },
  8506. [
  8507. {
  8508. name: "Nano",
  8509. height: math.unit(1, "mm")
  8510. },
  8511. {
  8512. name: "Micro",
  8513. height: math.unit(2, "inches")
  8514. },
  8515. {
  8516. name: "Normal",
  8517. height: math.unit(5 + 6 / 12, "feet"),
  8518. default: true
  8519. }
  8520. ]
  8521. ))
  8522. characterMakers.push(() => makeCharacter(
  8523. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8524. {
  8525. front: {
  8526. height: math.unit(6, "feet"),
  8527. weight: math.unit(180, "lbs"),
  8528. name: "Front",
  8529. image: {
  8530. source: "./media/characters/akane-sato/front.svg",
  8531. extra: 1219 / 1140
  8532. }
  8533. },
  8534. back: {
  8535. height: math.unit(6, "feet"),
  8536. weight: math.unit(180, "lbs"),
  8537. name: "Back",
  8538. image: {
  8539. source: "./media/characters/akane-sato/back.svg",
  8540. extra: 1219 / 1170
  8541. }
  8542. },
  8543. },
  8544. [
  8545. {
  8546. name: "Normal",
  8547. height: math.unit(2.5, "meters")
  8548. },
  8549. {
  8550. name: "Macro",
  8551. height: math.unit(250, "meters"),
  8552. default: true
  8553. },
  8554. {
  8555. name: "Megamacro",
  8556. height: math.unit(25, "km")
  8557. },
  8558. ]
  8559. ))
  8560. characterMakers.push(() => makeCharacter(
  8561. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8562. {
  8563. front: {
  8564. height: math.unit(6, "feet"),
  8565. weight: math.unit(65, "kg"),
  8566. name: "Front",
  8567. image: {
  8568. source: "./media/characters/rook/front.svg",
  8569. extra: 960 / 950
  8570. }
  8571. }
  8572. },
  8573. [
  8574. {
  8575. name: "Normal",
  8576. height: math.unit(8.8, "feet")
  8577. },
  8578. {
  8579. name: "Macro",
  8580. height: math.unit(88, "feet"),
  8581. default: true
  8582. },
  8583. {
  8584. name: "Megamacro",
  8585. height: math.unit(8, "miles")
  8586. },
  8587. ]
  8588. ))
  8589. characterMakers.push(() => makeCharacter(
  8590. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8591. {
  8592. front: {
  8593. height: math.unit(12 + 2 / 12, "feet"),
  8594. weight: math.unit(808, "lbs"),
  8595. name: "Front",
  8596. image: {
  8597. source: "./media/characters/prodigy/front.svg"
  8598. }
  8599. }
  8600. },
  8601. [
  8602. {
  8603. name: "Normal",
  8604. height: math.unit(12 + 2 / 12, "feet"),
  8605. default: true
  8606. },
  8607. {
  8608. name: "Macro",
  8609. height: math.unit(143, "feet")
  8610. },
  8611. {
  8612. name: "Macro+",
  8613. height: math.unit(400, "feet")
  8614. },
  8615. ]
  8616. ))
  8617. characterMakers.push(() => makeCharacter(
  8618. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8619. {
  8620. front: {
  8621. height: math.unit(6, "feet"),
  8622. weight: math.unit(225, "lbs"),
  8623. name: "Front",
  8624. image: {
  8625. source: "./media/characters/daniel/front.svg"
  8626. }
  8627. },
  8628. leaning: {
  8629. height: math.unit(6, "feet"),
  8630. weight: math.unit(225, "lbs"),
  8631. name: "Leaning",
  8632. image: {
  8633. source: "./media/characters/daniel/leaning.svg"
  8634. }
  8635. },
  8636. },
  8637. [
  8638. {
  8639. name: "Macro",
  8640. height: math.unit(1000, "feet"),
  8641. default: true
  8642. },
  8643. ]
  8644. ))
  8645. characterMakers.push(() => makeCharacter(
  8646. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8647. {
  8648. front: {
  8649. height: math.unit(6, "feet"),
  8650. weight: math.unit(88, "lbs"),
  8651. name: "Front",
  8652. image: {
  8653. source: "./media/characters/chiros/front.svg",
  8654. extra: 306 / 226
  8655. }
  8656. },
  8657. side: {
  8658. height: math.unit(6, "feet"),
  8659. weight: math.unit(88, "lbs"),
  8660. name: "Side",
  8661. image: {
  8662. source: "./media/characters/chiros/side.svg",
  8663. extra: 306 / 226
  8664. }
  8665. },
  8666. },
  8667. [
  8668. {
  8669. name: "Normal",
  8670. height: math.unit(6, "cm"),
  8671. default: true
  8672. },
  8673. ]
  8674. ))
  8675. characterMakers.push(() => makeCharacter(
  8676. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8677. {
  8678. front: {
  8679. height: math.unit(6, "feet"),
  8680. weight: math.unit(100, "lbs"),
  8681. name: "Front",
  8682. image: {
  8683. source: "./media/characters/selka/front.svg",
  8684. extra: 947 / 887
  8685. }
  8686. }
  8687. },
  8688. [
  8689. {
  8690. name: "Normal",
  8691. height: math.unit(5, "cm"),
  8692. default: true
  8693. },
  8694. ]
  8695. ))
  8696. characterMakers.push(() => makeCharacter(
  8697. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8698. {
  8699. front: {
  8700. height: math.unit(8 + 3 / 12, "feet"),
  8701. weight: math.unit(424, "lbs"),
  8702. name: "Front",
  8703. image: {
  8704. source: "./media/characters/verin/front.svg",
  8705. extra: 1845 / 1550
  8706. }
  8707. },
  8708. frontArmored: {
  8709. height: math.unit(8 + 3 / 12, "feet"),
  8710. weight: math.unit(424, "lbs"),
  8711. name: "Front (Armored)",
  8712. image: {
  8713. source: "./media/characters/verin/front-armor.svg",
  8714. extra: 1845 / 1550,
  8715. bottom: 0.01
  8716. }
  8717. },
  8718. back: {
  8719. height: math.unit(8 + 3 / 12, "feet"),
  8720. weight: math.unit(424, "lbs"),
  8721. name: "Back",
  8722. image: {
  8723. source: "./media/characters/verin/back.svg",
  8724. bottom: 0.1,
  8725. extra: 1
  8726. }
  8727. },
  8728. foot: {
  8729. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8730. name: "Foot",
  8731. image: {
  8732. source: "./media/characters/verin/foot.svg"
  8733. }
  8734. },
  8735. },
  8736. [
  8737. {
  8738. name: "Normal",
  8739. height: math.unit(8 + 3 / 12, "feet")
  8740. },
  8741. {
  8742. name: "Minimacro",
  8743. height: math.unit(21, "feet"),
  8744. default: true
  8745. },
  8746. {
  8747. name: "Macro",
  8748. height: math.unit(626, "feet")
  8749. },
  8750. ]
  8751. ))
  8752. characterMakers.push(() => makeCharacter(
  8753. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8754. {
  8755. front: {
  8756. height: math.unit(2.718, "meters"),
  8757. weight: math.unit(150, "lbs"),
  8758. name: "Front",
  8759. image: {
  8760. source: "./media/characters/sovrim-terraquian/front.svg",
  8761. extra: 1752/1689,
  8762. bottom: 36/1788
  8763. }
  8764. },
  8765. back: {
  8766. height: math.unit(2.718, "meters"),
  8767. weight: math.unit(150, "lbs"),
  8768. name: "Back",
  8769. image: {
  8770. source: "./media/characters/sovrim-terraquian/back.svg",
  8771. extra: 1698/1657,
  8772. bottom: 58/1756
  8773. }
  8774. },
  8775. tongue: {
  8776. height: math.unit(2.865, "feet"),
  8777. name: "Tongue",
  8778. image: {
  8779. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8780. }
  8781. },
  8782. hand: {
  8783. height: math.unit(1.61, "feet"),
  8784. name: "Hand",
  8785. image: {
  8786. source: "./media/characters/sovrim-terraquian/hand.svg"
  8787. }
  8788. },
  8789. foot: {
  8790. height: math.unit(1.05, "feet"),
  8791. name: "Foot",
  8792. image: {
  8793. source: "./media/characters/sovrim-terraquian/foot.svg"
  8794. }
  8795. },
  8796. footAlt: {
  8797. height: math.unit(0.88, "feet"),
  8798. name: "Foot (Alt)",
  8799. image: {
  8800. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8801. }
  8802. },
  8803. },
  8804. [
  8805. {
  8806. name: "Micro",
  8807. height: math.unit(2, "inches")
  8808. },
  8809. {
  8810. name: "Small",
  8811. height: math.unit(1, "meter")
  8812. },
  8813. {
  8814. name: "Normal",
  8815. height: math.unit(Math.E, "meters"),
  8816. default: true
  8817. },
  8818. {
  8819. name: "Macro",
  8820. height: math.unit(20, "meters")
  8821. },
  8822. {
  8823. name: "Macro+",
  8824. height: math.unit(400, "meters")
  8825. },
  8826. ]
  8827. ))
  8828. characterMakers.push(() => makeCharacter(
  8829. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8830. {
  8831. front: {
  8832. height: math.unit(7, "feet"),
  8833. weight: math.unit(489, "lbs"),
  8834. name: "Front",
  8835. image: {
  8836. source: "./media/characters/reece-silvermane/front.svg",
  8837. bottom: 0.02,
  8838. extra: 1
  8839. }
  8840. },
  8841. },
  8842. [
  8843. {
  8844. name: "Macro",
  8845. height: math.unit(1.5, "miles"),
  8846. default: true
  8847. },
  8848. ]
  8849. ))
  8850. characterMakers.push(() => makeCharacter(
  8851. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8852. {
  8853. front: {
  8854. height: math.unit(6, "feet"),
  8855. weight: math.unit(78, "kg"),
  8856. name: "Front",
  8857. image: {
  8858. source: "./media/characters/kane/front.svg",
  8859. extra: 978 / 899
  8860. }
  8861. },
  8862. },
  8863. [
  8864. {
  8865. name: "Normal",
  8866. height: math.unit(2.1, "m"),
  8867. },
  8868. {
  8869. name: "Macro",
  8870. height: math.unit(1, "km"),
  8871. default: true
  8872. },
  8873. ]
  8874. ))
  8875. characterMakers.push(() => makeCharacter(
  8876. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8877. {
  8878. front: {
  8879. height: math.unit(6, "feet"),
  8880. weight: math.unit(200, "kg"),
  8881. name: "Front",
  8882. image: {
  8883. source: "./media/characters/tegon/front.svg",
  8884. bottom: 0.01,
  8885. extra: 1
  8886. }
  8887. },
  8888. },
  8889. [
  8890. {
  8891. name: "Micro",
  8892. height: math.unit(1, "inch")
  8893. },
  8894. {
  8895. name: "Normal",
  8896. height: math.unit(6 + 3 / 12, "feet"),
  8897. default: true
  8898. },
  8899. {
  8900. name: "Macro",
  8901. height: math.unit(300, "feet")
  8902. },
  8903. {
  8904. name: "Megamacro",
  8905. height: math.unit(69, "miles")
  8906. },
  8907. ]
  8908. ))
  8909. characterMakers.push(() => makeCharacter(
  8910. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8911. {
  8912. side: {
  8913. height: math.unit(6, "feet"),
  8914. weight: math.unit(2304, "lbs"),
  8915. name: "Side",
  8916. image: {
  8917. source: "./media/characters/arcturax/side.svg",
  8918. extra: 790 / 376,
  8919. bottom: 0.01
  8920. }
  8921. },
  8922. },
  8923. [
  8924. {
  8925. name: "Micro",
  8926. height: math.unit(2, "inch")
  8927. },
  8928. {
  8929. name: "Normal",
  8930. height: math.unit(6, "feet")
  8931. },
  8932. {
  8933. name: "Macro",
  8934. height: math.unit(39, "feet"),
  8935. default: true
  8936. },
  8937. {
  8938. name: "Megamacro",
  8939. height: math.unit(7, "miles")
  8940. },
  8941. ]
  8942. ))
  8943. characterMakers.push(() => makeCharacter(
  8944. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8945. {
  8946. front: {
  8947. height: math.unit(6, "feet"),
  8948. weight: math.unit(50, "lbs"),
  8949. name: "Front",
  8950. image: {
  8951. source: "./media/characters/sentri/front.svg",
  8952. extra: 1750 / 1570,
  8953. bottom: 0.025
  8954. }
  8955. },
  8956. frontAlt: {
  8957. height: math.unit(6, "feet"),
  8958. weight: math.unit(50, "lbs"),
  8959. name: "Front (Alt)",
  8960. image: {
  8961. source: "./media/characters/sentri/front-alt.svg",
  8962. extra: 1750 / 1570,
  8963. bottom: 0.025
  8964. }
  8965. },
  8966. },
  8967. [
  8968. {
  8969. name: "Normal",
  8970. height: math.unit(15, "feet"),
  8971. default: true
  8972. },
  8973. {
  8974. name: "Macro",
  8975. height: math.unit(2500, "feet")
  8976. }
  8977. ]
  8978. ))
  8979. characterMakers.push(() => makeCharacter(
  8980. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8981. {
  8982. front: {
  8983. height: math.unit(5 + 8 / 12, "feet"),
  8984. weight: math.unit(130, "lbs"),
  8985. name: "Front",
  8986. image: {
  8987. source: "./media/characters/corvin/front.svg",
  8988. extra: 1803 / 1629
  8989. }
  8990. },
  8991. frontShirt: {
  8992. height: math.unit(5 + 8 / 12, "feet"),
  8993. weight: math.unit(130, "lbs"),
  8994. name: "Front (Shirt)",
  8995. image: {
  8996. source: "./media/characters/corvin/front-shirt.svg",
  8997. extra: 1803 / 1629
  8998. }
  8999. },
  9000. frontPoncho: {
  9001. height: math.unit(5 + 8 / 12, "feet"),
  9002. weight: math.unit(130, "lbs"),
  9003. name: "Front (Poncho)",
  9004. image: {
  9005. source: "./media/characters/corvin/front-poncho.svg",
  9006. extra: 1803 / 1629
  9007. }
  9008. },
  9009. side: {
  9010. height: math.unit(5 + 8 / 12, "feet"),
  9011. weight: math.unit(130, "lbs"),
  9012. name: "Side",
  9013. image: {
  9014. source: "./media/characters/corvin/side.svg",
  9015. extra: 1012 / 945
  9016. }
  9017. },
  9018. back: {
  9019. height: math.unit(5 + 8 / 12, "feet"),
  9020. weight: math.unit(130, "lbs"),
  9021. name: "Back",
  9022. image: {
  9023. source: "./media/characters/corvin/back.svg",
  9024. extra: 1803 / 1629
  9025. }
  9026. },
  9027. },
  9028. [
  9029. {
  9030. name: "Micro",
  9031. height: math.unit(3, "inches")
  9032. },
  9033. {
  9034. name: "Normal",
  9035. height: math.unit(5 + 8 / 12, "feet")
  9036. },
  9037. {
  9038. name: "Macro",
  9039. height: math.unit(300, "feet"),
  9040. default: true
  9041. },
  9042. {
  9043. name: "Megamacro",
  9044. height: math.unit(500, "miles")
  9045. }
  9046. ]
  9047. ))
  9048. characterMakers.push(() => makeCharacter(
  9049. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9050. {
  9051. front: {
  9052. height: math.unit(6, "feet"),
  9053. weight: math.unit(135, "lbs"),
  9054. name: "Front",
  9055. image: {
  9056. source: "./media/characters/q/front.svg",
  9057. extra: 854 / 752,
  9058. bottom: 0.005
  9059. }
  9060. },
  9061. back: {
  9062. height: math.unit(6, "feet"),
  9063. weight: math.unit(130, "lbs"),
  9064. name: "Back",
  9065. image: {
  9066. source: "./media/characters/q/back.svg",
  9067. extra: 854 / 752
  9068. }
  9069. },
  9070. },
  9071. [
  9072. {
  9073. name: "Macro",
  9074. height: math.unit(90, "feet"),
  9075. default: true
  9076. },
  9077. {
  9078. name: "Extra Macro",
  9079. height: math.unit(300, "feet"),
  9080. },
  9081. {
  9082. name: "BIG WALF",
  9083. height: math.unit(750, "feet"),
  9084. },
  9085. ]
  9086. ))
  9087. characterMakers.push(() => makeCharacter(
  9088. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9089. {
  9090. front: {
  9091. height: math.unit(3, "feet"),
  9092. weight: math.unit(28, "lbs"),
  9093. name: "Front",
  9094. image: {
  9095. source: "./media/characters/citrine/front.svg"
  9096. }
  9097. }
  9098. },
  9099. [
  9100. {
  9101. name: "Normal",
  9102. height: math.unit(3, "feet"),
  9103. default: true
  9104. }
  9105. ]
  9106. ))
  9107. characterMakers.push(() => makeCharacter(
  9108. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9109. {
  9110. front: {
  9111. height: math.unit(14, "feet"),
  9112. weight: math.unit(1450, "kg"),
  9113. preyCapacity: math.unit(15, "people"),
  9114. name: "Front",
  9115. image: {
  9116. source: "./media/characters/aura-starwind/front.svg",
  9117. extra: 1440/1327,
  9118. bottom: 11/1451
  9119. }
  9120. },
  9121. side: {
  9122. height: math.unit(14, "feet"),
  9123. weight: math.unit(1450, "kg"),
  9124. preyCapacity: math.unit(15, "people"),
  9125. name: "Side",
  9126. image: {
  9127. source: "./media/characters/aura-starwind/side.svg",
  9128. extra: 1654 / 1497
  9129. }
  9130. },
  9131. taur: {
  9132. height: math.unit(18, "feet"),
  9133. weight: math.unit(5500, "kg"),
  9134. preyCapacity: math.unit(50, "people"),
  9135. name: "Taur",
  9136. image: {
  9137. source: "./media/characters/aura-starwind/taur.svg",
  9138. extra: 1760 / 1650
  9139. }
  9140. },
  9141. feral: {
  9142. height: math.unit(46, "feet"),
  9143. weight: math.unit(25000, "kg"),
  9144. preyCapacity: math.unit(120, "people"),
  9145. name: "Feral",
  9146. image: {
  9147. source: "./media/characters/aura-starwind/feral.svg"
  9148. }
  9149. },
  9150. },
  9151. [
  9152. {
  9153. name: "Normal",
  9154. height: math.unit(14, "feet"),
  9155. default: true
  9156. },
  9157. {
  9158. name: "Macro",
  9159. height: math.unit(50, "meters")
  9160. },
  9161. {
  9162. name: "Megamacro",
  9163. height: math.unit(5000, "meters")
  9164. },
  9165. {
  9166. name: "Gigamacro",
  9167. height: math.unit(100000, "kilometers")
  9168. },
  9169. ]
  9170. ))
  9171. characterMakers.push(() => makeCharacter(
  9172. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9173. {
  9174. front: {
  9175. height: math.unit(2 + 7 / 12, "feet"),
  9176. weight: math.unit(32, "lbs"),
  9177. name: "Front",
  9178. image: {
  9179. source: "./media/characters/rivet/front.svg",
  9180. extra: 1716 / 1658,
  9181. bottom: 0.03
  9182. }
  9183. },
  9184. foot: {
  9185. height: math.unit(0.551, "feet"),
  9186. name: "Rivet's Foot",
  9187. image: {
  9188. source: "./media/characters/rivet/foot.svg"
  9189. },
  9190. rename: true
  9191. }
  9192. },
  9193. [
  9194. {
  9195. name: "Micro",
  9196. height: math.unit(1.5, "inches"),
  9197. },
  9198. {
  9199. name: "Normal",
  9200. height: math.unit(2 + 7 / 12, "feet"),
  9201. default: true
  9202. },
  9203. {
  9204. name: "Macro",
  9205. height: math.unit(85, "feet")
  9206. },
  9207. {
  9208. name: "Megamacro",
  9209. height: math.unit(2.2, "km")
  9210. }
  9211. ]
  9212. ))
  9213. characterMakers.push(() => makeCharacter(
  9214. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9215. {
  9216. front: {
  9217. height: math.unit(5 + 9 / 12, "feet"),
  9218. weight: math.unit(150, "lbs"),
  9219. name: "Front",
  9220. image: {
  9221. source: "./media/characters/coffee/front.svg",
  9222. extra: 946/880,
  9223. bottom: 66/1012
  9224. }
  9225. },
  9226. foot: {
  9227. height: math.unit(1.29, "feet"),
  9228. name: "Foot",
  9229. image: {
  9230. source: "./media/characters/coffee/foot.svg"
  9231. }
  9232. },
  9233. },
  9234. [
  9235. {
  9236. name: "Micro",
  9237. height: math.unit(2, "inches"),
  9238. },
  9239. {
  9240. name: "Normal",
  9241. height: math.unit(5 + 9 / 12, "feet"),
  9242. default: true
  9243. },
  9244. {
  9245. name: "Macro",
  9246. height: math.unit(800, "feet")
  9247. },
  9248. {
  9249. name: "Megamacro",
  9250. height: math.unit(25, "miles")
  9251. }
  9252. ]
  9253. ))
  9254. characterMakers.push(() => makeCharacter(
  9255. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9256. {
  9257. front: {
  9258. height: math.unit(6, "feet"),
  9259. weight: math.unit(200, "lbs"),
  9260. name: "Front",
  9261. image: {
  9262. source: "./media/characters/chari-gal/front.svg",
  9263. extra: 1568 / 1385,
  9264. bottom: 0.047
  9265. }
  9266. },
  9267. gigantamax: {
  9268. height: math.unit(6 * 16, "feet"),
  9269. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9270. name: "Gigantamax",
  9271. image: {
  9272. source: "./media/characters/chari-gal/gigantamax.svg",
  9273. extra: 1124 / 888,
  9274. bottom: 0.03
  9275. }
  9276. },
  9277. },
  9278. [
  9279. {
  9280. name: "Normal",
  9281. height: math.unit(5 + 7 / 12, "feet")
  9282. },
  9283. {
  9284. name: "Macro",
  9285. height: math.unit(200, "feet"),
  9286. default: true
  9287. }
  9288. ]
  9289. ))
  9290. characterMakers.push(() => makeCharacter(
  9291. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9292. {
  9293. front: {
  9294. height: math.unit(6, "feet"),
  9295. weight: math.unit(150, "lbs"),
  9296. name: "Front",
  9297. image: {
  9298. source: "./media/characters/nova/front.svg",
  9299. extra: 5000 / 4722,
  9300. bottom: 0.02
  9301. }
  9302. }
  9303. },
  9304. [
  9305. {
  9306. name: "Micro-",
  9307. height: math.unit(0.8, "inches")
  9308. },
  9309. {
  9310. name: "Micro",
  9311. height: math.unit(2, "inches"),
  9312. default: true
  9313. },
  9314. ]
  9315. ))
  9316. characterMakers.push(() => makeCharacter(
  9317. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9318. {
  9319. koboldFront: {
  9320. height: math.unit(3 + 1 / 12, "feet"),
  9321. weight: math.unit(21.7, "lbs"),
  9322. name: "Front",
  9323. image: {
  9324. source: "./media/characters/argent/kobold-front.svg",
  9325. extra: 1471 / 1331,
  9326. bottom: 100.8 / 1575.5
  9327. },
  9328. form: "kobold",
  9329. default: true
  9330. },
  9331. dragonFront: {
  9332. height: math.unit(75, "inches"),
  9333. name: "Front",
  9334. image: {
  9335. source: "./media/characters/argent/dragon-front.svg",
  9336. extra: 1389/1248,
  9337. bottom: 54/1443
  9338. },
  9339. form: "dragon",
  9340. },
  9341. dragonBack: {
  9342. height: math.unit(75, "inches"),
  9343. name: "Back",
  9344. image: {
  9345. source: "./media/characters/argent/dragon-back.svg",
  9346. extra: 1399/1271,
  9347. bottom: 23/1422
  9348. },
  9349. form: "dragon",
  9350. },
  9351. dragonDressed: {
  9352. height: math.unit(75, "inches"),
  9353. name: "Dressed",
  9354. image: {
  9355. source: "./media/characters/argent/dragon-dressed.svg",
  9356. extra: 1350/1215,
  9357. bottom: 26/1376
  9358. },
  9359. form: "dragon"
  9360. },
  9361. dragonHead: {
  9362. height: math.unit(23.5, "inches"),
  9363. name: "Head",
  9364. image: {
  9365. source: "./media/characters/argent/dragon-head.svg"
  9366. },
  9367. form: "dragon",
  9368. },
  9369. },
  9370. [
  9371. {
  9372. name: "Micro",
  9373. height: math.unit(2, "inches"),
  9374. form: "kobold",
  9375. },
  9376. {
  9377. name: "Normal",
  9378. height: math.unit(3 + 1 / 12, "feet"),
  9379. form: "kobold",
  9380. default: true
  9381. },
  9382. {
  9383. name: "Macro",
  9384. height: math.unit(120, "feet"),
  9385. form: "kobold",
  9386. },
  9387. {
  9388. name: "Speck",
  9389. height: math.unit(1, "mm"),
  9390. form: "dragon",
  9391. },
  9392. {
  9393. name: "Tiny",
  9394. height: math.unit(1, "cm"),
  9395. form: "dragon",
  9396. },
  9397. {
  9398. name: "Micro",
  9399. height: math.unit(5, "cm"),
  9400. form: "dragon",
  9401. },
  9402. {
  9403. name: "Normal",
  9404. height: math.unit(75, "inches"),
  9405. form: "dragon",
  9406. default: true
  9407. },
  9408. {
  9409. name: "Extra Tall",
  9410. height: math.unit(9, "feet"),
  9411. form: "dragon",
  9412. },
  9413. {
  9414. name: "Inconvenient",
  9415. height: math.unit(5, "meters"),
  9416. form: "dragon",
  9417. },
  9418. {
  9419. name: "Macro",
  9420. height: math.unit(70, "meters"),
  9421. form: "dragon",
  9422. },
  9423. {
  9424. name: "Macro+",
  9425. height: math.unit(250, "meters"),
  9426. form: "dragon",
  9427. },
  9428. {
  9429. name: "Megamacro",
  9430. height: math.unit(20, "km"),
  9431. form: "dragon",
  9432. },
  9433. {
  9434. name: "Mountainous",
  9435. height: math.unit(100, "km"),
  9436. form: "dragon",
  9437. },
  9438. {
  9439. name: "Continental",
  9440. height: math.unit(2, "megameters"),
  9441. form: "dragon",
  9442. },
  9443. {
  9444. name: "Too Big",
  9445. height: math.unit(900, "megameters"),
  9446. form: "dragon",
  9447. },
  9448. ],
  9449. {
  9450. "kobold": {
  9451. name: "Kobold",
  9452. default: true
  9453. },
  9454. "dragon": {
  9455. name: "Dragon",
  9456. },
  9457. }
  9458. ))
  9459. characterMakers.push(() => makeCharacter(
  9460. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9461. {
  9462. lamp: {
  9463. height: math.unit(7 * 1559 / 989, "feet"),
  9464. name: "Magic Lamp",
  9465. image: {
  9466. source: "./media/characters/mira-al-cul/lamp.svg",
  9467. extra: 1617 / 1559
  9468. }
  9469. },
  9470. front: {
  9471. height: math.unit(7, "feet"),
  9472. name: "Front",
  9473. image: {
  9474. source: "./media/characters/mira-al-cul/front.svg",
  9475. extra: 1044 / 990
  9476. }
  9477. },
  9478. },
  9479. [
  9480. {
  9481. name: "Heavily Restricted",
  9482. height: math.unit(7 * 1559 / 989, "feet")
  9483. },
  9484. {
  9485. name: "Freshly Freed",
  9486. height: math.unit(50 * 1559 / 989, "feet")
  9487. },
  9488. {
  9489. name: "World Encompassing",
  9490. height: math.unit(10000 * 1559 / 989, "miles")
  9491. },
  9492. {
  9493. name: "Galactic",
  9494. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9495. },
  9496. {
  9497. name: "Palmed Universe",
  9498. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9499. default: true
  9500. },
  9501. {
  9502. name: "Multiversal Matriarch",
  9503. height: math.unit(8.87e10, "yottameters")
  9504. },
  9505. {
  9506. name: "Void Mother",
  9507. height: math.unit(3.14e110, "yottaparsecs")
  9508. },
  9509. {
  9510. name: "Toying with Transcendence",
  9511. height: math.unit(1e307, "meters")
  9512. },
  9513. ]
  9514. ))
  9515. characterMakers.push(() => makeCharacter(
  9516. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9517. {
  9518. front: {
  9519. height: math.unit(17 + 1 / 12, "feet"),
  9520. weight: math.unit(476.2 * 5, "lbs"),
  9521. name: "Front",
  9522. image: {
  9523. source: "./media/characters/kuro-shi-uchū/front.svg",
  9524. extra: 2329 / 1835,
  9525. bottom: 0.02
  9526. }
  9527. },
  9528. },
  9529. [
  9530. {
  9531. name: "Micro",
  9532. height: math.unit(2, "inches")
  9533. },
  9534. {
  9535. name: "Normal",
  9536. height: math.unit(12, "meters")
  9537. },
  9538. {
  9539. name: "Planetary",
  9540. height: math.unit(0.00929, "AU"),
  9541. default: true
  9542. },
  9543. {
  9544. name: "Universal",
  9545. height: math.unit(20, "gigaparsecs")
  9546. },
  9547. ]
  9548. ))
  9549. characterMakers.push(() => makeCharacter(
  9550. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9551. {
  9552. front: {
  9553. height: math.unit(5 + 2 / 12, "feet"),
  9554. weight: math.unit(120, "lbs"),
  9555. name: "Front",
  9556. image: {
  9557. source: "./media/characters/katherine/front.svg",
  9558. extra: 2075 / 1969
  9559. }
  9560. },
  9561. dress: {
  9562. height: math.unit(5 + 2 / 12, "feet"),
  9563. weight: math.unit(120, "lbs"),
  9564. name: "Dress",
  9565. image: {
  9566. source: "./media/characters/katherine/dress.svg",
  9567. extra: 2258 / 2064
  9568. }
  9569. },
  9570. },
  9571. [
  9572. {
  9573. name: "Micro",
  9574. height: math.unit(1, "inches"),
  9575. default: true
  9576. },
  9577. {
  9578. name: "Normal",
  9579. height: math.unit(5 + 2 / 12, "feet")
  9580. },
  9581. {
  9582. name: "Macro",
  9583. height: math.unit(100, "meters")
  9584. },
  9585. {
  9586. name: "Megamacro",
  9587. height: math.unit(80, "miles")
  9588. },
  9589. ]
  9590. ))
  9591. characterMakers.push(() => makeCharacter(
  9592. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9593. {
  9594. front: {
  9595. height: math.unit(7 + 8 / 12, "feet"),
  9596. weight: math.unit(250, "lbs"),
  9597. name: "Front",
  9598. image: {
  9599. source: "./media/characters/yevis/front.svg",
  9600. extra: 1938 / 1755
  9601. }
  9602. }
  9603. },
  9604. [
  9605. {
  9606. name: "Mortal",
  9607. height: math.unit(7 + 8 / 12, "feet")
  9608. },
  9609. {
  9610. name: "Battle",
  9611. height: math.unit(25 + 11 / 12, "feet")
  9612. },
  9613. {
  9614. name: "Wrath",
  9615. height: math.unit(1654 + 11 / 12, "feet")
  9616. },
  9617. {
  9618. name: "Planet Destroyer",
  9619. height: math.unit(12000, "miles")
  9620. },
  9621. {
  9622. name: "Galaxy Conqueror",
  9623. height: math.unit(1.45, "zettameters"),
  9624. default: true
  9625. },
  9626. {
  9627. name: "Universal War",
  9628. height: math.unit(184, "gigaparsecs")
  9629. },
  9630. {
  9631. name: "Eternity War",
  9632. height: math.unit(1.98e55, "yottaparsecs")
  9633. },
  9634. ]
  9635. ))
  9636. characterMakers.push(() => makeCharacter(
  9637. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9638. {
  9639. front: {
  9640. height: math.unit(5 + 8 / 12, "feet"),
  9641. weight: math.unit(63, "kg"),
  9642. name: "Front",
  9643. image: {
  9644. source: "./media/characters/xavier/front.svg",
  9645. extra: 944 / 883
  9646. }
  9647. },
  9648. frontStretch: {
  9649. height: math.unit(5 + 8 / 12, "feet"),
  9650. weight: math.unit(63, "kg"),
  9651. name: "Stretching",
  9652. image: {
  9653. source: "./media/characters/xavier/front-stretch.svg",
  9654. extra: 962 / 820
  9655. }
  9656. },
  9657. },
  9658. [
  9659. {
  9660. name: "Normal",
  9661. height: math.unit(5 + 8 / 12, "feet")
  9662. },
  9663. {
  9664. name: "Macro",
  9665. height: math.unit(100, "meters"),
  9666. default: true
  9667. },
  9668. {
  9669. name: "McLargeHuge",
  9670. height: math.unit(10, "miles")
  9671. },
  9672. ]
  9673. ))
  9674. characterMakers.push(() => makeCharacter(
  9675. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9676. {
  9677. front: {
  9678. height: math.unit(5 + 5 / 12, "feet"),
  9679. weight: math.unit(150, "lb"),
  9680. name: "Front",
  9681. image: {
  9682. source: "./media/characters/joshii/front.svg",
  9683. extra: 765 / 653,
  9684. bottom: 51 / 816
  9685. }
  9686. },
  9687. foot: {
  9688. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9689. name: "Foot",
  9690. image: {
  9691. source: "./media/characters/joshii/foot.svg"
  9692. }
  9693. },
  9694. },
  9695. [
  9696. {
  9697. name: "Micro",
  9698. height: math.unit(2, "inches")
  9699. },
  9700. {
  9701. name: "Normal",
  9702. height: math.unit(5 + 5 / 12, "feet")
  9703. },
  9704. {
  9705. name: "Macro",
  9706. height: math.unit(785, "feet"),
  9707. default: true
  9708. },
  9709. {
  9710. name: "Megamacro",
  9711. height: math.unit(24.5, "miles")
  9712. },
  9713. ]
  9714. ))
  9715. characterMakers.push(() => makeCharacter(
  9716. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9717. {
  9718. front: {
  9719. height: math.unit(6, "feet"),
  9720. weight: math.unit(150, "lb"),
  9721. name: "Front",
  9722. image: {
  9723. source: "./media/characters/goddess-elizabeth/front.svg",
  9724. extra: 1800 / 1525,
  9725. bottom: 0.005
  9726. }
  9727. },
  9728. foot: {
  9729. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9730. name: "Foot",
  9731. image: {
  9732. source: "./media/characters/goddess-elizabeth/foot.svg"
  9733. }
  9734. },
  9735. mouth: {
  9736. height: math.unit(6, "feet"),
  9737. name: "Mouth",
  9738. image: {
  9739. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9740. }
  9741. },
  9742. },
  9743. [
  9744. {
  9745. name: "Micro",
  9746. height: math.unit(12, "feet")
  9747. },
  9748. {
  9749. name: "Normal",
  9750. height: math.unit(80, "miles"),
  9751. default: true
  9752. },
  9753. {
  9754. name: "Macro",
  9755. height: math.unit(15000, "parsecs")
  9756. },
  9757. ]
  9758. ))
  9759. characterMakers.push(() => makeCharacter(
  9760. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9761. {
  9762. front: {
  9763. height: math.unit(5 + 9 / 12, "feet"),
  9764. weight: math.unit(144, "lb"),
  9765. name: "Front",
  9766. image: {
  9767. source: "./media/characters/kara/front.svg"
  9768. }
  9769. },
  9770. feet: {
  9771. height: math.unit(6 / 6.765, "feet"),
  9772. name: "Kara's Feet",
  9773. rename: true,
  9774. image: {
  9775. source: "./media/characters/kara/feet.svg"
  9776. }
  9777. },
  9778. },
  9779. [
  9780. {
  9781. name: "Normal",
  9782. height: math.unit(5 + 9 / 12, "feet")
  9783. },
  9784. {
  9785. name: "Macro",
  9786. height: math.unit(174, "feet"),
  9787. default: true
  9788. },
  9789. ]
  9790. ))
  9791. characterMakers.push(() => makeCharacter(
  9792. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9793. {
  9794. front: {
  9795. height: math.unit(18, "feet"),
  9796. weight: math.unit(4050, "lb"),
  9797. name: "Front",
  9798. image: {
  9799. source: "./media/characters/tyrone/front.svg",
  9800. extra: 2405 / 2270,
  9801. bottom: 182 / 2587
  9802. }
  9803. },
  9804. },
  9805. [
  9806. {
  9807. name: "Normal",
  9808. height: math.unit(18, "feet"),
  9809. default: true
  9810. },
  9811. {
  9812. name: "Macro",
  9813. height: math.unit(300, "feet")
  9814. },
  9815. {
  9816. name: "Megamacro",
  9817. height: math.unit(15, "km")
  9818. },
  9819. {
  9820. name: "Gigamacro",
  9821. height: math.unit(500, "km")
  9822. },
  9823. {
  9824. name: "Teramacro",
  9825. height: math.unit(0.5, "gigameters")
  9826. },
  9827. {
  9828. name: "Omnimacro",
  9829. height: math.unit(1e252, "yottauniverse")
  9830. },
  9831. ]
  9832. ))
  9833. characterMakers.push(() => makeCharacter(
  9834. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9835. {
  9836. front: {
  9837. height: math.unit(7 + 8 / 12, "feet"),
  9838. weight: math.unit(120, "lb"),
  9839. name: "Front",
  9840. image: {
  9841. source: "./media/characters/danny/front.svg",
  9842. extra: 1490 / 1350
  9843. }
  9844. },
  9845. back: {
  9846. height: math.unit(7 + 8 / 12, "feet"),
  9847. weight: math.unit(120, "lb"),
  9848. name: "Back",
  9849. image: {
  9850. source: "./media/characters/danny/back.svg",
  9851. extra: 1490 / 1350
  9852. }
  9853. },
  9854. },
  9855. [
  9856. {
  9857. name: "Normal",
  9858. height: math.unit(7 + 8 / 12, "feet"),
  9859. default: true
  9860. },
  9861. ]
  9862. ))
  9863. characterMakers.push(() => makeCharacter(
  9864. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9865. {
  9866. front: {
  9867. height: math.unit(3.5, "inches"),
  9868. weight: math.unit(19, "grams"),
  9869. name: "Front",
  9870. image: {
  9871. source: "./media/characters/mallow/front.svg",
  9872. extra: 471 / 431
  9873. }
  9874. },
  9875. back: {
  9876. height: math.unit(3.5, "inches"),
  9877. weight: math.unit(19, "grams"),
  9878. name: "Back",
  9879. image: {
  9880. source: "./media/characters/mallow/back.svg",
  9881. extra: 471 / 431
  9882. }
  9883. },
  9884. },
  9885. [
  9886. {
  9887. name: "Normal",
  9888. height: math.unit(3.5, "inches"),
  9889. default: true
  9890. },
  9891. ]
  9892. ))
  9893. characterMakers.push(() => makeCharacter(
  9894. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9895. {
  9896. front: {
  9897. height: math.unit(9, "feet"),
  9898. weight: math.unit(230, "kg"),
  9899. name: "Front",
  9900. image: {
  9901. source: "./media/characters/starry-aqua/front.svg"
  9902. }
  9903. },
  9904. back: {
  9905. height: math.unit(9, "feet"),
  9906. weight: math.unit(230, "kg"),
  9907. name: "Back",
  9908. image: {
  9909. source: "./media/characters/starry-aqua/back.svg"
  9910. }
  9911. },
  9912. hand: {
  9913. height: math.unit(9 * 0.1168, "feet"),
  9914. name: "Hand",
  9915. image: {
  9916. source: "./media/characters/starry-aqua/hand.svg"
  9917. }
  9918. },
  9919. foot: {
  9920. height: math.unit(9 * 0.18, "feet"),
  9921. name: "Foot",
  9922. image: {
  9923. source: "./media/characters/starry-aqua/foot.svg"
  9924. }
  9925. }
  9926. },
  9927. [
  9928. {
  9929. name: "Micro",
  9930. height: math.unit(3, "inches")
  9931. },
  9932. {
  9933. name: "Normal",
  9934. height: math.unit(9, "feet")
  9935. },
  9936. {
  9937. name: "Macro",
  9938. height: math.unit(300, "feet"),
  9939. default: true
  9940. },
  9941. {
  9942. name: "Megamacro",
  9943. height: math.unit(3200, "feet")
  9944. }
  9945. ]
  9946. ))
  9947. characterMakers.push(() => makeCharacter(
  9948. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9949. {
  9950. front: {
  9951. height: math.unit(15, "feet"),
  9952. weight: math.unit(5026, "lb"),
  9953. name: "Front",
  9954. image: {
  9955. source: "./media/characters/luka-towers/front.svg",
  9956. extra: 1269/1133,
  9957. bottom: 51/1320
  9958. }
  9959. },
  9960. },
  9961. [
  9962. {
  9963. name: "Normal",
  9964. height: math.unit(15, "feet"),
  9965. default: true
  9966. },
  9967. {
  9968. name: "Minimacro",
  9969. height: math.unit(25, "feet")
  9970. },
  9971. {
  9972. name: "Macro",
  9973. height: math.unit(320, "feet")
  9974. },
  9975. {
  9976. name: "Megamacro",
  9977. height: math.unit(35000, "feet")
  9978. },
  9979. {
  9980. name: "Gigamacro",
  9981. height: math.unit(4000, "miles")
  9982. },
  9983. {
  9984. name: "Teramacro",
  9985. height: math.unit(15000, "miles")
  9986. },
  9987. ]
  9988. ))
  9989. characterMakers.push(() => makeCharacter(
  9990. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9991. {
  9992. front: {
  9993. height: math.unit(6, "feet"),
  9994. weight: math.unit(150, "lb"),
  9995. name: "Front",
  9996. image: {
  9997. source: "./media/characters/natalie-nightring/front.svg",
  9998. extra: 1,
  9999. bottom: 0.06
  10000. }
  10001. },
  10002. },
  10003. [
  10004. {
  10005. name: "Uh Oh",
  10006. height: math.unit(0.1, "mm")
  10007. },
  10008. {
  10009. name: "Small",
  10010. height: math.unit(3, "inches")
  10011. },
  10012. {
  10013. name: "Human Scale",
  10014. height: math.unit(6, "feet")
  10015. },
  10016. {
  10017. name: "Librarian",
  10018. height: math.unit(50, "feet"),
  10019. default: true
  10020. },
  10021. {
  10022. name: "Immense",
  10023. height: math.unit(200, "miles")
  10024. },
  10025. ]
  10026. ))
  10027. characterMakers.push(() => makeCharacter(
  10028. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10029. {
  10030. front: {
  10031. height: math.unit(6, "feet"),
  10032. weight: math.unit(180, "lbs"),
  10033. name: "Front",
  10034. image: {
  10035. source: "./media/characters/danni-rosie/front.svg",
  10036. extra: 1260 / 1128,
  10037. bottom: 0.022
  10038. }
  10039. },
  10040. },
  10041. [
  10042. {
  10043. name: "Micro",
  10044. height: math.unit(2, "inches"),
  10045. default: true
  10046. },
  10047. ]
  10048. ))
  10049. characterMakers.push(() => makeCharacter(
  10050. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10051. {
  10052. front: {
  10053. height: math.unit(5 + 9 / 12, "feet"),
  10054. weight: math.unit(220, "lb"),
  10055. name: "Front",
  10056. image: {
  10057. source: "./media/characters/samantha-kruse/front.svg",
  10058. extra: (985 / 935),
  10059. bottom: 0.03
  10060. }
  10061. },
  10062. frontUndressed: {
  10063. height: math.unit(5 + 9 / 12, "feet"),
  10064. weight: math.unit(220, "lb"),
  10065. name: "Front (Undressed)",
  10066. image: {
  10067. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10068. extra: (973 / 923),
  10069. bottom: 0.025
  10070. }
  10071. },
  10072. fat: {
  10073. height: math.unit(5 + 9 / 12, "feet"),
  10074. weight: math.unit(900, "lb"),
  10075. name: "Front (Fat)",
  10076. image: {
  10077. source: "./media/characters/samantha-kruse/fat.svg",
  10078. extra: 2688 / 2561
  10079. }
  10080. },
  10081. },
  10082. [
  10083. {
  10084. name: "Normal",
  10085. height: math.unit(5 + 9 / 12, "feet"),
  10086. default: true
  10087. }
  10088. ]
  10089. ))
  10090. characterMakers.push(() => makeCharacter(
  10091. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10092. {
  10093. back: {
  10094. height: math.unit(5 + 4 / 12, "feet"),
  10095. weight: math.unit(4963, "lb"),
  10096. name: "Back",
  10097. image: {
  10098. source: "./media/characters/amelia-rosie/back.svg",
  10099. extra: 1113 / 963,
  10100. bottom: 0.01
  10101. }
  10102. },
  10103. },
  10104. [
  10105. {
  10106. name: "Level 0",
  10107. height: math.unit(5 + 4 / 12, "feet")
  10108. },
  10109. {
  10110. name: "Level 1",
  10111. height: math.unit(164597, "feet"),
  10112. default: true
  10113. },
  10114. {
  10115. name: "Level 2",
  10116. height: math.unit(956243, "miles")
  10117. },
  10118. {
  10119. name: "Level 3",
  10120. height: math.unit(29421709423, "miles")
  10121. },
  10122. {
  10123. name: "Level 4",
  10124. height: math.unit(154, "lightyears")
  10125. },
  10126. {
  10127. name: "Level 5",
  10128. height: math.unit(4738272, "lightyears")
  10129. },
  10130. {
  10131. name: "Level 6",
  10132. height: math.unit(145787152896, "lightyears")
  10133. },
  10134. ]
  10135. ))
  10136. characterMakers.push(() => makeCharacter(
  10137. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10138. {
  10139. front: {
  10140. height: math.unit(5 + 11 / 12, "feet"),
  10141. weight: math.unit(65, "kg"),
  10142. name: "Front",
  10143. image: {
  10144. source: "./media/characters/rook-kitara/front.svg",
  10145. extra: 1347 / 1274,
  10146. bottom: 0.005
  10147. }
  10148. },
  10149. },
  10150. [
  10151. {
  10152. name: "Totally Unfair",
  10153. height: math.unit(1.8, "mm")
  10154. },
  10155. {
  10156. name: "Lap Rookie",
  10157. height: math.unit(1.4, "feet")
  10158. },
  10159. {
  10160. name: "Normal",
  10161. height: math.unit(5 + 11 / 12, "feet"),
  10162. default: true
  10163. },
  10164. {
  10165. name: "How Did This Happen",
  10166. height: math.unit(80, "miles")
  10167. }
  10168. ]
  10169. ))
  10170. characterMakers.push(() => makeCharacter(
  10171. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10172. {
  10173. front: {
  10174. height: math.unit(7, "feet"),
  10175. weight: math.unit(300, "lb"),
  10176. name: "Front",
  10177. image: {
  10178. source: "./media/characters/pisces/front.svg",
  10179. extra: 2255 / 2115,
  10180. bottom: 0.03
  10181. }
  10182. },
  10183. back: {
  10184. height: math.unit(7, "feet"),
  10185. weight: math.unit(300, "lb"),
  10186. name: "Back",
  10187. image: {
  10188. source: "./media/characters/pisces/back.svg",
  10189. extra: 2146 / 2055,
  10190. bottom: 0.04
  10191. }
  10192. },
  10193. },
  10194. [
  10195. {
  10196. name: "Normal",
  10197. height: math.unit(7, "feet"),
  10198. default: true
  10199. },
  10200. {
  10201. name: "Swimming Pool",
  10202. height: math.unit(12.2, "meters")
  10203. },
  10204. {
  10205. name: "Olympic Swimming Pool",
  10206. height: math.unit(56.3, "meters")
  10207. },
  10208. {
  10209. name: "Lake Superior",
  10210. height: math.unit(93900, "meters")
  10211. },
  10212. {
  10213. name: "Mediterranean Sea",
  10214. height: math.unit(644457, "meters")
  10215. },
  10216. {
  10217. name: "World's Oceans",
  10218. height: math.unit(4567491, "meters")
  10219. },
  10220. ]
  10221. ))
  10222. characterMakers.push(() => makeCharacter(
  10223. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10224. {
  10225. front: {
  10226. height: math.unit(2.3, "meters"),
  10227. weight: math.unit(120, "kg"),
  10228. name: "Front",
  10229. image: {
  10230. source: "./media/characters/zelas/front.svg"
  10231. }
  10232. },
  10233. side: {
  10234. height: math.unit(2.3, "meters"),
  10235. weight: math.unit(120, "kg"),
  10236. name: "Side",
  10237. image: {
  10238. source: "./media/characters/zelas/side.svg"
  10239. }
  10240. },
  10241. back: {
  10242. height: math.unit(2.3, "meters"),
  10243. weight: math.unit(120, "kg"),
  10244. name: "Back",
  10245. image: {
  10246. source: "./media/characters/zelas/back.svg"
  10247. }
  10248. },
  10249. foot: {
  10250. height: math.unit(1.116, "feet"),
  10251. name: "Foot",
  10252. image: {
  10253. source: "./media/characters/zelas/foot.svg"
  10254. }
  10255. },
  10256. },
  10257. [
  10258. {
  10259. name: "Normal",
  10260. height: math.unit(2.3, "meters")
  10261. },
  10262. {
  10263. name: "Macro",
  10264. height: math.unit(30, "meters"),
  10265. default: true
  10266. },
  10267. ]
  10268. ))
  10269. characterMakers.push(() => makeCharacter(
  10270. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10271. {
  10272. front: {
  10273. height: math.unit(1, "inch"),
  10274. weight: math.unit(0.21, "grams"),
  10275. name: "Front",
  10276. image: {
  10277. source: "./media/characters/talbot/front.svg",
  10278. extra: 594 / 544
  10279. }
  10280. },
  10281. },
  10282. [
  10283. {
  10284. name: "Micro",
  10285. height: math.unit(1, "inch"),
  10286. default: true
  10287. },
  10288. ]
  10289. ))
  10290. characterMakers.push(() => makeCharacter(
  10291. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10292. {
  10293. front: {
  10294. height: math.unit(3 + 3 / 12, "feet"),
  10295. weight: math.unit(51.8, "lb"),
  10296. name: "Front",
  10297. image: {
  10298. source: "./media/characters/fliss/front.svg",
  10299. extra: 840 / 640
  10300. }
  10301. },
  10302. },
  10303. [
  10304. {
  10305. name: "Teeny Tiny",
  10306. height: math.unit(1, "mm")
  10307. },
  10308. {
  10309. name: "Small",
  10310. height: math.unit(1, "inch"),
  10311. default: true
  10312. },
  10313. {
  10314. name: "Standard Sylveon",
  10315. height: math.unit(3 + 3 / 12, "feet")
  10316. },
  10317. {
  10318. name: "Large Nuisance",
  10319. height: math.unit(33, "feet")
  10320. },
  10321. {
  10322. name: "City Filler",
  10323. height: math.unit(3000, "feet")
  10324. },
  10325. {
  10326. name: "New Horizon",
  10327. height: math.unit(6000, "miles")
  10328. },
  10329. ]
  10330. ))
  10331. characterMakers.push(() => makeCharacter(
  10332. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10333. {
  10334. front: {
  10335. height: math.unit(5, "cm"),
  10336. weight: math.unit(1.94, "g"),
  10337. name: "Front",
  10338. image: {
  10339. source: "./media/characters/fleta/front.svg",
  10340. extra: 835 / 803
  10341. }
  10342. },
  10343. back: {
  10344. height: math.unit(5, "cm"),
  10345. weight: math.unit(1.94, "g"),
  10346. name: "Back",
  10347. image: {
  10348. source: "./media/characters/fleta/back.svg",
  10349. extra: 835 / 803
  10350. }
  10351. },
  10352. },
  10353. [
  10354. {
  10355. name: "Micro",
  10356. height: math.unit(5, "cm"),
  10357. default: true
  10358. },
  10359. ]
  10360. ))
  10361. characterMakers.push(() => makeCharacter(
  10362. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10363. {
  10364. front: {
  10365. height: math.unit(6, "feet"),
  10366. weight: math.unit(225, "lb"),
  10367. name: "Front",
  10368. image: {
  10369. source: "./media/characters/dominic/front.svg",
  10370. extra: 1770 / 1620,
  10371. bottom: 0.025
  10372. }
  10373. },
  10374. back: {
  10375. height: math.unit(6, "feet"),
  10376. weight: math.unit(225, "lb"),
  10377. name: "Back",
  10378. image: {
  10379. source: "./media/characters/dominic/back.svg",
  10380. extra: 1745 / 1620,
  10381. bottom: 0.065
  10382. }
  10383. },
  10384. },
  10385. [
  10386. {
  10387. name: "Nano",
  10388. height: math.unit(0.1, "mm")
  10389. },
  10390. {
  10391. name: "Micro-",
  10392. height: math.unit(1, "mm")
  10393. },
  10394. {
  10395. name: "Micro",
  10396. height: math.unit(4, "inches")
  10397. },
  10398. {
  10399. name: "Normal",
  10400. height: math.unit(6 + 4 / 12, "feet"),
  10401. default: true
  10402. },
  10403. {
  10404. name: "Macro",
  10405. height: math.unit(115, "feet")
  10406. },
  10407. {
  10408. name: "Macro+",
  10409. height: math.unit(955, "feet")
  10410. },
  10411. {
  10412. name: "Megamacro",
  10413. height: math.unit(8990, "feet")
  10414. },
  10415. {
  10416. name: "Gigmacro",
  10417. height: math.unit(9310, "miles")
  10418. },
  10419. {
  10420. name: "Teramacro",
  10421. height: math.unit(1567005010, "miles")
  10422. },
  10423. {
  10424. name: "Examacro",
  10425. height: math.unit(1425, "parsecs")
  10426. },
  10427. ]
  10428. ))
  10429. characterMakers.push(() => makeCharacter(
  10430. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10431. {
  10432. front: {
  10433. height: math.unit(400, "feet"),
  10434. weight: math.unit(44444444, "lb"),
  10435. name: "Front",
  10436. image: {
  10437. source: "./media/characters/major-colonel/front.svg"
  10438. }
  10439. },
  10440. back: {
  10441. height: math.unit(400, "feet"),
  10442. weight: math.unit(44444444, "lb"),
  10443. name: "Back",
  10444. image: {
  10445. source: "./media/characters/major-colonel/back.svg"
  10446. }
  10447. },
  10448. },
  10449. [
  10450. {
  10451. name: "Macro",
  10452. height: math.unit(400, "feet"),
  10453. default: true
  10454. },
  10455. ]
  10456. ))
  10457. characterMakers.push(() => makeCharacter(
  10458. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10459. {
  10460. catFront: {
  10461. height: math.unit(6, "feet"),
  10462. weight: math.unit(120, "lb"),
  10463. name: "Front (Cat Side)",
  10464. image: {
  10465. source: "./media/characters/axel-lycan/cat-front.svg",
  10466. extra: 430 / 402,
  10467. bottom: 43 / 472.35
  10468. }
  10469. },
  10470. catBack: {
  10471. height: math.unit(6, "feet"),
  10472. weight: math.unit(120, "lb"),
  10473. name: "Back (Cat Side)",
  10474. image: {
  10475. source: "./media/characters/axel-lycan/cat-back.svg",
  10476. extra: 447 / 419,
  10477. bottom: 23.3 / 469
  10478. }
  10479. },
  10480. wolfFront: {
  10481. height: math.unit(6, "feet"),
  10482. weight: math.unit(120, "lb"),
  10483. name: "Front (Wolf Side)",
  10484. image: {
  10485. source: "./media/characters/axel-lycan/wolf-front.svg",
  10486. extra: 485 / 456,
  10487. bottom: 19 / 504
  10488. }
  10489. },
  10490. wolfBack: {
  10491. height: math.unit(6, "feet"),
  10492. weight: math.unit(120, "lb"),
  10493. name: "Back (Wolf Side)",
  10494. image: {
  10495. source: "./media/characters/axel-lycan/wolf-back.svg",
  10496. extra: 475 / 438,
  10497. bottom: 39.2 / 514
  10498. }
  10499. },
  10500. },
  10501. [
  10502. {
  10503. name: "Macro",
  10504. height: math.unit(1, "km"),
  10505. default: true
  10506. },
  10507. ]
  10508. ))
  10509. characterMakers.push(() => makeCharacter(
  10510. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10511. {
  10512. front: {
  10513. height: math.unit(5 + 9 / 12, "feet"),
  10514. weight: math.unit(175, "lb"),
  10515. name: "Front",
  10516. image: {
  10517. source: "./media/characters/vanrel-hyena/front.svg",
  10518. extra: 1086 / 1010,
  10519. bottom: 0.04
  10520. }
  10521. },
  10522. },
  10523. [
  10524. {
  10525. name: "Normal",
  10526. height: math.unit(5 + 9 / 12, "feet"),
  10527. default: true
  10528. },
  10529. ]
  10530. ))
  10531. characterMakers.push(() => makeCharacter(
  10532. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10533. {
  10534. front: {
  10535. height: math.unit(6, "feet"),
  10536. weight: math.unit(103, "lb"),
  10537. name: "Front",
  10538. image: {
  10539. source: "./media/characters/abbott-absol/front.svg",
  10540. extra: 2010 / 1842
  10541. }
  10542. },
  10543. },
  10544. [
  10545. {
  10546. name: "Megamicro",
  10547. height: math.unit(0.1, "mm")
  10548. },
  10549. {
  10550. name: "Micro",
  10551. height: math.unit(1, "inch")
  10552. },
  10553. {
  10554. name: "Normal",
  10555. height: math.unit(6, "feet"),
  10556. default: true
  10557. },
  10558. ]
  10559. ))
  10560. characterMakers.push(() => makeCharacter(
  10561. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10562. {
  10563. front: {
  10564. height: math.unit(6, "feet"),
  10565. weight: math.unit(264, "lb"),
  10566. name: "Front",
  10567. image: {
  10568. source: "./media/characters/hector/front.svg",
  10569. extra: 2280 / 2130,
  10570. bottom: 0.07
  10571. }
  10572. },
  10573. },
  10574. [
  10575. {
  10576. name: "Normal",
  10577. height: math.unit(12.25, "foot"),
  10578. default: true
  10579. },
  10580. {
  10581. name: "Macro",
  10582. height: math.unit(160, "feet")
  10583. },
  10584. ]
  10585. ))
  10586. characterMakers.push(() => makeCharacter(
  10587. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10588. {
  10589. front: {
  10590. height: math.unit(6, "feet"),
  10591. weight: math.unit(150, "lb"),
  10592. name: "Front",
  10593. image: {
  10594. source: "./media/characters/sal/front.svg",
  10595. extra: 1846 / 1699,
  10596. bottom: 0.04
  10597. }
  10598. },
  10599. },
  10600. [
  10601. {
  10602. name: "Megamacro",
  10603. height: math.unit(10, "miles"),
  10604. default: true
  10605. },
  10606. ]
  10607. ))
  10608. characterMakers.push(() => makeCharacter(
  10609. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10610. {
  10611. front: {
  10612. height: math.unit(3, "meters"),
  10613. weight: math.unit(450, "kg"),
  10614. name: "front",
  10615. image: {
  10616. source: "./media/characters/ranger/front.svg",
  10617. extra: 2401 / 2243,
  10618. bottom: 0.05
  10619. }
  10620. },
  10621. },
  10622. [
  10623. {
  10624. name: "Normal",
  10625. height: math.unit(3, "meters"),
  10626. default: true
  10627. },
  10628. ]
  10629. ))
  10630. characterMakers.push(() => makeCharacter(
  10631. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10632. {
  10633. front: {
  10634. height: math.unit(14, "feet"),
  10635. weight: math.unit(800, "kg"),
  10636. name: "Front",
  10637. image: {
  10638. source: "./media/characters/theresa/front.svg",
  10639. extra: 3575 / 3346,
  10640. bottom: 0.03
  10641. }
  10642. },
  10643. },
  10644. [
  10645. {
  10646. name: "Normal",
  10647. height: math.unit(14, "feet"),
  10648. default: true
  10649. },
  10650. ]
  10651. ))
  10652. characterMakers.push(() => makeCharacter(
  10653. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10654. {
  10655. front: {
  10656. height: math.unit(6, "feet"),
  10657. weight: math.unit(3, "kg"),
  10658. name: "Front",
  10659. image: {
  10660. source: "./media/characters/ine/front.svg",
  10661. extra: 678 / 539,
  10662. bottom: 0.023
  10663. }
  10664. },
  10665. },
  10666. [
  10667. {
  10668. name: "Normal",
  10669. height: math.unit(2.265, "feet"),
  10670. default: true
  10671. },
  10672. ]
  10673. ))
  10674. characterMakers.push(() => makeCharacter(
  10675. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10676. {
  10677. front: {
  10678. height: math.unit(5, "feet"),
  10679. weight: math.unit(30, "kg"),
  10680. name: "Front",
  10681. image: {
  10682. source: "./media/characters/vial/front.svg",
  10683. extra: 1365 / 1277,
  10684. bottom: 0.04
  10685. }
  10686. },
  10687. },
  10688. [
  10689. {
  10690. name: "Normal",
  10691. height: math.unit(5, "feet"),
  10692. default: true
  10693. },
  10694. ]
  10695. ))
  10696. characterMakers.push(() => makeCharacter(
  10697. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10698. {
  10699. side: {
  10700. height: math.unit(3.4, "meters"),
  10701. weight: math.unit(1000, "lb"),
  10702. name: "Side",
  10703. image: {
  10704. source: "./media/characters/rovoska/side.svg",
  10705. extra: 4403 / 1515
  10706. }
  10707. },
  10708. },
  10709. [
  10710. {
  10711. name: "Normal",
  10712. height: math.unit(3.4, "meters"),
  10713. default: true
  10714. },
  10715. ]
  10716. ))
  10717. characterMakers.push(() => makeCharacter(
  10718. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10719. {
  10720. front: {
  10721. height: math.unit(8, "feet"),
  10722. weight: math.unit(315, "lb"),
  10723. name: "Front",
  10724. image: {
  10725. source: "./media/characters/gunner-rotthbauer/front.svg"
  10726. }
  10727. },
  10728. back: {
  10729. height: math.unit(8, "feet"),
  10730. weight: math.unit(315, "lb"),
  10731. name: "Back",
  10732. image: {
  10733. source: "./media/characters/gunner-rotthbauer/back.svg"
  10734. }
  10735. },
  10736. },
  10737. [
  10738. {
  10739. name: "Micro",
  10740. height: math.unit(3.5, "inches")
  10741. },
  10742. {
  10743. name: "Normal",
  10744. height: math.unit(8, "feet"),
  10745. default: true
  10746. },
  10747. {
  10748. name: "Macro",
  10749. height: math.unit(250, "feet")
  10750. },
  10751. {
  10752. name: "Megamacro",
  10753. height: math.unit(1, "AU")
  10754. },
  10755. ]
  10756. ))
  10757. characterMakers.push(() => makeCharacter(
  10758. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10759. {
  10760. front: {
  10761. height: math.unit(5 + 5 / 12, "feet"),
  10762. weight: math.unit(140, "lb"),
  10763. name: "Front",
  10764. image: {
  10765. source: "./media/characters/allatia/front.svg",
  10766. extra: 1227 / 1180,
  10767. bottom: 0.027
  10768. }
  10769. },
  10770. },
  10771. [
  10772. {
  10773. name: "Normal",
  10774. height: math.unit(5 + 5 / 12, "feet")
  10775. },
  10776. {
  10777. name: "Macro",
  10778. height: math.unit(250, "feet"),
  10779. default: true
  10780. },
  10781. {
  10782. name: "Megamacro",
  10783. height: math.unit(8, "miles")
  10784. }
  10785. ]
  10786. ))
  10787. characterMakers.push(() => makeCharacter(
  10788. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10789. {
  10790. front: {
  10791. height: math.unit(6, "feet"),
  10792. weight: math.unit(120, "lb"),
  10793. name: "Front",
  10794. image: {
  10795. source: "./media/characters/tene/front.svg",
  10796. extra: 814/750,
  10797. bottom: 36/850
  10798. }
  10799. },
  10800. stomping: {
  10801. height: math.unit(2.025, "meters"),
  10802. weight: math.unit(120, "lb"),
  10803. name: "Stomping",
  10804. image: {
  10805. source: "./media/characters/tene/stomping.svg",
  10806. extra: 885/821,
  10807. bottom: 15/900
  10808. }
  10809. },
  10810. sitting: {
  10811. height: math.unit(1, "meter"),
  10812. weight: math.unit(120, "lb"),
  10813. name: "Sitting",
  10814. image: {
  10815. source: "./media/characters/tene/sitting.svg",
  10816. extra: 396/366,
  10817. bottom: 79/475
  10818. }
  10819. },
  10820. smiling: {
  10821. height: math.unit(1.2, "feet"),
  10822. name: "Smiling",
  10823. image: {
  10824. source: "./media/characters/tene/smiling.svg",
  10825. extra: 1364/1071,
  10826. bottom: 0/1364
  10827. }
  10828. },
  10829. smug: {
  10830. height: math.unit(1.3, "feet"),
  10831. name: "Smug",
  10832. image: {
  10833. source: "./media/characters/tene/smug.svg",
  10834. extra: 1323/1082,
  10835. bottom: 0/1323
  10836. }
  10837. },
  10838. feral: {
  10839. height: math.unit(3.9, "feet"),
  10840. weight: math.unit(250, "lb"),
  10841. name: "Feral",
  10842. image: {
  10843. source: "./media/characters/tene/feral.svg",
  10844. extra: 717 / 458,
  10845. bottom: 0.179
  10846. }
  10847. },
  10848. },
  10849. [
  10850. {
  10851. name: "Normal",
  10852. height: math.unit(6, "feet")
  10853. },
  10854. {
  10855. name: "Macro",
  10856. height: math.unit(300, "feet"),
  10857. default: true
  10858. },
  10859. {
  10860. name: "Megamacro",
  10861. height: math.unit(5, "miles")
  10862. },
  10863. ]
  10864. ))
  10865. characterMakers.push(() => makeCharacter(
  10866. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10867. {
  10868. side: {
  10869. height: math.unit(6, "feet"),
  10870. name: "Side",
  10871. image: {
  10872. source: "./media/characters/evander/side.svg",
  10873. extra: 877 / 477
  10874. }
  10875. },
  10876. },
  10877. [
  10878. {
  10879. name: "Normal",
  10880. height: math.unit(0.83, "meters"),
  10881. default: true
  10882. },
  10883. ]
  10884. ))
  10885. characterMakers.push(() => makeCharacter(
  10886. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10887. {
  10888. front: {
  10889. height: math.unit(12, "feet"),
  10890. weight: math.unit(1000, "lb"),
  10891. name: "Front",
  10892. image: {
  10893. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10894. extra: 1762 / 1611
  10895. }
  10896. },
  10897. back: {
  10898. height: math.unit(12, "feet"),
  10899. weight: math.unit(1000, "lb"),
  10900. name: "Back",
  10901. image: {
  10902. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10903. extra: 1762 / 1611
  10904. }
  10905. },
  10906. },
  10907. [
  10908. {
  10909. name: "Normal",
  10910. height: math.unit(12, "feet"),
  10911. default: true
  10912. },
  10913. {
  10914. name: "Kaiju",
  10915. height: math.unit(150, "feet")
  10916. },
  10917. ]
  10918. ))
  10919. characterMakers.push(() => makeCharacter(
  10920. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10921. {
  10922. front: {
  10923. height: math.unit(6, "feet"),
  10924. weight: math.unit(150, "lb"),
  10925. name: "Front",
  10926. image: {
  10927. source: "./media/characters/zero-alurus/front.svg"
  10928. }
  10929. },
  10930. back: {
  10931. height: math.unit(6, "feet"),
  10932. weight: math.unit(150, "lb"),
  10933. name: "Back",
  10934. image: {
  10935. source: "./media/characters/zero-alurus/back.svg"
  10936. }
  10937. },
  10938. },
  10939. [
  10940. {
  10941. name: "Normal",
  10942. height: math.unit(5 + 10 / 12, "feet")
  10943. },
  10944. {
  10945. name: "Macro",
  10946. height: math.unit(60, "feet"),
  10947. default: true
  10948. },
  10949. {
  10950. name: "Macro+",
  10951. height: math.unit(450, "feet")
  10952. },
  10953. ]
  10954. ))
  10955. characterMakers.push(() => makeCharacter(
  10956. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10957. {
  10958. front: {
  10959. height: math.unit(6, "feet"),
  10960. weight: math.unit(200, "lb"),
  10961. name: "Front",
  10962. image: {
  10963. source: "./media/characters/mega-shi/front.svg",
  10964. extra: 1279 / 1250,
  10965. bottom: 0.02
  10966. }
  10967. },
  10968. back: {
  10969. height: math.unit(6, "feet"),
  10970. weight: math.unit(200, "lb"),
  10971. name: "Back",
  10972. image: {
  10973. source: "./media/characters/mega-shi/back.svg",
  10974. extra: 1279 / 1250,
  10975. bottom: 0.02
  10976. }
  10977. },
  10978. },
  10979. [
  10980. {
  10981. name: "Micro",
  10982. height: math.unit(16 + 6 / 12, "feet")
  10983. },
  10984. {
  10985. name: "Third Dimension",
  10986. height: math.unit(40, "meters")
  10987. },
  10988. {
  10989. name: "Normal",
  10990. height: math.unit(660, "feet"),
  10991. default: true
  10992. },
  10993. {
  10994. name: "Megamacro",
  10995. height: math.unit(10, "miles")
  10996. },
  10997. {
  10998. name: "Planetary Launch",
  10999. height: math.unit(500, "miles")
  11000. },
  11001. {
  11002. name: "Interstellar",
  11003. height: math.unit(1e9, "miles")
  11004. },
  11005. {
  11006. name: "Leaving the Universe",
  11007. height: math.unit(1, "gigaparsec")
  11008. },
  11009. {
  11010. name: "Travelling Universes",
  11011. height: math.unit(30e15, "parsecs")
  11012. },
  11013. ]
  11014. ))
  11015. characterMakers.push(() => makeCharacter(
  11016. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11017. {
  11018. front: {
  11019. height: math.unit(5 + 4/12, "feet"),
  11020. weight: math.unit(120, "lb"),
  11021. name: "Front",
  11022. image: {
  11023. source: "./media/characters/odyssey/front.svg",
  11024. extra: 1747/1571,
  11025. bottom: 47/1794
  11026. }
  11027. },
  11028. side: {
  11029. height: math.unit(5.1, "feet"),
  11030. weight: math.unit(120, "lb"),
  11031. name: "Side",
  11032. image: {
  11033. source: "./media/characters/odyssey/side.svg",
  11034. extra: 1847/1619,
  11035. bottom: 47/1894
  11036. }
  11037. },
  11038. lounging: {
  11039. height: math.unit(1.464, "feet"),
  11040. weight: math.unit(120, "lb"),
  11041. name: "Lounging",
  11042. image: {
  11043. source: "./media/characters/odyssey/lounging.svg",
  11044. extra: 1235/837,
  11045. bottom: 551/1786
  11046. }
  11047. },
  11048. },
  11049. [
  11050. {
  11051. name: "Normal",
  11052. height: math.unit(5 + 4 / 12, "feet")
  11053. },
  11054. {
  11055. name: "Macro",
  11056. height: math.unit(1, "km")
  11057. },
  11058. {
  11059. name: "Megamacro",
  11060. height: math.unit(3000, "km")
  11061. },
  11062. {
  11063. name: "Gigamacro",
  11064. height: math.unit(1, "AU"),
  11065. default: true
  11066. },
  11067. {
  11068. name: "Omniversal",
  11069. height: math.unit(100e14, "lightyears")
  11070. },
  11071. ]
  11072. ))
  11073. characterMakers.push(() => makeCharacter(
  11074. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11075. {
  11076. front: {
  11077. height: math.unit(6, "feet"),
  11078. weight: math.unit(300, "lb"),
  11079. name: "Front",
  11080. image: {
  11081. source: "./media/characters/mekuto/front.svg",
  11082. extra: 921 / 832,
  11083. bottom: 0.03
  11084. }
  11085. },
  11086. hand: {
  11087. height: math.unit(6 / 10.24, "feet"),
  11088. name: "Hand",
  11089. image: {
  11090. source: "./media/characters/mekuto/hand.svg"
  11091. }
  11092. },
  11093. foot: {
  11094. height: math.unit(6 / 5.05, "feet"),
  11095. name: "Foot",
  11096. image: {
  11097. source: "./media/characters/mekuto/foot.svg"
  11098. }
  11099. },
  11100. },
  11101. [
  11102. {
  11103. name: "Minimicro",
  11104. height: math.unit(0.2, "inches")
  11105. },
  11106. {
  11107. name: "Micro",
  11108. height: math.unit(1.5, "inches")
  11109. },
  11110. {
  11111. name: "Normal",
  11112. height: math.unit(5 + 11 / 12, "feet"),
  11113. default: true
  11114. },
  11115. {
  11116. name: "Minimacro",
  11117. height: math.unit(17 + 9 / 12, "feet")
  11118. },
  11119. {
  11120. name: "Macro",
  11121. height: math.unit(177.5, "feet")
  11122. },
  11123. {
  11124. name: "Megamacro",
  11125. height: math.unit(152, "miles")
  11126. },
  11127. ]
  11128. ))
  11129. characterMakers.push(() => makeCharacter(
  11130. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11131. {
  11132. front: {
  11133. height: math.unit(6.5, "inches"),
  11134. weight: math.unit(13, "oz"),
  11135. name: "Front",
  11136. image: {
  11137. source: "./media/characters/dafydd-tomos/front.svg",
  11138. extra: 2990 / 2603,
  11139. bottom: 0.03
  11140. }
  11141. },
  11142. },
  11143. [
  11144. {
  11145. name: "Micro",
  11146. height: math.unit(6.5, "inches"),
  11147. default: true
  11148. },
  11149. ]
  11150. ))
  11151. characterMakers.push(() => makeCharacter(
  11152. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11153. {
  11154. front: {
  11155. height: math.unit(6, "feet"),
  11156. weight: math.unit(150, "lb"),
  11157. name: "Front",
  11158. image: {
  11159. source: "./media/characters/splinter/front.svg",
  11160. extra: 2990 / 2882,
  11161. bottom: 0.04
  11162. }
  11163. },
  11164. back: {
  11165. height: math.unit(6, "feet"),
  11166. weight: math.unit(150, "lb"),
  11167. name: "Back",
  11168. image: {
  11169. source: "./media/characters/splinter/back.svg",
  11170. extra: 2990 / 2882,
  11171. bottom: 0.04
  11172. }
  11173. },
  11174. },
  11175. [
  11176. {
  11177. name: "Normal",
  11178. height: math.unit(6, "feet")
  11179. },
  11180. {
  11181. name: "Macro",
  11182. height: math.unit(230, "meters"),
  11183. default: true
  11184. },
  11185. ]
  11186. ))
  11187. characterMakers.push(() => makeCharacter(
  11188. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11189. {
  11190. front: {
  11191. height: math.unit(4 + 10 / 12, "feet"),
  11192. weight: math.unit(480, "lb"),
  11193. name: "Front",
  11194. image: {
  11195. source: "./media/characters/snow-gabumon/front.svg",
  11196. extra: 1140 / 963,
  11197. bottom: 0.058
  11198. }
  11199. },
  11200. back: {
  11201. height: math.unit(4 + 10 / 12, "feet"),
  11202. weight: math.unit(480, "lb"),
  11203. name: "Back",
  11204. image: {
  11205. source: "./media/characters/snow-gabumon/back.svg",
  11206. extra: 1115 / 962,
  11207. bottom: 0.041
  11208. }
  11209. },
  11210. frontUndresed: {
  11211. height: math.unit(4 + 10 / 12, "feet"),
  11212. weight: math.unit(480, "lb"),
  11213. name: "Front (Undressed)",
  11214. image: {
  11215. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11216. extra: 1061 / 960,
  11217. bottom: 0.045
  11218. }
  11219. },
  11220. },
  11221. [
  11222. {
  11223. name: "Micro",
  11224. height: math.unit(1, "inch")
  11225. },
  11226. {
  11227. name: "Normal",
  11228. height: math.unit(4 + 10 / 12, "feet"),
  11229. default: true
  11230. },
  11231. {
  11232. name: "Macro",
  11233. height: math.unit(200, "feet")
  11234. },
  11235. {
  11236. name: "Megamacro",
  11237. height: math.unit(120, "miles")
  11238. },
  11239. {
  11240. name: "Gigamacro",
  11241. height: math.unit(9800, "miles")
  11242. },
  11243. ]
  11244. ))
  11245. characterMakers.push(() => makeCharacter(
  11246. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11247. {
  11248. front: {
  11249. height: math.unit(1.7, "meters"),
  11250. weight: math.unit(140, "lb"),
  11251. name: "Front",
  11252. image: {
  11253. source: "./media/characters/moody/front.svg",
  11254. extra: 3226 / 3007,
  11255. bottom: 0.087
  11256. }
  11257. },
  11258. },
  11259. [
  11260. {
  11261. name: "Micro",
  11262. height: math.unit(1, "mm")
  11263. },
  11264. {
  11265. name: "Normal",
  11266. height: math.unit(1.7, "meters"),
  11267. default: true
  11268. },
  11269. {
  11270. name: "Macro",
  11271. height: math.unit(80, "meters")
  11272. },
  11273. {
  11274. name: "Macro+",
  11275. height: math.unit(500, "meters")
  11276. },
  11277. ]
  11278. ))
  11279. characterMakers.push(() => makeCharacter(
  11280. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11281. {
  11282. front: {
  11283. height: math.unit(6, "feet"),
  11284. weight: math.unit(150, "lb"),
  11285. name: "Front",
  11286. image: {
  11287. source: "./media/characters/zyas/front.svg",
  11288. extra: 1180 / 1120,
  11289. bottom: 0.045
  11290. }
  11291. },
  11292. },
  11293. [
  11294. {
  11295. name: "Normal",
  11296. height: math.unit(10, "feet"),
  11297. default: true
  11298. },
  11299. {
  11300. name: "Macro",
  11301. height: math.unit(500, "feet")
  11302. },
  11303. {
  11304. name: "Megamacro",
  11305. height: math.unit(5, "miles")
  11306. },
  11307. {
  11308. name: "Teramacro",
  11309. height: math.unit(150000, "miles")
  11310. },
  11311. ]
  11312. ))
  11313. characterMakers.push(() => makeCharacter(
  11314. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11315. {
  11316. front: {
  11317. height: math.unit(6, "feet"),
  11318. weight: math.unit(150, "lb"),
  11319. name: "Front",
  11320. image: {
  11321. source: "./media/characters/cuon/front.svg",
  11322. extra: 1390 / 1320,
  11323. bottom: 0.008
  11324. }
  11325. },
  11326. },
  11327. [
  11328. {
  11329. name: "Micro",
  11330. height: math.unit(3, "inches")
  11331. },
  11332. {
  11333. name: "Normal",
  11334. height: math.unit(18 + 9 / 12, "feet"),
  11335. default: true
  11336. },
  11337. {
  11338. name: "Macro",
  11339. height: math.unit(360, "feet")
  11340. },
  11341. {
  11342. name: "Megamacro",
  11343. height: math.unit(360, "miles")
  11344. },
  11345. ]
  11346. ))
  11347. characterMakers.push(() => makeCharacter(
  11348. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11349. {
  11350. front: {
  11351. height: math.unit(2.4, "meters"),
  11352. weight: math.unit(70, "kg"),
  11353. name: "Front",
  11354. image: {
  11355. source: "./media/characters/nyanuxk/front.svg",
  11356. extra: 1172 / 1084,
  11357. bottom: 0.065
  11358. }
  11359. },
  11360. side: {
  11361. height: math.unit(2.4, "meters"),
  11362. weight: math.unit(70, "kg"),
  11363. name: "Side",
  11364. image: {
  11365. source: "./media/characters/nyanuxk/side.svg",
  11366. extra: 1190 / 1132,
  11367. bottom: 0.007
  11368. }
  11369. },
  11370. back: {
  11371. height: math.unit(2.4, "meters"),
  11372. weight: math.unit(70, "kg"),
  11373. name: "Back",
  11374. image: {
  11375. source: "./media/characters/nyanuxk/back.svg",
  11376. extra: 1200 / 1141,
  11377. bottom: 0.015
  11378. }
  11379. },
  11380. foot: {
  11381. height: math.unit(0.52, "meters"),
  11382. name: "Foot",
  11383. image: {
  11384. source: "./media/characters/nyanuxk/foot.svg"
  11385. }
  11386. },
  11387. },
  11388. [
  11389. {
  11390. name: "Micro",
  11391. height: math.unit(2, "cm")
  11392. },
  11393. {
  11394. name: "Normal",
  11395. height: math.unit(2.4, "meters"),
  11396. default: true
  11397. },
  11398. {
  11399. name: "Smaller Macro",
  11400. height: math.unit(120, "meters")
  11401. },
  11402. {
  11403. name: "Bigger Macro",
  11404. height: math.unit(1.2, "km")
  11405. },
  11406. {
  11407. name: "Megamacro",
  11408. height: math.unit(15, "kilometers")
  11409. },
  11410. {
  11411. name: "Gigamacro",
  11412. height: math.unit(2000, "km")
  11413. },
  11414. {
  11415. name: "Teramacro",
  11416. height: math.unit(500000, "km")
  11417. },
  11418. ]
  11419. ))
  11420. characterMakers.push(() => makeCharacter(
  11421. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11422. {
  11423. side: {
  11424. height: math.unit(6, "feet"),
  11425. name: "Side",
  11426. image: {
  11427. source: "./media/characters/ailbhe/side.svg",
  11428. extra: 757 / 464,
  11429. bottom: 0.041
  11430. }
  11431. },
  11432. },
  11433. [
  11434. {
  11435. name: "Normal",
  11436. height: math.unit(1.07, "meters"),
  11437. default: true
  11438. },
  11439. ]
  11440. ))
  11441. characterMakers.push(() => makeCharacter(
  11442. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11443. {
  11444. front: {
  11445. height: math.unit(6, "feet"),
  11446. weight: math.unit(120, "kg"),
  11447. name: "Front",
  11448. image: {
  11449. source: "./media/characters/zevulfius/front.svg",
  11450. extra: 965 / 903
  11451. }
  11452. },
  11453. side: {
  11454. height: math.unit(6, "feet"),
  11455. weight: math.unit(120, "kg"),
  11456. name: "Side",
  11457. image: {
  11458. source: "./media/characters/zevulfius/side.svg",
  11459. extra: 939 / 900
  11460. }
  11461. },
  11462. back: {
  11463. height: math.unit(6, "feet"),
  11464. weight: math.unit(120, "kg"),
  11465. name: "Back",
  11466. image: {
  11467. source: "./media/characters/zevulfius/back.svg",
  11468. extra: 918 / 854,
  11469. bottom: 0.005
  11470. }
  11471. },
  11472. foot: {
  11473. height: math.unit(6 / 3.72, "feet"),
  11474. name: "Foot",
  11475. image: {
  11476. source: "./media/characters/zevulfius/foot.svg"
  11477. }
  11478. },
  11479. },
  11480. [
  11481. {
  11482. name: "Macro",
  11483. height: math.unit(750, "meters")
  11484. },
  11485. {
  11486. name: "Megamacro",
  11487. height: math.unit(20, "km"),
  11488. default: true
  11489. },
  11490. {
  11491. name: "Gigamacro",
  11492. height: math.unit(2000, "km")
  11493. },
  11494. {
  11495. name: "Teramacro",
  11496. height: math.unit(250000, "km")
  11497. },
  11498. ]
  11499. ))
  11500. characterMakers.push(() => makeCharacter(
  11501. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11502. {
  11503. front: {
  11504. height: math.unit(100, "feet"),
  11505. weight: math.unit(350, "kg"),
  11506. name: "Front",
  11507. image: {
  11508. source: "./media/characters/rikes/front.svg",
  11509. extra: 1565 / 1483,
  11510. bottom: 0.017
  11511. }
  11512. },
  11513. },
  11514. [
  11515. {
  11516. name: "Macro",
  11517. height: math.unit(100, "feet"),
  11518. default: true
  11519. },
  11520. ]
  11521. ))
  11522. characterMakers.push(() => makeCharacter(
  11523. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11524. {
  11525. front: {
  11526. height: math.unit(8, "feet"),
  11527. weight: math.unit(356, "lb"),
  11528. name: "Front",
  11529. image: {
  11530. source: "./media/characters/adam-silver-mane/front.svg",
  11531. extra: 1036/937,
  11532. bottom: 63/1099
  11533. }
  11534. },
  11535. side: {
  11536. height: math.unit(8, "feet"),
  11537. weight: math.unit(356, "lb"),
  11538. name: "Side",
  11539. image: {
  11540. source: "./media/characters/adam-silver-mane/side.svg",
  11541. extra: 997/901,
  11542. bottom: 59/1056
  11543. }
  11544. },
  11545. frontNsfw: {
  11546. height: math.unit(8, "feet"),
  11547. weight: math.unit(356, "lb"),
  11548. name: "Front (NSFW)",
  11549. image: {
  11550. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11551. extra: 1036/937,
  11552. bottom: 63/1099
  11553. }
  11554. },
  11555. sideNsfw: {
  11556. height: math.unit(8, "feet"),
  11557. weight: math.unit(356, "lb"),
  11558. name: "Side (NSFW)",
  11559. image: {
  11560. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11561. extra: 997/901,
  11562. bottom: 59/1056
  11563. }
  11564. },
  11565. dick: {
  11566. height: math.unit(2.1, "feet"),
  11567. name: "Dick",
  11568. image: {
  11569. source: "./media/characters/adam-silver-mane/dick.svg"
  11570. }
  11571. },
  11572. taur: {
  11573. height: math.unit(16, "feet"),
  11574. weight: math.unit(1500, "kg"),
  11575. name: "Taur",
  11576. image: {
  11577. source: "./media/characters/adam-silver-mane/taur.svg",
  11578. extra: 1713 / 1571,
  11579. bottom: 0.01
  11580. }
  11581. },
  11582. },
  11583. [
  11584. {
  11585. name: "Normal",
  11586. height: math.unit(8, "feet")
  11587. },
  11588. {
  11589. name: "Minimacro",
  11590. height: math.unit(80, "feet")
  11591. },
  11592. {
  11593. name: "MDA",
  11594. height: math.unit(80, "meters")
  11595. },
  11596. {
  11597. name: "Macro",
  11598. height: math.unit(800, "feet"),
  11599. default: true
  11600. },
  11601. {
  11602. name: "Megamacro",
  11603. height: math.unit(8000, "feet")
  11604. },
  11605. {
  11606. name: "Gigamacro",
  11607. height: math.unit(800, "miles")
  11608. },
  11609. {
  11610. name: "Teramacro",
  11611. height: math.unit(80000, "miles")
  11612. },
  11613. {
  11614. name: "Celestial",
  11615. height: math.unit(8e6, "miles")
  11616. },
  11617. {
  11618. name: "Star Dragon",
  11619. height: math.unit(800000, "parsecs")
  11620. },
  11621. {
  11622. name: "Godly",
  11623. height: math.unit(800, "teraparsecs")
  11624. },
  11625. ]
  11626. ))
  11627. characterMakers.push(() => makeCharacter(
  11628. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11629. {
  11630. front: {
  11631. height: math.unit(6, "feet"),
  11632. weight: math.unit(150, "lb"),
  11633. name: "Front",
  11634. image: {
  11635. source: "./media/characters/ky'owin/front.svg",
  11636. extra: 3888 / 3068,
  11637. bottom: 0.015
  11638. }
  11639. },
  11640. },
  11641. [
  11642. {
  11643. name: "Normal",
  11644. height: math.unit(6 + 8 / 12, "feet")
  11645. },
  11646. {
  11647. name: "Large",
  11648. height: math.unit(68, "feet")
  11649. },
  11650. {
  11651. name: "Macro",
  11652. height: math.unit(132, "feet")
  11653. },
  11654. {
  11655. name: "Macro+",
  11656. height: math.unit(340, "feet")
  11657. },
  11658. {
  11659. name: "Macro++",
  11660. height: math.unit(680, "feet"),
  11661. default: true
  11662. },
  11663. {
  11664. name: "Megamacro",
  11665. height: math.unit(1, "mile")
  11666. },
  11667. {
  11668. name: "Megamacro+",
  11669. height: math.unit(10, "miles")
  11670. },
  11671. ]
  11672. ))
  11673. characterMakers.push(() => makeCharacter(
  11674. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11675. {
  11676. front: {
  11677. height: math.unit(4, "feet"),
  11678. weight: math.unit(50, "lb"),
  11679. name: "Front",
  11680. image: {
  11681. source: "./media/characters/mal/front.svg",
  11682. extra: 785 / 724,
  11683. bottom: 0.07
  11684. }
  11685. },
  11686. },
  11687. [
  11688. {
  11689. name: "Micro",
  11690. height: math.unit(4, "inches")
  11691. },
  11692. {
  11693. name: "Normal",
  11694. height: math.unit(4, "feet"),
  11695. default: true
  11696. },
  11697. {
  11698. name: "Macro",
  11699. height: math.unit(200, "feet")
  11700. },
  11701. ]
  11702. ))
  11703. characterMakers.push(() => makeCharacter(
  11704. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11705. {
  11706. front: {
  11707. height: math.unit(6, "feet"),
  11708. weight: math.unit(150, "lb"),
  11709. name: "Front",
  11710. image: {
  11711. source: "./media/characters/jordan-deware/front.svg",
  11712. extra: 1191 / 1012
  11713. }
  11714. },
  11715. },
  11716. [
  11717. {
  11718. name: "Nano",
  11719. height: math.unit(0.01, "mm")
  11720. },
  11721. {
  11722. name: "Minimicro",
  11723. height: math.unit(1, "mm")
  11724. },
  11725. {
  11726. name: "Micro",
  11727. height: math.unit(0.5, "inches")
  11728. },
  11729. {
  11730. name: "Normal",
  11731. height: math.unit(4, "feet"),
  11732. default: true
  11733. },
  11734. {
  11735. name: "Minimacro",
  11736. height: math.unit(40, "meters")
  11737. },
  11738. {
  11739. name: "Small Macro",
  11740. height: math.unit(400, "meters")
  11741. },
  11742. {
  11743. name: "Macro",
  11744. height: math.unit(4, "miles")
  11745. },
  11746. {
  11747. name: "Megamacro",
  11748. height: math.unit(40, "miles")
  11749. },
  11750. {
  11751. name: "Megamacro+",
  11752. height: math.unit(400, "miles")
  11753. },
  11754. {
  11755. name: "Gigamacro",
  11756. height: math.unit(400000, "miles")
  11757. },
  11758. ]
  11759. ))
  11760. characterMakers.push(() => makeCharacter(
  11761. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11762. {
  11763. side: {
  11764. height: math.unit(6, "feet"),
  11765. weight: math.unit(150, "lb"),
  11766. name: "Side",
  11767. image: {
  11768. source: "./media/characters/kimiko/side.svg",
  11769. extra: 600 / 358
  11770. }
  11771. },
  11772. },
  11773. [
  11774. {
  11775. name: "Normal",
  11776. height: math.unit(15, "feet"),
  11777. default: true
  11778. },
  11779. {
  11780. name: "Macro",
  11781. height: math.unit(220, "feet")
  11782. },
  11783. {
  11784. name: "Macro+",
  11785. height: math.unit(1450, "feet")
  11786. },
  11787. {
  11788. name: "Megamacro",
  11789. height: math.unit(11500, "feet")
  11790. },
  11791. {
  11792. name: "Gigamacro",
  11793. height: math.unit(9500, "miles")
  11794. },
  11795. {
  11796. name: "Teramacro",
  11797. height: math.unit(2208005005, "miles")
  11798. },
  11799. {
  11800. name: "Examacro",
  11801. height: math.unit(2750, "parsecs")
  11802. },
  11803. {
  11804. name: "Zettamacro",
  11805. height: math.unit(101500, "parsecs")
  11806. },
  11807. ]
  11808. ))
  11809. characterMakers.push(() => makeCharacter(
  11810. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11811. {
  11812. front: {
  11813. height: math.unit(6, "feet"),
  11814. weight: math.unit(70, "kg"),
  11815. name: "Front",
  11816. image: {
  11817. source: "./media/characters/andrew-sleepy/front.svg"
  11818. }
  11819. },
  11820. side: {
  11821. height: math.unit(6, "feet"),
  11822. weight: math.unit(70, "kg"),
  11823. name: "Side",
  11824. image: {
  11825. source: "./media/characters/andrew-sleepy/side.svg"
  11826. }
  11827. },
  11828. },
  11829. [
  11830. {
  11831. name: "Micro",
  11832. height: math.unit(1, "mm"),
  11833. default: true
  11834. },
  11835. ]
  11836. ))
  11837. characterMakers.push(() => makeCharacter(
  11838. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11839. {
  11840. front: {
  11841. height: math.unit(6, "feet"),
  11842. weight: math.unit(150, "lb"),
  11843. name: "Front",
  11844. image: {
  11845. source: "./media/characters/judio/front.svg",
  11846. extra: 1258 / 1110
  11847. }
  11848. },
  11849. },
  11850. [
  11851. {
  11852. name: "Normal",
  11853. height: math.unit(5 + 6 / 12, "feet")
  11854. },
  11855. {
  11856. name: "Macro",
  11857. height: math.unit(1000, "feet"),
  11858. default: true
  11859. },
  11860. {
  11861. name: "Megamacro",
  11862. height: math.unit(10, "miles")
  11863. },
  11864. ]
  11865. ))
  11866. characterMakers.push(() => makeCharacter(
  11867. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11868. {
  11869. frontDressed: {
  11870. height: math.unit(6, "feet"),
  11871. weight: math.unit(68, "kg"),
  11872. name: "Front (Dressed)",
  11873. image: {
  11874. source: "./media/characters/nomaxice/front-dressed.svg",
  11875. extra: 1137/824,
  11876. bottom: 74/1211
  11877. }
  11878. },
  11879. frontShorts: {
  11880. height: math.unit(6, "feet"),
  11881. weight: math.unit(68, "kg"),
  11882. name: "Front (Shorts)",
  11883. image: {
  11884. source: "./media/characters/nomaxice/front-shorts.svg",
  11885. extra: 1137/824,
  11886. bottom: 74/1211
  11887. }
  11888. },
  11889. back: {
  11890. height: math.unit(6, "feet"),
  11891. weight: math.unit(68, "kg"),
  11892. name: "Back",
  11893. image: {
  11894. source: "./media/characters/nomaxice/back.svg",
  11895. extra: 822/786,
  11896. bottom: 39/861
  11897. }
  11898. },
  11899. hand: {
  11900. height: math.unit(0.565, "feet"),
  11901. name: "Hand",
  11902. image: {
  11903. source: "./media/characters/nomaxice/hand.svg"
  11904. }
  11905. },
  11906. foot: {
  11907. height: math.unit(1, "feet"),
  11908. name: "Foot",
  11909. image: {
  11910. source: "./media/characters/nomaxice/foot.svg"
  11911. }
  11912. },
  11913. },
  11914. [
  11915. {
  11916. name: "Micro",
  11917. height: math.unit(8, "cm")
  11918. },
  11919. {
  11920. name: "Norm",
  11921. height: math.unit(1.82, "m")
  11922. },
  11923. {
  11924. name: "Norm+",
  11925. height: math.unit(8.8, "feet"),
  11926. default: true
  11927. },
  11928. {
  11929. name: "Big",
  11930. height: math.unit(8, "meters")
  11931. },
  11932. {
  11933. name: "Macro",
  11934. height: math.unit(18, "meters")
  11935. },
  11936. {
  11937. name: "Macro+",
  11938. height: math.unit(88, "meters")
  11939. },
  11940. ]
  11941. ))
  11942. characterMakers.push(() => makeCharacter(
  11943. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11944. {
  11945. front: {
  11946. height: math.unit(12, "feet"),
  11947. weight: math.unit(1.5, "tons"),
  11948. name: "Front",
  11949. image: {
  11950. source: "./media/characters/dydros/front.svg",
  11951. extra: 863 / 800,
  11952. bottom: 0.015
  11953. }
  11954. },
  11955. back: {
  11956. height: math.unit(12, "feet"),
  11957. weight: math.unit(1.5, "tons"),
  11958. name: "Back",
  11959. image: {
  11960. source: "./media/characters/dydros/back.svg",
  11961. extra: 900 / 843,
  11962. bottom: 0.005
  11963. }
  11964. },
  11965. },
  11966. [
  11967. {
  11968. name: "Normal",
  11969. height: math.unit(12, "feet"),
  11970. default: true
  11971. },
  11972. ]
  11973. ))
  11974. characterMakers.push(() => makeCharacter(
  11975. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11976. {
  11977. front: {
  11978. height: math.unit(6, "feet"),
  11979. weight: math.unit(100, "kg"),
  11980. name: "Front",
  11981. image: {
  11982. source: "./media/characters/riggi/front.svg",
  11983. extra: 5787 / 5303
  11984. }
  11985. },
  11986. hyper: {
  11987. height: math.unit(6 * 5 / 3, "feet"),
  11988. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11989. name: "Hyper",
  11990. image: {
  11991. source: "./media/characters/riggi/hyper.svg",
  11992. extra: 3595 / 3485
  11993. }
  11994. },
  11995. },
  11996. [
  11997. {
  11998. name: "Small Macro",
  11999. height: math.unit(50, "feet")
  12000. },
  12001. {
  12002. name: "Default",
  12003. height: math.unit(200, "feet"),
  12004. default: true
  12005. },
  12006. {
  12007. name: "Loom",
  12008. height: math.unit(10000, "feet")
  12009. },
  12010. {
  12011. name: "Cruising Altitude",
  12012. height: math.unit(30000, "feet")
  12013. },
  12014. {
  12015. name: "Megamacro",
  12016. height: math.unit(100, "miles")
  12017. },
  12018. {
  12019. name: "Continent Sized",
  12020. height: math.unit(2800, "miles")
  12021. },
  12022. {
  12023. name: "Earth Sized",
  12024. height: math.unit(8000, "miles")
  12025. },
  12026. ]
  12027. ))
  12028. characterMakers.push(() => makeCharacter(
  12029. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12030. {
  12031. front: {
  12032. height: math.unit(6, "feet"),
  12033. weight: math.unit(250, "lb"),
  12034. name: "Front",
  12035. image: {
  12036. source: "./media/characters/alexi/front.svg",
  12037. extra: 3483 / 3291,
  12038. bottom: 0.04
  12039. }
  12040. },
  12041. back: {
  12042. height: math.unit(6, "feet"),
  12043. weight: math.unit(250, "lb"),
  12044. name: "Back",
  12045. image: {
  12046. source: "./media/characters/alexi/back.svg",
  12047. extra: 3533 / 3356,
  12048. bottom: 0.021
  12049. }
  12050. },
  12051. frontTransforming: {
  12052. height: math.unit(8.58, "feet"),
  12053. weight: math.unit(1300, "lb"),
  12054. name: "Transforming",
  12055. image: {
  12056. source: "./media/characters/alexi/front-transforming.svg",
  12057. extra: 437 / 409,
  12058. bottom: 19 / 458.66
  12059. }
  12060. },
  12061. frontTransformed: {
  12062. height: math.unit(12.5, "feet"),
  12063. weight: math.unit(4000, "lb"),
  12064. name: "Transformed",
  12065. image: {
  12066. source: "./media/characters/alexi/front-transformed.svg",
  12067. extra: 639 / 614,
  12068. bottom: 30.55 / 671
  12069. }
  12070. },
  12071. },
  12072. [
  12073. {
  12074. name: "Normal",
  12075. height: math.unit(14, "feet"),
  12076. default: true
  12077. },
  12078. {
  12079. name: "Minimacro",
  12080. height: math.unit(30, "meters")
  12081. },
  12082. {
  12083. name: "Macro",
  12084. height: math.unit(500, "meters")
  12085. },
  12086. {
  12087. name: "Megamacro",
  12088. height: math.unit(9000, "km")
  12089. },
  12090. {
  12091. name: "Teramacro",
  12092. height: math.unit(384000, "km")
  12093. },
  12094. ]
  12095. ))
  12096. characterMakers.push(() => makeCharacter(
  12097. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12098. {
  12099. front: {
  12100. height: math.unit(6, "feet"),
  12101. weight: math.unit(150, "lb"),
  12102. name: "Front",
  12103. image: {
  12104. source: "./media/characters/kayroo/front.svg",
  12105. extra: 1153 / 1038,
  12106. bottom: 0.06
  12107. }
  12108. },
  12109. foot: {
  12110. height: math.unit(6, "feet"),
  12111. weight: math.unit(150, "lb"),
  12112. name: "Foot",
  12113. image: {
  12114. source: "./media/characters/kayroo/foot.svg"
  12115. }
  12116. },
  12117. },
  12118. [
  12119. {
  12120. name: "Normal",
  12121. height: math.unit(8, "feet"),
  12122. default: true
  12123. },
  12124. {
  12125. name: "Minimacro",
  12126. height: math.unit(250, "feet")
  12127. },
  12128. {
  12129. name: "Macro",
  12130. height: math.unit(2800, "feet")
  12131. },
  12132. {
  12133. name: "Megamacro",
  12134. height: math.unit(5200, "feet")
  12135. },
  12136. {
  12137. name: "Gigamacro",
  12138. height: math.unit(27000, "feet")
  12139. },
  12140. {
  12141. name: "Omega",
  12142. height: math.unit(45000, "feet")
  12143. },
  12144. ]
  12145. ))
  12146. characterMakers.push(() => makeCharacter(
  12147. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12148. {
  12149. front: {
  12150. height: math.unit(18, "feet"),
  12151. weight: math.unit(5800, "lb"),
  12152. name: "Front",
  12153. image: {
  12154. source: "./media/characters/rhys/front.svg",
  12155. extra: 3386 / 3090,
  12156. bottom: 0.07
  12157. }
  12158. },
  12159. },
  12160. [
  12161. {
  12162. name: "Normal",
  12163. height: math.unit(18, "feet"),
  12164. default: true
  12165. },
  12166. {
  12167. name: "Working Size",
  12168. height: math.unit(200, "feet")
  12169. },
  12170. {
  12171. name: "Demolition Size",
  12172. height: math.unit(2000, "feet")
  12173. },
  12174. {
  12175. name: "Maximum Licensed Size",
  12176. height: math.unit(5, "miles")
  12177. },
  12178. {
  12179. name: "Maximum Observed Size",
  12180. height: math.unit(10, "yottameters")
  12181. },
  12182. ]
  12183. ))
  12184. characterMakers.push(() => makeCharacter(
  12185. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12186. {
  12187. front: {
  12188. height: math.unit(6, "feet"),
  12189. weight: math.unit(250, "lb"),
  12190. name: "Front",
  12191. image: {
  12192. source: "./media/characters/toto/front.svg",
  12193. extra: 527 / 479,
  12194. bottom: 0.05
  12195. }
  12196. },
  12197. },
  12198. [
  12199. {
  12200. name: "Micro",
  12201. height: math.unit(3, "feet")
  12202. },
  12203. {
  12204. name: "Normal",
  12205. height: math.unit(10, "feet")
  12206. },
  12207. {
  12208. name: "Macro",
  12209. height: math.unit(150, "feet"),
  12210. default: true
  12211. },
  12212. {
  12213. name: "Megamacro",
  12214. height: math.unit(1200, "feet")
  12215. },
  12216. ]
  12217. ))
  12218. characterMakers.push(() => makeCharacter(
  12219. { name: "King", species: ["lion"], tags: ["anthro"] },
  12220. {
  12221. back: {
  12222. height: math.unit(6, "feet"),
  12223. weight: math.unit(150, "lb"),
  12224. name: "Back",
  12225. image: {
  12226. source: "./media/characters/king/back.svg"
  12227. }
  12228. },
  12229. },
  12230. [
  12231. {
  12232. name: "Micro",
  12233. height: math.unit(2, "inches")
  12234. },
  12235. {
  12236. name: "Normal",
  12237. height: math.unit(8, "feet")
  12238. },
  12239. {
  12240. name: "Macro",
  12241. height: math.unit(200, "feet"),
  12242. default: true
  12243. },
  12244. {
  12245. name: "Megamacro",
  12246. height: math.unit(50, "miles")
  12247. },
  12248. ]
  12249. ))
  12250. characterMakers.push(() => makeCharacter(
  12251. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12252. {
  12253. front: {
  12254. height: math.unit(11, "feet"),
  12255. weight: math.unit(1400, "lb"),
  12256. name: "Front",
  12257. image: {
  12258. source: "./media/characters/cordite/front.svg",
  12259. extra: 1919/1827,
  12260. bottom: 40/1959
  12261. }
  12262. },
  12263. side: {
  12264. height: math.unit(11, "feet"),
  12265. weight: math.unit(1400, "lb"),
  12266. name: "Side",
  12267. image: {
  12268. source: "./media/characters/cordite/side.svg",
  12269. extra: 1908/1793,
  12270. bottom: 38/1946
  12271. }
  12272. },
  12273. back: {
  12274. height: math.unit(11, "feet"),
  12275. weight: math.unit(1400, "lb"),
  12276. name: "Back",
  12277. image: {
  12278. source: "./media/characters/cordite/back.svg",
  12279. extra: 1938/1837,
  12280. bottom: 10/1948
  12281. }
  12282. },
  12283. feral: {
  12284. height: math.unit(2, "feet"),
  12285. weight: math.unit(90, "lb"),
  12286. name: "Feral",
  12287. image: {
  12288. source: "./media/characters/cordite/feral.svg",
  12289. extra: 1260 / 755,
  12290. bottom: 0.05
  12291. }
  12292. },
  12293. },
  12294. [
  12295. {
  12296. name: "Normal",
  12297. height: math.unit(11, "feet"),
  12298. default: true
  12299. },
  12300. ]
  12301. ))
  12302. characterMakers.push(() => makeCharacter(
  12303. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12304. {
  12305. front: {
  12306. height: math.unit(6, "feet"),
  12307. weight: math.unit(150, "lb"),
  12308. name: "Front",
  12309. image: {
  12310. source: "./media/characters/pianostrong/front.svg",
  12311. extra: 6577 / 6254,
  12312. bottom: 0.02
  12313. }
  12314. },
  12315. side: {
  12316. height: math.unit(6, "feet"),
  12317. weight: math.unit(150, "lb"),
  12318. name: "Side",
  12319. image: {
  12320. source: "./media/characters/pianostrong/side.svg",
  12321. extra: 6106 / 5730
  12322. }
  12323. },
  12324. back: {
  12325. height: math.unit(6, "feet"),
  12326. weight: math.unit(150, "lb"),
  12327. name: "Back",
  12328. image: {
  12329. source: "./media/characters/pianostrong/back.svg",
  12330. extra: 6085 / 5733,
  12331. bottom: 0.01
  12332. }
  12333. },
  12334. },
  12335. [
  12336. {
  12337. name: "Macro",
  12338. height: math.unit(100, "feet")
  12339. },
  12340. {
  12341. name: "Macro+",
  12342. height: math.unit(300, "feet"),
  12343. default: true
  12344. },
  12345. {
  12346. name: "Macro++",
  12347. height: math.unit(1000, "feet")
  12348. },
  12349. ]
  12350. ))
  12351. characterMakers.push(() => makeCharacter(
  12352. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12353. {
  12354. front: {
  12355. height: math.unit(6, "feet"),
  12356. weight: math.unit(150, "lb"),
  12357. name: "Front",
  12358. image: {
  12359. source: "./media/characters/kona/front.svg",
  12360. extra: 2960 / 2629,
  12361. bottom: 0.005
  12362. }
  12363. },
  12364. },
  12365. [
  12366. {
  12367. name: "Normal",
  12368. height: math.unit(11 + 8 / 12, "feet")
  12369. },
  12370. {
  12371. name: "Macro",
  12372. height: math.unit(850, "feet"),
  12373. default: true
  12374. },
  12375. {
  12376. name: "Macro+",
  12377. height: math.unit(1.5, "km"),
  12378. default: true
  12379. },
  12380. {
  12381. name: "Megamacro",
  12382. height: math.unit(80, "miles")
  12383. },
  12384. {
  12385. name: "Gigamacro",
  12386. height: math.unit(3500, "miles")
  12387. },
  12388. ]
  12389. ))
  12390. characterMakers.push(() => makeCharacter(
  12391. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12392. {
  12393. side: {
  12394. height: math.unit(1.9, "meters"),
  12395. weight: math.unit(326, "kg"),
  12396. name: "Side",
  12397. image: {
  12398. source: "./media/characters/levi/side.svg",
  12399. extra: 1704 / 1334,
  12400. bottom: 0.02
  12401. }
  12402. },
  12403. },
  12404. [
  12405. {
  12406. name: "Normal",
  12407. height: math.unit(1.9, "meters"),
  12408. default: true
  12409. },
  12410. {
  12411. name: "Macro",
  12412. height: math.unit(20, "meters")
  12413. },
  12414. {
  12415. name: "Macro+",
  12416. height: math.unit(200, "meters")
  12417. },
  12418. {
  12419. name: "Megamacro",
  12420. height: math.unit(2, "km")
  12421. },
  12422. {
  12423. name: "Megamacro+",
  12424. height: math.unit(20, "km")
  12425. },
  12426. {
  12427. name: "Gigamacro",
  12428. height: math.unit(2500, "km")
  12429. },
  12430. {
  12431. name: "Gigamacro+",
  12432. height: math.unit(120000, "km")
  12433. },
  12434. {
  12435. name: "Teramacro",
  12436. height: math.unit(7.77e6, "km")
  12437. },
  12438. ]
  12439. ))
  12440. characterMakers.push(() => makeCharacter(
  12441. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12442. {
  12443. front: {
  12444. height: math.unit(6 + 4/12, "feet"),
  12445. weight: math.unit(190, "lb"),
  12446. name: "Front",
  12447. image: {
  12448. source: "./media/characters/bmc/front.svg",
  12449. extra: 1626/1472,
  12450. bottom: 79/1705
  12451. }
  12452. },
  12453. back: {
  12454. height: math.unit(6 + 4/12, "feet"),
  12455. weight: math.unit(190, "lb"),
  12456. name: "Back",
  12457. image: {
  12458. source: "./media/characters/bmc/back.svg",
  12459. extra: 1640/1479,
  12460. bottom: 45/1685
  12461. }
  12462. },
  12463. frontArmor: {
  12464. height: math.unit(6 + 4/12, "feet"),
  12465. weight: math.unit(190, "lb"),
  12466. name: "Front-armor",
  12467. image: {
  12468. source: "./media/characters/bmc/front-armor.svg",
  12469. extra: 1538/1468,
  12470. bottom: 79/1617
  12471. }
  12472. },
  12473. },
  12474. [
  12475. {
  12476. name: "Human-sized",
  12477. height: math.unit(6 + 4 / 12, "feet")
  12478. },
  12479. {
  12480. name: "Interactive Size",
  12481. height: math.unit(25, "feet")
  12482. },
  12483. {
  12484. name: "Small",
  12485. height: math.unit(250, "feet")
  12486. },
  12487. {
  12488. name: "Normal",
  12489. height: math.unit(1250, "feet"),
  12490. default: true
  12491. },
  12492. {
  12493. name: "Good Day",
  12494. height: math.unit(88, "miles")
  12495. },
  12496. {
  12497. name: "Largest Measured Size",
  12498. height: math.unit(105.960, "galaxies")
  12499. },
  12500. ]
  12501. ))
  12502. characterMakers.push(() => makeCharacter(
  12503. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12504. {
  12505. front: {
  12506. height: math.unit(20, "feet"),
  12507. weight: math.unit(2016, "kg"),
  12508. name: "Front",
  12509. image: {
  12510. source: "./media/characters/sven-the-kaiju/front.svg",
  12511. extra: 1277/1250,
  12512. bottom: 35/1312
  12513. }
  12514. },
  12515. mouth: {
  12516. height: math.unit(1.85, "feet"),
  12517. name: "Mouth",
  12518. image: {
  12519. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12520. }
  12521. },
  12522. },
  12523. [
  12524. {
  12525. name: "Fairy",
  12526. height: math.unit(6, "inches")
  12527. },
  12528. {
  12529. name: "Normal",
  12530. height: math.unit(20, "feet"),
  12531. default: true
  12532. },
  12533. {
  12534. name: "Rampage",
  12535. height: math.unit(200, "feet")
  12536. },
  12537. {
  12538. name: "Archfey Forest Guardian",
  12539. height: math.unit(1, "mile")
  12540. },
  12541. ]
  12542. ))
  12543. characterMakers.push(() => makeCharacter(
  12544. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12545. {
  12546. front: {
  12547. height: math.unit(4, "meters"),
  12548. weight: math.unit(2, "tons"),
  12549. name: "Front",
  12550. image: {
  12551. source: "./media/characters/marik/front.svg",
  12552. extra: 1057 / 1003,
  12553. bottom: 0.08
  12554. }
  12555. },
  12556. },
  12557. [
  12558. {
  12559. name: "Normal",
  12560. height: math.unit(4, "meters"),
  12561. default: true
  12562. },
  12563. {
  12564. name: "Macro",
  12565. height: math.unit(20, "meters")
  12566. },
  12567. {
  12568. name: "Megamacro",
  12569. height: math.unit(50, "km")
  12570. },
  12571. {
  12572. name: "Gigamacro",
  12573. height: math.unit(100, "km")
  12574. },
  12575. {
  12576. name: "Alpha Macro",
  12577. height: math.unit(7.88e7, "yottameters")
  12578. },
  12579. ]
  12580. ))
  12581. characterMakers.push(() => makeCharacter(
  12582. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12583. {
  12584. front: {
  12585. height: math.unit(6, "feet"),
  12586. weight: math.unit(110, "lb"),
  12587. name: "Front",
  12588. image: {
  12589. source: "./media/characters/mel/front.svg",
  12590. extra: 736 / 617,
  12591. bottom: 0.017
  12592. }
  12593. },
  12594. },
  12595. [
  12596. {
  12597. name: "Pico",
  12598. height: math.unit(3, "pm")
  12599. },
  12600. {
  12601. name: "Nano",
  12602. height: math.unit(3, "nm")
  12603. },
  12604. {
  12605. name: "Micro",
  12606. height: math.unit(0.3, "mm"),
  12607. default: true
  12608. },
  12609. {
  12610. name: "Micro+",
  12611. height: math.unit(3, "mm")
  12612. },
  12613. {
  12614. name: "Normal",
  12615. height: math.unit(5 + 10.5 / 12, "feet")
  12616. },
  12617. ]
  12618. ))
  12619. characterMakers.push(() => makeCharacter(
  12620. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12621. {
  12622. kaiju: {
  12623. height: math.unit(1.75, "meters"),
  12624. weight: math.unit(55, "kg"),
  12625. name: "Kaiju",
  12626. image: {
  12627. source: "./media/characters/lykonous/kaiju.svg",
  12628. extra: 1055 / 946,
  12629. bottom: 0.135
  12630. }
  12631. },
  12632. },
  12633. [
  12634. {
  12635. name: "Normal",
  12636. height: math.unit(2.5, "meters"),
  12637. default: true
  12638. },
  12639. {
  12640. name: "Kaiju Dragon",
  12641. height: math.unit(60, "meters")
  12642. },
  12643. {
  12644. name: "Mega Kaiju",
  12645. height: math.unit(120, "km")
  12646. },
  12647. {
  12648. name: "Giga Kaiju",
  12649. height: math.unit(200, "megameters")
  12650. },
  12651. {
  12652. name: "Terra Kaiju",
  12653. height: math.unit(400, "gigameters")
  12654. },
  12655. {
  12656. name: "Kaiju Dragon God",
  12657. height: math.unit(13000, "exaparsecs")
  12658. },
  12659. ]
  12660. ))
  12661. characterMakers.push(() => makeCharacter(
  12662. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12663. {
  12664. front: {
  12665. height: math.unit(6, "feet"),
  12666. weight: math.unit(150, "lb"),
  12667. name: "Front",
  12668. image: {
  12669. source: "./media/characters/blü/front.svg",
  12670. extra: 1883 / 1564,
  12671. bottom: 0.031
  12672. }
  12673. },
  12674. },
  12675. [
  12676. {
  12677. name: "Normal",
  12678. height: math.unit(13, "feet"),
  12679. default: true
  12680. },
  12681. {
  12682. name: "Big Boi",
  12683. height: math.unit(150, "meters")
  12684. },
  12685. {
  12686. name: "Mini Stomper",
  12687. height: math.unit(300, "meters")
  12688. },
  12689. {
  12690. name: "Macro",
  12691. height: math.unit(1000, "meters")
  12692. },
  12693. {
  12694. name: "Megamacro",
  12695. height: math.unit(11000, "meters")
  12696. },
  12697. {
  12698. name: "Gigamacro",
  12699. height: math.unit(11000, "km")
  12700. },
  12701. {
  12702. name: "Teramacro",
  12703. height: math.unit(420000, "km")
  12704. },
  12705. {
  12706. name: "Examacro",
  12707. height: math.unit(120, "parsecs")
  12708. },
  12709. {
  12710. name: "God Tho",
  12711. height: math.unit(98000000000, "parsecs")
  12712. },
  12713. ]
  12714. ))
  12715. characterMakers.push(() => makeCharacter(
  12716. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12717. {
  12718. taurFront: {
  12719. height: math.unit(6, "feet"),
  12720. weight: math.unit(200, "lb"),
  12721. name: "Taur (Front)",
  12722. image: {
  12723. source: "./media/characters/scales/taur-front.svg",
  12724. extra: 1,
  12725. bottom: 0.05
  12726. }
  12727. },
  12728. taurBack: {
  12729. height: math.unit(6, "feet"),
  12730. weight: math.unit(200, "lb"),
  12731. name: "Taur (Back)",
  12732. image: {
  12733. source: "./media/characters/scales/taur-back.svg",
  12734. extra: 1,
  12735. bottom: 0.08
  12736. }
  12737. },
  12738. anthro: {
  12739. height: math.unit(6 * 7 / 12, "feet"),
  12740. weight: math.unit(100, "lb"),
  12741. name: "Anthro",
  12742. image: {
  12743. source: "./media/characters/scales/anthro.svg",
  12744. extra: 1,
  12745. bottom: 0.06
  12746. }
  12747. },
  12748. },
  12749. [
  12750. {
  12751. name: "Normal",
  12752. height: math.unit(12, "feet"),
  12753. default: true
  12754. },
  12755. ]
  12756. ))
  12757. characterMakers.push(() => makeCharacter(
  12758. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12759. {
  12760. front: {
  12761. height: math.unit(6, "feet"),
  12762. weight: math.unit(150, "lb"),
  12763. name: "Front",
  12764. image: {
  12765. source: "./media/characters/koragos/front.svg",
  12766. extra: 841 / 794,
  12767. bottom: 0.035
  12768. }
  12769. },
  12770. back: {
  12771. height: math.unit(6, "feet"),
  12772. weight: math.unit(150, "lb"),
  12773. name: "Back",
  12774. image: {
  12775. source: "./media/characters/koragos/back.svg",
  12776. extra: 841 / 810,
  12777. bottom: 0.022
  12778. }
  12779. },
  12780. },
  12781. [
  12782. {
  12783. name: "Normal",
  12784. height: math.unit(6 + 11 / 12, "feet"),
  12785. default: true
  12786. },
  12787. {
  12788. name: "Macro",
  12789. height: math.unit(490, "feet")
  12790. },
  12791. {
  12792. name: "Megamacro",
  12793. height: math.unit(10, "miles")
  12794. },
  12795. {
  12796. name: "Gigamacro",
  12797. height: math.unit(50, "miles")
  12798. },
  12799. ]
  12800. ))
  12801. characterMakers.push(() => makeCharacter(
  12802. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12803. {
  12804. front: {
  12805. height: math.unit(6, "feet"),
  12806. weight: math.unit(250, "lb"),
  12807. name: "Front",
  12808. image: {
  12809. source: "./media/characters/xylrem/front.svg",
  12810. extra: 3323 / 3050,
  12811. bottom: 0.065
  12812. }
  12813. },
  12814. },
  12815. [
  12816. {
  12817. name: "Micro",
  12818. height: math.unit(4, "feet")
  12819. },
  12820. {
  12821. name: "Normal",
  12822. height: math.unit(16, "feet"),
  12823. default: true
  12824. },
  12825. {
  12826. name: "Macro",
  12827. height: math.unit(2720, "feet")
  12828. },
  12829. {
  12830. name: "Megamacro",
  12831. height: math.unit(25000, "miles")
  12832. },
  12833. ]
  12834. ))
  12835. characterMakers.push(() => makeCharacter(
  12836. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12837. {
  12838. front: {
  12839. height: math.unit(8, "feet"),
  12840. weight: math.unit(250, "kg"),
  12841. name: "Front",
  12842. image: {
  12843. source: "./media/characters/ikideru/front.svg",
  12844. extra: 930 / 870,
  12845. bottom: 0.087
  12846. }
  12847. },
  12848. back: {
  12849. height: math.unit(8, "feet"),
  12850. weight: math.unit(250, "kg"),
  12851. name: "Back",
  12852. image: {
  12853. source: "./media/characters/ikideru/back.svg",
  12854. extra: 919 / 852,
  12855. bottom: 0.055
  12856. }
  12857. },
  12858. },
  12859. [
  12860. {
  12861. name: "Rare",
  12862. height: math.unit(8, "feet"),
  12863. default: true
  12864. },
  12865. {
  12866. name: "Playful Loom",
  12867. height: math.unit(80, "feet")
  12868. },
  12869. {
  12870. name: "City Leaner",
  12871. height: math.unit(230, "feet")
  12872. },
  12873. {
  12874. name: "Megamacro",
  12875. height: math.unit(2500, "feet")
  12876. },
  12877. {
  12878. name: "Gigamacro",
  12879. height: math.unit(26400, "feet")
  12880. },
  12881. {
  12882. name: "Tectonic Shifter",
  12883. height: math.unit(1.7, "megameters")
  12884. },
  12885. {
  12886. name: "Planet Carer",
  12887. height: math.unit(21, "megameters")
  12888. },
  12889. {
  12890. name: "God",
  12891. height: math.unit(11157.22, "parsecs")
  12892. },
  12893. ]
  12894. ))
  12895. characterMakers.push(() => makeCharacter(
  12896. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12897. {
  12898. front: {
  12899. height: math.unit(6, "feet"),
  12900. weight: math.unit(120, "lb"),
  12901. name: "Front",
  12902. image: {
  12903. source: "./media/characters/neo/front.svg"
  12904. }
  12905. },
  12906. },
  12907. [
  12908. {
  12909. name: "Micro",
  12910. height: math.unit(2, "inches"),
  12911. default: true
  12912. },
  12913. {
  12914. name: "Human Size",
  12915. height: math.unit(5 + 8 / 12, "feet")
  12916. },
  12917. ]
  12918. ))
  12919. characterMakers.push(() => makeCharacter(
  12920. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12921. {
  12922. front: {
  12923. height: math.unit(13 + 10 / 12, "feet"),
  12924. weight: math.unit(5320, "lb"),
  12925. name: "Front",
  12926. image: {
  12927. source: "./media/characters/chauncey-chantz/front.svg",
  12928. extra: 1587 / 1435,
  12929. bottom: 0.02
  12930. }
  12931. },
  12932. },
  12933. [
  12934. {
  12935. name: "Normal",
  12936. height: math.unit(13 + 10 / 12, "feet"),
  12937. default: true
  12938. },
  12939. {
  12940. name: "Macro",
  12941. height: math.unit(45, "feet")
  12942. },
  12943. {
  12944. name: "Megamacro",
  12945. height: math.unit(250, "miles")
  12946. },
  12947. {
  12948. name: "Planetary",
  12949. height: math.unit(10000, "miles")
  12950. },
  12951. {
  12952. name: "Galactic",
  12953. height: math.unit(40000, "parsecs")
  12954. },
  12955. {
  12956. name: "Universal",
  12957. height: math.unit(1, "yottameter")
  12958. },
  12959. ]
  12960. ))
  12961. characterMakers.push(() => makeCharacter(
  12962. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12963. {
  12964. front: {
  12965. height: math.unit(6, "feet"),
  12966. weight: math.unit(150, "lb"),
  12967. name: "Front",
  12968. image: {
  12969. source: "./media/characters/epifox/front.svg",
  12970. extra: 1,
  12971. bottom: 0.075
  12972. }
  12973. },
  12974. },
  12975. [
  12976. {
  12977. name: "Micro",
  12978. height: math.unit(6, "inches")
  12979. },
  12980. {
  12981. name: "Normal",
  12982. height: math.unit(12, "feet"),
  12983. default: true
  12984. },
  12985. {
  12986. name: "Macro",
  12987. height: math.unit(3810, "feet")
  12988. },
  12989. {
  12990. name: "Megamacro",
  12991. height: math.unit(500, "miles")
  12992. },
  12993. ]
  12994. ))
  12995. characterMakers.push(() => makeCharacter(
  12996. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12997. {
  12998. front: {
  12999. height: math.unit(1.8796, "m"),
  13000. weight: math.unit(230, "lb"),
  13001. name: "Front",
  13002. image: {
  13003. source: "./media/characters/colin-t/front.svg",
  13004. extra: 1272 / 1193,
  13005. bottom: 0.07
  13006. }
  13007. },
  13008. },
  13009. [
  13010. {
  13011. name: "Micro",
  13012. height: math.unit(0.571, "meters")
  13013. },
  13014. {
  13015. name: "Normal",
  13016. height: math.unit(1.8796, "meters"),
  13017. default: true
  13018. },
  13019. {
  13020. name: "Tall",
  13021. height: math.unit(4, "meters")
  13022. },
  13023. {
  13024. name: "Macro",
  13025. height: math.unit(67.241, "meters")
  13026. },
  13027. {
  13028. name: "Megamacro",
  13029. height: math.unit(371.856, "meters")
  13030. },
  13031. {
  13032. name: "Planetary",
  13033. height: math.unit(12631.5689, "km")
  13034. },
  13035. ]
  13036. ))
  13037. characterMakers.push(() => makeCharacter(
  13038. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13039. {
  13040. front: {
  13041. height: math.unit(1.85, "meters"),
  13042. weight: math.unit(80, "kg"),
  13043. name: "Front",
  13044. image: {
  13045. source: "./media/characters/matvei/front.svg",
  13046. extra: 614 / 594,
  13047. bottom: 0.01
  13048. }
  13049. },
  13050. },
  13051. [
  13052. {
  13053. name: "Normal",
  13054. height: math.unit(1.85, "meters"),
  13055. default: true
  13056. },
  13057. ]
  13058. ))
  13059. characterMakers.push(() => makeCharacter(
  13060. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13061. {
  13062. front: {
  13063. height: math.unit(5 + 9 / 12, "feet"),
  13064. weight: math.unit(70, "lb"),
  13065. name: "Front",
  13066. image: {
  13067. source: "./media/characters/quincy/front.svg",
  13068. extra: 3041 / 2751
  13069. }
  13070. },
  13071. back: {
  13072. height: math.unit(5 + 9 / 12, "feet"),
  13073. weight: math.unit(70, "lb"),
  13074. name: "Back",
  13075. image: {
  13076. source: "./media/characters/quincy/back.svg",
  13077. extra: 3041 / 2751
  13078. }
  13079. },
  13080. flying: {
  13081. height: math.unit(5 + 4 / 12, "feet"),
  13082. weight: math.unit(70, "lb"),
  13083. name: "Flying",
  13084. image: {
  13085. source: "./media/characters/quincy/flying.svg",
  13086. extra: 1044 / 930
  13087. }
  13088. },
  13089. },
  13090. [
  13091. {
  13092. name: "Micro",
  13093. height: math.unit(3, "cm")
  13094. },
  13095. {
  13096. name: "Normal",
  13097. height: math.unit(5 + 9 / 12, "feet")
  13098. },
  13099. {
  13100. name: "Macro",
  13101. height: math.unit(200, "meters"),
  13102. default: true
  13103. },
  13104. {
  13105. name: "Megamacro",
  13106. height: math.unit(1000, "meters")
  13107. },
  13108. ]
  13109. ))
  13110. characterMakers.push(() => makeCharacter(
  13111. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13112. {
  13113. front: {
  13114. height: math.unit(3 + 11/12, "feet"),
  13115. weight: math.unit(50, "lb"),
  13116. name: "Front",
  13117. image: {
  13118. source: "./media/characters/vanrel/front.svg",
  13119. extra: 1104/949,
  13120. bottom: 52/1156
  13121. }
  13122. },
  13123. back: {
  13124. height: math.unit(3 + 11/12, "feet"),
  13125. weight: math.unit(50, "lb"),
  13126. name: "Back",
  13127. image: {
  13128. source: "./media/characters/vanrel/back.svg",
  13129. extra: 1119/976,
  13130. bottom: 37/1156
  13131. }
  13132. },
  13133. tome: {
  13134. height: math.unit(1.35, "feet"),
  13135. weight: math.unit(10, "lb"),
  13136. name: "Vanrel's Tome",
  13137. rename: true,
  13138. image: {
  13139. source: "./media/characters/vanrel/tome.svg"
  13140. }
  13141. },
  13142. beans: {
  13143. height: math.unit(0.89, "feet"),
  13144. name: "Beans",
  13145. image: {
  13146. source: "./media/characters/vanrel/beans.svg"
  13147. }
  13148. },
  13149. },
  13150. [
  13151. {
  13152. name: "Normal",
  13153. height: math.unit(3 + 11/12, "feet"),
  13154. default: true
  13155. },
  13156. ]
  13157. ))
  13158. characterMakers.push(() => makeCharacter(
  13159. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13160. {
  13161. front: {
  13162. height: math.unit(7 + 5 / 12, "feet"),
  13163. name: "Front",
  13164. image: {
  13165. source: "./media/characters/kuiper-vanrel/front.svg",
  13166. extra: 1219/1169,
  13167. bottom: 69/1288
  13168. }
  13169. },
  13170. back: {
  13171. height: math.unit(7 + 5 / 12, "feet"),
  13172. name: "Back",
  13173. image: {
  13174. source: "./media/characters/kuiper-vanrel/back.svg",
  13175. extra: 1236/1193,
  13176. bottom: 27/1263
  13177. }
  13178. },
  13179. foot: {
  13180. height: math.unit(0.55, "meters"),
  13181. name: "Foot",
  13182. image: {
  13183. source: "./media/characters/kuiper-vanrel/foot.svg",
  13184. }
  13185. },
  13186. battle: {
  13187. height: math.unit(6.824, "feet"),
  13188. name: "Battle",
  13189. image: {
  13190. source: "./media/characters/kuiper-vanrel/battle.svg",
  13191. extra: 1466 / 1327,
  13192. bottom: 29 / 1492.5
  13193. }
  13194. },
  13195. meerkui: {
  13196. height: math.unit(18, "inches"),
  13197. name: "Meerkui",
  13198. image: {
  13199. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13200. extra: 1354/1289,
  13201. bottom: 69/1423
  13202. }
  13203. },
  13204. },
  13205. [
  13206. {
  13207. name: "Normal",
  13208. height: math.unit(7 + 5 / 12, "feet"),
  13209. default: true
  13210. },
  13211. ]
  13212. ))
  13213. characterMakers.push(() => makeCharacter(
  13214. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13215. {
  13216. front: {
  13217. height: math.unit(8 + 5 / 12, "feet"),
  13218. name: "Front",
  13219. image: {
  13220. source: "./media/characters/keset-vanrel/front.svg",
  13221. extra: 1231/1148,
  13222. bottom: 82/1313
  13223. }
  13224. },
  13225. back: {
  13226. height: math.unit(8 + 5 / 12, "feet"),
  13227. name: "Back",
  13228. image: {
  13229. source: "./media/characters/keset-vanrel/back.svg",
  13230. extra: 1240/1174,
  13231. bottom: 33/1273
  13232. }
  13233. },
  13234. hand: {
  13235. height: math.unit(0.6, "meters"),
  13236. name: "Hand",
  13237. image: {
  13238. source: "./media/characters/keset-vanrel/hand.svg"
  13239. }
  13240. },
  13241. foot: {
  13242. height: math.unit(0.94978, "meters"),
  13243. name: "Foot",
  13244. image: {
  13245. source: "./media/characters/keset-vanrel/foot.svg"
  13246. }
  13247. },
  13248. battle: {
  13249. height: math.unit(7.408, "feet"),
  13250. name: "Battle",
  13251. image: {
  13252. source: "./media/characters/keset-vanrel/battle.svg",
  13253. extra: 1890 / 1386,
  13254. bottom: 73.28 / 1970
  13255. }
  13256. },
  13257. },
  13258. [
  13259. {
  13260. name: "Normal",
  13261. height: math.unit(8 + 5 / 12, "feet"),
  13262. default: true
  13263. },
  13264. ]
  13265. ))
  13266. characterMakers.push(() => makeCharacter(
  13267. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13268. {
  13269. front: {
  13270. height: math.unit(6, "feet"),
  13271. weight: math.unit(150, "lb"),
  13272. name: "Front",
  13273. image: {
  13274. source: "./media/characters/neos/front.svg",
  13275. extra: 1696 / 992,
  13276. bottom: 0.14
  13277. }
  13278. },
  13279. },
  13280. [
  13281. {
  13282. name: "Normal",
  13283. height: math.unit(54, "cm"),
  13284. default: true
  13285. },
  13286. {
  13287. name: "Macro",
  13288. height: math.unit(100, "m")
  13289. },
  13290. {
  13291. name: "Megamacro",
  13292. height: math.unit(10, "km")
  13293. },
  13294. {
  13295. name: "Megamacro+",
  13296. height: math.unit(100, "km")
  13297. },
  13298. {
  13299. name: "Gigamacro",
  13300. height: math.unit(100, "Mm")
  13301. },
  13302. {
  13303. name: "Teramacro",
  13304. height: math.unit(100, "Gm")
  13305. },
  13306. {
  13307. name: "Examacro",
  13308. height: math.unit(100, "Em")
  13309. },
  13310. {
  13311. name: "Godly",
  13312. height: math.unit(10000, "Ym")
  13313. },
  13314. {
  13315. name: "Beyond Godly",
  13316. height: math.unit(25, "multiverses")
  13317. },
  13318. ]
  13319. ))
  13320. characterMakers.push(() => makeCharacter(
  13321. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13322. {
  13323. feminine: {
  13324. height: math.unit(5, "feet"),
  13325. weight: math.unit(100, "lb"),
  13326. name: "Feminine",
  13327. image: {
  13328. source: "./media/characters/sammy-mouse/feminine.svg",
  13329. extra: 2526 / 2425,
  13330. bottom: 0.123
  13331. }
  13332. },
  13333. masculine: {
  13334. height: math.unit(5, "feet"),
  13335. weight: math.unit(100, "lb"),
  13336. name: "Masculine",
  13337. image: {
  13338. source: "./media/characters/sammy-mouse/masculine.svg",
  13339. extra: 2526 / 2425,
  13340. bottom: 0.123
  13341. }
  13342. },
  13343. },
  13344. [
  13345. {
  13346. name: "Micro",
  13347. height: math.unit(5, "inches")
  13348. },
  13349. {
  13350. name: "Normal",
  13351. height: math.unit(5, "feet"),
  13352. default: true
  13353. },
  13354. {
  13355. name: "Macro",
  13356. height: math.unit(60, "feet")
  13357. },
  13358. ]
  13359. ))
  13360. characterMakers.push(() => makeCharacter(
  13361. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13362. {
  13363. front: {
  13364. height: math.unit(4, "feet"),
  13365. weight: math.unit(50, "lb"),
  13366. name: "Front",
  13367. image: {
  13368. source: "./media/characters/kole/front.svg",
  13369. extra: 1423 / 1303,
  13370. bottom: 0.025
  13371. }
  13372. },
  13373. back: {
  13374. height: math.unit(4, "feet"),
  13375. weight: math.unit(50, "lb"),
  13376. name: "Back",
  13377. image: {
  13378. source: "./media/characters/kole/back.svg",
  13379. extra: 1426 / 1280,
  13380. bottom: 0.02
  13381. }
  13382. },
  13383. },
  13384. [
  13385. {
  13386. name: "Normal",
  13387. height: math.unit(4, "feet"),
  13388. default: true
  13389. },
  13390. ]
  13391. ))
  13392. characterMakers.push(() => makeCharacter(
  13393. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13394. {
  13395. front: {
  13396. height: math.unit(2.5, "feet"),
  13397. weight: math.unit(32, "lb"),
  13398. name: "Front",
  13399. image: {
  13400. source: "./media/characters/rufran/front.svg",
  13401. extra: 1313/885,
  13402. bottom: 94/1407
  13403. }
  13404. },
  13405. side: {
  13406. height: math.unit(2.5, "feet"),
  13407. weight: math.unit(32, "lb"),
  13408. name: "Side",
  13409. image: {
  13410. source: "./media/characters/rufran/side.svg",
  13411. extra: 1109/852,
  13412. bottom: 118/1227
  13413. }
  13414. },
  13415. back: {
  13416. height: math.unit(2.5, "feet"),
  13417. weight: math.unit(32, "lb"),
  13418. name: "Back",
  13419. image: {
  13420. source: "./media/characters/rufran/back.svg",
  13421. extra: 1280/878,
  13422. bottom: 131/1411
  13423. }
  13424. },
  13425. mouth: {
  13426. height: math.unit(1.13, "feet"),
  13427. name: "Mouth",
  13428. image: {
  13429. source: "./media/characters/rufran/mouth.svg"
  13430. }
  13431. },
  13432. foot: {
  13433. height: math.unit(1.33, "feet"),
  13434. name: "Foot",
  13435. image: {
  13436. source: "./media/characters/rufran/foot.svg"
  13437. }
  13438. },
  13439. koboldFront: {
  13440. height: math.unit(2 + 6 / 12, "feet"),
  13441. weight: math.unit(20, "lb"),
  13442. name: "Front (Kobold)",
  13443. image: {
  13444. source: "./media/characters/rufran/kobold-front.svg",
  13445. extra: 2041 / 1839,
  13446. bottom: 0.055
  13447. }
  13448. },
  13449. koboldBack: {
  13450. height: math.unit(2 + 6 / 12, "feet"),
  13451. weight: math.unit(20, "lb"),
  13452. name: "Back (Kobold)",
  13453. image: {
  13454. source: "./media/characters/rufran/kobold-back.svg",
  13455. extra: 2054 / 1839,
  13456. bottom: 0.01
  13457. }
  13458. },
  13459. koboldHand: {
  13460. height: math.unit(0.2166, "meters"),
  13461. name: "Hand (Kobold)",
  13462. image: {
  13463. source: "./media/characters/rufran/kobold-hand.svg"
  13464. }
  13465. },
  13466. koboldFoot: {
  13467. height: math.unit(0.185, "meters"),
  13468. name: "Foot (Kobold)",
  13469. image: {
  13470. source: "./media/characters/rufran/kobold-foot.svg"
  13471. }
  13472. },
  13473. },
  13474. [
  13475. {
  13476. name: "Micro",
  13477. height: math.unit(1, "inch")
  13478. },
  13479. {
  13480. name: "Normal",
  13481. height: math.unit(2 + 6 / 12, "feet"),
  13482. default: true
  13483. },
  13484. {
  13485. name: "Big",
  13486. height: math.unit(60, "feet")
  13487. },
  13488. {
  13489. name: "Macro",
  13490. height: math.unit(325, "feet")
  13491. },
  13492. ]
  13493. ))
  13494. characterMakers.push(() => makeCharacter(
  13495. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13496. {
  13497. front: {
  13498. height: math.unit(0.3, "meters"),
  13499. weight: math.unit(3.5, "kg"),
  13500. name: "Front",
  13501. image: {
  13502. source: "./media/characters/chip/front.svg",
  13503. extra: 748 / 674
  13504. }
  13505. },
  13506. },
  13507. [
  13508. {
  13509. name: "Micro",
  13510. height: math.unit(1, "inch"),
  13511. default: true
  13512. },
  13513. ]
  13514. ))
  13515. characterMakers.push(() => makeCharacter(
  13516. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13517. {
  13518. side: {
  13519. height: math.unit(2.3, "meters"),
  13520. weight: math.unit(3500, "lb"),
  13521. name: "Side",
  13522. image: {
  13523. source: "./media/characters/torvid/side.svg",
  13524. extra: 1972 / 722,
  13525. bottom: 0.035
  13526. }
  13527. },
  13528. },
  13529. [
  13530. {
  13531. name: "Normal",
  13532. height: math.unit(2.3, "meters"),
  13533. default: true
  13534. },
  13535. ]
  13536. ))
  13537. characterMakers.push(() => makeCharacter(
  13538. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13539. {
  13540. front: {
  13541. height: math.unit(2, "meters"),
  13542. weight: math.unit(150.5, "kg"),
  13543. name: "Front",
  13544. image: {
  13545. source: "./media/characters/susan/front.svg",
  13546. extra: 693 / 635,
  13547. bottom: 0.05
  13548. }
  13549. },
  13550. },
  13551. [
  13552. {
  13553. name: "Megamacro",
  13554. height: math.unit(505, "miles"),
  13555. default: true
  13556. },
  13557. ]
  13558. ))
  13559. characterMakers.push(() => makeCharacter(
  13560. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13561. {
  13562. front: {
  13563. height: math.unit(6, "feet"),
  13564. weight: math.unit(150, "lb"),
  13565. name: "Front",
  13566. image: {
  13567. source: "./media/characters/raindrops/front.svg",
  13568. extra: 2655 / 2461,
  13569. bottom: 49 / 2705
  13570. }
  13571. },
  13572. back: {
  13573. height: math.unit(6, "feet"),
  13574. weight: math.unit(150, "lb"),
  13575. name: "Back",
  13576. image: {
  13577. source: "./media/characters/raindrops/back.svg",
  13578. extra: 2574 / 2400,
  13579. bottom: 65 / 2634
  13580. }
  13581. },
  13582. },
  13583. [
  13584. {
  13585. name: "Micro",
  13586. height: math.unit(6, "inches")
  13587. },
  13588. {
  13589. name: "Normal",
  13590. height: math.unit(6 + 2 / 12, "feet")
  13591. },
  13592. {
  13593. name: "Macro",
  13594. height: math.unit(131, "feet"),
  13595. default: true
  13596. },
  13597. {
  13598. name: "Megamacro",
  13599. height: math.unit(15, "miles")
  13600. },
  13601. {
  13602. name: "Gigamacro",
  13603. height: math.unit(4000, "miles")
  13604. },
  13605. {
  13606. name: "Teramacro",
  13607. height: math.unit(315000, "miles")
  13608. },
  13609. ]
  13610. ))
  13611. characterMakers.push(() => makeCharacter(
  13612. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13613. {
  13614. front: {
  13615. height: math.unit(2.794, "meters"),
  13616. weight: math.unit(325, "kg"),
  13617. name: "Front",
  13618. image: {
  13619. source: "./media/characters/tezwa/front.svg",
  13620. extra: 2083 / 1906,
  13621. bottom: 0.031
  13622. }
  13623. },
  13624. foot: {
  13625. height: math.unit(0.687, "meters"),
  13626. name: "Foot",
  13627. image: {
  13628. source: "./media/characters/tezwa/foot.svg"
  13629. }
  13630. },
  13631. },
  13632. [
  13633. {
  13634. name: "Normal",
  13635. height: math.unit(9 + 2 / 12, "feet"),
  13636. default: true
  13637. },
  13638. ]
  13639. ))
  13640. characterMakers.push(() => makeCharacter(
  13641. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13642. {
  13643. front: {
  13644. height: math.unit(58, "feet"),
  13645. weight: math.unit(89000, "lb"),
  13646. name: "Front",
  13647. image: {
  13648. source: "./media/characters/typhus/front.svg",
  13649. extra: 816 / 800,
  13650. bottom: 0.065
  13651. }
  13652. },
  13653. },
  13654. [
  13655. {
  13656. name: "Macro",
  13657. height: math.unit(58, "feet"),
  13658. default: true
  13659. },
  13660. ]
  13661. ))
  13662. characterMakers.push(() => makeCharacter(
  13663. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13664. {
  13665. front: {
  13666. height: math.unit(12, "feet"),
  13667. weight: math.unit(6, "tonnes"),
  13668. name: "Front",
  13669. image: {
  13670. source: "./media/characters/lyra-von-wulf/front.svg",
  13671. extra: 1,
  13672. bottom: 0.10
  13673. }
  13674. },
  13675. frontMecha: {
  13676. height: math.unit(12, "feet"),
  13677. weight: math.unit(12, "tonnes"),
  13678. name: "Front (Mecha)",
  13679. image: {
  13680. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13681. extra: 1,
  13682. bottom: 0.042
  13683. }
  13684. },
  13685. maw: {
  13686. height: math.unit(2.2, "feet"),
  13687. name: "Maw",
  13688. image: {
  13689. source: "./media/characters/lyra-von-wulf/maw.svg"
  13690. }
  13691. },
  13692. },
  13693. [
  13694. {
  13695. name: "Normal",
  13696. height: math.unit(12, "feet"),
  13697. default: true
  13698. },
  13699. {
  13700. name: "Classic",
  13701. height: math.unit(50, "feet")
  13702. },
  13703. {
  13704. name: "Macro",
  13705. height: math.unit(500, "feet")
  13706. },
  13707. {
  13708. name: "Megamacro",
  13709. height: math.unit(1, "mile")
  13710. },
  13711. {
  13712. name: "Gigamacro",
  13713. height: math.unit(400, "miles")
  13714. },
  13715. {
  13716. name: "Teramacro",
  13717. height: math.unit(22000, "miles")
  13718. },
  13719. {
  13720. name: "Solarmacro",
  13721. height: math.unit(8600000, "miles")
  13722. },
  13723. {
  13724. name: "Galactic",
  13725. height: math.unit(1057000, "lightyears")
  13726. },
  13727. ]
  13728. ))
  13729. characterMakers.push(() => makeCharacter(
  13730. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13731. {
  13732. front: {
  13733. height: math.unit(6 + 10 / 12, "feet"),
  13734. weight: math.unit(150, "lb"),
  13735. name: "Front",
  13736. image: {
  13737. source: "./media/characters/dixon/front.svg",
  13738. extra: 3361 / 3209,
  13739. bottom: 0.01
  13740. }
  13741. },
  13742. },
  13743. [
  13744. {
  13745. name: "Normal",
  13746. height: math.unit(6 + 10 / 12, "feet"),
  13747. default: true
  13748. },
  13749. {
  13750. name: "Big",
  13751. height: math.unit(12, "meters")
  13752. },
  13753. {
  13754. name: "Macro",
  13755. height: math.unit(500, "meters")
  13756. },
  13757. {
  13758. name: "Megamacro",
  13759. height: math.unit(2, "km")
  13760. },
  13761. ]
  13762. ))
  13763. characterMakers.push(() => makeCharacter(
  13764. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13765. {
  13766. front: {
  13767. height: math.unit(185, "cm"),
  13768. weight: math.unit(68, "kg"),
  13769. name: "Front",
  13770. image: {
  13771. source: "./media/characters/kauko/front.svg",
  13772. extra: 1455 / 1421,
  13773. bottom: 0.03
  13774. }
  13775. },
  13776. back: {
  13777. height: math.unit(185, "cm"),
  13778. weight: math.unit(68, "kg"),
  13779. name: "Back",
  13780. image: {
  13781. source: "./media/characters/kauko/back.svg",
  13782. extra: 1455 / 1421,
  13783. bottom: 0.004
  13784. }
  13785. },
  13786. },
  13787. [
  13788. {
  13789. name: "Normal",
  13790. height: math.unit(185, "cm"),
  13791. default: true
  13792. },
  13793. ]
  13794. ))
  13795. characterMakers.push(() => makeCharacter(
  13796. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13797. {
  13798. front: {
  13799. height: math.unit(6, "feet"),
  13800. weight: math.unit(150, "kg"),
  13801. name: "Front",
  13802. image: {
  13803. source: "./media/characters/varg/front.svg",
  13804. extra: 1108 / 1018,
  13805. bottom: 0.0375
  13806. }
  13807. },
  13808. },
  13809. [
  13810. {
  13811. name: "Normal",
  13812. height: math.unit(5, "meters")
  13813. },
  13814. {
  13815. name: "Macro",
  13816. height: math.unit(200, "meters")
  13817. },
  13818. {
  13819. name: "Megamacro",
  13820. height: math.unit(20, "kilometers")
  13821. },
  13822. {
  13823. name: "True Size",
  13824. height: math.unit(211, "km"),
  13825. default: true
  13826. },
  13827. {
  13828. name: "Gigamacro",
  13829. height: math.unit(1000, "km")
  13830. },
  13831. {
  13832. name: "Gigamacro+",
  13833. height: math.unit(8000, "km")
  13834. },
  13835. {
  13836. name: "Teramacro",
  13837. height: math.unit(1000000, "km")
  13838. },
  13839. ]
  13840. ))
  13841. characterMakers.push(() => makeCharacter(
  13842. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13843. {
  13844. front: {
  13845. height: math.unit(7 + 7 / 12, "feet"),
  13846. weight: math.unit(267, "lb"),
  13847. name: "Front",
  13848. image: {
  13849. source: "./media/characters/dayza/front.svg",
  13850. extra: 1262 / 1200,
  13851. bottom: 0.035
  13852. }
  13853. },
  13854. side: {
  13855. height: math.unit(7 + 7 / 12, "feet"),
  13856. weight: math.unit(267, "lb"),
  13857. name: "Side",
  13858. image: {
  13859. source: "./media/characters/dayza/side.svg",
  13860. extra: 1295 / 1245,
  13861. bottom: 0.05
  13862. }
  13863. },
  13864. back: {
  13865. height: math.unit(7 + 7 / 12, "feet"),
  13866. weight: math.unit(267, "lb"),
  13867. name: "Back",
  13868. image: {
  13869. source: "./media/characters/dayza/back.svg",
  13870. extra: 1241 / 1170
  13871. }
  13872. },
  13873. },
  13874. [
  13875. {
  13876. name: "Normal",
  13877. height: math.unit(7 + 7 / 12, "feet"),
  13878. default: true
  13879. },
  13880. {
  13881. name: "Macro",
  13882. height: math.unit(155, "feet")
  13883. },
  13884. ]
  13885. ))
  13886. characterMakers.push(() => makeCharacter(
  13887. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13888. {
  13889. front: {
  13890. height: math.unit(6 + 5 / 12, "feet"),
  13891. weight: math.unit(160, "lb"),
  13892. name: "Front",
  13893. image: {
  13894. source: "./media/characters/xanthos/front.svg",
  13895. extra: 1,
  13896. bottom: 0.04
  13897. }
  13898. },
  13899. back: {
  13900. height: math.unit(6 + 5 / 12, "feet"),
  13901. weight: math.unit(160, "lb"),
  13902. name: "Back",
  13903. image: {
  13904. source: "./media/characters/xanthos/back.svg",
  13905. extra: 1,
  13906. bottom: 0.03
  13907. }
  13908. },
  13909. hand: {
  13910. height: math.unit(0.928, "feet"),
  13911. name: "Hand",
  13912. image: {
  13913. source: "./media/characters/xanthos/hand.svg"
  13914. }
  13915. },
  13916. foot: {
  13917. height: math.unit(1.286, "feet"),
  13918. name: "Foot",
  13919. image: {
  13920. source: "./media/characters/xanthos/foot.svg"
  13921. }
  13922. },
  13923. },
  13924. [
  13925. {
  13926. name: "Normal",
  13927. height: math.unit(6 + 5 / 12, "feet"),
  13928. default: true
  13929. },
  13930. {
  13931. name: "Normal+",
  13932. height: math.unit(6, "meters")
  13933. },
  13934. {
  13935. name: "Macro",
  13936. height: math.unit(40, "feet")
  13937. },
  13938. {
  13939. name: "Macro+",
  13940. height: math.unit(200, "meters")
  13941. },
  13942. {
  13943. name: "Megamacro",
  13944. height: math.unit(20, "km")
  13945. },
  13946. {
  13947. name: "Megamacro+",
  13948. height: math.unit(100, "km")
  13949. },
  13950. {
  13951. name: "Gigamacro",
  13952. height: math.unit(200, "megameters")
  13953. },
  13954. {
  13955. name: "Gigamacro+",
  13956. height: math.unit(1.5, "gigameters")
  13957. },
  13958. ]
  13959. ))
  13960. characterMakers.push(() => makeCharacter(
  13961. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13962. {
  13963. front: {
  13964. height: math.unit(6 + 3 / 12, "feet"),
  13965. weight: math.unit(215, "lb"),
  13966. name: "Front",
  13967. image: {
  13968. source: "./media/characters/grynn/front.svg",
  13969. extra: 4627 / 4209,
  13970. bottom: 0.047
  13971. }
  13972. },
  13973. },
  13974. [
  13975. {
  13976. name: "Micro",
  13977. height: math.unit(6, "inches")
  13978. },
  13979. {
  13980. name: "Normal",
  13981. height: math.unit(6 + 3 / 12, "feet"),
  13982. default: true
  13983. },
  13984. {
  13985. name: "Big",
  13986. height: math.unit(104, "feet")
  13987. },
  13988. {
  13989. name: "Macro",
  13990. height: math.unit(944, "feet")
  13991. },
  13992. {
  13993. name: "Macro+",
  13994. height: math.unit(9480, "feet")
  13995. },
  13996. {
  13997. name: "Megamacro",
  13998. height: math.unit(78752, "feet")
  13999. },
  14000. {
  14001. name: "Megamacro+",
  14002. height: math.unit(630128, "feet")
  14003. },
  14004. {
  14005. name: "Megamacro++",
  14006. height: math.unit(3150695, "feet")
  14007. },
  14008. ]
  14009. ))
  14010. characterMakers.push(() => makeCharacter(
  14011. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14012. {
  14013. front: {
  14014. height: math.unit(7 + 5 / 12, "feet"),
  14015. weight: math.unit(450, "lb"),
  14016. name: "Front",
  14017. image: {
  14018. source: "./media/characters/mocha-aura/front.svg",
  14019. extra: 1907 / 1817,
  14020. bottom: 0.04
  14021. }
  14022. },
  14023. back: {
  14024. height: math.unit(7 + 5 / 12, "feet"),
  14025. weight: math.unit(450, "lb"),
  14026. name: "Back",
  14027. image: {
  14028. source: "./media/characters/mocha-aura/back.svg",
  14029. extra: 1900 / 1825,
  14030. bottom: 0.045
  14031. }
  14032. },
  14033. },
  14034. [
  14035. {
  14036. name: "Nano",
  14037. height: math.unit(1, "nm")
  14038. },
  14039. {
  14040. name: "Megamicro",
  14041. height: math.unit(1, "mm")
  14042. },
  14043. {
  14044. name: "Micro",
  14045. height: math.unit(3, "inches")
  14046. },
  14047. {
  14048. name: "Normal",
  14049. height: math.unit(7 + 5 / 12, "feet"),
  14050. default: true
  14051. },
  14052. {
  14053. name: "Macro",
  14054. height: math.unit(30, "feet")
  14055. },
  14056. {
  14057. name: "Megamacro",
  14058. height: math.unit(3500, "feet")
  14059. },
  14060. {
  14061. name: "Teramacro",
  14062. height: math.unit(500000, "miles")
  14063. },
  14064. {
  14065. name: "Petamacro",
  14066. height: math.unit(50000000000000000, "parsecs")
  14067. },
  14068. ]
  14069. ))
  14070. characterMakers.push(() => makeCharacter(
  14071. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14072. {
  14073. front: {
  14074. height: math.unit(6, "feet"),
  14075. weight: math.unit(150, "lb"),
  14076. name: "Front",
  14077. image: {
  14078. source: "./media/characters/ilisha-devya/front.svg",
  14079. extra: 1053/1049,
  14080. bottom: 270/1323
  14081. }
  14082. },
  14083. back: {
  14084. height: math.unit(6, "feet"),
  14085. weight: math.unit(150, "lb"),
  14086. name: "Back",
  14087. image: {
  14088. source: "./media/characters/ilisha-devya/back.svg",
  14089. extra: 1131/1128,
  14090. bottom: 39/1170
  14091. }
  14092. },
  14093. },
  14094. [
  14095. {
  14096. name: "Macro",
  14097. height: math.unit(500, "feet"),
  14098. default: true
  14099. },
  14100. {
  14101. name: "Megamacro",
  14102. height: math.unit(10, "miles")
  14103. },
  14104. {
  14105. name: "Gigamacro",
  14106. height: math.unit(100000, "miles")
  14107. },
  14108. {
  14109. name: "Examacro",
  14110. height: math.unit(1e9, "lightyears")
  14111. },
  14112. {
  14113. name: "Omniversal",
  14114. height: math.unit(1e33, "lightyears")
  14115. },
  14116. {
  14117. name: "Beyond Infinite",
  14118. height: math.unit(1e100, "lightyears")
  14119. },
  14120. ]
  14121. ))
  14122. characterMakers.push(() => makeCharacter(
  14123. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14124. {
  14125. Side: {
  14126. height: math.unit(6, "feet"),
  14127. weight: math.unit(150, "lb"),
  14128. name: "Side",
  14129. image: {
  14130. source: "./media/characters/mira/side.svg",
  14131. extra: 900 / 799,
  14132. bottom: 0.02
  14133. }
  14134. },
  14135. },
  14136. [
  14137. {
  14138. name: "Human Size",
  14139. height: math.unit(6, "feet")
  14140. },
  14141. {
  14142. name: "Macro",
  14143. height: math.unit(100, "feet"),
  14144. default: true
  14145. },
  14146. {
  14147. name: "Megamacro",
  14148. height: math.unit(10, "miles")
  14149. },
  14150. {
  14151. name: "Gigamacro",
  14152. height: math.unit(25000, "miles")
  14153. },
  14154. {
  14155. name: "Teramacro",
  14156. height: math.unit(300, "AU")
  14157. },
  14158. {
  14159. name: "Full Size",
  14160. height: math.unit(4.5e10, "lightyears")
  14161. },
  14162. ]
  14163. ))
  14164. characterMakers.push(() => makeCharacter(
  14165. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14166. {
  14167. front: {
  14168. height: math.unit(6, "feet"),
  14169. weight: math.unit(150, "lb"),
  14170. name: "Front",
  14171. image: {
  14172. source: "./media/characters/holly/front.svg",
  14173. extra: 639 / 606
  14174. }
  14175. },
  14176. back: {
  14177. height: math.unit(6, "feet"),
  14178. weight: math.unit(150, "lb"),
  14179. name: "Back",
  14180. image: {
  14181. source: "./media/characters/holly/back.svg",
  14182. extra: 623 / 598
  14183. }
  14184. },
  14185. frontWorking: {
  14186. height: math.unit(6, "feet"),
  14187. weight: math.unit(150, "lb"),
  14188. name: "Front (Working)",
  14189. image: {
  14190. source: "./media/characters/holly/front-working.svg",
  14191. extra: 607 / 577,
  14192. bottom: 0.048
  14193. }
  14194. },
  14195. },
  14196. [
  14197. {
  14198. name: "Normal",
  14199. height: math.unit(12 + 3 / 12, "feet"),
  14200. default: true
  14201. },
  14202. ]
  14203. ))
  14204. characterMakers.push(() => makeCharacter(
  14205. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14206. {
  14207. front: {
  14208. height: math.unit(6, "feet"),
  14209. weight: math.unit(150, "lb"),
  14210. name: "Front",
  14211. image: {
  14212. source: "./media/characters/porter/front.svg",
  14213. extra: 1,
  14214. bottom: 0.01
  14215. }
  14216. },
  14217. frontRobes: {
  14218. height: math.unit(6, "feet"),
  14219. weight: math.unit(150, "lb"),
  14220. name: "Front (Robes)",
  14221. image: {
  14222. source: "./media/characters/porter/front-robes.svg",
  14223. extra: 1.01,
  14224. bottom: 0.01
  14225. }
  14226. },
  14227. },
  14228. [
  14229. {
  14230. name: "Normal",
  14231. height: math.unit(11 + 9 / 12, "feet"),
  14232. default: true
  14233. },
  14234. ]
  14235. ))
  14236. characterMakers.push(() => makeCharacter(
  14237. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14238. {
  14239. legendary: {
  14240. height: math.unit(6, "feet"),
  14241. weight: math.unit(150, "lb"),
  14242. name: "Legendary",
  14243. image: {
  14244. source: "./media/characters/lucy/legendary.svg",
  14245. extra: 1355 / 1100,
  14246. bottom: 0.045
  14247. }
  14248. },
  14249. },
  14250. [
  14251. {
  14252. name: "Legendary",
  14253. height: math.unit(86882 * 2, "miles"),
  14254. default: true
  14255. },
  14256. ]
  14257. ))
  14258. characterMakers.push(() => makeCharacter(
  14259. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14260. {
  14261. front: {
  14262. height: math.unit(6, "feet"),
  14263. weight: math.unit(150, "lb"),
  14264. name: "Front",
  14265. image: {
  14266. source: "./media/characters/drusilla/front.svg",
  14267. extra: 678 / 635,
  14268. bottom: 0.03
  14269. }
  14270. },
  14271. back: {
  14272. height: math.unit(6, "feet"),
  14273. weight: math.unit(150, "lb"),
  14274. name: "Back",
  14275. image: {
  14276. source: "./media/characters/drusilla/back.svg",
  14277. extra: 678 / 635,
  14278. bottom: 0.005
  14279. }
  14280. },
  14281. },
  14282. [
  14283. {
  14284. name: "Macro",
  14285. height: math.unit(100, "feet")
  14286. },
  14287. {
  14288. name: "Canon Height",
  14289. height: math.unit(2000, "feet"),
  14290. default: true
  14291. },
  14292. ]
  14293. ))
  14294. characterMakers.push(() => makeCharacter(
  14295. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14296. {
  14297. front: {
  14298. height: math.unit(6, "feet"),
  14299. weight: math.unit(180, "lb"),
  14300. name: "Front",
  14301. image: {
  14302. source: "./media/characters/renard-thatch/front.svg",
  14303. extra: 2411 / 2275,
  14304. bottom: 0.01
  14305. }
  14306. },
  14307. frontPosing: {
  14308. height: math.unit(6, "feet"),
  14309. weight: math.unit(180, "lb"),
  14310. name: "Front (Posing)",
  14311. image: {
  14312. source: "./media/characters/renard-thatch/front-posing.svg",
  14313. extra: 2381 / 2261,
  14314. bottom: 0.01
  14315. }
  14316. },
  14317. back: {
  14318. height: math.unit(6, "feet"),
  14319. weight: math.unit(180, "lb"),
  14320. name: "Back",
  14321. image: {
  14322. source: "./media/characters/renard-thatch/back.svg",
  14323. extra: 2428 / 2288
  14324. }
  14325. },
  14326. },
  14327. [
  14328. {
  14329. name: "Micro",
  14330. height: math.unit(3, "inches")
  14331. },
  14332. {
  14333. name: "Default",
  14334. height: math.unit(6, "feet"),
  14335. default: true
  14336. },
  14337. {
  14338. name: "Macro",
  14339. height: math.unit(75, "feet")
  14340. },
  14341. ]
  14342. ))
  14343. characterMakers.push(() => makeCharacter(
  14344. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14345. {
  14346. front: {
  14347. height: math.unit(1450, "feet"),
  14348. weight: math.unit(1.21e6, "tons"),
  14349. name: "Front",
  14350. image: {
  14351. source: "./media/characters/sekvra/front.svg",
  14352. extra: 1193/1190,
  14353. bottom: 78/1271
  14354. }
  14355. },
  14356. side: {
  14357. height: math.unit(1450, "feet"),
  14358. weight: math.unit(1.21e6, "tons"),
  14359. name: "Side",
  14360. image: {
  14361. source: "./media/characters/sekvra/side.svg",
  14362. extra: 1193/1190,
  14363. bottom: 52/1245
  14364. }
  14365. },
  14366. back: {
  14367. height: math.unit(1450, "feet"),
  14368. weight: math.unit(1.21e6, "tons"),
  14369. name: "Back",
  14370. image: {
  14371. source: "./media/characters/sekvra/back.svg",
  14372. extra: 1219/1216,
  14373. bottom: 21/1240
  14374. }
  14375. },
  14376. frontClothed: {
  14377. height: math.unit(1450, "feet"),
  14378. weight: math.unit(1.21e6, "tons"),
  14379. name: "Front (Clothed)",
  14380. image: {
  14381. source: "./media/characters/sekvra/front-clothed.svg",
  14382. extra: 1192/1189,
  14383. bottom: 79/1271
  14384. }
  14385. },
  14386. },
  14387. [
  14388. {
  14389. name: "Macro",
  14390. height: math.unit(1450, "feet"),
  14391. default: true
  14392. },
  14393. {
  14394. name: "Megamacro",
  14395. height: math.unit(15000, "feet")
  14396. },
  14397. ]
  14398. ))
  14399. characterMakers.push(() => makeCharacter(
  14400. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14401. {
  14402. front: {
  14403. height: math.unit(6, "feet"),
  14404. weight: math.unit(150, "lb"),
  14405. name: "Front",
  14406. image: {
  14407. source: "./media/characters/carmine/front.svg",
  14408. extra: 1,
  14409. bottom: 0.035
  14410. }
  14411. },
  14412. frontArmor: {
  14413. height: math.unit(6, "feet"),
  14414. weight: math.unit(150, "lb"),
  14415. name: "Front (Armor)",
  14416. image: {
  14417. source: "./media/characters/carmine/front-armor.svg",
  14418. extra: 1,
  14419. bottom: 0.035
  14420. }
  14421. },
  14422. },
  14423. [
  14424. {
  14425. name: "Large",
  14426. height: math.unit(1, "mile")
  14427. },
  14428. {
  14429. name: "Huge",
  14430. height: math.unit(40, "miles"),
  14431. default: true
  14432. },
  14433. {
  14434. name: "Colossal",
  14435. height: math.unit(2500, "miles")
  14436. },
  14437. ]
  14438. ))
  14439. characterMakers.push(() => makeCharacter(
  14440. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14441. {
  14442. front: {
  14443. height: math.unit(6, "feet"),
  14444. weight: math.unit(150, "lb"),
  14445. name: "Front",
  14446. image: {
  14447. source: "./media/characters/elyssia/front.svg",
  14448. extra: 2201 / 2035,
  14449. bottom: 0.05
  14450. }
  14451. },
  14452. frontClothed: {
  14453. height: math.unit(6, "feet"),
  14454. weight: math.unit(150, "lb"),
  14455. name: "Front (Clothed)",
  14456. image: {
  14457. source: "./media/characters/elyssia/front-clothed.svg",
  14458. extra: 2201 / 2035,
  14459. bottom: 0.05
  14460. }
  14461. },
  14462. back: {
  14463. height: math.unit(6, "feet"),
  14464. weight: math.unit(150, "lb"),
  14465. name: "Back",
  14466. image: {
  14467. source: "./media/characters/elyssia/back.svg",
  14468. extra: 2201 / 2035,
  14469. bottom: 0.013
  14470. }
  14471. },
  14472. },
  14473. [
  14474. {
  14475. name: "Smaller",
  14476. height: math.unit(150, "feet")
  14477. },
  14478. {
  14479. name: "Standard",
  14480. height: math.unit(1400, "feet"),
  14481. default: true
  14482. },
  14483. {
  14484. name: "Distracted",
  14485. height: math.unit(15000, "feet")
  14486. },
  14487. ]
  14488. ))
  14489. characterMakers.push(() => makeCharacter(
  14490. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14491. {
  14492. front: {
  14493. height: math.unit(7 + 4/12, "feet"),
  14494. weight: math.unit(690, "lb"),
  14495. name: "Front",
  14496. image: {
  14497. source: "./media/characters/geno-maxwell/front.svg",
  14498. extra: 984/856,
  14499. bottom: 87/1071
  14500. }
  14501. },
  14502. back: {
  14503. height: math.unit(7 + 4/12, "feet"),
  14504. weight: math.unit(690, "lb"),
  14505. name: "Back",
  14506. image: {
  14507. source: "./media/characters/geno-maxwell/back.svg",
  14508. extra: 981/854,
  14509. bottom: 57/1038
  14510. }
  14511. },
  14512. frontCostume: {
  14513. height: math.unit(7 + 4/12, "feet"),
  14514. weight: math.unit(690, "lb"),
  14515. name: "Front (Costume)",
  14516. image: {
  14517. source: "./media/characters/geno-maxwell/front-costume.svg",
  14518. extra: 984/856,
  14519. bottom: 87/1071
  14520. }
  14521. },
  14522. backcostume: {
  14523. height: math.unit(7 + 4/12, "feet"),
  14524. weight: math.unit(690, "lb"),
  14525. name: "Back (Costume)",
  14526. image: {
  14527. source: "./media/characters/geno-maxwell/back-costume.svg",
  14528. extra: 981/854,
  14529. bottom: 57/1038
  14530. }
  14531. },
  14532. },
  14533. [
  14534. {
  14535. name: "Micro",
  14536. height: math.unit(3, "inches")
  14537. },
  14538. {
  14539. name: "Normal",
  14540. height: math.unit(7 + 4 / 12, "feet"),
  14541. default: true
  14542. },
  14543. {
  14544. name: "Macro",
  14545. height: math.unit(220, "feet")
  14546. },
  14547. {
  14548. name: "Megamacro",
  14549. height: math.unit(11, "miles")
  14550. },
  14551. ]
  14552. ))
  14553. characterMakers.push(() => makeCharacter(
  14554. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14555. {
  14556. front: {
  14557. height: math.unit(7 + 4/12, "feet"),
  14558. weight: math.unit(750, "lb"),
  14559. name: "Front",
  14560. image: {
  14561. source: "./media/characters/regena-maxwell/front.svg",
  14562. extra: 984/856,
  14563. bottom: 87/1071
  14564. }
  14565. },
  14566. back: {
  14567. height: math.unit(7 + 4/12, "feet"),
  14568. weight: math.unit(750, "lb"),
  14569. name: "Back",
  14570. image: {
  14571. source: "./media/characters/regena-maxwell/back.svg",
  14572. extra: 981/854,
  14573. bottom: 57/1038
  14574. }
  14575. },
  14576. frontCostume: {
  14577. height: math.unit(7 + 4/12, "feet"),
  14578. weight: math.unit(750, "lb"),
  14579. name: "Front (Costume)",
  14580. image: {
  14581. source: "./media/characters/regena-maxwell/front-costume.svg",
  14582. extra: 984/856,
  14583. bottom: 87/1071
  14584. }
  14585. },
  14586. backcostume: {
  14587. height: math.unit(7 + 4/12, "feet"),
  14588. weight: math.unit(750, "lb"),
  14589. name: "Back (Costume)",
  14590. image: {
  14591. source: "./media/characters/regena-maxwell/back-costume.svg",
  14592. extra: 981/854,
  14593. bottom: 57/1038
  14594. }
  14595. },
  14596. },
  14597. [
  14598. {
  14599. name: "Normal",
  14600. height: math.unit(7 + 4 / 12, "feet"),
  14601. default: true
  14602. },
  14603. {
  14604. name: "Macro",
  14605. height: math.unit(220, "feet")
  14606. },
  14607. {
  14608. name: "Megamacro",
  14609. height: math.unit(11, "miles")
  14610. },
  14611. ]
  14612. ))
  14613. characterMakers.push(() => makeCharacter(
  14614. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14615. {
  14616. front: {
  14617. height: math.unit(6, "feet"),
  14618. weight: math.unit(150, "lb"),
  14619. name: "Front",
  14620. image: {
  14621. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14622. extra: 860 / 690,
  14623. bottom: 0.03
  14624. }
  14625. },
  14626. },
  14627. [
  14628. {
  14629. name: "Normal",
  14630. height: math.unit(1.7, "meters"),
  14631. default: true
  14632. },
  14633. ]
  14634. ))
  14635. characterMakers.push(() => makeCharacter(
  14636. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14637. {
  14638. front: {
  14639. height: math.unit(6, "feet"),
  14640. weight: math.unit(150, "lb"),
  14641. name: "Front",
  14642. image: {
  14643. source: "./media/characters/quilly/front.svg",
  14644. extra: 890 / 776
  14645. }
  14646. },
  14647. },
  14648. [
  14649. {
  14650. name: "Gigamacro",
  14651. height: math.unit(404090, "miles"),
  14652. default: true
  14653. },
  14654. ]
  14655. ))
  14656. characterMakers.push(() => makeCharacter(
  14657. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14658. {
  14659. front: {
  14660. height: math.unit(7 + 8 / 12, "feet"),
  14661. weight: math.unit(350, "lb"),
  14662. name: "Front",
  14663. image: {
  14664. source: "./media/characters/tempest/front.svg",
  14665. extra: 1175 / 1086,
  14666. bottom: 0.02
  14667. }
  14668. },
  14669. },
  14670. [
  14671. {
  14672. name: "Normal",
  14673. height: math.unit(7 + 8 / 12, "feet"),
  14674. default: true
  14675. },
  14676. ]
  14677. ))
  14678. characterMakers.push(() => makeCharacter(
  14679. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14680. {
  14681. side: {
  14682. height: math.unit(4 + 5 / 12, "feet"),
  14683. weight: math.unit(80, "lb"),
  14684. name: "Side",
  14685. image: {
  14686. source: "./media/characters/rodger/side.svg",
  14687. extra: 1235 / 1118
  14688. }
  14689. },
  14690. },
  14691. [
  14692. {
  14693. name: "Micro",
  14694. height: math.unit(1, "inch")
  14695. },
  14696. {
  14697. name: "Normal",
  14698. height: math.unit(4 + 5 / 12, "feet"),
  14699. default: true
  14700. },
  14701. {
  14702. name: "Macro",
  14703. height: math.unit(120, "feet")
  14704. },
  14705. ]
  14706. ))
  14707. characterMakers.push(() => makeCharacter(
  14708. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14709. {
  14710. front: {
  14711. height: math.unit(6, "feet"),
  14712. weight: math.unit(150, "lb"),
  14713. name: "Front",
  14714. image: {
  14715. source: "./media/characters/danyel/front.svg",
  14716. extra: 1185 / 1123,
  14717. bottom: 0.05
  14718. }
  14719. },
  14720. },
  14721. [
  14722. {
  14723. name: "Shrunken",
  14724. height: math.unit(0.5, "mm")
  14725. },
  14726. {
  14727. name: "Micro",
  14728. height: math.unit(1, "mm"),
  14729. default: true
  14730. },
  14731. {
  14732. name: "Upsized",
  14733. height: math.unit(5 + 5 / 12, "feet")
  14734. },
  14735. ]
  14736. ))
  14737. characterMakers.push(() => makeCharacter(
  14738. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14739. {
  14740. front: {
  14741. height: math.unit(5 + 6 / 12, "feet"),
  14742. weight: math.unit(200, "lb"),
  14743. name: "Front",
  14744. image: {
  14745. source: "./media/characters/vivian-bijoux/front.svg",
  14746. extra: 1217/1209,
  14747. bottom: 76/1293
  14748. }
  14749. },
  14750. back: {
  14751. height: math.unit(5 + 6 / 12, "feet"),
  14752. weight: math.unit(200, "lb"),
  14753. name: "Back",
  14754. image: {
  14755. source: "./media/characters/vivian-bijoux/back.svg",
  14756. extra: 1214/1208,
  14757. bottom: 51/1265
  14758. }
  14759. },
  14760. dressed: {
  14761. height: math.unit(5 + 6 / 12, "feet"),
  14762. weight: math.unit(200, "lb"),
  14763. name: "Dressed",
  14764. image: {
  14765. source: "./media/characters/vivian-bijoux/dressed.svg",
  14766. extra: 1217/1209,
  14767. bottom: 76/1293
  14768. }
  14769. },
  14770. },
  14771. [
  14772. {
  14773. name: "Normal",
  14774. height: math.unit(5 + 6 / 12, "feet"),
  14775. default: true
  14776. },
  14777. {
  14778. name: "Bad Dream",
  14779. height: math.unit(500, "feet")
  14780. },
  14781. {
  14782. name: "Nightmare",
  14783. height: math.unit(500, "miles")
  14784. },
  14785. ]
  14786. ))
  14787. characterMakers.push(() => makeCharacter(
  14788. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14789. {
  14790. front: {
  14791. height: math.unit(6 + 1 / 12, "feet"),
  14792. weight: math.unit(260, "lb"),
  14793. name: "Front",
  14794. image: {
  14795. source: "./media/characters/zeta/front.svg",
  14796. extra: 1968 / 1889,
  14797. bottom: 0.06
  14798. }
  14799. },
  14800. back: {
  14801. height: math.unit(6 + 1 / 12, "feet"),
  14802. weight: math.unit(260, "lb"),
  14803. name: "Back",
  14804. image: {
  14805. source: "./media/characters/zeta/back.svg",
  14806. extra: 1944 / 1858,
  14807. bottom: 0.03
  14808. }
  14809. },
  14810. hand: {
  14811. height: math.unit(1.112, "feet"),
  14812. name: "Hand",
  14813. image: {
  14814. source: "./media/characters/zeta/hand.svg"
  14815. }
  14816. },
  14817. foot: {
  14818. height: math.unit(1.48, "feet"),
  14819. name: "Foot",
  14820. image: {
  14821. source: "./media/characters/zeta/foot.svg"
  14822. }
  14823. },
  14824. },
  14825. [
  14826. {
  14827. name: "Micro",
  14828. height: math.unit(6, "inches")
  14829. },
  14830. {
  14831. name: "Normal",
  14832. height: math.unit(6 + 1 / 12, "feet"),
  14833. default: true
  14834. },
  14835. {
  14836. name: "Macro",
  14837. height: math.unit(20, "feet")
  14838. },
  14839. ]
  14840. ))
  14841. characterMakers.push(() => makeCharacter(
  14842. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14843. {
  14844. front: {
  14845. height: math.unit(6, "feet"),
  14846. weight: math.unit(150, "lb"),
  14847. name: "Front",
  14848. image: {
  14849. source: "./media/characters/jamie-larsen/front.svg",
  14850. extra: 962 / 933,
  14851. bottom: 0.02
  14852. }
  14853. },
  14854. back: {
  14855. height: math.unit(6, "feet"),
  14856. weight: math.unit(150, "lb"),
  14857. name: "Back",
  14858. image: {
  14859. source: "./media/characters/jamie-larsen/back.svg",
  14860. extra: 997 / 946
  14861. }
  14862. },
  14863. },
  14864. [
  14865. {
  14866. name: "Macro",
  14867. height: math.unit(28 + 7 / 12, "feet"),
  14868. default: true
  14869. },
  14870. {
  14871. name: "Macro+",
  14872. height: math.unit(180, "feet")
  14873. },
  14874. {
  14875. name: "Megamacro",
  14876. height: math.unit(10, "miles")
  14877. },
  14878. {
  14879. name: "Gigamacro",
  14880. height: math.unit(200000, "miles")
  14881. },
  14882. ]
  14883. ))
  14884. characterMakers.push(() => makeCharacter(
  14885. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14886. {
  14887. front: {
  14888. height: math.unit(6, "feet"),
  14889. weight: math.unit(120, "lb"),
  14890. name: "Front",
  14891. image: {
  14892. source: "./media/characters/vance/front.svg",
  14893. extra: 1980 / 1890,
  14894. bottom: 0.09
  14895. }
  14896. },
  14897. back: {
  14898. height: math.unit(6, "feet"),
  14899. weight: math.unit(120, "lb"),
  14900. name: "Back",
  14901. image: {
  14902. source: "./media/characters/vance/back.svg",
  14903. extra: 2081 / 1994,
  14904. bottom: 0.014
  14905. }
  14906. },
  14907. hand: {
  14908. height: math.unit(0.88, "feet"),
  14909. name: "Hand",
  14910. image: {
  14911. source: "./media/characters/vance/hand.svg"
  14912. }
  14913. },
  14914. foot: {
  14915. height: math.unit(0.64, "feet"),
  14916. name: "Foot",
  14917. image: {
  14918. source: "./media/characters/vance/foot.svg"
  14919. }
  14920. },
  14921. },
  14922. [
  14923. {
  14924. name: "Small",
  14925. height: math.unit(90, "feet"),
  14926. default: true
  14927. },
  14928. {
  14929. name: "Macro",
  14930. height: math.unit(100, "meters")
  14931. },
  14932. {
  14933. name: "Megamacro",
  14934. height: math.unit(15, "miles")
  14935. },
  14936. ]
  14937. ))
  14938. characterMakers.push(() => makeCharacter(
  14939. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14940. {
  14941. front: {
  14942. height: math.unit(6, "feet"),
  14943. weight: math.unit(180, "lb"),
  14944. name: "Front",
  14945. image: {
  14946. source: "./media/characters/xochitl/front.svg",
  14947. extra: 2297 / 2261,
  14948. bottom: 0.065
  14949. }
  14950. },
  14951. back: {
  14952. height: math.unit(6, "feet"),
  14953. weight: math.unit(180, "lb"),
  14954. name: "Back",
  14955. image: {
  14956. source: "./media/characters/xochitl/back.svg",
  14957. extra: 2386 / 2354,
  14958. bottom: 0.01
  14959. }
  14960. },
  14961. foot: {
  14962. height: math.unit(6 / 5 * 1.15, "feet"),
  14963. weight: math.unit(150, "lb"),
  14964. name: "Foot",
  14965. image: {
  14966. source: "./media/characters/xochitl/foot.svg"
  14967. }
  14968. },
  14969. },
  14970. [
  14971. {
  14972. name: "Macro",
  14973. height: math.unit(80, "feet")
  14974. },
  14975. {
  14976. name: "Macro+",
  14977. height: math.unit(400, "feet"),
  14978. default: true
  14979. },
  14980. {
  14981. name: "Gigamacro",
  14982. height: math.unit(80000, "miles")
  14983. },
  14984. {
  14985. name: "Gigamacro+",
  14986. height: math.unit(400000, "miles")
  14987. },
  14988. {
  14989. name: "Teramacro",
  14990. height: math.unit(300, "AU")
  14991. },
  14992. ]
  14993. ))
  14994. characterMakers.push(() => makeCharacter(
  14995. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14996. {
  14997. front: {
  14998. height: math.unit(6, "feet"),
  14999. weight: math.unit(150, "lb"),
  15000. name: "Front",
  15001. image: {
  15002. source: "./media/characters/vincent/front.svg",
  15003. extra: 1130 / 1080,
  15004. bottom: 0.055
  15005. }
  15006. },
  15007. beak: {
  15008. height: math.unit(6 * 0.1, "feet"),
  15009. name: "Beak",
  15010. image: {
  15011. source: "./media/characters/vincent/beak.svg"
  15012. }
  15013. },
  15014. hand: {
  15015. height: math.unit(6 * 0.85, "feet"),
  15016. weight: math.unit(150, "lb"),
  15017. name: "Hand",
  15018. image: {
  15019. source: "./media/characters/vincent/hand.svg"
  15020. }
  15021. },
  15022. foot: {
  15023. height: math.unit(6 * 0.19, "feet"),
  15024. weight: math.unit(150, "lb"),
  15025. name: "Foot",
  15026. image: {
  15027. source: "./media/characters/vincent/foot.svg"
  15028. }
  15029. },
  15030. },
  15031. [
  15032. {
  15033. name: "Base",
  15034. height: math.unit(6 + 5 / 12, "feet"),
  15035. default: true
  15036. },
  15037. {
  15038. name: "Macro",
  15039. height: math.unit(300, "feet")
  15040. },
  15041. {
  15042. name: "Megamacro",
  15043. height: math.unit(2, "miles")
  15044. },
  15045. {
  15046. name: "Gigamacro",
  15047. height: math.unit(1000, "miles")
  15048. },
  15049. ]
  15050. ))
  15051. characterMakers.push(() => makeCharacter(
  15052. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15053. {
  15054. front: {
  15055. height: math.unit(2, "meters"),
  15056. weight: math.unit(500, "kg"),
  15057. name: "Front",
  15058. image: {
  15059. source: "./media/characters/coatl/front.svg",
  15060. extra: 3948 / 3500,
  15061. bottom: 0.082
  15062. }
  15063. },
  15064. },
  15065. [
  15066. {
  15067. name: "Normal",
  15068. height: math.unit(4, "meters")
  15069. },
  15070. {
  15071. name: "Macro",
  15072. height: math.unit(100, "meters"),
  15073. default: true
  15074. },
  15075. {
  15076. name: "Macro+",
  15077. height: math.unit(300, "meters")
  15078. },
  15079. {
  15080. name: "Megamacro",
  15081. height: math.unit(3, "gigameters")
  15082. },
  15083. {
  15084. name: "Megamacro+",
  15085. height: math.unit(300, "terameters")
  15086. },
  15087. {
  15088. name: "Megamacro++",
  15089. height: math.unit(3, "lightyears")
  15090. },
  15091. ]
  15092. ))
  15093. characterMakers.push(() => makeCharacter(
  15094. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15095. {
  15096. front: {
  15097. height: math.unit(6, "feet"),
  15098. weight: math.unit(50, "kg"),
  15099. name: "front",
  15100. image: {
  15101. source: "./media/characters/shiroryu/front.svg",
  15102. extra: 1990 / 1935
  15103. }
  15104. },
  15105. },
  15106. [
  15107. {
  15108. name: "Mortal Mingling",
  15109. height: math.unit(3, "meters")
  15110. },
  15111. {
  15112. name: "Kaiju-ish",
  15113. height: math.unit(250, "meters")
  15114. },
  15115. {
  15116. name: "Somewhat Godly",
  15117. height: math.unit(400, "km"),
  15118. default: true
  15119. },
  15120. {
  15121. name: "Planetary",
  15122. height: math.unit(300, "megameters")
  15123. },
  15124. {
  15125. name: "Galaxy-dwarfing",
  15126. height: math.unit(450, "kiloparsecs")
  15127. },
  15128. {
  15129. name: "Universe Eater",
  15130. height: math.unit(150, "gigaparsecs")
  15131. },
  15132. {
  15133. name: "Almost Immeasurable",
  15134. height: math.unit(1.3e266, "yottaparsecs")
  15135. },
  15136. ]
  15137. ))
  15138. characterMakers.push(() => makeCharacter(
  15139. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15140. {
  15141. front: {
  15142. height: math.unit(6, "feet"),
  15143. weight: math.unit(150, "lb"),
  15144. name: "Front",
  15145. image: {
  15146. source: "./media/characters/umeko/front.svg",
  15147. extra: 1,
  15148. bottom: 0.019
  15149. }
  15150. },
  15151. frontArmored: {
  15152. height: math.unit(6, "feet"),
  15153. weight: math.unit(150, "lb"),
  15154. name: "Front (Armored)",
  15155. image: {
  15156. source: "./media/characters/umeko/front-armored.svg",
  15157. extra: 1,
  15158. bottom: 0.021
  15159. }
  15160. },
  15161. },
  15162. [
  15163. {
  15164. name: "Macro",
  15165. height: math.unit(220, "feet"),
  15166. default: true
  15167. },
  15168. {
  15169. name: "Guardian Dragon",
  15170. height: math.unit(50, "miles")
  15171. },
  15172. {
  15173. name: "Cosmic",
  15174. height: math.unit(800000, "miles")
  15175. },
  15176. ]
  15177. ))
  15178. characterMakers.push(() => makeCharacter(
  15179. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15180. {
  15181. front: {
  15182. height: math.unit(6, "feet"),
  15183. weight: math.unit(150, "lb"),
  15184. name: "Front",
  15185. image: {
  15186. source: "./media/characters/cassidy/front.svg",
  15187. extra: 810/808,
  15188. bottom: 41/851
  15189. }
  15190. },
  15191. },
  15192. [
  15193. {
  15194. name: "Canon Height",
  15195. height: math.unit(120, "feet"),
  15196. default: true
  15197. },
  15198. {
  15199. name: "Macro+",
  15200. height: math.unit(400, "feet")
  15201. },
  15202. {
  15203. name: "Macro++",
  15204. height: math.unit(4000, "feet")
  15205. },
  15206. {
  15207. name: "Megamacro",
  15208. height: math.unit(3, "miles")
  15209. },
  15210. ]
  15211. ))
  15212. characterMakers.push(() => makeCharacter(
  15213. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15214. {
  15215. front: {
  15216. height: math.unit(6, "feet"),
  15217. weight: math.unit(150, "lb"),
  15218. name: "Front",
  15219. image: {
  15220. source: "./media/characters/isaac/front.svg",
  15221. extra: 896 / 815,
  15222. bottom: 0.11
  15223. }
  15224. },
  15225. },
  15226. [
  15227. {
  15228. name: "Human Size",
  15229. height: math.unit(8, "feet"),
  15230. default: true
  15231. },
  15232. {
  15233. name: "Macro",
  15234. height: math.unit(400, "feet")
  15235. },
  15236. {
  15237. name: "Megamacro",
  15238. height: math.unit(50, "miles")
  15239. },
  15240. {
  15241. name: "Canon Height",
  15242. height: math.unit(200, "AU")
  15243. },
  15244. ]
  15245. ))
  15246. characterMakers.push(() => makeCharacter(
  15247. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15248. {
  15249. front: {
  15250. height: math.unit(6, "feet"),
  15251. weight: math.unit(72, "kg"),
  15252. name: "Front",
  15253. image: {
  15254. source: "./media/characters/sleekit/front.svg",
  15255. extra: 4693 / 4487,
  15256. bottom: 0.012
  15257. }
  15258. },
  15259. },
  15260. [
  15261. {
  15262. name: "Minimum Height",
  15263. height: math.unit(10, "meters")
  15264. },
  15265. {
  15266. name: "Smaller",
  15267. height: math.unit(25, "meters")
  15268. },
  15269. {
  15270. name: "Larger",
  15271. height: math.unit(38, "meters"),
  15272. default: true
  15273. },
  15274. {
  15275. name: "Maximum height",
  15276. height: math.unit(100, "meters")
  15277. },
  15278. ]
  15279. ))
  15280. characterMakers.push(() => makeCharacter(
  15281. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15282. {
  15283. front: {
  15284. height: math.unit(6, "feet"),
  15285. weight: math.unit(150, "lb"),
  15286. name: "Front",
  15287. image: {
  15288. source: "./media/characters/nillia/front.svg",
  15289. extra: 2195 / 2037,
  15290. bottom: 0.005
  15291. }
  15292. },
  15293. back: {
  15294. height: math.unit(6, "feet"),
  15295. weight: math.unit(150, "lb"),
  15296. name: "Back",
  15297. image: {
  15298. source: "./media/characters/nillia/back.svg",
  15299. extra: 2195 / 2037,
  15300. bottom: 0.005
  15301. }
  15302. },
  15303. },
  15304. [
  15305. {
  15306. name: "Canon Height",
  15307. height: math.unit(489, "feet"),
  15308. default: true
  15309. }
  15310. ]
  15311. ))
  15312. characterMakers.push(() => makeCharacter(
  15313. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15314. {
  15315. front: {
  15316. height: math.unit(6, "feet"),
  15317. weight: math.unit(150, "lb"),
  15318. name: "Front",
  15319. image: {
  15320. source: "./media/characters/mesmyriza/front.svg",
  15321. extra: 2067 / 1784,
  15322. bottom: 0.035
  15323. }
  15324. },
  15325. foot: {
  15326. height: math.unit(6 / (250 / 35), "feet"),
  15327. name: "Foot",
  15328. image: {
  15329. source: "./media/characters/mesmyriza/foot.svg"
  15330. }
  15331. },
  15332. },
  15333. [
  15334. {
  15335. name: "Macro",
  15336. height: math.unit(457, "meters"),
  15337. default: true
  15338. },
  15339. {
  15340. name: "Megamacro",
  15341. height: math.unit(8, "megameters")
  15342. },
  15343. ]
  15344. ))
  15345. characterMakers.push(() => makeCharacter(
  15346. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15347. {
  15348. front: {
  15349. height: math.unit(6, "feet"),
  15350. weight: math.unit(250, "lb"),
  15351. name: "Front",
  15352. image: {
  15353. source: "./media/characters/saudade/front.svg",
  15354. extra: 1172 / 1139,
  15355. bottom: 0.035
  15356. }
  15357. },
  15358. },
  15359. [
  15360. {
  15361. name: "Micro",
  15362. height: math.unit(3, "inches")
  15363. },
  15364. {
  15365. name: "Normal",
  15366. height: math.unit(6, "feet"),
  15367. default: true
  15368. },
  15369. {
  15370. name: "Macro",
  15371. height: math.unit(50, "feet")
  15372. },
  15373. {
  15374. name: "Megamacro",
  15375. height: math.unit(2800, "feet")
  15376. },
  15377. ]
  15378. ))
  15379. characterMakers.push(() => makeCharacter(
  15380. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15381. {
  15382. front: {
  15383. height: math.unit(5 + 4 / 12, "feet"),
  15384. weight: math.unit(100, "lb"),
  15385. name: "Front",
  15386. image: {
  15387. source: "./media/characters/keireer/front.svg",
  15388. extra: 716 / 666,
  15389. bottom: 0.05
  15390. }
  15391. },
  15392. },
  15393. [
  15394. {
  15395. name: "Normal",
  15396. height: math.unit(5 + 4 / 12, "feet"),
  15397. default: true
  15398. },
  15399. ]
  15400. ))
  15401. characterMakers.push(() => makeCharacter(
  15402. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15403. {
  15404. front: {
  15405. height: math.unit(5.5, "feet"),
  15406. weight: math.unit(90, "kg"),
  15407. name: "Front",
  15408. image: {
  15409. source: "./media/characters/mirja/front.svg",
  15410. extra: 1452/1262,
  15411. bottom: 67/1519
  15412. }
  15413. },
  15414. frontDressed: {
  15415. height: math.unit(5.5, "feet"),
  15416. weight: math.unit(90, "lb"),
  15417. name: "Front (Dressed)",
  15418. image: {
  15419. source: "./media/characters/mirja/dressed.svg",
  15420. extra: 1452/1262,
  15421. bottom: 67/1519
  15422. }
  15423. },
  15424. back: {
  15425. height: math.unit(6, "feet"),
  15426. weight: math.unit(90, "lb"),
  15427. name: "Back",
  15428. image: {
  15429. source: "./media/characters/mirja/back.svg",
  15430. extra: 1892/1795,
  15431. bottom: 48/1940
  15432. }
  15433. },
  15434. maw: {
  15435. height: math.unit(1.312, "feet"),
  15436. name: "Maw",
  15437. image: {
  15438. source: "./media/characters/mirja/maw.svg"
  15439. }
  15440. },
  15441. paw: {
  15442. height: math.unit(1.15, "feet"),
  15443. name: "Paw",
  15444. image: {
  15445. source: "./media/characters/mirja/paw.svg"
  15446. }
  15447. },
  15448. },
  15449. [
  15450. {
  15451. name: "\"Incognito\"",
  15452. height: math.unit(3, "meters")
  15453. },
  15454. {
  15455. name: "Strolling Size",
  15456. height: math.unit(15, "km")
  15457. },
  15458. {
  15459. name: "Larger Strolling Size",
  15460. height: math.unit(400, "km")
  15461. },
  15462. {
  15463. name: "Preferred Size",
  15464. height: math.unit(5000, "km"),
  15465. default: true
  15466. },
  15467. {
  15468. name: "True Size",
  15469. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15470. },
  15471. ]
  15472. ))
  15473. characterMakers.push(() => makeCharacter(
  15474. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15475. {
  15476. front: {
  15477. height: math.unit(15, "feet"),
  15478. weight: math.unit(880, "kg"),
  15479. name: "Front",
  15480. image: {
  15481. source: "./media/characters/nightraver/front.svg",
  15482. extra: 2444 / 2160,
  15483. bottom: 0.027
  15484. }
  15485. },
  15486. back: {
  15487. height: math.unit(15, "feet"),
  15488. weight: math.unit(880, "kg"),
  15489. name: "Back",
  15490. image: {
  15491. source: "./media/characters/nightraver/back.svg",
  15492. extra: 2309 / 2180,
  15493. bottom: 0.005
  15494. }
  15495. },
  15496. sole: {
  15497. height: math.unit(2.878, "feet"),
  15498. name: "Sole",
  15499. image: {
  15500. source: "./media/characters/nightraver/sole.svg"
  15501. }
  15502. },
  15503. foot: {
  15504. height: math.unit(2.285, "feet"),
  15505. name: "Foot",
  15506. image: {
  15507. source: "./media/characters/nightraver/foot.svg"
  15508. }
  15509. },
  15510. maw: {
  15511. height: math.unit(2.67, "feet"),
  15512. name: "Maw",
  15513. image: {
  15514. source: "./media/characters/nightraver/maw.svg"
  15515. }
  15516. },
  15517. },
  15518. [
  15519. {
  15520. name: "Micro",
  15521. height: math.unit(1, "cm")
  15522. },
  15523. {
  15524. name: "Normal",
  15525. height: math.unit(15, "feet"),
  15526. default: true
  15527. },
  15528. {
  15529. name: "Macro",
  15530. height: math.unit(300, "feet")
  15531. },
  15532. {
  15533. name: "Megamacro",
  15534. height: math.unit(300, "miles")
  15535. },
  15536. {
  15537. name: "Gigamacro",
  15538. height: math.unit(10000, "miles")
  15539. },
  15540. ]
  15541. ))
  15542. characterMakers.push(() => makeCharacter(
  15543. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15544. {
  15545. side: {
  15546. height: math.unit(2, "inches"),
  15547. weight: math.unit(5, "grams"),
  15548. name: "Side",
  15549. image: {
  15550. source: "./media/characters/arc/side.svg"
  15551. }
  15552. },
  15553. },
  15554. [
  15555. {
  15556. name: "Micro",
  15557. height: math.unit(2, "inches"),
  15558. default: true
  15559. },
  15560. ]
  15561. ))
  15562. characterMakers.push(() => makeCharacter(
  15563. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15564. {
  15565. front: {
  15566. height: math.unit(1.1938, "meters"),
  15567. weight: math.unit(54, "kg"),
  15568. name: "Front",
  15569. image: {
  15570. source: "./media/characters/nebula-shahar/front.svg",
  15571. extra: 1642 / 1436,
  15572. bottom: 0.06
  15573. }
  15574. },
  15575. },
  15576. [
  15577. {
  15578. name: "Megamicro",
  15579. height: math.unit(0.3, "mm")
  15580. },
  15581. {
  15582. name: "Micro",
  15583. height: math.unit(3, "cm")
  15584. },
  15585. {
  15586. name: "Normal",
  15587. height: math.unit(138, "cm"),
  15588. default: true
  15589. },
  15590. {
  15591. name: "Macro",
  15592. height: math.unit(30, "m")
  15593. },
  15594. ]
  15595. ))
  15596. characterMakers.push(() => makeCharacter(
  15597. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15598. {
  15599. front: {
  15600. height: math.unit(5.24, "feet"),
  15601. weight: math.unit(150, "lb"),
  15602. name: "Front",
  15603. image: {
  15604. source: "./media/characters/shayla/front.svg",
  15605. extra: 1512 / 1414,
  15606. bottom: 0.01
  15607. }
  15608. },
  15609. back: {
  15610. height: math.unit(5.24, "feet"),
  15611. weight: math.unit(150, "lb"),
  15612. name: "Back",
  15613. image: {
  15614. source: "./media/characters/shayla/back.svg",
  15615. extra: 1512 / 1414
  15616. }
  15617. },
  15618. hand: {
  15619. height: math.unit(0.7781496062992126, "feet"),
  15620. name: "Hand",
  15621. image: {
  15622. source: "./media/characters/shayla/hand.svg"
  15623. }
  15624. },
  15625. foot: {
  15626. height: math.unit(1.4206036745406823, "feet"),
  15627. name: "Foot",
  15628. image: {
  15629. source: "./media/characters/shayla/foot.svg"
  15630. }
  15631. },
  15632. },
  15633. [
  15634. {
  15635. name: "Micro",
  15636. height: math.unit(0.32, "feet")
  15637. },
  15638. {
  15639. name: "Normal",
  15640. height: math.unit(5.24, "feet"),
  15641. default: true
  15642. },
  15643. {
  15644. name: "Macro",
  15645. height: math.unit(492.12, "feet")
  15646. },
  15647. {
  15648. name: "Megamacro",
  15649. height: math.unit(186.41, "miles")
  15650. },
  15651. ]
  15652. ))
  15653. characterMakers.push(() => makeCharacter(
  15654. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15655. {
  15656. front: {
  15657. height: math.unit(2.2, "m"),
  15658. weight: math.unit(120, "kg"),
  15659. name: "Front",
  15660. image: {
  15661. source: "./media/characters/pia-jr/front.svg",
  15662. extra: 1000 / 970,
  15663. bottom: 0.035
  15664. }
  15665. },
  15666. hand: {
  15667. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15668. name: "Hand",
  15669. image: {
  15670. source: "./media/characters/pia-jr/hand.svg"
  15671. }
  15672. },
  15673. paw: {
  15674. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15675. name: "Paw",
  15676. image: {
  15677. source: "./media/characters/pia-jr/paw.svg"
  15678. }
  15679. },
  15680. },
  15681. [
  15682. {
  15683. name: "Micro",
  15684. height: math.unit(1.2, "cm")
  15685. },
  15686. {
  15687. name: "Normal",
  15688. height: math.unit(2.2, "m"),
  15689. default: true
  15690. },
  15691. {
  15692. name: "Macro",
  15693. height: math.unit(180, "m")
  15694. },
  15695. {
  15696. name: "Megamacro",
  15697. height: math.unit(420, "km")
  15698. },
  15699. ]
  15700. ))
  15701. characterMakers.push(() => makeCharacter(
  15702. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15703. {
  15704. front: {
  15705. height: math.unit(2, "m"),
  15706. weight: math.unit(115, "kg"),
  15707. name: "Front",
  15708. image: {
  15709. source: "./media/characters/pia-sr/front.svg",
  15710. extra: 760 / 730,
  15711. bottom: 0.015
  15712. }
  15713. },
  15714. back: {
  15715. height: math.unit(2, "m"),
  15716. weight: math.unit(115, "kg"),
  15717. name: "Back",
  15718. image: {
  15719. source: "./media/characters/pia-sr/back.svg",
  15720. extra: 760 / 730,
  15721. bottom: 0.01
  15722. }
  15723. },
  15724. hand: {
  15725. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15726. name: "Hand",
  15727. image: {
  15728. source: "./media/characters/pia-sr/hand.svg"
  15729. }
  15730. },
  15731. foot: {
  15732. height: math.unit(1.83, "feet"),
  15733. name: "Foot",
  15734. image: {
  15735. source: "./media/characters/pia-sr/foot.svg"
  15736. }
  15737. },
  15738. },
  15739. [
  15740. {
  15741. name: "Micro",
  15742. height: math.unit(88, "mm")
  15743. },
  15744. {
  15745. name: "Normal",
  15746. height: math.unit(2, "m"),
  15747. default: true
  15748. },
  15749. {
  15750. name: "Macro",
  15751. height: math.unit(200, "m")
  15752. },
  15753. {
  15754. name: "Megamacro",
  15755. height: math.unit(420, "km")
  15756. },
  15757. ]
  15758. ))
  15759. characterMakers.push(() => makeCharacter(
  15760. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15761. {
  15762. front: {
  15763. height: math.unit(8 + 2 / 12, "feet"),
  15764. weight: math.unit(300, "lb"),
  15765. name: "Front",
  15766. image: {
  15767. source: "./media/characters/kibibyte/front.svg",
  15768. extra: 2221 / 2098,
  15769. bottom: 0.04
  15770. }
  15771. },
  15772. },
  15773. [
  15774. {
  15775. name: "Normal",
  15776. height: math.unit(8 + 2 / 12, "feet"),
  15777. default: true
  15778. },
  15779. {
  15780. name: "Socialable Macro",
  15781. height: math.unit(50, "feet")
  15782. },
  15783. {
  15784. name: "Macro",
  15785. height: math.unit(300, "feet")
  15786. },
  15787. {
  15788. name: "Megamacro",
  15789. height: math.unit(500, "miles")
  15790. },
  15791. ]
  15792. ))
  15793. characterMakers.push(() => makeCharacter(
  15794. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15795. {
  15796. front: {
  15797. height: math.unit(6, "feet"),
  15798. weight: math.unit(150, "lb"),
  15799. name: "Front",
  15800. image: {
  15801. source: "./media/characters/felix/front.svg",
  15802. extra: 762 / 722,
  15803. bottom: 0.02
  15804. }
  15805. },
  15806. frontClothed: {
  15807. height: math.unit(6, "feet"),
  15808. weight: math.unit(150, "lb"),
  15809. name: "Front (Clothed)",
  15810. image: {
  15811. source: "./media/characters/felix/front-clothed.svg",
  15812. extra: 762 / 722,
  15813. bottom: 0.02
  15814. }
  15815. },
  15816. },
  15817. [
  15818. {
  15819. name: "Normal",
  15820. height: math.unit(6 + 8 / 12, "feet"),
  15821. default: true
  15822. },
  15823. {
  15824. name: "Macro",
  15825. height: math.unit(2600, "feet")
  15826. },
  15827. {
  15828. name: "Megamacro",
  15829. height: math.unit(450, "miles")
  15830. },
  15831. ]
  15832. ))
  15833. characterMakers.push(() => makeCharacter(
  15834. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15835. {
  15836. front: {
  15837. height: math.unit(6 + 1 / 12, "feet"),
  15838. weight: math.unit(250, "lb"),
  15839. name: "Front",
  15840. image: {
  15841. source: "./media/characters/tobo/front.svg",
  15842. extra: 608 / 586,
  15843. bottom: 0.023
  15844. }
  15845. },
  15846. back: {
  15847. height: math.unit(6 + 1 / 12, "feet"),
  15848. weight: math.unit(250, "lb"),
  15849. name: "Back",
  15850. image: {
  15851. source: "./media/characters/tobo/back.svg",
  15852. extra: 608 / 586
  15853. }
  15854. },
  15855. },
  15856. [
  15857. {
  15858. name: "Nano",
  15859. height: math.unit(2, "nm")
  15860. },
  15861. {
  15862. name: "Megamicro",
  15863. height: math.unit(0.1, "mm")
  15864. },
  15865. {
  15866. name: "Micro",
  15867. height: math.unit(1, "inch"),
  15868. default: true
  15869. },
  15870. {
  15871. name: "Human-sized",
  15872. height: math.unit(6 + 1 / 12, "feet")
  15873. },
  15874. {
  15875. name: "Macro",
  15876. height: math.unit(250, "feet")
  15877. },
  15878. {
  15879. name: "Megamacro",
  15880. height: math.unit(75, "miles")
  15881. },
  15882. {
  15883. name: "Texas-sized",
  15884. height: math.unit(750, "miles")
  15885. },
  15886. {
  15887. name: "Teramacro",
  15888. height: math.unit(50000, "miles")
  15889. },
  15890. ]
  15891. ))
  15892. characterMakers.push(() => makeCharacter(
  15893. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15894. {
  15895. front: {
  15896. height: math.unit(6, "feet"),
  15897. weight: math.unit(269, "lb"),
  15898. name: "Front",
  15899. image: {
  15900. source: "./media/characters/danny-kapowsky/front.svg",
  15901. extra: 766 / 736,
  15902. bottom: 0.044
  15903. }
  15904. },
  15905. back: {
  15906. height: math.unit(6, "feet"),
  15907. weight: math.unit(269, "lb"),
  15908. name: "Back",
  15909. image: {
  15910. source: "./media/characters/danny-kapowsky/back.svg",
  15911. extra: 797 / 760,
  15912. bottom: 0.025
  15913. }
  15914. },
  15915. },
  15916. [
  15917. {
  15918. name: "Macro",
  15919. height: math.unit(150, "feet"),
  15920. default: true
  15921. },
  15922. {
  15923. name: "Macro+",
  15924. height: math.unit(200, "feet")
  15925. },
  15926. {
  15927. name: "Macro++",
  15928. height: math.unit(300, "feet")
  15929. },
  15930. {
  15931. name: "Macro+++",
  15932. height: math.unit(400, "feet")
  15933. },
  15934. ]
  15935. ))
  15936. characterMakers.push(() => makeCharacter(
  15937. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15938. {
  15939. side: {
  15940. height: math.unit(6, "feet"),
  15941. weight: math.unit(170, "lb"),
  15942. name: "Side",
  15943. image: {
  15944. source: "./media/characters/finn/side.svg",
  15945. extra: 1953 / 1807,
  15946. bottom: 0.057
  15947. }
  15948. },
  15949. },
  15950. [
  15951. {
  15952. name: "Megamacro",
  15953. height: math.unit(14445, "feet"),
  15954. default: true
  15955. },
  15956. ]
  15957. ))
  15958. characterMakers.push(() => makeCharacter(
  15959. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15960. {
  15961. front: {
  15962. height: math.unit(5 + 6 / 12, "feet"),
  15963. weight: math.unit(125, "lb"),
  15964. name: "Front",
  15965. image: {
  15966. source: "./media/characters/roy/front.svg",
  15967. extra: 1,
  15968. bottom: 0.11
  15969. }
  15970. },
  15971. },
  15972. [
  15973. {
  15974. name: "Micro",
  15975. height: math.unit(3, "inches"),
  15976. default: true
  15977. },
  15978. {
  15979. name: "Normal",
  15980. height: math.unit(5 + 6 / 12, "feet")
  15981. },
  15982. {
  15983. name: "Lesser Macro",
  15984. height: math.unit(60, "feet")
  15985. },
  15986. {
  15987. name: "Greater Macro",
  15988. height: math.unit(120, "feet")
  15989. },
  15990. ]
  15991. ))
  15992. characterMakers.push(() => makeCharacter(
  15993. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15994. {
  15995. front: {
  15996. height: math.unit(6, "feet"),
  15997. weight: math.unit(100, "lb"),
  15998. name: "Front",
  15999. image: {
  16000. source: "./media/characters/aevsivs/front.svg",
  16001. extra: 1,
  16002. bottom: 0.03
  16003. }
  16004. },
  16005. back: {
  16006. height: math.unit(6, "feet"),
  16007. weight: math.unit(100, "lb"),
  16008. name: "Back",
  16009. image: {
  16010. source: "./media/characters/aevsivs/back.svg"
  16011. }
  16012. },
  16013. },
  16014. [
  16015. {
  16016. name: "Micro",
  16017. height: math.unit(2, "inches"),
  16018. default: true
  16019. },
  16020. {
  16021. name: "Normal",
  16022. height: math.unit(5, "feet")
  16023. },
  16024. ]
  16025. ))
  16026. characterMakers.push(() => makeCharacter(
  16027. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16028. {
  16029. front: {
  16030. height: math.unit(5 + 7 / 12, "feet"),
  16031. weight: math.unit(159, "lb"),
  16032. name: "Front",
  16033. image: {
  16034. source: "./media/characters/hildegard/front.svg",
  16035. extra: 289 / 269,
  16036. bottom: 7.63 / 297.8
  16037. }
  16038. },
  16039. back: {
  16040. height: math.unit(5 + 7 / 12, "feet"),
  16041. weight: math.unit(159, "lb"),
  16042. name: "Back",
  16043. image: {
  16044. source: "./media/characters/hildegard/back.svg",
  16045. extra: 280 / 260,
  16046. bottom: 2.3 / 282
  16047. }
  16048. },
  16049. },
  16050. [
  16051. {
  16052. name: "Normal",
  16053. height: math.unit(5 + 7 / 12, "feet"),
  16054. default: true
  16055. },
  16056. ]
  16057. ))
  16058. characterMakers.push(() => makeCharacter(
  16059. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16060. {
  16061. bernard: {
  16062. height: math.unit(2 + 7 / 12, "feet"),
  16063. weight: math.unit(66, "lb"),
  16064. name: "Bernard",
  16065. rename: true,
  16066. image: {
  16067. source: "./media/characters/bernard-wilder/bernard.svg",
  16068. extra: 192 / 128,
  16069. bottom: 0.05
  16070. }
  16071. },
  16072. wilder: {
  16073. height: math.unit(5 + 8 / 12, "feet"),
  16074. weight: math.unit(143, "lb"),
  16075. name: "Wilder",
  16076. rename: true,
  16077. image: {
  16078. source: "./media/characters/bernard-wilder/wilder.svg",
  16079. extra: 361 / 312,
  16080. bottom: 0.02
  16081. }
  16082. },
  16083. },
  16084. [
  16085. {
  16086. name: "Normal",
  16087. height: math.unit(2 + 7 / 12, "feet"),
  16088. default: true
  16089. },
  16090. ]
  16091. ))
  16092. characterMakers.push(() => makeCharacter(
  16093. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16094. {
  16095. anthro: {
  16096. height: math.unit(6 + 1 / 12, "feet"),
  16097. weight: math.unit(155, "lb"),
  16098. name: "Anthro",
  16099. image: {
  16100. source: "./media/characters/hearth/anthro.svg",
  16101. extra: 1178/1136,
  16102. bottom: 28/1206
  16103. }
  16104. },
  16105. feral: {
  16106. height: math.unit(3.78, "feet"),
  16107. weight: math.unit(35, "kg"),
  16108. name: "Feral",
  16109. image: {
  16110. source: "./media/characters/hearth/feral.svg",
  16111. extra: 153 / 135,
  16112. bottom: 0.03
  16113. }
  16114. },
  16115. },
  16116. [
  16117. {
  16118. name: "Normal",
  16119. height: math.unit(6 + 1 / 12, "feet"),
  16120. default: true
  16121. },
  16122. ]
  16123. ))
  16124. characterMakers.push(() => makeCharacter(
  16125. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16126. {
  16127. front: {
  16128. height: math.unit(6, "feet"),
  16129. weight: math.unit(182, "lb"),
  16130. name: "Front",
  16131. image: {
  16132. source: "./media/characters/ingrid/front.svg",
  16133. extra: 294 / 268,
  16134. bottom: 0.027
  16135. }
  16136. },
  16137. },
  16138. [
  16139. {
  16140. name: "Normal",
  16141. height: math.unit(6, "feet"),
  16142. default: true
  16143. },
  16144. ]
  16145. ))
  16146. characterMakers.push(() => makeCharacter(
  16147. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16148. {
  16149. eevee: {
  16150. height: math.unit(2 + 10 / 12, "feet"),
  16151. weight: math.unit(86, "lb"),
  16152. name: "Malgam",
  16153. image: {
  16154. source: "./media/characters/malgam/eevee.svg",
  16155. extra: 952/784,
  16156. bottom: 38/990
  16157. }
  16158. },
  16159. sylveon: {
  16160. height: math.unit(4, "feet"),
  16161. weight: math.unit(101, "lb"),
  16162. name: "Future Malgam",
  16163. rename: true,
  16164. image: {
  16165. source: "./media/characters/malgam/sylveon.svg",
  16166. extra: 371 / 325,
  16167. bottom: 0.015
  16168. }
  16169. },
  16170. gigantamax: {
  16171. height: math.unit(50, "feet"),
  16172. name: "Gigantamax Malgam",
  16173. rename: true,
  16174. image: {
  16175. source: "./media/characters/malgam/gigantamax.svg"
  16176. }
  16177. },
  16178. },
  16179. [
  16180. {
  16181. name: "Normal",
  16182. height: math.unit(2 + 10 / 12, "feet"),
  16183. default: true
  16184. },
  16185. ]
  16186. ))
  16187. characterMakers.push(() => makeCharacter(
  16188. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16189. {
  16190. front: {
  16191. height: math.unit(5 + 11 / 12, "feet"),
  16192. weight: math.unit(188, "lb"),
  16193. name: "Front",
  16194. image: {
  16195. source: "./media/characters/fleur/front.svg",
  16196. extra: 309 / 283,
  16197. bottom: 0.007
  16198. }
  16199. },
  16200. },
  16201. [
  16202. {
  16203. name: "Normal",
  16204. height: math.unit(5 + 11 / 12, "feet"),
  16205. default: true
  16206. },
  16207. ]
  16208. ))
  16209. characterMakers.push(() => makeCharacter(
  16210. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16211. {
  16212. front: {
  16213. height: math.unit(5 + 4 / 12, "feet"),
  16214. weight: math.unit(122, "lb"),
  16215. name: "Front",
  16216. image: {
  16217. source: "./media/characters/jude/front.svg",
  16218. extra: 288 / 273,
  16219. bottom: 0.03
  16220. }
  16221. },
  16222. },
  16223. [
  16224. {
  16225. name: "Normal",
  16226. height: math.unit(5 + 4 / 12, "feet"),
  16227. default: true
  16228. },
  16229. ]
  16230. ))
  16231. characterMakers.push(() => makeCharacter(
  16232. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16233. {
  16234. front: {
  16235. height: math.unit(5 + 11 / 12, "feet"),
  16236. weight: math.unit(190, "lb"),
  16237. name: "Front",
  16238. image: {
  16239. source: "./media/characters/seara/front.svg",
  16240. extra: 1,
  16241. bottom: 0.05
  16242. }
  16243. },
  16244. },
  16245. [
  16246. {
  16247. name: "Normal",
  16248. height: math.unit(5 + 11 / 12, "feet"),
  16249. default: true
  16250. },
  16251. ]
  16252. ))
  16253. characterMakers.push(() => makeCharacter(
  16254. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16255. {
  16256. front: {
  16257. height: math.unit(16 + 5 / 12, "feet"),
  16258. weight: math.unit(524, "lb"),
  16259. name: "Front",
  16260. image: {
  16261. source: "./media/characters/caspian-lugia/front.svg",
  16262. extra: 1,
  16263. bottom: 0.04
  16264. }
  16265. },
  16266. },
  16267. [
  16268. {
  16269. name: "Normal",
  16270. height: math.unit(16 + 5 / 12, "feet"),
  16271. default: true
  16272. },
  16273. ]
  16274. ))
  16275. characterMakers.push(() => makeCharacter(
  16276. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16277. {
  16278. front: {
  16279. height: math.unit(5 + 7 / 12, "feet"),
  16280. weight: math.unit(170, "lb"),
  16281. name: "Front",
  16282. image: {
  16283. source: "./media/characters/mika/front.svg",
  16284. extra: 1,
  16285. bottom: 0.016
  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: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16299. {
  16300. front: {
  16301. height: math.unit(6 + 2 / 12, "feet"),
  16302. weight: math.unit(268, "lb"),
  16303. name: "Front",
  16304. image: {
  16305. source: "./media/characters/sol/front.svg",
  16306. extra: 247 / 231,
  16307. bottom: 0.05
  16308. }
  16309. },
  16310. },
  16311. [
  16312. {
  16313. name: "Normal",
  16314. height: math.unit(6 + 2 / 12, "feet"),
  16315. default: true
  16316. },
  16317. ]
  16318. ))
  16319. characterMakers.push(() => makeCharacter(
  16320. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16321. {
  16322. buizel: {
  16323. height: math.unit(2 + 5 / 12, "feet"),
  16324. weight: math.unit(87, "lb"),
  16325. name: "Front",
  16326. image: {
  16327. source: "./media/characters/umiko/buizel.svg",
  16328. extra: 172 / 157,
  16329. bottom: 0.01
  16330. },
  16331. form: "buizel",
  16332. default: true
  16333. },
  16334. floatzel: {
  16335. height: math.unit(5 + 9 / 12, "feet"),
  16336. weight: math.unit(250, "lb"),
  16337. name: "Front",
  16338. image: {
  16339. source: "./media/characters/umiko/floatzel.svg",
  16340. extra: 1076/1006,
  16341. bottom: 15/1091
  16342. },
  16343. form: "floatzel",
  16344. default: true
  16345. },
  16346. },
  16347. [
  16348. {
  16349. name: "Normal",
  16350. height: math.unit(2 + 5 / 12, "feet"),
  16351. form: "buizel",
  16352. default: true
  16353. },
  16354. {
  16355. name: "Normal",
  16356. height: math.unit(5 + 9 / 12, "feet"),
  16357. form: "floatzel",
  16358. default: true
  16359. },
  16360. ],
  16361. {
  16362. "buizel": {
  16363. name: "Buizel"
  16364. },
  16365. "floatzel": {
  16366. name: "Floatzel",
  16367. default: true
  16368. }
  16369. }
  16370. ))
  16371. characterMakers.push(() => makeCharacter(
  16372. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16373. {
  16374. front: {
  16375. height: math.unit(6 + 2 / 12, "feet"),
  16376. weight: math.unit(146, "lb"),
  16377. name: "Front",
  16378. image: {
  16379. source: "./media/characters/iliac/front.svg",
  16380. extra: 389 / 365,
  16381. bottom: 0.035
  16382. }
  16383. },
  16384. },
  16385. [
  16386. {
  16387. name: "Normal",
  16388. height: math.unit(6 + 2 / 12, "feet"),
  16389. default: true
  16390. },
  16391. ]
  16392. ))
  16393. characterMakers.push(() => makeCharacter(
  16394. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16395. {
  16396. front: {
  16397. height: math.unit(6, "feet"),
  16398. weight: math.unit(170, "lb"),
  16399. name: "Front",
  16400. image: {
  16401. source: "./media/characters/topaz/front.svg",
  16402. extra: 317 / 303,
  16403. bottom: 0.055
  16404. }
  16405. },
  16406. },
  16407. [
  16408. {
  16409. name: "Normal",
  16410. height: math.unit(6, "feet"),
  16411. default: true
  16412. },
  16413. ]
  16414. ))
  16415. characterMakers.push(() => makeCharacter(
  16416. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16417. {
  16418. front: {
  16419. height: math.unit(5 + 11 / 12, "feet"),
  16420. weight: math.unit(144, "lb"),
  16421. name: "Front",
  16422. image: {
  16423. source: "./media/characters/gabriel/front.svg",
  16424. extra: 285 / 262,
  16425. bottom: 0.004
  16426. }
  16427. },
  16428. },
  16429. [
  16430. {
  16431. name: "Normal",
  16432. height: math.unit(5 + 11 / 12, "feet"),
  16433. default: true
  16434. },
  16435. ]
  16436. ))
  16437. characterMakers.push(() => makeCharacter(
  16438. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16439. {
  16440. side: {
  16441. height: math.unit(6 + 5 / 12, "feet"),
  16442. weight: math.unit(300, "lb"),
  16443. name: "Side",
  16444. image: {
  16445. source: "./media/characters/tempest-suicune/side.svg",
  16446. extra: 195 / 154,
  16447. bottom: 0.04
  16448. }
  16449. },
  16450. },
  16451. [
  16452. {
  16453. name: "Normal",
  16454. height: math.unit(6 + 5 / 12, "feet"),
  16455. default: true
  16456. },
  16457. ]
  16458. ))
  16459. characterMakers.push(() => makeCharacter(
  16460. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16461. {
  16462. front: {
  16463. height: math.unit(7 + 2 / 12, "feet"),
  16464. weight: math.unit(322, "lb"),
  16465. name: "Front",
  16466. image: {
  16467. source: "./media/characters/vulcan/front.svg",
  16468. extra: 154 / 147,
  16469. bottom: 0.04
  16470. }
  16471. },
  16472. },
  16473. [
  16474. {
  16475. name: "Normal",
  16476. height: math.unit(7 + 2 / 12, "feet"),
  16477. default: true
  16478. },
  16479. ]
  16480. ))
  16481. characterMakers.push(() => makeCharacter(
  16482. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16483. {
  16484. front: {
  16485. height: math.unit(5 + 10 / 12, "feet"),
  16486. weight: math.unit(264, "lb"),
  16487. name: "Front",
  16488. image: {
  16489. source: "./media/characters/gault/front.svg",
  16490. extra: 161 / 140,
  16491. bottom: 0.028
  16492. }
  16493. },
  16494. },
  16495. [
  16496. {
  16497. name: "Normal",
  16498. height: math.unit(5 + 10 / 12, "feet"),
  16499. default: true
  16500. },
  16501. ]
  16502. ))
  16503. characterMakers.push(() => makeCharacter(
  16504. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16505. {
  16506. front: {
  16507. height: math.unit(6, "feet"),
  16508. weight: math.unit(150, "lb"),
  16509. name: "Front",
  16510. image: {
  16511. source: "./media/characters/shard/front.svg",
  16512. extra: 273 / 238,
  16513. bottom: 0.02
  16514. }
  16515. },
  16516. },
  16517. [
  16518. {
  16519. name: "Normal",
  16520. height: math.unit(3 + 6 / 12, "feet"),
  16521. default: true
  16522. },
  16523. ]
  16524. ))
  16525. characterMakers.push(() => makeCharacter(
  16526. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16527. {
  16528. front: {
  16529. height: math.unit(5 + 11 / 12, "feet"),
  16530. weight: math.unit(146, "lb"),
  16531. name: "Front",
  16532. image: {
  16533. source: "./media/characters/ashe/front.svg",
  16534. extra: 400 / 373,
  16535. bottom: 0.01
  16536. }
  16537. },
  16538. },
  16539. [
  16540. {
  16541. name: "Normal",
  16542. height: math.unit(5 + 11 / 12, "feet"),
  16543. default: true
  16544. },
  16545. ]
  16546. ))
  16547. characterMakers.push(() => makeCharacter(
  16548. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16549. {
  16550. front: {
  16551. height: math.unit(5 + 5 / 12, "feet"),
  16552. weight: math.unit(135, "lb"),
  16553. name: "Front",
  16554. image: {
  16555. source: "./media/characters/beatrix/front.svg",
  16556. extra: 392 / 379,
  16557. bottom: 0.01
  16558. }
  16559. },
  16560. },
  16561. [
  16562. {
  16563. name: "Normal",
  16564. height: math.unit(6, "feet"),
  16565. default: true
  16566. },
  16567. ]
  16568. ))
  16569. characterMakers.push(() => makeCharacter(
  16570. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16571. {
  16572. front: {
  16573. height: math.unit(6 + 2/12, "feet"),
  16574. weight: math.unit(135, "lb"),
  16575. name: "Front",
  16576. image: {
  16577. source: "./media/characters/ignatius/front.svg",
  16578. extra: 1380/1259,
  16579. bottom: 27/1407
  16580. }
  16581. },
  16582. },
  16583. [
  16584. {
  16585. name: "Normal",
  16586. height: math.unit(6 + 2/12, "feet"),
  16587. default: true
  16588. },
  16589. ]
  16590. ))
  16591. characterMakers.push(() => makeCharacter(
  16592. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16593. {
  16594. front: {
  16595. height: math.unit(6 + 2 / 12, "feet"),
  16596. weight: math.unit(138, "lb"),
  16597. name: "Front",
  16598. image: {
  16599. source: "./media/characters/mei-li/front.svg",
  16600. extra: 237 / 229,
  16601. bottom: 0.03
  16602. }
  16603. },
  16604. },
  16605. [
  16606. {
  16607. name: "Normal",
  16608. height: math.unit(6 + 2 / 12, "feet"),
  16609. default: true
  16610. },
  16611. ]
  16612. ))
  16613. characterMakers.push(() => makeCharacter(
  16614. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16615. {
  16616. front: {
  16617. height: math.unit(2 + 4 / 12, "feet"),
  16618. weight: math.unit(62, "lb"),
  16619. name: "Front",
  16620. image: {
  16621. source: "./media/characters/puru/front.svg",
  16622. extra: 206 / 149,
  16623. bottom: 0.06
  16624. }
  16625. },
  16626. },
  16627. [
  16628. {
  16629. name: "Normal",
  16630. height: math.unit(2 + 4 / 12, "feet"),
  16631. default: true
  16632. },
  16633. ]
  16634. ))
  16635. characterMakers.push(() => makeCharacter(
  16636. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16637. {
  16638. anthro: {
  16639. height: math.unit(5 + 8/12, "feet"),
  16640. weight: math.unit(200, "lb"),
  16641. energyNeed: math.unit(2000, "kcal"),
  16642. name: "Anthro",
  16643. image: {
  16644. source: "./media/characters/kee/anthro.svg",
  16645. extra: 3251/3184,
  16646. bottom: 250/3501
  16647. }
  16648. },
  16649. taur: {
  16650. height: math.unit(11, "feet"),
  16651. weight: math.unit(500, "lb"),
  16652. energyNeed: math.unit(5000, "kcal"),
  16653. name: "Taur",
  16654. image: {
  16655. source: "./media/characters/kee/taur.svg",
  16656. extra: 1362/1320,
  16657. bottom: 83/1445
  16658. }
  16659. },
  16660. },
  16661. [
  16662. {
  16663. name: "Normal",
  16664. height: math.unit(5 + 8/12, "feet"),
  16665. default: true
  16666. },
  16667. {
  16668. name: "Macro",
  16669. height: math.unit(35, "feet")
  16670. },
  16671. ]
  16672. ))
  16673. characterMakers.push(() => makeCharacter(
  16674. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16675. {
  16676. anthro: {
  16677. height: math.unit(7, "feet"),
  16678. weight: math.unit(190, "lb"),
  16679. name: "Anthro",
  16680. image: {
  16681. source: "./media/characters/cobalt-dracha/anthro.svg",
  16682. extra: 231 / 225,
  16683. bottom: 0.04
  16684. }
  16685. },
  16686. feral: {
  16687. height: math.unit(9 + 7 / 12, "feet"),
  16688. weight: math.unit(294, "lb"),
  16689. name: "Feral",
  16690. image: {
  16691. source: "./media/characters/cobalt-dracha/feral.svg",
  16692. extra: 692 / 633,
  16693. bottom: 0.05
  16694. }
  16695. },
  16696. },
  16697. [
  16698. {
  16699. name: "Normal",
  16700. height: math.unit(7, "feet"),
  16701. default: true
  16702. },
  16703. ]
  16704. ))
  16705. characterMakers.push(() => makeCharacter(
  16706. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16707. {
  16708. fallen: {
  16709. height: math.unit(11 + 8 / 12, "feet"),
  16710. weight: math.unit(485, "lb"),
  16711. name: "Java (Fallen)",
  16712. rename: true,
  16713. image: {
  16714. source: "./media/characters/java/fallen.svg",
  16715. extra: 226 / 208,
  16716. bottom: 0.005
  16717. }
  16718. },
  16719. godkin: {
  16720. height: math.unit(10 + 6 / 12, "feet"),
  16721. weight: math.unit(328, "lb"),
  16722. name: "Java (Godkin)",
  16723. rename: true,
  16724. image: {
  16725. source: "./media/characters/java/godkin.svg",
  16726. extra: 1104/1068,
  16727. bottom: 36/1140
  16728. }
  16729. },
  16730. },
  16731. [
  16732. {
  16733. name: "Normal",
  16734. height: math.unit(11 + 8 / 12, "feet"),
  16735. default: true
  16736. },
  16737. ]
  16738. ))
  16739. characterMakers.push(() => makeCharacter(
  16740. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16741. {
  16742. front: {
  16743. height: math.unit(5 + 9 / 12, "feet"),
  16744. weight: math.unit(170, "lb"),
  16745. name: "Front",
  16746. image: {
  16747. source: "./media/characters/purna/front.svg",
  16748. extra: 239 / 229,
  16749. bottom: 0.01
  16750. }
  16751. },
  16752. },
  16753. [
  16754. {
  16755. name: "Normal",
  16756. height: math.unit(5 + 9 / 12, "feet"),
  16757. default: true
  16758. },
  16759. ]
  16760. ))
  16761. characterMakers.push(() => makeCharacter(
  16762. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16763. {
  16764. front: {
  16765. height: math.unit(5 + 9 / 12, "feet"),
  16766. weight: math.unit(142, "lb"),
  16767. name: "Front",
  16768. image: {
  16769. source: "./media/characters/kuva/front.svg",
  16770. extra: 281 / 271,
  16771. bottom: 0.006
  16772. }
  16773. },
  16774. },
  16775. [
  16776. {
  16777. name: "Normal",
  16778. height: math.unit(5 + 9 / 12, "feet"),
  16779. default: true
  16780. },
  16781. ]
  16782. ))
  16783. characterMakers.push(() => makeCharacter(
  16784. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16785. {
  16786. anthro: {
  16787. height: math.unit(9 + 2 / 12, "feet"),
  16788. weight: math.unit(270, "lb"),
  16789. name: "Anthro",
  16790. image: {
  16791. source: "./media/characters/embra/anthro.svg",
  16792. extra: 200 / 187,
  16793. bottom: 0.02
  16794. }
  16795. },
  16796. feral: {
  16797. height: math.unit(18 + 8 / 12, "feet"),
  16798. weight: math.unit(576, "lb"),
  16799. name: "Feral",
  16800. image: {
  16801. source: "./media/characters/embra/feral.svg",
  16802. extra: 152 / 137,
  16803. bottom: 0.037
  16804. }
  16805. },
  16806. },
  16807. [
  16808. {
  16809. name: "Normal",
  16810. height: math.unit(9 + 2 / 12, "feet"),
  16811. default: true
  16812. },
  16813. ]
  16814. ))
  16815. characterMakers.push(() => makeCharacter(
  16816. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16817. {
  16818. anthro: {
  16819. height: math.unit(10 + 9 / 12, "feet"),
  16820. weight: math.unit(224, "lb"),
  16821. name: "Anthro",
  16822. image: {
  16823. source: "./media/characters/grottos/anthro.svg",
  16824. extra: 350 / 332,
  16825. bottom: 0.045
  16826. }
  16827. },
  16828. feral: {
  16829. height: math.unit(20 + 7 / 12, "feet"),
  16830. weight: math.unit(629, "lb"),
  16831. name: "Feral",
  16832. image: {
  16833. source: "./media/characters/grottos/feral.svg",
  16834. extra: 207 / 190,
  16835. bottom: 0.05
  16836. }
  16837. },
  16838. },
  16839. [
  16840. {
  16841. name: "Normal",
  16842. height: math.unit(10 + 9 / 12, "feet"),
  16843. default: true
  16844. },
  16845. ]
  16846. ))
  16847. characterMakers.push(() => makeCharacter(
  16848. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16849. {
  16850. anthro: {
  16851. height: math.unit(9 + 6 / 12, "feet"),
  16852. weight: math.unit(298, "lb"),
  16853. name: "Anthro",
  16854. image: {
  16855. source: "./media/characters/frifna/anthro.svg",
  16856. extra: 282 / 269,
  16857. bottom: 0.015
  16858. }
  16859. },
  16860. feral: {
  16861. height: math.unit(16 + 2 / 12, "feet"),
  16862. weight: math.unit(624, "lb"),
  16863. name: "Feral",
  16864. image: {
  16865. source: "./media/characters/frifna/feral.svg"
  16866. }
  16867. },
  16868. },
  16869. [
  16870. {
  16871. name: "Normal",
  16872. height: math.unit(9 + 6 / 12, "feet"),
  16873. default: true
  16874. },
  16875. ]
  16876. ))
  16877. characterMakers.push(() => makeCharacter(
  16878. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16879. {
  16880. front: {
  16881. height: math.unit(6 + 2 / 12, "feet"),
  16882. weight: math.unit(168, "lb"),
  16883. name: "Front",
  16884. image: {
  16885. source: "./media/characters/elise/front.svg",
  16886. extra: 276 / 271
  16887. }
  16888. },
  16889. },
  16890. [
  16891. {
  16892. name: "Normal",
  16893. height: math.unit(6 + 2 / 12, "feet"),
  16894. default: true
  16895. },
  16896. ]
  16897. ))
  16898. characterMakers.push(() => makeCharacter(
  16899. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16900. {
  16901. front: {
  16902. height: math.unit(5 + 10 / 12, "feet"),
  16903. weight: math.unit(210, "lb"),
  16904. name: "Front",
  16905. image: {
  16906. source: "./media/characters/glade/front.svg",
  16907. extra: 258 / 247,
  16908. bottom: 0.008
  16909. }
  16910. },
  16911. },
  16912. [
  16913. {
  16914. name: "Normal",
  16915. height: math.unit(5 + 10 / 12, "feet"),
  16916. default: true
  16917. },
  16918. ]
  16919. ))
  16920. characterMakers.push(() => makeCharacter(
  16921. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16922. {
  16923. front: {
  16924. height: math.unit(5 + 10 / 12, "feet"),
  16925. weight: math.unit(129, "lb"),
  16926. name: "Front",
  16927. image: {
  16928. source: "./media/characters/rina/front.svg",
  16929. extra: 266 / 255,
  16930. bottom: 0.005
  16931. }
  16932. },
  16933. },
  16934. [
  16935. {
  16936. name: "Normal",
  16937. height: math.unit(5 + 10 / 12, "feet"),
  16938. default: true
  16939. },
  16940. ]
  16941. ))
  16942. characterMakers.push(() => makeCharacter(
  16943. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16944. {
  16945. front: {
  16946. height: math.unit(6 + 1 / 12, "feet"),
  16947. weight: math.unit(192, "lb"),
  16948. name: "Front",
  16949. image: {
  16950. source: "./media/characters/veronica/front.svg",
  16951. extra: 319 / 309,
  16952. bottom: 0.005
  16953. }
  16954. },
  16955. },
  16956. [
  16957. {
  16958. name: "Normal",
  16959. height: math.unit(6 + 1 / 12, "feet"),
  16960. default: true
  16961. },
  16962. ]
  16963. ))
  16964. characterMakers.push(() => makeCharacter(
  16965. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16966. {
  16967. front: {
  16968. height: math.unit(9 + 3 / 12, "feet"),
  16969. weight: math.unit(1100, "lb"),
  16970. name: "Front",
  16971. image: {
  16972. source: "./media/characters/braxton/front.svg",
  16973. extra: 1057 / 984,
  16974. bottom: 0.05
  16975. }
  16976. },
  16977. },
  16978. [
  16979. {
  16980. name: "Normal",
  16981. height: math.unit(9 + 3 / 12, "feet")
  16982. },
  16983. {
  16984. name: "Giant",
  16985. height: math.unit(300, "feet"),
  16986. default: true
  16987. },
  16988. {
  16989. name: "Macro",
  16990. height: math.unit(700, "feet")
  16991. },
  16992. {
  16993. name: "Megamacro",
  16994. height: math.unit(6000, "feet")
  16995. },
  16996. ]
  16997. ))
  16998. characterMakers.push(() => makeCharacter(
  16999. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17000. {
  17001. front: {
  17002. height: math.unit(6 + 7 / 12, "feet"),
  17003. weight: math.unit(150, "lb"),
  17004. name: "Front",
  17005. image: {
  17006. source: "./media/characters/blue-feyonics/front.svg",
  17007. extra: 1403 / 1306,
  17008. bottom: 0.047
  17009. }
  17010. },
  17011. },
  17012. [
  17013. {
  17014. name: "Normal",
  17015. height: math.unit(6 + 7 / 12, "feet"),
  17016. default: true
  17017. },
  17018. ]
  17019. ))
  17020. characterMakers.push(() => makeCharacter(
  17021. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17022. {
  17023. front: {
  17024. height: math.unit(1.8, "meters"),
  17025. weight: math.unit(60, "kg"),
  17026. name: "Front",
  17027. image: {
  17028. source: "./media/characters/maxwell/front.svg",
  17029. extra: 2060 / 1873
  17030. }
  17031. },
  17032. },
  17033. [
  17034. {
  17035. name: "Micro",
  17036. height: math.unit(1, "mm")
  17037. },
  17038. {
  17039. name: "Normal",
  17040. height: math.unit(1.8, "meter"),
  17041. default: true
  17042. },
  17043. {
  17044. name: "Macro",
  17045. height: math.unit(30, "meters")
  17046. },
  17047. {
  17048. name: "Megamacro",
  17049. height: math.unit(10, "km")
  17050. },
  17051. ]
  17052. ))
  17053. characterMakers.push(() => makeCharacter(
  17054. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17055. {
  17056. front: {
  17057. height: math.unit(6, "feet"),
  17058. weight: math.unit(150, "lb"),
  17059. name: "Front",
  17060. image: {
  17061. source: "./media/characters/jack/front.svg",
  17062. extra: 1754 / 1640,
  17063. bottom: 0.01
  17064. }
  17065. },
  17066. },
  17067. [
  17068. {
  17069. name: "Normal",
  17070. height: math.unit(80000, "feet"),
  17071. default: true
  17072. },
  17073. {
  17074. name: "Max size",
  17075. height: math.unit(10, "lightyears")
  17076. },
  17077. ]
  17078. ))
  17079. characterMakers.push(() => makeCharacter(
  17080. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17081. {
  17082. urban: {
  17083. height: math.unit(5, "feet"),
  17084. weight: math.unit(240, "lb"),
  17085. name: "Urban",
  17086. image: {
  17087. source: "./media/characters/cafat/urban.svg",
  17088. extra: 1223/1126,
  17089. bottom: 205/1428
  17090. }
  17091. },
  17092. summer: {
  17093. height: math.unit(5, "feet"),
  17094. weight: math.unit(240, "lb"),
  17095. name: "Summer",
  17096. image: {
  17097. source: "./media/characters/cafat/summer.svg",
  17098. extra: 1223/1126,
  17099. bottom: 205/1428
  17100. }
  17101. },
  17102. winter: {
  17103. height: math.unit(5, "feet"),
  17104. weight: math.unit(240, "lb"),
  17105. name: "Winter",
  17106. image: {
  17107. source: "./media/characters/cafat/winter.svg",
  17108. extra: 1223/1126,
  17109. bottom: 205/1428
  17110. }
  17111. },
  17112. lingerie: {
  17113. height: math.unit(5, "feet"),
  17114. weight: math.unit(240, "lb"),
  17115. name: "Lingerie",
  17116. image: {
  17117. source: "./media/characters/cafat/lingerie.svg",
  17118. extra: 1223/1126,
  17119. bottom: 205/1428
  17120. }
  17121. },
  17122. upright: {
  17123. height: math.unit(6.3, "feet"),
  17124. weight: math.unit(240, "lb"),
  17125. name: "Upright",
  17126. image: {
  17127. source: "./media/characters/cafat/upright.svg",
  17128. bottom: 0.01
  17129. }
  17130. },
  17131. uprightFull: {
  17132. height: math.unit(6.3, "feet"),
  17133. weight: math.unit(240, "lb"),
  17134. name: "Upright (Full)",
  17135. image: {
  17136. source: "./media/characters/cafat/upright-full.svg",
  17137. bottom: 0.01
  17138. }
  17139. },
  17140. },
  17141. [
  17142. {
  17143. name: "Small",
  17144. height: math.unit(5, "feet"),
  17145. default: true
  17146. },
  17147. {
  17148. name: "Large",
  17149. height: math.unit(13, "feet")
  17150. },
  17151. ]
  17152. ))
  17153. characterMakers.push(() => makeCharacter(
  17154. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17155. {
  17156. front: {
  17157. height: math.unit(6, "feet"),
  17158. weight: math.unit(150, "lb"),
  17159. name: "Front",
  17160. image: {
  17161. source: "./media/characters/verin-raharra/front.svg",
  17162. extra: 5019 / 4835,
  17163. bottom: 0.023
  17164. }
  17165. },
  17166. },
  17167. [
  17168. {
  17169. name: "Normal",
  17170. height: math.unit(7 + 5 / 12, "feet"),
  17171. default: true
  17172. },
  17173. {
  17174. name: "Upsized",
  17175. height: math.unit(20, "feet")
  17176. },
  17177. ]
  17178. ))
  17179. characterMakers.push(() => makeCharacter(
  17180. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17181. {
  17182. front: {
  17183. height: math.unit(7, "feet"),
  17184. weight: math.unit(230, "lb"),
  17185. name: "Front",
  17186. image: {
  17187. source: "./media/characters/nakata/front.svg",
  17188. extra: 1.005,
  17189. bottom: 0.01
  17190. }
  17191. },
  17192. },
  17193. [
  17194. {
  17195. name: "Normal",
  17196. height: math.unit(7, "feet"),
  17197. default: true
  17198. },
  17199. {
  17200. name: "Big",
  17201. height: math.unit(14, "feet")
  17202. },
  17203. {
  17204. name: "Macro",
  17205. height: math.unit(400, "feet")
  17206. },
  17207. ]
  17208. ))
  17209. characterMakers.push(() => makeCharacter(
  17210. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17211. {
  17212. front: {
  17213. height: math.unit(4.91, "feet"),
  17214. weight: math.unit(100, "lb"),
  17215. name: "Front",
  17216. image: {
  17217. source: "./media/characters/lily/front.svg",
  17218. extra: 1585 / 1415,
  17219. bottom: 0.02
  17220. }
  17221. },
  17222. },
  17223. [
  17224. {
  17225. name: "Normal",
  17226. height: math.unit(4.91, "feet"),
  17227. default: true
  17228. },
  17229. ]
  17230. ))
  17231. characterMakers.push(() => makeCharacter(
  17232. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17233. {
  17234. laying: {
  17235. height: math.unit(4 + 4 / 12, "feet"),
  17236. weight: math.unit(600, "lb"),
  17237. name: "Laying",
  17238. image: {
  17239. source: "./media/characters/sheila/laying.svg",
  17240. extra: 1333 / 1265,
  17241. bottom: 0.16
  17242. }
  17243. },
  17244. },
  17245. [
  17246. {
  17247. name: "Normal",
  17248. height: math.unit(4 + 4 / 12, "feet"),
  17249. default: true
  17250. },
  17251. ]
  17252. ))
  17253. characterMakers.push(() => makeCharacter(
  17254. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17255. {
  17256. front: {
  17257. height: math.unit(6, "feet"),
  17258. weight: math.unit(190, "lb"),
  17259. name: "Front",
  17260. image: {
  17261. source: "./media/characters/sax/front.svg",
  17262. extra: 1187 / 973,
  17263. bottom: 0.042
  17264. }
  17265. },
  17266. },
  17267. [
  17268. {
  17269. name: "Micro",
  17270. height: math.unit(4, "inches"),
  17271. default: true
  17272. },
  17273. ]
  17274. ))
  17275. characterMakers.push(() => makeCharacter(
  17276. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17277. {
  17278. front: {
  17279. height: math.unit(6, "feet"),
  17280. weight: math.unit(150, "lb"),
  17281. name: "Front",
  17282. image: {
  17283. source: "./media/characters/pandora/front.svg",
  17284. extra: 2720 / 2556,
  17285. bottom: 0.015
  17286. }
  17287. },
  17288. back: {
  17289. height: math.unit(6, "feet"),
  17290. weight: math.unit(150, "lb"),
  17291. name: "Back",
  17292. image: {
  17293. source: "./media/characters/pandora/back.svg",
  17294. extra: 2720 / 2556,
  17295. bottom: 0.01
  17296. }
  17297. },
  17298. beans: {
  17299. height: math.unit(6 / 8, "feet"),
  17300. name: "Beans",
  17301. image: {
  17302. source: "./media/characters/pandora/beans.svg"
  17303. }
  17304. },
  17305. collar: {
  17306. height: math.unit(0.31, "feet"),
  17307. name: "Collar",
  17308. image: {
  17309. source: "./media/characters/pandora/collar.svg"
  17310. }
  17311. },
  17312. skirt: {
  17313. height: math.unit(6, "feet"),
  17314. weight: math.unit(150, "lb"),
  17315. name: "Skirt",
  17316. image: {
  17317. source: "./media/characters/pandora/skirt.svg",
  17318. extra: 1622 / 1525,
  17319. bottom: 0.015
  17320. }
  17321. },
  17322. hoodie: {
  17323. height: math.unit(6, "feet"),
  17324. weight: math.unit(150, "lb"),
  17325. name: "Hoodie",
  17326. image: {
  17327. source: "./media/characters/pandora/hoodie.svg",
  17328. extra: 1622 / 1525,
  17329. bottom: 0.015
  17330. }
  17331. },
  17332. casual: {
  17333. height: math.unit(6, "feet"),
  17334. weight: math.unit(150, "lb"),
  17335. name: "Casual",
  17336. image: {
  17337. source: "./media/characters/pandora/casual.svg",
  17338. extra: 1622 / 1525,
  17339. bottom: 0.015
  17340. }
  17341. },
  17342. },
  17343. [
  17344. {
  17345. name: "Normal",
  17346. height: math.unit(6, "feet")
  17347. },
  17348. {
  17349. name: "Big Steppy",
  17350. height: math.unit(1, "km"),
  17351. default: true
  17352. },
  17353. {
  17354. name: "Galactic Steppy",
  17355. height: math.unit(2, "gigameters")
  17356. },
  17357. ]
  17358. ))
  17359. characterMakers.push(() => makeCharacter(
  17360. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17361. {
  17362. side: {
  17363. height: math.unit(10, "feet"),
  17364. weight: math.unit(800, "kg"),
  17365. name: "Side",
  17366. image: {
  17367. source: "./media/characters/venio-darcony/side.svg",
  17368. extra: 1373 / 1003,
  17369. bottom: 0.037
  17370. }
  17371. },
  17372. front: {
  17373. height: math.unit(19, "feet"),
  17374. weight: math.unit(800, "kg"),
  17375. name: "Front",
  17376. image: {
  17377. source: "./media/characters/venio-darcony/front.svg"
  17378. }
  17379. },
  17380. back: {
  17381. height: math.unit(19, "feet"),
  17382. weight: math.unit(800, "kg"),
  17383. name: "Back",
  17384. image: {
  17385. source: "./media/characters/venio-darcony/back.svg"
  17386. }
  17387. },
  17388. sideNsfw: {
  17389. height: math.unit(10, "feet"),
  17390. weight: math.unit(800, "kg"),
  17391. name: "Side (NSFW)",
  17392. image: {
  17393. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17394. extra: 1373 / 1003,
  17395. bottom: 0.037
  17396. }
  17397. },
  17398. frontNsfw: {
  17399. height: math.unit(19, "feet"),
  17400. weight: math.unit(800, "kg"),
  17401. name: "Front (NSFW)",
  17402. image: {
  17403. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17404. }
  17405. },
  17406. backNsfw: {
  17407. height: math.unit(19, "feet"),
  17408. weight: math.unit(800, "kg"),
  17409. name: "Back (NSFW)",
  17410. image: {
  17411. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17412. }
  17413. },
  17414. sideArmored: {
  17415. height: math.unit(10, "feet"),
  17416. weight: math.unit(800, "kg"),
  17417. name: "Side (Armored)",
  17418. image: {
  17419. source: "./media/characters/venio-darcony/side-armored.svg",
  17420. extra: 1373 / 1003,
  17421. bottom: 0.037
  17422. }
  17423. },
  17424. frontArmored: {
  17425. height: math.unit(19, "feet"),
  17426. weight: math.unit(900, "kg"),
  17427. name: "Front (Armored)",
  17428. image: {
  17429. source: "./media/characters/venio-darcony/front-armored.svg"
  17430. }
  17431. },
  17432. backArmored: {
  17433. height: math.unit(19, "feet"),
  17434. weight: math.unit(900, "kg"),
  17435. name: "Back (Armored)",
  17436. image: {
  17437. source: "./media/characters/venio-darcony/back-armored.svg"
  17438. }
  17439. },
  17440. sword: {
  17441. height: math.unit(10, "feet"),
  17442. weight: math.unit(50, "lb"),
  17443. name: "Sword",
  17444. image: {
  17445. source: "./media/characters/venio-darcony/sword.svg"
  17446. }
  17447. },
  17448. },
  17449. [
  17450. {
  17451. name: "Normal",
  17452. height: math.unit(10, "feet")
  17453. },
  17454. {
  17455. name: "Macro",
  17456. height: math.unit(130, "feet"),
  17457. default: true
  17458. },
  17459. {
  17460. name: "Macro+",
  17461. height: math.unit(240, "feet")
  17462. },
  17463. ]
  17464. ))
  17465. characterMakers.push(() => makeCharacter(
  17466. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17467. {
  17468. front: {
  17469. height: math.unit(6, "feet"),
  17470. weight: math.unit(150, "lb"),
  17471. name: "Front",
  17472. image: {
  17473. source: "./media/characters/veski/front.svg",
  17474. extra: 1299 / 1225,
  17475. bottom: 0.04
  17476. }
  17477. },
  17478. back: {
  17479. height: math.unit(6, "feet"),
  17480. weight: math.unit(150, "lb"),
  17481. name: "Back",
  17482. image: {
  17483. source: "./media/characters/veski/back.svg",
  17484. extra: 1299 / 1225,
  17485. bottom: 0.008
  17486. }
  17487. },
  17488. maw: {
  17489. height: math.unit(1.5 * 1.21, "feet"),
  17490. name: "Maw",
  17491. image: {
  17492. source: "./media/characters/veski/maw.svg"
  17493. }
  17494. },
  17495. },
  17496. [
  17497. {
  17498. name: "Macro",
  17499. height: math.unit(2, "km"),
  17500. default: true
  17501. },
  17502. ]
  17503. ))
  17504. characterMakers.push(() => makeCharacter(
  17505. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17506. {
  17507. front: {
  17508. height: math.unit(5 + 7 / 12, "feet"),
  17509. name: "Front",
  17510. image: {
  17511. source: "./media/characters/isabelle/front.svg",
  17512. extra: 2130 / 1976,
  17513. bottom: 0.05
  17514. }
  17515. },
  17516. },
  17517. [
  17518. {
  17519. name: "Supermicro",
  17520. height: math.unit(10, "micrometers")
  17521. },
  17522. {
  17523. name: "Micro",
  17524. height: math.unit(1, "inch")
  17525. },
  17526. {
  17527. name: "Tiny",
  17528. height: math.unit(5, "inches")
  17529. },
  17530. {
  17531. name: "Standard",
  17532. height: math.unit(5 + 7 / 12, "inches")
  17533. },
  17534. {
  17535. name: "Macro",
  17536. height: math.unit(80, "meters"),
  17537. default: true
  17538. },
  17539. {
  17540. name: "Megamacro",
  17541. height: math.unit(250, "meters")
  17542. },
  17543. {
  17544. name: "Gigamacro",
  17545. height: math.unit(5, "km")
  17546. },
  17547. {
  17548. name: "Cosmic",
  17549. height: math.unit(2.5e6, "miles")
  17550. },
  17551. ]
  17552. ))
  17553. characterMakers.push(() => makeCharacter(
  17554. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17555. {
  17556. front: {
  17557. height: math.unit(6, "feet"),
  17558. weight: math.unit(150, "lb"),
  17559. name: "Front",
  17560. image: {
  17561. source: "./media/characters/hanzo/front.svg",
  17562. extra: 374 / 344,
  17563. bottom: 0.02
  17564. }
  17565. },
  17566. },
  17567. [
  17568. {
  17569. name: "Normal",
  17570. height: math.unit(8, "feet"),
  17571. default: true
  17572. },
  17573. ]
  17574. ))
  17575. characterMakers.push(() => makeCharacter(
  17576. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17577. {
  17578. front: {
  17579. height: math.unit(7, "feet"),
  17580. weight: math.unit(130, "lb"),
  17581. name: "Front",
  17582. image: {
  17583. source: "./media/characters/anna/front.svg",
  17584. extra: 169 / 145,
  17585. bottom: 0.06
  17586. }
  17587. },
  17588. full: {
  17589. height: math.unit(4.96, "feet"),
  17590. weight: math.unit(220, "lb"),
  17591. name: "Full",
  17592. image: {
  17593. source: "./media/characters/anna/full.svg",
  17594. extra: 138 / 114,
  17595. bottom: 0.15
  17596. }
  17597. },
  17598. tongue: {
  17599. height: math.unit(2.53, "feet"),
  17600. name: "Tongue",
  17601. image: {
  17602. source: "./media/characters/anna/tongue.svg"
  17603. }
  17604. },
  17605. },
  17606. [
  17607. {
  17608. name: "Normal",
  17609. height: math.unit(7, "feet"),
  17610. default: true
  17611. },
  17612. ]
  17613. ))
  17614. characterMakers.push(() => makeCharacter(
  17615. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17616. {
  17617. front: {
  17618. height: math.unit(7, "feet"),
  17619. weight: math.unit(150, "lb"),
  17620. name: "Front",
  17621. image: {
  17622. source: "./media/characters/ian-corvid/front.svg",
  17623. extra: 150 / 142,
  17624. bottom: 0.02
  17625. }
  17626. },
  17627. back: {
  17628. height: math.unit(7, "feet"),
  17629. weight: math.unit(150, "lb"),
  17630. name: "Back",
  17631. image: {
  17632. source: "./media/characters/ian-corvid/back.svg",
  17633. extra: 150 / 143,
  17634. bottom: 0.01
  17635. }
  17636. },
  17637. stomping: {
  17638. height: math.unit(7, "feet"),
  17639. weight: math.unit(150, "lb"),
  17640. name: "Stomping",
  17641. image: {
  17642. source: "./media/characters/ian-corvid/stomping.svg",
  17643. extra: 76 / 72
  17644. }
  17645. },
  17646. sitting: {
  17647. height: math.unit(7 / 1.8, "feet"),
  17648. weight: math.unit(150, "lb"),
  17649. name: "Sitting",
  17650. image: {
  17651. source: "./media/characters/ian-corvid/sitting.svg",
  17652. extra: 1400 / 1269,
  17653. bottom: 0.15
  17654. }
  17655. },
  17656. },
  17657. [
  17658. {
  17659. name: "Tiny Microw",
  17660. height: math.unit(1, "inch")
  17661. },
  17662. {
  17663. name: "Microw",
  17664. height: math.unit(6, "inches")
  17665. },
  17666. {
  17667. name: "Crow",
  17668. height: math.unit(7 + 1 / 12, "feet"),
  17669. default: true
  17670. },
  17671. {
  17672. name: "Macrow",
  17673. height: math.unit(176, "feet")
  17674. },
  17675. ]
  17676. ))
  17677. characterMakers.push(() => makeCharacter(
  17678. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17679. {
  17680. front: {
  17681. height: math.unit(5 + 7 / 12, "feet"),
  17682. weight: math.unit(147, "lb"),
  17683. name: "Front",
  17684. image: {
  17685. source: "./media/characters/natalie-kellon/front.svg",
  17686. extra: 1214 / 1141,
  17687. bottom: 0.02
  17688. }
  17689. },
  17690. },
  17691. [
  17692. {
  17693. name: "Micro",
  17694. height: math.unit(1 / 16, "inch")
  17695. },
  17696. {
  17697. name: "Tiny",
  17698. height: math.unit(4, "inches")
  17699. },
  17700. {
  17701. name: "Normal",
  17702. height: math.unit(5 + 7 / 12, "feet"),
  17703. default: true
  17704. },
  17705. {
  17706. name: "Amazon",
  17707. height: math.unit(12, "feet")
  17708. },
  17709. {
  17710. name: "Giantess",
  17711. height: math.unit(160, "meters")
  17712. },
  17713. {
  17714. name: "Titaness",
  17715. height: math.unit(800, "meters")
  17716. },
  17717. ]
  17718. ))
  17719. characterMakers.push(() => makeCharacter(
  17720. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17721. {
  17722. front: {
  17723. height: math.unit(6, "feet"),
  17724. weight: math.unit(150, "lb"),
  17725. name: "Front",
  17726. image: {
  17727. source: "./media/characters/alluria/front.svg",
  17728. extra: 806 / 738,
  17729. bottom: 0.01
  17730. }
  17731. },
  17732. side: {
  17733. height: math.unit(6, "feet"),
  17734. weight: math.unit(150, "lb"),
  17735. name: "Side",
  17736. image: {
  17737. source: "./media/characters/alluria/side.svg",
  17738. extra: 800 / 750,
  17739. }
  17740. },
  17741. back: {
  17742. height: math.unit(6, "feet"),
  17743. weight: math.unit(150, "lb"),
  17744. name: "Back",
  17745. image: {
  17746. source: "./media/characters/alluria/back.svg",
  17747. extra: 806 / 738,
  17748. }
  17749. },
  17750. frontMaid: {
  17751. height: math.unit(6, "feet"),
  17752. weight: math.unit(150, "lb"),
  17753. name: "Front (Maid)",
  17754. image: {
  17755. source: "./media/characters/alluria/front-maid.svg",
  17756. extra: 806 / 738,
  17757. bottom: 0.01
  17758. }
  17759. },
  17760. sideMaid: {
  17761. height: math.unit(6, "feet"),
  17762. weight: math.unit(150, "lb"),
  17763. name: "Side (Maid)",
  17764. image: {
  17765. source: "./media/characters/alluria/side-maid.svg",
  17766. extra: 800 / 750,
  17767. bottom: 0.005
  17768. }
  17769. },
  17770. backMaid: {
  17771. height: math.unit(6, "feet"),
  17772. weight: math.unit(150, "lb"),
  17773. name: "Back (Maid)",
  17774. image: {
  17775. source: "./media/characters/alluria/back-maid.svg",
  17776. extra: 806 / 738,
  17777. }
  17778. },
  17779. },
  17780. [
  17781. {
  17782. name: "Micro",
  17783. height: math.unit(6, "inches"),
  17784. default: true
  17785. },
  17786. ]
  17787. ))
  17788. characterMakers.push(() => makeCharacter(
  17789. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17790. {
  17791. front: {
  17792. height: math.unit(6, "feet"),
  17793. weight: math.unit(150, "lb"),
  17794. name: "Front",
  17795. image: {
  17796. source: "./media/characters/kyle/front.svg",
  17797. extra: 1069 / 962,
  17798. bottom: 77.228 / 1727.45
  17799. }
  17800. },
  17801. },
  17802. [
  17803. {
  17804. name: "Macro",
  17805. height: math.unit(150, "feet"),
  17806. default: true
  17807. },
  17808. ]
  17809. ))
  17810. characterMakers.push(() => makeCharacter(
  17811. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17812. {
  17813. front: {
  17814. height: math.unit(6, "feet"),
  17815. weight: math.unit(300, "lb"),
  17816. name: "Front",
  17817. image: {
  17818. source: "./media/characters/duncan/front.svg",
  17819. extra: 1650 / 1482,
  17820. bottom: 0.05
  17821. }
  17822. },
  17823. },
  17824. [
  17825. {
  17826. name: "Macro",
  17827. height: math.unit(100, "feet"),
  17828. default: true
  17829. },
  17830. ]
  17831. ))
  17832. characterMakers.push(() => makeCharacter(
  17833. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17834. {
  17835. front: {
  17836. height: math.unit(5 + 4 / 12, "feet"),
  17837. weight: math.unit(220, "lb"),
  17838. name: "Front",
  17839. image: {
  17840. source: "./media/characters/memory/front.svg",
  17841. extra: 3641 / 3545,
  17842. bottom: 0.03
  17843. }
  17844. },
  17845. back: {
  17846. height: math.unit(5 + 4 / 12, "feet"),
  17847. weight: math.unit(220, "lb"),
  17848. name: "Back",
  17849. image: {
  17850. source: "./media/characters/memory/back.svg",
  17851. extra: 3641 / 3545,
  17852. bottom: 0.025
  17853. }
  17854. },
  17855. frontSkirt: {
  17856. height: math.unit(5 + 4 / 12, "feet"),
  17857. weight: math.unit(220, "lb"),
  17858. name: "Front (Skirt)",
  17859. image: {
  17860. source: "./media/characters/memory/front-skirt.svg",
  17861. extra: 3641 / 3545,
  17862. bottom: 0.03
  17863. }
  17864. },
  17865. frontDress: {
  17866. height: math.unit(5 + 4 / 12, "feet"),
  17867. weight: math.unit(220, "lb"),
  17868. name: "Front (Dress)",
  17869. image: {
  17870. source: "./media/characters/memory/front-dress.svg",
  17871. extra: 3641 / 3545,
  17872. bottom: 0.03
  17873. }
  17874. },
  17875. },
  17876. [
  17877. {
  17878. name: "Micro",
  17879. height: math.unit(6, "inches"),
  17880. default: true
  17881. },
  17882. {
  17883. name: "Normal",
  17884. height: math.unit(5 + 4 / 12, "feet")
  17885. },
  17886. ]
  17887. ))
  17888. characterMakers.push(() => makeCharacter(
  17889. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17890. {
  17891. front: {
  17892. height: math.unit(4 + 11 / 12, "feet"),
  17893. weight: math.unit(100, "lb"),
  17894. name: "Front",
  17895. image: {
  17896. source: "./media/characters/luno/front.svg",
  17897. extra: 1535 / 1487,
  17898. bottom: 0.03
  17899. }
  17900. },
  17901. },
  17902. [
  17903. {
  17904. name: "Micro",
  17905. height: math.unit(3, "inches")
  17906. },
  17907. {
  17908. name: "Normal",
  17909. height: math.unit(4 + 11 / 12, "feet"),
  17910. default: true
  17911. },
  17912. {
  17913. name: "Macro",
  17914. height: math.unit(300, "feet")
  17915. },
  17916. {
  17917. name: "Megamacro",
  17918. height: math.unit(700, "miles")
  17919. },
  17920. ]
  17921. ))
  17922. characterMakers.push(() => makeCharacter(
  17923. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17924. {
  17925. front: {
  17926. height: math.unit(6 + 2 / 12, "feet"),
  17927. weight: math.unit(170, "lb"),
  17928. name: "Front",
  17929. image: {
  17930. source: "./media/characters/jamesy/front.svg",
  17931. extra: 440 / 382,
  17932. bottom: 0.005
  17933. }
  17934. },
  17935. },
  17936. [
  17937. {
  17938. name: "Micro",
  17939. height: math.unit(3, "inches")
  17940. },
  17941. {
  17942. name: "Normal",
  17943. height: math.unit(6 + 2 / 12, "feet"),
  17944. default: true
  17945. },
  17946. {
  17947. name: "Macro",
  17948. height: math.unit(300, "feet")
  17949. },
  17950. {
  17951. name: "Megamacro",
  17952. height: math.unit(700, "miles")
  17953. },
  17954. ]
  17955. ))
  17956. characterMakers.push(() => makeCharacter(
  17957. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17958. {
  17959. front: {
  17960. height: math.unit(6, "feet"),
  17961. weight: math.unit(160, "lb"),
  17962. name: "Front",
  17963. image: {
  17964. source: "./media/characters/mark/front.svg",
  17965. extra: 3300 / 3100,
  17966. bottom: 136.42 / 3440.47
  17967. }
  17968. },
  17969. },
  17970. [
  17971. {
  17972. name: "Macro",
  17973. height: math.unit(120, "meters")
  17974. },
  17975. {
  17976. name: "Bigger Macro",
  17977. height: math.unit(350, "meters")
  17978. },
  17979. {
  17980. name: "Megamacro",
  17981. height: math.unit(8, "km"),
  17982. default: true
  17983. },
  17984. {
  17985. name: "Continental",
  17986. height: math.unit(4550, "km")
  17987. },
  17988. {
  17989. name: "Planetary",
  17990. height: math.unit(65000, "km")
  17991. },
  17992. ]
  17993. ))
  17994. characterMakers.push(() => makeCharacter(
  17995. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17996. {
  17997. front: {
  17998. height: math.unit(6, "feet"),
  17999. weight: math.unit(400, "lb"),
  18000. name: "Front",
  18001. image: {
  18002. source: "./media/characters/mac/front.svg",
  18003. extra: 1048 / 987.7,
  18004. bottom: 60 / 1107.6,
  18005. }
  18006. },
  18007. },
  18008. [
  18009. {
  18010. name: "Macro",
  18011. height: math.unit(500, "feet"),
  18012. default: true
  18013. },
  18014. ]
  18015. ))
  18016. characterMakers.push(() => makeCharacter(
  18017. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18018. {
  18019. front: {
  18020. height: math.unit(5 + 2 / 12, "feet"),
  18021. weight: math.unit(190, "lb"),
  18022. name: "Front",
  18023. image: {
  18024. source: "./media/characters/bari/front.svg",
  18025. extra: 3156 / 2880,
  18026. bottom: 0.03
  18027. }
  18028. },
  18029. back: {
  18030. height: math.unit(5 + 2 / 12, "feet"),
  18031. weight: math.unit(190, "lb"),
  18032. name: "Back",
  18033. image: {
  18034. source: "./media/characters/bari/back.svg",
  18035. extra: 3260 / 2834,
  18036. bottom: 0.025
  18037. }
  18038. },
  18039. frontPlush: {
  18040. height: math.unit(5 + 2 / 12, "feet"),
  18041. weight: math.unit(190, "lb"),
  18042. name: "Front (Plush)",
  18043. image: {
  18044. source: "./media/characters/bari/front-plush.svg",
  18045. extra: 1112 / 1061,
  18046. bottom: 0.002
  18047. }
  18048. },
  18049. },
  18050. [
  18051. {
  18052. name: "Micro",
  18053. height: math.unit(3, "inches")
  18054. },
  18055. {
  18056. name: "Normal",
  18057. height: math.unit(5 + 2 / 12, "feet"),
  18058. default: true
  18059. },
  18060. {
  18061. name: "Macro",
  18062. height: math.unit(20, "feet")
  18063. },
  18064. ]
  18065. ))
  18066. characterMakers.push(() => makeCharacter(
  18067. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18068. {
  18069. front: {
  18070. height: math.unit(6 + 1 / 12, "feet"),
  18071. weight: math.unit(275, "lb"),
  18072. name: "Front",
  18073. image: {
  18074. source: "./media/characters/hunter-misha-raven/front.svg"
  18075. }
  18076. },
  18077. },
  18078. [
  18079. {
  18080. name: "Mortal",
  18081. height: math.unit(6 + 1 / 12, "feet")
  18082. },
  18083. {
  18084. name: "Divine",
  18085. height: math.unit(1.12134e34, "parsecs"),
  18086. default: true
  18087. },
  18088. ]
  18089. ))
  18090. characterMakers.push(() => makeCharacter(
  18091. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18092. {
  18093. front: {
  18094. height: math.unit(6 + 3 / 12, "feet"),
  18095. weight: math.unit(220, "lb"),
  18096. name: "Front",
  18097. image: {
  18098. source: "./media/characters/max-calore/front.svg",
  18099. extra: 1700 / 1648,
  18100. bottom: 0.01
  18101. }
  18102. },
  18103. back: {
  18104. height: math.unit(6 + 3 / 12, "feet"),
  18105. weight: math.unit(220, "lb"),
  18106. name: "Back",
  18107. image: {
  18108. source: "./media/characters/max-calore/back.svg",
  18109. extra: 1700 / 1648,
  18110. bottom: 0.01
  18111. }
  18112. },
  18113. },
  18114. [
  18115. {
  18116. name: "Normal",
  18117. height: math.unit(6 + 3 / 12, "feet"),
  18118. default: true
  18119. },
  18120. ]
  18121. ))
  18122. characterMakers.push(() => makeCharacter(
  18123. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18124. {
  18125. side: {
  18126. height: math.unit(2 + 8 / 12, "feet"),
  18127. weight: math.unit(99, "lb"),
  18128. name: "Side",
  18129. image: {
  18130. source: "./media/characters/aspen/side.svg",
  18131. extra: 152 / 138,
  18132. bottom: 0.032
  18133. }
  18134. },
  18135. },
  18136. [
  18137. {
  18138. name: "Normal",
  18139. height: math.unit(2 + 8 / 12, "feet"),
  18140. default: true
  18141. },
  18142. ]
  18143. ))
  18144. characterMakers.push(() => makeCharacter(
  18145. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18146. {
  18147. side: {
  18148. height: math.unit(3 + 2 / 12, "feet"),
  18149. weight: math.unit(224, "lb"),
  18150. name: "Side",
  18151. image: {
  18152. source: "./media/characters/sheila-feral-wolf/side.svg",
  18153. extra: 179 / 166,
  18154. bottom: 0.03
  18155. }
  18156. },
  18157. },
  18158. [
  18159. {
  18160. name: "Normal",
  18161. height: math.unit(3 + 2 / 12, "feet"),
  18162. default: true
  18163. },
  18164. ]
  18165. ))
  18166. characterMakers.push(() => makeCharacter(
  18167. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18168. {
  18169. side: {
  18170. height: math.unit(1 + 9 / 12, "feet"),
  18171. weight: math.unit(38, "lb"),
  18172. name: "Side",
  18173. image: {
  18174. source: "./media/characters/michelle/side.svg",
  18175. extra: 147 / 136.7,
  18176. bottom: 0.03
  18177. }
  18178. },
  18179. },
  18180. [
  18181. {
  18182. name: "Normal",
  18183. height: math.unit(1 + 9 / 12, "feet"),
  18184. default: true
  18185. },
  18186. ]
  18187. ))
  18188. characterMakers.push(() => makeCharacter(
  18189. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18190. {
  18191. front: {
  18192. height: math.unit(1.54, "feet"),
  18193. weight: math.unit(50, "lb"),
  18194. name: "Front",
  18195. image: {
  18196. source: "./media/characters/nino/front.svg"
  18197. }
  18198. },
  18199. },
  18200. [
  18201. {
  18202. name: "Normal",
  18203. height: math.unit(1.54, "feet"),
  18204. default: true
  18205. },
  18206. ]
  18207. ))
  18208. characterMakers.push(() => makeCharacter(
  18209. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18210. {
  18211. front: {
  18212. height: math.unit(1.49, "feet"),
  18213. weight: math.unit(45, "lb"),
  18214. name: "Front",
  18215. image: {
  18216. source: "./media/characters/viola/front.svg"
  18217. }
  18218. },
  18219. },
  18220. [
  18221. {
  18222. name: "Normal",
  18223. height: math.unit(1.49, "feet"),
  18224. default: true
  18225. },
  18226. ]
  18227. ))
  18228. characterMakers.push(() => makeCharacter(
  18229. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18230. {
  18231. front: {
  18232. height: math.unit(6 + 5 / 12, "feet"),
  18233. weight: math.unit(580, "lb"),
  18234. name: "Front",
  18235. image: {
  18236. source: "./media/characters/atlas/front.svg",
  18237. extra: 298.5 / 290,
  18238. bottom: 0.015
  18239. }
  18240. },
  18241. },
  18242. [
  18243. {
  18244. name: "Normal",
  18245. height: math.unit(6 + 5 / 12, "feet"),
  18246. default: true
  18247. },
  18248. ]
  18249. ))
  18250. characterMakers.push(() => makeCharacter(
  18251. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18252. {
  18253. side: {
  18254. height: math.unit(15.6, "inches"),
  18255. weight: math.unit(10, "lb"),
  18256. name: "Side",
  18257. image: {
  18258. source: "./media/characters/davy/side.svg",
  18259. extra: 200 / 170,
  18260. bottom: 0.01
  18261. }
  18262. },
  18263. },
  18264. [
  18265. {
  18266. name: "Normal",
  18267. height: math.unit(15.6, "inches"),
  18268. default: true
  18269. },
  18270. ]
  18271. ))
  18272. characterMakers.push(() => makeCharacter(
  18273. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18274. {
  18275. side: {
  18276. height: math.unit(4 + 8 / 12, "feet"),
  18277. weight: math.unit(166, "lb"),
  18278. name: "Side",
  18279. image: {
  18280. source: "./media/characters/fiona/side.svg",
  18281. extra: 232 / 220,
  18282. bottom: 0.03
  18283. }
  18284. },
  18285. },
  18286. [
  18287. {
  18288. name: "Normal",
  18289. height: math.unit(4 + 8 / 12, "feet"),
  18290. default: true
  18291. },
  18292. ]
  18293. ))
  18294. characterMakers.push(() => makeCharacter(
  18295. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18296. {
  18297. front: {
  18298. height: math.unit(26, "inches"),
  18299. weight: math.unit(35, "lb"),
  18300. name: "Front",
  18301. image: {
  18302. source: "./media/characters/lyla/front.svg",
  18303. bottom: 0.1
  18304. }
  18305. },
  18306. },
  18307. [
  18308. {
  18309. name: "Normal",
  18310. height: math.unit(3, "feet"),
  18311. default: true
  18312. },
  18313. ]
  18314. ))
  18315. characterMakers.push(() => makeCharacter(
  18316. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18317. {
  18318. side: {
  18319. height: math.unit(1.8, "feet"),
  18320. weight: math.unit(44, "lb"),
  18321. name: "Side",
  18322. image: {
  18323. source: "./media/characters/perseus/side.svg",
  18324. bottom: 0.21
  18325. }
  18326. },
  18327. },
  18328. [
  18329. {
  18330. name: "Normal",
  18331. height: math.unit(1.8, "feet"),
  18332. default: true
  18333. },
  18334. ]
  18335. ))
  18336. characterMakers.push(() => makeCharacter(
  18337. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18338. {
  18339. side: {
  18340. height: math.unit(4 + 2 / 12, "feet"),
  18341. weight: math.unit(20, "lb"),
  18342. name: "Side",
  18343. image: {
  18344. source: "./media/characters/remus/side.svg"
  18345. }
  18346. },
  18347. },
  18348. [
  18349. {
  18350. name: "Normal",
  18351. height: math.unit(4 + 2 / 12, "feet"),
  18352. default: true
  18353. },
  18354. ]
  18355. ))
  18356. characterMakers.push(() => makeCharacter(
  18357. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18358. {
  18359. front: {
  18360. height: math.unit(4 + 11 / 12, "feet"),
  18361. weight: math.unit(114, "lb"),
  18362. name: "Front",
  18363. image: {
  18364. source: "./media/characters/raf/front.svg",
  18365. extra: 1504/1339,
  18366. bottom: 26/1530
  18367. }
  18368. },
  18369. side: {
  18370. height: math.unit(4 + 11 / 12, "feet"),
  18371. weight: math.unit(114, "lb"),
  18372. name: "Side",
  18373. image: {
  18374. source: "./media/characters/raf/side.svg",
  18375. extra: 1466/1316,
  18376. bottom: 29/1495
  18377. }
  18378. },
  18379. paw: {
  18380. height: math.unit(1.45, "feet"),
  18381. name: "Paw",
  18382. image: {
  18383. source: "./media/characters/raf/paw.svg"
  18384. },
  18385. extraAttributes: {
  18386. "toeSize": {
  18387. name: "Toe Size",
  18388. power: 2,
  18389. type: "area",
  18390. base: math.unit(0.004, "m^2")
  18391. },
  18392. "padSize": {
  18393. name: "Pad Size",
  18394. power: 2,
  18395. type: "area",
  18396. base: math.unit(0.04, "m^2")
  18397. },
  18398. "footSize": {
  18399. name: "Foot Size",
  18400. power: 2,
  18401. type: "area",
  18402. base: math.unit(0.08, "m^2")
  18403. },
  18404. }
  18405. },
  18406. },
  18407. [
  18408. {
  18409. name: "Micro",
  18410. height: math.unit(2, "inches")
  18411. },
  18412. {
  18413. name: "Normal",
  18414. height: math.unit(4 + 11 / 12, "feet"),
  18415. default: true
  18416. },
  18417. {
  18418. name: "Macro",
  18419. height: math.unit(70, "feet")
  18420. },
  18421. ]
  18422. ))
  18423. characterMakers.push(() => makeCharacter(
  18424. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18425. {
  18426. front: {
  18427. height: math.unit(1.5, "meters"),
  18428. weight: math.unit(68, "kg"),
  18429. name: "Front",
  18430. image: {
  18431. source: "./media/characters/liam-einarr/front.svg",
  18432. extra: 2822 / 2666
  18433. }
  18434. },
  18435. back: {
  18436. height: math.unit(1.5, "meters"),
  18437. weight: math.unit(68, "kg"),
  18438. name: "Back",
  18439. image: {
  18440. source: "./media/characters/liam-einarr/back.svg",
  18441. extra: 2822 / 2666,
  18442. bottom: 0.015
  18443. }
  18444. },
  18445. },
  18446. [
  18447. {
  18448. name: "Normal",
  18449. height: math.unit(1.5, "meters"),
  18450. default: true
  18451. },
  18452. {
  18453. name: "Macro",
  18454. height: math.unit(150, "meters")
  18455. },
  18456. {
  18457. name: "Megamacro",
  18458. height: math.unit(35, "km")
  18459. },
  18460. ]
  18461. ))
  18462. characterMakers.push(() => makeCharacter(
  18463. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18464. {
  18465. front: {
  18466. height: math.unit(6, "feet"),
  18467. weight: math.unit(75, "kg"),
  18468. name: "Front",
  18469. image: {
  18470. source: "./media/characters/linda/front.svg",
  18471. extra: 930 / 874,
  18472. bottom: 0.004
  18473. }
  18474. },
  18475. },
  18476. [
  18477. {
  18478. name: "Normal",
  18479. height: math.unit(6, "feet"),
  18480. default: true
  18481. },
  18482. ]
  18483. ))
  18484. characterMakers.push(() => makeCharacter(
  18485. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18486. {
  18487. front: {
  18488. height: math.unit(6 + 8 / 12, "feet"),
  18489. weight: math.unit(220, "lb"),
  18490. name: "Front",
  18491. image: {
  18492. source: "./media/characters/caylex/front.svg",
  18493. extra: 821 / 772,
  18494. bottom: 0.07
  18495. }
  18496. },
  18497. back: {
  18498. height: math.unit(6 + 8 / 12, "feet"),
  18499. weight: math.unit(220, "lb"),
  18500. name: "Back",
  18501. image: {
  18502. source: "./media/characters/caylex/back.svg",
  18503. extra: 821 / 772,
  18504. bottom: 0.022
  18505. }
  18506. },
  18507. hand: {
  18508. height: math.unit(1.25, "feet"),
  18509. name: "Hand",
  18510. image: {
  18511. source: "./media/characters/caylex/hand.svg"
  18512. }
  18513. },
  18514. foot: {
  18515. height: math.unit(1.6, "feet"),
  18516. name: "Foot",
  18517. image: {
  18518. source: "./media/characters/caylex/foot.svg"
  18519. }
  18520. },
  18521. armored: {
  18522. height: math.unit(6 + 8 / 12, "feet"),
  18523. weight: math.unit(250, "lb"),
  18524. name: "Armored",
  18525. image: {
  18526. source: "./media/characters/caylex/armored.svg",
  18527. extra: 1420 / 1310,
  18528. bottom: 0.045
  18529. }
  18530. },
  18531. },
  18532. [
  18533. {
  18534. name: "Normal",
  18535. height: math.unit(6 + 8 / 12, "feet"),
  18536. default: true
  18537. },
  18538. {
  18539. name: "Normal+",
  18540. height: math.unit(12, "feet")
  18541. },
  18542. ]
  18543. ))
  18544. characterMakers.push(() => makeCharacter(
  18545. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18546. {
  18547. front: {
  18548. height: math.unit(7 + 6 / 12, "feet"),
  18549. weight: math.unit(288, "lb"),
  18550. name: "Front",
  18551. image: {
  18552. source: "./media/characters/alana/front.svg",
  18553. extra: 679 / 653,
  18554. bottom: 22.5 / 701
  18555. }
  18556. },
  18557. },
  18558. [
  18559. {
  18560. name: "Normal",
  18561. height: math.unit(7 + 6 / 12, "feet")
  18562. },
  18563. {
  18564. name: "Large",
  18565. height: math.unit(50, "feet")
  18566. },
  18567. {
  18568. name: "Macro",
  18569. height: math.unit(100, "feet"),
  18570. default: true
  18571. },
  18572. {
  18573. name: "Macro+",
  18574. height: math.unit(200, "feet")
  18575. },
  18576. ]
  18577. ))
  18578. characterMakers.push(() => makeCharacter(
  18579. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18580. {
  18581. front: {
  18582. height: math.unit(6 + 1 / 12, "feet"),
  18583. weight: math.unit(210, "lb"),
  18584. name: "Front",
  18585. image: {
  18586. source: "./media/characters/hasani/front.svg",
  18587. extra: 244 / 232,
  18588. bottom: 0.01
  18589. }
  18590. },
  18591. back: {
  18592. height: math.unit(6 + 1 / 12, "feet"),
  18593. weight: math.unit(210, "lb"),
  18594. name: "Back",
  18595. image: {
  18596. source: "./media/characters/hasani/back.svg",
  18597. extra: 244 / 232,
  18598. bottom: 0.01
  18599. }
  18600. },
  18601. },
  18602. [
  18603. {
  18604. name: "Normal",
  18605. height: math.unit(6 + 1 / 12, "feet")
  18606. },
  18607. {
  18608. name: "Macro",
  18609. height: math.unit(175, "feet"),
  18610. default: true
  18611. },
  18612. ]
  18613. ))
  18614. characterMakers.push(() => makeCharacter(
  18615. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18616. {
  18617. front: {
  18618. height: math.unit(1.82, "meters"),
  18619. weight: math.unit(140, "lb"),
  18620. name: "Front",
  18621. image: {
  18622. source: "./media/characters/nita/front.svg",
  18623. extra: 2473 / 2363,
  18624. bottom: 0.01
  18625. }
  18626. },
  18627. },
  18628. [
  18629. {
  18630. name: "Normal",
  18631. height: math.unit(1.82, "m")
  18632. },
  18633. {
  18634. name: "Macro",
  18635. height: math.unit(300, "m")
  18636. },
  18637. {
  18638. name: "Mistake Canon",
  18639. height: math.unit(0.5, "miles"),
  18640. default: true
  18641. },
  18642. {
  18643. name: "Big Mistake",
  18644. height: math.unit(13, "miles")
  18645. },
  18646. {
  18647. name: "Playing God",
  18648. height: math.unit(2450, "miles")
  18649. },
  18650. ]
  18651. ))
  18652. characterMakers.push(() => makeCharacter(
  18653. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18654. {
  18655. front: {
  18656. height: math.unit(4, "feet"),
  18657. weight: math.unit(120, "lb"),
  18658. name: "Front",
  18659. image: {
  18660. source: "./media/characters/shiriko/front.svg",
  18661. extra: 970/934,
  18662. bottom: 5/975
  18663. }
  18664. },
  18665. },
  18666. [
  18667. {
  18668. name: "Normal",
  18669. height: math.unit(4, "feet"),
  18670. default: true
  18671. },
  18672. ]
  18673. ))
  18674. characterMakers.push(() => makeCharacter(
  18675. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18676. {
  18677. front: {
  18678. height: math.unit(6, "feet"),
  18679. name: "front",
  18680. image: {
  18681. source: "./media/characters/deja/front.svg",
  18682. extra: 926 / 840,
  18683. bottom: 0.07
  18684. }
  18685. },
  18686. },
  18687. [
  18688. {
  18689. name: "Planck Length",
  18690. height: math.unit(1.6e-35, "meters")
  18691. },
  18692. {
  18693. name: "Normal",
  18694. height: math.unit(30.48, "meters"),
  18695. default: true
  18696. },
  18697. {
  18698. name: "Universal",
  18699. height: math.unit(8.8e26, "meters")
  18700. },
  18701. ]
  18702. ))
  18703. characterMakers.push(() => makeCharacter(
  18704. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18705. {
  18706. side: {
  18707. height: math.unit(8, "feet"),
  18708. weight: math.unit(6300, "lb"),
  18709. name: "Side",
  18710. image: {
  18711. source: "./media/characters/anima/side.svg",
  18712. bottom: 0.035
  18713. }
  18714. },
  18715. },
  18716. [
  18717. {
  18718. name: "Normal",
  18719. height: math.unit(8, "feet"),
  18720. default: true
  18721. },
  18722. ]
  18723. ))
  18724. characterMakers.push(() => makeCharacter(
  18725. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18726. {
  18727. front: {
  18728. height: math.unit(8, "feet"),
  18729. weight: math.unit(350, "lb"),
  18730. name: "Front",
  18731. image: {
  18732. source: "./media/characters/bianca/front.svg",
  18733. extra: 234 / 225,
  18734. bottom: 0.03
  18735. }
  18736. },
  18737. },
  18738. [
  18739. {
  18740. name: "Normal",
  18741. height: math.unit(8, "feet"),
  18742. default: true
  18743. },
  18744. ]
  18745. ))
  18746. characterMakers.push(() => makeCharacter(
  18747. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18748. {
  18749. front: {
  18750. height: math.unit(11 + 5/12, "feet"),
  18751. weight: math.unit(1200, "lb"),
  18752. name: "Front",
  18753. image: {
  18754. source: "./media/characters/adinia/front.svg",
  18755. extra: 1767/1641,
  18756. bottom: 44/1811
  18757. },
  18758. extraAttributes: {
  18759. "energyIntake": {
  18760. name: "Energy Intake",
  18761. power: 3,
  18762. type: "energy",
  18763. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18764. },
  18765. }
  18766. },
  18767. back: {
  18768. height: math.unit(11 + 5/12, "feet"),
  18769. weight: math.unit(1200, "lb"),
  18770. name: "Back",
  18771. image: {
  18772. source: "./media/characters/adinia/back.svg",
  18773. extra: 1834/1684,
  18774. bottom: 14/1848
  18775. },
  18776. extraAttributes: {
  18777. "energyIntake": {
  18778. name: "Energy Intake",
  18779. power: 3,
  18780. type: "energy",
  18781. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18782. },
  18783. }
  18784. },
  18785. maw: {
  18786. height: math.unit(3.79, "feet"),
  18787. name: "Maw",
  18788. image: {
  18789. source: "./media/characters/adinia/maw.svg"
  18790. }
  18791. },
  18792. rump: {
  18793. height: math.unit(4.6, "feet"),
  18794. name: "Rump",
  18795. image: {
  18796. source: "./media/characters/adinia/rump.svg"
  18797. }
  18798. },
  18799. },
  18800. [
  18801. {
  18802. name: "Normal",
  18803. height: math.unit(11 + 5 / 12, "feet"),
  18804. default: true
  18805. },
  18806. ]
  18807. ))
  18808. characterMakers.push(() => makeCharacter(
  18809. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18810. {
  18811. front: {
  18812. height: math.unit(3, "meters"),
  18813. weight: math.unit(200, "kg"),
  18814. name: "Front",
  18815. image: {
  18816. source: "./media/characters/lykasa/front.svg",
  18817. extra: 1076 / 976,
  18818. bottom: 0.06
  18819. }
  18820. },
  18821. },
  18822. [
  18823. {
  18824. name: "Normal",
  18825. height: math.unit(3, "meters")
  18826. },
  18827. {
  18828. name: "Kaiju",
  18829. height: math.unit(120, "meters"),
  18830. default: true
  18831. },
  18832. {
  18833. name: "Mega Kaiju",
  18834. height: math.unit(240, "km")
  18835. },
  18836. {
  18837. name: "Giga Kaiju",
  18838. height: math.unit(400, "megameters")
  18839. },
  18840. {
  18841. name: "Tera Kaiju",
  18842. height: math.unit(800, "gigameters")
  18843. },
  18844. {
  18845. name: "Kaiju Dragon Goddess",
  18846. height: math.unit(26, "zettaparsecs")
  18847. },
  18848. ]
  18849. ))
  18850. characterMakers.push(() => makeCharacter(
  18851. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18852. {
  18853. side: {
  18854. height: math.unit(283 / 124 * 6, "feet"),
  18855. weight: math.unit(35000, "lb"),
  18856. name: "Side",
  18857. image: {
  18858. source: "./media/characters/malfaren/side.svg",
  18859. extra: 1310/529,
  18860. bottom: 24/1334
  18861. }
  18862. },
  18863. front: {
  18864. height: math.unit(22.36, "feet"),
  18865. weight: math.unit(35000, "lb"),
  18866. name: "Front",
  18867. image: {
  18868. source: "./media/characters/malfaren/front.svg",
  18869. extra: 1237/1115,
  18870. bottom: 32/1269
  18871. }
  18872. },
  18873. maw: {
  18874. height: math.unit(6.9, "feet"),
  18875. name: "Maw",
  18876. image: {
  18877. source: "./media/characters/malfaren/maw.svg"
  18878. }
  18879. },
  18880. dick: {
  18881. height: math.unit(6.19, "feet"),
  18882. name: "Dick",
  18883. image: {
  18884. source: "./media/characters/malfaren/dick.svg"
  18885. }
  18886. },
  18887. eye: {
  18888. height: math.unit(0.69, "feet"),
  18889. name: "Eye",
  18890. image: {
  18891. source: "./media/characters/malfaren/eye.svg"
  18892. }
  18893. },
  18894. },
  18895. [
  18896. {
  18897. name: "Big",
  18898. height: math.unit(283 / 162 * 6, "feet"),
  18899. },
  18900. {
  18901. name: "Bigger",
  18902. height: math.unit(283 / 124 * 6, "feet")
  18903. },
  18904. {
  18905. name: "Massive",
  18906. height: math.unit(283 / 92 * 6, "feet"),
  18907. default: true
  18908. },
  18909. {
  18910. name: "👀💦",
  18911. height: math.unit(283 / 73 * 6, "feet"),
  18912. },
  18913. ]
  18914. ))
  18915. characterMakers.push(() => makeCharacter(
  18916. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18917. {
  18918. front: {
  18919. height: math.unit(1.7, "m"),
  18920. weight: math.unit(70, "kg"),
  18921. name: "Front",
  18922. image: {
  18923. source: "./media/characters/kernel/front.svg",
  18924. extra: 222 / 210,
  18925. bottom: 0.007
  18926. }
  18927. },
  18928. },
  18929. [
  18930. {
  18931. name: "Nano",
  18932. height: math.unit(17, "micrometers")
  18933. },
  18934. {
  18935. name: "Micro",
  18936. height: math.unit(1.7, "mm")
  18937. },
  18938. {
  18939. name: "Small",
  18940. height: math.unit(1.7, "cm")
  18941. },
  18942. {
  18943. name: "Normal",
  18944. height: math.unit(1.7, "m"),
  18945. default: true
  18946. },
  18947. ]
  18948. ))
  18949. characterMakers.push(() => makeCharacter(
  18950. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18951. {
  18952. front: {
  18953. height: math.unit(1.75, "meters"),
  18954. weight: math.unit(65, "kg"),
  18955. name: "Front",
  18956. image: {
  18957. source: "./media/characters/jayne-folest/front.svg",
  18958. extra: 2115 / 2007,
  18959. bottom: 0.02
  18960. }
  18961. },
  18962. back: {
  18963. height: math.unit(1.75, "meters"),
  18964. weight: math.unit(65, "kg"),
  18965. name: "Back",
  18966. image: {
  18967. source: "./media/characters/jayne-folest/back.svg",
  18968. extra: 2115 / 2007,
  18969. bottom: 0.005
  18970. }
  18971. },
  18972. frontClothed: {
  18973. height: math.unit(1.75, "meters"),
  18974. weight: math.unit(65, "kg"),
  18975. name: "Front (Clothed)",
  18976. image: {
  18977. source: "./media/characters/jayne-folest/front-clothed.svg",
  18978. extra: 2115 / 2007,
  18979. bottom: 0.035
  18980. }
  18981. },
  18982. hand: {
  18983. height: math.unit(1 / 1.260, "feet"),
  18984. name: "Hand",
  18985. image: {
  18986. source: "./media/characters/jayne-folest/hand.svg"
  18987. }
  18988. },
  18989. foot: {
  18990. height: math.unit(1 / 0.918, "feet"),
  18991. name: "Foot",
  18992. image: {
  18993. source: "./media/characters/jayne-folest/foot.svg"
  18994. }
  18995. },
  18996. },
  18997. [
  18998. {
  18999. name: "Micro",
  19000. height: math.unit(4, "cm")
  19001. },
  19002. {
  19003. name: "Normal",
  19004. height: math.unit(1.75, "meters")
  19005. },
  19006. {
  19007. name: "Macro",
  19008. height: math.unit(47.5, "meters"),
  19009. default: true
  19010. },
  19011. ]
  19012. ))
  19013. characterMakers.push(() => makeCharacter(
  19014. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19015. {
  19016. front: {
  19017. height: math.unit(180, "cm"),
  19018. weight: math.unit(70, "kg"),
  19019. name: "Front",
  19020. image: {
  19021. source: "./media/characters/algier/front.svg",
  19022. extra: 596 / 572,
  19023. bottom: 0.04
  19024. }
  19025. },
  19026. back: {
  19027. height: math.unit(180, "cm"),
  19028. weight: math.unit(70, "kg"),
  19029. name: "Back",
  19030. image: {
  19031. source: "./media/characters/algier/back.svg",
  19032. extra: 596 / 572,
  19033. bottom: 0.025
  19034. }
  19035. },
  19036. frontdressed: {
  19037. height: math.unit(180, "cm"),
  19038. weight: math.unit(150, "kg"),
  19039. name: "Front-dressed",
  19040. image: {
  19041. source: "./media/characters/algier/front-dressed.svg",
  19042. extra: 596 / 572,
  19043. bottom: 0.038
  19044. }
  19045. },
  19046. },
  19047. [
  19048. {
  19049. name: "Micro",
  19050. height: math.unit(5, "cm")
  19051. },
  19052. {
  19053. name: "Normal",
  19054. height: math.unit(180, "cm"),
  19055. default: true
  19056. },
  19057. {
  19058. name: "Macro",
  19059. height: math.unit(64, "m")
  19060. },
  19061. ]
  19062. ))
  19063. characterMakers.push(() => makeCharacter(
  19064. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19065. {
  19066. upright: {
  19067. height: math.unit(7, "feet"),
  19068. weight: math.unit(300, "lb"),
  19069. name: "Upright",
  19070. image: {
  19071. source: "./media/characters/pretzel/upright.svg",
  19072. extra: 534 / 522,
  19073. bottom: 0.065
  19074. }
  19075. },
  19076. sprawling: {
  19077. height: math.unit(3.75, "feet"),
  19078. weight: math.unit(300, "lb"),
  19079. name: "Sprawling",
  19080. image: {
  19081. source: "./media/characters/pretzel/sprawling.svg",
  19082. extra: 314 / 281,
  19083. bottom: 0.1
  19084. }
  19085. },
  19086. tongue: {
  19087. height: math.unit(2, "feet"),
  19088. name: "Tongue",
  19089. image: {
  19090. source: "./media/characters/pretzel/tongue.svg"
  19091. }
  19092. },
  19093. },
  19094. [
  19095. {
  19096. name: "Normal",
  19097. height: math.unit(7, "feet"),
  19098. default: true
  19099. },
  19100. {
  19101. name: "Oversized",
  19102. height: math.unit(15, "feet")
  19103. },
  19104. {
  19105. name: "Huge",
  19106. height: math.unit(30, "feet")
  19107. },
  19108. {
  19109. name: "Macro",
  19110. height: math.unit(250, "feet")
  19111. },
  19112. ]
  19113. ))
  19114. characterMakers.push(() => makeCharacter(
  19115. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19116. {
  19117. sideFront: {
  19118. height: math.unit(5 + 2 / 12, "feet"),
  19119. weight: math.unit(120, "lb"),
  19120. name: "Front Side",
  19121. image: {
  19122. source: "./media/characters/roxi/side-front.svg",
  19123. extra: 2924 / 2717,
  19124. bottom: 0.08
  19125. }
  19126. },
  19127. sideBack: {
  19128. height: math.unit(5 + 2 / 12, "feet"),
  19129. weight: math.unit(120, "lb"),
  19130. name: "Back Side",
  19131. image: {
  19132. source: "./media/characters/roxi/side-back.svg",
  19133. extra: 2904 / 2693,
  19134. bottom: 0.06
  19135. }
  19136. },
  19137. front: {
  19138. height: math.unit(5 + 2 / 12, "feet"),
  19139. weight: math.unit(120, "lb"),
  19140. name: "Front",
  19141. image: {
  19142. source: "./media/characters/roxi/front.svg",
  19143. extra: 2028 / 1907,
  19144. bottom: 0.01
  19145. }
  19146. },
  19147. frontAlt: {
  19148. height: math.unit(5 + 2 / 12, "feet"),
  19149. weight: math.unit(120, "lb"),
  19150. name: "Front (Alt)",
  19151. image: {
  19152. source: "./media/characters/roxi/front-alt.svg",
  19153. extra: 1828 / 1798,
  19154. bottom: 0.01
  19155. }
  19156. },
  19157. sitting: {
  19158. height: math.unit(2.8, "feet"),
  19159. weight: math.unit(120, "lb"),
  19160. name: "Sitting",
  19161. image: {
  19162. source: "./media/characters/roxi/sitting.svg",
  19163. extra: 2660 / 2462,
  19164. bottom: 0.1
  19165. }
  19166. },
  19167. },
  19168. [
  19169. {
  19170. name: "Normal",
  19171. height: math.unit(5 + 2 / 12, "feet"),
  19172. default: true
  19173. },
  19174. ]
  19175. ))
  19176. characterMakers.push(() => makeCharacter(
  19177. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19178. {
  19179. side: {
  19180. height: math.unit(55, "feet"),
  19181. weight: math.unit(153, "tons"),
  19182. name: "Side",
  19183. image: {
  19184. source: "./media/characters/shadow/side.svg",
  19185. extra: 701 / 628,
  19186. bottom: 0.02
  19187. }
  19188. },
  19189. flying: {
  19190. height: math.unit(145, "feet"),
  19191. weight: math.unit(153, "tons"),
  19192. name: "Flying",
  19193. image: {
  19194. source: "./media/characters/shadow/flying.svg"
  19195. }
  19196. },
  19197. },
  19198. [
  19199. {
  19200. name: "Normal",
  19201. height: math.unit(55, "feet"),
  19202. default: true
  19203. },
  19204. ]
  19205. ))
  19206. characterMakers.push(() => makeCharacter(
  19207. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19208. {
  19209. front: {
  19210. height: math.unit(6, "feet"),
  19211. weight: math.unit(200, "lb"),
  19212. name: "Front",
  19213. image: {
  19214. source: "./media/characters/marcie/front.svg",
  19215. extra: 960 / 876,
  19216. bottom: 58 / 1017.87
  19217. }
  19218. },
  19219. },
  19220. [
  19221. {
  19222. name: "Macro",
  19223. height: math.unit(1, "mile"),
  19224. default: true
  19225. },
  19226. ]
  19227. ))
  19228. characterMakers.push(() => makeCharacter(
  19229. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19230. {
  19231. front: {
  19232. height: math.unit(7, "feet"),
  19233. weight: math.unit(200, "lb"),
  19234. name: "Front",
  19235. image: {
  19236. source: "./media/characters/kachina/front.svg",
  19237. extra: 1290.68 / 1119,
  19238. bottom: 36.5 / 1327.18
  19239. }
  19240. },
  19241. },
  19242. [
  19243. {
  19244. name: "Normal",
  19245. height: math.unit(7, "feet"),
  19246. default: true
  19247. },
  19248. ]
  19249. ))
  19250. characterMakers.push(() => makeCharacter(
  19251. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19252. {
  19253. looking: {
  19254. height: math.unit(2, "meters"),
  19255. weight: math.unit(300, "kg"),
  19256. name: "Looking",
  19257. image: {
  19258. source: "./media/characters/kash/looking.svg",
  19259. extra: 474 / 344,
  19260. bottom: 0.03
  19261. }
  19262. },
  19263. side: {
  19264. height: math.unit(2, "meters"),
  19265. weight: math.unit(300, "kg"),
  19266. name: "Side",
  19267. image: {
  19268. source: "./media/characters/kash/side.svg",
  19269. extra: 302 / 251,
  19270. bottom: 0.03
  19271. }
  19272. },
  19273. front: {
  19274. height: math.unit(2, "meters"),
  19275. weight: math.unit(300, "kg"),
  19276. name: "Front",
  19277. image: {
  19278. source: "./media/characters/kash/front.svg",
  19279. extra: 495 / 360,
  19280. bottom: 0.015
  19281. }
  19282. },
  19283. },
  19284. [
  19285. {
  19286. name: "Normal",
  19287. height: math.unit(2, "meters"),
  19288. default: true
  19289. },
  19290. {
  19291. name: "Big",
  19292. height: math.unit(3, "meters")
  19293. },
  19294. {
  19295. name: "Large",
  19296. height: math.unit(5, "meters")
  19297. },
  19298. ]
  19299. ))
  19300. characterMakers.push(() => makeCharacter(
  19301. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19302. {
  19303. feeding: {
  19304. height: math.unit(6.7, "feet"),
  19305. weight: math.unit(350, "lb"),
  19306. name: "Feeding",
  19307. image: {
  19308. source: "./media/characters/lalim/feeding.svg",
  19309. }
  19310. },
  19311. },
  19312. [
  19313. {
  19314. name: "Normal",
  19315. height: math.unit(6.7, "feet"),
  19316. default: true
  19317. },
  19318. ]
  19319. ))
  19320. characterMakers.push(() => makeCharacter(
  19321. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19322. {
  19323. front: {
  19324. height: math.unit(9.5, "feet"),
  19325. weight: math.unit(600, "lb"),
  19326. name: "Front",
  19327. image: {
  19328. source: "./media/characters/de'vout/front.svg",
  19329. extra: 1443 / 1328,
  19330. bottom: 0.025
  19331. }
  19332. },
  19333. back: {
  19334. height: math.unit(9.5, "feet"),
  19335. weight: math.unit(600, "lb"),
  19336. name: "Back",
  19337. image: {
  19338. source: "./media/characters/de'vout/back.svg",
  19339. extra: 1443 / 1328
  19340. }
  19341. },
  19342. frontDressed: {
  19343. height: math.unit(9.5, "feet"),
  19344. weight: math.unit(600, "lb"),
  19345. name: "Front (Dressed",
  19346. image: {
  19347. source: "./media/characters/de'vout/front-dressed.svg",
  19348. extra: 1443 / 1328,
  19349. bottom: 0.025
  19350. }
  19351. },
  19352. backDressed: {
  19353. height: math.unit(9.5, "feet"),
  19354. weight: math.unit(600, "lb"),
  19355. name: "Back (Dressed",
  19356. image: {
  19357. source: "./media/characters/de'vout/back-dressed.svg",
  19358. extra: 1443 / 1328
  19359. }
  19360. },
  19361. },
  19362. [
  19363. {
  19364. name: "Normal",
  19365. height: math.unit(9.5, "feet"),
  19366. default: true
  19367. },
  19368. ]
  19369. ))
  19370. characterMakers.push(() => makeCharacter(
  19371. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19372. {
  19373. front: {
  19374. height: math.unit(8, "feet"),
  19375. weight: math.unit(225, "lb"),
  19376. name: "Front",
  19377. image: {
  19378. source: "./media/characters/talana/front.svg",
  19379. extra: 1410 / 1300,
  19380. bottom: 0.015
  19381. }
  19382. },
  19383. frontDressed: {
  19384. height: math.unit(8, "feet"),
  19385. weight: math.unit(225, "lb"),
  19386. name: "Front (Dressed",
  19387. image: {
  19388. source: "./media/characters/talana/front-dressed.svg",
  19389. extra: 1410 / 1300,
  19390. bottom: 0.015
  19391. }
  19392. },
  19393. },
  19394. [
  19395. {
  19396. name: "Normal",
  19397. height: math.unit(8, "feet"),
  19398. default: true
  19399. },
  19400. ]
  19401. ))
  19402. characterMakers.push(() => makeCharacter(
  19403. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19404. {
  19405. side: {
  19406. height: math.unit(7.2, "feet"),
  19407. weight: math.unit(150, "lb"),
  19408. name: "Side",
  19409. image: {
  19410. source: "./media/characters/xeauvok/side.svg",
  19411. extra: 1975 / 1523,
  19412. bottom: 0.07
  19413. }
  19414. },
  19415. },
  19416. [
  19417. {
  19418. name: "Normal",
  19419. height: math.unit(7.2, "feet"),
  19420. default: true
  19421. },
  19422. ]
  19423. ))
  19424. characterMakers.push(() => makeCharacter(
  19425. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19426. {
  19427. side: {
  19428. height: math.unit(4, "meters"),
  19429. weight: math.unit(2200, "kg"),
  19430. name: "Side",
  19431. image: {
  19432. source: "./media/characters/zara/side.svg",
  19433. extra: 765/744,
  19434. bottom: 156/921
  19435. }
  19436. },
  19437. },
  19438. [
  19439. {
  19440. name: "Normal",
  19441. height: math.unit(4, "meters"),
  19442. default: true
  19443. },
  19444. ]
  19445. ))
  19446. characterMakers.push(() => makeCharacter(
  19447. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19448. {
  19449. side: {
  19450. height: math.unit(6, "feet"),
  19451. weight: math.unit(150, "lb"),
  19452. name: "Side",
  19453. image: {
  19454. source: "./media/characters/richard-dragon/side.svg",
  19455. extra: 845 / 340,
  19456. bottom: 0.017
  19457. }
  19458. },
  19459. maw: {
  19460. height: math.unit(2.97, "feet"),
  19461. name: "Maw",
  19462. image: {
  19463. source: "./media/characters/richard-dragon/maw.svg"
  19464. }
  19465. },
  19466. },
  19467. [
  19468. ]
  19469. ))
  19470. characterMakers.push(() => makeCharacter(
  19471. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19472. {
  19473. front: {
  19474. height: math.unit(4, "feet"),
  19475. weight: math.unit(100, "lb"),
  19476. name: "Front",
  19477. image: {
  19478. source: "./media/characters/richard-smeargle/front.svg",
  19479. extra: 2952 / 2820,
  19480. bottom: 0.028
  19481. }
  19482. },
  19483. },
  19484. [
  19485. {
  19486. name: "Normal",
  19487. height: math.unit(4, "feet"),
  19488. default: true
  19489. },
  19490. {
  19491. name: "Dynamax",
  19492. height: math.unit(20, "meters")
  19493. },
  19494. ]
  19495. ))
  19496. characterMakers.push(() => makeCharacter(
  19497. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19498. {
  19499. front: {
  19500. height: math.unit(6, "feet"),
  19501. weight: math.unit(110, "lb"),
  19502. name: "Front",
  19503. image: {
  19504. source: "./media/characters/klay/front.svg",
  19505. extra: 962 / 883,
  19506. bottom: 0.04
  19507. }
  19508. },
  19509. back: {
  19510. height: math.unit(6, "feet"),
  19511. weight: math.unit(110, "lb"),
  19512. name: "Back",
  19513. image: {
  19514. source: "./media/characters/klay/back.svg",
  19515. extra: 962 / 883
  19516. }
  19517. },
  19518. beans: {
  19519. height: math.unit(1.15, "feet"),
  19520. name: "Beans",
  19521. image: {
  19522. source: "./media/characters/klay/beans.svg"
  19523. }
  19524. },
  19525. },
  19526. [
  19527. {
  19528. name: "Micro",
  19529. height: math.unit(6, "inches")
  19530. },
  19531. {
  19532. name: "Mini",
  19533. height: math.unit(3, "feet")
  19534. },
  19535. {
  19536. name: "Normal",
  19537. height: math.unit(6, "feet"),
  19538. default: true
  19539. },
  19540. {
  19541. name: "Big",
  19542. height: math.unit(25, "feet")
  19543. },
  19544. {
  19545. name: "Macro",
  19546. height: math.unit(100, "feet")
  19547. },
  19548. {
  19549. name: "Megamacro",
  19550. height: math.unit(400, "feet")
  19551. },
  19552. ]
  19553. ))
  19554. characterMakers.push(() => makeCharacter(
  19555. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19556. {
  19557. front: {
  19558. height: math.unit(6, "feet"),
  19559. weight: math.unit(160, "lb"),
  19560. name: "Front",
  19561. image: {
  19562. source: "./media/characters/marcus/front.svg",
  19563. extra: 734 / 676,
  19564. bottom: 0.03
  19565. }
  19566. },
  19567. },
  19568. [
  19569. {
  19570. name: "Little",
  19571. height: math.unit(6, "feet")
  19572. },
  19573. {
  19574. name: "Normal",
  19575. height: math.unit(110, "feet"),
  19576. default: true
  19577. },
  19578. {
  19579. name: "Macro",
  19580. height: math.unit(250, "feet")
  19581. },
  19582. {
  19583. name: "Megamacro",
  19584. height: math.unit(1000, "feet")
  19585. },
  19586. ]
  19587. ))
  19588. characterMakers.push(() => makeCharacter(
  19589. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19590. {
  19591. front: {
  19592. height: math.unit(7, "feet"),
  19593. weight: math.unit(275, "lb"),
  19594. name: "Front",
  19595. image: {
  19596. source: "./media/characters/claude-delroute/front.svg",
  19597. extra: 902/827,
  19598. bottom: 26/928
  19599. }
  19600. },
  19601. side: {
  19602. height: math.unit(7, "feet"),
  19603. weight: math.unit(275, "lb"),
  19604. name: "Side",
  19605. image: {
  19606. source: "./media/characters/claude-delroute/side.svg",
  19607. extra: 908/853,
  19608. bottom: 16/924
  19609. }
  19610. },
  19611. back: {
  19612. height: math.unit(7, "feet"),
  19613. weight: math.unit(275, "lb"),
  19614. name: "Back",
  19615. image: {
  19616. source: "./media/characters/claude-delroute/back.svg",
  19617. extra: 911/829,
  19618. bottom: 18/929
  19619. }
  19620. },
  19621. maw: {
  19622. height: math.unit(0.6407, "meters"),
  19623. name: "Maw",
  19624. image: {
  19625. source: "./media/characters/claude-delroute/maw.svg"
  19626. }
  19627. },
  19628. },
  19629. [
  19630. {
  19631. name: "Normal",
  19632. height: math.unit(7, "feet"),
  19633. default: true
  19634. },
  19635. {
  19636. name: "Lorge",
  19637. height: math.unit(20, "feet")
  19638. },
  19639. ]
  19640. ))
  19641. characterMakers.push(() => makeCharacter(
  19642. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19643. {
  19644. front: {
  19645. height: math.unit(8 + 4 / 12, "feet"),
  19646. weight: math.unit(600, "lb"),
  19647. name: "Front",
  19648. image: {
  19649. source: "./media/characters/dragonien/front.svg",
  19650. extra: 100 / 94,
  19651. bottom: 3.3 / 103.3445
  19652. }
  19653. },
  19654. back: {
  19655. height: math.unit(8 + 4 / 12, "feet"),
  19656. weight: math.unit(600, "lb"),
  19657. name: "Back",
  19658. image: {
  19659. source: "./media/characters/dragonien/back.svg",
  19660. extra: 776 / 746,
  19661. bottom: 6.4 / 782.0616
  19662. }
  19663. },
  19664. foot: {
  19665. height: math.unit(1.54, "feet"),
  19666. name: "Foot",
  19667. image: {
  19668. source: "./media/characters/dragonien/foot.svg",
  19669. }
  19670. },
  19671. },
  19672. [
  19673. {
  19674. name: "Normal",
  19675. height: math.unit(8 + 4 / 12, "feet"),
  19676. default: true
  19677. },
  19678. {
  19679. name: "Macro",
  19680. height: math.unit(200, "feet")
  19681. },
  19682. {
  19683. name: "Megamacro",
  19684. height: math.unit(1, "mile")
  19685. },
  19686. {
  19687. name: "Gigamacro",
  19688. height: math.unit(1000, "miles")
  19689. },
  19690. ]
  19691. ))
  19692. characterMakers.push(() => makeCharacter(
  19693. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19694. {
  19695. front: {
  19696. height: math.unit(5 + 2 / 12, "feet"),
  19697. weight: math.unit(110, "lb"),
  19698. name: "Front",
  19699. image: {
  19700. source: "./media/characters/desta/front.svg",
  19701. extra: 767 / 726,
  19702. bottom: 11.7 / 779
  19703. }
  19704. },
  19705. back: {
  19706. height: math.unit(5 + 2 / 12, "feet"),
  19707. weight: math.unit(110, "lb"),
  19708. name: "Back",
  19709. image: {
  19710. source: "./media/characters/desta/back.svg",
  19711. extra: 777 / 728,
  19712. bottom: 6 / 784
  19713. }
  19714. },
  19715. frontAlt: {
  19716. height: math.unit(5 + 2 / 12, "feet"),
  19717. weight: math.unit(110, "lb"),
  19718. name: "Front",
  19719. image: {
  19720. source: "./media/characters/desta/front-alt.svg",
  19721. extra: 1482 / 1417
  19722. }
  19723. },
  19724. side: {
  19725. height: math.unit(5 + 2 / 12, "feet"),
  19726. weight: math.unit(110, "lb"),
  19727. name: "Side",
  19728. image: {
  19729. source: "./media/characters/desta/side.svg",
  19730. extra: 2579 / 2491,
  19731. bottom: 0.053
  19732. }
  19733. },
  19734. },
  19735. [
  19736. {
  19737. name: "Micro",
  19738. height: math.unit(6, "inches")
  19739. },
  19740. {
  19741. name: "Normal",
  19742. height: math.unit(5 + 2 / 12, "feet"),
  19743. default: true
  19744. },
  19745. {
  19746. name: "Macro",
  19747. height: math.unit(62, "feet")
  19748. },
  19749. {
  19750. name: "Megamacro",
  19751. height: math.unit(1800, "feet")
  19752. },
  19753. ]
  19754. ))
  19755. characterMakers.push(() => makeCharacter(
  19756. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19757. {
  19758. front: {
  19759. height: math.unit(10, "feet"),
  19760. weight: math.unit(700, "lb"),
  19761. name: "Front",
  19762. image: {
  19763. source: "./media/characters/storm-alystar/front.svg",
  19764. extra: 2112 / 1898,
  19765. bottom: 0.034
  19766. }
  19767. },
  19768. },
  19769. [
  19770. {
  19771. name: "Micro",
  19772. height: math.unit(3.5, "inches")
  19773. },
  19774. {
  19775. name: "Normal",
  19776. height: math.unit(10, "feet"),
  19777. default: true
  19778. },
  19779. {
  19780. name: "Macro",
  19781. height: math.unit(400, "feet")
  19782. },
  19783. {
  19784. name: "Deific",
  19785. height: math.unit(60, "miles")
  19786. },
  19787. ]
  19788. ))
  19789. characterMakers.push(() => makeCharacter(
  19790. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19791. {
  19792. front: {
  19793. height: math.unit(2.35, "meters"),
  19794. weight: math.unit(119, "kg"),
  19795. name: "Front",
  19796. image: {
  19797. source: "./media/characters/ilia/front.svg",
  19798. extra: 1285 / 1255,
  19799. bottom: 0.06
  19800. }
  19801. },
  19802. },
  19803. [
  19804. {
  19805. name: "Normal",
  19806. height: math.unit(2.35, "meters")
  19807. },
  19808. {
  19809. name: "Macro",
  19810. height: math.unit(140, "meters"),
  19811. default: true
  19812. },
  19813. {
  19814. name: "Megamacro",
  19815. height: math.unit(100, "miles")
  19816. },
  19817. ]
  19818. ))
  19819. characterMakers.push(() => makeCharacter(
  19820. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19821. {
  19822. front: {
  19823. height: math.unit(6 + 5 / 12, "feet"),
  19824. weight: math.unit(190, "lb"),
  19825. name: "Front",
  19826. image: {
  19827. source: "./media/characters/kingdead/front.svg",
  19828. extra: 1228 / 1177
  19829. }
  19830. },
  19831. },
  19832. [
  19833. {
  19834. name: "Micro",
  19835. height: math.unit(7, "inches")
  19836. },
  19837. {
  19838. name: "Normal",
  19839. height: math.unit(6 + 5 / 12, "feet")
  19840. },
  19841. {
  19842. name: "Macro",
  19843. height: math.unit(150, "feet"),
  19844. default: true
  19845. },
  19846. {
  19847. name: "Megamacro",
  19848. height: math.unit(200, "miles")
  19849. },
  19850. ]
  19851. ))
  19852. characterMakers.push(() => makeCharacter(
  19853. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19854. {
  19855. front: {
  19856. height: math.unit(8, "feet"),
  19857. weight: math.unit(600, "lb"),
  19858. name: "Front",
  19859. image: {
  19860. source: "./media/characters/kyrehx/front.svg",
  19861. extra: 1195 / 1095,
  19862. bottom: 0.034
  19863. }
  19864. },
  19865. },
  19866. [
  19867. {
  19868. name: "Micro",
  19869. height: math.unit(2, "inches")
  19870. },
  19871. {
  19872. name: "Normal",
  19873. height: math.unit(8, "feet"),
  19874. default: true
  19875. },
  19876. {
  19877. name: "Macro",
  19878. height: math.unit(255, "feet")
  19879. },
  19880. ]
  19881. ))
  19882. characterMakers.push(() => makeCharacter(
  19883. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19884. {
  19885. front: {
  19886. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19887. weight: math.unit(184, "lb"),
  19888. name: "Front",
  19889. image: {
  19890. source: "./media/characters/xang/front.svg",
  19891. extra: 845 / 755
  19892. }
  19893. },
  19894. },
  19895. [
  19896. {
  19897. name: "Normal",
  19898. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19899. default: true
  19900. },
  19901. {
  19902. name: "Macro",
  19903. height: math.unit(0.935 * 146, "feet")
  19904. },
  19905. {
  19906. name: "Megamacro",
  19907. height: math.unit(0.935 * 3, "miles")
  19908. },
  19909. ]
  19910. ))
  19911. characterMakers.push(() => makeCharacter(
  19912. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19913. {
  19914. frontDressed: {
  19915. height: math.unit(5 + 7 / 12, "feet"),
  19916. weight: math.unit(140, "lb"),
  19917. name: "Front (Dressed)",
  19918. image: {
  19919. source: "./media/characters/doc-weardno/front-dressed.svg",
  19920. extra: 263 / 234
  19921. }
  19922. },
  19923. backDressed: {
  19924. height: math.unit(5 + 7 / 12, "feet"),
  19925. weight: math.unit(140, "lb"),
  19926. name: "Back (Dressed)",
  19927. image: {
  19928. source: "./media/characters/doc-weardno/back-dressed.svg",
  19929. extra: 266 / 238
  19930. }
  19931. },
  19932. front: {
  19933. height: math.unit(5 + 7 / 12, "feet"),
  19934. weight: math.unit(140, "lb"),
  19935. name: "Front",
  19936. image: {
  19937. source: "./media/characters/doc-weardno/front.svg",
  19938. extra: 254 / 233
  19939. }
  19940. },
  19941. },
  19942. [
  19943. {
  19944. name: "Micro",
  19945. height: math.unit(3, "inches")
  19946. },
  19947. {
  19948. name: "Normal",
  19949. height: math.unit(5 + 7 / 12, "feet"),
  19950. default: true
  19951. },
  19952. {
  19953. name: "Macro",
  19954. height: math.unit(25, "feet")
  19955. },
  19956. {
  19957. name: "Megamacro",
  19958. height: math.unit(2, "miles")
  19959. },
  19960. ]
  19961. ))
  19962. characterMakers.push(() => makeCharacter(
  19963. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19964. {
  19965. front: {
  19966. height: math.unit(6 + 2 / 12, "feet"),
  19967. weight: math.unit(153, "lb"),
  19968. name: "Front",
  19969. image: {
  19970. source: "./media/characters/seth-whilst/front.svg",
  19971. bottom: 0.07
  19972. }
  19973. },
  19974. },
  19975. [
  19976. {
  19977. name: "Micro",
  19978. height: math.unit(5, "inches")
  19979. },
  19980. {
  19981. name: "Normal",
  19982. height: math.unit(6 + 2 / 12, "feet"),
  19983. default: true
  19984. },
  19985. ]
  19986. ))
  19987. characterMakers.push(() => makeCharacter(
  19988. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19989. {
  19990. front: {
  19991. height: math.unit(3, "inches"),
  19992. weight: math.unit(8, "grams"),
  19993. name: "Front",
  19994. image: {
  19995. source: "./media/characters/pocket-jabari/front.svg",
  19996. extra: 1024 / 974,
  19997. bottom: 0.039
  19998. }
  19999. },
  20000. },
  20001. [
  20002. {
  20003. name: "Minimicro",
  20004. height: math.unit(8, "mm")
  20005. },
  20006. {
  20007. name: "Micro",
  20008. height: math.unit(3, "inches"),
  20009. default: true
  20010. },
  20011. {
  20012. name: "Normal",
  20013. height: math.unit(3, "feet")
  20014. },
  20015. ]
  20016. ))
  20017. characterMakers.push(() => makeCharacter(
  20018. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20019. {
  20020. frontDressed: {
  20021. height: math.unit(15, "feet"),
  20022. weight: math.unit(3280, "lb"),
  20023. name: "Front (Dressed)",
  20024. image: {
  20025. source: "./media/characters/sapphy/front-dressed.svg",
  20026. extra: 1951/1654,
  20027. bottom: 194/2145
  20028. },
  20029. form: "anthro",
  20030. default: true
  20031. },
  20032. backDressed: {
  20033. height: math.unit(15, "feet"),
  20034. weight: math.unit(3280, "lb"),
  20035. name: "Back (Dressed)",
  20036. image: {
  20037. source: "./media/characters/sapphy/back-dressed.svg",
  20038. extra: 2058/1918,
  20039. bottom: 125/2183
  20040. },
  20041. form: "anthro"
  20042. },
  20043. frontNude: {
  20044. height: math.unit(15, "feet"),
  20045. weight: math.unit(3280, "lb"),
  20046. name: "Front (Nude)",
  20047. image: {
  20048. source: "./media/characters/sapphy/front-nude.svg",
  20049. extra: 1951/1654,
  20050. bottom: 194/2145
  20051. },
  20052. form: "anthro"
  20053. },
  20054. backNude: {
  20055. height: math.unit(15, "feet"),
  20056. weight: math.unit(3280, "lb"),
  20057. name: "Back (Nude)",
  20058. image: {
  20059. source: "./media/characters/sapphy/back-nude.svg",
  20060. extra: 2058/1918,
  20061. bottom: 125/2183
  20062. },
  20063. form: "anthro"
  20064. },
  20065. full: {
  20066. height: math.unit(15, "feet"),
  20067. weight: math.unit(3280, "lb"),
  20068. name: "Full",
  20069. image: {
  20070. source: "./media/characters/sapphy/full.svg",
  20071. extra: 1396/1317,
  20072. bottom: 44/1440
  20073. },
  20074. form: "anthro"
  20075. },
  20076. dick: {
  20077. height: math.unit(3.8, "feet"),
  20078. name: "Dick",
  20079. image: {
  20080. source: "./media/characters/sapphy/dick.svg"
  20081. },
  20082. form: "anthro"
  20083. },
  20084. feral: {
  20085. height: math.unit(35, "feet"),
  20086. weight: math.unit(160, "tons"),
  20087. name: "Feral",
  20088. image: {
  20089. source: "./media/characters/sapphy/feral.svg",
  20090. extra: 1050/573,
  20091. bottom: 60/1110
  20092. },
  20093. form: "feral",
  20094. default: true
  20095. },
  20096. },
  20097. [
  20098. {
  20099. name: "Normal",
  20100. height: math.unit(15, "feet"),
  20101. form: "anthro"
  20102. },
  20103. {
  20104. name: "Casual Macro",
  20105. height: math.unit(120, "feet"),
  20106. form: "anthro"
  20107. },
  20108. {
  20109. name: "Macro",
  20110. height: math.unit(2150, "feet"),
  20111. default: true,
  20112. form: "anthro"
  20113. },
  20114. {
  20115. name: "Megamacro",
  20116. height: math.unit(8, "miles"),
  20117. form: "anthro"
  20118. },
  20119. {
  20120. name: "Galaxy Mom",
  20121. height: math.unit(6, "megalightyears"),
  20122. form: "anthro"
  20123. },
  20124. {
  20125. name: "Normal",
  20126. height: math.unit(35, "feet"),
  20127. form: "feral",
  20128. default: true
  20129. },
  20130. {
  20131. name: "Macro",
  20132. height: math.unit(300, "feet"),
  20133. form: "feral"
  20134. },
  20135. {
  20136. name: "Galaxy Mom",
  20137. height: math.unit(10, "megalightyears"),
  20138. form: "feral"
  20139. },
  20140. ],
  20141. {
  20142. "anthro": {
  20143. name: "Anthro",
  20144. default: true
  20145. },
  20146. "feral": {
  20147. name: "Feral"
  20148. }
  20149. }
  20150. ))
  20151. characterMakers.push(() => makeCharacter(
  20152. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20153. {
  20154. hyenaFront: {
  20155. height: math.unit(6, "feet"),
  20156. weight: math.unit(190, "lb"),
  20157. name: "Front",
  20158. image: {
  20159. source: "./media/characters/kiro/hyena-front.svg",
  20160. extra: 927/839,
  20161. bottom: 91/1018
  20162. },
  20163. form: "hyena",
  20164. default: true
  20165. },
  20166. front: {
  20167. height: math.unit(6, "feet"),
  20168. weight: math.unit(170, "lb"),
  20169. name: "Front",
  20170. image: {
  20171. source: "./media/characters/kiro/front.svg",
  20172. extra: 1064 / 1012,
  20173. bottom: 0.052
  20174. },
  20175. form: "folf",
  20176. default: true
  20177. },
  20178. },
  20179. [
  20180. {
  20181. name: "Micro",
  20182. height: math.unit(6, "inches"),
  20183. form: "folf"
  20184. },
  20185. {
  20186. name: "Normal",
  20187. height: math.unit(6, "feet"),
  20188. form: "folf",
  20189. default: true
  20190. },
  20191. {
  20192. name: "Macro",
  20193. height: math.unit(72, "feet"),
  20194. form: "folf"
  20195. },
  20196. {
  20197. name: "Micro",
  20198. height: math.unit(6, "inches"),
  20199. form: "hyena"
  20200. },
  20201. {
  20202. name: "Normal",
  20203. height: math.unit(6, "feet"),
  20204. form: "hyena",
  20205. default: true
  20206. },
  20207. {
  20208. name: "Macro",
  20209. height: math.unit(72, "feet"),
  20210. form: "hyena"
  20211. },
  20212. ],
  20213. {
  20214. "hyena": {
  20215. name: "Hyena",
  20216. default: true
  20217. },
  20218. "folf": {
  20219. name: "Folf",
  20220. },
  20221. }
  20222. ))
  20223. characterMakers.push(() => makeCharacter(
  20224. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20225. {
  20226. front: {
  20227. height: math.unit(5 + 9 / 12, "feet"),
  20228. weight: math.unit(175, "lb"),
  20229. name: "Front",
  20230. image: {
  20231. source: "./media/characters/irishfox/front.svg",
  20232. extra: 1912 / 1680,
  20233. bottom: 0.02
  20234. }
  20235. },
  20236. },
  20237. [
  20238. {
  20239. name: "Nano",
  20240. height: math.unit(1, "mm")
  20241. },
  20242. {
  20243. name: "Micro",
  20244. height: math.unit(2, "inches")
  20245. },
  20246. {
  20247. name: "Normal",
  20248. height: math.unit(5 + 9 / 12, "feet"),
  20249. default: true
  20250. },
  20251. {
  20252. name: "Macro",
  20253. height: math.unit(45, "feet")
  20254. },
  20255. ]
  20256. ))
  20257. characterMakers.push(() => makeCharacter(
  20258. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20259. {
  20260. front: {
  20261. height: math.unit(6 + 1 / 12, "feet"),
  20262. weight: math.unit(75, "lb"),
  20263. name: "Front",
  20264. image: {
  20265. source: "./media/characters/aronai-sieyes/front.svg",
  20266. extra: 1532/1450,
  20267. bottom: 42/1574
  20268. }
  20269. },
  20270. side: {
  20271. height: math.unit(6 + 1 / 12, "feet"),
  20272. weight: math.unit(75, "lb"),
  20273. name: "Side",
  20274. image: {
  20275. source: "./media/characters/aronai-sieyes/side.svg",
  20276. extra: 1422/1365,
  20277. bottom: 148/1570
  20278. }
  20279. },
  20280. back: {
  20281. height: math.unit(6 + 1 / 12, "feet"),
  20282. weight: math.unit(75, "lb"),
  20283. name: "Back",
  20284. image: {
  20285. source: "./media/characters/aronai-sieyes/back.svg",
  20286. extra: 1526/1464,
  20287. bottom: 51/1577
  20288. }
  20289. },
  20290. dressed: {
  20291. height: math.unit(6 + 1 / 12, "feet"),
  20292. weight: math.unit(75, "lb"),
  20293. name: "Dressed",
  20294. image: {
  20295. source: "./media/characters/aronai-sieyes/dressed.svg",
  20296. extra: 1559/1483,
  20297. bottom: 39/1598
  20298. }
  20299. },
  20300. slit: {
  20301. height: math.unit(1.3, "feet"),
  20302. name: "Slit",
  20303. image: {
  20304. source: "./media/characters/aronai-sieyes/slit.svg"
  20305. }
  20306. },
  20307. slitSpread: {
  20308. height: math.unit(0.9, "feet"),
  20309. name: "Slit (Spread)",
  20310. image: {
  20311. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20312. }
  20313. },
  20314. rump: {
  20315. height: math.unit(1.3, "feet"),
  20316. name: "Rump",
  20317. image: {
  20318. source: "./media/characters/aronai-sieyes/rump.svg"
  20319. }
  20320. },
  20321. maw: {
  20322. height: math.unit(1.25, "feet"),
  20323. name: "Maw",
  20324. image: {
  20325. source: "./media/characters/aronai-sieyes/maw.svg"
  20326. }
  20327. },
  20328. feral: {
  20329. height: math.unit(18, "feet"),
  20330. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20331. name: "Feral",
  20332. image: {
  20333. source: "./media/characters/aronai-sieyes/feral.svg",
  20334. extra: 1530 / 1240,
  20335. bottom: 0.035
  20336. }
  20337. },
  20338. },
  20339. [
  20340. {
  20341. name: "Micro",
  20342. height: math.unit(2, "inches")
  20343. },
  20344. {
  20345. name: "Normal",
  20346. height: math.unit(6 + 1 / 12, "feet"),
  20347. default: true
  20348. }
  20349. ]
  20350. ))
  20351. characterMakers.push(() => makeCharacter(
  20352. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20353. {
  20354. front: {
  20355. height: math.unit(12, "feet"),
  20356. weight: math.unit(410, "kg"),
  20357. name: "Front",
  20358. image: {
  20359. source: "./media/characters/xuna/front.svg",
  20360. extra: 2184 / 1980
  20361. }
  20362. },
  20363. side: {
  20364. height: math.unit(12, "feet"),
  20365. weight: math.unit(410, "kg"),
  20366. name: "Side",
  20367. image: {
  20368. source: "./media/characters/xuna/side.svg",
  20369. extra: 2184 / 1980
  20370. }
  20371. },
  20372. back: {
  20373. height: math.unit(12, "feet"),
  20374. weight: math.unit(410, "kg"),
  20375. name: "Back",
  20376. image: {
  20377. source: "./media/characters/xuna/back.svg",
  20378. extra: 2184 / 1980
  20379. }
  20380. },
  20381. },
  20382. [
  20383. {
  20384. name: "Nano glow",
  20385. height: math.unit(10, "nm")
  20386. },
  20387. {
  20388. name: "Micro floof",
  20389. height: math.unit(0.3, "m")
  20390. },
  20391. {
  20392. name: "Huggable softy boi",
  20393. height: math.unit(3.6576, "m"),
  20394. default: true
  20395. },
  20396. {
  20397. name: "Admirable floof",
  20398. height: math.unit(80, "meters")
  20399. },
  20400. {
  20401. name: "Gentle macro",
  20402. height: math.unit(300, "meters")
  20403. },
  20404. {
  20405. name: "Very careful floof",
  20406. height: math.unit(3200, "meters")
  20407. },
  20408. {
  20409. name: "The mega floof",
  20410. height: math.unit(36000, "meters")
  20411. },
  20412. {
  20413. name: "Giga-fur-Wicker",
  20414. height: math.unit(4800000, "meters")
  20415. },
  20416. {
  20417. name: "Licky world",
  20418. height: math.unit(20000000, "meters")
  20419. },
  20420. {
  20421. name: "Floofy cyan sun",
  20422. height: math.unit(1500000000, "meters")
  20423. },
  20424. {
  20425. name: "Milky Wicker",
  20426. height: math.unit(1000000000000000000000, "meters")
  20427. },
  20428. {
  20429. name: "The observing Wicker",
  20430. height: math.unit(999999999999999999999999999, "meters")
  20431. },
  20432. ]
  20433. ))
  20434. characterMakers.push(() => makeCharacter(
  20435. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20436. {
  20437. front: {
  20438. height: math.unit(5 + 9 / 12, "feet"),
  20439. weight: math.unit(150, "lb"),
  20440. name: "Front",
  20441. image: {
  20442. source: "./media/characters/arokha-sieyes/front.svg",
  20443. extra: 1425 / 1284,
  20444. bottom: 0.05
  20445. }
  20446. },
  20447. },
  20448. [
  20449. {
  20450. name: "Normal",
  20451. height: math.unit(5 + 9 / 12, "feet")
  20452. },
  20453. {
  20454. name: "Macro",
  20455. height: math.unit(30, "meters"),
  20456. default: true
  20457. },
  20458. ]
  20459. ))
  20460. characterMakers.push(() => makeCharacter(
  20461. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20462. {
  20463. front: {
  20464. height: math.unit(6, "feet"),
  20465. weight: math.unit(180, "lb"),
  20466. name: "Front",
  20467. image: {
  20468. source: "./media/characters/arokh-sieyes/front.svg",
  20469. extra: 1830 / 1769,
  20470. bottom: 0.01
  20471. }
  20472. },
  20473. },
  20474. [
  20475. {
  20476. name: "Normal",
  20477. height: math.unit(6, "feet")
  20478. },
  20479. {
  20480. name: "Macro",
  20481. height: math.unit(30, "meters"),
  20482. default: true
  20483. },
  20484. ]
  20485. ))
  20486. characterMakers.push(() => makeCharacter(
  20487. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20488. {
  20489. side: {
  20490. height: math.unit(13 + 1 / 12, "feet"),
  20491. weight: math.unit(8.5, "tonnes"),
  20492. preyCapacity: math.unit(36, "people"),
  20493. name: "Side",
  20494. image: {
  20495. source: "./media/characters/goldeneye/side.svg",
  20496. extra: 1139/741,
  20497. bottom: 98/1237
  20498. }
  20499. },
  20500. front: {
  20501. height: math.unit(5.1, "feet"),
  20502. weight: math.unit(8.5, "tonnes"),
  20503. preyCapacity: math.unit(36, "people"),
  20504. name: "Front",
  20505. image: {
  20506. source: "./media/characters/goldeneye/front.svg",
  20507. extra: 635/365,
  20508. bottom: 598/1233
  20509. }
  20510. },
  20511. maw: {
  20512. height: math.unit(6.6, "feet"),
  20513. name: "Maw",
  20514. image: {
  20515. source: "./media/characters/goldeneye/maw.svg"
  20516. }
  20517. },
  20518. headFront: {
  20519. height: math.unit(8, "feet"),
  20520. name: "Head (Front)",
  20521. image: {
  20522. source: "./media/characters/goldeneye/head-front.svg"
  20523. }
  20524. },
  20525. headSide: {
  20526. height: math.unit(6, "feet"),
  20527. name: "Head (Side)",
  20528. image: {
  20529. source: "./media/characters/goldeneye/head-side.svg"
  20530. }
  20531. },
  20532. headBack: {
  20533. height: math.unit(8, "feet"),
  20534. name: "Head (Back)",
  20535. image: {
  20536. source: "./media/characters/goldeneye/head-back.svg"
  20537. }
  20538. },
  20539. paw: {
  20540. height: math.unit(3.4, "feet"),
  20541. name: "Paw",
  20542. image: {
  20543. source: "./media/characters/goldeneye/paw.svg"
  20544. }
  20545. },
  20546. toering: {
  20547. height: math.unit(0.45, "feet"),
  20548. name: "Toering",
  20549. image: {
  20550. source: "./media/characters/goldeneye/toering.svg"
  20551. }
  20552. },
  20553. eyes: {
  20554. height: math.unit(0.5, "feet"),
  20555. name: "Eyes",
  20556. image: {
  20557. source: "./media/characters/goldeneye/eyes.svg"
  20558. }
  20559. },
  20560. },
  20561. [
  20562. {
  20563. name: "Normal",
  20564. height: math.unit(13 + 1 / 12, "feet"),
  20565. default: true
  20566. },
  20567. ]
  20568. ))
  20569. characterMakers.push(() => makeCharacter(
  20570. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20571. {
  20572. front: {
  20573. height: math.unit(6 + 1 / 12, "feet"),
  20574. weight: math.unit(210, "lb"),
  20575. name: "Front",
  20576. image: {
  20577. source: "./media/characters/leonardo-lycheborne/front.svg",
  20578. extra: 776/723,
  20579. bottom: 34/810
  20580. }
  20581. },
  20582. side: {
  20583. height: math.unit(6 + 1 / 12, "feet"),
  20584. weight: math.unit(210, "lb"),
  20585. name: "Side",
  20586. image: {
  20587. source: "./media/characters/leonardo-lycheborne/side.svg",
  20588. extra: 780/728,
  20589. bottom: 12/792
  20590. }
  20591. },
  20592. back: {
  20593. height: math.unit(6 + 1 / 12, "feet"),
  20594. weight: math.unit(210, "lb"),
  20595. name: "Back",
  20596. image: {
  20597. source: "./media/characters/leonardo-lycheborne/back.svg",
  20598. extra: 775/721,
  20599. bottom: 17/792
  20600. }
  20601. },
  20602. hand: {
  20603. height: math.unit(1.08, "feet"),
  20604. name: "Hand",
  20605. image: {
  20606. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20607. }
  20608. },
  20609. foot: {
  20610. height: math.unit(1.32, "feet"),
  20611. name: "Foot",
  20612. image: {
  20613. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20614. }
  20615. },
  20616. maw: {
  20617. height: math.unit(1, "feet"),
  20618. name: "Maw",
  20619. image: {
  20620. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20621. }
  20622. },
  20623. were: {
  20624. height: math.unit(20, "feet"),
  20625. weight: math.unit(7800, "lb"),
  20626. name: "Were",
  20627. image: {
  20628. source: "./media/characters/leonardo-lycheborne/were.svg",
  20629. extra: 1224/1165,
  20630. bottom: 72/1296
  20631. }
  20632. },
  20633. feral: {
  20634. height: math.unit(7.5, "feet"),
  20635. weight: math.unit(600, "lb"),
  20636. name: "Feral",
  20637. image: {
  20638. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20639. extra: 797/702,
  20640. bottom: 139/936
  20641. }
  20642. },
  20643. taur: {
  20644. height: math.unit(11, "feet"),
  20645. weight: math.unit(3300, "lb"),
  20646. name: "Taur",
  20647. image: {
  20648. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20649. extra: 1271/1197,
  20650. bottom: 47/1318
  20651. }
  20652. },
  20653. barghest: {
  20654. height: math.unit(11, "feet"),
  20655. weight: math.unit(1300, "lb"),
  20656. name: "Barghest",
  20657. image: {
  20658. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20659. extra: 1291/1204,
  20660. bottom: 37/1328
  20661. }
  20662. },
  20663. dick: {
  20664. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20665. name: "Dick",
  20666. image: {
  20667. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20668. }
  20669. },
  20670. dickWere: {
  20671. height: math.unit((20) / 3.8, "feet"),
  20672. name: "Dick (Were)",
  20673. image: {
  20674. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20675. }
  20676. },
  20677. },
  20678. [
  20679. {
  20680. name: "Normal",
  20681. height: math.unit(6 + 1 / 12, "feet"),
  20682. default: true
  20683. },
  20684. ]
  20685. ))
  20686. characterMakers.push(() => makeCharacter(
  20687. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20688. {
  20689. front: {
  20690. height: math.unit(10, "feet"),
  20691. weight: math.unit(350, "lb"),
  20692. name: "Front",
  20693. image: {
  20694. source: "./media/characters/jet/front.svg",
  20695. extra: 2050 / 1980,
  20696. bottom: 0.013
  20697. }
  20698. },
  20699. back: {
  20700. height: math.unit(10, "feet"),
  20701. weight: math.unit(350, "lb"),
  20702. name: "Back",
  20703. image: {
  20704. source: "./media/characters/jet/back.svg",
  20705. extra: 2050 / 1980,
  20706. bottom: 0.013
  20707. }
  20708. },
  20709. },
  20710. [
  20711. {
  20712. name: "Micro",
  20713. height: math.unit(6, "inches")
  20714. },
  20715. {
  20716. name: "Normal",
  20717. height: math.unit(10, "feet"),
  20718. default: true
  20719. },
  20720. {
  20721. name: "Macro",
  20722. height: math.unit(100, "feet")
  20723. },
  20724. ]
  20725. ))
  20726. characterMakers.push(() => makeCharacter(
  20727. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20728. {
  20729. front: {
  20730. height: math.unit(15, "feet"),
  20731. weight: math.unit(2800, "lb"),
  20732. name: "Front",
  20733. image: {
  20734. source: "./media/characters/tanarath/front.svg",
  20735. extra: 2392 / 2220,
  20736. bottom: 0.03
  20737. }
  20738. },
  20739. back: {
  20740. height: math.unit(15, "feet"),
  20741. weight: math.unit(2800, "lb"),
  20742. name: "Back",
  20743. image: {
  20744. source: "./media/characters/tanarath/back.svg",
  20745. extra: 2392 / 2220,
  20746. bottom: 0.03
  20747. }
  20748. },
  20749. },
  20750. [
  20751. {
  20752. name: "Normal",
  20753. height: math.unit(15, "feet"),
  20754. default: true
  20755. },
  20756. ]
  20757. ))
  20758. characterMakers.push(() => makeCharacter(
  20759. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20760. {
  20761. front: {
  20762. height: math.unit(7 + 1 / 12, "feet"),
  20763. weight: math.unit(175, "lb"),
  20764. name: "Front",
  20765. image: {
  20766. source: "./media/characters/patty-cattybatty/front.svg",
  20767. extra: 908 / 874,
  20768. bottom: 0.025
  20769. }
  20770. },
  20771. },
  20772. [
  20773. {
  20774. name: "Micro",
  20775. height: math.unit(1, "inch")
  20776. },
  20777. {
  20778. name: "Normal",
  20779. height: math.unit(7 + 1 / 12, "feet")
  20780. },
  20781. {
  20782. name: "Mini Macro",
  20783. height: math.unit(155, "feet")
  20784. },
  20785. {
  20786. name: "Macro",
  20787. height: math.unit(1077, "feet")
  20788. },
  20789. {
  20790. name: "Mega Macro",
  20791. height: math.unit(47650, "feet"),
  20792. default: true
  20793. },
  20794. {
  20795. name: "Giga Macro",
  20796. height: math.unit(440, "miles")
  20797. },
  20798. {
  20799. name: "Tera Macro",
  20800. height: math.unit(8700, "miles")
  20801. },
  20802. {
  20803. name: "Planetary Macro",
  20804. height: math.unit(32700, "miles")
  20805. },
  20806. {
  20807. name: "Solar Macro",
  20808. height: math.unit(550000, "miles")
  20809. },
  20810. {
  20811. name: "Celestial Macro",
  20812. height: math.unit(2.5, "AU")
  20813. },
  20814. ]
  20815. ))
  20816. characterMakers.push(() => makeCharacter(
  20817. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20818. {
  20819. front: {
  20820. height: math.unit(4 + 5 / 12, "feet"),
  20821. weight: math.unit(90, "lb"),
  20822. name: "Front",
  20823. image: {
  20824. source: "./media/characters/cappu/front.svg",
  20825. extra: 1247 / 1152,
  20826. bottom: 0.012
  20827. }
  20828. },
  20829. },
  20830. [
  20831. {
  20832. name: "Normal",
  20833. height: math.unit(4 + 5 / 12, "feet"),
  20834. default: true
  20835. },
  20836. ]
  20837. ))
  20838. characterMakers.push(() => makeCharacter(
  20839. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20840. {
  20841. frontDressed: {
  20842. height: math.unit(70, "cm"),
  20843. weight: math.unit(6, "kg"),
  20844. name: "Front (Dressed)",
  20845. image: {
  20846. source: "./media/characters/sebi/front-dressed.svg",
  20847. extra: 713.5 / 686.5,
  20848. bottom: 0.003
  20849. }
  20850. },
  20851. front: {
  20852. height: math.unit(70, "cm"),
  20853. weight: math.unit(5, "kg"),
  20854. name: "Front",
  20855. image: {
  20856. source: "./media/characters/sebi/front.svg",
  20857. extra: 713.5 / 686.5,
  20858. bottom: 0.003
  20859. }
  20860. }
  20861. },
  20862. [
  20863. {
  20864. name: "Normal",
  20865. height: math.unit(70, "cm"),
  20866. default: true
  20867. },
  20868. {
  20869. name: "Macro",
  20870. height: math.unit(8, "meters")
  20871. },
  20872. ]
  20873. ))
  20874. characterMakers.push(() => makeCharacter(
  20875. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20876. {
  20877. front: {
  20878. height: math.unit(6, "feet"),
  20879. weight: math.unit(150, "lb"),
  20880. name: "Front",
  20881. image: {
  20882. source: "./media/characters/typhek/front.svg",
  20883. extra: 1948 / 1929,
  20884. bottom: 0.025
  20885. }
  20886. },
  20887. side: {
  20888. height: math.unit(6, "feet"),
  20889. weight: math.unit(150, "lb"),
  20890. name: "Side",
  20891. image: {
  20892. source: "./media/characters/typhek/side.svg",
  20893. extra: 2034 / 2010,
  20894. bottom: 0.003
  20895. }
  20896. },
  20897. back: {
  20898. height: math.unit(6, "feet"),
  20899. weight: math.unit(150, "lb"),
  20900. name: "Back",
  20901. image: {
  20902. source: "./media/characters/typhek/back.svg",
  20903. extra: 2005 / 1978,
  20904. bottom: 0.004
  20905. }
  20906. },
  20907. palm: {
  20908. height: math.unit(1.2, "feet"),
  20909. name: "Palm",
  20910. image: {
  20911. source: "./media/characters/typhek/palm.svg"
  20912. }
  20913. },
  20914. fist: {
  20915. height: math.unit(1.1, "feet"),
  20916. name: "Fist",
  20917. image: {
  20918. source: "./media/characters/typhek/fist.svg"
  20919. }
  20920. },
  20921. foot: {
  20922. height: math.unit(1.57, "feet"),
  20923. name: "Foot",
  20924. image: {
  20925. source: "./media/characters/typhek/foot.svg"
  20926. }
  20927. },
  20928. sole: {
  20929. height: math.unit(2.05, "feet"),
  20930. name: "Sole",
  20931. image: {
  20932. source: "./media/characters/typhek/sole.svg"
  20933. }
  20934. },
  20935. },
  20936. [
  20937. {
  20938. name: "Macro",
  20939. height: math.unit(40, "stories"),
  20940. default: true
  20941. },
  20942. {
  20943. name: "Megamacro",
  20944. height: math.unit(1, "mile")
  20945. },
  20946. {
  20947. name: "Gigamacro",
  20948. height: math.unit(4000, "solarradii")
  20949. },
  20950. {
  20951. name: "Universal",
  20952. height: math.unit(1.1, "universes")
  20953. }
  20954. ]
  20955. ))
  20956. characterMakers.push(() => makeCharacter(
  20957. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20958. {
  20959. side: {
  20960. height: math.unit(5 + 7 / 12, "feet"),
  20961. weight: math.unit(150, "lb"),
  20962. name: "Side",
  20963. image: {
  20964. source: "./media/characters/kassy/side.svg",
  20965. extra: 1280 / 1225,
  20966. bottom: 0.002
  20967. }
  20968. },
  20969. front: {
  20970. height: math.unit(5 + 7 / 12, "feet"),
  20971. weight: math.unit(150, "lb"),
  20972. name: "Front",
  20973. image: {
  20974. source: "./media/characters/kassy/front.svg",
  20975. extra: 1280 / 1225,
  20976. bottom: 0.025
  20977. }
  20978. },
  20979. back: {
  20980. height: math.unit(5 + 7 / 12, "feet"),
  20981. weight: math.unit(150, "lb"),
  20982. name: "Back",
  20983. image: {
  20984. source: "./media/characters/kassy/back.svg",
  20985. extra: 1280 / 1225,
  20986. bottom: 0.002
  20987. }
  20988. },
  20989. foot: {
  20990. height: math.unit(1.266, "feet"),
  20991. name: "Foot",
  20992. image: {
  20993. source: "./media/characters/kassy/foot.svg"
  20994. }
  20995. },
  20996. },
  20997. [
  20998. {
  20999. name: "Normal",
  21000. height: math.unit(5 + 7 / 12, "feet")
  21001. },
  21002. {
  21003. name: "Macro",
  21004. height: math.unit(137, "feet"),
  21005. default: true
  21006. },
  21007. {
  21008. name: "Megamacro",
  21009. height: math.unit(1, "mile")
  21010. },
  21011. ]
  21012. ))
  21013. characterMakers.push(() => makeCharacter(
  21014. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21015. {
  21016. front: {
  21017. height: math.unit(6 + 1 / 12, "feet"),
  21018. weight: math.unit(200, "lb"),
  21019. name: "Front",
  21020. image: {
  21021. source: "./media/characters/neil/front.svg",
  21022. extra: 1326 / 1250,
  21023. bottom: 0.023
  21024. }
  21025. },
  21026. },
  21027. [
  21028. {
  21029. name: "Normal",
  21030. height: math.unit(6 + 1 / 12, "feet"),
  21031. default: true
  21032. },
  21033. {
  21034. name: "Macro",
  21035. height: math.unit(200, "feet")
  21036. },
  21037. ]
  21038. ))
  21039. characterMakers.push(() => makeCharacter(
  21040. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21041. {
  21042. front: {
  21043. height: math.unit(5 + 9 / 12, "feet"),
  21044. weight: math.unit(190, "lb"),
  21045. name: "Front",
  21046. image: {
  21047. source: "./media/characters/atticus/front.svg",
  21048. extra: 2934 / 2785,
  21049. bottom: 0.025
  21050. }
  21051. },
  21052. },
  21053. [
  21054. {
  21055. name: "Normal",
  21056. height: math.unit(5 + 9 / 12, "feet"),
  21057. default: true
  21058. },
  21059. {
  21060. name: "Macro",
  21061. height: math.unit(180, "feet")
  21062. },
  21063. ]
  21064. ))
  21065. characterMakers.push(() => makeCharacter(
  21066. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21067. {
  21068. side: {
  21069. height: math.unit(9, "feet"),
  21070. weight: math.unit(650, "lb"),
  21071. name: "Side",
  21072. image: {
  21073. source: "./media/characters/milo/side.svg",
  21074. extra: 2644 / 2310,
  21075. bottom: 0.032
  21076. }
  21077. },
  21078. },
  21079. [
  21080. {
  21081. name: "Normal",
  21082. height: math.unit(9, "feet"),
  21083. default: true
  21084. },
  21085. {
  21086. name: "Macro",
  21087. height: math.unit(300, "feet")
  21088. },
  21089. ]
  21090. ))
  21091. characterMakers.push(() => makeCharacter(
  21092. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21093. {
  21094. side: {
  21095. height: math.unit(8, "meters"),
  21096. weight: math.unit(90000, "kg"),
  21097. name: "Side",
  21098. image: {
  21099. source: "./media/characters/ijzer/side.svg",
  21100. extra: 2756 / 1600,
  21101. bottom: 0.01
  21102. }
  21103. },
  21104. },
  21105. [
  21106. {
  21107. name: "Small",
  21108. height: math.unit(3, "meters")
  21109. },
  21110. {
  21111. name: "Normal",
  21112. height: math.unit(8, "meters"),
  21113. default: true
  21114. },
  21115. {
  21116. name: "Normal+",
  21117. height: math.unit(10, "meters")
  21118. },
  21119. {
  21120. name: "Bigger",
  21121. height: math.unit(24, "meters")
  21122. },
  21123. {
  21124. name: "Huge",
  21125. height: math.unit(80, "meters")
  21126. },
  21127. ]
  21128. ))
  21129. characterMakers.push(() => makeCharacter(
  21130. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21131. {
  21132. front: {
  21133. height: math.unit(6 + 2 / 12, "feet"),
  21134. weight: math.unit(153, "lb"),
  21135. name: "Front",
  21136. image: {
  21137. source: "./media/characters/luca-cervicum/front.svg",
  21138. extra: 370 / 327,
  21139. bottom: 0.015
  21140. }
  21141. },
  21142. back: {
  21143. height: math.unit(6 + 2 / 12, "feet"),
  21144. weight: math.unit(153, "lb"),
  21145. name: "Back",
  21146. image: {
  21147. source: "./media/characters/luca-cervicum/back.svg",
  21148. extra: 367 / 333,
  21149. bottom: 0.005
  21150. }
  21151. },
  21152. frontGear: {
  21153. height: math.unit(6 + 2 / 12, "feet"),
  21154. weight: math.unit(173, "lb"),
  21155. name: "Front (Gear)",
  21156. image: {
  21157. source: "./media/characters/luca-cervicum/front-gear.svg",
  21158. extra: 377 / 333,
  21159. bottom: 0.006
  21160. }
  21161. },
  21162. },
  21163. [
  21164. {
  21165. name: "Normal",
  21166. height: math.unit(6 + 2 / 12, "feet"),
  21167. default: true
  21168. },
  21169. ]
  21170. ))
  21171. characterMakers.push(() => makeCharacter(
  21172. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21173. {
  21174. front: {
  21175. height: math.unit(6 + 1 / 12, "feet"),
  21176. weight: math.unit(304, "lb"),
  21177. name: "Front",
  21178. image: {
  21179. source: "./media/characters/oliver/front.svg",
  21180. extra: 157 / 143,
  21181. bottom: 0.08
  21182. }
  21183. },
  21184. },
  21185. [
  21186. {
  21187. name: "Normal",
  21188. height: math.unit(6 + 1 / 12, "feet"),
  21189. default: true
  21190. },
  21191. ]
  21192. ))
  21193. characterMakers.push(() => makeCharacter(
  21194. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21195. {
  21196. front: {
  21197. height: math.unit(5 + 7 / 12, "feet"),
  21198. weight: math.unit(140, "lb"),
  21199. name: "Front",
  21200. image: {
  21201. source: "./media/characters/shane/front.svg",
  21202. extra: 304 / 289,
  21203. bottom: 0.005
  21204. }
  21205. },
  21206. },
  21207. [
  21208. {
  21209. name: "Normal",
  21210. height: math.unit(5 + 7 / 12, "feet"),
  21211. default: true
  21212. },
  21213. ]
  21214. ))
  21215. characterMakers.push(() => makeCharacter(
  21216. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21217. {
  21218. front: {
  21219. height: math.unit(5 + 9 / 12, "feet"),
  21220. weight: math.unit(178, "lb"),
  21221. name: "Front",
  21222. image: {
  21223. source: "./media/characters/shin/front.svg",
  21224. extra: 159 / 151,
  21225. bottom: 0.015
  21226. }
  21227. },
  21228. },
  21229. [
  21230. {
  21231. name: "Normal",
  21232. height: math.unit(5 + 9 / 12, "feet"),
  21233. default: true
  21234. },
  21235. ]
  21236. ))
  21237. characterMakers.push(() => makeCharacter(
  21238. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21239. {
  21240. front: {
  21241. height: math.unit(5 + 10 / 12, "feet"),
  21242. weight: math.unit(168, "lb"),
  21243. name: "Front",
  21244. image: {
  21245. source: "./media/characters/xerxes/front.svg",
  21246. extra: 282 / 260,
  21247. bottom: 0.045
  21248. }
  21249. },
  21250. },
  21251. [
  21252. {
  21253. name: "Normal",
  21254. height: math.unit(5 + 10 / 12, "feet"),
  21255. default: true
  21256. },
  21257. ]
  21258. ))
  21259. characterMakers.push(() => makeCharacter(
  21260. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21261. {
  21262. front: {
  21263. height: math.unit(6 + 7 / 12, "feet"),
  21264. weight: math.unit(208, "lb"),
  21265. name: "Front",
  21266. image: {
  21267. source: "./media/characters/chaska/front.svg",
  21268. extra: 332 / 319,
  21269. bottom: 0.015
  21270. }
  21271. },
  21272. },
  21273. [
  21274. {
  21275. name: "Normal",
  21276. height: math.unit(6 + 7 / 12, "feet"),
  21277. default: true
  21278. },
  21279. ]
  21280. ))
  21281. characterMakers.push(() => makeCharacter(
  21282. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21283. {
  21284. front: {
  21285. height: math.unit(5 + 8 / 12, "feet"),
  21286. weight: math.unit(208, "lb"),
  21287. name: "Front",
  21288. image: {
  21289. source: "./media/characters/enuk/front.svg",
  21290. extra: 437 / 406,
  21291. bottom: 0.02
  21292. }
  21293. },
  21294. },
  21295. [
  21296. {
  21297. name: "Normal",
  21298. height: math.unit(5 + 8 / 12, "feet"),
  21299. default: true
  21300. },
  21301. ]
  21302. ))
  21303. characterMakers.push(() => makeCharacter(
  21304. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21305. {
  21306. front: {
  21307. height: math.unit(5 + 10 / 12, "feet"),
  21308. weight: math.unit(252, "lb"),
  21309. name: "Front",
  21310. image: {
  21311. source: "./media/characters/bruun/front.svg",
  21312. extra: 197 / 187,
  21313. bottom: 0.012
  21314. }
  21315. },
  21316. },
  21317. [
  21318. {
  21319. name: "Normal",
  21320. height: math.unit(5 + 10 / 12, "feet"),
  21321. default: true
  21322. },
  21323. ]
  21324. ))
  21325. characterMakers.push(() => makeCharacter(
  21326. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21327. {
  21328. front: {
  21329. height: math.unit(6 + 10 / 12, "feet"),
  21330. weight: math.unit(255, "lb"),
  21331. name: "Front",
  21332. image: {
  21333. source: "./media/characters/alexeev/front.svg",
  21334. extra: 213 / 200,
  21335. bottom: 0.05
  21336. }
  21337. },
  21338. },
  21339. [
  21340. {
  21341. name: "Normal",
  21342. height: math.unit(6 + 10 / 12, "feet"),
  21343. default: true
  21344. },
  21345. ]
  21346. ))
  21347. characterMakers.push(() => makeCharacter(
  21348. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21349. {
  21350. front: {
  21351. height: math.unit(2 + 8 / 12, "feet"),
  21352. weight: math.unit(22, "lb"),
  21353. name: "Front",
  21354. image: {
  21355. source: "./media/characters/evelyn/front.svg",
  21356. extra: 208 / 180
  21357. }
  21358. },
  21359. },
  21360. [
  21361. {
  21362. name: "Normal",
  21363. height: math.unit(2 + 8 / 12, "feet"),
  21364. default: true
  21365. },
  21366. ]
  21367. ))
  21368. characterMakers.push(() => makeCharacter(
  21369. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21370. {
  21371. front: {
  21372. height: math.unit(5 + 9 / 12, "feet"),
  21373. weight: math.unit(139, "lb"),
  21374. name: "Front",
  21375. image: {
  21376. source: "./media/characters/inca/front.svg",
  21377. extra: 294 / 291,
  21378. bottom: 0.03
  21379. }
  21380. },
  21381. },
  21382. [
  21383. {
  21384. name: "Normal",
  21385. height: math.unit(5 + 9 / 12, "feet"),
  21386. default: true
  21387. },
  21388. ]
  21389. ))
  21390. characterMakers.push(() => makeCharacter(
  21391. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21392. {
  21393. front: {
  21394. height: math.unit(6 + 3 / 12, "feet"),
  21395. weight: math.unit(185, "lb"),
  21396. name: "Front",
  21397. image: {
  21398. source: "./media/characters/mera/front.svg",
  21399. extra: 291 / 277,
  21400. bottom: 0.03
  21401. }
  21402. },
  21403. },
  21404. [
  21405. {
  21406. name: "Normal",
  21407. height: math.unit(6 + 3 / 12, "feet"),
  21408. default: true
  21409. },
  21410. ]
  21411. ))
  21412. characterMakers.push(() => makeCharacter(
  21413. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21414. {
  21415. front: {
  21416. height: math.unit(6 + 7 / 12, "feet"),
  21417. weight: math.unit(160, "lb"),
  21418. name: "Front",
  21419. image: {
  21420. source: "./media/characters/ceres/front.svg",
  21421. extra: 1023 / 950,
  21422. bottom: 0.027
  21423. }
  21424. },
  21425. back: {
  21426. height: math.unit(6 + 7 / 12, "feet"),
  21427. weight: math.unit(160, "lb"),
  21428. name: "Back",
  21429. image: {
  21430. source: "./media/characters/ceres/back.svg",
  21431. extra: 1023 / 950
  21432. }
  21433. },
  21434. },
  21435. [
  21436. {
  21437. name: "Normal",
  21438. height: math.unit(6 + 7 / 12, "feet"),
  21439. default: true
  21440. },
  21441. ]
  21442. ))
  21443. characterMakers.push(() => makeCharacter(
  21444. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21445. {
  21446. front: {
  21447. height: math.unit(5 + 10 / 12, "feet"),
  21448. weight: math.unit(150, "lb"),
  21449. name: "Front",
  21450. image: {
  21451. source: "./media/characters/kris/front.svg",
  21452. extra: 885 / 803,
  21453. bottom: 0.03
  21454. }
  21455. },
  21456. },
  21457. [
  21458. {
  21459. name: "Normal",
  21460. height: math.unit(5 + 10 / 12, "feet"),
  21461. default: true
  21462. },
  21463. ]
  21464. ))
  21465. characterMakers.push(() => makeCharacter(
  21466. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21467. {
  21468. front: {
  21469. height: math.unit(7, "feet"),
  21470. weight: math.unit(120, "kg"),
  21471. name: "Front",
  21472. image: {
  21473. source: "./media/characters/taluthus/front.svg",
  21474. extra: 903 / 833,
  21475. bottom: 0.015
  21476. }
  21477. },
  21478. },
  21479. [
  21480. {
  21481. name: "Normal",
  21482. height: math.unit(7, "feet"),
  21483. default: true
  21484. },
  21485. {
  21486. name: "Macro",
  21487. height: math.unit(300, "feet")
  21488. },
  21489. ]
  21490. ))
  21491. characterMakers.push(() => makeCharacter(
  21492. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21493. {
  21494. front: {
  21495. height: math.unit(5 + 9 / 12, "feet"),
  21496. weight: math.unit(145, "lb"),
  21497. name: "Front",
  21498. image: {
  21499. source: "./media/characters/dawn/front.svg",
  21500. extra: 2094 / 2016,
  21501. bottom: 0.025
  21502. }
  21503. },
  21504. back: {
  21505. height: math.unit(5 + 9 / 12, "feet"),
  21506. weight: math.unit(160, "lb"),
  21507. name: "Back",
  21508. image: {
  21509. source: "./media/characters/dawn/back.svg",
  21510. extra: 2112 / 2080,
  21511. bottom: 0.005
  21512. }
  21513. },
  21514. },
  21515. [
  21516. {
  21517. name: "Normal",
  21518. height: math.unit(6 + 7 / 12, "feet"),
  21519. default: true
  21520. },
  21521. ]
  21522. ))
  21523. characterMakers.push(() => makeCharacter(
  21524. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21525. {
  21526. anthro: {
  21527. height: math.unit(8 + 3 / 12, "feet"),
  21528. weight: math.unit(450, "lb"),
  21529. name: "Anthro",
  21530. image: {
  21531. source: "./media/characters/arador/anthro.svg",
  21532. extra: 1835 / 1718,
  21533. bottom: 0.025
  21534. }
  21535. },
  21536. feral: {
  21537. height: math.unit(4, "feet"),
  21538. weight: math.unit(200, "lb"),
  21539. name: "Feral",
  21540. image: {
  21541. source: "./media/characters/arador/feral.svg",
  21542. extra: 1683 / 1514,
  21543. bottom: 0.07
  21544. }
  21545. },
  21546. },
  21547. [
  21548. {
  21549. name: "Normal",
  21550. height: math.unit(8 + 3 / 12, "feet")
  21551. },
  21552. {
  21553. name: "Macro",
  21554. height: math.unit(82.5, "feet"),
  21555. default: true
  21556. },
  21557. ]
  21558. ))
  21559. characterMakers.push(() => makeCharacter(
  21560. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21561. {
  21562. front: {
  21563. height: math.unit(5 + 10 / 12, "feet"),
  21564. weight: math.unit(125, "lb"),
  21565. name: "Front",
  21566. image: {
  21567. source: "./media/characters/dharsi/front.svg",
  21568. extra: 716 / 630,
  21569. bottom: 0.035
  21570. }
  21571. },
  21572. },
  21573. [
  21574. {
  21575. name: "Nano",
  21576. height: math.unit(100, "nm")
  21577. },
  21578. {
  21579. name: "Micro",
  21580. height: math.unit(2, "inches")
  21581. },
  21582. {
  21583. name: "Normal",
  21584. height: math.unit(5 + 10 / 12, "feet"),
  21585. default: true
  21586. },
  21587. {
  21588. name: "Macro",
  21589. height: math.unit(1000, "feet")
  21590. },
  21591. {
  21592. name: "Megamacro",
  21593. height: math.unit(10, "miles")
  21594. },
  21595. {
  21596. name: "Gigamacro",
  21597. height: math.unit(3000, "miles")
  21598. },
  21599. {
  21600. name: "Teramacro",
  21601. height: math.unit(500000, "miles")
  21602. },
  21603. {
  21604. name: "Teramacro+",
  21605. height: math.unit(30, "galaxies")
  21606. },
  21607. ]
  21608. ))
  21609. characterMakers.push(() => makeCharacter(
  21610. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21611. {
  21612. front: {
  21613. height: math.unit(6, "feet"),
  21614. weight: math.unit(150, "lb"),
  21615. name: "Front",
  21616. image: {
  21617. source: "./media/characters/deathy/front.svg",
  21618. extra: 1552 / 1463,
  21619. bottom: 0.025
  21620. }
  21621. },
  21622. side: {
  21623. height: math.unit(6, "feet"),
  21624. weight: math.unit(150, "lb"),
  21625. name: "Side",
  21626. image: {
  21627. source: "./media/characters/deathy/side.svg",
  21628. extra: 1604 / 1455,
  21629. bottom: 0.025
  21630. }
  21631. },
  21632. back: {
  21633. height: math.unit(6, "feet"),
  21634. weight: math.unit(150, "lb"),
  21635. name: "Back",
  21636. image: {
  21637. source: "./media/characters/deathy/back.svg",
  21638. extra: 1580 / 1463,
  21639. bottom: 0.005
  21640. }
  21641. },
  21642. },
  21643. [
  21644. {
  21645. name: "Micro",
  21646. height: math.unit(5, "millimeters")
  21647. },
  21648. {
  21649. name: "Normal",
  21650. height: math.unit(6 + 5 / 12, "feet"),
  21651. default: true
  21652. },
  21653. ]
  21654. ))
  21655. characterMakers.push(() => makeCharacter(
  21656. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21657. {
  21658. front: {
  21659. height: math.unit(16, "feet"),
  21660. weight: math.unit(4000, "lb"),
  21661. name: "Front",
  21662. image: {
  21663. source: "./media/characters/juniper/front.svg",
  21664. bottom: 0.04
  21665. }
  21666. },
  21667. },
  21668. [
  21669. {
  21670. name: "Normal",
  21671. height: math.unit(16, "feet"),
  21672. default: true
  21673. },
  21674. ]
  21675. ))
  21676. characterMakers.push(() => makeCharacter(
  21677. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21678. {
  21679. front: {
  21680. height: math.unit(6, "feet"),
  21681. weight: math.unit(150, "lb"),
  21682. name: "Front",
  21683. image: {
  21684. source: "./media/characters/hipster/front.svg",
  21685. extra: 1312 / 1209,
  21686. bottom: 0.025
  21687. }
  21688. },
  21689. back: {
  21690. height: math.unit(6, "feet"),
  21691. weight: math.unit(150, "lb"),
  21692. name: "Back",
  21693. image: {
  21694. source: "./media/characters/hipster/back.svg",
  21695. extra: 1281 / 1196,
  21696. bottom: 0.01
  21697. }
  21698. },
  21699. },
  21700. [
  21701. {
  21702. name: "Micro",
  21703. height: math.unit(1, "mm")
  21704. },
  21705. {
  21706. name: "Normal",
  21707. height: math.unit(4, "inches"),
  21708. default: true
  21709. },
  21710. {
  21711. name: "Macro",
  21712. height: math.unit(500, "feet")
  21713. },
  21714. {
  21715. name: "Megamacro",
  21716. height: math.unit(1000, "miles")
  21717. },
  21718. ]
  21719. ))
  21720. characterMakers.push(() => makeCharacter(
  21721. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21722. {
  21723. front: {
  21724. height: math.unit(6, "feet"),
  21725. weight: math.unit(150, "lb"),
  21726. name: "Front",
  21727. image: {
  21728. source: "./media/characters/tendirmuldr/front.svg",
  21729. extra: 1878 / 1772,
  21730. bottom: 0.015
  21731. }
  21732. },
  21733. },
  21734. [
  21735. {
  21736. name: "Megamacro",
  21737. height: math.unit(1500, "miles"),
  21738. default: true
  21739. },
  21740. ]
  21741. ))
  21742. characterMakers.push(() => makeCharacter(
  21743. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21744. {
  21745. front: {
  21746. height: math.unit(14, "feet"),
  21747. weight: math.unit(12000, "lb"),
  21748. name: "Front",
  21749. image: {
  21750. source: "./media/characters/mort/front.svg",
  21751. extra: 365 / 318,
  21752. bottom: 0.01
  21753. }
  21754. },
  21755. side: {
  21756. height: math.unit(14, "feet"),
  21757. weight: math.unit(12000, "lb"),
  21758. name: "Side",
  21759. image: {
  21760. source: "./media/characters/mort/side.svg",
  21761. extra: 365 / 318,
  21762. bottom: 0.052
  21763. },
  21764. default: true
  21765. },
  21766. back: {
  21767. height: math.unit(14, "feet"),
  21768. weight: math.unit(12000, "lb"),
  21769. name: "Back",
  21770. image: {
  21771. source: "./media/characters/mort/back.svg",
  21772. extra: 371 / 332,
  21773. bottom: 0.18
  21774. }
  21775. },
  21776. },
  21777. [
  21778. {
  21779. name: "Normal",
  21780. height: math.unit(14, "feet"),
  21781. default: true
  21782. },
  21783. ]
  21784. ))
  21785. characterMakers.push(() => makeCharacter(
  21786. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21787. {
  21788. front: {
  21789. height: math.unit(8, "feet"),
  21790. weight: math.unit(1, "ton"),
  21791. name: "Front",
  21792. image: {
  21793. source: "./media/characters/lycoa/front.svg",
  21794. extra: 1836/1728,
  21795. bottom: 81/1917
  21796. }
  21797. },
  21798. back: {
  21799. height: math.unit(8, "feet"),
  21800. weight: math.unit(1, "ton"),
  21801. name: "Back",
  21802. image: {
  21803. source: "./media/characters/lycoa/back.svg",
  21804. extra: 1785/1720,
  21805. bottom: 91/1876
  21806. }
  21807. },
  21808. head: {
  21809. height: math.unit(1.6243, "feet"),
  21810. name: "Head",
  21811. image: {
  21812. source: "./media/characters/lycoa/head.svg",
  21813. extra: 1011/782,
  21814. bottom: 0/1011
  21815. }
  21816. },
  21817. tailmaw: {
  21818. height: math.unit(1.9, "feet"),
  21819. name: "Tailmaw",
  21820. image: {
  21821. source: "./media/characters/lycoa/tailmaw.svg"
  21822. }
  21823. },
  21824. tentacles: {
  21825. height: math.unit(2.1, "feet"),
  21826. name: "Tentacles",
  21827. image: {
  21828. source: "./media/characters/lycoa/tentacles.svg"
  21829. }
  21830. },
  21831. dick: {
  21832. height: math.unit(1.73, "feet"),
  21833. name: "Dick",
  21834. image: {
  21835. source: "./media/characters/lycoa/dick.svg"
  21836. }
  21837. },
  21838. },
  21839. [
  21840. {
  21841. name: "Normal",
  21842. height: math.unit(8, "feet"),
  21843. default: true
  21844. },
  21845. {
  21846. name: "Macro",
  21847. height: math.unit(30, "feet")
  21848. },
  21849. ]
  21850. ))
  21851. characterMakers.push(() => makeCharacter(
  21852. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21853. {
  21854. front: {
  21855. height: math.unit(4 + 2 / 12, "feet"),
  21856. weight: math.unit(70, "lb"),
  21857. name: "Front",
  21858. image: {
  21859. source: "./media/characters/naldara/front.svg",
  21860. extra: 1664/1387,
  21861. bottom: 81/1745
  21862. },
  21863. form: "anthro",
  21864. default: true
  21865. },
  21866. naga: {
  21867. height: math.unit(20, "feet"),
  21868. weight: math.unit(15000, "kg"),
  21869. name: "Front",
  21870. image: {
  21871. source: "./media/characters/naldara/naga.svg",
  21872. extra: 1590/1396,
  21873. bottom: 285/1875
  21874. },
  21875. form: "naga",
  21876. default: true
  21877. },
  21878. },
  21879. [
  21880. {
  21881. name: "Normal",
  21882. height: math.unit(4 + 2 / 12, "feet"),
  21883. form: "anthro",
  21884. default: true
  21885. },
  21886. {
  21887. name: "Normal",
  21888. height: math.unit(20, "feet"),
  21889. form: "naga",
  21890. default: true
  21891. },
  21892. ],
  21893. {
  21894. "anthro": {
  21895. name: "Anthro",
  21896. default: true
  21897. },
  21898. "naga": {
  21899. name: "Naga"
  21900. }
  21901. }
  21902. ))
  21903. characterMakers.push(() => makeCharacter(
  21904. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21905. {
  21906. front: {
  21907. height: math.unit(13 + 7 / 12, "feet"),
  21908. weight: math.unit(1500, "lb"),
  21909. name: "Front",
  21910. image: {
  21911. source: "./media/characters/briar/front.svg",
  21912. extra: 1223/1157,
  21913. bottom: 123/1346
  21914. }
  21915. },
  21916. },
  21917. [
  21918. {
  21919. name: "Normal",
  21920. height: math.unit(13 + 7 / 12, "feet"),
  21921. default: true
  21922. },
  21923. ]
  21924. ))
  21925. characterMakers.push(() => makeCharacter(
  21926. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21927. {
  21928. side: {
  21929. height: math.unit(16, "feet"),
  21930. weight: math.unit(500, "lb"),
  21931. name: "Side",
  21932. image: {
  21933. source: "./media/characters/vanguard/side.svg",
  21934. extra: 1022/914,
  21935. bottom: 30/1052
  21936. }
  21937. },
  21938. sideAlt: {
  21939. height: math.unit(10, "feet"),
  21940. weight: math.unit(500, "lb"),
  21941. name: "Side (Alt)",
  21942. image: {
  21943. source: "./media/characters/vanguard/side-alt.svg",
  21944. extra: 502 / 425,
  21945. bottom: 0.087
  21946. }
  21947. },
  21948. },
  21949. [
  21950. {
  21951. name: "Normal",
  21952. height: math.unit(17.71, "feet"),
  21953. default: true
  21954. },
  21955. ]
  21956. ))
  21957. characterMakers.push(() => makeCharacter(
  21958. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21959. {
  21960. front: {
  21961. height: math.unit(7.5, "feet"),
  21962. weight: math.unit(2, "lb"),
  21963. name: "Front",
  21964. image: {
  21965. source: "./media/characters/artemis/work-safe-front.svg",
  21966. extra: 1192 / 1075,
  21967. bottom: 0.07
  21968. },
  21969. form: "work-safe",
  21970. default: true
  21971. },
  21972. frontNsfw: {
  21973. height: math.unit(7.5, "feet"),
  21974. weight: math.unit(2, "lb"),
  21975. name: "Front",
  21976. image: {
  21977. source: "./media/characters/artemis/calibrating-front.svg",
  21978. extra: 1192 / 1075,
  21979. bottom: 0.07
  21980. },
  21981. form: "calibrating",
  21982. default: true
  21983. },
  21984. frontNsfwer: {
  21985. height: math.unit(7.5, "feet"),
  21986. weight: math.unit(2, "lb"),
  21987. name: "Front",
  21988. image: {
  21989. source: "./media/characters/artemis/oversize-load-front.svg",
  21990. extra: 1192 / 1075,
  21991. bottom: 0.07
  21992. },
  21993. form: "oversize-load",
  21994. default: true
  21995. },
  21996. side: {
  21997. height: math.unit(7.5, "feet"),
  21998. weight: math.unit(2, "lb"),
  21999. name: "Side",
  22000. image: {
  22001. source: "./media/characters/artemis/work-safe-side.svg",
  22002. extra: 1192 / 1075,
  22003. bottom: 0.07
  22004. },
  22005. form: "work-safe"
  22006. },
  22007. sideNsfw: {
  22008. height: math.unit(7.5, "feet"),
  22009. weight: math.unit(2, "lb"),
  22010. name: "Side",
  22011. image: {
  22012. source: "./media/characters/artemis/calibrating-side.svg",
  22013. extra: 1192 / 1075,
  22014. bottom: 0.07
  22015. },
  22016. form: "calibrating"
  22017. },
  22018. sideNsfwer: {
  22019. height: math.unit(7.5, "feet"),
  22020. weight: math.unit(2, "lb"),
  22021. name: "Side",
  22022. image: {
  22023. source: "./media/characters/artemis/oversize-load-side.svg",
  22024. extra: 1192 / 1075,
  22025. bottom: 0.07
  22026. },
  22027. form: "oversize-load"
  22028. },
  22029. maw: {
  22030. height: math.unit(1.1, "feet"),
  22031. name: "Maw",
  22032. image: {
  22033. source: "./media/characters/artemis/maw.svg"
  22034. },
  22035. form: "work-safe"
  22036. },
  22037. stomach: {
  22038. height: math.unit(0.95, "feet"),
  22039. name: "Stomach",
  22040. image: {
  22041. source: "./media/characters/artemis/stomach.svg"
  22042. },
  22043. form: "work-safe"
  22044. },
  22045. dickCanine: {
  22046. height: math.unit(1, "feet"),
  22047. name: "Dick (Canine)",
  22048. image: {
  22049. source: "./media/characters/artemis/dick-canine.svg"
  22050. },
  22051. form: "calibrating"
  22052. },
  22053. dickEquine: {
  22054. height: math.unit(0.85, "feet"),
  22055. name: "Dick (Equine)",
  22056. image: {
  22057. source: "./media/characters/artemis/dick-equine.svg"
  22058. },
  22059. form: "calibrating"
  22060. },
  22061. dickExotic: {
  22062. height: math.unit(0.85, "feet"),
  22063. name: "Dick (Exotic)",
  22064. image: {
  22065. source: "./media/characters/artemis/dick-exotic.svg"
  22066. },
  22067. form: "calibrating"
  22068. },
  22069. dickCanineBigger: {
  22070. height: math.unit(1 * 1.33, "feet"),
  22071. name: "Dick (Canine)",
  22072. image: {
  22073. source: "./media/characters/artemis/dick-canine.svg"
  22074. },
  22075. form: "oversize-load"
  22076. },
  22077. dickEquineBigger: {
  22078. height: math.unit(0.85 * 1.33, "feet"),
  22079. name: "Dick (Equine)",
  22080. image: {
  22081. source: "./media/characters/artemis/dick-equine.svg"
  22082. },
  22083. form: "oversize-load"
  22084. },
  22085. dickExoticBigger: {
  22086. height: math.unit(0.85 * 1.33, "feet"),
  22087. name: "Dick (Exotic)",
  22088. image: {
  22089. source: "./media/characters/artemis/dick-exotic.svg"
  22090. },
  22091. form: "oversize-load"
  22092. },
  22093. },
  22094. [
  22095. {
  22096. name: "Normal",
  22097. height: math.unit(7.5, "feet"),
  22098. form: "work-safe",
  22099. default: true
  22100. },
  22101. {
  22102. name: "Normal",
  22103. height: math.unit(7.5, "feet"),
  22104. form: "calibrating",
  22105. default: true
  22106. },
  22107. {
  22108. name: "Normal",
  22109. height: math.unit(7.5, "feet"),
  22110. form: "oversize-load",
  22111. default: true
  22112. },
  22113. {
  22114. name: "Enlarged",
  22115. height: math.unit(12, "feet"),
  22116. form: "work-safe",
  22117. },
  22118. {
  22119. name: "Enlarged",
  22120. height: math.unit(12, "feet"),
  22121. form: "calibrating",
  22122. },
  22123. {
  22124. name: "Enlarged",
  22125. height: math.unit(12, "feet"),
  22126. form: "oversize-load",
  22127. },
  22128. ],
  22129. {
  22130. "work-safe": {
  22131. name: "Work-Safe",
  22132. default: true
  22133. },
  22134. "calibrating": {
  22135. name: "Calibrating"
  22136. },
  22137. "oversize-load": {
  22138. name: "Oversize Load"
  22139. }
  22140. }
  22141. ))
  22142. characterMakers.push(() => makeCharacter(
  22143. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22144. {
  22145. front: {
  22146. height: math.unit(5 + 3 / 12, "feet"),
  22147. weight: math.unit(160, "lb"),
  22148. name: "Front",
  22149. image: {
  22150. source: "./media/characters/kira/front.svg",
  22151. extra: 906 / 786,
  22152. bottom: 0.01
  22153. }
  22154. },
  22155. back: {
  22156. height: math.unit(5 + 3 / 12, "feet"),
  22157. weight: math.unit(160, "lb"),
  22158. name: "Back",
  22159. image: {
  22160. source: "./media/characters/kira/back.svg",
  22161. extra: 882 / 757,
  22162. bottom: 0.005
  22163. }
  22164. },
  22165. frontDressed: {
  22166. height: math.unit(5 + 3 / 12, "feet"),
  22167. weight: math.unit(160, "lb"),
  22168. name: "Front (Dressed)",
  22169. image: {
  22170. source: "./media/characters/kira/front-dressed.svg",
  22171. extra: 906 / 786,
  22172. bottom: 0.01
  22173. }
  22174. },
  22175. beans: {
  22176. height: math.unit(0.92, "feet"),
  22177. name: "Beans",
  22178. image: {
  22179. source: "./media/characters/kira/beans.svg"
  22180. }
  22181. },
  22182. },
  22183. [
  22184. {
  22185. name: "Normal",
  22186. height: math.unit(5 + 3 / 12, "feet"),
  22187. default: true
  22188. },
  22189. ]
  22190. ))
  22191. characterMakers.push(() => makeCharacter(
  22192. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22193. {
  22194. front: {
  22195. height: math.unit(5 + 4 / 12, "feet"),
  22196. weight: math.unit(145, "lb"),
  22197. name: "Front",
  22198. image: {
  22199. source: "./media/characters/scramble/front.svg",
  22200. extra: 763 / 727,
  22201. bottom: 0.05
  22202. }
  22203. },
  22204. back: {
  22205. height: math.unit(5 + 4 / 12, "feet"),
  22206. weight: math.unit(145, "lb"),
  22207. name: "Back",
  22208. image: {
  22209. source: "./media/characters/scramble/back.svg",
  22210. extra: 826 / 737,
  22211. bottom: 0.002
  22212. }
  22213. },
  22214. },
  22215. [
  22216. {
  22217. name: "Normal",
  22218. height: math.unit(5 + 4 / 12, "feet"),
  22219. default: true
  22220. },
  22221. ]
  22222. ))
  22223. characterMakers.push(() => makeCharacter(
  22224. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22225. {
  22226. side: {
  22227. height: math.unit(6 + 2 / 12, "feet"),
  22228. weight: math.unit(190, "lb"),
  22229. name: "Side",
  22230. image: {
  22231. source: "./media/characters/biscuit/side.svg",
  22232. extra: 858 / 791,
  22233. bottom: 0.044
  22234. }
  22235. },
  22236. },
  22237. [
  22238. {
  22239. name: "Normal",
  22240. height: math.unit(6 + 2 / 12, "feet"),
  22241. default: true
  22242. },
  22243. ]
  22244. ))
  22245. characterMakers.push(() => makeCharacter(
  22246. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22247. {
  22248. front: {
  22249. height: math.unit(5 + 2 / 12, "feet"),
  22250. weight: math.unit(120, "lb"),
  22251. name: "Front",
  22252. image: {
  22253. source: "./media/characters/poffin/front.svg",
  22254. extra: 786 / 680,
  22255. bottom: 0.005
  22256. }
  22257. },
  22258. },
  22259. [
  22260. {
  22261. name: "Normal",
  22262. height: math.unit(5 + 2 / 12, "feet"),
  22263. default: true
  22264. },
  22265. ]
  22266. ))
  22267. characterMakers.push(() => makeCharacter(
  22268. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22269. {
  22270. front: {
  22271. height: math.unit(6 + 3 / 12, "feet"),
  22272. weight: math.unit(519, "lb"),
  22273. name: "Front",
  22274. image: {
  22275. source: "./media/characters/dhari/front.svg",
  22276. extra: 1048 / 946,
  22277. bottom: 0.015
  22278. }
  22279. },
  22280. back: {
  22281. height: math.unit(6 + 3 / 12, "feet"),
  22282. weight: math.unit(519, "lb"),
  22283. name: "Back",
  22284. image: {
  22285. source: "./media/characters/dhari/back.svg",
  22286. extra: 1048 / 931,
  22287. bottom: 0.005
  22288. }
  22289. },
  22290. frontDressed: {
  22291. height: math.unit(6 + 3 / 12, "feet"),
  22292. weight: math.unit(519, "lb"),
  22293. name: "Front (Dressed)",
  22294. image: {
  22295. source: "./media/characters/dhari/front-dressed.svg",
  22296. extra: 1713 / 1546,
  22297. bottom: 0.02
  22298. }
  22299. },
  22300. backDressed: {
  22301. height: math.unit(6 + 3 / 12, "feet"),
  22302. weight: math.unit(519, "lb"),
  22303. name: "Back (Dressed)",
  22304. image: {
  22305. source: "./media/characters/dhari/back-dressed.svg",
  22306. extra: 1699 / 1537,
  22307. bottom: 0.01
  22308. }
  22309. },
  22310. maw: {
  22311. height: math.unit(0.95, "feet"),
  22312. name: "Maw",
  22313. image: {
  22314. source: "./media/characters/dhari/maw.svg"
  22315. }
  22316. },
  22317. wereFront: {
  22318. height: math.unit(12 + 8 / 12, "feet"),
  22319. weight: math.unit(4000, "lb"),
  22320. name: "Front (Were)",
  22321. image: {
  22322. source: "./media/characters/dhari/were-front.svg",
  22323. extra: 1065 / 969,
  22324. bottom: 0.015
  22325. }
  22326. },
  22327. wereBack: {
  22328. height: math.unit(12 + 8 / 12, "feet"),
  22329. weight: math.unit(4000, "lb"),
  22330. name: "Back (Were)",
  22331. image: {
  22332. source: "./media/characters/dhari/were-back.svg",
  22333. extra: 1065 / 969,
  22334. bottom: 0.012
  22335. }
  22336. },
  22337. wereMaw: {
  22338. height: math.unit(0.625, "meters"),
  22339. name: "Maw (Were)",
  22340. image: {
  22341. source: "./media/characters/dhari/were-maw.svg"
  22342. }
  22343. },
  22344. },
  22345. [
  22346. {
  22347. name: "Normal",
  22348. height: math.unit(6 + 3 / 12, "feet"),
  22349. default: true
  22350. },
  22351. ]
  22352. ))
  22353. characterMakers.push(() => makeCharacter(
  22354. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22355. {
  22356. anthro: {
  22357. height: math.unit(5 + 7 / 12, "feet"),
  22358. weight: math.unit(175, "lb"),
  22359. name: "Anthro",
  22360. image: {
  22361. source: "./media/characters/rena-dyne/anthro.svg",
  22362. extra: 1849 / 1785,
  22363. bottom: 0.005
  22364. }
  22365. },
  22366. taur: {
  22367. height: math.unit(15 + 6 / 12, "feet"),
  22368. weight: math.unit(8000, "lb"),
  22369. name: "Taur",
  22370. image: {
  22371. source: "./media/characters/rena-dyne/taur.svg",
  22372. extra: 2315 / 2234,
  22373. bottom: 0.033
  22374. }
  22375. },
  22376. },
  22377. [
  22378. {
  22379. name: "Normal",
  22380. height: math.unit(5 + 7 / 12, "feet"),
  22381. default: true
  22382. },
  22383. ]
  22384. ))
  22385. characterMakers.push(() => makeCharacter(
  22386. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22387. {
  22388. front: {
  22389. height: math.unit(8, "feet"),
  22390. weight: math.unit(600, "lb"),
  22391. name: "Front",
  22392. image: {
  22393. source: "./media/characters/weremeep/front.svg",
  22394. extra: 970/849,
  22395. bottom: 7/977
  22396. }
  22397. },
  22398. },
  22399. [
  22400. {
  22401. name: "Normal",
  22402. height: math.unit(8, "feet"),
  22403. default: true
  22404. },
  22405. {
  22406. name: "Lorg",
  22407. height: math.unit(12, "feet")
  22408. },
  22409. {
  22410. name: "Oh Lawd She Comin'",
  22411. height: math.unit(20, "feet")
  22412. },
  22413. ]
  22414. ))
  22415. characterMakers.push(() => makeCharacter(
  22416. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22417. {
  22418. front: {
  22419. height: math.unit(4, "feet"),
  22420. weight: math.unit(90, "lb"),
  22421. name: "Front",
  22422. image: {
  22423. source: "./media/characters/reza/front.svg",
  22424. extra: 1183 / 1111,
  22425. bottom: 0.017
  22426. }
  22427. },
  22428. back: {
  22429. height: math.unit(4, "feet"),
  22430. weight: math.unit(90, "lb"),
  22431. name: "Back",
  22432. image: {
  22433. source: "./media/characters/reza/back.svg",
  22434. extra: 1183 / 1111,
  22435. bottom: 0.01
  22436. }
  22437. },
  22438. drake: {
  22439. height: math.unit(30, "feet"),
  22440. weight: math.unit(246960, "lb"),
  22441. name: "Drake",
  22442. image: {
  22443. source: "./media/characters/reza/drake.svg",
  22444. extra: 2350 / 2024,
  22445. bottom: 60.7 / 2403
  22446. }
  22447. },
  22448. },
  22449. [
  22450. {
  22451. name: "Normal",
  22452. height: math.unit(4, "feet"),
  22453. default: true
  22454. },
  22455. ]
  22456. ))
  22457. characterMakers.push(() => makeCharacter(
  22458. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22459. {
  22460. side: {
  22461. height: math.unit(15, "feet"),
  22462. weight: math.unit(14, "tons"),
  22463. name: "Side",
  22464. image: {
  22465. source: "./media/characters/athea/side.svg",
  22466. extra: 960 / 540,
  22467. bottom: 0.003
  22468. }
  22469. },
  22470. sitting: {
  22471. height: math.unit(6 * 2.85, "feet"),
  22472. weight: math.unit(14, "tons"),
  22473. name: "Sitting",
  22474. image: {
  22475. source: "./media/characters/athea/sitting.svg",
  22476. extra: 621 / 581,
  22477. bottom: 0.075
  22478. }
  22479. },
  22480. maw: {
  22481. height: math.unit(7.59498031496063, "feet"),
  22482. name: "Maw",
  22483. image: {
  22484. source: "./media/characters/athea/maw.svg"
  22485. }
  22486. },
  22487. },
  22488. [
  22489. {
  22490. name: "Lap Cat",
  22491. height: math.unit(2.5, "feet")
  22492. },
  22493. {
  22494. name: "Minimacro",
  22495. height: math.unit(15, "feet"),
  22496. default: true
  22497. },
  22498. {
  22499. name: "Macro",
  22500. height: math.unit(120, "feet")
  22501. },
  22502. {
  22503. name: "Macro+",
  22504. height: math.unit(640, "feet")
  22505. },
  22506. {
  22507. name: "Colossus",
  22508. height: math.unit(2.2, "miles")
  22509. },
  22510. ]
  22511. ))
  22512. characterMakers.push(() => makeCharacter(
  22513. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22514. {
  22515. front: {
  22516. height: math.unit(8 + 8 / 12, "feet"),
  22517. weight: math.unit(130, "kg"),
  22518. name: "Front",
  22519. image: {
  22520. source: "./media/characters/seroko/front.svg",
  22521. extra: 1385 / 1280,
  22522. bottom: 0.025
  22523. }
  22524. },
  22525. back: {
  22526. height: math.unit(8 + 8 / 12, "feet"),
  22527. weight: math.unit(130, "kg"),
  22528. name: "Back",
  22529. image: {
  22530. source: "./media/characters/seroko/back.svg",
  22531. extra: 1369 / 1238,
  22532. bottom: 0.018
  22533. }
  22534. },
  22535. frontDressed: {
  22536. height: math.unit(8 + 8 / 12, "feet"),
  22537. weight: math.unit(130, "kg"),
  22538. name: "Front (Dressed)",
  22539. image: {
  22540. source: "./media/characters/seroko/front-dressed.svg",
  22541. extra: 1366 / 1275,
  22542. bottom: 0.03
  22543. }
  22544. },
  22545. },
  22546. [
  22547. {
  22548. name: "Normal",
  22549. height: math.unit(8 + 8 / 12, "feet"),
  22550. default: true
  22551. },
  22552. ]
  22553. ))
  22554. characterMakers.push(() => makeCharacter(
  22555. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22556. {
  22557. front: {
  22558. height: math.unit(5.5, "feet"),
  22559. weight: math.unit(160, "lb"),
  22560. name: "Front",
  22561. image: {
  22562. source: "./media/characters/quatzi/front.svg",
  22563. extra: 2346 / 2242,
  22564. bottom: 0.015
  22565. }
  22566. },
  22567. },
  22568. [
  22569. {
  22570. name: "Normal",
  22571. height: math.unit(5.5, "feet"),
  22572. default: true
  22573. },
  22574. {
  22575. name: "Big",
  22576. height: math.unit(7.7, "feet")
  22577. },
  22578. ]
  22579. ))
  22580. characterMakers.push(() => makeCharacter(
  22581. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22582. {
  22583. front: {
  22584. height: math.unit(5 + 11 / 12, "feet"),
  22585. weight: math.unit(180, "lb"),
  22586. name: "Front",
  22587. image: {
  22588. source: "./media/characters/sen/front.svg",
  22589. extra: 1321 / 1254,
  22590. bottom: 0.015
  22591. }
  22592. },
  22593. side: {
  22594. height: math.unit(5 + 11 / 12, "feet"),
  22595. weight: math.unit(180, "lb"),
  22596. name: "Side",
  22597. image: {
  22598. source: "./media/characters/sen/side.svg",
  22599. extra: 1321 / 1254,
  22600. bottom: 0.007
  22601. }
  22602. },
  22603. back: {
  22604. height: math.unit(5 + 11 / 12, "feet"),
  22605. weight: math.unit(180, "lb"),
  22606. name: "Back",
  22607. image: {
  22608. source: "./media/characters/sen/back.svg",
  22609. extra: 1321 / 1254
  22610. }
  22611. },
  22612. },
  22613. [
  22614. {
  22615. name: "Normal",
  22616. height: math.unit(5 + 11 / 12, "feet"),
  22617. default: true
  22618. },
  22619. ]
  22620. ))
  22621. characterMakers.push(() => makeCharacter(
  22622. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22623. {
  22624. front: {
  22625. height: math.unit(166.6, "cm"),
  22626. weight: math.unit(66.6, "kg"),
  22627. name: "Front",
  22628. image: {
  22629. source: "./media/characters/fruity/front.svg",
  22630. extra: 1510 / 1386,
  22631. bottom: 0.04
  22632. }
  22633. },
  22634. back: {
  22635. height: math.unit(166.6, "cm"),
  22636. weight: math.unit(66.6, "lb"),
  22637. name: "Back",
  22638. image: {
  22639. source: "./media/characters/fruity/back.svg",
  22640. extra: 1563 / 1435,
  22641. bottom: 0.005
  22642. }
  22643. },
  22644. },
  22645. [
  22646. {
  22647. name: "Normal",
  22648. height: math.unit(166.6, "cm"),
  22649. default: true
  22650. },
  22651. {
  22652. name: "Demonic",
  22653. height: math.unit(166.6, "feet")
  22654. },
  22655. ]
  22656. ))
  22657. characterMakers.push(() => makeCharacter(
  22658. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22659. {
  22660. side: {
  22661. height: math.unit(10, "feet"),
  22662. weight: math.unit(500, "lb"),
  22663. name: "Side",
  22664. image: {
  22665. source: "./media/characters/zost/side.svg",
  22666. extra: 2870/2533,
  22667. bottom: 252/3122
  22668. }
  22669. },
  22670. mawFront: {
  22671. height: math.unit(1.08, "meters"),
  22672. name: "Maw (Front)",
  22673. image: {
  22674. source: "./media/characters/zost/maw-front.svg"
  22675. }
  22676. },
  22677. mawSide: {
  22678. height: math.unit(2.66, "feet"),
  22679. name: "Maw (Side)",
  22680. image: {
  22681. source: "./media/characters/zost/maw-side.svg"
  22682. }
  22683. },
  22684. wingspan: {
  22685. height: math.unit(7.4, "feet"),
  22686. name: "Wingspan",
  22687. image: {
  22688. source: "./media/characters/zost/wingspan.svg"
  22689. }
  22690. },
  22691. },
  22692. [
  22693. {
  22694. name: "Normal",
  22695. height: math.unit(10, "feet"),
  22696. default: true
  22697. },
  22698. ]
  22699. ))
  22700. characterMakers.push(() => makeCharacter(
  22701. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22702. {
  22703. front: {
  22704. height: math.unit(5 + 4 / 12, "feet"),
  22705. weight: math.unit(120, "lb"),
  22706. name: "Front",
  22707. image: {
  22708. source: "./media/characters/luci/front.svg",
  22709. extra: 1985 / 1884,
  22710. bottom: 0.04
  22711. }
  22712. },
  22713. back: {
  22714. height: math.unit(5 + 4 / 12, "feet"),
  22715. weight: math.unit(120, "lb"),
  22716. name: "Back",
  22717. image: {
  22718. source: "./media/characters/luci/back.svg",
  22719. extra: 1892 / 1791,
  22720. bottom: 0.002
  22721. }
  22722. },
  22723. },
  22724. [
  22725. {
  22726. name: "Normal",
  22727. height: math.unit(5 + 4 / 12, "feet"),
  22728. default: true
  22729. },
  22730. ]
  22731. ))
  22732. characterMakers.push(() => makeCharacter(
  22733. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22734. {
  22735. front: {
  22736. height: math.unit(1500, "feet"),
  22737. weight: math.unit(3.8e6, "tons"),
  22738. name: "Front",
  22739. image: {
  22740. source: "./media/characters/2th/front.svg",
  22741. extra: 3489 / 3350,
  22742. bottom: 0.1
  22743. }
  22744. },
  22745. foot: {
  22746. height: math.unit(461, "feet"),
  22747. name: "Foot",
  22748. image: {
  22749. source: "./media/characters/2th/foot.svg"
  22750. }
  22751. },
  22752. },
  22753. [
  22754. {
  22755. name: "\"Micro\"",
  22756. height: math.unit(15 + 7 / 12, "feet")
  22757. },
  22758. {
  22759. name: "Normal",
  22760. height: math.unit(1500, "feet"),
  22761. default: true
  22762. },
  22763. {
  22764. name: "Macro",
  22765. height: math.unit(5000, "feet")
  22766. },
  22767. {
  22768. name: "Megamacro",
  22769. height: math.unit(15, "miles")
  22770. },
  22771. {
  22772. name: "Gigamacro",
  22773. height: math.unit(4000, "miles")
  22774. },
  22775. {
  22776. name: "Galactic",
  22777. height: math.unit(50, "AU")
  22778. },
  22779. ]
  22780. ))
  22781. characterMakers.push(() => makeCharacter(
  22782. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22783. {
  22784. front: {
  22785. height: math.unit(5 + 6 / 12, "feet"),
  22786. weight: math.unit(220, "lb"),
  22787. name: "Front",
  22788. image: {
  22789. source: "./media/characters/amethyst/front.svg",
  22790. extra: 2078 / 2040,
  22791. bottom: 0.045
  22792. }
  22793. },
  22794. back: {
  22795. height: math.unit(5 + 6 / 12, "feet"),
  22796. weight: math.unit(220, "lb"),
  22797. name: "Back",
  22798. image: {
  22799. source: "./media/characters/amethyst/back.svg",
  22800. extra: 2021 / 1989,
  22801. bottom: 0.02
  22802. }
  22803. },
  22804. },
  22805. [
  22806. {
  22807. name: "Normal",
  22808. height: math.unit(5 + 6 / 12, "feet"),
  22809. default: true
  22810. },
  22811. ]
  22812. ))
  22813. characterMakers.push(() => makeCharacter(
  22814. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22815. {
  22816. front: {
  22817. height: math.unit(4 + 11 / 12, "feet"),
  22818. weight: math.unit(120, "lb"),
  22819. name: "Front",
  22820. image: {
  22821. source: "./media/characters/yumi-akiyama/front.svg",
  22822. extra: 1327 / 1235,
  22823. bottom: 0.02
  22824. }
  22825. },
  22826. back: {
  22827. height: math.unit(4 + 11 / 12, "feet"),
  22828. weight: math.unit(120, "lb"),
  22829. name: "Back",
  22830. image: {
  22831. source: "./media/characters/yumi-akiyama/back.svg",
  22832. extra: 1287 / 1245,
  22833. bottom: 0.002
  22834. }
  22835. },
  22836. },
  22837. [
  22838. {
  22839. name: "Galactic",
  22840. height: math.unit(50, "galaxies"),
  22841. default: true
  22842. },
  22843. {
  22844. name: "Universal",
  22845. height: math.unit(100, "universes")
  22846. },
  22847. ]
  22848. ))
  22849. characterMakers.push(() => makeCharacter(
  22850. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22851. {
  22852. front: {
  22853. height: math.unit(8, "feet"),
  22854. weight: math.unit(500, "lb"),
  22855. name: "Front",
  22856. image: {
  22857. source: "./media/characters/rifter-yrmori/front.svg",
  22858. extra: 1180 / 1125,
  22859. bottom: 0.02
  22860. }
  22861. },
  22862. back: {
  22863. height: math.unit(8, "feet"),
  22864. weight: math.unit(500, "lb"),
  22865. name: "Back",
  22866. image: {
  22867. source: "./media/characters/rifter-yrmori/back.svg",
  22868. extra: 1190 / 1145,
  22869. bottom: 0.001
  22870. }
  22871. },
  22872. wings: {
  22873. height: math.unit(7.75, "feet"),
  22874. weight: math.unit(500, "lb"),
  22875. name: "Wings",
  22876. image: {
  22877. source: "./media/characters/rifter-yrmori/wings.svg",
  22878. extra: 1357 / 1285
  22879. }
  22880. },
  22881. maw: {
  22882. height: math.unit(0.8, "feet"),
  22883. name: "Maw",
  22884. image: {
  22885. source: "./media/characters/rifter-yrmori/maw.svg"
  22886. }
  22887. },
  22888. mawfront: {
  22889. height: math.unit(1.45, "feet"),
  22890. name: "Maw (Front)",
  22891. image: {
  22892. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22893. }
  22894. },
  22895. },
  22896. [
  22897. {
  22898. name: "Normal",
  22899. height: math.unit(8, "feet"),
  22900. default: true
  22901. },
  22902. {
  22903. name: "Macro",
  22904. height: math.unit(42, "meters")
  22905. },
  22906. ]
  22907. ))
  22908. characterMakers.push(() => makeCharacter(
  22909. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22910. {
  22911. were: {
  22912. height: math.unit(25 + 6 / 12, "feet"),
  22913. weight: math.unit(10000, "lb"),
  22914. name: "Were",
  22915. image: {
  22916. source: "./media/characters/tahajin/were.svg",
  22917. extra: 801 / 770,
  22918. bottom: 0.042
  22919. }
  22920. },
  22921. aquatic: {
  22922. height: math.unit(6 + 4 / 12, "feet"),
  22923. weight: math.unit(160, "lb"),
  22924. name: "Aquatic",
  22925. image: {
  22926. source: "./media/characters/tahajin/aquatic.svg",
  22927. extra: 572 / 542,
  22928. bottom: 0.04
  22929. }
  22930. },
  22931. chow: {
  22932. height: math.unit(8 + 11 / 12, "feet"),
  22933. weight: math.unit(450, "lb"),
  22934. name: "Chow",
  22935. image: {
  22936. source: "./media/characters/tahajin/chow.svg",
  22937. extra: 660 / 640,
  22938. bottom: 0.015
  22939. }
  22940. },
  22941. demiNaga: {
  22942. height: math.unit(6 + 8 / 12, "feet"),
  22943. weight: math.unit(300, "lb"),
  22944. name: "Demi Naga",
  22945. image: {
  22946. source: "./media/characters/tahajin/demi-naga.svg",
  22947. extra: 643 / 615,
  22948. bottom: 0.1
  22949. }
  22950. },
  22951. data: {
  22952. height: math.unit(5, "inches"),
  22953. weight: math.unit(0.1, "lb"),
  22954. name: "Data",
  22955. image: {
  22956. source: "./media/characters/tahajin/data.svg"
  22957. }
  22958. },
  22959. fluu: {
  22960. height: math.unit(5 + 7 / 12, "feet"),
  22961. weight: math.unit(140, "lb"),
  22962. name: "Fluu",
  22963. image: {
  22964. source: "./media/characters/tahajin/fluu.svg",
  22965. extra: 628 / 592,
  22966. bottom: 0.02
  22967. }
  22968. },
  22969. starWarrior: {
  22970. height: math.unit(4 + 5 / 12, "feet"),
  22971. weight: math.unit(50, "lb"),
  22972. name: "Star Warrior",
  22973. image: {
  22974. source: "./media/characters/tahajin/star-warrior.svg"
  22975. }
  22976. },
  22977. },
  22978. [
  22979. {
  22980. name: "Normal",
  22981. height: math.unit(25 + 6 / 12, "feet"),
  22982. default: true
  22983. },
  22984. ]
  22985. ))
  22986. characterMakers.push(() => makeCharacter(
  22987. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22988. {
  22989. front: {
  22990. height: math.unit(8, "feet"),
  22991. weight: math.unit(350, "lb"),
  22992. name: "Front",
  22993. image: {
  22994. source: "./media/characters/gabira/front.svg",
  22995. extra: 1261/1154,
  22996. bottom: 51/1312
  22997. }
  22998. },
  22999. back: {
  23000. height: math.unit(8, "feet"),
  23001. weight: math.unit(350, "lb"),
  23002. name: "Back",
  23003. image: {
  23004. source: "./media/characters/gabira/back.svg",
  23005. extra: 1265/1163,
  23006. bottom: 46/1311
  23007. }
  23008. },
  23009. head: {
  23010. height: math.unit(2.85, "feet"),
  23011. name: "Head",
  23012. image: {
  23013. source: "./media/characters/gabira/head.svg"
  23014. }
  23015. },
  23016. },
  23017. [
  23018. {
  23019. name: "Normal",
  23020. height: math.unit(8, "feet"),
  23021. default: true
  23022. },
  23023. ]
  23024. ))
  23025. characterMakers.push(() => makeCharacter(
  23026. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23027. {
  23028. front: {
  23029. height: math.unit(5 + 3 / 12, "feet"),
  23030. weight: math.unit(137, "lb"),
  23031. name: "Front",
  23032. image: {
  23033. source: "./media/characters/sasha-katraine/front.svg",
  23034. extra: 1745/1694,
  23035. bottom: 37/1782
  23036. }
  23037. },
  23038. back: {
  23039. height: math.unit(5 + 3 / 12, "feet"),
  23040. weight: math.unit(137, "lb"),
  23041. name: "Back",
  23042. image: {
  23043. source: "./media/characters/sasha-katraine/back.svg",
  23044. extra: 1776/1699,
  23045. bottom: 26/1802
  23046. }
  23047. },
  23048. },
  23049. [
  23050. {
  23051. name: "Micro",
  23052. height: math.unit(5, "inches")
  23053. },
  23054. {
  23055. name: "Normal",
  23056. height: math.unit(5 + 3 / 12, "feet"),
  23057. default: true
  23058. },
  23059. ]
  23060. ))
  23061. characterMakers.push(() => makeCharacter(
  23062. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23063. {
  23064. side: {
  23065. height: math.unit(4, "inches"),
  23066. weight: math.unit(200, "grams"),
  23067. name: "Side",
  23068. image: {
  23069. source: "./media/characters/der/side.svg",
  23070. extra: 719 / 400,
  23071. bottom: 30.6 / 749.9187
  23072. }
  23073. },
  23074. },
  23075. [
  23076. {
  23077. name: "Micro",
  23078. height: math.unit(4, "inches"),
  23079. default: true
  23080. },
  23081. ]
  23082. ))
  23083. characterMakers.push(() => makeCharacter(
  23084. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23085. {
  23086. side: {
  23087. height: math.unit(30, "meters"),
  23088. weight: math.unit(700, "tonnes"),
  23089. name: "Side",
  23090. image: {
  23091. source: "./media/characters/fixerdragon/side.svg",
  23092. extra: (1293.0514 - 116.03) / 1106.86,
  23093. bottom: 116.03 / 1293.0514
  23094. }
  23095. },
  23096. },
  23097. [
  23098. {
  23099. name: "Planck",
  23100. height: math.unit(1.6e-35, "meters")
  23101. },
  23102. {
  23103. name: "Micro",
  23104. height: math.unit(0.4, "meters")
  23105. },
  23106. {
  23107. name: "Normal",
  23108. height: math.unit(30, "meters"),
  23109. default: true
  23110. },
  23111. {
  23112. name: "Megamacro",
  23113. height: math.unit(1.2, "megameters")
  23114. },
  23115. {
  23116. name: "Teramacro",
  23117. height: math.unit(130, "terameters")
  23118. },
  23119. {
  23120. name: "Yottamacro",
  23121. height: math.unit(6200, "yottameters")
  23122. },
  23123. ]
  23124. ));
  23125. characterMakers.push(() => makeCharacter(
  23126. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23127. {
  23128. front: {
  23129. height: math.unit(8, "feet"),
  23130. weight: math.unit(250, "lb"),
  23131. name: "Front",
  23132. image: {
  23133. source: "./media/characters/kite/front.svg",
  23134. extra: 2796 / 2659,
  23135. bottom: 0.002
  23136. }
  23137. },
  23138. },
  23139. [
  23140. {
  23141. name: "Normal",
  23142. height: math.unit(8, "feet"),
  23143. default: true
  23144. },
  23145. {
  23146. name: "Macro",
  23147. height: math.unit(360, "feet")
  23148. },
  23149. {
  23150. name: "Megamacro",
  23151. height: math.unit(1500, "feet")
  23152. },
  23153. ]
  23154. ))
  23155. characterMakers.push(() => makeCharacter(
  23156. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23157. {
  23158. front: {
  23159. height: math.unit(5 + 11/12, "feet"),
  23160. weight: math.unit(170, "lb"),
  23161. name: "Front",
  23162. image: {
  23163. source: "./media/characters/poojawa-vynar/front.svg",
  23164. extra: 1735/1585,
  23165. bottom: 96/1831
  23166. }
  23167. },
  23168. back: {
  23169. height: math.unit(5 + 11/12, "feet"),
  23170. weight: math.unit(170, "lb"),
  23171. name: "Back",
  23172. image: {
  23173. source: "./media/characters/poojawa-vynar/back.svg",
  23174. extra: 1749/1607,
  23175. bottom: 28/1777
  23176. }
  23177. },
  23178. male: {
  23179. height: math.unit(5 + 11/12, "feet"),
  23180. weight: math.unit(170, "lb"),
  23181. name: "Male",
  23182. image: {
  23183. source: "./media/characters/poojawa-vynar/male.svg",
  23184. extra: 1855/1713,
  23185. bottom: 63/1918
  23186. }
  23187. },
  23188. taur: {
  23189. height: math.unit(5 + 11/12, "feet"),
  23190. weight: math.unit(170, "lb"),
  23191. name: "Taur",
  23192. image: {
  23193. source: "./media/characters/poojawa-vynar/taur.svg",
  23194. extra: 1151/1059,
  23195. bottom: 356/1507
  23196. }
  23197. },
  23198. frontDressed: {
  23199. height: math.unit(5 + 11/12, "feet"),
  23200. weight: math.unit(170, "lb"),
  23201. name: "Front (Dressed)",
  23202. image: {
  23203. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23204. extra: 1735/1585,
  23205. bottom: 96/1831
  23206. }
  23207. },
  23208. backDressed: {
  23209. height: math.unit(5 + 11/12, "feet"),
  23210. weight: math.unit(170, "lb"),
  23211. name: "Back (Dressed)",
  23212. image: {
  23213. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23214. extra: 1749/1607,
  23215. bottom: 28/1777
  23216. }
  23217. },
  23218. maleDressed: {
  23219. height: math.unit(5 + 11/12, "feet"),
  23220. weight: math.unit(170, "lb"),
  23221. name: "Male (Dressed)",
  23222. image: {
  23223. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23224. extra: 1855/1713,
  23225. bottom: 63/1918
  23226. }
  23227. },
  23228. taurDressed: {
  23229. height: math.unit(5 + 11/12, "feet"),
  23230. weight: math.unit(170, "lb"),
  23231. name: "Taur (Dressed)",
  23232. image: {
  23233. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23234. extra: 1151/1059,
  23235. bottom: 356/1507
  23236. }
  23237. },
  23238. maw: {
  23239. height: math.unit(1.46, "feet"),
  23240. name: "Maw",
  23241. image: {
  23242. source: "./media/characters/poojawa-vynar/maw.svg"
  23243. }
  23244. },
  23245. head: {
  23246. height: math.unit(2.34, "feet"),
  23247. name: "Head",
  23248. image: {
  23249. source: "./media/characters/poojawa-vynar/head.svg"
  23250. }
  23251. },
  23252. paw: {
  23253. height: math.unit(1.61, "feet"),
  23254. name: "Paw",
  23255. image: {
  23256. source: "./media/characters/poojawa-vynar/paw.svg"
  23257. }
  23258. },
  23259. pawToering: {
  23260. height: math.unit(1.72, "feet"),
  23261. name: "Paw (Toering)",
  23262. image: {
  23263. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23264. }
  23265. },
  23266. toering: {
  23267. height: math.unit(2.9, "inches"),
  23268. name: "Toering",
  23269. image: {
  23270. source: "./media/characters/poojawa-vynar/toering.svg"
  23271. }
  23272. },
  23273. shaft: {
  23274. height: math.unit(0.625, "feet"),
  23275. name: "Shaft",
  23276. image: {
  23277. source: "./media/characters/poojawa-vynar/shaft.svg"
  23278. }
  23279. },
  23280. spade: {
  23281. height: math.unit(0.42, "feet"),
  23282. name: "Spade",
  23283. image: {
  23284. source: "./media/characters/poojawa-vynar/spade.svg"
  23285. }
  23286. },
  23287. },
  23288. [
  23289. {
  23290. name: "Shortstack",
  23291. height: math.unit(4, "feet")
  23292. },
  23293. {
  23294. name: "Normal",
  23295. height: math.unit(5 + 11 / 12, "feet"),
  23296. default: true
  23297. },
  23298. {
  23299. name: "Tauric",
  23300. height: math.unit(4, "meters")
  23301. },
  23302. ]
  23303. ))
  23304. characterMakers.push(() => makeCharacter(
  23305. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23306. {
  23307. front: {
  23308. height: math.unit(293, "meters"),
  23309. weight: math.unit(70400, "tons"),
  23310. name: "Front",
  23311. image: {
  23312. source: "./media/characters/violette/front.svg",
  23313. extra: 1227 / 1180,
  23314. bottom: 0.005
  23315. }
  23316. },
  23317. back: {
  23318. height: math.unit(293, "meters"),
  23319. weight: math.unit(70400, "tons"),
  23320. name: "Back",
  23321. image: {
  23322. source: "./media/characters/violette/back.svg",
  23323. extra: 1227 / 1180,
  23324. bottom: 0.005
  23325. }
  23326. },
  23327. },
  23328. [
  23329. {
  23330. name: "Macro",
  23331. height: math.unit(293, "meters"),
  23332. default: true
  23333. },
  23334. ]
  23335. ))
  23336. characterMakers.push(() => makeCharacter(
  23337. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23338. {
  23339. front: {
  23340. height: math.unit(1050, "feet"),
  23341. weight: math.unit(200000, "tons"),
  23342. name: "Front",
  23343. image: {
  23344. source: "./media/characters/alessandra/front.svg",
  23345. extra: 960 / 912,
  23346. bottom: 0.06
  23347. }
  23348. },
  23349. },
  23350. [
  23351. {
  23352. name: "Macro",
  23353. height: math.unit(1050, "feet")
  23354. },
  23355. {
  23356. name: "Macro+",
  23357. height: math.unit(900, "meters"),
  23358. default: true
  23359. },
  23360. ]
  23361. ))
  23362. characterMakers.push(() => makeCharacter(
  23363. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23364. {
  23365. front: {
  23366. height: math.unit(5, "feet"),
  23367. weight: math.unit(187, "lb"),
  23368. name: "Front",
  23369. image: {
  23370. source: "./media/characters/person/front.svg",
  23371. extra: 3087 / 2945,
  23372. bottom: 91 / 3181
  23373. }
  23374. },
  23375. },
  23376. [
  23377. {
  23378. name: "Micro",
  23379. height: math.unit(3, "inches")
  23380. },
  23381. {
  23382. name: "Normal",
  23383. height: math.unit(5, "feet"),
  23384. default: true
  23385. },
  23386. {
  23387. name: "Macro",
  23388. height: math.unit(90, "feet")
  23389. },
  23390. {
  23391. name: "Max Size",
  23392. height: math.unit(280, "feet")
  23393. },
  23394. ]
  23395. ))
  23396. characterMakers.push(() => makeCharacter(
  23397. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23398. {
  23399. front: {
  23400. height: math.unit(4.5, "meters"),
  23401. weight: math.unit(3200, "lb"),
  23402. name: "Front",
  23403. image: {
  23404. source: "./media/characters/ty/front.svg",
  23405. extra: 1038 / 960,
  23406. bottom: 31.156 / 1068
  23407. }
  23408. },
  23409. back: {
  23410. height: math.unit(4.5, "meters"),
  23411. weight: math.unit(3200, "lb"),
  23412. name: "Back",
  23413. image: {
  23414. source: "./media/characters/ty/back.svg",
  23415. extra: 1044 / 966,
  23416. bottom: 7.48 / 1049
  23417. }
  23418. },
  23419. },
  23420. [
  23421. {
  23422. name: "Normal",
  23423. height: math.unit(4.5, "meters"),
  23424. default: true
  23425. },
  23426. ]
  23427. ))
  23428. characterMakers.push(() => makeCharacter(
  23429. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23430. {
  23431. front: {
  23432. height: math.unit(5 + 4 / 12, "feet"),
  23433. weight: math.unit(115, "lb"),
  23434. name: "Front",
  23435. image: {
  23436. source: "./media/characters/rocky/front.svg",
  23437. extra: 1012 / 975,
  23438. bottom: 54 / 1066
  23439. }
  23440. },
  23441. },
  23442. [
  23443. {
  23444. name: "Normal",
  23445. height: math.unit(5 + 4 / 12, "feet"),
  23446. default: true
  23447. },
  23448. ]
  23449. ))
  23450. characterMakers.push(() => makeCharacter(
  23451. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23452. {
  23453. upright: {
  23454. height: math.unit(6, "meters"),
  23455. weight: math.unit(4000, "kg"),
  23456. name: "Upright",
  23457. image: {
  23458. source: "./media/characters/ruin/upright.svg",
  23459. extra: 668 / 661,
  23460. bottom: 42 / 799.8396
  23461. }
  23462. },
  23463. },
  23464. [
  23465. {
  23466. name: "Normal",
  23467. height: math.unit(6, "meters"),
  23468. default: true
  23469. },
  23470. ]
  23471. ))
  23472. characterMakers.push(() => makeCharacter(
  23473. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23474. {
  23475. front: {
  23476. height: math.unit(5, "feet"),
  23477. weight: math.unit(106, "lb"),
  23478. name: "Front",
  23479. image: {
  23480. source: "./media/characters/robin/front.svg",
  23481. extra: 862 / 799,
  23482. bottom: 42.4 / 914.8856
  23483. }
  23484. },
  23485. },
  23486. [
  23487. {
  23488. name: "Normal",
  23489. height: math.unit(5, "feet"),
  23490. default: true
  23491. },
  23492. ]
  23493. ))
  23494. characterMakers.push(() => makeCharacter(
  23495. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23496. {
  23497. side: {
  23498. height: math.unit(3, "feet"),
  23499. weight: math.unit(225, "lb"),
  23500. name: "Side",
  23501. image: {
  23502. source: "./media/characters/saian/side.svg",
  23503. extra: 566 / 356,
  23504. bottom: 79.7 / 643
  23505. }
  23506. },
  23507. maw: {
  23508. height: math.unit(2.85, "feet"),
  23509. name: "Maw",
  23510. image: {
  23511. source: "./media/characters/saian/maw.svg"
  23512. }
  23513. },
  23514. },
  23515. [
  23516. {
  23517. name: "Normal",
  23518. height: math.unit(3, "feet"),
  23519. default: true
  23520. },
  23521. ]
  23522. ))
  23523. characterMakers.push(() => makeCharacter(
  23524. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23525. {
  23526. side: {
  23527. height: math.unit(8, "feet"),
  23528. weight: math.unit(300, "lb"),
  23529. name: "Side",
  23530. image: {
  23531. source: "./media/characters/equus-silvermane/side.svg",
  23532. extra: 2176 / 2050,
  23533. bottom: 65.7 / 2245
  23534. }
  23535. },
  23536. front: {
  23537. height: math.unit(8, "feet"),
  23538. weight: math.unit(300, "lb"),
  23539. name: "Front",
  23540. image: {
  23541. source: "./media/characters/equus-silvermane/front.svg",
  23542. extra: 4633 / 4400,
  23543. bottom: 71.3 / 4706.915
  23544. }
  23545. },
  23546. sideStepping: {
  23547. height: math.unit(8, "feet"),
  23548. weight: math.unit(300, "lb"),
  23549. name: "Side (Stepping)",
  23550. image: {
  23551. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23552. extra: 1968 / 1860,
  23553. bottom: 16.4 / 1989
  23554. }
  23555. },
  23556. },
  23557. [
  23558. {
  23559. name: "Normal",
  23560. height: math.unit(8, "feet")
  23561. },
  23562. {
  23563. name: "Minimacro",
  23564. height: math.unit(75, "feet"),
  23565. default: true
  23566. },
  23567. {
  23568. name: "Macro",
  23569. height: math.unit(150, "feet")
  23570. },
  23571. {
  23572. name: "Macro+",
  23573. height: math.unit(1000, "feet")
  23574. },
  23575. {
  23576. name: "Megamacro",
  23577. height: math.unit(1, "mile")
  23578. },
  23579. ]
  23580. ))
  23581. characterMakers.push(() => makeCharacter(
  23582. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23583. {
  23584. side: {
  23585. height: math.unit(20, "feet"),
  23586. weight: math.unit(30000, "kg"),
  23587. name: "Side",
  23588. image: {
  23589. source: "./media/characters/windar/side.svg",
  23590. extra: 1491 / 1248,
  23591. bottom: 82.56 / 1568
  23592. }
  23593. },
  23594. },
  23595. [
  23596. {
  23597. name: "Normal",
  23598. height: math.unit(20, "feet"),
  23599. default: true
  23600. },
  23601. ]
  23602. ))
  23603. characterMakers.push(() => makeCharacter(
  23604. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23605. {
  23606. side: {
  23607. height: math.unit(15.66, "feet"),
  23608. weight: math.unit(150, "lb"),
  23609. name: "Side",
  23610. image: {
  23611. source: "./media/characters/melody/side.svg",
  23612. extra: 1097 / 944,
  23613. bottom: 11.8 / 1109
  23614. }
  23615. },
  23616. sideOutfit: {
  23617. height: math.unit(15.66, "feet"),
  23618. weight: math.unit(150, "lb"),
  23619. name: "Side (Outfit)",
  23620. image: {
  23621. source: "./media/characters/melody/side-outfit.svg",
  23622. extra: 1097 / 944,
  23623. bottom: 11.8 / 1109
  23624. }
  23625. },
  23626. },
  23627. [
  23628. {
  23629. name: "Normal",
  23630. height: math.unit(15.66, "feet"),
  23631. default: true
  23632. },
  23633. ]
  23634. ))
  23635. characterMakers.push(() => makeCharacter(
  23636. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23637. {
  23638. armoredFront: {
  23639. height: math.unit(8, "feet"),
  23640. weight: math.unit(325, "lb"),
  23641. name: "Front",
  23642. image: {
  23643. source: "./media/characters/windera/armored-front.svg",
  23644. extra: 1830/1598,
  23645. bottom: 151/1981
  23646. },
  23647. form: "armored",
  23648. default: true
  23649. },
  23650. macroFront: {
  23651. height: math.unit(70, "feet"),
  23652. weight: math.unit(315453, "lb"),
  23653. name: "Front",
  23654. image: {
  23655. source: "./media/characters/windera/macro-front.svg",
  23656. extra: 963/883,
  23657. bottom: 23/986
  23658. },
  23659. form: "macro",
  23660. default: true
  23661. },
  23662. },
  23663. [
  23664. {
  23665. name: "Normal",
  23666. height: math.unit(8, "feet"),
  23667. default: true,
  23668. form: "armored"
  23669. },
  23670. {
  23671. name: "Normal",
  23672. height: math.unit(70, "feet"),
  23673. default: true,
  23674. form: "macro"
  23675. },
  23676. ],
  23677. {
  23678. "armored": {
  23679. name: "Armored",
  23680. default: true
  23681. },
  23682. "macro": {
  23683. name: "Macro",
  23684. },
  23685. }
  23686. ))
  23687. characterMakers.push(() => makeCharacter(
  23688. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23689. {
  23690. front: {
  23691. height: math.unit(28.75, "feet"),
  23692. weight: math.unit(2000, "kg"),
  23693. name: "Front",
  23694. image: {
  23695. source: "./media/characters/sonear/front.svg",
  23696. extra: 1041.1 / 964.9,
  23697. bottom: 53.7 / 1096.6
  23698. }
  23699. },
  23700. },
  23701. [
  23702. {
  23703. name: "Normal",
  23704. height: math.unit(28.75, "feet"),
  23705. default: true
  23706. },
  23707. ]
  23708. ))
  23709. characterMakers.push(() => makeCharacter(
  23710. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23711. {
  23712. side: {
  23713. height: math.unit(25.5, "feet"),
  23714. weight: math.unit(23000, "kg"),
  23715. name: "Side",
  23716. image: {
  23717. source: "./media/characters/kanara/side.svg"
  23718. }
  23719. },
  23720. },
  23721. [
  23722. {
  23723. name: "Normal",
  23724. height: math.unit(25.5, "feet"),
  23725. default: true
  23726. },
  23727. ]
  23728. ))
  23729. characterMakers.push(() => makeCharacter(
  23730. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23731. {
  23732. side: {
  23733. height: math.unit(10, "feet"),
  23734. weight: math.unit(1000, "kg"),
  23735. name: "Side",
  23736. image: {
  23737. source: "./media/characters/ereus/side.svg",
  23738. extra: 1157 / 959,
  23739. bottom: 153 / 1312.5
  23740. }
  23741. },
  23742. },
  23743. [
  23744. {
  23745. name: "Normal",
  23746. height: math.unit(10, "feet"),
  23747. default: true
  23748. },
  23749. ]
  23750. ))
  23751. characterMakers.push(() => makeCharacter(
  23752. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23753. {
  23754. side: {
  23755. height: math.unit(4.5, "feet"),
  23756. weight: math.unit(500, "lb"),
  23757. name: "Side",
  23758. image: {
  23759. source: "./media/characters/e-ter/side.svg",
  23760. extra: 1550 / 1248,
  23761. bottom: 146 / 1694
  23762. }
  23763. },
  23764. },
  23765. [
  23766. {
  23767. name: "Normal",
  23768. height: math.unit(4.5, "feet"),
  23769. default: true
  23770. },
  23771. ]
  23772. ))
  23773. characterMakers.push(() => makeCharacter(
  23774. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23775. {
  23776. side: {
  23777. height: math.unit(9.7, "feet"),
  23778. weight: math.unit(4000, "kg"),
  23779. name: "Side",
  23780. image: {
  23781. source: "./media/characters/yamie/side.svg"
  23782. }
  23783. },
  23784. },
  23785. [
  23786. {
  23787. name: "Normal",
  23788. height: math.unit(9.7, "feet"),
  23789. default: true
  23790. },
  23791. ]
  23792. ))
  23793. characterMakers.push(() => makeCharacter(
  23794. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23795. {
  23796. front: {
  23797. height: math.unit(50, "feet"),
  23798. weight: math.unit(50000, "kg"),
  23799. name: "Front",
  23800. image: {
  23801. source: "./media/characters/anders/front.svg",
  23802. extra: 570 / 539,
  23803. bottom: 14.7 / 586.7
  23804. }
  23805. },
  23806. },
  23807. [
  23808. {
  23809. name: "Large",
  23810. height: math.unit(50, "feet")
  23811. },
  23812. {
  23813. name: "Macro",
  23814. height: math.unit(2000, "feet"),
  23815. default: true
  23816. },
  23817. {
  23818. name: "Megamacro",
  23819. height: math.unit(12, "miles")
  23820. },
  23821. ]
  23822. ))
  23823. characterMakers.push(() => makeCharacter(
  23824. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23825. {
  23826. front: {
  23827. height: math.unit(7 + 2 / 12, "feet"),
  23828. weight: math.unit(300, "lb"),
  23829. name: "Front",
  23830. image: {
  23831. source: "./media/characters/reban/front.svg",
  23832. extra: 1287/1212,
  23833. bottom: 148/1435
  23834. }
  23835. },
  23836. head: {
  23837. height: math.unit(1.95, "feet"),
  23838. name: "Head",
  23839. image: {
  23840. source: "./media/characters/reban/head.svg"
  23841. }
  23842. },
  23843. maw: {
  23844. height: math.unit(0.95, "feet"),
  23845. name: "Maw",
  23846. image: {
  23847. source: "./media/characters/reban/maw.svg"
  23848. }
  23849. },
  23850. foot: {
  23851. height: math.unit(1.65, "feet"),
  23852. name: "Foot",
  23853. image: {
  23854. source: "./media/characters/reban/foot.svg"
  23855. }
  23856. },
  23857. dick: {
  23858. height: math.unit(7 / 5, "feet"),
  23859. name: "Dick",
  23860. image: {
  23861. source: "./media/characters/reban/dick.svg"
  23862. }
  23863. },
  23864. },
  23865. [
  23866. {
  23867. name: "Natural Height",
  23868. height: math.unit(7 + 2 / 12, "feet")
  23869. },
  23870. {
  23871. name: "Macro",
  23872. height: math.unit(500, "feet"),
  23873. default: true
  23874. },
  23875. {
  23876. name: "Canon Height",
  23877. height: math.unit(50, "AU")
  23878. },
  23879. ]
  23880. ))
  23881. characterMakers.push(() => makeCharacter(
  23882. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23883. {
  23884. front: {
  23885. height: math.unit(6, "feet"),
  23886. weight: math.unit(150, "lb"),
  23887. name: "Front",
  23888. image: {
  23889. source: "./media/characters/terrance-keayes/front.svg",
  23890. extra: 1.005,
  23891. bottom: 151 / 1615
  23892. }
  23893. },
  23894. side: {
  23895. height: math.unit(6, "feet"),
  23896. weight: math.unit(150, "lb"),
  23897. name: "Side",
  23898. image: {
  23899. source: "./media/characters/terrance-keayes/side.svg",
  23900. extra: 1.005,
  23901. bottom: 129.4 / 1544
  23902. }
  23903. },
  23904. back: {
  23905. height: math.unit(6, "feet"),
  23906. weight: math.unit(150, "lb"),
  23907. name: "Back",
  23908. image: {
  23909. source: "./media/characters/terrance-keayes/back.svg",
  23910. extra: 1.005,
  23911. bottom: 58.4 / 1557.3
  23912. }
  23913. },
  23914. dick: {
  23915. height: math.unit(6 * 0.208, "feet"),
  23916. name: "Dick",
  23917. image: {
  23918. source: "./media/characters/terrance-keayes/dick.svg"
  23919. }
  23920. },
  23921. },
  23922. [
  23923. {
  23924. name: "Canon Height",
  23925. height: math.unit(35, "miles"),
  23926. default: true
  23927. },
  23928. ]
  23929. ))
  23930. characterMakers.push(() => makeCharacter(
  23931. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23932. {
  23933. front: {
  23934. height: math.unit(6, "feet"),
  23935. weight: math.unit(150, "lb"),
  23936. name: "Front",
  23937. image: {
  23938. source: "./media/characters/ofelia/front.svg",
  23939. extra: 1130/1117,
  23940. bottom: 91/1221
  23941. }
  23942. },
  23943. back: {
  23944. height: math.unit(6, "feet"),
  23945. weight: math.unit(150, "lb"),
  23946. name: "Back",
  23947. image: {
  23948. source: "./media/characters/ofelia/back.svg",
  23949. extra: 1172/1159,
  23950. bottom: 28/1200
  23951. }
  23952. },
  23953. maw: {
  23954. height: math.unit(1, "feet"),
  23955. name: "Maw",
  23956. image: {
  23957. source: "./media/characters/ofelia/maw.svg"
  23958. }
  23959. },
  23960. foot: {
  23961. height: math.unit(1.949, "feet"),
  23962. name: "Foot",
  23963. image: {
  23964. source: "./media/characters/ofelia/foot.svg"
  23965. }
  23966. },
  23967. },
  23968. [
  23969. {
  23970. name: "Canon Height",
  23971. height: math.unit(2000, "miles"),
  23972. default: true
  23973. },
  23974. ]
  23975. ))
  23976. characterMakers.push(() => makeCharacter(
  23977. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23978. {
  23979. front: {
  23980. height: math.unit(6, "feet"),
  23981. weight: math.unit(150, "lb"),
  23982. name: "Front",
  23983. image: {
  23984. source: "./media/characters/samuel/front.svg",
  23985. extra: 265 / 258,
  23986. bottom: 2 / 266.1566
  23987. }
  23988. },
  23989. },
  23990. [
  23991. {
  23992. name: "Macro",
  23993. height: math.unit(100, "feet"),
  23994. default: true
  23995. },
  23996. {
  23997. name: "Full Size",
  23998. height: math.unit(1000, "miles")
  23999. },
  24000. ]
  24001. ))
  24002. characterMakers.push(() => makeCharacter(
  24003. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24004. {
  24005. front: {
  24006. height: math.unit(6, "feet"),
  24007. weight: math.unit(300, "lb"),
  24008. name: "Front",
  24009. image: {
  24010. source: "./media/characters/beishir-kiel/front.svg",
  24011. extra: 569 / 547,
  24012. bottom: 41.9 / 609
  24013. }
  24014. },
  24015. maw: {
  24016. height: math.unit(6 * 0.202, "feet"),
  24017. name: "Maw",
  24018. image: {
  24019. source: "./media/characters/beishir-kiel/maw.svg"
  24020. }
  24021. },
  24022. },
  24023. [
  24024. {
  24025. name: "Macro",
  24026. height: math.unit(300, "feet"),
  24027. default: true
  24028. },
  24029. ]
  24030. ))
  24031. characterMakers.push(() => makeCharacter(
  24032. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24033. {
  24034. front: {
  24035. height: math.unit(5 + 7/12, "feet"),
  24036. weight: math.unit(120, "lb"),
  24037. name: "Front",
  24038. image: {
  24039. source: "./media/characters/logan-grey/front.svg",
  24040. extra: 1836/1738,
  24041. bottom: 108/1944
  24042. }
  24043. },
  24044. back: {
  24045. height: math.unit(5 + 7/12, "feet"),
  24046. weight: math.unit(120, "lb"),
  24047. name: "Back",
  24048. image: {
  24049. source: "./media/characters/logan-grey/back.svg",
  24050. extra: 1880/1794,
  24051. bottom: 24/1904
  24052. }
  24053. },
  24054. frontSfw: {
  24055. height: math.unit(5 + 7/12, "feet"),
  24056. weight: math.unit(120, "lb"),
  24057. name: "Front (SFW)",
  24058. image: {
  24059. source: "./media/characters/logan-grey/front-sfw.svg",
  24060. extra: 1836/1738,
  24061. bottom: 108/1944
  24062. }
  24063. },
  24064. backSfw: {
  24065. height: math.unit(5 + 7/12, "feet"),
  24066. weight: math.unit(120, "lb"),
  24067. name: "Back (SFW)",
  24068. image: {
  24069. source: "./media/characters/logan-grey/back-sfw.svg",
  24070. extra: 1880/1794,
  24071. bottom: 24/1904
  24072. }
  24073. },
  24074. hands: {
  24075. height: math.unit(0.84, "feet"),
  24076. name: "Hands",
  24077. image: {
  24078. source: "./media/characters/logan-grey/hands.svg"
  24079. }
  24080. },
  24081. paws: {
  24082. height: math.unit(0.72, "feet"),
  24083. name: "Paws",
  24084. image: {
  24085. source: "./media/characters/logan-grey/paws.svg"
  24086. }
  24087. },
  24088. cock: {
  24089. height: math.unit(1.45, "feet"),
  24090. name: "Cock",
  24091. image: {
  24092. source: "./media/characters/logan-grey/cock.svg"
  24093. }
  24094. },
  24095. cockAlt: {
  24096. height: math.unit(1.437, "feet"),
  24097. name: "Cock (alt)",
  24098. image: {
  24099. source: "./media/characters/logan-grey/cock-alt.svg"
  24100. }
  24101. },
  24102. },
  24103. [
  24104. {
  24105. name: "Normal",
  24106. height: math.unit(5 + 8 / 12, "feet")
  24107. },
  24108. {
  24109. name: "The 500 Foot Femboy",
  24110. height: math.unit(500, "feet"),
  24111. default: true
  24112. },
  24113. {
  24114. name: "Megmacro",
  24115. height: math.unit(20, "miles")
  24116. },
  24117. ]
  24118. ))
  24119. characterMakers.push(() => makeCharacter(
  24120. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24121. {
  24122. front: {
  24123. height: math.unit(8 + 2 / 12, "feet"),
  24124. weight: math.unit(275, "lb"),
  24125. name: "Front",
  24126. image: {
  24127. source: "./media/characters/draganta/front.svg",
  24128. extra: 1177 / 1135,
  24129. bottom: 33.46 / 1212.1
  24130. }
  24131. },
  24132. },
  24133. [
  24134. {
  24135. name: "Normal",
  24136. height: math.unit(8 + 6 / 12, "feet"),
  24137. default: true
  24138. },
  24139. {
  24140. name: "Macro",
  24141. height: math.unit(150, "feet")
  24142. },
  24143. {
  24144. name: "Megamacro",
  24145. height: math.unit(1000, "miles")
  24146. },
  24147. ]
  24148. ))
  24149. characterMakers.push(() => makeCharacter(
  24150. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24151. {
  24152. front: {
  24153. height: math.unit(1.72, "m"),
  24154. weight: math.unit(80, "lb"),
  24155. name: "Front",
  24156. image: {
  24157. source: "./media/characters/voski/front.svg",
  24158. extra: 2076.22 / 2022.4,
  24159. bottom: 102.7 / 2177.3866
  24160. }
  24161. },
  24162. frontFlaccid: {
  24163. height: math.unit(1.72, "m"),
  24164. weight: math.unit(80, "lb"),
  24165. name: "Front (Flaccid)",
  24166. image: {
  24167. source: "./media/characters/voski/front-flaccid.svg",
  24168. extra: 2076.22 / 2022.4,
  24169. bottom: 102.7 / 2177.3866
  24170. }
  24171. },
  24172. frontErect: {
  24173. height: math.unit(1.72, "m"),
  24174. weight: math.unit(80, "lb"),
  24175. name: "Front (Erect)",
  24176. image: {
  24177. source: "./media/characters/voski/front-erect.svg",
  24178. extra: 2076.22 / 2022.4,
  24179. bottom: 102.7 / 2177.3866
  24180. }
  24181. },
  24182. back: {
  24183. height: math.unit(1.72, "m"),
  24184. weight: math.unit(80, "lb"),
  24185. name: "Back",
  24186. image: {
  24187. source: "./media/characters/voski/back.svg",
  24188. extra: 2104 / 2051,
  24189. bottom: 10.45 / 2113.63
  24190. }
  24191. },
  24192. },
  24193. [
  24194. {
  24195. name: "Normal",
  24196. height: math.unit(1.72, "m")
  24197. },
  24198. {
  24199. name: "Macro",
  24200. height: math.unit(55, "m"),
  24201. default: true
  24202. },
  24203. {
  24204. name: "Macro+",
  24205. height: math.unit(300, "m")
  24206. },
  24207. {
  24208. name: "Macro++",
  24209. height: math.unit(700, "m")
  24210. },
  24211. {
  24212. name: "Macro+++",
  24213. height: math.unit(4500, "m")
  24214. },
  24215. {
  24216. name: "Macro++++",
  24217. height: math.unit(45, "km")
  24218. },
  24219. {
  24220. name: "Macro+++++",
  24221. height: math.unit(1220, "km")
  24222. },
  24223. ]
  24224. ))
  24225. characterMakers.push(() => makeCharacter(
  24226. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24227. {
  24228. front: {
  24229. height: math.unit(2.3, "m"),
  24230. weight: math.unit(304, "kg"),
  24231. name: "Front",
  24232. image: {
  24233. source: "./media/characters/icowom-lee/front.svg",
  24234. extra: 985 / 955,
  24235. bottom: 25.4 / 1012
  24236. }
  24237. },
  24238. fronttentacles: {
  24239. height: math.unit(2.3, "m"),
  24240. weight: math.unit(304, "kg"),
  24241. name: "Front-tentacles",
  24242. image: {
  24243. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24244. extra: 985 / 955,
  24245. bottom: 25.4 / 1012
  24246. }
  24247. },
  24248. back: {
  24249. height: math.unit(2.3, "m"),
  24250. weight: math.unit(304, "kg"),
  24251. name: "Back",
  24252. image: {
  24253. source: "./media/characters/icowom-lee/back.svg",
  24254. extra: 975 / 954,
  24255. bottom: 9.5 / 985
  24256. }
  24257. },
  24258. backtentacles: {
  24259. height: math.unit(2.3, "m"),
  24260. weight: math.unit(304, "kg"),
  24261. name: "Back-tentacles",
  24262. image: {
  24263. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24264. extra: 975 / 954,
  24265. bottom: 9.5 / 985
  24266. }
  24267. },
  24268. frontDressed: {
  24269. height: math.unit(2.3, "m"),
  24270. weight: math.unit(304, "kg"),
  24271. name: "Front (Dressed)",
  24272. image: {
  24273. source: "./media/characters/icowom-lee/front-dressed.svg",
  24274. extra: 3076 / 2933,
  24275. bottom: 51.4 / 3125.1889
  24276. }
  24277. },
  24278. rump: {
  24279. height: math.unit(0.776, "meters"),
  24280. name: "Rump",
  24281. image: {
  24282. source: "./media/characters/icowom-lee/rump.svg"
  24283. }
  24284. },
  24285. genitals: {
  24286. height: math.unit(0.78, "meters"),
  24287. name: "Genitals",
  24288. image: {
  24289. source: "./media/characters/icowom-lee/genitals.svg"
  24290. }
  24291. },
  24292. },
  24293. [
  24294. {
  24295. name: "Normal",
  24296. height: math.unit(2.3, "meters"),
  24297. default: true
  24298. },
  24299. {
  24300. name: "Macro",
  24301. height: math.unit(94, "meters"),
  24302. default: true
  24303. },
  24304. ]
  24305. ))
  24306. characterMakers.push(() => makeCharacter(
  24307. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24308. {
  24309. front: {
  24310. height: math.unit(22, "meters"),
  24311. weight: math.unit(21000, "kg"),
  24312. name: "Front",
  24313. image: {
  24314. source: "./media/characters/shock-diamond/front.svg",
  24315. extra: 2204 / 2053,
  24316. bottom: 65 / 2239.47
  24317. }
  24318. },
  24319. frontNude: {
  24320. height: math.unit(22, "meters"),
  24321. weight: math.unit(21000, "kg"),
  24322. name: "Front (Nude)",
  24323. image: {
  24324. source: "./media/characters/shock-diamond/front-nude.svg",
  24325. extra: 2514 / 2285,
  24326. bottom: 13 / 2527.56
  24327. }
  24328. },
  24329. },
  24330. [
  24331. {
  24332. name: "Normal",
  24333. height: math.unit(3, "meters")
  24334. },
  24335. {
  24336. name: "Macro",
  24337. height: math.unit(22, "meters"),
  24338. default: true
  24339. },
  24340. ]
  24341. ))
  24342. characterMakers.push(() => makeCharacter(
  24343. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24344. {
  24345. front: {
  24346. height: math.unit(5 + 4/12, "feet"),
  24347. weight: math.unit(125, "lb"),
  24348. name: "Front",
  24349. image: {
  24350. source: "./media/characters/rory/front.svg",
  24351. extra: 1790/1681,
  24352. bottom: 66/1856
  24353. }
  24354. },
  24355. back: {
  24356. height: math.unit(5 + 4/12, "feet"),
  24357. weight: math.unit(125, "lb"),
  24358. name: "Back",
  24359. image: {
  24360. source: "./media/characters/rory/back.svg",
  24361. extra: 1805/1690,
  24362. bottom: 56/1861
  24363. }
  24364. },
  24365. frontDressed: {
  24366. height: math.unit(5 + 4/12, "feet"),
  24367. weight: math.unit(125, "lb"),
  24368. name: "Front (Dressed)",
  24369. image: {
  24370. source: "./media/characters/rory/front-dressed.svg",
  24371. extra: 1790/1681,
  24372. bottom: 66/1856
  24373. }
  24374. },
  24375. backDressed: {
  24376. height: math.unit(5 + 4/12, "feet"),
  24377. weight: math.unit(125, "lb"),
  24378. name: "Back (Dressed)",
  24379. image: {
  24380. source: "./media/characters/rory/back-dressed.svg",
  24381. extra: 1805/1690,
  24382. bottom: 56/1861
  24383. }
  24384. },
  24385. frontNsfw: {
  24386. height: math.unit(5 + 4/12, "feet"),
  24387. weight: math.unit(125, "lb"),
  24388. name: "Front (NSFW)",
  24389. image: {
  24390. source: "./media/characters/rory/front-nsfw.svg",
  24391. extra: 1790/1681,
  24392. bottom: 66/1856
  24393. }
  24394. },
  24395. backNsfw: {
  24396. height: math.unit(5 + 4/12, "feet"),
  24397. weight: math.unit(125, "lb"),
  24398. name: "Back (NSFW)",
  24399. image: {
  24400. source: "./media/characters/rory/back-nsfw.svg",
  24401. extra: 1805/1690,
  24402. bottom: 56/1861
  24403. }
  24404. },
  24405. dick: {
  24406. height: math.unit(0.8, "feet"),
  24407. name: "Dick",
  24408. image: {
  24409. source: "./media/characters/rory/dick.svg"
  24410. }
  24411. },
  24412. },
  24413. [
  24414. {
  24415. name: "Micro",
  24416. height: math.unit(3, "inches")
  24417. },
  24418. {
  24419. name: "Normal",
  24420. height: math.unit(5 + 4/12, "feet"),
  24421. default: true
  24422. },
  24423. {
  24424. name: "Macro",
  24425. height: math.unit(90, "feet")
  24426. },
  24427. {
  24428. name: "Supercharged",
  24429. height: math.unit(270, "feet")
  24430. },
  24431. ]
  24432. ))
  24433. characterMakers.push(() => makeCharacter(
  24434. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24435. {
  24436. front: {
  24437. height: math.unit(5 + 9 / 12, "feet"),
  24438. weight: math.unit(190, "lb"),
  24439. name: "Front",
  24440. image: {
  24441. source: "./media/characters/sprisk/front.svg",
  24442. extra: 1225 / 1180,
  24443. bottom: 42.7 / 1266.4
  24444. }
  24445. },
  24446. frontNsfw: {
  24447. height: math.unit(5 + 9 / 12, "feet"),
  24448. weight: math.unit(190, "lb"),
  24449. name: "Front (NSFW)",
  24450. image: {
  24451. source: "./media/characters/sprisk/front-nsfw.svg",
  24452. extra: 1225 / 1180,
  24453. bottom: 42.7 / 1266.4
  24454. }
  24455. },
  24456. back: {
  24457. height: math.unit(5 + 9 / 12, "feet"),
  24458. weight: math.unit(190, "lb"),
  24459. name: "Back",
  24460. image: {
  24461. source: "./media/characters/sprisk/back.svg",
  24462. extra: 1247 / 1200,
  24463. bottom: 5.6 / 1253.04
  24464. }
  24465. },
  24466. },
  24467. [
  24468. {
  24469. name: "Tiny",
  24470. height: math.unit(2, "inches")
  24471. },
  24472. {
  24473. name: "Normal",
  24474. height: math.unit(5 + 9 / 12, "feet"),
  24475. default: true
  24476. },
  24477. {
  24478. name: "Mini Macro",
  24479. height: math.unit(18, "feet")
  24480. },
  24481. {
  24482. name: "Macro",
  24483. height: math.unit(100, "feet")
  24484. },
  24485. {
  24486. name: "MACRO",
  24487. height: math.unit(50, "miles")
  24488. },
  24489. {
  24490. name: "M A C R O",
  24491. height: math.unit(300, "miles")
  24492. },
  24493. ]
  24494. ))
  24495. characterMakers.push(() => makeCharacter(
  24496. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24497. {
  24498. side: {
  24499. height: math.unit(15.6, "meters"),
  24500. weight: math.unit(700000, "kg"),
  24501. name: "Side",
  24502. image: {
  24503. source: "./media/characters/bunsen/side.svg",
  24504. extra: 1644 / 358
  24505. }
  24506. },
  24507. foot: {
  24508. height: math.unit(1.611 * 1644 / 358, "meter"),
  24509. name: "Foot",
  24510. image: {
  24511. source: "./media/characters/bunsen/foot.svg"
  24512. }
  24513. },
  24514. },
  24515. [
  24516. {
  24517. name: "Small",
  24518. height: math.unit(10, "feet")
  24519. },
  24520. {
  24521. name: "Normal",
  24522. height: math.unit(15.6, "meters"),
  24523. default: true
  24524. },
  24525. ]
  24526. ))
  24527. characterMakers.push(() => makeCharacter(
  24528. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24529. {
  24530. front: {
  24531. height: math.unit(4 + 11 / 12, "feet"),
  24532. weight: math.unit(140, "lb"),
  24533. name: "Front",
  24534. image: {
  24535. source: "./media/characters/sesh/front.svg",
  24536. extra: 3420 / 3231,
  24537. bottom: 72 / 3949.5
  24538. }
  24539. },
  24540. },
  24541. [
  24542. {
  24543. name: "Normal",
  24544. height: math.unit(4 + 11 / 12, "feet")
  24545. },
  24546. {
  24547. name: "Grown",
  24548. height: math.unit(15, "feet"),
  24549. default: true
  24550. },
  24551. {
  24552. name: "Macro",
  24553. height: math.unit(1500, "feet")
  24554. },
  24555. {
  24556. name: "Megamacro",
  24557. height: math.unit(30, "miles")
  24558. },
  24559. {
  24560. name: "Continental",
  24561. height: math.unit(3000, "miles")
  24562. },
  24563. {
  24564. name: "Gravity Mass",
  24565. height: math.unit(300000, "miles")
  24566. },
  24567. {
  24568. name: "Planet Buster",
  24569. height: math.unit(30000000, "miles")
  24570. },
  24571. {
  24572. name: "Big",
  24573. height: math.unit(3000000000, "miles")
  24574. },
  24575. ]
  24576. ))
  24577. characterMakers.push(() => makeCharacter(
  24578. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24579. {
  24580. front: {
  24581. height: math.unit(9, "feet"),
  24582. weight: math.unit(350, "lb"),
  24583. name: "Front",
  24584. image: {
  24585. source: "./media/characters/pepper/front.svg",
  24586. extra: 1448 / 1312,
  24587. bottom: 9.4 / 1457.88
  24588. }
  24589. },
  24590. back: {
  24591. height: math.unit(9, "feet"),
  24592. weight: math.unit(350, "lb"),
  24593. name: "Back",
  24594. image: {
  24595. source: "./media/characters/pepper/back.svg",
  24596. extra: 1423 / 1300,
  24597. bottom: 4.6 / 1429
  24598. }
  24599. },
  24600. maw: {
  24601. height: math.unit(0.932, "feet"),
  24602. name: "Maw",
  24603. image: {
  24604. source: "./media/characters/pepper/maw.svg"
  24605. }
  24606. },
  24607. },
  24608. [
  24609. {
  24610. name: "Normal",
  24611. height: math.unit(9, "feet"),
  24612. default: true
  24613. },
  24614. ]
  24615. ))
  24616. characterMakers.push(() => makeCharacter(
  24617. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24618. {
  24619. front: {
  24620. height: math.unit(6, "feet"),
  24621. weight: math.unit(150, "lb"),
  24622. name: "Front",
  24623. image: {
  24624. source: "./media/characters/maelstrom/front.svg",
  24625. extra: 2100 / 1883,
  24626. bottom: 94 / 2196.7
  24627. }
  24628. },
  24629. },
  24630. [
  24631. {
  24632. name: "Less Kaiju",
  24633. height: math.unit(200, "feet")
  24634. },
  24635. {
  24636. name: "Kaiju",
  24637. height: math.unit(400, "feet"),
  24638. default: true
  24639. },
  24640. {
  24641. name: "Kaiju-er",
  24642. height: math.unit(600, "feet")
  24643. },
  24644. ]
  24645. ))
  24646. characterMakers.push(() => makeCharacter(
  24647. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24648. {
  24649. front: {
  24650. height: math.unit(6 + 5 / 12, "feet"),
  24651. weight: math.unit(180, "lb"),
  24652. name: "Front",
  24653. image: {
  24654. source: "./media/characters/lexir/front.svg",
  24655. extra: 180 / 172,
  24656. bottom: 12 / 192
  24657. }
  24658. },
  24659. back: {
  24660. height: math.unit(6 + 5 / 12, "feet"),
  24661. weight: math.unit(180, "lb"),
  24662. name: "Back",
  24663. image: {
  24664. source: "./media/characters/lexir/back.svg",
  24665. extra: 1273/1201,
  24666. bottom: 39/1312
  24667. }
  24668. },
  24669. },
  24670. [
  24671. {
  24672. name: "Very Smal",
  24673. height: math.unit(1, "nm")
  24674. },
  24675. {
  24676. name: "Normal",
  24677. height: math.unit(6 + 5 / 12, "feet"),
  24678. default: true
  24679. },
  24680. {
  24681. name: "Macro",
  24682. height: math.unit(1, "mile")
  24683. },
  24684. {
  24685. name: "Megamacro",
  24686. height: math.unit(50, "miles")
  24687. },
  24688. ]
  24689. ))
  24690. characterMakers.push(() => makeCharacter(
  24691. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24692. {
  24693. front: {
  24694. height: math.unit(1.5, "meters"),
  24695. weight: math.unit(100, "lb"),
  24696. name: "Front",
  24697. image: {
  24698. source: "./media/characters/maksio/front.svg",
  24699. extra: 1549 / 1531,
  24700. bottom: 123.7 / 1674.5429
  24701. }
  24702. },
  24703. back: {
  24704. height: math.unit(1.5, "meters"),
  24705. weight: math.unit(100, "lb"),
  24706. name: "Back",
  24707. image: {
  24708. source: "./media/characters/maksio/back.svg",
  24709. extra: 1541 / 1509,
  24710. bottom: 97 / 1639
  24711. }
  24712. },
  24713. hand: {
  24714. height: math.unit(0.621, "feet"),
  24715. name: "Hand",
  24716. image: {
  24717. source: "./media/characters/maksio/hand.svg"
  24718. }
  24719. },
  24720. foot: {
  24721. height: math.unit(1.611, "feet"),
  24722. name: "Foot",
  24723. image: {
  24724. source: "./media/characters/maksio/foot.svg"
  24725. }
  24726. },
  24727. },
  24728. [
  24729. {
  24730. name: "Shrunken",
  24731. height: math.unit(10, "cm")
  24732. },
  24733. {
  24734. name: "Normal",
  24735. height: math.unit(150, "cm"),
  24736. default: true
  24737. },
  24738. ]
  24739. ))
  24740. characterMakers.push(() => makeCharacter(
  24741. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24742. {
  24743. front: {
  24744. height: math.unit(100, "feet"),
  24745. name: "Front",
  24746. image: {
  24747. source: "./media/characters/erza-bear/front.svg",
  24748. extra: 2449 / 2390,
  24749. bottom: 46 / 2494
  24750. }
  24751. },
  24752. back: {
  24753. height: math.unit(100, "feet"),
  24754. name: "Back",
  24755. image: {
  24756. source: "./media/characters/erza-bear/back.svg",
  24757. extra: 2489 / 2430,
  24758. bottom: 85.4 / 2480
  24759. }
  24760. },
  24761. tail: {
  24762. height: math.unit(42, "feet"),
  24763. name: "Tail",
  24764. image: {
  24765. source: "./media/characters/erza-bear/tail.svg"
  24766. }
  24767. },
  24768. tongue: {
  24769. height: math.unit(8, "feet"),
  24770. name: "Tongue",
  24771. image: {
  24772. source: "./media/characters/erza-bear/tongue.svg"
  24773. }
  24774. },
  24775. dick: {
  24776. height: math.unit(10.5, "feet"),
  24777. name: "Dick",
  24778. image: {
  24779. source: "./media/characters/erza-bear/dick.svg"
  24780. }
  24781. },
  24782. dickVertical: {
  24783. height: math.unit(16.9, "feet"),
  24784. name: "Dick (Vertical)",
  24785. image: {
  24786. source: "./media/characters/erza-bear/dick-vertical.svg"
  24787. }
  24788. },
  24789. },
  24790. [
  24791. {
  24792. name: "Macro",
  24793. height: math.unit(100, "feet"),
  24794. default: true
  24795. },
  24796. ]
  24797. ))
  24798. characterMakers.push(() => makeCharacter(
  24799. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24800. {
  24801. front: {
  24802. height: math.unit(172, "cm"),
  24803. weight: math.unit(73, "kg"),
  24804. name: "Front",
  24805. image: {
  24806. source: "./media/characters/violet-flor/front.svg",
  24807. extra: 1530 / 1442,
  24808. bottom: 61.9 / 1588.8
  24809. }
  24810. },
  24811. back: {
  24812. height: math.unit(180, "cm"),
  24813. weight: math.unit(73, "kg"),
  24814. name: "Back",
  24815. image: {
  24816. source: "./media/characters/violet-flor/back.svg",
  24817. extra: 1692 / 1630,
  24818. bottom: 20 / 1712
  24819. }
  24820. },
  24821. },
  24822. [
  24823. {
  24824. name: "Normal",
  24825. height: math.unit(172, "cm"),
  24826. default: true
  24827. },
  24828. ]
  24829. ))
  24830. characterMakers.push(() => makeCharacter(
  24831. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24832. {
  24833. front: {
  24834. height: math.unit(6, "feet"),
  24835. weight: math.unit(220, "lb"),
  24836. name: "Front",
  24837. image: {
  24838. source: "./media/characters/lynn-rhea/front.svg",
  24839. extra: 310 / 273
  24840. }
  24841. },
  24842. back: {
  24843. height: math.unit(6, "feet"),
  24844. weight: math.unit(220, "lb"),
  24845. name: "Back",
  24846. image: {
  24847. source: "./media/characters/lynn-rhea/back.svg",
  24848. extra: 310 / 273
  24849. }
  24850. },
  24851. dicks: {
  24852. height: math.unit(0.9, "feet"),
  24853. name: "Dicks",
  24854. image: {
  24855. source: "./media/characters/lynn-rhea/dicks.svg"
  24856. }
  24857. },
  24858. slit: {
  24859. height: math.unit(0.4, "feet"),
  24860. name: "Slit",
  24861. image: {
  24862. source: "./media/characters/lynn-rhea/slit.svg"
  24863. }
  24864. },
  24865. },
  24866. [
  24867. {
  24868. name: "Micro",
  24869. height: math.unit(1, "inch")
  24870. },
  24871. {
  24872. name: "Macro",
  24873. height: math.unit(60, "feet"),
  24874. default: true
  24875. },
  24876. {
  24877. name: "Megamacro",
  24878. height: math.unit(2, "miles")
  24879. },
  24880. {
  24881. name: "Gigamacro",
  24882. height: math.unit(3, "earths")
  24883. },
  24884. {
  24885. name: "Galactic",
  24886. height: math.unit(0.8, "galaxies")
  24887. },
  24888. ]
  24889. ))
  24890. characterMakers.push(() => makeCharacter(
  24891. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24892. {
  24893. front: {
  24894. height: math.unit(1600, "feet"),
  24895. weight: math.unit(85758785169, "kg"),
  24896. name: "Front",
  24897. image: {
  24898. source: "./media/characters/valathos/front.svg",
  24899. extra: 1451 / 1339
  24900. }
  24901. },
  24902. },
  24903. [
  24904. {
  24905. name: "Macro",
  24906. height: math.unit(1600, "feet"),
  24907. default: true
  24908. },
  24909. ]
  24910. ))
  24911. characterMakers.push(() => makeCharacter(
  24912. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24913. {
  24914. front: {
  24915. height: math.unit(7 + 5 / 12, "feet"),
  24916. weight: math.unit(300, "lb"),
  24917. name: "Front",
  24918. image: {
  24919. source: "./media/characters/azula/front.svg",
  24920. extra: 3208 / 2880,
  24921. bottom: 80.2 / 3277
  24922. }
  24923. },
  24924. back: {
  24925. height: math.unit(7 + 5 / 12, "feet"),
  24926. weight: math.unit(300, "lb"),
  24927. name: "Back",
  24928. image: {
  24929. source: "./media/characters/azula/back.svg",
  24930. extra: 3169 / 2822,
  24931. bottom: 150.6 / 3321
  24932. }
  24933. },
  24934. },
  24935. [
  24936. {
  24937. name: "Normal",
  24938. height: math.unit(7 + 5 / 12, "feet"),
  24939. default: true
  24940. },
  24941. {
  24942. name: "Big",
  24943. height: math.unit(20, "feet")
  24944. },
  24945. ]
  24946. ))
  24947. characterMakers.push(() => makeCharacter(
  24948. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24949. {
  24950. front: {
  24951. height: math.unit(5 + 1 / 12, "feet"),
  24952. weight: math.unit(110, "lb"),
  24953. name: "Front",
  24954. image: {
  24955. source: "./media/characters/rupert/front.svg",
  24956. extra: 1549 / 1495,
  24957. bottom: 54.2 / 1604.4
  24958. }
  24959. },
  24960. },
  24961. [
  24962. {
  24963. name: "Normal",
  24964. height: math.unit(5 + 1 / 12, "feet"),
  24965. default: true
  24966. },
  24967. ]
  24968. ))
  24969. characterMakers.push(() => makeCharacter(
  24970. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24971. {
  24972. front: {
  24973. height: math.unit(8 + 4 / 12, "feet"),
  24974. weight: math.unit(350, "lb"),
  24975. name: "Front",
  24976. image: {
  24977. source: "./media/characters/sheera-castellar/front.svg",
  24978. extra: 1957 / 1894,
  24979. bottom: 26.97 / 1975.017
  24980. }
  24981. },
  24982. side: {
  24983. height: math.unit(8 + 4 / 12, "feet"),
  24984. weight: math.unit(350, "lb"),
  24985. name: "Side",
  24986. image: {
  24987. source: "./media/characters/sheera-castellar/side.svg",
  24988. extra: 1957 / 1894
  24989. }
  24990. },
  24991. back: {
  24992. height: math.unit(8 + 4 / 12, "feet"),
  24993. weight: math.unit(350, "lb"),
  24994. name: "Back",
  24995. image: {
  24996. source: "./media/characters/sheera-castellar/back.svg",
  24997. extra: 1957 / 1894
  24998. }
  24999. },
  25000. angled: {
  25001. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25002. weight: math.unit(350, "lb"),
  25003. name: "Angled",
  25004. image: {
  25005. source: "./media/characters/sheera-castellar/angled.svg",
  25006. extra: 1807 / 1707,
  25007. bottom: 68 / 1875
  25008. }
  25009. },
  25010. genitals: {
  25011. height: math.unit(2.2, "feet"),
  25012. name: "Genitals",
  25013. image: {
  25014. source: "./media/characters/sheera-castellar/genitals.svg"
  25015. }
  25016. },
  25017. taur: {
  25018. height: math.unit(10 + 6/12, "feet"),
  25019. name: "Taur",
  25020. image: {
  25021. source: "./media/characters/sheera-castellar/taur.svg",
  25022. extra: 2017/1909,
  25023. bottom: 185/2202
  25024. }
  25025. },
  25026. },
  25027. [
  25028. {
  25029. name: "Normal",
  25030. height: math.unit(8 + 4 / 12, "feet")
  25031. },
  25032. {
  25033. name: "Macro",
  25034. height: math.unit(150, "feet"),
  25035. default: true
  25036. },
  25037. {
  25038. name: "Macro+",
  25039. height: math.unit(800, "feet")
  25040. },
  25041. ]
  25042. ))
  25043. characterMakers.push(() => makeCharacter(
  25044. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25045. {
  25046. front: {
  25047. height: math.unit(6, "feet"),
  25048. weight: math.unit(150, "lb"),
  25049. name: "Front",
  25050. image: {
  25051. source: "./media/characters/jaipur/front.svg",
  25052. extra: 3860 / 3731,
  25053. bottom: 287 / 4140
  25054. }
  25055. },
  25056. back: {
  25057. height: math.unit(6, "feet"),
  25058. weight: math.unit(150, "lb"),
  25059. name: "Back",
  25060. image: {
  25061. source: "./media/characters/jaipur/back.svg",
  25062. extra: 1637/1561,
  25063. bottom: 154/1791
  25064. }
  25065. },
  25066. },
  25067. [
  25068. {
  25069. name: "Normal",
  25070. height: math.unit(1.85, "meters"),
  25071. default: true
  25072. },
  25073. {
  25074. name: "Macro",
  25075. height: math.unit(150, "meters")
  25076. },
  25077. {
  25078. name: "Macro+",
  25079. height: math.unit(0.5, "miles")
  25080. },
  25081. {
  25082. name: "Macro++",
  25083. height: math.unit(2.5, "miles")
  25084. },
  25085. {
  25086. name: "Macro+++",
  25087. height: math.unit(12, "miles")
  25088. },
  25089. {
  25090. name: "Macro++++",
  25091. height: math.unit(120, "miles")
  25092. },
  25093. {
  25094. name: "Macro+++++",
  25095. height: math.unit(1200, "miles")
  25096. },
  25097. ]
  25098. ))
  25099. characterMakers.push(() => makeCharacter(
  25100. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25101. {
  25102. front: {
  25103. height: math.unit(6, "feet"),
  25104. weight: math.unit(150, "lb"),
  25105. name: "Front",
  25106. image: {
  25107. source: "./media/characters/sheila-wolf/front.svg",
  25108. extra: 1931 / 1808,
  25109. bottom: 29.5 / 1960
  25110. }
  25111. },
  25112. dick: {
  25113. height: math.unit(1.464, "feet"),
  25114. name: "Dick",
  25115. image: {
  25116. source: "./media/characters/sheila-wolf/dick.svg"
  25117. }
  25118. },
  25119. muzzle: {
  25120. height: math.unit(0.513, "feet"),
  25121. name: "Muzzle",
  25122. image: {
  25123. source: "./media/characters/sheila-wolf/muzzle.svg"
  25124. }
  25125. },
  25126. },
  25127. [
  25128. {
  25129. name: "Macro",
  25130. height: math.unit(70, "feet"),
  25131. default: true
  25132. },
  25133. ]
  25134. ))
  25135. characterMakers.push(() => makeCharacter(
  25136. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25137. {
  25138. front: {
  25139. height: math.unit(32, "meters"),
  25140. weight: math.unit(300000, "kg"),
  25141. name: "Front",
  25142. image: {
  25143. source: "./media/characters/almor/front.svg",
  25144. extra: 1408 / 1322,
  25145. bottom: 94.6 / 1506.5
  25146. }
  25147. },
  25148. },
  25149. [
  25150. {
  25151. name: "Macro",
  25152. height: math.unit(32, "meters"),
  25153. default: true
  25154. },
  25155. ]
  25156. ))
  25157. characterMakers.push(() => makeCharacter(
  25158. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25159. {
  25160. front: {
  25161. height: math.unit(7, "feet"),
  25162. weight: math.unit(200, "lb"),
  25163. name: "Front",
  25164. image: {
  25165. source: "./media/characters/silver/front.svg",
  25166. extra: 472.1 / 450.5,
  25167. bottom: 26.5 / 499.424
  25168. }
  25169. },
  25170. },
  25171. [
  25172. {
  25173. name: "Normal",
  25174. height: math.unit(7, "feet"),
  25175. default: true
  25176. },
  25177. {
  25178. name: "Macro",
  25179. height: math.unit(800, "feet")
  25180. },
  25181. {
  25182. name: "Megamacro",
  25183. height: math.unit(250, "miles")
  25184. },
  25185. ]
  25186. ))
  25187. characterMakers.push(() => makeCharacter(
  25188. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25189. {
  25190. front: {
  25191. height: math.unit(6, "feet"),
  25192. weight: math.unit(150, "lb"),
  25193. name: "Front",
  25194. image: {
  25195. source: "./media/characters/pliskin/front.svg",
  25196. extra: 1469 / 1359,
  25197. bottom: 70 / 1540
  25198. }
  25199. },
  25200. },
  25201. [
  25202. {
  25203. name: "Micro",
  25204. height: math.unit(3, "inches")
  25205. },
  25206. {
  25207. name: "Normal",
  25208. height: math.unit(5 + 11 / 12, "feet"),
  25209. default: true
  25210. },
  25211. {
  25212. name: "Macro",
  25213. height: math.unit(120, "feet")
  25214. },
  25215. ]
  25216. ))
  25217. characterMakers.push(() => makeCharacter(
  25218. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25219. {
  25220. front: {
  25221. height: math.unit(6, "feet"),
  25222. weight: math.unit(150, "lb"),
  25223. name: "Front",
  25224. image: {
  25225. source: "./media/characters/sammy/front.svg",
  25226. extra: 1193 / 1089,
  25227. bottom: 30.5 / 1226
  25228. }
  25229. },
  25230. },
  25231. [
  25232. {
  25233. name: "Macro",
  25234. height: math.unit(1700, "feet"),
  25235. default: true
  25236. },
  25237. {
  25238. name: "Examacro",
  25239. height: math.unit(2.5e9, "lightyears")
  25240. },
  25241. ]
  25242. ))
  25243. characterMakers.push(() => makeCharacter(
  25244. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25245. {
  25246. front: {
  25247. height: math.unit(21, "meters"),
  25248. weight: math.unit(12, "tonnes"),
  25249. name: "Front",
  25250. image: {
  25251. source: "./media/characters/kuru/front.svg",
  25252. extra: 4301 / 3785,
  25253. bottom: 371.3 / 4691
  25254. }
  25255. },
  25256. },
  25257. [
  25258. {
  25259. name: "Macro",
  25260. height: math.unit(21, "meters"),
  25261. default: true
  25262. },
  25263. ]
  25264. ))
  25265. characterMakers.push(() => makeCharacter(
  25266. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25267. {
  25268. front: {
  25269. height: math.unit(23, "meters"),
  25270. weight: math.unit(12.2, "tonnes"),
  25271. name: "Front",
  25272. image: {
  25273. source: "./media/characters/rakka/front.svg",
  25274. extra: 4670 / 4169,
  25275. bottom: 301 / 4968.7
  25276. }
  25277. },
  25278. },
  25279. [
  25280. {
  25281. name: "Macro",
  25282. height: math.unit(23, "meters"),
  25283. default: true
  25284. },
  25285. ]
  25286. ))
  25287. characterMakers.push(() => makeCharacter(
  25288. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25289. {
  25290. front: {
  25291. height: math.unit(6, "feet"),
  25292. weight: math.unit(150, "lb"),
  25293. name: "Front",
  25294. image: {
  25295. source: "./media/characters/rhys-feline/front.svg",
  25296. extra: 2488 / 2308,
  25297. bottom: 35.67 / 2519.19
  25298. }
  25299. },
  25300. },
  25301. [
  25302. {
  25303. name: "Really Small",
  25304. height: math.unit(1, "nm")
  25305. },
  25306. {
  25307. name: "Micro",
  25308. height: math.unit(4, "inches")
  25309. },
  25310. {
  25311. name: "Normal",
  25312. height: math.unit(4 + 10 / 12, "feet"),
  25313. default: true
  25314. },
  25315. {
  25316. name: "Macro",
  25317. height: math.unit(100, "feet")
  25318. },
  25319. {
  25320. name: "Megamacto",
  25321. height: math.unit(50, "miles")
  25322. },
  25323. ]
  25324. ))
  25325. characterMakers.push(() => makeCharacter(
  25326. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25327. {
  25328. side: {
  25329. height: math.unit(30, "feet"),
  25330. weight: math.unit(35000, "kg"),
  25331. name: "Side",
  25332. image: {
  25333. source: "./media/characters/alydar/side.svg",
  25334. extra: 234 / 222,
  25335. bottom: 6.5 / 241
  25336. }
  25337. },
  25338. front: {
  25339. height: math.unit(30, "feet"),
  25340. weight: math.unit(35000, "kg"),
  25341. name: "Front",
  25342. image: {
  25343. source: "./media/characters/alydar/front.svg",
  25344. extra: 223.37 / 210.2,
  25345. bottom: 22.3 / 246.76
  25346. }
  25347. },
  25348. top: {
  25349. height: math.unit(64.54, "feet"),
  25350. weight: math.unit(35000, "kg"),
  25351. name: "Top",
  25352. image: {
  25353. source: "./media/characters/alydar/top.svg"
  25354. }
  25355. },
  25356. anthro: {
  25357. height: math.unit(30, "feet"),
  25358. weight: math.unit(9000, "kg"),
  25359. name: "Anthro",
  25360. image: {
  25361. source: "./media/characters/alydar/anthro.svg",
  25362. extra: 432 / 421,
  25363. bottom: 7.18 / 440
  25364. }
  25365. },
  25366. maw: {
  25367. height: math.unit(11.693, "feet"),
  25368. name: "Maw",
  25369. image: {
  25370. source: "./media/characters/alydar/maw.svg"
  25371. }
  25372. },
  25373. head: {
  25374. height: math.unit(11.693, "feet"),
  25375. name: "Head",
  25376. image: {
  25377. source: "./media/characters/alydar/head.svg"
  25378. }
  25379. },
  25380. headAlt: {
  25381. height: math.unit(12.861, "feet"),
  25382. name: "Head (Alt)",
  25383. image: {
  25384. source: "./media/characters/alydar/head-alt.svg"
  25385. }
  25386. },
  25387. wing: {
  25388. height: math.unit(20.712, "feet"),
  25389. name: "Wing",
  25390. image: {
  25391. source: "./media/characters/alydar/wing.svg"
  25392. }
  25393. },
  25394. wingFeather: {
  25395. height: math.unit(9.662, "feet"),
  25396. name: "Wing Feather",
  25397. image: {
  25398. source: "./media/characters/alydar/wing-feather.svg"
  25399. }
  25400. },
  25401. countourFeather: {
  25402. height: math.unit(4.154, "feet"),
  25403. name: "Contour Feather",
  25404. image: {
  25405. source: "./media/characters/alydar/contour-feather.svg"
  25406. }
  25407. },
  25408. },
  25409. [
  25410. {
  25411. name: "Diplomatic",
  25412. height: math.unit(13, "feet"),
  25413. default: true
  25414. },
  25415. {
  25416. name: "Small",
  25417. height: math.unit(30, "feet")
  25418. },
  25419. {
  25420. name: "Normal",
  25421. height: math.unit(95, "feet"),
  25422. default: true
  25423. },
  25424. {
  25425. name: "Large",
  25426. height: math.unit(285, "feet")
  25427. },
  25428. {
  25429. name: "Incomprehensible",
  25430. height: math.unit(450, "megameters")
  25431. },
  25432. ]
  25433. ))
  25434. characterMakers.push(() => makeCharacter(
  25435. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25436. {
  25437. side: {
  25438. height: math.unit(11, "feet"),
  25439. weight: math.unit(1750, "kg"),
  25440. name: "Side",
  25441. image: {
  25442. source: "./media/characters/selicia/side.svg",
  25443. extra: 440 / 396,
  25444. bottom: 24.8 / 465.979
  25445. }
  25446. },
  25447. maw: {
  25448. height: math.unit(4.665, "feet"),
  25449. name: "Maw",
  25450. image: {
  25451. source: "./media/characters/selicia/maw.svg"
  25452. }
  25453. },
  25454. },
  25455. [
  25456. {
  25457. name: "Normal",
  25458. height: math.unit(11, "feet"),
  25459. default: true
  25460. },
  25461. ]
  25462. ))
  25463. characterMakers.push(() => makeCharacter(
  25464. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25465. {
  25466. side: {
  25467. height: math.unit(2 + 6 / 12, "feet"),
  25468. weight: math.unit(30, "lb"),
  25469. name: "Side",
  25470. image: {
  25471. source: "./media/characters/layla/side.svg",
  25472. extra: 244 / 188,
  25473. bottom: 18.2 / 262.1
  25474. }
  25475. },
  25476. back: {
  25477. height: math.unit(2 + 6 / 12, "feet"),
  25478. weight: math.unit(30, "lb"),
  25479. name: "Back",
  25480. image: {
  25481. source: "./media/characters/layla/back.svg",
  25482. extra: 308 / 241.5,
  25483. bottom: 8.9 / 316.8
  25484. }
  25485. },
  25486. cumming: {
  25487. height: math.unit(2 + 6 / 12, "feet"),
  25488. weight: math.unit(30, "lb"),
  25489. name: "Cumming",
  25490. image: {
  25491. source: "./media/characters/layla/cumming.svg",
  25492. extra: 342 / 279,
  25493. bottom: 595 / 938
  25494. }
  25495. },
  25496. dickFlaccid: {
  25497. height: math.unit(2.595, "feet"),
  25498. name: "Flaccid Genitals",
  25499. image: {
  25500. source: "./media/characters/layla/dick-flaccid.svg"
  25501. }
  25502. },
  25503. dickErect: {
  25504. height: math.unit(2.359, "feet"),
  25505. name: "Erect Genitals",
  25506. image: {
  25507. source: "./media/characters/layla/dick-erect.svg"
  25508. }
  25509. },
  25510. dragon: {
  25511. height: math.unit(40, "feet"),
  25512. name: "Dragon",
  25513. image: {
  25514. source: "./media/characters/layla/dragon.svg",
  25515. extra: 610/535,
  25516. bottom: 367/977
  25517. }
  25518. },
  25519. taur: {
  25520. height: math.unit(30, "feet"),
  25521. name: "Taur",
  25522. image: {
  25523. source: "./media/characters/layla/taur.svg",
  25524. extra: 1268/1199,
  25525. bottom: 112/1380
  25526. }
  25527. },
  25528. },
  25529. [
  25530. {
  25531. name: "Micro",
  25532. height: math.unit(1, "inch")
  25533. },
  25534. {
  25535. name: "Small",
  25536. height: math.unit(1, "foot")
  25537. },
  25538. {
  25539. name: "Normal",
  25540. height: math.unit(2 + 6 / 12, "feet"),
  25541. default: true
  25542. },
  25543. {
  25544. name: "Macro",
  25545. height: math.unit(200, "feet")
  25546. },
  25547. {
  25548. name: "Megamacro",
  25549. height: math.unit(1000, "miles")
  25550. },
  25551. {
  25552. name: "Planetary",
  25553. height: math.unit(8000, "miles")
  25554. },
  25555. {
  25556. name: "True Layla",
  25557. height: math.unit(200000 * 7, "multiverses")
  25558. },
  25559. ]
  25560. ))
  25561. characterMakers.push(() => makeCharacter(
  25562. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25563. {
  25564. back: {
  25565. height: math.unit(10.5, "feet"),
  25566. weight: math.unit(800, "lb"),
  25567. name: "Back",
  25568. image: {
  25569. source: "./media/characters/knox/back.svg",
  25570. extra: 1486 / 1089,
  25571. bottom: 107 / 1601.4
  25572. }
  25573. },
  25574. side: {
  25575. height: math.unit(10.5, "feet"),
  25576. weight: math.unit(800, "lb"),
  25577. name: "Side",
  25578. image: {
  25579. source: "./media/characters/knox/side.svg",
  25580. extra: 244 / 218,
  25581. bottom: 14 / 260
  25582. }
  25583. },
  25584. },
  25585. [
  25586. {
  25587. name: "Compact",
  25588. height: math.unit(10.5, "feet"),
  25589. default: true
  25590. },
  25591. {
  25592. name: "Dynamax",
  25593. height: math.unit(210, "feet")
  25594. },
  25595. {
  25596. name: "Full Macro",
  25597. height: math.unit(850, "feet")
  25598. },
  25599. ]
  25600. ))
  25601. characterMakers.push(() => makeCharacter(
  25602. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25603. {
  25604. front: {
  25605. height: math.unit(28, "feet"),
  25606. weight: math.unit(10500, "lb"),
  25607. name: "Front",
  25608. image: {
  25609. source: "./media/characters/kayda/front.svg",
  25610. extra: 1536 / 1428,
  25611. bottom: 68.7 / 1603
  25612. }
  25613. },
  25614. back: {
  25615. height: math.unit(28, "feet"),
  25616. weight: math.unit(10500, "lb"),
  25617. name: "Back",
  25618. image: {
  25619. source: "./media/characters/kayda/back.svg",
  25620. extra: 1557 / 1464,
  25621. bottom: 39.5 / 1597.49
  25622. }
  25623. },
  25624. dick: {
  25625. height: math.unit(3.858, "feet"),
  25626. name: "Dick",
  25627. image: {
  25628. source: "./media/characters/kayda/dick.svg"
  25629. }
  25630. },
  25631. },
  25632. [
  25633. {
  25634. name: "Macro",
  25635. height: math.unit(28, "feet"),
  25636. default: true
  25637. },
  25638. ]
  25639. ))
  25640. characterMakers.push(() => makeCharacter(
  25641. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25642. {
  25643. front: {
  25644. height: math.unit(10 + 11 / 12, "feet"),
  25645. weight: math.unit(1400, "lb"),
  25646. name: "Front",
  25647. image: {
  25648. source: "./media/characters/brian/front.svg",
  25649. extra: 737 / 692,
  25650. bottom: 55.4 / 785
  25651. }
  25652. },
  25653. },
  25654. [
  25655. {
  25656. name: "Normal",
  25657. height: math.unit(10 + 11 / 12, "feet"),
  25658. default: true
  25659. },
  25660. ]
  25661. ))
  25662. characterMakers.push(() => makeCharacter(
  25663. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25664. {
  25665. front: {
  25666. height: math.unit(5 + 8 / 12, "feet"),
  25667. weight: math.unit(140, "lb"),
  25668. name: "Front",
  25669. image: {
  25670. source: "./media/characters/khemri/front.svg",
  25671. extra: 4780 / 4059,
  25672. bottom: 80.1 / 4859.25
  25673. }
  25674. },
  25675. },
  25676. [
  25677. {
  25678. name: "Micro",
  25679. height: math.unit(6, "inches")
  25680. },
  25681. {
  25682. name: "Normal",
  25683. height: math.unit(5 + 8 / 12, "feet"),
  25684. default: true
  25685. },
  25686. ]
  25687. ))
  25688. characterMakers.push(() => makeCharacter(
  25689. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25690. {
  25691. front: {
  25692. height: math.unit(13, "feet"),
  25693. weight: math.unit(1700, "lb"),
  25694. name: "Front",
  25695. image: {
  25696. source: "./media/characters/felix-braveheart/front.svg",
  25697. extra: 1222 / 1157,
  25698. bottom: 53.2 / 1280
  25699. }
  25700. },
  25701. back: {
  25702. height: math.unit(13, "feet"),
  25703. weight: math.unit(1700, "lb"),
  25704. name: "Back",
  25705. image: {
  25706. source: "./media/characters/felix-braveheart/back.svg",
  25707. extra: 1277 / 1203,
  25708. bottom: 50.2 / 1327
  25709. }
  25710. },
  25711. feral: {
  25712. height: math.unit(6, "feet"),
  25713. weight: math.unit(400, "lb"),
  25714. name: "Feral",
  25715. image: {
  25716. source: "./media/characters/felix-braveheart/feral.svg",
  25717. extra: 682 / 625,
  25718. bottom: 6.9 / 688
  25719. }
  25720. },
  25721. },
  25722. [
  25723. {
  25724. name: "Normal",
  25725. height: math.unit(13, "feet"),
  25726. default: true
  25727. },
  25728. ]
  25729. ))
  25730. characterMakers.push(() => makeCharacter(
  25731. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25732. {
  25733. side: {
  25734. height: math.unit(5 + 11 / 12, "feet"),
  25735. weight: math.unit(1400, "lb"),
  25736. name: "Side",
  25737. image: {
  25738. source: "./media/characters/shadow-blade/side.svg",
  25739. extra: 1726 / 1267,
  25740. bottom: 58.4 / 1785
  25741. }
  25742. },
  25743. },
  25744. [
  25745. {
  25746. name: "Normal",
  25747. height: math.unit(5 + 11 / 12, "feet"),
  25748. default: true
  25749. },
  25750. ]
  25751. ))
  25752. characterMakers.push(() => makeCharacter(
  25753. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25754. {
  25755. front: {
  25756. height: math.unit(1 + 6 / 12, "feet"),
  25757. weight: math.unit(25, "lb"),
  25758. name: "Front",
  25759. image: {
  25760. source: "./media/characters/karla-halldor/front.svg",
  25761. extra: 1459 / 1383,
  25762. bottom: 12 / 1472
  25763. }
  25764. },
  25765. },
  25766. [
  25767. {
  25768. name: "Normal",
  25769. height: math.unit(1 + 6 / 12, "feet"),
  25770. default: true
  25771. },
  25772. ]
  25773. ))
  25774. characterMakers.push(() => makeCharacter(
  25775. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25776. {
  25777. front: {
  25778. height: math.unit(6 + 2 / 12, "feet"),
  25779. weight: math.unit(160, "lb"),
  25780. name: "Front",
  25781. image: {
  25782. source: "./media/characters/ariam/front.svg",
  25783. extra: 1073/976,
  25784. bottom: 52/1125
  25785. }
  25786. },
  25787. back: {
  25788. height: math.unit(6 + 2/12, "feet"),
  25789. weight: math.unit(160, "lb"),
  25790. name: "Back",
  25791. image: {
  25792. source: "./media/characters/ariam/back.svg",
  25793. extra: 1103/1023,
  25794. bottom: 9/1112
  25795. }
  25796. },
  25797. dressed: {
  25798. height: math.unit(6 + 2/12, "feet"),
  25799. weight: math.unit(160, "lb"),
  25800. name: "Dressed",
  25801. image: {
  25802. source: "./media/characters/ariam/dressed.svg",
  25803. extra: 1099/1009,
  25804. bottom: 25/1124
  25805. }
  25806. },
  25807. squatting: {
  25808. height: math.unit(4.1, "feet"),
  25809. weight: math.unit(160, "lb"),
  25810. name: "Squatting",
  25811. image: {
  25812. source: "./media/characters/ariam/squatting.svg",
  25813. extra: 2617 / 2112,
  25814. bottom: 61.2 / 2681,
  25815. }
  25816. },
  25817. },
  25818. [
  25819. {
  25820. name: "Normal",
  25821. height: math.unit(6 + 2 / 12, "feet"),
  25822. default: true
  25823. },
  25824. {
  25825. name: "Normal+",
  25826. height: math.unit(4, "meters")
  25827. },
  25828. {
  25829. name: "Macro",
  25830. height: math.unit(50, "meters")
  25831. },
  25832. {
  25833. name: "Macro+",
  25834. height: math.unit(100, "meters")
  25835. },
  25836. {
  25837. name: "Megamacro",
  25838. height: math.unit(20, "km")
  25839. },
  25840. {
  25841. name: "Caretaker",
  25842. height: math.unit(444, "megameters")
  25843. },
  25844. ]
  25845. ))
  25846. characterMakers.push(() => makeCharacter(
  25847. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25848. {
  25849. front: {
  25850. height: math.unit(1.67, "meters"),
  25851. weight: math.unit(140, "lb"),
  25852. name: "Front",
  25853. image: {
  25854. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25855. extra: 438 / 410,
  25856. bottom: 0.75 / 439
  25857. }
  25858. },
  25859. },
  25860. [
  25861. {
  25862. name: "Shrunken",
  25863. height: math.unit(7.6, "cm")
  25864. },
  25865. {
  25866. name: "Human Scale",
  25867. height: math.unit(1.67, "meters")
  25868. },
  25869. {
  25870. name: "Wolxi Scale",
  25871. height: math.unit(36.7, "meters"),
  25872. default: true
  25873. },
  25874. ]
  25875. ))
  25876. characterMakers.push(() => makeCharacter(
  25877. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25878. {
  25879. front: {
  25880. height: math.unit(1.73, "meters"),
  25881. weight: math.unit(240, "lb"),
  25882. name: "Front",
  25883. image: {
  25884. source: "./media/characters/izue-two-mothers/front.svg",
  25885. extra: 469 / 437,
  25886. bottom: 1.24 / 470.6
  25887. }
  25888. },
  25889. },
  25890. [
  25891. {
  25892. name: "Shrunken",
  25893. height: math.unit(7.86, "cm")
  25894. },
  25895. {
  25896. name: "Human Scale",
  25897. height: math.unit(1.73, "meters")
  25898. },
  25899. {
  25900. name: "Wolxi Scale",
  25901. height: math.unit(38, "meters"),
  25902. default: true
  25903. },
  25904. ]
  25905. ))
  25906. characterMakers.push(() => makeCharacter(
  25907. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25908. {
  25909. front: {
  25910. height: math.unit(1.55, "meters"),
  25911. weight: math.unit(120, "lb"),
  25912. name: "Front",
  25913. image: {
  25914. source: "./media/characters/teeku-love-shack/front.svg",
  25915. extra: 387 / 362,
  25916. bottom: 1.51 / 388
  25917. }
  25918. },
  25919. },
  25920. [
  25921. {
  25922. name: "Shrunken",
  25923. height: math.unit(7, "cm")
  25924. },
  25925. {
  25926. name: "Human Scale",
  25927. height: math.unit(1.55, "meters")
  25928. },
  25929. {
  25930. name: "Wolxi Scale",
  25931. height: math.unit(34.1, "meters"),
  25932. default: true
  25933. },
  25934. ]
  25935. ))
  25936. characterMakers.push(() => makeCharacter(
  25937. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25938. {
  25939. front: {
  25940. height: math.unit(1.83, "meters"),
  25941. weight: math.unit(135, "lb"),
  25942. name: "Front",
  25943. image: {
  25944. source: "./media/characters/dejma-the-red/front.svg",
  25945. extra: 480 / 458,
  25946. bottom: 1.8 / 482
  25947. }
  25948. },
  25949. },
  25950. [
  25951. {
  25952. name: "Shrunken",
  25953. height: math.unit(8.3, "cm")
  25954. },
  25955. {
  25956. name: "Human Scale",
  25957. height: math.unit(1.83, "meters")
  25958. },
  25959. {
  25960. name: "Wolxi Scale",
  25961. height: math.unit(40, "meters"),
  25962. default: true
  25963. },
  25964. ]
  25965. ))
  25966. characterMakers.push(() => makeCharacter(
  25967. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25968. {
  25969. front: {
  25970. height: math.unit(1.78, "meters"),
  25971. weight: math.unit(65, "kg"),
  25972. name: "Front",
  25973. image: {
  25974. source: "./media/characters/aki/front.svg",
  25975. extra: 452 / 415
  25976. }
  25977. },
  25978. frontNsfw: {
  25979. height: math.unit(1.78, "meters"),
  25980. weight: math.unit(65, "kg"),
  25981. name: "Front (NSFW)",
  25982. image: {
  25983. source: "./media/characters/aki/front-nsfw.svg",
  25984. extra: 452 / 415
  25985. }
  25986. },
  25987. back: {
  25988. height: math.unit(1.78, "meters"),
  25989. weight: math.unit(65, "kg"),
  25990. name: "Back",
  25991. image: {
  25992. source: "./media/characters/aki/back.svg",
  25993. extra: 452 / 415
  25994. }
  25995. },
  25996. rump: {
  25997. height: math.unit(2.05, "feet"),
  25998. name: "Rump",
  25999. image: {
  26000. source: "./media/characters/aki/rump.svg"
  26001. }
  26002. },
  26003. dick: {
  26004. height: math.unit(0.95, "feet"),
  26005. name: "Dick",
  26006. image: {
  26007. source: "./media/characters/aki/dick.svg"
  26008. }
  26009. },
  26010. },
  26011. [
  26012. {
  26013. name: "Micro",
  26014. height: math.unit(15, "cm")
  26015. },
  26016. {
  26017. name: "Normal",
  26018. height: math.unit(178, "cm"),
  26019. default: true
  26020. },
  26021. {
  26022. name: "Macro",
  26023. height: math.unit(214, "m")
  26024. },
  26025. {
  26026. name: "Macro+",
  26027. height: math.unit(534, "m")
  26028. },
  26029. ]
  26030. ))
  26031. characterMakers.push(() => makeCharacter(
  26032. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26033. {
  26034. front: {
  26035. height: math.unit(5 + 5 / 12, "feet"),
  26036. weight: math.unit(120, "lb"),
  26037. name: "Front",
  26038. image: {
  26039. source: "./media/characters/ari/front.svg",
  26040. extra: 1550/1471,
  26041. bottom: 39/1589
  26042. }
  26043. },
  26044. },
  26045. [
  26046. {
  26047. name: "Normal",
  26048. height: math.unit(5 + 5 / 12, "feet")
  26049. },
  26050. {
  26051. name: "Macro",
  26052. height: math.unit(100, "feet"),
  26053. default: true
  26054. },
  26055. {
  26056. name: "Megamacro",
  26057. height: math.unit(100, "miles")
  26058. },
  26059. {
  26060. name: "Gigamacro",
  26061. height: math.unit(80000, "miles")
  26062. },
  26063. ]
  26064. ))
  26065. characterMakers.push(() => makeCharacter(
  26066. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26067. {
  26068. side: {
  26069. height: math.unit(9, "feet"),
  26070. weight: math.unit(400, "kg"),
  26071. name: "Side",
  26072. image: {
  26073. source: "./media/characters/bolt/side.svg",
  26074. extra: 1126 / 896,
  26075. bottom: 60 / 1187.3,
  26076. }
  26077. },
  26078. },
  26079. [
  26080. {
  26081. name: "Micro",
  26082. height: math.unit(5, "inches")
  26083. },
  26084. {
  26085. name: "Normal",
  26086. height: math.unit(9, "feet"),
  26087. default: true
  26088. },
  26089. {
  26090. name: "Macro",
  26091. height: math.unit(700, "feet")
  26092. },
  26093. {
  26094. name: "Max Size",
  26095. height: math.unit(1.52e22, "yottameters")
  26096. },
  26097. ]
  26098. ))
  26099. characterMakers.push(() => makeCharacter(
  26100. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26101. {
  26102. front: {
  26103. height: math.unit(4.3, "meters"),
  26104. weight: math.unit(3, "tons"),
  26105. name: "Front",
  26106. image: {
  26107. source: "./media/characters/draekon-sylviar/front.svg",
  26108. extra: 2072/1512,
  26109. bottom: 74/2146
  26110. }
  26111. },
  26112. back: {
  26113. height: math.unit(4.3, "meters"),
  26114. weight: math.unit(3, "tons"),
  26115. name: "Back",
  26116. image: {
  26117. source: "./media/characters/draekon-sylviar/back.svg",
  26118. extra: 1639/1483,
  26119. bottom: 41/1680
  26120. }
  26121. },
  26122. feral: {
  26123. height: math.unit(1.15, "meters"),
  26124. weight: math.unit(3, "tons"),
  26125. name: "Feral",
  26126. image: {
  26127. source: "./media/characters/draekon-sylviar/feral.svg",
  26128. extra: 1033/395,
  26129. bottom: 130/1163
  26130. }
  26131. },
  26132. maw: {
  26133. height: math.unit(1.3, "meters"),
  26134. name: "Maw",
  26135. image: {
  26136. source: "./media/characters/draekon-sylviar/maw.svg"
  26137. }
  26138. },
  26139. mawSeparated: {
  26140. height: math.unit(1.53, "meters"),
  26141. name: "Separated Maw",
  26142. image: {
  26143. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26144. }
  26145. },
  26146. tail: {
  26147. height: math.unit(1.15, "meters"),
  26148. name: "Tail",
  26149. image: {
  26150. source: "./media/characters/draekon-sylviar/tail.svg"
  26151. }
  26152. },
  26153. tailDick: {
  26154. height: math.unit(1.15, "meters"),
  26155. name: "Tail (Dick)",
  26156. image: {
  26157. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26158. }
  26159. },
  26160. tailDickSeparated: {
  26161. height: math.unit(1.19, "meters"),
  26162. name: "Tail (Separated Dick)",
  26163. image: {
  26164. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26165. }
  26166. },
  26167. slit: {
  26168. height: math.unit(1, "meters"),
  26169. name: "Slit",
  26170. image: {
  26171. source: "./media/characters/draekon-sylviar/slit.svg"
  26172. }
  26173. },
  26174. dick: {
  26175. height: math.unit(1.15, "meters"),
  26176. name: "Dick",
  26177. image: {
  26178. source: "./media/characters/draekon-sylviar/dick.svg"
  26179. }
  26180. },
  26181. dickSeparated: {
  26182. height: math.unit(1.1, "meters"),
  26183. name: "Separated Dick",
  26184. image: {
  26185. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26186. }
  26187. },
  26188. sheath: {
  26189. height: math.unit(1.15, "meters"),
  26190. name: "Sheath",
  26191. image: {
  26192. source: "./media/characters/draekon-sylviar/sheath.svg"
  26193. }
  26194. },
  26195. },
  26196. [
  26197. {
  26198. name: "Small",
  26199. height: math.unit(4.53 / 2, "meters"),
  26200. default: true
  26201. },
  26202. {
  26203. name: "Normal",
  26204. height: math.unit(4.53, "meters"),
  26205. default: true
  26206. },
  26207. {
  26208. name: "Large",
  26209. height: math.unit(4.53 * 2, "meters"),
  26210. },
  26211. ]
  26212. ))
  26213. characterMakers.push(() => makeCharacter(
  26214. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26215. {
  26216. front: {
  26217. height: math.unit(6 + 2 / 12, "feet"),
  26218. weight: math.unit(180, "lb"),
  26219. name: "Front",
  26220. image: {
  26221. source: "./media/characters/brawler/front.svg",
  26222. extra: 3301 / 3027,
  26223. bottom: 138 / 3439
  26224. }
  26225. },
  26226. },
  26227. [
  26228. {
  26229. name: "Normal",
  26230. height: math.unit(6 + 2 / 12, "feet"),
  26231. default: true
  26232. },
  26233. ]
  26234. ))
  26235. characterMakers.push(() => makeCharacter(
  26236. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26237. {
  26238. front: {
  26239. height: math.unit(11, "feet"),
  26240. weight: math.unit(1000, "lb"),
  26241. name: "Front",
  26242. image: {
  26243. source: "./media/characters/alex/front.svg",
  26244. bottom: 44.5 / 620
  26245. }
  26246. },
  26247. },
  26248. [
  26249. {
  26250. name: "Micro",
  26251. height: math.unit(5, "inches")
  26252. },
  26253. {
  26254. name: "Normal",
  26255. height: math.unit(11, "feet"),
  26256. default: true
  26257. },
  26258. {
  26259. name: "Macro",
  26260. height: math.unit(9.5e9, "feet")
  26261. },
  26262. {
  26263. name: "Max Size",
  26264. height: math.unit(1.4e283, "yottameters")
  26265. },
  26266. ]
  26267. ))
  26268. characterMakers.push(() => makeCharacter(
  26269. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26270. {
  26271. female: {
  26272. height: math.unit(29.9, "m"),
  26273. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26274. name: "Female",
  26275. image: {
  26276. source: "./media/characters/zenari/female.svg",
  26277. extra: 3281.6 / 3217,
  26278. bottom: 72.2 / 3353
  26279. }
  26280. },
  26281. male: {
  26282. height: math.unit(27.7, "m"),
  26283. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26284. name: "Male",
  26285. image: {
  26286. source: "./media/characters/zenari/male.svg",
  26287. extra: 3008 / 2991,
  26288. bottom: 54.6 / 3069
  26289. }
  26290. },
  26291. },
  26292. [
  26293. {
  26294. name: "Macro",
  26295. height: math.unit(29.7, "meters"),
  26296. default: true
  26297. },
  26298. ]
  26299. ))
  26300. characterMakers.push(() => makeCharacter(
  26301. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26302. {
  26303. female: {
  26304. height: math.unit(23.8, "m"),
  26305. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26306. name: "Female",
  26307. image: {
  26308. source: "./media/characters/mactarian/female.svg",
  26309. extra: 2662 / 2569,
  26310. bottom: 73 / 2736
  26311. }
  26312. },
  26313. male: {
  26314. height: math.unit(23.8, "m"),
  26315. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26316. name: "Male",
  26317. image: {
  26318. source: "./media/characters/mactarian/male.svg",
  26319. extra: 2673 / 2600,
  26320. bottom: 76 / 2750
  26321. }
  26322. },
  26323. },
  26324. [
  26325. {
  26326. name: "Macro",
  26327. height: math.unit(23.8, "meters"),
  26328. default: true
  26329. },
  26330. ]
  26331. ))
  26332. characterMakers.push(() => makeCharacter(
  26333. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26334. {
  26335. female: {
  26336. height: math.unit(19.3, "m"),
  26337. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26338. name: "Female",
  26339. image: {
  26340. source: "./media/characters/umok/female.svg",
  26341. extra: 2186 / 2078,
  26342. bottom: 87 / 2277
  26343. }
  26344. },
  26345. male: {
  26346. height: math.unit(19.5, "m"),
  26347. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26348. name: "Male",
  26349. image: {
  26350. source: "./media/characters/umok/male.svg",
  26351. extra: 2233 / 2140,
  26352. bottom: 24.4 / 2258
  26353. }
  26354. },
  26355. },
  26356. [
  26357. {
  26358. name: "Macro",
  26359. height: math.unit(19.3, "meters"),
  26360. default: true
  26361. },
  26362. ]
  26363. ))
  26364. characterMakers.push(() => makeCharacter(
  26365. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26366. {
  26367. female: {
  26368. height: math.unit(26.15, "m"),
  26369. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26370. name: "Female",
  26371. image: {
  26372. source: "./media/characters/joraxian/female.svg",
  26373. extra: 2912 / 2824,
  26374. bottom: 36 / 2956
  26375. }
  26376. },
  26377. male: {
  26378. height: math.unit(25.4, "m"),
  26379. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26380. name: "Male",
  26381. image: {
  26382. source: "./media/characters/joraxian/male.svg",
  26383. extra: 2877 / 2721,
  26384. bottom: 82 / 2967
  26385. }
  26386. },
  26387. },
  26388. [
  26389. {
  26390. name: "Macro",
  26391. height: math.unit(26.15, "meters"),
  26392. default: true
  26393. },
  26394. ]
  26395. ))
  26396. characterMakers.push(() => makeCharacter(
  26397. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26398. {
  26399. female: {
  26400. height: math.unit(21.6, "m"),
  26401. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26402. name: "Female",
  26403. image: {
  26404. source: "./media/characters/sthara/female.svg",
  26405. extra: 2516 / 2347,
  26406. bottom: 21.5 / 2537
  26407. }
  26408. },
  26409. male: {
  26410. height: math.unit(24, "m"),
  26411. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26412. name: "Male",
  26413. image: {
  26414. source: "./media/characters/sthara/male.svg",
  26415. extra: 2732 / 2607,
  26416. bottom: 23 / 2732
  26417. }
  26418. },
  26419. },
  26420. [
  26421. {
  26422. name: "Macro",
  26423. height: math.unit(21.6, "meters"),
  26424. default: true
  26425. },
  26426. ]
  26427. ))
  26428. characterMakers.push(() => makeCharacter(
  26429. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26430. {
  26431. front: {
  26432. height: math.unit(6 + 4 / 12, "feet"),
  26433. weight: math.unit(175, "lb"),
  26434. name: "Front",
  26435. image: {
  26436. source: "./media/characters/luka-bryzant/front.svg",
  26437. extra: 311 / 289,
  26438. bottom: 4 / 315
  26439. }
  26440. },
  26441. back: {
  26442. height: math.unit(6 + 4 / 12, "feet"),
  26443. weight: math.unit(175, "lb"),
  26444. name: "Back",
  26445. image: {
  26446. source: "./media/characters/luka-bryzant/back.svg",
  26447. extra: 311 / 289,
  26448. bottom: 3.8 / 313.7
  26449. }
  26450. },
  26451. },
  26452. [
  26453. {
  26454. name: "Micro",
  26455. height: math.unit(10, "inches")
  26456. },
  26457. {
  26458. name: "Normal",
  26459. height: math.unit(6 + 4 / 12, "feet"),
  26460. default: true
  26461. },
  26462. {
  26463. name: "Large",
  26464. height: math.unit(12, "feet")
  26465. },
  26466. ]
  26467. ))
  26468. characterMakers.push(() => makeCharacter(
  26469. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26470. {
  26471. front: {
  26472. height: math.unit(5 + 7 / 12, "feet"),
  26473. weight: math.unit(185, "lb"),
  26474. name: "Front",
  26475. image: {
  26476. source: "./media/characters/aman-aquila/front.svg",
  26477. extra: 1013 / 976,
  26478. bottom: 45.6 / 1057
  26479. }
  26480. },
  26481. side: {
  26482. height: math.unit(5 + 7 / 12, "feet"),
  26483. weight: math.unit(185, "lb"),
  26484. name: "Side",
  26485. image: {
  26486. source: "./media/characters/aman-aquila/side.svg",
  26487. extra: 1054 / 1011,
  26488. bottom: 15 / 1070
  26489. }
  26490. },
  26491. back: {
  26492. height: math.unit(5 + 7 / 12, "feet"),
  26493. weight: math.unit(185, "lb"),
  26494. name: "Back",
  26495. image: {
  26496. source: "./media/characters/aman-aquila/back.svg",
  26497. extra: 1026 / 970,
  26498. bottom: 12 / 1039
  26499. }
  26500. },
  26501. head: {
  26502. height: math.unit(1.211, "feet"),
  26503. name: "Head",
  26504. image: {
  26505. source: "./media/characters/aman-aquila/head.svg",
  26506. }
  26507. },
  26508. },
  26509. [
  26510. {
  26511. name: "Minimicro",
  26512. height: math.unit(0.057, "inches")
  26513. },
  26514. {
  26515. name: "Micro",
  26516. height: math.unit(7, "inches")
  26517. },
  26518. {
  26519. name: "Mini",
  26520. height: math.unit(3 + 7 / 12, "feet")
  26521. },
  26522. {
  26523. name: "Normal",
  26524. height: math.unit(5 + 7 / 12, "feet"),
  26525. default: true
  26526. },
  26527. {
  26528. name: "Macro",
  26529. height: math.unit(157 + 7 / 12, "feet")
  26530. },
  26531. {
  26532. name: "Megamacro",
  26533. height: math.unit(1557 + 7 / 12, "feet")
  26534. },
  26535. {
  26536. name: "Gigamacro",
  26537. height: math.unit(15557 + 7 / 12, "feet")
  26538. },
  26539. ]
  26540. ))
  26541. characterMakers.push(() => makeCharacter(
  26542. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26543. {
  26544. front: {
  26545. height: math.unit(3 + 2 / 12, "inches"),
  26546. weight: math.unit(0.3, "ounces"),
  26547. name: "Front",
  26548. image: {
  26549. source: "./media/characters/hiphae/front.svg",
  26550. extra: 1931 / 1683,
  26551. bottom: 24 / 1955
  26552. }
  26553. },
  26554. },
  26555. [
  26556. {
  26557. name: "Normal",
  26558. height: math.unit(3 + 1 / 2, "inches"),
  26559. default: true
  26560. },
  26561. ]
  26562. ))
  26563. characterMakers.push(() => makeCharacter(
  26564. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26565. {
  26566. front: {
  26567. height: math.unit(5 + 10 / 12, "feet"),
  26568. weight: math.unit(165, "lb"),
  26569. name: "Front",
  26570. image: {
  26571. source: "./media/characters/nicky/front.svg",
  26572. extra: 3144 / 2886,
  26573. bottom: 45.6 / 3192
  26574. }
  26575. },
  26576. back: {
  26577. height: math.unit(5 + 10 / 12, "feet"),
  26578. weight: math.unit(165, "lb"),
  26579. name: "Back",
  26580. image: {
  26581. source: "./media/characters/nicky/back.svg",
  26582. extra: 3055 / 2804,
  26583. bottom: 28.4 / 3087
  26584. }
  26585. },
  26586. frontclothed: {
  26587. height: math.unit(5 + 10 / 12, "feet"),
  26588. weight: math.unit(165, "lb"),
  26589. name: "Front-clothed",
  26590. image: {
  26591. source: "./media/characters/nicky/front-clothed.svg",
  26592. extra: 3184.9 / 2926.9,
  26593. bottom: 86.5 / 3239.9
  26594. }
  26595. },
  26596. foot: {
  26597. height: math.unit(1.16, "feet"),
  26598. name: "Foot",
  26599. image: {
  26600. source: "./media/characters/nicky/foot.svg"
  26601. }
  26602. },
  26603. feet: {
  26604. height: math.unit(1.34, "feet"),
  26605. name: "Feet",
  26606. image: {
  26607. source: "./media/characters/nicky/feet.svg"
  26608. }
  26609. },
  26610. maw: {
  26611. height: math.unit(0.9, "feet"),
  26612. name: "Maw",
  26613. image: {
  26614. source: "./media/characters/nicky/maw.svg"
  26615. }
  26616. },
  26617. },
  26618. [
  26619. {
  26620. name: "Normal",
  26621. height: math.unit(5 + 10 / 12, "feet"),
  26622. default: true
  26623. },
  26624. {
  26625. name: "Macro",
  26626. height: math.unit(60, "feet")
  26627. },
  26628. {
  26629. name: "Megamacro",
  26630. height: math.unit(1, "mile")
  26631. },
  26632. ]
  26633. ))
  26634. characterMakers.push(() => makeCharacter(
  26635. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26636. {
  26637. side: {
  26638. height: math.unit(10, "feet"),
  26639. weight: math.unit(600, "lb"),
  26640. name: "Side",
  26641. image: {
  26642. source: "./media/characters/blair/side.svg",
  26643. bottom: 16.6 / 475,
  26644. extra: 458 / 431
  26645. }
  26646. },
  26647. },
  26648. [
  26649. {
  26650. name: "Micro",
  26651. height: math.unit(8, "inches")
  26652. },
  26653. {
  26654. name: "Normal",
  26655. height: math.unit(10, "feet"),
  26656. default: true
  26657. },
  26658. {
  26659. name: "Macro",
  26660. height: math.unit(180, "feet")
  26661. },
  26662. ]
  26663. ))
  26664. characterMakers.push(() => makeCharacter(
  26665. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26666. {
  26667. front: {
  26668. height: math.unit(5 + 4 / 12, "feet"),
  26669. weight: math.unit(125, "lb"),
  26670. name: "Front",
  26671. image: {
  26672. source: "./media/characters/fisher/front.svg",
  26673. extra: 444 / 390,
  26674. bottom: 2 / 444.8
  26675. }
  26676. },
  26677. },
  26678. [
  26679. {
  26680. name: "Micro",
  26681. height: math.unit(4, "inches")
  26682. },
  26683. {
  26684. name: "Normal",
  26685. height: math.unit(5 + 4 / 12, "feet"),
  26686. default: true
  26687. },
  26688. {
  26689. name: "Macro",
  26690. height: math.unit(100, "feet")
  26691. },
  26692. ]
  26693. ))
  26694. characterMakers.push(() => makeCharacter(
  26695. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26696. {
  26697. front: {
  26698. height: math.unit(6.71, "feet"),
  26699. weight: math.unit(200, "lb"),
  26700. preyCapacity: math.unit(1000000, "people"),
  26701. name: "Front",
  26702. image: {
  26703. source: "./media/characters/gliss/front.svg",
  26704. extra: 2347 / 2231,
  26705. bottom: 113 / 2462
  26706. }
  26707. },
  26708. hammerspaceSize: {
  26709. height: math.unit(6.71 * 717, "feet"),
  26710. weight: math.unit(200, "lb"),
  26711. preyCapacity: math.unit(1000000, "people"),
  26712. name: "Hammerspace Size",
  26713. image: {
  26714. source: "./media/characters/gliss/front.svg",
  26715. extra: 2347 / 2231,
  26716. bottom: 113 / 2462
  26717. }
  26718. },
  26719. },
  26720. [
  26721. {
  26722. name: "Normal",
  26723. height: math.unit(6.71, "feet"),
  26724. default: true
  26725. },
  26726. ]
  26727. ))
  26728. characterMakers.push(() => makeCharacter(
  26729. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26730. {
  26731. side: {
  26732. height: math.unit(1.44, "m"),
  26733. weight: math.unit(80, "kg"),
  26734. name: "Side",
  26735. image: {
  26736. source: "./media/characters/dune-anderson/side.svg",
  26737. bottom: 49 / 1426
  26738. }
  26739. },
  26740. },
  26741. [
  26742. {
  26743. name: "Wolf-sized",
  26744. height: math.unit(1.44, "meters")
  26745. },
  26746. {
  26747. name: "Normal",
  26748. height: math.unit(5.05, "meters"),
  26749. default: true
  26750. },
  26751. {
  26752. name: "Big",
  26753. height: math.unit(14.4, "meters")
  26754. },
  26755. {
  26756. name: "Huge",
  26757. height: math.unit(144, "meters")
  26758. },
  26759. ]
  26760. ))
  26761. characterMakers.push(() => makeCharacter(
  26762. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26763. {
  26764. front: {
  26765. height: math.unit(7, "feet"),
  26766. weight: math.unit(425, "lb"),
  26767. name: "Front",
  26768. image: {
  26769. source: "./media/characters/hind/front.svg",
  26770. extra: 2091 / 1860,
  26771. bottom: 129 / 2220
  26772. }
  26773. },
  26774. back: {
  26775. height: math.unit(7, "feet"),
  26776. weight: math.unit(425, "lb"),
  26777. name: "Back",
  26778. image: {
  26779. source: "./media/characters/hind/back.svg",
  26780. extra: 2091 / 1860,
  26781. bottom: 24.6 / 2309
  26782. }
  26783. },
  26784. tail: {
  26785. height: math.unit(2.8, "feet"),
  26786. name: "Tail",
  26787. image: {
  26788. source: "./media/characters/hind/tail.svg"
  26789. }
  26790. },
  26791. head: {
  26792. height: math.unit(2.55, "feet"),
  26793. name: "Head",
  26794. image: {
  26795. source: "./media/characters/hind/head.svg"
  26796. }
  26797. },
  26798. },
  26799. [
  26800. {
  26801. name: "XS",
  26802. height: math.unit(0.7, "feet")
  26803. },
  26804. {
  26805. name: "Normal",
  26806. height: math.unit(7, "feet"),
  26807. default: true
  26808. },
  26809. {
  26810. name: "XL",
  26811. height: math.unit(70, "feet")
  26812. },
  26813. ]
  26814. ))
  26815. characterMakers.push(() => makeCharacter(
  26816. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26817. {
  26818. front: {
  26819. height: math.unit(2.1, "meters"),
  26820. weight: math.unit(150, "lb"),
  26821. name: "Front",
  26822. image: {
  26823. source: "./media/characters/tharquench-sizestealer/front.svg",
  26824. extra: 1605/1470,
  26825. bottom: 36/1641
  26826. }
  26827. },
  26828. frontAlt: {
  26829. height: math.unit(2.1, "meters"),
  26830. weight: math.unit(150, "lb"),
  26831. name: "Front (Alt)",
  26832. image: {
  26833. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26834. extra: 2318 / 2063,
  26835. bottom: 93.4 / 2410
  26836. }
  26837. },
  26838. },
  26839. [
  26840. {
  26841. name: "Nano",
  26842. height: math.unit(1, "mm")
  26843. },
  26844. {
  26845. name: "Micro",
  26846. height: math.unit(1, "cm")
  26847. },
  26848. {
  26849. name: "Normal",
  26850. height: math.unit(2.1, "meters"),
  26851. default: true
  26852. },
  26853. ]
  26854. ))
  26855. characterMakers.push(() => makeCharacter(
  26856. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26857. {
  26858. front: {
  26859. height: math.unit(7 + 5 / 12, "feet"),
  26860. weight: math.unit(357, "lb"),
  26861. name: "Front",
  26862. image: {
  26863. source: "./media/characters/solex-draconov/front.svg",
  26864. extra: 1993 / 1865,
  26865. bottom: 117 / 2111
  26866. }
  26867. },
  26868. },
  26869. [
  26870. {
  26871. name: "Natural Height",
  26872. height: math.unit(7 + 5 / 12, "feet"),
  26873. default: true
  26874. },
  26875. {
  26876. name: "Macro",
  26877. height: math.unit(350, "feet")
  26878. },
  26879. {
  26880. name: "Macro+",
  26881. height: math.unit(1000, "feet")
  26882. },
  26883. {
  26884. name: "Megamacro",
  26885. height: math.unit(20, "km")
  26886. },
  26887. {
  26888. name: "Megamacro+",
  26889. height: math.unit(1000, "km")
  26890. },
  26891. {
  26892. name: "Gigamacro",
  26893. height: math.unit(2.5, "Gm")
  26894. },
  26895. {
  26896. name: "Teramacro",
  26897. height: math.unit(15, "Tm")
  26898. },
  26899. {
  26900. name: "Galactic",
  26901. height: math.unit(30, "Zm")
  26902. },
  26903. {
  26904. name: "Universal",
  26905. height: math.unit(21000, "Ym")
  26906. },
  26907. {
  26908. name: "Omniversal",
  26909. height: math.unit(9.861e50, "Ym")
  26910. },
  26911. {
  26912. name: "Existential",
  26913. height: math.unit(1e300, "meters")
  26914. },
  26915. ]
  26916. ))
  26917. characterMakers.push(() => makeCharacter(
  26918. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26919. {
  26920. side: {
  26921. height: math.unit(25, "feet"),
  26922. weight: math.unit(90000, "lb"),
  26923. name: "Side",
  26924. image: {
  26925. source: "./media/characters/mandarax/side.svg",
  26926. extra: 614 / 332,
  26927. bottom: 55 / 630
  26928. }
  26929. },
  26930. lounging: {
  26931. height: math.unit(15.4, "feet"),
  26932. weight: math.unit(90000, "lb"),
  26933. name: "Lounging",
  26934. image: {
  26935. source: "./media/characters/mandarax/lounging.svg",
  26936. extra: 817/609,
  26937. bottom: 685/1502
  26938. }
  26939. },
  26940. head: {
  26941. height: math.unit(11.4, "feet"),
  26942. name: "Head",
  26943. image: {
  26944. source: "./media/characters/mandarax/head.svg"
  26945. }
  26946. },
  26947. belly: {
  26948. height: math.unit(33, "feet"),
  26949. name: "Belly",
  26950. preyCapacity: math.unit(500, "people"),
  26951. image: {
  26952. source: "./media/characters/mandarax/belly.svg"
  26953. }
  26954. },
  26955. dick: {
  26956. height: math.unit(8.46, "feet"),
  26957. name: "Dick",
  26958. image: {
  26959. source: "./media/characters/mandarax/dick.svg"
  26960. }
  26961. },
  26962. top: {
  26963. height: math.unit(28, "meters"),
  26964. name: "Top",
  26965. image: {
  26966. source: "./media/characters/mandarax/top.svg"
  26967. }
  26968. },
  26969. },
  26970. [
  26971. {
  26972. name: "Normal",
  26973. height: math.unit(25, "feet"),
  26974. default: true
  26975. },
  26976. ]
  26977. ))
  26978. characterMakers.push(() => makeCharacter(
  26979. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26980. {
  26981. front: {
  26982. height: math.unit(5, "feet"),
  26983. weight: math.unit(90, "lb"),
  26984. name: "Front",
  26985. image: {
  26986. source: "./media/characters/pixil/front.svg",
  26987. extra: 2000 / 1618,
  26988. bottom: 12.3 / 2011
  26989. }
  26990. },
  26991. },
  26992. [
  26993. {
  26994. name: "Normal",
  26995. height: math.unit(5, "feet"),
  26996. default: true
  26997. },
  26998. {
  26999. name: "Megamacro",
  27000. height: math.unit(10, "miles"),
  27001. },
  27002. ]
  27003. ))
  27004. characterMakers.push(() => makeCharacter(
  27005. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27006. {
  27007. front: {
  27008. height: math.unit(7 + 2 / 12, "feet"),
  27009. weight: math.unit(200, "lb"),
  27010. name: "Front",
  27011. image: {
  27012. source: "./media/characters/angel/front.svg",
  27013. extra: 1830 / 1737,
  27014. bottom: 22.6 / 1854,
  27015. }
  27016. },
  27017. },
  27018. [
  27019. {
  27020. name: "Normal",
  27021. height: math.unit(7 + 2 / 12, "feet"),
  27022. default: true
  27023. },
  27024. {
  27025. name: "Macro",
  27026. height: math.unit(1000, "feet")
  27027. },
  27028. {
  27029. name: "Megamacro",
  27030. height: math.unit(2, "miles")
  27031. },
  27032. {
  27033. name: "Gigamacro",
  27034. height: math.unit(20, "earths")
  27035. },
  27036. ]
  27037. ))
  27038. characterMakers.push(() => makeCharacter(
  27039. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27040. {
  27041. front: {
  27042. height: math.unit(5, "feet"),
  27043. weight: math.unit(180, "lb"),
  27044. name: "Front",
  27045. image: {
  27046. source: "./media/characters/mekana/front.svg",
  27047. extra: 1671 / 1605,
  27048. bottom: 3.5 / 1691
  27049. }
  27050. },
  27051. side: {
  27052. height: math.unit(5, "feet"),
  27053. weight: math.unit(180, "lb"),
  27054. name: "Side",
  27055. image: {
  27056. source: "./media/characters/mekana/side.svg",
  27057. extra: 1671 / 1605,
  27058. bottom: 3.5 / 1691
  27059. }
  27060. },
  27061. back: {
  27062. height: math.unit(5, "feet"),
  27063. weight: math.unit(180, "lb"),
  27064. name: "Back",
  27065. image: {
  27066. source: "./media/characters/mekana/back.svg",
  27067. extra: 1671 / 1605,
  27068. bottom: 3.5 / 1691
  27069. }
  27070. },
  27071. },
  27072. [
  27073. {
  27074. name: "Normal",
  27075. height: math.unit(5, "feet"),
  27076. default: true
  27077. },
  27078. ]
  27079. ))
  27080. characterMakers.push(() => makeCharacter(
  27081. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27082. {
  27083. front: {
  27084. height: math.unit(4 + 6 / 12, "feet"),
  27085. weight: math.unit(80, "lb"),
  27086. name: "Front",
  27087. image: {
  27088. source: "./media/characters/pixie/front.svg",
  27089. extra: 1924 / 1825,
  27090. bottom: 22.4 / 1946
  27091. }
  27092. },
  27093. },
  27094. [
  27095. {
  27096. name: "Normal",
  27097. height: math.unit(4 + 6 / 12, "feet"),
  27098. default: true
  27099. },
  27100. {
  27101. name: "Macro",
  27102. height: math.unit(40, "feet")
  27103. },
  27104. ]
  27105. ))
  27106. characterMakers.push(() => makeCharacter(
  27107. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27108. {
  27109. front: {
  27110. height: math.unit(2.1, "meters"),
  27111. weight: math.unit(200, "lb"),
  27112. name: "Front",
  27113. image: {
  27114. source: "./media/characters/the-lascivious/front.svg",
  27115. extra: 1 / 0.893,
  27116. bottom: 3.5 / 573.7
  27117. }
  27118. },
  27119. },
  27120. [
  27121. {
  27122. name: "Human Scale",
  27123. height: math.unit(2.1, "meters")
  27124. },
  27125. {
  27126. name: "Wolxi Scale",
  27127. height: math.unit(46.2, "m"),
  27128. default: true
  27129. },
  27130. {
  27131. name: "Boinker of Buildings",
  27132. height: math.unit(10, "km")
  27133. },
  27134. {
  27135. name: "Shagger of Skyscrapers",
  27136. height: math.unit(40, "km")
  27137. },
  27138. {
  27139. name: "Banger of Boroughs",
  27140. height: math.unit(4000, "km")
  27141. },
  27142. {
  27143. name: "Screwer of States",
  27144. height: math.unit(100000, "km")
  27145. },
  27146. {
  27147. name: "Pounder of Planets",
  27148. height: math.unit(2000000, "km")
  27149. },
  27150. ]
  27151. ))
  27152. characterMakers.push(() => makeCharacter(
  27153. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27154. {
  27155. front: {
  27156. height: math.unit(6, "feet"),
  27157. weight: math.unit(150, "lb"),
  27158. name: "Front",
  27159. image: {
  27160. source: "./media/characters/aj/front.svg",
  27161. extra: 2039 / 1562,
  27162. bottom: 40 / 2079
  27163. }
  27164. },
  27165. },
  27166. [
  27167. {
  27168. name: "Normal",
  27169. height: math.unit(11 + 6 / 12, "feet"),
  27170. default: true
  27171. },
  27172. {
  27173. name: "Megamacro",
  27174. height: math.unit(60, "megameters")
  27175. },
  27176. ]
  27177. ))
  27178. characterMakers.push(() => makeCharacter(
  27179. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27180. {
  27181. side: {
  27182. height: math.unit(31 + 8 / 12, "feet"),
  27183. weight: math.unit(75000, "kg"),
  27184. name: "Side",
  27185. image: {
  27186. source: "./media/characters/koros/side.svg",
  27187. extra: 1442 / 1297,
  27188. bottom: 122.7 / 1562
  27189. }
  27190. },
  27191. dicksKingsCrown: {
  27192. height: math.unit(6, "feet"),
  27193. name: "Dicks (King's Crown)",
  27194. image: {
  27195. source: "./media/characters/koros/dicks-kings-crown.svg"
  27196. }
  27197. },
  27198. dicksTailSet: {
  27199. height: math.unit(3, "feet"),
  27200. name: "Dicks (Tail Set)",
  27201. image: {
  27202. source: "./media/characters/koros/dicks-tail-set.svg"
  27203. }
  27204. },
  27205. dickCumming: {
  27206. height: math.unit(7.98, "feet"),
  27207. name: "Dick (Cumming)",
  27208. image: {
  27209. source: "./media/characters/koros/dick-cumming.svg"
  27210. }
  27211. },
  27212. dicksBack: {
  27213. height: math.unit(5.9, "feet"),
  27214. name: "Dicks (Back)",
  27215. image: {
  27216. source: "./media/characters/koros/dicks-back.svg"
  27217. }
  27218. },
  27219. dicksFront: {
  27220. height: math.unit(3.72, "feet"),
  27221. name: "Dicks (Front)",
  27222. image: {
  27223. source: "./media/characters/koros/dicks-front.svg"
  27224. }
  27225. },
  27226. dicksPeeking: {
  27227. height: math.unit(3.0, "feet"),
  27228. name: "Dicks (Peeking)",
  27229. image: {
  27230. source: "./media/characters/koros/dicks-peeking.svg"
  27231. }
  27232. },
  27233. eye: {
  27234. height: math.unit(1.7, "feet"),
  27235. name: "Eye",
  27236. image: {
  27237. source: "./media/characters/koros/eye.svg"
  27238. }
  27239. },
  27240. headFront: {
  27241. height: math.unit(11.69, "feet"),
  27242. name: "Head (Front)",
  27243. image: {
  27244. source: "./media/characters/koros/head-front.svg"
  27245. }
  27246. },
  27247. headSide: {
  27248. height: math.unit(14, "feet"),
  27249. name: "Head (Side)",
  27250. image: {
  27251. source: "./media/characters/koros/head-side.svg"
  27252. }
  27253. },
  27254. leg: {
  27255. height: math.unit(17, "feet"),
  27256. name: "Leg",
  27257. image: {
  27258. source: "./media/characters/koros/leg.svg"
  27259. }
  27260. },
  27261. mawSide: {
  27262. height: math.unit(12.8, "feet"),
  27263. name: "Maw (Side)",
  27264. image: {
  27265. source: "./media/characters/koros/maw-side.svg"
  27266. }
  27267. },
  27268. mawSpitting: {
  27269. height: math.unit(17, "feet"),
  27270. name: "Maw (Spitting)",
  27271. image: {
  27272. source: "./media/characters/koros/maw-spitting.svg"
  27273. }
  27274. },
  27275. slit: {
  27276. height: math.unit(2.8, "feet"),
  27277. name: "Slit",
  27278. image: {
  27279. source: "./media/characters/koros/slit.svg"
  27280. }
  27281. },
  27282. stomach: {
  27283. height: math.unit(6.8, "feet"),
  27284. preyCapacity: math.unit(20, "people"),
  27285. name: "Stomach",
  27286. image: {
  27287. source: "./media/characters/koros/stomach.svg"
  27288. }
  27289. },
  27290. wingspanBottom: {
  27291. height: math.unit(114, "feet"),
  27292. name: "Wingspan (Bottom)",
  27293. image: {
  27294. source: "./media/characters/koros/wingspan-bottom.svg"
  27295. }
  27296. },
  27297. wingspanTop: {
  27298. height: math.unit(104, "feet"),
  27299. name: "Wingspan (Top)",
  27300. image: {
  27301. source: "./media/characters/koros/wingspan-top.svg"
  27302. }
  27303. },
  27304. },
  27305. [
  27306. {
  27307. name: "Normal",
  27308. height: math.unit(31 + 8 / 12, "feet"),
  27309. default: true
  27310. },
  27311. ]
  27312. ))
  27313. characterMakers.push(() => makeCharacter(
  27314. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27315. {
  27316. front: {
  27317. height: math.unit(18 + 5 / 12, "feet"),
  27318. weight: math.unit(3750, "kg"),
  27319. name: "Front",
  27320. image: {
  27321. source: "./media/characters/vexx/front.svg",
  27322. extra: 426 / 396,
  27323. bottom: 31.5 / 458
  27324. }
  27325. },
  27326. maw: {
  27327. height: math.unit(6, "feet"),
  27328. name: "Maw",
  27329. image: {
  27330. source: "./media/characters/vexx/maw.svg"
  27331. }
  27332. },
  27333. },
  27334. [
  27335. {
  27336. name: "Normal",
  27337. height: math.unit(18 + 5 / 12, "feet"),
  27338. default: true
  27339. },
  27340. ]
  27341. ))
  27342. characterMakers.push(() => makeCharacter(
  27343. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27344. {
  27345. front: {
  27346. height: math.unit(17 + 6 / 12, "feet"),
  27347. weight: math.unit(150, "lb"),
  27348. name: "Front",
  27349. image: {
  27350. source: "./media/characters/baadra/front.svg",
  27351. extra: 1694/1553,
  27352. bottom: 179/1873
  27353. }
  27354. },
  27355. frontAlt: {
  27356. height: math.unit(17 + 6 / 12, "feet"),
  27357. weight: math.unit(150, "lb"),
  27358. name: "Front (Alt)",
  27359. image: {
  27360. source: "./media/characters/baadra/front-alt.svg",
  27361. extra: 3137 / 2890,
  27362. bottom: 168.4 / 3305
  27363. }
  27364. },
  27365. back: {
  27366. height: math.unit(17 + 6 / 12, "feet"),
  27367. weight: math.unit(150, "lb"),
  27368. name: "Back",
  27369. image: {
  27370. source: "./media/characters/baadra/back.svg",
  27371. extra: 3142 / 2890,
  27372. bottom: 220 / 3371
  27373. }
  27374. },
  27375. head: {
  27376. height: math.unit(5.45, "feet"),
  27377. name: "Head",
  27378. image: {
  27379. source: "./media/characters/baadra/head.svg"
  27380. }
  27381. },
  27382. headAngry: {
  27383. height: math.unit(4.95, "feet"),
  27384. name: "Head (Angry)",
  27385. image: {
  27386. source: "./media/characters/baadra/head-angry.svg"
  27387. }
  27388. },
  27389. headOpen: {
  27390. height: math.unit(6, "feet"),
  27391. name: "Head (Open)",
  27392. image: {
  27393. source: "./media/characters/baadra/head-open.svg"
  27394. }
  27395. },
  27396. },
  27397. [
  27398. {
  27399. name: "Normal",
  27400. height: math.unit(17 + 6 / 12, "feet"),
  27401. default: true
  27402. },
  27403. ]
  27404. ))
  27405. characterMakers.push(() => makeCharacter(
  27406. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27407. {
  27408. front: {
  27409. height: math.unit(7 + 3 / 12, "feet"),
  27410. weight: math.unit(180, "lb"),
  27411. name: "Front",
  27412. image: {
  27413. source: "./media/characters/juri/front.svg",
  27414. extra: 1401 / 1237,
  27415. bottom: 18.5 / 1418
  27416. }
  27417. },
  27418. side: {
  27419. height: math.unit(7 + 3 / 12, "feet"),
  27420. weight: math.unit(180, "lb"),
  27421. name: "Side",
  27422. image: {
  27423. source: "./media/characters/juri/side.svg",
  27424. extra: 1424 / 1242,
  27425. bottom: 18.5 / 1447
  27426. }
  27427. },
  27428. sitting: {
  27429. height: math.unit(6, "feet"),
  27430. weight: math.unit(180, "lb"),
  27431. name: "Sitting",
  27432. image: {
  27433. source: "./media/characters/juri/sitting.svg",
  27434. extra: 1270 / 1143,
  27435. bottom: 100 / 1343
  27436. }
  27437. },
  27438. back: {
  27439. height: math.unit(7 + 3 / 12, "feet"),
  27440. weight: math.unit(180, "lb"),
  27441. name: "Back",
  27442. image: {
  27443. source: "./media/characters/juri/back.svg",
  27444. extra: 1377 / 1240,
  27445. bottom: 23.7 / 1405
  27446. }
  27447. },
  27448. maw: {
  27449. height: math.unit(2.8, "feet"),
  27450. name: "Maw",
  27451. image: {
  27452. source: "./media/characters/juri/maw.svg"
  27453. }
  27454. },
  27455. stomach: {
  27456. height: math.unit(0.89, "feet"),
  27457. preyCapacity: math.unit(4, "liters"),
  27458. name: "Stomach",
  27459. image: {
  27460. source: "./media/characters/juri/stomach.svg"
  27461. }
  27462. },
  27463. },
  27464. [
  27465. {
  27466. name: "Normal",
  27467. height: math.unit(7 + 3 / 12, "feet"),
  27468. default: true
  27469. },
  27470. ]
  27471. ))
  27472. characterMakers.push(() => makeCharacter(
  27473. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27474. {
  27475. fox: {
  27476. height: math.unit(5 + 6 / 12, "feet"),
  27477. weight: math.unit(140, "lb"),
  27478. name: "Fox",
  27479. image: {
  27480. source: "./media/characters/maxene-sita/fox.svg",
  27481. extra: 146 / 138,
  27482. bottom: 2.1 / 148.19
  27483. }
  27484. },
  27485. foxLaying: {
  27486. height: math.unit(1.70, "feet"),
  27487. weight: math.unit(140, "lb"),
  27488. name: "Fox (Laying)",
  27489. image: {
  27490. source: "./media/characters/maxene-sita/fox-laying.svg",
  27491. extra: 910 / 572,
  27492. bottom: 71 / 981
  27493. }
  27494. },
  27495. kitsune: {
  27496. height: math.unit(10, "feet"),
  27497. weight: math.unit(800, "lb"),
  27498. name: "Kitsune",
  27499. image: {
  27500. source: "./media/characters/maxene-sita/kitsune.svg",
  27501. extra: 185 / 176,
  27502. bottom: 4.7 / 189.9
  27503. }
  27504. },
  27505. hellhound: {
  27506. height: math.unit(10, "feet"),
  27507. weight: math.unit(700, "lb"),
  27508. name: "Hellhound",
  27509. image: {
  27510. source: "./media/characters/maxene-sita/hellhound.svg",
  27511. extra: 1600 / 1545,
  27512. bottom: 81 / 1681
  27513. }
  27514. },
  27515. },
  27516. [
  27517. {
  27518. name: "Normal",
  27519. height: math.unit(5 + 6 / 12, "feet"),
  27520. default: true
  27521. },
  27522. ]
  27523. ))
  27524. characterMakers.push(() => makeCharacter(
  27525. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27526. {
  27527. front: {
  27528. height: math.unit(3 + 4 / 12, "feet"),
  27529. weight: math.unit(70, "lb"),
  27530. name: "Front",
  27531. image: {
  27532. source: "./media/characters/maia/front.svg",
  27533. extra: 227 / 219.5,
  27534. bottom: 40 / 267
  27535. }
  27536. },
  27537. back: {
  27538. height: math.unit(3 + 4 / 12, "feet"),
  27539. weight: math.unit(70, "lb"),
  27540. name: "Back",
  27541. image: {
  27542. source: "./media/characters/maia/back.svg",
  27543. extra: 237 / 225
  27544. }
  27545. },
  27546. },
  27547. [
  27548. {
  27549. name: "Normal",
  27550. height: math.unit(3 + 4 / 12, "feet"),
  27551. default: true
  27552. },
  27553. ]
  27554. ))
  27555. characterMakers.push(() => makeCharacter(
  27556. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27557. {
  27558. front: {
  27559. height: math.unit(5 + 10 / 12, "feet"),
  27560. weight: math.unit(197, "lb"),
  27561. name: "Front",
  27562. image: {
  27563. source: "./media/characters/jabaro/front.svg",
  27564. extra: 225 / 216,
  27565. bottom: 5.06 / 230
  27566. }
  27567. },
  27568. back: {
  27569. height: math.unit(5 + 10 / 12, "feet"),
  27570. weight: math.unit(197, "lb"),
  27571. name: "Back",
  27572. image: {
  27573. source: "./media/characters/jabaro/back.svg",
  27574. extra: 225 / 219,
  27575. bottom: 1.9 / 227
  27576. }
  27577. },
  27578. },
  27579. [
  27580. {
  27581. name: "Normal",
  27582. height: math.unit(5 + 10 / 12, "feet"),
  27583. default: true
  27584. },
  27585. ]
  27586. ))
  27587. characterMakers.push(() => makeCharacter(
  27588. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27589. {
  27590. front: {
  27591. height: math.unit(5 + 8 / 12, "feet"),
  27592. weight: math.unit(139, "lb"),
  27593. name: "Front",
  27594. image: {
  27595. source: "./media/characters/risa/front.svg",
  27596. extra: 270 / 260,
  27597. bottom: 11.2 / 282
  27598. }
  27599. },
  27600. back: {
  27601. height: math.unit(5 + 8 / 12, "feet"),
  27602. weight: math.unit(139, "lb"),
  27603. name: "Back",
  27604. image: {
  27605. source: "./media/characters/risa/back.svg",
  27606. extra: 264 / 255,
  27607. bottom: 4 / 268
  27608. }
  27609. },
  27610. },
  27611. [
  27612. {
  27613. name: "Normal",
  27614. height: math.unit(5 + 8 / 12, "feet"),
  27615. default: true
  27616. },
  27617. ]
  27618. ))
  27619. characterMakers.push(() => makeCharacter(
  27620. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27621. {
  27622. front: {
  27623. height: math.unit(2 + 11 / 12, "feet"),
  27624. weight: math.unit(30, "lb"),
  27625. name: "Front",
  27626. image: {
  27627. source: "./media/characters/weatley/front.svg",
  27628. bottom: 10.7 / 414,
  27629. extra: 403.5 / 362
  27630. }
  27631. },
  27632. back: {
  27633. height: math.unit(2 + 11 / 12, "feet"),
  27634. weight: math.unit(30, "lb"),
  27635. name: "Back",
  27636. image: {
  27637. source: "./media/characters/weatley/back.svg",
  27638. bottom: 10.7 / 414,
  27639. extra: 403.5 / 362
  27640. }
  27641. },
  27642. },
  27643. [
  27644. {
  27645. name: "Normal",
  27646. height: math.unit(2 + 11 / 12, "feet"),
  27647. default: true
  27648. },
  27649. ]
  27650. ))
  27651. characterMakers.push(() => makeCharacter(
  27652. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27653. {
  27654. front: {
  27655. height: math.unit(5 + 2 / 12, "feet"),
  27656. weight: math.unit(50, "kg"),
  27657. name: "Front",
  27658. image: {
  27659. source: "./media/characters/mercury-crescent/front.svg",
  27660. extra: 1088 / 1033,
  27661. bottom: 18.9 / 1109
  27662. }
  27663. },
  27664. },
  27665. [
  27666. {
  27667. name: "Normal",
  27668. height: math.unit(5 + 2 / 12, "feet"),
  27669. default: true
  27670. },
  27671. ]
  27672. ))
  27673. characterMakers.push(() => makeCharacter(
  27674. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27675. {
  27676. front: {
  27677. height: math.unit(2, "feet"),
  27678. weight: math.unit(15, "kg"),
  27679. name: "Front",
  27680. image: {
  27681. source: "./media/characters/diamond-jones/front.svg",
  27682. extra: 727/723,
  27683. bottom: 46/773
  27684. }
  27685. },
  27686. },
  27687. [
  27688. {
  27689. name: "Normal",
  27690. height: math.unit(2, "feet"),
  27691. default: true
  27692. },
  27693. ]
  27694. ))
  27695. characterMakers.push(() => makeCharacter(
  27696. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27697. {
  27698. front: {
  27699. height: math.unit(3, "feet"),
  27700. weight: math.unit(30, "kg"),
  27701. name: "Front",
  27702. image: {
  27703. source: "./media/characters/sweet-bit/front.svg",
  27704. extra: 675 / 567,
  27705. bottom: 27.7 / 703
  27706. }
  27707. },
  27708. },
  27709. [
  27710. {
  27711. name: "Normal",
  27712. height: math.unit(3, "feet"),
  27713. default: true
  27714. },
  27715. ]
  27716. ))
  27717. characterMakers.push(() => makeCharacter(
  27718. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27719. {
  27720. side: {
  27721. height: math.unit(9.178, "feet"),
  27722. weight: math.unit(500, "lb"),
  27723. name: "Side",
  27724. image: {
  27725. source: "./media/characters/umbrazen/side.svg",
  27726. extra: 1730 / 1473,
  27727. bottom: 34.6 / 1765
  27728. }
  27729. },
  27730. },
  27731. [
  27732. {
  27733. name: "Normal",
  27734. height: math.unit(9.178, "feet"),
  27735. default: true
  27736. },
  27737. ]
  27738. ))
  27739. characterMakers.push(() => makeCharacter(
  27740. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27741. {
  27742. front: {
  27743. height: math.unit(10, "feet"),
  27744. weight: math.unit(750, "lb"),
  27745. name: "Front",
  27746. image: {
  27747. source: "./media/characters/arlist/front.svg",
  27748. extra: 961 / 778,
  27749. bottom: 6.2 / 986
  27750. }
  27751. },
  27752. },
  27753. [
  27754. {
  27755. name: "Normal",
  27756. height: math.unit(10, "feet"),
  27757. default: true
  27758. },
  27759. ]
  27760. ))
  27761. characterMakers.push(() => makeCharacter(
  27762. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27763. {
  27764. front: {
  27765. height: math.unit(5 + 1 / 12, "feet"),
  27766. weight: math.unit(110, "lb"),
  27767. name: "Front",
  27768. image: {
  27769. source: "./media/characters/aradel/front.svg",
  27770. extra: 324 / 303,
  27771. bottom: 3.6 / 329.4
  27772. }
  27773. },
  27774. },
  27775. [
  27776. {
  27777. name: "Normal",
  27778. height: math.unit(5 + 1 / 12, "feet"),
  27779. default: true
  27780. },
  27781. ]
  27782. ))
  27783. characterMakers.push(() => makeCharacter(
  27784. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27785. {
  27786. dressed: {
  27787. height: math.unit(3 + 8 / 12, "feet"),
  27788. weight: math.unit(50, "lb"),
  27789. name: "Dressed",
  27790. image: {
  27791. source: "./media/characters/serryn/dressed.svg",
  27792. extra: 1792 / 1656,
  27793. bottom: 43.5 / 1840
  27794. }
  27795. },
  27796. nude: {
  27797. height: math.unit(3 + 8 / 12, "feet"),
  27798. weight: math.unit(50, "lb"),
  27799. name: "Nude",
  27800. image: {
  27801. source: "./media/characters/serryn/nude.svg",
  27802. extra: 1792 / 1656,
  27803. bottom: 43.5 / 1840
  27804. }
  27805. },
  27806. },
  27807. [
  27808. {
  27809. name: "Normal",
  27810. height: math.unit(3 + 8 / 12, "feet"),
  27811. default: true
  27812. },
  27813. ]
  27814. ))
  27815. characterMakers.push(() => makeCharacter(
  27816. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27817. {
  27818. front: {
  27819. height: math.unit(7 + 10 / 12, "feet"),
  27820. weight: math.unit(255, "lb"),
  27821. name: "Front",
  27822. image: {
  27823. source: "./media/characters/xavier-thyme/front.svg",
  27824. extra: 3733 / 3642,
  27825. bottom: 131 / 3869
  27826. }
  27827. },
  27828. frontRaven: {
  27829. height: math.unit(7 + 10 / 12, "feet"),
  27830. weight: math.unit(255, "lb"),
  27831. name: "Front (Raven)",
  27832. image: {
  27833. source: "./media/characters/xavier-thyme/front-raven.svg",
  27834. extra: 4385 / 3642,
  27835. bottom: 131 / 4517
  27836. }
  27837. },
  27838. },
  27839. [
  27840. {
  27841. name: "Normal",
  27842. height: math.unit(7 + 10 / 12, "feet"),
  27843. default: true
  27844. },
  27845. ]
  27846. ))
  27847. characterMakers.push(() => makeCharacter(
  27848. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27849. {
  27850. front: {
  27851. height: math.unit(1.6, "m"),
  27852. weight: math.unit(50, "kg"),
  27853. name: "Front",
  27854. image: {
  27855. source: "./media/characters/kiki/front.svg",
  27856. extra: 4682 / 3610,
  27857. bottom: 115 / 4777
  27858. }
  27859. },
  27860. },
  27861. [
  27862. {
  27863. name: "Normal",
  27864. height: math.unit(1.6, "meters"),
  27865. default: true
  27866. },
  27867. ]
  27868. ))
  27869. characterMakers.push(() => makeCharacter(
  27870. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27871. {
  27872. front: {
  27873. height: math.unit(50, "m"),
  27874. weight: math.unit(500, "tonnes"),
  27875. name: "Front",
  27876. image: {
  27877. source: "./media/characters/ryoko/front.svg",
  27878. extra: 4632 / 3926,
  27879. bottom: 193 / 4823
  27880. }
  27881. },
  27882. },
  27883. [
  27884. {
  27885. name: "Normal",
  27886. height: math.unit(50, "meters"),
  27887. default: true
  27888. },
  27889. ]
  27890. ))
  27891. characterMakers.push(() => makeCharacter(
  27892. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27893. {
  27894. front: {
  27895. height: math.unit(30, "m"),
  27896. weight: math.unit(22, "tonnes"),
  27897. name: "Front",
  27898. image: {
  27899. source: "./media/characters/elio/front.svg",
  27900. extra: 4582 / 3720,
  27901. bottom: 236 / 4828
  27902. }
  27903. },
  27904. },
  27905. [
  27906. {
  27907. name: "Normal",
  27908. height: math.unit(30, "meters"),
  27909. default: true
  27910. },
  27911. ]
  27912. ))
  27913. characterMakers.push(() => makeCharacter(
  27914. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27915. {
  27916. front: {
  27917. height: math.unit(6 + 3 / 12, "feet"),
  27918. weight: math.unit(120, "lb"),
  27919. name: "Front",
  27920. image: {
  27921. source: "./media/characters/azura/front.svg",
  27922. extra: 1149 / 1135,
  27923. bottom: 45 / 1194
  27924. }
  27925. },
  27926. frontClothed: {
  27927. height: math.unit(6 + 3 / 12, "feet"),
  27928. weight: math.unit(120, "lb"),
  27929. name: "Front (Clothed)",
  27930. image: {
  27931. source: "./media/characters/azura/front-clothed.svg",
  27932. extra: 1149 / 1135,
  27933. bottom: 45 / 1194
  27934. }
  27935. },
  27936. },
  27937. [
  27938. {
  27939. name: "Normal",
  27940. height: math.unit(6 + 3 / 12, "feet"),
  27941. default: true
  27942. },
  27943. {
  27944. name: "Macro",
  27945. height: math.unit(20 + 6 / 12, "feet")
  27946. },
  27947. {
  27948. name: "Megamacro",
  27949. height: math.unit(12, "miles")
  27950. },
  27951. {
  27952. name: "Gigamacro",
  27953. height: math.unit(10000, "miles")
  27954. },
  27955. {
  27956. name: "Teramacro",
  27957. height: math.unit(900000, "miles")
  27958. },
  27959. ]
  27960. ))
  27961. characterMakers.push(() => makeCharacter(
  27962. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27963. {
  27964. front: {
  27965. height: math.unit(12, "feet"),
  27966. weight: math.unit(1, "ton"),
  27967. capacity: math.unit(660000, "gallons"),
  27968. name: "Front",
  27969. image: {
  27970. source: "./media/characters/zeus/front.svg",
  27971. extra: 5005 / 4717,
  27972. bottom: 363 / 5388
  27973. }
  27974. },
  27975. },
  27976. [
  27977. {
  27978. name: "Normal",
  27979. height: math.unit(12, "feet")
  27980. },
  27981. {
  27982. name: "Preferred Size",
  27983. height: math.unit(0.5, "miles"),
  27984. default: true
  27985. },
  27986. {
  27987. name: "Giga Horse",
  27988. height: math.unit(300, "miles")
  27989. },
  27990. {
  27991. name: "Riding Planets",
  27992. height: math.unit(30, "megameters")
  27993. },
  27994. {
  27995. name: "Cosmic Giant",
  27996. height: math.unit(3, "zettameters")
  27997. },
  27998. {
  27999. name: "Breeding God",
  28000. height: math.unit(9.92e22, "yottameters")
  28001. },
  28002. ]
  28003. ))
  28004. characterMakers.push(() => makeCharacter(
  28005. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28006. {
  28007. side: {
  28008. height: math.unit(9, "feet"),
  28009. weight: math.unit(1500, "kg"),
  28010. name: "Side",
  28011. image: {
  28012. source: "./media/characters/fang/side.svg",
  28013. extra: 924 / 866,
  28014. bottom: 47.5 / 972.3
  28015. }
  28016. },
  28017. },
  28018. [
  28019. {
  28020. name: "Normal",
  28021. height: math.unit(9, "feet"),
  28022. default: true
  28023. },
  28024. {
  28025. name: "Macro",
  28026. height: math.unit(75 + 6 / 12, "feet")
  28027. },
  28028. {
  28029. name: "Teramacro",
  28030. height: math.unit(50000, "miles")
  28031. },
  28032. ]
  28033. ))
  28034. characterMakers.push(() => makeCharacter(
  28035. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28036. {
  28037. front: {
  28038. height: math.unit(10, "feet"),
  28039. weight: math.unit(2, "tons"),
  28040. name: "Front",
  28041. image: {
  28042. source: "./media/characters/rekhit/front.svg",
  28043. extra: 2796 / 2590,
  28044. bottom: 225 / 3022
  28045. }
  28046. },
  28047. },
  28048. [
  28049. {
  28050. name: "Normal",
  28051. height: math.unit(10, "feet"),
  28052. default: true
  28053. },
  28054. {
  28055. name: "Macro",
  28056. height: math.unit(500, "feet")
  28057. },
  28058. ]
  28059. ))
  28060. characterMakers.push(() => makeCharacter(
  28061. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28062. {
  28063. front: {
  28064. height: math.unit(7 + 6.451 / 12, "feet"),
  28065. weight: math.unit(310, "lb"),
  28066. name: "Front",
  28067. image: {
  28068. source: "./media/characters/dahlia-verrick/front.svg",
  28069. extra: 1488 / 1365,
  28070. bottom: 6.2 / 1495
  28071. }
  28072. },
  28073. back: {
  28074. height: math.unit(7 + 6.451 / 12, "feet"),
  28075. weight: math.unit(310, "lb"),
  28076. name: "Back",
  28077. image: {
  28078. source: "./media/characters/dahlia-verrick/back.svg",
  28079. extra: 1472 / 1351,
  28080. bottom: 5.28 / 1477
  28081. }
  28082. },
  28083. frontBusiness: {
  28084. height: math.unit(7 + 6.451 / 12, "feet"),
  28085. weight: math.unit(200, "lb"),
  28086. name: "Front (Business)",
  28087. image: {
  28088. source: "./media/characters/dahlia-verrick/front-business.svg",
  28089. extra: 1478 / 1381,
  28090. bottom: 5.5 / 1484
  28091. }
  28092. },
  28093. frontCasual: {
  28094. height: math.unit(7 + 6.451 / 12, "feet"),
  28095. weight: math.unit(200, "lb"),
  28096. name: "Front (Casual)",
  28097. image: {
  28098. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28099. extra: 1478 / 1381,
  28100. bottom: 5.5 / 1484
  28101. }
  28102. },
  28103. },
  28104. [
  28105. {
  28106. name: "Travel-Sized",
  28107. height: math.unit(7.45, "inches")
  28108. },
  28109. {
  28110. name: "Normal",
  28111. height: math.unit(7 + 6.451 / 12, "feet"),
  28112. default: true
  28113. },
  28114. {
  28115. name: "Hitting the Town",
  28116. height: math.unit(37 + 8 / 12, "feet")
  28117. },
  28118. {
  28119. name: "Stomp in the Suburbs",
  28120. height: math.unit(964 + 9.728 / 12, "feet")
  28121. },
  28122. {
  28123. name: "Sit on the City",
  28124. height: math.unit(61747 + 10.592 / 12, "feet")
  28125. },
  28126. {
  28127. name: "Glomp the Globe",
  28128. height: math.unit(252919327 + 4.832 / 12, "feet")
  28129. },
  28130. ]
  28131. ))
  28132. characterMakers.push(() => makeCharacter(
  28133. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28134. {
  28135. front: {
  28136. height: math.unit(6 + 4 / 12, "feet"),
  28137. weight: math.unit(320, "lb"),
  28138. name: "Front",
  28139. image: {
  28140. source: "./media/characters/balina-mahigan/front.svg",
  28141. extra: 447 / 428,
  28142. bottom: 18 / 466
  28143. }
  28144. },
  28145. back: {
  28146. height: math.unit(6 + 4 / 12, "feet"),
  28147. weight: math.unit(320, "lb"),
  28148. name: "Back",
  28149. image: {
  28150. source: "./media/characters/balina-mahigan/back.svg",
  28151. extra: 445 / 428,
  28152. bottom: 4.07 / 448
  28153. }
  28154. },
  28155. arm: {
  28156. height: math.unit(1.88, "feet"),
  28157. name: "Arm",
  28158. image: {
  28159. source: "./media/characters/balina-mahigan/arm.svg"
  28160. }
  28161. },
  28162. backPort: {
  28163. height: math.unit(0.685, "feet"),
  28164. name: "Back Port",
  28165. image: {
  28166. source: "./media/characters/balina-mahigan/back-port.svg"
  28167. }
  28168. },
  28169. hoofpaw: {
  28170. height: math.unit(1.41, "feet"),
  28171. name: "Hoofpaw",
  28172. image: {
  28173. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28174. }
  28175. },
  28176. leftHandBack: {
  28177. height: math.unit(0.938, "feet"),
  28178. name: "Left Hand (Back)",
  28179. image: {
  28180. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28181. }
  28182. },
  28183. leftHandFront: {
  28184. height: math.unit(0.938, "feet"),
  28185. name: "Left Hand (Front)",
  28186. image: {
  28187. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28188. }
  28189. },
  28190. rightHandBack: {
  28191. height: math.unit(0.95, "feet"),
  28192. name: "Right Hand (Back)",
  28193. image: {
  28194. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28195. }
  28196. },
  28197. rightHandFront: {
  28198. height: math.unit(0.95, "feet"),
  28199. name: "Right Hand (Front)",
  28200. image: {
  28201. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28202. }
  28203. },
  28204. },
  28205. [
  28206. {
  28207. name: "Normal",
  28208. height: math.unit(6 + 4 / 12, "feet"),
  28209. default: true
  28210. },
  28211. ]
  28212. ))
  28213. characterMakers.push(() => makeCharacter(
  28214. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28215. {
  28216. front: {
  28217. height: math.unit(6, "feet"),
  28218. weight: math.unit(320, "lb"),
  28219. name: "Front",
  28220. image: {
  28221. source: "./media/characters/balina-mejeri/front.svg",
  28222. extra: 517 / 488,
  28223. bottom: 44.2 / 561
  28224. }
  28225. },
  28226. },
  28227. [
  28228. {
  28229. name: "Normal",
  28230. height: math.unit(6 + 4 / 12, "feet")
  28231. },
  28232. {
  28233. name: "Business",
  28234. height: math.unit(155, "feet"),
  28235. default: true
  28236. },
  28237. ]
  28238. ))
  28239. characterMakers.push(() => makeCharacter(
  28240. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28241. {
  28242. kneeling: {
  28243. height: math.unit(6 + 4 / 12, "feet"),
  28244. weight: math.unit(300 * 20, "lb"),
  28245. name: "Kneeling",
  28246. image: {
  28247. source: "./media/characters/balbarian/kneeling.svg",
  28248. extra: 922 / 862,
  28249. bottom: 42.4 / 965
  28250. }
  28251. },
  28252. },
  28253. [
  28254. {
  28255. name: "Normal",
  28256. height: math.unit(6 + 4 / 12, "feet")
  28257. },
  28258. {
  28259. name: "Treasured",
  28260. height: math.unit(18 + 9 / 12, "feet"),
  28261. default: true
  28262. },
  28263. {
  28264. name: "Macro",
  28265. height: math.unit(900, "feet")
  28266. },
  28267. ]
  28268. ))
  28269. characterMakers.push(() => makeCharacter(
  28270. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28271. {
  28272. front: {
  28273. height: math.unit(6 + 4 / 12, "feet"),
  28274. weight: math.unit(325, "lb"),
  28275. name: "Front",
  28276. image: {
  28277. source: "./media/characters/balina-amarini/front.svg",
  28278. extra: 415 / 403,
  28279. bottom: 19 / 433.4
  28280. }
  28281. },
  28282. back: {
  28283. height: math.unit(6 + 4 / 12, "feet"),
  28284. weight: math.unit(325, "lb"),
  28285. name: "Back",
  28286. image: {
  28287. source: "./media/characters/balina-amarini/back.svg",
  28288. extra: 415 / 403,
  28289. bottom: 13.5 / 432
  28290. }
  28291. },
  28292. overdrive: {
  28293. height: math.unit(6 + 4 / 12, "feet"),
  28294. weight: math.unit(400, "lb"),
  28295. name: "Overdrive",
  28296. image: {
  28297. source: "./media/characters/balina-amarini/overdrive.svg",
  28298. extra: 269 / 259,
  28299. bottom: 12 / 282
  28300. }
  28301. },
  28302. },
  28303. [
  28304. {
  28305. name: "Boom",
  28306. height: math.unit(9 + 10 / 12, "feet"),
  28307. default: true
  28308. },
  28309. {
  28310. name: "Macro",
  28311. height: math.unit(280, "feet")
  28312. },
  28313. ]
  28314. ))
  28315. characterMakers.push(() => makeCharacter(
  28316. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28317. {
  28318. goddess: {
  28319. height: math.unit(600, "feet"),
  28320. weight: math.unit(2000000, "tons"),
  28321. name: "Goddess",
  28322. image: {
  28323. source: "./media/characters/lady-kubwa/goddess.svg",
  28324. extra: 1240.5 / 1223,
  28325. bottom: 22 / 1263
  28326. }
  28327. },
  28328. goddesser: {
  28329. height: math.unit(900, "feet"),
  28330. weight: math.unit(20000000, "lb"),
  28331. name: "Goddess-er",
  28332. image: {
  28333. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28334. extra: 899 / 888,
  28335. bottom: 12.6 / 912
  28336. }
  28337. },
  28338. },
  28339. [
  28340. {
  28341. name: "Macro",
  28342. height: math.unit(600, "feet"),
  28343. default: true
  28344. },
  28345. {
  28346. name: "Megamacro",
  28347. height: math.unit(250, "miles")
  28348. },
  28349. ]
  28350. ))
  28351. characterMakers.push(() => makeCharacter(
  28352. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28353. {
  28354. front: {
  28355. height: math.unit(7 + 7 / 12, "feet"),
  28356. weight: math.unit(250, "lb"),
  28357. name: "Front",
  28358. image: {
  28359. source: "./media/characters/tala-grovehorn/front.svg",
  28360. extra: 2636 / 2525,
  28361. bottom: 147 / 2781
  28362. }
  28363. },
  28364. back: {
  28365. height: math.unit(7 + 7 / 12, "feet"),
  28366. weight: math.unit(250, "lb"),
  28367. name: "Back",
  28368. image: {
  28369. source: "./media/characters/tala-grovehorn/back.svg",
  28370. extra: 2635 / 2539,
  28371. bottom: 100 / 2732.8
  28372. }
  28373. },
  28374. mouth: {
  28375. height: math.unit(1.15, "feet"),
  28376. name: "Mouth",
  28377. image: {
  28378. source: "./media/characters/tala-grovehorn/mouth.svg"
  28379. }
  28380. },
  28381. dick: {
  28382. height: math.unit(2.36, "feet"),
  28383. name: "Dick",
  28384. image: {
  28385. source: "./media/characters/tala-grovehorn/dick.svg"
  28386. }
  28387. },
  28388. slit: {
  28389. height: math.unit(0.61, "feet"),
  28390. name: "Slit",
  28391. image: {
  28392. source: "./media/characters/tala-grovehorn/slit.svg"
  28393. }
  28394. },
  28395. },
  28396. [
  28397. ]
  28398. ))
  28399. characterMakers.push(() => makeCharacter(
  28400. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28401. {
  28402. front: {
  28403. height: math.unit(7 + 7 / 12, "feet"),
  28404. weight: math.unit(225, "lb"),
  28405. name: "Front",
  28406. image: {
  28407. source: "./media/characters/epona/front.svg",
  28408. extra: 2445 / 2290,
  28409. bottom: 251 / 2696
  28410. }
  28411. },
  28412. back: {
  28413. height: math.unit(7 + 7 / 12, "feet"),
  28414. weight: math.unit(225, "lb"),
  28415. name: "Back",
  28416. image: {
  28417. source: "./media/characters/epona/back.svg",
  28418. extra: 2546 / 2408,
  28419. bottom: 44 / 2589
  28420. }
  28421. },
  28422. genitals: {
  28423. height: math.unit(1.5, "feet"),
  28424. name: "Genitals",
  28425. image: {
  28426. source: "./media/characters/epona/genitals.svg"
  28427. }
  28428. },
  28429. },
  28430. [
  28431. {
  28432. name: "Normal",
  28433. height: math.unit(7 + 7 / 12, "feet"),
  28434. default: true
  28435. },
  28436. ]
  28437. ))
  28438. characterMakers.push(() => makeCharacter(
  28439. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28440. {
  28441. front: {
  28442. height: math.unit(7, "feet"),
  28443. weight: math.unit(518, "lb"),
  28444. name: "Front",
  28445. image: {
  28446. source: "./media/characters/avia-bloodbourn/front.svg",
  28447. extra: 1466 / 1350,
  28448. bottom: 65 / 1527
  28449. }
  28450. },
  28451. },
  28452. [
  28453. ]
  28454. ))
  28455. characterMakers.push(() => makeCharacter(
  28456. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28457. {
  28458. front: {
  28459. height: math.unit(9.35, "feet"),
  28460. weight: math.unit(600, "lb"),
  28461. name: "Front",
  28462. image: {
  28463. source: "./media/characters/amera/front.svg",
  28464. extra: 891 / 818,
  28465. bottom: 30 / 922.7
  28466. }
  28467. },
  28468. back: {
  28469. height: math.unit(9.35, "feet"),
  28470. weight: math.unit(600, "lb"),
  28471. name: "Back",
  28472. image: {
  28473. source: "./media/characters/amera/back.svg",
  28474. extra: 876 / 824,
  28475. bottom: 6.8 / 884
  28476. }
  28477. },
  28478. dick: {
  28479. height: math.unit(2.14, "feet"),
  28480. name: "Dick",
  28481. image: {
  28482. source: "./media/characters/amera/dick.svg"
  28483. }
  28484. },
  28485. },
  28486. [
  28487. {
  28488. name: "Normal",
  28489. height: math.unit(9.35, "feet"),
  28490. default: true
  28491. },
  28492. ]
  28493. ))
  28494. characterMakers.push(() => makeCharacter(
  28495. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28496. {
  28497. kneeling: {
  28498. height: math.unit(3 + 4 / 12, "feet"),
  28499. weight: math.unit(90, "lb"),
  28500. name: "Kneeling",
  28501. image: {
  28502. source: "./media/characters/rosewen/kneeling.svg",
  28503. extra: 1835 / 1571,
  28504. bottom: 27.7 / 1862
  28505. }
  28506. },
  28507. },
  28508. [
  28509. {
  28510. name: "Normal",
  28511. height: math.unit(3 + 4 / 12, "feet"),
  28512. default: true
  28513. },
  28514. ]
  28515. ))
  28516. characterMakers.push(() => makeCharacter(
  28517. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28518. {
  28519. front: {
  28520. height: math.unit(5 + 10 / 12, "feet"),
  28521. weight: math.unit(200, "lb"),
  28522. name: "Front",
  28523. image: {
  28524. source: "./media/characters/sabah/front.svg",
  28525. extra: 849 / 763,
  28526. bottom: 33.9 / 881
  28527. }
  28528. },
  28529. },
  28530. [
  28531. {
  28532. name: "Normal",
  28533. height: math.unit(5 + 10 / 12, "feet"),
  28534. default: true
  28535. },
  28536. ]
  28537. ))
  28538. characterMakers.push(() => makeCharacter(
  28539. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28540. {
  28541. front: {
  28542. height: math.unit(3 + 5 / 12, "feet"),
  28543. weight: math.unit(40, "kg"),
  28544. name: "Front",
  28545. image: {
  28546. source: "./media/characters/purple-flame/front.svg",
  28547. extra: 1577 / 1412,
  28548. bottom: 97 / 1694
  28549. }
  28550. },
  28551. frontDressed: {
  28552. height: math.unit(3 + 5 / 12, "feet"),
  28553. weight: math.unit(40, "kg"),
  28554. name: "Front (Dressed)",
  28555. image: {
  28556. source: "./media/characters/purple-flame/front-dressed.svg",
  28557. extra: 1577 / 1412,
  28558. bottom: 97 / 1694
  28559. }
  28560. },
  28561. headphones: {
  28562. height: math.unit(0.85, "feet"),
  28563. name: "Headphones",
  28564. image: {
  28565. source: "./media/characters/purple-flame/headphones.svg"
  28566. }
  28567. },
  28568. },
  28569. [
  28570. {
  28571. name: "Really Small",
  28572. height: math.unit(5, "cm")
  28573. },
  28574. {
  28575. name: "Micro",
  28576. height: math.unit(1 + 5 / 12, "feet")
  28577. },
  28578. {
  28579. name: "Normal",
  28580. height: math.unit(3 + 5 / 12, "feet"),
  28581. default: true
  28582. },
  28583. {
  28584. name: "Minimacro",
  28585. height: math.unit(125, "feet")
  28586. },
  28587. {
  28588. name: "Macro",
  28589. height: math.unit(0.5, "miles")
  28590. },
  28591. {
  28592. name: "Megamacro",
  28593. height: math.unit(50, "miles")
  28594. },
  28595. {
  28596. name: "Gigantic",
  28597. height: math.unit(750, "miles")
  28598. },
  28599. {
  28600. name: "Planetary",
  28601. height: math.unit(15000, "miles")
  28602. },
  28603. ]
  28604. ))
  28605. characterMakers.push(() => makeCharacter(
  28606. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28607. {
  28608. front: {
  28609. height: math.unit(14, "feet"),
  28610. weight: math.unit(959, "lb"),
  28611. name: "Front",
  28612. image: {
  28613. source: "./media/characters/arsenal/front.svg",
  28614. extra: 2357 / 2157,
  28615. bottom: 93 / 2458
  28616. }
  28617. },
  28618. },
  28619. [
  28620. {
  28621. name: "Normal",
  28622. height: math.unit(14, "feet"),
  28623. default: true
  28624. },
  28625. ]
  28626. ))
  28627. characterMakers.push(() => makeCharacter(
  28628. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28629. {
  28630. front: {
  28631. height: math.unit(6, "feet"),
  28632. weight: math.unit(150, "lb"),
  28633. name: "Front",
  28634. image: {
  28635. source: "./media/characters/adira/front.svg",
  28636. extra: 1078 / 1029,
  28637. bottom: 87 / 1166
  28638. }
  28639. },
  28640. },
  28641. [
  28642. {
  28643. name: "Micro",
  28644. height: math.unit(4, "inches"),
  28645. default: true
  28646. },
  28647. {
  28648. name: "Macro",
  28649. height: math.unit(50, "feet")
  28650. },
  28651. ]
  28652. ))
  28653. characterMakers.push(() => makeCharacter(
  28654. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28655. {
  28656. front: {
  28657. height: math.unit(16, "feet"),
  28658. weight: math.unit(1000, "lb"),
  28659. name: "Front",
  28660. image: {
  28661. source: "./media/characters/grim/front.svg",
  28662. extra: 622 / 614,
  28663. bottom: 18.1 / 642
  28664. }
  28665. },
  28666. back: {
  28667. height: math.unit(16, "feet"),
  28668. weight: math.unit(1000, "lb"),
  28669. name: "Back",
  28670. image: {
  28671. source: "./media/characters/grim/back.svg",
  28672. extra: 610.6 / 602,
  28673. bottom: 40.8 / 652
  28674. }
  28675. },
  28676. hunched: {
  28677. height: math.unit(9.75, "feet"),
  28678. weight: math.unit(1000, "lb"),
  28679. name: "Hunched",
  28680. image: {
  28681. source: "./media/characters/grim/hunched.svg",
  28682. extra: 304 / 297,
  28683. bottom: 35.4 / 394
  28684. }
  28685. },
  28686. },
  28687. [
  28688. {
  28689. name: "Normal",
  28690. height: math.unit(16, "feet"),
  28691. default: true
  28692. },
  28693. ]
  28694. ))
  28695. characterMakers.push(() => makeCharacter(
  28696. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28697. {
  28698. front: {
  28699. height: math.unit(2.3, "meters"),
  28700. weight: math.unit(300, "lb"),
  28701. name: "Front",
  28702. image: {
  28703. source: "./media/characters/sinja/front-sfw.svg",
  28704. extra: 1393 / 1294,
  28705. bottom: 70 / 1463
  28706. }
  28707. },
  28708. frontNsfw: {
  28709. height: math.unit(2.3, "meters"),
  28710. weight: math.unit(300, "lb"),
  28711. name: "Front (NSFW)",
  28712. image: {
  28713. source: "./media/characters/sinja/front-nsfw.svg",
  28714. extra: 1393 / 1294,
  28715. bottom: 70 / 1463
  28716. }
  28717. },
  28718. back: {
  28719. height: math.unit(2.3, "meters"),
  28720. weight: math.unit(300, "lb"),
  28721. name: "Back",
  28722. image: {
  28723. source: "./media/characters/sinja/back.svg",
  28724. extra: 1393 / 1294,
  28725. bottom: 70 / 1463
  28726. }
  28727. },
  28728. head: {
  28729. height: math.unit(1.771, "feet"),
  28730. name: "Head",
  28731. image: {
  28732. source: "./media/characters/sinja/head.svg"
  28733. }
  28734. },
  28735. slit: {
  28736. height: math.unit(0.8, "feet"),
  28737. name: "Slit",
  28738. image: {
  28739. source: "./media/characters/sinja/slit.svg"
  28740. }
  28741. },
  28742. },
  28743. [
  28744. {
  28745. name: "Normal",
  28746. height: math.unit(2.3, "meters")
  28747. },
  28748. {
  28749. name: "Macro",
  28750. height: math.unit(91, "meters"),
  28751. default: true
  28752. },
  28753. {
  28754. name: "Megamacro",
  28755. height: math.unit(91440, "meters")
  28756. },
  28757. {
  28758. name: "Gigamacro",
  28759. height: math.unit(60960000, "meters")
  28760. },
  28761. {
  28762. name: "Teramacro",
  28763. height: math.unit(9144000000, "meters")
  28764. },
  28765. ]
  28766. ))
  28767. characterMakers.push(() => makeCharacter(
  28768. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28769. {
  28770. front: {
  28771. height: math.unit(1.7, "meters"),
  28772. weight: math.unit(130, "lb"),
  28773. name: "Front",
  28774. image: {
  28775. source: "./media/characters/kyu/front.svg",
  28776. extra: 415 / 395,
  28777. bottom: 5 / 420
  28778. }
  28779. },
  28780. head: {
  28781. height: math.unit(1.75, "feet"),
  28782. name: "Head",
  28783. image: {
  28784. source: "./media/characters/kyu/head.svg"
  28785. }
  28786. },
  28787. foot: {
  28788. height: math.unit(0.81, "feet"),
  28789. name: "Foot",
  28790. image: {
  28791. source: "./media/characters/kyu/foot.svg"
  28792. }
  28793. },
  28794. },
  28795. [
  28796. {
  28797. name: "Normal",
  28798. height: math.unit(1.7, "meters")
  28799. },
  28800. {
  28801. name: "Macro",
  28802. height: math.unit(131, "feet"),
  28803. default: true
  28804. },
  28805. {
  28806. name: "Megamacro",
  28807. height: math.unit(91440, "meters")
  28808. },
  28809. {
  28810. name: "Gigamacro",
  28811. height: math.unit(60960000, "meters")
  28812. },
  28813. {
  28814. name: "Teramacro",
  28815. height: math.unit(9144000000, "meters")
  28816. },
  28817. ]
  28818. ))
  28819. characterMakers.push(() => makeCharacter(
  28820. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28821. {
  28822. front: {
  28823. height: math.unit(7 + 1 / 12, "feet"),
  28824. weight: math.unit(250, "lb"),
  28825. name: "Front",
  28826. image: {
  28827. source: "./media/characters/joey/front.svg",
  28828. extra: 1791 / 1537,
  28829. bottom: 28 / 1816
  28830. }
  28831. },
  28832. },
  28833. [
  28834. {
  28835. name: "Micro",
  28836. height: math.unit(3, "inches")
  28837. },
  28838. {
  28839. name: "Normal",
  28840. height: math.unit(7 + 1 / 12, "feet"),
  28841. default: true
  28842. },
  28843. ]
  28844. ))
  28845. characterMakers.push(() => makeCharacter(
  28846. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28847. {
  28848. front: {
  28849. height: math.unit(165, "cm"),
  28850. weight: math.unit(140, "lb"),
  28851. name: "Front",
  28852. image: {
  28853. source: "./media/characters/sam-evans/front.svg",
  28854. extra: 3417 / 3230,
  28855. bottom: 41.3 / 3417
  28856. }
  28857. },
  28858. frontSixTails: {
  28859. height: math.unit(165, "cm"),
  28860. weight: math.unit(140, "lb"),
  28861. name: "Front-six-tails",
  28862. image: {
  28863. source: "./media/characters/sam-evans/front-six-tails.svg",
  28864. extra: 3417 / 3230,
  28865. bottom: 41.3 / 3417
  28866. }
  28867. },
  28868. back: {
  28869. height: math.unit(165, "cm"),
  28870. weight: math.unit(140, "lb"),
  28871. name: "Back",
  28872. image: {
  28873. source: "./media/characters/sam-evans/back.svg",
  28874. extra: 3227 / 3032,
  28875. bottom: 6.8 / 3234
  28876. }
  28877. },
  28878. face: {
  28879. height: math.unit(0.68, "feet"),
  28880. name: "Face",
  28881. image: {
  28882. source: "./media/characters/sam-evans/face.svg"
  28883. }
  28884. },
  28885. },
  28886. [
  28887. {
  28888. name: "Normal",
  28889. height: math.unit(165, "cm"),
  28890. default: true
  28891. },
  28892. {
  28893. name: "Macro",
  28894. height: math.unit(100, "meters")
  28895. },
  28896. {
  28897. name: "Macro+",
  28898. height: math.unit(800, "meters")
  28899. },
  28900. {
  28901. name: "Macro++",
  28902. height: math.unit(3, "km")
  28903. },
  28904. {
  28905. name: "Macro+++",
  28906. height: math.unit(30, "km")
  28907. },
  28908. ]
  28909. ))
  28910. characterMakers.push(() => makeCharacter(
  28911. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28912. {
  28913. front: {
  28914. height: math.unit(10, "feet"),
  28915. weight: math.unit(750, "lb"),
  28916. name: "Front",
  28917. image: {
  28918. source: "./media/characters/juliet-a/front.svg",
  28919. extra: 1766 / 1720,
  28920. bottom: 43 / 1809
  28921. }
  28922. },
  28923. back: {
  28924. height: math.unit(10, "feet"),
  28925. weight: math.unit(750, "lb"),
  28926. name: "Back",
  28927. image: {
  28928. source: "./media/characters/juliet-a/back.svg",
  28929. extra: 1781 / 1734,
  28930. bottom: 35 / 1810,
  28931. }
  28932. },
  28933. },
  28934. [
  28935. {
  28936. name: "Normal",
  28937. height: math.unit(10, "feet"),
  28938. default: true
  28939. },
  28940. {
  28941. name: "Dragon Form",
  28942. height: math.unit(250, "feet")
  28943. },
  28944. {
  28945. name: "Macro",
  28946. height: math.unit(1000, "feet")
  28947. },
  28948. {
  28949. name: "Megamacro",
  28950. height: math.unit(10000, "feet")
  28951. }
  28952. ]
  28953. ))
  28954. characterMakers.push(() => makeCharacter(
  28955. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28956. {
  28957. regular: {
  28958. height: math.unit(7 + 3 / 12, "feet"),
  28959. weight: math.unit(260, "lb"),
  28960. name: "Regular",
  28961. image: {
  28962. source: "./media/characters/wild/regular.svg",
  28963. extra: 97.45 / 92,
  28964. bottom: 6.8 / 104.3
  28965. }
  28966. },
  28967. biggums: {
  28968. height: math.unit(8 + 6 / 12, "feet"),
  28969. weight: math.unit(425, "lb"),
  28970. name: "Biggums",
  28971. image: {
  28972. source: "./media/characters/wild/biggums.svg",
  28973. extra: 97.45 / 92,
  28974. bottom: 7.5 / 132.34
  28975. }
  28976. },
  28977. mawRegular: {
  28978. height: math.unit(1.24, "feet"),
  28979. name: "Maw (Regular)",
  28980. image: {
  28981. source: "./media/characters/wild/maw.svg"
  28982. }
  28983. },
  28984. mawBiggums: {
  28985. height: math.unit(1.47, "feet"),
  28986. name: "Maw (Biggums)",
  28987. image: {
  28988. source: "./media/characters/wild/maw.svg"
  28989. }
  28990. },
  28991. },
  28992. [
  28993. {
  28994. name: "Normal",
  28995. height: math.unit(7 + 3 / 12, "feet"),
  28996. default: true
  28997. },
  28998. ]
  28999. ))
  29000. characterMakers.push(() => makeCharacter(
  29001. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29002. {
  29003. front: {
  29004. height: math.unit(2.5, "meters"),
  29005. weight: math.unit(200, "kg"),
  29006. name: "Front",
  29007. image: {
  29008. source: "./media/characters/vidar/front.svg",
  29009. extra: 2994 / 2795,
  29010. bottom: 56 / 3061
  29011. }
  29012. },
  29013. back: {
  29014. height: math.unit(2.5, "meters"),
  29015. weight: math.unit(200, "kg"),
  29016. name: "Back",
  29017. image: {
  29018. source: "./media/characters/vidar/back.svg",
  29019. extra: 3131 / 2928,
  29020. bottom: 13.5 / 3141.5
  29021. }
  29022. },
  29023. feral: {
  29024. height: math.unit(2.5, "meters"),
  29025. weight: math.unit(2000, "kg"),
  29026. name: "Feral",
  29027. image: {
  29028. source: "./media/characters/vidar/feral.svg",
  29029. extra: 2790 / 1765,
  29030. bottom: 6 / 2796
  29031. }
  29032. },
  29033. },
  29034. [
  29035. {
  29036. name: "Normal",
  29037. height: math.unit(2.5, "meters"),
  29038. default: true
  29039. },
  29040. {
  29041. name: "Macro",
  29042. height: math.unit(100, "meters")
  29043. },
  29044. ]
  29045. ))
  29046. characterMakers.push(() => makeCharacter(
  29047. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29048. {
  29049. front: {
  29050. height: math.unit(5 + 9 / 12, "feet"),
  29051. weight: math.unit(120, "lb"),
  29052. name: "Front",
  29053. image: {
  29054. source: "./media/characters/ash/front.svg",
  29055. extra: 2189 / 1961,
  29056. bottom: 5.2 / 2194
  29057. }
  29058. },
  29059. },
  29060. [
  29061. {
  29062. name: "Normal",
  29063. height: math.unit(5 + 9 / 12, "feet"),
  29064. default: true
  29065. },
  29066. ]
  29067. ))
  29068. characterMakers.push(() => makeCharacter(
  29069. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29070. {
  29071. front: {
  29072. height: math.unit(9, "feet"),
  29073. weight: math.unit(10000, "lb"),
  29074. name: "Front",
  29075. image: {
  29076. source: "./media/characters/gygabite/front.svg",
  29077. bottom: 31.7 / 537.8,
  29078. extra: 505 / 370
  29079. }
  29080. },
  29081. },
  29082. [
  29083. {
  29084. name: "Normal",
  29085. height: math.unit(9, "feet"),
  29086. default: true
  29087. },
  29088. ]
  29089. ))
  29090. characterMakers.push(() => makeCharacter(
  29091. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29092. {
  29093. front: {
  29094. height: math.unit(12, "feet"),
  29095. weight: math.unit(4000, "lb"),
  29096. name: "Front",
  29097. image: {
  29098. source: "./media/characters/p0tat0/front.svg",
  29099. extra: 1065 / 921,
  29100. bottom: 55.7 / 1121.25
  29101. }
  29102. },
  29103. },
  29104. [
  29105. {
  29106. name: "Normal",
  29107. height: math.unit(12, "feet"),
  29108. default: true
  29109. },
  29110. ]
  29111. ))
  29112. characterMakers.push(() => makeCharacter(
  29113. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29114. {
  29115. side: {
  29116. height: math.unit(6.5, "feet"),
  29117. weight: math.unit(800, "lb"),
  29118. name: "Side",
  29119. image: {
  29120. source: "./media/characters/dusk/side.svg",
  29121. extra: 615 / 373,
  29122. bottom: 53 / 664
  29123. }
  29124. },
  29125. sitting: {
  29126. height: math.unit(7, "feet"),
  29127. weight: math.unit(800, "lb"),
  29128. name: "Sitting",
  29129. image: {
  29130. source: "./media/characters/dusk/sitting.svg",
  29131. extra: 753 / 425,
  29132. bottom: 33 / 774
  29133. }
  29134. },
  29135. head: {
  29136. height: math.unit(6.1, "feet"),
  29137. name: "Head",
  29138. image: {
  29139. source: "./media/characters/dusk/head.svg"
  29140. }
  29141. },
  29142. },
  29143. [
  29144. {
  29145. name: "Normal",
  29146. height: math.unit(7, "feet"),
  29147. default: true
  29148. },
  29149. ]
  29150. ))
  29151. characterMakers.push(() => makeCharacter(
  29152. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29153. {
  29154. front: {
  29155. height: math.unit(15, "feet"),
  29156. weight: math.unit(7000, "lb"),
  29157. name: "Front",
  29158. image: {
  29159. source: "./media/characters/jay-direwolf/front.svg",
  29160. extra: 1810 / 1732,
  29161. bottom: 66 / 1892
  29162. }
  29163. },
  29164. },
  29165. [
  29166. {
  29167. name: "Normal",
  29168. height: math.unit(15, "feet"),
  29169. default: true
  29170. },
  29171. ]
  29172. ))
  29173. characterMakers.push(() => makeCharacter(
  29174. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29175. {
  29176. front: {
  29177. height: math.unit(4 + 9 / 12, "feet"),
  29178. weight: math.unit(130, "lb"),
  29179. name: "Front",
  29180. image: {
  29181. source: "./media/characters/anchovie/front.svg",
  29182. extra: 382 / 350,
  29183. bottom: 25 / 409
  29184. }
  29185. },
  29186. back: {
  29187. height: math.unit(4 + 9 / 12, "feet"),
  29188. weight: math.unit(130, "lb"),
  29189. name: "Back",
  29190. image: {
  29191. source: "./media/characters/anchovie/back.svg",
  29192. extra: 385 / 352,
  29193. bottom: 16.6 / 402
  29194. }
  29195. },
  29196. frontDressed: {
  29197. height: math.unit(4 + 9 / 12, "feet"),
  29198. weight: math.unit(130, "lb"),
  29199. name: "Front (Dressed)",
  29200. image: {
  29201. source: "./media/characters/anchovie/front-dressed.svg",
  29202. extra: 382 / 350,
  29203. bottom: 25 / 409
  29204. }
  29205. },
  29206. backDressed: {
  29207. height: math.unit(4 + 9 / 12, "feet"),
  29208. weight: math.unit(130, "lb"),
  29209. name: "Back (Dressed)",
  29210. image: {
  29211. source: "./media/characters/anchovie/back-dressed.svg",
  29212. extra: 385 / 352,
  29213. bottom: 16.6 / 402
  29214. }
  29215. },
  29216. },
  29217. [
  29218. {
  29219. name: "Micro",
  29220. height: math.unit(6.4, "inches")
  29221. },
  29222. {
  29223. name: "Normal",
  29224. height: math.unit(4 + 9 / 12, "feet"),
  29225. default: true
  29226. },
  29227. ]
  29228. ))
  29229. characterMakers.push(() => makeCharacter(
  29230. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29231. {
  29232. front: {
  29233. height: math.unit(2, "meters"),
  29234. weight: math.unit(180, "lb"),
  29235. name: "Front",
  29236. image: {
  29237. source: "./media/characters/acidrenamon/front.svg",
  29238. extra: 987 / 890,
  29239. bottom: 22.8 / 1009
  29240. }
  29241. },
  29242. back: {
  29243. height: math.unit(2, "meters"),
  29244. weight: math.unit(180, "lb"),
  29245. name: "Back",
  29246. image: {
  29247. source: "./media/characters/acidrenamon/back.svg",
  29248. extra: 983 / 891,
  29249. bottom: 8.4 / 992
  29250. }
  29251. },
  29252. head: {
  29253. height: math.unit(1.92, "feet"),
  29254. name: "Head",
  29255. image: {
  29256. source: "./media/characters/acidrenamon/head.svg"
  29257. }
  29258. },
  29259. rump: {
  29260. height: math.unit(1.72, "feet"),
  29261. name: "Rump",
  29262. image: {
  29263. source: "./media/characters/acidrenamon/rump.svg"
  29264. }
  29265. },
  29266. tail: {
  29267. height: math.unit(4.2, "feet"),
  29268. name: "Tail",
  29269. image: {
  29270. source: "./media/characters/acidrenamon/tail.svg"
  29271. }
  29272. },
  29273. },
  29274. [
  29275. {
  29276. name: "Normal",
  29277. height: math.unit(2, "meters"),
  29278. default: true
  29279. },
  29280. {
  29281. name: "Minimacro",
  29282. height: math.unit(7, "meters")
  29283. },
  29284. {
  29285. name: "Macro",
  29286. height: math.unit(200, "meters")
  29287. },
  29288. {
  29289. name: "Gigamacro",
  29290. height: math.unit(0.2, "earths")
  29291. },
  29292. ]
  29293. ))
  29294. characterMakers.push(() => makeCharacter(
  29295. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29296. {
  29297. front: {
  29298. height: math.unit(152, "feet"),
  29299. name: "Front",
  29300. image: {
  29301. source: "./media/characters/kenzie-lee/front.svg",
  29302. extra: 1869/1774,
  29303. bottom: 128/1997
  29304. }
  29305. },
  29306. side: {
  29307. height: math.unit(86, "feet"),
  29308. name: "Side",
  29309. image: {
  29310. source: "./media/characters/kenzie-lee/side.svg",
  29311. extra: 930/815,
  29312. bottom: 177/1107
  29313. }
  29314. },
  29315. paw: {
  29316. height: math.unit(15, "feet"),
  29317. name: "Paw",
  29318. image: {
  29319. source: "./media/characters/kenzie-lee/paw.svg"
  29320. }
  29321. },
  29322. },
  29323. [
  29324. {
  29325. name: "Kenzie Flea",
  29326. height: math.unit(2, "mm"),
  29327. default: true
  29328. },
  29329. {
  29330. name: "Micro",
  29331. height: math.unit(2, "inches")
  29332. },
  29333. {
  29334. name: "Normal",
  29335. height: math.unit(152, "feet")
  29336. },
  29337. {
  29338. name: "Megamacro",
  29339. height: math.unit(7, "miles")
  29340. },
  29341. {
  29342. name: "Gigamacro",
  29343. height: math.unit(8000, "miles")
  29344. },
  29345. ]
  29346. ))
  29347. characterMakers.push(() => makeCharacter(
  29348. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29349. {
  29350. front: {
  29351. height: math.unit(6, "feet"),
  29352. name: "Front",
  29353. image: {
  29354. source: "./media/characters/withers/front.svg",
  29355. extra: 1935/1760,
  29356. bottom: 72/2007
  29357. }
  29358. },
  29359. back: {
  29360. height: math.unit(6, "feet"),
  29361. name: "Back",
  29362. image: {
  29363. source: "./media/characters/withers/back.svg",
  29364. extra: 1944/1792,
  29365. bottom: 12/1956
  29366. }
  29367. },
  29368. dressed: {
  29369. height: math.unit(6, "feet"),
  29370. name: "Dressed",
  29371. image: {
  29372. source: "./media/characters/withers/dressed.svg",
  29373. extra: 1937/1765,
  29374. bottom: 73/2010
  29375. }
  29376. },
  29377. phase1: {
  29378. height: math.unit(1.1, "feet"),
  29379. name: "Phase 1",
  29380. image: {
  29381. source: "./media/characters/withers/phase-1.svg",
  29382. extra: 1885/1232,
  29383. bottom: 0/1885
  29384. }
  29385. },
  29386. phase2: {
  29387. height: math.unit(1.05, "feet"),
  29388. name: "Phase 2",
  29389. image: {
  29390. source: "./media/characters/withers/phase-2.svg",
  29391. extra: 1792/1090,
  29392. bottom: 0/1792
  29393. }
  29394. },
  29395. partyWipe: {
  29396. height: math.unit(1.1, "feet"),
  29397. name: "Party Wipe",
  29398. image: {
  29399. source: "./media/characters/withers/party-wipe.svg",
  29400. extra: 1864/1207,
  29401. bottom: 0/1864
  29402. }
  29403. },
  29404. },
  29405. [
  29406. {
  29407. name: "Macro",
  29408. height: math.unit(167, "feet"),
  29409. default: true
  29410. },
  29411. {
  29412. name: "Megamacro",
  29413. height: math.unit(15, "miles")
  29414. }
  29415. ]
  29416. ))
  29417. characterMakers.push(() => makeCharacter(
  29418. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29419. {
  29420. front: {
  29421. height: math.unit(6 + 7 / 12, "feet"),
  29422. weight: math.unit(250, "lb"),
  29423. name: "Front",
  29424. image: {
  29425. source: "./media/characters/nemoskii/front.svg",
  29426. extra: 2270 / 1734,
  29427. bottom: 86 / 2354
  29428. }
  29429. },
  29430. back: {
  29431. height: math.unit(6 + 7 / 12, "feet"),
  29432. weight: math.unit(250, "lb"),
  29433. name: "Back",
  29434. image: {
  29435. source: "./media/characters/nemoskii/back.svg",
  29436. extra: 1845 / 1788,
  29437. bottom: 10.5 / 1852
  29438. }
  29439. },
  29440. head: {
  29441. height: math.unit(1.31, "feet"),
  29442. name: "Head",
  29443. image: {
  29444. source: "./media/characters/nemoskii/head.svg"
  29445. }
  29446. },
  29447. },
  29448. [
  29449. {
  29450. name: "Micro",
  29451. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29452. },
  29453. {
  29454. name: "Normal",
  29455. height: math.unit(6 + 7 / 12, "feet"),
  29456. default: true
  29457. },
  29458. {
  29459. name: "Macro",
  29460. height: math.unit((6 + 7 / 12) * 150, "feet")
  29461. },
  29462. {
  29463. name: "Macro+",
  29464. height: math.unit((6 + 7 / 12) * 500, "feet")
  29465. },
  29466. {
  29467. name: "Megamacro",
  29468. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29469. },
  29470. ]
  29471. ))
  29472. characterMakers.push(() => makeCharacter(
  29473. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29474. {
  29475. front: {
  29476. height: math.unit(1, "mile"),
  29477. weight: math.unit(265261.9, "lb"),
  29478. name: "Front",
  29479. image: {
  29480. source: "./media/characters/shui/front.svg",
  29481. extra: 1633 / 1564,
  29482. bottom: 91.5 / 1726
  29483. }
  29484. },
  29485. },
  29486. [
  29487. {
  29488. name: "Macro",
  29489. height: math.unit(1, "mile"),
  29490. default: true
  29491. },
  29492. ]
  29493. ))
  29494. characterMakers.push(() => makeCharacter(
  29495. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29496. {
  29497. front: {
  29498. height: math.unit(12 + 6 / 12, "feet"),
  29499. weight: math.unit(1342, "lb"),
  29500. name: "Front",
  29501. image: {
  29502. source: "./media/characters/arokh-takakura/front.svg",
  29503. extra: 1089 / 1043,
  29504. bottom: 77.4 / 1176.7
  29505. }
  29506. },
  29507. back: {
  29508. height: math.unit(12 + 6 / 12, "feet"),
  29509. weight: math.unit(1342, "lb"),
  29510. name: "Back",
  29511. image: {
  29512. source: "./media/characters/arokh-takakura/back.svg",
  29513. extra: 1046 / 1019,
  29514. bottom: 102 / 1150
  29515. }
  29516. },
  29517. },
  29518. [
  29519. {
  29520. name: "Big",
  29521. height: math.unit(12 + 6 / 12, "feet"),
  29522. default: true
  29523. },
  29524. ]
  29525. ))
  29526. characterMakers.push(() => makeCharacter(
  29527. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29528. {
  29529. front: {
  29530. height: math.unit(5 + 6 / 12, "feet"),
  29531. weight: math.unit(150, "lb"),
  29532. name: "Front",
  29533. image: {
  29534. source: "./media/characters/theo/front.svg",
  29535. extra: 1184 / 1131,
  29536. bottom: 7.4 / 1191
  29537. }
  29538. },
  29539. },
  29540. [
  29541. {
  29542. name: "Micro",
  29543. height: math.unit(5, "inches")
  29544. },
  29545. {
  29546. name: "Normal",
  29547. height: math.unit(5 + 6 / 12, "feet"),
  29548. default: true
  29549. },
  29550. ]
  29551. ))
  29552. characterMakers.push(() => makeCharacter(
  29553. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29554. {
  29555. front: {
  29556. height: math.unit(5 + 9 / 12, "feet"),
  29557. weight: math.unit(130, "lb"),
  29558. name: "Front",
  29559. image: {
  29560. source: "./media/characters/cecelia-swift/front.svg",
  29561. extra: 502 / 484,
  29562. bottom: 23 / 523
  29563. }
  29564. },
  29565. back: {
  29566. height: math.unit(5 + 9 / 12, "feet"),
  29567. weight: math.unit(130, "lb"),
  29568. name: "Back",
  29569. image: {
  29570. source: "./media/characters/cecelia-swift/back.svg",
  29571. extra: 499 / 485,
  29572. bottom: 12 / 511
  29573. }
  29574. },
  29575. head: {
  29576. height: math.unit(0.90, "feet"),
  29577. name: "Head",
  29578. image: {
  29579. source: "./media/characters/cecelia-swift/head.svg"
  29580. }
  29581. },
  29582. rump: {
  29583. height: math.unit(1.75, "feet"),
  29584. name: "Rump",
  29585. image: {
  29586. source: "./media/characters/cecelia-swift/rump.svg"
  29587. }
  29588. },
  29589. },
  29590. [
  29591. {
  29592. name: "Normal",
  29593. height: math.unit(5 + 9 / 12, "feet"),
  29594. default: true
  29595. },
  29596. {
  29597. name: "Big",
  29598. height: math.unit(50, "feet")
  29599. },
  29600. {
  29601. name: "Macro",
  29602. height: math.unit(100, "feet")
  29603. },
  29604. {
  29605. name: "Macro+",
  29606. height: math.unit(500, "feet")
  29607. },
  29608. {
  29609. name: "Macro++",
  29610. height: math.unit(1000, "feet")
  29611. },
  29612. ]
  29613. ))
  29614. characterMakers.push(() => makeCharacter(
  29615. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29616. {
  29617. front: {
  29618. height: math.unit(6, "feet"),
  29619. weight: math.unit(150, "lb"),
  29620. name: "Front",
  29621. image: {
  29622. source: "./media/characters/kaunan/front.svg",
  29623. extra: 2890 / 2523,
  29624. bottom: 49 / 2939
  29625. }
  29626. },
  29627. },
  29628. [
  29629. {
  29630. name: "Macro",
  29631. height: math.unit(150, "feet"),
  29632. default: true
  29633. },
  29634. ]
  29635. ))
  29636. characterMakers.push(() => makeCharacter(
  29637. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29638. {
  29639. dressed: {
  29640. height: math.unit(175, "cm"),
  29641. weight: math.unit(60, "kg"),
  29642. name: "Dressed",
  29643. image: {
  29644. source: "./media/characters/fei/dressed.svg",
  29645. extra: 1402/1278,
  29646. bottom: 27/1429
  29647. }
  29648. },
  29649. nude: {
  29650. height: math.unit(175, "cm"),
  29651. weight: math.unit(60, "kg"),
  29652. name: "Nude",
  29653. image: {
  29654. source: "./media/characters/fei/nude.svg",
  29655. extra: 1402/1278,
  29656. bottom: 27/1429
  29657. }
  29658. },
  29659. heels: {
  29660. height: math.unit(0.466, "feet"),
  29661. name: "Heels",
  29662. image: {
  29663. source: "./media/characters/fei/heels.svg",
  29664. extra: 156/152,
  29665. bottom: 28/184
  29666. }
  29667. },
  29668. },
  29669. [
  29670. {
  29671. name: "Mortal",
  29672. height: math.unit(175, "cm")
  29673. },
  29674. {
  29675. name: "Normal",
  29676. height: math.unit(3500, "m")
  29677. },
  29678. {
  29679. name: "Stroll",
  29680. height: math.unit(18.4, "km"),
  29681. default: true
  29682. },
  29683. {
  29684. name: "Showoff",
  29685. height: math.unit(175, "km")
  29686. },
  29687. ]
  29688. ))
  29689. characterMakers.push(() => makeCharacter(
  29690. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29691. {
  29692. front: {
  29693. height: math.unit(7, "feet"),
  29694. weight: math.unit(1000, "kg"),
  29695. name: "Front",
  29696. image: {
  29697. source: "./media/characters/edrax/front.svg",
  29698. extra: 2838 / 2550,
  29699. bottom: 130 / 2968
  29700. }
  29701. },
  29702. },
  29703. [
  29704. {
  29705. name: "Small",
  29706. height: math.unit(7, "feet")
  29707. },
  29708. {
  29709. name: "Normal",
  29710. height: math.unit(1500, "meters")
  29711. },
  29712. {
  29713. name: "Mega",
  29714. height: math.unit(12000000, "km"),
  29715. default: true
  29716. },
  29717. {
  29718. name: "Megamacro",
  29719. height: math.unit(10600000, "lightyears")
  29720. },
  29721. {
  29722. name: "Hypermacro",
  29723. height: math.unit(256, "yottameters")
  29724. },
  29725. ]
  29726. ))
  29727. characterMakers.push(() => makeCharacter(
  29728. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29729. {
  29730. front: {
  29731. height: math.unit(10, "feet"),
  29732. weight: math.unit(750, "lb"),
  29733. name: "Front",
  29734. image: {
  29735. source: "./media/characters/clove/front.svg",
  29736. extra: 1918/1751,
  29737. bottom: 52/1970
  29738. }
  29739. },
  29740. back: {
  29741. height: math.unit(10, "feet"),
  29742. weight: math.unit(750, "lb"),
  29743. name: "Back",
  29744. image: {
  29745. source: "./media/characters/clove/back.svg",
  29746. extra: 1912/1747,
  29747. bottom: 50/1962
  29748. }
  29749. },
  29750. },
  29751. [
  29752. {
  29753. name: "Normal",
  29754. height: math.unit(10, "feet"),
  29755. default: true
  29756. },
  29757. ]
  29758. ))
  29759. characterMakers.push(() => makeCharacter(
  29760. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29761. {
  29762. front: {
  29763. height: math.unit(4, "feet"),
  29764. weight: math.unit(50, "lb"),
  29765. name: "Front",
  29766. image: {
  29767. source: "./media/characters/alex-rabbit/front.svg",
  29768. extra: 507 / 458,
  29769. bottom: 18.5 / 527
  29770. }
  29771. },
  29772. back: {
  29773. height: math.unit(4, "feet"),
  29774. weight: math.unit(50, "lb"),
  29775. name: "Back",
  29776. image: {
  29777. source: "./media/characters/alex-rabbit/back.svg",
  29778. extra: 502 / 460,
  29779. bottom: 18.9 / 521
  29780. }
  29781. },
  29782. },
  29783. [
  29784. {
  29785. name: "Normal",
  29786. height: math.unit(4, "feet"),
  29787. default: true
  29788. },
  29789. ]
  29790. ))
  29791. characterMakers.push(() => makeCharacter(
  29792. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29793. {
  29794. front: {
  29795. height: math.unit(1 + 3 / 12, "feet"),
  29796. weight: math.unit(80, "lb"),
  29797. name: "Front",
  29798. image: {
  29799. source: "./media/characters/zander-rose/front.svg",
  29800. extra: 916 / 797,
  29801. bottom: 17 / 933
  29802. }
  29803. },
  29804. back: {
  29805. height: math.unit(1 + 3 / 12, "feet"),
  29806. weight: math.unit(80, "lb"),
  29807. name: "Back",
  29808. image: {
  29809. source: "./media/characters/zander-rose/back.svg",
  29810. extra: 903 / 779,
  29811. bottom: 31 / 934
  29812. }
  29813. },
  29814. },
  29815. [
  29816. {
  29817. name: "Normal",
  29818. height: math.unit(1 + 3 / 12, "feet"),
  29819. default: true
  29820. },
  29821. ]
  29822. ))
  29823. characterMakers.push(() => makeCharacter(
  29824. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29825. {
  29826. anthro: {
  29827. height: math.unit(6, "feet"),
  29828. weight: math.unit(150, "lb"),
  29829. name: "Anthro",
  29830. image: {
  29831. source: "./media/characters/razz/anthro.svg",
  29832. extra: 1437 / 1343,
  29833. bottom: 48 / 1485
  29834. }
  29835. },
  29836. feral: {
  29837. height: math.unit(6, "feet"),
  29838. weight: math.unit(150, "lb"),
  29839. name: "Feral",
  29840. image: {
  29841. source: "./media/characters/razz/feral.svg",
  29842. extra: 2569 / 1385,
  29843. bottom: 95 / 2664
  29844. }
  29845. },
  29846. },
  29847. [
  29848. {
  29849. name: "Normal",
  29850. height: math.unit(6, "feet"),
  29851. default: true
  29852. },
  29853. ]
  29854. ))
  29855. characterMakers.push(() => makeCharacter(
  29856. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29857. {
  29858. front: {
  29859. height: math.unit(9 + 4 / 12, "feet"),
  29860. weight: math.unit(500, "lb"),
  29861. name: "Front",
  29862. image: {
  29863. source: "./media/characters/morrigan/front.svg",
  29864. extra: 2707 / 2579,
  29865. bottom: 156 / 2863
  29866. }
  29867. },
  29868. },
  29869. [
  29870. {
  29871. name: "Normal",
  29872. height: math.unit(9 + 4 / 12, "feet"),
  29873. default: true
  29874. },
  29875. ]
  29876. ))
  29877. characterMakers.push(() => makeCharacter(
  29878. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29879. {
  29880. front: {
  29881. height: math.unit(5, "stories"),
  29882. weight: math.unit(4000, "lb"),
  29883. name: "Front",
  29884. image: {
  29885. source: "./media/characters/jenene/front.svg",
  29886. extra: 1780 / 1710,
  29887. bottom: 57 / 1837
  29888. }
  29889. },
  29890. },
  29891. [
  29892. {
  29893. name: "Normal",
  29894. height: math.unit(5, "stories"),
  29895. default: true
  29896. },
  29897. ]
  29898. ))
  29899. characterMakers.push(() => makeCharacter(
  29900. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29901. {
  29902. taurSfw: {
  29903. height: math.unit(10, "meters"),
  29904. weight: math.unit(17500, "kg"),
  29905. name: "Taur",
  29906. image: {
  29907. source: "./media/characters/faey/taur-sfw.svg",
  29908. extra: 1200 / 968,
  29909. bottom: 41 / 1241
  29910. }
  29911. },
  29912. chestmaw: {
  29913. height: math.unit(2.01, "meters"),
  29914. name: "Chestmaw",
  29915. image: {
  29916. source: "./media/characters/faey/chestmaw.svg"
  29917. }
  29918. },
  29919. foot: {
  29920. height: math.unit(2.43, "meters"),
  29921. name: "Foot",
  29922. image: {
  29923. source: "./media/characters/faey/foot.svg"
  29924. }
  29925. },
  29926. jaws: {
  29927. height: math.unit(1.66, "meters"),
  29928. name: "Jaws",
  29929. image: {
  29930. source: "./media/characters/faey/jaws.svg"
  29931. }
  29932. },
  29933. tongues: {
  29934. height: math.unit(2.01, "meters"),
  29935. name: "Tongues",
  29936. image: {
  29937. source: "./media/characters/faey/tongues.svg"
  29938. }
  29939. },
  29940. },
  29941. [
  29942. {
  29943. name: "Small",
  29944. height: math.unit(10, "meters"),
  29945. default: true
  29946. },
  29947. {
  29948. name: "Big",
  29949. height: math.unit(500000, "km")
  29950. },
  29951. ]
  29952. ))
  29953. characterMakers.push(() => makeCharacter(
  29954. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29955. {
  29956. front: {
  29957. height: math.unit(7, "feet"),
  29958. weight: math.unit(275, "lb"),
  29959. name: "Front",
  29960. image: {
  29961. source: "./media/characters/roku/front.svg",
  29962. extra: 903 / 878,
  29963. bottom: 37 / 940
  29964. }
  29965. },
  29966. },
  29967. [
  29968. {
  29969. name: "Normal",
  29970. height: math.unit(7, "feet"),
  29971. default: true
  29972. },
  29973. {
  29974. name: "Macro",
  29975. height: math.unit(500, "feet")
  29976. },
  29977. {
  29978. name: "Megamacro",
  29979. height: math.unit(200, "miles")
  29980. },
  29981. ]
  29982. ))
  29983. characterMakers.push(() => makeCharacter(
  29984. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29985. {
  29986. front: {
  29987. height: math.unit(6 + 2 / 12, "feet"),
  29988. weight: math.unit(150, "lb"),
  29989. name: "Front",
  29990. image: {
  29991. source: "./media/characters/lira/front.svg",
  29992. extra: 1727 / 1605,
  29993. bottom: 26 / 1753
  29994. }
  29995. },
  29996. back: {
  29997. height: math.unit(6 + 2 / 12, "feet"),
  29998. weight: math.unit(150, "lb"),
  29999. name: "Back",
  30000. image: {
  30001. source: "./media/characters/lira/back.svg",
  30002. extra: 1713/1621,
  30003. bottom: 20/1733
  30004. }
  30005. },
  30006. hand: {
  30007. height: math.unit(0.75, "feet"),
  30008. name: "Hand",
  30009. image: {
  30010. source: "./media/characters/lira/hand.svg"
  30011. }
  30012. },
  30013. maw: {
  30014. height: math.unit(0.65, "feet"),
  30015. name: "Maw",
  30016. image: {
  30017. source: "./media/characters/lira/maw.svg"
  30018. }
  30019. },
  30020. pawDigi: {
  30021. height: math.unit(1.6, "feet"),
  30022. name: "Paw Digi",
  30023. image: {
  30024. source: "./media/characters/lira/paw-digi.svg"
  30025. }
  30026. },
  30027. pawPlanti: {
  30028. height: math.unit(1.4, "feet"),
  30029. name: "Paw Planti",
  30030. image: {
  30031. source: "./media/characters/lira/paw-planti.svg"
  30032. }
  30033. },
  30034. },
  30035. [
  30036. {
  30037. name: "Normal",
  30038. height: math.unit(6 + 2 / 12, "feet"),
  30039. default: true
  30040. },
  30041. {
  30042. name: "Macro",
  30043. height: math.unit(100, "feet")
  30044. },
  30045. {
  30046. name: "Macro²",
  30047. height: math.unit(1600, "feet")
  30048. },
  30049. {
  30050. name: "Planetary",
  30051. height: math.unit(20, "earths")
  30052. },
  30053. ]
  30054. ))
  30055. characterMakers.push(() => makeCharacter(
  30056. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30057. {
  30058. front: {
  30059. height: math.unit(6, "feet"),
  30060. weight: math.unit(150, "lb"),
  30061. name: "Front",
  30062. image: {
  30063. source: "./media/characters/hadjet/front.svg",
  30064. extra: 1480 / 1346,
  30065. bottom: 26 / 1506
  30066. }
  30067. },
  30068. frontNsfw: {
  30069. height: math.unit(6, "feet"),
  30070. weight: math.unit(150, "lb"),
  30071. name: "Front (NSFW)",
  30072. image: {
  30073. source: "./media/characters/hadjet/front-nsfw.svg",
  30074. extra: 1440 / 1358,
  30075. bottom: 52 / 1492
  30076. }
  30077. },
  30078. },
  30079. [
  30080. {
  30081. name: "Macro",
  30082. height: math.unit(10, "stories"),
  30083. default: true
  30084. },
  30085. {
  30086. name: "Megamacro",
  30087. height: math.unit(1.5, "miles")
  30088. },
  30089. {
  30090. name: "Megamacro+",
  30091. height: math.unit(5, "miles")
  30092. },
  30093. ]
  30094. ))
  30095. characterMakers.push(() => makeCharacter(
  30096. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30097. {
  30098. side: {
  30099. height: math.unit(106, "feet"),
  30100. weight: math.unit(500, "tonnes"),
  30101. name: "Side",
  30102. image: {
  30103. source: "./media/characters/kodran/side.svg",
  30104. extra: 553 / 480,
  30105. bottom: 33 / 586
  30106. }
  30107. },
  30108. front: {
  30109. height: math.unit(132, "feet"),
  30110. weight: math.unit(500, "tonnes"),
  30111. name: "Front",
  30112. image: {
  30113. source: "./media/characters/kodran/front.svg",
  30114. extra: 667 / 643,
  30115. bottom: 42 / 709
  30116. }
  30117. },
  30118. flying: {
  30119. height: math.unit(350, "feet"),
  30120. weight: math.unit(500, "tonnes"),
  30121. name: "Flying",
  30122. image: {
  30123. source: "./media/characters/kodran/flying.svg"
  30124. }
  30125. },
  30126. foot: {
  30127. height: math.unit(33, "feet"),
  30128. name: "Foot",
  30129. image: {
  30130. source: "./media/characters/kodran/foot.svg"
  30131. }
  30132. },
  30133. footFront: {
  30134. height: math.unit(19, "feet"),
  30135. name: "Foot (Front)",
  30136. image: {
  30137. source: "./media/characters/kodran/foot-front.svg",
  30138. extra: 261 / 261,
  30139. bottom: 91 / 352
  30140. }
  30141. },
  30142. headFront: {
  30143. height: math.unit(53, "feet"),
  30144. name: "Head (Front)",
  30145. image: {
  30146. source: "./media/characters/kodran/head-front.svg"
  30147. }
  30148. },
  30149. headSide: {
  30150. height: math.unit(65, "feet"),
  30151. name: "Head (Side)",
  30152. image: {
  30153. source: "./media/characters/kodran/head-side.svg"
  30154. }
  30155. },
  30156. throat: {
  30157. height: math.unit(79, "feet"),
  30158. name: "Throat",
  30159. image: {
  30160. source: "./media/characters/kodran/throat.svg"
  30161. }
  30162. },
  30163. },
  30164. [
  30165. {
  30166. name: "Large",
  30167. height: math.unit(106, "feet"),
  30168. default: true
  30169. },
  30170. ]
  30171. ))
  30172. characterMakers.push(() => makeCharacter(
  30173. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30174. {
  30175. side: {
  30176. height: math.unit(11, "feet"),
  30177. weight: math.unit(150, "lb"),
  30178. name: "Side",
  30179. image: {
  30180. source: "./media/characters/pyxaron/side.svg",
  30181. extra: 305 / 195,
  30182. bottom: 17 / 322
  30183. }
  30184. },
  30185. },
  30186. [
  30187. {
  30188. name: "Normal",
  30189. height: math.unit(11, "feet"),
  30190. default: true
  30191. },
  30192. ]
  30193. ))
  30194. characterMakers.push(() => makeCharacter(
  30195. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30196. {
  30197. front: {
  30198. height: math.unit(6, "feet"),
  30199. weight: math.unit(150, "lb"),
  30200. name: "Front",
  30201. image: {
  30202. source: "./media/characters/meep/front.svg",
  30203. extra: 88 / 80,
  30204. bottom: 6 / 94
  30205. }
  30206. },
  30207. },
  30208. [
  30209. {
  30210. name: "Fun Sized",
  30211. height: math.unit(2, "inches"),
  30212. default: true
  30213. },
  30214. {
  30215. name: "Friend Sized",
  30216. height: math.unit(8, "inches")
  30217. },
  30218. ]
  30219. ))
  30220. characterMakers.push(() => makeCharacter(
  30221. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30222. {
  30223. front: {
  30224. height: math.unit(15, "feet"),
  30225. weight: math.unit(2500, "lb"),
  30226. name: "Front",
  30227. image: {
  30228. source: "./media/characters/holly-rabbit/front.svg",
  30229. extra: 1433 / 1233,
  30230. bottom: 125 / 1558
  30231. }
  30232. },
  30233. dick: {
  30234. height: math.unit(4.6, "feet"),
  30235. name: "Dick",
  30236. image: {
  30237. source: "./media/characters/holly-rabbit/dick.svg"
  30238. }
  30239. },
  30240. },
  30241. [
  30242. {
  30243. name: "Normal",
  30244. height: math.unit(15, "feet"),
  30245. default: true
  30246. },
  30247. {
  30248. name: "Macro",
  30249. height: math.unit(250, "feet")
  30250. },
  30251. {
  30252. name: "Macro+",
  30253. height: math.unit(2500, "feet")
  30254. },
  30255. ]
  30256. ))
  30257. characterMakers.push(() => makeCharacter(
  30258. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30259. {
  30260. front: {
  30261. height: math.unit(3.02, "meters"),
  30262. weight: math.unit(500, "kg"),
  30263. name: "Front",
  30264. image: {
  30265. source: "./media/characters/drena/front.svg",
  30266. extra: 282 / 243,
  30267. bottom: 8 / 290
  30268. }
  30269. },
  30270. side: {
  30271. height: math.unit(3.02, "meters"),
  30272. weight: math.unit(500, "kg"),
  30273. name: "Side",
  30274. image: {
  30275. source: "./media/characters/drena/side.svg",
  30276. extra: 280 / 245,
  30277. bottom: 10 / 290
  30278. }
  30279. },
  30280. back: {
  30281. height: math.unit(3.02, "meters"),
  30282. weight: math.unit(500, "kg"),
  30283. name: "Back",
  30284. image: {
  30285. source: "./media/characters/drena/back.svg",
  30286. extra: 278 / 243,
  30287. bottom: 2 / 280
  30288. }
  30289. },
  30290. foot: {
  30291. height: math.unit(0.75, "meters"),
  30292. name: "Foot",
  30293. image: {
  30294. source: "./media/characters/drena/foot.svg"
  30295. }
  30296. },
  30297. maw: {
  30298. height: math.unit(0.82, "meters"),
  30299. name: "Maw",
  30300. image: {
  30301. source: "./media/characters/drena/maw.svg"
  30302. }
  30303. },
  30304. eating: {
  30305. height: math.unit(0.75, "meters"),
  30306. name: "Eating",
  30307. image: {
  30308. source: "./media/characters/drena/eating.svg"
  30309. }
  30310. },
  30311. rump: {
  30312. height: math.unit(0.93, "meters"),
  30313. name: "Rump",
  30314. image: {
  30315. source: "./media/characters/drena/rump.svg"
  30316. }
  30317. },
  30318. },
  30319. [
  30320. {
  30321. name: "Normal",
  30322. height: math.unit(3.02, "meters"),
  30323. default: true
  30324. },
  30325. ]
  30326. ))
  30327. characterMakers.push(() => makeCharacter(
  30328. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30329. {
  30330. front: {
  30331. height: math.unit(6 + 4 / 12, "feet"),
  30332. weight: math.unit(250, "lb"),
  30333. name: "Front",
  30334. image: {
  30335. source: "./media/characters/remmyzilla/front.svg",
  30336. extra: 4033 / 3588,
  30337. bottom: 123 / 4156
  30338. }
  30339. },
  30340. back: {
  30341. height: math.unit(6 + 4 / 12, "feet"),
  30342. weight: math.unit(250, "lb"),
  30343. name: "Back",
  30344. image: {
  30345. source: "./media/characters/remmyzilla/back.svg",
  30346. extra: 2687 / 2555,
  30347. bottom: 48 / 2735
  30348. }
  30349. },
  30350. paw: {
  30351. height: math.unit(1.73, "feet"),
  30352. name: "Paw",
  30353. image: {
  30354. source: "./media/characters/remmyzilla/paw.svg"
  30355. },
  30356. extraAttributes: {
  30357. "toeSize": {
  30358. name: "Toe Size",
  30359. power: 2,
  30360. type: "area",
  30361. base: math.unit(0.0035, "m^2")
  30362. },
  30363. "padSize": {
  30364. name: "Pad Size",
  30365. power: 2,
  30366. type: "area",
  30367. base: math.unit(0.015, "m^2")
  30368. },
  30369. "pawsize": {
  30370. name: "Paw Size",
  30371. power: 2,
  30372. type: "area",
  30373. base: math.unit(0.072, "m^2")
  30374. },
  30375. }
  30376. },
  30377. maw: {
  30378. height: math.unit(1.73, "feet"),
  30379. name: "Maw",
  30380. image: {
  30381. source: "./media/characters/remmyzilla/maw.svg"
  30382. }
  30383. },
  30384. },
  30385. [
  30386. {
  30387. name: "Normal",
  30388. height: math.unit(6 + 4 / 12, "feet")
  30389. },
  30390. {
  30391. name: "Minimacro",
  30392. height: math.unit(12 + 8 / 12, "feet")
  30393. },
  30394. {
  30395. name: "Normal",
  30396. height: math.unit(640, "feet"),
  30397. default: true
  30398. },
  30399. {
  30400. name: "Megamacro",
  30401. height: math.unit(6400, "feet")
  30402. },
  30403. {
  30404. name: "Gigamacro",
  30405. height: math.unit(64000, "miles")
  30406. },
  30407. ]
  30408. ))
  30409. characterMakers.push(() => makeCharacter(
  30410. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30411. {
  30412. front: {
  30413. height: math.unit(2.5, "meters"),
  30414. weight: math.unit(300, "lb"),
  30415. name: "Front",
  30416. image: {
  30417. source: "./media/characters/lawrence/front.svg",
  30418. extra: 357 / 335,
  30419. bottom: 30 / 387
  30420. }
  30421. },
  30422. back: {
  30423. height: math.unit(2.5, "meters"),
  30424. weight: math.unit(300, "lb"),
  30425. name: "Back",
  30426. image: {
  30427. source: "./media/characters/lawrence/back.svg",
  30428. extra: 357 / 338,
  30429. bottom: 16 / 373
  30430. }
  30431. },
  30432. head: {
  30433. height: math.unit(0.9, "meter"),
  30434. name: "Head",
  30435. image: {
  30436. source: "./media/characters/lawrence/head.svg"
  30437. }
  30438. },
  30439. maw: {
  30440. height: math.unit(0.7, "meter"),
  30441. name: "Maw",
  30442. image: {
  30443. source: "./media/characters/lawrence/maw.svg"
  30444. }
  30445. },
  30446. footBottom: {
  30447. height: math.unit(0.5, "meter"),
  30448. name: "Foot (Bottom)",
  30449. image: {
  30450. source: "./media/characters/lawrence/foot-bottom.svg"
  30451. }
  30452. },
  30453. footTop: {
  30454. height: math.unit(0.5, "meter"),
  30455. name: "Foot (Top)",
  30456. image: {
  30457. source: "./media/characters/lawrence/foot-top.svg"
  30458. }
  30459. },
  30460. },
  30461. [
  30462. {
  30463. name: "Normal",
  30464. height: math.unit(2.5, "meters"),
  30465. default: true
  30466. },
  30467. {
  30468. name: "Macro",
  30469. height: math.unit(95, "meters")
  30470. },
  30471. {
  30472. name: "Megamacro",
  30473. height: math.unit(150, "km")
  30474. },
  30475. ]
  30476. ))
  30477. characterMakers.push(() => makeCharacter(
  30478. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30479. {
  30480. front: {
  30481. height: math.unit(4.2, "meters"),
  30482. name: "Front",
  30483. image: {
  30484. source: "./media/characters/sydney/front.svg",
  30485. extra: 1323 / 1277,
  30486. bottom: 111 / 1434
  30487. }
  30488. },
  30489. },
  30490. [
  30491. {
  30492. name: "Normal",
  30493. height: math.unit(4.2, "meters"),
  30494. default: true
  30495. },
  30496. ]
  30497. ))
  30498. characterMakers.push(() => makeCharacter(
  30499. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30500. {
  30501. back: {
  30502. height: math.unit(201, "feet"),
  30503. name: "Back",
  30504. image: {
  30505. source: "./media/characters/jessica/back.svg",
  30506. extra: 273 / 259,
  30507. bottom: 7 / 280
  30508. }
  30509. },
  30510. },
  30511. [
  30512. {
  30513. name: "Normal",
  30514. height: math.unit(201, "feet"),
  30515. default: true
  30516. },
  30517. {
  30518. name: "Megamacro",
  30519. height: math.unit(8, "miles")
  30520. },
  30521. ]
  30522. ))
  30523. characterMakers.push(() => makeCharacter(
  30524. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30525. {
  30526. side: {
  30527. height: math.unit(5.6, "m"),
  30528. weight: math.unit(8000, "kg"),
  30529. name: "Side",
  30530. image: {
  30531. source: "./media/characters/victoria/side.svg",
  30532. extra: 1542/1229,
  30533. bottom: 124/1666
  30534. }
  30535. },
  30536. maw: {
  30537. height: math.unit(7.14, "feet"),
  30538. name: "Maw",
  30539. image: {
  30540. source: "./media/characters/victoria/maw.svg"
  30541. }
  30542. },
  30543. },
  30544. [
  30545. {
  30546. name: "Normal",
  30547. height: math.unit(5.6, "m"),
  30548. default: true
  30549. },
  30550. ]
  30551. ))
  30552. characterMakers.push(() => makeCharacter(
  30553. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30554. {
  30555. front: {
  30556. height: math.unit(5 + 6 / 12, "feet"),
  30557. name: "Front",
  30558. image: {
  30559. source: "./media/characters/cat/front.svg",
  30560. extra: 1449/1295,
  30561. bottom: 34/1483
  30562. },
  30563. form: "cat",
  30564. default: true
  30565. },
  30566. back: {
  30567. height: math.unit(5 + 6 / 12, "feet"),
  30568. name: "Back",
  30569. image: {
  30570. source: "./media/characters/cat/back.svg",
  30571. extra: 1466/1301,
  30572. bottom: 19/1485
  30573. },
  30574. form: "cat"
  30575. },
  30576. taur: {
  30577. height: math.unit(7, "feet"),
  30578. name: "Taur",
  30579. image: {
  30580. source: "./media/characters/cat/taur.svg",
  30581. extra: 1389/1233,
  30582. bottom: 83/1472
  30583. },
  30584. form: "taur",
  30585. default: true
  30586. },
  30587. lucarioFront: {
  30588. height: math.unit(4, "feet"),
  30589. name: "Lucario (Front)",
  30590. image: {
  30591. source: "./media/characters/cat/lucario-front.svg",
  30592. extra: 1149/1019,
  30593. bottom: 84/1233
  30594. },
  30595. form: "lucario",
  30596. default: true
  30597. },
  30598. lucarioBack: {
  30599. height: math.unit(4, "feet"),
  30600. name: "Lucario (Back)",
  30601. image: {
  30602. source: "./media/characters/cat/lucario-back.svg",
  30603. extra: 1190/1059,
  30604. bottom: 33/1223
  30605. },
  30606. form: "lucario"
  30607. },
  30608. megaLucario: {
  30609. height: math.unit(4, "feet"),
  30610. name: "Mega Lucario",
  30611. image: {
  30612. source: "./media/characters/cat/mega-lucario.svg",
  30613. extra: 1515 / 1319,
  30614. bottom: 63 / 1578
  30615. },
  30616. form: "lucario"
  30617. },
  30618. nickit: {
  30619. height: math.unit(2, "feet"),
  30620. name: "Nickit",
  30621. image: {
  30622. source: "./media/characters/cat/nickit.svg",
  30623. extra: 1980 / 1585,
  30624. bottom: 102 / 2082
  30625. },
  30626. form: "nickit",
  30627. default: true
  30628. },
  30629. lopunnyFront: {
  30630. height: math.unit(5, "feet"),
  30631. name: "Lopunny (Front)",
  30632. image: {
  30633. source: "./media/characters/cat/lopunny-front.svg",
  30634. extra: 1782 / 1469,
  30635. bottom: 38 / 1820
  30636. },
  30637. form: "lopunny",
  30638. default: true
  30639. },
  30640. lopunnyBack: {
  30641. height: math.unit(5, "feet"),
  30642. name: "Lopunny (Back)",
  30643. image: {
  30644. source: "./media/characters/cat/lopunny-back.svg",
  30645. extra: 1660 / 1490,
  30646. bottom: 25 / 1685
  30647. },
  30648. form: "lopunny"
  30649. },
  30650. },
  30651. [
  30652. {
  30653. name: "Really small",
  30654. height: math.unit(1, "nm")
  30655. },
  30656. {
  30657. name: "Micro",
  30658. height: math.unit(5, "inches")
  30659. },
  30660. {
  30661. name: "Normal",
  30662. height: math.unit(5 + 6 / 12, "feet"),
  30663. default: true
  30664. },
  30665. {
  30666. name: "Macro",
  30667. height: math.unit(50, "feet")
  30668. },
  30669. {
  30670. name: "Macro+",
  30671. height: math.unit(150, "feet")
  30672. },
  30673. {
  30674. name: "Megamacro",
  30675. height: math.unit(100, "miles")
  30676. },
  30677. ]
  30678. ))
  30679. characterMakers.push(() => makeCharacter(
  30680. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30681. {
  30682. front: {
  30683. height: math.unit(63.4, "meters"),
  30684. weight: math.unit(3.28349e+6, "kilograms"),
  30685. name: "Front",
  30686. image: {
  30687. source: "./media/characters/kirina-violet/front.svg",
  30688. extra: 2812 / 2725,
  30689. bottom: 0 / 2812
  30690. }
  30691. },
  30692. back: {
  30693. height: math.unit(63.4, "meters"),
  30694. weight: math.unit(3.28349e+6, "kilograms"),
  30695. name: "Back",
  30696. image: {
  30697. source: "./media/characters/kirina-violet/back.svg",
  30698. extra: 2812 / 2725,
  30699. bottom: 0 / 2812
  30700. }
  30701. },
  30702. mouth: {
  30703. height: math.unit(4.35, "meters"),
  30704. name: "Mouth",
  30705. image: {
  30706. source: "./media/characters/kirina-violet/mouth.svg"
  30707. }
  30708. },
  30709. paw: {
  30710. height: math.unit(5.6, "meters"),
  30711. name: "Paw",
  30712. image: {
  30713. source: "./media/characters/kirina-violet/paw.svg"
  30714. }
  30715. },
  30716. tail: {
  30717. height: math.unit(18, "meters"),
  30718. name: "Tail",
  30719. image: {
  30720. source: "./media/characters/kirina-violet/tail.svg"
  30721. }
  30722. },
  30723. },
  30724. [
  30725. {
  30726. name: "Macro",
  30727. height: math.unit(63.4, "meters"),
  30728. default: true
  30729. },
  30730. ]
  30731. ))
  30732. characterMakers.push(() => makeCharacter(
  30733. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30734. {
  30735. front: {
  30736. height: math.unit(75, "feet"),
  30737. name: "Front",
  30738. image: {
  30739. source: "./media/characters/cat-gigachu/front.svg",
  30740. extra: 1239/1027,
  30741. bottom: 32/1271
  30742. }
  30743. },
  30744. back: {
  30745. height: math.unit(75, "feet"),
  30746. name: "Back",
  30747. image: {
  30748. source: "./media/characters/cat-gigachu/back.svg",
  30749. extra: 1229/1030,
  30750. bottom: 9/1238
  30751. }
  30752. },
  30753. },
  30754. [
  30755. {
  30756. name: "Dynamax",
  30757. height: math.unit(75, "feet"),
  30758. default: true
  30759. },
  30760. ]
  30761. ))
  30762. characterMakers.push(() => makeCharacter(
  30763. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30764. {
  30765. front: {
  30766. height: math.unit(6, "feet"),
  30767. weight: math.unit(150, "lb"),
  30768. name: "Front",
  30769. image: {
  30770. source: "./media/characters/sfaiyan/front.svg",
  30771. extra: 999 / 978,
  30772. bottom: 5 / 1004
  30773. }
  30774. },
  30775. },
  30776. [
  30777. {
  30778. name: "Normal",
  30779. height: math.unit(1.82, "meters")
  30780. },
  30781. {
  30782. name: "Giant",
  30783. height: math.unit(2.27, "km"),
  30784. default: true
  30785. },
  30786. ]
  30787. ))
  30788. characterMakers.push(() => makeCharacter(
  30789. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30790. {
  30791. front: {
  30792. height: math.unit(179, "cm"),
  30793. weight: math.unit(100, "kg"),
  30794. name: "Front",
  30795. image: {
  30796. source: "./media/characters/raunehkeli/front.svg",
  30797. extra: 1934 / 1926,
  30798. bottom: 0 / 1934
  30799. }
  30800. },
  30801. },
  30802. [
  30803. {
  30804. name: "Normal",
  30805. height: math.unit(179, "cm")
  30806. },
  30807. {
  30808. name: "Maximum",
  30809. height: math.unit(575, "meters"),
  30810. default: true
  30811. },
  30812. ]
  30813. ))
  30814. characterMakers.push(() => makeCharacter(
  30815. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30816. {
  30817. front: {
  30818. height: math.unit(6, "feet"),
  30819. weight: math.unit(150, "lb"),
  30820. name: "Front",
  30821. image: {
  30822. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30823. extra: 2625 / 2518,
  30824. bottom: 60 / 2685
  30825. }
  30826. },
  30827. },
  30828. [
  30829. {
  30830. name: "Normal",
  30831. height: math.unit(6 + 2 / 12, "feet")
  30832. },
  30833. {
  30834. name: "Macro",
  30835. height: math.unit(1180, "feet"),
  30836. default: true
  30837. },
  30838. ]
  30839. ))
  30840. characterMakers.push(() => makeCharacter(
  30841. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30842. {
  30843. front: {
  30844. height: math.unit(5 + 6 / 12, "feet"),
  30845. weight: math.unit(108, "lb"),
  30846. name: "Front",
  30847. image: {
  30848. source: "./media/characters/lilith-zott/front.svg",
  30849. extra: 2510 / 2238,
  30850. bottom: 100 / 2610
  30851. }
  30852. },
  30853. frontDressed: {
  30854. height: math.unit(5 + 6 / 12, "feet"),
  30855. weight: math.unit(108, "lb"),
  30856. name: "Front (Dressed)",
  30857. image: {
  30858. source: "./media/characters/lilith-zott/front-dressed.svg",
  30859. extra: 2510 / 2238,
  30860. bottom: 100 / 2610
  30861. }
  30862. },
  30863. },
  30864. [
  30865. {
  30866. name: "Normal",
  30867. height: math.unit(5 + 6 / 12, "feet")
  30868. },
  30869. {
  30870. name: "Macro",
  30871. height: math.unit(1030, "feet"),
  30872. default: true
  30873. },
  30874. ]
  30875. ))
  30876. characterMakers.push(() => makeCharacter(
  30877. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30878. {
  30879. front: {
  30880. height: math.unit(6, "feet"),
  30881. weight: math.unit(150, "lb"),
  30882. name: "Front",
  30883. image: {
  30884. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30885. extra: 2567 / 2435,
  30886. bottom: 39 / 2606
  30887. }
  30888. },
  30889. frontSuper: {
  30890. height: math.unit(6, "feet"),
  30891. name: "Front (Super)",
  30892. image: {
  30893. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30894. extra: 2567 / 2435,
  30895. bottom: 39 / 2606
  30896. }
  30897. },
  30898. },
  30899. [
  30900. {
  30901. name: "Normal",
  30902. height: math.unit(5 + 10 / 12, "feet")
  30903. },
  30904. {
  30905. name: "Macro",
  30906. height: math.unit(1100, "feet"),
  30907. default: true
  30908. },
  30909. ]
  30910. ))
  30911. characterMakers.push(() => makeCharacter(
  30912. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30913. {
  30914. front: {
  30915. height: math.unit(100, "miles"),
  30916. name: "Front",
  30917. image: {
  30918. source: "./media/characters/sona/front.svg",
  30919. extra: 2433 / 2201,
  30920. bottom: 53 / 2486
  30921. }
  30922. },
  30923. foot: {
  30924. height: math.unit(16.1, "miles"),
  30925. name: "Foot",
  30926. image: {
  30927. source: "./media/characters/sona/foot.svg"
  30928. }
  30929. },
  30930. },
  30931. [
  30932. {
  30933. name: "Macro",
  30934. height: math.unit(100, "miles"),
  30935. default: true
  30936. },
  30937. ]
  30938. ))
  30939. characterMakers.push(() => makeCharacter(
  30940. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30941. {
  30942. front: {
  30943. height: math.unit(6, "feet"),
  30944. weight: math.unit(150, "lb"),
  30945. name: "Front",
  30946. image: {
  30947. source: "./media/characters/bailey/front.svg",
  30948. extra: 1778 / 1724,
  30949. bottom: 30 / 1808
  30950. }
  30951. },
  30952. },
  30953. [
  30954. {
  30955. name: "Micro",
  30956. height: math.unit(4, "inches")
  30957. },
  30958. {
  30959. name: "Normal",
  30960. height: math.unit(5 + 5 / 12, "feet"),
  30961. default: true
  30962. },
  30963. {
  30964. name: "Macro",
  30965. height: math.unit(250, "feet")
  30966. },
  30967. {
  30968. name: "Megamacro",
  30969. height: math.unit(100, "miles")
  30970. },
  30971. ]
  30972. ))
  30973. characterMakers.push(() => makeCharacter(
  30974. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30975. {
  30976. front: {
  30977. height: math.unit(5 + 2 / 12, "feet"),
  30978. weight: math.unit(120, "lb"),
  30979. name: "Front",
  30980. image: {
  30981. source: "./media/characters/snaps/front.svg",
  30982. extra: 2370 / 2177,
  30983. bottom: 48 / 2418
  30984. }
  30985. },
  30986. back: {
  30987. height: math.unit(5 + 2 / 12, "feet"),
  30988. weight: math.unit(120, "lb"),
  30989. name: "Back",
  30990. image: {
  30991. source: "./media/characters/snaps/back.svg",
  30992. extra: 2408 / 2258,
  30993. bottom: 15 / 2423
  30994. }
  30995. },
  30996. },
  30997. [
  30998. {
  30999. name: "Micro",
  31000. height: math.unit(9, "inches")
  31001. },
  31002. {
  31003. name: "Normal",
  31004. height: math.unit(5 + 2 / 12, "feet"),
  31005. default: true
  31006. },
  31007. {
  31008. name: "Mini Macro",
  31009. height: math.unit(10, "feet")
  31010. },
  31011. ]
  31012. ))
  31013. characterMakers.push(() => makeCharacter(
  31014. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31015. {
  31016. front: {
  31017. height: math.unit(1.8, "meters"),
  31018. weight: math.unit(85, "kg"),
  31019. name: "Front",
  31020. image: {
  31021. source: "./media/characters/azteck/front.svg",
  31022. extra: 2815 / 2625,
  31023. bottom: 89 / 2904
  31024. }
  31025. },
  31026. back: {
  31027. height: math.unit(1.8, "meters"),
  31028. weight: math.unit(85, "kg"),
  31029. name: "Back",
  31030. image: {
  31031. source: "./media/characters/azteck/back.svg",
  31032. extra: 2856 / 2648,
  31033. bottom: 85 / 2941
  31034. }
  31035. },
  31036. frontDressed: {
  31037. height: math.unit(1.8, "meters"),
  31038. weight: math.unit(85, "kg"),
  31039. name: "Front (Dressed)",
  31040. image: {
  31041. source: "./media/characters/azteck/front-dressed.svg",
  31042. extra: 2147 / 2003,
  31043. bottom: 68 / 2215
  31044. }
  31045. },
  31046. head: {
  31047. height: math.unit(0.47, "meters"),
  31048. weight: math.unit(85, "kg"),
  31049. name: "Head",
  31050. image: {
  31051. source: "./media/characters/azteck/head.svg"
  31052. }
  31053. },
  31054. },
  31055. [
  31056. {
  31057. name: "Bite sized",
  31058. height: math.unit(16, "cm")
  31059. },
  31060. {
  31061. name: "Normal",
  31062. height: math.unit(1.8, "meters"),
  31063. default: true
  31064. },
  31065. ]
  31066. ))
  31067. characterMakers.push(() => makeCharacter(
  31068. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31069. {
  31070. front: {
  31071. height: math.unit(6, "feet"),
  31072. weight: math.unit(150, "lb"),
  31073. name: "Front",
  31074. image: {
  31075. source: "./media/characters/pidge/front.svg",
  31076. extra: 1936/1820,
  31077. bottom: 0/1936
  31078. }
  31079. },
  31080. back: {
  31081. height: math.unit(6, "feet"),
  31082. weight: math.unit(150, "lb"),
  31083. name: "Back",
  31084. image: {
  31085. source: "./media/characters/pidge/back.svg",
  31086. extra: 1938/1843,
  31087. bottom: 0/1938
  31088. }
  31089. },
  31090. casual: {
  31091. height: math.unit(6, "feet"),
  31092. weight: math.unit(150, "lb"),
  31093. name: "Casual",
  31094. image: {
  31095. source: "./media/characters/pidge/casual.svg",
  31096. extra: 1936/1820,
  31097. bottom: 0/1936
  31098. }
  31099. },
  31100. tech: {
  31101. height: math.unit(6, "feet"),
  31102. weight: math.unit(150, "lb"),
  31103. name: "Tech",
  31104. image: {
  31105. source: "./media/characters/pidge/tech.svg",
  31106. extra: 1802/1682,
  31107. bottom: 0/1802
  31108. }
  31109. },
  31110. head: {
  31111. height: math.unit(1.61, "feet"),
  31112. name: "Head",
  31113. image: {
  31114. source: "./media/characters/pidge/head.svg"
  31115. }
  31116. },
  31117. collar: {
  31118. height: math.unit(0.82, "feet"),
  31119. name: "Collar",
  31120. image: {
  31121. source: "./media/characters/pidge/collar.svg"
  31122. }
  31123. },
  31124. },
  31125. [
  31126. {
  31127. name: "Macro",
  31128. height: math.unit(2, "mile"),
  31129. default: true
  31130. },
  31131. {
  31132. name: "PUPPY",
  31133. height: math.unit(20, "miles")
  31134. },
  31135. ]
  31136. ))
  31137. characterMakers.push(() => makeCharacter(
  31138. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31139. {
  31140. front: {
  31141. height: math.unit(6, "feet"),
  31142. weight: math.unit(150, "lb"),
  31143. name: "Front",
  31144. image: {
  31145. source: "./media/characters/en/front.svg",
  31146. extra: 1697 / 1563,
  31147. bottom: 103 / 1800
  31148. }
  31149. },
  31150. back: {
  31151. height: math.unit(6, "feet"),
  31152. weight: math.unit(150, "lb"),
  31153. name: "Back",
  31154. image: {
  31155. source: "./media/characters/en/back.svg",
  31156. extra: 1700 / 1570,
  31157. bottom: 51 / 1751
  31158. }
  31159. },
  31160. frontDressed: {
  31161. height: math.unit(6, "feet"),
  31162. weight: math.unit(150, "lb"),
  31163. name: "Front (Dressed)",
  31164. image: {
  31165. source: "./media/characters/en/front-dressed.svg",
  31166. extra: 1697 / 1563,
  31167. bottom: 103 / 1800
  31168. }
  31169. },
  31170. backDressed: {
  31171. height: math.unit(6, "feet"),
  31172. weight: math.unit(150, "lb"),
  31173. name: "Back (Dressed)",
  31174. image: {
  31175. source: "./media/characters/en/back-dressed.svg",
  31176. extra: 1700 / 1570,
  31177. bottom: 51 / 1751
  31178. }
  31179. },
  31180. },
  31181. [
  31182. {
  31183. name: "Macro",
  31184. height: math.unit(210, "feet"),
  31185. default: true
  31186. },
  31187. ]
  31188. ))
  31189. characterMakers.push(() => makeCharacter(
  31190. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31191. {
  31192. front: {
  31193. height: math.unit(6, "feet"),
  31194. weight: math.unit(150, "lb"),
  31195. name: "Front",
  31196. image: {
  31197. source: "./media/characters/haze-orris/front.svg",
  31198. extra: 3975 / 3525,
  31199. bottom: 137 / 4112
  31200. }
  31201. },
  31202. },
  31203. [
  31204. {
  31205. name: "Micro",
  31206. height: math.unit(150, "mm"),
  31207. default: true
  31208. },
  31209. ]
  31210. ))
  31211. characterMakers.push(() => makeCharacter(
  31212. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31213. {
  31214. front: {
  31215. height: math.unit(6, "feet"),
  31216. weight: math.unit(150, "lb"),
  31217. name: "Front",
  31218. image: {
  31219. source: "./media/characters/casselene-yaro/front.svg",
  31220. extra: 4721 / 4541,
  31221. bottom: 82 / 4803
  31222. }
  31223. },
  31224. back: {
  31225. height: math.unit(6, "feet"),
  31226. weight: math.unit(150, "lb"),
  31227. name: "Back",
  31228. image: {
  31229. source: "./media/characters/casselene-yaro/back.svg",
  31230. extra: 4569 / 4377,
  31231. bottom: 69 / 4638
  31232. }
  31233. },
  31234. dressed: {
  31235. height: math.unit(6, "feet"),
  31236. weight: math.unit(150, "lb"),
  31237. name: "Dressed",
  31238. image: {
  31239. source: "./media/characters/casselene-yaro/dressed.svg",
  31240. extra: 4721 / 4541,
  31241. bottom: 82 / 4803
  31242. }
  31243. },
  31244. maw: {
  31245. height: math.unit(1, "feet"),
  31246. name: "Maw",
  31247. image: {
  31248. source: "./media/characters/casselene-yaro/maw.svg"
  31249. }
  31250. },
  31251. },
  31252. [
  31253. {
  31254. name: "Macro",
  31255. height: math.unit(190, "feet"),
  31256. default: true
  31257. },
  31258. ]
  31259. ))
  31260. characterMakers.push(() => makeCharacter(
  31261. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31262. {
  31263. front: {
  31264. height: math.unit(10, "feet"),
  31265. weight: math.unit(15015, "lb"),
  31266. name: "Front",
  31267. image: {
  31268. source: "./media/characters/platine/front.svg",
  31269. extra: 1741/1650,
  31270. bottom: 84/1825
  31271. }
  31272. },
  31273. side: {
  31274. height: math.unit(10, "feet"),
  31275. weight: math.unit(15015, "lb"),
  31276. name: "Side",
  31277. image: {
  31278. source: "./media/characters/platine/side.svg",
  31279. extra: 1790/1705,
  31280. bottom: 29/1819
  31281. }
  31282. },
  31283. },
  31284. [
  31285. {
  31286. name: "Normal",
  31287. height: math.unit(10, "feet"),
  31288. default: true
  31289. },
  31290. {
  31291. name: "Macro",
  31292. height: math.unit(100, "feet")
  31293. },
  31294. {
  31295. name: "Megamacro",
  31296. height: math.unit(1000, "feet")
  31297. },
  31298. ]
  31299. ))
  31300. characterMakers.push(() => makeCharacter(
  31301. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31302. {
  31303. front: {
  31304. height: math.unit(15 + 5 / 12, "feet"),
  31305. weight: math.unit(4600, "lb"),
  31306. name: "Front",
  31307. image: {
  31308. source: "./media/characters/neapolitan-ananassa/front.svg",
  31309. extra: 2903 / 2736,
  31310. bottom: 0 / 2903
  31311. }
  31312. },
  31313. side: {
  31314. height: math.unit(15 + 5 / 12, "feet"),
  31315. weight: math.unit(4600, "lb"),
  31316. name: "Side",
  31317. image: {
  31318. source: "./media/characters/neapolitan-ananassa/side.svg",
  31319. extra: 2925 / 2719,
  31320. bottom: 0 / 2925
  31321. }
  31322. },
  31323. back: {
  31324. height: math.unit(15 + 5 / 12, "feet"),
  31325. weight: math.unit(4600, "lb"),
  31326. name: "Back",
  31327. image: {
  31328. source: "./media/characters/neapolitan-ananassa/back.svg",
  31329. extra: 2903 / 2736,
  31330. bottom: 0 / 2903
  31331. }
  31332. },
  31333. },
  31334. [
  31335. {
  31336. name: "Normal",
  31337. height: math.unit(15 + 5 / 12, "feet"),
  31338. default: true
  31339. },
  31340. {
  31341. name: "Post-Millenium",
  31342. height: math.unit(35 + 5 / 12, "feet")
  31343. },
  31344. {
  31345. name: "Post-Era",
  31346. height: math.unit(450 + 5 / 12, "feet")
  31347. },
  31348. ]
  31349. ))
  31350. characterMakers.push(() => makeCharacter(
  31351. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31352. {
  31353. front: {
  31354. height: math.unit(300, "meters"),
  31355. weight: math.unit(125000, "tonnes"),
  31356. name: "Front",
  31357. image: {
  31358. source: "./media/characters/pazuzu/front.svg",
  31359. extra: 877 / 794,
  31360. bottom: 47 / 924
  31361. }
  31362. },
  31363. },
  31364. [
  31365. {
  31366. name: "Macro",
  31367. height: math.unit(300, "meters"),
  31368. default: true
  31369. },
  31370. ]
  31371. ))
  31372. characterMakers.push(() => makeCharacter(
  31373. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31374. {
  31375. side: {
  31376. height: math.unit(10 + 7 / 12, "feet"),
  31377. weight: math.unit(2.5, "tons"),
  31378. name: "Side",
  31379. image: {
  31380. source: "./media/characters/aasha/side.svg",
  31381. extra: 1345 / 1245,
  31382. bottom: 111 / 1456
  31383. }
  31384. },
  31385. back: {
  31386. height: math.unit(10 + 7 / 12, "feet"),
  31387. weight: math.unit(2.5, "tons"),
  31388. name: "Back",
  31389. image: {
  31390. source: "./media/characters/aasha/back.svg",
  31391. extra: 1133 / 1057,
  31392. bottom: 257 / 1390
  31393. }
  31394. },
  31395. },
  31396. [
  31397. {
  31398. name: "Normal",
  31399. height: math.unit(10 + 7 / 12, "feet"),
  31400. default: true
  31401. },
  31402. ]
  31403. ))
  31404. characterMakers.push(() => makeCharacter(
  31405. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31406. {
  31407. front: {
  31408. height: math.unit(6 + 3 / 12, "feet"),
  31409. name: "Front",
  31410. image: {
  31411. source: "./media/characters/nevan/front.svg",
  31412. extra: 704 / 704,
  31413. bottom: 28 / 732
  31414. }
  31415. },
  31416. back: {
  31417. height: math.unit(6 + 3 / 12, "feet"),
  31418. name: "Back",
  31419. image: {
  31420. source: "./media/characters/nevan/back.svg",
  31421. extra: 714 / 714,
  31422. bottom: 21 / 735
  31423. }
  31424. },
  31425. frontFlaccid: {
  31426. height: math.unit(6 + 3 / 12, "feet"),
  31427. name: "Front (Flaccid)",
  31428. image: {
  31429. source: "./media/characters/nevan/front-flaccid.svg",
  31430. extra: 704 / 704,
  31431. bottom: 28 / 732
  31432. }
  31433. },
  31434. frontErect: {
  31435. height: math.unit(6 + 3 / 12, "feet"),
  31436. name: "Front (Erect)",
  31437. image: {
  31438. source: "./media/characters/nevan/front-erect.svg",
  31439. extra: 704 / 704,
  31440. bottom: 28 / 732
  31441. }
  31442. },
  31443. backFlaccid: {
  31444. height: math.unit(6 + 3 / 12, "feet"),
  31445. name: "Back (Flaccid)",
  31446. image: {
  31447. source: "./media/characters/nevan/back-flaccid.svg",
  31448. extra: 714 / 714,
  31449. bottom: 21 / 735
  31450. }
  31451. },
  31452. },
  31453. [
  31454. {
  31455. name: "Normal",
  31456. height: math.unit(6 + 3 / 12, "feet"),
  31457. default: true
  31458. },
  31459. ]
  31460. ))
  31461. characterMakers.push(() => makeCharacter(
  31462. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31463. {
  31464. front: {
  31465. height: math.unit(4, "feet"),
  31466. name: "Front",
  31467. image: {
  31468. source: "./media/characters/arhan/front.svg",
  31469. extra: 3368 / 3133,
  31470. bottom: 0 / 3368
  31471. }
  31472. },
  31473. side: {
  31474. height: math.unit(4, "feet"),
  31475. name: "Side",
  31476. image: {
  31477. source: "./media/characters/arhan/side.svg",
  31478. extra: 3347 / 3105,
  31479. bottom: 0 / 3347
  31480. }
  31481. },
  31482. tongue: {
  31483. height: math.unit(1.42, "feet"),
  31484. name: "Tongue",
  31485. image: {
  31486. source: "./media/characters/arhan/tongue.svg"
  31487. }
  31488. },
  31489. head: {
  31490. height: math.unit(0.85, "feet"),
  31491. name: "Head",
  31492. image: {
  31493. source: "./media/characters/arhan/head.svg"
  31494. }
  31495. },
  31496. },
  31497. [
  31498. {
  31499. name: "Normal",
  31500. height: math.unit(4, "feet"),
  31501. default: true
  31502. },
  31503. ]
  31504. ))
  31505. characterMakers.push(() => makeCharacter(
  31506. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31507. {
  31508. front: {
  31509. height: math.unit(5 + 7.5 / 12, "feet"),
  31510. weight: math.unit(120, "lb"),
  31511. name: "Front",
  31512. image: {
  31513. source: "./media/characters/digi-duncan/front.svg",
  31514. extra: 330 / 326,
  31515. bottom: 16 / 346
  31516. }
  31517. },
  31518. side: {
  31519. height: math.unit(5 + 7.5 / 12, "feet"),
  31520. weight: math.unit(120, "lb"),
  31521. name: "Side",
  31522. image: {
  31523. source: "./media/characters/digi-duncan/side.svg",
  31524. extra: 341 / 337,
  31525. bottom: 1 / 342
  31526. }
  31527. },
  31528. back: {
  31529. height: math.unit(5 + 7.5 / 12, "feet"),
  31530. weight: math.unit(120, "lb"),
  31531. name: "Back",
  31532. image: {
  31533. source: "./media/characters/digi-duncan/back.svg",
  31534. extra: 330 / 326,
  31535. bottom: 12 / 342
  31536. }
  31537. },
  31538. },
  31539. [
  31540. {
  31541. name: "Speck",
  31542. height: math.unit(0.25, "mm")
  31543. },
  31544. {
  31545. name: "Micro",
  31546. height: math.unit(5, "mm")
  31547. },
  31548. {
  31549. name: "Tiny",
  31550. height: math.unit(0.5, "inches"),
  31551. default: true
  31552. },
  31553. {
  31554. name: "Human",
  31555. height: math.unit(5 + 7.5 / 12, "feet")
  31556. },
  31557. {
  31558. name: "Minigiant",
  31559. height: math.unit(8 + 5.25, "feet")
  31560. },
  31561. {
  31562. name: "Giant",
  31563. height: math.unit(2000, "feet")
  31564. },
  31565. {
  31566. name: "Mega",
  31567. height: math.unit(371.1, "miles")
  31568. },
  31569. ]
  31570. ))
  31571. characterMakers.push(() => makeCharacter(
  31572. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31573. {
  31574. front: {
  31575. height: math.unit(2, "meters"),
  31576. weight: math.unit(350, "kg"),
  31577. name: "Front",
  31578. image: {
  31579. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31580. extra: 898 / 838,
  31581. bottom: 9 / 907
  31582. }
  31583. },
  31584. },
  31585. [
  31586. {
  31587. name: "Micro",
  31588. height: math.unit(8, "meters")
  31589. },
  31590. {
  31591. name: "Normal",
  31592. height: math.unit(50, "meters"),
  31593. default: true
  31594. },
  31595. {
  31596. name: "Macro",
  31597. height: math.unit(500, "meters")
  31598. },
  31599. ]
  31600. ))
  31601. characterMakers.push(() => makeCharacter(
  31602. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31603. {
  31604. front: {
  31605. height: math.unit(6 + 6 / 12, "feet"),
  31606. name: "Front",
  31607. image: {
  31608. source: "./media/characters/khardesh/front.svg",
  31609. extra: 1788/1596,
  31610. bottom: 66/1854
  31611. }
  31612. },
  31613. back: {
  31614. height: math.unit(6 + 6 / 12, "feet"),
  31615. name: "Back",
  31616. image: {
  31617. source: "./media/characters/khardesh/back.svg",
  31618. extra: 1781/1584,
  31619. bottom: 68/1849
  31620. }
  31621. },
  31622. },
  31623. [
  31624. {
  31625. name: "Normal",
  31626. height: math.unit(6 + 6 / 12, "feet"),
  31627. default: true
  31628. },
  31629. {
  31630. name: "Normal+",
  31631. height: math.unit(4, "meters")
  31632. },
  31633. {
  31634. name: "Macro",
  31635. height: math.unit(50, "meters")
  31636. },
  31637. {
  31638. name: "Macro+",
  31639. height: math.unit(100, "meters")
  31640. },
  31641. {
  31642. name: "Megamacro",
  31643. height: math.unit(20, "km")
  31644. },
  31645. ]
  31646. ))
  31647. characterMakers.push(() => makeCharacter(
  31648. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31649. {
  31650. front: {
  31651. height: math.unit(6, "feet"),
  31652. weight: math.unit(150, "lb"),
  31653. name: "Front",
  31654. image: {
  31655. source: "./media/characters/kosho/front.svg",
  31656. extra: 1847 / 1847,
  31657. bottom: 86 / 1933
  31658. }
  31659. },
  31660. },
  31661. [
  31662. {
  31663. name: "Second-stage micro",
  31664. height: math.unit(0.5, "inches")
  31665. },
  31666. {
  31667. name: "First-stage micro",
  31668. height: math.unit(6, "inches")
  31669. },
  31670. {
  31671. name: "Normal",
  31672. height: math.unit(6, "feet"),
  31673. default: true
  31674. },
  31675. {
  31676. name: "First-stage macro",
  31677. height: math.unit(72, "feet")
  31678. },
  31679. {
  31680. name: "Second-stage macro",
  31681. height: math.unit(864, "feet")
  31682. },
  31683. ]
  31684. ))
  31685. characterMakers.push(() => makeCharacter(
  31686. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31687. {
  31688. normal: {
  31689. height: math.unit(4 + 6 / 12, "feet"),
  31690. name: "Normal",
  31691. image: {
  31692. source: "./media/characters/hydra/normal.svg",
  31693. extra: 2833 / 2634,
  31694. bottom: 68 / 2901
  31695. }
  31696. },
  31697. smol: {
  31698. height: math.unit(0.705, "inches"),
  31699. name: "Smol",
  31700. image: {
  31701. source: "./media/characters/hydra/smol.svg",
  31702. extra: 2715 / 2540,
  31703. bottom: 0 / 2715
  31704. }
  31705. },
  31706. },
  31707. [
  31708. {
  31709. name: "Normal",
  31710. height: math.unit(4 + 6 / 12, "feet"),
  31711. default: true
  31712. }
  31713. ]
  31714. ))
  31715. characterMakers.push(() => makeCharacter(
  31716. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31717. {
  31718. front: {
  31719. height: math.unit(0.6, "cm"),
  31720. name: "Front",
  31721. image: {
  31722. source: "./media/characters/daz/front.svg",
  31723. extra: 1682 / 1164,
  31724. bottom: 42 / 1724
  31725. }
  31726. },
  31727. },
  31728. [
  31729. {
  31730. name: "Normal",
  31731. height: math.unit(0.6, "cm"),
  31732. default: true
  31733. },
  31734. ]
  31735. ))
  31736. characterMakers.push(() => makeCharacter(
  31737. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31738. {
  31739. front: {
  31740. height: math.unit(6, "feet"),
  31741. weight: math.unit(235, "lb"),
  31742. name: "Front",
  31743. image: {
  31744. source: "./media/characters/theo-pangolin/front.svg",
  31745. extra: 1996 / 1969,
  31746. bottom: 115 / 2111
  31747. }
  31748. },
  31749. back: {
  31750. height: math.unit(6, "feet"),
  31751. weight: math.unit(235, "lb"),
  31752. name: "Back",
  31753. image: {
  31754. source: "./media/characters/theo-pangolin/back.svg",
  31755. extra: 1979 / 1979,
  31756. bottom: 40 / 2019
  31757. }
  31758. },
  31759. feral: {
  31760. height: math.unit(2, "feet"),
  31761. weight: math.unit(30, "lb"),
  31762. name: "Feral",
  31763. image: {
  31764. source: "./media/characters/theo-pangolin/feral.svg",
  31765. extra: 803 / 791,
  31766. bottom: 181 / 984
  31767. }
  31768. },
  31769. footFive: {
  31770. height: math.unit(1.43, "feet"),
  31771. name: "Foot (Five Toes)",
  31772. image: {
  31773. source: "./media/characters/theo-pangolin/foot-five.svg"
  31774. }
  31775. },
  31776. footFour: {
  31777. height: math.unit(1.43, "feet"),
  31778. name: "Foot (Four Toes)",
  31779. image: {
  31780. source: "./media/characters/theo-pangolin/foot-four.svg"
  31781. }
  31782. },
  31783. handFour: {
  31784. height: math.unit(0.81, "feet"),
  31785. name: "Hand (Four Fingers)",
  31786. image: {
  31787. source: "./media/characters/theo-pangolin/hand-four.svg"
  31788. }
  31789. },
  31790. handThree: {
  31791. height: math.unit(0.81, "feet"),
  31792. name: "Hand (Three Fingers)",
  31793. image: {
  31794. source: "./media/characters/theo-pangolin/hand-three.svg"
  31795. }
  31796. },
  31797. headFront: {
  31798. height: math.unit(1.37, "feet"),
  31799. name: "Head (Front)",
  31800. image: {
  31801. source: "./media/characters/theo-pangolin/head-front.svg"
  31802. }
  31803. },
  31804. headSide: {
  31805. height: math.unit(1.43, "feet"),
  31806. name: "Head (Side)",
  31807. image: {
  31808. source: "./media/characters/theo-pangolin/head-side.svg"
  31809. }
  31810. },
  31811. tongue: {
  31812. height: math.unit(2.29, "feet"),
  31813. name: "Tongue",
  31814. image: {
  31815. source: "./media/characters/theo-pangolin/tongue.svg"
  31816. }
  31817. },
  31818. },
  31819. [
  31820. {
  31821. name: "Normal",
  31822. height: math.unit(6, "feet")
  31823. },
  31824. {
  31825. name: "Macro",
  31826. height: math.unit(400, "feet"),
  31827. default: true
  31828. },
  31829. ]
  31830. ))
  31831. characterMakers.push(() => makeCharacter(
  31832. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31833. {
  31834. front: {
  31835. height: math.unit(6, "inches"),
  31836. weight: math.unit(0.036, "kg"),
  31837. name: "Front",
  31838. image: {
  31839. source: "./media/characters/renée/front.svg",
  31840. extra: 900 / 886,
  31841. bottom: 8 / 908
  31842. }
  31843. },
  31844. },
  31845. [
  31846. {
  31847. name: "Nano",
  31848. height: math.unit(1, "nm")
  31849. },
  31850. {
  31851. name: "Micro",
  31852. height: math.unit(1, "mm")
  31853. },
  31854. {
  31855. name: "Normal",
  31856. height: math.unit(6, "inches")
  31857. },
  31858. {
  31859. name: "Macro",
  31860. height: math.unit(2000, "feet"),
  31861. default: true
  31862. },
  31863. {
  31864. name: "Megamacro",
  31865. height: math.unit(2, "km")
  31866. },
  31867. {
  31868. name: "Gigamacro",
  31869. height: math.unit(2000, "km")
  31870. },
  31871. {
  31872. name: "Teramacro",
  31873. height: math.unit(250000, "km")
  31874. },
  31875. ]
  31876. ))
  31877. characterMakers.push(() => makeCharacter(
  31878. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31879. {
  31880. front: {
  31881. height: math.unit(4, "meters"),
  31882. weight: math.unit(150, "kg"),
  31883. name: "Front",
  31884. image: {
  31885. source: "./media/characters/caledvwlch/front.svg",
  31886. extra: 1760 / 1551,
  31887. bottom: 28 / 1788
  31888. }
  31889. },
  31890. side: {
  31891. height: math.unit(4, "meters"),
  31892. weight: math.unit(150, "kg"),
  31893. name: "Side",
  31894. image: {
  31895. source: "./media/characters/caledvwlch/side.svg",
  31896. extra: 1605 / 1536,
  31897. bottom: 31 / 1636
  31898. }
  31899. },
  31900. back: {
  31901. height: math.unit(4, "meters"),
  31902. weight: math.unit(150, "kg"),
  31903. name: "Back",
  31904. image: {
  31905. source: "./media/characters/caledvwlch/back.svg",
  31906. extra: 1635 / 1565,
  31907. bottom: 27 / 1662
  31908. }
  31909. },
  31910. },
  31911. [
  31912. {
  31913. name: "\"Incognito\"",
  31914. height: math.unit(4, "meters")
  31915. },
  31916. {
  31917. name: "Small rampage",
  31918. height: math.unit(600, "meters")
  31919. },
  31920. {
  31921. name: "Mega",
  31922. height: math.unit(30, "km")
  31923. },
  31924. {
  31925. name: "Home-size",
  31926. height: math.unit(50, "km"),
  31927. default: true
  31928. },
  31929. {
  31930. name: "Giga",
  31931. height: math.unit(300, "km")
  31932. },
  31933. {
  31934. name: "Lounging",
  31935. height: math.unit(11000, "km")
  31936. },
  31937. {
  31938. name: "Planet snacking",
  31939. height: math.unit(2000000, "km")
  31940. },
  31941. ]
  31942. ))
  31943. characterMakers.push(() => makeCharacter(
  31944. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31945. {
  31946. front: {
  31947. height: math.unit(6, "feet"),
  31948. weight: math.unit(215, "lb"),
  31949. name: "Front",
  31950. image: {
  31951. source: "./media/characters/sapphire-svell/front.svg",
  31952. extra: 495 / 455,
  31953. bottom: 20 / 515
  31954. }
  31955. },
  31956. back: {
  31957. height: math.unit(6, "feet"),
  31958. weight: math.unit(216, "lb"),
  31959. name: "Back",
  31960. image: {
  31961. source: "./media/characters/sapphire-svell/back.svg",
  31962. extra: 497 / 477,
  31963. bottom: 7 / 504
  31964. }
  31965. },
  31966. maw: {
  31967. height: math.unit(1.57, "feet"),
  31968. name: "Maw",
  31969. image: {
  31970. source: "./media/characters/sapphire-svell/maw.svg"
  31971. }
  31972. },
  31973. foot: {
  31974. height: math.unit(1.07, "feet"),
  31975. name: "Foot",
  31976. image: {
  31977. source: "./media/characters/sapphire-svell/foot.svg"
  31978. }
  31979. },
  31980. toering: {
  31981. height: math.unit(1.7, "inch"),
  31982. name: "Toering",
  31983. image: {
  31984. source: "./media/characters/sapphire-svell/toering.svg"
  31985. }
  31986. },
  31987. },
  31988. [
  31989. {
  31990. name: "Normal",
  31991. height: math.unit(300, "feet"),
  31992. default: true
  31993. },
  31994. {
  31995. name: "Augmented",
  31996. height: math.unit(1250, "feet")
  31997. },
  31998. {
  31999. name: "Unleashed",
  32000. height: math.unit(3000, "feet")
  32001. },
  32002. ]
  32003. ))
  32004. characterMakers.push(() => makeCharacter(
  32005. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32006. {
  32007. side: {
  32008. height: math.unit(2 + 3 / 12, "feet"),
  32009. weight: math.unit(110, "lb"),
  32010. name: "Side",
  32011. image: {
  32012. source: "./media/characters/glitch-flux/side.svg",
  32013. extra: 997 / 805,
  32014. bottom: 20 / 1017
  32015. }
  32016. },
  32017. },
  32018. [
  32019. {
  32020. name: "Normal",
  32021. height: math.unit(2 + 3 / 12, "feet"),
  32022. default: true
  32023. },
  32024. ]
  32025. ))
  32026. characterMakers.push(() => makeCharacter(
  32027. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32028. {
  32029. front: {
  32030. height: math.unit(4, "meters"),
  32031. name: "Front",
  32032. image: {
  32033. source: "./media/characters/mid/front.svg",
  32034. extra: 507 / 476,
  32035. bottom: 17 / 524
  32036. }
  32037. },
  32038. back: {
  32039. height: math.unit(4, "meters"),
  32040. name: "Back",
  32041. image: {
  32042. source: "./media/characters/mid/back.svg",
  32043. extra: 519 / 487,
  32044. bottom: 7 / 526
  32045. }
  32046. },
  32047. stuck: {
  32048. height: math.unit(2.2, "meters"),
  32049. name: "Stuck",
  32050. image: {
  32051. source: "./media/characters/mid/stuck.svg",
  32052. extra: 1951 / 1869,
  32053. bottom: 88 / 2039
  32054. }
  32055. }
  32056. },
  32057. [
  32058. {
  32059. name: "Normal",
  32060. height: math.unit(4, "meters"),
  32061. default: true
  32062. },
  32063. {
  32064. name: "Big",
  32065. height: math.unit(10, "meters")
  32066. },
  32067. {
  32068. name: "Macro",
  32069. height: math.unit(800, "meters")
  32070. },
  32071. {
  32072. name: "Megamacro",
  32073. height: math.unit(100, "km")
  32074. },
  32075. {
  32076. name: "Overgrown",
  32077. height: math.unit(1, "parsec")
  32078. },
  32079. ]
  32080. ))
  32081. characterMakers.push(() => makeCharacter(
  32082. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32083. {
  32084. front: {
  32085. height: math.unit(2.5, "meters"),
  32086. weight: math.unit(225, "kg"),
  32087. name: "Front",
  32088. image: {
  32089. source: "./media/characters/iris/front.svg",
  32090. extra: 3348 / 3251,
  32091. bottom: 205 / 3553
  32092. }
  32093. },
  32094. maw: {
  32095. height: math.unit(0.56, "meter"),
  32096. name: "Maw",
  32097. image: {
  32098. source: "./media/characters/iris/maw.svg"
  32099. }
  32100. },
  32101. },
  32102. [
  32103. {
  32104. name: "Mewter cat",
  32105. height: math.unit(1.2, "meters")
  32106. },
  32107. {
  32108. name: "Normal",
  32109. height: math.unit(2.5, "meters"),
  32110. default: true
  32111. },
  32112. {
  32113. name: "Minimacro",
  32114. height: math.unit(18, "feet")
  32115. },
  32116. {
  32117. name: "Macro",
  32118. height: math.unit(140, "feet")
  32119. },
  32120. {
  32121. name: "Macro+",
  32122. height: math.unit(180, "meters")
  32123. },
  32124. {
  32125. name: "Megamacro",
  32126. height: math.unit(2746, "meters")
  32127. },
  32128. ]
  32129. ))
  32130. characterMakers.push(() => makeCharacter(
  32131. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32132. {
  32133. front: {
  32134. height: math.unit(6, "feet"),
  32135. weight: math.unit(135, "lb"),
  32136. name: "Front",
  32137. image: {
  32138. source: "./media/characters/axel/front.svg",
  32139. extra: 908 / 908,
  32140. bottom: 58 / 966
  32141. }
  32142. },
  32143. side: {
  32144. height: math.unit(6, "feet"),
  32145. weight: math.unit(135, "lb"),
  32146. name: "Side",
  32147. image: {
  32148. source: "./media/characters/axel/side.svg",
  32149. extra: 958 / 958,
  32150. bottom: 11 / 969
  32151. }
  32152. },
  32153. back: {
  32154. height: math.unit(6, "feet"),
  32155. weight: math.unit(135, "lb"),
  32156. name: "Back",
  32157. image: {
  32158. source: "./media/characters/axel/back.svg",
  32159. extra: 887 / 887,
  32160. bottom: 34 / 921
  32161. }
  32162. },
  32163. head: {
  32164. height: math.unit(1.07, "feet"),
  32165. name: "Head",
  32166. image: {
  32167. source: "./media/characters/axel/head.svg"
  32168. }
  32169. },
  32170. beak: {
  32171. height: math.unit(1.4, "feet"),
  32172. name: "Beak",
  32173. image: {
  32174. source: "./media/characters/axel/beak.svg"
  32175. }
  32176. },
  32177. beakSide: {
  32178. height: math.unit(1.4, "feet"),
  32179. name: "Beak Side",
  32180. image: {
  32181. source: "./media/characters/axel/beak-side.svg"
  32182. }
  32183. },
  32184. sheath: {
  32185. height: math.unit(0.5, "feet"),
  32186. name: "Sheath",
  32187. image: {
  32188. source: "./media/characters/axel/sheath.svg"
  32189. }
  32190. },
  32191. dick: {
  32192. height: math.unit(0.98, "feet"),
  32193. name: "Dick",
  32194. image: {
  32195. source: "./media/characters/axel/dick.svg"
  32196. }
  32197. },
  32198. },
  32199. [
  32200. {
  32201. name: "Macro",
  32202. height: math.unit(68, "meters"),
  32203. default: true
  32204. },
  32205. ]
  32206. ))
  32207. characterMakers.push(() => makeCharacter(
  32208. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32209. {
  32210. front: {
  32211. height: math.unit(3.5, "meters"),
  32212. weight: math.unit(1200, "kg"),
  32213. name: "Front",
  32214. image: {
  32215. source: "./media/characters/joanna/front.svg",
  32216. extra: 1596 / 1488,
  32217. bottom: 29 / 1625
  32218. }
  32219. },
  32220. back: {
  32221. height: math.unit(3.5, "meters"),
  32222. weight: math.unit(1200, "kg"),
  32223. name: "Back",
  32224. image: {
  32225. source: "./media/characters/joanna/back.svg",
  32226. extra: 1594 / 1495,
  32227. bottom: 26 / 1620
  32228. }
  32229. },
  32230. frontShorts: {
  32231. height: math.unit(3.5, "meters"),
  32232. weight: math.unit(1200, "kg"),
  32233. name: "Front (Shorts)",
  32234. image: {
  32235. source: "./media/characters/joanna/front-shorts.svg",
  32236. extra: 1596 / 1488,
  32237. bottom: 29 / 1625
  32238. }
  32239. },
  32240. frontBiker: {
  32241. height: math.unit(3.5, "meters"),
  32242. weight: math.unit(1200, "kg"),
  32243. name: "Front (Biker)",
  32244. image: {
  32245. source: "./media/characters/joanna/front-biker.svg",
  32246. extra: 1596 / 1488,
  32247. bottom: 29 / 1625
  32248. }
  32249. },
  32250. backBiker: {
  32251. height: math.unit(3.5, "meters"),
  32252. weight: math.unit(1200, "kg"),
  32253. name: "Back (Biker)",
  32254. image: {
  32255. source: "./media/characters/joanna/back-biker.svg",
  32256. extra: 1594 / 1495,
  32257. bottom: 88 / 1682
  32258. }
  32259. },
  32260. bikeLeft: {
  32261. height: math.unit(2.4, "meters"),
  32262. weight: math.unit(1600, "kg"),
  32263. name: "Bike (Left)",
  32264. image: {
  32265. source: "./media/characters/joanna/bike-left.svg",
  32266. extra: 720 / 720,
  32267. bottom: 8 / 728
  32268. }
  32269. },
  32270. bikeRight: {
  32271. height: math.unit(2.4, "meters"),
  32272. weight: math.unit(1600, "kg"),
  32273. name: "Bike (Right)",
  32274. image: {
  32275. source: "./media/characters/joanna/bike-right.svg",
  32276. extra: 720 / 720,
  32277. bottom: 8 / 728
  32278. }
  32279. },
  32280. },
  32281. [
  32282. {
  32283. name: "Incognito",
  32284. height: math.unit(3.5, "meters")
  32285. },
  32286. {
  32287. name: "Casual Big",
  32288. height: math.unit(200, "meters")
  32289. },
  32290. {
  32291. name: "Macro",
  32292. height: math.unit(600, "meters")
  32293. },
  32294. {
  32295. name: "Original",
  32296. height: math.unit(20, "km"),
  32297. default: true
  32298. },
  32299. {
  32300. name: "Giga",
  32301. height: math.unit(400, "km")
  32302. },
  32303. {
  32304. name: "Lounging",
  32305. height: math.unit(1500, "km")
  32306. },
  32307. {
  32308. name: "Planetary",
  32309. height: math.unit(200000, "km")
  32310. },
  32311. ]
  32312. ))
  32313. characterMakers.push(() => makeCharacter(
  32314. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32315. {
  32316. front: {
  32317. height: math.unit(6, "feet"),
  32318. weight: math.unit(150, "lb"),
  32319. name: "Front",
  32320. image: {
  32321. source: "./media/characters/hugo-sigil/front.svg",
  32322. extra: 522 / 500,
  32323. bottom: 2 / 524
  32324. }
  32325. },
  32326. back: {
  32327. height: math.unit(6, "feet"),
  32328. weight: math.unit(150, "lb"),
  32329. name: "Back",
  32330. image: {
  32331. source: "./media/characters/hugo-sigil/back.svg",
  32332. extra: 519 / 495,
  32333. bottom: 5 / 524
  32334. }
  32335. },
  32336. maw: {
  32337. height: math.unit(1.4, "feet"),
  32338. weight: math.unit(150, "lb"),
  32339. name: "Maw",
  32340. image: {
  32341. source: "./media/characters/hugo-sigil/maw.svg"
  32342. }
  32343. },
  32344. feet: {
  32345. height: math.unit(1.56, "feet"),
  32346. weight: math.unit(150, "lb"),
  32347. name: "Feet",
  32348. image: {
  32349. source: "./media/characters/hugo-sigil/feet.svg",
  32350. extra: 177 / 177,
  32351. bottom: 12 / 189
  32352. }
  32353. },
  32354. },
  32355. [
  32356. {
  32357. name: "Normal",
  32358. height: math.unit(6, "feet")
  32359. },
  32360. {
  32361. name: "Macro",
  32362. height: math.unit(200, "feet"),
  32363. default: true
  32364. },
  32365. ]
  32366. ))
  32367. characterMakers.push(() => makeCharacter(
  32368. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32369. {
  32370. front: {
  32371. height: math.unit(6, "feet"),
  32372. weight: math.unit(150, "lb"),
  32373. name: "Front",
  32374. image: {
  32375. source: "./media/characters/peri/front.svg",
  32376. extra: 2354 / 2233,
  32377. bottom: 49 / 2403
  32378. }
  32379. },
  32380. },
  32381. [
  32382. {
  32383. name: "Really Small",
  32384. height: math.unit(1, "nm")
  32385. },
  32386. {
  32387. name: "Micro",
  32388. height: math.unit(4, "inches")
  32389. },
  32390. {
  32391. name: "Normal",
  32392. height: math.unit(7, "inches"),
  32393. default: true
  32394. },
  32395. {
  32396. name: "Macro",
  32397. height: math.unit(400, "feet")
  32398. },
  32399. {
  32400. name: "Megamacro",
  32401. height: math.unit(100, "miles")
  32402. },
  32403. ]
  32404. ))
  32405. characterMakers.push(() => makeCharacter(
  32406. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32407. {
  32408. frontSlim: {
  32409. height: math.unit(7, "feet"),
  32410. name: "Front (Slim)",
  32411. image: {
  32412. source: "./media/characters/issilora/front-slim.svg",
  32413. extra: 529 / 449,
  32414. bottom: 53 / 582
  32415. }
  32416. },
  32417. sideSlim: {
  32418. height: math.unit(7, "feet"),
  32419. name: "Side (Slim)",
  32420. image: {
  32421. source: "./media/characters/issilora/side-slim.svg",
  32422. extra: 570 / 480,
  32423. bottom: 30 / 600
  32424. }
  32425. },
  32426. backSlim: {
  32427. height: math.unit(7, "feet"),
  32428. name: "Back (Slim)",
  32429. image: {
  32430. source: "./media/characters/issilora/back-slim.svg",
  32431. extra: 537 / 455,
  32432. bottom: 46 / 583
  32433. }
  32434. },
  32435. frontBuff: {
  32436. height: math.unit(7, "feet"),
  32437. name: "Front (Buff)",
  32438. image: {
  32439. source: "./media/characters/issilora/front-buff.svg",
  32440. extra: 2310 / 2035,
  32441. bottom: 335 / 2645
  32442. }
  32443. },
  32444. head: {
  32445. height: math.unit(1.94, "feet"),
  32446. name: "Head",
  32447. image: {
  32448. source: "./media/characters/issilora/head.svg"
  32449. }
  32450. },
  32451. },
  32452. [
  32453. {
  32454. name: "Minimum",
  32455. height: math.unit(7, "feet")
  32456. },
  32457. {
  32458. name: "Comfortable",
  32459. height: math.unit(17, "feet")
  32460. },
  32461. {
  32462. name: "Fun Size",
  32463. height: math.unit(47, "feet")
  32464. },
  32465. {
  32466. name: "Natural Macro",
  32467. height: math.unit(137, "feet"),
  32468. default: true
  32469. },
  32470. {
  32471. name: "Maximum Kaiju",
  32472. height: math.unit(397, "feet")
  32473. },
  32474. ]
  32475. ))
  32476. characterMakers.push(() => makeCharacter(
  32477. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32478. {
  32479. front: {
  32480. height: math.unit(50 + 9/12, "feet"),
  32481. weight: math.unit(32.8, "tons"),
  32482. name: "Front",
  32483. image: {
  32484. source: "./media/characters/irb'iiritaahn/front.svg",
  32485. extra: 1878/1826,
  32486. bottom: 326/2204
  32487. }
  32488. },
  32489. back: {
  32490. height: math.unit(50 + 9/12, "feet"),
  32491. weight: math.unit(32.8, "tons"),
  32492. name: "Back",
  32493. image: {
  32494. source: "./media/characters/irb'iiritaahn/back.svg",
  32495. extra: 2052/2018,
  32496. bottom: 152/2204
  32497. }
  32498. },
  32499. head: {
  32500. height: math.unit(12.86, "feet"),
  32501. name: "Head",
  32502. image: {
  32503. source: "./media/characters/irb'iiritaahn/head.svg"
  32504. }
  32505. },
  32506. maw: {
  32507. height: math.unit(9.66, "feet"),
  32508. name: "Maw",
  32509. image: {
  32510. source: "./media/characters/irb'iiritaahn/maw.svg"
  32511. }
  32512. },
  32513. frontDick: {
  32514. height: math.unit(8.78461, "feet"),
  32515. name: "Front Dick",
  32516. image: {
  32517. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32518. }
  32519. },
  32520. rearDick: {
  32521. height: math.unit(8.78461, "feet"),
  32522. name: "Rear Dick",
  32523. image: {
  32524. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32525. }
  32526. },
  32527. rearDickUnfolded: {
  32528. height: math.unit(8.78, "feet"),
  32529. name: "Rear Dick (Unfolded)",
  32530. image: {
  32531. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32532. }
  32533. },
  32534. wings: {
  32535. height: math.unit(43, "feet"),
  32536. name: "Wings",
  32537. image: {
  32538. source: "./media/characters/irb'iiritaahn/wings.svg"
  32539. }
  32540. },
  32541. },
  32542. [
  32543. {
  32544. name: "Macro",
  32545. height: math.unit(50 + 9/12, "feet"),
  32546. default: true
  32547. },
  32548. ]
  32549. ))
  32550. characterMakers.push(() => makeCharacter(
  32551. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32552. {
  32553. front: {
  32554. height: math.unit(205, "cm"),
  32555. weight: math.unit(102, "kg"),
  32556. name: "Front",
  32557. image: {
  32558. source: "./media/characters/irbisgreif/front.svg",
  32559. extra: 785/706,
  32560. bottom: 13/798
  32561. }
  32562. },
  32563. back: {
  32564. height: math.unit(205, "cm"),
  32565. weight: math.unit(102, "kg"),
  32566. name: "Back",
  32567. image: {
  32568. source: "./media/characters/irbisgreif/back.svg",
  32569. extra: 713/701,
  32570. bottom: 26/739
  32571. }
  32572. },
  32573. frontDressed: {
  32574. height: math.unit(216, "cm"),
  32575. weight: math.unit(102, "kg"),
  32576. name: "Front-dressed",
  32577. image: {
  32578. source: "./media/characters/irbisgreif/front-dressed.svg",
  32579. extra: 902/776,
  32580. bottom: 14/916
  32581. }
  32582. },
  32583. sideDressed: {
  32584. height: math.unit(195, "cm"),
  32585. weight: math.unit(102, "kg"),
  32586. name: "Side-dressed",
  32587. image: {
  32588. source: "./media/characters/irbisgreif/side-dressed.svg",
  32589. extra: 788/688,
  32590. bottom: 21/809
  32591. }
  32592. },
  32593. backDressed: {
  32594. height: math.unit(216, "cm"),
  32595. weight: math.unit(102, "kg"),
  32596. name: "Back-dressed",
  32597. image: {
  32598. source: "./media/characters/irbisgreif/back-dressed.svg",
  32599. extra: 901/783,
  32600. bottom: 10/911
  32601. }
  32602. },
  32603. dick: {
  32604. height: math.unit(0.49, "feet"),
  32605. name: "Dick",
  32606. image: {
  32607. source: "./media/characters/irbisgreif/dick.svg"
  32608. }
  32609. },
  32610. wingTop: {
  32611. height: math.unit(1.93 , "feet"),
  32612. name: "Wing-top",
  32613. image: {
  32614. source: "./media/characters/irbisgreif/wing-top.svg"
  32615. }
  32616. },
  32617. wingBottom: {
  32618. height: math.unit(1.93 , "feet"),
  32619. name: "Wing-bottom",
  32620. image: {
  32621. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32622. }
  32623. },
  32624. },
  32625. [
  32626. {
  32627. name: "Normal",
  32628. height: math.unit(216, "cm"),
  32629. default: true
  32630. },
  32631. ]
  32632. ))
  32633. characterMakers.push(() => makeCharacter(
  32634. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32635. {
  32636. front: {
  32637. height: math.unit(6, "feet"),
  32638. weight: math.unit(150, "lb"),
  32639. name: "Front",
  32640. image: {
  32641. source: "./media/characters/pride/front.svg",
  32642. extra: 1299/1230,
  32643. bottom: 18/1317
  32644. }
  32645. },
  32646. },
  32647. [
  32648. {
  32649. name: "Normal",
  32650. height: math.unit(7, "feet")
  32651. },
  32652. {
  32653. name: "Mini-macro",
  32654. height: math.unit(11, "feet")
  32655. },
  32656. {
  32657. name: "Macro",
  32658. height: math.unit(15, "meters"),
  32659. default: true
  32660. },
  32661. {
  32662. name: "Macro+",
  32663. height: math.unit(40, "meters")
  32664. },
  32665. ]
  32666. ))
  32667. characterMakers.push(() => makeCharacter(
  32668. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32669. {
  32670. front: {
  32671. height: math.unit(4 + 2 / 12, "feet"),
  32672. weight: math.unit(95, "lb"),
  32673. name: "Front",
  32674. image: {
  32675. source: "./media/characters/vaelophis-nyx/front.svg",
  32676. extra: 2532/2330,
  32677. bottom: 0/2532
  32678. }
  32679. },
  32680. back: {
  32681. height: math.unit(4 + 2 / 12, "feet"),
  32682. weight: math.unit(95, "lb"),
  32683. name: "Back",
  32684. image: {
  32685. source: "./media/characters/vaelophis-nyx/back.svg",
  32686. extra: 2484/2361,
  32687. bottom: 0/2484
  32688. }
  32689. },
  32690. feralSide: {
  32691. height: math.unit(2 + 1/12, "feet"),
  32692. weight: math.unit(20, "lb"),
  32693. name: "Feral (Side)",
  32694. image: {
  32695. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32696. extra: 1721/1581,
  32697. bottom: 70/1791
  32698. }
  32699. },
  32700. feralLazing: {
  32701. height: math.unit(1.08, "feet"),
  32702. weight: math.unit(20, "lb"),
  32703. name: "Feral (Lazing)",
  32704. image: {
  32705. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32706. extra: 822/822,
  32707. bottom: 248/1070
  32708. }
  32709. },
  32710. ear: {
  32711. height: math.unit(0.416, "feet"),
  32712. name: "Ear",
  32713. image: {
  32714. source: "./media/characters/vaelophis-nyx/ear.svg"
  32715. }
  32716. },
  32717. eye: {
  32718. height: math.unit(0.0748, "feet"),
  32719. name: "Eye",
  32720. image: {
  32721. source: "./media/characters/vaelophis-nyx/eye.svg"
  32722. }
  32723. },
  32724. mouth: {
  32725. height: math.unit(0.378, "feet"),
  32726. name: "Mouth",
  32727. image: {
  32728. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32729. }
  32730. },
  32731. spade: {
  32732. height: math.unit(0.55, "feet"),
  32733. name: "Spade",
  32734. image: {
  32735. source: "./media/characters/vaelophis-nyx/spade.svg"
  32736. }
  32737. },
  32738. },
  32739. [
  32740. {
  32741. name: "Normal",
  32742. height: math.unit(4 + 2/12, "feet"),
  32743. default: true
  32744. },
  32745. ]
  32746. ))
  32747. characterMakers.push(() => makeCharacter(
  32748. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32749. {
  32750. front: {
  32751. height: math.unit(7, "feet"),
  32752. weight: math.unit(231, "lb"),
  32753. name: "Front",
  32754. image: {
  32755. source: "./media/characters/flux/front.svg",
  32756. extra: 919/871,
  32757. bottom: 0/919
  32758. }
  32759. },
  32760. back: {
  32761. height: math.unit(7, "feet"),
  32762. weight: math.unit(231, "lb"),
  32763. name: "Back",
  32764. image: {
  32765. source: "./media/characters/flux/back.svg",
  32766. extra: 1040/992,
  32767. bottom: 0/1040
  32768. }
  32769. },
  32770. frontDressed: {
  32771. height: math.unit(7, "feet"),
  32772. weight: math.unit(231, "lb"),
  32773. name: "Front (Dressed)",
  32774. image: {
  32775. source: "./media/characters/flux/front-dressed.svg",
  32776. extra: 919/871,
  32777. bottom: 0/919
  32778. }
  32779. },
  32780. feralSide: {
  32781. height: math.unit(5, "feet"),
  32782. weight: math.unit(150, "lb"),
  32783. name: "Feral (Side)",
  32784. image: {
  32785. source: "./media/characters/flux/feral-side.svg",
  32786. extra: 598/528,
  32787. bottom: 28/626
  32788. }
  32789. },
  32790. head: {
  32791. height: math.unit(1.585, "feet"),
  32792. name: "Head",
  32793. image: {
  32794. source: "./media/characters/flux/head.svg"
  32795. }
  32796. },
  32797. headSide: {
  32798. height: math.unit(1.74, "feet"),
  32799. name: "Head (Side)",
  32800. image: {
  32801. source: "./media/characters/flux/head-side.svg"
  32802. }
  32803. },
  32804. headSideFire: {
  32805. height: math.unit(1.76, "feet"),
  32806. name: "Head (Side, Fire)",
  32807. image: {
  32808. source: "./media/characters/flux/head-side-fire.svg"
  32809. }
  32810. },
  32811. },
  32812. [
  32813. {
  32814. name: "Normal",
  32815. height: math.unit(7, "feet"),
  32816. default: true
  32817. },
  32818. ]
  32819. ))
  32820. characterMakers.push(() => makeCharacter(
  32821. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32822. {
  32823. front: {
  32824. height: math.unit(9, "feet"),
  32825. weight: math.unit(1012, "lb"),
  32826. name: "Front",
  32827. image: {
  32828. source: "./media/characters/ulfra-lupae/front.svg",
  32829. extra: 1083/1011,
  32830. bottom: 67/1150
  32831. }
  32832. },
  32833. },
  32834. [
  32835. {
  32836. name: "Micro",
  32837. height: math.unit(6, "inches")
  32838. },
  32839. {
  32840. name: "Socializing",
  32841. height: math.unit(6 + 5/12, "feet")
  32842. },
  32843. {
  32844. name: "Normal",
  32845. height: math.unit(9, "feet"),
  32846. default: true
  32847. },
  32848. {
  32849. name: "Macro",
  32850. height: math.unit(150, "feet")
  32851. },
  32852. ]
  32853. ))
  32854. characterMakers.push(() => makeCharacter(
  32855. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32856. {
  32857. front: {
  32858. height: math.unit(5 + 2/12, "feet"),
  32859. weight: math.unit(120, "lb"),
  32860. name: "Front",
  32861. image: {
  32862. source: "./media/characters/timber/front.svg",
  32863. extra: 2814/2705,
  32864. bottom: 181/2995
  32865. }
  32866. },
  32867. },
  32868. [
  32869. {
  32870. name: "Normal",
  32871. height: math.unit(5 + 2/12, "feet"),
  32872. default: true
  32873. },
  32874. ]
  32875. ))
  32876. characterMakers.push(() => makeCharacter(
  32877. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32878. {
  32879. front: {
  32880. height: math.unit(9, "feet"),
  32881. name: "Front",
  32882. image: {
  32883. source: "./media/characters/nicki/front.svg",
  32884. extra: 1240/990,
  32885. bottom: 45/1285
  32886. },
  32887. form: "anthro",
  32888. default: true
  32889. },
  32890. side: {
  32891. height: math.unit(9, "feet"),
  32892. name: "Side",
  32893. image: {
  32894. source: "./media/characters/nicki/side.svg",
  32895. extra: 1047/973,
  32896. bottom: 61/1108
  32897. },
  32898. form: "anthro"
  32899. },
  32900. back: {
  32901. height: math.unit(9, "feet"),
  32902. name: "Back",
  32903. image: {
  32904. source: "./media/characters/nicki/back.svg",
  32905. extra: 1006/965,
  32906. bottom: 39/1045
  32907. },
  32908. form: "anthro"
  32909. },
  32910. taur: {
  32911. height: math.unit(15, "feet"),
  32912. name: "Taur",
  32913. image: {
  32914. source: "./media/characters/nicki/taur.svg",
  32915. extra: 1592/1347,
  32916. bottom: 0/1592
  32917. },
  32918. form: "taur",
  32919. default: true
  32920. },
  32921. },
  32922. [
  32923. {
  32924. name: "Normal",
  32925. height: math.unit(9, "feet"),
  32926. form: "anthro",
  32927. default: true
  32928. },
  32929. {
  32930. name: "Normal",
  32931. height: math.unit(15, "feet"),
  32932. form: "taur",
  32933. default: true
  32934. }
  32935. ],
  32936. {
  32937. "anthro": {
  32938. name: "Anthro",
  32939. default: true
  32940. },
  32941. "taur": {
  32942. name: "Taur"
  32943. }
  32944. }
  32945. ))
  32946. characterMakers.push(() => makeCharacter(
  32947. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32948. {
  32949. front: {
  32950. height: math.unit(7 + 10/12, "feet"),
  32951. weight: math.unit(3.5, "tons"),
  32952. name: "Front",
  32953. image: {
  32954. source: "./media/characters/lee/front.svg",
  32955. extra: 1773/1615,
  32956. bottom: 86/1859
  32957. }
  32958. },
  32959. hand: {
  32960. height: math.unit(1.78, "feet"),
  32961. name: "Hand",
  32962. image: {
  32963. source: "./media/characters/lee/hand.svg"
  32964. }
  32965. },
  32966. maw: {
  32967. height: math.unit(1.18, "feet"),
  32968. name: "Maw",
  32969. image: {
  32970. source: "./media/characters/lee/maw.svg"
  32971. }
  32972. },
  32973. },
  32974. [
  32975. {
  32976. name: "Normal",
  32977. height: math.unit(7 + 10/12, "feet"),
  32978. default: true
  32979. },
  32980. ]
  32981. ))
  32982. characterMakers.push(() => makeCharacter(
  32983. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32984. {
  32985. front: {
  32986. height: math.unit(9, "feet"),
  32987. name: "Front",
  32988. image: {
  32989. source: "./media/characters/guti/front.svg",
  32990. extra: 4551/4355,
  32991. bottom: 123/4674
  32992. }
  32993. },
  32994. tongue: {
  32995. height: math.unit(1, "feet"),
  32996. name: "Tongue",
  32997. image: {
  32998. source: "./media/characters/guti/tongue.svg"
  32999. }
  33000. },
  33001. paw: {
  33002. height: math.unit(1.18, "feet"),
  33003. name: "Paw",
  33004. image: {
  33005. source: "./media/characters/guti/paw.svg"
  33006. }
  33007. },
  33008. },
  33009. [
  33010. {
  33011. name: "Normal",
  33012. height: math.unit(9, "feet"),
  33013. default: true
  33014. },
  33015. ]
  33016. ))
  33017. characterMakers.push(() => makeCharacter(
  33018. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33019. {
  33020. side: {
  33021. height: math.unit(5, "meters"),
  33022. name: "Side",
  33023. image: {
  33024. source: "./media/characters/vesper/side.svg",
  33025. extra: 1605/1518,
  33026. bottom: 0/1605
  33027. }
  33028. },
  33029. },
  33030. [
  33031. {
  33032. name: "Small",
  33033. height: math.unit(5, "meters")
  33034. },
  33035. {
  33036. name: "Sage",
  33037. height: math.unit(100, "meters"),
  33038. default: true
  33039. },
  33040. {
  33041. name: "Fun Size",
  33042. height: math.unit(600, "meters")
  33043. },
  33044. {
  33045. name: "Goddess",
  33046. height: math.unit(20000, "km")
  33047. },
  33048. {
  33049. name: "Maximum",
  33050. height: math.unit(5, "galaxies")
  33051. },
  33052. ]
  33053. ))
  33054. characterMakers.push(() => makeCharacter(
  33055. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33056. {
  33057. front: {
  33058. height: math.unit(6 + 3/12, "feet"),
  33059. weight: math.unit(190, "lb"),
  33060. name: "Front",
  33061. image: {
  33062. source: "./media/characters/gawain/front.svg",
  33063. extra: 2222/2139,
  33064. bottom: 90/2312
  33065. }
  33066. },
  33067. back: {
  33068. height: math.unit(6 + 3/12, "feet"),
  33069. weight: math.unit(190, "lb"),
  33070. name: "Back",
  33071. image: {
  33072. source: "./media/characters/gawain/back.svg",
  33073. extra: 2199/2111,
  33074. bottom: 73/2272
  33075. }
  33076. },
  33077. },
  33078. [
  33079. {
  33080. name: "Normal",
  33081. height: math.unit(6 + 3/12, "feet"),
  33082. default: true
  33083. },
  33084. ]
  33085. ))
  33086. characterMakers.push(() => makeCharacter(
  33087. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33088. {
  33089. side: {
  33090. height: math.unit(3.5, "meters"),
  33091. weight: math.unit(16000, "lb"),
  33092. name: "Side",
  33093. image: {
  33094. source: "./media/characters/dascalti/side.svg",
  33095. extra: 392/273,
  33096. bottom: 47/439
  33097. }
  33098. },
  33099. breath: {
  33100. height: math.unit(7.4, "feet"),
  33101. name: "Breath",
  33102. image: {
  33103. source: "./media/characters/dascalti/breath.svg"
  33104. }
  33105. },
  33106. fed: {
  33107. height: math.unit(3.6, "meters"),
  33108. weight: math.unit(16000, "lb"),
  33109. name: "Fed",
  33110. image: {
  33111. source: "./media/characters/dascalti/fed.svg",
  33112. extra: 1419/820,
  33113. bottom: 95/1514
  33114. }
  33115. },
  33116. },
  33117. [
  33118. {
  33119. name: "Normal",
  33120. height: math.unit(3.5, "meters"),
  33121. default: true
  33122. },
  33123. ]
  33124. ))
  33125. characterMakers.push(() => makeCharacter(
  33126. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33127. {
  33128. front: {
  33129. height: math.unit(3 + 5/12, "feet"),
  33130. name: "Front",
  33131. image: {
  33132. source: "./media/characters/mauve/front.svg",
  33133. extra: 1126/1033,
  33134. bottom: 65/1191
  33135. }
  33136. },
  33137. side: {
  33138. height: math.unit(3 + 5/12, "feet"),
  33139. name: "Side",
  33140. image: {
  33141. source: "./media/characters/mauve/side.svg",
  33142. extra: 1089/1001,
  33143. bottom: 29/1118
  33144. }
  33145. },
  33146. back: {
  33147. height: math.unit(3 + 5/12, "feet"),
  33148. name: "Back",
  33149. image: {
  33150. source: "./media/characters/mauve/back.svg",
  33151. extra: 1173/1053,
  33152. bottom: 109/1282
  33153. }
  33154. },
  33155. },
  33156. [
  33157. {
  33158. name: "Normal",
  33159. height: math.unit(3 + 5/12, "feet"),
  33160. default: true
  33161. },
  33162. ]
  33163. ))
  33164. characterMakers.push(() => makeCharacter(
  33165. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33166. {
  33167. front: {
  33168. height: math.unit(6 + 3/12, "feet"),
  33169. weight: math.unit(430, "lb"),
  33170. name: "Front",
  33171. image: {
  33172. source: "./media/characters/carlos/front.svg",
  33173. extra: 1964/1913,
  33174. bottom: 70/2034
  33175. }
  33176. },
  33177. },
  33178. [
  33179. {
  33180. name: "Normal",
  33181. height: math.unit(6 + 3/12, "feet"),
  33182. default: true
  33183. },
  33184. ]
  33185. ))
  33186. characterMakers.push(() => makeCharacter(
  33187. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33188. {
  33189. back: {
  33190. height: math.unit(5 + 10/12, "feet"),
  33191. weight: math.unit(200, "lb"),
  33192. name: "Back",
  33193. image: {
  33194. source: "./media/characters/jax/back.svg",
  33195. extra: 764/739,
  33196. bottom: 25/789
  33197. }
  33198. },
  33199. },
  33200. [
  33201. {
  33202. name: "Normal",
  33203. height: math.unit(5 + 10/12, "feet"),
  33204. default: true
  33205. },
  33206. ]
  33207. ))
  33208. characterMakers.push(() => makeCharacter(
  33209. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33210. {
  33211. front: {
  33212. height: math.unit(8, "feet"),
  33213. weight: math.unit(250, "lb"),
  33214. name: "Front",
  33215. image: {
  33216. source: "./media/characters/eikthynir/front.svg",
  33217. extra: 1332/1166,
  33218. bottom: 82/1414
  33219. }
  33220. },
  33221. back: {
  33222. height: math.unit(8, "feet"),
  33223. weight: math.unit(250, "lb"),
  33224. name: "Back",
  33225. image: {
  33226. source: "./media/characters/eikthynir/back.svg",
  33227. extra: 1342/1190,
  33228. bottom: 19/1361
  33229. }
  33230. },
  33231. dick: {
  33232. height: math.unit(2.35, "feet"),
  33233. name: "Dick",
  33234. image: {
  33235. source: "./media/characters/eikthynir/dick.svg"
  33236. }
  33237. },
  33238. },
  33239. [
  33240. {
  33241. name: "Normal",
  33242. height: math.unit(8, "feet"),
  33243. default: true
  33244. },
  33245. ]
  33246. ))
  33247. characterMakers.push(() => makeCharacter(
  33248. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33249. {
  33250. front: {
  33251. height: math.unit(99, "meters"),
  33252. weight: math.unit(13000, "tons"),
  33253. name: "Front",
  33254. image: {
  33255. source: "./media/characters/zlmos/front.svg",
  33256. extra: 2202/1992,
  33257. bottom: 315/2517
  33258. }
  33259. },
  33260. },
  33261. [
  33262. {
  33263. name: "Macro",
  33264. height: math.unit(99, "meters"),
  33265. default: true
  33266. },
  33267. ]
  33268. ))
  33269. characterMakers.push(() => makeCharacter(
  33270. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33271. {
  33272. front: {
  33273. height: math.unit(6 + 5/12, "feet"),
  33274. name: "Front",
  33275. image: {
  33276. source: "./media/characters/purri/front.svg",
  33277. extra: 1698/1610,
  33278. bottom: 32/1730
  33279. }
  33280. },
  33281. frontAlt: {
  33282. height: math.unit(6 + 5/12, "feet"),
  33283. name: "Front (Alt)",
  33284. image: {
  33285. source: "./media/characters/purri/front-alt.svg",
  33286. extra: 450/420,
  33287. bottom: 26/476
  33288. }
  33289. },
  33290. boots: {
  33291. height: math.unit(5.5, "feet"),
  33292. name: "Boots",
  33293. image: {
  33294. source: "./media/characters/purri/boots.svg",
  33295. extra: 905/853,
  33296. bottom: 18/923
  33297. }
  33298. },
  33299. lying: {
  33300. height: math.unit(2, "feet"),
  33301. name: "Lying",
  33302. image: {
  33303. source: "./media/characters/purri/lying.svg",
  33304. extra: 940/843,
  33305. bottom: 146/1086
  33306. }
  33307. },
  33308. devious: {
  33309. height: math.unit(1.77, "feet"),
  33310. name: "Devious",
  33311. image: {
  33312. source: "./media/characters/purri/devious.svg",
  33313. extra: 1440/1155,
  33314. bottom: 147/1587
  33315. }
  33316. },
  33317. bean: {
  33318. height: math.unit(1.94, "feet"),
  33319. name: "Bean",
  33320. image: {
  33321. source: "./media/characters/purri/bean.svg"
  33322. }
  33323. },
  33324. },
  33325. [
  33326. {
  33327. name: "Micro",
  33328. height: math.unit(1, "mm")
  33329. },
  33330. {
  33331. name: "Normal",
  33332. height: math.unit(6 + 5/12, "feet"),
  33333. default: true
  33334. },
  33335. {
  33336. name: "Macro :3c",
  33337. height: math.unit(2, "miles")
  33338. },
  33339. ]
  33340. ))
  33341. characterMakers.push(() => makeCharacter(
  33342. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33343. {
  33344. front: {
  33345. height: math.unit(6 + 2/12, "feet"),
  33346. weight: math.unit(250, "lb"),
  33347. name: "Front",
  33348. image: {
  33349. source: "./media/characters/moonlight/front.svg",
  33350. extra: 1044/908,
  33351. bottom: 56/1100
  33352. }
  33353. },
  33354. feral: {
  33355. height: math.unit(3 + 1/12, "feet"),
  33356. weight: math.unit(50, "kg"),
  33357. name: "Feral",
  33358. image: {
  33359. source: "./media/characters/moonlight/feral.svg",
  33360. extra: 3705/2791,
  33361. bottom: 145/3850
  33362. }
  33363. },
  33364. paw: {
  33365. height: math.unit(1, "feet"),
  33366. name: "Paw",
  33367. image: {
  33368. source: "./media/characters/moonlight/paw.svg"
  33369. }
  33370. },
  33371. paws: {
  33372. height: math.unit(0.98, "feet"),
  33373. name: "Paws",
  33374. image: {
  33375. source: "./media/characters/moonlight/paws.svg",
  33376. extra: 939/939,
  33377. bottom: 50/989
  33378. }
  33379. },
  33380. mouth: {
  33381. height: math.unit(0.48, "feet"),
  33382. name: "Mouth",
  33383. image: {
  33384. source: "./media/characters/moonlight/mouth.svg"
  33385. }
  33386. },
  33387. dick: {
  33388. height: math.unit(1.46, "feet"),
  33389. name: "Dick",
  33390. image: {
  33391. source: "./media/characters/moonlight/dick.svg"
  33392. }
  33393. },
  33394. },
  33395. [
  33396. {
  33397. name: "Normal",
  33398. height: math.unit(6 + 2/12, "feet"),
  33399. default: true
  33400. },
  33401. {
  33402. name: "Macro",
  33403. height: math.unit(300, "feet")
  33404. },
  33405. {
  33406. name: "Macro+",
  33407. height: math.unit(1, "mile")
  33408. },
  33409. {
  33410. name: "Mt. Moon",
  33411. height: math.unit(5, "miles")
  33412. },
  33413. {
  33414. name: "Megamacro",
  33415. height: math.unit(15, "miles")
  33416. },
  33417. ]
  33418. ))
  33419. characterMakers.push(() => makeCharacter(
  33420. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33421. {
  33422. back: {
  33423. height: math.unit(6, "feet"),
  33424. weight: math.unit(150, "lb"),
  33425. name: "Back",
  33426. image: {
  33427. source: "./media/characters/sylen/back.svg",
  33428. extra: 1335/1273,
  33429. bottom: 107/1442
  33430. }
  33431. },
  33432. },
  33433. [
  33434. {
  33435. name: "Normal",
  33436. height: math.unit(5 + 5/12, "feet")
  33437. },
  33438. {
  33439. name: "Megamacro",
  33440. height: math.unit(3, "miles"),
  33441. default: true
  33442. },
  33443. ]
  33444. ))
  33445. characterMakers.push(() => makeCharacter(
  33446. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33447. {
  33448. front: {
  33449. height: math.unit(6, "feet"),
  33450. weight: math.unit(190, "lb"),
  33451. name: "Front",
  33452. image: {
  33453. source: "./media/characters/huttser/front.svg",
  33454. extra: 1152/1058,
  33455. bottom: 23/1175
  33456. }
  33457. },
  33458. side: {
  33459. height: math.unit(6, "feet"),
  33460. weight: math.unit(190, "lb"),
  33461. name: "Side",
  33462. image: {
  33463. source: "./media/characters/huttser/side.svg",
  33464. extra: 1174/1065,
  33465. bottom: 18/1192
  33466. }
  33467. },
  33468. back: {
  33469. height: math.unit(6, "feet"),
  33470. weight: math.unit(190, "lb"),
  33471. name: "Back",
  33472. image: {
  33473. source: "./media/characters/huttser/back.svg",
  33474. extra: 1158/1056,
  33475. bottom: 12/1170
  33476. }
  33477. },
  33478. },
  33479. [
  33480. ]
  33481. ))
  33482. characterMakers.push(() => makeCharacter(
  33483. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33484. {
  33485. side: {
  33486. height: math.unit(12 + 9/12, "feet"),
  33487. weight: math.unit(15000, "lb"),
  33488. name: "Side",
  33489. image: {
  33490. source: "./media/characters/faan/side.svg",
  33491. extra: 2747/2697,
  33492. bottom: 0/2747
  33493. }
  33494. },
  33495. front: {
  33496. height: math.unit(12 + 9/12, "feet"),
  33497. weight: math.unit(15000, "lb"),
  33498. name: "Front",
  33499. image: {
  33500. source: "./media/characters/faan/front.svg",
  33501. extra: 607/571,
  33502. bottom: 24/631
  33503. }
  33504. },
  33505. head: {
  33506. height: math.unit(2.85, "feet"),
  33507. name: "Head",
  33508. image: {
  33509. source: "./media/characters/faan/head.svg"
  33510. }
  33511. },
  33512. headAlt: {
  33513. height: math.unit(3.13, "feet"),
  33514. name: "Head-alt",
  33515. image: {
  33516. source: "./media/characters/faan/head-alt.svg"
  33517. }
  33518. },
  33519. },
  33520. [
  33521. {
  33522. name: "Normal",
  33523. height: math.unit(12 + 9/12, "feet"),
  33524. default: true
  33525. },
  33526. ]
  33527. ))
  33528. characterMakers.push(() => makeCharacter(
  33529. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33530. {
  33531. front: {
  33532. height: math.unit(6, "feet"),
  33533. weight: math.unit(300, "lb"),
  33534. name: "Front",
  33535. image: {
  33536. source: "./media/characters/tanio/front.svg",
  33537. extra: 711/673,
  33538. bottom: 25/736
  33539. }
  33540. },
  33541. },
  33542. [
  33543. {
  33544. name: "Normal",
  33545. height: math.unit(6, "feet"),
  33546. default: true
  33547. },
  33548. ]
  33549. ))
  33550. characterMakers.push(() => makeCharacter(
  33551. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33552. {
  33553. front: {
  33554. height: math.unit(3, "inches"),
  33555. name: "Front",
  33556. image: {
  33557. source: "./media/characters/noboru/front.svg",
  33558. extra: 1039/932,
  33559. bottom: 18/1057
  33560. }
  33561. },
  33562. },
  33563. [
  33564. {
  33565. name: "Micro",
  33566. height: math.unit(3, "inches"),
  33567. default: true
  33568. },
  33569. ]
  33570. ))
  33571. characterMakers.push(() => makeCharacter(
  33572. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33573. {
  33574. front: {
  33575. height: math.unit(1.85, "meters"),
  33576. weight: math.unit(80, "kg"),
  33577. name: "Front",
  33578. image: {
  33579. source: "./media/characters/daniel-barrett/front.svg",
  33580. extra: 355/337,
  33581. bottom: 9/364
  33582. }
  33583. },
  33584. },
  33585. [
  33586. {
  33587. name: "Pico",
  33588. height: math.unit(0.0433, "mm")
  33589. },
  33590. {
  33591. name: "Nano",
  33592. height: math.unit(1.5, "mm")
  33593. },
  33594. {
  33595. name: "Micro",
  33596. height: math.unit(5.3, "cm"),
  33597. default: true
  33598. },
  33599. {
  33600. name: "Normal",
  33601. height: math.unit(1.85, "meters")
  33602. },
  33603. {
  33604. name: "Macro",
  33605. height: math.unit(64.7, "meters")
  33606. },
  33607. {
  33608. name: "Megamacro",
  33609. height: math.unit(2.26, "km")
  33610. },
  33611. {
  33612. name: "Gigamacro",
  33613. height: math.unit(79, "km")
  33614. },
  33615. {
  33616. name: "Teramacro",
  33617. height: math.unit(2765, "km")
  33618. },
  33619. {
  33620. name: "Petamacro",
  33621. height: math.unit(96678, "km")
  33622. },
  33623. ]
  33624. ))
  33625. characterMakers.push(() => makeCharacter(
  33626. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33627. {
  33628. front: {
  33629. height: math.unit(30, "meters"),
  33630. weight: math.unit(400, "tons"),
  33631. name: "Front",
  33632. image: {
  33633. source: "./media/characters/zeel/front.svg",
  33634. extra: 2599/2599,
  33635. bottom: 226/2825
  33636. }
  33637. },
  33638. },
  33639. [
  33640. {
  33641. name: "Macro",
  33642. height: math.unit(30, "meters"),
  33643. default: true
  33644. },
  33645. ]
  33646. ))
  33647. characterMakers.push(() => makeCharacter(
  33648. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33649. {
  33650. front: {
  33651. height: math.unit(6 + 7/12, "feet"),
  33652. weight: math.unit(210, "lb"),
  33653. name: "Front",
  33654. image: {
  33655. source: "./media/characters/tarn/front.svg",
  33656. extra: 3517/3220,
  33657. bottom: 91/3608
  33658. }
  33659. },
  33660. back: {
  33661. height: math.unit(6 + 7/12, "feet"),
  33662. weight: math.unit(210, "lb"),
  33663. name: "Back",
  33664. image: {
  33665. source: "./media/characters/tarn/back.svg",
  33666. extra: 3566/3241,
  33667. bottom: 34/3600
  33668. }
  33669. },
  33670. dick: {
  33671. height: math.unit(1.65, "feet"),
  33672. name: "Dick",
  33673. image: {
  33674. source: "./media/characters/tarn/dick.svg"
  33675. }
  33676. },
  33677. paw: {
  33678. height: math.unit(1.80, "feet"),
  33679. name: "Paw",
  33680. image: {
  33681. source: "./media/characters/tarn/paw.svg"
  33682. }
  33683. },
  33684. tongue: {
  33685. height: math.unit(0.97, "feet"),
  33686. name: "Tongue",
  33687. image: {
  33688. source: "./media/characters/tarn/tongue.svg"
  33689. }
  33690. },
  33691. },
  33692. [
  33693. {
  33694. name: "Micro",
  33695. height: math.unit(4, "inches")
  33696. },
  33697. {
  33698. name: "Normal",
  33699. height: math.unit(6 + 7/12, "feet"),
  33700. default: true
  33701. },
  33702. {
  33703. name: "Macro",
  33704. height: math.unit(300, "feet")
  33705. },
  33706. ]
  33707. ))
  33708. characterMakers.push(() => makeCharacter(
  33709. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33710. {
  33711. front: {
  33712. height: math.unit(5 + 7/12, "feet"),
  33713. weight: math.unit(80, "kg"),
  33714. name: "Front",
  33715. image: {
  33716. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33717. extra: 3023/2865,
  33718. bottom: 33/3056
  33719. }
  33720. },
  33721. back: {
  33722. height: math.unit(5 + 7/12, "feet"),
  33723. weight: math.unit(80, "kg"),
  33724. name: "Back",
  33725. image: {
  33726. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33727. extra: 3020/2886,
  33728. bottom: 30/3050
  33729. }
  33730. },
  33731. dick: {
  33732. height: math.unit(0.98, "feet"),
  33733. name: "Dick",
  33734. image: {
  33735. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33736. }
  33737. },
  33738. anatomy: {
  33739. height: math.unit(2.86, "feet"),
  33740. name: "Anatomy",
  33741. image: {
  33742. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33743. }
  33744. },
  33745. },
  33746. [
  33747. {
  33748. name: "Really Small",
  33749. height: math.unit(2, "inches")
  33750. },
  33751. {
  33752. name: "Micro",
  33753. height: math.unit(5.583, "inches")
  33754. },
  33755. {
  33756. name: "Normal",
  33757. height: math.unit(5 + 7/12, "feet"),
  33758. default: true
  33759. },
  33760. {
  33761. name: "Macro",
  33762. height: math.unit(67, "feet")
  33763. },
  33764. {
  33765. name: "Megamacro",
  33766. height: math.unit(134, "feet")
  33767. },
  33768. ]
  33769. ))
  33770. characterMakers.push(() => makeCharacter(
  33771. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33772. {
  33773. front: {
  33774. height: math.unit(9, "feet"),
  33775. weight: math.unit(120, "lb"),
  33776. name: "Front",
  33777. image: {
  33778. source: "./media/characters/sally/front.svg",
  33779. extra: 1506/1349,
  33780. bottom: 66/1572
  33781. }
  33782. },
  33783. },
  33784. [
  33785. {
  33786. name: "Normal",
  33787. height: math.unit(9, "feet"),
  33788. default: true
  33789. },
  33790. ]
  33791. ))
  33792. characterMakers.push(() => makeCharacter(
  33793. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33794. {
  33795. front: {
  33796. height: math.unit(8, "feet"),
  33797. weight: math.unit(900, "lb"),
  33798. name: "Front",
  33799. image: {
  33800. source: "./media/characters/owen/front.svg",
  33801. extra: 1761/1657,
  33802. bottom: 74/1835
  33803. }
  33804. },
  33805. side: {
  33806. height: math.unit(8, "feet"),
  33807. weight: math.unit(900, "lb"),
  33808. name: "Side",
  33809. image: {
  33810. source: "./media/characters/owen/side.svg",
  33811. extra: 1797/1734,
  33812. bottom: 30/1827
  33813. }
  33814. },
  33815. back: {
  33816. height: math.unit(8, "feet"),
  33817. weight: math.unit(900, "lb"),
  33818. name: "Back",
  33819. image: {
  33820. source: "./media/characters/owen/back.svg",
  33821. extra: 1796/1706,
  33822. bottom: 59/1855
  33823. }
  33824. },
  33825. maw: {
  33826. height: math.unit(1.76, "feet"),
  33827. name: "Maw",
  33828. image: {
  33829. source: "./media/characters/owen/maw.svg"
  33830. }
  33831. },
  33832. },
  33833. [
  33834. {
  33835. name: "Normal",
  33836. height: math.unit(8, "feet"),
  33837. default: true
  33838. },
  33839. ]
  33840. ))
  33841. characterMakers.push(() => makeCharacter(
  33842. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33843. {
  33844. front: {
  33845. height: math.unit(4, "feet"),
  33846. weight: math.unit(400, "lb"),
  33847. name: "Front",
  33848. image: {
  33849. source: "./media/characters/ryth/front.svg",
  33850. extra: 1920/1748,
  33851. bottom: 42/1962
  33852. }
  33853. },
  33854. back: {
  33855. height: math.unit(4, "feet"),
  33856. weight: math.unit(400, "lb"),
  33857. name: "Back",
  33858. image: {
  33859. source: "./media/characters/ryth/back.svg",
  33860. extra: 1897/1690,
  33861. bottom: 89/1986
  33862. }
  33863. },
  33864. mouth: {
  33865. height: math.unit(1.39, "feet"),
  33866. name: "Mouth",
  33867. image: {
  33868. source: "./media/characters/ryth/mouth.svg"
  33869. }
  33870. },
  33871. tailmaw: {
  33872. height: math.unit(1.23, "feet"),
  33873. name: "Tailmaw",
  33874. image: {
  33875. source: "./media/characters/ryth/tailmaw.svg"
  33876. }
  33877. },
  33878. goia: {
  33879. height: math.unit(4, "meters"),
  33880. weight: math.unit(10800, "lb"),
  33881. name: "Goia",
  33882. image: {
  33883. source: "./media/characters/ryth/goia.svg",
  33884. extra: 745/640,
  33885. bottom: 107/852
  33886. }
  33887. },
  33888. goiaFront: {
  33889. height: math.unit(4, "meters"),
  33890. weight: math.unit(10800, "lb"),
  33891. name: "Goia (Front)",
  33892. image: {
  33893. source: "./media/characters/ryth/goia-front.svg",
  33894. extra: 750/586,
  33895. bottom: 114/864
  33896. }
  33897. },
  33898. goiaMaw: {
  33899. height: math.unit(5.55, "feet"),
  33900. name: "Goia Maw",
  33901. image: {
  33902. source: "./media/characters/ryth/goia-maw.svg"
  33903. }
  33904. },
  33905. goiaForepaw: {
  33906. height: math.unit(3.5, "feet"),
  33907. name: "Goia Forepaw",
  33908. image: {
  33909. source: "./media/characters/ryth/goia-forepaw.svg"
  33910. }
  33911. },
  33912. goiaHindpaw: {
  33913. height: math.unit(5.55, "feet"),
  33914. name: "Goia Hindpaw",
  33915. image: {
  33916. source: "./media/characters/ryth/goia-hindpaw.svg"
  33917. }
  33918. },
  33919. },
  33920. [
  33921. {
  33922. name: "Normal",
  33923. height: math.unit(4, "feet"),
  33924. default: true
  33925. },
  33926. ]
  33927. ))
  33928. characterMakers.push(() => makeCharacter(
  33929. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33930. {
  33931. front: {
  33932. height: math.unit(7, "feet"),
  33933. weight: math.unit(180, "lb"),
  33934. name: "Front",
  33935. image: {
  33936. source: "./media/characters/necrolance/front.svg",
  33937. extra: 1062/947,
  33938. bottom: 41/1103
  33939. }
  33940. },
  33941. back: {
  33942. height: math.unit(7, "feet"),
  33943. weight: math.unit(180, "lb"),
  33944. name: "Back",
  33945. image: {
  33946. source: "./media/characters/necrolance/back.svg",
  33947. extra: 1045/984,
  33948. bottom: 14/1059
  33949. }
  33950. },
  33951. wing: {
  33952. height: math.unit(2.67, "feet"),
  33953. name: "Wing",
  33954. image: {
  33955. source: "./media/characters/necrolance/wing.svg"
  33956. }
  33957. },
  33958. },
  33959. [
  33960. {
  33961. name: "Normal",
  33962. height: math.unit(7, "feet"),
  33963. default: true
  33964. },
  33965. ]
  33966. ))
  33967. characterMakers.push(() => makeCharacter(
  33968. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33969. {
  33970. front: {
  33971. height: math.unit(76, "meters"),
  33972. weight: math.unit(30000, "tons"),
  33973. name: "Front",
  33974. image: {
  33975. source: "./media/characters/tyler/front.svg",
  33976. extra: 1640/1640,
  33977. bottom: 114/1754
  33978. }
  33979. },
  33980. },
  33981. [
  33982. {
  33983. name: "Macro",
  33984. height: math.unit(76, "meters"),
  33985. default: true
  33986. },
  33987. ]
  33988. ))
  33989. characterMakers.push(() => makeCharacter(
  33990. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33991. {
  33992. front: {
  33993. height: math.unit(4 + 11/12, "feet"),
  33994. weight: math.unit(132, "lb"),
  33995. name: "Front",
  33996. image: {
  33997. source: "./media/characters/icey/front.svg",
  33998. extra: 2750/2550,
  33999. bottom: 33/2783
  34000. }
  34001. },
  34002. back: {
  34003. height: math.unit(4 + 11/12, "feet"),
  34004. weight: math.unit(132, "lb"),
  34005. name: "Back",
  34006. image: {
  34007. source: "./media/characters/icey/back.svg",
  34008. extra: 2624/2481,
  34009. bottom: 35/2659
  34010. }
  34011. },
  34012. },
  34013. [
  34014. {
  34015. name: "Normal",
  34016. height: math.unit(4 + 11/12, "feet"),
  34017. default: true
  34018. },
  34019. ]
  34020. ))
  34021. characterMakers.push(() => makeCharacter(
  34022. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34023. {
  34024. front: {
  34025. height: math.unit(100, "feet"),
  34026. weight: math.unit(0, "lb"),
  34027. name: "Front",
  34028. image: {
  34029. source: "./media/characters/smile/front.svg",
  34030. extra: 2983/2912,
  34031. bottom: 162/3145
  34032. }
  34033. },
  34034. back: {
  34035. height: math.unit(100, "feet"),
  34036. weight: math.unit(0, "lb"),
  34037. name: "Back",
  34038. image: {
  34039. source: "./media/characters/smile/back.svg",
  34040. extra: 3143/3031,
  34041. bottom: 91/3234
  34042. }
  34043. },
  34044. head: {
  34045. height: math.unit(26.3, "feet"),
  34046. weight: math.unit(0, "lb"),
  34047. name: "Head",
  34048. image: {
  34049. source: "./media/characters/smile/head.svg"
  34050. }
  34051. },
  34052. collar: {
  34053. height: math.unit(5.3, "feet"),
  34054. weight: math.unit(0, "lb"),
  34055. name: "Collar",
  34056. image: {
  34057. source: "./media/characters/smile/collar.svg"
  34058. }
  34059. },
  34060. },
  34061. [
  34062. {
  34063. name: "Macro",
  34064. height: math.unit(100, "feet"),
  34065. default: true
  34066. },
  34067. ]
  34068. ))
  34069. characterMakers.push(() => makeCharacter(
  34070. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34071. {
  34072. dragon: {
  34073. height: math.unit(26, "feet"),
  34074. weight: math.unit(36, "tons"),
  34075. name: "Dragon",
  34076. image: {
  34077. source: "./media/characters/arimphae/dragon.svg",
  34078. extra: 1574/983,
  34079. bottom: 357/1931
  34080. }
  34081. },
  34082. drake: {
  34083. height: math.unit(9, "feet"),
  34084. weight: math.unit(1.5, "tons"),
  34085. name: "Drake",
  34086. image: {
  34087. source: "./media/characters/arimphae/drake.svg",
  34088. extra: 1120/925,
  34089. bottom: 435/1555
  34090. }
  34091. },
  34092. },
  34093. [
  34094. {
  34095. name: "Small",
  34096. height: math.unit(26*5/9, "feet")
  34097. },
  34098. {
  34099. name: "Normal",
  34100. height: math.unit(26, "feet"),
  34101. default: true
  34102. },
  34103. ]
  34104. ))
  34105. characterMakers.push(() => makeCharacter(
  34106. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34107. {
  34108. front: {
  34109. height: math.unit(8 + 9/12, "feet"),
  34110. name: "Front",
  34111. image: {
  34112. source: "./media/characters/xander/front.svg",
  34113. extra: 1237/974,
  34114. bottom: 94/1331
  34115. }
  34116. },
  34117. },
  34118. [
  34119. {
  34120. name: "Normal",
  34121. height: math.unit(8 + 9/12, "feet"),
  34122. default: true
  34123. },
  34124. {
  34125. name: "Gaze Grabber",
  34126. height: math.unit(13 + 8/12, "feet")
  34127. },
  34128. {
  34129. name: "Jaw Dropper",
  34130. height: math.unit(27, "feet")
  34131. },
  34132. {
  34133. name: "Show Stopper",
  34134. height: math.unit(136, "feet")
  34135. },
  34136. {
  34137. name: "Superstar",
  34138. height: math.unit(1.9e6, "miles")
  34139. },
  34140. ]
  34141. ))
  34142. characterMakers.push(() => makeCharacter(
  34143. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34144. {
  34145. side: {
  34146. height: math.unit(2100, "feet"),
  34147. name: "Side",
  34148. image: {
  34149. source: "./media/characters/osiris/side.svg",
  34150. extra: 1105/939,
  34151. bottom: 167/1272
  34152. }
  34153. },
  34154. },
  34155. [
  34156. {
  34157. name: "Macro",
  34158. height: math.unit(2100, "feet"),
  34159. default: true
  34160. },
  34161. ]
  34162. ))
  34163. characterMakers.push(() => makeCharacter(
  34164. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34165. {
  34166. front: {
  34167. height: math.unit(6 + 8/12, "feet"),
  34168. weight: math.unit(225, "lb"),
  34169. name: "Front",
  34170. image: {
  34171. source: "./media/characters/rhys-londe/front.svg",
  34172. extra: 2258/2141,
  34173. bottom: 188/2446
  34174. }
  34175. },
  34176. back: {
  34177. height: math.unit(6 + 8/12, "feet"),
  34178. weight: math.unit(225, "lb"),
  34179. name: "Back",
  34180. image: {
  34181. source: "./media/characters/rhys-londe/back.svg",
  34182. extra: 2237/2137,
  34183. bottom: 63/2300
  34184. }
  34185. },
  34186. frontNsfw: {
  34187. height: math.unit(6 + 8/12, "feet"),
  34188. weight: math.unit(225, "lb"),
  34189. name: "Front (NSFW)",
  34190. image: {
  34191. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34192. extra: 2258/2141,
  34193. bottom: 188/2446
  34194. }
  34195. },
  34196. backNsfw: {
  34197. height: math.unit(6 + 8/12, "feet"),
  34198. weight: math.unit(225, "lb"),
  34199. name: "Back (NSFW)",
  34200. image: {
  34201. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34202. extra: 2237/2137,
  34203. bottom: 63/2300
  34204. }
  34205. },
  34206. dick: {
  34207. height: math.unit(30, "inches"),
  34208. name: "Dick",
  34209. image: {
  34210. source: "./media/characters/rhys-londe/dick.svg"
  34211. }
  34212. },
  34213. maw: {
  34214. height: math.unit(1.6, "feet"),
  34215. name: "Maw",
  34216. image: {
  34217. source: "./media/characters/rhys-londe/maw.svg"
  34218. }
  34219. },
  34220. },
  34221. [
  34222. {
  34223. name: "Normal",
  34224. height: math.unit(6 + 8/12, "feet"),
  34225. default: true
  34226. },
  34227. ]
  34228. ))
  34229. characterMakers.push(() => makeCharacter(
  34230. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34231. {
  34232. front: {
  34233. height: math.unit(3 + 10/12, "feet"),
  34234. weight: math.unit(90, "lb"),
  34235. name: "Front",
  34236. image: {
  34237. source: "./media/characters/taivas-ensim/front.svg",
  34238. extra: 1327/1216,
  34239. bottom: 96/1423
  34240. }
  34241. },
  34242. back: {
  34243. height: math.unit(3 + 10/12, "feet"),
  34244. weight: math.unit(90, "lb"),
  34245. name: "Back",
  34246. image: {
  34247. source: "./media/characters/taivas-ensim/back.svg",
  34248. extra: 1355/1247,
  34249. bottom: 11/1366
  34250. }
  34251. },
  34252. frontNsfw: {
  34253. height: math.unit(3 + 10/12, "feet"),
  34254. weight: math.unit(90, "lb"),
  34255. name: "Front (NSFW)",
  34256. image: {
  34257. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34258. extra: 1327/1216,
  34259. bottom: 96/1423
  34260. }
  34261. },
  34262. backNsfw: {
  34263. height: math.unit(3 + 10/12, "feet"),
  34264. weight: math.unit(90, "lb"),
  34265. name: "Back (NSFW)",
  34266. image: {
  34267. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34268. extra: 1355/1247,
  34269. bottom: 11/1366
  34270. }
  34271. },
  34272. },
  34273. [
  34274. {
  34275. name: "Normal",
  34276. height: math.unit(3 + 10/12, "feet"),
  34277. default: true
  34278. },
  34279. ]
  34280. ))
  34281. characterMakers.push(() => makeCharacter(
  34282. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34283. {
  34284. front: {
  34285. height: math.unit(9 + 6/12, "feet"),
  34286. weight: math.unit(940, "lb"),
  34287. name: "Front",
  34288. image: {
  34289. source: "./media/characters/byliss/front.svg",
  34290. extra: 1327/1290,
  34291. bottom: 82/1409
  34292. }
  34293. },
  34294. back: {
  34295. height: math.unit(9 + 6/12, "feet"),
  34296. weight: math.unit(940, "lb"),
  34297. name: "Back",
  34298. image: {
  34299. source: "./media/characters/byliss/back.svg",
  34300. extra: 1376/1349,
  34301. bottom: 9/1385
  34302. }
  34303. },
  34304. frontNsfw: {
  34305. height: math.unit(9 + 6/12, "feet"),
  34306. weight: math.unit(940, "lb"),
  34307. name: "Front (NSFW)",
  34308. image: {
  34309. source: "./media/characters/byliss/front-nsfw.svg",
  34310. extra: 1327/1290,
  34311. bottom: 82/1409
  34312. }
  34313. },
  34314. backNsfw: {
  34315. height: math.unit(9 + 6/12, "feet"),
  34316. weight: math.unit(940, "lb"),
  34317. name: "Back (NSFW)",
  34318. image: {
  34319. source: "./media/characters/byliss/back-nsfw.svg",
  34320. extra: 1376/1349,
  34321. bottom: 9/1385
  34322. }
  34323. },
  34324. },
  34325. [
  34326. {
  34327. name: "Normal",
  34328. height: math.unit(9 + 6/12, "feet"),
  34329. default: true
  34330. },
  34331. ]
  34332. ))
  34333. characterMakers.push(() => makeCharacter(
  34334. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34335. {
  34336. front: {
  34337. height: math.unit(5 + 2/12, "feet"),
  34338. weight: math.unit(200, "lb"),
  34339. name: "Front",
  34340. image: {
  34341. source: "./media/characters/noraly/front.svg",
  34342. extra: 4985/4773,
  34343. bottom: 150/5135
  34344. }
  34345. },
  34346. full: {
  34347. height: math.unit(5 + 2/12, "feet"),
  34348. weight: math.unit(164, "lb"),
  34349. name: "Full",
  34350. image: {
  34351. source: "./media/characters/noraly/full.svg",
  34352. extra: 1114/1059,
  34353. bottom: 35/1149
  34354. }
  34355. },
  34356. fuller: {
  34357. height: math.unit(5 + 2/12, "feet"),
  34358. weight: math.unit(230, "lb"),
  34359. name: "Fuller",
  34360. image: {
  34361. source: "./media/characters/noraly/fuller.svg",
  34362. extra: 1114/1059,
  34363. bottom: 35/1149
  34364. }
  34365. },
  34366. fullest: {
  34367. height: math.unit(5 + 2/12, "feet"),
  34368. weight: math.unit(300, "lb"),
  34369. name: "Fullest",
  34370. image: {
  34371. source: "./media/characters/noraly/fullest.svg",
  34372. extra: 1114/1059,
  34373. bottom: 35/1149
  34374. }
  34375. },
  34376. },
  34377. [
  34378. {
  34379. name: "Normal",
  34380. height: math.unit(5 + 2/12, "feet"),
  34381. default: true
  34382. },
  34383. ]
  34384. ))
  34385. characterMakers.push(() => makeCharacter(
  34386. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34387. {
  34388. front: {
  34389. height: math.unit(5 + 2/12, "feet"),
  34390. weight: math.unit(210, "lb"),
  34391. name: "Front",
  34392. image: {
  34393. source: "./media/characters/pera/front.svg",
  34394. extra: 1560/1531,
  34395. bottom: 165/1725
  34396. }
  34397. },
  34398. back: {
  34399. height: math.unit(5 + 2/12, "feet"),
  34400. weight: math.unit(210, "lb"),
  34401. name: "Back",
  34402. image: {
  34403. source: "./media/characters/pera/back.svg",
  34404. extra: 1523/1493,
  34405. bottom: 152/1675
  34406. }
  34407. },
  34408. dick: {
  34409. height: math.unit(2.4, "feet"),
  34410. name: "Dick",
  34411. image: {
  34412. source: "./media/characters/pera/dick.svg"
  34413. }
  34414. },
  34415. },
  34416. [
  34417. {
  34418. name: "Normal",
  34419. height: math.unit(5 + 2/12, "feet"),
  34420. default: true
  34421. },
  34422. ]
  34423. ))
  34424. characterMakers.push(() => makeCharacter(
  34425. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34426. {
  34427. front: {
  34428. height: math.unit(12, "feet"),
  34429. weight: math.unit(3200, "lb"),
  34430. name: "Front",
  34431. image: {
  34432. source: "./media/characters/julian/front.svg",
  34433. extra: 2962/2701,
  34434. bottom: 184/3146
  34435. }
  34436. },
  34437. maw: {
  34438. height: math.unit(5.35, "feet"),
  34439. name: "Maw",
  34440. image: {
  34441. source: "./media/characters/julian/maw.svg"
  34442. }
  34443. },
  34444. paw: {
  34445. height: math.unit(3.07, "feet"),
  34446. name: "Paw",
  34447. image: {
  34448. source: "./media/characters/julian/paw.svg"
  34449. }
  34450. },
  34451. },
  34452. [
  34453. {
  34454. name: "Default",
  34455. height: math.unit(12, "feet"),
  34456. default: true
  34457. },
  34458. {
  34459. name: "Big",
  34460. height: math.unit(50, "feet")
  34461. },
  34462. {
  34463. name: "Really Big",
  34464. height: math.unit(1, "mile")
  34465. },
  34466. {
  34467. name: "Extremely Big",
  34468. height: math.unit(100, "miles")
  34469. },
  34470. {
  34471. name: "Planet Hugger",
  34472. height: math.unit(200, "megameters")
  34473. },
  34474. {
  34475. name: "Unreasonably Big",
  34476. height: math.unit(1e300, "meters")
  34477. },
  34478. ]
  34479. ))
  34480. characterMakers.push(() => makeCharacter(
  34481. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34482. {
  34483. solgooleo: {
  34484. height: math.unit(4, "meters"),
  34485. weight: math.unit(6000*1.5, "kg"),
  34486. volume: math.unit(6000, "liters"),
  34487. name: "Solgooleo",
  34488. image: {
  34489. source: "./media/characters/pi/solgooleo.svg",
  34490. extra: 388/331,
  34491. bottom: 29/417
  34492. }
  34493. },
  34494. },
  34495. [
  34496. {
  34497. name: "Normal",
  34498. height: math.unit(4, "meters"),
  34499. default: true
  34500. },
  34501. ]
  34502. ))
  34503. characterMakers.push(() => makeCharacter(
  34504. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34505. {
  34506. front: {
  34507. height: math.unit(8, "feet"),
  34508. weight: math.unit(4, "tons"),
  34509. name: "Front",
  34510. image: {
  34511. source: "./media/characters/shaun/front.svg",
  34512. extra: 503/495,
  34513. bottom: 20/523
  34514. }
  34515. },
  34516. back: {
  34517. height: math.unit(8, "feet"),
  34518. weight: math.unit(4, "tons"),
  34519. name: "Back",
  34520. image: {
  34521. source: "./media/characters/shaun/back.svg",
  34522. extra: 487/480,
  34523. bottom: 20/507
  34524. }
  34525. },
  34526. },
  34527. [
  34528. {
  34529. name: "Lorg",
  34530. height: math.unit(8, "feet"),
  34531. default: true
  34532. },
  34533. ]
  34534. ))
  34535. characterMakers.push(() => makeCharacter(
  34536. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34537. {
  34538. frontAnthro: {
  34539. height: math.unit(7, "feet"),
  34540. name: "Front",
  34541. image: {
  34542. source: "./media/characters/sini/front-anthro.svg",
  34543. extra: 726/678,
  34544. bottom: 35/761
  34545. },
  34546. form: "anthro",
  34547. default: true
  34548. },
  34549. backAnthro: {
  34550. height: math.unit(7, "feet"),
  34551. name: "Back",
  34552. image: {
  34553. source: "./media/characters/sini/back-anthro.svg",
  34554. extra: 743/701,
  34555. bottom: 12/755
  34556. },
  34557. form: "anthro",
  34558. },
  34559. frontAnthroNsfw: {
  34560. height: math.unit(7, "feet"),
  34561. name: "Front (NSFW)",
  34562. image: {
  34563. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34564. extra: 726/678,
  34565. bottom: 35/761
  34566. },
  34567. form: "anthro"
  34568. },
  34569. backAnthroNsfw: {
  34570. height: math.unit(7, "feet"),
  34571. name: "Back (NSFW)",
  34572. image: {
  34573. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34574. extra: 743/701,
  34575. bottom: 12/755
  34576. },
  34577. form: "anthro",
  34578. },
  34579. mawAnthro: {
  34580. height: math.unit(2.14, "feet"),
  34581. name: "Maw",
  34582. image: {
  34583. source: "./media/characters/sini/maw-anthro.svg"
  34584. },
  34585. form: "anthro"
  34586. },
  34587. dick: {
  34588. height: math.unit(1.45, "feet"),
  34589. name: "Dick",
  34590. image: {
  34591. source: "./media/characters/sini/dick-anthro.svg"
  34592. },
  34593. form: "anthro"
  34594. },
  34595. feral: {
  34596. height: math.unit(16, "feet"),
  34597. name: "Feral",
  34598. image: {
  34599. source: "./media/characters/sini/feral.svg",
  34600. extra: 814/605,
  34601. bottom: 11/825
  34602. },
  34603. form: "feral",
  34604. default: true
  34605. },
  34606. feralNsfw: {
  34607. height: math.unit(16, "feet"),
  34608. name: "Feral (NSFW)",
  34609. image: {
  34610. source: "./media/characters/sini/feral-nsfw.svg",
  34611. extra: 814/605,
  34612. bottom: 11/825
  34613. },
  34614. form: "feral"
  34615. },
  34616. mawFeral: {
  34617. height: math.unit(5.66, "feet"),
  34618. name: "Maw",
  34619. image: {
  34620. source: "./media/characters/sini/maw-feral.svg"
  34621. },
  34622. form: "feral",
  34623. },
  34624. pawFeral: {
  34625. height: math.unit(5.17, "feet"),
  34626. name: "Paw",
  34627. image: {
  34628. source: "./media/characters/sini/paw-feral.svg"
  34629. },
  34630. form: "feral",
  34631. },
  34632. rumpFeral: {
  34633. height: math.unit(13.11, "feet"),
  34634. name: "Rump",
  34635. image: {
  34636. source: "./media/characters/sini/rump-feral.svg"
  34637. },
  34638. form: "feral",
  34639. },
  34640. dickFeral: {
  34641. height: math.unit(1, "feet"),
  34642. name: "Dick",
  34643. image: {
  34644. source: "./media/characters/sini/dick-feral.svg"
  34645. },
  34646. form: "feral",
  34647. },
  34648. eyeFeral: {
  34649. height: math.unit(1.23, "feet"),
  34650. name: "Eye",
  34651. image: {
  34652. source: "./media/characters/sini/eye-feral.svg"
  34653. },
  34654. form: "feral",
  34655. },
  34656. },
  34657. [
  34658. {
  34659. name: "Normal",
  34660. height: math.unit(7, "feet"),
  34661. default: true,
  34662. form: "anthro"
  34663. },
  34664. {
  34665. name: "Normal",
  34666. height: math.unit(16, "feet"),
  34667. default: true,
  34668. form: "feral"
  34669. },
  34670. ],
  34671. {
  34672. "anthro": {
  34673. name: "Anthro",
  34674. default: true
  34675. },
  34676. "feral": {
  34677. name: "Feral",
  34678. }
  34679. }
  34680. ))
  34681. characterMakers.push(() => makeCharacter(
  34682. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34683. {
  34684. side: {
  34685. height: math.unit(47.2, "meters"),
  34686. weight: math.unit(10000, "tons"),
  34687. name: "Side",
  34688. image: {
  34689. source: "./media/characters/raylldo/side.svg",
  34690. extra: 2363/642,
  34691. bottom: 221/2584
  34692. }
  34693. },
  34694. top: {
  34695. height: math.unit(240, "meters"),
  34696. weight: math.unit(10000, "tons"),
  34697. name: "Top",
  34698. image: {
  34699. source: "./media/characters/raylldo/top.svg"
  34700. }
  34701. },
  34702. bottom: {
  34703. height: math.unit(240, "meters"),
  34704. weight: math.unit(10000, "tons"),
  34705. name: "Bottom",
  34706. image: {
  34707. source: "./media/characters/raylldo/bottom.svg"
  34708. }
  34709. },
  34710. head: {
  34711. height: math.unit(38.6, "meters"),
  34712. name: "Head",
  34713. image: {
  34714. source: "./media/characters/raylldo/head.svg",
  34715. extra: 1335/1112,
  34716. bottom: 0/1335
  34717. }
  34718. },
  34719. maw: {
  34720. height: math.unit(16.37, "meters"),
  34721. name: "Maw",
  34722. image: {
  34723. source: "./media/characters/raylldo/maw.svg",
  34724. extra: 883/660,
  34725. bottom: 0/883
  34726. },
  34727. extraAttributes: {
  34728. preyCapacity: {
  34729. name: "Capacity",
  34730. power: 3,
  34731. type: "volume",
  34732. base: math.unit(1000, "people")
  34733. },
  34734. tongueSize: {
  34735. name: "Tongue Size",
  34736. power: 2,
  34737. type: "area",
  34738. base: math.unit(21, "m^2")
  34739. }
  34740. }
  34741. },
  34742. forepaw: {
  34743. height: math.unit(18, "meters"),
  34744. name: "Forepaw",
  34745. image: {
  34746. source: "./media/characters/raylldo/forepaw.svg"
  34747. }
  34748. },
  34749. hindpaw: {
  34750. height: math.unit(23, "meters"),
  34751. name: "Hindpaw",
  34752. image: {
  34753. source: "./media/characters/raylldo/hindpaw.svg"
  34754. }
  34755. },
  34756. genitals: {
  34757. height: math.unit(42, "meters"),
  34758. name: "Genitals",
  34759. image: {
  34760. source: "./media/characters/raylldo/genitals.svg"
  34761. }
  34762. },
  34763. },
  34764. [
  34765. {
  34766. name: "Normal",
  34767. height: math.unit(47.2, "meters"),
  34768. default: true
  34769. },
  34770. ]
  34771. ))
  34772. characterMakers.push(() => makeCharacter(
  34773. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34774. {
  34775. anthroFront: {
  34776. height: math.unit(9, "feet"),
  34777. weight: math.unit(600, "lb"),
  34778. name: "Anthro (Front)",
  34779. image: {
  34780. source: "./media/characters/glint/anthro-front.svg",
  34781. extra: 1097/1018,
  34782. bottom: 28/1125
  34783. }
  34784. },
  34785. anthroBack: {
  34786. height: math.unit(9, "feet"),
  34787. weight: math.unit(600, "lb"),
  34788. name: "Anthro (Back)",
  34789. image: {
  34790. source: "./media/characters/glint/anthro-back.svg",
  34791. extra: 1154/997,
  34792. bottom: 36/1190
  34793. }
  34794. },
  34795. feral: {
  34796. height: math.unit(11, "feet"),
  34797. weight: math.unit(50000, "lb"),
  34798. name: "Feral",
  34799. image: {
  34800. source: "./media/characters/glint/feral.svg",
  34801. extra: 3035/1585,
  34802. bottom: 1169/4204
  34803. }
  34804. },
  34805. dickAnthro: {
  34806. height: math.unit(0.7, "meters"),
  34807. name: "Dick (Anthro)",
  34808. image: {
  34809. source: "./media/characters/glint/dick-anthro.svg"
  34810. }
  34811. },
  34812. dickFeral: {
  34813. height: math.unit(2.65, "meters"),
  34814. name: "Dick (Feral)",
  34815. image: {
  34816. source: "./media/characters/glint/dick-feral.svg"
  34817. }
  34818. },
  34819. slitHidden: {
  34820. height: math.unit(5.85, "meters"),
  34821. name: "Slit (Hidden)",
  34822. image: {
  34823. source: "./media/characters/glint/slit-hidden.svg"
  34824. }
  34825. },
  34826. slitErect: {
  34827. height: math.unit(5.85, "meters"),
  34828. name: "Slit (Erect)",
  34829. image: {
  34830. source: "./media/characters/glint/slit-erect.svg"
  34831. }
  34832. },
  34833. mawAnthro: {
  34834. height: math.unit(0.63, "meters"),
  34835. name: "Maw (Anthro)",
  34836. image: {
  34837. source: "./media/characters/glint/maw.svg"
  34838. }
  34839. },
  34840. mawFeral: {
  34841. height: math.unit(2.89, "meters"),
  34842. name: "Maw (Feral)",
  34843. image: {
  34844. source: "./media/characters/glint/maw.svg"
  34845. }
  34846. },
  34847. },
  34848. [
  34849. {
  34850. name: "Normal",
  34851. height: math.unit(9, "feet"),
  34852. default: true
  34853. },
  34854. ]
  34855. ))
  34856. characterMakers.push(() => makeCharacter(
  34857. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34858. {
  34859. side: {
  34860. height: math.unit(15, "feet"),
  34861. weight: math.unit(5000, "kg"),
  34862. name: "Side",
  34863. image: {
  34864. source: "./media/characters/kairne/side.svg",
  34865. extra: 979/811,
  34866. bottom: 13/992
  34867. }
  34868. },
  34869. front: {
  34870. height: math.unit(15, "feet"),
  34871. weight: math.unit(5000, "kg"),
  34872. name: "Front",
  34873. image: {
  34874. source: "./media/characters/kairne/front.svg",
  34875. extra: 908/814,
  34876. bottom: 26/934
  34877. }
  34878. },
  34879. sideNsfw: {
  34880. height: math.unit(15, "feet"),
  34881. weight: math.unit(5000, "kg"),
  34882. name: "Side (NSFW)",
  34883. image: {
  34884. source: "./media/characters/kairne/side-nsfw.svg",
  34885. extra: 979/811,
  34886. bottom: 13/992
  34887. }
  34888. },
  34889. frontNsfw: {
  34890. height: math.unit(15, "feet"),
  34891. weight: math.unit(5000, "kg"),
  34892. name: "Front (NSFW)",
  34893. image: {
  34894. source: "./media/characters/kairne/front-nsfw.svg",
  34895. extra: 908/814,
  34896. bottom: 26/934
  34897. }
  34898. },
  34899. dickCaged: {
  34900. height: math.unit(0.65, "meters"),
  34901. name: "Dick-caged",
  34902. image: {
  34903. source: "./media/characters/kairne/dick-caged.svg"
  34904. }
  34905. },
  34906. dick: {
  34907. height: math.unit(0.79, "meters"),
  34908. name: "Dick",
  34909. image: {
  34910. source: "./media/characters/kairne/dick.svg"
  34911. }
  34912. },
  34913. genitals: {
  34914. height: math.unit(1.29, "meters"),
  34915. name: "Genitals",
  34916. image: {
  34917. source: "./media/characters/kairne/genitals.svg"
  34918. }
  34919. },
  34920. maw: {
  34921. height: math.unit(1.73, "meters"),
  34922. name: "Maw",
  34923. image: {
  34924. source: "./media/characters/kairne/maw.svg"
  34925. }
  34926. },
  34927. },
  34928. [
  34929. {
  34930. name: "Normal",
  34931. height: math.unit(15, "feet"),
  34932. default: true
  34933. },
  34934. ]
  34935. ))
  34936. characterMakers.push(() => makeCharacter(
  34937. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34938. {
  34939. front: {
  34940. height: math.unit(5 + 8/12, "feet"),
  34941. weight: math.unit(139, "lb"),
  34942. name: "Front",
  34943. image: {
  34944. source: "./media/characters/biscuit-jackal/front.svg",
  34945. extra: 2106/1961,
  34946. bottom: 58/2164
  34947. }
  34948. },
  34949. back: {
  34950. height: math.unit(5 + 8/12, "feet"),
  34951. weight: math.unit(139, "lb"),
  34952. name: "Back",
  34953. image: {
  34954. source: "./media/characters/biscuit-jackal/back.svg",
  34955. extra: 2132/1976,
  34956. bottom: 57/2189
  34957. }
  34958. },
  34959. werejackal: {
  34960. height: math.unit(6 + 3/12, "feet"),
  34961. weight: math.unit(188, "lb"),
  34962. name: "Werejackal",
  34963. image: {
  34964. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34965. extra: 2373/2178,
  34966. bottom: 53/2426
  34967. }
  34968. },
  34969. },
  34970. [
  34971. {
  34972. name: "Normal",
  34973. height: math.unit(5 + 8/12, "feet"),
  34974. default: true
  34975. },
  34976. ]
  34977. ))
  34978. characterMakers.push(() => makeCharacter(
  34979. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34980. {
  34981. front: {
  34982. height: math.unit(140, "cm"),
  34983. weight: math.unit(45, "kg"),
  34984. name: "Front",
  34985. image: {
  34986. source: "./media/characters/tayra-white/front.svg",
  34987. extra: 2229/2192,
  34988. bottom: 75/2304
  34989. }
  34990. },
  34991. },
  34992. [
  34993. {
  34994. name: "Normal",
  34995. height: math.unit(140, "cm"),
  34996. default: true
  34997. },
  34998. ]
  34999. ))
  35000. characterMakers.push(() => makeCharacter(
  35001. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35002. {
  35003. front: {
  35004. height: math.unit(4 + 5/12, "feet"),
  35005. name: "Front",
  35006. image: {
  35007. source: "./media/characters/scoop/front.svg",
  35008. extra: 1257/1136,
  35009. bottom: 69/1326
  35010. }
  35011. },
  35012. back: {
  35013. height: math.unit(4 + 5/12, "feet"),
  35014. name: "Back",
  35015. image: {
  35016. source: "./media/characters/scoop/back.svg",
  35017. extra: 1321/1152,
  35018. bottom: 32/1353
  35019. }
  35020. },
  35021. maw: {
  35022. height: math.unit(0.68, "feet"),
  35023. name: "Maw",
  35024. image: {
  35025. source: "./media/characters/scoop/maw.svg"
  35026. }
  35027. },
  35028. },
  35029. [
  35030. {
  35031. name: "Really Small",
  35032. height: math.unit(1, "mm")
  35033. },
  35034. {
  35035. name: "Micro",
  35036. height: math.unit(1, "inch")
  35037. },
  35038. {
  35039. name: "Normal",
  35040. height: math.unit(4 + 5/12, "feet"),
  35041. default: true
  35042. },
  35043. {
  35044. name: "Macro",
  35045. height: math.unit(200, "feet")
  35046. },
  35047. {
  35048. name: "Megamacro",
  35049. height: math.unit(3240, "feet")
  35050. },
  35051. {
  35052. name: "Teramacro",
  35053. height: math.unit(2500, "miles")
  35054. },
  35055. ]
  35056. ))
  35057. characterMakers.push(() => makeCharacter(
  35058. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35059. {
  35060. front: {
  35061. height: math.unit(15 + 7/12, "feet"),
  35062. weight: math.unit(1150, "tons"),
  35063. name: "Front",
  35064. image: {
  35065. source: "./media/characters/saphinara/front.svg",
  35066. extra: 1837/1643,
  35067. bottom: 84/1921
  35068. },
  35069. form: "normal",
  35070. default: true
  35071. },
  35072. side: {
  35073. height: math.unit(15 + 7/12, "feet"),
  35074. weight: math.unit(1150, "tons"),
  35075. name: "Side",
  35076. image: {
  35077. source: "./media/characters/saphinara/side.svg",
  35078. extra: 605/547,
  35079. bottom: 6/611
  35080. },
  35081. form: "normal"
  35082. },
  35083. back: {
  35084. height: math.unit(15 + 7/12, "feet"),
  35085. weight: math.unit(1150, "tons"),
  35086. name: "Back",
  35087. image: {
  35088. source: "./media/characters/saphinara/back.svg",
  35089. extra: 591/531,
  35090. bottom: 13/604
  35091. },
  35092. form: "normal"
  35093. },
  35094. frontTail: {
  35095. height: math.unit(15 + 7/12, "feet"),
  35096. weight: math.unit(1150, "tons"),
  35097. name: "Front (Full Tail)",
  35098. image: {
  35099. source: "./media/characters/saphinara/front-tail.svg",
  35100. extra: 2256/1630,
  35101. bottom: 261/2517
  35102. },
  35103. form: "normal"
  35104. },
  35105. insides: {
  35106. height: math.unit(11.92, "feet"),
  35107. name: "Insides",
  35108. image: {
  35109. source: "./media/characters/saphinara/insides.svg"
  35110. },
  35111. form: "normal"
  35112. },
  35113. head: {
  35114. height: math.unit(4.17, "feet"),
  35115. name: "Head",
  35116. image: {
  35117. source: "./media/characters/saphinara/head.svg"
  35118. },
  35119. form: "normal"
  35120. },
  35121. tongue: {
  35122. height: math.unit(4.60, "feet"),
  35123. name: "Tongue",
  35124. image: {
  35125. source: "./media/characters/saphinara/tongue.svg"
  35126. },
  35127. form: "normal"
  35128. },
  35129. headEnraged: {
  35130. height: math.unit(5.55, "feet"),
  35131. name: "Head (Enraged)",
  35132. image: {
  35133. source: "./media/characters/saphinara/head-enraged.svg"
  35134. },
  35135. form: "normal"
  35136. },
  35137. wings: {
  35138. height: math.unit(11.95, "feet"),
  35139. name: "Wings",
  35140. image: {
  35141. source: "./media/characters/saphinara/wings.svg"
  35142. },
  35143. form: "normal"
  35144. },
  35145. feathers: {
  35146. height: math.unit(8.92, "feet"),
  35147. name: "Feathers",
  35148. image: {
  35149. source: "./media/characters/saphinara/feathers.svg"
  35150. },
  35151. form: "normal"
  35152. },
  35153. shackles: {
  35154. height: math.unit(2, "feet"),
  35155. name: "Shackles",
  35156. image: {
  35157. source: "./media/characters/saphinara/shackles.svg"
  35158. },
  35159. form: "normal"
  35160. },
  35161. eyes: {
  35162. height: math.unit(1.331, "feet"),
  35163. name: "Eyes",
  35164. image: {
  35165. source: "./media/characters/saphinara/eyes.svg"
  35166. },
  35167. form: "normal"
  35168. },
  35169. eyesEnraged: {
  35170. height: math.unit(1.331, "feet"),
  35171. name: "Eyes (Enraged)",
  35172. image: {
  35173. source: "./media/characters/saphinara/eyes-enraged.svg"
  35174. },
  35175. form: "normal"
  35176. },
  35177. trueFormSide: {
  35178. height: math.unit(200, "feet"),
  35179. weight: math.unit(1e7, "tons"),
  35180. name: "Side",
  35181. image: {
  35182. source: "./media/characters/saphinara/true-form-side.svg",
  35183. extra: 1399/770,
  35184. bottom: 97/1496
  35185. },
  35186. form: "true-form",
  35187. default: true
  35188. },
  35189. trueFormMaw: {
  35190. height: math.unit(71.5, "feet"),
  35191. name: "Maw",
  35192. image: {
  35193. source: "./media/characters/saphinara/true-form-maw.svg",
  35194. extra: 2302/1453,
  35195. bottom: 0/2302
  35196. },
  35197. form: "true-form"
  35198. },
  35199. meowberusSide: {
  35200. height: math.unit(75, "feet"),
  35201. weight: math.unit(180000, "kg"),
  35202. preyCapacity: math.unit(50000, "people"),
  35203. name: "Side",
  35204. image: {
  35205. source: "./media/characters/saphinara/meowberus-side.svg",
  35206. extra: 1400/711,
  35207. bottom: 126/1526
  35208. },
  35209. form: "meowberus",
  35210. extraAttributes: {
  35211. "pawArea": {
  35212. name: "Paw Size",
  35213. power: 2,
  35214. type: "area",
  35215. base: math.unit(35, "m^2")
  35216. }
  35217. }
  35218. },
  35219. },
  35220. [
  35221. {
  35222. name: "Normal",
  35223. height: math.unit(15 + 7/12, "feet"),
  35224. default: true,
  35225. form: "normal"
  35226. },
  35227. {
  35228. name: "Angry",
  35229. height: math.unit(30 + 6/12, "feet"),
  35230. form: "normal"
  35231. },
  35232. {
  35233. name: "Enraged",
  35234. height: math.unit(102 + 1/12, "feet"),
  35235. form: "normal"
  35236. },
  35237. {
  35238. name: "True",
  35239. height: math.unit(200, "feet"),
  35240. default: true,
  35241. form: "true-form"
  35242. },
  35243. {
  35244. name: "Normal",
  35245. height: math.unit(75, "feet"),
  35246. default: true,
  35247. form: "meowberus"
  35248. },
  35249. ],
  35250. {
  35251. "normal": {
  35252. name: "Normal",
  35253. default: true
  35254. },
  35255. "true-form": {
  35256. name: "True Form"
  35257. },
  35258. "meowberus": {
  35259. name: "Meowberus",
  35260. },
  35261. }
  35262. ))
  35263. characterMakers.push(() => makeCharacter(
  35264. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35265. {
  35266. front: {
  35267. height: math.unit(6 + 8/12, "feet"),
  35268. weight: math.unit(300, "lb"),
  35269. name: "Front",
  35270. image: {
  35271. source: "./media/characters/jrain/front.svg",
  35272. extra: 3039/2865,
  35273. bottom: 399/3438
  35274. }
  35275. },
  35276. back: {
  35277. height: math.unit(6 + 8/12, "feet"),
  35278. weight: math.unit(300, "lb"),
  35279. name: "Back",
  35280. image: {
  35281. source: "./media/characters/jrain/back.svg",
  35282. extra: 3089/2938,
  35283. bottom: 172/3261
  35284. }
  35285. },
  35286. head: {
  35287. height: math.unit(2.14, "feet"),
  35288. name: "Head",
  35289. image: {
  35290. source: "./media/characters/jrain/head.svg"
  35291. }
  35292. },
  35293. maw: {
  35294. height: math.unit(1.77, "feet"),
  35295. name: "Maw",
  35296. image: {
  35297. source: "./media/characters/jrain/maw.svg"
  35298. }
  35299. },
  35300. leftHand: {
  35301. height: math.unit(1.1, "feet"),
  35302. name: "Left Hand",
  35303. image: {
  35304. source: "./media/characters/jrain/left-hand.svg"
  35305. }
  35306. },
  35307. rightHand: {
  35308. height: math.unit(1.1, "feet"),
  35309. name: "Right Hand",
  35310. image: {
  35311. source: "./media/characters/jrain/right-hand.svg"
  35312. }
  35313. },
  35314. eye: {
  35315. height: math.unit(0.35, "feet"),
  35316. name: "Eye",
  35317. image: {
  35318. source: "./media/characters/jrain/eye.svg"
  35319. }
  35320. },
  35321. },
  35322. [
  35323. {
  35324. name: "Normal",
  35325. height: math.unit(6 + 8/12, "feet"),
  35326. default: true
  35327. },
  35328. {
  35329. name: "Casually Large",
  35330. height: math.unit(25, "feet")
  35331. },
  35332. {
  35333. name: "Giant",
  35334. height: math.unit(100, "feet")
  35335. },
  35336. {
  35337. name: "Kaiju",
  35338. height: math.unit(300, "feet")
  35339. },
  35340. ]
  35341. ))
  35342. characterMakers.push(() => makeCharacter(
  35343. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35344. {
  35345. dragon: {
  35346. height: math.unit(5, "meters"),
  35347. name: "Dragon",
  35348. image: {
  35349. source: "./media/characters/sabrina/dragon.svg",
  35350. extra: 3670 / 2365,
  35351. bottom: 333 / 4003
  35352. }
  35353. },
  35354. gryphon: {
  35355. height: math.unit(3, "meters"),
  35356. name: "Gryphon",
  35357. image: {
  35358. source: "./media/characters/sabrina/gryphon.svg",
  35359. extra: 1576 / 945,
  35360. bottom: 71 / 1647
  35361. }
  35362. },
  35363. snake: {
  35364. height: math.unit(12, "meters"),
  35365. name: "Snake",
  35366. image: {
  35367. source: "./media/characters/sabrina/snake.svg",
  35368. extra: 1758 / 1320,
  35369. bottom: 186 / 1944
  35370. }
  35371. },
  35372. collar: {
  35373. height: math.unit(1.86, "meters"),
  35374. name: "Collar",
  35375. image: {
  35376. source: "./media/characters/sabrina/collar.svg"
  35377. }
  35378. },
  35379. eye: {
  35380. height: math.unit(0.53, "meters"),
  35381. name: "Eye",
  35382. image: {
  35383. source: "./media/characters/sabrina/eye.svg"
  35384. }
  35385. },
  35386. foot: {
  35387. height: math.unit(1.86, "meters"),
  35388. name: "Foot",
  35389. image: {
  35390. source: "./media/characters/sabrina/foot.svg"
  35391. }
  35392. },
  35393. hand: {
  35394. height: math.unit(1.32, "meters"),
  35395. name: "Hand",
  35396. image: {
  35397. source: "./media/characters/sabrina/hand.svg"
  35398. }
  35399. },
  35400. head: {
  35401. height: math.unit(2.44, "meters"),
  35402. name: "Head",
  35403. image: {
  35404. source: "./media/characters/sabrina/head.svg"
  35405. }
  35406. },
  35407. headAngry: {
  35408. height: math.unit(2.44, "meters"),
  35409. name: "Head (Angry))",
  35410. image: {
  35411. source: "./media/characters/sabrina/head-angry.svg"
  35412. }
  35413. },
  35414. maw: {
  35415. height: math.unit(1.65, "meters"),
  35416. name: "Maw",
  35417. image: {
  35418. source: "./media/characters/sabrina/maw.svg"
  35419. }
  35420. },
  35421. spikes: {
  35422. height: math.unit(1.69, "meters"),
  35423. name: "Spikes",
  35424. image: {
  35425. source: "./media/characters/sabrina/spikes.svg"
  35426. }
  35427. },
  35428. stomach: {
  35429. height: math.unit(1.15, "meters"),
  35430. name: "Stomach",
  35431. image: {
  35432. source: "./media/characters/sabrina/stomach.svg"
  35433. }
  35434. },
  35435. tongue: {
  35436. height: math.unit(1.27, "meters"),
  35437. name: "Tongue",
  35438. image: {
  35439. source: "./media/characters/sabrina/tongue.svg"
  35440. }
  35441. },
  35442. wingDorsal: {
  35443. height: math.unit(4.85, "meters"),
  35444. name: "Wing (Dorsal)",
  35445. image: {
  35446. source: "./media/characters/sabrina/wing-dorsal.svg"
  35447. }
  35448. },
  35449. wingVentral: {
  35450. height: math.unit(4.85, "meters"),
  35451. name: "Wing (Ventral)",
  35452. image: {
  35453. source: "./media/characters/sabrina/wing-ventral.svg"
  35454. }
  35455. },
  35456. },
  35457. [
  35458. {
  35459. name: "Normal",
  35460. height: math.unit(5, "meters"),
  35461. default: true
  35462. },
  35463. ]
  35464. ))
  35465. characterMakers.push(() => makeCharacter(
  35466. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35467. {
  35468. frontMaid: {
  35469. height: math.unit(5 + 5/12, "feet"),
  35470. weight: math.unit(130, "lb"),
  35471. name: "Front (Maid)",
  35472. image: {
  35473. source: "./media/characters/midnight-tales/front-maid.svg",
  35474. extra: 489/454,
  35475. bottom: 61/550
  35476. }
  35477. },
  35478. frontFormal: {
  35479. height: math.unit(5 + 5/12, "feet"),
  35480. weight: math.unit(130, "lb"),
  35481. name: "Front (Formal)",
  35482. image: {
  35483. source: "./media/characters/midnight-tales/front-formal.svg",
  35484. extra: 489/454,
  35485. bottom: 61/550
  35486. }
  35487. },
  35488. back: {
  35489. height: math.unit(5 + 5/12, "feet"),
  35490. weight: math.unit(130, "lb"),
  35491. name: "Back",
  35492. image: {
  35493. source: "./media/characters/midnight-tales/back.svg",
  35494. extra: 498/456,
  35495. bottom: 33/531
  35496. }
  35497. },
  35498. frontBeast: {
  35499. height: math.unit(40, "feet"),
  35500. weight: math.unit(64000, "lb"),
  35501. name: "Front (Beast)",
  35502. image: {
  35503. source: "./media/characters/midnight-tales/front-beast.svg",
  35504. extra: 927/860,
  35505. bottom: 53/980
  35506. }
  35507. },
  35508. backBeast: {
  35509. height: math.unit(40, "feet"),
  35510. weight: math.unit(64000, "lb"),
  35511. name: "Back (Beast)",
  35512. image: {
  35513. source: "./media/characters/midnight-tales/back-beast.svg",
  35514. extra: 929/855,
  35515. bottom: 16/945
  35516. }
  35517. },
  35518. footBeast: {
  35519. height: math.unit(6.7, "feet"),
  35520. name: "Foot (Beast)",
  35521. image: {
  35522. source: "./media/characters/midnight-tales/foot-beast.svg"
  35523. }
  35524. },
  35525. headBeast: {
  35526. height: math.unit(8, "feet"),
  35527. name: "Head (Beast)",
  35528. image: {
  35529. source: "./media/characters/midnight-tales/head-beast.svg"
  35530. }
  35531. },
  35532. },
  35533. [
  35534. {
  35535. name: "Normal",
  35536. height: math.unit(5 + 5 / 12, "feet"),
  35537. default: true
  35538. },
  35539. {
  35540. name: "Macro",
  35541. height: math.unit(25, "feet")
  35542. },
  35543. ]
  35544. ))
  35545. characterMakers.push(() => makeCharacter(
  35546. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35547. {
  35548. front: {
  35549. height: math.unit(5 + 10/12, "feet"),
  35550. name: "Front",
  35551. image: {
  35552. source: "./media/characters/argon/front.svg",
  35553. extra: 2009/1935,
  35554. bottom: 118/2127
  35555. }
  35556. },
  35557. back: {
  35558. height: math.unit(5 + 10/12, "feet"),
  35559. name: "Back",
  35560. image: {
  35561. source: "./media/characters/argon/back.svg",
  35562. extra: 2047/1992,
  35563. bottom: 20/2067
  35564. }
  35565. },
  35566. frontDressed: {
  35567. height: math.unit(5 + 10/12, "feet"),
  35568. name: "Front (Dressed)",
  35569. image: {
  35570. source: "./media/characters/argon/front-dressed.svg",
  35571. extra: 2009/1935,
  35572. bottom: 118/2127
  35573. }
  35574. },
  35575. },
  35576. [
  35577. {
  35578. name: "Normal",
  35579. height: math.unit(5 + 10/12, "feet"),
  35580. default: true
  35581. },
  35582. ]
  35583. ))
  35584. characterMakers.push(() => makeCharacter(
  35585. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35586. {
  35587. front: {
  35588. height: math.unit(8 + 6/12, "feet"),
  35589. weight: math.unit(1150, "lb"),
  35590. name: "Front",
  35591. image: {
  35592. source: "./media/characters/kichi/front.svg",
  35593. extra: 1267/1164,
  35594. bottom: 61/1328
  35595. }
  35596. },
  35597. back: {
  35598. height: math.unit(8 + 6/12, "feet"),
  35599. weight: math.unit(1150, "lb"),
  35600. name: "Back",
  35601. image: {
  35602. source: "./media/characters/kichi/back.svg",
  35603. extra: 1273/1166,
  35604. bottom: 33/1306
  35605. }
  35606. },
  35607. },
  35608. [
  35609. {
  35610. name: "Normal",
  35611. height: math.unit(8 + 6/12, "feet"),
  35612. default: true
  35613. },
  35614. ]
  35615. ))
  35616. characterMakers.push(() => makeCharacter(
  35617. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35618. {
  35619. front: {
  35620. height: math.unit(6, "feet"),
  35621. weight: math.unit(210, "lb"),
  35622. name: "Front",
  35623. image: {
  35624. source: "./media/characters/manetel-greyscale/front.svg",
  35625. extra: 350/312,
  35626. bottom: 8/358
  35627. }
  35628. },
  35629. },
  35630. [
  35631. {
  35632. name: "Micro",
  35633. height: math.unit(2, "inches")
  35634. },
  35635. {
  35636. name: "Normal",
  35637. height: math.unit(6, "feet"),
  35638. default: true
  35639. },
  35640. {
  35641. name: "Minimacro",
  35642. height: math.unit(17, "feet")
  35643. },
  35644. {
  35645. name: "Macro",
  35646. height: math.unit(117, "feet")
  35647. },
  35648. ]
  35649. ))
  35650. characterMakers.push(() => makeCharacter(
  35651. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35652. {
  35653. side: {
  35654. height: math.unit(5 + 1/12, "feet"),
  35655. weight: math.unit(418, "lb"),
  35656. name: "Side",
  35657. image: {
  35658. source: "./media/characters/softpurr/side.svg",
  35659. extra: 1993/1945,
  35660. bottom: 134/2127
  35661. }
  35662. },
  35663. front: {
  35664. height: math.unit(5 + 1/12, "feet"),
  35665. weight: math.unit(418, "lb"),
  35666. name: "Front",
  35667. image: {
  35668. source: "./media/characters/softpurr/front.svg",
  35669. extra: 1950/1856,
  35670. bottom: 174/2124
  35671. }
  35672. },
  35673. paw: {
  35674. height: math.unit(1, "feet"),
  35675. name: "Paw",
  35676. image: {
  35677. source: "./media/characters/softpurr/paw.svg"
  35678. }
  35679. },
  35680. },
  35681. [
  35682. {
  35683. name: "Normal",
  35684. height: math.unit(5 + 1/12, "feet"),
  35685. default: true
  35686. },
  35687. ]
  35688. ))
  35689. characterMakers.push(() => makeCharacter(
  35690. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35691. {
  35692. front: {
  35693. height: math.unit(260, "meters"),
  35694. name: "Front",
  35695. image: {
  35696. source: "./media/characters/anahita/front.svg",
  35697. extra: 665/635,
  35698. bottom: 89/754
  35699. }
  35700. },
  35701. },
  35702. [
  35703. {
  35704. name: "Macro",
  35705. height: math.unit(260, "meters"),
  35706. default: true
  35707. },
  35708. ]
  35709. ))
  35710. characterMakers.push(() => makeCharacter(
  35711. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35712. {
  35713. front: {
  35714. height: math.unit(4 + 10/12, "feet"),
  35715. weight: math.unit(160, "lb"),
  35716. name: "Front",
  35717. image: {
  35718. source: "./media/characters/chip-mouse/front.svg",
  35719. extra: 3528/3408,
  35720. bottom: 0/3528
  35721. }
  35722. },
  35723. frontNsfw: {
  35724. height: math.unit(4 + 10/12, "feet"),
  35725. weight: math.unit(160, "lb"),
  35726. name: "Front (NSFW)",
  35727. image: {
  35728. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35729. extra: 3528/3408,
  35730. bottom: 0/3528
  35731. }
  35732. },
  35733. },
  35734. [
  35735. {
  35736. name: "Normal",
  35737. height: math.unit(4 + 10/12, "feet"),
  35738. default: true
  35739. },
  35740. ]
  35741. ))
  35742. characterMakers.push(() => makeCharacter(
  35743. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35744. {
  35745. side: {
  35746. height: math.unit(10, "feet"),
  35747. weight: math.unit(14000, "lb"),
  35748. name: "Side",
  35749. image: {
  35750. source: "./media/characters/kremm/side.svg",
  35751. extra: 1390/1053,
  35752. bottom: 90/1480
  35753. }
  35754. },
  35755. gut: {
  35756. height: math.unit(5.8, "feet"),
  35757. name: "Gut",
  35758. image: {
  35759. source: "./media/characters/kremm/gut.svg"
  35760. }
  35761. },
  35762. ass: {
  35763. height: math.unit(6.1, "feet"),
  35764. name: "Ass",
  35765. image: {
  35766. source: "./media/characters/kremm/ass.svg"
  35767. }
  35768. },
  35769. jaws: {
  35770. height: math.unit(2.2, "feet"),
  35771. name: "Jaws",
  35772. image: {
  35773. source: "./media/characters/kremm/jaws.svg"
  35774. }
  35775. },
  35776. dick: {
  35777. height: math.unit(4.26, "feet"),
  35778. name: "Dick",
  35779. image: {
  35780. source: "./media/characters/kremm/dick.svg"
  35781. }
  35782. },
  35783. },
  35784. [
  35785. {
  35786. name: "Normal",
  35787. height: math.unit(10, "feet"),
  35788. default: true
  35789. },
  35790. ]
  35791. ))
  35792. characterMakers.push(() => makeCharacter(
  35793. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35794. {
  35795. front: {
  35796. height: math.unit(30, "stories"),
  35797. name: "Front",
  35798. image: {
  35799. source: "./media/characters/kai/front.svg",
  35800. extra: 1892/1718,
  35801. bottom: 162/2054
  35802. }
  35803. },
  35804. },
  35805. [
  35806. {
  35807. name: "Macro",
  35808. height: math.unit(30, "stories"),
  35809. default: true
  35810. },
  35811. ]
  35812. ))
  35813. characterMakers.push(() => makeCharacter(
  35814. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35815. {
  35816. front: {
  35817. height: math.unit(6 + 4/12, "feet"),
  35818. weight: math.unit(145, "lb"),
  35819. name: "Front",
  35820. image: {
  35821. source: "./media/characters/sykes/front.svg",
  35822. extra: 1321 / 1187,
  35823. bottom: 66 / 1387
  35824. }
  35825. },
  35826. back: {
  35827. height: math.unit(6 + 4/12, "feet"),
  35828. weight: math.unit(145, "lb"),
  35829. name: "Back",
  35830. image: {
  35831. source: "./media/characters/sykes/back.svg",
  35832. extra: 1326/1181,
  35833. bottom: 31/1357
  35834. }
  35835. },
  35836. traditionalOutfit: {
  35837. height: math.unit(6 + 4/12, "feet"),
  35838. weight: math.unit(145, "lb"),
  35839. name: "Traditional Outfit",
  35840. image: {
  35841. source: "./media/characters/sykes/traditional-outfit.svg",
  35842. extra: 1321 / 1187,
  35843. bottom: 66 / 1387
  35844. }
  35845. },
  35846. adventureOutfit: {
  35847. height: math.unit(6 + 4/12, "feet"),
  35848. weight: math.unit(145, "lb"),
  35849. name: "Adventure Outfit",
  35850. image: {
  35851. source: "./media/characters/sykes/adventure-outfit.svg",
  35852. extra: 1321 / 1187,
  35853. bottom: 66 / 1387
  35854. }
  35855. },
  35856. handLeft: {
  35857. height: math.unit(0.9, "feet"),
  35858. name: "Hand (Left)",
  35859. image: {
  35860. source: "./media/characters/sykes/hand-left.svg"
  35861. }
  35862. },
  35863. handRight: {
  35864. height: math.unit(0.839, "feet"),
  35865. name: "Hand (Right)",
  35866. image: {
  35867. source: "./media/characters/sykes/hand-right.svg"
  35868. }
  35869. },
  35870. leftFoot: {
  35871. height: math.unit(1.2, "feet"),
  35872. name: "Foot (Left)",
  35873. image: {
  35874. source: "./media/characters/sykes/foot-left.svg"
  35875. }
  35876. },
  35877. rightFoot: {
  35878. height: math.unit(1.2, "feet"),
  35879. name: "Foot (Right)",
  35880. image: {
  35881. source: "./media/characters/sykes/foot-right.svg"
  35882. }
  35883. },
  35884. maw: {
  35885. height: math.unit(1.93, "feet"),
  35886. name: "Maw",
  35887. image: {
  35888. source: "./media/characters/sykes/maw.svg"
  35889. }
  35890. },
  35891. teeth: {
  35892. height: math.unit(0.51, "feet"),
  35893. name: "Teeth",
  35894. image: {
  35895. source: "./media/characters/sykes/teeth.svg"
  35896. }
  35897. },
  35898. tongue: {
  35899. height: math.unit(2.13, "feet"),
  35900. name: "Tongue",
  35901. image: {
  35902. source: "./media/characters/sykes/tongue.svg"
  35903. }
  35904. },
  35905. uvula: {
  35906. height: math.unit(0.16, "feet"),
  35907. name: "Uvula",
  35908. image: {
  35909. source: "./media/characters/sykes/uvula.svg"
  35910. }
  35911. },
  35912. collar: {
  35913. height: math.unit(0.287, "feet"),
  35914. name: "Collar",
  35915. image: {
  35916. source: "./media/characters/sykes/collar.svg"
  35917. }
  35918. },
  35919. tail: {
  35920. height: math.unit(3.8, "feet"),
  35921. name: "Tail",
  35922. image: {
  35923. source: "./media/characters/sykes/tail.svg"
  35924. }
  35925. },
  35926. },
  35927. [
  35928. {
  35929. name: "Shrunken",
  35930. height: math.unit(5, "inches")
  35931. },
  35932. {
  35933. name: "Normal",
  35934. height: math.unit(6 + 4 / 12, "feet"),
  35935. default: true
  35936. },
  35937. {
  35938. name: "Big",
  35939. height: math.unit(15, "feet")
  35940. },
  35941. ]
  35942. ))
  35943. characterMakers.push(() => makeCharacter(
  35944. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35945. {
  35946. front: {
  35947. height: math.unit(5 + 8/12, "feet"),
  35948. weight: math.unit(190, "lb"),
  35949. name: "Front",
  35950. image: {
  35951. source: "./media/characters/oven-otter/front.svg",
  35952. extra: 1809/1740,
  35953. bottom: 181/1990
  35954. }
  35955. },
  35956. back: {
  35957. height: math.unit(5 + 8/12, "feet"),
  35958. weight: math.unit(190, "lb"),
  35959. name: "Back",
  35960. image: {
  35961. source: "./media/characters/oven-otter/back.svg",
  35962. extra: 1709/1635,
  35963. bottom: 118/1827
  35964. }
  35965. },
  35966. hand: {
  35967. height: math.unit(1.07, "feet"),
  35968. name: "Hand",
  35969. image: {
  35970. source: "./media/characters/oven-otter/hand.svg"
  35971. }
  35972. },
  35973. beans: {
  35974. height: math.unit(1.74, "feet"),
  35975. name: "Beans",
  35976. image: {
  35977. source: "./media/characters/oven-otter/beans.svg"
  35978. }
  35979. },
  35980. },
  35981. [
  35982. {
  35983. name: "Micro",
  35984. height: math.unit(0.5, "inches")
  35985. },
  35986. {
  35987. name: "Normal",
  35988. height: math.unit(5 + 8/12, "feet"),
  35989. default: true
  35990. },
  35991. {
  35992. name: "Macro",
  35993. height: math.unit(250, "feet")
  35994. },
  35995. {
  35996. name: "Really High",
  35997. height: math.unit(420, "feet")
  35998. },
  35999. ]
  36000. ))
  36001. characterMakers.push(() => makeCharacter(
  36002. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36003. {
  36004. front: {
  36005. height: math.unit(5, "meters"),
  36006. weight: math.unit(292000000000000, "kg"),
  36007. name: "Front",
  36008. image: {
  36009. source: "./media/characters/devourer/front.svg",
  36010. extra: 1800/1733,
  36011. bottom: 211/2011
  36012. }
  36013. },
  36014. maw: {
  36015. height: math.unit(1.1, "meter"),
  36016. name: "Maw",
  36017. image: {
  36018. source: "./media/characters/devourer/maw.svg"
  36019. }
  36020. },
  36021. },
  36022. [
  36023. {
  36024. name: "Small",
  36025. height: math.unit(3, "meters")
  36026. },
  36027. {
  36028. name: "Large",
  36029. height: math.unit(5, "meters"),
  36030. default: true
  36031. },
  36032. ]
  36033. ))
  36034. characterMakers.push(() => makeCharacter(
  36035. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36036. {
  36037. front: {
  36038. height: math.unit(6, "feet"),
  36039. weight: math.unit(400, "lb"),
  36040. name: "Front",
  36041. image: {
  36042. source: "./media/characters/ellarby/front.svg",
  36043. extra: 1909/1763,
  36044. bottom: 80/1989
  36045. }
  36046. },
  36047. back: {
  36048. height: math.unit(6, "feet"),
  36049. weight: math.unit(400, "lb"),
  36050. name: "Back",
  36051. image: {
  36052. source: "./media/characters/ellarby/back.svg",
  36053. extra: 1914/1784,
  36054. bottom: 172/2086
  36055. }
  36056. },
  36057. },
  36058. [
  36059. {
  36060. name: "Mischief",
  36061. height: math.unit(18, "inches")
  36062. },
  36063. {
  36064. name: "Trouble",
  36065. height: math.unit(12, "feet")
  36066. },
  36067. {
  36068. name: "Havoc",
  36069. height: math.unit(200, "feet"),
  36070. default: true
  36071. },
  36072. {
  36073. name: "Pandemonium",
  36074. height: math.unit(1, "mile")
  36075. },
  36076. {
  36077. name: "Catastrophe",
  36078. height: math.unit(100, "miles")
  36079. },
  36080. ]
  36081. ))
  36082. characterMakers.push(() => makeCharacter(
  36083. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36084. {
  36085. front: {
  36086. height: math.unit(4.7, "meters"),
  36087. weight: math.unit(6500, "kg"),
  36088. name: "Front",
  36089. image: {
  36090. source: "./media/characters/vex/front.svg",
  36091. extra: 1288/1140,
  36092. bottom: 100/1388
  36093. }
  36094. },
  36095. },
  36096. [
  36097. {
  36098. name: "Normal",
  36099. height: math.unit(4.7, "meters"),
  36100. default: true
  36101. },
  36102. ]
  36103. ))
  36104. characterMakers.push(() => makeCharacter(
  36105. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36106. {
  36107. normal: {
  36108. height: math.unit(6, "feet"),
  36109. weight: math.unit(350, "lb"),
  36110. name: "Normal",
  36111. image: {
  36112. source: "./media/characters/teshy/normal.svg",
  36113. extra: 1795/1735,
  36114. bottom: 16/1811
  36115. }
  36116. },
  36117. monsterFront: {
  36118. height: math.unit(12, "feet"),
  36119. weight: math.unit(4700, "lb"),
  36120. name: "Monster (Front)",
  36121. image: {
  36122. source: "./media/characters/teshy/monster-front.svg",
  36123. extra: 2042/2034,
  36124. bottom: 128/2170
  36125. }
  36126. },
  36127. monsterSide: {
  36128. height: math.unit(12, "feet"),
  36129. weight: math.unit(4700, "lb"),
  36130. name: "Monster (Side)",
  36131. image: {
  36132. source: "./media/characters/teshy/monster-side.svg",
  36133. extra: 2067/2056,
  36134. bottom: 70/2137
  36135. }
  36136. },
  36137. monsterBack: {
  36138. height: math.unit(12, "feet"),
  36139. weight: math.unit(4700, "lb"),
  36140. name: "Monster (Back)",
  36141. image: {
  36142. source: "./media/characters/teshy/monster-back.svg",
  36143. extra: 1921/1914,
  36144. bottom: 171/2092
  36145. }
  36146. },
  36147. },
  36148. [
  36149. {
  36150. name: "Normal",
  36151. height: math.unit(6, "feet"),
  36152. default: true
  36153. },
  36154. ]
  36155. ))
  36156. characterMakers.push(() => makeCharacter(
  36157. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36158. {
  36159. front: {
  36160. height: math.unit(6, "feet"),
  36161. name: "Front",
  36162. image: {
  36163. source: "./media/characters/ramey/front.svg",
  36164. extra: 790/787,
  36165. bottom: 27/817
  36166. }
  36167. },
  36168. },
  36169. [
  36170. {
  36171. name: "Normal",
  36172. height: math.unit(6, "feet"),
  36173. default: true
  36174. },
  36175. ]
  36176. ))
  36177. characterMakers.push(() => makeCharacter(
  36178. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36179. {
  36180. front: {
  36181. height: math.unit(5 + 5/12, "feet"),
  36182. weight: math.unit(120, "lb"),
  36183. name: "Front",
  36184. image: {
  36185. source: "./media/characters/phirae/front.svg",
  36186. extra: 2491/2436,
  36187. bottom: 38/2529
  36188. }
  36189. },
  36190. },
  36191. [
  36192. {
  36193. name: "Normal",
  36194. height: math.unit(5 + 5/12, "feet"),
  36195. default: true
  36196. },
  36197. ]
  36198. ))
  36199. characterMakers.push(() => makeCharacter(
  36200. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36201. {
  36202. front: {
  36203. height: math.unit(5 + 3/12, "feet"),
  36204. name: "Front",
  36205. image: {
  36206. source: "./media/characters/stagglas/front.svg",
  36207. extra: 962/882,
  36208. bottom: 53/1015
  36209. }
  36210. },
  36211. feral: {
  36212. height: math.unit(335, "cm"),
  36213. name: "Feral",
  36214. image: {
  36215. source: "./media/characters/stagglas/feral.svg",
  36216. extra: 1732/1090,
  36217. bottom: 48/1780
  36218. }
  36219. },
  36220. },
  36221. [
  36222. {
  36223. name: "Normal",
  36224. height: math.unit(5 + 3/12, "feet"),
  36225. default: true
  36226. },
  36227. ]
  36228. ))
  36229. characterMakers.push(() => makeCharacter(
  36230. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36231. {
  36232. front: {
  36233. height: math.unit(5 + 4/12, "feet"),
  36234. weight: math.unit(145, "lb"),
  36235. name: "Front",
  36236. image: {
  36237. source: "./media/characters/starra/front.svg",
  36238. extra: 1790/1691,
  36239. bottom: 91/1881
  36240. }
  36241. },
  36242. },
  36243. [
  36244. {
  36245. name: "Normal",
  36246. height: math.unit(5 + 4/12, "feet"),
  36247. default: true
  36248. },
  36249. ]
  36250. ))
  36251. characterMakers.push(() => makeCharacter(
  36252. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36253. {
  36254. front: {
  36255. height: math.unit(2.2, "meters"),
  36256. name: "Front",
  36257. image: {
  36258. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36259. extra: 1248/972,
  36260. bottom: 38/1286
  36261. }
  36262. },
  36263. },
  36264. [
  36265. {
  36266. name: "Normal",
  36267. height: math.unit(2.2, "meters"),
  36268. default: true
  36269. },
  36270. ]
  36271. ))
  36272. characterMakers.push(() => makeCharacter(
  36273. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36274. {
  36275. side: {
  36276. height: math.unit(8 + 2/12, "feet"),
  36277. weight: math.unit(1240, "lb"),
  36278. name: "Side",
  36279. image: {
  36280. source: "./media/characters/mika-valentine/side.svg",
  36281. extra: 2670/2501,
  36282. bottom: 250/2920
  36283. }
  36284. },
  36285. },
  36286. [
  36287. {
  36288. name: "Normal",
  36289. height: math.unit(8 + 2/12, "feet"),
  36290. default: true
  36291. },
  36292. ]
  36293. ))
  36294. characterMakers.push(() => makeCharacter(
  36295. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36296. {
  36297. front: {
  36298. height: math.unit(7 + 2/12, "feet"),
  36299. name: "Front",
  36300. image: {
  36301. source: "./media/characters/xoltol/front.svg",
  36302. extra: 2212/2124,
  36303. bottom: 84/2296
  36304. }
  36305. },
  36306. side: {
  36307. height: math.unit(7 + 2/12, "feet"),
  36308. name: "Side",
  36309. image: {
  36310. source: "./media/characters/xoltol/side.svg",
  36311. extra: 2273/2197,
  36312. bottom: 26/2299
  36313. }
  36314. },
  36315. hand: {
  36316. height: math.unit(2.5, "feet"),
  36317. name: "Hand",
  36318. image: {
  36319. source: "./media/characters/xoltol/hand.svg"
  36320. }
  36321. },
  36322. },
  36323. [
  36324. {
  36325. name: "Small-ish",
  36326. height: math.unit(5 + 11/12, "feet")
  36327. },
  36328. {
  36329. name: "Normal",
  36330. height: math.unit(7 + 2/12, "feet")
  36331. },
  36332. {
  36333. name: "\"Macro\"",
  36334. height: math.unit(14 + 9/12, "feet"),
  36335. default: true
  36336. },
  36337. {
  36338. name: "Alternate Height",
  36339. height: math.unit(20, "feet")
  36340. },
  36341. {
  36342. name: "Actually Macro",
  36343. height: math.unit(100, "feet")
  36344. },
  36345. ]
  36346. ))
  36347. characterMakers.push(() => makeCharacter(
  36348. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36349. {
  36350. front: {
  36351. height: math.unit(5 + 2/12, "feet"),
  36352. name: "Front",
  36353. image: {
  36354. source: "./media/characters/kotetsu-redwood/front.svg",
  36355. extra: 1053/942,
  36356. bottom: 60/1113
  36357. }
  36358. },
  36359. },
  36360. [
  36361. {
  36362. name: "Normal",
  36363. height: math.unit(5 + 2/12, "feet"),
  36364. default: true
  36365. },
  36366. ]
  36367. ))
  36368. characterMakers.push(() => makeCharacter(
  36369. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36370. {
  36371. front: {
  36372. height: math.unit(2.4, "meters"),
  36373. weight: math.unit(125, "kg"),
  36374. name: "Front",
  36375. image: {
  36376. source: "./media/characters/lilith/front.svg",
  36377. extra: 1590/1513,
  36378. bottom: 203/1793
  36379. }
  36380. },
  36381. },
  36382. [
  36383. {
  36384. name: "Humanoid",
  36385. height: math.unit(2.4, "meters")
  36386. },
  36387. {
  36388. name: "Normal",
  36389. height: math.unit(6, "meters"),
  36390. default: true
  36391. },
  36392. {
  36393. name: "Largest",
  36394. height: math.unit(55, "meters")
  36395. },
  36396. ]
  36397. ))
  36398. characterMakers.push(() => makeCharacter(
  36399. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36400. {
  36401. front: {
  36402. height: math.unit(8 + 4/12, "feet"),
  36403. weight: math.unit(535, "lb"),
  36404. name: "Front",
  36405. image: {
  36406. source: "./media/characters/beh'kah-bolger/front.svg",
  36407. extra: 1660/1603,
  36408. bottom: 37/1697
  36409. }
  36410. },
  36411. },
  36412. [
  36413. {
  36414. name: "Normal",
  36415. height: math.unit(8 + 4/12, "feet"),
  36416. default: true
  36417. },
  36418. {
  36419. name: "Kaiju",
  36420. height: math.unit(250, "feet")
  36421. },
  36422. {
  36423. name: "Still Growing",
  36424. height: math.unit(10, "miles")
  36425. },
  36426. {
  36427. name: "Continental",
  36428. height: math.unit(5000, "miles")
  36429. },
  36430. {
  36431. name: "Final Form",
  36432. height: math.unit(2500000, "miles")
  36433. },
  36434. ]
  36435. ))
  36436. characterMakers.push(() => makeCharacter(
  36437. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36438. {
  36439. front: {
  36440. height: math.unit(7 + 2/12, "feet"),
  36441. weight: math.unit(230, "kg"),
  36442. name: "Front",
  36443. image: {
  36444. source: "./media/characters/tatyana-milewska/front.svg",
  36445. extra: 1199/1150,
  36446. bottom: 86/1285
  36447. }
  36448. },
  36449. },
  36450. [
  36451. {
  36452. name: "Normal",
  36453. height: math.unit(7 + 2/12, "feet"),
  36454. default: true
  36455. },
  36456. {
  36457. name: "Big",
  36458. height: math.unit(12, "feet")
  36459. },
  36460. {
  36461. name: "Minimacro",
  36462. height: math.unit(20, "feet")
  36463. },
  36464. {
  36465. name: "Macro",
  36466. height: math.unit(120, "feet")
  36467. },
  36468. ]
  36469. ))
  36470. characterMakers.push(() => makeCharacter(
  36471. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36472. {
  36473. front: {
  36474. height: math.unit(7 + 8/12, "feet"),
  36475. weight: math.unit(152, "kg"),
  36476. name: "Front",
  36477. image: {
  36478. source: "./media/characters/helen-arri/front.svg",
  36479. extra: 440/423,
  36480. bottom: 14/454
  36481. }
  36482. },
  36483. back: {
  36484. height: math.unit(7 + 8/12, "feet"),
  36485. weight: math.unit(152, "kg"),
  36486. name: "Back",
  36487. image: {
  36488. source: "./media/characters/helen-arri/back.svg",
  36489. extra: 443/426,
  36490. bottom: 8/451
  36491. }
  36492. },
  36493. },
  36494. [
  36495. {
  36496. name: "Normal",
  36497. height: math.unit(7 + 8/12, "feet"),
  36498. default: true
  36499. },
  36500. {
  36501. name: "Big",
  36502. height: math.unit(14, "feet")
  36503. },
  36504. {
  36505. name: "Minimacro",
  36506. height: math.unit(24, "feet")
  36507. },
  36508. {
  36509. name: "Macro",
  36510. height: math.unit(140, "feet")
  36511. },
  36512. ]
  36513. ))
  36514. characterMakers.push(() => makeCharacter(
  36515. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36516. {
  36517. front: {
  36518. height: math.unit(6, "meters"),
  36519. name: "Front",
  36520. image: {
  36521. source: "./media/characters/ehanu-rehu/front.svg",
  36522. extra: 1800/1800,
  36523. bottom: 59/1859
  36524. }
  36525. },
  36526. },
  36527. [
  36528. {
  36529. name: "Normal",
  36530. height: math.unit(6, "meters"),
  36531. default: true
  36532. },
  36533. ]
  36534. ))
  36535. characterMakers.push(() => makeCharacter(
  36536. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36537. {
  36538. front: {
  36539. height: math.unit(7 + 3/12, "feet"),
  36540. name: "Front",
  36541. image: {
  36542. source: "./media/characters/renholder/front.svg",
  36543. extra: 3096/2960,
  36544. bottom: 250/3346
  36545. }
  36546. },
  36547. },
  36548. [
  36549. {
  36550. name: "Normal Bat",
  36551. height: math.unit(7 + 3/12, "feet"),
  36552. default: true
  36553. },
  36554. {
  36555. name: "Slightly Tall Bat",
  36556. height: math.unit(100, "feet")
  36557. },
  36558. {
  36559. name: "Big Bat",
  36560. height: math.unit(1000, "feet")
  36561. },
  36562. {
  36563. name: "City-Sized Bat",
  36564. height: math.unit(200000, "feet")
  36565. },
  36566. {
  36567. name: "Bigger Bat",
  36568. height: math.unit(10000, "miles")
  36569. },
  36570. {
  36571. name: "Solar Sized Bat",
  36572. height: math.unit(100, "AU")
  36573. },
  36574. {
  36575. name: "Galactic Bat",
  36576. height: math.unit(200000, "lightyears")
  36577. },
  36578. {
  36579. name: "Universally Known Bat",
  36580. height: math.unit(1, "universe")
  36581. },
  36582. ]
  36583. ))
  36584. characterMakers.push(() => makeCharacter(
  36585. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36586. {
  36587. front: {
  36588. height: math.unit(6 + 11/12, "feet"),
  36589. weight: math.unit(250, "lb"),
  36590. name: "Front",
  36591. image: {
  36592. source: "./media/characters/cookiecat/front.svg",
  36593. extra: 893/827,
  36594. bottom: 14/907
  36595. }
  36596. },
  36597. },
  36598. [
  36599. {
  36600. name: "Micro",
  36601. height: math.unit(3, "inches")
  36602. },
  36603. {
  36604. name: "Normal",
  36605. height: math.unit(6 + 11/12, "feet"),
  36606. default: true
  36607. },
  36608. {
  36609. name: "Macro",
  36610. height: math.unit(100, "feet")
  36611. },
  36612. {
  36613. name: "Macro+",
  36614. height: math.unit(404, "feet")
  36615. },
  36616. {
  36617. name: "Megamacro",
  36618. height: math.unit(165, "miles")
  36619. },
  36620. {
  36621. name: "Planetary",
  36622. height: math.unit(4600, "miles")
  36623. },
  36624. ]
  36625. ))
  36626. characterMakers.push(() => makeCharacter(
  36627. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36628. {
  36629. front: {
  36630. height: math.unit(10 + 3/12, "feet"),
  36631. weight: math.unit(1500, "lb"),
  36632. name: "Front",
  36633. image: {
  36634. source: "./media/characters/tux-kusanagi/front.svg",
  36635. extra: 944/840,
  36636. bottom: 39/983
  36637. }
  36638. },
  36639. back: {
  36640. height: math.unit(10 + 3/12, "feet"),
  36641. weight: math.unit(1500, "lb"),
  36642. name: "Back",
  36643. image: {
  36644. source: "./media/characters/tux-kusanagi/back.svg",
  36645. extra: 941/842,
  36646. bottom: 28/969
  36647. }
  36648. },
  36649. rump: {
  36650. height: math.unit(5.25, "feet"),
  36651. name: "Rump",
  36652. image: {
  36653. source: "./media/characters/tux-kusanagi/rump.svg"
  36654. }
  36655. },
  36656. beak: {
  36657. height: math.unit(1.54, "feet"),
  36658. name: "Beak",
  36659. image: {
  36660. source: "./media/characters/tux-kusanagi/beak.svg"
  36661. }
  36662. },
  36663. },
  36664. [
  36665. {
  36666. name: "Normal",
  36667. height: math.unit(10 + 3/12, "feet"),
  36668. default: true
  36669. },
  36670. ]
  36671. ))
  36672. characterMakers.push(() => makeCharacter(
  36673. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36674. {
  36675. front: {
  36676. height: math.unit(58, "feet"),
  36677. weight: math.unit(200, "tons"),
  36678. name: "Front",
  36679. image: {
  36680. source: "./media/characters/uzarmazari/front.svg",
  36681. extra: 1575/1455,
  36682. bottom: 152/1727
  36683. }
  36684. },
  36685. back: {
  36686. height: math.unit(58, "feet"),
  36687. weight: math.unit(200, "tons"),
  36688. name: "Back",
  36689. image: {
  36690. source: "./media/characters/uzarmazari/back.svg",
  36691. extra: 1585/1510,
  36692. bottom: 157/1742
  36693. }
  36694. },
  36695. head: {
  36696. height: math.unit(26, "feet"),
  36697. name: "Head",
  36698. image: {
  36699. source: "./media/characters/uzarmazari/head.svg"
  36700. }
  36701. },
  36702. },
  36703. [
  36704. {
  36705. name: "Normal",
  36706. height: math.unit(58, "feet"),
  36707. default: true
  36708. },
  36709. ]
  36710. ))
  36711. characterMakers.push(() => makeCharacter(
  36712. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36713. {
  36714. side: {
  36715. height: math.unit(15, "feet"),
  36716. name: "Side",
  36717. image: {
  36718. source: "./media/characters/akitu/side.svg",
  36719. extra: 1421/1321,
  36720. bottom: 157/1578
  36721. }
  36722. },
  36723. front: {
  36724. height: math.unit(15, "feet"),
  36725. name: "Front",
  36726. image: {
  36727. source: "./media/characters/akitu/front.svg",
  36728. extra: 1435/1326,
  36729. bottom: 232/1667
  36730. }
  36731. },
  36732. },
  36733. [
  36734. {
  36735. name: "Normal",
  36736. height: math.unit(15, "feet"),
  36737. default: true
  36738. },
  36739. ]
  36740. ))
  36741. characterMakers.push(() => makeCharacter(
  36742. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36743. {
  36744. front: {
  36745. height: math.unit(10 + 8/12, "feet"),
  36746. name: "Front",
  36747. image: {
  36748. source: "./media/characters/azalie-croixland/front.svg",
  36749. extra: 1972/1856,
  36750. bottom: 31/2003
  36751. }
  36752. },
  36753. },
  36754. [
  36755. {
  36756. name: "Original Height",
  36757. height: math.unit(5 + 4/12, "feet")
  36758. },
  36759. {
  36760. name: "Normal Height",
  36761. height: math.unit(10 + 8/12, "feet"),
  36762. default: true
  36763. },
  36764. ]
  36765. ))
  36766. characterMakers.push(() => makeCharacter(
  36767. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36768. {
  36769. side: {
  36770. height: math.unit(7 + 1/12, "feet"),
  36771. weight: math.unit(245, "lb"),
  36772. name: "Side",
  36773. image: {
  36774. source: "./media/characters/kavus-kazian/side.svg",
  36775. extra: 349/342,
  36776. bottom: 15/364
  36777. }
  36778. },
  36779. },
  36780. [
  36781. {
  36782. name: "Normal",
  36783. height: math.unit(7 + 1/12, "feet"),
  36784. default: true
  36785. },
  36786. ]
  36787. ))
  36788. characterMakers.push(() => makeCharacter(
  36789. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36790. {
  36791. normalFront: {
  36792. height: math.unit(5 + 11/12, "feet"),
  36793. name: "Front",
  36794. image: {
  36795. source: "./media/characters/moonlight-rose/normal-front.svg",
  36796. extra: 1980/1825,
  36797. bottom: 18/1998
  36798. },
  36799. form: "normal",
  36800. default: true
  36801. },
  36802. normalBack: {
  36803. height: math.unit(5 + 11/12, "feet"),
  36804. name: "Back",
  36805. image: {
  36806. source: "./media/characters/moonlight-rose/normal-back.svg",
  36807. extra: 2010/1839,
  36808. bottom: 10/2020
  36809. },
  36810. form: "normal"
  36811. },
  36812. demonFront: {
  36813. height: math.unit(1.5, "earths"),
  36814. name: "Front",
  36815. image: {
  36816. source: "./media/characters/moonlight-rose/demon.svg",
  36817. extra: 1400/1294,
  36818. bottom: 45/1445
  36819. },
  36820. form: "demon",
  36821. default: true
  36822. },
  36823. terraFront: {
  36824. height: math.unit(1.5, "earths"),
  36825. name: "Front",
  36826. image: {
  36827. source: "./media/characters/moonlight-rose/terra.svg"
  36828. },
  36829. form: "terra",
  36830. default: true
  36831. },
  36832. jupiterFront: {
  36833. height: math.unit(69911*2, "km"),
  36834. name: "Front",
  36835. image: {
  36836. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36837. extra: 1367/1286,
  36838. bottom: 55/1422
  36839. },
  36840. form: "jupiter",
  36841. default: true
  36842. },
  36843. neptuneFront: {
  36844. height: math.unit(24622*2, "feet"),
  36845. name: "Front",
  36846. image: {
  36847. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36848. extra: 1851/1712,
  36849. bottom: 0/1851
  36850. },
  36851. form: "neptune",
  36852. default: true
  36853. },
  36854. },
  36855. [
  36856. {
  36857. name: "\"Natural\" Height",
  36858. height: math.unit(5 + 11/12, "feet"),
  36859. form: "normal"
  36860. },
  36861. {
  36862. name: "Smallest comfortable size",
  36863. height: math.unit(40, "meters"),
  36864. form: "normal"
  36865. },
  36866. {
  36867. name: "Common size",
  36868. height: math.unit(50, "km"),
  36869. form: "normal",
  36870. default: true
  36871. },
  36872. {
  36873. name: "Normal",
  36874. height: math.unit(1.5, "earths"),
  36875. form: "demon",
  36876. default: true
  36877. },
  36878. {
  36879. name: "Universal",
  36880. height: math.unit(15, "universes"),
  36881. form: "demon"
  36882. },
  36883. {
  36884. name: "Earth",
  36885. height: math.unit(1.5, "earths"),
  36886. form: "terra",
  36887. default: true
  36888. },
  36889. {
  36890. name: "Super Earth",
  36891. height: math.unit(67.5, "earths"),
  36892. form: "terra"
  36893. },
  36894. {
  36895. name: "Doesn't fit in a solar system...",
  36896. height: math.unit(1, "galaxy"),
  36897. form: "terra"
  36898. },
  36899. {
  36900. name: "Saturn",
  36901. height: math.unit(58232*2, "km"),
  36902. form: "jupiter"
  36903. },
  36904. {
  36905. name: "Jupiter",
  36906. height: math.unit(69911*2, "km"),
  36907. form: "jupiter",
  36908. default: true
  36909. },
  36910. {
  36911. name: "HD 100546 b",
  36912. height: math.unit(482938, "km"),
  36913. form: "jupiter"
  36914. },
  36915. {
  36916. name: "Enceladus",
  36917. height: math.unit(513*2, "km"),
  36918. form: "neptune"
  36919. },
  36920. {
  36921. name: "Europe",
  36922. height: math.unit(1560*2, "km"),
  36923. form: "neptune"
  36924. },
  36925. {
  36926. name: "Neptune",
  36927. height: math.unit(24622*2, "km"),
  36928. form: "neptune",
  36929. default: true
  36930. },
  36931. {
  36932. name: "CoRoT-9b",
  36933. height: math.unit(75067*2, "km"),
  36934. form: "neptune"
  36935. },
  36936. ],
  36937. {
  36938. "normal": {
  36939. name: "Normal",
  36940. default: true
  36941. },
  36942. "demon": {
  36943. name: "Demon"
  36944. },
  36945. "terra": {
  36946. name: "Terra"
  36947. },
  36948. "jupiter": {
  36949. name: "Jupiter"
  36950. },
  36951. "neptune": {
  36952. name: "Neptune"
  36953. }
  36954. }
  36955. ))
  36956. characterMakers.push(() => makeCharacter(
  36957. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36958. {
  36959. front: {
  36960. height: math.unit(16, "feet"),
  36961. weight: math.unit(610, "kg"),
  36962. name: "Front",
  36963. image: {
  36964. source: "./media/characters/huckle/front.svg",
  36965. extra: 1731/1625,
  36966. bottom: 33/1764
  36967. }
  36968. },
  36969. back: {
  36970. height: math.unit(16, "feet"),
  36971. weight: math.unit(610, "kg"),
  36972. name: "Back",
  36973. image: {
  36974. source: "./media/characters/huckle/back.svg",
  36975. extra: 1738/1651,
  36976. bottom: 37/1775
  36977. }
  36978. },
  36979. laughing: {
  36980. height: math.unit(3.75, "feet"),
  36981. name: "Laughing",
  36982. image: {
  36983. source: "./media/characters/huckle/laughing.svg"
  36984. }
  36985. },
  36986. angry: {
  36987. height: math.unit(4.15, "feet"),
  36988. name: "Angry",
  36989. image: {
  36990. source: "./media/characters/huckle/angry.svg"
  36991. }
  36992. },
  36993. },
  36994. [
  36995. {
  36996. name: "Normal",
  36997. height: math.unit(16, "feet"),
  36998. default: true
  36999. },
  37000. {
  37001. name: "Mini Macro",
  37002. height: math.unit(463, "feet")
  37003. },
  37004. {
  37005. name: "Macro",
  37006. height: math.unit(1680, "meters")
  37007. },
  37008. {
  37009. name: "Mega Macro",
  37010. height: math.unit(175, "km")
  37011. },
  37012. {
  37013. name: "Terra Macro",
  37014. height: math.unit(32, "gigameters")
  37015. },
  37016. {
  37017. name: "Multiverse+",
  37018. height: math.unit(2.56e23, "yottameters")
  37019. },
  37020. ]
  37021. ))
  37022. characterMakers.push(() => makeCharacter(
  37023. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37024. {
  37025. front: {
  37026. height: math.unit(6 + 9/12, "feet"),
  37027. weight: math.unit(280, "lb"),
  37028. name: "Front",
  37029. image: {
  37030. source: "./media/characters/candy/front.svg",
  37031. extra: 234/217,
  37032. bottom: 11/245
  37033. }
  37034. },
  37035. },
  37036. [
  37037. {
  37038. name: "Really Small",
  37039. height: math.unit(0.1, "nm")
  37040. },
  37041. {
  37042. name: "Micro",
  37043. height: math.unit(2, "inches")
  37044. },
  37045. {
  37046. name: "Normal",
  37047. height: math.unit(6 + 9/12, "feet"),
  37048. default: true
  37049. },
  37050. {
  37051. name: "Small Macro",
  37052. height: math.unit(69, "feet")
  37053. },
  37054. {
  37055. name: "Macro",
  37056. height: math.unit(160, "feet")
  37057. },
  37058. {
  37059. name: "Megamacro",
  37060. height: math.unit(22000, "miles")
  37061. },
  37062. {
  37063. name: "Gigamacro",
  37064. height: math.unit(50000, "miles")
  37065. },
  37066. ]
  37067. ))
  37068. characterMakers.push(() => makeCharacter(
  37069. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37070. {
  37071. front: {
  37072. height: math.unit(4, "feet"),
  37073. weight: math.unit(90, "lb"),
  37074. name: "Front",
  37075. image: {
  37076. source: "./media/characters/joey-mcdonald/front.svg",
  37077. extra: 1059/852,
  37078. bottom: 33/1092
  37079. }
  37080. },
  37081. back: {
  37082. height: math.unit(4, "feet"),
  37083. weight: math.unit(90, "lb"),
  37084. name: "Back",
  37085. image: {
  37086. source: "./media/characters/joey-mcdonald/back.svg",
  37087. extra: 1077/879,
  37088. bottom: 5/1082
  37089. }
  37090. },
  37091. frontKobold: {
  37092. height: math.unit(4, "feet"),
  37093. weight: math.unit(100, "lb"),
  37094. name: "Front-kobold",
  37095. image: {
  37096. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37097. extra: 1480/1367,
  37098. bottom: 0/1480
  37099. }
  37100. },
  37101. backKobold: {
  37102. height: math.unit(4, "feet"),
  37103. weight: math.unit(100, "lb"),
  37104. name: "Back-kobold",
  37105. image: {
  37106. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37107. extra: 1449/1361,
  37108. bottom: 0/1449
  37109. }
  37110. },
  37111. },
  37112. [
  37113. {
  37114. name: "Normal",
  37115. height: math.unit(4, "feet"),
  37116. default: true
  37117. },
  37118. ]
  37119. ))
  37120. characterMakers.push(() => makeCharacter(
  37121. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37122. {
  37123. front: {
  37124. height: math.unit(12 + 6/12, "feet"),
  37125. name: "Front",
  37126. image: {
  37127. source: "./media/characters/kass-lockheed/front.svg",
  37128. extra: 354/343,
  37129. bottom: 9/363
  37130. }
  37131. },
  37132. back: {
  37133. height: math.unit(12 + 6/12, "feet"),
  37134. name: "Back",
  37135. image: {
  37136. source: "./media/characters/kass-lockheed/back.svg",
  37137. extra: 364/352,
  37138. bottom: 3/367
  37139. }
  37140. },
  37141. dick: {
  37142. height: math.unit(3.12, "feet"),
  37143. name: "Dick",
  37144. image: {
  37145. source: "./media/characters/kass-lockheed/dick.svg"
  37146. }
  37147. },
  37148. head: {
  37149. height: math.unit(2.6, "feet"),
  37150. name: "Head",
  37151. image: {
  37152. source: "./media/characters/kass-lockheed/head.svg"
  37153. }
  37154. },
  37155. bleh: {
  37156. height: math.unit(2.85, "feet"),
  37157. name: "Bleh",
  37158. image: {
  37159. source: "./media/characters/kass-lockheed/bleh.svg"
  37160. }
  37161. },
  37162. smug: {
  37163. height: math.unit(2.85, "feet"),
  37164. name: "Smug",
  37165. image: {
  37166. source: "./media/characters/kass-lockheed/smug.svg"
  37167. }
  37168. },
  37169. },
  37170. [
  37171. {
  37172. name: "Normal",
  37173. height: math.unit(12 + 6/12, "feet"),
  37174. default: true
  37175. },
  37176. ]
  37177. ))
  37178. characterMakers.push(() => makeCharacter(
  37179. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37180. {
  37181. front: {
  37182. height: math.unit(6 + 2/12, "feet"),
  37183. name: "Front",
  37184. image: {
  37185. source: "./media/characters/taylor/front.svg",
  37186. extra: 639/495,
  37187. bottom: 12/651
  37188. }
  37189. },
  37190. },
  37191. [
  37192. {
  37193. name: "Normal",
  37194. height: math.unit(6 + 2/12, "feet"),
  37195. default: true
  37196. },
  37197. {
  37198. name: "Big",
  37199. height: math.unit(15, "feet")
  37200. },
  37201. {
  37202. name: "Lorg",
  37203. height: math.unit(80, "feet")
  37204. },
  37205. {
  37206. name: "Too Lorg",
  37207. height: math.unit(120, "feet")
  37208. },
  37209. ]
  37210. ))
  37211. characterMakers.push(() => makeCharacter(
  37212. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37213. {
  37214. front: {
  37215. height: math.unit(15, "feet"),
  37216. name: "Front",
  37217. image: {
  37218. source: "./media/characters/kaizer/front.svg",
  37219. extra: 1612/1436,
  37220. bottom: 43/1655
  37221. }
  37222. },
  37223. },
  37224. [
  37225. {
  37226. name: "Normal",
  37227. height: math.unit(15, "feet"),
  37228. default: true
  37229. },
  37230. ]
  37231. ))
  37232. characterMakers.push(() => makeCharacter(
  37233. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37234. {
  37235. front: {
  37236. height: math.unit(2, "feet"),
  37237. weight: math.unit(30, "lb"),
  37238. name: "Front",
  37239. image: {
  37240. source: "./media/characters/sandy/front.svg",
  37241. extra: 1439/1307,
  37242. bottom: 194/1633
  37243. }
  37244. },
  37245. },
  37246. [
  37247. {
  37248. name: "Normal",
  37249. height: math.unit(2, "feet"),
  37250. default: true
  37251. },
  37252. ]
  37253. ))
  37254. characterMakers.push(() => makeCharacter(
  37255. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37256. {
  37257. front: {
  37258. height: math.unit(3, "feet"),
  37259. name: "Front",
  37260. image: {
  37261. source: "./media/characters/mellvi/front.svg",
  37262. extra: 1831/1630,
  37263. bottom: 58/1889
  37264. }
  37265. },
  37266. },
  37267. [
  37268. {
  37269. name: "Normal",
  37270. height: math.unit(3, "feet"),
  37271. default: true
  37272. },
  37273. ]
  37274. ))
  37275. characterMakers.push(() => makeCharacter(
  37276. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37277. {
  37278. front: {
  37279. height: math.unit(5 + 11/12, "feet"),
  37280. weight: math.unit(200, "lb"),
  37281. name: "Front",
  37282. image: {
  37283. source: "./media/characters/shirou/front.svg",
  37284. extra: 2491/2383,
  37285. bottom: 189/2680
  37286. }
  37287. },
  37288. back: {
  37289. height: math.unit(5 + 11/12, "feet"),
  37290. weight: math.unit(200, "lb"),
  37291. name: "Back",
  37292. image: {
  37293. source: "./media/characters/shirou/back.svg",
  37294. extra: 2554/2450,
  37295. bottom: 76/2630
  37296. }
  37297. },
  37298. },
  37299. [
  37300. {
  37301. name: "Normal",
  37302. height: math.unit(5 + 11/12, "feet"),
  37303. default: true
  37304. },
  37305. ]
  37306. ))
  37307. characterMakers.push(() => makeCharacter(
  37308. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37309. {
  37310. front: {
  37311. height: math.unit(6 + 3/12, "feet"),
  37312. weight: math.unit(177, "lb"),
  37313. name: "Front",
  37314. image: {
  37315. source: "./media/characters/noryu/front.svg",
  37316. extra: 973/885,
  37317. bottom: 10/983
  37318. }
  37319. },
  37320. },
  37321. [
  37322. {
  37323. name: "Normal",
  37324. height: math.unit(6 + 3/12, "feet"),
  37325. default: true
  37326. },
  37327. ]
  37328. ))
  37329. characterMakers.push(() => makeCharacter(
  37330. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37331. {
  37332. front: {
  37333. height: math.unit(5 + 6/12, "feet"),
  37334. weight: math.unit(170, "lb"),
  37335. name: "Front",
  37336. image: {
  37337. source: "./media/characters/mevolas-rubenido/front.svg",
  37338. extra: 2109/1901,
  37339. bottom: 96/2205
  37340. }
  37341. },
  37342. },
  37343. [
  37344. {
  37345. name: "Normal",
  37346. height: math.unit(5 + 6/12, "feet"),
  37347. default: true
  37348. },
  37349. ]
  37350. ))
  37351. characterMakers.push(() => makeCharacter(
  37352. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37353. {
  37354. front: {
  37355. height: math.unit(100, "feet"),
  37356. name: "Front",
  37357. image: {
  37358. source: "./media/characters/dee/front.svg",
  37359. extra: 2153/2036,
  37360. bottom: 59/2212
  37361. }
  37362. },
  37363. back: {
  37364. height: math.unit(100, "feet"),
  37365. name: "Back",
  37366. image: {
  37367. source: "./media/characters/dee/back.svg",
  37368. extra: 2183/2058,
  37369. bottom: 75/2258
  37370. }
  37371. },
  37372. foot: {
  37373. height: math.unit(19.43, "feet"),
  37374. name: "Foot",
  37375. image: {
  37376. source: "./media/characters/dee/foot.svg"
  37377. }
  37378. },
  37379. hoof: {
  37380. height: math.unit(20.6, "feet"),
  37381. name: "Hoof",
  37382. image: {
  37383. source: "./media/characters/dee/hoof.svg"
  37384. }
  37385. },
  37386. },
  37387. [
  37388. {
  37389. name: "Macro",
  37390. height: math.unit(100, "feet"),
  37391. default: true
  37392. },
  37393. ]
  37394. ))
  37395. characterMakers.push(() => makeCharacter(
  37396. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37397. {
  37398. front: {
  37399. height: math.unit(5 + 6/12, "feet"),
  37400. name: "Front",
  37401. image: {
  37402. source: "./media/characters/teh/front.svg",
  37403. extra: 1002/847,
  37404. bottom: 62/1064
  37405. }
  37406. },
  37407. },
  37408. [
  37409. {
  37410. name: "Normal",
  37411. height: math.unit(5 + 6/12, "feet"),
  37412. default: true
  37413. },
  37414. ]
  37415. ))
  37416. characterMakers.push(() => makeCharacter(
  37417. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37418. {
  37419. side: {
  37420. height: math.unit(6 + 1/12, "feet"),
  37421. weight: math.unit(204, "lb"),
  37422. name: "Side",
  37423. image: {
  37424. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37425. extra: 974/775,
  37426. bottom: 169/1143
  37427. }
  37428. },
  37429. sitting: {
  37430. height: math.unit(6 + 2/12, "feet"),
  37431. weight: math.unit(204, "lb"),
  37432. name: "Sitting",
  37433. image: {
  37434. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37435. extra: 1175/964,
  37436. bottom: 378/1553
  37437. }
  37438. },
  37439. },
  37440. [
  37441. {
  37442. name: "Normal",
  37443. height: math.unit(6 + 1/12, "feet"),
  37444. default: true
  37445. },
  37446. ]
  37447. ))
  37448. characterMakers.push(() => makeCharacter(
  37449. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37450. {
  37451. front: {
  37452. height: math.unit(6, "inches"),
  37453. name: "Front",
  37454. image: {
  37455. source: "./media/characters/tululi/front.svg",
  37456. extra: 1997/1876,
  37457. bottom: 20/2017
  37458. }
  37459. },
  37460. },
  37461. [
  37462. {
  37463. name: "Normal",
  37464. height: math.unit(6, "inches"),
  37465. default: true
  37466. },
  37467. ]
  37468. ))
  37469. characterMakers.push(() => makeCharacter(
  37470. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37471. {
  37472. front: {
  37473. height: math.unit(4 + 1/12, "feet"),
  37474. name: "Front",
  37475. image: {
  37476. source: "./media/characters/star/front.svg",
  37477. extra: 1493/1189,
  37478. bottom: 48/1541
  37479. }
  37480. },
  37481. },
  37482. [
  37483. {
  37484. name: "Normal",
  37485. height: math.unit(4 + 1/12, "feet"),
  37486. default: true
  37487. },
  37488. ]
  37489. ))
  37490. characterMakers.push(() => makeCharacter(
  37491. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37492. {
  37493. front: {
  37494. height: math.unit(6 + 3/12, "feet"),
  37495. name: "Front",
  37496. image: {
  37497. source: "./media/characters/comet/front.svg",
  37498. extra: 1681/1462,
  37499. bottom: 26/1707
  37500. }
  37501. },
  37502. },
  37503. [
  37504. {
  37505. name: "Normal",
  37506. height: math.unit(6 + 3/12, "feet"),
  37507. default: true
  37508. },
  37509. ]
  37510. ))
  37511. characterMakers.push(() => makeCharacter(
  37512. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37513. {
  37514. front: {
  37515. height: math.unit(950, "feet"),
  37516. name: "Front",
  37517. image: {
  37518. source: "./media/characters/vortex/front.svg",
  37519. extra: 1497/1434,
  37520. bottom: 56/1553
  37521. }
  37522. },
  37523. maw: {
  37524. height: math.unit(285, "feet"),
  37525. name: "Maw",
  37526. image: {
  37527. source: "./media/characters/vortex/maw.svg"
  37528. }
  37529. },
  37530. },
  37531. [
  37532. {
  37533. name: "Macro",
  37534. height: math.unit(950, "feet"),
  37535. default: true
  37536. },
  37537. ]
  37538. ))
  37539. characterMakers.push(() => makeCharacter(
  37540. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37541. {
  37542. front: {
  37543. height: math.unit(600, "feet"),
  37544. weight: math.unit(0.02, "grams"),
  37545. name: "Front",
  37546. image: {
  37547. source: "./media/characters/doodle/front.svg",
  37548. extra: 1578/1413,
  37549. bottom: 37/1615
  37550. }
  37551. },
  37552. },
  37553. [
  37554. {
  37555. name: "Macro",
  37556. height: math.unit(600, "feet"),
  37557. default: true
  37558. },
  37559. ]
  37560. ))
  37561. characterMakers.push(() => makeCharacter(
  37562. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37563. {
  37564. front: {
  37565. height: math.unit(6 + 6/12, "feet"),
  37566. name: "Front",
  37567. image: {
  37568. source: "./media/characters/jai/front.svg",
  37569. extra: 1645/1534,
  37570. bottom: 115/1760
  37571. }
  37572. },
  37573. },
  37574. [
  37575. {
  37576. name: "Normal",
  37577. height: math.unit(6 + 6/12, "feet"),
  37578. default: true
  37579. },
  37580. ]
  37581. ))
  37582. characterMakers.push(() => makeCharacter(
  37583. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37584. {
  37585. front: {
  37586. height: math.unit(6 + 8/12, "feet"),
  37587. name: "Front",
  37588. image: {
  37589. source: "./media/characters/pixel/front.svg",
  37590. extra: 1900/1735,
  37591. bottom: 63/1963
  37592. }
  37593. },
  37594. },
  37595. [
  37596. {
  37597. name: "Normal",
  37598. height: math.unit(6 + 8/12, "feet"),
  37599. default: true
  37600. },
  37601. ]
  37602. ))
  37603. characterMakers.push(() => makeCharacter(
  37604. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37605. {
  37606. back: {
  37607. height: math.unit(4 + 1/12, "feet"),
  37608. weight: math.unit(75, "lb"),
  37609. name: "Back",
  37610. image: {
  37611. source: "./media/characters/rhett/back.svg",
  37612. extra: 930/878,
  37613. bottom: 25/955
  37614. }
  37615. },
  37616. front: {
  37617. height: math.unit(4 + 1/12, "feet"),
  37618. weight: math.unit(75, "lb"),
  37619. name: "Front",
  37620. image: {
  37621. source: "./media/characters/rhett/front.svg",
  37622. extra: 1682/1586,
  37623. bottom: 92/1774
  37624. }
  37625. },
  37626. },
  37627. [
  37628. {
  37629. name: "Micro",
  37630. height: math.unit(8, "inches")
  37631. },
  37632. {
  37633. name: "Tiny",
  37634. height: math.unit(2, "feet")
  37635. },
  37636. {
  37637. name: "Normal",
  37638. height: math.unit(4 + 1/12, "feet"),
  37639. default: true
  37640. },
  37641. ]
  37642. ))
  37643. characterMakers.push(() => makeCharacter(
  37644. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37645. {
  37646. front: {
  37647. height: math.unit(3 + 3/12, "feet"),
  37648. name: "Front",
  37649. image: {
  37650. source: "./media/characters/penny/front.svg",
  37651. extra: 1406/1311,
  37652. bottom: 26/1432
  37653. }
  37654. },
  37655. },
  37656. [
  37657. {
  37658. name: "Normal",
  37659. height: math.unit(3 + 3/12, "feet"),
  37660. default: true
  37661. },
  37662. ]
  37663. ))
  37664. characterMakers.push(() => makeCharacter(
  37665. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37666. {
  37667. front: {
  37668. height: math.unit(4 + 11/12, "feet"),
  37669. name: "Front",
  37670. image: {
  37671. source: "./media/characters/monty/front.svg",
  37672. extra: 1479/1209,
  37673. bottom: 0/1479
  37674. }
  37675. },
  37676. },
  37677. [
  37678. {
  37679. name: "Normal",
  37680. height: math.unit(4 + 11/12, "feet"),
  37681. default: true
  37682. },
  37683. ]
  37684. ))
  37685. characterMakers.push(() => makeCharacter(
  37686. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37687. {
  37688. front: {
  37689. height: math.unit(8 + 4/12, "feet"),
  37690. name: "Front",
  37691. image: {
  37692. source: "./media/characters/sterling/front.svg",
  37693. extra: 1420/1236,
  37694. bottom: 27/1447
  37695. }
  37696. },
  37697. },
  37698. [
  37699. {
  37700. name: "Normal",
  37701. height: math.unit(8 + 4/12, "feet"),
  37702. default: true
  37703. },
  37704. ]
  37705. ))
  37706. characterMakers.push(() => makeCharacter(
  37707. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37708. {
  37709. front: {
  37710. height: math.unit(15, "feet"),
  37711. name: "Front",
  37712. image: {
  37713. source: "./media/characters/marble/front.svg",
  37714. extra: 973/937,
  37715. bottom: 32/1005
  37716. }
  37717. },
  37718. },
  37719. [
  37720. {
  37721. name: "Normal",
  37722. height: math.unit(15, "feet"),
  37723. default: true
  37724. },
  37725. ]
  37726. ))
  37727. characterMakers.push(() => makeCharacter(
  37728. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37729. {
  37730. front: {
  37731. height: math.unit(3, "inches"),
  37732. name: "Front",
  37733. image: {
  37734. source: "./media/characters/powder/front.svg",
  37735. extra: 1504/1334,
  37736. bottom: 518/2022
  37737. }
  37738. },
  37739. },
  37740. [
  37741. {
  37742. name: "Normal",
  37743. height: math.unit(3, "inches"),
  37744. default: true
  37745. },
  37746. ]
  37747. ))
  37748. characterMakers.push(() => makeCharacter(
  37749. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37750. {
  37751. front: {
  37752. height: math.unit(4 + 5/12, "feet"),
  37753. name: "Front",
  37754. image: {
  37755. source: "./media/characters/joey-raccoon/front.svg",
  37756. extra: 1273/1197,
  37757. bottom: 0/1273
  37758. }
  37759. },
  37760. },
  37761. [
  37762. {
  37763. name: "Normal",
  37764. height: math.unit(4 + 5/12, "feet"),
  37765. default: true
  37766. },
  37767. ]
  37768. ))
  37769. characterMakers.push(() => makeCharacter(
  37770. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37771. {
  37772. front: {
  37773. height: math.unit(8 + 4/12, "feet"),
  37774. name: "Front",
  37775. image: {
  37776. source: "./media/characters/vick/front.svg",
  37777. extra: 2187/2118,
  37778. bottom: 47/2234
  37779. }
  37780. },
  37781. },
  37782. [
  37783. {
  37784. name: "Normal",
  37785. height: math.unit(8 + 4/12, "feet"),
  37786. default: true
  37787. },
  37788. ]
  37789. ))
  37790. characterMakers.push(() => makeCharacter(
  37791. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37792. {
  37793. front: {
  37794. height: math.unit(5 + 5/12, "feet"),
  37795. name: "Front",
  37796. image: {
  37797. source: "./media/characters/mitsy/front.svg",
  37798. extra: 1842/1695,
  37799. bottom: 0/1842
  37800. }
  37801. },
  37802. },
  37803. [
  37804. {
  37805. name: "Normal",
  37806. height: math.unit(5 + 5/12, "feet"),
  37807. default: true
  37808. },
  37809. ]
  37810. ))
  37811. characterMakers.push(() => makeCharacter(
  37812. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37813. {
  37814. front: {
  37815. height: math.unit(6 + 3/12, "feet"),
  37816. name: "Front",
  37817. image: {
  37818. source: "./media/characters/silvy/front.svg",
  37819. extra: 1995/1836,
  37820. bottom: 225/2220
  37821. }
  37822. },
  37823. },
  37824. [
  37825. {
  37826. name: "Normal",
  37827. height: math.unit(6 + 3/12, "feet"),
  37828. default: true
  37829. },
  37830. ]
  37831. ))
  37832. characterMakers.push(() => makeCharacter(
  37833. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37834. {
  37835. front: {
  37836. height: math.unit(3 + 8/12, "feet"),
  37837. name: "Front",
  37838. image: {
  37839. source: "./media/characters/rodney/front.svg",
  37840. extra: 1956/1747,
  37841. bottom: 31/1987
  37842. }
  37843. },
  37844. frontDressed: {
  37845. height: math.unit(2.9, "feet"),
  37846. name: "Front (Dressed)",
  37847. image: {
  37848. source: "./media/characters/rodney/front-dressed.svg",
  37849. extra: 1382/1241,
  37850. bottom: 385/1767
  37851. }
  37852. },
  37853. },
  37854. [
  37855. {
  37856. name: "Normal",
  37857. height: math.unit(3 + 8/12, "feet"),
  37858. default: true
  37859. },
  37860. ]
  37861. ))
  37862. characterMakers.push(() => makeCharacter(
  37863. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37864. {
  37865. front: {
  37866. height: math.unit(5 + 9/12, "feet"),
  37867. weight: math.unit(194, "lbs"),
  37868. name: "Front",
  37869. image: {
  37870. source: "./media/characters/zakail-sudekai/front.svg",
  37871. extra: 2696/2533,
  37872. bottom: 248/2944
  37873. }
  37874. },
  37875. maw: {
  37876. height: math.unit(1.35, "feet"),
  37877. name: "Maw",
  37878. image: {
  37879. source: "./media/characters/zakail-sudekai/maw.svg"
  37880. }
  37881. },
  37882. },
  37883. [
  37884. {
  37885. name: "Normal",
  37886. height: math.unit(5 + 9/12, "feet"),
  37887. default: true
  37888. },
  37889. ]
  37890. ))
  37891. characterMakers.push(() => makeCharacter(
  37892. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37893. {
  37894. front: {
  37895. height: math.unit(8 + 4/12, "feet"),
  37896. weight: math.unit(1200, "lb"),
  37897. name: "Front",
  37898. image: {
  37899. source: "./media/characters/eleanor/front.svg",
  37900. extra: 1226/1192,
  37901. bottom: 52/1278
  37902. }
  37903. },
  37904. back: {
  37905. height: math.unit(8 + 4/12, "feet"),
  37906. weight: math.unit(1200, "lb"),
  37907. name: "Back",
  37908. image: {
  37909. source: "./media/characters/eleanor/back.svg",
  37910. extra: 1242/1184,
  37911. bottom: 60/1302
  37912. }
  37913. },
  37914. head: {
  37915. height: math.unit(2.62, "feet"),
  37916. name: "Head",
  37917. image: {
  37918. source: "./media/characters/eleanor/head.svg"
  37919. }
  37920. },
  37921. },
  37922. [
  37923. {
  37924. name: "Normal",
  37925. height: math.unit(8 + 4/12, "feet"),
  37926. default: true
  37927. },
  37928. ]
  37929. ))
  37930. characterMakers.push(() => makeCharacter(
  37931. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37932. {
  37933. front: {
  37934. height: math.unit(8 + 4/12, "feet"),
  37935. weight: math.unit(750, "lb"),
  37936. name: "Front",
  37937. image: {
  37938. source: "./media/characters/tanya/front.svg",
  37939. extra: 1749/1615,
  37940. bottom: 33/1782
  37941. }
  37942. },
  37943. },
  37944. [
  37945. {
  37946. name: "Normal",
  37947. height: math.unit(8 + 4/12, "feet"),
  37948. default: true
  37949. },
  37950. ]
  37951. ))
  37952. characterMakers.push(() => makeCharacter(
  37953. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37954. {
  37955. front: {
  37956. height: math.unit(5, "feet"),
  37957. weight: math.unit(225, "lb"),
  37958. name: "Front",
  37959. image: {
  37960. source: "./media/characters/cindy/front.svg",
  37961. extra: 1320/1250,
  37962. bottom: 42/1362
  37963. }
  37964. },
  37965. frontDressed: {
  37966. height: math.unit(5, "feet"),
  37967. weight: math.unit(225, "lb"),
  37968. name: "Front (Dressed)",
  37969. image: {
  37970. source: "./media/characters/cindy/front-dressed.svg",
  37971. extra: 1320/1250,
  37972. bottom: 42/1362
  37973. }
  37974. },
  37975. back: {
  37976. height: math.unit(5, "feet"),
  37977. weight: math.unit(225, "lb"),
  37978. name: "Back",
  37979. image: {
  37980. source: "./media/characters/cindy/back.svg",
  37981. extra: 1384/1346,
  37982. bottom: 14/1398
  37983. }
  37984. },
  37985. },
  37986. [
  37987. {
  37988. name: "Normal",
  37989. height: math.unit(5, "feet"),
  37990. default: true
  37991. },
  37992. ]
  37993. ))
  37994. characterMakers.push(() => makeCharacter(
  37995. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37996. {
  37997. front: {
  37998. height: math.unit(6 + 9/12, "feet"),
  37999. weight: math.unit(440, "lb"),
  38000. name: "Front",
  38001. image: {
  38002. source: "./media/characters/wilbur-owen/front.svg",
  38003. extra: 1575/1448,
  38004. bottom: 72/1647
  38005. }
  38006. },
  38007. back: {
  38008. height: math.unit(6 + 9/12, "feet"),
  38009. weight: math.unit(440, "lb"),
  38010. name: "Back",
  38011. image: {
  38012. source: "./media/characters/wilbur-owen/back.svg",
  38013. extra: 1578/1445,
  38014. bottom: 36/1614
  38015. }
  38016. },
  38017. },
  38018. [
  38019. {
  38020. name: "Normal",
  38021. height: math.unit(6 + 9/12, "feet"),
  38022. default: true
  38023. },
  38024. ]
  38025. ))
  38026. characterMakers.push(() => makeCharacter(
  38027. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38028. {
  38029. front: {
  38030. height: math.unit(6 + 5/12, "feet"),
  38031. weight: math.unit(650, "lb"),
  38032. name: "Front",
  38033. image: {
  38034. source: "./media/characters/keegan/front.svg",
  38035. extra: 2387/2198,
  38036. bottom: 33/2420
  38037. }
  38038. },
  38039. side: {
  38040. height: math.unit(6 + 5/12, "feet"),
  38041. weight: math.unit(650, "lb"),
  38042. name: "Side",
  38043. image: {
  38044. source: "./media/characters/keegan/side.svg",
  38045. extra: 2390/2202,
  38046. bottom: 47/2437
  38047. }
  38048. },
  38049. back: {
  38050. height: math.unit(6 + 5/12, "feet"),
  38051. weight: math.unit(650, "lb"),
  38052. name: "Back",
  38053. image: {
  38054. source: "./media/characters/keegan/back.svg",
  38055. extra: 2418/2268,
  38056. bottom: 15/2433
  38057. }
  38058. },
  38059. frontSfw: {
  38060. height: math.unit(6 + 5/12, "feet"),
  38061. weight: math.unit(650, "lb"),
  38062. name: "Front (SFW)",
  38063. image: {
  38064. source: "./media/characters/keegan/front-sfw.svg",
  38065. extra: 2387/2198,
  38066. bottom: 33/2420
  38067. }
  38068. },
  38069. beans: {
  38070. height: math.unit(1.85, "feet"),
  38071. name: "Beans",
  38072. image: {
  38073. source: "./media/characters/keegan/beans.svg"
  38074. }
  38075. },
  38076. },
  38077. [
  38078. {
  38079. name: "Normal",
  38080. height: math.unit(6 + 5/12, "feet"),
  38081. default: true
  38082. },
  38083. ]
  38084. ))
  38085. characterMakers.push(() => makeCharacter(
  38086. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38087. {
  38088. front: {
  38089. height: math.unit(9, "feet"),
  38090. name: "Front",
  38091. image: {
  38092. source: "./media/characters/colton/front.svg",
  38093. extra: 1589/1326,
  38094. bottom: 139/1728
  38095. }
  38096. },
  38097. },
  38098. [
  38099. {
  38100. name: "Normal",
  38101. height: math.unit(9, "feet"),
  38102. default: true
  38103. },
  38104. ]
  38105. ))
  38106. characterMakers.push(() => makeCharacter(
  38107. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38108. {
  38109. front: {
  38110. height: math.unit(2 + 9/12, "feet"),
  38111. name: "Front",
  38112. image: {
  38113. source: "./media/characters/bora/front.svg",
  38114. extra: 1265/1250,
  38115. bottom: 24/1289
  38116. }
  38117. },
  38118. },
  38119. [
  38120. {
  38121. name: "Normal",
  38122. height: math.unit(2 + 9/12, "feet"),
  38123. default: true
  38124. },
  38125. ]
  38126. ))
  38127. characterMakers.push(() => makeCharacter(
  38128. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38129. {
  38130. front: {
  38131. height: math.unit(8, "feet"),
  38132. name: "Front",
  38133. image: {
  38134. source: "./media/characters/myu-myu/front.svg",
  38135. extra: 1949/1857,
  38136. bottom: 90/2039
  38137. }
  38138. },
  38139. },
  38140. [
  38141. {
  38142. name: "Normal",
  38143. height: math.unit(8, "feet"),
  38144. default: true
  38145. },
  38146. {
  38147. name: "Big",
  38148. height: math.unit(15, "feet")
  38149. },
  38150. {
  38151. name: "BIG",
  38152. height: math.unit(25, "feet")
  38153. },
  38154. ]
  38155. ))
  38156. characterMakers.push(() => makeCharacter(
  38157. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38158. {
  38159. side: {
  38160. height: math.unit(7 + 5/12, "feet"),
  38161. weight: math.unit(2800, "lb"),
  38162. name: "Side",
  38163. image: {
  38164. source: "./media/characters/haloren/side.svg",
  38165. extra: 1793/409,
  38166. bottom: 59/1852
  38167. }
  38168. },
  38169. frontPaw: {
  38170. height: math.unit(2.36, "feet"),
  38171. name: "Front paw",
  38172. image: {
  38173. source: "./media/characters/haloren/front-paw.svg"
  38174. }
  38175. },
  38176. hindPaw: {
  38177. height: math.unit(3.18, "feet"),
  38178. name: "Hind paw",
  38179. image: {
  38180. source: "./media/characters/haloren/hind-paw.svg"
  38181. }
  38182. },
  38183. maw: {
  38184. height: math.unit(5.05, "feet"),
  38185. name: "Maw",
  38186. image: {
  38187. source: "./media/characters/haloren/maw.svg"
  38188. }
  38189. },
  38190. dick: {
  38191. height: math.unit(2.90, "feet"),
  38192. name: "Dick",
  38193. image: {
  38194. source: "./media/characters/haloren/dick.svg"
  38195. }
  38196. },
  38197. },
  38198. [
  38199. {
  38200. name: "Normal",
  38201. height: math.unit(7 + 5/12, "feet"),
  38202. default: true
  38203. },
  38204. {
  38205. name: "Enhanced",
  38206. height: math.unit(14 + 3/12, "feet")
  38207. },
  38208. ]
  38209. ))
  38210. characterMakers.push(() => makeCharacter(
  38211. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38212. {
  38213. front: {
  38214. height: math.unit(171, "cm"),
  38215. name: "Front",
  38216. image: {
  38217. source: "./media/characters/kimmy/front.svg",
  38218. extra: 1491/1435,
  38219. bottom: 53/1544
  38220. }
  38221. },
  38222. },
  38223. [
  38224. {
  38225. name: "Small",
  38226. height: math.unit(9, "cm")
  38227. },
  38228. {
  38229. name: "Normal",
  38230. height: math.unit(171, "cm"),
  38231. default: true
  38232. },
  38233. ]
  38234. ))
  38235. characterMakers.push(() => makeCharacter(
  38236. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38237. {
  38238. front: {
  38239. height: math.unit(8, "feet"),
  38240. weight: math.unit(300, "lb"),
  38241. name: "Front",
  38242. image: {
  38243. source: "./media/characters/galeboomer/front.svg",
  38244. extra: 4651/4415,
  38245. bottom: 162/4813
  38246. }
  38247. },
  38248. back: {
  38249. height: math.unit(8, "feet"),
  38250. weight: math.unit(300, "lb"),
  38251. name: "Back",
  38252. image: {
  38253. source: "./media/characters/galeboomer/back.svg",
  38254. extra: 4544/4314,
  38255. bottom: 16/4560
  38256. }
  38257. },
  38258. frontAlt: {
  38259. height: math.unit(8, "feet"),
  38260. weight: math.unit(300, "lb"),
  38261. name: "Front (Alt)",
  38262. image: {
  38263. source: "./media/characters/galeboomer/front-alt.svg",
  38264. extra: 4458/4228,
  38265. bottom: 68/4526
  38266. }
  38267. },
  38268. maw: {
  38269. height: math.unit(1.2, "feet"),
  38270. name: "Maw",
  38271. image: {
  38272. source: "./media/characters/galeboomer/maw.svg"
  38273. }
  38274. },
  38275. },
  38276. [
  38277. {
  38278. name: "Normal",
  38279. height: math.unit(8, "feet"),
  38280. default: true
  38281. },
  38282. ]
  38283. ))
  38284. characterMakers.push(() => makeCharacter(
  38285. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38286. {
  38287. front: {
  38288. height: math.unit(5 + 9/12, "feet"),
  38289. weight: math.unit(120, "lb"),
  38290. name: "Front",
  38291. image: {
  38292. source: "./media/characters/chyr/front.svg",
  38293. extra: 1323/1254,
  38294. bottom: 63/1386
  38295. }
  38296. },
  38297. back: {
  38298. height: math.unit(5 + 9/12, "feet"),
  38299. weight: math.unit(120, "lb"),
  38300. name: "Back",
  38301. image: {
  38302. source: "./media/characters/chyr/back.svg",
  38303. extra: 1323/1252,
  38304. bottom: 48/1371
  38305. }
  38306. },
  38307. },
  38308. [
  38309. {
  38310. name: "Normal",
  38311. height: math.unit(5 + 9/12, "feet"),
  38312. default: true
  38313. },
  38314. ]
  38315. ))
  38316. characterMakers.push(() => makeCharacter(
  38317. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38318. {
  38319. front: {
  38320. height: math.unit(7, "feet"),
  38321. weight: math.unit(310, "lb"),
  38322. name: "Front",
  38323. image: {
  38324. source: "./media/characters/solarus/front.svg",
  38325. extra: 2415/2021,
  38326. bottom: 103/2518
  38327. }
  38328. },
  38329. back: {
  38330. height: math.unit(7, "feet"),
  38331. weight: math.unit(310, "lb"),
  38332. name: "Back",
  38333. image: {
  38334. source: "./media/characters/solarus/back.svg",
  38335. extra: 2463/2089,
  38336. bottom: 79/2542
  38337. }
  38338. },
  38339. },
  38340. [
  38341. {
  38342. name: "Normal",
  38343. height: math.unit(7, "feet"),
  38344. default: true
  38345. },
  38346. ]
  38347. ))
  38348. characterMakers.push(() => makeCharacter(
  38349. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38350. {
  38351. front: {
  38352. height: math.unit(16, "feet"),
  38353. name: "Front",
  38354. image: {
  38355. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38356. extra: 1844/1780,
  38357. bottom: 58/1902
  38358. }
  38359. },
  38360. winterCoat: {
  38361. height: math.unit(16, "feet"),
  38362. name: "Winter Coat",
  38363. image: {
  38364. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38365. extra: 1807/1775,
  38366. bottom: 69/1876
  38367. }
  38368. },
  38369. },
  38370. [
  38371. {
  38372. name: "Normal",
  38373. height: math.unit(16, "feet"),
  38374. default: true
  38375. },
  38376. {
  38377. name: "Chicago Size",
  38378. height: math.unit(560, "feet")
  38379. },
  38380. ]
  38381. ))
  38382. characterMakers.push(() => makeCharacter(
  38383. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38384. {
  38385. front: {
  38386. height: math.unit(11 + 6/12, "feet"),
  38387. weight: math.unit(1366, "lb"),
  38388. name: "Front",
  38389. image: {
  38390. source: "./media/characters/lexor/front.svg",
  38391. extra: 1560/1481,
  38392. bottom: 211/1771
  38393. }
  38394. },
  38395. back: {
  38396. height: math.unit(11 + 6/12, "feet"),
  38397. weight: math.unit(1366, "lb"),
  38398. name: "Back",
  38399. image: {
  38400. source: "./media/characters/lexor/back.svg",
  38401. extra: 1614/1533,
  38402. bottom: 76/1690
  38403. }
  38404. },
  38405. maw: {
  38406. height: math.unit(3, "feet"),
  38407. name: "Maw",
  38408. image: {
  38409. source: "./media/characters/lexor/maw.svg"
  38410. }
  38411. },
  38412. dick: {
  38413. height: math.unit(2.59, "feet"),
  38414. name: "Dick",
  38415. image: {
  38416. source: "./media/characters/lexor/dick.svg"
  38417. }
  38418. },
  38419. },
  38420. [
  38421. {
  38422. name: "Normal",
  38423. height: math.unit(11 + 6/12, "feet"),
  38424. default: true
  38425. },
  38426. ]
  38427. ))
  38428. characterMakers.push(() => makeCharacter(
  38429. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38430. {
  38431. front: {
  38432. height: math.unit(5 + 8/12, "feet"),
  38433. name: "Front",
  38434. image: {
  38435. source: "./media/characters/magnum/front.svg",
  38436. extra: 942/855,
  38437. bottom: 26/968
  38438. }
  38439. },
  38440. },
  38441. [
  38442. {
  38443. name: "Normal",
  38444. height: math.unit(5 + 8/12, "feet"),
  38445. default: true
  38446. },
  38447. ]
  38448. ))
  38449. characterMakers.push(() => makeCharacter(
  38450. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38451. {
  38452. front: {
  38453. height: math.unit(18 + 4/12, "feet"),
  38454. weight: math.unit(1500, "kg"),
  38455. name: "Front",
  38456. image: {
  38457. source: "./media/characters/solas-sharpsman/front.svg",
  38458. extra: 1698/1589,
  38459. bottom: 0/1698
  38460. }
  38461. },
  38462. },
  38463. [
  38464. {
  38465. name: "Normal",
  38466. height: math.unit(18 + 4/12, "feet"),
  38467. default: true
  38468. },
  38469. ]
  38470. ))
  38471. characterMakers.push(() => makeCharacter(
  38472. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38473. {
  38474. front: {
  38475. height: math.unit(5 + 5/12, "feet"),
  38476. weight: math.unit(180, "lb"),
  38477. name: "Front",
  38478. image: {
  38479. source: "./media/characters/october/front.svg",
  38480. extra: 1800/1650,
  38481. bottom: 0/1800
  38482. }
  38483. },
  38484. frontNsfw: {
  38485. height: math.unit(5 + 5/12, "feet"),
  38486. weight: math.unit(180, "lb"),
  38487. name: "Front (NSFW)",
  38488. image: {
  38489. source: "./media/characters/october/front-nsfw.svg",
  38490. extra: 1392/1307,
  38491. bottom: 42/1434
  38492. }
  38493. },
  38494. },
  38495. [
  38496. {
  38497. name: "Normal",
  38498. height: math.unit(5 + 5/12, "feet"),
  38499. default: true
  38500. },
  38501. ]
  38502. ))
  38503. characterMakers.push(() => makeCharacter(
  38504. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38505. {
  38506. front: {
  38507. height: math.unit(8 + 6/12, "feet"),
  38508. name: "Front",
  38509. image: {
  38510. source: "./media/characters/essynkardi/front.svg",
  38511. extra: 1914/1846,
  38512. bottom: 22/1936
  38513. }
  38514. },
  38515. },
  38516. [
  38517. {
  38518. name: "Normal",
  38519. height: math.unit(8 + 6/12, "feet"),
  38520. default: true
  38521. },
  38522. ]
  38523. ))
  38524. characterMakers.push(() => makeCharacter(
  38525. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38526. {
  38527. front: {
  38528. height: math.unit(6 + 6/12, "feet"),
  38529. weight: math.unit(7, "lb"),
  38530. name: "Front",
  38531. image: {
  38532. source: "./media/characters/icky/front.svg",
  38533. extra: 813/782,
  38534. bottom: 66/879
  38535. }
  38536. },
  38537. back: {
  38538. height: math.unit(6 + 6/12, "feet"),
  38539. weight: math.unit(7, "lb"),
  38540. name: "Back",
  38541. image: {
  38542. source: "./media/characters/icky/back.svg",
  38543. extra: 754/735,
  38544. bottom: 56/810
  38545. }
  38546. },
  38547. },
  38548. [
  38549. {
  38550. name: "Normal",
  38551. height: math.unit(6 + 6/12, "feet"),
  38552. default: true
  38553. },
  38554. ]
  38555. ))
  38556. characterMakers.push(() => makeCharacter(
  38557. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38558. {
  38559. front: {
  38560. height: math.unit(15, "feet"),
  38561. name: "Front",
  38562. image: {
  38563. source: "./media/characters/rojas/front.svg",
  38564. extra: 1462/1408,
  38565. bottom: 95/1557
  38566. }
  38567. },
  38568. back: {
  38569. height: math.unit(15, "feet"),
  38570. name: "Back",
  38571. image: {
  38572. source: "./media/characters/rojas/back.svg",
  38573. extra: 1023/954,
  38574. bottom: 28/1051
  38575. }
  38576. },
  38577. },
  38578. [
  38579. {
  38580. name: "Normal",
  38581. height: math.unit(15, "feet"),
  38582. default: true
  38583. },
  38584. ]
  38585. ))
  38586. characterMakers.push(() => makeCharacter(
  38587. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38588. {
  38589. frontHuman: {
  38590. height: math.unit(5 + 7/12, "feet"),
  38591. name: "Front (Human)",
  38592. image: {
  38593. source: "./media/characters/alek-dryagan/front-human.svg",
  38594. extra: 1687/1667,
  38595. bottom: 69/1756
  38596. }
  38597. },
  38598. backHuman: {
  38599. height: math.unit(5 + 7/12, "feet"),
  38600. name: "Back (Human)",
  38601. image: {
  38602. source: "./media/characters/alek-dryagan/back-human.svg",
  38603. extra: 1670/1649,
  38604. bottom: 65/1735
  38605. }
  38606. },
  38607. frontDemi: {
  38608. height: math.unit(65, "feet"),
  38609. name: "Front (Demi)",
  38610. image: {
  38611. source: "./media/characters/alek-dryagan/front-demi.svg",
  38612. extra: 1669/1642,
  38613. bottom: 49/1718
  38614. }
  38615. },
  38616. backDemi: {
  38617. height: math.unit(65, "feet"),
  38618. name: "Back (Demi)",
  38619. image: {
  38620. source: "./media/characters/alek-dryagan/back-demi.svg",
  38621. extra: 1658/1637,
  38622. bottom: 40/1698
  38623. }
  38624. },
  38625. mawHuman: {
  38626. height: math.unit(0.3, "feet"),
  38627. name: "Maw (Human)",
  38628. image: {
  38629. source: "./media/characters/alek-dryagan/maw-human.svg"
  38630. }
  38631. },
  38632. mawDemi: {
  38633. height: math.unit(3.8, "feet"),
  38634. name: "Maw (Demi)",
  38635. image: {
  38636. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38637. }
  38638. },
  38639. },
  38640. [
  38641. {
  38642. name: "Normal",
  38643. height: math.unit(5 + 7/12, "feet"),
  38644. default: true
  38645. },
  38646. ]
  38647. ))
  38648. characterMakers.push(() => makeCharacter(
  38649. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38650. {
  38651. frontHuman: {
  38652. height: math.unit(5 + 2/12, "feet"),
  38653. name: "Front (Human)",
  38654. image: {
  38655. source: "./media/characters/gen/front-human.svg",
  38656. extra: 1627/1538,
  38657. bottom: 71/1698
  38658. }
  38659. },
  38660. backHuman: {
  38661. height: math.unit(5 + 2/12, "feet"),
  38662. name: "Back (Human)",
  38663. image: {
  38664. source: "./media/characters/gen/back-human.svg",
  38665. extra: 1638/1548,
  38666. bottom: 69/1707
  38667. }
  38668. },
  38669. frontDemi: {
  38670. height: math.unit(5 + 2/12, "feet"),
  38671. name: "Front (Demi)",
  38672. image: {
  38673. source: "./media/characters/gen/front-demi.svg",
  38674. extra: 1627/1538,
  38675. bottom: 71/1698
  38676. }
  38677. },
  38678. backDemi: {
  38679. height: math.unit(5 + 2/12, "feet"),
  38680. name: "Back (Demi)",
  38681. image: {
  38682. source: "./media/characters/gen/back-demi.svg",
  38683. extra: 1638/1548,
  38684. bottom: 69/1707
  38685. }
  38686. },
  38687. },
  38688. [
  38689. {
  38690. name: "Normal",
  38691. height: math.unit(5 + 2/12, "feet"),
  38692. default: true
  38693. },
  38694. ]
  38695. ))
  38696. characterMakers.push(() => makeCharacter(
  38697. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38698. {
  38699. frontImp: {
  38700. height: math.unit(1 + 11/12, "feet"),
  38701. name: "Front (Imp)",
  38702. image: {
  38703. source: "./media/characters/max-kobold/front-imp.svg",
  38704. extra: 1238/1134,
  38705. bottom: 81/1319
  38706. }
  38707. },
  38708. backImp: {
  38709. height: math.unit(1 + 11/12, "feet"),
  38710. name: "Back (Imp)",
  38711. image: {
  38712. source: "./media/characters/max-kobold/back-imp.svg",
  38713. extra: 1334/1175,
  38714. bottom: 34/1368
  38715. }
  38716. },
  38717. frontDemi: {
  38718. height: math.unit(5 + 9/12, "feet"),
  38719. name: "Front (Demi)",
  38720. image: {
  38721. source: "./media/characters/max-kobold/front-demi.svg",
  38722. extra: 1715/1685,
  38723. bottom: 54/1769
  38724. }
  38725. },
  38726. backDemi: {
  38727. height: math.unit(5 + 9/12, "feet"),
  38728. name: "Back (Demi)",
  38729. image: {
  38730. source: "./media/characters/max-kobold/back-demi.svg",
  38731. extra: 1752/1729,
  38732. bottom: 41/1793
  38733. }
  38734. },
  38735. handImp: {
  38736. height: math.unit(0.45, "feet"),
  38737. name: "Hand (Imp)",
  38738. image: {
  38739. source: "./media/characters/max-kobold/hand.svg"
  38740. }
  38741. },
  38742. pawImp: {
  38743. height: math.unit(0.46, "feet"),
  38744. name: "Paw (Imp)",
  38745. image: {
  38746. source: "./media/characters/max-kobold/paw.svg"
  38747. }
  38748. },
  38749. handDemi: {
  38750. height: math.unit(0.80, "feet"),
  38751. name: "Hand (Demi)",
  38752. image: {
  38753. source: "./media/characters/max-kobold/hand.svg"
  38754. }
  38755. },
  38756. pawDemi: {
  38757. height: math.unit(1.1, "feet"),
  38758. name: "Paw (Demi)",
  38759. image: {
  38760. source: "./media/characters/max-kobold/paw.svg"
  38761. }
  38762. },
  38763. headImp: {
  38764. height: math.unit(1.33, "feet"),
  38765. name: "Head (Imp)",
  38766. image: {
  38767. source: "./media/characters/max-kobold/head-imp.svg"
  38768. }
  38769. },
  38770. mawImp: {
  38771. height: math.unit(0.75, "feet"),
  38772. name: "Maw (Imp)",
  38773. image: {
  38774. source: "./media/characters/max-kobold/maw-imp.svg"
  38775. }
  38776. },
  38777. mawDemi: {
  38778. height: math.unit(0.42, "feet"),
  38779. name: "Maw (Demi)",
  38780. image: {
  38781. source: "./media/characters/max-kobold/maw-demi.svg"
  38782. }
  38783. },
  38784. },
  38785. [
  38786. {
  38787. name: "Normal",
  38788. height: math.unit(1 + 11/12, "feet"),
  38789. default: true
  38790. },
  38791. ]
  38792. ))
  38793. characterMakers.push(() => makeCharacter(
  38794. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38795. {
  38796. front: {
  38797. height: math.unit(7 + 5/12, "feet"),
  38798. name: "Front",
  38799. image: {
  38800. source: "./media/characters/carbon/front.svg",
  38801. extra: 1754/1689,
  38802. bottom: 65/1819
  38803. }
  38804. },
  38805. back: {
  38806. height: math.unit(7 + 5/12, "feet"),
  38807. name: "Back",
  38808. image: {
  38809. source: "./media/characters/carbon/back.svg",
  38810. extra: 1762/1695,
  38811. bottom: 24/1786
  38812. }
  38813. },
  38814. frontGigantamax: {
  38815. height: math.unit(150, "feet"),
  38816. name: "Front (Gigantamax)",
  38817. image: {
  38818. source: "./media/characters/carbon/front-gigantamax.svg",
  38819. extra: 1826/1669,
  38820. bottom: 59/1885
  38821. }
  38822. },
  38823. backGigantamax: {
  38824. height: math.unit(150, "feet"),
  38825. name: "Back (Gigantamax)",
  38826. image: {
  38827. source: "./media/characters/carbon/back-gigantamax.svg",
  38828. extra: 1796/1653,
  38829. bottom: 53/1849
  38830. }
  38831. },
  38832. maw: {
  38833. height: math.unit(0.48, "feet"),
  38834. name: "Maw",
  38835. image: {
  38836. source: "./media/characters/carbon/maw.svg"
  38837. }
  38838. },
  38839. mawGigantamax: {
  38840. height: math.unit(7.5, "feet"),
  38841. name: "Maw (Gigantamax)",
  38842. image: {
  38843. source: "./media/characters/carbon/maw-gigantamax.svg"
  38844. }
  38845. },
  38846. },
  38847. [
  38848. {
  38849. name: "Normal",
  38850. height: math.unit(7 + 5/12, "feet"),
  38851. default: true
  38852. },
  38853. ]
  38854. ))
  38855. characterMakers.push(() => makeCharacter(
  38856. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38857. {
  38858. front: {
  38859. height: math.unit(6, "feet"),
  38860. name: "Front",
  38861. image: {
  38862. source: "./media/characters/maverick/front.svg",
  38863. extra: 1672/1661,
  38864. bottom: 85/1757
  38865. }
  38866. },
  38867. back: {
  38868. height: math.unit(6, "feet"),
  38869. name: "Back",
  38870. image: {
  38871. source: "./media/characters/maverick/back.svg",
  38872. extra: 1642/1631,
  38873. bottom: 38/1680
  38874. }
  38875. },
  38876. },
  38877. [
  38878. {
  38879. name: "Normal",
  38880. height: math.unit(6, "feet"),
  38881. default: true
  38882. },
  38883. ]
  38884. ))
  38885. characterMakers.push(() => makeCharacter(
  38886. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38887. {
  38888. front: {
  38889. height: math.unit(15, "feet"),
  38890. weight: math.unit(615, "lb"),
  38891. name: "Front",
  38892. image: {
  38893. source: "./media/characters/grockle/front.svg",
  38894. extra: 1535/1427,
  38895. bottom: 56/1591
  38896. }
  38897. },
  38898. },
  38899. [
  38900. {
  38901. name: "Normal",
  38902. height: math.unit(15, "feet"),
  38903. default: true
  38904. },
  38905. {
  38906. name: "Large",
  38907. height: math.unit(150, "feet")
  38908. },
  38909. {
  38910. name: "Macro",
  38911. height: math.unit(1876, "feet")
  38912. },
  38913. {
  38914. name: "Mega Macro",
  38915. height: math.unit(121940, "feet")
  38916. },
  38917. {
  38918. name: "Giga Macro",
  38919. height: math.unit(750, "km")
  38920. },
  38921. {
  38922. name: "Tera Macro",
  38923. height: math.unit(750000, "km")
  38924. },
  38925. {
  38926. name: "Galactic",
  38927. height: math.unit(1.4e5, "km")
  38928. },
  38929. {
  38930. name: "Godlike",
  38931. height: math.unit(9.8e280, "galaxies")
  38932. },
  38933. ]
  38934. ))
  38935. characterMakers.push(() => makeCharacter(
  38936. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38937. {
  38938. front: {
  38939. height: math.unit(11, "meters"),
  38940. weight: math.unit(20, "tonnes"),
  38941. name: "Front",
  38942. image: {
  38943. source: "./media/characters/alistair/front.svg",
  38944. extra: 1265/1009,
  38945. bottom: 93/1358
  38946. }
  38947. },
  38948. },
  38949. [
  38950. {
  38951. name: "Normal",
  38952. height: math.unit(11, "meters"),
  38953. default: true
  38954. },
  38955. ]
  38956. ))
  38957. characterMakers.push(() => makeCharacter(
  38958. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38959. {
  38960. front: {
  38961. height: math.unit(5 + 8/12, "feet"),
  38962. name: "Front",
  38963. image: {
  38964. source: "./media/characters/haruka/front.svg",
  38965. extra: 2012/1952,
  38966. bottom: 0/2012
  38967. }
  38968. },
  38969. },
  38970. [
  38971. {
  38972. name: "Normal",
  38973. height: math.unit(5 + 8/12, "feet"),
  38974. default: true
  38975. },
  38976. ]
  38977. ))
  38978. characterMakers.push(() => makeCharacter(
  38979. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38980. {
  38981. back: {
  38982. height: math.unit(9, "feet"),
  38983. name: "Back",
  38984. image: {
  38985. source: "./media/characters/vivian-sylveon/back.svg",
  38986. extra: 1853/1714,
  38987. bottom: 0/1853
  38988. }
  38989. },
  38990. },
  38991. [
  38992. {
  38993. name: "Normal",
  38994. height: math.unit(9, "feet"),
  38995. default: true
  38996. },
  38997. {
  38998. name: "Macro",
  38999. height: math.unit(500, "feet")
  39000. },
  39001. {
  39002. name: "Megamacro",
  39003. height: math.unit(600, "miles")
  39004. },
  39005. {
  39006. name: "Gigamacro",
  39007. height: math.unit(30000, "miles")
  39008. },
  39009. ]
  39010. ))
  39011. characterMakers.push(() => makeCharacter(
  39012. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39013. {
  39014. anthro: {
  39015. height: math.unit(5 + 10/12, "feet"),
  39016. weight: math.unit(100, "lb"),
  39017. name: "Anthro",
  39018. image: {
  39019. source: "./media/characters/daiki/anthro.svg",
  39020. extra: 1115/1027,
  39021. bottom: 69/1184
  39022. }
  39023. },
  39024. feral: {
  39025. height: math.unit(200, "feet"),
  39026. name: "Feral",
  39027. image: {
  39028. source: "./media/characters/daiki/feral.svg",
  39029. extra: 1256/313,
  39030. bottom: 39/1295
  39031. }
  39032. },
  39033. feralHead: {
  39034. height: math.unit(171, "feet"),
  39035. name: "Feral Head",
  39036. image: {
  39037. source: "./media/characters/daiki/feral-head.svg"
  39038. }
  39039. },
  39040. manaDragon: {
  39041. height: math.unit(170, "meters"),
  39042. name: "Mana-dragon",
  39043. image: {
  39044. source: "./media/characters/daiki/mana-dragon.svg",
  39045. extra: 763/420,
  39046. bottom: 97/860
  39047. }
  39048. },
  39049. },
  39050. [
  39051. {
  39052. name: "Normal",
  39053. height: math.unit(5 + 10/12, "feet"),
  39054. default: true
  39055. },
  39056. ]
  39057. ))
  39058. characterMakers.push(() => makeCharacter(
  39059. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39060. {
  39061. fullyEquippedFront: {
  39062. height: math.unit(3 + 1/12, "feet"),
  39063. weight: math.unit(24, "lb"),
  39064. name: "Fully Equipped (Front)",
  39065. image: {
  39066. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39067. extra: 687/605,
  39068. bottom: 18/705
  39069. }
  39070. },
  39071. fullyEquippedBack: {
  39072. height: math.unit(3 + 1/12, "feet"),
  39073. weight: math.unit(24, "lb"),
  39074. name: "Fully Equipped (Back)",
  39075. image: {
  39076. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39077. extra: 689/590,
  39078. bottom: 18/707
  39079. }
  39080. },
  39081. dailyWear: {
  39082. height: math.unit(3 + 1/12, "feet"),
  39083. weight: math.unit(24, "lb"),
  39084. name: "Daily Wear",
  39085. image: {
  39086. source: "./media/characters/tea-spot/daily-wear.svg",
  39087. extra: 701/620,
  39088. bottom: 21/722
  39089. }
  39090. },
  39091. maidWork: {
  39092. height: math.unit(3 + 1/12, "feet"),
  39093. weight: math.unit(24, "lb"),
  39094. name: "Maid Work",
  39095. image: {
  39096. source: "./media/characters/tea-spot/maid-work.svg",
  39097. extra: 693/609,
  39098. bottom: 15/708
  39099. }
  39100. },
  39101. },
  39102. [
  39103. {
  39104. name: "Normal",
  39105. height: math.unit(3 + 1/12, "feet"),
  39106. default: true
  39107. },
  39108. ]
  39109. ))
  39110. characterMakers.push(() => makeCharacter(
  39111. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39112. {
  39113. front: {
  39114. height: math.unit(175, "cm"),
  39115. weight: math.unit(75, "kg"),
  39116. name: "Front",
  39117. image: {
  39118. source: "./media/characters/chee/front.svg",
  39119. extra: 1796/1740,
  39120. bottom: 40/1836
  39121. }
  39122. },
  39123. },
  39124. [
  39125. {
  39126. name: "Micro-Micro",
  39127. height: math.unit(1, "nm")
  39128. },
  39129. {
  39130. name: "Micro-erst",
  39131. height: math.unit(1, "micrometer")
  39132. },
  39133. {
  39134. name: "Micro-er",
  39135. height: math.unit(1, "cm")
  39136. },
  39137. {
  39138. name: "Normal",
  39139. height: math.unit(175, "cm"),
  39140. default: true
  39141. },
  39142. {
  39143. name: "Macro",
  39144. height: math.unit(100, "m")
  39145. },
  39146. {
  39147. name: "Macro-er",
  39148. height: math.unit(1, "km")
  39149. },
  39150. {
  39151. name: "Macro-erst",
  39152. height: math.unit(10, "km")
  39153. },
  39154. {
  39155. name: "Macro-Macro",
  39156. height: math.unit(100, "km")
  39157. },
  39158. ]
  39159. ))
  39160. characterMakers.push(() => makeCharacter(
  39161. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39162. {
  39163. front: {
  39164. height: math.unit(11 + 9/12, "feet"),
  39165. weight: math.unit(935, "lb"),
  39166. name: "Front",
  39167. image: {
  39168. source: "./media/characters/kingsley/front.svg",
  39169. extra: 1803/1674,
  39170. bottom: 127/1930
  39171. }
  39172. },
  39173. frontNude: {
  39174. height: math.unit(11 + 9/12, "feet"),
  39175. weight: math.unit(935, "lb"),
  39176. name: "Front (Nude)",
  39177. image: {
  39178. source: "./media/characters/kingsley/front-nude.svg",
  39179. extra: 1803/1674,
  39180. bottom: 127/1930
  39181. }
  39182. },
  39183. },
  39184. [
  39185. {
  39186. name: "Normal",
  39187. height: math.unit(11 + 9/12, "feet"),
  39188. default: true
  39189. },
  39190. ]
  39191. ))
  39192. characterMakers.push(() => makeCharacter(
  39193. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39194. {
  39195. side: {
  39196. height: math.unit(9, "feet"),
  39197. name: "Side",
  39198. image: {
  39199. source: "./media/characters/rymel/side.svg",
  39200. extra: 792/469,
  39201. bottom: 121/913
  39202. }
  39203. },
  39204. maw: {
  39205. height: math.unit(2.4, "meters"),
  39206. name: "Maw",
  39207. image: {
  39208. source: "./media/characters/rymel/maw.svg"
  39209. }
  39210. },
  39211. },
  39212. [
  39213. {
  39214. name: "House Drake",
  39215. height: math.unit(2, "feet")
  39216. },
  39217. {
  39218. name: "Reduced",
  39219. height: math.unit(4.5, "feet")
  39220. },
  39221. {
  39222. name: "Normal",
  39223. height: math.unit(9, "feet"),
  39224. default: true
  39225. },
  39226. ]
  39227. ))
  39228. characterMakers.push(() => makeCharacter(
  39229. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39230. {
  39231. front: {
  39232. height: math.unit(1.74, "meters"),
  39233. weight: math.unit(55, "kg"),
  39234. name: "Front",
  39235. image: {
  39236. source: "./media/characters/rubus/front.svg",
  39237. extra: 1894/1742,
  39238. bottom: 44/1938
  39239. }
  39240. },
  39241. },
  39242. [
  39243. {
  39244. name: "Normal",
  39245. height: math.unit(1.74, "meters"),
  39246. default: true
  39247. },
  39248. ]
  39249. ))
  39250. characterMakers.push(() => makeCharacter(
  39251. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39252. {
  39253. front: {
  39254. height: math.unit(5 + 2/12, "feet"),
  39255. weight: math.unit(112, "lb"),
  39256. name: "Front",
  39257. image: {
  39258. source: "./media/characters/cassie-kingston/front.svg",
  39259. extra: 1438/1390,
  39260. bottom: 47/1485
  39261. }
  39262. },
  39263. },
  39264. [
  39265. {
  39266. name: "Normal",
  39267. height: math.unit(5 + 2/12, "feet"),
  39268. default: true
  39269. },
  39270. {
  39271. name: "Macro",
  39272. height: math.unit(128, "feet")
  39273. },
  39274. {
  39275. name: "Megamacro",
  39276. height: math.unit(2.56, "miles")
  39277. },
  39278. ]
  39279. ))
  39280. characterMakers.push(() => makeCharacter(
  39281. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39282. {
  39283. front: {
  39284. height: math.unit(7, "feet"),
  39285. name: "Front",
  39286. image: {
  39287. source: "./media/characters/fox/front.svg",
  39288. extra: 1798/1703,
  39289. bottom: 55/1853
  39290. }
  39291. },
  39292. back: {
  39293. height: math.unit(7, "feet"),
  39294. name: "Back",
  39295. image: {
  39296. source: "./media/characters/fox/back.svg",
  39297. extra: 1748/1649,
  39298. bottom: 32/1780
  39299. }
  39300. },
  39301. head: {
  39302. height: math.unit(1.95, "feet"),
  39303. name: "Head",
  39304. image: {
  39305. source: "./media/characters/fox/head.svg"
  39306. }
  39307. },
  39308. dick: {
  39309. height: math.unit(1.33, "feet"),
  39310. name: "Dick",
  39311. image: {
  39312. source: "./media/characters/fox/dick.svg"
  39313. }
  39314. },
  39315. foot: {
  39316. height: math.unit(1, "feet"),
  39317. name: "Foot",
  39318. image: {
  39319. source: "./media/characters/fox/foot.svg"
  39320. }
  39321. },
  39322. paw: {
  39323. height: math.unit(0.92, "feet"),
  39324. name: "Paw",
  39325. image: {
  39326. source: "./media/characters/fox/paw.svg"
  39327. }
  39328. },
  39329. },
  39330. [
  39331. {
  39332. name: "Small",
  39333. height: math.unit(3, "inches")
  39334. },
  39335. {
  39336. name: "\"Realistic\"",
  39337. height: math.unit(7, "feet")
  39338. },
  39339. {
  39340. name: "Normal",
  39341. height: math.unit(150, "feet"),
  39342. default: true
  39343. },
  39344. {
  39345. name: "BIG",
  39346. height: math.unit(1200, "feet")
  39347. },
  39348. {
  39349. name: "👀",
  39350. height: math.unit(5, "miles")
  39351. },
  39352. {
  39353. name: "👀👀👀",
  39354. height: math.unit(64, "miles")
  39355. },
  39356. ]
  39357. ))
  39358. characterMakers.push(() => makeCharacter(
  39359. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39360. {
  39361. front: {
  39362. height: math.unit(625, "feet"),
  39363. name: "Front",
  39364. image: {
  39365. source: "./media/characters/asonja-rossa/front.svg",
  39366. extra: 1833/1686,
  39367. bottom: 24/1857
  39368. }
  39369. },
  39370. back: {
  39371. height: math.unit(625, "feet"),
  39372. name: "Back",
  39373. image: {
  39374. source: "./media/characters/asonja-rossa/back.svg",
  39375. extra: 1852/1753,
  39376. bottom: 26/1878
  39377. }
  39378. },
  39379. },
  39380. [
  39381. {
  39382. name: "Macro",
  39383. height: math.unit(625, "feet"),
  39384. default: true
  39385. },
  39386. ]
  39387. ))
  39388. characterMakers.push(() => makeCharacter(
  39389. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39390. {
  39391. side: {
  39392. height: math.unit(8, "feet"),
  39393. name: "Side",
  39394. image: {
  39395. source: "./media/characters/rezukii/side.svg",
  39396. extra: 979/542,
  39397. bottom: 87/1066
  39398. }
  39399. },
  39400. sitting: {
  39401. height: math.unit(14.6, "feet"),
  39402. name: "Sitting",
  39403. image: {
  39404. source: "./media/characters/rezukii/sitting.svg",
  39405. extra: 1023/813,
  39406. bottom: 45/1068
  39407. }
  39408. },
  39409. },
  39410. [
  39411. {
  39412. name: "Tiny",
  39413. height: math.unit(2, "feet")
  39414. },
  39415. {
  39416. name: "Smol",
  39417. height: math.unit(4, "feet")
  39418. },
  39419. {
  39420. name: "Normal",
  39421. height: math.unit(8, "feet"),
  39422. default: true
  39423. },
  39424. {
  39425. name: "Big",
  39426. height: math.unit(12, "feet")
  39427. },
  39428. {
  39429. name: "Macro",
  39430. height: math.unit(30, "feet")
  39431. },
  39432. ]
  39433. ))
  39434. characterMakers.push(() => makeCharacter(
  39435. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39436. {
  39437. front: {
  39438. height: math.unit(14, "feet"),
  39439. weight: math.unit(9.5, "tonnes"),
  39440. name: "Front",
  39441. image: {
  39442. source: "./media/characters/dawnheart/front.svg",
  39443. extra: 2792/2675,
  39444. bottom: 64/2856
  39445. }
  39446. },
  39447. },
  39448. [
  39449. {
  39450. name: "Normal",
  39451. height: math.unit(14, "feet"),
  39452. default: true
  39453. },
  39454. ]
  39455. ))
  39456. characterMakers.push(() => makeCharacter(
  39457. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39458. {
  39459. front: {
  39460. height: math.unit(1.7, "m"),
  39461. name: "Front",
  39462. image: {
  39463. source: "./media/characters/gladi/front.svg",
  39464. extra: 1460/1362,
  39465. bottom: 19/1479
  39466. }
  39467. },
  39468. back: {
  39469. height: math.unit(1.7, "m"),
  39470. name: "Back",
  39471. image: {
  39472. source: "./media/characters/gladi/back.svg",
  39473. extra: 1459/1357,
  39474. bottom: 12/1471
  39475. }
  39476. },
  39477. feral: {
  39478. height: math.unit(2.05, "m"),
  39479. name: "Feral",
  39480. image: {
  39481. source: "./media/characters/gladi/feral.svg",
  39482. extra: 821/557,
  39483. bottom: 91/912
  39484. }
  39485. },
  39486. },
  39487. [
  39488. {
  39489. name: "Shortest",
  39490. height: math.unit(70, "cm")
  39491. },
  39492. {
  39493. name: "Normal",
  39494. height: math.unit(1.7, "m")
  39495. },
  39496. {
  39497. name: "Macro",
  39498. height: math.unit(10, "m"),
  39499. default: true
  39500. },
  39501. {
  39502. name: "Tallest",
  39503. height: math.unit(200, "m")
  39504. },
  39505. ]
  39506. ))
  39507. characterMakers.push(() => makeCharacter(
  39508. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39509. {
  39510. front: {
  39511. height: math.unit(5 + 7/12, "feet"),
  39512. weight: math.unit(2, "tons"),
  39513. name: "Front",
  39514. image: {
  39515. source: "./media/characters/erdno/front.svg",
  39516. extra: 1234/1129,
  39517. bottom: 35/1269
  39518. }
  39519. },
  39520. angled: {
  39521. height: math.unit(5 + 7/12, "feet"),
  39522. weight: math.unit(2, "tons"),
  39523. name: "Angled",
  39524. image: {
  39525. source: "./media/characters/erdno/angled.svg",
  39526. extra: 1185/1139,
  39527. bottom: 36/1221
  39528. }
  39529. },
  39530. side: {
  39531. height: math.unit(5 + 7/12, "feet"),
  39532. weight: math.unit(2, "tons"),
  39533. name: "Side",
  39534. image: {
  39535. source: "./media/characters/erdno/side.svg",
  39536. extra: 1191/1144,
  39537. bottom: 40/1231
  39538. }
  39539. },
  39540. back: {
  39541. height: math.unit(5 + 7/12, "feet"),
  39542. weight: math.unit(2, "tons"),
  39543. name: "Back",
  39544. image: {
  39545. source: "./media/characters/erdno/back.svg",
  39546. extra: 1202/1146,
  39547. bottom: 17/1219
  39548. }
  39549. },
  39550. frontNsfw: {
  39551. height: math.unit(5 + 7/12, "feet"),
  39552. weight: math.unit(2, "tons"),
  39553. name: "Front (NSFW)",
  39554. image: {
  39555. source: "./media/characters/erdno/front-nsfw.svg",
  39556. extra: 1234/1129,
  39557. bottom: 35/1269
  39558. }
  39559. },
  39560. angledNsfw: {
  39561. height: math.unit(5 + 7/12, "feet"),
  39562. weight: math.unit(2, "tons"),
  39563. name: "Angled (NSFW)",
  39564. image: {
  39565. source: "./media/characters/erdno/angled-nsfw.svg",
  39566. extra: 1185/1139,
  39567. bottom: 36/1221
  39568. }
  39569. },
  39570. sideNsfw: {
  39571. height: math.unit(5 + 7/12, "feet"),
  39572. weight: math.unit(2, "tons"),
  39573. name: "Side (NSFW)",
  39574. image: {
  39575. source: "./media/characters/erdno/side-nsfw.svg",
  39576. extra: 1191/1144,
  39577. bottom: 40/1231
  39578. }
  39579. },
  39580. backNsfw: {
  39581. height: math.unit(5 + 7/12, "feet"),
  39582. weight: math.unit(2, "tons"),
  39583. name: "Back (NSFW)",
  39584. image: {
  39585. source: "./media/characters/erdno/back-nsfw.svg",
  39586. extra: 1202/1146,
  39587. bottom: 17/1219
  39588. }
  39589. },
  39590. frontHyper: {
  39591. height: math.unit(5 + 7/12, "feet"),
  39592. weight: math.unit(2, "tons"),
  39593. name: "Front (Hyper)",
  39594. image: {
  39595. source: "./media/characters/erdno/front-hyper.svg",
  39596. extra: 1298/1136,
  39597. bottom: 35/1333
  39598. }
  39599. },
  39600. },
  39601. [
  39602. {
  39603. name: "Normal",
  39604. height: math.unit(5 + 7/12, "feet"),
  39605. default: true
  39606. },
  39607. {
  39608. name: "Big",
  39609. height: math.unit(5.7, "meters")
  39610. },
  39611. {
  39612. name: "Macro",
  39613. height: math.unit(5.7, "kilometers")
  39614. },
  39615. {
  39616. name: "Megamacro",
  39617. height: math.unit(5.7, "earths")
  39618. },
  39619. ]
  39620. ))
  39621. characterMakers.push(() => makeCharacter(
  39622. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39623. {
  39624. front: {
  39625. height: math.unit(5 + 10/12, "feet"),
  39626. weight: math.unit(150, "lb"),
  39627. name: "Front",
  39628. image: {
  39629. source: "./media/characters/jamie/front.svg",
  39630. extra: 1908/1768,
  39631. bottom: 19/1927
  39632. }
  39633. },
  39634. },
  39635. [
  39636. {
  39637. name: "Minimum",
  39638. height: math.unit(2, "cm")
  39639. },
  39640. {
  39641. name: "Micro",
  39642. height: math.unit(3, "inches")
  39643. },
  39644. {
  39645. name: "Normal",
  39646. height: math.unit(5 + 10/12, "feet"),
  39647. default: true
  39648. },
  39649. {
  39650. name: "Macro",
  39651. height: math.unit(150, "feet")
  39652. },
  39653. {
  39654. name: "Megamacro",
  39655. height: math.unit(10000, "m")
  39656. },
  39657. ]
  39658. ))
  39659. characterMakers.push(() => makeCharacter(
  39660. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39661. {
  39662. front: {
  39663. height: math.unit(2, "meters"),
  39664. weight: math.unit(100, "kg"),
  39665. name: "Front",
  39666. image: {
  39667. source: "./media/characters/shiron/front.svg",
  39668. extra: 2103/1985,
  39669. bottom: 98/2201
  39670. }
  39671. },
  39672. back: {
  39673. height: math.unit(2, "meters"),
  39674. weight: math.unit(100, "kg"),
  39675. name: "Back",
  39676. image: {
  39677. source: "./media/characters/shiron/back.svg",
  39678. extra: 2110/2015,
  39679. bottom: 89/2199
  39680. }
  39681. },
  39682. hand: {
  39683. height: math.unit(0.96, "feet"),
  39684. name: "Hand",
  39685. image: {
  39686. source: "./media/characters/shiron/hand.svg"
  39687. }
  39688. },
  39689. foot: {
  39690. height: math.unit(1.464, "feet"),
  39691. name: "Foot",
  39692. image: {
  39693. source: "./media/characters/shiron/foot.svg"
  39694. }
  39695. },
  39696. },
  39697. [
  39698. {
  39699. name: "Normal",
  39700. height: math.unit(2, "meters")
  39701. },
  39702. {
  39703. name: "Macro",
  39704. height: math.unit(500, "meters"),
  39705. default: true
  39706. },
  39707. {
  39708. name: "Megamacro",
  39709. height: math.unit(20, "km")
  39710. },
  39711. ]
  39712. ))
  39713. characterMakers.push(() => makeCharacter(
  39714. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39715. {
  39716. front: {
  39717. height: math.unit(6, "feet"),
  39718. name: "Front",
  39719. image: {
  39720. source: "./media/characters/sam/front.svg",
  39721. extra: 849/826,
  39722. bottom: 19/868
  39723. }
  39724. },
  39725. },
  39726. [
  39727. {
  39728. name: "Normal",
  39729. height: math.unit(6, "feet"),
  39730. default: true
  39731. },
  39732. ]
  39733. ))
  39734. characterMakers.push(() => makeCharacter(
  39735. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39736. {
  39737. front: {
  39738. height: math.unit(8 + 4/12, "feet"),
  39739. weight: math.unit(122, "kg"),
  39740. name: "Front",
  39741. image: {
  39742. source: "./media/characters/namori-kurogawa/front.svg",
  39743. extra: 1894/1576,
  39744. bottom: 34/1928
  39745. }
  39746. },
  39747. },
  39748. [
  39749. {
  39750. name: "Normal",
  39751. height: math.unit(8 + 4/12, "feet"),
  39752. default: true
  39753. },
  39754. ]
  39755. ))
  39756. characterMakers.push(() => makeCharacter(
  39757. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39758. {
  39759. front: {
  39760. height: math.unit(9, "feet"),
  39761. weight: math.unit(621, "lb"),
  39762. name: "Front",
  39763. image: {
  39764. source: "./media/characters/unmru/front.svg",
  39765. extra: 1853/1747,
  39766. bottom: 73/1926
  39767. }
  39768. },
  39769. side: {
  39770. height: math.unit(9, "feet"),
  39771. weight: math.unit(621, "lb"),
  39772. name: "Side",
  39773. image: {
  39774. source: "./media/characters/unmru/side.svg",
  39775. extra: 1781/1671,
  39776. bottom: 127/1908
  39777. }
  39778. },
  39779. back: {
  39780. height: math.unit(9, "feet"),
  39781. weight: math.unit(621, "lb"),
  39782. name: "Back",
  39783. image: {
  39784. source: "./media/characters/unmru/back.svg",
  39785. extra: 1894/1765,
  39786. bottom: 75/1969
  39787. }
  39788. },
  39789. dick: {
  39790. height: math.unit(3, "feet"),
  39791. weight: math.unit(35, "lb"),
  39792. name: "Dick",
  39793. image: {
  39794. source: "./media/characters/unmru/dick.svg"
  39795. }
  39796. },
  39797. },
  39798. [
  39799. {
  39800. name: "Normal",
  39801. height: math.unit(9, "feet")
  39802. },
  39803. {
  39804. name: "Natural",
  39805. height: math.unit(27, "feet"),
  39806. default: true
  39807. },
  39808. {
  39809. name: "Giant",
  39810. height: math.unit(90, "feet")
  39811. },
  39812. {
  39813. name: "Kaiju",
  39814. height: math.unit(270, "feet")
  39815. },
  39816. {
  39817. name: "Macro",
  39818. height: math.unit(900, "feet")
  39819. },
  39820. {
  39821. name: "Macro+",
  39822. height: math.unit(2700, "feet")
  39823. },
  39824. {
  39825. name: "Megamacro",
  39826. height: math.unit(9000, "feet")
  39827. },
  39828. {
  39829. name: "City-Crushing",
  39830. height: math.unit(27000, "feet")
  39831. },
  39832. {
  39833. name: "Mountain-Mashing",
  39834. height: math.unit(90000, "feet")
  39835. },
  39836. {
  39837. name: "Earth-Eclipsing",
  39838. height: math.unit(2.7e8, "feet")
  39839. },
  39840. {
  39841. name: "Sol-Swallowing",
  39842. height: math.unit(9e10, "feet")
  39843. },
  39844. {
  39845. name: "Majoris-Munching",
  39846. height: math.unit(2.7e13, "feet")
  39847. },
  39848. ]
  39849. ))
  39850. characterMakers.push(() => makeCharacter(
  39851. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39852. {
  39853. front: {
  39854. height: math.unit(1, "inch"),
  39855. name: "Front",
  39856. image: {
  39857. source: "./media/characters/squeaks-mouse/front.svg",
  39858. extra: 352/308,
  39859. bottom: 25/377
  39860. }
  39861. },
  39862. },
  39863. [
  39864. {
  39865. name: "Micro",
  39866. height: math.unit(1, "inch"),
  39867. default: true
  39868. },
  39869. ]
  39870. ))
  39871. characterMakers.push(() => makeCharacter(
  39872. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39873. {
  39874. side: {
  39875. height: math.unit(35, "feet"),
  39876. name: "Side",
  39877. image: {
  39878. source: "./media/characters/sayko/side.svg",
  39879. extra: 1697/1021,
  39880. bottom: 82/1779
  39881. }
  39882. },
  39883. head: {
  39884. height: math.unit(16, "feet"),
  39885. name: "Head",
  39886. image: {
  39887. source: "./media/characters/sayko/head.svg"
  39888. }
  39889. },
  39890. forepaw: {
  39891. height: math.unit(7.85, "feet"),
  39892. name: "Forepaw",
  39893. image: {
  39894. source: "./media/characters/sayko/forepaw.svg"
  39895. }
  39896. },
  39897. hindpaw: {
  39898. height: math.unit(8.8, "feet"),
  39899. name: "Hindpaw",
  39900. image: {
  39901. source: "./media/characters/sayko/hindpaw.svg"
  39902. }
  39903. },
  39904. },
  39905. [
  39906. {
  39907. name: "Normal",
  39908. height: math.unit(35, "feet"),
  39909. default: true
  39910. },
  39911. {
  39912. name: "Colossus",
  39913. height: math.unit(100, "meters")
  39914. },
  39915. {
  39916. name: "\"Small\" Deity",
  39917. height: math.unit(1, "km")
  39918. },
  39919. {
  39920. name: "\"Large\" Deity",
  39921. height: math.unit(15, "km")
  39922. },
  39923. ]
  39924. ))
  39925. characterMakers.push(() => makeCharacter(
  39926. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39927. {
  39928. front: {
  39929. height: math.unit(6, "feet"),
  39930. weight: math.unit(250, "lb"),
  39931. name: "Front",
  39932. image: {
  39933. source: "./media/characters/mukiro/front.svg",
  39934. extra: 1368/1310,
  39935. bottom: 34/1402
  39936. }
  39937. },
  39938. },
  39939. [
  39940. {
  39941. name: "Normal",
  39942. height: math.unit(6, "feet"),
  39943. default: true
  39944. },
  39945. ]
  39946. ))
  39947. characterMakers.push(() => makeCharacter(
  39948. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39949. {
  39950. front: {
  39951. height: math.unit(12 + 4/12, "feet"),
  39952. name: "Front",
  39953. image: {
  39954. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39955. extra: 1346/1311,
  39956. bottom: 65/1411
  39957. }
  39958. },
  39959. },
  39960. [
  39961. {
  39962. name: "Base",
  39963. height: math.unit(12 + 4/12, "feet"),
  39964. default: true
  39965. },
  39966. {
  39967. name: "Macro",
  39968. height: math.unit(150, "feet")
  39969. },
  39970. {
  39971. name: "Mega",
  39972. height: math.unit(2, "miles")
  39973. },
  39974. {
  39975. name: "Demi God",
  39976. height: math.unit(4, "AU")
  39977. },
  39978. {
  39979. name: "God Size",
  39980. height: math.unit(1, "universe")
  39981. },
  39982. ]
  39983. ))
  39984. characterMakers.push(() => makeCharacter(
  39985. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39986. {
  39987. front: {
  39988. height: math.unit(3 + 3/12, "feet"),
  39989. weight: math.unit(88, "lb"),
  39990. name: "Front",
  39991. image: {
  39992. source: "./media/characters/trey/front.svg",
  39993. extra: 1815/1509,
  39994. bottom: 60/1875
  39995. }
  39996. },
  39997. },
  39998. [
  39999. {
  40000. name: "Normal",
  40001. height: math.unit(3 + 3/12, "feet"),
  40002. default: true
  40003. },
  40004. ]
  40005. ))
  40006. characterMakers.push(() => makeCharacter(
  40007. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40008. {
  40009. front: {
  40010. height: math.unit(4, "meters"),
  40011. name: "Front",
  40012. image: {
  40013. source: "./media/characters/adelonda/front.svg",
  40014. extra: 1077/982,
  40015. bottom: 39/1116
  40016. }
  40017. },
  40018. back: {
  40019. height: math.unit(4, "meters"),
  40020. name: "Back",
  40021. image: {
  40022. source: "./media/characters/adelonda/back.svg",
  40023. extra: 1105/1003,
  40024. bottom: 25/1130
  40025. }
  40026. },
  40027. feral: {
  40028. height: math.unit(40/1.5, "meters"),
  40029. name: "Feral",
  40030. image: {
  40031. source: "./media/characters/adelonda/feral.svg",
  40032. extra: 597/271,
  40033. bottom: 387/984
  40034. }
  40035. },
  40036. },
  40037. [
  40038. {
  40039. name: "Normal",
  40040. height: math.unit(4, "meters"),
  40041. default: true
  40042. },
  40043. ]
  40044. ))
  40045. characterMakers.push(() => makeCharacter(
  40046. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40047. {
  40048. front: {
  40049. height: math.unit(8 + 4/12, "feet"),
  40050. weight: math.unit(670, "lb"),
  40051. name: "Front",
  40052. image: {
  40053. source: "./media/characters/acadiel/front.svg",
  40054. extra: 1901/1595,
  40055. bottom: 142/2043
  40056. }
  40057. },
  40058. },
  40059. [
  40060. {
  40061. name: "Normal",
  40062. height: math.unit(8 + 4/12, "feet"),
  40063. default: true
  40064. },
  40065. {
  40066. name: "Macro",
  40067. height: math.unit(200, "feet")
  40068. },
  40069. ]
  40070. ))
  40071. characterMakers.push(() => makeCharacter(
  40072. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40073. {
  40074. front: {
  40075. height: math.unit(6 + 2/12, "feet"),
  40076. weight: math.unit(185, "lb"),
  40077. name: "Front",
  40078. image: {
  40079. source: "./media/characters/kayne-ein/front.svg",
  40080. extra: 1780/1560,
  40081. bottom: 81/1861
  40082. }
  40083. },
  40084. },
  40085. [
  40086. {
  40087. name: "Normal",
  40088. height: math.unit(6 + 2/12, "feet"),
  40089. default: true
  40090. },
  40091. {
  40092. name: "Transformation Stage",
  40093. height: math.unit(15, "feet")
  40094. },
  40095. {
  40096. name: "Macro",
  40097. height: math.unit(150, "feet")
  40098. },
  40099. {
  40100. name: "Earth's Shadow",
  40101. height: math.unit(6200, "miles")
  40102. },
  40103. {
  40104. name: "Universal Demon",
  40105. height: math.unit(28e9, "parsecs")
  40106. },
  40107. {
  40108. name: "Multiverse God",
  40109. height: math.unit(3, "multiverses")
  40110. },
  40111. ]
  40112. ))
  40113. characterMakers.push(() => makeCharacter(
  40114. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40115. {
  40116. front: {
  40117. height: math.unit(5 + 5/12, "feet"),
  40118. name: "Front",
  40119. image: {
  40120. source: "./media/characters/fawn/front.svg",
  40121. extra: 1873/1731,
  40122. bottom: 95/1968
  40123. }
  40124. },
  40125. back: {
  40126. height: math.unit(5 + 5/12, "feet"),
  40127. name: "Back",
  40128. image: {
  40129. source: "./media/characters/fawn/back.svg",
  40130. extra: 1813/1700,
  40131. bottom: 14/1827
  40132. }
  40133. },
  40134. hoof: {
  40135. height: math.unit(1.45, "feet"),
  40136. name: "Hoof",
  40137. image: {
  40138. source: "./media/characters/fawn/hoof.svg"
  40139. }
  40140. },
  40141. },
  40142. [
  40143. {
  40144. name: "Normal",
  40145. height: math.unit(5 + 5/12, "feet"),
  40146. default: true
  40147. },
  40148. ]
  40149. ))
  40150. characterMakers.push(() => makeCharacter(
  40151. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40152. {
  40153. front: {
  40154. height: math.unit(2 + 5/12, "feet"),
  40155. name: "Front",
  40156. image: {
  40157. source: "./media/characters/orion/front.svg",
  40158. extra: 1366/1304,
  40159. bottom: 43/1409
  40160. }
  40161. },
  40162. paw: {
  40163. height: math.unit(0.52, "feet"),
  40164. name: "Paw",
  40165. image: {
  40166. source: "./media/characters/orion/paw.svg"
  40167. }
  40168. },
  40169. },
  40170. [
  40171. {
  40172. name: "Normal",
  40173. height: math.unit(2 + 5/12, "feet"),
  40174. default: true
  40175. },
  40176. ]
  40177. ))
  40178. characterMakers.push(() => makeCharacter(
  40179. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40180. {
  40181. front: {
  40182. height: math.unit(5 + 10/12, "feet"),
  40183. name: "Front",
  40184. image: {
  40185. source: "./media/characters/vera/front.svg",
  40186. extra: 1680/1575,
  40187. bottom: 49/1729
  40188. }
  40189. },
  40190. back: {
  40191. height: math.unit(5 + 10/12, "feet"),
  40192. name: "Back",
  40193. image: {
  40194. source: "./media/characters/vera/back.svg",
  40195. extra: 1700/1588,
  40196. bottom: 18/1718
  40197. }
  40198. },
  40199. arcanine: {
  40200. height: math.unit(6 + 8/12, "feet"),
  40201. name: "Arcanine",
  40202. image: {
  40203. source: "./media/characters/vera/arcanine.svg",
  40204. extra: 1590/1511,
  40205. bottom: 71/1661
  40206. }
  40207. },
  40208. maw: {
  40209. height: math.unit(0.82, "feet"),
  40210. name: "Maw",
  40211. image: {
  40212. source: "./media/characters/vera/maw.svg"
  40213. }
  40214. },
  40215. mawArcanine: {
  40216. height: math.unit(0.97, "feet"),
  40217. name: "Maw (Arcanine)",
  40218. image: {
  40219. source: "./media/characters/vera/maw-arcanine.svg"
  40220. }
  40221. },
  40222. paw: {
  40223. height: math.unit(0.75, "feet"),
  40224. name: "Paw",
  40225. image: {
  40226. source: "./media/characters/vera/paw.svg"
  40227. }
  40228. },
  40229. pawprint: {
  40230. height: math.unit(0.52, "feet"),
  40231. name: "Pawprint",
  40232. image: {
  40233. source: "./media/characters/vera/pawprint.svg"
  40234. }
  40235. },
  40236. },
  40237. [
  40238. {
  40239. name: "Normal",
  40240. height: math.unit(5 + 10/12, "feet"),
  40241. default: true
  40242. },
  40243. {
  40244. name: "Macro",
  40245. height: math.unit(75, "feet")
  40246. },
  40247. ]
  40248. ))
  40249. characterMakers.push(() => makeCharacter(
  40250. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40251. {
  40252. front: {
  40253. height: math.unit(4, "feet"),
  40254. weight: math.unit(40, "lb"),
  40255. name: "Front",
  40256. image: {
  40257. source: "./media/characters/orvan-rabbit/front.svg",
  40258. extra: 1896/1642,
  40259. bottom: 29/1925
  40260. }
  40261. },
  40262. },
  40263. [
  40264. {
  40265. name: "Normal",
  40266. height: math.unit(4, "feet"),
  40267. default: true
  40268. },
  40269. ]
  40270. ))
  40271. characterMakers.push(() => makeCharacter(
  40272. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40273. {
  40274. front: {
  40275. height: math.unit(6, "feet"),
  40276. weight: math.unit(168, "lb"),
  40277. name: "Front",
  40278. image: {
  40279. source: "./media/characters/lisa/front.svg",
  40280. extra: 2065/1867,
  40281. bottom: 46/2111
  40282. }
  40283. },
  40284. back: {
  40285. height: math.unit(6, "feet"),
  40286. weight: math.unit(168, "lb"),
  40287. name: "Back",
  40288. image: {
  40289. source: "./media/characters/lisa/back.svg",
  40290. extra: 1982/1838,
  40291. bottom: 29/2011
  40292. }
  40293. },
  40294. maw: {
  40295. height: math.unit(0.81, "feet"),
  40296. name: "Maw",
  40297. image: {
  40298. source: "./media/characters/lisa/maw.svg"
  40299. }
  40300. },
  40301. paw: {
  40302. height: math.unit(0.9, "feet"),
  40303. name: "Paw",
  40304. image: {
  40305. source: "./media/characters/lisa/paw.svg"
  40306. }
  40307. },
  40308. caribousune: {
  40309. height: math.unit(7 + 2/12, "feet"),
  40310. weight: math.unit(268, "lb"),
  40311. name: "Caribousune",
  40312. image: {
  40313. source: "./media/characters/lisa/caribousune.svg",
  40314. extra: 1843/1633,
  40315. bottom: 29/1872
  40316. }
  40317. },
  40318. frontCaribousune: {
  40319. height: math.unit(7 + 2/12, "feet"),
  40320. weight: math.unit(268, "lb"),
  40321. name: "Front (Caribousune)",
  40322. image: {
  40323. source: "./media/characters/lisa/front-caribousune.svg",
  40324. extra: 1818/1638,
  40325. bottom: 52/1870
  40326. }
  40327. },
  40328. sideCaribousune: {
  40329. height: math.unit(7 + 2/12, "feet"),
  40330. weight: math.unit(268, "lb"),
  40331. name: "Side (Caribousune)",
  40332. image: {
  40333. source: "./media/characters/lisa/side-caribousune.svg",
  40334. extra: 1851/1635,
  40335. bottom: 16/1867
  40336. }
  40337. },
  40338. backCaribousune: {
  40339. height: math.unit(7 + 2/12, "feet"),
  40340. weight: math.unit(268, "lb"),
  40341. name: "Back (Caribousune)",
  40342. image: {
  40343. source: "./media/characters/lisa/back-caribousune.svg",
  40344. extra: 1801/1604,
  40345. bottom: 44/1845
  40346. }
  40347. },
  40348. caribou: {
  40349. height: math.unit(7 + 2/12, "feet"),
  40350. weight: math.unit(268, "lb"),
  40351. name: "Caribou",
  40352. image: {
  40353. source: "./media/characters/lisa/caribou.svg",
  40354. extra: 1843/1633,
  40355. bottom: 29/1872
  40356. }
  40357. },
  40358. frontCaribou: {
  40359. height: math.unit(7 + 2/12, "feet"),
  40360. weight: math.unit(268, "lb"),
  40361. name: "Front (Caribou)",
  40362. image: {
  40363. source: "./media/characters/lisa/front-caribou.svg",
  40364. extra: 1818/1638,
  40365. bottom: 52/1870
  40366. }
  40367. },
  40368. sideCaribou: {
  40369. height: math.unit(7 + 2/12, "feet"),
  40370. weight: math.unit(268, "lb"),
  40371. name: "Side (Caribou)",
  40372. image: {
  40373. source: "./media/characters/lisa/side-caribou.svg",
  40374. extra: 1851/1635,
  40375. bottom: 16/1867
  40376. }
  40377. },
  40378. backCaribou: {
  40379. height: math.unit(7 + 2/12, "feet"),
  40380. weight: math.unit(268, "lb"),
  40381. name: "Back (Caribou)",
  40382. image: {
  40383. source: "./media/characters/lisa/back-caribou.svg",
  40384. extra: 1801/1604,
  40385. bottom: 44/1845
  40386. }
  40387. },
  40388. mawCaribou: {
  40389. height: math.unit(1.45, "feet"),
  40390. name: "Maw (Caribou)",
  40391. image: {
  40392. source: "./media/characters/lisa/maw-caribou.svg"
  40393. }
  40394. },
  40395. mawCaribousune: {
  40396. height: math.unit(1.45, "feet"),
  40397. name: "Maw (Caribousune)",
  40398. image: {
  40399. source: "./media/characters/lisa/maw-caribousune.svg"
  40400. }
  40401. },
  40402. pawCaribousune: {
  40403. height: math.unit(1.61, "feet"),
  40404. name: "Paw (Caribou)",
  40405. image: {
  40406. source: "./media/characters/lisa/paw-caribousune.svg"
  40407. }
  40408. },
  40409. },
  40410. [
  40411. {
  40412. name: "Normal",
  40413. height: math.unit(6, "feet")
  40414. },
  40415. {
  40416. name: "God Size",
  40417. height: math.unit(72, "feet"),
  40418. default: true
  40419. },
  40420. {
  40421. name: "Towering",
  40422. height: math.unit(288, "feet")
  40423. },
  40424. {
  40425. name: "City Size",
  40426. height: math.unit(48384, "feet")
  40427. },
  40428. {
  40429. name: "Continental",
  40430. height: math.unit(4200, "miles")
  40431. },
  40432. {
  40433. name: "Planet Eater",
  40434. height: math.unit(42, "earths")
  40435. },
  40436. {
  40437. name: "Star Swallower",
  40438. height: math.unit(42, "solarradii")
  40439. },
  40440. {
  40441. name: "System Swallower",
  40442. height: math.unit(84000, "AU")
  40443. },
  40444. {
  40445. name: "Galaxy Gobbler",
  40446. height: math.unit(42, "galaxies")
  40447. },
  40448. {
  40449. name: "Universe Devourer",
  40450. height: math.unit(42, "universes")
  40451. },
  40452. {
  40453. name: "Multiverse Muncher",
  40454. height: math.unit(42, "multiverses")
  40455. },
  40456. ]
  40457. ))
  40458. characterMakers.push(() => makeCharacter(
  40459. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40460. {
  40461. front: {
  40462. height: math.unit(36, "feet"),
  40463. name: "Front",
  40464. image: {
  40465. source: "./media/characters/shadow-rat/front.svg",
  40466. extra: 1845/1758,
  40467. bottom: 83/1928
  40468. }
  40469. },
  40470. },
  40471. [
  40472. {
  40473. name: "Macro",
  40474. height: math.unit(36, "feet"),
  40475. default: true
  40476. },
  40477. ]
  40478. ))
  40479. characterMakers.push(() => makeCharacter(
  40480. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40481. {
  40482. side: {
  40483. height: math.unit(8, "feet"),
  40484. weight: math.unit(2630, "lb"),
  40485. name: "Side",
  40486. image: {
  40487. source: "./media/characters/torallia/side.svg",
  40488. extra: 2164/2021,
  40489. bottom: 371/2535
  40490. }
  40491. },
  40492. },
  40493. [
  40494. {
  40495. name: "Mortal Interaction",
  40496. height: math.unit(8, "feet")
  40497. },
  40498. {
  40499. name: "Natural",
  40500. height: math.unit(24, "feet"),
  40501. default: true
  40502. },
  40503. {
  40504. name: "Giant",
  40505. height: math.unit(80, "feet")
  40506. },
  40507. {
  40508. name: "Kaiju",
  40509. height: math.unit(240, "feet")
  40510. },
  40511. {
  40512. name: "Macro",
  40513. height: math.unit(800, "feet")
  40514. },
  40515. {
  40516. name: "Macro+",
  40517. height: math.unit(2400, "feet")
  40518. },
  40519. {
  40520. name: "Macro++",
  40521. height: math.unit(8000, "feet")
  40522. },
  40523. {
  40524. name: "City-Crushing",
  40525. height: math.unit(24000, "feet")
  40526. },
  40527. {
  40528. name: "Mountain-Mashing",
  40529. height: math.unit(80000, "feet")
  40530. },
  40531. {
  40532. name: "District Demolisher",
  40533. height: math.unit(240000, "feet")
  40534. },
  40535. {
  40536. name: "Tri-County Terror",
  40537. height: math.unit(800000, "feet")
  40538. },
  40539. {
  40540. name: "State Smasher",
  40541. height: math.unit(2.4e6, "feet")
  40542. },
  40543. {
  40544. name: "Nation Nemesis",
  40545. height: math.unit(8e6, "feet")
  40546. },
  40547. {
  40548. name: "Continent Cracker",
  40549. height: math.unit(2.4e7, "feet")
  40550. },
  40551. {
  40552. name: "Planet-Pillaging",
  40553. height: math.unit(8e7, "feet")
  40554. },
  40555. {
  40556. name: "Earth-Eclipsing",
  40557. height: math.unit(2.4e8, "feet")
  40558. },
  40559. {
  40560. name: "Jovian-Jostling",
  40561. height: math.unit(8e8, "feet")
  40562. },
  40563. {
  40564. name: "Gas Giant Gulper",
  40565. height: math.unit(2.4e9, "feet")
  40566. },
  40567. {
  40568. name: "Astral Annihilator",
  40569. height: math.unit(8e9, "feet")
  40570. },
  40571. {
  40572. name: "Celestial Conqueror",
  40573. height: math.unit(2.4e10, "feet")
  40574. },
  40575. {
  40576. name: "Sol-Swallowing",
  40577. height: math.unit(8e10, "feet")
  40578. },
  40579. {
  40580. name: "Hunter of the Heavens",
  40581. height: math.unit(2.4e13, "feet")
  40582. },
  40583. ]
  40584. ))
  40585. characterMakers.push(() => makeCharacter(
  40586. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40587. {
  40588. front: {
  40589. height: math.unit(6 + 8/12, "feet"),
  40590. weight: math.unit(250, "kilograms"),
  40591. volume: math.unit(28, "liters"),
  40592. name: "Front",
  40593. image: {
  40594. source: "./media/characters/rebecca-pawlson/front.svg",
  40595. extra: 1737/1596,
  40596. bottom: 107/1844
  40597. }
  40598. },
  40599. back: {
  40600. height: math.unit(6 + 8/12, "feet"),
  40601. weight: math.unit(250, "kilograms"),
  40602. volume: math.unit(28, "liters"),
  40603. name: "Back",
  40604. image: {
  40605. source: "./media/characters/rebecca-pawlson/back.svg",
  40606. extra: 1702/1523,
  40607. bottom: 86/1788
  40608. }
  40609. },
  40610. },
  40611. [
  40612. {
  40613. name: "Normal",
  40614. height: math.unit(6 + 8/12, "feet")
  40615. },
  40616. {
  40617. name: "Mini Macro",
  40618. height: math.unit(10, "feet"),
  40619. default: true
  40620. },
  40621. {
  40622. name: "Macro",
  40623. height: math.unit(100, "feet")
  40624. },
  40625. {
  40626. name: "Mega Macro",
  40627. height: math.unit(2500, "feet")
  40628. },
  40629. {
  40630. name: "Giga Macro",
  40631. height: math.unit(50, "miles")
  40632. },
  40633. ]
  40634. ))
  40635. characterMakers.push(() => makeCharacter(
  40636. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40637. {
  40638. front: {
  40639. height: math.unit(7 + 6/12, "feet"),
  40640. weight: math.unit(600, "lb"),
  40641. name: "Front",
  40642. image: {
  40643. source: "./media/characters/moxie-nova/front.svg",
  40644. extra: 1734/1652,
  40645. bottom: 41/1775
  40646. }
  40647. },
  40648. },
  40649. [
  40650. {
  40651. name: "Normal",
  40652. height: math.unit(7 + 6/12, "feet"),
  40653. default: true
  40654. },
  40655. ]
  40656. ))
  40657. characterMakers.push(() => makeCharacter(
  40658. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40659. {
  40660. goat: {
  40661. height: math.unit(4, "feet"),
  40662. weight: math.unit(180, "lb"),
  40663. name: "Goat",
  40664. image: {
  40665. source: "./media/characters/tiffany/goat.svg",
  40666. extra: 1845/1595,
  40667. bottom: 106/1951
  40668. }
  40669. },
  40670. front: {
  40671. height: math.unit(5, "feet"),
  40672. weight: math.unit(150, "lb"),
  40673. name: "Foxcoon",
  40674. image: {
  40675. source: "./media/characters/tiffany/foxcoon.svg",
  40676. extra: 1941/1845,
  40677. bottom: 58/1999
  40678. }
  40679. },
  40680. },
  40681. [
  40682. {
  40683. name: "Normal",
  40684. height: math.unit(5, "feet"),
  40685. default: true
  40686. },
  40687. ]
  40688. ))
  40689. characterMakers.push(() => makeCharacter(
  40690. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40691. {
  40692. front: {
  40693. height: math.unit(8, "feet"),
  40694. weight: math.unit(300, "lb"),
  40695. name: "Front",
  40696. image: {
  40697. source: "./media/characters/raxinath/front.svg",
  40698. extra: 1407/1309,
  40699. bottom: 39/1446
  40700. }
  40701. },
  40702. back: {
  40703. height: math.unit(8, "feet"),
  40704. weight: math.unit(300, "lb"),
  40705. name: "Back",
  40706. image: {
  40707. source: "./media/characters/raxinath/back.svg",
  40708. extra: 1405/1315,
  40709. bottom: 9/1414
  40710. }
  40711. },
  40712. },
  40713. [
  40714. {
  40715. name: "Speck",
  40716. height: math.unit(0.5, "nm")
  40717. },
  40718. {
  40719. name: "Micro",
  40720. height: math.unit(3, "inches")
  40721. },
  40722. {
  40723. name: "Kobold",
  40724. height: math.unit(3, "feet")
  40725. },
  40726. {
  40727. name: "Normal",
  40728. height: math.unit(8, "feet"),
  40729. default: true
  40730. },
  40731. {
  40732. name: "Giant",
  40733. height: math.unit(50, "feet")
  40734. },
  40735. {
  40736. name: "Macro",
  40737. height: math.unit(1000, "feet")
  40738. },
  40739. {
  40740. name: "Megamacro",
  40741. height: math.unit(1, "mile")
  40742. },
  40743. ]
  40744. ))
  40745. characterMakers.push(() => makeCharacter(
  40746. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40747. {
  40748. front: {
  40749. height: math.unit(10, "feet"),
  40750. weight: math.unit(1442, "lb"),
  40751. name: "Front",
  40752. image: {
  40753. source: "./media/characters/mal-dragon/front.svg",
  40754. extra: 1515/1444,
  40755. bottom: 113/1628
  40756. }
  40757. },
  40758. back: {
  40759. height: math.unit(10, "feet"),
  40760. weight: math.unit(1442, "lb"),
  40761. name: "Back",
  40762. image: {
  40763. source: "./media/characters/mal-dragon/back.svg",
  40764. extra: 1527/1434,
  40765. bottom: 25/1552
  40766. }
  40767. },
  40768. },
  40769. [
  40770. {
  40771. name: "Mortal Interaction",
  40772. height: math.unit(10, "feet"),
  40773. default: true
  40774. },
  40775. {
  40776. name: "Large",
  40777. height: math.unit(30, "feet")
  40778. },
  40779. {
  40780. name: "Kaiju",
  40781. height: math.unit(300, "feet")
  40782. },
  40783. {
  40784. name: "Megamacro",
  40785. height: math.unit(10000, "feet")
  40786. },
  40787. {
  40788. name: "Continent Cracker",
  40789. height: math.unit(30000000, "feet")
  40790. },
  40791. {
  40792. name: "Sol-Swallowing",
  40793. height: math.unit(1e11, "feet")
  40794. },
  40795. {
  40796. name: "Light Universal",
  40797. height: math.unit(5, "universes")
  40798. },
  40799. {
  40800. name: "Universe Atoms",
  40801. height: math.unit(1.829e9, "universes")
  40802. },
  40803. {
  40804. name: "Light Multiversal",
  40805. height: math.unit(5, "multiverses")
  40806. },
  40807. {
  40808. name: "Multiverse Atoms",
  40809. height: math.unit(1.829e9, "multiverses")
  40810. },
  40811. {
  40812. name: "Fabric of Time",
  40813. height: math.unit(1e262, "multiverses")
  40814. },
  40815. ]
  40816. ))
  40817. characterMakers.push(() => makeCharacter(
  40818. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40819. {
  40820. front: {
  40821. height: math.unit(9, "feet"),
  40822. weight: math.unit(1050, "lb"),
  40823. name: "Front",
  40824. image: {
  40825. source: "./media/characters/tabitha/front.svg",
  40826. extra: 2083/1994,
  40827. bottom: 68/2151
  40828. }
  40829. },
  40830. },
  40831. [
  40832. {
  40833. name: "Baseline",
  40834. height: math.unit(9, "feet"),
  40835. default: true
  40836. },
  40837. {
  40838. name: "Giant",
  40839. height: math.unit(90, "feet")
  40840. },
  40841. {
  40842. name: "Macro",
  40843. height: math.unit(900, "feet")
  40844. },
  40845. {
  40846. name: "Megamacro",
  40847. height: math.unit(9000, "feet")
  40848. },
  40849. {
  40850. name: "City-Crushing",
  40851. height: math.unit(27000, "feet")
  40852. },
  40853. {
  40854. name: "Mountain-Mashing",
  40855. height: math.unit(90000, "feet")
  40856. },
  40857. {
  40858. name: "Nation Nemesis",
  40859. height: math.unit(9e6, "feet")
  40860. },
  40861. {
  40862. name: "Continent Cracker",
  40863. height: math.unit(27e6, "feet")
  40864. },
  40865. {
  40866. name: "Earth-Eclipsing",
  40867. height: math.unit(2.7e8, "feet")
  40868. },
  40869. {
  40870. name: "Gas Giant Gulper",
  40871. height: math.unit(2.7e9, "feet")
  40872. },
  40873. {
  40874. name: "Sol-Swallowing",
  40875. height: math.unit(9e10, "feet")
  40876. },
  40877. {
  40878. name: "Galaxy Gulper",
  40879. height: math.unit(9, "galaxies")
  40880. },
  40881. {
  40882. name: "Cosmos Churner",
  40883. height: math.unit(9, "universes")
  40884. },
  40885. ]
  40886. ))
  40887. characterMakers.push(() => makeCharacter(
  40888. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40889. {
  40890. front: {
  40891. height: math.unit(160, "cm"),
  40892. weight: math.unit(55, "kg"),
  40893. name: "Front",
  40894. image: {
  40895. source: "./media/characters/tow/front.svg",
  40896. extra: 1751/1722,
  40897. bottom: 74/1825
  40898. }
  40899. },
  40900. },
  40901. [
  40902. {
  40903. name: "Norm",
  40904. height: math.unit(160, "cm")
  40905. },
  40906. {
  40907. name: "Casual",
  40908. height: math.unit(3200, "m"),
  40909. default: true
  40910. },
  40911. {
  40912. name: "Show-Off",
  40913. height: math.unit(160, "km")
  40914. },
  40915. ]
  40916. ))
  40917. characterMakers.push(() => makeCharacter(
  40918. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40919. {
  40920. front: {
  40921. height: math.unit(7 + 11/12, "feet"),
  40922. weight: math.unit(342.8, "lb"),
  40923. name: "Front",
  40924. image: {
  40925. source: "./media/characters/vivian-orca-dragon/front.svg",
  40926. extra: 1890/1865,
  40927. bottom: 28/1918
  40928. }
  40929. },
  40930. },
  40931. [
  40932. {
  40933. name: "Micro",
  40934. height: math.unit(5, "inches")
  40935. },
  40936. {
  40937. name: "Normal",
  40938. height: math.unit(7 + 11/12, "feet"),
  40939. default: true
  40940. },
  40941. {
  40942. name: "Macro",
  40943. height: math.unit(395 + 7/12, "feet")
  40944. },
  40945. ]
  40946. ))
  40947. characterMakers.push(() => makeCharacter(
  40948. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40949. {
  40950. side: {
  40951. height: math.unit(10, "feet"),
  40952. weight: math.unit(1442, "lb"),
  40953. name: "Side",
  40954. image: {
  40955. source: "./media/characters/lotherakon/side.svg",
  40956. extra: 1604/1497,
  40957. bottom: 89/1693
  40958. }
  40959. },
  40960. },
  40961. [
  40962. {
  40963. name: "Mortal Interaction",
  40964. height: math.unit(10, "feet")
  40965. },
  40966. {
  40967. name: "Large",
  40968. height: math.unit(30, "feet"),
  40969. default: true
  40970. },
  40971. {
  40972. name: "Giant",
  40973. height: math.unit(100, "feet")
  40974. },
  40975. {
  40976. name: "Kaiju",
  40977. height: math.unit(300, "feet")
  40978. },
  40979. {
  40980. name: "Macro",
  40981. height: math.unit(1000, "feet")
  40982. },
  40983. {
  40984. name: "Macro+",
  40985. height: math.unit(3000, "feet")
  40986. },
  40987. {
  40988. name: "Megamacro",
  40989. height: math.unit(10000, "feet")
  40990. },
  40991. {
  40992. name: "City-Crushing",
  40993. height: math.unit(30000, "feet")
  40994. },
  40995. {
  40996. name: "Continent Cracker",
  40997. height: math.unit(30e6, "feet")
  40998. },
  40999. {
  41000. name: "Earth Eclipsing",
  41001. height: math.unit(3e8, "feet")
  41002. },
  41003. {
  41004. name: "Gas Giant Gulper",
  41005. height: math.unit(3e9, "feet")
  41006. },
  41007. {
  41008. name: "Sol-Swallowing",
  41009. height: math.unit(1e11, "feet")
  41010. },
  41011. {
  41012. name: "System Swallower",
  41013. height: math.unit(3e14, "feet")
  41014. },
  41015. {
  41016. name: "Galaxy Gulper",
  41017. height: math.unit(10, "galaxies")
  41018. },
  41019. {
  41020. name: "Light Universal",
  41021. height: math.unit(5, "universes")
  41022. },
  41023. {
  41024. name: "Universe Palm",
  41025. height: math.unit(20, "universes")
  41026. },
  41027. {
  41028. name: "Light Multiversal",
  41029. height: math.unit(5, "multiverses")
  41030. },
  41031. {
  41032. name: "Multiverse Palm",
  41033. height: math.unit(20, "multiverses")
  41034. },
  41035. {
  41036. name: "Inferno Incarnate",
  41037. height: math.unit(1e7, "multiverses")
  41038. },
  41039. ]
  41040. ))
  41041. characterMakers.push(() => makeCharacter(
  41042. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41043. {
  41044. front: {
  41045. height: math.unit(8, "feet"),
  41046. weight: math.unit(1200, "lb"),
  41047. name: "Front",
  41048. image: {
  41049. source: "./media/characters/malithee/front.svg",
  41050. extra: 1675/1640,
  41051. bottom: 162/1837
  41052. }
  41053. },
  41054. },
  41055. [
  41056. {
  41057. name: "Mortal Interaction",
  41058. height: math.unit(8, "feet"),
  41059. default: true
  41060. },
  41061. {
  41062. name: "Large",
  41063. height: math.unit(24, "feet")
  41064. },
  41065. {
  41066. name: "Kaiju",
  41067. height: math.unit(240, "feet")
  41068. },
  41069. {
  41070. name: "Megamacro",
  41071. height: math.unit(8000, "feet")
  41072. },
  41073. {
  41074. name: "Continent Cracker",
  41075. height: math.unit(24e6, "feet")
  41076. },
  41077. {
  41078. name: "Earth-Eclipsing",
  41079. height: math.unit(2.4e8, "feet")
  41080. },
  41081. {
  41082. name: "Sol-Swallowing",
  41083. height: math.unit(8e10, "feet")
  41084. },
  41085. {
  41086. name: "Galaxy Gulper",
  41087. height: math.unit(8, "galaxies")
  41088. },
  41089. {
  41090. name: "Light Universal",
  41091. height: math.unit(4, "universes")
  41092. },
  41093. {
  41094. name: "Universe Atoms",
  41095. height: math.unit(1.829e9, "universes")
  41096. },
  41097. {
  41098. name: "Light Multiversal",
  41099. height: math.unit(4, "multiverses")
  41100. },
  41101. {
  41102. name: "Multiverse Atoms",
  41103. height: math.unit(1.829e9, "multiverses")
  41104. },
  41105. {
  41106. name: "Nigh-Omnipresence",
  41107. height: math.unit(8e261, "multiverses")
  41108. },
  41109. ]
  41110. ))
  41111. characterMakers.push(() => makeCharacter(
  41112. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41113. {
  41114. front: {
  41115. height: math.unit(10, "feet"),
  41116. weight: math.unit(1500, "lb"),
  41117. name: "Front",
  41118. image: {
  41119. source: "./media/characters/miles-thestia/front.svg",
  41120. extra: 1812/1727,
  41121. bottom: 86/1898
  41122. }
  41123. },
  41124. back: {
  41125. height: math.unit(10, "feet"),
  41126. weight: math.unit(1500, "lb"),
  41127. name: "Back",
  41128. image: {
  41129. source: "./media/characters/miles-thestia/back.svg",
  41130. extra: 1799/1690,
  41131. bottom: 47/1846
  41132. }
  41133. },
  41134. frontNsfw: {
  41135. height: math.unit(10, "feet"),
  41136. weight: math.unit(1500, "lb"),
  41137. name: "Front (NSFW)",
  41138. image: {
  41139. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41140. extra: 1812/1727,
  41141. bottom: 86/1898
  41142. }
  41143. },
  41144. },
  41145. [
  41146. {
  41147. name: "Mini-Macro",
  41148. height: math.unit(10, "feet"),
  41149. default: true
  41150. },
  41151. ]
  41152. ))
  41153. characterMakers.push(() => makeCharacter(
  41154. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41155. {
  41156. front: {
  41157. height: math.unit(25, "feet"),
  41158. name: "Front",
  41159. image: {
  41160. source: "./media/characters/titan-s-wulf/front.svg",
  41161. extra: 1560/1484,
  41162. bottom: 76/1636
  41163. }
  41164. },
  41165. },
  41166. [
  41167. {
  41168. name: "Smallest",
  41169. height: math.unit(25, "feet"),
  41170. default: true
  41171. },
  41172. {
  41173. name: "Normal",
  41174. height: math.unit(200, "feet")
  41175. },
  41176. {
  41177. name: "Macro",
  41178. height: math.unit(200000, "feet")
  41179. },
  41180. {
  41181. name: "Multiversal Original",
  41182. height: math.unit(10000, "multiverses")
  41183. },
  41184. ]
  41185. ))
  41186. characterMakers.push(() => makeCharacter(
  41187. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41188. {
  41189. front: {
  41190. height: math.unit(8, "feet"),
  41191. weight: math.unit(553, "lb"),
  41192. name: "Front",
  41193. image: {
  41194. source: "./media/characters/tawendeh/front.svg",
  41195. extra: 2365/2268,
  41196. bottom: 83/2448
  41197. }
  41198. },
  41199. frontClothed: {
  41200. height: math.unit(8, "feet"),
  41201. weight: math.unit(553, "lb"),
  41202. name: "Front (Clothed)",
  41203. image: {
  41204. source: "./media/characters/tawendeh/front-clothed.svg",
  41205. extra: 2365/2268,
  41206. bottom: 83/2448
  41207. }
  41208. },
  41209. back: {
  41210. height: math.unit(8, "feet"),
  41211. weight: math.unit(553, "lb"),
  41212. name: "Back",
  41213. image: {
  41214. source: "./media/characters/tawendeh/back.svg",
  41215. extra: 2397/2294,
  41216. bottom: 42/2439
  41217. }
  41218. },
  41219. },
  41220. [
  41221. {
  41222. name: "Mortal Interaction",
  41223. height: math.unit(8, "feet"),
  41224. default: true
  41225. },
  41226. {
  41227. name: "Giant",
  41228. height: math.unit(80, "feet")
  41229. },
  41230. {
  41231. name: "Macro",
  41232. height: math.unit(800, "feet")
  41233. },
  41234. {
  41235. name: "Megamacro",
  41236. height: math.unit(8000, "feet")
  41237. },
  41238. {
  41239. name: "City-Crushing",
  41240. height: math.unit(24000, "feet")
  41241. },
  41242. {
  41243. name: "Mountain-Mashing",
  41244. height: math.unit(80000, "feet")
  41245. },
  41246. {
  41247. name: "Nation Nemesis",
  41248. height: math.unit(8e6, "feet")
  41249. },
  41250. {
  41251. name: "Continent Cracker",
  41252. height: math.unit(24e6, "feet")
  41253. },
  41254. {
  41255. name: "Earth-Eclipsing",
  41256. height: math.unit(2.4e8, "feet")
  41257. },
  41258. {
  41259. name: "Gas Giant Gulper",
  41260. height: math.unit(2.4e9, "feet")
  41261. },
  41262. {
  41263. name: "Sol-Swallowing",
  41264. height: math.unit(8e10, "feet")
  41265. },
  41266. {
  41267. name: "Galaxy Gulper",
  41268. height: math.unit(8, "galaxies")
  41269. },
  41270. {
  41271. name: "Cosmos Churner",
  41272. height: math.unit(8, "universes")
  41273. },
  41274. {
  41275. name: "Omnipotent Otter",
  41276. height: math.unit(80, "universes")
  41277. },
  41278. ]
  41279. ))
  41280. characterMakers.push(() => makeCharacter(
  41281. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41282. {
  41283. front: {
  41284. height: math.unit(2.6, "meters"),
  41285. weight: math.unit(900, "kg"),
  41286. name: "Front",
  41287. image: {
  41288. source: "./media/characters/neesha/front.svg",
  41289. extra: 1803/1653,
  41290. bottom: 128/1931
  41291. }
  41292. },
  41293. },
  41294. [
  41295. {
  41296. name: "Normal",
  41297. height: math.unit(2.6, "meters"),
  41298. default: true
  41299. },
  41300. {
  41301. name: "Macro",
  41302. height: math.unit(50, "meters")
  41303. },
  41304. ]
  41305. ))
  41306. characterMakers.push(() => makeCharacter(
  41307. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41308. {
  41309. front: {
  41310. height: math.unit(5, "feet"),
  41311. weight: math.unit(185, "lb"),
  41312. name: "Front",
  41313. image: {
  41314. source: "./media/characters/kyera/front.svg",
  41315. extra: 1875/1790,
  41316. bottom: 96/1971
  41317. }
  41318. },
  41319. },
  41320. [
  41321. {
  41322. name: "Normal",
  41323. height: math.unit(5, "feet"),
  41324. default: true
  41325. },
  41326. ]
  41327. ))
  41328. characterMakers.push(() => makeCharacter(
  41329. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41330. {
  41331. front: {
  41332. height: math.unit(7 + 6/12, "feet"),
  41333. weight: math.unit(540, "lb"),
  41334. name: "Front",
  41335. image: {
  41336. source: "./media/characters/yuko/front.svg",
  41337. extra: 1282/1222,
  41338. bottom: 101/1383
  41339. }
  41340. },
  41341. frontClothed: {
  41342. height: math.unit(7 + 6/12, "feet"),
  41343. weight: math.unit(540, "lb"),
  41344. name: "Front (Clothed)",
  41345. image: {
  41346. source: "./media/characters/yuko/front-clothed.svg",
  41347. extra: 1282/1222,
  41348. bottom: 101/1383
  41349. }
  41350. },
  41351. },
  41352. [
  41353. {
  41354. name: "Normal",
  41355. height: math.unit(7 + 6/12, "feet"),
  41356. default: true
  41357. },
  41358. {
  41359. name: "Macro",
  41360. height: math.unit(26 + 9/12, "feet")
  41361. },
  41362. {
  41363. name: "Megamacro",
  41364. height: math.unit(300, "feet")
  41365. },
  41366. {
  41367. name: "Gigamacro",
  41368. height: math.unit(5000, "feet")
  41369. },
  41370. {
  41371. name: "Planetary",
  41372. height: math.unit(10000, "miles")
  41373. },
  41374. ]
  41375. ))
  41376. characterMakers.push(() => makeCharacter(
  41377. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41378. {
  41379. front: {
  41380. height: math.unit(8 + 2/12, "feet"),
  41381. weight: math.unit(600, "lb"),
  41382. name: "Front",
  41383. image: {
  41384. source: "./media/characters/deam-nitrel/front.svg",
  41385. extra: 1308/1234,
  41386. bottom: 125/1433
  41387. }
  41388. },
  41389. },
  41390. [
  41391. {
  41392. name: "Normal",
  41393. height: math.unit(8 + 2/12, "feet"),
  41394. default: true
  41395. },
  41396. ]
  41397. ))
  41398. characterMakers.push(() => makeCharacter(
  41399. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41400. {
  41401. front: {
  41402. height: math.unit(6.1, "feet"),
  41403. weight: math.unit(180, "lb"),
  41404. name: "Front",
  41405. image: {
  41406. source: "./media/characters/skyress/front.svg",
  41407. extra: 1045/915,
  41408. bottom: 28/1073
  41409. }
  41410. },
  41411. maw: {
  41412. height: math.unit(1, "feet"),
  41413. name: "Maw",
  41414. image: {
  41415. source: "./media/characters/skyress/maw.svg"
  41416. }
  41417. },
  41418. },
  41419. [
  41420. {
  41421. name: "Normal",
  41422. height: math.unit(6.1, "feet"),
  41423. default: true
  41424. },
  41425. {
  41426. name: "Macro",
  41427. height: math.unit(200, "feet")
  41428. },
  41429. ]
  41430. ))
  41431. characterMakers.push(() => makeCharacter(
  41432. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41433. {
  41434. front: {
  41435. height: math.unit(4 + 2/12, "feet"),
  41436. weight: math.unit(40, "kg"),
  41437. name: "Front",
  41438. image: {
  41439. source: "./media/characters/amethyst-jones/front.svg",
  41440. extra: 1220/1150,
  41441. bottom: 101/1321
  41442. }
  41443. },
  41444. },
  41445. [
  41446. {
  41447. name: "Normal",
  41448. height: math.unit(4 + 2/12, "feet"),
  41449. default: true
  41450. },
  41451. ]
  41452. ))
  41453. characterMakers.push(() => makeCharacter(
  41454. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41455. {
  41456. front: {
  41457. height: math.unit(1.7, "m"),
  41458. weight: math.unit(135, "lb"),
  41459. name: "Front",
  41460. image: {
  41461. source: "./media/characters/jade/front.svg",
  41462. extra: 1818/1767,
  41463. bottom: 32/1850
  41464. }
  41465. },
  41466. back: {
  41467. height: math.unit(1.7, "m"),
  41468. weight: math.unit(135, "lb"),
  41469. name: "Back",
  41470. image: {
  41471. source: "./media/characters/jade/back.svg",
  41472. extra: 1869/1809,
  41473. bottom: 35/1904
  41474. }
  41475. },
  41476. hand: {
  41477. height: math.unit(0.24, "m"),
  41478. name: "Hand",
  41479. image: {
  41480. source: "./media/characters/jade/hand.svg"
  41481. }
  41482. },
  41483. foot: {
  41484. height: math.unit(0.263, "m"),
  41485. name: "Foot",
  41486. image: {
  41487. source: "./media/characters/jade/foot.svg"
  41488. }
  41489. },
  41490. dick: {
  41491. height: math.unit(0.47, "m"),
  41492. name: "Dick",
  41493. image: {
  41494. source: "./media/characters/jade/dick.svg"
  41495. }
  41496. },
  41497. },
  41498. [
  41499. {
  41500. name: "Micro",
  41501. height: math.unit(22, "cm")
  41502. },
  41503. {
  41504. name: "Normal",
  41505. height: math.unit(1.7, "m"),
  41506. default: true
  41507. },
  41508. {
  41509. name: "Macro",
  41510. height: math.unit(152, "m")
  41511. },
  41512. ]
  41513. ))
  41514. characterMakers.push(() => makeCharacter(
  41515. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41516. {
  41517. front: {
  41518. height: math.unit(100, "miles"),
  41519. weight: math.unit(20000, "tons"),
  41520. name: "Front",
  41521. image: {
  41522. source: "./media/characters/cookie/front.svg",
  41523. extra: 1125/1070,
  41524. bottom: 30/1155
  41525. }
  41526. },
  41527. },
  41528. [
  41529. {
  41530. name: "Big",
  41531. height: math.unit(50, "feet")
  41532. },
  41533. {
  41534. name: "Macro",
  41535. height: math.unit(100, "miles"),
  41536. default: true
  41537. },
  41538. {
  41539. name: "Megamacro",
  41540. height: math.unit(90000, "miles")
  41541. },
  41542. ]
  41543. ))
  41544. characterMakers.push(() => makeCharacter(
  41545. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41546. {
  41547. front: {
  41548. height: math.unit(6, "feet"),
  41549. weight: math.unit(145, "lb"),
  41550. name: "Front",
  41551. image: {
  41552. source: "./media/characters/farzian/front.svg",
  41553. extra: 1902/1693,
  41554. bottom: 108/2010
  41555. }
  41556. },
  41557. },
  41558. [
  41559. {
  41560. name: "Macro",
  41561. height: math.unit(500, "feet"),
  41562. default: true
  41563. },
  41564. ]
  41565. ))
  41566. characterMakers.push(() => makeCharacter(
  41567. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41568. {
  41569. front: {
  41570. height: math.unit(3 + 6/12, "feet"),
  41571. weight: math.unit(50, "lb"),
  41572. name: "Front",
  41573. image: {
  41574. source: "./media/characters/kimberly-tilson/front.svg",
  41575. extra: 1400/1322,
  41576. bottom: 36/1436
  41577. }
  41578. },
  41579. back: {
  41580. height: math.unit(3 + 6/12, "feet"),
  41581. weight: math.unit(50, "lb"),
  41582. name: "Back",
  41583. image: {
  41584. source: "./media/characters/kimberly-tilson/back.svg",
  41585. extra: 1370/1307,
  41586. bottom: 20/1390
  41587. }
  41588. },
  41589. },
  41590. [
  41591. {
  41592. name: "Normal",
  41593. height: math.unit(3 + 6/12, "feet"),
  41594. default: true
  41595. },
  41596. ]
  41597. ))
  41598. characterMakers.push(() => makeCharacter(
  41599. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41600. {
  41601. front: {
  41602. height: math.unit(1148, "feet"),
  41603. weight: math.unit(34057, "lb"),
  41604. name: "Front",
  41605. image: {
  41606. source: "./media/characters/harthos/front.svg",
  41607. extra: 1391/1339,
  41608. bottom: 13/1404
  41609. }
  41610. },
  41611. },
  41612. [
  41613. {
  41614. name: "Macro",
  41615. height: math.unit(1148, "feet"),
  41616. default: true
  41617. },
  41618. ]
  41619. ))
  41620. characterMakers.push(() => makeCharacter(
  41621. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41622. {
  41623. front: {
  41624. height: math.unit(15, "feet"),
  41625. name: "Front",
  41626. image: {
  41627. source: "./media/characters/hypatia/front.svg",
  41628. extra: 1653/1591,
  41629. bottom: 79/1732
  41630. }
  41631. },
  41632. },
  41633. [
  41634. {
  41635. name: "Normal",
  41636. height: math.unit(15, "feet")
  41637. },
  41638. {
  41639. name: "Small",
  41640. height: math.unit(300, "feet")
  41641. },
  41642. {
  41643. name: "Macro",
  41644. height: math.unit(2500, "feet"),
  41645. default: true
  41646. },
  41647. {
  41648. name: "Mega Macro",
  41649. height: math.unit(1500, "miles")
  41650. },
  41651. {
  41652. name: "Giga Macro",
  41653. height: math.unit(1.5e6, "miles")
  41654. },
  41655. ]
  41656. ))
  41657. characterMakers.push(() => makeCharacter(
  41658. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41659. {
  41660. front: {
  41661. height: math.unit(6, "feet"),
  41662. weight: math.unit(200, "lb"),
  41663. name: "Front",
  41664. image: {
  41665. source: "./media/characters/wulver/front.svg",
  41666. extra: 1724/1632,
  41667. bottom: 130/1854
  41668. }
  41669. },
  41670. frontNsfw: {
  41671. height: math.unit(6, "feet"),
  41672. weight: math.unit(200, "lb"),
  41673. name: "Front (NSFW)",
  41674. image: {
  41675. source: "./media/characters/wulver/front-nsfw.svg",
  41676. extra: 1724/1632,
  41677. bottom: 130/1854
  41678. }
  41679. },
  41680. },
  41681. [
  41682. {
  41683. name: "Human-Sized",
  41684. height: math.unit(6, "feet")
  41685. },
  41686. {
  41687. name: "Normal",
  41688. height: math.unit(4, "meters"),
  41689. default: true
  41690. },
  41691. {
  41692. name: "Large",
  41693. height: math.unit(6, "m")
  41694. },
  41695. ]
  41696. ))
  41697. characterMakers.push(() => makeCharacter(
  41698. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41699. {
  41700. front: {
  41701. height: math.unit(7, "feet"),
  41702. name: "Front",
  41703. image: {
  41704. source: "./media/characters/maru/front.svg",
  41705. extra: 1595/1570,
  41706. bottom: 0/1595
  41707. }
  41708. },
  41709. },
  41710. [
  41711. {
  41712. name: "Normal",
  41713. height: math.unit(7, "feet"),
  41714. default: true
  41715. },
  41716. {
  41717. name: "Macro",
  41718. height: math.unit(700, "feet")
  41719. },
  41720. {
  41721. name: "Mega Macro",
  41722. height: math.unit(25, "miles")
  41723. },
  41724. ]
  41725. ))
  41726. characterMakers.push(() => makeCharacter(
  41727. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41728. {
  41729. front: {
  41730. height: math.unit(6, "feet"),
  41731. weight: math.unit(170, "lb"),
  41732. name: "Front",
  41733. image: {
  41734. source: "./media/characters/xenon/front.svg",
  41735. extra: 1376/1305,
  41736. bottom: 56/1432
  41737. }
  41738. },
  41739. back: {
  41740. height: math.unit(6, "feet"),
  41741. weight: math.unit(170, "lb"),
  41742. name: "Back",
  41743. image: {
  41744. source: "./media/characters/xenon/back.svg",
  41745. extra: 1328/1259,
  41746. bottom: 95/1423
  41747. }
  41748. },
  41749. maw: {
  41750. height: math.unit(0.52, "feet"),
  41751. name: "Maw",
  41752. image: {
  41753. source: "./media/characters/xenon/maw.svg"
  41754. }
  41755. },
  41756. handLeft: {
  41757. height: math.unit(0.82 * 169 / 153, "feet"),
  41758. name: "Hand (Left)",
  41759. image: {
  41760. source: "./media/characters/xenon/hand-left.svg"
  41761. }
  41762. },
  41763. handRight: {
  41764. height: math.unit(0.82, "feet"),
  41765. name: "Hand (Right)",
  41766. image: {
  41767. source: "./media/characters/xenon/hand-right.svg"
  41768. }
  41769. },
  41770. footLeft: {
  41771. height: math.unit(1.13, "feet"),
  41772. name: "Foot (Left)",
  41773. image: {
  41774. source: "./media/characters/xenon/foot-left.svg"
  41775. }
  41776. },
  41777. footRight: {
  41778. height: math.unit(1.13 * 194 / 196, "feet"),
  41779. name: "Foot (Right)",
  41780. image: {
  41781. source: "./media/characters/xenon/foot-right.svg"
  41782. }
  41783. },
  41784. },
  41785. [
  41786. {
  41787. name: "Micro",
  41788. height: math.unit(0.8, "inches")
  41789. },
  41790. {
  41791. name: "Normal",
  41792. height: math.unit(6, "feet")
  41793. },
  41794. {
  41795. name: "Macro",
  41796. height: math.unit(50, "feet"),
  41797. default: true
  41798. },
  41799. {
  41800. name: "Macro+",
  41801. height: math.unit(250, "feet")
  41802. },
  41803. {
  41804. name: "Megamacro",
  41805. height: math.unit(1500, "feet")
  41806. },
  41807. ]
  41808. ))
  41809. characterMakers.push(() => makeCharacter(
  41810. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41811. {
  41812. front: {
  41813. height: math.unit(7 + 5/12, "feet"),
  41814. name: "Front",
  41815. image: {
  41816. source: "./media/characters/zane/front.svg",
  41817. extra: 1260/1203,
  41818. bottom: 94/1354
  41819. }
  41820. },
  41821. back: {
  41822. height: math.unit(5.05, "feet"),
  41823. name: "Back",
  41824. image: {
  41825. source: "./media/characters/zane/back.svg",
  41826. extra: 893/829,
  41827. bottom: 30/923
  41828. }
  41829. },
  41830. werewolf: {
  41831. height: math.unit(11, "feet"),
  41832. name: "Werewolf",
  41833. image: {
  41834. source: "./media/characters/zane/werewolf.svg",
  41835. extra: 1383/1323,
  41836. bottom: 89/1472
  41837. }
  41838. },
  41839. foot: {
  41840. height: math.unit(1.46, "feet"),
  41841. name: "Foot",
  41842. image: {
  41843. source: "./media/characters/zane/foot.svg"
  41844. }
  41845. },
  41846. footFront: {
  41847. height: math.unit(0.784, "feet"),
  41848. name: "Foot (Front)",
  41849. image: {
  41850. source: "./media/characters/zane/foot-front.svg"
  41851. }
  41852. },
  41853. dick: {
  41854. height: math.unit(1.95, "feet"),
  41855. name: "Dick",
  41856. image: {
  41857. source: "./media/characters/zane/dick.svg"
  41858. }
  41859. },
  41860. dickWerewolf: {
  41861. height: math.unit(3.77, "feet"),
  41862. name: "Dick (Werewolf)",
  41863. image: {
  41864. source: "./media/characters/zane/dick.svg"
  41865. }
  41866. },
  41867. },
  41868. [
  41869. {
  41870. name: "Normal",
  41871. height: math.unit(7 + 5/12, "feet"),
  41872. default: true
  41873. },
  41874. ]
  41875. ))
  41876. characterMakers.push(() => makeCharacter(
  41877. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41878. {
  41879. front: {
  41880. height: math.unit(6 + 2/12, "feet"),
  41881. weight: math.unit(284, "lb"),
  41882. name: "Front",
  41883. image: {
  41884. source: "./media/characters/benni-desparque/front.svg",
  41885. extra: 1353/1126,
  41886. bottom: 69/1422
  41887. }
  41888. },
  41889. },
  41890. [
  41891. {
  41892. name: "Civilian",
  41893. height: math.unit(6 + 2/12, "feet")
  41894. },
  41895. {
  41896. name: "Normal",
  41897. height: math.unit(98, "feet"),
  41898. default: true
  41899. },
  41900. {
  41901. name: "Kaiju Fighter",
  41902. height: math.unit(268, "feet")
  41903. },
  41904. ]
  41905. ))
  41906. characterMakers.push(() => makeCharacter(
  41907. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41908. {
  41909. front: {
  41910. height: math.unit(5, "feet"),
  41911. weight: math.unit(105, "lb"),
  41912. name: "Front",
  41913. image: {
  41914. source: "./media/characters/maxine/front.svg",
  41915. extra: 1386/1250,
  41916. bottom: 71/1457
  41917. }
  41918. },
  41919. },
  41920. [
  41921. {
  41922. name: "Normal",
  41923. height: math.unit(5, "feet"),
  41924. default: true
  41925. },
  41926. ]
  41927. ))
  41928. characterMakers.push(() => makeCharacter(
  41929. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41930. {
  41931. front: {
  41932. height: math.unit(11 + 7/12, "feet"),
  41933. weight: math.unit(9576, "lb"),
  41934. name: "Front",
  41935. image: {
  41936. source: "./media/characters/scaly/front.svg",
  41937. extra: 888/867,
  41938. bottom: 36/924
  41939. }
  41940. },
  41941. },
  41942. [
  41943. {
  41944. name: "Normal",
  41945. height: math.unit(11 + 7/12, "feet"),
  41946. default: true
  41947. },
  41948. ]
  41949. ))
  41950. characterMakers.push(() => makeCharacter(
  41951. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41952. {
  41953. front: {
  41954. height: math.unit(6 + 3/12, "feet"),
  41955. name: "Front",
  41956. image: {
  41957. source: "./media/characters/saelria/front.svg",
  41958. extra: 1243/1138,
  41959. bottom: 46/1289
  41960. }
  41961. },
  41962. },
  41963. [
  41964. {
  41965. name: "Micro",
  41966. height: math.unit(6, "inches"),
  41967. },
  41968. {
  41969. name: "Normal",
  41970. height: math.unit(6 + 3/12, "feet"),
  41971. default: true
  41972. },
  41973. {
  41974. name: "Macro",
  41975. height: math.unit(25, "feet")
  41976. },
  41977. ]
  41978. ))
  41979. characterMakers.push(() => makeCharacter(
  41980. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41981. {
  41982. front: {
  41983. height: math.unit(80, "meters"),
  41984. weight: math.unit(7000, "tonnes"),
  41985. name: "Front",
  41986. image: {
  41987. source: "./media/characters/tef/front.svg",
  41988. extra: 2036/1991,
  41989. bottom: 54/2090
  41990. }
  41991. },
  41992. back: {
  41993. height: math.unit(80, "meters"),
  41994. weight: math.unit(7000, "tonnes"),
  41995. name: "Back",
  41996. image: {
  41997. source: "./media/characters/tef/back.svg",
  41998. extra: 2036/1991,
  41999. bottom: 54/2090
  42000. }
  42001. },
  42002. },
  42003. [
  42004. {
  42005. name: "Macro",
  42006. height: math.unit(80, "meters"),
  42007. default: true
  42008. },
  42009. ]
  42010. ))
  42011. characterMakers.push(() => makeCharacter(
  42012. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42013. {
  42014. front: {
  42015. height: math.unit(13, "feet"),
  42016. weight: math.unit(6, "tons"),
  42017. name: "Front",
  42018. image: {
  42019. source: "./media/characters/rover/front.svg",
  42020. extra: 1233/1156,
  42021. bottom: 50/1283
  42022. }
  42023. },
  42024. back: {
  42025. height: math.unit(13, "feet"),
  42026. weight: math.unit(6, "tons"),
  42027. name: "Back",
  42028. image: {
  42029. source: "./media/characters/rover/back.svg",
  42030. extra: 1327/1258,
  42031. bottom: 39/1366
  42032. }
  42033. },
  42034. },
  42035. [
  42036. {
  42037. name: "Normal",
  42038. height: math.unit(13, "feet"),
  42039. default: true
  42040. },
  42041. {
  42042. name: "Macro",
  42043. height: math.unit(1300, "feet")
  42044. },
  42045. {
  42046. name: "Megamacro",
  42047. height: math.unit(1300, "miles")
  42048. },
  42049. {
  42050. name: "Gigamacro",
  42051. height: math.unit(1300000, "miles")
  42052. },
  42053. ]
  42054. ))
  42055. characterMakers.push(() => makeCharacter(
  42056. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42057. {
  42058. front: {
  42059. height: math.unit(6, "feet"),
  42060. weight: math.unit(150, "lb"),
  42061. name: "Front",
  42062. image: {
  42063. source: "./media/characters/ariz/front.svg",
  42064. extra: 1401/1346,
  42065. bottom: 5/1406
  42066. }
  42067. },
  42068. },
  42069. [
  42070. {
  42071. name: "Normal",
  42072. height: math.unit(10, "feet"),
  42073. default: true
  42074. },
  42075. ]
  42076. ))
  42077. characterMakers.push(() => makeCharacter(
  42078. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42079. {
  42080. front: {
  42081. height: math.unit(6, "feet"),
  42082. weight: math.unit(140, "lb"),
  42083. name: "Front",
  42084. image: {
  42085. source: "./media/characters/sigrun/front.svg",
  42086. extra: 1418/1359,
  42087. bottom: 27/1445
  42088. }
  42089. },
  42090. },
  42091. [
  42092. {
  42093. name: "Macro",
  42094. height: math.unit(35, "feet"),
  42095. default: true
  42096. },
  42097. ]
  42098. ))
  42099. characterMakers.push(() => makeCharacter(
  42100. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42101. {
  42102. front: {
  42103. height: math.unit(6, "feet"),
  42104. weight: math.unit(150, "lb"),
  42105. name: "Front",
  42106. image: {
  42107. source: "./media/characters/numin/front.svg",
  42108. extra: 1433/1388,
  42109. bottom: 12/1445
  42110. }
  42111. },
  42112. },
  42113. [
  42114. {
  42115. name: "Macro",
  42116. height: math.unit(21.5, "km"),
  42117. default: true
  42118. },
  42119. ]
  42120. ))
  42121. characterMakers.push(() => makeCharacter(
  42122. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42123. {
  42124. front: {
  42125. height: math.unit(6, "feet"),
  42126. weight: math.unit(463, "lb"),
  42127. name: "Front",
  42128. image: {
  42129. source: "./media/characters/melwa/front.svg",
  42130. extra: 1307/1248,
  42131. bottom: 93/1400
  42132. }
  42133. },
  42134. },
  42135. [
  42136. {
  42137. name: "Macro",
  42138. height: math.unit(50, "meters"),
  42139. default: true
  42140. },
  42141. ]
  42142. ))
  42143. characterMakers.push(() => makeCharacter(
  42144. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42145. {
  42146. front: {
  42147. height: math.unit(325, "feet"),
  42148. name: "Front",
  42149. image: {
  42150. source: "./media/characters/zorkaiju/front.svg",
  42151. extra: 1955/1814,
  42152. bottom: 40/1995
  42153. }
  42154. },
  42155. frontExtended: {
  42156. height: math.unit(325, "feet"),
  42157. name: "Front (Extended)",
  42158. image: {
  42159. source: "./media/characters/zorkaiju/front-extended.svg",
  42160. extra: 1955/1814,
  42161. bottom: 40/1995
  42162. }
  42163. },
  42164. side: {
  42165. height: math.unit(325, "feet"),
  42166. name: "Side",
  42167. image: {
  42168. source: "./media/characters/zorkaiju/side.svg",
  42169. extra: 1495/1396,
  42170. bottom: 17/1512
  42171. }
  42172. },
  42173. sideExtended: {
  42174. height: math.unit(325, "feet"),
  42175. name: "Side (Extended)",
  42176. image: {
  42177. source: "./media/characters/zorkaiju/side-extended.svg",
  42178. extra: 1495/1396,
  42179. bottom: 17/1512
  42180. }
  42181. },
  42182. back: {
  42183. height: math.unit(325, "feet"),
  42184. name: "Back",
  42185. image: {
  42186. source: "./media/characters/zorkaiju/back.svg",
  42187. extra: 1959/1821,
  42188. bottom: 31/1990
  42189. }
  42190. },
  42191. backExtended: {
  42192. height: math.unit(325, "feet"),
  42193. name: "Back (Extended)",
  42194. image: {
  42195. source: "./media/characters/zorkaiju/back-extended.svg",
  42196. extra: 1959/1821,
  42197. bottom: 31/1990
  42198. }
  42199. },
  42200. hand: {
  42201. height: math.unit(58.4, "feet"),
  42202. name: "Hand",
  42203. image: {
  42204. source: "./media/characters/zorkaiju/hand.svg"
  42205. }
  42206. },
  42207. handExtended: {
  42208. height: math.unit(61.4, "feet"),
  42209. name: "Hand (Extended)",
  42210. image: {
  42211. source: "./media/characters/zorkaiju/hand-extended.svg"
  42212. }
  42213. },
  42214. foot: {
  42215. height: math.unit(95, "feet"),
  42216. name: "Foot",
  42217. image: {
  42218. source: "./media/characters/zorkaiju/foot.svg"
  42219. }
  42220. },
  42221. leftArm: {
  42222. height: math.unit(59, "feet"),
  42223. name: "Left Arm",
  42224. image: {
  42225. source: "./media/characters/zorkaiju/left-arm.svg"
  42226. }
  42227. },
  42228. rightArm: {
  42229. height: math.unit(59, "feet"),
  42230. name: "Right Arm",
  42231. image: {
  42232. source: "./media/characters/zorkaiju/right-arm.svg"
  42233. }
  42234. },
  42235. leftArmExtended: {
  42236. height: math.unit(59 * 1.033546, "feet"),
  42237. name: "Left Arm (Extended)",
  42238. image: {
  42239. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42240. }
  42241. },
  42242. rightArmExtended: {
  42243. height: math.unit(59 * 1.0496, "feet"),
  42244. name: "Right Arm (Extended)",
  42245. image: {
  42246. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42247. }
  42248. },
  42249. tail: {
  42250. height: math.unit(104, "feet"),
  42251. name: "Tail",
  42252. image: {
  42253. source: "./media/characters/zorkaiju/tail.svg"
  42254. }
  42255. },
  42256. tailExtended: {
  42257. height: math.unit(104, "feet"),
  42258. name: "Tail (Extended)",
  42259. image: {
  42260. source: "./media/characters/zorkaiju/tail-extended.svg"
  42261. }
  42262. },
  42263. tailBottom: {
  42264. height: math.unit(104, "feet"),
  42265. name: "Tail Bottom",
  42266. image: {
  42267. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42268. }
  42269. },
  42270. crystal: {
  42271. height: math.unit(27.54, "feet"),
  42272. name: "Crystal",
  42273. image: {
  42274. source: "./media/characters/zorkaiju/crystal.svg"
  42275. }
  42276. },
  42277. },
  42278. [
  42279. {
  42280. name: "Kaiju",
  42281. height: math.unit(325, "feet"),
  42282. default: true
  42283. },
  42284. ]
  42285. ))
  42286. characterMakers.push(() => makeCharacter(
  42287. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42288. {
  42289. front: {
  42290. height: math.unit(6 + 1/12, "feet"),
  42291. weight: math.unit(115, "lb"),
  42292. name: "Front",
  42293. image: {
  42294. source: "./media/characters/bailey-belfry/front.svg",
  42295. extra: 1240/1121,
  42296. bottom: 101/1341
  42297. }
  42298. },
  42299. },
  42300. [
  42301. {
  42302. name: "Normal",
  42303. height: math.unit(6 + 1/12, "feet"),
  42304. default: true
  42305. },
  42306. ]
  42307. ))
  42308. characterMakers.push(() => makeCharacter(
  42309. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42310. {
  42311. side: {
  42312. height: math.unit(4, "meters"),
  42313. weight: math.unit(250, "kg"),
  42314. name: "Side",
  42315. image: {
  42316. source: "./media/characters/blacky/side.svg",
  42317. extra: 1027/919,
  42318. bottom: 43/1070
  42319. }
  42320. },
  42321. maw: {
  42322. height: math.unit(1, "meters"),
  42323. name: "Maw",
  42324. image: {
  42325. source: "./media/characters/blacky/maw.svg"
  42326. }
  42327. },
  42328. paw: {
  42329. height: math.unit(1, "meters"),
  42330. name: "Paw",
  42331. image: {
  42332. source: "./media/characters/blacky/paw.svg"
  42333. }
  42334. },
  42335. },
  42336. [
  42337. {
  42338. name: "Normal",
  42339. height: math.unit(4, "meters"),
  42340. default: true
  42341. },
  42342. ]
  42343. ))
  42344. characterMakers.push(() => makeCharacter(
  42345. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42346. {
  42347. front: {
  42348. height: math.unit(170, "cm"),
  42349. weight: math.unit(66, "kg"),
  42350. name: "Front",
  42351. image: {
  42352. source: "./media/characters/thux-ei/front.svg",
  42353. extra: 1109/1011,
  42354. bottom: 8/1117
  42355. }
  42356. },
  42357. },
  42358. [
  42359. {
  42360. name: "Normal",
  42361. height: math.unit(170, "cm"),
  42362. default: true
  42363. },
  42364. ]
  42365. ))
  42366. characterMakers.push(() => makeCharacter(
  42367. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42368. {
  42369. front: {
  42370. height: math.unit(5, "feet"),
  42371. weight: math.unit(120, "lb"),
  42372. name: "Front",
  42373. image: {
  42374. source: "./media/characters/roxanne-voltaire/front.svg",
  42375. extra: 1901/1779,
  42376. bottom: 53/1954
  42377. }
  42378. },
  42379. },
  42380. [
  42381. {
  42382. name: "Normal",
  42383. height: math.unit(5, "feet"),
  42384. default: true
  42385. },
  42386. {
  42387. name: "Giant",
  42388. height: math.unit(50, "feet")
  42389. },
  42390. {
  42391. name: "Titan",
  42392. height: math.unit(500, "feet")
  42393. },
  42394. {
  42395. name: "Macro",
  42396. height: math.unit(5000, "feet")
  42397. },
  42398. {
  42399. name: "Megamacro",
  42400. height: math.unit(50000, "feet")
  42401. },
  42402. {
  42403. name: "Gigamacro",
  42404. height: math.unit(500000, "feet")
  42405. },
  42406. {
  42407. name: "Teramacro",
  42408. height: math.unit(5e6, "feet")
  42409. },
  42410. ]
  42411. ))
  42412. characterMakers.push(() => makeCharacter(
  42413. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42414. {
  42415. front: {
  42416. height: math.unit(6 + 2/12, "feet"),
  42417. name: "Front",
  42418. image: {
  42419. source: "./media/characters/squeaks/front.svg",
  42420. extra: 1823/1768,
  42421. bottom: 138/1961
  42422. }
  42423. },
  42424. },
  42425. [
  42426. {
  42427. name: "Micro",
  42428. height: math.unit(0.5, "inches")
  42429. },
  42430. {
  42431. name: "Normal",
  42432. height: math.unit(6 + 2/12, "feet"),
  42433. default: true
  42434. },
  42435. {
  42436. name: "Macro",
  42437. height: math.unit(600, "feet")
  42438. },
  42439. ]
  42440. ))
  42441. characterMakers.push(() => makeCharacter(
  42442. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42443. {
  42444. front: {
  42445. height: math.unit(1.72, "meters"),
  42446. name: "Front",
  42447. image: {
  42448. source: "./media/characters/archinger/front.svg",
  42449. extra: 1861/1675,
  42450. bottom: 125/1986
  42451. }
  42452. },
  42453. back: {
  42454. height: math.unit(1.72, "meters"),
  42455. name: "Back",
  42456. image: {
  42457. source: "./media/characters/archinger/back.svg",
  42458. extra: 1844/1701,
  42459. bottom: 104/1948
  42460. }
  42461. },
  42462. cock: {
  42463. height: math.unit(0.59, "feet"),
  42464. name: "Cock",
  42465. image: {
  42466. source: "./media/characters/archinger/cock.svg"
  42467. }
  42468. },
  42469. },
  42470. [
  42471. {
  42472. name: "Normal",
  42473. height: math.unit(1.72, "meters"),
  42474. default: true
  42475. },
  42476. {
  42477. name: "Macro",
  42478. height: math.unit(84, "meters")
  42479. },
  42480. {
  42481. name: "Macro+",
  42482. height: math.unit(112, "meters")
  42483. },
  42484. {
  42485. name: "Macro++",
  42486. height: math.unit(960, "meters")
  42487. },
  42488. {
  42489. name: "Macro+++",
  42490. height: math.unit(4, "km")
  42491. },
  42492. {
  42493. name: "Macro++++",
  42494. height: math.unit(48, "km")
  42495. },
  42496. {
  42497. name: "Macro+++++",
  42498. height: math.unit(4500, "km")
  42499. },
  42500. ]
  42501. ))
  42502. characterMakers.push(() => makeCharacter(
  42503. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42504. {
  42505. front: {
  42506. height: math.unit(5 + 5/12, "feet"),
  42507. name: "Front",
  42508. image: {
  42509. source: "./media/characters/alsnapz/front.svg",
  42510. extra: 1157/1065,
  42511. bottom: 42/1199
  42512. }
  42513. },
  42514. },
  42515. [
  42516. {
  42517. name: "Normal",
  42518. height: math.unit(5 + 5/12, "feet"),
  42519. default: true
  42520. },
  42521. ]
  42522. ))
  42523. characterMakers.push(() => makeCharacter(
  42524. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42525. {
  42526. side: {
  42527. height: math.unit(3.2, "earths"),
  42528. name: "Side",
  42529. image: {
  42530. source: "./media/characters/mag/side.svg",
  42531. extra: 1331/1008,
  42532. bottom: 52/1383
  42533. }
  42534. },
  42535. wing: {
  42536. height: math.unit(1.94, "earths"),
  42537. name: "Wing",
  42538. image: {
  42539. source: "./media/characters/mag/wing.svg"
  42540. }
  42541. },
  42542. dick: {
  42543. height: math.unit(1.8, "earths"),
  42544. name: "Dick",
  42545. image: {
  42546. source: "./media/characters/mag/dick.svg"
  42547. }
  42548. },
  42549. ass: {
  42550. height: math.unit(1.33, "earths"),
  42551. name: "Ass",
  42552. image: {
  42553. source: "./media/characters/mag/ass.svg"
  42554. }
  42555. },
  42556. head: {
  42557. height: math.unit(1.1, "earths"),
  42558. name: "Head",
  42559. image: {
  42560. source: "./media/characters/mag/head.svg"
  42561. }
  42562. },
  42563. maw: {
  42564. height: math.unit(1.62, "earths"),
  42565. name: "Maw",
  42566. image: {
  42567. source: "./media/characters/mag/maw.svg"
  42568. }
  42569. },
  42570. },
  42571. [
  42572. {
  42573. name: "Small",
  42574. height: math.unit(162, "feet")
  42575. },
  42576. {
  42577. name: "Normal",
  42578. height: math.unit(3.2, "earths"),
  42579. default: true
  42580. },
  42581. ]
  42582. ))
  42583. characterMakers.push(() => makeCharacter(
  42584. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42585. {
  42586. front: {
  42587. height: math.unit(512, "feet"),
  42588. weight: math.unit(63509, "tonnes"),
  42589. name: "Front",
  42590. image: {
  42591. source: "./media/characters/vorrel-harroc/front.svg",
  42592. extra: 1075/1063,
  42593. bottom: 62/1137
  42594. }
  42595. },
  42596. },
  42597. [
  42598. {
  42599. name: "Normal",
  42600. height: math.unit(10, "feet")
  42601. },
  42602. {
  42603. name: "Macro",
  42604. height: math.unit(512, "feet"),
  42605. default: true
  42606. },
  42607. {
  42608. name: "Megamacro",
  42609. height: math.unit(256, "miles")
  42610. },
  42611. {
  42612. name: "Gigamacro",
  42613. height: math.unit(4096, "miles")
  42614. },
  42615. ]
  42616. ))
  42617. characterMakers.push(() => makeCharacter(
  42618. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42619. {
  42620. side: {
  42621. height: math.unit(50, "feet"),
  42622. name: "Side",
  42623. image: {
  42624. source: "./media/characters/froimar/side.svg",
  42625. extra: 855/638,
  42626. bottom: 99/954
  42627. }
  42628. },
  42629. },
  42630. [
  42631. {
  42632. name: "Macro",
  42633. height: math.unit(50, "feet"),
  42634. default: true
  42635. },
  42636. ]
  42637. ))
  42638. characterMakers.push(() => makeCharacter(
  42639. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42640. {
  42641. front: {
  42642. height: math.unit(210, "miles"),
  42643. name: "Front",
  42644. image: {
  42645. source: "./media/characters/timothy/front.svg",
  42646. extra: 1007/943,
  42647. bottom: 62/1069
  42648. }
  42649. },
  42650. frontSkirt: {
  42651. height: math.unit(210, "miles"),
  42652. name: "Front (Skirt)",
  42653. image: {
  42654. source: "./media/characters/timothy/front-skirt.svg",
  42655. extra: 1007/943,
  42656. bottom: 62/1069
  42657. }
  42658. },
  42659. frontCoat: {
  42660. height: math.unit(210, "miles"),
  42661. name: "Front (Coat)",
  42662. image: {
  42663. source: "./media/characters/timothy/front-coat.svg",
  42664. extra: 1007/943,
  42665. bottom: 62/1069
  42666. }
  42667. },
  42668. },
  42669. [
  42670. {
  42671. name: "Macro",
  42672. height: math.unit(210, "miles"),
  42673. default: true
  42674. },
  42675. {
  42676. name: "Megamacro",
  42677. height: math.unit(210000, "miles")
  42678. },
  42679. ]
  42680. ))
  42681. characterMakers.push(() => makeCharacter(
  42682. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42683. {
  42684. front: {
  42685. height: math.unit(188, "feet"),
  42686. name: "Front",
  42687. image: {
  42688. source: "./media/characters/pyotr/front.svg",
  42689. extra: 1912/1826,
  42690. bottom: 18/1930
  42691. }
  42692. },
  42693. },
  42694. [
  42695. {
  42696. name: "Macro",
  42697. height: math.unit(188, "feet"),
  42698. default: true
  42699. },
  42700. {
  42701. name: "Megamacro",
  42702. height: math.unit(8, "miles")
  42703. },
  42704. ]
  42705. ))
  42706. characterMakers.push(() => makeCharacter(
  42707. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42708. {
  42709. side: {
  42710. height: math.unit(10, "feet"),
  42711. weight: math.unit(4500, "lb"),
  42712. name: "Side",
  42713. image: {
  42714. source: "./media/characters/ackart/side.svg",
  42715. extra: 1776/1668,
  42716. bottom: 116/1892
  42717. }
  42718. },
  42719. },
  42720. [
  42721. {
  42722. name: "Normal",
  42723. height: math.unit(10, "feet"),
  42724. default: true
  42725. },
  42726. ]
  42727. ))
  42728. characterMakers.push(() => makeCharacter(
  42729. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42730. {
  42731. side: {
  42732. height: math.unit(21, "feet"),
  42733. name: "Side",
  42734. image: {
  42735. source: "./media/characters/nolow/side.svg",
  42736. extra: 1484/1434,
  42737. bottom: 85/1569
  42738. }
  42739. },
  42740. sideErect: {
  42741. height: math.unit(21, "feet"),
  42742. name: "Side-erect",
  42743. image: {
  42744. source: "./media/characters/nolow/side-erect.svg",
  42745. extra: 1484/1434,
  42746. bottom: 85/1569
  42747. }
  42748. },
  42749. },
  42750. [
  42751. {
  42752. name: "Regular",
  42753. height: math.unit(12, "feet")
  42754. },
  42755. {
  42756. name: "Big Chee",
  42757. height: math.unit(21, "feet"),
  42758. default: true
  42759. },
  42760. ]
  42761. ))
  42762. characterMakers.push(() => makeCharacter(
  42763. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42764. {
  42765. front: {
  42766. height: math.unit(7, "feet"),
  42767. weight: math.unit(250, "lb"),
  42768. name: "Front",
  42769. image: {
  42770. source: "./media/characters/nines/front.svg",
  42771. extra: 1741/1607,
  42772. bottom: 41/1782
  42773. }
  42774. },
  42775. side: {
  42776. height: math.unit(7, "feet"),
  42777. weight: math.unit(250, "lb"),
  42778. name: "Side",
  42779. image: {
  42780. source: "./media/characters/nines/side.svg",
  42781. extra: 1854/1735,
  42782. bottom: 93/1947
  42783. }
  42784. },
  42785. back: {
  42786. height: math.unit(7, "feet"),
  42787. weight: math.unit(250, "lb"),
  42788. name: "Back",
  42789. image: {
  42790. source: "./media/characters/nines/back.svg",
  42791. extra: 1748/1615,
  42792. bottom: 20/1768
  42793. }
  42794. },
  42795. },
  42796. [
  42797. {
  42798. name: "Megamacro",
  42799. height: math.unit(99, "km"),
  42800. default: true
  42801. },
  42802. ]
  42803. ))
  42804. characterMakers.push(() => makeCharacter(
  42805. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42806. {
  42807. front: {
  42808. height: math.unit(5 + 10/12, "feet"),
  42809. weight: math.unit(210, "lb"),
  42810. name: "Front",
  42811. image: {
  42812. source: "./media/characters/zenith/front.svg",
  42813. extra: 1531/1452,
  42814. bottom: 198/1729
  42815. }
  42816. },
  42817. back: {
  42818. height: math.unit(5 + 10/12, "feet"),
  42819. weight: math.unit(210, "lb"),
  42820. name: "Back",
  42821. image: {
  42822. source: "./media/characters/zenith/back.svg",
  42823. extra: 1571/1487,
  42824. bottom: 75/1646
  42825. }
  42826. },
  42827. },
  42828. [
  42829. {
  42830. name: "Normal",
  42831. height: math.unit(5 + 10/12, "feet"),
  42832. default: true
  42833. }
  42834. ]
  42835. ))
  42836. characterMakers.push(() => makeCharacter(
  42837. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42838. {
  42839. front: {
  42840. height: math.unit(4, "feet"),
  42841. weight: math.unit(60, "lb"),
  42842. name: "Front",
  42843. image: {
  42844. source: "./media/characters/jasper/front.svg",
  42845. extra: 1450/1379,
  42846. bottom: 19/1469
  42847. }
  42848. },
  42849. },
  42850. [
  42851. {
  42852. name: "Normal",
  42853. height: math.unit(4, "feet"),
  42854. default: true
  42855. },
  42856. ]
  42857. ))
  42858. characterMakers.push(() => makeCharacter(
  42859. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  42860. {
  42861. front: {
  42862. height: math.unit(6 + 5/12, "feet"),
  42863. weight: math.unit(290, "lb"),
  42864. name: "Front",
  42865. image: {
  42866. source: "./media/characters/tiberius-thyben/front.svg",
  42867. extra: 757/739,
  42868. bottom: 39/796
  42869. }
  42870. },
  42871. },
  42872. [
  42873. {
  42874. name: "Micro",
  42875. height: math.unit(1.5, "inches")
  42876. },
  42877. {
  42878. name: "Normal",
  42879. height: math.unit(6 + 5/12, "feet"),
  42880. default: true
  42881. },
  42882. {
  42883. name: "Macro",
  42884. height: math.unit(300, "feet")
  42885. },
  42886. ]
  42887. ))
  42888. characterMakers.push(() => makeCharacter(
  42889. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42890. {
  42891. front: {
  42892. height: math.unit(5 + 6/12, "feet"),
  42893. weight: math.unit(60, "kg"),
  42894. name: "Front",
  42895. image: {
  42896. source: "./media/characters/sabre/front.svg",
  42897. extra: 738/671,
  42898. bottom: 27/765
  42899. }
  42900. },
  42901. },
  42902. [
  42903. {
  42904. name: "Teeny",
  42905. height: math.unit(2, "inches")
  42906. },
  42907. {
  42908. name: "Smol",
  42909. height: math.unit(8, "inches")
  42910. },
  42911. {
  42912. name: "Normal",
  42913. height: math.unit(5 + 6/12, "feet"),
  42914. default: true
  42915. },
  42916. {
  42917. name: "Mini-Macro",
  42918. height: math.unit(15, "feet")
  42919. },
  42920. {
  42921. name: "Macro",
  42922. height: math.unit(50, "feet")
  42923. },
  42924. ]
  42925. ))
  42926. characterMakers.push(() => makeCharacter(
  42927. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42928. {
  42929. front: {
  42930. height: math.unit(6 + 4/12, "feet"),
  42931. weight: math.unit(170, "lb"),
  42932. name: "Front",
  42933. image: {
  42934. source: "./media/characters/charlie/front.svg",
  42935. extra: 1348/1228,
  42936. bottom: 15/1363
  42937. }
  42938. },
  42939. },
  42940. [
  42941. {
  42942. name: "Macro",
  42943. height: math.unit(1700, "meters"),
  42944. default: true
  42945. },
  42946. {
  42947. name: "MegaMacro",
  42948. height: math.unit(20400, "meters")
  42949. },
  42950. ]
  42951. ))
  42952. characterMakers.push(() => makeCharacter(
  42953. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42954. {
  42955. front: {
  42956. height: math.unit(6 + 3/12, "feet"),
  42957. weight: math.unit(185, "lb"),
  42958. name: "Front",
  42959. image: {
  42960. source: "./media/characters/susan-grant/front.svg",
  42961. extra: 1351/1327,
  42962. bottom: 26/1377
  42963. }
  42964. },
  42965. },
  42966. [
  42967. {
  42968. name: "Normal",
  42969. height: math.unit(6 + 3/12, "feet"),
  42970. default: true
  42971. },
  42972. {
  42973. name: "Macro",
  42974. height: math.unit(225, "feet")
  42975. },
  42976. {
  42977. name: "Macro+",
  42978. height: math.unit(900, "feet")
  42979. },
  42980. {
  42981. name: "MegaMacro",
  42982. height: math.unit(14400, "feet")
  42983. },
  42984. ]
  42985. ))
  42986. characterMakers.push(() => makeCharacter(
  42987. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42988. {
  42989. front: {
  42990. height: math.unit(5 + 4/12, "feet"),
  42991. weight: math.unit(110, "lb"),
  42992. name: "Front",
  42993. image: {
  42994. source: "./media/characters/axel-isanov/front.svg",
  42995. extra: 1096/1065,
  42996. bottom: 13/1109
  42997. }
  42998. },
  42999. },
  43000. [
  43001. {
  43002. name: "Normal",
  43003. height: math.unit(5 + 4/12, "feet"),
  43004. default: true
  43005. },
  43006. ]
  43007. ))
  43008. characterMakers.push(() => makeCharacter(
  43009. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43010. {
  43011. front: {
  43012. height: math.unit(9, "feet"),
  43013. weight: math.unit(467, "lb"),
  43014. name: "Front",
  43015. image: {
  43016. source: "./media/characters/necahual/front.svg",
  43017. extra: 920/873,
  43018. bottom: 26/946
  43019. }
  43020. },
  43021. back: {
  43022. height: math.unit(9, "feet"),
  43023. weight: math.unit(467, "lb"),
  43024. name: "Back",
  43025. image: {
  43026. source: "./media/characters/necahual/back.svg",
  43027. extra: 930/884,
  43028. bottom: 16/946
  43029. }
  43030. },
  43031. frontUnderwear: {
  43032. height: math.unit(9, "feet"),
  43033. weight: math.unit(467, "lb"),
  43034. name: "Front (Underwear)",
  43035. image: {
  43036. source: "./media/characters/necahual/front-underwear.svg",
  43037. extra: 920/873,
  43038. bottom: 26/946
  43039. }
  43040. },
  43041. frontDressed: {
  43042. height: math.unit(9, "feet"),
  43043. weight: math.unit(467, "lb"),
  43044. name: "Front (Dressed)",
  43045. image: {
  43046. source: "./media/characters/necahual/front-dressed.svg",
  43047. extra: 920/873,
  43048. bottom: 26/946
  43049. }
  43050. },
  43051. },
  43052. [
  43053. {
  43054. name: "Comprsesed",
  43055. height: math.unit(9, "feet")
  43056. },
  43057. {
  43058. name: "Natural",
  43059. height: math.unit(15, "feet"),
  43060. default: true
  43061. },
  43062. {
  43063. name: "Boosted",
  43064. height: math.unit(50, "feet")
  43065. },
  43066. {
  43067. name: "Boosted+",
  43068. height: math.unit(150, "feet")
  43069. },
  43070. {
  43071. name: "Max",
  43072. height: math.unit(500, "feet")
  43073. },
  43074. ]
  43075. ))
  43076. characterMakers.push(() => makeCharacter(
  43077. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43078. {
  43079. front: {
  43080. height: math.unit(22 + 1/12, "feet"),
  43081. weight: math.unit(3200, "lb"),
  43082. name: "Front",
  43083. image: {
  43084. source: "./media/characters/theo-acacia/front.svg",
  43085. extra: 1796/1741,
  43086. bottom: 83/1879
  43087. }
  43088. },
  43089. frontUnderwear: {
  43090. height: math.unit(22 + 1/12, "feet"),
  43091. weight: math.unit(3200, "lb"),
  43092. name: "Front (Underwear)",
  43093. image: {
  43094. source: "./media/characters/theo-acacia/front-underwear.svg",
  43095. extra: 1796/1741,
  43096. bottom: 83/1879
  43097. }
  43098. },
  43099. frontNude: {
  43100. height: math.unit(22 + 1/12, "feet"),
  43101. weight: math.unit(3200, "lb"),
  43102. name: "Front (Nude)",
  43103. image: {
  43104. source: "./media/characters/theo-acacia/front-nude.svg",
  43105. extra: 1796/1741,
  43106. bottom: 83/1879
  43107. }
  43108. },
  43109. },
  43110. [
  43111. {
  43112. name: "Normal",
  43113. height: math.unit(22 + 1/12, "feet"),
  43114. default: true
  43115. },
  43116. ]
  43117. ))
  43118. characterMakers.push(() => makeCharacter(
  43119. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43120. {
  43121. front: {
  43122. height: math.unit(20, "feet"),
  43123. name: "Front",
  43124. image: {
  43125. source: "./media/characters/astra/front.svg",
  43126. extra: 1850/1714,
  43127. bottom: 106/1956
  43128. }
  43129. },
  43130. frontUndressed: {
  43131. height: math.unit(20, "feet"),
  43132. name: "Front (Undressed)",
  43133. image: {
  43134. source: "./media/characters/astra/front-undressed.svg",
  43135. extra: 1926/1749,
  43136. bottom: 0/1926
  43137. }
  43138. },
  43139. hand: {
  43140. height: math.unit(1.53, "feet"),
  43141. name: "Hand",
  43142. image: {
  43143. source: "./media/characters/astra/hand.svg"
  43144. }
  43145. },
  43146. paw: {
  43147. height: math.unit(1.53, "feet"),
  43148. name: "Paw",
  43149. image: {
  43150. source: "./media/characters/astra/paw.svg"
  43151. }
  43152. },
  43153. },
  43154. [
  43155. {
  43156. name: "Smallest",
  43157. height: math.unit(20, "feet")
  43158. },
  43159. {
  43160. name: "Normal",
  43161. height: math.unit(1e9, "miles"),
  43162. default: true
  43163. },
  43164. {
  43165. name: "Larger",
  43166. height: math.unit(5, "multiverses")
  43167. },
  43168. {
  43169. name: "Largest",
  43170. height: math.unit(1e9, "multiverses")
  43171. },
  43172. ]
  43173. ))
  43174. characterMakers.push(() => makeCharacter(
  43175. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43176. {
  43177. front: {
  43178. height: math.unit(8, "feet"),
  43179. name: "Front",
  43180. image: {
  43181. source: "./media/characters/breanna/front.svg",
  43182. extra: 1912/1632,
  43183. bottom: 33/1945
  43184. }
  43185. },
  43186. },
  43187. [
  43188. {
  43189. name: "Smallest",
  43190. height: math.unit(8, "feet")
  43191. },
  43192. {
  43193. name: "Normal",
  43194. height: math.unit(1, "mile"),
  43195. default: true
  43196. },
  43197. {
  43198. name: "Maximum",
  43199. height: math.unit(1500000000000, "lightyears")
  43200. },
  43201. ]
  43202. ))
  43203. characterMakers.push(() => makeCharacter(
  43204. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43205. {
  43206. front: {
  43207. height: math.unit(5 + 11/12, "feet"),
  43208. weight: math.unit(155, "lb"),
  43209. name: "Front",
  43210. image: {
  43211. source: "./media/characters/cai/front.svg",
  43212. extra: 1823/1702,
  43213. bottom: 32/1855
  43214. }
  43215. },
  43216. back: {
  43217. height: math.unit(5 + 11/12, "feet"),
  43218. weight: math.unit(155, "lb"),
  43219. name: "Back",
  43220. image: {
  43221. source: "./media/characters/cai/back.svg",
  43222. extra: 1809/1708,
  43223. bottom: 31/1840
  43224. }
  43225. },
  43226. },
  43227. [
  43228. {
  43229. name: "Normal",
  43230. height: math.unit(5 + 11/12, "feet"),
  43231. default: true
  43232. },
  43233. {
  43234. name: "Big",
  43235. height: math.unit(15, "feet")
  43236. },
  43237. {
  43238. name: "Macro",
  43239. height: math.unit(200, "feet")
  43240. },
  43241. ]
  43242. ))
  43243. characterMakers.push(() => makeCharacter(
  43244. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43245. {
  43246. front: {
  43247. height: math.unit(5 + 6/12, "feet"),
  43248. weight: math.unit(160, "lb"),
  43249. name: "Front",
  43250. image: {
  43251. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43252. extra: 1227/1174,
  43253. bottom: 37/1264
  43254. }
  43255. },
  43256. },
  43257. [
  43258. {
  43259. name: "Macro",
  43260. height: math.unit(444, "meters"),
  43261. default: true
  43262. },
  43263. ]
  43264. ))
  43265. characterMakers.push(() => makeCharacter(
  43266. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43267. {
  43268. front: {
  43269. height: math.unit(18 + 7/12, "feet"),
  43270. name: "Front",
  43271. image: {
  43272. source: "./media/characters/rex/front.svg",
  43273. extra: 1941/1807,
  43274. bottom: 66/2007
  43275. }
  43276. },
  43277. back: {
  43278. height: math.unit(18 + 7/12, "feet"),
  43279. name: "Back",
  43280. image: {
  43281. source: "./media/characters/rex/back.svg",
  43282. extra: 1937/1822,
  43283. bottom: 42/1979
  43284. }
  43285. },
  43286. boot: {
  43287. height: math.unit(3.45, "feet"),
  43288. name: "Boot",
  43289. image: {
  43290. source: "./media/characters/rex/boot.svg"
  43291. }
  43292. },
  43293. paw: {
  43294. height: math.unit(4.17, "feet"),
  43295. name: "Paw",
  43296. image: {
  43297. source: "./media/characters/rex/paw.svg"
  43298. }
  43299. },
  43300. head: {
  43301. height: math.unit(6.728, "feet"),
  43302. name: "Head",
  43303. image: {
  43304. source: "./media/characters/rex/head.svg"
  43305. }
  43306. },
  43307. },
  43308. [
  43309. {
  43310. name: "Nano",
  43311. height: math.unit(18 + 7/12, "feet")
  43312. },
  43313. {
  43314. name: "Micro",
  43315. height: math.unit(1.5, "megameters")
  43316. },
  43317. {
  43318. name: "Normal",
  43319. height: math.unit(440, "megameters"),
  43320. default: true
  43321. },
  43322. {
  43323. name: "Macro",
  43324. height: math.unit(2.5, "gigameters")
  43325. },
  43326. {
  43327. name: "Gigamacro",
  43328. height: math.unit(2, "galaxies")
  43329. },
  43330. ]
  43331. ))
  43332. characterMakers.push(() => makeCharacter(
  43333. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43334. {
  43335. side: {
  43336. height: math.unit(32, "feet"),
  43337. weight: math.unit(250000, "lb"),
  43338. name: "Side",
  43339. image: {
  43340. source: "./media/characters/silverwing/side.svg",
  43341. extra: 1100/1019,
  43342. bottom: 204/1304
  43343. }
  43344. },
  43345. },
  43346. [
  43347. {
  43348. name: "Normal",
  43349. height: math.unit(32, "feet"),
  43350. default: true
  43351. },
  43352. ]
  43353. ))
  43354. characterMakers.push(() => makeCharacter(
  43355. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43356. {
  43357. front: {
  43358. height: math.unit(6 + 6/12, "feet"),
  43359. weight: math.unit(350, "lb"),
  43360. name: "Front",
  43361. image: {
  43362. source: "./media/characters/tristan-hawthorne/front.svg",
  43363. extra: 1159/1124,
  43364. bottom: 37/1196
  43365. },
  43366. form: "labrador",
  43367. default: true
  43368. },
  43369. skunkFront: {
  43370. height: math.unit(4 + 6/12, "feet"),
  43371. weight: math.unit(120, "lb"),
  43372. name: "Front",
  43373. image: {
  43374. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43375. extra: 1609/1551,
  43376. bottom: 169/1778
  43377. },
  43378. form: "skunk",
  43379. default: true
  43380. },
  43381. },
  43382. [
  43383. {
  43384. name: "Normal",
  43385. height: math.unit(6 + 6/12, "feet"),
  43386. form: "labrador",
  43387. default: true
  43388. },
  43389. {
  43390. name: "Normal",
  43391. height: math.unit(4 + 6/12, "feet"),
  43392. form: "skunk",
  43393. default: true
  43394. },
  43395. ],
  43396. {
  43397. "labrador": {
  43398. name: "Labrador",
  43399. default: true
  43400. },
  43401. "skunk": {
  43402. name: "Skunk"
  43403. }
  43404. }
  43405. ))
  43406. characterMakers.push(() => makeCharacter(
  43407. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43408. {
  43409. front: {
  43410. height: math.unit(5 + 11/12, "feet"),
  43411. weight: math.unit(190, "lb"),
  43412. name: "Front",
  43413. image: {
  43414. source: "./media/characters/mizu/front.svg",
  43415. extra: 1988/1788,
  43416. bottom: 14/2002
  43417. }
  43418. },
  43419. },
  43420. [
  43421. {
  43422. name: "Normal",
  43423. height: math.unit(5 + 11/12, "feet"),
  43424. default: true
  43425. },
  43426. ]
  43427. ))
  43428. characterMakers.push(() => makeCharacter(
  43429. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43430. {
  43431. front: {
  43432. height: math.unit(1.7, "feet"),
  43433. weight: math.unit(50, "lb"),
  43434. name: "Front",
  43435. image: {
  43436. source: "./media/characters/dechroma/front.svg",
  43437. extra: 1095/859,
  43438. bottom: 64/1159
  43439. }
  43440. },
  43441. },
  43442. [
  43443. {
  43444. name: "Normal",
  43445. height: math.unit(1.7, "feet"),
  43446. default: true
  43447. },
  43448. ]
  43449. ))
  43450. characterMakers.push(() => makeCharacter(
  43451. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43452. {
  43453. side: {
  43454. height: math.unit(30, "feet"),
  43455. name: "Side",
  43456. image: {
  43457. source: "./media/characters/veluren-thanazel/side.svg",
  43458. extra: 1611/633,
  43459. bottom: 118/1729
  43460. }
  43461. },
  43462. front: {
  43463. height: math.unit(30, "feet"),
  43464. name: "Front",
  43465. image: {
  43466. source: "./media/characters/veluren-thanazel/front.svg",
  43467. extra: 1486/636,
  43468. bottom: 238/1724
  43469. }
  43470. },
  43471. head: {
  43472. height: math.unit(21.4, "feet"),
  43473. name: "Head",
  43474. image: {
  43475. source: "./media/characters/veluren-thanazel/head.svg"
  43476. }
  43477. },
  43478. genitals: {
  43479. height: math.unit(19.4, "feet"),
  43480. name: "Genitals",
  43481. image: {
  43482. source: "./media/characters/veluren-thanazel/genitals.svg"
  43483. }
  43484. },
  43485. },
  43486. [
  43487. {
  43488. name: "Social",
  43489. height: math.unit(6, "feet")
  43490. },
  43491. {
  43492. name: "Play",
  43493. height: math.unit(12, "feet")
  43494. },
  43495. {
  43496. name: "True",
  43497. height: math.unit(30, "feet"),
  43498. default: true
  43499. },
  43500. ]
  43501. ))
  43502. characterMakers.push(() => makeCharacter(
  43503. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43504. {
  43505. front: {
  43506. height: math.unit(7 + 6/12, "feet"),
  43507. weight: math.unit(500, "kg"),
  43508. name: "Front",
  43509. image: {
  43510. source: "./media/characters/arcturas/front.svg",
  43511. extra: 1700/1500,
  43512. bottom: 145/1845
  43513. }
  43514. },
  43515. },
  43516. [
  43517. {
  43518. name: "Normal",
  43519. height: math.unit(7 + 6/12, "feet"),
  43520. default: true
  43521. },
  43522. ]
  43523. ))
  43524. characterMakers.push(() => makeCharacter(
  43525. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43526. {
  43527. side: {
  43528. height: math.unit(6, "feet"),
  43529. weight: math.unit(2, "tons"),
  43530. name: "Side",
  43531. image: {
  43532. source: "./media/characters/vitaen/side.svg",
  43533. extra: 1157/617,
  43534. bottom: 122/1279
  43535. }
  43536. },
  43537. },
  43538. [
  43539. {
  43540. name: "Normal",
  43541. height: math.unit(6, "feet"),
  43542. default: true
  43543. },
  43544. ]
  43545. ))
  43546. characterMakers.push(() => makeCharacter(
  43547. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43548. {
  43549. front: {
  43550. height: math.unit(19, "feet"),
  43551. name: "Front",
  43552. image: {
  43553. source: "./media/characters/fia-dreamweaver/front.svg",
  43554. extra: 1630/1504,
  43555. bottom: 25/1655
  43556. }
  43557. },
  43558. },
  43559. [
  43560. {
  43561. name: "Normal",
  43562. height: math.unit(19, "feet"),
  43563. default: true
  43564. },
  43565. ]
  43566. ))
  43567. characterMakers.push(() => makeCharacter(
  43568. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43569. {
  43570. front: {
  43571. height: math.unit(5 + 4/12, "feet"),
  43572. name: "Front",
  43573. image: {
  43574. source: "./media/characters/artan/front.svg",
  43575. extra: 1618/1535,
  43576. bottom: 46/1664
  43577. }
  43578. },
  43579. back: {
  43580. height: math.unit(5 + 4/12, "feet"),
  43581. name: "Back",
  43582. image: {
  43583. source: "./media/characters/artan/back.svg",
  43584. extra: 1618/1543,
  43585. bottom: 31/1649
  43586. }
  43587. },
  43588. },
  43589. [
  43590. {
  43591. name: "Normal",
  43592. height: math.unit(5 + 4/12, "feet"),
  43593. default: true
  43594. },
  43595. ]
  43596. ))
  43597. characterMakers.push(() => makeCharacter(
  43598. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43599. {
  43600. side: {
  43601. height: math.unit(182, "cm"),
  43602. weight: math.unit(1000, "lb"),
  43603. name: "Side",
  43604. image: {
  43605. source: "./media/characters/silver-dragon/side.svg",
  43606. extra: 710/287,
  43607. bottom: 88/798
  43608. }
  43609. },
  43610. },
  43611. [
  43612. {
  43613. name: "Normal",
  43614. height: math.unit(182, "cm"),
  43615. default: true
  43616. },
  43617. ]
  43618. ))
  43619. characterMakers.push(() => makeCharacter(
  43620. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43621. {
  43622. side: {
  43623. height: math.unit(6 + 6/12, "feet"),
  43624. weight: math.unit(1.5, "tons"),
  43625. name: "Side",
  43626. image: {
  43627. source: "./media/characters/zephyr/side.svg",
  43628. extra: 1433/586,
  43629. bottom: 109/1542
  43630. }
  43631. },
  43632. },
  43633. [
  43634. {
  43635. name: "Normal",
  43636. height: math.unit(6 + 6/12, "feet"),
  43637. default: true
  43638. },
  43639. ]
  43640. ))
  43641. characterMakers.push(() => makeCharacter(
  43642. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43643. {
  43644. side: {
  43645. height: math.unit(1, "feet"),
  43646. name: "Side",
  43647. image: {
  43648. source: "./media/characters/vixye/side.svg",
  43649. extra: 632/541,
  43650. bottom: 0/632
  43651. }
  43652. },
  43653. },
  43654. [
  43655. {
  43656. name: "Normal",
  43657. height: math.unit(1, "feet"),
  43658. default: true
  43659. },
  43660. {
  43661. name: "True",
  43662. height: math.unit(1e15, "multiverses")
  43663. },
  43664. ]
  43665. ))
  43666. characterMakers.push(() => makeCharacter(
  43667. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43668. {
  43669. front: {
  43670. height: math.unit(8 + 2/12, "feet"),
  43671. weight: math.unit(650, "lb"),
  43672. name: "Front",
  43673. image: {
  43674. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43675. extra: 1174/1137,
  43676. bottom: 82/1256
  43677. }
  43678. },
  43679. back: {
  43680. height: math.unit(8 + 2/12, "feet"),
  43681. weight: math.unit(650, "lb"),
  43682. name: "Back",
  43683. image: {
  43684. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43685. extra: 1204/1157,
  43686. bottom: 46/1250
  43687. }
  43688. },
  43689. },
  43690. [
  43691. {
  43692. name: "Wildform",
  43693. height: math.unit(8 + 2/12, "feet"),
  43694. default: true
  43695. },
  43696. ]
  43697. ))
  43698. characterMakers.push(() => makeCharacter(
  43699. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43700. {
  43701. front: {
  43702. height: math.unit(18, "feet"),
  43703. name: "Front",
  43704. image: {
  43705. source: "./media/characters/cyphin/front.svg",
  43706. extra: 970/886,
  43707. bottom: 42/1012
  43708. }
  43709. },
  43710. back: {
  43711. height: math.unit(18, "feet"),
  43712. name: "Back",
  43713. image: {
  43714. source: "./media/characters/cyphin/back.svg",
  43715. extra: 1009/894,
  43716. bottom: 24/1033
  43717. }
  43718. },
  43719. head: {
  43720. height: math.unit(5.05, "feet"),
  43721. name: "Head",
  43722. image: {
  43723. source: "./media/characters/cyphin/head.svg"
  43724. }
  43725. },
  43726. tailbud: {
  43727. height: math.unit(5, "feet"),
  43728. name: "Tailbud",
  43729. image: {
  43730. source: "./media/characters/cyphin/tailbud.svg"
  43731. }
  43732. },
  43733. },
  43734. [
  43735. ]
  43736. ))
  43737. characterMakers.push(() => makeCharacter(
  43738. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43739. {
  43740. side: {
  43741. height: math.unit(10, "feet"),
  43742. weight: math.unit(6, "tons"),
  43743. name: "Side",
  43744. image: {
  43745. source: "./media/characters/raijin/side.svg",
  43746. extra: 1529/613,
  43747. bottom: 337/1866
  43748. }
  43749. },
  43750. },
  43751. [
  43752. {
  43753. name: "Normal",
  43754. height: math.unit(10, "feet"),
  43755. default: true
  43756. },
  43757. ]
  43758. ))
  43759. characterMakers.push(() => makeCharacter(
  43760. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43761. {
  43762. side: {
  43763. height: math.unit(9, "feet"),
  43764. name: "Side",
  43765. image: {
  43766. source: "./media/characters/nilghais/side.svg",
  43767. extra: 1047/744,
  43768. bottom: 91/1138
  43769. }
  43770. },
  43771. head: {
  43772. height: math.unit(3.14, "feet"),
  43773. name: "Head",
  43774. image: {
  43775. source: "./media/characters/nilghais/head.svg"
  43776. }
  43777. },
  43778. mouth: {
  43779. height: math.unit(4.6, "feet"),
  43780. name: "Mouth",
  43781. image: {
  43782. source: "./media/characters/nilghais/mouth.svg"
  43783. }
  43784. },
  43785. wings: {
  43786. height: math.unit(24, "feet"),
  43787. name: "Wings",
  43788. image: {
  43789. source: "./media/characters/nilghais/wings.svg"
  43790. }
  43791. },
  43792. ass: {
  43793. height: math.unit(6.12, "feet"),
  43794. name: "Ass",
  43795. image: {
  43796. source: "./media/characters/nilghais/ass.svg"
  43797. }
  43798. },
  43799. },
  43800. [
  43801. {
  43802. name: "Normal",
  43803. height: math.unit(9, "feet"),
  43804. default: true
  43805. },
  43806. ]
  43807. ))
  43808. characterMakers.push(() => makeCharacter(
  43809. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43810. {
  43811. regular: {
  43812. height: math.unit(16 + 2/12, "feet"),
  43813. weight: math.unit(2300, "lb"),
  43814. name: "Regular",
  43815. image: {
  43816. source: "./media/characters/zolgar/regular.svg",
  43817. extra: 1246/1004,
  43818. bottom: 124/1370
  43819. }
  43820. },
  43821. boxers: {
  43822. height: math.unit(16 + 2/12, "feet"),
  43823. weight: math.unit(2300, "lb"),
  43824. name: "Boxers",
  43825. image: {
  43826. source: "./media/characters/zolgar/boxers.svg",
  43827. extra: 1246/1004,
  43828. bottom: 124/1370
  43829. }
  43830. },
  43831. armored: {
  43832. height: math.unit(16 + 2/12, "feet"),
  43833. weight: math.unit(2300, "lb"),
  43834. name: "Armored",
  43835. image: {
  43836. source: "./media/characters/zolgar/armored.svg",
  43837. extra: 1246/1004,
  43838. bottom: 124/1370
  43839. }
  43840. },
  43841. goth: {
  43842. height: math.unit(16 + 2/12, "feet"),
  43843. weight: math.unit(2300, "lb"),
  43844. name: "Goth",
  43845. image: {
  43846. source: "./media/characters/zolgar/goth.svg",
  43847. extra: 1246/1004,
  43848. bottom: 124/1370
  43849. }
  43850. },
  43851. },
  43852. [
  43853. {
  43854. name: "Shrunken Down",
  43855. height: math.unit(9 + 2/12, "feet")
  43856. },
  43857. {
  43858. name: "Normal",
  43859. height: math.unit(16 + 2/12, "feet"),
  43860. default: true
  43861. },
  43862. ]
  43863. ))
  43864. characterMakers.push(() => makeCharacter(
  43865. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  43866. {
  43867. front: {
  43868. height: math.unit(6, "feet"),
  43869. weight: math.unit(168, "lb"),
  43870. name: "Front",
  43871. image: {
  43872. source: "./media/characters/luca/front.svg",
  43873. extra: 841/667,
  43874. bottom: 102/943
  43875. }
  43876. },
  43877. },
  43878. [
  43879. {
  43880. name: "Normal",
  43881. height: math.unit(6, "feet"),
  43882. default: true
  43883. },
  43884. ]
  43885. ))
  43886. characterMakers.push(() => makeCharacter(
  43887. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43888. {
  43889. side: {
  43890. height: math.unit(7 + 3/12, "feet"),
  43891. weight: math.unit(312, "lb"),
  43892. name: "Side",
  43893. image: {
  43894. source: "./media/characters/zezo/side.svg",
  43895. extra: 1192/1067,
  43896. bottom: 63/1255
  43897. }
  43898. },
  43899. },
  43900. [
  43901. {
  43902. name: "Normal",
  43903. height: math.unit(7 + 3/12, "feet"),
  43904. default: true
  43905. },
  43906. ]
  43907. ))
  43908. characterMakers.push(() => makeCharacter(
  43909. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43910. {
  43911. front: {
  43912. height: math.unit(5 + 5/12, "feet"),
  43913. weight: math.unit(170, "lb"),
  43914. name: "Front",
  43915. image: {
  43916. source: "./media/characters/mayso/front.svg",
  43917. extra: 1215/1108,
  43918. bottom: 16/1231
  43919. }
  43920. },
  43921. },
  43922. [
  43923. {
  43924. name: "Normal",
  43925. height: math.unit(5 + 5/12, "feet"),
  43926. default: true
  43927. },
  43928. ]
  43929. ))
  43930. characterMakers.push(() => makeCharacter(
  43931. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43932. {
  43933. front: {
  43934. height: math.unit(4 + 3/12, "feet"),
  43935. weight: math.unit(80, "lb"),
  43936. name: "Front",
  43937. image: {
  43938. source: "./media/characters/hess/front.svg",
  43939. extra: 1200/1123,
  43940. bottom: 16/1216
  43941. }
  43942. },
  43943. },
  43944. [
  43945. {
  43946. name: "Normal",
  43947. height: math.unit(4 + 3/12, "feet"),
  43948. default: true
  43949. },
  43950. ]
  43951. ))
  43952. characterMakers.push(() => makeCharacter(
  43953. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43954. {
  43955. front: {
  43956. height: math.unit(1.9, "meters"),
  43957. name: "Front",
  43958. image: {
  43959. source: "./media/characters/ashgar/front.svg",
  43960. extra: 1177/1146,
  43961. bottom: 99/1276
  43962. }
  43963. },
  43964. back: {
  43965. height: math.unit(1.9, "meters"),
  43966. name: "Back",
  43967. image: {
  43968. source: "./media/characters/ashgar/back.svg",
  43969. extra: 1201/1183,
  43970. bottom: 53/1254
  43971. }
  43972. },
  43973. feral: {
  43974. height: math.unit(1.4, "meters"),
  43975. name: "Feral",
  43976. image: {
  43977. source: "./media/characters/ashgar/feral.svg",
  43978. extra: 370/345,
  43979. bottom: 45/415
  43980. }
  43981. },
  43982. },
  43983. [
  43984. {
  43985. name: "Normal",
  43986. height: math.unit(1.9, "meters"),
  43987. default: true
  43988. },
  43989. ]
  43990. ))
  43991. characterMakers.push(() => makeCharacter(
  43992. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43993. {
  43994. regular: {
  43995. height: math.unit(6, "feet"),
  43996. weight: math.unit(220, "lb"),
  43997. name: "Regular",
  43998. image: {
  43999. source: "./media/characters/phillip/regular.svg",
  44000. extra: 1373/1277,
  44001. bottom: 75/1448
  44002. }
  44003. },
  44004. dressed: {
  44005. height: math.unit(6, "feet"),
  44006. weight: math.unit(220, "lb"),
  44007. name: "Dressed",
  44008. image: {
  44009. source: "./media/characters/phillip/dressed.svg",
  44010. extra: 1373/1277,
  44011. bottom: 75/1448
  44012. }
  44013. },
  44014. paw: {
  44015. height: math.unit(1.44, "feet"),
  44016. name: "Paw",
  44017. image: {
  44018. source: "./media/characters/phillip/paw.svg"
  44019. }
  44020. },
  44021. },
  44022. [
  44023. {
  44024. name: "Normal",
  44025. height: math.unit(6, "feet"),
  44026. default: true
  44027. },
  44028. ]
  44029. ))
  44030. characterMakers.push(() => makeCharacter(
  44031. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44032. {
  44033. side: {
  44034. height: math.unit(42, "feet"),
  44035. name: "Side",
  44036. image: {
  44037. source: "./media/characters/uvula/side.svg",
  44038. extra: 683/586,
  44039. bottom: 60/743
  44040. }
  44041. },
  44042. front: {
  44043. height: math.unit(42, "feet"),
  44044. name: "Front",
  44045. image: {
  44046. source: "./media/characters/uvula/front.svg",
  44047. extra: 705/613,
  44048. bottom: 54/759
  44049. }
  44050. },
  44051. maw: {
  44052. height: math.unit(23.5, "feet"),
  44053. name: "Maw",
  44054. image: {
  44055. source: "./media/characters/uvula/maw.svg"
  44056. }
  44057. },
  44058. },
  44059. [
  44060. {
  44061. name: "Original Size",
  44062. height: math.unit(14, "inches")
  44063. },
  44064. {
  44065. name: "Human Size",
  44066. height: math.unit(6, "feet")
  44067. },
  44068. {
  44069. name: "Big",
  44070. height: math.unit(42, "feet"),
  44071. default: true
  44072. },
  44073. {
  44074. name: "Bigger",
  44075. height: math.unit(100, "feet")
  44076. },
  44077. ]
  44078. ))
  44079. characterMakers.push(() => makeCharacter(
  44080. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44081. {
  44082. front: {
  44083. height: math.unit(5 + 11/12, "feet"),
  44084. name: "Front",
  44085. image: {
  44086. source: "./media/characters/lannah/front.svg",
  44087. extra: 1208/1113,
  44088. bottom: 97/1305
  44089. }
  44090. },
  44091. },
  44092. [
  44093. {
  44094. name: "Normal",
  44095. height: math.unit(5 + 11/12, "feet"),
  44096. default: true
  44097. },
  44098. ]
  44099. ))
  44100. characterMakers.push(() => makeCharacter(
  44101. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44102. {
  44103. front: {
  44104. height: math.unit(6 + 3/12, "feet"),
  44105. weight: math.unit(3.5, "tons"),
  44106. name: "Front",
  44107. image: {
  44108. source: "./media/characters/emberflame/front.svg",
  44109. extra: 1198/672,
  44110. bottom: 82/1280
  44111. }
  44112. },
  44113. side: {
  44114. height: math.unit(6 + 3/12, "feet"),
  44115. weight: math.unit(3.5, "tons"),
  44116. name: "Side",
  44117. image: {
  44118. source: "./media/characters/emberflame/side.svg",
  44119. extra: 938/527,
  44120. bottom: 56/994
  44121. }
  44122. },
  44123. },
  44124. [
  44125. {
  44126. name: "Normal",
  44127. height: math.unit(6 + 3/12, "feet"),
  44128. default: true
  44129. },
  44130. ]
  44131. ))
  44132. characterMakers.push(() => makeCharacter(
  44133. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44134. {
  44135. side: {
  44136. height: math.unit(17.5, "feet"),
  44137. weight: math.unit(35, "tons"),
  44138. name: "Side",
  44139. image: {
  44140. source: "./media/characters/sophie-ambrose/side.svg",
  44141. extra: 1573/1242,
  44142. bottom: 71/1644
  44143. }
  44144. },
  44145. maw: {
  44146. height: math.unit(7.4, "feet"),
  44147. name: "Maw",
  44148. image: {
  44149. source: "./media/characters/sophie-ambrose/maw.svg"
  44150. }
  44151. },
  44152. },
  44153. [
  44154. {
  44155. name: "Normal",
  44156. height: math.unit(17.5, "feet"),
  44157. default: true
  44158. },
  44159. ]
  44160. ))
  44161. characterMakers.push(() => makeCharacter(
  44162. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44163. {
  44164. front: {
  44165. height: math.unit(280, "feet"),
  44166. weight: math.unit(550, "tons"),
  44167. name: "Front",
  44168. image: {
  44169. source: "./media/characters/king-mugi/front.svg",
  44170. extra: 1102/947,
  44171. bottom: 104/1206
  44172. }
  44173. },
  44174. },
  44175. [
  44176. {
  44177. name: "King Mugi",
  44178. height: math.unit(280, "feet"),
  44179. default: true
  44180. },
  44181. ]
  44182. ))
  44183. characterMakers.push(() => makeCharacter(
  44184. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44185. {
  44186. front: {
  44187. height: math.unit(64, "meters"),
  44188. name: "Front",
  44189. image: {
  44190. source: "./media/characters/nova-fox/front.svg",
  44191. extra: 1310/1246,
  44192. bottom: 65/1375
  44193. }
  44194. },
  44195. },
  44196. [
  44197. {
  44198. name: "Macro",
  44199. height: math.unit(64, "meters"),
  44200. default: true
  44201. },
  44202. ]
  44203. ))
  44204. characterMakers.push(() => makeCharacter(
  44205. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44206. {
  44207. front: {
  44208. height: math.unit(6 + 3/12, "feet"),
  44209. weight: math.unit(170, "lb"),
  44210. name: "Front",
  44211. image: {
  44212. source: "./media/characters/sam-bat/front.svg",
  44213. extra: 1601/1411,
  44214. bottom: 125/1726
  44215. }
  44216. },
  44217. back: {
  44218. height: math.unit(6 + 3/12, "feet"),
  44219. weight: math.unit(170, "lb"),
  44220. name: "Back",
  44221. image: {
  44222. source: "./media/characters/sam-bat/back.svg",
  44223. extra: 1577/1405,
  44224. bottom: 58/1635
  44225. }
  44226. },
  44227. },
  44228. [
  44229. {
  44230. name: "Normal",
  44231. height: math.unit(6 + 3/12, "feet"),
  44232. default: true
  44233. },
  44234. ]
  44235. ))
  44236. characterMakers.push(() => makeCharacter(
  44237. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44238. {
  44239. front: {
  44240. height: math.unit(59, "feet"),
  44241. weight: math.unit(40000, "lb"),
  44242. name: "Front",
  44243. image: {
  44244. source: "./media/characters/inari/front.svg",
  44245. extra: 1884/1350,
  44246. bottom: 95/1979
  44247. }
  44248. },
  44249. },
  44250. [
  44251. {
  44252. name: "Gigantamax",
  44253. height: math.unit(59, "feet"),
  44254. default: true
  44255. },
  44256. ]
  44257. ))
  44258. characterMakers.push(() => makeCharacter(
  44259. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44260. {
  44261. front: {
  44262. height: math.unit(5 + 8/12, "feet"),
  44263. name: "Front",
  44264. image: {
  44265. source: "./media/characters/elizabeth/front.svg",
  44266. extra: 1395/1298,
  44267. bottom: 54/1449
  44268. }
  44269. },
  44270. mouth: {
  44271. height: math.unit(1.97, "feet"),
  44272. name: "Mouth",
  44273. image: {
  44274. source: "./media/characters/elizabeth/mouth.svg"
  44275. }
  44276. },
  44277. foot: {
  44278. height: math.unit(1.17, "feet"),
  44279. name: "Foot",
  44280. image: {
  44281. source: "./media/characters/elizabeth/foot.svg"
  44282. }
  44283. },
  44284. },
  44285. [
  44286. {
  44287. name: "Normal",
  44288. height: math.unit(5 + 8/12, "feet"),
  44289. default: true
  44290. },
  44291. {
  44292. name: "Minimacro",
  44293. height: math.unit(18, "feet")
  44294. },
  44295. {
  44296. name: "Macro",
  44297. height: math.unit(180, "feet")
  44298. },
  44299. ]
  44300. ))
  44301. characterMakers.push(() => makeCharacter(
  44302. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44303. {
  44304. front: {
  44305. height: math.unit(5 + 2/12, "feet"),
  44306. name: "Front",
  44307. image: {
  44308. source: "./media/characters/october-gossamer/front.svg",
  44309. extra: 505/454,
  44310. bottom: 7/512
  44311. }
  44312. },
  44313. back: {
  44314. height: math.unit(5 + 2/12, "feet"),
  44315. name: "Back",
  44316. image: {
  44317. source: "./media/characters/october-gossamer/back.svg",
  44318. extra: 501/454,
  44319. bottom: 11/512
  44320. }
  44321. },
  44322. },
  44323. [
  44324. {
  44325. name: "Normal",
  44326. height: math.unit(5 + 2/12, "feet"),
  44327. default: true
  44328. },
  44329. ]
  44330. ))
  44331. characterMakers.push(() => makeCharacter(
  44332. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44333. {
  44334. front: {
  44335. height: math.unit(5, "feet"),
  44336. name: "Front",
  44337. image: {
  44338. source: "./media/characters/epiglottis/front.svg",
  44339. extra: 923/849,
  44340. bottom: 17/940
  44341. }
  44342. },
  44343. },
  44344. [
  44345. {
  44346. name: "Original Size",
  44347. height: math.unit(10, "inches")
  44348. },
  44349. {
  44350. name: "Human Size",
  44351. height: math.unit(5, "feet"),
  44352. default: true
  44353. },
  44354. {
  44355. name: "Big",
  44356. height: math.unit(25, "feet")
  44357. },
  44358. {
  44359. name: "Bigger",
  44360. height: math.unit(50, "feet")
  44361. },
  44362. {
  44363. name: "oh lawd",
  44364. height: math.unit(75, "feet")
  44365. },
  44366. ]
  44367. ))
  44368. characterMakers.push(() => makeCharacter(
  44369. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44370. {
  44371. front: {
  44372. height: math.unit(2 + 4/12, "feet"),
  44373. weight: math.unit(60, "lb"),
  44374. name: "Front",
  44375. image: {
  44376. source: "./media/characters/lerm/front.svg",
  44377. extra: 796/790,
  44378. bottom: 79/875
  44379. }
  44380. },
  44381. },
  44382. [
  44383. {
  44384. name: "Normal",
  44385. height: math.unit(2 + 4/12, "feet"),
  44386. default: true
  44387. },
  44388. ]
  44389. ))
  44390. characterMakers.push(() => makeCharacter(
  44391. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44392. {
  44393. front: {
  44394. height: math.unit(5.5, "feet"),
  44395. weight: math.unit(130, "lb"),
  44396. name: "Front",
  44397. image: {
  44398. source: "./media/characters/xena-nebadon/front.svg",
  44399. extra: 1828/1730,
  44400. bottom: 79/1907
  44401. }
  44402. },
  44403. },
  44404. [
  44405. {
  44406. name: "Tiny Puppy",
  44407. height: math.unit(3, "inches")
  44408. },
  44409. {
  44410. name: "Normal",
  44411. height: math.unit(5.5, "feet"),
  44412. default: true
  44413. },
  44414. {
  44415. name: "Lotta Lady",
  44416. height: math.unit(12, "feet")
  44417. },
  44418. {
  44419. name: "Pretty Big",
  44420. height: math.unit(100, "feet")
  44421. },
  44422. {
  44423. name: "Big",
  44424. height: math.unit(500, "feet")
  44425. },
  44426. {
  44427. name: "Skyscraper Toys",
  44428. height: math.unit(2500, "feet")
  44429. },
  44430. {
  44431. name: "Plane Catcher",
  44432. height: math.unit(8, "miles")
  44433. },
  44434. {
  44435. name: "Planet Toys",
  44436. height: math.unit(15, "earths")
  44437. },
  44438. {
  44439. name: "Stardust",
  44440. height: math.unit(0.25, "galaxies")
  44441. },
  44442. {
  44443. name: "Snacks",
  44444. height: math.unit(70, "universes")
  44445. },
  44446. ]
  44447. ))
  44448. characterMakers.push(() => makeCharacter(
  44449. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44450. {
  44451. front: {
  44452. height: math.unit(1.6, "meters"),
  44453. weight: math.unit(60, "kg"),
  44454. name: "Front",
  44455. image: {
  44456. source: "./media/characters/bounty/front.svg",
  44457. extra: 1426/1308,
  44458. bottom: 15/1441
  44459. }
  44460. },
  44461. back: {
  44462. height: math.unit(1.6, "meters"),
  44463. weight: math.unit(60, "kg"),
  44464. name: "Back",
  44465. image: {
  44466. source: "./media/characters/bounty/back.svg",
  44467. extra: 1417/1307,
  44468. bottom: 8/1425
  44469. }
  44470. },
  44471. },
  44472. [
  44473. {
  44474. name: "Normal",
  44475. height: math.unit(1.6, "meters"),
  44476. default: true
  44477. },
  44478. {
  44479. name: "Macro",
  44480. height: math.unit(300, "meters")
  44481. },
  44482. ]
  44483. ))
  44484. characterMakers.push(() => makeCharacter(
  44485. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44486. {
  44487. front: {
  44488. height: math.unit(2 + 8/12, "feet"),
  44489. weight: math.unit(15, "lb"),
  44490. name: "Front",
  44491. image: {
  44492. source: "./media/characters/mochi/front.svg",
  44493. extra: 1022/852,
  44494. bottom: 435/1457
  44495. }
  44496. },
  44497. back: {
  44498. height: math.unit(2 + 8/12, "feet"),
  44499. weight: math.unit(15, "lb"),
  44500. name: "Back",
  44501. image: {
  44502. source: "./media/characters/mochi/back.svg",
  44503. extra: 1335/1119,
  44504. bottom: 39/1374
  44505. }
  44506. },
  44507. bird: {
  44508. height: math.unit(2 + 8/12, "feet"),
  44509. weight: math.unit(15, "lb"),
  44510. name: "Bird",
  44511. image: {
  44512. source: "./media/characters/mochi/bird.svg",
  44513. extra: 1251/1113,
  44514. bottom: 178/1429
  44515. }
  44516. },
  44517. kaiju: {
  44518. height: math.unit(154, "feet"),
  44519. weight: math.unit(1e7, "lb"),
  44520. name: "Kaiju",
  44521. image: {
  44522. source: "./media/characters/mochi/kaiju.svg",
  44523. extra: 460/324,
  44524. bottom: 40/500
  44525. }
  44526. },
  44527. head: {
  44528. height: math.unit(1.21, "feet"),
  44529. name: "Head",
  44530. image: {
  44531. source: "./media/characters/mochi/head.svg"
  44532. }
  44533. },
  44534. alternateTail: {
  44535. height: math.unit(2 + 8/12, "feet"),
  44536. weight: math.unit(45, "lb"),
  44537. name: "Alternate Tail",
  44538. image: {
  44539. source: "./media/characters/mochi/alternate-tail.svg",
  44540. extra: 139/76,
  44541. bottom: 45/184
  44542. }
  44543. },
  44544. },
  44545. [
  44546. {
  44547. name: "Micro",
  44548. height: math.unit(2, "inches")
  44549. },
  44550. {
  44551. name: "Normal",
  44552. height: math.unit(2 + 8/12, "feet"),
  44553. default: true
  44554. },
  44555. {
  44556. name: "Macro",
  44557. height: math.unit(106, "feet")
  44558. },
  44559. ]
  44560. ))
  44561. characterMakers.push(() => makeCharacter(
  44562. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44563. {
  44564. front: {
  44565. height: math.unit(5.67, "feet"),
  44566. weight: math.unit(135, "lb"),
  44567. name: "Front",
  44568. image: {
  44569. source: "./media/characters/sarel/front.svg",
  44570. extra: 865/788,
  44571. bottom: 97/962
  44572. }
  44573. },
  44574. back: {
  44575. height: math.unit(5.67, "feet"),
  44576. weight: math.unit(135, "lb"),
  44577. name: "Back",
  44578. image: {
  44579. source: "./media/characters/sarel/back.svg",
  44580. extra: 857/777,
  44581. bottom: 32/889
  44582. }
  44583. },
  44584. chozoan: {
  44585. height: math.unit(5.67, "feet"),
  44586. weight: math.unit(135, "lb"),
  44587. name: "Chozoan",
  44588. image: {
  44589. source: "./media/characters/sarel/chozoan.svg",
  44590. extra: 865/788,
  44591. bottom: 97/962
  44592. }
  44593. },
  44594. current: {
  44595. height: math.unit(5.67, "feet"),
  44596. weight: math.unit(135, "lb"),
  44597. name: "Current",
  44598. image: {
  44599. source: "./media/characters/sarel/current.svg",
  44600. extra: 865/788,
  44601. bottom: 97/962
  44602. }
  44603. },
  44604. head: {
  44605. height: math.unit(1.77, "feet"),
  44606. name: "Head",
  44607. image: {
  44608. source: "./media/characters/sarel/head.svg"
  44609. }
  44610. },
  44611. claws: {
  44612. height: math.unit(1.8, "feet"),
  44613. name: "Claws",
  44614. image: {
  44615. source: "./media/characters/sarel/claws.svg"
  44616. }
  44617. },
  44618. clawsAlt: {
  44619. height: math.unit(1.8, "feet"),
  44620. name: "Claws-alt",
  44621. image: {
  44622. source: "./media/characters/sarel/claws-alt.svg"
  44623. }
  44624. },
  44625. },
  44626. [
  44627. {
  44628. name: "Normal",
  44629. height: math.unit(5.67, "feet"),
  44630. default: true
  44631. },
  44632. ]
  44633. ))
  44634. characterMakers.push(() => makeCharacter(
  44635. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44636. {
  44637. front: {
  44638. height: math.unit(5500, "feet"),
  44639. name: "Front",
  44640. image: {
  44641. source: "./media/characters/alyonia/front.svg",
  44642. extra: 1200/1135,
  44643. bottom: 29/1229
  44644. }
  44645. },
  44646. back: {
  44647. height: math.unit(5500, "feet"),
  44648. name: "Back",
  44649. image: {
  44650. source: "./media/characters/alyonia/back.svg",
  44651. extra: 1205/1138,
  44652. bottom: 10/1215
  44653. }
  44654. },
  44655. },
  44656. [
  44657. {
  44658. name: "Small",
  44659. height: math.unit(10, "feet")
  44660. },
  44661. {
  44662. name: "Macro",
  44663. height: math.unit(500, "feet")
  44664. },
  44665. {
  44666. name: "Mega Macro",
  44667. height: math.unit(5500, "feet"),
  44668. default: true
  44669. },
  44670. {
  44671. name: "Mega Macro+",
  44672. height: math.unit(500000, "feet")
  44673. },
  44674. {
  44675. name: "Giga Macro",
  44676. height: math.unit(3000, "miles")
  44677. },
  44678. {
  44679. name: "Tera Macro",
  44680. height: math.unit(2.8e6, "miles")
  44681. },
  44682. {
  44683. name: "Galactic",
  44684. height: math.unit(120000, "lightyears")
  44685. },
  44686. ]
  44687. ))
  44688. characterMakers.push(() => makeCharacter(
  44689. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44690. {
  44691. werewolf: {
  44692. height: math.unit(8, "feet"),
  44693. weight: math.unit(425, "lb"),
  44694. name: "Werewolf",
  44695. image: {
  44696. source: "./media/characters/autumn/werewolf.svg",
  44697. extra: 2154/2031,
  44698. bottom: 160/2314
  44699. }
  44700. },
  44701. human: {
  44702. height: math.unit(5 + 8/12, "feet"),
  44703. weight: math.unit(150, "lb"),
  44704. name: "Human",
  44705. image: {
  44706. source: "./media/characters/autumn/human.svg",
  44707. extra: 1200/1149,
  44708. bottom: 30/1230
  44709. }
  44710. },
  44711. },
  44712. [
  44713. {
  44714. name: "Normal",
  44715. height: math.unit(8, "feet"),
  44716. default: true
  44717. },
  44718. ]
  44719. ))
  44720. characterMakers.push(() => makeCharacter(
  44721. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44722. {
  44723. front: {
  44724. height: math.unit(8 + 5/12, "feet"),
  44725. weight: math.unit(825, "lb"),
  44726. name: "Front",
  44727. image: {
  44728. source: "./media/characters/cobalt-charizard/front.svg",
  44729. extra: 1268/1155,
  44730. bottom: 122/1390
  44731. }
  44732. },
  44733. side: {
  44734. height: math.unit(8 + 5/12, "feet"),
  44735. weight: math.unit(825, "lb"),
  44736. name: "Side",
  44737. image: {
  44738. source: "./media/characters/cobalt-charizard/side.svg",
  44739. extra: 1348/1257,
  44740. bottom: 58/1406
  44741. }
  44742. },
  44743. gMax: {
  44744. height: math.unit(134 + 11/12, "feet"),
  44745. name: "G-Max",
  44746. image: {
  44747. source: "./media/characters/cobalt-charizard/g-max.svg",
  44748. extra: 1835/1541,
  44749. bottom: 151/1986
  44750. }
  44751. },
  44752. },
  44753. [
  44754. {
  44755. name: "Normal",
  44756. height: math.unit(8 + 5/12, "feet"),
  44757. default: true
  44758. },
  44759. ]
  44760. ))
  44761. characterMakers.push(() => makeCharacter(
  44762. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44763. {
  44764. front: {
  44765. height: math.unit(6 + 3/12, "feet"),
  44766. weight: math.unit(210, "lb"),
  44767. name: "Front",
  44768. image: {
  44769. source: "./media/characters/stella/front.svg",
  44770. extra: 3549/3335,
  44771. bottom: 51/3600
  44772. }
  44773. },
  44774. },
  44775. [
  44776. {
  44777. name: "Normal",
  44778. height: math.unit(6 + 3/12, "feet"),
  44779. default: true
  44780. },
  44781. ]
  44782. ))
  44783. characterMakers.push(() => makeCharacter(
  44784. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44785. {
  44786. front: {
  44787. height: math.unit(5, "feet"),
  44788. weight: math.unit(90, "lb"),
  44789. name: "Front",
  44790. image: {
  44791. source: "./media/characters/riley-bishop/front.svg",
  44792. extra: 1450/1428,
  44793. bottom: 152/1602
  44794. }
  44795. },
  44796. },
  44797. [
  44798. {
  44799. name: "Normal",
  44800. height: math.unit(5, "feet"),
  44801. default: true
  44802. },
  44803. ]
  44804. ))
  44805. characterMakers.push(() => makeCharacter(
  44806. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44807. {
  44808. side: {
  44809. height: math.unit(8 + 2/12, "feet"),
  44810. weight: math.unit(500, "kg"),
  44811. name: "Side",
  44812. image: {
  44813. source: "./media/characters/theo-arcanine/side.svg",
  44814. extra: 1342/1074,
  44815. bottom: 111/1453
  44816. }
  44817. },
  44818. },
  44819. [
  44820. {
  44821. name: "Normal",
  44822. height: math.unit(8 + 2/12, "feet"),
  44823. default: true
  44824. },
  44825. ]
  44826. ))
  44827. characterMakers.push(() => makeCharacter(
  44828. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44829. {
  44830. front: {
  44831. height: math.unit(4, "feet"),
  44832. name: "Front",
  44833. image: {
  44834. source: "./media/characters/kali/front.svg",
  44835. extra: 1921/1357,
  44836. bottom: 70/1991
  44837. }
  44838. },
  44839. },
  44840. [
  44841. {
  44842. name: "Normal",
  44843. height: math.unit(4, "feet"),
  44844. default: true
  44845. },
  44846. {
  44847. name: "Macro",
  44848. height: math.unit(32, "meters")
  44849. },
  44850. {
  44851. name: "Macro+",
  44852. height: math.unit(150, "meters")
  44853. },
  44854. {
  44855. name: "Megamacro",
  44856. height: math.unit(7500, "meters")
  44857. },
  44858. {
  44859. name: "Megamacro+",
  44860. height: math.unit(80, "kilometers")
  44861. },
  44862. ]
  44863. ))
  44864. characterMakers.push(() => makeCharacter(
  44865. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  44866. {
  44867. side: {
  44868. height: math.unit(5 + 11/12, "feet"),
  44869. weight: math.unit(236, "lb"),
  44870. name: "Side",
  44871. image: {
  44872. source: "./media/characters/gapp/side.svg",
  44873. extra: 775/340,
  44874. bottom: 58/833
  44875. }
  44876. },
  44877. mouth: {
  44878. height: math.unit(2.98, "feet"),
  44879. name: "Mouth",
  44880. image: {
  44881. source: "./media/characters/gapp/mouth.svg"
  44882. }
  44883. },
  44884. },
  44885. [
  44886. {
  44887. name: "Normal",
  44888. height: math.unit(5 + 1/12, "feet"),
  44889. default: true
  44890. },
  44891. ]
  44892. ))
  44893. characterMakers.push(() => makeCharacter(
  44894. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44895. {
  44896. front: {
  44897. height: math.unit(6, "feet"),
  44898. name: "Front",
  44899. image: {
  44900. source: "./media/characters/persephone/front.svg",
  44901. extra: 1895/1717,
  44902. bottom: 96/1991
  44903. }
  44904. },
  44905. back: {
  44906. height: math.unit(6, "feet"),
  44907. name: "Back",
  44908. image: {
  44909. source: "./media/characters/persephone/back.svg",
  44910. extra: 1868/1679,
  44911. bottom: 26/1894
  44912. }
  44913. },
  44914. casual: {
  44915. height: math.unit(6, "feet"),
  44916. name: "Casual",
  44917. image: {
  44918. source: "./media/characters/persephone/casual.svg",
  44919. extra: 1713/1541,
  44920. bottom: 76/1789
  44921. }
  44922. },
  44923. },
  44924. [
  44925. {
  44926. name: "Human Size",
  44927. height: math.unit(6, "feet")
  44928. },
  44929. {
  44930. name: "Big Steppy",
  44931. height: math.unit(600, "meters"),
  44932. default: true
  44933. },
  44934. {
  44935. name: "Galaxy Brain",
  44936. height: math.unit(1, "zettameter")
  44937. },
  44938. ]
  44939. ))
  44940. characterMakers.push(() => makeCharacter(
  44941. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44942. {
  44943. front: {
  44944. height: math.unit(1.85, "meters"),
  44945. name: "Front",
  44946. image: {
  44947. source: "./media/characters/riley-foxthing/front.svg",
  44948. extra: 1495/1354,
  44949. bottom: 122/1617
  44950. }
  44951. },
  44952. frontAlt: {
  44953. height: math.unit(1.85, "meters"),
  44954. name: "Front (Alt)",
  44955. image: {
  44956. source: "./media/characters/riley-foxthing/front-alt.svg",
  44957. extra: 1572/1389,
  44958. bottom: 116/1688
  44959. }
  44960. },
  44961. },
  44962. [
  44963. {
  44964. name: "Normal Sized",
  44965. height: math.unit(1.85, "meters"),
  44966. default: true
  44967. },
  44968. {
  44969. name: "Quite Sizable",
  44970. height: math.unit(5, "meters")
  44971. },
  44972. {
  44973. name: "Rather Large",
  44974. height: math.unit(20, "meters")
  44975. },
  44976. {
  44977. name: "Macro",
  44978. height: math.unit(450, "meters")
  44979. },
  44980. {
  44981. name: "Giga",
  44982. height: math.unit(5, "km")
  44983. },
  44984. ]
  44985. ))
  44986. characterMakers.push(() => makeCharacter(
  44987. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44988. {
  44989. front: {
  44990. height: math.unit(6, "feet"),
  44991. weight: math.unit(200, "lb"),
  44992. name: "Front",
  44993. image: {
  44994. source: "./media/characters/blizzard/front.svg",
  44995. extra: 1136/990,
  44996. bottom: 136/1272
  44997. }
  44998. },
  44999. back: {
  45000. height: math.unit(6, "feet"),
  45001. weight: math.unit(200, "lb"),
  45002. name: "Back",
  45003. image: {
  45004. source: "./media/characters/blizzard/back.svg",
  45005. extra: 1175/1034,
  45006. bottom: 97/1272
  45007. }
  45008. },
  45009. sitting: {
  45010. height: math.unit(3.725, "feet"),
  45011. weight: math.unit(200, "lb"),
  45012. name: "Sitting",
  45013. image: {
  45014. source: "./media/characters/blizzard/sitting.svg",
  45015. extra: 581/485,
  45016. bottom: 90/671
  45017. }
  45018. },
  45019. frontWizard: {
  45020. height: math.unit(7.9, "feet"),
  45021. weight: math.unit(200, "lb"),
  45022. name: "Front (Wizard)",
  45023. image: {
  45024. source: "./media/characters/blizzard/front-wizard.svg"
  45025. }
  45026. },
  45027. backWizard: {
  45028. height: math.unit(7.9, "feet"),
  45029. weight: math.unit(200, "lb"),
  45030. name: "Back (Wizard)",
  45031. image: {
  45032. source: "./media/characters/blizzard/back-wizard.svg"
  45033. }
  45034. },
  45035. frontNsfw: {
  45036. height: math.unit(6, "feet"),
  45037. weight: math.unit(200, "lb"),
  45038. name: "Front (NSFW)",
  45039. image: {
  45040. source: "./media/characters/blizzard/front-nsfw.svg",
  45041. extra: 1136/990,
  45042. bottom: 136/1272
  45043. }
  45044. },
  45045. backNsfw: {
  45046. height: math.unit(6, "feet"),
  45047. weight: math.unit(200, "lb"),
  45048. name: "Back (NSFW)",
  45049. image: {
  45050. source: "./media/characters/blizzard/back-nsfw.svg",
  45051. extra: 1175/1034,
  45052. bottom: 97/1272
  45053. }
  45054. },
  45055. sittingNsfw: {
  45056. height: math.unit(3.725, "feet"),
  45057. weight: math.unit(200, "lb"),
  45058. name: "Sitting (NSFW)",
  45059. image: {
  45060. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45061. extra: 581/485,
  45062. bottom: 90/671
  45063. }
  45064. },
  45065. wizardFrontNsfw: {
  45066. height: math.unit(7.9, "feet"),
  45067. weight: math.unit(200, "lb"),
  45068. name: "Wizard (Front, NSFW)",
  45069. image: {
  45070. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45071. }
  45072. },
  45073. },
  45074. [
  45075. {
  45076. name: "Normal",
  45077. height: math.unit(6, "feet"),
  45078. default: true
  45079. },
  45080. ]
  45081. ))
  45082. characterMakers.push(() => makeCharacter(
  45083. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45084. {
  45085. front: {
  45086. height: math.unit(5 + 2/12, "feet"),
  45087. name: "Front",
  45088. image: {
  45089. source: "./media/characters/lumi/front.svg",
  45090. extra: 1328/1268,
  45091. bottom: 103/1431
  45092. }
  45093. },
  45094. back: {
  45095. height: math.unit(5 + 2/12, "feet"),
  45096. name: "Back",
  45097. image: {
  45098. source: "./media/characters/lumi/back.svg",
  45099. extra: 1381/1327,
  45100. bottom: 43/1424
  45101. }
  45102. },
  45103. },
  45104. [
  45105. {
  45106. name: "Normal",
  45107. height: math.unit(5 + 2/12, "feet"),
  45108. default: true
  45109. },
  45110. ]
  45111. ))
  45112. characterMakers.push(() => makeCharacter(
  45113. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45114. {
  45115. front: {
  45116. height: math.unit(5 + 9/12, "feet"),
  45117. name: "Front",
  45118. image: {
  45119. source: "./media/characters/aliya-cotton/front.svg",
  45120. extra: 577/564,
  45121. bottom: 29/606
  45122. }
  45123. },
  45124. },
  45125. [
  45126. {
  45127. name: "Normal",
  45128. height: math.unit(5 + 9/12, "feet"),
  45129. default: true
  45130. },
  45131. ]
  45132. ))
  45133. characterMakers.push(() => makeCharacter(
  45134. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45135. {
  45136. front: {
  45137. height: math.unit(2.7, "meters"),
  45138. weight: math.unit(25000, "lb"),
  45139. name: "Front",
  45140. image: {
  45141. source: "./media/characters/noah-luxray/front.svg",
  45142. extra: 1644/825,
  45143. bottom: 339/1983
  45144. }
  45145. },
  45146. side: {
  45147. height: math.unit(2.97, "meters"),
  45148. weight: math.unit(25000, "lb"),
  45149. name: "Side",
  45150. image: {
  45151. source: "./media/characters/noah-luxray/side.svg",
  45152. extra: 1319/650,
  45153. bottom: 163/1482
  45154. }
  45155. },
  45156. dick: {
  45157. height: math.unit(7.4, "feet"),
  45158. weight: math.unit(2500, "lb"),
  45159. name: "Dick",
  45160. image: {
  45161. source: "./media/characters/noah-luxray/dick.svg"
  45162. }
  45163. },
  45164. dickAlt: {
  45165. height: math.unit(10.83, "feet"),
  45166. weight: math.unit(2500, "lb"),
  45167. name: "Dick-alt",
  45168. image: {
  45169. source: "./media/characters/noah-luxray/dick-alt.svg"
  45170. }
  45171. },
  45172. },
  45173. [
  45174. {
  45175. name: "BIG",
  45176. height: math.unit(2.7, "meters"),
  45177. default: true
  45178. },
  45179. ]
  45180. ))
  45181. characterMakers.push(() => makeCharacter(
  45182. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45183. {
  45184. standing: {
  45185. height: math.unit(183, "cm"),
  45186. weight: math.unit(68, "kg"),
  45187. name: "Standing",
  45188. image: {
  45189. source: "./media/characters/arion/standing.svg",
  45190. extra: 1869/1807,
  45191. bottom: 93/1962
  45192. }
  45193. },
  45194. reclining: {
  45195. height: math.unit(70.5, "cm"),
  45196. weight: math.unit(68, "lb"),
  45197. name: "Reclining",
  45198. image: {
  45199. source: "./media/characters/arion/reclining.svg",
  45200. extra: 937/870,
  45201. bottom: 63/1000
  45202. }
  45203. },
  45204. },
  45205. [
  45206. {
  45207. name: "Colossus Size, Low",
  45208. height: math.unit(33, "meters"),
  45209. default: true
  45210. },
  45211. {
  45212. name: "Colossus Size, Mid",
  45213. height: math.unit(52, "meters")
  45214. },
  45215. {
  45216. name: "Colossus Size, High",
  45217. height: math.unit(60, "meters")
  45218. },
  45219. {
  45220. name: "Titan Size, Low",
  45221. height: math.unit(91, "meters"),
  45222. },
  45223. {
  45224. name: "Titan Size, Mid",
  45225. height: math.unit(122, "meters")
  45226. },
  45227. {
  45228. name: "Titan Size, High",
  45229. height: math.unit(162, "meters")
  45230. },
  45231. ]
  45232. ))
  45233. characterMakers.push(() => makeCharacter(
  45234. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45235. {
  45236. front: {
  45237. height: math.unit(53, "meters"),
  45238. name: "Front",
  45239. image: {
  45240. source: "./media/characters/stellar-marbey/front.svg",
  45241. extra: 1913/1805,
  45242. bottom: 92/2005
  45243. }
  45244. },
  45245. back: {
  45246. height: math.unit(53, "meters"),
  45247. name: "Back",
  45248. image: {
  45249. source: "./media/characters/stellar-marbey/back.svg",
  45250. extra: 1960/1851,
  45251. bottom: 28/1988
  45252. }
  45253. },
  45254. mouth: {
  45255. height: math.unit(3.5, "meters"),
  45256. name: "Mouth",
  45257. image: {
  45258. source: "./media/characters/stellar-marbey/mouth.svg"
  45259. }
  45260. },
  45261. },
  45262. [
  45263. {
  45264. name: "Macro",
  45265. height: math.unit(53, "meters"),
  45266. default: true
  45267. },
  45268. ]
  45269. ))
  45270. characterMakers.push(() => makeCharacter(
  45271. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45272. {
  45273. front: {
  45274. height: math.unit(8 + 1/12, "feet"),
  45275. weight: math.unit(233, "lb"),
  45276. name: "Front",
  45277. image: {
  45278. source: "./media/characters/matsu/front.svg",
  45279. extra: 832/772,
  45280. bottom: 40/872
  45281. }
  45282. },
  45283. back: {
  45284. height: math.unit(8 + 1/12, "feet"),
  45285. weight: math.unit(233, "lb"),
  45286. name: "Back",
  45287. image: {
  45288. source: "./media/characters/matsu/back.svg",
  45289. extra: 839/780,
  45290. bottom: 47/886
  45291. }
  45292. },
  45293. },
  45294. [
  45295. {
  45296. name: "Normal",
  45297. height: math.unit(8 + 1/12, "feet"),
  45298. default: true
  45299. },
  45300. ]
  45301. ))
  45302. characterMakers.push(() => makeCharacter(
  45303. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45304. {
  45305. front: {
  45306. height: math.unit(4, "feet"),
  45307. weight: math.unit(148, "lb"),
  45308. name: "Front",
  45309. image: {
  45310. source: "./media/characters/thiz/front.svg",
  45311. extra: 1913/1748,
  45312. bottom: 62/1975
  45313. }
  45314. },
  45315. },
  45316. [
  45317. {
  45318. name: "Normal",
  45319. height: math.unit(4, "feet"),
  45320. default: true
  45321. },
  45322. ]
  45323. ))
  45324. characterMakers.push(() => makeCharacter(
  45325. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45326. {
  45327. front: {
  45328. height: math.unit(7 + 6/12, "feet"),
  45329. weight: math.unit(267, "lb"),
  45330. name: "Front",
  45331. image: {
  45332. source: "./media/characters/marcel/front.svg",
  45333. extra: 1221/1096,
  45334. bottom: 76/1297
  45335. }
  45336. },
  45337. },
  45338. [
  45339. {
  45340. name: "Normal",
  45341. height: math.unit(7 + 6/12, "feet"),
  45342. default: true
  45343. },
  45344. ]
  45345. ))
  45346. characterMakers.push(() => makeCharacter(
  45347. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45348. {
  45349. side: {
  45350. height: math.unit(42, "meters"),
  45351. name: "Side",
  45352. image: {
  45353. source: "./media/characters/flake/side.svg",
  45354. extra: 1525/1306,
  45355. bottom: 209/1734
  45356. }
  45357. },
  45358. },
  45359. [
  45360. {
  45361. name: "Normal",
  45362. height: math.unit(42, "meters"),
  45363. default: true
  45364. },
  45365. ]
  45366. ))
  45367. characterMakers.push(() => makeCharacter(
  45368. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45369. {
  45370. dressed: {
  45371. height: math.unit(6 + 4/12, "feet"),
  45372. weight: math.unit(520, "lb"),
  45373. name: "Dressed",
  45374. image: {
  45375. source: "./media/characters/someonne/dressed.svg",
  45376. extra: 1020/1010,
  45377. bottom: 178/1198
  45378. }
  45379. },
  45380. undressed: {
  45381. height: math.unit(6 + 4/12, "feet"),
  45382. weight: math.unit(520, "lb"),
  45383. name: "Undressed",
  45384. image: {
  45385. source: "./media/characters/someonne/undressed.svg",
  45386. extra: 1019/1014,
  45387. bottom: 169/1188
  45388. }
  45389. },
  45390. },
  45391. [
  45392. {
  45393. name: "Normal",
  45394. height: math.unit(6 + 4/12, "feet"),
  45395. default: true
  45396. },
  45397. ]
  45398. ))
  45399. characterMakers.push(() => makeCharacter(
  45400. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45401. {
  45402. front: {
  45403. height: math.unit(3, "feet"),
  45404. weight: math.unit(30, "lb"),
  45405. name: "Front",
  45406. image: {
  45407. source: "./media/characters/till/front.svg",
  45408. extra: 892/823,
  45409. bottom: 55/947
  45410. }
  45411. },
  45412. },
  45413. [
  45414. {
  45415. name: "Normal",
  45416. height: math.unit(3, "feet"),
  45417. default: true
  45418. },
  45419. ]
  45420. ))
  45421. characterMakers.push(() => makeCharacter(
  45422. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45423. {
  45424. front: {
  45425. height: math.unit(9 + 8/12, "feet"),
  45426. weight: math.unit(800, "lb"),
  45427. name: "Front",
  45428. image: {
  45429. source: "./media/characters/sydney-heki/front.svg",
  45430. extra: 1360/1300,
  45431. bottom: 22/1382
  45432. }
  45433. },
  45434. back: {
  45435. height: math.unit(9 + 8/12, "feet"),
  45436. weight: math.unit(800, "lb"),
  45437. name: "Back",
  45438. image: {
  45439. source: "./media/characters/sydney-heki/back.svg",
  45440. extra: 1356/1293,
  45441. bottom: 12/1368
  45442. }
  45443. },
  45444. frontDressed: {
  45445. height: math.unit(9 + 8/12, "feet"),
  45446. weight: math.unit(800, "lb"),
  45447. name: "Front-dressed",
  45448. image: {
  45449. source: "./media/characters/sydney-heki/front-dressed.svg",
  45450. extra: 1360/1300,
  45451. bottom: 22/1382
  45452. }
  45453. },
  45454. },
  45455. [
  45456. {
  45457. name: "Normal",
  45458. height: math.unit(9 + 8/12, "feet"),
  45459. default: true
  45460. },
  45461. {
  45462. name: "Macro",
  45463. height: math.unit(500, "feet")
  45464. },
  45465. {
  45466. name: "Megamacro",
  45467. height: math.unit(3.6, "miles")
  45468. },
  45469. ]
  45470. ))
  45471. characterMakers.push(() => makeCharacter(
  45472. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45473. {
  45474. front: {
  45475. height: math.unit(200, "cm"),
  45476. weight: math.unit(250, "lb"),
  45477. name: "Front",
  45478. image: {
  45479. source: "./media/characters/fowler-karlsson/front.svg",
  45480. extra: 897/845,
  45481. bottom: 123/1020
  45482. }
  45483. },
  45484. back: {
  45485. height: math.unit(200, "cm"),
  45486. weight: math.unit(250, "lb"),
  45487. name: "Back",
  45488. image: {
  45489. source: "./media/characters/fowler-karlsson/back.svg",
  45490. extra: 999/944,
  45491. bottom: 26/1025
  45492. }
  45493. },
  45494. dick: {
  45495. height: math.unit(1.92, "feet"),
  45496. weight: math.unit(150, "lb"),
  45497. name: "Dick",
  45498. image: {
  45499. source: "./media/characters/fowler-karlsson/dick.svg"
  45500. }
  45501. },
  45502. },
  45503. [
  45504. {
  45505. name: "Normal",
  45506. height: math.unit(200, "cm"),
  45507. default: true
  45508. },
  45509. {
  45510. name: "Smaller Macro",
  45511. height: math.unit(90, "m")
  45512. },
  45513. {
  45514. name: "Macro",
  45515. height: math.unit(150, "m")
  45516. },
  45517. {
  45518. name: "Bigger Macro",
  45519. height: math.unit(300, "m")
  45520. },
  45521. ]
  45522. ))
  45523. characterMakers.push(() => makeCharacter(
  45524. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45525. {
  45526. side: {
  45527. height: math.unit(8 + 2/12, "feet"),
  45528. weight: math.unit(1, "tonne"),
  45529. name: "Side",
  45530. image: {
  45531. source: "./media/characters/rylide/side.svg",
  45532. extra: 1318/1034,
  45533. bottom: 106/1424
  45534. }
  45535. },
  45536. sitting: {
  45537. height: math.unit(303, "cm"),
  45538. weight: math.unit(1, "tonne"),
  45539. name: "Sitting",
  45540. image: {
  45541. source: "./media/characters/rylide/sitting.svg",
  45542. extra: 1303/1103,
  45543. bottom: 36/1339
  45544. }
  45545. },
  45546. },
  45547. [
  45548. {
  45549. name: "Normal",
  45550. height: math.unit(8 + 2/12, "feet"),
  45551. default: true
  45552. },
  45553. ]
  45554. ))
  45555. characterMakers.push(() => makeCharacter(
  45556. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45557. {
  45558. front: {
  45559. height: math.unit(5 + 10/12, "feet"),
  45560. weight: math.unit(160, "lb"),
  45561. name: "Front",
  45562. image: {
  45563. source: "./media/characters/pudask/front.svg",
  45564. extra: 1616/1590,
  45565. bottom: 161/1777
  45566. }
  45567. },
  45568. },
  45569. [
  45570. {
  45571. name: "Ferret Height",
  45572. height: math.unit(2 + 5/12, "feet")
  45573. },
  45574. {
  45575. name: "Canon Height",
  45576. height: math.unit(5 + 10/12, "feet"),
  45577. default: true
  45578. },
  45579. ]
  45580. ))
  45581. characterMakers.push(() => makeCharacter(
  45582. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45583. {
  45584. front: {
  45585. height: math.unit(3 + 6/12, "feet"),
  45586. weight: math.unit(60, "lb"),
  45587. name: "Front",
  45588. image: {
  45589. source: "./media/characters/ramita/front.svg",
  45590. extra: 1402/1232,
  45591. bottom: 62/1464
  45592. }
  45593. },
  45594. dressed: {
  45595. height: math.unit(3 + 6/12, "feet"),
  45596. weight: math.unit(60, "lb"),
  45597. name: "Dressed",
  45598. image: {
  45599. source: "./media/characters/ramita/dressed.svg",
  45600. extra: 1534/1249,
  45601. bottom: 50/1584
  45602. }
  45603. },
  45604. },
  45605. [
  45606. {
  45607. name: "Normal",
  45608. height: math.unit(3 + 6/12, "feet"),
  45609. default: true
  45610. },
  45611. ]
  45612. ))
  45613. characterMakers.push(() => makeCharacter(
  45614. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45615. {
  45616. front: {
  45617. height: math.unit(8, "feet"),
  45618. name: "Front",
  45619. image: {
  45620. source: "./media/characters/ark/front.svg",
  45621. extra: 772/693,
  45622. bottom: 45/817
  45623. }
  45624. },
  45625. },
  45626. [
  45627. {
  45628. name: "Normal",
  45629. height: math.unit(8, "feet"),
  45630. default: true
  45631. },
  45632. ]
  45633. ))
  45634. characterMakers.push(() => makeCharacter(
  45635. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45636. {
  45637. front: {
  45638. height: math.unit(6, "feet"),
  45639. weight: math.unit(250, "lb"),
  45640. volume: math.unit(5/8, "gallons"),
  45641. name: "Front",
  45642. image: {
  45643. source: "./media/characters/ludwig-horn/front.svg",
  45644. extra: 1782/1635,
  45645. bottom: 96/1878
  45646. }
  45647. },
  45648. back: {
  45649. height: math.unit(6, "feet"),
  45650. weight: math.unit(250, "lb"),
  45651. volume: math.unit(5/8, "gallons"),
  45652. name: "Back",
  45653. image: {
  45654. source: "./media/characters/ludwig-horn/back.svg",
  45655. extra: 1874/1729,
  45656. bottom: 27/1901
  45657. }
  45658. },
  45659. dick: {
  45660. height: math.unit(1.05, "feet"),
  45661. weight: math.unit(15, "lb"),
  45662. volume: math.unit(5/8, "gallons"),
  45663. name: "Dick",
  45664. image: {
  45665. source: "./media/characters/ludwig-horn/dick.svg"
  45666. }
  45667. },
  45668. },
  45669. [
  45670. {
  45671. name: "Small",
  45672. height: math.unit(6, "feet")
  45673. },
  45674. {
  45675. name: "Typical",
  45676. height: math.unit(12, "feet"),
  45677. default: true
  45678. },
  45679. {
  45680. name: "Building",
  45681. height: math.unit(80, "feet")
  45682. },
  45683. {
  45684. name: "Town",
  45685. height: math.unit(800, "feet")
  45686. },
  45687. {
  45688. name: "Kingdom",
  45689. height: math.unit(80000, "feet")
  45690. },
  45691. {
  45692. name: "Planet",
  45693. height: math.unit(8000000, "feet")
  45694. },
  45695. {
  45696. name: "Universe",
  45697. height: math.unit(8000000000, "feet")
  45698. },
  45699. {
  45700. name: "Transcended",
  45701. height: math.unit(8e27, "feet")
  45702. },
  45703. ]
  45704. ))
  45705. characterMakers.push(() => makeCharacter(
  45706. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45707. {
  45708. front: {
  45709. height: math.unit(5, "feet"),
  45710. weight: math.unit(50, "kg"),
  45711. name: "Front",
  45712. image: {
  45713. source: "./media/characters/biot-avery/front.svg",
  45714. extra: 1295/1232,
  45715. bottom: 86/1381
  45716. }
  45717. },
  45718. },
  45719. [
  45720. {
  45721. name: "Normal",
  45722. height: math.unit(5, "feet"),
  45723. default: true
  45724. },
  45725. ]
  45726. ))
  45727. characterMakers.push(() => makeCharacter(
  45728. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45729. {
  45730. front: {
  45731. height: math.unit(6, "feet"),
  45732. name: "Front",
  45733. image: {
  45734. source: "./media/characters/kitsune-kiro/front.svg",
  45735. extra: 1270/1158,
  45736. bottom: 42/1312
  45737. }
  45738. },
  45739. frontAlt: {
  45740. height: math.unit(6, "feet"),
  45741. name: "Front-alt",
  45742. image: {
  45743. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45744. extra: 1130/1081,
  45745. bottom: 36/1166
  45746. }
  45747. },
  45748. },
  45749. [
  45750. {
  45751. name: "Smol",
  45752. height: math.unit(3, "feet")
  45753. },
  45754. {
  45755. name: "Normal",
  45756. height: math.unit(6, "feet"),
  45757. default: true
  45758. },
  45759. ]
  45760. ))
  45761. characterMakers.push(() => makeCharacter(
  45762. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45763. {
  45764. front: {
  45765. height: math.unit(6, "feet"),
  45766. weight: math.unit(125, "lb"),
  45767. name: "Front",
  45768. image: {
  45769. source: "./media/characters/jack-thatcher/front.svg",
  45770. extra: 1474/1370,
  45771. bottom: 26/1500
  45772. }
  45773. },
  45774. back: {
  45775. height: math.unit(6, "feet"),
  45776. weight: math.unit(125, "lb"),
  45777. name: "Back",
  45778. image: {
  45779. source: "./media/characters/jack-thatcher/back.svg",
  45780. extra: 1489/1384,
  45781. bottom: 18/1507
  45782. }
  45783. },
  45784. },
  45785. [
  45786. {
  45787. name: "Normal",
  45788. height: math.unit(6, "feet"),
  45789. default: true
  45790. },
  45791. {
  45792. name: "Macro",
  45793. height: math.unit(75, "feet")
  45794. },
  45795. {
  45796. name: "Macro-er",
  45797. height: math.unit(250, "feet")
  45798. },
  45799. ]
  45800. ))
  45801. characterMakers.push(() => makeCharacter(
  45802. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45803. {
  45804. front: {
  45805. height: math.unit(7, "feet"),
  45806. weight: math.unit(110, "kg"),
  45807. name: "Front",
  45808. image: {
  45809. source: "./media/characters/max-hyper/front.svg",
  45810. extra: 1969/1881,
  45811. bottom: 49/2018
  45812. }
  45813. },
  45814. },
  45815. [
  45816. {
  45817. name: "Normal",
  45818. height: math.unit(7, "feet"),
  45819. default: true
  45820. },
  45821. ]
  45822. ))
  45823. characterMakers.push(() => makeCharacter(
  45824. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45825. {
  45826. front: {
  45827. height: math.unit(5 + 5/12, "feet"),
  45828. weight: math.unit(160, "lb"),
  45829. name: "Front",
  45830. image: {
  45831. source: "./media/characters/spook/front.svg",
  45832. extra: 794/791,
  45833. bottom: 54/848
  45834. }
  45835. },
  45836. back: {
  45837. height: math.unit(5 + 5/12, "feet"),
  45838. weight: math.unit(160, "lb"),
  45839. name: "Back",
  45840. image: {
  45841. source: "./media/characters/spook/back.svg",
  45842. extra: 812/798,
  45843. bottom: 32/844
  45844. }
  45845. },
  45846. },
  45847. [
  45848. {
  45849. name: "Normal",
  45850. height: math.unit(5 + 5/12, "feet"),
  45851. default: true
  45852. },
  45853. ]
  45854. ))
  45855. characterMakers.push(() => makeCharacter(
  45856. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  45857. {
  45858. front: {
  45859. height: math.unit(18, "feet"),
  45860. name: "Front",
  45861. image: {
  45862. source: "./media/characters/xeaduulix/front.svg",
  45863. extra: 1380/1166,
  45864. bottom: 110/1490
  45865. }
  45866. },
  45867. back: {
  45868. height: math.unit(18, "feet"),
  45869. name: "Back",
  45870. image: {
  45871. source: "./media/characters/xeaduulix/back.svg",
  45872. extra: 1592/1170,
  45873. bottom: 128/1720
  45874. }
  45875. },
  45876. frontNsfw: {
  45877. height: math.unit(18, "feet"),
  45878. name: "Front (NSFW)",
  45879. image: {
  45880. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45881. extra: 1380/1166,
  45882. bottom: 110/1490
  45883. }
  45884. },
  45885. backNsfw: {
  45886. height: math.unit(18, "feet"),
  45887. name: "Back (NSFW)",
  45888. image: {
  45889. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45890. extra: 1592/1170,
  45891. bottom: 128/1720
  45892. }
  45893. },
  45894. },
  45895. [
  45896. {
  45897. name: "Normal",
  45898. height: math.unit(18, "feet"),
  45899. default: true
  45900. },
  45901. ]
  45902. ))
  45903. characterMakers.push(() => makeCharacter(
  45904. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45905. {
  45906. spreadWings: {
  45907. height: math.unit(20, "feet"),
  45908. name: "Spread Wings",
  45909. image: {
  45910. source: "./media/characters/fledge/spread-wings.svg",
  45911. extra: 693/635,
  45912. bottom: 26/719
  45913. }
  45914. },
  45915. front: {
  45916. height: math.unit(20, "feet"),
  45917. name: "Front",
  45918. image: {
  45919. source: "./media/characters/fledge/front.svg",
  45920. extra: 684/637,
  45921. bottom: 18/702
  45922. }
  45923. },
  45924. frontAlt: {
  45925. height: math.unit(20, "feet"),
  45926. name: "Front (Alt)",
  45927. image: {
  45928. source: "./media/characters/fledge/front-alt.svg",
  45929. extra: 708/664,
  45930. bottom: 13/721
  45931. }
  45932. },
  45933. back: {
  45934. height: math.unit(20, "feet"),
  45935. name: "Back",
  45936. image: {
  45937. source: "./media/characters/fledge/back.svg",
  45938. extra: 718/634,
  45939. bottom: 22/740
  45940. }
  45941. },
  45942. head: {
  45943. height: math.unit(5.55, "feet"),
  45944. name: "Head",
  45945. image: {
  45946. source: "./media/characters/fledge/head.svg"
  45947. }
  45948. },
  45949. headAlt: {
  45950. height: math.unit(5.1, "feet"),
  45951. name: "Head (Alt)",
  45952. image: {
  45953. source: "./media/characters/fledge/head-alt.svg"
  45954. }
  45955. },
  45956. },
  45957. [
  45958. {
  45959. name: "Small",
  45960. height: math.unit(6 + 2/12, "feet")
  45961. },
  45962. {
  45963. name: "Big",
  45964. height: math.unit(20, "feet"),
  45965. default: true
  45966. },
  45967. {
  45968. name: "Giant",
  45969. height: math.unit(100, "feet")
  45970. },
  45971. {
  45972. name: "Macro",
  45973. height: math.unit(200, "feet")
  45974. },
  45975. ]
  45976. ))
  45977. characterMakers.push(() => makeCharacter(
  45978. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45979. {
  45980. front: {
  45981. height: math.unit(1, "meter"),
  45982. name: "Front",
  45983. image: {
  45984. source: "./media/characters/atlas-morenai/front.svg",
  45985. extra: 1275/1043,
  45986. bottom: 19/1294
  45987. }
  45988. },
  45989. back: {
  45990. height: math.unit(1, "meter"),
  45991. name: "Back",
  45992. image: {
  45993. source: "./media/characters/atlas-morenai/back.svg",
  45994. extra: 1141/1001,
  45995. bottom: 25/1166
  45996. }
  45997. },
  45998. },
  45999. [
  46000. {
  46001. name: "Normal",
  46002. height: math.unit(1, "meter"),
  46003. default: true
  46004. },
  46005. {
  46006. name: "Magic-Infused",
  46007. height: math.unit(5, "meters")
  46008. },
  46009. ]
  46010. ))
  46011. characterMakers.push(() => makeCharacter(
  46012. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46013. {
  46014. front: {
  46015. height: math.unit(5, "meters"),
  46016. name: "Front",
  46017. image: {
  46018. source: "./media/characters/cintia/front.svg",
  46019. extra: 1312/1228,
  46020. bottom: 38/1350
  46021. }
  46022. },
  46023. back: {
  46024. height: math.unit(5, "meters"),
  46025. name: "Back",
  46026. image: {
  46027. source: "./media/characters/cintia/back.svg",
  46028. extra: 1260/1166,
  46029. bottom: 98/1358
  46030. }
  46031. },
  46032. frontDick: {
  46033. height: math.unit(5, "meters"),
  46034. name: "Front (Dick)",
  46035. image: {
  46036. source: "./media/characters/cintia/front-dick.svg",
  46037. extra: 1312/1228,
  46038. bottom: 38/1350
  46039. }
  46040. },
  46041. backDick: {
  46042. height: math.unit(5, "meters"),
  46043. name: "Back (Dick)",
  46044. image: {
  46045. source: "./media/characters/cintia/back-dick.svg",
  46046. extra: 1260/1166,
  46047. bottom: 98/1358
  46048. }
  46049. },
  46050. bust: {
  46051. height: math.unit(1.97, "meters"),
  46052. name: "Bust",
  46053. image: {
  46054. source: "./media/characters/cintia/bust.svg",
  46055. extra: 617/565,
  46056. bottom: 0/617
  46057. }
  46058. },
  46059. },
  46060. [
  46061. {
  46062. name: "Normal",
  46063. height: math.unit(5, "meters"),
  46064. default: true
  46065. },
  46066. ]
  46067. ))
  46068. characterMakers.push(() => makeCharacter(
  46069. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46070. {
  46071. side: {
  46072. height: math.unit(100, "feet"),
  46073. name: "Side",
  46074. image: {
  46075. source: "./media/characters/denora/side.svg",
  46076. extra: 875/803,
  46077. bottom: 9/884
  46078. }
  46079. },
  46080. },
  46081. [
  46082. {
  46083. name: "Standard",
  46084. height: math.unit(100, "feet"),
  46085. default: true
  46086. },
  46087. {
  46088. name: "Grand",
  46089. height: math.unit(1000, "feet")
  46090. },
  46091. {
  46092. name: "Conquering",
  46093. height: math.unit(10000, "feet")
  46094. },
  46095. ]
  46096. ))
  46097. characterMakers.push(() => makeCharacter(
  46098. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46099. {
  46100. dressed: {
  46101. height: math.unit(8 + 5/12, "feet"),
  46102. weight: math.unit(700, "lb"),
  46103. name: "Dressed",
  46104. image: {
  46105. source: "./media/characters/kiva/dressed.svg",
  46106. extra: 1102/1055,
  46107. bottom: 60/1162
  46108. }
  46109. },
  46110. nude: {
  46111. height: math.unit(8 + 5/12, "feet"),
  46112. weight: math.unit(700, "lb"),
  46113. name: "Nude",
  46114. image: {
  46115. source: "./media/characters/kiva/nude.svg",
  46116. extra: 1102/1055,
  46117. bottom: 60/1162
  46118. }
  46119. },
  46120. },
  46121. [
  46122. {
  46123. name: "Base Height",
  46124. height: math.unit(8 + 5/12, "feet"),
  46125. default: true
  46126. },
  46127. {
  46128. name: "Macro",
  46129. height: math.unit(100, "feet")
  46130. },
  46131. {
  46132. name: "Max",
  46133. height: math.unit(3280, "feet")
  46134. },
  46135. ]
  46136. ))
  46137. characterMakers.push(() => makeCharacter(
  46138. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46139. {
  46140. front: {
  46141. height: math.unit(6 + 8/12, "feet"),
  46142. weight: math.unit(250, "lb"),
  46143. name: "Front",
  46144. image: {
  46145. source: "./media/characters/ztragon/front.svg",
  46146. extra: 1825/1684,
  46147. bottom: 98/1923
  46148. }
  46149. },
  46150. },
  46151. [
  46152. {
  46153. name: "Normal",
  46154. height: math.unit(6 + 8/12, "feet"),
  46155. default: true
  46156. },
  46157. {
  46158. name: "Macro",
  46159. height: math.unit(80, "feet")
  46160. },
  46161. ]
  46162. ))
  46163. characterMakers.push(() => makeCharacter(
  46164. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46165. {
  46166. front: {
  46167. height: math.unit(10.4, "feet"),
  46168. weight: math.unit(2, "tons"),
  46169. name: "Front",
  46170. image: {
  46171. source: "./media/characters/yesenia/front.svg",
  46172. extra: 1479/1474,
  46173. bottom: 233/1712
  46174. }
  46175. },
  46176. },
  46177. [
  46178. {
  46179. name: "Normal",
  46180. height: math.unit(10.4, "feet"),
  46181. default: true
  46182. },
  46183. ]
  46184. ))
  46185. characterMakers.push(() => makeCharacter(
  46186. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46187. {
  46188. normal: {
  46189. height: math.unit(6 + 1/12, "feet"),
  46190. weight: math.unit(180, "lb"),
  46191. name: "Normal",
  46192. image: {
  46193. source: "./media/characters/leanne-lycheborne/normal.svg",
  46194. extra: 1748/1660,
  46195. bottom: 98/1846
  46196. }
  46197. },
  46198. were: {
  46199. height: math.unit(12, "feet"),
  46200. weight: math.unit(1600, "lb"),
  46201. name: "Were",
  46202. image: {
  46203. source: "./media/characters/leanne-lycheborne/were.svg",
  46204. extra: 1485/1432,
  46205. bottom: 66/1551
  46206. }
  46207. },
  46208. },
  46209. [
  46210. {
  46211. name: "Normal",
  46212. height: math.unit(6 + 1/12, "feet"),
  46213. default: true
  46214. },
  46215. ]
  46216. ))
  46217. characterMakers.push(() => makeCharacter(
  46218. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46219. {
  46220. side: {
  46221. height: math.unit(13, "feet"),
  46222. name: "Side",
  46223. image: {
  46224. source: "./media/characters/kira-tyler/side.svg",
  46225. extra: 693/393,
  46226. bottom: 58/751
  46227. }
  46228. },
  46229. },
  46230. [
  46231. {
  46232. name: "Normal",
  46233. height: math.unit(13, "feet"),
  46234. default: true
  46235. },
  46236. ]
  46237. ))
  46238. characterMakers.push(() => makeCharacter(
  46239. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46240. {
  46241. front: {
  46242. height: math.unit(10.3, "feet"),
  46243. weight: math.unit(150, "lb"),
  46244. name: "Front",
  46245. image: {
  46246. source: "./media/characters/blaze/front.svg",
  46247. extra: 1378/1286,
  46248. bottom: 172/1550
  46249. }
  46250. },
  46251. },
  46252. [
  46253. {
  46254. name: "Normal",
  46255. height: math.unit(10.3, "feet"),
  46256. default: true
  46257. },
  46258. ]
  46259. ))
  46260. characterMakers.push(() => makeCharacter(
  46261. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46262. {
  46263. side: {
  46264. height: math.unit(2, "meters"),
  46265. weight: math.unit(400, "kg"),
  46266. name: "Side",
  46267. image: {
  46268. source: "./media/characters/anu/side.svg",
  46269. extra: 506/394,
  46270. bottom: 18/524
  46271. }
  46272. },
  46273. },
  46274. [
  46275. {
  46276. name: "Humanoid",
  46277. height: math.unit(2, "meters")
  46278. },
  46279. {
  46280. name: "Normal",
  46281. height: math.unit(5, "meters"),
  46282. default: true
  46283. },
  46284. ]
  46285. ))
  46286. characterMakers.push(() => makeCharacter(
  46287. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46288. {
  46289. front: {
  46290. height: math.unit(5 + 5/12, "feet"),
  46291. weight: math.unit(170, "lb"),
  46292. name: "Front",
  46293. image: {
  46294. source: "./media/characters/synx-the-lynx/front.svg",
  46295. extra: 1893/1745,
  46296. bottom: 17/1910
  46297. }
  46298. },
  46299. side: {
  46300. height: math.unit(5 + 5/12, "feet"),
  46301. weight: math.unit(170, "lb"),
  46302. name: "Side",
  46303. image: {
  46304. source: "./media/characters/synx-the-lynx/side.svg",
  46305. extra: 1884/1740,
  46306. bottom: 39/1923
  46307. }
  46308. },
  46309. back: {
  46310. height: math.unit(5 + 5/12, "feet"),
  46311. weight: math.unit(170, "lb"),
  46312. name: "Back",
  46313. image: {
  46314. source: "./media/characters/synx-the-lynx/back.svg",
  46315. extra: 1903/1755,
  46316. bottom: 14/1917
  46317. }
  46318. },
  46319. },
  46320. [
  46321. {
  46322. name: "Normal",
  46323. height: math.unit(5 + 5/12, "feet"),
  46324. default: true
  46325. },
  46326. ]
  46327. ))
  46328. characterMakers.push(() => makeCharacter(
  46329. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46330. {
  46331. back: {
  46332. height: math.unit(15, "feet"),
  46333. name: "Back",
  46334. image: {
  46335. source: "./media/characters/nadezda-fex/back.svg",
  46336. extra: 1695/1481,
  46337. bottom: 25/1720
  46338. }
  46339. },
  46340. },
  46341. [
  46342. {
  46343. name: "Normal",
  46344. height: math.unit(15, "feet"),
  46345. default: true
  46346. },
  46347. {
  46348. name: "Macro",
  46349. height: math.unit(2.5, "miles")
  46350. },
  46351. {
  46352. name: "Goddess",
  46353. height: math.unit(2, "multiverses")
  46354. },
  46355. ]
  46356. ))
  46357. characterMakers.push(() => makeCharacter(
  46358. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46359. {
  46360. front: {
  46361. height: math.unit(216, "cm"),
  46362. name: "Front",
  46363. image: {
  46364. source: "./media/characters/lev/front.svg",
  46365. extra: 1728/1670,
  46366. bottom: 82/1810
  46367. }
  46368. },
  46369. back: {
  46370. height: math.unit(216, "cm"),
  46371. name: "Back",
  46372. image: {
  46373. source: "./media/characters/lev/back.svg",
  46374. extra: 1738/1675,
  46375. bottom: 24/1762
  46376. }
  46377. },
  46378. dressed: {
  46379. height: math.unit(216, "cm"),
  46380. name: "Dressed",
  46381. image: {
  46382. source: "./media/characters/lev/dressed.svg",
  46383. extra: 1397/1351,
  46384. bottom: 73/1470
  46385. }
  46386. },
  46387. head: {
  46388. height: math.unit(0.51, "meter"),
  46389. name: "Head",
  46390. image: {
  46391. source: "./media/characters/lev/head.svg"
  46392. }
  46393. },
  46394. },
  46395. [
  46396. {
  46397. name: "Normal",
  46398. height: math.unit(216, "cm"),
  46399. default: true
  46400. },
  46401. {
  46402. name: "Relatively Macro",
  46403. height: math.unit(80, "meters")
  46404. },
  46405. {
  46406. name: "Megamacro",
  46407. height: math.unit(21600, "meters")
  46408. },
  46409. {
  46410. name: "Megamacro+",
  46411. height: math.unit(64800, "meters")
  46412. },
  46413. ]
  46414. ))
  46415. characterMakers.push(() => makeCharacter(
  46416. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46417. {
  46418. front: {
  46419. height: math.unit(2, "meters"),
  46420. weight: math.unit(80, "kg"),
  46421. name: "Front",
  46422. image: {
  46423. source: "./media/characters/moka/front.svg",
  46424. extra: 1337/1255,
  46425. bottom: 58/1395
  46426. }
  46427. },
  46428. },
  46429. [
  46430. {
  46431. name: "Micro",
  46432. height: math.unit(15, "cm")
  46433. },
  46434. {
  46435. name: "Normal",
  46436. height: math.unit(2, "meters"),
  46437. default: true
  46438. },
  46439. {
  46440. name: "Macro",
  46441. height: math.unit(20, "meters"),
  46442. },
  46443. ]
  46444. ))
  46445. characterMakers.push(() => makeCharacter(
  46446. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46447. {
  46448. front: {
  46449. height: math.unit(9, "feet"),
  46450. weight: math.unit(240, "lb"),
  46451. name: "Front",
  46452. image: {
  46453. source: "./media/characters/kuzco/front.svg",
  46454. extra: 1593/1487,
  46455. bottom: 32/1625
  46456. }
  46457. },
  46458. side: {
  46459. height: math.unit(9, "feet"),
  46460. weight: math.unit(240, "lb"),
  46461. name: "Side",
  46462. image: {
  46463. source: "./media/characters/kuzco/side.svg",
  46464. extra: 1575/1485,
  46465. bottom: 30/1605
  46466. }
  46467. },
  46468. back: {
  46469. height: math.unit(9, "feet"),
  46470. weight: math.unit(240, "lb"),
  46471. name: "Back",
  46472. image: {
  46473. source: "./media/characters/kuzco/back.svg",
  46474. extra: 1603/1514,
  46475. bottom: 14/1617
  46476. }
  46477. },
  46478. },
  46479. [
  46480. {
  46481. name: "Normal",
  46482. height: math.unit(9, "feet"),
  46483. default: true
  46484. },
  46485. ]
  46486. ))
  46487. characterMakers.push(() => makeCharacter(
  46488. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46489. {
  46490. side: {
  46491. height: math.unit(2, "meters"),
  46492. weight: math.unit(300, "kg"),
  46493. name: "Side",
  46494. image: {
  46495. source: "./media/characters/ceruleus/side.svg",
  46496. extra: 1068/974,
  46497. bottom: 126/1194
  46498. }
  46499. },
  46500. },
  46501. [
  46502. {
  46503. name: "Normal",
  46504. height: math.unit(16, "meters"),
  46505. default: true
  46506. },
  46507. ]
  46508. ))
  46509. characterMakers.push(() => makeCharacter(
  46510. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46511. {
  46512. front: {
  46513. height: math.unit(9, "feet"),
  46514. weight: math.unit(500, "kg"),
  46515. name: "Front",
  46516. image: {
  46517. source: "./media/characters/acouya/front.svg",
  46518. extra: 1660/1473,
  46519. bottom: 28/1688
  46520. }
  46521. },
  46522. },
  46523. [
  46524. {
  46525. name: "Normal",
  46526. height: math.unit(9, "feet"),
  46527. default: true
  46528. },
  46529. ]
  46530. ))
  46531. characterMakers.push(() => makeCharacter(
  46532. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46533. {
  46534. front: {
  46535. height: math.unit(5 + 6/12, "feet"),
  46536. weight: math.unit(195, "lb"),
  46537. name: "Front",
  46538. image: {
  46539. source: "./media/characters/vant/front.svg",
  46540. extra: 1396/1320,
  46541. bottom: 20/1416
  46542. }
  46543. },
  46544. back: {
  46545. height: math.unit(5 + 6/12, "feet"),
  46546. weight: math.unit(195, "lb"),
  46547. name: "Back",
  46548. image: {
  46549. source: "./media/characters/vant/back.svg",
  46550. extra: 1396/1320,
  46551. bottom: 20/1416
  46552. }
  46553. },
  46554. maw: {
  46555. height: math.unit(0.75, "feet"),
  46556. name: "Maw",
  46557. image: {
  46558. source: "./media/characters/vant/maw.svg"
  46559. }
  46560. },
  46561. paw: {
  46562. height: math.unit(1.07, "feet"),
  46563. name: "Paw",
  46564. image: {
  46565. source: "./media/characters/vant/paw.svg"
  46566. }
  46567. },
  46568. },
  46569. [
  46570. {
  46571. name: "Micro",
  46572. height: math.unit(0.25, "inches")
  46573. },
  46574. {
  46575. name: "Normal",
  46576. height: math.unit(5 + 6/12, "feet"),
  46577. default: true
  46578. },
  46579. {
  46580. name: "Macro",
  46581. height: math.unit(75, "feet")
  46582. },
  46583. ]
  46584. ))
  46585. characterMakers.push(() => makeCharacter(
  46586. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46587. {
  46588. front: {
  46589. height: math.unit(30, "meters"),
  46590. weight: math.unit(363, "tons"),
  46591. name: "Front",
  46592. image: {
  46593. source: "./media/characters/ahra/front.svg",
  46594. extra: 1914/1814,
  46595. bottom: 46/1960
  46596. }
  46597. },
  46598. },
  46599. [
  46600. {
  46601. name: "Macro",
  46602. height: math.unit(30, "meters"),
  46603. default: true
  46604. },
  46605. ]
  46606. ))
  46607. characterMakers.push(() => makeCharacter(
  46608. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46609. {
  46610. undressed: {
  46611. height: math.unit(2, "m"),
  46612. weight: math.unit(250, "kg"),
  46613. name: "Undressed",
  46614. image: {
  46615. source: "./media/characters/coriander/undressed.svg",
  46616. extra: 1757/1606,
  46617. bottom: 107/1864
  46618. }
  46619. },
  46620. dressed: {
  46621. height: math.unit(2, "m"),
  46622. weight: math.unit(250, "kg"),
  46623. name: "Dressed",
  46624. image: {
  46625. source: "./media/characters/coriander/dressed.svg",
  46626. extra: 1757/1606,
  46627. bottom: 107/1864
  46628. }
  46629. },
  46630. },
  46631. [
  46632. {
  46633. name: "Normal",
  46634. height: math.unit(4, "meters"),
  46635. default: true
  46636. },
  46637. {
  46638. name: "XL",
  46639. height: math.unit(6, "meters")
  46640. },
  46641. {
  46642. name: "XXL",
  46643. height: math.unit(8, "meters")
  46644. },
  46645. ]
  46646. ))
  46647. characterMakers.push(() => makeCharacter(
  46648. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46649. {
  46650. front: {
  46651. height: math.unit(6, "feet"),
  46652. name: "Front",
  46653. image: {
  46654. source: "./media/characters/syrinx/front.svg",
  46655. extra: 1557/1259,
  46656. bottom: 171/1728
  46657. }
  46658. },
  46659. },
  46660. [
  46661. {
  46662. name: "Normal",
  46663. height: math.unit(6 + 3/12, "feet"),
  46664. default: true
  46665. },
  46666. ]
  46667. ))
  46668. characterMakers.push(() => makeCharacter(
  46669. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46670. {
  46671. front: {
  46672. height: math.unit(11 + 6/12, "feet"),
  46673. weight: math.unit(1.5, "tons"),
  46674. name: "Front",
  46675. image: {
  46676. source: "./media/characters/bor/front.svg",
  46677. extra: 1189/1109,
  46678. bottom: 170/1359
  46679. }
  46680. },
  46681. },
  46682. [
  46683. {
  46684. name: "Normal",
  46685. height: math.unit(11 + 6/12, "feet"),
  46686. default: true
  46687. },
  46688. {
  46689. name: "Macro",
  46690. height: math.unit(32 + 9/12, "feet")
  46691. },
  46692. ]
  46693. ))
  46694. characterMakers.push(() => makeCharacter(
  46695. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46696. {
  46697. anthro: {
  46698. height: math.unit(9, "feet"),
  46699. weight: math.unit(2076, "lb"),
  46700. name: "Anthro",
  46701. image: {
  46702. source: "./media/characters/abacus/anthro.svg",
  46703. extra: 1540/1494,
  46704. bottom: 233/1773
  46705. }
  46706. },
  46707. pigeon: {
  46708. height: math.unit(1, "feet"),
  46709. name: "Pigeon",
  46710. image: {
  46711. source: "./media/characters/abacus/pigeon.svg",
  46712. extra: 528/525,
  46713. bottom: 46/574
  46714. }
  46715. },
  46716. },
  46717. [
  46718. {
  46719. name: "Normal",
  46720. height: math.unit(9, "feet"),
  46721. default: true
  46722. },
  46723. ]
  46724. ))
  46725. characterMakers.push(() => makeCharacter(
  46726. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46727. {
  46728. side: {
  46729. height: math.unit(6, "feet"),
  46730. name: "Side",
  46731. image: {
  46732. source: "./media/characters/delkhan/side.svg",
  46733. extra: 1884/1786,
  46734. bottom: 308/2192
  46735. }
  46736. },
  46737. head: {
  46738. height: math.unit(3.38, "feet"),
  46739. name: "Head",
  46740. image: {
  46741. source: "./media/characters/delkhan/head.svg"
  46742. }
  46743. },
  46744. },
  46745. [
  46746. {
  46747. name: "Normal",
  46748. height: math.unit(72, "feet"),
  46749. default: true
  46750. },
  46751. {
  46752. name: "Giant",
  46753. height: math.unit(172, "feet")
  46754. },
  46755. ]
  46756. ))
  46757. characterMakers.push(() => makeCharacter(
  46758. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46759. {
  46760. standing: {
  46761. height: math.unit(6, "feet"),
  46762. name: "Standing",
  46763. image: {
  46764. source: "./media/characters/euchidat/standing.svg",
  46765. extra: 1612/1553,
  46766. bottom: 116/1728
  46767. }
  46768. },
  46769. leaning: {
  46770. height: math.unit(6, "feet"),
  46771. name: "Leaning",
  46772. image: {
  46773. source: "./media/characters/euchidat/leaning.svg",
  46774. extra: 1719/1674,
  46775. bottom: 27/1746
  46776. }
  46777. },
  46778. },
  46779. [
  46780. {
  46781. name: "Normal",
  46782. height: math.unit(175, "feet"),
  46783. default: true
  46784. },
  46785. {
  46786. name: "Megamacro",
  46787. height: math.unit(190, "miles")
  46788. },
  46789. {
  46790. name: "Gigamacro",
  46791. height: math.unit(190000, "miles")
  46792. },
  46793. ]
  46794. ))
  46795. characterMakers.push(() => makeCharacter(
  46796. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46797. {
  46798. front: {
  46799. height: math.unit(6, "feet"),
  46800. weight: math.unit(150, "lb"),
  46801. name: "Front",
  46802. image: {
  46803. source: "./media/characters/rebecca-stack/front.svg",
  46804. extra: 1256/1201,
  46805. bottom: 18/1274
  46806. }
  46807. },
  46808. },
  46809. [
  46810. {
  46811. name: "Normal",
  46812. height: math.unit(5 + 8/12, "feet"),
  46813. default: true
  46814. },
  46815. {
  46816. name: "Demolitionist",
  46817. height: math.unit(200, "feet")
  46818. },
  46819. {
  46820. name: "Out of Control",
  46821. height: math.unit(2, "miles")
  46822. },
  46823. {
  46824. name: "Giga",
  46825. height: math.unit(7200, "miles")
  46826. },
  46827. ]
  46828. ))
  46829. characterMakers.push(() => makeCharacter(
  46830. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46831. {
  46832. front: {
  46833. height: math.unit(6, "feet"),
  46834. weight: math.unit(150, "lb"),
  46835. name: "Front",
  46836. image: {
  46837. source: "./media/characters/jenny-cartwright/front.svg",
  46838. extra: 1384/1376,
  46839. bottom: 58/1442
  46840. }
  46841. },
  46842. },
  46843. [
  46844. {
  46845. name: "Normal",
  46846. height: math.unit(6 + 7/12, "feet"),
  46847. default: true
  46848. },
  46849. {
  46850. name: "Librarian",
  46851. height: math.unit(55, "feet")
  46852. },
  46853. {
  46854. name: "Sightseer",
  46855. height: math.unit(50, "miles")
  46856. },
  46857. {
  46858. name: "Giga",
  46859. height: math.unit(30000, "miles")
  46860. },
  46861. ]
  46862. ))
  46863. characterMakers.push(() => makeCharacter(
  46864. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  46865. {
  46866. nude: {
  46867. height: math.unit(8, "feet"),
  46868. weight: math.unit(225, "lb"),
  46869. name: "Nude",
  46870. image: {
  46871. source: "./media/characters/marvy/nude.svg",
  46872. extra: 1900/1683,
  46873. bottom: 89/1989
  46874. }
  46875. },
  46876. dressed: {
  46877. height: math.unit(8, "feet"),
  46878. weight: math.unit(225, "lb"),
  46879. name: "Dressed",
  46880. image: {
  46881. source: "./media/characters/marvy/dressed.svg",
  46882. extra: 1900/1683,
  46883. bottom: 89/1989
  46884. }
  46885. },
  46886. head: {
  46887. height: math.unit(2.85, "feet"),
  46888. name: "Head",
  46889. image: {
  46890. source: "./media/characters/marvy/head.svg"
  46891. }
  46892. },
  46893. },
  46894. [
  46895. {
  46896. name: "Normal",
  46897. height: math.unit(8, "feet"),
  46898. default: true
  46899. },
  46900. ]
  46901. ))
  46902. characterMakers.push(() => makeCharacter(
  46903. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46904. {
  46905. front: {
  46906. height: math.unit(8, "feet"),
  46907. weight: math.unit(250, "lb"),
  46908. name: "Front",
  46909. image: {
  46910. source: "./media/characters/leah/front.svg",
  46911. extra: 1257/1149,
  46912. bottom: 109/1366
  46913. }
  46914. },
  46915. },
  46916. [
  46917. {
  46918. name: "Normal",
  46919. height: math.unit(8, "feet"),
  46920. default: true
  46921. },
  46922. {
  46923. name: "Minimacro",
  46924. height: math.unit(40, "feet")
  46925. },
  46926. {
  46927. name: "Macro",
  46928. height: math.unit(124, "feet")
  46929. },
  46930. {
  46931. name: "Megamacro",
  46932. height: math.unit(850, "feet")
  46933. },
  46934. ]
  46935. ))
  46936. characterMakers.push(() => makeCharacter(
  46937. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46938. {
  46939. side: {
  46940. height: math.unit(13 + 6/12, "feet"),
  46941. weight: math.unit(3200, "lb"),
  46942. name: "Side",
  46943. image: {
  46944. source: "./media/characters/alvir/side.svg",
  46945. extra: 896/589,
  46946. bottom: 26/922
  46947. }
  46948. },
  46949. },
  46950. [
  46951. {
  46952. name: "Normal",
  46953. height: math.unit(13 + 6/12, "feet"),
  46954. default: true
  46955. },
  46956. ]
  46957. ))
  46958. characterMakers.push(() => makeCharacter(
  46959. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46960. {
  46961. front: {
  46962. height: math.unit(5 + 4/12, "feet"),
  46963. weight: math.unit(236, "lb"),
  46964. name: "Front",
  46965. image: {
  46966. source: "./media/characters/zaina-khalil/front.svg",
  46967. extra: 1533/1485,
  46968. bottom: 94/1627
  46969. }
  46970. },
  46971. side: {
  46972. height: math.unit(5 + 4/12, "feet"),
  46973. weight: math.unit(236, "lb"),
  46974. name: "Side",
  46975. image: {
  46976. source: "./media/characters/zaina-khalil/side.svg",
  46977. extra: 1537/1498,
  46978. bottom: 66/1603
  46979. }
  46980. },
  46981. back: {
  46982. height: math.unit(5 + 4/12, "feet"),
  46983. weight: math.unit(236, "lb"),
  46984. name: "Back",
  46985. image: {
  46986. source: "./media/characters/zaina-khalil/back.svg",
  46987. extra: 1546/1494,
  46988. bottom: 89/1635
  46989. }
  46990. },
  46991. },
  46992. [
  46993. {
  46994. name: "Normal",
  46995. height: math.unit(5 + 4/12, "feet"),
  46996. default: true
  46997. },
  46998. ]
  46999. ))
  47000. characterMakers.push(() => makeCharacter(
  47001. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47002. {
  47003. side: {
  47004. height: math.unit(12, "feet"),
  47005. weight: math.unit(4000, "lb"),
  47006. name: "Side",
  47007. image: {
  47008. source: "./media/characters/terry/side.svg",
  47009. extra: 1518/1439,
  47010. bottom: 149/1667
  47011. }
  47012. },
  47013. },
  47014. [
  47015. {
  47016. name: "Normal",
  47017. height: math.unit(12, "feet"),
  47018. default: true
  47019. },
  47020. ]
  47021. ))
  47022. characterMakers.push(() => makeCharacter(
  47023. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47024. {
  47025. front: {
  47026. height: math.unit(12, "feet"),
  47027. weight: math.unit(1500, "lb"),
  47028. name: "Front",
  47029. image: {
  47030. source: "./media/characters/kahea/front.svg",
  47031. extra: 1722/1617,
  47032. bottom: 179/1901
  47033. }
  47034. },
  47035. },
  47036. [
  47037. {
  47038. name: "Normal",
  47039. height: math.unit(12, "feet"),
  47040. default: true
  47041. },
  47042. ]
  47043. ))
  47044. characterMakers.push(() => makeCharacter(
  47045. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47046. {
  47047. demonFront: {
  47048. height: math.unit(36, "feet"),
  47049. name: "Front",
  47050. image: {
  47051. source: "./media/characters/alex-xuria/demon-front.svg",
  47052. extra: 1705/1673,
  47053. bottom: 198/1903
  47054. },
  47055. form: "demon",
  47056. default: true
  47057. },
  47058. demonBack: {
  47059. height: math.unit(36, "feet"),
  47060. name: "Back",
  47061. image: {
  47062. source: "./media/characters/alex-xuria/demon-back.svg",
  47063. extra: 1725/1693,
  47064. bottom: 70/1795
  47065. },
  47066. form: "demon"
  47067. },
  47068. demonHead: {
  47069. height: math.unit(2.14, "meters"),
  47070. name: "Head",
  47071. image: {
  47072. source: "./media/characters/alex-xuria/demon-head.svg"
  47073. },
  47074. form: "demon"
  47075. },
  47076. demonHand: {
  47077. height: math.unit(1.61, "meters"),
  47078. name: "Hand",
  47079. image: {
  47080. source: "./media/characters/alex-xuria/demon-hand.svg"
  47081. },
  47082. form: "demon"
  47083. },
  47084. demonPaw: {
  47085. height: math.unit(1.35, "meters"),
  47086. name: "Paw",
  47087. image: {
  47088. source: "./media/characters/alex-xuria/demon-paw.svg"
  47089. },
  47090. form: "demon"
  47091. },
  47092. demonFoot: {
  47093. height: math.unit(2.2, "meters"),
  47094. name: "Foot",
  47095. image: {
  47096. source: "./media/characters/alex-xuria/demon-foot.svg"
  47097. },
  47098. form: "demon"
  47099. },
  47100. demonCock: {
  47101. height: math.unit(1.74, "meters"),
  47102. name: "Cock",
  47103. image: {
  47104. source: "./media/characters/alex-xuria/demon-cock.svg"
  47105. },
  47106. form: "demon"
  47107. },
  47108. demonTailClosed: {
  47109. height: math.unit(1.47, "meters"),
  47110. name: "Tail (Closed)",
  47111. image: {
  47112. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47113. },
  47114. form: "demon"
  47115. },
  47116. demonTailOpen: {
  47117. height: math.unit(2.85, "meters"),
  47118. name: "Tail (Open)",
  47119. image: {
  47120. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47121. },
  47122. form: "demon"
  47123. },
  47124. incubusFront: {
  47125. height: math.unit(12, "feet"),
  47126. name: "Front",
  47127. image: {
  47128. source: "./media/characters/alex-xuria/incubus-front.svg",
  47129. extra: 1754/1677,
  47130. bottom: 125/1879
  47131. },
  47132. form: "incubus",
  47133. default: true
  47134. },
  47135. incubusBack: {
  47136. height: math.unit(12, "feet"),
  47137. name: "Back",
  47138. image: {
  47139. source: "./media/characters/alex-xuria/incubus-back.svg",
  47140. extra: 1702/1647,
  47141. bottom: 30/1732
  47142. },
  47143. form: "incubus"
  47144. },
  47145. incubusHead: {
  47146. height: math.unit(3.45, "feet"),
  47147. name: "Head",
  47148. image: {
  47149. source: "./media/characters/alex-xuria/incubus-head.svg"
  47150. },
  47151. form: "incubus"
  47152. },
  47153. rabbitFront: {
  47154. height: math.unit(6, "feet"),
  47155. name: "Front",
  47156. image: {
  47157. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47158. extra: 1369/1349,
  47159. bottom: 45/1414
  47160. },
  47161. form: "rabbit",
  47162. default: true
  47163. },
  47164. rabbitSide: {
  47165. height: math.unit(6, "feet"),
  47166. name: "Side",
  47167. image: {
  47168. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47169. extra: 1370/1356,
  47170. bottom: 37/1407
  47171. },
  47172. form: "rabbit"
  47173. },
  47174. rabbitBack: {
  47175. height: math.unit(6, "feet"),
  47176. name: "Back",
  47177. image: {
  47178. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47179. extra: 1375/1358,
  47180. bottom: 43/1418
  47181. },
  47182. form: "rabbit"
  47183. },
  47184. },
  47185. [
  47186. {
  47187. name: "Normal",
  47188. height: math.unit(6, "feet"),
  47189. default: true,
  47190. form: "rabbit"
  47191. },
  47192. {
  47193. name: "Incubus",
  47194. height: math.unit(12, "feet"),
  47195. default: true,
  47196. form: "incubus"
  47197. },
  47198. {
  47199. name: "Demon",
  47200. height: math.unit(36, "feet"),
  47201. default: true,
  47202. form: "demon"
  47203. }
  47204. ],
  47205. {
  47206. "demon": {
  47207. name: "Demon",
  47208. default: true
  47209. },
  47210. "incubus": {
  47211. name: "Incubus",
  47212. },
  47213. "rabbit": {
  47214. name: "Rabbit"
  47215. }
  47216. }
  47217. ))
  47218. characterMakers.push(() => makeCharacter(
  47219. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47220. {
  47221. front: {
  47222. height: math.unit(7 + 5/12, "feet"),
  47223. weight: math.unit(510, "lb"),
  47224. name: "Front",
  47225. image: {
  47226. source: "./media/characters/syrup/front.svg",
  47227. extra: 932/916,
  47228. bottom: 26/958
  47229. }
  47230. },
  47231. },
  47232. [
  47233. {
  47234. name: "Normal",
  47235. height: math.unit(7 + 5/12, "feet"),
  47236. default: true
  47237. },
  47238. {
  47239. name: "Big",
  47240. height: math.unit(50, "feet")
  47241. },
  47242. {
  47243. name: "Macro",
  47244. height: math.unit(300, "feet")
  47245. },
  47246. {
  47247. name: "Megamacro",
  47248. height: math.unit(1, "mile")
  47249. },
  47250. ]
  47251. ))
  47252. characterMakers.push(() => makeCharacter(
  47253. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47254. {
  47255. front: {
  47256. height: math.unit(6 + 9/12, "feet"),
  47257. name: "Front",
  47258. image: {
  47259. source: "./media/characters/zeimne/front.svg",
  47260. extra: 1969/1806,
  47261. bottom: 53/2022
  47262. }
  47263. },
  47264. },
  47265. [
  47266. {
  47267. name: "Normal",
  47268. height: math.unit(6 + 9/12, "feet"),
  47269. default: true
  47270. },
  47271. {
  47272. name: "Giant",
  47273. height: math.unit(550, "feet")
  47274. },
  47275. {
  47276. name: "Mega",
  47277. height: math.unit(3, "miles")
  47278. },
  47279. {
  47280. name: "Giga",
  47281. height: math.unit(250, "miles")
  47282. },
  47283. {
  47284. name: "Tera",
  47285. height: math.unit(1, "AU")
  47286. },
  47287. ]
  47288. ))
  47289. characterMakers.push(() => makeCharacter(
  47290. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47291. {
  47292. front: {
  47293. height: math.unit(5 + 2/12, "feet"),
  47294. name: "Front",
  47295. image: {
  47296. source: "./media/characters/grar/front.svg",
  47297. extra: 1331/1119,
  47298. bottom: 60/1391
  47299. }
  47300. },
  47301. back: {
  47302. height: math.unit(5 + 2/12, "feet"),
  47303. name: "Back",
  47304. image: {
  47305. source: "./media/characters/grar/back.svg",
  47306. extra: 1385/1169,
  47307. bottom: 23/1408
  47308. }
  47309. },
  47310. },
  47311. [
  47312. {
  47313. name: "Normal",
  47314. height: math.unit(5 + 2/12, "feet"),
  47315. default: true
  47316. },
  47317. ]
  47318. ))
  47319. characterMakers.push(() => makeCharacter(
  47320. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47321. {
  47322. front: {
  47323. height: math.unit(13 + 7/12, "feet"),
  47324. weight: math.unit(2200, "lb"),
  47325. name: "Front",
  47326. image: {
  47327. source: "./media/characters/endraya/front.svg",
  47328. extra: 1289/1215,
  47329. bottom: 50/1339
  47330. }
  47331. },
  47332. nude: {
  47333. height: math.unit(13 + 7/12, "feet"),
  47334. weight: math.unit(2200, "lb"),
  47335. name: "Nude",
  47336. image: {
  47337. source: "./media/characters/endraya/nude.svg",
  47338. extra: 1247/1171,
  47339. bottom: 40/1287
  47340. }
  47341. },
  47342. head: {
  47343. height: math.unit(2.6, "feet"),
  47344. name: "Head",
  47345. image: {
  47346. source: "./media/characters/endraya/head.svg"
  47347. }
  47348. },
  47349. slit: {
  47350. height: math.unit(3.4, "feet"),
  47351. name: "Slit",
  47352. image: {
  47353. source: "./media/characters/endraya/slit.svg"
  47354. }
  47355. },
  47356. },
  47357. [
  47358. {
  47359. name: "Normal",
  47360. height: math.unit(13 + 7/12, "feet"),
  47361. default: true
  47362. },
  47363. {
  47364. name: "Macro",
  47365. height: math.unit(200, "feet")
  47366. },
  47367. ]
  47368. ))
  47369. characterMakers.push(() => makeCharacter(
  47370. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47371. {
  47372. front: {
  47373. height: math.unit(1.81, "meters"),
  47374. weight: math.unit(69, "kg"),
  47375. name: "Front",
  47376. image: {
  47377. source: "./media/characters/rodryana/front.svg",
  47378. extra: 2002/1921,
  47379. bottom: 53/2055
  47380. }
  47381. },
  47382. back: {
  47383. height: math.unit(1.81, "meters"),
  47384. weight: math.unit(69, "kg"),
  47385. name: "Back",
  47386. image: {
  47387. source: "./media/characters/rodryana/back.svg",
  47388. extra: 1993/1926,
  47389. bottom: 48/2041
  47390. }
  47391. },
  47392. maw: {
  47393. height: math.unit(0.19769417475, "meters"),
  47394. name: "Maw",
  47395. image: {
  47396. source: "./media/characters/rodryana/maw.svg"
  47397. }
  47398. },
  47399. slit: {
  47400. height: math.unit(0.31631067961, "meters"),
  47401. name: "Slit",
  47402. image: {
  47403. source: "./media/characters/rodryana/slit.svg"
  47404. }
  47405. },
  47406. },
  47407. [
  47408. {
  47409. name: "Normal",
  47410. height: math.unit(1.81, "meters")
  47411. },
  47412. {
  47413. name: "Mini Macro",
  47414. height: math.unit(181, "meters")
  47415. },
  47416. {
  47417. name: "Macro",
  47418. height: math.unit(452, "meters"),
  47419. default: true
  47420. },
  47421. {
  47422. name: "Mega Macro",
  47423. height: math.unit(1.375, "km")
  47424. },
  47425. {
  47426. name: "Giga Macro",
  47427. height: math.unit(13.575, "km")
  47428. },
  47429. ]
  47430. ))
  47431. characterMakers.push(() => makeCharacter(
  47432. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47433. {
  47434. front: {
  47435. height: math.unit(6, "feet"),
  47436. weight: math.unit(1000, "lb"),
  47437. name: "Front",
  47438. image: {
  47439. source: "./media/characters/asaya/front.svg",
  47440. extra: 1460/1200,
  47441. bottom: 71/1531
  47442. }
  47443. },
  47444. },
  47445. [
  47446. {
  47447. name: "Normal",
  47448. height: math.unit(8, "km"),
  47449. default: true
  47450. },
  47451. ]
  47452. ))
  47453. characterMakers.push(() => makeCharacter(
  47454. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47455. {
  47456. front: {
  47457. height: math.unit(3.5, "meters"),
  47458. name: "Front",
  47459. image: {
  47460. source: "./media/characters/sarzu-and-israz/front.svg",
  47461. extra: 1570/1558,
  47462. bottom: 150/1720
  47463. },
  47464. },
  47465. back: {
  47466. height: math.unit(3.5, "meters"),
  47467. name: "Back",
  47468. image: {
  47469. source: "./media/characters/sarzu-and-israz/back.svg",
  47470. extra: 1523/1509,
  47471. bottom: 132/1655
  47472. },
  47473. },
  47474. frontFemale: {
  47475. height: math.unit(3.5, "meters"),
  47476. name: "Front (Female)",
  47477. image: {
  47478. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47479. extra: 1570/1558,
  47480. bottom: 150/1720
  47481. },
  47482. },
  47483. frontHerm: {
  47484. height: math.unit(3.5, "meters"),
  47485. name: "Front (Herm)",
  47486. image: {
  47487. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47488. extra: 1570/1558,
  47489. bottom: 150/1720
  47490. },
  47491. },
  47492. },
  47493. [
  47494. {
  47495. name: "Normal",
  47496. height: math.unit(3.5, "meters"),
  47497. default: true,
  47498. },
  47499. {
  47500. name: "Macro",
  47501. height: math.unit(65.5, "meters"),
  47502. },
  47503. ],
  47504. ))
  47505. characterMakers.push(() => makeCharacter(
  47506. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47507. {
  47508. front: {
  47509. height: math.unit(6, "feet"),
  47510. weight: math.unit(250, "lb"),
  47511. name: "Front",
  47512. image: {
  47513. source: "./media/characters/zenimma/front.svg",
  47514. extra: 1346/1320,
  47515. bottom: 58/1404
  47516. }
  47517. },
  47518. back: {
  47519. height: math.unit(6, "feet"),
  47520. weight: math.unit(250, "lb"),
  47521. name: "Back",
  47522. image: {
  47523. source: "./media/characters/zenimma/back.svg",
  47524. extra: 1324/1308,
  47525. bottom: 44/1368
  47526. }
  47527. },
  47528. dick: {
  47529. height: math.unit(1.44, "feet"),
  47530. name: "Dick",
  47531. image: {
  47532. source: "./media/characters/zenimma/dick.svg"
  47533. }
  47534. },
  47535. },
  47536. [
  47537. {
  47538. name: "Canon Height",
  47539. height: math.unit(66, "miles"),
  47540. default: true
  47541. },
  47542. ]
  47543. ))
  47544. characterMakers.push(() => makeCharacter(
  47545. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47546. {
  47547. nude: {
  47548. height: math.unit(6, "feet"),
  47549. weight: math.unit(150, "lb"),
  47550. name: "Nude",
  47551. image: {
  47552. source: "./media/characters/shavon/nude.svg",
  47553. extra: 1242/1096,
  47554. bottom: 98/1340
  47555. }
  47556. },
  47557. dressed: {
  47558. height: math.unit(6, "feet"),
  47559. weight: math.unit(150, "lb"),
  47560. name: "Dressed",
  47561. image: {
  47562. source: "./media/characters/shavon/dressed.svg",
  47563. extra: 1242/1096,
  47564. bottom: 98/1340
  47565. }
  47566. },
  47567. },
  47568. [
  47569. {
  47570. name: "Macro",
  47571. height: math.unit(255, "feet"),
  47572. default: true
  47573. },
  47574. ]
  47575. ))
  47576. characterMakers.push(() => makeCharacter(
  47577. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47578. {
  47579. front: {
  47580. height: math.unit(6, "feet"),
  47581. name: "Front",
  47582. image: {
  47583. source: "./media/characters/steph/front.svg",
  47584. extra: 1430/1330,
  47585. bottom: 54/1484
  47586. }
  47587. },
  47588. },
  47589. [
  47590. {
  47591. name: "Normal",
  47592. height: math.unit(6, "feet"),
  47593. default: true
  47594. },
  47595. ]
  47596. ))
  47597. characterMakers.push(() => makeCharacter(
  47598. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47599. {
  47600. front: {
  47601. height: math.unit(9, "feet"),
  47602. weight: math.unit(400, "lb"),
  47603. name: "Front",
  47604. image: {
  47605. source: "./media/characters/kil'aman/front.svg",
  47606. extra: 1210/1159,
  47607. bottom: 109/1319
  47608. }
  47609. },
  47610. head: {
  47611. height: math.unit(2.14, "feet"),
  47612. name: "Head",
  47613. image: {
  47614. source: "./media/characters/kil'aman/head.svg"
  47615. }
  47616. },
  47617. maw: {
  47618. height: math.unit(1.21, "feet"),
  47619. name: "Maw",
  47620. image: {
  47621. source: "./media/characters/kil'aman/maw.svg"
  47622. }
  47623. },
  47624. foot: {
  47625. height: math.unit(1.7, "feet"),
  47626. name: "Foot",
  47627. image: {
  47628. source: "./media/characters/kil'aman/foot.svg"
  47629. }
  47630. },
  47631. dick: {
  47632. height: math.unit(2.1, "feet"),
  47633. name: "Dick",
  47634. image: {
  47635. source: "./media/characters/kil'aman/dick.svg"
  47636. }
  47637. },
  47638. },
  47639. [
  47640. {
  47641. name: "Normal",
  47642. height: math.unit(9, "feet")
  47643. },
  47644. {
  47645. name: "Canon Height",
  47646. height: math.unit(10, "miles"),
  47647. default: true
  47648. },
  47649. {
  47650. name: "Maximum",
  47651. height: math.unit(6e9, "miles")
  47652. },
  47653. ]
  47654. ))
  47655. characterMakers.push(() => makeCharacter(
  47656. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47657. {
  47658. front: {
  47659. height: math.unit(90, "feet"),
  47660. weight: math.unit(675000, "lb"),
  47661. name: "Front",
  47662. image: {
  47663. source: "./media/characters/qadan/front.svg",
  47664. extra: 1012/1004,
  47665. bottom: 78/1090
  47666. }
  47667. },
  47668. back: {
  47669. height: math.unit(90, "feet"),
  47670. weight: math.unit(675000, "lb"),
  47671. name: "Back",
  47672. image: {
  47673. source: "./media/characters/qadan/back.svg",
  47674. extra: 1042/1031,
  47675. bottom: 55/1097
  47676. }
  47677. },
  47678. armored: {
  47679. height: math.unit(90, "feet"),
  47680. weight: math.unit(675000, "lb"),
  47681. name: "Armored",
  47682. image: {
  47683. source: "./media/characters/qadan/armored.svg",
  47684. extra: 1047/1037,
  47685. bottom: 48/1095
  47686. }
  47687. },
  47688. },
  47689. [
  47690. {
  47691. name: "Normal",
  47692. height: math.unit(90, "feet"),
  47693. default: true
  47694. },
  47695. ]
  47696. ))
  47697. characterMakers.push(() => makeCharacter(
  47698. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47699. {
  47700. front: {
  47701. height: math.unit(6, "feet"),
  47702. weight: math.unit(225, "lb"),
  47703. name: "Front",
  47704. image: {
  47705. source: "./media/characters/brooke/front.svg",
  47706. extra: 1050/1010,
  47707. bottom: 66/1116
  47708. }
  47709. },
  47710. back: {
  47711. height: math.unit(6, "feet"),
  47712. weight: math.unit(225, "lb"),
  47713. name: "Back",
  47714. image: {
  47715. source: "./media/characters/brooke/back.svg",
  47716. extra: 1053/1013,
  47717. bottom: 41/1094
  47718. }
  47719. },
  47720. dressed: {
  47721. height: math.unit(6, "feet"),
  47722. weight: math.unit(225, "lb"),
  47723. name: "Dressed",
  47724. image: {
  47725. source: "./media/characters/brooke/dressed.svg",
  47726. extra: 1050/1010,
  47727. bottom: 66/1116
  47728. }
  47729. },
  47730. },
  47731. [
  47732. {
  47733. name: "Canon Height",
  47734. height: math.unit(500, "miles"),
  47735. default: true
  47736. },
  47737. ]
  47738. ))
  47739. characterMakers.push(() => makeCharacter(
  47740. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47741. {
  47742. front: {
  47743. height: math.unit(6 + 2/12, "feet"),
  47744. weight: math.unit(210, "lb"),
  47745. name: "Front",
  47746. image: {
  47747. source: "./media/characters/wubs/front.svg",
  47748. extra: 1345/1325,
  47749. bottom: 70/1415
  47750. }
  47751. },
  47752. back: {
  47753. height: math.unit(6 + 2/12, "feet"),
  47754. weight: math.unit(210, "lb"),
  47755. name: "Back",
  47756. image: {
  47757. source: "./media/characters/wubs/back.svg",
  47758. extra: 1296/1275,
  47759. bottom: 58/1354
  47760. }
  47761. },
  47762. },
  47763. [
  47764. {
  47765. name: "Normal",
  47766. height: math.unit(6 + 2/12, "feet"),
  47767. default: true
  47768. },
  47769. {
  47770. name: "Macro",
  47771. height: math.unit(1000, "feet")
  47772. },
  47773. {
  47774. name: "Megamacro",
  47775. height: math.unit(1, "mile")
  47776. },
  47777. ]
  47778. ))
  47779. characterMakers.push(() => makeCharacter(
  47780. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47781. {
  47782. front: {
  47783. height: math.unit(4, "feet"),
  47784. weight: math.unit(120, "lb"),
  47785. name: "Front",
  47786. image: {
  47787. source: "./media/characters/blue/front.svg",
  47788. extra: 1636/1525,
  47789. bottom: 43/1679
  47790. }
  47791. },
  47792. back: {
  47793. height: math.unit(4, "feet"),
  47794. weight: math.unit(120, "lb"),
  47795. name: "Back",
  47796. image: {
  47797. source: "./media/characters/blue/back.svg",
  47798. extra: 1660/1560,
  47799. bottom: 57/1717
  47800. }
  47801. },
  47802. paws: {
  47803. height: math.unit(0.826, "feet"),
  47804. name: "Paws",
  47805. image: {
  47806. source: "./media/characters/blue/paws.svg"
  47807. }
  47808. },
  47809. },
  47810. [
  47811. {
  47812. name: "Micro",
  47813. height: math.unit(3, "inches")
  47814. },
  47815. {
  47816. name: "Normal",
  47817. height: math.unit(4, "feet"),
  47818. default: true
  47819. },
  47820. {
  47821. name: "Femenine Form",
  47822. height: math.unit(14, "feet")
  47823. },
  47824. {
  47825. name: "Werebat Form",
  47826. height: math.unit(18, "feet")
  47827. },
  47828. ]
  47829. ))
  47830. characterMakers.push(() => makeCharacter(
  47831. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47832. {
  47833. female: {
  47834. height: math.unit(7 + 4/12, "feet"),
  47835. weight: math.unit(243, "lb"),
  47836. name: "Female",
  47837. image: {
  47838. source: "./media/characters/kaya/female.svg",
  47839. extra: 975/898,
  47840. bottom: 34/1009
  47841. }
  47842. },
  47843. herm: {
  47844. height: math.unit(7 + 4/12, "feet"),
  47845. weight: math.unit(243, "lb"),
  47846. name: "Herm",
  47847. image: {
  47848. source: "./media/characters/kaya/herm.svg",
  47849. extra: 975/898,
  47850. bottom: 34/1009
  47851. }
  47852. },
  47853. },
  47854. [
  47855. {
  47856. name: "Normal",
  47857. height: math.unit(7 + 4/12, "feet"),
  47858. default: true
  47859. },
  47860. ]
  47861. ))
  47862. characterMakers.push(() => makeCharacter(
  47863. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  47864. {
  47865. female: {
  47866. height: math.unit(9 + 4/12, "feet"),
  47867. weight: math.unit(398, "lb"),
  47868. name: "Female",
  47869. image: {
  47870. source: "./media/characters/kassandra/female.svg",
  47871. extra: 908/839,
  47872. bottom: 61/969
  47873. }
  47874. },
  47875. intersex: {
  47876. height: math.unit(9 + 4/12, "feet"),
  47877. weight: math.unit(398, "lb"),
  47878. name: "Intersex",
  47879. image: {
  47880. source: "./media/characters/kassandra/intersex.svg",
  47881. extra: 908/839,
  47882. bottom: 61/969
  47883. }
  47884. },
  47885. },
  47886. [
  47887. {
  47888. name: "Normal",
  47889. height: math.unit(9 + 4/12, "feet"),
  47890. default: true
  47891. },
  47892. ]
  47893. ))
  47894. characterMakers.push(() => makeCharacter(
  47895. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47896. {
  47897. front: {
  47898. height: math.unit(3, "meters"),
  47899. name: "Front",
  47900. image: {
  47901. source: "./media/characters/amy/front.svg",
  47902. extra: 1380/1343,
  47903. bottom: 70/1450
  47904. }
  47905. },
  47906. back: {
  47907. height: math.unit(3, "meters"),
  47908. name: "Back",
  47909. image: {
  47910. source: "./media/characters/amy/back.svg",
  47911. extra: 1380/1347,
  47912. bottom: 66/1446
  47913. }
  47914. },
  47915. },
  47916. [
  47917. {
  47918. name: "Normal",
  47919. height: math.unit(3, "meters"),
  47920. default: true
  47921. },
  47922. ]
  47923. ))
  47924. characterMakers.push(() => makeCharacter(
  47925. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47926. {
  47927. side: {
  47928. height: math.unit(47, "cm"),
  47929. weight: math.unit(10.8, "kg"),
  47930. name: "Side",
  47931. image: {
  47932. source: "./media/characters/alphaschakal/side.svg",
  47933. extra: 1058/568,
  47934. bottom: 62/1120
  47935. }
  47936. },
  47937. back: {
  47938. height: math.unit(78, "cm"),
  47939. weight: math.unit(10.8, "kg"),
  47940. name: "Back",
  47941. image: {
  47942. source: "./media/characters/alphaschakal/back.svg",
  47943. extra: 1102/942,
  47944. bottom: 185/1287
  47945. }
  47946. },
  47947. head: {
  47948. height: math.unit(28, "cm"),
  47949. name: "Head",
  47950. image: {
  47951. source: "./media/characters/alphaschakal/head.svg",
  47952. extra: 696/508,
  47953. bottom: 0/696
  47954. }
  47955. },
  47956. paw: {
  47957. height: math.unit(16, "cm"),
  47958. name: "Paw",
  47959. image: {
  47960. source: "./media/characters/alphaschakal/paw.svg"
  47961. }
  47962. },
  47963. },
  47964. [
  47965. {
  47966. name: "Normal",
  47967. height: math.unit(47, "cm"),
  47968. default: true
  47969. },
  47970. {
  47971. name: "Macro",
  47972. height: math.unit(340, "cm")
  47973. },
  47974. ]
  47975. ))
  47976. characterMakers.push(() => makeCharacter(
  47977. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47978. {
  47979. front: {
  47980. height: math.unit(36, "earths"),
  47981. name: "Front",
  47982. image: {
  47983. source: "./media/characters/ecobyss/front.svg",
  47984. extra: 1282/1215,
  47985. bottom: 11/1293
  47986. }
  47987. },
  47988. back: {
  47989. height: math.unit(36, "earths"),
  47990. name: "Back",
  47991. image: {
  47992. source: "./media/characters/ecobyss/back.svg",
  47993. extra: 1291/1222,
  47994. bottom: 8/1299
  47995. }
  47996. },
  47997. },
  47998. [
  47999. {
  48000. name: "Normal",
  48001. height: math.unit(36, "earths"),
  48002. default: true
  48003. },
  48004. ]
  48005. ))
  48006. characterMakers.push(() => makeCharacter(
  48007. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48008. {
  48009. front: {
  48010. height: math.unit(12, "feet"),
  48011. name: "Front",
  48012. image: {
  48013. source: "./media/characters/vasuk/front.svg",
  48014. extra: 1326/1207,
  48015. bottom: 64/1390
  48016. }
  48017. },
  48018. },
  48019. [
  48020. {
  48021. name: "Normal",
  48022. height: math.unit(12, "feet"),
  48023. default: true
  48024. },
  48025. ]
  48026. ))
  48027. characterMakers.push(() => makeCharacter(
  48028. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48029. {
  48030. side: {
  48031. height: math.unit(100, "feet"),
  48032. name: "Side",
  48033. image: {
  48034. source: "./media/characters/linneaus/side.svg",
  48035. extra: 987/807,
  48036. bottom: 47/1034
  48037. }
  48038. },
  48039. },
  48040. [
  48041. {
  48042. name: "Macro",
  48043. height: math.unit(100, "feet"),
  48044. default: true
  48045. },
  48046. ]
  48047. ))
  48048. characterMakers.push(() => makeCharacter(
  48049. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48050. {
  48051. front: {
  48052. height: math.unit(8, "feet"),
  48053. weight: math.unit(1200, "lb"),
  48054. name: "Front",
  48055. image: {
  48056. source: "./media/characters/nyterious-daligdig/front.svg",
  48057. extra: 1284/1094,
  48058. bottom: 84/1368
  48059. }
  48060. },
  48061. back: {
  48062. height: math.unit(8, "feet"),
  48063. weight: math.unit(1200, "lb"),
  48064. name: "Back",
  48065. image: {
  48066. source: "./media/characters/nyterious-daligdig/back.svg",
  48067. extra: 1301/1121,
  48068. bottom: 129/1430
  48069. }
  48070. },
  48071. mouth: {
  48072. height: math.unit(1.464, "feet"),
  48073. name: "Mouth",
  48074. image: {
  48075. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48076. }
  48077. },
  48078. },
  48079. [
  48080. {
  48081. name: "Small",
  48082. height: math.unit(8, "feet"),
  48083. default: true
  48084. },
  48085. {
  48086. name: "Normal",
  48087. height: math.unit(15, "feet")
  48088. },
  48089. {
  48090. name: "Macro",
  48091. height: math.unit(90, "feet")
  48092. },
  48093. ]
  48094. ))
  48095. characterMakers.push(() => makeCharacter(
  48096. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48097. {
  48098. front: {
  48099. height: math.unit(7 + 4/12, "feet"),
  48100. weight: math.unit(252, "lb"),
  48101. name: "Front",
  48102. image: {
  48103. source: "./media/characters/bandel/front.svg",
  48104. extra: 1946/1775,
  48105. bottom: 26/1972
  48106. }
  48107. },
  48108. back: {
  48109. height: math.unit(7 + 4/12, "feet"),
  48110. weight: math.unit(252, "lb"),
  48111. name: "Back",
  48112. image: {
  48113. source: "./media/characters/bandel/back.svg",
  48114. extra: 1940/1770,
  48115. bottom: 25/1965
  48116. }
  48117. },
  48118. maw: {
  48119. height: math.unit(2.15, "feet"),
  48120. name: "Maw",
  48121. image: {
  48122. source: "./media/characters/bandel/maw.svg"
  48123. }
  48124. },
  48125. stomach: {
  48126. height: math.unit(1.95, "feet"),
  48127. name: "Stomach",
  48128. image: {
  48129. source: "./media/characters/bandel/stomach.svg"
  48130. }
  48131. },
  48132. },
  48133. [
  48134. {
  48135. name: "Normal",
  48136. height: math.unit(7 + 4/12, "feet"),
  48137. default: true
  48138. },
  48139. ]
  48140. ))
  48141. characterMakers.push(() => makeCharacter(
  48142. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48143. {
  48144. front: {
  48145. height: math.unit(10 + 5/12, "feet"),
  48146. weight: math.unit(773.5, "kg"),
  48147. name: "Front",
  48148. image: {
  48149. source: "./media/characters/zed/front.svg",
  48150. extra: 987/941,
  48151. bottom: 52/1039
  48152. }
  48153. },
  48154. },
  48155. [
  48156. {
  48157. name: "Short",
  48158. height: math.unit(5 + 4/12, "feet")
  48159. },
  48160. {
  48161. name: "Average",
  48162. height: math.unit(10 + 5/12, "feet"),
  48163. default: true
  48164. },
  48165. {
  48166. name: "Mini-Macro",
  48167. height: math.unit(24 + 9/12, "feet")
  48168. },
  48169. {
  48170. name: "Macro",
  48171. height: math.unit(249, "feet")
  48172. },
  48173. {
  48174. name: "Mega-Macro",
  48175. height: math.unit(12490, "feet")
  48176. },
  48177. {
  48178. name: "Giga-Macro",
  48179. height: math.unit(24.9, "miles")
  48180. },
  48181. {
  48182. name: "Tera-Macro",
  48183. height: math.unit(24900, "miles")
  48184. },
  48185. {
  48186. name: "Cosmic Scale",
  48187. height: math.unit(38.9, "lightyears")
  48188. },
  48189. {
  48190. name: "Universal Scale",
  48191. height: math.unit(138e12, "lightyears")
  48192. },
  48193. ]
  48194. ))
  48195. characterMakers.push(() => makeCharacter(
  48196. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48197. {
  48198. front: {
  48199. height: math.unit(1561, "inches"),
  48200. name: "Front",
  48201. image: {
  48202. source: "./media/characters/ivan/front.svg",
  48203. extra: 1126/1071,
  48204. bottom: 26/1152
  48205. }
  48206. },
  48207. back: {
  48208. height: math.unit(1561, "inches"),
  48209. name: "Back",
  48210. image: {
  48211. source: "./media/characters/ivan/back.svg",
  48212. extra: 1134/1079,
  48213. bottom: 30/1164
  48214. }
  48215. },
  48216. },
  48217. [
  48218. {
  48219. name: "Normal",
  48220. height: math.unit(1561, "inches"),
  48221. default: true
  48222. },
  48223. ]
  48224. ))
  48225. characterMakers.push(() => makeCharacter(
  48226. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48227. {
  48228. front: {
  48229. height: math.unit(5 + 7/12, "feet"),
  48230. weight: math.unit(150, "lb"),
  48231. name: "Front",
  48232. image: {
  48233. source: "./media/characters/robin-arctic-hare/front.svg",
  48234. extra: 1148/974,
  48235. bottom: 20/1168
  48236. }
  48237. },
  48238. },
  48239. [
  48240. {
  48241. name: "Normal",
  48242. height: math.unit(5 + 7/12, "feet"),
  48243. default: true
  48244. },
  48245. ]
  48246. ))
  48247. characterMakers.push(() => makeCharacter(
  48248. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48249. {
  48250. side: {
  48251. height: math.unit(5, "feet"),
  48252. name: "Side",
  48253. image: {
  48254. source: "./media/characters/birch/side.svg",
  48255. extra: 985/796,
  48256. bottom: 111/1096
  48257. }
  48258. },
  48259. },
  48260. [
  48261. {
  48262. name: "Normal",
  48263. height: math.unit(5, "feet"),
  48264. default: true
  48265. },
  48266. ]
  48267. ))
  48268. characterMakers.push(() => makeCharacter(
  48269. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48270. {
  48271. front: {
  48272. height: math.unit(4, "feet"),
  48273. name: "Front",
  48274. image: {
  48275. source: "./media/characters/rasp/front.svg",
  48276. extra: 561/478,
  48277. bottom: 74/635
  48278. }
  48279. },
  48280. },
  48281. [
  48282. {
  48283. name: "Normal",
  48284. height: math.unit(4, "feet"),
  48285. default: true
  48286. },
  48287. ]
  48288. ))
  48289. characterMakers.push(() => makeCharacter(
  48290. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48291. {
  48292. front: {
  48293. height: math.unit(4 + 6/12, "feet"),
  48294. name: "Front",
  48295. image: {
  48296. source: "./media/characters/agatha/front.svg",
  48297. extra: 947/933,
  48298. bottom: 42/989
  48299. }
  48300. },
  48301. back: {
  48302. height: math.unit(4 + 6/12, "feet"),
  48303. name: "Back",
  48304. image: {
  48305. source: "./media/characters/agatha/back.svg",
  48306. extra: 935/922,
  48307. bottom: 48/983
  48308. }
  48309. },
  48310. },
  48311. [
  48312. {
  48313. name: "Normal",
  48314. height: math.unit(4 + 6 /12, "feet"),
  48315. default: true
  48316. },
  48317. {
  48318. name: "Max Size",
  48319. height: math.unit(500, "feet")
  48320. },
  48321. ]
  48322. ))
  48323. characterMakers.push(() => makeCharacter(
  48324. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48325. {
  48326. side: {
  48327. height: math.unit(30, "feet"),
  48328. name: "Side",
  48329. image: {
  48330. source: "./media/characters/roggy/side.svg",
  48331. extra: 909/643,
  48332. bottom: 63/972
  48333. }
  48334. },
  48335. lounging: {
  48336. height: math.unit(20, "feet"),
  48337. name: "Lounging",
  48338. image: {
  48339. source: "./media/characters/roggy/lounging.svg",
  48340. extra: 643/479,
  48341. bottom: 145/788
  48342. }
  48343. },
  48344. handpaw: {
  48345. height: math.unit(13.1, "feet"),
  48346. name: "Handpaw",
  48347. image: {
  48348. source: "./media/characters/roggy/handpaw.svg"
  48349. }
  48350. },
  48351. footpaw: {
  48352. height: math.unit(15.8, "feet"),
  48353. name: "Footpaw",
  48354. image: {
  48355. source: "./media/characters/roggy/footpaw.svg"
  48356. }
  48357. },
  48358. },
  48359. [
  48360. {
  48361. name: "Menacing",
  48362. height: math.unit(30, "feet"),
  48363. default: true
  48364. },
  48365. ]
  48366. ))
  48367. characterMakers.push(() => makeCharacter(
  48368. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48369. {
  48370. front: {
  48371. height: math.unit(5 + 7/12, "feet"),
  48372. weight: math.unit(135, "lb"),
  48373. name: "Front",
  48374. image: {
  48375. source: "./media/characters/naomi/front.svg",
  48376. extra: 1209/1154,
  48377. bottom: 129/1338
  48378. }
  48379. },
  48380. back: {
  48381. height: math.unit(5 + 7/12, "feet"),
  48382. weight: math.unit(135, "lb"),
  48383. name: "Back",
  48384. image: {
  48385. source: "./media/characters/naomi/back.svg",
  48386. extra: 1252/1190,
  48387. bottom: 23/1275
  48388. }
  48389. },
  48390. },
  48391. [
  48392. {
  48393. name: "Normal",
  48394. height: math.unit(5 + 7 /12, "feet"),
  48395. default: true
  48396. },
  48397. ]
  48398. ))
  48399. characterMakers.push(() => makeCharacter(
  48400. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48401. {
  48402. side: {
  48403. height: math.unit(35, "meters"),
  48404. name: "Side",
  48405. image: {
  48406. source: "./media/characters/kimpi/side.svg",
  48407. extra: 419/382,
  48408. bottom: 63/482
  48409. }
  48410. },
  48411. hand: {
  48412. height: math.unit(8.96, "meters"),
  48413. name: "Hand",
  48414. image: {
  48415. source: "./media/characters/kimpi/hand.svg"
  48416. }
  48417. },
  48418. },
  48419. [
  48420. {
  48421. name: "Normal",
  48422. height: math.unit(35, "meters"),
  48423. default: true
  48424. },
  48425. ]
  48426. ))
  48427. characterMakers.push(() => makeCharacter(
  48428. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48429. {
  48430. front: {
  48431. height: math.unit(4 + 4/12, "feet"),
  48432. name: "Front",
  48433. image: {
  48434. source: "./media/characters/pepper-purrloin/front.svg",
  48435. extra: 1141/1024,
  48436. bottom: 21/1162
  48437. }
  48438. },
  48439. },
  48440. [
  48441. {
  48442. name: "Normal",
  48443. height: math.unit(4 + 4/12, "feet"),
  48444. default: true
  48445. },
  48446. ]
  48447. ))
  48448. characterMakers.push(() => makeCharacter(
  48449. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48450. {
  48451. front: {
  48452. height: math.unit(6 + 2/12, "feet"),
  48453. name: "Front",
  48454. image: {
  48455. source: "./media/characters/raphael/front.svg",
  48456. extra: 1101/962,
  48457. bottom: 59/1160
  48458. }
  48459. },
  48460. },
  48461. [
  48462. {
  48463. name: "Normal",
  48464. height: math.unit(6 + 2/12, "feet"),
  48465. default: true
  48466. },
  48467. ]
  48468. ))
  48469. characterMakers.push(() => makeCharacter(
  48470. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48471. {
  48472. front: {
  48473. height: math.unit(6, "feet"),
  48474. weight: math.unit(150, "lb"),
  48475. name: "Front",
  48476. image: {
  48477. source: "./media/characters/victor-williams/front.svg",
  48478. extra: 1894/1825,
  48479. bottom: 67/1961
  48480. }
  48481. },
  48482. },
  48483. [
  48484. {
  48485. name: "Normal",
  48486. height: math.unit(6, "feet"),
  48487. default: true
  48488. },
  48489. ]
  48490. ))
  48491. characterMakers.push(() => makeCharacter(
  48492. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48493. {
  48494. front: {
  48495. height: math.unit(5 + 8/12, "feet"),
  48496. weight: math.unit(150, "lb"),
  48497. name: "Front",
  48498. image: {
  48499. source: "./media/characters/rachel/front.svg",
  48500. extra: 1902/1787,
  48501. bottom: 46/1948
  48502. }
  48503. },
  48504. },
  48505. [
  48506. {
  48507. name: "Base Height",
  48508. height: math.unit(5 + 8/12, "feet"),
  48509. default: true
  48510. },
  48511. {
  48512. name: "Macro",
  48513. height: math.unit(200, "feet")
  48514. },
  48515. {
  48516. name: "Mega Macro",
  48517. height: math.unit(1, "mile")
  48518. },
  48519. {
  48520. name: "Giga Macro",
  48521. height: math.unit(1500, "miles")
  48522. },
  48523. {
  48524. name: "Tera Macro",
  48525. height: math.unit(8000, "miles")
  48526. },
  48527. {
  48528. name: "Tera Macro+",
  48529. height: math.unit(2e5, "miles")
  48530. },
  48531. ]
  48532. ))
  48533. characterMakers.push(() => makeCharacter(
  48534. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48535. {
  48536. front: {
  48537. height: math.unit(6.5, "feet"),
  48538. name: "Front",
  48539. image: {
  48540. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48541. extra: 860/819,
  48542. bottom: 307/1167
  48543. }
  48544. },
  48545. back: {
  48546. height: math.unit(6.5, "feet"),
  48547. name: "Back",
  48548. image: {
  48549. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48550. extra: 880/837,
  48551. bottom: 395/1275
  48552. }
  48553. },
  48554. sleeping: {
  48555. height: math.unit(2.79, "feet"),
  48556. name: "Sleeping",
  48557. image: {
  48558. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48559. extra: 465/383,
  48560. bottom: 263/728
  48561. }
  48562. },
  48563. maw: {
  48564. height: math.unit(2.52, "feet"),
  48565. name: "Maw",
  48566. image: {
  48567. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48568. }
  48569. },
  48570. },
  48571. [
  48572. {
  48573. name: "Normal",
  48574. height: math.unit(6.5, "feet"),
  48575. default: true
  48576. },
  48577. ]
  48578. ))
  48579. characterMakers.push(() => makeCharacter(
  48580. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48581. {
  48582. front: {
  48583. height: math.unit(5, "feet"),
  48584. name: "Front",
  48585. image: {
  48586. source: "./media/characters/nova-nerium/front.svg",
  48587. extra: 1548/1392,
  48588. bottom: 374/1922
  48589. }
  48590. },
  48591. back: {
  48592. height: math.unit(5, "feet"),
  48593. name: "Back",
  48594. image: {
  48595. source: "./media/characters/nova-nerium/back.svg",
  48596. extra: 1658/1468,
  48597. bottom: 257/1915
  48598. }
  48599. },
  48600. },
  48601. [
  48602. {
  48603. name: "Normal",
  48604. height: math.unit(5, "feet"),
  48605. default: true
  48606. },
  48607. ]
  48608. ))
  48609. characterMakers.push(() => makeCharacter(
  48610. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48611. {
  48612. front: {
  48613. height: math.unit(5 + 4/12, "feet"),
  48614. name: "Front",
  48615. image: {
  48616. source: "./media/characters/ashe-pyriph/front.svg",
  48617. extra: 1935/1747,
  48618. bottom: 60/1995
  48619. }
  48620. },
  48621. },
  48622. [
  48623. {
  48624. name: "Normal",
  48625. height: math.unit(5 + 4/12, "feet"),
  48626. default: true
  48627. },
  48628. ]
  48629. ))
  48630. characterMakers.push(() => makeCharacter(
  48631. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48632. {
  48633. front: {
  48634. height: math.unit(8.7, "feet"),
  48635. name: "Front",
  48636. image: {
  48637. source: "./media/characters/flicker-wisp/front.svg",
  48638. extra: 1835/1613,
  48639. bottom: 449/2284
  48640. }
  48641. },
  48642. side: {
  48643. height: math.unit(8.7, "feet"),
  48644. name: "Side",
  48645. image: {
  48646. source: "./media/characters/flicker-wisp/side.svg",
  48647. extra: 1841/1642,
  48648. bottom: 336/2177
  48649. },
  48650. default: true
  48651. },
  48652. maw: {
  48653. height: math.unit(3.35, "feet"),
  48654. name: "Maw",
  48655. image: {
  48656. source: "./media/characters/flicker-wisp/maw.svg",
  48657. extra: 2338/1506,
  48658. bottom: 0/2338
  48659. }
  48660. },
  48661. ovipositor: {
  48662. height: math.unit(4.95, "feet"),
  48663. name: "Ovipositor",
  48664. image: {
  48665. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48666. }
  48667. },
  48668. egg: {
  48669. height: math.unit(0.385, "feet"),
  48670. weight: math.unit(2, "lb"),
  48671. name: "Egg",
  48672. image: {
  48673. source: "./media/characters/flicker-wisp/egg.svg"
  48674. }
  48675. },
  48676. },
  48677. [
  48678. {
  48679. name: "Normal",
  48680. height: math.unit(8.7, "feet"),
  48681. default: true
  48682. },
  48683. ]
  48684. ))
  48685. characterMakers.push(() => makeCharacter(
  48686. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48687. {
  48688. side: {
  48689. height: math.unit(11, "feet"),
  48690. name: "Side",
  48691. image: {
  48692. source: "./media/characters/faefnul/side.svg",
  48693. extra: 1100/1007,
  48694. bottom: 0/1100
  48695. }
  48696. },
  48697. },
  48698. [
  48699. {
  48700. name: "Normal",
  48701. height: math.unit(11, "feet"),
  48702. default: true
  48703. },
  48704. ]
  48705. ))
  48706. characterMakers.push(() => makeCharacter(
  48707. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48708. {
  48709. front: {
  48710. height: math.unit(6 + 2/12, "feet"),
  48711. name: "Front",
  48712. image: {
  48713. source: "./media/characters/shady/front.svg",
  48714. extra: 502/461,
  48715. bottom: 9/511
  48716. }
  48717. },
  48718. kneeling: {
  48719. height: math.unit(4.6, "feet"),
  48720. name: "Kneeling",
  48721. image: {
  48722. source: "./media/characters/shady/kneeling.svg",
  48723. extra: 1328/1219,
  48724. bottom: 117/1445
  48725. }
  48726. },
  48727. maw: {
  48728. height: math.unit(2, "feet"),
  48729. name: "Maw",
  48730. image: {
  48731. source: "./media/characters/shady/maw.svg"
  48732. }
  48733. },
  48734. },
  48735. [
  48736. {
  48737. name: "Nano",
  48738. height: math.unit(1, "mm")
  48739. },
  48740. {
  48741. name: "Micro",
  48742. height: math.unit(12, "mm")
  48743. },
  48744. {
  48745. name: "Tiny",
  48746. height: math.unit(3, "inches")
  48747. },
  48748. {
  48749. name: "Normal",
  48750. height: math.unit(6 + 2/12, "feet"),
  48751. default: true
  48752. },
  48753. {
  48754. name: "Big",
  48755. height: math.unit(15, "feet")
  48756. },
  48757. {
  48758. name: "Macro",
  48759. height: math.unit(150, "feet")
  48760. },
  48761. {
  48762. name: "Titanic",
  48763. height: math.unit(500, "feet")
  48764. },
  48765. ]
  48766. ))
  48767. characterMakers.push(() => makeCharacter(
  48768. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48769. {
  48770. front: {
  48771. height: math.unit(12, "feet"),
  48772. name: "Front",
  48773. image: {
  48774. source: "./media/characters/fenrir/front.svg",
  48775. extra: 968/875,
  48776. bottom: 22/990
  48777. }
  48778. },
  48779. },
  48780. [
  48781. {
  48782. name: "Big",
  48783. height: math.unit(12, "feet"),
  48784. default: true
  48785. },
  48786. ]
  48787. ))
  48788. characterMakers.push(() => makeCharacter(
  48789. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48790. {
  48791. front: {
  48792. height: math.unit(5 + 4/12, "feet"),
  48793. name: "Front",
  48794. image: {
  48795. source: "./media/characters/makar/front.svg",
  48796. extra: 1181/1112,
  48797. bottom: 78/1259
  48798. }
  48799. },
  48800. },
  48801. [
  48802. {
  48803. name: "Normal",
  48804. height: math.unit(5 + 4/12, "feet"),
  48805. default: true
  48806. },
  48807. ]
  48808. ))
  48809. characterMakers.push(() => makeCharacter(
  48810. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48811. {
  48812. front: {
  48813. height: math.unit(5 + 7/12, "feet"),
  48814. name: "Front",
  48815. image: {
  48816. source: "./media/characters/callow/front.svg",
  48817. extra: 1482/1304,
  48818. bottom: 23/1505
  48819. }
  48820. },
  48821. back: {
  48822. height: math.unit(5 + 7/12, "feet"),
  48823. name: "Back",
  48824. image: {
  48825. source: "./media/characters/callow/back.svg",
  48826. extra: 1484/1296,
  48827. bottom: 25/1509
  48828. }
  48829. },
  48830. },
  48831. [
  48832. {
  48833. name: "Micro",
  48834. height: math.unit(3, "inches"),
  48835. default: true
  48836. },
  48837. {
  48838. name: "Normal",
  48839. height: math.unit(5 + 7/12, "feet")
  48840. },
  48841. ]
  48842. ))
  48843. characterMakers.push(() => makeCharacter(
  48844. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48845. {
  48846. front: {
  48847. height: math.unit(6 + 2/12, "feet"),
  48848. name: "Front",
  48849. image: {
  48850. source: "./media/characters/natel/front.svg",
  48851. extra: 1833/1692,
  48852. bottom: 166/1999
  48853. }
  48854. },
  48855. },
  48856. [
  48857. {
  48858. name: "Normal",
  48859. height: math.unit(6 + 2/12, "feet"),
  48860. default: true
  48861. },
  48862. ]
  48863. ))
  48864. characterMakers.push(() => makeCharacter(
  48865. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  48866. {
  48867. front: {
  48868. height: math.unit(1.75, "meters"),
  48869. name: "Front",
  48870. image: {
  48871. source: "./media/characters/misu/front.svg",
  48872. extra: 1690/1558,
  48873. bottom: 234/1924
  48874. }
  48875. },
  48876. back: {
  48877. height: math.unit(1.75, "meters"),
  48878. name: "Back",
  48879. image: {
  48880. source: "./media/characters/misu/back.svg",
  48881. extra: 1762/1618,
  48882. bottom: 146/1908
  48883. }
  48884. },
  48885. frontNude: {
  48886. height: math.unit(1.75, "meters"),
  48887. name: "Front (Nude)",
  48888. image: {
  48889. source: "./media/characters/misu/front-nude.svg",
  48890. extra: 1690/1558,
  48891. bottom: 234/1924
  48892. }
  48893. },
  48894. backNude: {
  48895. height: math.unit(1.75, "meters"),
  48896. name: "Back (Nude)",
  48897. image: {
  48898. source: "./media/characters/misu/back-nude.svg",
  48899. extra: 1762/1618,
  48900. bottom: 146/1908
  48901. }
  48902. },
  48903. frontErect: {
  48904. height: math.unit(1.75, "meters"),
  48905. name: "Front (Erect)",
  48906. image: {
  48907. source: "./media/characters/misu/front-erect.svg",
  48908. extra: 1690/1558,
  48909. bottom: 234/1924
  48910. }
  48911. },
  48912. maw: {
  48913. height: math.unit(0.47, "meters"),
  48914. name: "Maw",
  48915. image: {
  48916. source: "./media/characters/misu/maw.svg"
  48917. }
  48918. },
  48919. head: {
  48920. height: math.unit(0.35, "meters"),
  48921. name: "Head",
  48922. image: {
  48923. source: "./media/characters/misu/head.svg"
  48924. }
  48925. },
  48926. rear: {
  48927. height: math.unit(0.47, "meters"),
  48928. name: "Rear",
  48929. image: {
  48930. source: "./media/characters/misu/rear.svg"
  48931. }
  48932. },
  48933. },
  48934. [
  48935. {
  48936. name: "Normal",
  48937. height: math.unit(1.75, "meters")
  48938. },
  48939. {
  48940. name: "Not good for the people",
  48941. height: math.unit(42, "meters")
  48942. },
  48943. {
  48944. name: "Not good for the neighborhood",
  48945. height: math.unit(135, "meters")
  48946. },
  48947. {
  48948. name: "Bit bigger problem",
  48949. height: math.unit(380, "meters"),
  48950. default: true
  48951. },
  48952. {
  48953. name: "Not good for the city",
  48954. height: math.unit(1.5, "km")
  48955. },
  48956. {
  48957. name: "Not good for the county",
  48958. height: math.unit(5.5, "km")
  48959. },
  48960. {
  48961. name: "Not good for the state",
  48962. height: math.unit(25, "km")
  48963. },
  48964. {
  48965. name: "Not good for the country",
  48966. height: math.unit(125, "km")
  48967. },
  48968. {
  48969. name: "Not good for the continent",
  48970. height: math.unit(2100, "km")
  48971. },
  48972. {
  48973. name: "Not good for the planet",
  48974. height: math.unit(35000, "km")
  48975. },
  48976. {
  48977. name: "Just no",
  48978. height: math.unit(8.5e18, "km")
  48979. },
  48980. ]
  48981. ))
  48982. characterMakers.push(() => makeCharacter(
  48983. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48984. {
  48985. front: {
  48986. height: math.unit(6.5, "feet"),
  48987. name: "Front",
  48988. image: {
  48989. source: "./media/characters/poppy/front.svg",
  48990. extra: 1878/1812,
  48991. bottom: 43/1921
  48992. }
  48993. },
  48994. feet: {
  48995. height: math.unit(1.06, "feet"),
  48996. name: "Feet",
  48997. image: {
  48998. source: "./media/characters/poppy/feet.svg",
  48999. extra: 1083/1083,
  49000. bottom: 87/1170
  49001. }
  49002. },
  49003. },
  49004. [
  49005. {
  49006. name: "Human",
  49007. height: math.unit(6.5, "feet")
  49008. },
  49009. {
  49010. name: "Default",
  49011. height: math.unit(300, "feet"),
  49012. default: true
  49013. },
  49014. {
  49015. name: "Huge",
  49016. height: math.unit(850, "feet")
  49017. },
  49018. {
  49019. name: "Mega",
  49020. height: math.unit(8000, "feet")
  49021. },
  49022. {
  49023. name: "Giga",
  49024. height: math.unit(300, "miles")
  49025. },
  49026. ]
  49027. ))
  49028. characterMakers.push(() => makeCharacter(
  49029. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49030. {
  49031. bipedal: {
  49032. height: math.unit(7, "feet"),
  49033. name: "Bipedal",
  49034. image: {
  49035. source: "./media/characters/zener/bipedal.svg",
  49036. extra: 874/805,
  49037. bottom: 109/983
  49038. }
  49039. },
  49040. quadrupedal: {
  49041. height: math.unit(4.64, "feet"),
  49042. name: "Quadrupedal",
  49043. image: {
  49044. source: "./media/characters/zener/quadrupedal.svg",
  49045. extra: 638/507,
  49046. bottom: 190/828
  49047. }
  49048. },
  49049. cock: {
  49050. height: math.unit(18, "inches"),
  49051. name: "Cock",
  49052. image: {
  49053. source: "./media/characters/zener/cock.svg"
  49054. }
  49055. },
  49056. },
  49057. [
  49058. {
  49059. name: "Normal",
  49060. height: math.unit(7, "feet"),
  49061. default: true
  49062. },
  49063. ]
  49064. ))
  49065. characterMakers.push(() => makeCharacter(
  49066. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49067. {
  49068. nude: {
  49069. height: math.unit(5 + 6/12, "feet"),
  49070. name: "Nude",
  49071. image: {
  49072. source: "./media/characters/charlie-dog/nude.svg",
  49073. extra: 768/734,
  49074. bottom: 26/794
  49075. }
  49076. },
  49077. dressed: {
  49078. height: math.unit(5 + 6/12, "feet"),
  49079. name: "Dressed",
  49080. image: {
  49081. source: "./media/characters/charlie-dog/dressed.svg",
  49082. extra: 768/734,
  49083. bottom: 26/794
  49084. }
  49085. },
  49086. },
  49087. [
  49088. {
  49089. name: "Normal",
  49090. height: math.unit(5 + 6/12, "feet"),
  49091. default: true
  49092. },
  49093. ]
  49094. ))
  49095. characterMakers.push(() => makeCharacter(
  49096. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49097. {
  49098. front: {
  49099. height: math.unit(6 + 4/12, "feet"),
  49100. name: "Front",
  49101. image: {
  49102. source: "./media/characters/ir'istrasz/front.svg",
  49103. extra: 1014/977,
  49104. bottom: 65/1079
  49105. }
  49106. },
  49107. back: {
  49108. height: math.unit(6 + 4/12, "feet"),
  49109. name: "Back",
  49110. image: {
  49111. source: "./media/characters/ir'istrasz/back.svg",
  49112. extra: 1024/992,
  49113. bottom: 34/1058
  49114. }
  49115. },
  49116. },
  49117. [
  49118. {
  49119. name: "Normal",
  49120. height: math.unit(6 + 4/12, "feet"),
  49121. default: true
  49122. },
  49123. ]
  49124. ))
  49125. characterMakers.push(() => makeCharacter(
  49126. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49127. {
  49128. front: {
  49129. height: math.unit(5 + 8/12, "feet"),
  49130. name: "Front",
  49131. image: {
  49132. source: "./media/characters/dee-ditto/front.svg",
  49133. extra: 1874/1785,
  49134. bottom: 68/1942
  49135. }
  49136. },
  49137. back: {
  49138. height: math.unit(5 + 8/12, "feet"),
  49139. name: "Back",
  49140. image: {
  49141. source: "./media/characters/dee-ditto/back.svg",
  49142. extra: 1870/1783,
  49143. bottom: 77/1947
  49144. }
  49145. },
  49146. },
  49147. [
  49148. {
  49149. name: "Normal",
  49150. height: math.unit(5 + 8/12, "feet"),
  49151. default: true
  49152. },
  49153. ]
  49154. ))
  49155. characterMakers.push(() => makeCharacter(
  49156. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49157. {
  49158. front: {
  49159. height: math.unit(7 + 6/12, "feet"),
  49160. name: "Front",
  49161. image: {
  49162. source: "./media/characters/fey/front.svg",
  49163. extra: 995/979,
  49164. bottom: 30/1025
  49165. }
  49166. },
  49167. back: {
  49168. height: math.unit(7 + 6/12, "feet"),
  49169. name: "Back",
  49170. image: {
  49171. source: "./media/characters/fey/back.svg",
  49172. extra: 1079/1008,
  49173. bottom: 5/1084
  49174. }
  49175. },
  49176. dressed: {
  49177. height: math.unit(7 + 6/12, "feet"),
  49178. name: "Dressed",
  49179. image: {
  49180. source: "./media/characters/fey/dressed.svg",
  49181. extra: 995/979,
  49182. bottom: 30/1025
  49183. }
  49184. },
  49185. },
  49186. [
  49187. {
  49188. name: "Normal",
  49189. height: math.unit(7 + 6/12, "feet"),
  49190. default: true
  49191. },
  49192. ]
  49193. ))
  49194. characterMakers.push(() => makeCharacter(
  49195. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49196. {
  49197. standing: {
  49198. height: math.unit(17, "feet"),
  49199. name: "Standing",
  49200. image: {
  49201. source: "./media/characters/aster/standing.svg",
  49202. extra: 1798/1598,
  49203. bottom: 117/1915
  49204. }
  49205. },
  49206. },
  49207. [
  49208. {
  49209. name: "Normal",
  49210. height: math.unit(17, "feet"),
  49211. default: true
  49212. },
  49213. {
  49214. name: "Homewrecker",
  49215. height: math.unit(95, "feet")
  49216. },
  49217. {
  49218. name: "Planet Devourer",
  49219. height: math.unit(1008000, "miles")
  49220. },
  49221. ]
  49222. ))
  49223. characterMakers.push(() => makeCharacter(
  49224. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49225. {
  49226. front: {
  49227. height: math.unit(6 + 5/12, "feet"),
  49228. weight: math.unit(265, "lb"),
  49229. name: "Front",
  49230. image: {
  49231. source: "./media/characters/devon-childs/front.svg",
  49232. extra: 1795/1721,
  49233. bottom: 41/1836
  49234. }
  49235. },
  49236. side: {
  49237. height: math.unit(6 + 5/12, "feet"),
  49238. weight: math.unit(265, "lb"),
  49239. name: "Side",
  49240. image: {
  49241. source: "./media/characters/devon-childs/side.svg",
  49242. extra: 1812/1738,
  49243. bottom: 30/1842
  49244. }
  49245. },
  49246. back: {
  49247. height: math.unit(6 + 5/12, "feet"),
  49248. weight: math.unit(265, "lb"),
  49249. name: "Back",
  49250. image: {
  49251. source: "./media/characters/devon-childs/back.svg",
  49252. extra: 1808/1735,
  49253. bottom: 23/1831
  49254. }
  49255. },
  49256. hand: {
  49257. height: math.unit(1.464, "feet"),
  49258. name: "Hand",
  49259. image: {
  49260. source: "./media/characters/devon-childs/hand.svg"
  49261. }
  49262. },
  49263. foot: {
  49264. height: math.unit(1.6, "feet"),
  49265. name: "Foot",
  49266. image: {
  49267. source: "./media/characters/devon-childs/foot.svg"
  49268. }
  49269. },
  49270. },
  49271. [
  49272. {
  49273. name: "Micro",
  49274. height: math.unit(7, "cm")
  49275. },
  49276. {
  49277. name: "Normal",
  49278. height: math.unit(6 + 5/12, "feet"),
  49279. default: true
  49280. },
  49281. {
  49282. name: "Macro",
  49283. height: math.unit(154, "feet")
  49284. },
  49285. ]
  49286. ))
  49287. characterMakers.push(() => makeCharacter(
  49288. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49289. {
  49290. front: {
  49291. height: math.unit(6, "feet"),
  49292. weight: math.unit(180, "lb"),
  49293. name: "Front",
  49294. image: {
  49295. source: "./media/characters/lydemox-vir/front.svg",
  49296. extra: 1632/1435,
  49297. bottom: 58/1690
  49298. }
  49299. },
  49300. frontSFW: {
  49301. height: math.unit(6, "feet"),
  49302. weight: math.unit(180, "lb"),
  49303. name: "Front (SFW)",
  49304. image: {
  49305. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49306. extra: 1632/1435,
  49307. bottom: 58/1690
  49308. }
  49309. },
  49310. back: {
  49311. height: math.unit(6, "feet"),
  49312. weight: math.unit(180, "lb"),
  49313. name: "Back",
  49314. image: {
  49315. source: "./media/characters/lydemox-vir/back.svg",
  49316. extra: 1593/1408,
  49317. bottom: 31/1624
  49318. }
  49319. },
  49320. paw: {
  49321. height: math.unit(1.85, "feet"),
  49322. name: "Paw",
  49323. image: {
  49324. source: "./media/characters/lydemox-vir/paw.svg"
  49325. }
  49326. },
  49327. dick: {
  49328. height: math.unit(1.8, "feet"),
  49329. name: "Dick",
  49330. image: {
  49331. source: "./media/characters/lydemox-vir/dick.svg"
  49332. }
  49333. },
  49334. },
  49335. [
  49336. {
  49337. name: "Macro",
  49338. height: math.unit(100, "feet"),
  49339. default: true
  49340. },
  49341. {
  49342. name: "Teramacro",
  49343. height: math.unit(1, "earth")
  49344. },
  49345. {
  49346. name: "Planetary",
  49347. height: math.unit(20, "earths")
  49348. },
  49349. ]
  49350. ))
  49351. characterMakers.push(() => makeCharacter(
  49352. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49353. {
  49354. front: {
  49355. height: math.unit(15 + 8/12, "feet"),
  49356. weight: math.unit(1237, "kg"),
  49357. name: "Front",
  49358. image: {
  49359. source: "./media/characters/mia/front.svg",
  49360. extra: 1573/1446,
  49361. bottom: 58/1631
  49362. }
  49363. },
  49364. },
  49365. [
  49366. {
  49367. name: "Small",
  49368. height: math.unit(9 + 5/12, "feet")
  49369. },
  49370. {
  49371. name: "Normal",
  49372. height: math.unit(15 + 8/12, "feet"),
  49373. default: true
  49374. },
  49375. ]
  49376. ))
  49377. characterMakers.push(() => makeCharacter(
  49378. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49379. {
  49380. front: {
  49381. height: math.unit(10 + 6/12, "feet"),
  49382. weight: math.unit(1.3, "tons"),
  49383. name: "Front",
  49384. image: {
  49385. source: "./media/characters/mr-graves/front.svg",
  49386. extra: 1779/1695,
  49387. bottom: 198/1977
  49388. }
  49389. },
  49390. },
  49391. [
  49392. {
  49393. name: "Normal",
  49394. height: math.unit(10 + 6 /12, "feet"),
  49395. default: true
  49396. },
  49397. ]
  49398. ))
  49399. characterMakers.push(() => makeCharacter(
  49400. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49401. {
  49402. dressedFront: {
  49403. height: math.unit(5 + 8/12, "feet"),
  49404. weight: math.unit(125, "lb"),
  49405. name: "Dressed (Front)",
  49406. image: {
  49407. source: "./media/characters/jess/dressed-front.svg",
  49408. extra: 1176/1152,
  49409. bottom: 42/1218
  49410. }
  49411. },
  49412. dressedSide: {
  49413. height: math.unit(5 + 8/12, "feet"),
  49414. weight: math.unit(125, "lb"),
  49415. name: "Dressed (Side)",
  49416. image: {
  49417. source: "./media/characters/jess/dressed-side.svg",
  49418. extra: 1204/1190,
  49419. bottom: 6/1210
  49420. }
  49421. },
  49422. nudeFront: {
  49423. height: math.unit(5 + 8/12, "feet"),
  49424. weight: math.unit(125, "lb"),
  49425. name: "Nude (Front)",
  49426. image: {
  49427. source: "./media/characters/jess/nude-front.svg",
  49428. extra: 1176/1152,
  49429. bottom: 42/1218
  49430. }
  49431. },
  49432. nudeSide: {
  49433. height: math.unit(5 + 8/12, "feet"),
  49434. weight: math.unit(125, "lb"),
  49435. name: "Nude (Side)",
  49436. image: {
  49437. source: "./media/characters/jess/nude-side.svg",
  49438. extra: 1204/1190,
  49439. bottom: 6/1210
  49440. }
  49441. },
  49442. organsFront: {
  49443. height: math.unit(2.83799342105, "feet"),
  49444. name: "Organs (Front)",
  49445. image: {
  49446. source: "./media/characters/jess/organs-front.svg"
  49447. }
  49448. },
  49449. organsSide: {
  49450. height: math.unit(2.64225290474, "feet"),
  49451. name: "Organs (Side)",
  49452. image: {
  49453. source: "./media/characters/jess/organs-side.svg"
  49454. }
  49455. },
  49456. digestiveTractFront: {
  49457. height: math.unit(2.8106580871, "feet"),
  49458. name: "Digestive Tract (Front)",
  49459. image: {
  49460. source: "./media/characters/jess/digestive-tract-front.svg"
  49461. }
  49462. },
  49463. digestiveTractSide: {
  49464. height: math.unit(2.54365045014, "feet"),
  49465. name: "Digestive Tract (Side)",
  49466. image: {
  49467. source: "./media/characters/jess/digestive-tract-side.svg"
  49468. }
  49469. },
  49470. respiratorySystemFront: {
  49471. height: math.unit(1.11196233456, "feet"),
  49472. name: "Respiratory System (Front)",
  49473. image: {
  49474. source: "./media/characters/jess/respiratory-system-front.svg"
  49475. }
  49476. },
  49477. respiratorySystemSide: {
  49478. height: math.unit(0.89327966297, "feet"),
  49479. name: "Respiratory System (Side)",
  49480. image: {
  49481. source: "./media/characters/jess/respiratory-system-side.svg"
  49482. }
  49483. },
  49484. urinaryTractFront: {
  49485. height: math.unit(1.16126356186, "feet"),
  49486. name: "Urinary Tract (Front)",
  49487. image: {
  49488. source: "./media/characters/jess/urinary-tract-front.svg"
  49489. }
  49490. },
  49491. urinaryTractSide: {
  49492. height: math.unit(1.20910039627, "feet"),
  49493. name: "Urinary Tract (Side)",
  49494. image: {
  49495. source: "./media/characters/jess/urinary-tract-side.svg"
  49496. }
  49497. },
  49498. reproductiveOrgansFront: {
  49499. height: math.unit(0.48422591566, "feet"),
  49500. name: "Reproductive Organs (Front)",
  49501. image: {
  49502. source: "./media/characters/jess/reproductive-organs-front.svg"
  49503. }
  49504. },
  49505. reproductiveOrgansSide: {
  49506. height: math.unit(0.61553314481, "feet"),
  49507. name: "Reproductive Organs (Side)",
  49508. image: {
  49509. source: "./media/characters/jess/reproductive-organs-side.svg"
  49510. }
  49511. },
  49512. breastsFront: {
  49513. height: math.unit(0.47690395121, "feet"),
  49514. name: "Breasts (Front)",
  49515. image: {
  49516. source: "./media/characters/jess/breasts-front.svg"
  49517. }
  49518. },
  49519. breastsSide: {
  49520. height: math.unit(0.30556998307, "feet"),
  49521. name: "Breasts (Side)",
  49522. image: {
  49523. source: "./media/characters/jess/breasts-side.svg"
  49524. }
  49525. },
  49526. heartFront: {
  49527. height: math.unit(0.53011022622, "feet"),
  49528. name: "Heart (Front)",
  49529. image: {
  49530. source: "./media/characters/jess/heart-front.svg"
  49531. }
  49532. },
  49533. heartSide: {
  49534. height: math.unit(0.51790695213, "feet"),
  49535. name: "Heart (Side)",
  49536. image: {
  49537. source: "./media/characters/jess/heart-side.svg"
  49538. }
  49539. },
  49540. earsAndNoseFront: {
  49541. height: math.unit(0.29385483995, "feet"),
  49542. name: "Ears and Nose (Front)",
  49543. image: {
  49544. source: "./media/characters/jess/ears-and-nose-front.svg"
  49545. }
  49546. },
  49547. earsAndNoseSide: {
  49548. height: math.unit(0.18109658741, "feet"),
  49549. name: "Ears and Nose (Side)",
  49550. image: {
  49551. source: "./media/characters/jess/ears-and-nose-side.svg"
  49552. }
  49553. },
  49554. },
  49555. [
  49556. {
  49557. name: "Normal",
  49558. height: math.unit(5 + 8/12, "feet"),
  49559. default: true
  49560. },
  49561. ]
  49562. ))
  49563. characterMakers.push(() => makeCharacter(
  49564. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49565. {
  49566. front: {
  49567. height: math.unit(6, "feet"),
  49568. weight: math.unit(6.64467e-7, "grams"),
  49569. name: "Front",
  49570. image: {
  49571. source: "./media/characters/wimpering/front.svg",
  49572. extra: 597/587,
  49573. bottom: 34/631
  49574. }
  49575. },
  49576. },
  49577. [
  49578. {
  49579. name: "Micro",
  49580. height: math.unit(0.4, "mm"),
  49581. default: true
  49582. },
  49583. ]
  49584. ))
  49585. characterMakers.push(() => makeCharacter(
  49586. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49587. {
  49588. front: {
  49589. height: math.unit(5 + 2/12, "feet"),
  49590. weight: math.unit(110, "lb"),
  49591. name: "Front",
  49592. image: {
  49593. source: "./media/characters/keltre/front.svg",
  49594. extra: 1099/1057,
  49595. bottom: 22/1121
  49596. }
  49597. },
  49598. back: {
  49599. height: math.unit(5 + 2/12, "feet"),
  49600. weight: math.unit(110, "lb"),
  49601. name: "Back",
  49602. image: {
  49603. source: "./media/characters/keltre/back.svg",
  49604. extra: 1095/1053,
  49605. bottom: 17/1112
  49606. }
  49607. },
  49608. dressed: {
  49609. height: math.unit(5 + 2/12, "feet"),
  49610. weight: math.unit(110, "lb"),
  49611. name: "Dressed",
  49612. image: {
  49613. source: "./media/characters/keltre/dressed.svg",
  49614. extra: 1099/1057,
  49615. bottom: 22/1121
  49616. }
  49617. },
  49618. winter: {
  49619. height: math.unit(5 + 2/12, "feet"),
  49620. weight: math.unit(110, "lb"),
  49621. name: "Winter",
  49622. image: {
  49623. source: "./media/characters/keltre/winter.svg",
  49624. extra: 1099/1057,
  49625. bottom: 22/1121
  49626. }
  49627. },
  49628. head: {
  49629. height: math.unit(1.61 * 0.86, "feet"),
  49630. name: "Head",
  49631. image: {
  49632. source: "./media/characters/keltre/head.svg",
  49633. extra: 534/421,
  49634. bottom: 0/534
  49635. }
  49636. },
  49637. hand: {
  49638. height: math.unit(1.3 * 0.86, "feet"),
  49639. name: "Hand",
  49640. image: {
  49641. source: "./media/characters/keltre/hand.svg"
  49642. }
  49643. },
  49644. foot: {
  49645. height: math.unit(1.8 * 0.86, "feet"),
  49646. name: "Foot",
  49647. image: {
  49648. source: "./media/characters/keltre/foot.svg"
  49649. }
  49650. },
  49651. },
  49652. [
  49653. {
  49654. name: "Fine",
  49655. height: math.unit(1, "inch")
  49656. },
  49657. {
  49658. name: "Dimnutive",
  49659. height: math.unit(4, "inches")
  49660. },
  49661. {
  49662. name: "Tiny",
  49663. height: math.unit(1, "foot")
  49664. },
  49665. {
  49666. name: "Small",
  49667. height: math.unit(3, "feet")
  49668. },
  49669. {
  49670. name: "Normal",
  49671. height: math.unit(5 + 2/12, "feet"),
  49672. default: true
  49673. },
  49674. ]
  49675. ))
  49676. characterMakers.push(() => makeCharacter(
  49677. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49678. {
  49679. front: {
  49680. height: math.unit(6 + 2/12, "feet"),
  49681. name: "Front",
  49682. image: {
  49683. source: "./media/characters/nox/front.svg",
  49684. extra: 1917/1830,
  49685. bottom: 74/1991
  49686. }
  49687. },
  49688. back: {
  49689. height: math.unit(6 + 2/12, "feet"),
  49690. name: "Back",
  49691. image: {
  49692. source: "./media/characters/nox/back.svg",
  49693. extra: 1896/1815,
  49694. bottom: 21/1917
  49695. }
  49696. },
  49697. head: {
  49698. height: math.unit(1.1, "feet"),
  49699. name: "Head",
  49700. image: {
  49701. source: "./media/characters/nox/head.svg",
  49702. extra: 874/704,
  49703. bottom: 0/874
  49704. }
  49705. },
  49706. tattoo: {
  49707. height: math.unit(0.729, "feet"),
  49708. name: "Tattoo",
  49709. image: {
  49710. source: "./media/characters/nox/tattoo.svg"
  49711. }
  49712. },
  49713. },
  49714. [
  49715. {
  49716. name: "Normal",
  49717. height: math.unit(6 + 2/12, "feet")
  49718. },
  49719. {
  49720. name: "Gigamacro",
  49721. height: math.unit(2, "earths"),
  49722. default: true
  49723. },
  49724. {
  49725. name: "Cosmic",
  49726. height: math.unit(867, "yottameters")
  49727. },
  49728. ]
  49729. ))
  49730. characterMakers.push(() => makeCharacter(
  49731. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49732. {
  49733. front: {
  49734. height: math.unit(6, "feet"),
  49735. weight: math.unit(150, "lb"),
  49736. name: "Front",
  49737. image: {
  49738. source: "./media/characters/caspian/front.svg",
  49739. extra: 1443/1359,
  49740. bottom: 0/1443
  49741. }
  49742. },
  49743. back: {
  49744. height: math.unit(6, "feet"),
  49745. weight: math.unit(150, "lb"),
  49746. name: "Back",
  49747. image: {
  49748. source: "./media/characters/caspian/back.svg",
  49749. extra: 1379/1309,
  49750. bottom: 0/1379
  49751. }
  49752. },
  49753. head: {
  49754. height: math.unit(0.9, "feet"),
  49755. name: "Head",
  49756. image: {
  49757. source: "./media/characters/caspian/head.svg",
  49758. extra: 692/492,
  49759. bottom: 0/692
  49760. }
  49761. },
  49762. headAlt: {
  49763. height: math.unit(0.95, "feet"),
  49764. name: "Head (Alt)",
  49765. image: {
  49766. source: "./media/characters/caspian/head-alt.svg",
  49767. extra: 668/508,
  49768. bottom: 0/668
  49769. }
  49770. },
  49771. hand: {
  49772. height: math.unit(0.8, "feet"),
  49773. name: "Hand",
  49774. image: {
  49775. source: "./media/characters/caspian/hand.svg"
  49776. }
  49777. },
  49778. paw: {
  49779. height: math.unit(0.95, "feet"),
  49780. name: "Paw",
  49781. image: {
  49782. source: "./media/characters/caspian/paw.svg"
  49783. }
  49784. },
  49785. },
  49786. [
  49787. {
  49788. name: "Normal",
  49789. height: math.unit(162, "feet"),
  49790. default: true
  49791. },
  49792. ]
  49793. ))
  49794. characterMakers.push(() => makeCharacter(
  49795. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49796. {
  49797. front: {
  49798. height: math.unit(6, "feet"),
  49799. name: "Front",
  49800. image: {
  49801. source: "./media/characters/myra-aisling/front.svg",
  49802. extra: 1268/1166,
  49803. bottom: 73/1341
  49804. }
  49805. },
  49806. back: {
  49807. height: math.unit(6, "feet"),
  49808. name: "Back",
  49809. image: {
  49810. source: "./media/characters/myra-aisling/back.svg",
  49811. extra: 1249/1149,
  49812. bottom: 79/1328
  49813. }
  49814. },
  49815. dressed: {
  49816. height: math.unit(6, "feet"),
  49817. name: "Dressed",
  49818. image: {
  49819. source: "./media/characters/myra-aisling/dressed.svg",
  49820. extra: 1290/1189,
  49821. bottom: 47/1337
  49822. }
  49823. },
  49824. hand: {
  49825. height: math.unit(1.1, "feet"),
  49826. name: "Hand",
  49827. image: {
  49828. source: "./media/characters/myra-aisling/hand.svg"
  49829. }
  49830. },
  49831. paw: {
  49832. height: math.unit(1.23, "feet"),
  49833. name: "Paw",
  49834. image: {
  49835. source: "./media/characters/myra-aisling/paw.svg"
  49836. }
  49837. },
  49838. },
  49839. [
  49840. {
  49841. name: "Normal",
  49842. height: math.unit(160, "feet"),
  49843. default: true
  49844. },
  49845. ]
  49846. ))
  49847. characterMakers.push(() => makeCharacter(
  49848. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  49849. {
  49850. front: {
  49851. height: math.unit(6, "feet"),
  49852. name: "Front",
  49853. image: {
  49854. source: "./media/characters/tenley-sidero/front.svg",
  49855. extra: 1365/1276,
  49856. bottom: 47/1412
  49857. }
  49858. },
  49859. back: {
  49860. height: math.unit(6, "feet"),
  49861. name: "Back",
  49862. image: {
  49863. source: "./media/characters/tenley-sidero/back.svg",
  49864. extra: 1383/1283,
  49865. bottom: 35/1418
  49866. }
  49867. },
  49868. dressed: {
  49869. height: math.unit(6, "feet"),
  49870. name: "Dressed",
  49871. image: {
  49872. source: "./media/characters/tenley-sidero/dressed.svg",
  49873. extra: 1364/1275,
  49874. bottom: 42/1406
  49875. }
  49876. },
  49877. head: {
  49878. height: math.unit(1.47, "feet"),
  49879. name: "Head",
  49880. image: {
  49881. source: "./media/characters/tenley-sidero/head.svg",
  49882. extra: 610/490,
  49883. bottom: 0/610
  49884. }
  49885. },
  49886. },
  49887. [
  49888. {
  49889. name: "Normal",
  49890. height: math.unit(154, "feet"),
  49891. default: true
  49892. },
  49893. ]
  49894. ))
  49895. characterMakers.push(() => makeCharacter(
  49896. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49897. {
  49898. front: {
  49899. height: math.unit(5, "inches"),
  49900. name: "Front",
  49901. image: {
  49902. source: "./media/characters/mallory/front.svg",
  49903. extra: 1919/1678,
  49904. bottom: 29/1948
  49905. }
  49906. },
  49907. hand: {
  49908. height: math.unit(0.73, "inches"),
  49909. name: "Hand",
  49910. image: {
  49911. source: "./media/characters/mallory/hand.svg"
  49912. }
  49913. },
  49914. paw: {
  49915. height: math.unit(0.68, "inches"),
  49916. name: "Paw",
  49917. image: {
  49918. source: "./media/characters/mallory/paw.svg"
  49919. }
  49920. },
  49921. },
  49922. [
  49923. {
  49924. name: "Small",
  49925. height: math.unit(5, "inches"),
  49926. default: true
  49927. },
  49928. ]
  49929. ))
  49930. characterMakers.push(() => makeCharacter(
  49931. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49932. {
  49933. naked: {
  49934. height: math.unit(6, "feet"),
  49935. name: "Naked",
  49936. image: {
  49937. source: "./media/characters/mab/naked.svg",
  49938. extra: 1855/1757,
  49939. bottom: 208/2063
  49940. }
  49941. },
  49942. outside: {
  49943. height: math.unit(6, "feet"),
  49944. name: "Outside",
  49945. image: {
  49946. source: "./media/characters/mab/outside.svg",
  49947. extra: 1855/1757,
  49948. bottom: 208/2063
  49949. }
  49950. },
  49951. party: {
  49952. height: math.unit(6, "feet"),
  49953. name: "Party",
  49954. image: {
  49955. source: "./media/characters/mab/party.svg",
  49956. extra: 1855/1757,
  49957. bottom: 208/2063
  49958. }
  49959. },
  49960. },
  49961. [
  49962. {
  49963. name: "Normal",
  49964. height: math.unit(165, "feet"),
  49965. default: true
  49966. },
  49967. ]
  49968. ))
  49969. characterMakers.push(() => makeCharacter(
  49970. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49971. {
  49972. feral: {
  49973. height: math.unit(12, "feet"),
  49974. weight: math.unit(20000, "lb"),
  49975. name: "Side",
  49976. image: {
  49977. source: "./media/characters/winter/feral.svg",
  49978. extra: 1286/943,
  49979. bottom: 112/1398
  49980. },
  49981. form: "feral",
  49982. default: true
  49983. },
  49984. feralNsfw: {
  49985. height: math.unit(12, "feet"),
  49986. weight: math.unit(20000, "lb"),
  49987. name: "Side (NSFW)",
  49988. image: {
  49989. source: "./media/characters/winter/feral-nsfw.svg",
  49990. extra: 1286/943,
  49991. bottom: 112/1398
  49992. },
  49993. form: "feral"
  49994. },
  49995. dick: {
  49996. height: math.unit(3.79, "feet"),
  49997. name: "Dick",
  49998. image: {
  49999. source: "./media/characters/winter/dick.svg"
  50000. },
  50001. form: "feral"
  50002. },
  50003. anthro: {
  50004. height: math.unit(12, "feet"),
  50005. weight: math.unit(10, "tons"),
  50006. name: "Anthro",
  50007. image: {
  50008. source: "./media/characters/winter/anthro.svg",
  50009. extra: 1701/1553,
  50010. bottom: 64/1765
  50011. },
  50012. form: "anthro",
  50013. default: true
  50014. },
  50015. },
  50016. [
  50017. {
  50018. name: "Big",
  50019. height: math.unit(12, "feet"),
  50020. default: true,
  50021. form: "feral"
  50022. },
  50023. {
  50024. name: "Big",
  50025. height: math.unit(12, "feet"),
  50026. default: true,
  50027. form: "anthro"
  50028. },
  50029. ],
  50030. {
  50031. "feral": {
  50032. name: "Feral",
  50033. default: true
  50034. },
  50035. "anthro": {
  50036. name: "Anthro"
  50037. }
  50038. }
  50039. ))
  50040. characterMakers.push(() => makeCharacter(
  50041. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50042. {
  50043. front: {
  50044. height: math.unit(4.1, "inches"),
  50045. name: "Front",
  50046. image: {
  50047. source: "./media/characters/alto/front.svg",
  50048. extra: 736/627,
  50049. bottom: 90/826
  50050. }
  50051. },
  50052. },
  50053. [
  50054. {
  50055. name: "Normal",
  50056. height: math.unit(4.1, "inches"),
  50057. default: true
  50058. },
  50059. ]
  50060. ))
  50061. characterMakers.push(() => makeCharacter(
  50062. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50063. {
  50064. sitting: {
  50065. height: math.unit(3, "feet"),
  50066. name: "Sitting",
  50067. image: {
  50068. source: "./media/characters/ratstrid-v/sitting.svg",
  50069. extra: 355/310,
  50070. bottom: 136/491
  50071. }
  50072. },
  50073. },
  50074. [
  50075. {
  50076. name: "Normal",
  50077. height: math.unit(3, "feet"),
  50078. default: true
  50079. },
  50080. ]
  50081. ))
  50082. characterMakers.push(() => makeCharacter(
  50083. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50084. {
  50085. back: {
  50086. height: math.unit(6, "feet"),
  50087. weight: math.unit(350, "lb"),
  50088. name: "Back",
  50089. image: {
  50090. source: "./media/characters/siz/back.svg",
  50091. extra: 1449/1274,
  50092. bottom: 13/1462
  50093. }
  50094. },
  50095. },
  50096. [
  50097. {
  50098. name: "Over-Overcompressed",
  50099. height: math.unit(8, "feet")
  50100. },
  50101. {
  50102. name: "Overcompressed",
  50103. height: math.unit(32, "feet")
  50104. },
  50105. {
  50106. name: "Compressed",
  50107. height: math.unit(128, "feet"),
  50108. default: true
  50109. },
  50110. {
  50111. name: "Half-Compressed",
  50112. height: math.unit(512, "feet")
  50113. },
  50114. {
  50115. name: "Quarter-Compressed",
  50116. height: math.unit(2048, "feet")
  50117. },
  50118. {
  50119. name: "Uncompressed?",
  50120. height: math.unit(8192, "feet")
  50121. },
  50122. ]
  50123. ))
  50124. characterMakers.push(() => makeCharacter(
  50125. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50126. {
  50127. front: {
  50128. height: math.unit(5 + 9/12, "feet"),
  50129. weight: math.unit(150, "lb"),
  50130. name: "Front",
  50131. image: {
  50132. source: "./media/characters/ven/front.svg",
  50133. extra: 1372/1320,
  50134. bottom: 73/1445
  50135. }
  50136. },
  50137. side: {
  50138. height: math.unit(5 + 9/12, "feet"),
  50139. weight: math.unit(1150, "lb"),
  50140. name: "Side",
  50141. image: {
  50142. source: "./media/characters/ven/side.svg",
  50143. extra: 1119/1070,
  50144. bottom: 42/1161
  50145. },
  50146. default: true
  50147. },
  50148. },
  50149. [
  50150. {
  50151. name: "Normal",
  50152. height: math.unit(5 + 9/12, "feet"),
  50153. default: true
  50154. },
  50155. ]
  50156. ))
  50157. characterMakers.push(() => makeCharacter(
  50158. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50159. {
  50160. front: {
  50161. height: math.unit(12, "feet"),
  50162. weight: math.unit(1000, "kg"),
  50163. name: "Front",
  50164. image: {
  50165. source: "./media/characters/maple/front.svg",
  50166. extra: 1193/1081,
  50167. bottom: 22/1215
  50168. }
  50169. },
  50170. },
  50171. [
  50172. {
  50173. name: "Compressed",
  50174. height: math.unit(7, "feet")
  50175. },
  50176. {
  50177. name: "Normal",
  50178. height: math.unit(12, "feet"),
  50179. default: true
  50180. },
  50181. ]
  50182. ))
  50183. characterMakers.push(() => makeCharacter(
  50184. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50185. {
  50186. front: {
  50187. height: math.unit(9, "feet"),
  50188. weight: math.unit(1500, "lb"),
  50189. name: "Front",
  50190. image: {
  50191. source: "./media/characters/nora/front.svg",
  50192. extra: 1348/1286,
  50193. bottom: 218/1566
  50194. }
  50195. },
  50196. erect: {
  50197. height: math.unit(9, "feet"),
  50198. weight: math.unit(11500, "lb"),
  50199. name: "Erect",
  50200. image: {
  50201. source: "./media/characters/nora/erect.svg",
  50202. extra: 1488/1433,
  50203. bottom: 133/1621
  50204. }
  50205. },
  50206. },
  50207. [
  50208. {
  50209. name: "Normal",
  50210. height: math.unit(9, "feet"),
  50211. default: true
  50212. },
  50213. ]
  50214. ))
  50215. characterMakers.push(() => makeCharacter(
  50216. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50217. {
  50218. front: {
  50219. height: math.unit(25, "feet"),
  50220. weight: math.unit(27500, "lb"),
  50221. name: "Front",
  50222. image: {
  50223. source: "./media/characters/north-caudin/front.svg",
  50224. extra: 1184/1082,
  50225. bottom: 23/1207
  50226. }
  50227. },
  50228. },
  50229. [
  50230. {
  50231. name: "Compressed",
  50232. height: math.unit(10, "feet")
  50233. },
  50234. {
  50235. name: "Normal",
  50236. height: math.unit(25, "feet"),
  50237. default: true
  50238. },
  50239. ]
  50240. ))
  50241. characterMakers.push(() => makeCharacter(
  50242. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50243. {
  50244. front: {
  50245. height: math.unit(9, "feet"),
  50246. weight: math.unit(1250, "lb"),
  50247. name: "Front",
  50248. image: {
  50249. source: "./media/characters/merrian/front.svg",
  50250. extra: 2393/2304,
  50251. bottom: 40/2433
  50252. }
  50253. },
  50254. },
  50255. [
  50256. {
  50257. name: "Normal",
  50258. height: math.unit(9, "feet"),
  50259. default: true
  50260. },
  50261. ]
  50262. ))
  50263. characterMakers.push(() => makeCharacter(
  50264. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50265. {
  50266. front: {
  50267. height: math.unit(9, "feet"),
  50268. weight: math.unit(1000, "lb"),
  50269. name: "Front",
  50270. image: {
  50271. source: "./media/characters/hazel/front.svg",
  50272. extra: 2351/2298,
  50273. bottom: 38/2389
  50274. }
  50275. },
  50276. },
  50277. [
  50278. {
  50279. name: "Normal",
  50280. height: math.unit(9, "feet"),
  50281. default: true
  50282. },
  50283. ]
  50284. ))
  50285. characterMakers.push(() => makeCharacter(
  50286. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50287. {
  50288. front: {
  50289. height: math.unit(13, "feet"),
  50290. weight: math.unit(3200, "lb"),
  50291. name: "Front",
  50292. image: {
  50293. source: "./media/characters/emma/front.svg",
  50294. extra: 2263/2029,
  50295. bottom: 68/2331
  50296. }
  50297. },
  50298. },
  50299. [
  50300. {
  50301. name: "Normal",
  50302. height: math.unit(13, "feet"),
  50303. default: true
  50304. },
  50305. ]
  50306. ))
  50307. characterMakers.push(() => makeCharacter(
  50308. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50309. {
  50310. front: {
  50311. height: math.unit(11 + 9/12, "feet"),
  50312. weight: math.unit(2500, "lb"),
  50313. name: "Front",
  50314. image: {
  50315. source: "./media/characters/ilumina/front.svg",
  50316. extra: 2248/2209,
  50317. bottom: 164/2412
  50318. }
  50319. },
  50320. },
  50321. [
  50322. {
  50323. name: "Normal",
  50324. height: math.unit(11 + 9/12, "feet"),
  50325. default: true
  50326. },
  50327. ]
  50328. ))
  50329. characterMakers.push(() => makeCharacter(
  50330. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50331. {
  50332. front: {
  50333. height: math.unit(8 + 10/12, "feet"),
  50334. weight: math.unit(1350, "lb"),
  50335. name: "Front",
  50336. image: {
  50337. source: "./media/characters/moonshine/front.svg",
  50338. extra: 2395/2288,
  50339. bottom: 40/2435
  50340. }
  50341. },
  50342. },
  50343. [
  50344. {
  50345. name: "Normal",
  50346. height: math.unit(8 + 10/12, "feet"),
  50347. default: true
  50348. },
  50349. ]
  50350. ))
  50351. characterMakers.push(() => makeCharacter(
  50352. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50353. {
  50354. front: {
  50355. height: math.unit(14, "feet"),
  50356. weight: math.unit(3400, "lb"),
  50357. name: "Front",
  50358. image: {
  50359. source: "./media/characters/aletia/front.svg",
  50360. extra: 1185/1052,
  50361. bottom: 21/1206
  50362. }
  50363. },
  50364. },
  50365. [
  50366. {
  50367. name: "Compressed",
  50368. height: math.unit(8, "feet")
  50369. },
  50370. {
  50371. name: "Normal",
  50372. height: math.unit(14, "feet"),
  50373. default: true
  50374. },
  50375. ]
  50376. ))
  50377. characterMakers.push(() => makeCharacter(
  50378. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50379. {
  50380. front: {
  50381. height: math.unit(17, "feet"),
  50382. weight: math.unit(6500, "lb"),
  50383. name: "Front",
  50384. image: {
  50385. source: "./media/characters/deidra/front.svg",
  50386. extra: 1201/1081,
  50387. bottom: 16/1217
  50388. }
  50389. },
  50390. },
  50391. [
  50392. {
  50393. name: "Compressed",
  50394. height: math.unit(9 + 6/12, "feet")
  50395. },
  50396. {
  50397. name: "Normal",
  50398. height: math.unit(17, "feet"),
  50399. default: true
  50400. },
  50401. ]
  50402. ))
  50403. characterMakers.push(() => makeCharacter(
  50404. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50405. {
  50406. front: {
  50407. height: math.unit(7 + 4/12, "feet"),
  50408. weight: math.unit(280, "lb"),
  50409. name: "Front",
  50410. image: {
  50411. source: "./media/characters/freki-yrmori/front.svg",
  50412. extra: 1286/1182,
  50413. bottom: 29/1315
  50414. }
  50415. },
  50416. maw: {
  50417. height: math.unit(0.9, "feet"),
  50418. name: "Maw",
  50419. image: {
  50420. source: "./media/characters/freki-yrmori/maw.svg"
  50421. }
  50422. },
  50423. },
  50424. [
  50425. {
  50426. name: "Normal",
  50427. height: math.unit(7 + 4/12, "feet"),
  50428. default: true
  50429. },
  50430. {
  50431. name: "Macro",
  50432. height: math.unit(38.5, "meters")
  50433. },
  50434. ]
  50435. ))
  50436. characterMakers.push(() => makeCharacter(
  50437. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50438. {
  50439. side: {
  50440. height: math.unit(47.2, "meters"),
  50441. weight: math.unit(10000, "tons"),
  50442. name: "Side",
  50443. image: {
  50444. source: "./media/characters/aetherios/side.svg",
  50445. extra: 2363/642,
  50446. bottom: 221/2584
  50447. }
  50448. },
  50449. top: {
  50450. height: math.unit(240, "meters"),
  50451. weight: math.unit(10000, "tons"),
  50452. name: "Top",
  50453. image: {
  50454. source: "./media/characters/aetherios/top.svg"
  50455. }
  50456. },
  50457. bottom: {
  50458. height: math.unit(240, "meters"),
  50459. weight: math.unit(10000, "tons"),
  50460. name: "Bottom",
  50461. image: {
  50462. source: "./media/characters/aetherios/bottom.svg"
  50463. }
  50464. },
  50465. head: {
  50466. height: math.unit(38.6, "meters"),
  50467. name: "Head",
  50468. image: {
  50469. source: "./media/characters/aetherios/head.svg",
  50470. extra: 1335/1112,
  50471. bottom: 0/1335
  50472. }
  50473. },
  50474. front: {
  50475. height: math.unit(29, "meters"),
  50476. name: "Front",
  50477. image: {
  50478. source: "./media/characters/aetherios/front.svg",
  50479. extra: 1266/953,
  50480. bottom: 158/1424
  50481. }
  50482. },
  50483. maw: {
  50484. height: math.unit(16.37, "meters"),
  50485. name: "Maw",
  50486. image: {
  50487. source: "./media/characters/aetherios/maw.svg",
  50488. extra: 748/637,
  50489. bottom: 0/748
  50490. },
  50491. extraAttributes: {
  50492. preyCapacity: {
  50493. name: "Capacity",
  50494. power: 3,
  50495. type: "volume",
  50496. base: math.unit(1000, "people")
  50497. },
  50498. tongueSize: {
  50499. name: "Tongue Size",
  50500. power: 2,
  50501. type: "area",
  50502. base: math.unit(21, "m^2")
  50503. }
  50504. }
  50505. },
  50506. forepaw: {
  50507. height: math.unit(18, "meters"),
  50508. name: "Forepaw",
  50509. image: {
  50510. source: "./media/characters/aetherios/forepaw.svg"
  50511. }
  50512. },
  50513. hindpaw: {
  50514. height: math.unit(23, "meters"),
  50515. name: "Hindpaw",
  50516. image: {
  50517. source: "./media/characters/aetherios/hindpaw.svg"
  50518. }
  50519. },
  50520. genitals: {
  50521. height: math.unit(42, "meters"),
  50522. name: "Genitals",
  50523. image: {
  50524. source: "./media/characters/aetherios/genitals.svg"
  50525. }
  50526. },
  50527. },
  50528. [
  50529. {
  50530. name: "Normal",
  50531. height: math.unit(47.2, "meters"),
  50532. default: true
  50533. },
  50534. {
  50535. name: "Macro",
  50536. height: math.unit(160, "meters")
  50537. },
  50538. {
  50539. name: "Mega",
  50540. height: math.unit(1.87, "km")
  50541. },
  50542. {
  50543. name: "Giga",
  50544. height: math.unit(40000, "km")
  50545. },
  50546. {
  50547. name: "Stellar",
  50548. height: math.unit(158000000, "km")
  50549. },
  50550. {
  50551. name: "Cosmic",
  50552. height: math.unit(9.46e12, "km")
  50553. },
  50554. ]
  50555. ))
  50556. characterMakers.push(() => makeCharacter(
  50557. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50558. {
  50559. front: {
  50560. height: math.unit(5 + 4/12, "feet"),
  50561. weight: math.unit(80, "lb"),
  50562. name: "Front",
  50563. image: {
  50564. source: "./media/characters/mizu-gieeg/front.svg",
  50565. extra: 850/709,
  50566. bottom: 52/902
  50567. }
  50568. },
  50569. back: {
  50570. height: math.unit(5 + 4/12, "feet"),
  50571. weight: math.unit(80, "lb"),
  50572. name: "Back",
  50573. image: {
  50574. source: "./media/characters/mizu-gieeg/back.svg",
  50575. extra: 882/745,
  50576. bottom: 25/907
  50577. }
  50578. },
  50579. },
  50580. [
  50581. {
  50582. name: "Normal",
  50583. height: math.unit(5 + 4/12, "feet"),
  50584. default: true
  50585. },
  50586. ]
  50587. ))
  50588. characterMakers.push(() => makeCharacter(
  50589. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50590. {
  50591. front: {
  50592. height: math.unit(6, "feet"),
  50593. name: "Front",
  50594. image: {
  50595. source: "./media/characters/roselle-st-papier/front.svg",
  50596. extra: 1430/1280,
  50597. bottom: 37/1467
  50598. }
  50599. },
  50600. back: {
  50601. height: math.unit(6, "feet"),
  50602. name: "Back",
  50603. image: {
  50604. source: "./media/characters/roselle-st-papier/back.svg",
  50605. extra: 1491/1296,
  50606. bottom: 23/1514
  50607. }
  50608. },
  50609. ear: {
  50610. height: math.unit(1.26, "feet"),
  50611. name: "Ear",
  50612. image: {
  50613. source: "./media/characters/roselle-st-papier/ear.svg"
  50614. }
  50615. },
  50616. },
  50617. [
  50618. {
  50619. name: "Normal",
  50620. height: math.unit(150, "feet"),
  50621. default: true
  50622. },
  50623. ]
  50624. ))
  50625. characterMakers.push(() => makeCharacter(
  50626. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50627. {
  50628. front: {
  50629. height: math.unit(1, "inches"),
  50630. name: "Front",
  50631. image: {
  50632. source: "./media/characters/valargent/front.svg",
  50633. extra: 1825/1694,
  50634. bottom: 62/1887
  50635. }
  50636. },
  50637. back: {
  50638. height: math.unit(1, "inches"),
  50639. name: "Back",
  50640. image: {
  50641. source: "./media/characters/valargent/back.svg",
  50642. extra: 1775/1682,
  50643. bottom: 88/1863
  50644. }
  50645. },
  50646. },
  50647. [
  50648. {
  50649. name: "Micro",
  50650. height: math.unit(1, "inch"),
  50651. default: true
  50652. },
  50653. ]
  50654. ))
  50655. characterMakers.push(() => makeCharacter(
  50656. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50657. {
  50658. front: {
  50659. height: math.unit(3.4, "meters"),
  50660. name: "Front",
  50661. image: {
  50662. source: "./media/characters/zarina/front.svg",
  50663. extra: 1733/1425,
  50664. bottom: 93/1826
  50665. }
  50666. },
  50667. squatting: {
  50668. height: math.unit(2.14, "meters"),
  50669. name: "Squatting",
  50670. image: {
  50671. source: "./media/characters/zarina/squatting.svg",
  50672. extra: 1073/788,
  50673. bottom: 63/1136
  50674. }
  50675. },
  50676. back: {
  50677. height: math.unit(2.14, "meters"),
  50678. name: "Back",
  50679. image: {
  50680. source: "./media/characters/zarina/back.svg",
  50681. extra: 1128/885,
  50682. bottom: 0/1128
  50683. }
  50684. },
  50685. },
  50686. [
  50687. {
  50688. name: "Normal",
  50689. height: math.unit(3.4, "meters"),
  50690. default: true
  50691. },
  50692. {
  50693. name: "Big",
  50694. height: math.unit(5, "meters")
  50695. },
  50696. {
  50697. name: "Macro",
  50698. height: math.unit(110, "meters")
  50699. },
  50700. ]
  50701. ))
  50702. characterMakers.push(() => makeCharacter(
  50703. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50704. {
  50705. front: {
  50706. height: math.unit(7, "feet"),
  50707. name: "Front",
  50708. image: {
  50709. source: "./media/characters/ventus-astro-fox/front.svg",
  50710. extra: 1792/1623,
  50711. bottom: 28/1820
  50712. }
  50713. },
  50714. back: {
  50715. height: math.unit(7, "feet"),
  50716. name: "Back",
  50717. image: {
  50718. source: "./media/characters/ventus-astro-fox/back.svg",
  50719. extra: 1789/1620,
  50720. bottom: 31/1820
  50721. }
  50722. },
  50723. outfit: {
  50724. height: math.unit(7, "feet"),
  50725. name: "Outfit",
  50726. image: {
  50727. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50728. extra: 1054/925,
  50729. bottom: 15/1069
  50730. }
  50731. },
  50732. head: {
  50733. height: math.unit(1.12, "feet"),
  50734. name: "Head",
  50735. image: {
  50736. source: "./media/characters/ventus-astro-fox/head.svg",
  50737. extra: 866/504,
  50738. bottom: 0/866
  50739. }
  50740. },
  50741. hand: {
  50742. height: math.unit(1, "feet"),
  50743. name: "Hand",
  50744. image: {
  50745. source: "./media/characters/ventus-astro-fox/hand.svg"
  50746. }
  50747. },
  50748. paw: {
  50749. height: math.unit(1.5, "feet"),
  50750. name: "Paw",
  50751. image: {
  50752. source: "./media/characters/ventus-astro-fox/paw.svg"
  50753. }
  50754. },
  50755. },
  50756. [
  50757. {
  50758. name: "Normal",
  50759. height: math.unit(7, "feet"),
  50760. default: true
  50761. },
  50762. {
  50763. name: "Macro",
  50764. height: math.unit(200, "feet")
  50765. },
  50766. {
  50767. name: "Cosmic",
  50768. height: math.unit(3, "universes")
  50769. },
  50770. ]
  50771. ))
  50772. characterMakers.push(() => makeCharacter(
  50773. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50774. {
  50775. front: {
  50776. height: math.unit(3, "meters"),
  50777. weight: math.unit(7000, "lb"),
  50778. name: "Front",
  50779. image: {
  50780. source: "./media/characters/core-t/front.svg",
  50781. extra: 5729/4941,
  50782. bottom: 1129/6858
  50783. }
  50784. },
  50785. },
  50786. [
  50787. {
  50788. name: "Big",
  50789. height: math.unit(3, "meters"),
  50790. default: true
  50791. },
  50792. ]
  50793. ))
  50794. characterMakers.push(() => makeCharacter(
  50795. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50796. {
  50797. normal: {
  50798. height: math.unit(6 + 6/12, "feet"),
  50799. weight: math.unit(275, "lb"),
  50800. name: "Front",
  50801. image: {
  50802. source: "./media/characters/cadbunny/normal.svg",
  50803. extra: 1129/947,
  50804. bottom: 93/1222
  50805. },
  50806. default: true,
  50807. form: "normal"
  50808. },
  50809. gigantamax: {
  50810. height: math.unit(26, "feet"),
  50811. weight: math.unit(16000, "lb"),
  50812. name: "Front",
  50813. image: {
  50814. source: "./media/characters/cadbunny/gigantamax.svg",
  50815. extra: 1133/944,
  50816. bottom: 90/1223
  50817. },
  50818. default: true,
  50819. form: "gigantamax"
  50820. },
  50821. },
  50822. [
  50823. {
  50824. name: "Normal",
  50825. height: math.unit(6 + 6/12, "feet"),
  50826. default: true,
  50827. form: "normal"
  50828. },
  50829. {
  50830. name: "Small",
  50831. height: math.unit(26, "feet"),
  50832. default: true,
  50833. form: "gigantamax"
  50834. },
  50835. {
  50836. name: "Large",
  50837. height: math.unit(78, "feet"),
  50838. form: "gigantamax"
  50839. },
  50840. ],
  50841. {
  50842. "normal": {
  50843. name: "Normal",
  50844. default: true
  50845. },
  50846. "gigantamax": {
  50847. name: "Gigantamax"
  50848. }
  50849. }
  50850. ))
  50851. characterMakers.push(() => makeCharacter(
  50852. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  50853. {
  50854. anthroFront: {
  50855. height: math.unit(8, "feet"),
  50856. weight: math.unit(300, "lb"),
  50857. name: "Front",
  50858. image: {
  50859. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  50860. extra: 1272/1176,
  50861. bottom: 53/1325
  50862. },
  50863. form: "anthro",
  50864. default: true
  50865. },
  50866. feralSide: {
  50867. height: math.unit(4, "feet"),
  50868. weight: math.unit(250, "lb"),
  50869. name: "Side",
  50870. image: {
  50871. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  50872. extra: 731/621,
  50873. bottom: 0/731
  50874. },
  50875. form: "feral",
  50876. default: true
  50877. },
  50878. },
  50879. [
  50880. {
  50881. name: "Regular",
  50882. height: math.unit(8, "feet"),
  50883. form: "anthro"
  50884. },
  50885. {
  50886. name: "Macro",
  50887. height: math.unit(250, "feet"),
  50888. form: "anthro",
  50889. default: true
  50890. },
  50891. {
  50892. name: "Regular",
  50893. height: math.unit(4, "feet"),
  50894. form: "feral"
  50895. },
  50896. {
  50897. name: "Macro",
  50898. height: math.unit(125, "feet"),
  50899. form: "feral",
  50900. default: true
  50901. },
  50902. ],
  50903. {
  50904. "anthro": {
  50905. name: "Anthro",
  50906. default: true
  50907. },
  50908. "feral": {
  50909. name: "Feral",
  50910. },
  50911. }
  50912. ))
  50913. characterMakers.push(() => makeCharacter(
  50914. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  50915. {
  50916. front: {
  50917. height: math.unit(11 + 10/12, "feet"),
  50918. weight: math.unit(1587, "kg"),
  50919. name: "Front",
  50920. image: {
  50921. source: "./media/characters/maple-javira-dragon/front.svg",
  50922. extra: 1136/744,
  50923. bottom: 73/1209
  50924. }
  50925. },
  50926. side: {
  50927. height: math.unit(11 + 10/12, "feet"),
  50928. weight: math.unit(1587, "kg"),
  50929. name: "Side",
  50930. image: {
  50931. source: "./media/characters/maple-javira-dragon/side.svg",
  50932. extra: 712/505,
  50933. bottom: 17/729
  50934. }
  50935. },
  50936. head: {
  50937. height: math.unit(8.05, "feet"),
  50938. name: "Head",
  50939. image: {
  50940. source: "./media/characters/maple-javira-dragon/head.svg",
  50941. extra: 1420/1344,
  50942. bottom: 0/1420
  50943. }
  50944. },
  50945. },
  50946. [
  50947. {
  50948. name: "Normal",
  50949. height: math.unit(11 + 10/12, "feet"),
  50950. default: true
  50951. },
  50952. ]
  50953. ))
  50954. characterMakers.push(() => makeCharacter(
  50955. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  50956. {
  50957. front: {
  50958. height: math.unit(117, "cm"),
  50959. weight: math.unit(50, "kg"),
  50960. name: "Front",
  50961. image: {
  50962. source: "./media/characters/sonia-wyverntail/front.svg",
  50963. extra: 708/592,
  50964. bottom: 25/733
  50965. }
  50966. },
  50967. },
  50968. [
  50969. {
  50970. name: "Normal",
  50971. height: math.unit(117, "cm"),
  50972. default: true
  50973. },
  50974. ]
  50975. ))
  50976. characterMakers.push(() => makeCharacter(
  50977. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  50978. {
  50979. front: {
  50980. height: math.unit(6 + 5/12, "feet"),
  50981. name: "Front",
  50982. image: {
  50983. source: "./media/characters/micah/front.svg",
  50984. extra: 1758/1546,
  50985. bottom: 214/1972
  50986. }
  50987. },
  50988. },
  50989. [
  50990. {
  50991. name: "Normal",
  50992. height: math.unit(6 + 5/12, "feet"),
  50993. default: true
  50994. },
  50995. ]
  50996. ))
  50997. characterMakers.push(() => makeCharacter(
  50998. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  50999. {
  51000. front: {
  51001. height: math.unit(5 + 10/12, "feet"),
  51002. weight: math.unit(220, "lb"),
  51003. name: "Front",
  51004. image: {
  51005. source: "./media/characters/zarya/front.svg",
  51006. extra: 593/572,
  51007. bottom: 50/643
  51008. }
  51009. },
  51010. back: {
  51011. height: math.unit(5 + 10/12, "feet"),
  51012. weight: math.unit(220, "lb"),
  51013. name: "Back",
  51014. image: {
  51015. source: "./media/characters/zarya/back.svg",
  51016. extra: 603/582,
  51017. bottom: 38/641
  51018. }
  51019. },
  51020. },
  51021. [
  51022. {
  51023. name: "Normal",
  51024. height: math.unit(5 + 10/12, "feet"),
  51025. default: true
  51026. },
  51027. ]
  51028. ))
  51029. characterMakers.push(() => makeCharacter(
  51030. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51031. {
  51032. front: {
  51033. height: math.unit(7.5, "feet"),
  51034. name: "Front",
  51035. image: {
  51036. source: "./media/characters/sven-hatisson/front.svg",
  51037. extra: 917/857,
  51038. bottom: 42/959
  51039. }
  51040. },
  51041. back: {
  51042. height: math.unit(7.5, "feet"),
  51043. name: "Back",
  51044. image: {
  51045. source: "./media/characters/sven-hatisson/back.svg",
  51046. extra: 903/856,
  51047. bottom: 15/918
  51048. }
  51049. },
  51050. },
  51051. [
  51052. {
  51053. name: "Base Height",
  51054. height: math.unit(7.5, "feet")
  51055. },
  51056. {
  51057. name: "Usual Height",
  51058. height: math.unit(13.5, "feet"),
  51059. default: true
  51060. },
  51061. {
  51062. name: "Smaller Macro",
  51063. height: math.unit(85, "feet")
  51064. },
  51065. {
  51066. name: "Moderate Macro",
  51067. height: math.unit(320, "feet")
  51068. },
  51069. {
  51070. name: "Large Macro",
  51071. height: math.unit(1000, "feet")
  51072. },
  51073. {
  51074. name: "Largest Size",
  51075. height: math.unit(2, "miles")
  51076. },
  51077. ]
  51078. ))
  51079. characterMakers.push(() => makeCharacter(
  51080. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51081. {
  51082. side: {
  51083. height: math.unit(1.8, "meters"),
  51084. weight: math.unit(275, "kg"),
  51085. name: "Side",
  51086. image: {
  51087. source: "./media/characters/terra/side.svg",
  51088. extra: 1273/1147,
  51089. bottom: 0/1273
  51090. }
  51091. },
  51092. },
  51093. [
  51094. {
  51095. name: "Normal",
  51096. height: math.unit(16.2, "meters"),
  51097. default: true
  51098. },
  51099. ]
  51100. ))
  51101. characterMakers.push(() => makeCharacter(
  51102. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51103. {
  51104. borzoiFront: {
  51105. height: math.unit(6 + 9/12, "feet"),
  51106. name: "Front",
  51107. image: {
  51108. source: "./media/characters/rae/borzoi-front.svg",
  51109. extra: 1161/1098,
  51110. bottom: 31/1192
  51111. },
  51112. form: "borzoi",
  51113. default: true
  51114. },
  51115. werewolfFront: {
  51116. height: math.unit(8 + 7/12, "feet"),
  51117. name: "Front",
  51118. image: {
  51119. source: "./media/characters/rae/werewolf-front.svg",
  51120. extra: 1411/1334,
  51121. bottom: 127/1538
  51122. },
  51123. form: "werewolf",
  51124. default: true
  51125. },
  51126. },
  51127. [
  51128. {
  51129. name: "Normal",
  51130. height: math.unit(6 + 9/12, "feet"),
  51131. default: true,
  51132. form: "borzoi"
  51133. },
  51134. {
  51135. name: "Normal",
  51136. height: math.unit(8 + 7/12, "feet"),
  51137. default: true,
  51138. form: "werewolf"
  51139. },
  51140. ],
  51141. {
  51142. "borzoi": {
  51143. name: "Borzoi",
  51144. default: true
  51145. },
  51146. "werewolf": {
  51147. name: "Werewolf",
  51148. },
  51149. }
  51150. ))
  51151. characterMakers.push(() => makeCharacter(
  51152. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51153. {
  51154. front: {
  51155. height: math.unit(8 + 7/12, "feet"),
  51156. weight: math.unit(482, "lb"),
  51157. name: "Front",
  51158. image: {
  51159. source: "./media/characters/kit/front.svg",
  51160. extra: 1247/1103,
  51161. bottom: 41/1288
  51162. }
  51163. },
  51164. back: {
  51165. height: math.unit(8 + 7/12, "feet"),
  51166. weight: math.unit(482, "lb"),
  51167. name: "Back",
  51168. image: {
  51169. source: "./media/characters/kit/back.svg",
  51170. extra: 1252/1123,
  51171. bottom: 21/1273
  51172. }
  51173. },
  51174. paw: {
  51175. height: math.unit(1.46, "feet"),
  51176. name: "Paw",
  51177. image: {
  51178. source: "./media/characters/kit/paw.svg"
  51179. }
  51180. },
  51181. },
  51182. [
  51183. {
  51184. name: "Normal",
  51185. height: math.unit(2.61, "meters"),
  51186. default: true
  51187. },
  51188. {
  51189. name: "\"Tall\"",
  51190. height: math.unit(8.21, "meters")
  51191. },
  51192. {
  51193. name: "Tall",
  51194. height: math.unit(19.6, "meters")
  51195. },
  51196. {
  51197. name: "Very Tall",
  51198. height: math.unit(57.91, "meters")
  51199. },
  51200. {
  51201. name: "Semi-Macro",
  51202. height: math.unit(138.64, "meters")
  51203. },
  51204. {
  51205. name: "Macro",
  51206. height: math.unit(831.99, "meters")
  51207. },
  51208. {
  51209. name: "EX-Macro",
  51210. height: math.unit(96451121, "meters")
  51211. },
  51212. {
  51213. name: "S1-Omnipotent",
  51214. height: math.unit(4.42074e+9, "meters")
  51215. },
  51216. {
  51217. name: "S2-Omnipotent",
  51218. height: math.unit(9.42074e+17, "meters")
  51219. },
  51220. {
  51221. name: "Omnipotent",
  51222. height: math.unit(4.23112e+24, "meters")
  51223. },
  51224. {
  51225. name: "Hypergod",
  51226. height: math.unit(5.05176e+27, "meters")
  51227. },
  51228. {
  51229. name: "Hypergod-EX",
  51230. height: math.unit(9.45532e+49, "meters")
  51231. },
  51232. {
  51233. name: "Hypergod-SP",
  51234. height: math.unit(9.45532e+195, "meters")
  51235. },
  51236. ]
  51237. ))
  51238. characterMakers.push(() => makeCharacter(
  51239. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51240. {
  51241. side: {
  51242. height: math.unit(0.6, "meters"),
  51243. weight: math.unit(24, "kg"),
  51244. name: "Side",
  51245. image: {
  51246. source: "./media/characters/celeste/side.svg",
  51247. extra: 810/517,
  51248. bottom: 53/863
  51249. }
  51250. },
  51251. },
  51252. [
  51253. {
  51254. name: "Velociraptor",
  51255. height: math.unit(0.6, "meters"),
  51256. default: true
  51257. },
  51258. {
  51259. name: "Utahraptor",
  51260. height: math.unit(1.8, "meters")
  51261. },
  51262. {
  51263. name: "Gallimimus",
  51264. height: math.unit(4.0, "meters")
  51265. },
  51266. {
  51267. name: "Large",
  51268. height: math.unit(20, "meters")
  51269. },
  51270. {
  51271. name: "Planetary",
  51272. height: math.unit(50, "megameters")
  51273. },
  51274. {
  51275. name: "Stellar",
  51276. height: math.unit(1.5, "gigameters")
  51277. },
  51278. {
  51279. name: "Galactic",
  51280. height: math.unit(100, "exameters")
  51281. },
  51282. ]
  51283. ))
  51284. characterMakers.push(() => makeCharacter(
  51285. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51286. {
  51287. front: {
  51288. height: math.unit(6, "feet"),
  51289. weight: math.unit(210, "lb"),
  51290. name: "Front",
  51291. image: {
  51292. source: "./media/characters/glacia/front.svg",
  51293. extra: 958/901,
  51294. bottom: 45/1003
  51295. }
  51296. },
  51297. },
  51298. [
  51299. {
  51300. name: "Macro",
  51301. height: math.unit(1000, "meters"),
  51302. default: true
  51303. },
  51304. ]
  51305. ))
  51306. characterMakers.push(() => makeCharacter(
  51307. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51308. {
  51309. front: {
  51310. height: math.unit(4, "meters"),
  51311. name: "Front",
  51312. image: {
  51313. source: "./media/characters/giri/front.svg",
  51314. extra: 966/894,
  51315. bottom: 21/987
  51316. }
  51317. },
  51318. },
  51319. [
  51320. {
  51321. name: "Normal",
  51322. height: math.unit(4, "meters"),
  51323. default: true
  51324. },
  51325. ]
  51326. ))
  51327. characterMakers.push(() => makeCharacter(
  51328. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51329. {
  51330. back: {
  51331. height: math.unit(4, "feet"),
  51332. weight: math.unit(37, "lb"),
  51333. name: "Back",
  51334. image: {
  51335. source: "./media/characters/tin/back.svg",
  51336. extra: 845/780,
  51337. bottom: 28/873
  51338. }
  51339. },
  51340. },
  51341. [
  51342. {
  51343. name: "Normal",
  51344. height: math.unit(4, "feet"),
  51345. default: true
  51346. },
  51347. ]
  51348. ))
  51349. characterMakers.push(() => makeCharacter(
  51350. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51351. {
  51352. front: {
  51353. height: math.unit(25, "feet"),
  51354. name: "Front",
  51355. image: {
  51356. source: "./media/characters/cadenza-vivace/front.svg",
  51357. extra: 1842/1578,
  51358. bottom: 30/1872
  51359. }
  51360. },
  51361. },
  51362. [
  51363. {
  51364. name: "Macro",
  51365. height: math.unit(25, "feet"),
  51366. default: true
  51367. },
  51368. ]
  51369. ))
  51370. characterMakers.push(() => makeCharacter(
  51371. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51372. {
  51373. front: {
  51374. height: math.unit(10, "feet"),
  51375. weight: math.unit(625, "kg"),
  51376. name: "Front",
  51377. image: {
  51378. source: "./media/characters/zain/front.svg",
  51379. extra: 1682/1498,
  51380. bottom: 223/1905
  51381. }
  51382. },
  51383. back: {
  51384. height: math.unit(10, "feet"),
  51385. weight: math.unit(625, "kg"),
  51386. name: "Back",
  51387. image: {
  51388. source: "./media/characters/zain/back.svg",
  51389. extra: 1814/1657,
  51390. bottom: 152/1966
  51391. }
  51392. },
  51393. head: {
  51394. height: math.unit(10, "feet"),
  51395. weight: math.unit(625, "kg"),
  51396. name: "Head",
  51397. image: {
  51398. source: "./media/characters/zain/head.svg",
  51399. extra: 1059/762,
  51400. bottom: 0/1059
  51401. }
  51402. },
  51403. },
  51404. [
  51405. {
  51406. name: "Normal",
  51407. height: math.unit(10, "feet"),
  51408. default: true
  51409. },
  51410. ]
  51411. ))
  51412. characterMakers.push(() => makeCharacter(
  51413. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51414. {
  51415. front: {
  51416. height: math.unit(6 + 5/12, "feet"),
  51417. weight: math.unit(750, "lb"),
  51418. name: "Front",
  51419. image: {
  51420. source: "./media/characters/ruchex/front.svg",
  51421. extra: 877/820,
  51422. bottom: 17/894
  51423. },
  51424. extraAttributes: {
  51425. "width": {
  51426. name: "Width",
  51427. power: 1,
  51428. type: "length",
  51429. base: math.unit(4.757, "feet")
  51430. },
  51431. }
  51432. },
  51433. },
  51434. [
  51435. {
  51436. name: "Normal",
  51437. height: math.unit(6 + 5/12, "feet"),
  51438. default: true
  51439. },
  51440. ]
  51441. ))
  51442. characterMakers.push(() => makeCharacter(
  51443. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51444. {
  51445. dressedFront: {
  51446. height: math.unit(191, "cm"),
  51447. weight: math.unit(80, "kg"),
  51448. name: "Front",
  51449. image: {
  51450. source: "./media/characters/buster/dressed-front.svg",
  51451. extra: 1022/973,
  51452. bottom: 69/1091
  51453. }
  51454. },
  51455. dressedBack: {
  51456. height: math.unit(191, "cm"),
  51457. weight: math.unit(80, "kg"),
  51458. name: "Back",
  51459. image: {
  51460. source: "./media/characters/buster/dressed-back.svg",
  51461. extra: 1018/970,
  51462. bottom: 55/1073
  51463. }
  51464. },
  51465. nudeFront: {
  51466. height: math.unit(191, "cm"),
  51467. weight: math.unit(80, "kg"),
  51468. name: "Front (Nude)",
  51469. image: {
  51470. source: "./media/characters/buster/nude-front.svg",
  51471. extra: 1022/973,
  51472. bottom: 69/1091
  51473. }
  51474. },
  51475. nudeBack: {
  51476. height: math.unit(191, "cm"),
  51477. weight: math.unit(80, "kg"),
  51478. name: "Back (Nude)",
  51479. image: {
  51480. source: "./media/characters/buster/nude-back.svg",
  51481. extra: 1018/970,
  51482. bottom: 55/1073
  51483. }
  51484. },
  51485. dick: {
  51486. height: math.unit(2.59, "feet"),
  51487. name: "Dick",
  51488. image: {
  51489. source: "./media/characters/buster/dick.svg"
  51490. }
  51491. },
  51492. ass: {
  51493. height: math.unit(1.2, "feet"),
  51494. name: "Ass",
  51495. image: {
  51496. source: "./media/characters/buster/ass.svg"
  51497. }
  51498. },
  51499. },
  51500. [
  51501. {
  51502. name: "Normal",
  51503. height: math.unit(191, "cm"),
  51504. default: true
  51505. },
  51506. ]
  51507. ))
  51508. characterMakers.push(() => makeCharacter(
  51509. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51510. {
  51511. side: {
  51512. height: math.unit(8.1, "feet"),
  51513. weight: math.unit(3500, "lb"),
  51514. name: "Side",
  51515. image: {
  51516. source: "./media/characters/sonya/side.svg",
  51517. extra: 1730/1317,
  51518. bottom: 86/1816
  51519. }
  51520. },
  51521. },
  51522. [
  51523. {
  51524. name: "Normal",
  51525. height: math.unit(8.1, "feet"),
  51526. default: true
  51527. },
  51528. ]
  51529. ))
  51530. characterMakers.push(() => makeCharacter(
  51531. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51532. {
  51533. front: {
  51534. height: math.unit(6, "feet"),
  51535. weight: math.unit(150, "lb"),
  51536. name: "Front",
  51537. image: {
  51538. source: "./media/characters/cadence-andrysiak/front.svg",
  51539. extra: 1164/1121,
  51540. bottom: 60/1224
  51541. }
  51542. },
  51543. back: {
  51544. height: math.unit(6, "feet"),
  51545. weight: math.unit(150, "lb"),
  51546. name: "Back",
  51547. image: {
  51548. source: "./media/characters/cadence-andrysiak/back.svg",
  51549. extra: 1200/1165,
  51550. bottom: 9/1209
  51551. }
  51552. },
  51553. dressed: {
  51554. height: math.unit(6, "feet"),
  51555. weight: math.unit(150, "lb"),
  51556. name: "Dressed",
  51557. image: {
  51558. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51559. extra: 1164/1121,
  51560. bottom: 60/1224
  51561. }
  51562. },
  51563. },
  51564. [
  51565. {
  51566. name: "Micro",
  51567. height: math.unit(1, "mm")
  51568. },
  51569. {
  51570. name: "Normal",
  51571. height: math.unit(6, "feet"),
  51572. default: true
  51573. },
  51574. ]
  51575. ))
  51576. characterMakers.push(() => makeCharacter(
  51577. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51578. {
  51579. front: {
  51580. height: math.unit(60, "inches"),
  51581. weight: math.unit(16, "lb"),
  51582. preyCapacity: math.unit(80, "liters"),
  51583. name: "Front",
  51584. image: {
  51585. source: "./media/characters/penny-lynx/front.svg",
  51586. extra: 1959/1769,
  51587. bottom: 49/2008
  51588. }
  51589. },
  51590. },
  51591. [
  51592. {
  51593. name: "Nokia",
  51594. height: math.unit(2, "inches")
  51595. },
  51596. {
  51597. name: "Desktop",
  51598. height: math.unit(24, "inches")
  51599. },
  51600. {
  51601. name: "TV",
  51602. height: math.unit(60, "inches")
  51603. },
  51604. {
  51605. name: "Jumbotron",
  51606. height: math.unit(12, "feet")
  51607. },
  51608. {
  51609. name: "Billboard",
  51610. height: math.unit(48, "feet"),
  51611. default: true
  51612. },
  51613. {
  51614. name: "IMAX",
  51615. height: math.unit(96, "feet")
  51616. },
  51617. {
  51618. name: "SINGULARITY",
  51619. height: math.unit(864938, "miles")
  51620. },
  51621. ]
  51622. ))
  51623. characterMakers.push(() => makeCharacter(
  51624. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51625. {
  51626. front: {
  51627. height: math.unit(5 + 4/12, "feet"),
  51628. weight: math.unit(230, "lb"),
  51629. name: "Front",
  51630. image: {
  51631. source: "./media/characters/sukebe/front.svg",
  51632. extra: 2130/2038,
  51633. bottom: 90/2220
  51634. }
  51635. },
  51636. back: {
  51637. height: math.unit(3.48, "feet"),
  51638. weight: math.unit(230, "lb"),
  51639. name: "Back",
  51640. image: {
  51641. source: "./media/characters/sukebe/back.svg",
  51642. extra: 1670/1604,
  51643. bottom: 0/1670
  51644. }
  51645. },
  51646. },
  51647. [
  51648. {
  51649. name: "Normal",
  51650. height: math.unit(5 + 4/12, "feet"),
  51651. default: true
  51652. },
  51653. ]
  51654. ))
  51655. characterMakers.push(() => makeCharacter(
  51656. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51657. {
  51658. front: {
  51659. height: math.unit(6, "feet"),
  51660. name: "Front",
  51661. image: {
  51662. source: "./media/characters/nylla/front.svg",
  51663. extra: 1868/1699,
  51664. bottom: 97/1965
  51665. }
  51666. },
  51667. back: {
  51668. height: math.unit(6, "feet"),
  51669. name: "Back",
  51670. image: {
  51671. source: "./media/characters/nylla/back.svg",
  51672. extra: 1889/1712,
  51673. bottom: 93/1982
  51674. }
  51675. },
  51676. frontNsfw: {
  51677. height: math.unit(6, "feet"),
  51678. name: "Front (NSFW)",
  51679. image: {
  51680. source: "./media/characters/nylla/front-nsfw.svg",
  51681. extra: 1868/1699,
  51682. bottom: 97/1965
  51683. },
  51684. extraAttributes: {
  51685. "dickLength": {
  51686. name: "Dick Length",
  51687. power: 1,
  51688. type: "length",
  51689. base: math.unit(1.4, "feet")
  51690. },
  51691. "cumVolume": {
  51692. name: "Cum Volume",
  51693. power: 3,
  51694. type: "volume",
  51695. base: math.unit(100, "mL")
  51696. },
  51697. }
  51698. },
  51699. backNsfw: {
  51700. height: math.unit(6, "feet"),
  51701. name: "Back (NSFW)",
  51702. image: {
  51703. source: "./media/characters/nylla/back-nsfw.svg",
  51704. extra: 1889/1712,
  51705. bottom: 93/1982
  51706. }
  51707. },
  51708. maw: {
  51709. height: math.unit(2.10, "feet"),
  51710. name: "Maw",
  51711. image: {
  51712. source: "./media/characters/nylla/maw.svg"
  51713. }
  51714. },
  51715. paws: {
  51716. height: math.unit(2.06, "feet"),
  51717. name: "Paws",
  51718. image: {
  51719. source: "./media/characters/nylla/paws.svg"
  51720. }
  51721. },
  51722. muzzle: {
  51723. height: math.unit(0.61, "feet"),
  51724. name: "Muzzle",
  51725. image: {
  51726. source: "./media/characters/nylla/muzzle.svg"
  51727. }
  51728. },
  51729. sheath: {
  51730. height: math.unit(1.305, "feet"),
  51731. name: "Sheath",
  51732. image: {
  51733. source: "./media/characters/nylla/sheath.svg"
  51734. }
  51735. },
  51736. },
  51737. [
  51738. {
  51739. name: "Micro",
  51740. height: math.unit(7.5, "inches")
  51741. },
  51742. {
  51743. name: "Normal",
  51744. height: math.unit(7, "feet"),
  51745. default: true
  51746. },
  51747. {
  51748. name: "Macro",
  51749. height: math.unit(60, "feet")
  51750. },
  51751. {
  51752. name: "Mega",
  51753. height: math.unit(200, "feet")
  51754. },
  51755. ]
  51756. ))
  51757. characterMakers.push(() => makeCharacter(
  51758. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51759. {
  51760. front: {
  51761. height: math.unit(10, "feet"),
  51762. weight: math.unit(2300, "lb"),
  51763. name: "Front",
  51764. image: {
  51765. source: "./media/characters/hunt3r/front.svg",
  51766. extra: 1909/1742,
  51767. bottom: 46/1955
  51768. }
  51769. },
  51770. },
  51771. [
  51772. {
  51773. name: "Normal",
  51774. height: math.unit(10, "feet"),
  51775. default: true
  51776. },
  51777. ]
  51778. ))
  51779. characterMakers.push(() => makeCharacter(
  51780. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51781. {
  51782. dressed: {
  51783. height: math.unit(11, "feet"),
  51784. weight: math.unit(18500, "lb"),
  51785. preyCapacity: math.unit(9, "people"),
  51786. name: "Dressed",
  51787. image: {
  51788. source: "./media/characters/cylphis/dressed.svg",
  51789. extra: 1028/1003,
  51790. bottom: 75/1103
  51791. },
  51792. },
  51793. undressed: {
  51794. height: math.unit(11, "feet"),
  51795. weight: math.unit(18500, "lb"),
  51796. preyCapacity: math.unit(9, "people"),
  51797. name: "Undressed",
  51798. image: {
  51799. source: "./media/characters/cylphis/undressed.svg",
  51800. extra: 1028/1003,
  51801. bottom: 75/1103
  51802. }
  51803. },
  51804. full: {
  51805. height: math.unit(11, "feet"),
  51806. weight: math.unit(18500 + 150*9, "lb"),
  51807. preyCapacity: math.unit(9, "people"),
  51808. name: "Full",
  51809. image: {
  51810. source: "./media/characters/cylphis/full.svg",
  51811. extra: 1028/1003,
  51812. bottom: 75/1103
  51813. }
  51814. },
  51815. },
  51816. [
  51817. {
  51818. name: "Small",
  51819. height: math.unit(8, "feet")
  51820. },
  51821. {
  51822. name: "Normal",
  51823. height: math.unit(11, "feet"),
  51824. default: true
  51825. },
  51826. ]
  51827. ))
  51828. characterMakers.push(() => makeCharacter(
  51829. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  51830. {
  51831. front: {
  51832. height: math.unit(2 + 7/12, "feet"),
  51833. name: "Front",
  51834. image: {
  51835. source: "./media/characters/orishan/front.svg",
  51836. extra: 1058/1023,
  51837. bottom: 23/1081
  51838. }
  51839. },
  51840. back: {
  51841. height: math.unit(2 + 7/12, "feet"),
  51842. name: "Back",
  51843. image: {
  51844. source: "./media/characters/orishan/back.svg",
  51845. extra: 1058/1023,
  51846. bottom: 23/1081
  51847. }
  51848. },
  51849. },
  51850. [
  51851. {
  51852. name: "Micro",
  51853. height: math.unit(2, "cm")
  51854. },
  51855. {
  51856. name: "Normal",
  51857. height: math.unit(2 + 7/12, "feet"),
  51858. default: true
  51859. },
  51860. ]
  51861. ))
  51862. characterMakers.push(() => makeCharacter(
  51863. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  51864. {
  51865. front: {
  51866. height: math.unit(3, "meters"),
  51867. weight: math.unit(508, "kg"),
  51868. name: "Front",
  51869. image: {
  51870. source: "./media/characters/seranis/front.svg",
  51871. extra: 1478/1454,
  51872. bottom: 41/1519
  51873. }
  51874. },
  51875. },
  51876. [
  51877. {
  51878. name: "Normal",
  51879. height: math.unit(3, "meters"),
  51880. default: true
  51881. },
  51882. {
  51883. name: "Macro",
  51884. height: math.unit(108, "meters")
  51885. },
  51886. {
  51887. name: "Megamacro",
  51888. height: math.unit(1250, "meters")
  51889. },
  51890. ]
  51891. ))
  51892. characterMakers.push(() => makeCharacter(
  51893. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  51894. {
  51895. undressed: {
  51896. height: math.unit(5 + 3/12, "feet"),
  51897. name: "Undressed",
  51898. image: {
  51899. source: "./media/characters/ankou/undressed.svg",
  51900. extra: 1301/1213,
  51901. bottom: 87/1388
  51902. }
  51903. },
  51904. dressed: {
  51905. height: math.unit(5 + 3/12, "feet"),
  51906. name: "Dressed",
  51907. image: {
  51908. source: "./media/characters/ankou/dressed.svg",
  51909. extra: 1301/1213,
  51910. bottom: 87/1388
  51911. }
  51912. },
  51913. head: {
  51914. height: math.unit(1.61, "feet"),
  51915. name: "Head",
  51916. image: {
  51917. source: "./media/characters/ankou/head.svg"
  51918. }
  51919. },
  51920. },
  51921. [
  51922. {
  51923. name: "Normal",
  51924. height: math.unit(5 + 3/12, "feet"),
  51925. default: true
  51926. },
  51927. ]
  51928. ))
  51929. characterMakers.push(() => makeCharacter(
  51930. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  51931. {
  51932. side: {
  51933. height: math.unit(6 + 3/12, "feet"),
  51934. weight: math.unit(200, "kg"),
  51935. name: "Side",
  51936. image: {
  51937. source: "./media/characters/juniper-skunktaur/side.svg",
  51938. extra: 1574/1229,
  51939. bottom: 38/1612
  51940. }
  51941. },
  51942. front: {
  51943. height: math.unit(6 + 3/12, "feet"),
  51944. weight: math.unit(200, "kg"),
  51945. name: "Front",
  51946. image: {
  51947. source: "./media/characters/juniper-skunktaur/front.svg",
  51948. extra: 1337/1278,
  51949. bottom: 22/1359
  51950. }
  51951. },
  51952. back: {
  51953. height: math.unit(6 + 3/12, "feet"),
  51954. weight: math.unit(200, "kg"),
  51955. name: "Back",
  51956. image: {
  51957. source: "./media/characters/juniper-skunktaur/back.svg",
  51958. extra: 1618/1273,
  51959. bottom: 13/1631
  51960. }
  51961. },
  51962. top: {
  51963. height: math.unit(2.62, "feet"),
  51964. weight: math.unit(200, "kg"),
  51965. name: "Top",
  51966. image: {
  51967. source: "./media/characters/juniper-skunktaur/top.svg"
  51968. }
  51969. },
  51970. },
  51971. [
  51972. {
  51973. name: "Normal",
  51974. height: math.unit(6 + 3/12, "feet"),
  51975. default: true
  51976. },
  51977. ]
  51978. ))
  51979. characterMakers.push(() => makeCharacter(
  51980. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  51981. {
  51982. front: {
  51983. height: math.unit(20.5, "feet"),
  51984. name: "Front",
  51985. image: {
  51986. source: "./media/characters/rei/front.svg",
  51987. extra: 1349/1195,
  51988. bottom: 31/1380
  51989. }
  51990. },
  51991. back: {
  51992. height: math.unit(20.5, "feet"),
  51993. name: "Back",
  51994. image: {
  51995. source: "./media/characters/rei/back.svg",
  51996. extra: 1358/1204,
  51997. bottom: 22/1380
  51998. }
  51999. },
  52000. pawsDigi: {
  52001. height: math.unit(3.45, "feet"),
  52002. name: "Paws (Digi)",
  52003. image: {
  52004. source: "./media/characters/rei/paws-digi.svg"
  52005. }
  52006. },
  52007. pawsPlanti: {
  52008. height: math.unit(3.45, "feet"),
  52009. name: "Paws (Planti)",
  52010. image: {
  52011. source: "./media/characters/rei/paws-planti.svg"
  52012. }
  52013. },
  52014. },
  52015. [
  52016. {
  52017. name: "Normal",
  52018. height: math.unit(20.5, "feet"),
  52019. default: true
  52020. },
  52021. ]
  52022. ))
  52023. characterMakers.push(() => makeCharacter(
  52024. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52025. {
  52026. front: {
  52027. height: math.unit(5 + 11/12, "feet"),
  52028. name: "Front",
  52029. image: {
  52030. source: "./media/characters/carina/front.svg",
  52031. extra: 1720/1449,
  52032. bottom: 14/1734
  52033. }
  52034. },
  52035. back: {
  52036. height: math.unit(5 + 11/12, "feet"),
  52037. name: "Back",
  52038. image: {
  52039. source: "./media/characters/carina/back.svg",
  52040. extra: 1493/1445,
  52041. bottom: 17/1510
  52042. }
  52043. },
  52044. paw: {
  52045. height: math.unit(0.92, "feet"),
  52046. name: "Paw",
  52047. image: {
  52048. source: "./media/characters/carina/paw.svg"
  52049. }
  52050. },
  52051. },
  52052. [
  52053. {
  52054. name: "Normal",
  52055. height: math.unit(5 + 11/12, "feet"),
  52056. default: true
  52057. },
  52058. ]
  52059. ))
  52060. characterMakers.push(() => makeCharacter(
  52061. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  52062. {
  52063. front: {
  52064. height: math.unit(4.88, "meters"),
  52065. name: "Front",
  52066. image: {
  52067. source: "./media/characters/maya/front.svg",
  52068. extra: 1222/1145,
  52069. bottom: 57/1279
  52070. }
  52071. },
  52072. },
  52073. [
  52074. {
  52075. name: "Normal",
  52076. height: math.unit(4.88, "meters"),
  52077. default: true
  52078. },
  52079. {
  52080. name: "Macro",
  52081. height: math.unit(38.1, "meters")
  52082. },
  52083. {
  52084. name: "Macro+",
  52085. height: math.unit(152.4, "meters")
  52086. },
  52087. {
  52088. name: "Macro++",
  52089. height: math.unit(16.09, "km")
  52090. },
  52091. {
  52092. name: "Mega-macro",
  52093. height: math.unit(700, "megameters")
  52094. },
  52095. ]
  52096. ))
  52097. characterMakers.push(() => makeCharacter(
  52098. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52099. {
  52100. front: {
  52101. height: math.unit(6 + 2/12, "feet"),
  52102. weight: math.unit(500, "lb"),
  52103. preyCapacity: math.unit(4, "people"),
  52104. name: "Front",
  52105. image: {
  52106. source: "./media/characters/yepir/front.svg"
  52107. }
  52108. },
  52109. side: {
  52110. height: math.unit(6 + 2/12, "feet"),
  52111. weight: math.unit(500, "lb"),
  52112. preyCapacity: math.unit(4, "people"),
  52113. name: "Side",
  52114. image: {
  52115. source: "./media/characters/yepir/side.svg"
  52116. }
  52117. },
  52118. paw: {
  52119. height: math.unit(1.05, "feet"),
  52120. name: "Paw",
  52121. image: {
  52122. source: "./media/characters/yepir/paw.svg"
  52123. }
  52124. },
  52125. },
  52126. [
  52127. {
  52128. name: "Normal",
  52129. height: math.unit(6 + 2/12, "feet"),
  52130. default: true
  52131. },
  52132. ]
  52133. ))
  52134. characterMakers.push(() => makeCharacter(
  52135. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52136. {
  52137. front: {
  52138. height: math.unit(5 + 4/12, "feet"),
  52139. name: "Front",
  52140. image: {
  52141. source: "./media/characters/russec/front.svg",
  52142. extra: 1926/1626,
  52143. bottom: 72/1998
  52144. }
  52145. },
  52146. back: {
  52147. height: math.unit(5 + 4/12, "feet"),
  52148. name: "Back",
  52149. image: {
  52150. source: "./media/characters/russec/back.svg",
  52151. extra: 1910/1591,
  52152. bottom: 48/1958
  52153. }
  52154. },
  52155. },
  52156. [
  52157. {
  52158. name: "Small",
  52159. height: math.unit(5 + 4/12, "feet")
  52160. },
  52161. {
  52162. name: "Normal",
  52163. height: math.unit(72, "feet"),
  52164. default: true
  52165. },
  52166. ]
  52167. ))
  52168. characterMakers.push(() => makeCharacter(
  52169. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52170. {
  52171. side: {
  52172. height: math.unit(12, "feet"),
  52173. name: "Side",
  52174. image: {
  52175. source: "./media/characters/cianus/side.svg",
  52176. extra: 808/526,
  52177. bottom: 61/869
  52178. }
  52179. },
  52180. },
  52181. [
  52182. {
  52183. name: "Normal",
  52184. height: math.unit(12, "feet"),
  52185. default: true
  52186. },
  52187. ]
  52188. ))
  52189. characterMakers.push(() => makeCharacter(
  52190. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52191. {
  52192. front: {
  52193. height: math.unit(9 + 6/12, "feet"),
  52194. weight: math.unit(300, "lb"),
  52195. name: "Front",
  52196. image: {
  52197. source: "./media/characters/ahab/front.svg",
  52198. extra: 1897/1868,
  52199. bottom: 121/2018
  52200. }
  52201. },
  52202. frontNsfw: {
  52203. height: math.unit(9 + 6/12, "feet"),
  52204. weight: math.unit(300, "lb"),
  52205. name: "Front-nsfw",
  52206. image: {
  52207. source: "./media/characters/ahab/front-nsfw.svg",
  52208. extra: 1897/1868,
  52209. bottom: 121/2018
  52210. }
  52211. },
  52212. },
  52213. [
  52214. {
  52215. name: "Normal",
  52216. height: math.unit(9 + 6/12, "feet")
  52217. },
  52218. {
  52219. name: "Macro",
  52220. height: math.unit(657, "feet"),
  52221. default: true
  52222. },
  52223. ]
  52224. ))
  52225. characterMakers.push(() => makeCharacter(
  52226. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52227. {
  52228. front: {
  52229. height: math.unit(2.69, "meters"),
  52230. weight: math.unit(132, "kg"),
  52231. name: "Front",
  52232. image: {
  52233. source: "./media/characters/aarkus/front.svg",
  52234. extra: 1400/1231,
  52235. bottom: 34/1434
  52236. }
  52237. },
  52238. back: {
  52239. height: math.unit(2.69, "meters"),
  52240. weight: math.unit(132, "kg"),
  52241. name: "Back",
  52242. image: {
  52243. source: "./media/characters/aarkus/back.svg",
  52244. extra: 1381/1218,
  52245. bottom: 30/1411
  52246. }
  52247. },
  52248. frontNsfw: {
  52249. height: math.unit(2.69, "meters"),
  52250. weight: math.unit(132, "kg"),
  52251. name: "Front (NSFW)",
  52252. image: {
  52253. source: "./media/characters/aarkus/front-nsfw.svg",
  52254. extra: 1400/1231,
  52255. bottom: 34/1434
  52256. }
  52257. },
  52258. foot: {
  52259. height: math.unit(1.45, "feet"),
  52260. name: "Foot",
  52261. image: {
  52262. source: "./media/characters/aarkus/foot.svg"
  52263. }
  52264. },
  52265. head: {
  52266. height: math.unit(2.85, "feet"),
  52267. name: "Head",
  52268. image: {
  52269. source: "./media/characters/aarkus/head.svg"
  52270. }
  52271. },
  52272. headAlt: {
  52273. height: math.unit(3.07, "feet"),
  52274. name: "Head (Alt)",
  52275. image: {
  52276. source: "./media/characters/aarkus/head-alt.svg"
  52277. }
  52278. },
  52279. mouth: {
  52280. height: math.unit(1.25, "feet"),
  52281. name: "Mouth",
  52282. image: {
  52283. source: "./media/characters/aarkus/mouth.svg"
  52284. }
  52285. },
  52286. dick: {
  52287. height: math.unit(1.77, "feet"),
  52288. name: "Dick",
  52289. image: {
  52290. source: "./media/characters/aarkus/dick.svg"
  52291. }
  52292. },
  52293. },
  52294. [
  52295. {
  52296. name: "Normal",
  52297. height: math.unit(2.69, "meters"),
  52298. default: true
  52299. },
  52300. {
  52301. name: "Macro",
  52302. height: math.unit(269, "meters")
  52303. },
  52304. {
  52305. name: "Macro+",
  52306. height: math.unit(672.5, "meters")
  52307. },
  52308. {
  52309. name: "Megamacro",
  52310. height: math.unit(2.017, "km")
  52311. },
  52312. ]
  52313. ))
  52314. characterMakers.push(() => makeCharacter(
  52315. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52316. {
  52317. front: {
  52318. height: math.unit(23.47, "cm"),
  52319. weight: math.unit(600, "grams"),
  52320. name: "Front",
  52321. image: {
  52322. source: "./media/characters/diode/front.svg",
  52323. extra: 1778/1396,
  52324. bottom: 95/1873
  52325. }
  52326. },
  52327. side: {
  52328. height: math.unit(23.47, "cm"),
  52329. weight: math.unit(600, "grams"),
  52330. name: "Side",
  52331. image: {
  52332. source: "./media/characters/diode/side.svg",
  52333. extra: 1831/1404,
  52334. bottom: 86/1917
  52335. }
  52336. },
  52337. wings: {
  52338. height: math.unit(0.683, "feet"),
  52339. name: "Wings",
  52340. image: {
  52341. source: "./media/characters/diode/wings.svg"
  52342. }
  52343. },
  52344. },
  52345. [
  52346. {
  52347. name: "Normal",
  52348. height: math.unit(23.47, "cm"),
  52349. default: true
  52350. },
  52351. ]
  52352. ))
  52353. characterMakers.push(() => makeCharacter(
  52354. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52355. {
  52356. front: {
  52357. height: math.unit(6 + 3/12, "feet"),
  52358. weight: math.unit(250, "lb"),
  52359. name: "Front",
  52360. image: {
  52361. source: "./media/characters/reika/front.svg",
  52362. extra: 1120/1078,
  52363. bottom: 86/1206
  52364. }
  52365. },
  52366. },
  52367. [
  52368. {
  52369. name: "Normal",
  52370. height: math.unit(6 + 3/12, "feet"),
  52371. default: true
  52372. },
  52373. ]
  52374. ))
  52375. characterMakers.push(() => makeCharacter(
  52376. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52377. {
  52378. front: {
  52379. height: math.unit(16 + 8/12, "feet"),
  52380. weight: math.unit(9000, "lb"),
  52381. name: "Front",
  52382. image: {
  52383. source: "./media/characters/lokuto-takama/front.svg",
  52384. extra: 1774/1632,
  52385. bottom: 147/1921
  52386. },
  52387. extraAttributes: {
  52388. "bustWidth": {
  52389. name: "Bust Width",
  52390. power: 1,
  52391. type: "length",
  52392. base: math.unit(2.4, "meters")
  52393. },
  52394. "breastWeight": {
  52395. name: "Breast Weight",
  52396. power: 3,
  52397. type: "mass",
  52398. base: math.unit(1000, "kg")
  52399. },
  52400. }
  52401. },
  52402. },
  52403. [
  52404. {
  52405. name: "Normal",
  52406. height: math.unit(16 + 8/12, "feet"),
  52407. default: true
  52408. },
  52409. ]
  52410. ))
  52411. characterMakers.push(() => makeCharacter(
  52412. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  52413. {
  52414. front: {
  52415. height: math.unit(10, "cm"),
  52416. weight: math.unit(850, "grams"),
  52417. name: "Front",
  52418. image: {
  52419. source: "./media/characters/owak-bone/front.svg",
  52420. extra: 1965/1801,
  52421. bottom: 31/1996
  52422. }
  52423. },
  52424. },
  52425. [
  52426. {
  52427. name: "Normal",
  52428. height: math.unit(10, "cm"),
  52429. default: true
  52430. },
  52431. ]
  52432. ))
  52433. characterMakers.push(() => makeCharacter(
  52434. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  52435. {
  52436. front: {
  52437. height: math.unit(2 + 6/12, "feet"),
  52438. weight: math.unit(9, "lb"),
  52439. name: "Front",
  52440. image: {
  52441. source: "./media/characters/muffin/front.svg",
  52442. extra: 1220/1195,
  52443. bottom: 84/1304
  52444. }
  52445. },
  52446. },
  52447. [
  52448. {
  52449. name: "Normal",
  52450. height: math.unit(2 + 6/12, "feet"),
  52451. default: true
  52452. },
  52453. ]
  52454. ))
  52455. characterMakers.push(() => makeCharacter(
  52456. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52457. {
  52458. front: {
  52459. height: math.unit(7, "feet"),
  52460. name: "Front",
  52461. image: {
  52462. source: "./media/characters/chimera/front.svg",
  52463. extra: 1752/1614,
  52464. bottom: 68/1820
  52465. }
  52466. },
  52467. },
  52468. [
  52469. {
  52470. name: "Normal",
  52471. height: math.unit(7, "feet")
  52472. },
  52473. {
  52474. name: "Gigamacro",
  52475. height: math.unit(2.9, "gigameters"),
  52476. default: true
  52477. },
  52478. {
  52479. name: "Universal",
  52480. height: math.unit(1.56e26, "yottameters")
  52481. },
  52482. ]
  52483. ))
  52484. characterMakers.push(() => makeCharacter(
  52485. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52486. {
  52487. front: {
  52488. height: math.unit(3, "feet"),
  52489. weight: math.unit(20, "lb"),
  52490. name: "Front",
  52491. image: {
  52492. source: "./media/characters/kit-fennec-fox/front.svg",
  52493. extra: 1027/932,
  52494. bottom: 16/1043
  52495. }
  52496. },
  52497. back: {
  52498. height: math.unit(3, "feet"),
  52499. weight: math.unit(20, "lb"),
  52500. name: "Back",
  52501. image: {
  52502. source: "./media/characters/kit-fennec-fox/back.svg",
  52503. extra: 1027/932,
  52504. bottom: 16/1043
  52505. }
  52506. },
  52507. },
  52508. [
  52509. {
  52510. name: "Normal",
  52511. height: math.unit(3, "feet"),
  52512. default: true
  52513. },
  52514. ]
  52515. ))
  52516. characterMakers.push(() => makeCharacter(
  52517. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52518. {
  52519. front: {
  52520. height: math.unit(167, "cm"),
  52521. name: "Front",
  52522. image: {
  52523. source: "./media/characters/blue-otter/front.svg",
  52524. extra: 1951/1920,
  52525. bottom: 31/1982
  52526. }
  52527. },
  52528. },
  52529. [
  52530. {
  52531. name: "Otter-Sized",
  52532. height: math.unit(100, "cm")
  52533. },
  52534. {
  52535. name: "Normal",
  52536. height: math.unit(167, "cm"),
  52537. default: true
  52538. },
  52539. ]
  52540. ))
  52541. characterMakers.push(() => makeCharacter(
  52542. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52543. {
  52544. front: {
  52545. height: math.unit(4 + 4/12, "feet"),
  52546. name: "Front",
  52547. image: {
  52548. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52549. extra: 1072/1067,
  52550. bottom: 117/1189
  52551. }
  52552. },
  52553. back: {
  52554. height: math.unit(4 + 4/12, "feet"),
  52555. name: "Back",
  52556. image: {
  52557. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52558. extra: 1135/1129,
  52559. bottom: 57/1192
  52560. }
  52561. },
  52562. head: {
  52563. height: math.unit(1.77, "feet"),
  52564. name: "Head",
  52565. image: {
  52566. source: "./media/characters/maverick-leopard-gecko/head.svg"
  52567. }
  52568. },
  52569. },
  52570. [
  52571. {
  52572. name: "Normal",
  52573. height: math.unit(4 + 4/12, "feet"),
  52574. default: true
  52575. },
  52576. ]
  52577. ))
  52578. characterMakers.push(() => makeCharacter(
  52579. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  52580. {
  52581. front: {
  52582. height: math.unit(2, "inches"),
  52583. name: "Front",
  52584. image: {
  52585. source: "./media/characters/carley-hartford/front.svg",
  52586. extra: 1035/988,
  52587. bottom: 23/1058
  52588. }
  52589. },
  52590. back: {
  52591. height: math.unit(2, "inches"),
  52592. name: "Back",
  52593. image: {
  52594. source: "./media/characters/carley-hartford/back.svg",
  52595. extra: 1035/988,
  52596. bottom: 23/1058
  52597. }
  52598. },
  52599. dressed: {
  52600. height: math.unit(2, "inches"),
  52601. name: "Dressed",
  52602. image: {
  52603. source: "./media/characters/carley-hartford/dressed.svg",
  52604. extra: 651/620,
  52605. bottom: 0/651
  52606. }
  52607. },
  52608. },
  52609. [
  52610. {
  52611. name: "Micro",
  52612. height: math.unit(2, "inches"),
  52613. default: true
  52614. },
  52615. {
  52616. name: "Macro",
  52617. height: math.unit(6 + 3/12, "feet")
  52618. },
  52619. ]
  52620. ))
  52621. characterMakers.push(() => makeCharacter(
  52622. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  52623. {
  52624. front: {
  52625. height: math.unit(2 + 3/12, "feet"),
  52626. weight: math.unit(15 + 7/16, "lb"),
  52627. name: "Front",
  52628. image: {
  52629. source: "./media/characters/duke/front.svg",
  52630. extra: 910/815,
  52631. bottom: 30/940
  52632. }
  52633. },
  52634. },
  52635. [
  52636. {
  52637. name: "Normal",
  52638. height: math.unit(2 + 3/12, "feet"),
  52639. default: true
  52640. },
  52641. ]
  52642. ))
  52643. characterMakers.push(() => makeCharacter(
  52644. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  52645. {
  52646. front: {
  52647. height: math.unit(5 + 4/12, "feet"),
  52648. weight: math.unit(156, "lb"),
  52649. name: "Front",
  52650. image: {
  52651. source: "./media/characters/dein/front.svg",
  52652. extra: 855/815,
  52653. bottom: 48/903
  52654. }
  52655. },
  52656. side: {
  52657. height: math.unit(5 + 4/12, "feet"),
  52658. weight: math.unit(156, "lb"),
  52659. name: "side",
  52660. image: {
  52661. source: "./media/characters/dein/side.svg",
  52662. extra: 846/803,
  52663. bottom: 25/871
  52664. }
  52665. },
  52666. maw: {
  52667. height: math.unit(1.45, "feet"),
  52668. name: "Maw",
  52669. image: {
  52670. source: "./media/characters/dein/maw.svg"
  52671. }
  52672. },
  52673. },
  52674. [
  52675. {
  52676. name: "Ferret Sized",
  52677. height: math.unit(2 + 5/12, "feet")
  52678. },
  52679. {
  52680. name: "Normal",
  52681. height: math.unit(5 + 4/12, "feet"),
  52682. default: true
  52683. },
  52684. ]
  52685. ))
  52686. characterMakers.push(() => makeCharacter(
  52687. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  52688. {
  52689. front: {
  52690. height: math.unit(84 + 8/12, "feet"),
  52691. weight: math.unit(942180, "lb"),
  52692. name: "Front",
  52693. image: {
  52694. source: "./media/characters/daurine-arima/front.svg",
  52695. extra: 1989/1782,
  52696. bottom: 37/2026
  52697. }
  52698. },
  52699. side: {
  52700. height: math.unit(84 + 8/12, "feet"),
  52701. weight: math.unit(942180, "lb"),
  52702. name: "Side",
  52703. image: {
  52704. source: "./media/characters/daurine-arima/side.svg",
  52705. extra: 1997/1790,
  52706. bottom: 21/2018
  52707. }
  52708. },
  52709. back: {
  52710. height: math.unit(84 + 8/12, "feet"),
  52711. weight: math.unit(942180, "lb"),
  52712. name: "Back",
  52713. image: {
  52714. source: "./media/characters/daurine-arima/back.svg",
  52715. extra: 1992/1800,
  52716. bottom: 12/2004
  52717. }
  52718. },
  52719. head: {
  52720. height: math.unit(15.5, "feet"),
  52721. name: "Head",
  52722. image: {
  52723. source: "./media/characters/daurine-arima/head.svg"
  52724. }
  52725. },
  52726. headAlt: {
  52727. height: math.unit(19.19, "feet"),
  52728. name: "Head (Alt)",
  52729. image: {
  52730. source: "./media/characters/daurine-arima/head-alt.svg"
  52731. }
  52732. },
  52733. },
  52734. [
  52735. {
  52736. name: "Minimum height",
  52737. height: math.unit(8 + 10/12, "feet")
  52738. },
  52739. {
  52740. name: "Comfort height",
  52741. height: math.unit(19 + 6 /12, "feet")
  52742. },
  52743. {
  52744. name: "\"Normal\" height",
  52745. height: math.unit(28 + 10/12, "feet")
  52746. },
  52747. {
  52748. name: "Base height",
  52749. height: math.unit(84 + 8/12, "feet"),
  52750. default: true
  52751. },
  52752. {
  52753. name: "Mini-macro",
  52754. height: math.unit(2360, "feet")
  52755. },
  52756. {
  52757. name: "Macro",
  52758. height: math.unit(10, "miles")
  52759. },
  52760. {
  52761. name: "Goddess",
  52762. height: math.unit(9.99e40, "yottameters")
  52763. },
  52764. ]
  52765. ))
  52766. characterMakers.push(() => makeCharacter(
  52767. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  52768. {
  52769. front: {
  52770. height: math.unit(2.3, "meters"),
  52771. name: "Front",
  52772. image: {
  52773. source: "./media/characters/cilenomon/front.svg",
  52774. extra: 1963/1778,
  52775. bottom: 54/2017
  52776. }
  52777. },
  52778. },
  52779. [
  52780. {
  52781. name: "Normal",
  52782. height: math.unit(2.3, "meters"),
  52783. default: true
  52784. },
  52785. {
  52786. name: "Big",
  52787. height: math.unit(5, "meters")
  52788. },
  52789. {
  52790. name: "Macro",
  52791. height: math.unit(30, "meters")
  52792. },
  52793. {
  52794. name: "True",
  52795. height: math.unit(1, "universe")
  52796. },
  52797. ]
  52798. ))
  52799. characterMakers.push(() => makeCharacter(
  52800. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  52801. {
  52802. front: {
  52803. height: math.unit(5, "feet"),
  52804. name: "Front",
  52805. image: {
  52806. source: "./media/characters/sen-mink/front.svg",
  52807. extra: 1727/1675,
  52808. bottom: 35/1762
  52809. }
  52810. },
  52811. },
  52812. [
  52813. {
  52814. name: "Normal",
  52815. height: math.unit(5, "feet"),
  52816. default: true
  52817. },
  52818. ]
  52819. ))
  52820. characterMakers.push(() => makeCharacter(
  52821. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  52822. {
  52823. front: {
  52824. height: math.unit(5.42999, "feet"),
  52825. weight: math.unit(100, "lb"),
  52826. name: "Front",
  52827. image: {
  52828. source: "./media/characters/ophois/front.svg",
  52829. extra: 1429/1286,
  52830. bottom: 60/1489
  52831. }
  52832. },
  52833. },
  52834. [
  52835. {
  52836. name: "Normal",
  52837. height: math.unit(5.42999, "feet"),
  52838. default: true
  52839. },
  52840. ]
  52841. ))
  52842. characterMakers.push(() => makeCharacter(
  52843. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  52844. {
  52845. front: {
  52846. height: math.unit(2, "meters"),
  52847. name: "Front",
  52848. image: {
  52849. source: "./media/characters/riley/front.svg",
  52850. extra: 1779/1754,
  52851. bottom: 139/1918
  52852. }
  52853. },
  52854. },
  52855. [
  52856. {
  52857. name: "Normal",
  52858. height: math.unit(2, "meters"),
  52859. default: true
  52860. },
  52861. ]
  52862. ))
  52863. characterMakers.push(() => makeCharacter(
  52864. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  52865. {
  52866. front: {
  52867. height: math.unit(6 + 2/12, "feet"),
  52868. weight: math.unit(195, "lb"),
  52869. preyCapacity: math.unit(6, "people"),
  52870. name: "Front",
  52871. image: {
  52872. source: "./media/characters/shuken-flash/front.svg",
  52873. extra: 1905/1739,
  52874. bottom: 65/1970
  52875. }
  52876. },
  52877. back: {
  52878. height: math.unit(6 + 2/12, "feet"),
  52879. weight: math.unit(195, "lb"),
  52880. preyCapacity: math.unit(6, "people"),
  52881. name: "Back",
  52882. image: {
  52883. source: "./media/characters/shuken-flash/back.svg",
  52884. extra: 1912/1751,
  52885. bottom: 13/1925
  52886. }
  52887. },
  52888. },
  52889. [
  52890. {
  52891. name: "Normal",
  52892. height: math.unit(6 + 2/12, "feet"),
  52893. default: true
  52894. },
  52895. ]
  52896. ))
  52897. characterMakers.push(() => makeCharacter(
  52898. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  52899. {
  52900. front: {
  52901. height: math.unit(5 + 9/12, "feet"),
  52902. weight: math.unit(150, "lb"),
  52903. name: "Front",
  52904. image: {
  52905. source: "./media/characters/plat/front.svg",
  52906. extra: 1816/1703,
  52907. bottom: 43/1859
  52908. }
  52909. },
  52910. side: {
  52911. height: math.unit(5 + 9/12, "feet"),
  52912. weight: math.unit(300, "lb"),
  52913. name: "Side",
  52914. image: {
  52915. source: "./media/characters/plat/side.svg",
  52916. extra: 1824/1699,
  52917. bottom: 18/1842
  52918. }
  52919. },
  52920. },
  52921. [
  52922. {
  52923. name: "Normal",
  52924. height: math.unit(5 + 9/12, "feet"),
  52925. default: true
  52926. },
  52927. ]
  52928. ))
  52929. characterMakers.push(() => makeCharacter(
  52930. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  52931. {
  52932. front: {
  52933. height: math.unit(9, "feet"),
  52934. weight: math.unit(1800, "lb"),
  52935. name: "Front",
  52936. image: {
  52937. source: "./media/characters/elaine/front.svg",
  52938. extra: 1833/1354,
  52939. bottom: 25/1858
  52940. }
  52941. },
  52942. back: {
  52943. height: math.unit(8.8, "feet"),
  52944. weight: math.unit(1800, "lb"),
  52945. name: "Back",
  52946. image: {
  52947. source: "./media/characters/elaine/back.svg",
  52948. extra: 1641/1233,
  52949. bottom: 53/1694
  52950. }
  52951. },
  52952. },
  52953. [
  52954. {
  52955. name: "Normal",
  52956. height: math.unit(9, "feet"),
  52957. default: true
  52958. },
  52959. ]
  52960. ))
  52961. characterMakers.push(() => makeCharacter(
  52962. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  52963. {
  52964. front: {
  52965. height: math.unit(17 + 9/12, "feet"),
  52966. weight: math.unit(8000, "lb"),
  52967. name: "Front",
  52968. image: {
  52969. source: "./media/characters/vera-raven/front.svg",
  52970. extra: 1457/1412,
  52971. bottom: 121/1578
  52972. }
  52973. },
  52974. side: {
  52975. height: math.unit(17 + 9/12, "feet"),
  52976. weight: math.unit(8000, "lb"),
  52977. name: "Side",
  52978. image: {
  52979. source: "./media/characters/vera-raven/side.svg",
  52980. extra: 1510/1464,
  52981. bottom: 54/1564
  52982. }
  52983. },
  52984. },
  52985. [
  52986. {
  52987. name: "Normal",
  52988. height: math.unit(17 + 9/12, "feet"),
  52989. default: true
  52990. },
  52991. ]
  52992. ))
  52993. characterMakers.push(() => makeCharacter(
  52994. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  52995. {
  52996. dressed: {
  52997. height: math.unit(6 + 9/12, "feet"),
  52998. name: "Dressed",
  52999. image: {
  53000. source: "./media/characters/nakisha/dressed.svg",
  53001. extra: 1909/1757,
  53002. bottom: 48/1957
  53003. }
  53004. },
  53005. nude: {
  53006. height: math.unit(6 + 9/12, "feet"),
  53007. name: "Nude",
  53008. image: {
  53009. source: "./media/characters/nakisha/nude.svg",
  53010. extra: 1917/1765,
  53011. bottom: 34/1951
  53012. }
  53013. },
  53014. },
  53015. [
  53016. {
  53017. name: "Normal",
  53018. height: math.unit(6 + 9/12, "feet"),
  53019. default: true
  53020. },
  53021. ]
  53022. ))
  53023. characterMakers.push(() => makeCharacter(
  53024. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53025. {
  53026. front: {
  53027. height: math.unit(87, "meters"),
  53028. name: "Front",
  53029. image: {
  53030. source: "./media/characters/serafin/front.svg",
  53031. extra: 1919/1776,
  53032. bottom: 65/1984
  53033. }
  53034. },
  53035. },
  53036. [
  53037. {
  53038. name: "Normal",
  53039. height: math.unit(87, "meters"),
  53040. default: true
  53041. },
  53042. ]
  53043. ))
  53044. characterMakers.push(() => makeCharacter(
  53045. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53046. {
  53047. front: {
  53048. height: math.unit(6, "feet"),
  53049. weight: math.unit(200, "lb"),
  53050. name: "Front",
  53051. image: {
  53052. source: "./media/characters/poptart/front.svg",
  53053. extra: 615/583,
  53054. bottom: 23/638
  53055. }
  53056. },
  53057. back: {
  53058. height: math.unit(6, "feet"),
  53059. weight: math.unit(200, "lb"),
  53060. name: "Back",
  53061. image: {
  53062. source: "./media/characters/poptart/back.svg",
  53063. extra: 617/584,
  53064. bottom: 22/639
  53065. }
  53066. },
  53067. frontNsfw: {
  53068. height: math.unit(6, "feet"),
  53069. weight: math.unit(200, "lb"),
  53070. name: "Front (NSFW)",
  53071. image: {
  53072. source: "./media/characters/poptart/front-nsfw.svg",
  53073. extra: 615/583,
  53074. bottom: 23/638
  53075. }
  53076. },
  53077. backNsfw: {
  53078. height: math.unit(6, "feet"),
  53079. weight: math.unit(200, "lb"),
  53080. name: "Back (NSFW)",
  53081. image: {
  53082. source: "./media/characters/poptart/back-nsfw.svg",
  53083. extra: 617/584,
  53084. bottom: 22/639
  53085. }
  53086. },
  53087. hand: {
  53088. height: math.unit(1.14, "feet"),
  53089. name: "Hand",
  53090. image: {
  53091. source: "./media/characters/poptart/hand.svg"
  53092. }
  53093. },
  53094. foot: {
  53095. height: math.unit(1.5, "feet"),
  53096. name: "Foot",
  53097. image: {
  53098. source: "./media/characters/poptart/foot.svg"
  53099. }
  53100. },
  53101. },
  53102. [
  53103. {
  53104. name: "Normal",
  53105. height: math.unit(6, "feet"),
  53106. default: true
  53107. },
  53108. {
  53109. name: "Grande",
  53110. height: math.unit(350, "feet")
  53111. },
  53112. {
  53113. name: "Massif",
  53114. height: math.unit(967, "feet")
  53115. },
  53116. ]
  53117. ))
  53118. characterMakers.push(() => makeCharacter(
  53119. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53120. {
  53121. hyenaSide: {
  53122. height: math.unit(120, "cm"),
  53123. weight: math.unit(120, "lb"),
  53124. name: "Side",
  53125. image: {
  53126. source: "./media/characters/trance/hyena-side.svg",
  53127. extra: 998/904,
  53128. bottom: 76/1074
  53129. }
  53130. },
  53131. },
  53132. [
  53133. {
  53134. name: "Normal",
  53135. height: math.unit(120, "cm"),
  53136. default: true
  53137. },
  53138. {
  53139. name: "Dire",
  53140. height: math.unit(230, "cm")
  53141. },
  53142. {
  53143. name: "Macro",
  53144. height: math.unit(37, "feet")
  53145. },
  53146. ]
  53147. ))
  53148. characterMakers.push(() => makeCharacter(
  53149. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53150. {
  53151. front: {
  53152. height: math.unit(6 + 3/12, "feet"),
  53153. name: "Front",
  53154. image: {
  53155. source: "./media/characters/michael-berretta/front.svg",
  53156. extra: 515/494,
  53157. bottom: 20/535
  53158. }
  53159. },
  53160. back: {
  53161. height: math.unit(6 + 3/12, "feet"),
  53162. name: "Back",
  53163. image: {
  53164. source: "./media/characters/michael-berretta/back.svg",
  53165. extra: 520/497,
  53166. bottom: 21/541
  53167. }
  53168. },
  53169. frontNsfw: {
  53170. height: math.unit(6 + 3/12, "feet"),
  53171. name: "Front (NSFW)",
  53172. image: {
  53173. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53174. extra: 515/494,
  53175. bottom: 20/535
  53176. }
  53177. },
  53178. dick: {
  53179. height: math.unit(1, "feet"),
  53180. name: "Dick",
  53181. image: {
  53182. source: "./media/characters/michael-berretta/dick.svg"
  53183. }
  53184. },
  53185. },
  53186. [
  53187. {
  53188. name: "Normal",
  53189. height: math.unit(6 + 3/12, "feet"),
  53190. default: true
  53191. },
  53192. {
  53193. name: "Big",
  53194. height: math.unit(12, "feet")
  53195. },
  53196. {
  53197. name: "Macro",
  53198. height: math.unit(187.5, "feet")
  53199. },
  53200. ]
  53201. ))
  53202. characterMakers.push(() => makeCharacter(
  53203. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53204. {
  53205. front: {
  53206. height: math.unit(9 + 9/12, "feet"),
  53207. weight: math.unit(1244, "lb"),
  53208. name: "Front",
  53209. image: {
  53210. source: "./media/characters/stella-edgecomb/front.svg",
  53211. extra: 1835/1706,
  53212. bottom: 49/1884
  53213. }
  53214. },
  53215. pen: {
  53216. height: math.unit(0.95, "feet"),
  53217. name: "Pen",
  53218. image: {
  53219. source: "./media/characters/stella-edgecomb/pen.svg"
  53220. }
  53221. },
  53222. },
  53223. [
  53224. {
  53225. name: "Cozy Bear",
  53226. height: math.unit(0.5, "inches")
  53227. },
  53228. {
  53229. name: "Normal",
  53230. height: math.unit(9 + 9/12, "feet"),
  53231. default: true
  53232. },
  53233. {
  53234. name: "Giga Bear",
  53235. height: math.unit(1, "mile")
  53236. },
  53237. {
  53238. name: "Great Bear",
  53239. height: math.unit(53, "miles")
  53240. },
  53241. {
  53242. name: "Goddess Bear",
  53243. height: math.unit(40000, "miles")
  53244. },
  53245. {
  53246. name: "Sun Bear",
  53247. height: math.unit(900000, "miles")
  53248. },
  53249. ]
  53250. ))
  53251. characterMakers.push(() => makeCharacter(
  53252. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53253. {
  53254. anthroFront: {
  53255. height: math.unit(556, "cm"),
  53256. weight: math.unit(2650, "kg"),
  53257. preyCapacity: math.unit(3, "people"),
  53258. name: "Front",
  53259. image: {
  53260. source: "./media/characters/ash´iika/front.svg",
  53261. extra: 710/673,
  53262. bottom: 15/725
  53263. },
  53264. form: "anthro",
  53265. default: true
  53266. },
  53267. anthroSide: {
  53268. height: math.unit(556, "cm"),
  53269. weight: math.unit(2650, "kg"),
  53270. preyCapacity: math.unit(3, "people"),
  53271. name: "Side",
  53272. image: {
  53273. source: "./media/characters/ash´iika/side.svg",
  53274. extra: 696/676,
  53275. bottom: 13/709
  53276. },
  53277. form: "anthro"
  53278. },
  53279. anthroDressed: {
  53280. height: math.unit(556, "cm"),
  53281. weight: math.unit(2650, "kg"),
  53282. preyCapacity: math.unit(3, "people"),
  53283. name: "Dressed",
  53284. image: {
  53285. source: "./media/characters/ash´iika/dressed.svg",
  53286. extra: 710/673,
  53287. bottom: 15/725
  53288. },
  53289. form: "anthro"
  53290. },
  53291. anthroHead: {
  53292. height: math.unit(3.5, "feet"),
  53293. name: "Head",
  53294. image: {
  53295. source: "./media/characters/ash´iika/head.svg",
  53296. extra: 348/291,
  53297. bottom: 45/393
  53298. },
  53299. form: "anthro"
  53300. },
  53301. feralSide: {
  53302. height: math.unit(870, "cm"),
  53303. weight: math.unit(17500, "kg"),
  53304. preyCapacity: math.unit(15, "people"),
  53305. name: "Side",
  53306. image: {
  53307. source: "./media/characters/ash´iika/feral.svg",
  53308. extra: 595/199,
  53309. bottom: 7/602
  53310. },
  53311. form: "feral",
  53312. default: true,
  53313. },
  53314. },
  53315. [
  53316. {
  53317. name: "Normal",
  53318. height: math.unit(556, "cm"),
  53319. default: true,
  53320. form: "anthro"
  53321. },
  53322. {
  53323. name: "Macro",
  53324. height: math.unit(88, "meters"),
  53325. form: "anthro"
  53326. },
  53327. {
  53328. name: "Normal",
  53329. height: math.unit(870, "cm"),
  53330. default: true,
  53331. form: "feral"
  53332. },
  53333. {
  53334. name: "Large",
  53335. height: math.unit(25, "meters"),
  53336. form: "feral"
  53337. },
  53338. ],
  53339. {
  53340. "anthro": {
  53341. name: "Anthro",
  53342. default: true
  53343. },
  53344. "feral": {
  53345. name: "Feral",
  53346. },
  53347. }
  53348. ))
  53349. characterMakers.push(() => makeCharacter(
  53350. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53351. {
  53352. front: {
  53353. height: math.unit(10, "feet"),
  53354. weight: math.unit(800, "lb"),
  53355. name: "Front",
  53356. image: {
  53357. source: "./media/characters/yen/front.svg",
  53358. extra: 443/411,
  53359. bottom: 6/449
  53360. }
  53361. },
  53362. sleeping: {
  53363. height: math.unit(10, "feet"),
  53364. weight: math.unit(800, "lb"),
  53365. name: "Sleeping",
  53366. image: {
  53367. source: "./media/characters/yen/sleeping.svg",
  53368. extra: 470/422,
  53369. bottom: 0/470
  53370. }
  53371. },
  53372. head: {
  53373. height: math.unit(2.2, "feet"),
  53374. name: "Head",
  53375. image: {
  53376. source: "./media/characters/yen/head.svg"
  53377. }
  53378. },
  53379. headAlt: {
  53380. height: math.unit(2.1, "feet"),
  53381. name: "Head (Alt)",
  53382. image: {
  53383. source: "./media/characters/yen/head-alt.svg"
  53384. }
  53385. },
  53386. },
  53387. [
  53388. {
  53389. name: "Normal",
  53390. height: math.unit(10, "feet"),
  53391. default: true
  53392. },
  53393. ]
  53394. ))
  53395. characterMakers.push(() => makeCharacter(
  53396. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  53397. {
  53398. front: {
  53399. height: math.unit(12, "feet"),
  53400. name: "Front",
  53401. image: {
  53402. source: "./media/characters/citra/front.svg",
  53403. extra: 1950/1710,
  53404. bottom: 47/1997
  53405. }
  53406. },
  53407. },
  53408. [
  53409. {
  53410. name: "Normal",
  53411. height: math.unit(12, "feet"),
  53412. default: true
  53413. },
  53414. ]
  53415. ))
  53416. characterMakers.push(() => makeCharacter(
  53417. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  53418. {
  53419. side: {
  53420. height: math.unit(7 + 10/12, "feet"),
  53421. name: "Side",
  53422. image: {
  53423. source: "./media/characters/sholstim/side.svg",
  53424. extra: 786/682,
  53425. bottom: 40/826
  53426. }
  53427. },
  53428. },
  53429. [
  53430. {
  53431. name: "Normal",
  53432. height: math.unit(7 + 10/12, "feet"),
  53433. default: true
  53434. },
  53435. ]
  53436. ))
  53437. characterMakers.push(() => makeCharacter(
  53438. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  53439. {
  53440. front: {
  53441. height: math.unit(3.10, "meters"),
  53442. name: "Front",
  53443. image: {
  53444. source: "./media/characters/aggyn/front.svg",
  53445. extra: 1188/963,
  53446. bottom: 24/1212
  53447. }
  53448. },
  53449. },
  53450. [
  53451. {
  53452. name: "Normal",
  53453. height: math.unit(3.10, "meters"),
  53454. default: true
  53455. },
  53456. ]
  53457. ))
  53458. characterMakers.push(() => makeCharacter(
  53459. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  53460. {
  53461. front: {
  53462. height: math.unit(7 + 5/12, "feet"),
  53463. weight: math.unit(687, "lb"),
  53464. name: "Front",
  53465. image: {
  53466. source: "./media/characters/alsandair-hergenroether/front.svg",
  53467. extra: 1251/1186,
  53468. bottom: 75/1326
  53469. }
  53470. },
  53471. back: {
  53472. height: math.unit(7 + 5/12, "feet"),
  53473. weight: math.unit(687, "lb"),
  53474. name: "Back",
  53475. image: {
  53476. source: "./media/characters/alsandair-hergenroether/back.svg",
  53477. extra: 1290/1229,
  53478. bottom: 17/1307
  53479. }
  53480. },
  53481. },
  53482. [
  53483. {
  53484. name: "Max Compression",
  53485. height: math.unit(7 + 5/12, "feet"),
  53486. default: true
  53487. },
  53488. {
  53489. name: "\"Normal\"",
  53490. height: math.unit(2, "universes")
  53491. },
  53492. ]
  53493. ))
  53494. characterMakers.push(() => makeCharacter(
  53495. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  53496. {
  53497. front: {
  53498. height: math.unit(4 + 1/12, "feet"),
  53499. weight: math.unit(92, "lb"),
  53500. name: "Front",
  53501. image: {
  53502. source: "./media/characters/ie/front.svg",
  53503. extra: 1585/1352,
  53504. bottom: 91/1676
  53505. }
  53506. },
  53507. },
  53508. [
  53509. {
  53510. name: "Normal",
  53511. height: math.unit(4 + 1/12, "feet"),
  53512. default: true
  53513. },
  53514. ]
  53515. ))
  53516. characterMakers.push(() => makeCharacter(
  53517. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  53518. {
  53519. anthro: {
  53520. height: math.unit(6, "feet"),
  53521. weight: math.unit(150, "lb"),
  53522. name: "Front",
  53523. image: {
  53524. source: "./media/characters/willow/anthro.svg",
  53525. extra: 1073/986,
  53526. bottom: 34/1107
  53527. },
  53528. form: "anthro",
  53529. default: true
  53530. },
  53531. taur: {
  53532. height: math.unit(6, "feet"),
  53533. weight: math.unit(150, "lb"),
  53534. name: "Side",
  53535. image: {
  53536. source: "./media/characters/willow/taur.svg",
  53537. extra: 647/512,
  53538. bottom: 136/783
  53539. },
  53540. form: "taur",
  53541. default: true
  53542. },
  53543. },
  53544. [
  53545. {
  53546. name: "Humanoid",
  53547. height: math.unit(2.7, "meters"),
  53548. form: "anthro"
  53549. },
  53550. {
  53551. name: "Normal",
  53552. height: math.unit(9, "meters"),
  53553. form: "anthro",
  53554. default: true
  53555. },
  53556. {
  53557. name: "Humanoid",
  53558. height: math.unit(2.1, "meters"),
  53559. form: "taur"
  53560. },
  53561. {
  53562. name: "Normal",
  53563. height: math.unit(7, "meters"),
  53564. form: "taur",
  53565. default: true
  53566. },
  53567. ],
  53568. {
  53569. "anthro": {
  53570. name: "Anthro",
  53571. default: true
  53572. },
  53573. "taur": {
  53574. name: "Taur",
  53575. },
  53576. }
  53577. ))
  53578. characterMakers.push(() => makeCharacter(
  53579. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  53580. {
  53581. front: {
  53582. height: math.unit(2 + 5/12, "feet"),
  53583. name: "Front",
  53584. image: {
  53585. source: "./media/characters/kyan/front.svg",
  53586. extra: 460/334,
  53587. bottom: 23/483
  53588. },
  53589. extraAttributes: {
  53590. "toeLength": {
  53591. name: "Toe Length",
  53592. power: 1,
  53593. type: "length",
  53594. base: math.unit(7, "cm")
  53595. },
  53596. "toeclawLength": {
  53597. name: "Toeclaw Length",
  53598. power: 1,
  53599. type: "length",
  53600. base: math.unit(4.7, "cm")
  53601. },
  53602. "earHeight": {
  53603. name: "Ear Height",
  53604. power: 1,
  53605. type: "length",
  53606. base: math.unit(14.1, "cm")
  53607. },
  53608. }
  53609. },
  53610. paws: {
  53611. height: math.unit(0.45, "feet"),
  53612. name: "Paws",
  53613. image: {
  53614. source: "./media/characters/kyan/paws.svg",
  53615. extra: 581/581,
  53616. bottom: 114/695
  53617. }
  53618. },
  53619. },
  53620. [
  53621. {
  53622. name: "Normal",
  53623. height: math.unit(2 + 5/12, "feet"),
  53624. default: true
  53625. },
  53626. ]
  53627. ))
  53628. characterMakers.push(() => makeCharacter(
  53629. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  53630. {
  53631. front: {
  53632. height: math.unit(2 + 2/3, "feet"),
  53633. name: "Front",
  53634. image: {
  53635. source: "./media/characters/xazzon/front.svg",
  53636. extra: 1109/984,
  53637. bottom: 42/1151
  53638. }
  53639. },
  53640. back: {
  53641. height: math.unit(2 + 2/3, "feet"),
  53642. name: "Back",
  53643. image: {
  53644. source: "./media/characters/xazzon/back.svg",
  53645. extra: 1095/971,
  53646. bottom: 23/1118
  53647. }
  53648. },
  53649. },
  53650. [
  53651. {
  53652. name: "Normal",
  53653. height: math.unit(2 + 2/3, "feet"),
  53654. default: true
  53655. },
  53656. ]
  53657. ))
  53658. characterMakers.push(() => makeCharacter(
  53659. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  53660. {
  53661. dressed: {
  53662. height: math.unit(5 + 7/12, "feet"),
  53663. weight: math.unit(173, "lb"),
  53664. name: "Dressed",
  53665. image: {
  53666. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  53667. extra: 3262/2862,
  53668. bottom: 188/3450
  53669. }
  53670. },
  53671. undressed: {
  53672. height: math.unit(5 + 7/12, "feet"),
  53673. weight: math.unit(173, "lb"),
  53674. name: "Undressed",
  53675. image: {
  53676. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  53677. extra: 3262/2862,
  53678. bottom: 188/3450
  53679. }
  53680. },
  53681. },
  53682. [
  53683. {
  53684. name: "The void",
  53685. height: math.unit(7.29193e-34, "angstroms")
  53686. },
  53687. {
  53688. name: "Uh-Oh.",
  53689. height: math.unit(5.734e-7, "angstroms")
  53690. },
  53691. {
  53692. name: "Pico",
  53693. height: math.unit(0.876, "angstroms")
  53694. },
  53695. {
  53696. name: "Nano",
  53697. height: math.unit(0.000134200, "mm")
  53698. },
  53699. {
  53700. name: "Micro",
  53701. height: math.unit(0.0673020, "mm")
  53702. },
  53703. {
  53704. name: "Tiny",
  53705. height: math.unit(2.4, "mm")
  53706. },
  53707. {
  53708. name: "Actual Normal",
  53709. height: math.unit(3, "inches"),
  53710. default: true
  53711. },
  53712. {
  53713. name: "Normal",
  53714. height: math.unit(5 + 8/12, "feet")
  53715. },
  53716. {
  53717. name: "Giant",
  53718. height: math.unit(12, "feet")
  53719. },
  53720. {
  53721. name: "City Ruler",
  53722. height: math.unit(270, "meters")
  53723. },
  53724. {
  53725. name: "Giga",
  53726. height: math.unit(1117.6, "km")
  53727. },
  53728. {
  53729. name: "All-Powerful Queen",
  53730. height: math.unit(70.8, "gigameters")
  53731. },
  53732. {
  53733. name: "'Goddess'",
  53734. height: math.unit(600, "yottameters")
  53735. },
  53736. {
  53737. name: "Biggest!",
  53738. height: math.unit(4.23e5, "yottameters")
  53739. },
  53740. ]
  53741. ))
  53742. characterMakers.push(() => makeCharacter(
  53743. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  53744. {
  53745. front: {
  53746. height: math.unit(8, "feet"),
  53747. weight: math.unit(300, "lb"),
  53748. name: "Front",
  53749. image: {
  53750. source: "./media/characters/khyla-shadowsong/front.svg",
  53751. extra: 861/798,
  53752. bottom: 32/893
  53753. }
  53754. },
  53755. side: {
  53756. height: math.unit(8, "feet"),
  53757. weight: math.unit(300, "lb"),
  53758. name: "Side",
  53759. image: {
  53760. source: "./media/characters/khyla-shadowsong/side.svg",
  53761. extra: 790/750,
  53762. bottom: 87/877
  53763. }
  53764. },
  53765. back: {
  53766. height: math.unit(8, "feet"),
  53767. weight: math.unit(300, "lb"),
  53768. name: "Back",
  53769. image: {
  53770. source: "./media/characters/khyla-shadowsong/back.svg",
  53771. extra: 855/808,
  53772. bottom: 14/869
  53773. }
  53774. },
  53775. head: {
  53776. height: math.unit(2.7, "feet"),
  53777. name: "Head",
  53778. image: {
  53779. source: "./media/characters/khyla-shadowsong/head.svg"
  53780. }
  53781. },
  53782. },
  53783. [
  53784. {
  53785. name: "Micro",
  53786. height: math.unit(6, "inches")
  53787. },
  53788. {
  53789. name: "Normal",
  53790. height: math.unit(8, "feet"),
  53791. default: true
  53792. },
  53793. ]
  53794. ))
  53795. characterMakers.push(() => makeCharacter(
  53796. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  53797. {
  53798. hyperFront: {
  53799. height: math.unit(9 + 4/12, "feet"),
  53800. weight: math.unit(2000, "lb"),
  53801. name: "Front",
  53802. image: {
  53803. source: "./media/characters/tiden/hyper-front.svg",
  53804. extra: 400/382,
  53805. bottom: 6/406
  53806. },
  53807. form: "hyper",
  53808. },
  53809. regularFront: {
  53810. height: math.unit(7 + 10/12, "feet"),
  53811. weight: math.unit(470, "lb"),
  53812. name: "Front",
  53813. image: {
  53814. source: "./media/characters/tiden/regular-front.svg",
  53815. extra: 468/442,
  53816. bottom: 6/474
  53817. },
  53818. form: "regular",
  53819. },
  53820. },
  53821. [
  53822. {
  53823. name: "Normal",
  53824. height: math.unit(9 + 4/12, "feet"),
  53825. default: true,
  53826. form: "hyper"
  53827. },
  53828. {
  53829. name: "Normal",
  53830. height: math.unit(7 + 10/12, "feet"),
  53831. default: true,
  53832. form: "regular"
  53833. },
  53834. ],
  53835. {
  53836. "hyper": {
  53837. name: "Hyper",
  53838. default: true
  53839. },
  53840. "regular": {
  53841. name: "Regular",
  53842. },
  53843. }
  53844. ))
  53845. characterMakers.push(() => makeCharacter(
  53846. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  53847. {
  53848. side: {
  53849. height: math.unit(6, "feet"),
  53850. weight: math.unit(150, "lb"),
  53851. name: "Side",
  53852. image: {
  53853. source: "./media/characters/jason-crowe/side.svg",
  53854. extra: 1771/766,
  53855. bottom: 219/1990
  53856. }
  53857. },
  53858. },
  53859. [
  53860. {
  53861. name: "Pocket Gryphon",
  53862. height: math.unit(6, "cm")
  53863. },
  53864. {
  53865. name: "Raven",
  53866. height: math.unit(60, "cm")
  53867. },
  53868. {
  53869. name: "Normal",
  53870. height: math.unit(1, "meter"),
  53871. default: true
  53872. },
  53873. ]
  53874. ))
  53875. characterMakers.push(() => makeCharacter(
  53876. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  53877. {
  53878. front: {
  53879. height: math.unit(9 + 6/12, "feet"),
  53880. weight: math.unit(1100, "lb"),
  53881. name: "Front",
  53882. image: {
  53883. source: "./media/characters/django/front.svg",
  53884. extra: 1231/1136,
  53885. bottom: 34/1265
  53886. }
  53887. },
  53888. side: {
  53889. height: math.unit(9 + 6/12, "feet"),
  53890. weight: math.unit(1100, "lb"),
  53891. name: "Side",
  53892. image: {
  53893. source: "./media/characters/django/side.svg",
  53894. extra: 1267/1174,
  53895. bottom: 9/1276
  53896. }
  53897. },
  53898. },
  53899. [
  53900. {
  53901. name: "Normal",
  53902. height: math.unit(9 + 6/12, "feet"),
  53903. default: true
  53904. },
  53905. {
  53906. name: "Macro 1",
  53907. height: math.unit(50, "feet")
  53908. },
  53909. {
  53910. name: "Macro 2",
  53911. height: math.unit(500, "feet")
  53912. },
  53913. {
  53914. name: "Mega Macro",
  53915. height: math.unit(5300, "feet")
  53916. },
  53917. ]
  53918. ))
  53919. characterMakers.push(() => makeCharacter(
  53920. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  53921. {
  53922. frontSfw: {
  53923. height: math.unit(120, "cm"),
  53924. weight: math.unit(15, "kg"),
  53925. name: "Front (SFW)",
  53926. image: {
  53927. source: "./media/characters/eri/front-sfw.svg",
  53928. extra: 1014/939,
  53929. bottom: 37/1051
  53930. },
  53931. form: "moth",
  53932. },
  53933. frontNsfw: {
  53934. height: math.unit(120, "cm"),
  53935. weight: math.unit(15, "kg"),
  53936. name: "Front (NSFW)",
  53937. image: {
  53938. source: "./media/characters/eri/front-nsfw.svg",
  53939. extra: 1014/939,
  53940. bottom: 37/1051
  53941. },
  53942. form: "moth",
  53943. default: true
  53944. },
  53945. egg: {
  53946. height: math.unit(10, "cm"),
  53947. name: "Egg",
  53948. image: {
  53949. source: "./media/characters/eri/egg.svg"
  53950. },
  53951. form: "egg",
  53952. default: true
  53953. },
  53954. },
  53955. [
  53956. {
  53957. name: "Normal",
  53958. height: math.unit(120, "cm"),
  53959. default: true,
  53960. form: "moth"
  53961. },
  53962. {
  53963. name: "Normal",
  53964. height: math.unit(10, "cm"),
  53965. default: true,
  53966. form: "egg"
  53967. },
  53968. ],
  53969. {
  53970. "moth": {
  53971. name: "Moth",
  53972. default: true
  53973. },
  53974. "egg": {
  53975. name: "Egg",
  53976. },
  53977. }
  53978. ))
  53979. characterMakers.push(() => makeCharacter(
  53980. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  53981. {
  53982. front: {
  53983. height: math.unit(200, "feet"),
  53984. name: "Front",
  53985. image: {
  53986. source: "./media/characters/bishop-dowser/front.svg",
  53987. extra: 933/868,
  53988. bottom: 106/1039
  53989. }
  53990. },
  53991. },
  53992. [
  53993. {
  53994. name: "Giant",
  53995. height: math.unit(200, "feet"),
  53996. default: true
  53997. },
  53998. ]
  53999. ))
  54000. characterMakers.push(() => makeCharacter(
  54001. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54002. {
  54003. front: {
  54004. height: math.unit(2, "meters"),
  54005. preyCapacity: math.unit(3, "people"),
  54006. name: "Front",
  54007. image: {
  54008. source: "./media/characters/fryra/front.svg",
  54009. extra: 1025/948,
  54010. bottom: 30/1055
  54011. },
  54012. extraAttributes: {
  54013. "breastVolume": {
  54014. name: "Breast Volume",
  54015. power: 3,
  54016. type: "volume",
  54017. base: math.unit(8, "liters")
  54018. },
  54019. }
  54020. },
  54021. back: {
  54022. height: math.unit(2, "meters"),
  54023. preyCapacity: math.unit(3, "people"),
  54024. name: "Back",
  54025. image: {
  54026. source: "./media/characters/fryra/back.svg",
  54027. extra: 993/938,
  54028. bottom: 38/1031
  54029. },
  54030. extraAttributes: {
  54031. "breastVolume": {
  54032. name: "Breast Volume",
  54033. power: 3,
  54034. type: "volume",
  54035. base: math.unit(8, "liters")
  54036. },
  54037. }
  54038. },
  54039. head: {
  54040. height: math.unit(1.33, "feet"),
  54041. name: "Head",
  54042. image: {
  54043. source: "./media/characters/fryra/head.svg"
  54044. }
  54045. },
  54046. maw: {
  54047. height: math.unit(0.56, "feet"),
  54048. name: "Maw",
  54049. image: {
  54050. source: "./media/characters/fryra/maw.svg"
  54051. }
  54052. },
  54053. },
  54054. [
  54055. {
  54056. name: "Micro",
  54057. height: math.unit(5, "cm")
  54058. },
  54059. {
  54060. name: "Normal",
  54061. height: math.unit(2, "meters"),
  54062. default: true
  54063. },
  54064. {
  54065. name: "Small Macro",
  54066. height: math.unit(8, "meters")
  54067. },
  54068. {
  54069. name: "Macro",
  54070. height: math.unit(50, "meters")
  54071. },
  54072. {
  54073. name: "Megamacro",
  54074. height: math.unit(1, "km")
  54075. },
  54076. {
  54077. name: "Planetary",
  54078. height: math.unit(300000, "km")
  54079. },
  54080. {
  54081. name: "Universal",
  54082. height: math.unit(250, "lightyears")
  54083. },
  54084. {
  54085. name: "Fabric of Reality",
  54086. height: math.unit(1000, "multiverses")
  54087. },
  54088. ]
  54089. ))
  54090. characterMakers.push(() => makeCharacter(
  54091. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54092. {
  54093. frontDressed: {
  54094. height: math.unit(6 + 2/12, "feet"),
  54095. name: "Front (Dressed)",
  54096. image: {
  54097. source: "./media/characters/fiera/front-dressed.svg",
  54098. extra: 1883/1793,
  54099. bottom: 70/1953
  54100. }
  54101. },
  54102. backDressed: {
  54103. height: math.unit(6 + 2/12, "feet"),
  54104. name: "Back (Dressed)",
  54105. image: {
  54106. source: "./media/characters/fiera/back-dressed.svg",
  54107. extra: 1847/1780,
  54108. bottom: 70/1917
  54109. }
  54110. },
  54111. frontNude: {
  54112. height: math.unit(6 + 2/12, "feet"),
  54113. name: "Front (Nude)",
  54114. image: {
  54115. source: "./media/characters/fiera/front-nude.svg",
  54116. extra: 1875/1785,
  54117. bottom: 66/1941
  54118. }
  54119. },
  54120. backNude: {
  54121. height: math.unit(6 + 2/12, "feet"),
  54122. name: "Back (Nude)",
  54123. image: {
  54124. source: "./media/characters/fiera/back-nude.svg",
  54125. extra: 1855/1788,
  54126. bottom: 44/1899
  54127. }
  54128. },
  54129. maw: {
  54130. height: math.unit(1.3, "feet"),
  54131. name: "Maw",
  54132. image: {
  54133. source: "./media/characters/fiera/maw.svg"
  54134. }
  54135. },
  54136. paw: {
  54137. height: math.unit(1, "feet"),
  54138. name: "Paw",
  54139. image: {
  54140. source: "./media/characters/fiera/paw.svg"
  54141. }
  54142. },
  54143. shoe: {
  54144. height: math.unit(1.05, "feet"),
  54145. name: "Shoe",
  54146. image: {
  54147. source: "./media/characters/fiera/shoe.svg"
  54148. }
  54149. },
  54150. },
  54151. [
  54152. {
  54153. name: "Normal",
  54154. height: math.unit(6 + 2/12, "feet"),
  54155. default: true
  54156. },
  54157. {
  54158. name: "Size Difference",
  54159. height: math.unit(13, "feet")
  54160. },
  54161. {
  54162. name: "Macro",
  54163. height: math.unit(60, "feet")
  54164. },
  54165. {
  54166. name: "Mega Macro",
  54167. height: math.unit(200, "feet")
  54168. },
  54169. ]
  54170. ))
  54171. characterMakers.push(() => makeCharacter(
  54172. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54173. {
  54174. back: {
  54175. height: math.unit(6, "feet"),
  54176. name: "Back",
  54177. image: {
  54178. source: "./media/characters/flare/back.svg",
  54179. extra: 1883/1765,
  54180. bottom: 32/1915
  54181. }
  54182. },
  54183. },
  54184. [
  54185. {
  54186. name: "Normal",
  54187. height: math.unit(6 + 2/12, "feet"),
  54188. default: true
  54189. },
  54190. {
  54191. name: "Size Difference",
  54192. height: math.unit(13, "feet")
  54193. },
  54194. {
  54195. name: "Macro",
  54196. height: math.unit(60, "feet")
  54197. },
  54198. {
  54199. name: "Macro 2",
  54200. height: math.unit(100, "feet")
  54201. },
  54202. {
  54203. name: "Mega Macro",
  54204. height: math.unit(200, "feet")
  54205. },
  54206. ]
  54207. ))
  54208. characterMakers.push(() => makeCharacter(
  54209. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54210. {
  54211. front: {
  54212. height: math.unit(2.2, "m"),
  54213. weight: math.unit(300, "kg"),
  54214. name: "Front",
  54215. image: {
  54216. source: "./media/characters/hanna/front.svg",
  54217. extra: 1696/1502,
  54218. bottom: 206/1902
  54219. }
  54220. },
  54221. },
  54222. [
  54223. {
  54224. name: "Humanoid",
  54225. height: math.unit(2.2, "meters")
  54226. },
  54227. {
  54228. name: "Normal",
  54229. height: math.unit(4.8, "meters"),
  54230. default: true
  54231. },
  54232. ]
  54233. ))
  54234. characterMakers.push(() => makeCharacter(
  54235. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  54236. {
  54237. front: {
  54238. height: math.unit(2.8, "meters"),
  54239. name: "Front",
  54240. image: {
  54241. source: "./media/characters/argo/front.svg",
  54242. extra: 731/518,
  54243. bottom: 84/815
  54244. }
  54245. },
  54246. },
  54247. [
  54248. {
  54249. name: "Normal",
  54250. height: math.unit(3, "meters"),
  54251. default: true
  54252. },
  54253. ]
  54254. ))
  54255. characterMakers.push(() => makeCharacter(
  54256. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  54257. {
  54258. side: {
  54259. height: math.unit(3.8, "meters"),
  54260. name: "Side",
  54261. image: {
  54262. source: "./media/characters/sybil/side.svg",
  54263. extra: 382/361,
  54264. bottom: 25/407
  54265. }
  54266. },
  54267. },
  54268. [
  54269. {
  54270. name: "Normal",
  54271. height: math.unit(3.8, "meters"),
  54272. default: true
  54273. },
  54274. ]
  54275. ))
  54276. characterMakers.push(() => makeCharacter(
  54277. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  54278. {
  54279. side: {
  54280. height: math.unit(6, "meters"),
  54281. name: "Side",
  54282. image: {
  54283. source: "./media/characters/plum/side.svg",
  54284. extra: 858/755,
  54285. bottom: 45/903
  54286. },
  54287. form: "taur",
  54288. default: true
  54289. },
  54290. back: {
  54291. height: math.unit(6.3, "meters"),
  54292. name: "Back",
  54293. image: {
  54294. source: "./media/characters/plum/back.svg",
  54295. extra: 887/813,
  54296. bottom: 32/919
  54297. },
  54298. form: "taur",
  54299. },
  54300. feral: {
  54301. height: math.unit(5.5, "meter"),
  54302. name: "Front",
  54303. image: {
  54304. source: "./media/characters/plum/feral.svg",
  54305. extra: 568/403,
  54306. bottom: 51/619
  54307. },
  54308. form: "feral",
  54309. default: true
  54310. },
  54311. head: {
  54312. height: math.unit(1.46, "meter"),
  54313. name: "Head",
  54314. image: {
  54315. source: "./media/characters/plum/head.svg"
  54316. },
  54317. form: "taur"
  54318. },
  54319. tailTop: {
  54320. height: math.unit(5.6, "meter"),
  54321. name: "Tail (Top)",
  54322. image: {
  54323. source: "./media/characters/plum/tail-top.svg"
  54324. },
  54325. form: "taur",
  54326. },
  54327. tailBottom: {
  54328. height: math.unit(5.6, "meter"),
  54329. name: "Tail (Bottom)",
  54330. image: {
  54331. source: "./media/characters/plum/tail-bottom.svg"
  54332. },
  54333. form: "taur",
  54334. },
  54335. feralHead: {
  54336. height: math.unit(2.56549521, "meter"),
  54337. name: "Head",
  54338. image: {
  54339. source: "./media/characters/plum/head.svg"
  54340. },
  54341. form: "feral"
  54342. },
  54343. feralTailTop: {
  54344. height: math.unit(5.44728435, "meter"),
  54345. name: "Tail (Top)",
  54346. image: {
  54347. source: "./media/characters/plum/tail-top.svg"
  54348. },
  54349. form: "feral",
  54350. },
  54351. feralTailBottom: {
  54352. height: math.unit(5.44728435, "meter"),
  54353. name: "Tail (Bottom)",
  54354. image: {
  54355. source: "./media/characters/plum/tail-bottom.svg"
  54356. },
  54357. form: "feral",
  54358. },
  54359. },
  54360. [
  54361. {
  54362. name: "Normal",
  54363. height: math.unit(6, "meters"),
  54364. default: true,
  54365. form: "taur"
  54366. },
  54367. {
  54368. name: "Normal",
  54369. height: math.unit(5.5, "meters"),
  54370. default: true,
  54371. form: "feral"
  54372. },
  54373. ],
  54374. {
  54375. "taur": {
  54376. name: "Taur",
  54377. default: true
  54378. },
  54379. "feral": {
  54380. name: "Feral",
  54381. },
  54382. }
  54383. ))
  54384. characterMakers.push(() => makeCharacter(
  54385. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  54386. {
  54387. front: {
  54388. height: math.unit(6, "feet"),
  54389. weight: math.unit(115, "lb"),
  54390. name: "Front",
  54391. image: {
  54392. source: "./media/characters/celeste-kitsune/front.svg",
  54393. extra: 393/366,
  54394. bottom: 7/400
  54395. }
  54396. },
  54397. side: {
  54398. height: math.unit(6, "feet"),
  54399. weight: math.unit(115, "lb"),
  54400. name: "Side",
  54401. image: {
  54402. source: "./media/characters/celeste-kitsune/side.svg",
  54403. extra: 818/765,
  54404. bottom: 40/858
  54405. }
  54406. },
  54407. },
  54408. [
  54409. {
  54410. name: "Megamacro",
  54411. height: math.unit(1500, "miles"),
  54412. default: true
  54413. },
  54414. ]
  54415. ))
  54416. //characters
  54417. function makeCharacters() {
  54418. const results = [];
  54419. characterMakers.forEach(character => {
  54420. results.push(character());
  54421. });
  54422. return results;
  54423. }