less copy protection, more size visualization
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

51030 行
1.3 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.energyNeed) {
  46. views[key].attributes.capacity = {
  47. name: "Food Intake",
  48. power: 3,
  49. type: "energy",
  50. base: value.energyNeed
  51. }
  52. }
  53. if (value.extraAttributes) {
  54. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  55. views[key].attributes[attrKey] = attrValue
  56. })
  57. }
  58. });
  59. return createEntityMaker(info, views, defaultSizes, forms);
  60. }
  61. const speciesData = {
  62. animal: {
  63. name: "Animal"
  64. },
  65. dog: {
  66. name: "Dog",
  67. parents: [
  68. "canine"
  69. ]
  70. },
  71. canine: {
  72. name: "Canine",
  73. parents: [
  74. "mammal"
  75. ]
  76. },
  77. crux: {
  78. name: "Crux",
  79. parents: [
  80. "mammal"
  81. ]
  82. },
  83. mammal: {
  84. name: "Mammal",
  85. parents: [
  86. "animal"
  87. ]
  88. },
  89. "rough-collie": {
  90. name: "Rough Collie",
  91. parents: [
  92. "dog"
  93. ]
  94. },
  95. dragon: {
  96. name: "Dragon",
  97. parents: [
  98. "reptile"
  99. ]
  100. },
  101. reptile: {
  102. name: "Reptile",
  103. parents: [
  104. "animal"
  105. ]
  106. },
  107. woodpecker: {
  108. name: "Woodpecker",
  109. parents: [
  110. "avian"
  111. ]
  112. },
  113. avian: {
  114. name: "Avian",
  115. parents: [
  116. "animal"
  117. ]
  118. },
  119. kitsune: {
  120. name: "Kitsune",
  121. parents: [
  122. "fox"
  123. ]
  124. },
  125. fox: {
  126. name: "Fox",
  127. parents: [
  128. "mammal"
  129. ]
  130. },
  131. pokemon: {
  132. name: "Pokemon",
  133. },
  134. tiger: {
  135. name: "Tiger",
  136. parents: [
  137. "cat"
  138. ]
  139. },
  140. cat: {
  141. name: "Cat",
  142. parents: [
  143. "feliform"
  144. ]
  145. },
  146. "blue-jay": {
  147. name: "Blue Jay",
  148. parents: [
  149. "avian"
  150. ]
  151. },
  152. wolf: {
  153. name: "Wolf",
  154. parents: [
  155. "mammal"
  156. ]
  157. },
  158. coyote: {
  159. name: "Coyote",
  160. parents: [
  161. "mammal"
  162. ]
  163. },
  164. raccoon: {
  165. name: "Raccoon",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. weasel: {
  171. name: "Weasel",
  172. parents: [
  173. "mustelid"
  174. ]
  175. },
  176. "red-panda": {
  177. name: "Red Panda",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. dolphin: {
  183. name: "Dolphin",
  184. parents: [
  185. "mammal"
  186. ]
  187. },
  188. "african-wild-dog": {
  189. name: "African Wild Dog",
  190. parents: [
  191. "canine"
  192. ]
  193. },
  194. "hyena": {
  195. name: "Hyena",
  196. parents: [
  197. "feliform"
  198. ]
  199. },
  200. "carbuncle": {
  201. name: "Carbuncle",
  202. parents: [
  203. "animal"
  204. ]
  205. },
  206. bat: {
  207. name: "Bat",
  208. parents: [
  209. "mammal"
  210. ]
  211. },
  212. "leaf-nosed-bat": {
  213. name: "Leaf-Nosed Bat",
  214. parents: [
  215. "bat"
  216. ]
  217. },
  218. "fish": {
  219. name: "Fish",
  220. parents: [
  221. "animal"
  222. ]
  223. },
  224. "ram": {
  225. name: "Ram",
  226. parents: [
  227. "mammal"
  228. ]
  229. },
  230. "demon": {
  231. name: "Demon",
  232. parents: [
  233. "supernatural"
  234. ]
  235. },
  236. "cougar": {
  237. name: "Cougar",
  238. parents: [
  239. "cat"
  240. ]
  241. },
  242. "goat": {
  243. name: "Goat",
  244. parents: [
  245. "mammal"
  246. ]
  247. },
  248. "lion": {
  249. name: "Lion",
  250. parents: [
  251. "cat"
  252. ]
  253. },
  254. "harpy-eager": {
  255. name: "Harpy Eagle",
  256. parents: [
  257. "avian"
  258. ]
  259. },
  260. "deer": {
  261. name: "Deer",
  262. parents: [
  263. "mammal"
  264. ]
  265. },
  266. "phoenix": {
  267. name: "Phoenix",
  268. parents: [
  269. "avian"
  270. ]
  271. },
  272. "aeromorph": {
  273. name: "Aeromorph",
  274. parents: [
  275. "machine"
  276. ]
  277. },
  278. "machine": {
  279. name: "Machine",
  280. },
  281. "android": {
  282. name: "Android",
  283. parents: [
  284. "machine"
  285. ]
  286. },
  287. "jackal": {
  288. name: "Jackal",
  289. parents: [
  290. "canine"
  291. ]
  292. },
  293. "corvid": {
  294. name: "Corvid",
  295. parents: [
  296. "avian"
  297. ]
  298. },
  299. "pharaoh-hound": {
  300. name: "Pharaoh Hound",
  301. parents: [
  302. "dog"
  303. ]
  304. },
  305. "skunk": {
  306. name: "Skunk",
  307. parents: [
  308. "mammal"
  309. ]
  310. },
  311. "shark": {
  312. name: "Shark",
  313. parents: [
  314. "fish"
  315. ]
  316. },
  317. "black-panther": {
  318. name: "Black Panther",
  319. parents: [
  320. "cat"
  321. ]
  322. },
  323. "umbra": {
  324. name: "Umbra",
  325. parents: [
  326. "animal"
  327. ]
  328. },
  329. "raven": {
  330. name: "Raven",
  331. parents: [
  332. "corvid"
  333. ]
  334. },
  335. "snow-leopard": {
  336. name: "Snow Leopard",
  337. parents: [
  338. "cat"
  339. ]
  340. },
  341. "barbary-lion": {
  342. name: "Barbary Lion",
  343. parents: [
  344. "lion"
  345. ]
  346. },
  347. "dra'gal": {
  348. name: "Dra'Gal",
  349. parents: [
  350. "mammal"
  351. ]
  352. },
  353. "german-shepherd": {
  354. name: "German Shepherd",
  355. parents: [
  356. "dog"
  357. ]
  358. },
  359. "bayleef": {
  360. name: "Bayleef",
  361. parents: [
  362. "pokemon",
  363. "plant",
  364. "animal"
  365. ]
  366. },
  367. "mouse": {
  368. name: "Mouse",
  369. parents: [
  370. "rodent"
  371. ]
  372. },
  373. "rat": {
  374. name: "Rat",
  375. parents: [
  376. "mammal"
  377. ]
  378. },
  379. "hoshiko-beast": {
  380. name: "Hoshiko Beast",
  381. parents: ["animal"]
  382. },
  383. "snow-jugani": {
  384. name: "Snow Jugani",
  385. parents: ["cat"]
  386. },
  387. "patamon": {
  388. name: "Patamon",
  389. parents: ["digimon", "guinea-pig"]
  390. },
  391. "digimon": {
  392. name: "Digimon",
  393. },
  394. "jugani": {
  395. name: "Jugani",
  396. parents: ["cat"]
  397. },
  398. "luxray": {
  399. name: "Luxray",
  400. parents: ["pokemon", "lion"]
  401. },
  402. "mech": {
  403. name: "Mech",
  404. parents: ["machine"]
  405. },
  406. "zoid": {
  407. name: "Zoid",
  408. parents: ["mech"]
  409. },
  410. "monster": {
  411. name: "Monster",
  412. parents: ["animal"]
  413. },
  414. "foo-dog": {
  415. name: "Foo Dog",
  416. parents: ["mammal"]
  417. },
  418. "elephant": {
  419. name: "Elephant",
  420. parents: ["mammal"]
  421. },
  422. "eagle": {
  423. name: "Eagle",
  424. parents: ["avian"]
  425. },
  426. "cow": {
  427. name: "Cow",
  428. parents: ["mammal"]
  429. },
  430. "crocodile": {
  431. name: "Crocodile",
  432. parents: ["reptile"]
  433. },
  434. "borzoi": {
  435. name: "Borzoi",
  436. parents: ["dog"]
  437. },
  438. "snake": {
  439. name: "Snake",
  440. parents: ["reptile"]
  441. },
  442. "horned-bush-viper": {
  443. name: "Horned Bush Viper",
  444. parents: ["viper"]
  445. },
  446. "cobra": {
  447. name: "Cobra",
  448. parents: ["snake"]
  449. },
  450. "harpy-eagle": {
  451. name: "Harpy Eagle",
  452. parents: ["eagle"]
  453. },
  454. "raptor": {
  455. name: "Raptor",
  456. parents: ["dinosaur"]
  457. },
  458. "dinosaur": {
  459. name: "Dinosaur",
  460. parents: ["reptile"]
  461. },
  462. "veilhound": {
  463. name: "Veilhound",
  464. parents: ["hellhound"]
  465. },
  466. "hellhound": {
  467. name: "Hellhound",
  468. parents: ["canine", "demon"]
  469. },
  470. "insect": {
  471. name: "Insect",
  472. parents: ["animal"]
  473. },
  474. "beetle": {
  475. name: "Beetle",
  476. parents: ["insect"]
  477. },
  478. "moth": {
  479. name: "Moth",
  480. parents: ["insect"]
  481. },
  482. "eastern-dragon": {
  483. name: "Eastern Dragon",
  484. parents: ["dragon"]
  485. },
  486. "jaguar": {
  487. name: "Jaguar",
  488. parents: ["cat"]
  489. },
  490. "horse": {
  491. name: "Horse",
  492. parents: ["mammal"]
  493. },
  494. "sergal": {
  495. name: "Sergal",
  496. parents: ["mammal"]
  497. },
  498. "gryphon": {
  499. name: "Gryphon",
  500. parents: ["lion", "eagle"]
  501. },
  502. "robot": {
  503. name: "Robot",
  504. parents: ["machine"]
  505. },
  506. "medihound": {
  507. name: "Medihound",
  508. parents: ["robot", "dog"]
  509. },
  510. "sylveon": {
  511. name: "Sylveon",
  512. parents: ["pokemon"]
  513. },
  514. "catgirl": {
  515. name: "Catgirl",
  516. parents: ["mammal"]
  517. },
  518. "cowgirl": {
  519. name: "Cowgirl",
  520. parents: ["mammal"]
  521. },
  522. "pony": {
  523. name: "Pony",
  524. parents: ["horse"]
  525. },
  526. "rabbit": {
  527. name: "Rabbit",
  528. parents: ["leporidae"]
  529. },
  530. "fennec-fox": {
  531. name: "Fennec Fox",
  532. parents: ["fox"]
  533. },
  534. "azodian": {
  535. name: "Azodian",
  536. parents: ["mouse"]
  537. },
  538. "shiba-inu": {
  539. name: "Shiba Inu",
  540. parents: ["dog"]
  541. },
  542. "changeling": {
  543. name: "Changeling",
  544. parents: ["insect"]
  545. },
  546. "cheetah": {
  547. name: "Cheetah",
  548. parents: ["cat"]
  549. },
  550. "golden-jackal": {
  551. name: "Golden Jackal",
  552. parents: ["jackal"]
  553. },
  554. "manectric": {
  555. name: "Manectric",
  556. parents: ["pokemon", "wolf"]
  557. },
  558. "rat": {
  559. name: "Rat",
  560. parents: ["rodent"]
  561. },
  562. "rodent": {
  563. name: "Rodent",
  564. parents: ["mammal"]
  565. },
  566. "octocoon": {
  567. name: "Octocoon",
  568. parents: ["raccoon", "octopus"]
  569. },
  570. "octopus": {
  571. name: "Octopus",
  572. parents: ["fish"]
  573. },
  574. "werewolf": {
  575. name: "Werewolf",
  576. parents: ["wolf", "werebeast"]
  577. },
  578. "werebeast": {
  579. name: "Werebeast",
  580. parents: ["monster"]
  581. },
  582. "meerkat": {
  583. name: "Meerkat",
  584. parents: ["mammal"]
  585. },
  586. "human": {
  587. name: "Human",
  588. parents: ["mammal"]
  589. },
  590. "geth": {
  591. name: "Geth",
  592. parents: ["android"]
  593. },
  594. "husky": {
  595. name: "Husky",
  596. parents: ["dog"]
  597. },
  598. "long-eared-bat": {
  599. name: "Long Eared Bat",
  600. parents: ["bat"]
  601. },
  602. "lizard": {
  603. name: "Lizard",
  604. parents: ["reptile"]
  605. },
  606. "salamander": {
  607. name: "Salamander",
  608. parents: ["lizard"]
  609. },
  610. "chameleon": {
  611. name: "Chameleon",
  612. parents: ["lizard"]
  613. },
  614. "gecko": {
  615. name: "Gecko",
  616. parents: ["lizard"]
  617. },
  618. "kobold": {
  619. name: "Kobold",
  620. parents: ["reptile"]
  621. },
  622. "charizard": {
  623. name: "Charizard",
  624. parents: ["pokemon", "dragon"]
  625. },
  626. "lugia": {
  627. name: "Lugia",
  628. parents: ["pokemon", "avian"]
  629. },
  630. "cerberus": {
  631. name: "Cerberus",
  632. parents: ["dog"]
  633. },
  634. "tyrantrum": {
  635. name: "Tyrantrum",
  636. parents: ["pokemon"]
  637. },
  638. "lemur": {
  639. name: "Lemur",
  640. parents: ["mammal"]
  641. },
  642. "kelpie": {
  643. name: "Kelpie",
  644. parents: ["horse", "monster"]
  645. },
  646. "labrador": {
  647. name: "Labrador",
  648. parents: ["dog"]
  649. },
  650. "sylveon": {
  651. name: "Sylveon",
  652. parents: ["eeveelution"]
  653. },
  654. "eeveelution": {
  655. name: "Eeveelution",
  656. parents: ["pokemon", "cat"]
  657. },
  658. "polar-bear": {
  659. name: "Polar Bear",
  660. parents: ["bear"]
  661. },
  662. "bear": {
  663. name: "Bear",
  664. parents: ["mammal"]
  665. },
  666. "absol": {
  667. name: "Absol",
  668. parents: ["pokemon", "cat"]
  669. },
  670. "wolver": {
  671. name: "Wolver",
  672. parents: ["mammal"]
  673. },
  674. "rottweiler": {
  675. name: "Rottweiler",
  676. parents: ["dog"]
  677. },
  678. "zebra": {
  679. name: "Zebra",
  680. parents: ["horse"]
  681. },
  682. "yoshi": {
  683. name: "Yoshi",
  684. parents: ["lizard"]
  685. },
  686. "lynx": {
  687. name: "Lynx",
  688. parents: ["cat"]
  689. },
  690. "unknown": {
  691. name: "Unknown",
  692. parents: []
  693. },
  694. "thylacine": {
  695. name: "Thylacine",
  696. parents: ["mammal"]
  697. },
  698. "gabumon": {
  699. name: "Gabumon",
  700. parents: ["digimon"]
  701. },
  702. "border-collie": {
  703. name: "Border Collie",
  704. parents: ["dog"]
  705. },
  706. "imp": {
  707. name: "Imp",
  708. parents: ["demon"]
  709. },
  710. "kangaroo": {
  711. name: "Kangaroo",
  712. parents: ["marsupial"]
  713. },
  714. "renamon": {
  715. name: "Renamon",
  716. parents: ["digimon", "fox"]
  717. },
  718. "candy-orca-dragon": {
  719. name: "Candy Orca Dragon",
  720. parents: ["fish", "dragon", "candy"]
  721. },
  722. "sabertooth-tiger": {
  723. name: "Sabertooth Tiger",
  724. parents: ["cat"]
  725. },
  726. "espurr": {
  727. name: "Espurr",
  728. parents: ["pokemon", "cat"]
  729. },
  730. "otter": {
  731. name: "Otter",
  732. parents: ["mustelid"]
  733. },
  734. "elemental": {
  735. name: "Elemental",
  736. parents: ["mammal"]
  737. },
  738. "mew": {
  739. name: "Mew",
  740. parents: ["pokemon"]
  741. },
  742. "goodra": {
  743. name: "Goodra",
  744. parents: ["pokemon"]
  745. },
  746. "fairy": {
  747. name: "Fairy",
  748. parents: ["magical"]
  749. },
  750. "typhlosion": {
  751. name: "Typhlosion",
  752. parents: ["pokemon"]
  753. },
  754. "magical": {
  755. name: "Magical",
  756. parents: []
  757. },
  758. "xenomorph": {
  759. name: "Xenomorph",
  760. parents: ["monster", "alien"]
  761. },
  762. "charr": {
  763. name: "Charr",
  764. parents: ["cat"]
  765. },
  766. "siberian-husky": {
  767. name: "Siberian Husky",
  768. parents: ["husky"]
  769. },
  770. "alligator": {
  771. name: "Alligator",
  772. parents: ["reptile"]
  773. },
  774. "bernese-mountain-dog": {
  775. name: "Bernese Mountain Dog",
  776. parents: ["dog"]
  777. },
  778. "reshiram": {
  779. name: "Reshiram",
  780. parents: ["pokemon", "dragon"]
  781. },
  782. "grizzly-bear": {
  783. name: "Grizzly Bear",
  784. parents: ["bear"]
  785. },
  786. "water-monitor": {
  787. name: "Water Monitor",
  788. parents: ["lizard"]
  789. },
  790. "banchofossa": {
  791. name: "Banchofossa",
  792. parents: ["mammal"]
  793. },
  794. "kirin": {
  795. name: "Kirin",
  796. parents: ["monster"]
  797. },
  798. "quilava": {
  799. name: "Quilava",
  800. parents: ["pokemon"]
  801. },
  802. "seviper": {
  803. name: "Seviper",
  804. parents: ["pokemon", "viper"]
  805. },
  806. "flying-fox": {
  807. name: "Flying Fox",
  808. parents: ["bat"]
  809. },
  810. "keynain": {
  811. name: "Keynain",
  812. parents: ["avian"]
  813. },
  814. "lucario": {
  815. name: "Lucario",
  816. parents: ["pokemon", "jackal"]
  817. },
  818. "siamese-cat": {
  819. name: "Siamese Cat",
  820. parents: ["cat"]
  821. },
  822. "spider": {
  823. name: "Spider",
  824. parents: ["insect"]
  825. },
  826. "samurott": {
  827. name: "Samurott",
  828. parents: ["pokemon", "otter"]
  829. },
  830. "megalodon": {
  831. name: "Megalodon",
  832. parents: ["shark"]
  833. },
  834. "unicorn": {
  835. name: "Unicorn",
  836. parents: ["horse"]
  837. },
  838. "greninja": {
  839. name: "Greninja",
  840. parents: ["pokemon", "frog"]
  841. },
  842. "water-dragon": {
  843. name: "Water Dragon",
  844. parents: ["dragon"]
  845. },
  846. "cross-fox": {
  847. name: "Cross Fox",
  848. parents: ["fox"]
  849. },
  850. "synth": {
  851. name: "Synth",
  852. parents: ["machine"]
  853. },
  854. "construct": {
  855. name: "Construct",
  856. parents: []
  857. },
  858. "mexican-wolf": {
  859. name: "Mexican Wolf",
  860. parents: ["wolf"]
  861. },
  862. "leopard": {
  863. name: "Leopard",
  864. parents: ["cat"]
  865. },
  866. "pig": {
  867. name: "Pig",
  868. parents: ["mammal"]
  869. },
  870. "ampharos": {
  871. name: "Ampharos",
  872. parents: ["pokemon", "sheep"]
  873. },
  874. "orca": {
  875. name: "Orca",
  876. parents: ["fish"]
  877. },
  878. "lycanroc": {
  879. name: "Lycanroc",
  880. parents: ["pokemon", "wolf"]
  881. },
  882. "surkanu": {
  883. name: "Surkanu",
  884. parents: ["monster"]
  885. },
  886. "seal": {
  887. name: "Seal",
  888. parents: ["mammal"]
  889. },
  890. "keldeo": {
  891. name: "Keldeo",
  892. parents: ["pokemon"]
  893. },
  894. "great-dane": {
  895. name: "Great Dane",
  896. parents: ["dog"]
  897. },
  898. "black-backed-jackal": {
  899. name: "Black Backed Jackal",
  900. parents: ["jackal"]
  901. },
  902. "sheep": {
  903. name: "Sheep",
  904. parents: ["mammal"]
  905. },
  906. "leopard-seal": {
  907. name: "Leopard Seal",
  908. parents: ["seal"]
  909. },
  910. "zoroark": {
  911. name: "Zoroark",
  912. parents: ["pokemon", "fox"]
  913. },
  914. "maned-wolf": {
  915. name: "Maned Wolf",
  916. parents: ["canine"]
  917. },
  918. "dracha": {
  919. name: "Dracha",
  920. parents: ["dragon"]
  921. },
  922. "wolxi": {
  923. name: "Wolxi",
  924. parents: ["mammal", "alien"]
  925. },
  926. "dratini": {
  927. name: "Dratini",
  928. parents: ["pokemon", "dragon"]
  929. },
  930. "skaven": {
  931. name: "Skaven",
  932. parents: ["rat"]
  933. },
  934. "mongoose": {
  935. name: "Mongoose",
  936. parents: ["mammal"]
  937. },
  938. "lopunny": {
  939. name: "Lopunny",
  940. parents: ["pokemon", "rabbit"]
  941. },
  942. "feraligatr": {
  943. name: "Feraligatr",
  944. parents: ["pokemon", "alligator"]
  945. },
  946. "houndoom": {
  947. name: "Houndoom",
  948. parents: ["pokemon", "dog"]
  949. },
  950. "protogen": {
  951. name: "Protogen",
  952. parents: ["machine"]
  953. },
  954. "saint-bernard": {
  955. name: "Saint Bernard",
  956. parents: ["dog"]
  957. },
  958. "crow": {
  959. name: "Crow",
  960. parents: ["corvid"]
  961. },
  962. "delphox": {
  963. name: "Delphox",
  964. parents: ["pokemon", "fox"]
  965. },
  966. "moose": {
  967. name: "Moose",
  968. parents: ["mammal"]
  969. },
  970. "joraxian": {
  971. name: "Joraxian",
  972. parents: ["monster", "canine", "demon"]
  973. },
  974. "nimbat": {
  975. name: "Nimbat",
  976. parents: ["mammal"]
  977. },
  978. "aardwolf": {
  979. name: "Aardwolf",
  980. parents: ["canine"]
  981. },
  982. "fluudrani": {
  983. name: "Fluudrani",
  984. parents: ["animal"]
  985. },
  986. "arcanine": {
  987. name: "Arcanine",
  988. parents: ["pokemon", "dog"]
  989. },
  990. "inteleon": {
  991. name: "Inteleon",
  992. parents: ["pokemon", "fish"]
  993. },
  994. "ninetales": {
  995. name: "Ninetales",
  996. parents: ["pokemon", "kitsune"]
  997. },
  998. "tigrex": {
  999. name: "Tigrex",
  1000. parents: ["tiger"]
  1001. },
  1002. "zorua": {
  1003. name: "Zorua",
  1004. parents: ["pokemon", "fox"]
  1005. },
  1006. "vulpix": {
  1007. name: "Vulpix",
  1008. parents: ["pokemon", "fox"]
  1009. },
  1010. "barghest": {
  1011. name: "Barghest",
  1012. parents: ["monster"]
  1013. },
  1014. "gray-wolf": {
  1015. name: "Gray Wolf",
  1016. parents: ["wolf"]
  1017. },
  1018. "ruppells-fox": {
  1019. name: "Rüppell's Fox",
  1020. parents: ["fox"]
  1021. },
  1022. "bull-terrier": {
  1023. name: "Bull Terrier",
  1024. parents: ["dog"]
  1025. },
  1026. "european-honey-buzzard": {
  1027. name: "European Honey Buzzard",
  1028. parents: ["avian"]
  1029. },
  1030. "t-rex": {
  1031. name: "Tyrannosaurus Rex",
  1032. parents: ["dinosaur"]
  1033. },
  1034. "mactarian": {
  1035. name: "Mactarian",
  1036. parents: ["shark", "monster"]
  1037. },
  1038. "mewtwo-y": {
  1039. name: "Mewtwo Y",
  1040. parents: ["mewtwo"]
  1041. },
  1042. "mewtwo": {
  1043. name: "Mewtwo",
  1044. parents: ["pokemon"]
  1045. },
  1046. "eevee": {
  1047. name: "Eevee",
  1048. parents: ["eeveelution"]
  1049. },
  1050. "mienshao": {
  1051. name: "Mienshao",
  1052. parents: ["pokemon"]
  1053. },
  1054. "sugar-glider": {
  1055. name: "Sugar Glider",
  1056. parents: ["opossum"]
  1057. },
  1058. "spectral-bat": {
  1059. name: "Spectral Bat",
  1060. parents: ["bat"]
  1061. },
  1062. "scolipede": {
  1063. name: "Scolipede",
  1064. parents: ["pokemon", "insect"]
  1065. },
  1066. "jackalope": {
  1067. name: "Jackalope",
  1068. parents: ["rabbit", "antelope"]
  1069. },
  1070. "caracal": {
  1071. name: "Caracal",
  1072. parents: ["cat"]
  1073. },
  1074. "stoat": {
  1075. name: "Stoat",
  1076. parents: ["mammal"]
  1077. },
  1078. "african-golden-cat": {
  1079. name: "African Golden Cat",
  1080. parents: ["cat"]
  1081. },
  1082. "gigantosaurus": {
  1083. name: "Gigantosaurus",
  1084. parents: ["dinosaur"]
  1085. },
  1086. "zorgoia": {
  1087. name: "Zorgoia",
  1088. parents: ["mammal"]
  1089. },
  1090. "monitor-lizard": {
  1091. name: "Monitor Lizard",
  1092. parents: ["lizard"]
  1093. },
  1094. "ziralkia": {
  1095. name: "Ziralkia",
  1096. parents: ["mammal"]
  1097. },
  1098. "kiiasi": {
  1099. name: "Kiiasi",
  1100. parents: ["animal"]
  1101. },
  1102. "synx": {
  1103. name: "Synx",
  1104. parents: ["monster"]
  1105. },
  1106. "panther": {
  1107. name: "Panther",
  1108. parents: ["cat"]
  1109. },
  1110. "azumarill": {
  1111. name: "Azumarill",
  1112. parents: ["pokemon"]
  1113. },
  1114. "river-snaptail": {
  1115. name: "River Snaptail",
  1116. parents: ["otter", "crocodile"]
  1117. },
  1118. "great-blue-heron": {
  1119. name: "Great Blue Heron",
  1120. parents: ["avian"]
  1121. },
  1122. "smeargle": {
  1123. name: "Smeargle",
  1124. parents: ["pokemon"]
  1125. },
  1126. "vendeilen": {
  1127. name: "Vendeilen",
  1128. parents: ["monster"]
  1129. },
  1130. "ventura": {
  1131. name: "Ventura",
  1132. parents: ["canine"]
  1133. },
  1134. "clouded-leopard": {
  1135. name: "Clouded Leopard",
  1136. parents: ["leopard"]
  1137. },
  1138. "argonian": {
  1139. name: "Argonian",
  1140. parents: ["lizard"]
  1141. },
  1142. "salazzle": {
  1143. name: "Salazzle",
  1144. parents: ["pokemon", "lizard"]
  1145. },
  1146. "je-stoff-drachen": {
  1147. name: "Je-Stoff Drachen",
  1148. parents: ["dragon"]
  1149. },
  1150. "finnish-spitz-dog": {
  1151. name: "Finnish Spitz Dog",
  1152. parents: ["dog"]
  1153. },
  1154. "gray-fox": {
  1155. name: "Gray Fox",
  1156. parents: ["fox"]
  1157. },
  1158. "opossum": {
  1159. name: "Opossum",
  1160. parents: ["mammal"]
  1161. },
  1162. "antelope": {
  1163. name: "Antelope",
  1164. parents: ["mammal"]
  1165. },
  1166. "weavile": {
  1167. name: "Weavile",
  1168. parents: ["pokemon"]
  1169. },
  1170. "pikachu": {
  1171. name: "Pikachu",
  1172. parents: ["pokemon", "mouse"]
  1173. },
  1174. "grovyle": {
  1175. name: "Grovyle",
  1176. parents: ["pokemon", "plant"]
  1177. },
  1178. "sthara": {
  1179. name: "Sthara",
  1180. parents: ["snow-leopard", "reptile"]
  1181. },
  1182. "star-warrior": {
  1183. name: "Star Warrior",
  1184. parents: ["magical"]
  1185. },
  1186. "dragonoid": {
  1187. name: "Dragonoid",
  1188. parents: ["dragon"]
  1189. },
  1190. "suicune": {
  1191. name: "Suicune",
  1192. parents: ["pokemon"]
  1193. },
  1194. "vole": {
  1195. name: "Vole",
  1196. parents: ["mammal"]
  1197. },
  1198. "blaziken": {
  1199. name: "Blaziken",
  1200. parents: ["pokemon", "avian"]
  1201. },
  1202. "buizel": {
  1203. name: "Buizel",
  1204. parents: ["pokemon", "fish"]
  1205. },
  1206. "floatzel": {
  1207. name: "Floatzel",
  1208. parents: ["pokemon", "fish"]
  1209. },
  1210. "umok": {
  1211. name: "Umok",
  1212. parents: ["avian"]
  1213. },
  1214. "sea-monster": {
  1215. name: "Sea Monster",
  1216. parents: ["monster", "fish"]
  1217. },
  1218. "egyptian-vulture": {
  1219. name: "Egyptian Vulture",
  1220. parents: ["avian"]
  1221. },
  1222. "doberman": {
  1223. name: "Doberman",
  1224. parents: ["dog"]
  1225. },
  1226. "zangoose": {
  1227. name: "Zangoose",
  1228. parents: ["pokemon", "mongoose"]
  1229. },
  1230. "mongoose": {
  1231. name: "Mongoose",
  1232. parents: ["mammal"]
  1233. },
  1234. "wickerbeast": {
  1235. name: "Wickerbeast",
  1236. parents: ["monster"]
  1237. },
  1238. "zenari": {
  1239. name: "Zenari",
  1240. parents: ["lizard"]
  1241. },
  1242. "plant": {
  1243. name: "Plant",
  1244. parents: []
  1245. },
  1246. "raskatox": {
  1247. name: "Raskatox",
  1248. parents: ["raccoon", "skunk", "cat", "fox"]
  1249. },
  1250. "mikromare": {
  1251. name: "mikromare",
  1252. parents: ["alien"]
  1253. },
  1254. "alien": {
  1255. name: "Alien",
  1256. parents: ["animal"]
  1257. },
  1258. "deity": {
  1259. name: "Deity",
  1260. parents: []
  1261. },
  1262. "skarlan": {
  1263. name: "Skarlan",
  1264. parents: ["slug", "dragon"]
  1265. },
  1266. "slug": {
  1267. name: "Slug",
  1268. parents: ["mollusk"]
  1269. },
  1270. "mollusk": {
  1271. name: "Mollusk",
  1272. parents: ["animal"]
  1273. },
  1274. "chimera": {
  1275. name: "Chimera",
  1276. parents: ["monster"]
  1277. },
  1278. "gestalt": {
  1279. name: "Gestalt",
  1280. parents: ["construct"]
  1281. },
  1282. "mimic": {
  1283. name: "Mimic",
  1284. parents: ["monster"]
  1285. },
  1286. "calico-rat": {
  1287. name: "Calico Rat",
  1288. parents: ["rat"]
  1289. },
  1290. "panda": {
  1291. name: "Panda",
  1292. parents: ["mammal"]
  1293. },
  1294. "oni": {
  1295. name: "Oni",
  1296. parents: ["monster"]
  1297. },
  1298. "pegasus": {
  1299. name: "Pegasus",
  1300. parents: ["horse"]
  1301. },
  1302. "vulpera": {
  1303. name: "Vulpera",
  1304. parents: ["fennec-fox"]
  1305. },
  1306. "ceratosaurus": {
  1307. name: "Ceratosaurus",
  1308. parents: ["dinosaur"]
  1309. },
  1310. "nykur": {
  1311. name: "Nykur",
  1312. parents: ["horse", "monster"]
  1313. },
  1314. "giraffe": {
  1315. name: "Giraffe",
  1316. parents: ["mammal"]
  1317. },
  1318. "tauren": {
  1319. name: "Tauren",
  1320. parents: ["cow"]
  1321. },
  1322. "draconi": {
  1323. name: "Draconi",
  1324. parents: ["alien", "cat", "cyborg"]
  1325. },
  1326. "dire-wolf": {
  1327. name: "Dire Wolf",
  1328. parents: ["wolf"]
  1329. },
  1330. "ferromorph": {
  1331. name: "Ferromorph",
  1332. parents: ["construct"]
  1333. },
  1334. "meowth": {
  1335. name: "Meowth",
  1336. parents: ["cat", "pokemon"]
  1337. },
  1338. "pavodragon": {
  1339. name: "Pavodragon",
  1340. parents: ["dragon"]
  1341. },
  1342. "aaltranae": {
  1343. name: "Aaltranae",
  1344. parents: ["dragon"]
  1345. },
  1346. "cyborg": {
  1347. name: "Cyborg",
  1348. parents: ["machine"]
  1349. },
  1350. "draptor": {
  1351. name: "Draptor",
  1352. parents: ["dragon"]
  1353. },
  1354. "candy": {
  1355. name: "Candy",
  1356. parents: []
  1357. },
  1358. "drenath": {
  1359. name: "Drenath",
  1360. parents: ["dragon", "snake", "rabbit"]
  1361. },
  1362. "coyju": {
  1363. name: "Coyju",
  1364. parents: ["coyote", "kaiju"]
  1365. },
  1366. "kaiju": {
  1367. name: "Kaiju",
  1368. parents: ["monster"]
  1369. },
  1370. "nickit": {
  1371. name: "Nickit",
  1372. parents: ["pokemon", "cat"]
  1373. },
  1374. "lopunny": {
  1375. name: "Lopunny",
  1376. parents: ["pokemon", "rabbit"]
  1377. },
  1378. "korean-jindo-dog": {
  1379. name: "Korean Jindo Dog",
  1380. parents: ["dog"]
  1381. },
  1382. "naga": {
  1383. name: "Naga",
  1384. parents: ["snake", "monster"]
  1385. },
  1386. "undead": {
  1387. name: "Undead",
  1388. parents: ["monster"]
  1389. },
  1390. "whale": {
  1391. name: "Whale",
  1392. parents: ["fish"]
  1393. },
  1394. "gelato-bee": {
  1395. name: "Gelato Bee",
  1396. parents: ["bee"]
  1397. },
  1398. "bee": {
  1399. name: "Bee",
  1400. parents: ["insect"]
  1401. },
  1402. "gardevoir": {
  1403. name: "Gardevoir",
  1404. parents: ["pokemon"]
  1405. },
  1406. "ant": {
  1407. name: "Ant",
  1408. parents: ["insect"]
  1409. },
  1410. "frog": {
  1411. name: "Frog",
  1412. parents: ["amphibian"]
  1413. },
  1414. "amphibian": {
  1415. name: "Amphibian",
  1416. parents: ["animal"]
  1417. },
  1418. "pangolin": {
  1419. name: "Pangolin",
  1420. parents: ["mammal"]
  1421. },
  1422. "uragi'viidorn": {
  1423. name: "Uragi'viidorn",
  1424. parents: ["avian", "bear"]
  1425. },
  1426. "gryphdelphais": {
  1427. name: "Gryphdelphais",
  1428. parents: ["dolphin", "gryphon"]
  1429. },
  1430. "plush": {
  1431. name: "Plush",
  1432. parents: ["construct"]
  1433. },
  1434. "draiger": {
  1435. name: "Draiger",
  1436. parents: ["dragon","tiger"]
  1437. },
  1438. "foxsky": {
  1439. name: "Foxsky",
  1440. parents: ["fox", "husky"]
  1441. },
  1442. "umbreon": {
  1443. name: "Umbreon",
  1444. parents: ["eeveelution"]
  1445. },
  1446. "slime-dragon": {
  1447. name: "Slime Dragon",
  1448. parents: ["dragon", "goo"]
  1449. },
  1450. "enderman": {
  1451. name: "Enderman",
  1452. parents: ["monster"]
  1453. },
  1454. "gremlin": {
  1455. name: "Gremlin",
  1456. parents: ["monster"]
  1457. },
  1458. "dragonsune": {
  1459. name: "Dragonsune",
  1460. parents: ["dragon", "kitsune"]
  1461. },
  1462. "ghost": {
  1463. name: "Ghost",
  1464. parents: ["supernatural"]
  1465. },
  1466. "false-vampire-bat": {
  1467. name: "False Vampire Bat",
  1468. parents: ["bat"]
  1469. },
  1470. "succubus": {
  1471. name: "Succubus",
  1472. parents: ["demon"]
  1473. },
  1474. "mia": {
  1475. name: "Mia",
  1476. parents: ["canine"]
  1477. },
  1478. "rainbow": {
  1479. name: "Rainbow",
  1480. parents: ["monster"]
  1481. },
  1482. "solgaleo": {
  1483. name: "Solgaleo",
  1484. parents: ["pokemon"]
  1485. },
  1486. "lucent-nargacuga": {
  1487. name: "Lucent Nargacuga",
  1488. parents: ["monster-hunter"]
  1489. },
  1490. "monster-hunter": {
  1491. name: "Monster Hunter",
  1492. parents: ["monster"]
  1493. },
  1494. "leviathan": {
  1495. "name": "Leviathan",
  1496. "url": "sea-monster"
  1497. },
  1498. "bull": {
  1499. name: "Bull",
  1500. parents: ["mammal"]
  1501. },
  1502. "tanuki": {
  1503. name: "Tanuki",
  1504. parents: ["monster"]
  1505. },
  1506. "chakat": {
  1507. name: "Chakat",
  1508. parents: ["cat"]
  1509. },
  1510. "hydra": {
  1511. name: "Hydra",
  1512. parents: ["monster"]
  1513. },
  1514. "zigzagoon": {
  1515. name: "Zigzagoon",
  1516. parents: ["raccoon", "pokemon"]
  1517. },
  1518. "vulture": {
  1519. name: "Vulture",
  1520. parents: ["avian"]
  1521. },
  1522. "eastern-dragon": {
  1523. name: "Eastern Dragon",
  1524. parents: ["dragon"]
  1525. },
  1526. "gryffon": {
  1527. name: "Gryffon",
  1528. parents: ["phoenix", "red-panda"]
  1529. },
  1530. "amtsvane": {
  1531. name: "Amtsvane",
  1532. parents: ["reptile"]
  1533. },
  1534. "kigavi": {
  1535. name: "Kigavi",
  1536. parents: ["avian"]
  1537. },
  1538. "turian": {
  1539. name: "Turian",
  1540. parents: ["avian"]
  1541. },
  1542. "zeraora": {
  1543. name: "Zeraora",
  1544. parents: ["pokemon", "cat"]
  1545. },
  1546. "sandshrew": {
  1547. name: "Sandshrew",
  1548. parents: ["pokemon", "pangolin"]
  1549. },
  1550. "valais-blacknose-sheep": {
  1551. name: "Valais Blacknose Sheep",
  1552. parents: ["sheep"]
  1553. },
  1554. "novaleit": {
  1555. name: "Novaleit",
  1556. parents: ["mammal"]
  1557. },
  1558. "dunnoh": {
  1559. name: "Dunnoh",
  1560. parents: ["mammal"]
  1561. },
  1562. "lunaral-dragon": {
  1563. name: "Lunaral Dragon",
  1564. parents: ["dragon"]
  1565. },
  1566. "arctic-wolf": {
  1567. name: "Arctic Wolf",
  1568. parents: ["wolf"]
  1569. },
  1570. "donkey": {
  1571. name: "Donkey",
  1572. parents: ["horse"]
  1573. },
  1574. "chinchilla": {
  1575. name: "Chinchilla",
  1576. parents: ["rodent"]
  1577. },
  1578. "felkin": {
  1579. name: "Felkin",
  1580. parents: ["dragon"]
  1581. },
  1582. "tykeriel": {
  1583. name: "Tykeriel",
  1584. parents: ["avian"]
  1585. },
  1586. "folf": {
  1587. name: "Folf",
  1588. parents: ["fox", "wolf"]
  1589. },
  1590. "pooltoy": {
  1591. name: "Pooltoy",
  1592. parents: ["construct"]
  1593. },
  1594. "demi": {
  1595. name: "Demi",
  1596. parents: ["human"]
  1597. },
  1598. "stegosaurus": {
  1599. name: "Stegosaurus",
  1600. parents: ["dinosaur"]
  1601. },
  1602. "computer-virus": {
  1603. name: "Computer Virus",
  1604. parents: ["program"]
  1605. },
  1606. "program": {
  1607. name: "Program",
  1608. parents: ["construct"]
  1609. },
  1610. "space-springhare": {
  1611. name: "Space Springhare",
  1612. parents: ["hare"]
  1613. },
  1614. "river-drake": {
  1615. name: "River Drake",
  1616. parents: ["dragon"]
  1617. },
  1618. "djinn": {
  1619. "name": "Djinn",
  1620. "url": "supernatural"
  1621. },
  1622. "supernatural": {
  1623. name: "Supernatural",
  1624. parents: ["monster"]
  1625. },
  1626. "grasshopper-mouse": {
  1627. name: "Grasshopper Mouse",
  1628. parents: ["mouse"]
  1629. },
  1630. "somali-cat": {
  1631. name: "Somali Cat",
  1632. parents: ["cat"]
  1633. },
  1634. "minccino": {
  1635. name: "Minccino",
  1636. parents: ["pokemon", "chinchilla"]
  1637. },
  1638. "pine-marten": {
  1639. name: "Pine Marten",
  1640. parents: ["marten"]
  1641. },
  1642. "marten": {
  1643. name: "Marten",
  1644. parents: ["mustelid"]
  1645. },
  1646. "mustelid": {
  1647. name: "Mustelid",
  1648. parents: ["mammal"]
  1649. },
  1650. "caribou": {
  1651. name: "Caribou",
  1652. parents: ["deer"]
  1653. },
  1654. "gnoll": {
  1655. name: "Gnoll",
  1656. parents: ["hyena", "monster"]
  1657. },
  1658. "peacekeeper": {
  1659. name: "Peacekeeper",
  1660. parents: ["human"]
  1661. },
  1662. "river-otter": {
  1663. name: "River Otter",
  1664. parents: ["otter"]
  1665. },
  1666. "dhole": {
  1667. name: "Dhole",
  1668. parents: ["canine"]
  1669. },
  1670. "springbok": {
  1671. name: "Springbok",
  1672. parents: ["antelope"]
  1673. },
  1674. "marsupial": {
  1675. name: "Marsupial",
  1676. parents: ["mammal"]
  1677. },
  1678. "townsend-big-eared-bat": {
  1679. name: "Townsend Big-eared Bat",
  1680. parents: ["bat"]
  1681. },
  1682. "squirrel": {
  1683. name: "Squirrel",
  1684. parents: ["rodent"]
  1685. },
  1686. "magpie": {
  1687. name: "Magpie",
  1688. parents: ["corvid"]
  1689. },
  1690. "civet": {
  1691. name: "Civet",
  1692. parents: ["feliform"]
  1693. },
  1694. "feliform": {
  1695. name: "Feliform",
  1696. parents: ["mammal"]
  1697. },
  1698. "tiefling": {
  1699. name: "Tiefling",
  1700. parents: ["devil"]
  1701. },
  1702. "devil": {
  1703. name: "Devil",
  1704. parents: ["supernatural"]
  1705. },
  1706. "sika-deer": {
  1707. name: "Sika Deer",
  1708. parents: ["deer"]
  1709. },
  1710. "vaporeon": {
  1711. name: "Vaporeon",
  1712. parents: ["eeveelution"]
  1713. },
  1714. "leafeon": {
  1715. name: "Leafeon",
  1716. parents: ["eeveelution"]
  1717. },
  1718. "jolteon": {
  1719. name: "Jolteon",
  1720. parents: ["eeveelution"]
  1721. },
  1722. "spireborn": {
  1723. name: "Spireborn",
  1724. parents: ["zorgoia"]
  1725. },
  1726. "vampire": {
  1727. name: "Vampire",
  1728. parents: ["monster"]
  1729. },
  1730. "extraplanar": {
  1731. name: "Extraplanar",
  1732. parents: []
  1733. },
  1734. "goo": {
  1735. name: "Goo",
  1736. parents: []
  1737. },
  1738. "skink": {
  1739. name: "Skink",
  1740. parents: ["lizard"]
  1741. },
  1742. "bat-eared-fox": {
  1743. name: "Bat-eared Fox",
  1744. parents: ["fox"]
  1745. },
  1746. "belted-kingfisher": {
  1747. name: "Belted Kingfisher",
  1748. parents: ["avian"]
  1749. },
  1750. "omnifalcon": {
  1751. name: "Omnifalcon",
  1752. parents: ["gryphon", "falcon", "harpy-eagle"]
  1753. },
  1754. "falcon": {
  1755. name: "Falcon",
  1756. parents: ["avian"]
  1757. },
  1758. "avali": {
  1759. name: "Avali",
  1760. parents: ["avian", "alien"]
  1761. },
  1762. "arctic-fox": {
  1763. name: "Arctic Fox",
  1764. parents: ["fox"]
  1765. },
  1766. "snow-tiger": {
  1767. name: "Snow Tiger",
  1768. parents: ["tiger"]
  1769. },
  1770. "marble-fox": {
  1771. name: "Marble Fox",
  1772. parents: ["fox"]
  1773. },
  1774. "king-wickerbeast": {
  1775. name: "King Wickerbeast",
  1776. parents: ["wickerbeast"]
  1777. },
  1778. "wickerbeast": {
  1779. name: "Wickerbeast",
  1780. parents: ["mammal"]
  1781. },
  1782. "european-polecat": {
  1783. name: "European Polecat",
  1784. parents: ["mustelid"]
  1785. },
  1786. "teshari": {
  1787. name: "Teshari",
  1788. parents: ["avian", "raptor"]
  1789. },
  1790. "alicorn": {
  1791. name: "Alicorn",
  1792. parents: ["horse"]
  1793. },
  1794. "atlas-moth": {
  1795. name: "Atlas Moth",
  1796. parents: ["moth"]
  1797. },
  1798. "owlbear": {
  1799. name: "Owlbear",
  1800. parents: ["owl", "bear", "monster"]
  1801. },
  1802. "owl": {
  1803. name: "Owl",
  1804. parents: ["avian"]
  1805. },
  1806. "silvertongue": {
  1807. name: "Silvertongue",
  1808. parents: ["reptile"]
  1809. },
  1810. "ahuizotl": {
  1811. name: "Ahuizotl",
  1812. parents: ["monster"]
  1813. },
  1814. "ender-dragon": {
  1815. name: "Ender Dragon",
  1816. parents: ["dragon"]
  1817. },
  1818. "bruhathkayosaurus": {
  1819. name: "Bruhathkayosaurus",
  1820. parents: ["sauropod"]
  1821. },
  1822. "sauropod": {
  1823. name: "Sauropod",
  1824. parents: ["dinosaur"]
  1825. },
  1826. "black-sable-antelope": {
  1827. name: "Black Sable Antelope",
  1828. parents: ["antelope"]
  1829. },
  1830. "slime": {
  1831. name: "Slime",
  1832. parents: ["goo"]
  1833. },
  1834. "utahraptor": {
  1835. name: "Utahraptor",
  1836. parents: ["raptor"]
  1837. },
  1838. "indian-giant-squirrel": {
  1839. name: "Indian Giant Squirrel",
  1840. parents: ["squirrel"]
  1841. },
  1842. "golden-retriever": {
  1843. name: "Golden Retriever",
  1844. parents: ["dog"]
  1845. },
  1846. "triceratops": {
  1847. name: "Triceratops",
  1848. parents: ["dinosaur"]
  1849. },
  1850. "drake": {
  1851. name: "Drake",
  1852. parents: ["dragon"]
  1853. },
  1854. "okapi": {
  1855. name: "Okapi",
  1856. parents: ["giraffe"]
  1857. },
  1858. "arctic-hare": {
  1859. name: "Arctic Hare",
  1860. parents: ["hare"]
  1861. },
  1862. "hare": {
  1863. name: "Hare",
  1864. parents: ["leporidae"]
  1865. },
  1866. "leporidae": {
  1867. name: "Leporidae",
  1868. parents: ["mammal"]
  1869. },
  1870. "leopard-gecko": {
  1871. name: "Leopard Gecko",
  1872. parents: ["gecko"]
  1873. },
  1874. "dreamspawn": {
  1875. name: "Dreamspawn",
  1876. parents: ["illusion"]
  1877. },
  1878. "illusion": {
  1879. name: "Illusion",
  1880. parents: []
  1881. },
  1882. "purrloin": {
  1883. name: "Purrloin",
  1884. parents: ["cat", "pokemon"]
  1885. },
  1886. "noivern": {
  1887. name: "Noivern",
  1888. parents: ["bat", "dragon", "pokemon"]
  1889. },
  1890. "hedgehog": {
  1891. name: "Hedgehog",
  1892. parents: ["mammal"]
  1893. },
  1894. "liger": {
  1895. name: "Liger",
  1896. parents: ["lion", "tiger", "hybrid"]
  1897. },
  1898. "hybrid": {
  1899. name: "Hybrid",
  1900. parents: []
  1901. },
  1902. "drider": {
  1903. name: "Drider",
  1904. parents: ["spider"]
  1905. },
  1906. "sabresune": {
  1907. name: "Sabresune",
  1908. parents: ["kitsune", "sabertooth-tiger"]
  1909. },
  1910. "ditto": {
  1911. name: "Ditto",
  1912. parents: ["pokemon", "goo"]
  1913. },
  1914. "amogus": {
  1915. name: "Amogus",
  1916. parents: ["deity"]
  1917. },
  1918. "ferret": {
  1919. name: "Ferret",
  1920. parents: ["mustelid"]
  1921. },
  1922. "guinea-pig": {
  1923. name: "Guinea Pig",
  1924. parents: ["rodent"]
  1925. },
  1926. "viper": {
  1927. name: "Viper",
  1928. parents: ["snake"]
  1929. },
  1930. "cinderace": {
  1931. name: "Cinderace",
  1932. parents: ["pokemon", "rabbit"]
  1933. },
  1934. "caudin": {
  1935. name: "Caudin",
  1936. parents: ["dragon"]
  1937. },
  1938. "red-winged-blackbird": {
  1939. name: "Red-Winged Blackbird",
  1940. parents: ["avian"]
  1941. },
  1942. "hooded-wheater": {
  1943. name: "Hooded Wheater",
  1944. parents: ["passerine"]
  1945. },
  1946. "passerine": {
  1947. name: "Passerine",
  1948. parents: ["avian"]
  1949. },
  1950. "gieeg": {
  1951. name: "Gieeg",
  1952. parents: ["alien"]
  1953. },
  1954. "ringtail": {
  1955. name: "Ringtail",
  1956. parents: ["raccoon"]
  1957. },
  1958. "hisuian-zoroark": {
  1959. name: "Hisuian Zoroark",
  1960. parents: ["zoroark", "hisuian"]
  1961. },
  1962. "hisuian": {
  1963. name: "Hisuian",
  1964. parents: ["regional-pokemon"]
  1965. },
  1966. "regional-pokemon": {
  1967. name: "Regional Pokemon",
  1968. parents: ["pokemon"]
  1969. },
  1970. }
  1971. //species
  1972. function getSpeciesInfo(speciesList) {
  1973. let result = new Set();
  1974. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1975. result.add(entry)
  1976. });
  1977. return Array.from(result);
  1978. };
  1979. function getSpeciesInfoHelper(species) {
  1980. if (!speciesData[species]) {
  1981. console.warn(species + " doesn't exist");
  1982. return [];
  1983. }
  1984. if (speciesData[species].parents) {
  1985. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1986. } else {
  1987. return [species];
  1988. }
  1989. }
  1990. characterMakers.push(() => makeCharacter(
  1991. {
  1992. name: "Fen",
  1993. species: ["crux"],
  1994. description: {
  1995. title: "Bio",
  1996. text: "Very furry. Sheds on everything."
  1997. },
  1998. tags: [
  1999. "anthro",
  2000. "goo"
  2001. ]
  2002. },
  2003. {
  2004. front: {
  2005. height: math.unit(12, "feet"),
  2006. weight: math.unit(2400, "lb"),
  2007. name: "Front",
  2008. image: {
  2009. source: "./media/characters/fen/front.svg",
  2010. extra: 1804/1562,
  2011. bottom: 205/2009
  2012. }
  2013. },
  2014. diving: {
  2015. height: math.unit(4.9, "meters"),
  2016. weight: math.unit(2400, "lb"),
  2017. name: "Diving",
  2018. image: {
  2019. source: "./media/characters/fen/diving.svg"
  2020. }
  2021. },
  2022. goo: {
  2023. height: math.unit(12, "feet"),
  2024. weight: math.unit(3600, "lb"),
  2025. volume: math.unit(1000, "liters"),
  2026. capacity: math.unit(6, "people"),
  2027. name: "Goo",
  2028. image: {
  2029. source: "./media/characters/fen/goo.svg",
  2030. extra: 1307/1071,
  2031. bottom: 134/1441
  2032. }
  2033. },
  2034. maw: {
  2035. height: math.unit(5.03, "feet"),
  2036. name: "Maw",
  2037. image: {
  2038. source: "./media/characters/fen/maw.svg"
  2039. }
  2040. },
  2041. gooCeiling: {
  2042. height: math.unit(6.6, "feet"),
  2043. weight: math.unit(3000, "lb"),
  2044. volume: math.unit(1000, "liters"),
  2045. capacity: math.unit(6, "people"),
  2046. name: "Goo (Ceiling)",
  2047. image: {
  2048. source: "./media/characters/fen/goo-ceiling.svg"
  2049. }
  2050. },
  2051. back: {
  2052. height: math.unit(12, "feet"),
  2053. weight: math.unit(2400, "lb"),
  2054. name: "Back",
  2055. image: {
  2056. source: "./media/characters/fen/back.svg",
  2057. },
  2058. info: {
  2059. description: {
  2060. mode: "append",
  2061. text: "\n\nHe is not currently looking at you."
  2062. }
  2063. }
  2064. },
  2065. full: {
  2066. height: math.unit(1.85, "meter"),
  2067. weight: math.unit(3200, "lb"),
  2068. name: "Full",
  2069. image: {
  2070. source: "./media/characters/fen/full.svg",
  2071. extra: 1133/859,
  2072. bottom: 145/1278
  2073. },
  2074. info: {
  2075. description: {
  2076. mode: "append",
  2077. text: "\n\nMunch."
  2078. }
  2079. }
  2080. },
  2081. gooLounging: {
  2082. height: math.unit(4.53, "feet"),
  2083. weight: math.unit(3000, "lb"),
  2084. capacity: math.unit(6, "people"),
  2085. name: "Goo (Lounging)",
  2086. image: {
  2087. source: "./media/characters/fen/goo-lounging.svg",
  2088. bottom: 116 / 613
  2089. }
  2090. },
  2091. lounging: {
  2092. height: math.unit(10.52, "feet"),
  2093. weight: math.unit(2400, "lb"),
  2094. name: "Lounging",
  2095. image: {
  2096. source: "./media/characters/fen/lounging.svg"
  2097. }
  2098. },
  2099. },
  2100. [
  2101. {
  2102. name: "Small",
  2103. height: math.unit(2.2428, "meter")
  2104. },
  2105. {
  2106. name: "Normal",
  2107. height: math.unit(12, "feet"),
  2108. default: true,
  2109. },
  2110. {
  2111. name: "Big",
  2112. height: math.unit(20, "feet")
  2113. },
  2114. {
  2115. name: "Minimacro",
  2116. height: math.unit(40, "feet"),
  2117. info: {
  2118. description: {
  2119. mode: "append",
  2120. text: "\n\nTOO DAMN BIG"
  2121. }
  2122. }
  2123. },
  2124. {
  2125. name: "Macro",
  2126. height: math.unit(100, "feet"),
  2127. info: {
  2128. description: {
  2129. mode: "append",
  2130. text: "\n\nTOO DAMN BIG"
  2131. }
  2132. }
  2133. },
  2134. {
  2135. name: "Megamacro",
  2136. height: math.unit(2, "miles")
  2137. },
  2138. {
  2139. name: "Gigamacro",
  2140. height: math.unit(10, "earths")
  2141. },
  2142. ]
  2143. ))
  2144. characterMakers.push(() => makeCharacter(
  2145. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2146. {
  2147. front: {
  2148. height: math.unit(183, "cm"),
  2149. weight: math.unit(80, "kg"),
  2150. name: "Front",
  2151. image: {
  2152. source: "./media/characters/sofia-fluttertail/front.svg",
  2153. bottom: 0.01,
  2154. extra: 2154 / 2081
  2155. }
  2156. },
  2157. frontAlt: {
  2158. height: math.unit(183, "cm"),
  2159. weight: math.unit(80, "kg"),
  2160. name: "Front (alt)",
  2161. image: {
  2162. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2163. }
  2164. },
  2165. back: {
  2166. height: math.unit(183, "cm"),
  2167. weight: math.unit(80, "kg"),
  2168. name: "Back",
  2169. image: {
  2170. source: "./media/characters/sofia-fluttertail/back.svg"
  2171. }
  2172. },
  2173. kneeling: {
  2174. height: math.unit(125, "cm"),
  2175. weight: math.unit(80, "kg"),
  2176. name: "Kneeling",
  2177. image: {
  2178. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2179. extra: 1033 / 977,
  2180. bottom: 23.7 / 1057
  2181. }
  2182. },
  2183. maw: {
  2184. height: math.unit(183 / 5, "cm"),
  2185. name: "Maw",
  2186. image: {
  2187. source: "./media/characters/sofia-fluttertail/maw.svg"
  2188. }
  2189. },
  2190. mawcloseup: {
  2191. height: math.unit(183 / 5 * 0.41, "cm"),
  2192. name: "Maw (Closeup)",
  2193. image: {
  2194. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2195. }
  2196. },
  2197. paws: {
  2198. height: math.unit(1.17, "feet"),
  2199. name: "Paws",
  2200. image: {
  2201. source: "./media/characters/sofia-fluttertail/paws.svg",
  2202. extra: 851 / 851,
  2203. bottom: 17 / 868
  2204. }
  2205. },
  2206. },
  2207. [
  2208. {
  2209. name: "Normal",
  2210. height: math.unit(1.83, "meter")
  2211. },
  2212. {
  2213. name: "Size Thief",
  2214. height: math.unit(18, "feet")
  2215. },
  2216. {
  2217. name: "50 Foot Collie",
  2218. height: math.unit(50, "feet")
  2219. },
  2220. {
  2221. name: "Macro",
  2222. height: math.unit(96, "feet"),
  2223. default: true
  2224. },
  2225. {
  2226. name: "Megamerger",
  2227. height: math.unit(650, "feet")
  2228. },
  2229. ]
  2230. ))
  2231. characterMakers.push(() => makeCharacter(
  2232. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2233. {
  2234. front: {
  2235. height: math.unit(7, "feet"),
  2236. weight: math.unit(100, "kg"),
  2237. name: "Front",
  2238. image: {
  2239. source: "./media/characters/march/front.svg",
  2240. extra: 1992/1851,
  2241. bottom: 39/2031
  2242. }
  2243. },
  2244. foot: {
  2245. height: math.unit(0.9, "feet"),
  2246. name: "Foot",
  2247. image: {
  2248. source: "./media/characters/march/foot.svg"
  2249. }
  2250. },
  2251. },
  2252. [
  2253. {
  2254. name: "Normal",
  2255. height: math.unit(7.9, "feet")
  2256. },
  2257. {
  2258. name: "Macro",
  2259. height: math.unit(220, "meters")
  2260. },
  2261. {
  2262. name: "Megamacro",
  2263. height: math.unit(2.98, "km"),
  2264. default: true
  2265. },
  2266. {
  2267. name: "Gigamacro",
  2268. height: math.unit(15963, "km")
  2269. },
  2270. {
  2271. name: "Teramacro",
  2272. height: math.unit(2980000000, "km")
  2273. },
  2274. {
  2275. name: "Examacro",
  2276. height: math.unit(250, "parsecs")
  2277. },
  2278. ]
  2279. ))
  2280. characterMakers.push(() => makeCharacter(
  2281. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2282. {
  2283. front: {
  2284. height: math.unit(6, "feet"),
  2285. weight: math.unit(60, "kg"),
  2286. name: "Front",
  2287. image: {
  2288. source: "./media/characters/noir/front.svg",
  2289. extra: 1,
  2290. bottom: 0.032
  2291. }
  2292. },
  2293. },
  2294. [
  2295. {
  2296. name: "Normal",
  2297. height: math.unit(6.6, "feet")
  2298. },
  2299. {
  2300. name: "Macro",
  2301. height: math.unit(500, "feet")
  2302. },
  2303. {
  2304. name: "Megamacro",
  2305. height: math.unit(2.5, "km"),
  2306. default: true
  2307. },
  2308. {
  2309. name: "Gigamacro",
  2310. height: math.unit(22500, "km")
  2311. },
  2312. {
  2313. name: "Teramacro",
  2314. height: math.unit(2500000000, "km")
  2315. },
  2316. {
  2317. name: "Examacro",
  2318. height: math.unit(200, "parsecs")
  2319. },
  2320. ]
  2321. ))
  2322. characterMakers.push(() => makeCharacter(
  2323. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2324. {
  2325. front: {
  2326. height: math.unit(7, "feet"),
  2327. weight: math.unit(100, "kg"),
  2328. name: "Front",
  2329. image: {
  2330. source: "./media/characters/okuri/front.svg",
  2331. extra: 739/665,
  2332. bottom: 39/778
  2333. }
  2334. },
  2335. back: {
  2336. height: math.unit(7, "feet"),
  2337. weight: math.unit(100, "kg"),
  2338. name: "Back",
  2339. image: {
  2340. source: "./media/characters/okuri/back.svg",
  2341. extra: 734/653,
  2342. bottom: 13/747
  2343. }
  2344. },
  2345. sitting: {
  2346. height: math.unit(2.95, "feet"),
  2347. weight: math.unit(100, "kg"),
  2348. name: "Sitting",
  2349. image: {
  2350. source: "./media/characters/okuri/sitting.svg",
  2351. extra: 370/318,
  2352. bottom: 99/469
  2353. }
  2354. },
  2355. },
  2356. [
  2357. {
  2358. name: "Smallest",
  2359. height: math.unit(5 + 2/12, "feet")
  2360. },
  2361. {
  2362. name: "Smaller",
  2363. height: math.unit(300, "feet")
  2364. },
  2365. {
  2366. name: "Small",
  2367. height: math.unit(1000, "feet")
  2368. },
  2369. {
  2370. name: "Macro",
  2371. height: math.unit(1, "mile")
  2372. },
  2373. {
  2374. name: "Mega Macro (Small)",
  2375. height: math.unit(20, "km")
  2376. },
  2377. {
  2378. name: "Mega Macro (Large)",
  2379. height: math.unit(600, "km")
  2380. },
  2381. {
  2382. name: "Giga Macro",
  2383. height: math.unit(10000, "km")
  2384. },
  2385. {
  2386. name: "Normal",
  2387. height: math.unit(577560, "km"),
  2388. default: true
  2389. },
  2390. {
  2391. name: "Large",
  2392. height: math.unit(4, "galaxies")
  2393. },
  2394. {
  2395. name: "Largest",
  2396. height: math.unit(15, "multiverses")
  2397. },
  2398. ]
  2399. ))
  2400. characterMakers.push(() => makeCharacter(
  2401. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2402. {
  2403. front: {
  2404. height: math.unit(7, "feet"),
  2405. weight: math.unit(100, "kg"),
  2406. name: "Front",
  2407. image: {
  2408. source: "./media/characters/manny/front.svg",
  2409. extra: 1,
  2410. bottom: 0.06
  2411. }
  2412. },
  2413. back: {
  2414. height: math.unit(7, "feet"),
  2415. weight: math.unit(100, "kg"),
  2416. name: "Back",
  2417. image: {
  2418. source: "./media/characters/manny/back.svg",
  2419. extra: 1,
  2420. bottom: 0.014
  2421. }
  2422. },
  2423. },
  2424. [
  2425. {
  2426. name: "Normal",
  2427. height: math.unit(7, "feet"),
  2428. },
  2429. {
  2430. name: "Macro",
  2431. height: math.unit(78, "feet"),
  2432. default: true
  2433. },
  2434. {
  2435. name: "Macro+",
  2436. height: math.unit(300, "meters")
  2437. },
  2438. {
  2439. name: "Macro++",
  2440. height: math.unit(2400, "meters")
  2441. },
  2442. {
  2443. name: "Megamacro",
  2444. height: math.unit(5167, "meters")
  2445. },
  2446. {
  2447. name: "Gigamacro",
  2448. height: math.unit(41769, "miles")
  2449. },
  2450. ]
  2451. ))
  2452. characterMakers.push(() => makeCharacter(
  2453. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2454. {
  2455. front: {
  2456. height: math.unit(7, "feet"),
  2457. weight: math.unit(100, "kg"),
  2458. name: "Front",
  2459. image: {
  2460. source: "./media/characters/adake/front-1.svg"
  2461. }
  2462. },
  2463. frontAlt: {
  2464. height: math.unit(7, "feet"),
  2465. weight: math.unit(100, "kg"),
  2466. name: "Front (Alt)",
  2467. image: {
  2468. source: "./media/characters/adake/front-2.svg",
  2469. extra: 1,
  2470. bottom: 0.01
  2471. }
  2472. },
  2473. back: {
  2474. height: math.unit(7, "feet"),
  2475. weight: math.unit(100, "kg"),
  2476. name: "Back",
  2477. image: {
  2478. source: "./media/characters/adake/back.svg",
  2479. }
  2480. },
  2481. kneel: {
  2482. height: math.unit(5.385, "feet"),
  2483. weight: math.unit(100, "kg"),
  2484. name: "Kneeling",
  2485. image: {
  2486. source: "./media/characters/adake/kneel.svg",
  2487. bottom: 0.052
  2488. }
  2489. },
  2490. },
  2491. [
  2492. {
  2493. name: "Normal",
  2494. height: math.unit(7, "feet"),
  2495. },
  2496. {
  2497. name: "Macro",
  2498. height: math.unit(78, "feet"),
  2499. default: true
  2500. },
  2501. {
  2502. name: "Macro+",
  2503. height: math.unit(300, "meters")
  2504. },
  2505. {
  2506. name: "Macro++",
  2507. height: math.unit(2400, "meters")
  2508. },
  2509. {
  2510. name: "Megamacro",
  2511. height: math.unit(5167, "meters")
  2512. },
  2513. {
  2514. name: "Gigamacro",
  2515. height: math.unit(41769, "miles")
  2516. },
  2517. ]
  2518. ))
  2519. characterMakers.push(() => makeCharacter(
  2520. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2521. {
  2522. front: {
  2523. height: math.unit(1.65, "meters"),
  2524. weight: math.unit(50, "kg"),
  2525. name: "Front",
  2526. image: {
  2527. source: "./media/characters/elijah/front.svg",
  2528. extra: 858 / 830,
  2529. bottom: 95.5 / 953.8559
  2530. }
  2531. },
  2532. back: {
  2533. height: math.unit(1.65, "meters"),
  2534. weight: math.unit(50, "kg"),
  2535. name: "Back",
  2536. image: {
  2537. source: "./media/characters/elijah/back.svg",
  2538. extra: 895 / 850,
  2539. bottom: 5.3 / 897.956
  2540. }
  2541. },
  2542. frontNsfw: {
  2543. height: math.unit(1.65, "meters"),
  2544. weight: math.unit(50, "kg"),
  2545. name: "Front (NSFW)",
  2546. image: {
  2547. source: "./media/characters/elijah/front-nsfw.svg",
  2548. extra: 858 / 830,
  2549. bottom: 95.5 / 953.8559
  2550. }
  2551. },
  2552. backNsfw: {
  2553. height: math.unit(1.65, "meters"),
  2554. weight: math.unit(50, "kg"),
  2555. name: "Back (NSFW)",
  2556. image: {
  2557. source: "./media/characters/elijah/back-nsfw.svg",
  2558. extra: 895 / 850,
  2559. bottom: 5.3 / 897.956
  2560. }
  2561. },
  2562. dick: {
  2563. height: math.unit(1, "feet"),
  2564. name: "Dick",
  2565. image: {
  2566. source: "./media/characters/elijah/dick.svg"
  2567. }
  2568. },
  2569. beakOpen: {
  2570. height: math.unit(1.25, "feet"),
  2571. name: "Beak (Open)",
  2572. image: {
  2573. source: "./media/characters/elijah/beak-open.svg"
  2574. }
  2575. },
  2576. beakShut: {
  2577. height: math.unit(1.25, "feet"),
  2578. name: "Beak (Shut)",
  2579. image: {
  2580. source: "./media/characters/elijah/beak-shut.svg"
  2581. }
  2582. },
  2583. footFlexing: {
  2584. height: math.unit(1.61, "feet"),
  2585. name: "Foot (Flexing)",
  2586. image: {
  2587. source: "./media/characters/elijah/foot-flexing.svg"
  2588. }
  2589. },
  2590. footStepping: {
  2591. height: math.unit(1.44, "feet"),
  2592. name: "Foot (Stepping)",
  2593. image: {
  2594. source: "./media/characters/elijah/foot-stepping.svg"
  2595. }
  2596. },
  2597. plantigradeLeg: {
  2598. height: math.unit(2.34, "feet"),
  2599. name: "Plantigrade Leg",
  2600. image: {
  2601. source: "./media/characters/elijah/plantigrade-leg.svg"
  2602. }
  2603. },
  2604. plantigradeFootLeft: {
  2605. height: math.unit(0.9, "feet"),
  2606. name: "Plantigrade Foot (Left)",
  2607. image: {
  2608. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2609. }
  2610. },
  2611. plantigradeFootRight: {
  2612. height: math.unit(0.9, "feet"),
  2613. name: "Plantigrade Foot (Right)",
  2614. image: {
  2615. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2616. }
  2617. },
  2618. },
  2619. [
  2620. {
  2621. name: "Normal",
  2622. height: math.unit(1.65, "meters")
  2623. },
  2624. {
  2625. name: "Macro",
  2626. height: math.unit(55, "meters"),
  2627. default: true
  2628. },
  2629. {
  2630. name: "Macro+",
  2631. height: math.unit(105, "meters")
  2632. },
  2633. ]
  2634. ))
  2635. characterMakers.push(() => makeCharacter(
  2636. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2637. {
  2638. front: {
  2639. height: math.unit(7 + 2/12, "feet"),
  2640. weight: math.unit(320, "kg"),
  2641. name: "Front",
  2642. image: {
  2643. source: "./media/characters/rai/front.svg",
  2644. extra: 1802/1696,
  2645. bottom: 68/1870
  2646. }
  2647. },
  2648. frontDressed: {
  2649. height: math.unit(7 + 2/12, "feet"),
  2650. weight: math.unit(320, "kg"),
  2651. name: "Front (Dressed)",
  2652. image: {
  2653. source: "./media/characters/rai/front-dressed.svg",
  2654. extra: 1802/1696,
  2655. bottom: 68/1870
  2656. }
  2657. },
  2658. side: {
  2659. height: math.unit(7 + 2/12, "feet"),
  2660. weight: math.unit(320, "kg"),
  2661. name: "Side",
  2662. image: {
  2663. source: "./media/characters/rai/side.svg",
  2664. extra: 1789/1710,
  2665. bottom: 115/1904
  2666. }
  2667. },
  2668. back: {
  2669. height: math.unit(7 + 2/12, "feet"),
  2670. weight: math.unit(320, "kg"),
  2671. name: "Back",
  2672. image: {
  2673. source: "./media/characters/rai/back.svg",
  2674. extra: 1770/1707,
  2675. bottom: 28/1798
  2676. }
  2677. },
  2678. feral: {
  2679. height: math.unit(9.5, "feet"),
  2680. weight: math.unit(640, "kg"),
  2681. name: "Feral",
  2682. image: {
  2683. source: "./media/characters/rai/feral.svg",
  2684. extra: 945/553,
  2685. bottom: 176/1121
  2686. }
  2687. },
  2688. dragon: {
  2689. height: math.unit(23, "feet"),
  2690. weight: math.unit(50000, "lb"),
  2691. name: "Dragon",
  2692. image: {
  2693. source: "./media/characters/rai/dragon.svg",
  2694. extra: 2498 / 2030,
  2695. bottom: 85.2 / 2584
  2696. }
  2697. },
  2698. maw: {
  2699. height: math.unit(1.69, "feet"),
  2700. name: "Maw",
  2701. image: {
  2702. source: "./media/characters/rai/maw.svg"
  2703. }
  2704. },
  2705. },
  2706. [
  2707. {
  2708. name: "Normal",
  2709. height: math.unit(7 + 2/12, "feet")
  2710. },
  2711. {
  2712. name: "Big",
  2713. height: math.unit(11, "feet")
  2714. },
  2715. {
  2716. name: "Macro",
  2717. height: math.unit(302, "feet"),
  2718. default: true
  2719. },
  2720. ]
  2721. ))
  2722. characterMakers.push(() => makeCharacter(
  2723. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2724. {
  2725. frontDressed: {
  2726. height: math.unit(216, "feet"),
  2727. weight: math.unit(7000000, "lb"),
  2728. name: "Front (Dressed)",
  2729. image: {
  2730. source: "./media/characters/jazzy/front-dressed.svg",
  2731. extra: 2738 / 2651,
  2732. bottom: 41.8 / 2786
  2733. }
  2734. },
  2735. backDressed: {
  2736. height: math.unit(216, "feet"),
  2737. weight: math.unit(7000000, "lb"),
  2738. name: "Back (Dressed)",
  2739. image: {
  2740. source: "./media/characters/jazzy/back-dressed.svg",
  2741. extra: 2775 / 2673,
  2742. bottom: 36.8 / 2817
  2743. }
  2744. },
  2745. front: {
  2746. height: math.unit(216, "feet"),
  2747. weight: math.unit(7000000, "lb"),
  2748. name: "Front",
  2749. image: {
  2750. source: "./media/characters/jazzy/front.svg",
  2751. extra: 2738 / 2651,
  2752. bottom: 41.8 / 2786
  2753. }
  2754. },
  2755. back: {
  2756. height: math.unit(216, "feet"),
  2757. weight: math.unit(7000000, "lb"),
  2758. name: "Back",
  2759. image: {
  2760. source: "./media/characters/jazzy/back.svg",
  2761. extra: 2775 / 2673,
  2762. bottom: 36.8 / 2817
  2763. }
  2764. },
  2765. maw: {
  2766. height: math.unit(20, "feet"),
  2767. name: "Maw",
  2768. image: {
  2769. source: "./media/characters/jazzy/maw.svg"
  2770. }
  2771. },
  2772. paws: {
  2773. height: math.unit(27.5, "feet"),
  2774. name: "Paws",
  2775. image: {
  2776. source: "./media/characters/jazzy/paws.svg"
  2777. }
  2778. },
  2779. eye: {
  2780. height: math.unit(4.4, "feet"),
  2781. name: "Eye",
  2782. image: {
  2783. source: "./media/characters/jazzy/eye.svg"
  2784. }
  2785. },
  2786. droneOffense: {
  2787. height: math.unit(9.5, "inches"),
  2788. name: "Drone (Offense)",
  2789. image: {
  2790. source: "./media/characters/jazzy/drone-offense.svg"
  2791. }
  2792. },
  2793. droneRecon: {
  2794. height: math.unit(9.5, "inches"),
  2795. name: "Drone (Recon)",
  2796. image: {
  2797. source: "./media/characters/jazzy/drone-recon.svg"
  2798. }
  2799. },
  2800. droneDefense: {
  2801. height: math.unit(9.5, "inches"),
  2802. name: "Drone (Defense)",
  2803. image: {
  2804. source: "./media/characters/jazzy/drone-defense.svg"
  2805. }
  2806. },
  2807. },
  2808. [
  2809. {
  2810. name: "Macro",
  2811. height: math.unit(216, "feet"),
  2812. default: true
  2813. },
  2814. ]
  2815. ))
  2816. characterMakers.push(() => makeCharacter(
  2817. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2818. {
  2819. front: {
  2820. height: math.unit(9 + 6/12, "feet"),
  2821. weight: math.unit(700, "lb"),
  2822. name: "Front",
  2823. image: {
  2824. source: "./media/characters/flamm/front.svg",
  2825. extra: 1751/1632,
  2826. bottom: 46/1797
  2827. }
  2828. },
  2829. buff: {
  2830. height: math.unit(9 + 6/12, "feet"),
  2831. weight: math.unit(950, "lb"),
  2832. name: "Buff",
  2833. image: {
  2834. source: "./media/characters/flamm/buff.svg",
  2835. extra: 3018/2874,
  2836. bottom: 221/3239
  2837. }
  2838. },
  2839. },
  2840. [
  2841. {
  2842. name: "Normal",
  2843. height: math.unit(9.5, "feet")
  2844. },
  2845. {
  2846. name: "Macro",
  2847. height: math.unit(200, "feet"),
  2848. default: true
  2849. },
  2850. ]
  2851. ))
  2852. characterMakers.push(() => makeCharacter(
  2853. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2854. {
  2855. front: {
  2856. height: math.unit(5 + 3/12, "feet"),
  2857. weight: math.unit(60, "kg"),
  2858. name: "Front",
  2859. image: {
  2860. source: "./media/characters/zephiro/front.svg",
  2861. extra: 2309 / 2162,
  2862. bottom: 0.069
  2863. }
  2864. },
  2865. side: {
  2866. height: math.unit(5 + 3/12, "feet"),
  2867. weight: math.unit(60, "kg"),
  2868. name: "Side",
  2869. image: {
  2870. source: "./media/characters/zephiro/side.svg",
  2871. extra: 2403 / 2279,
  2872. bottom: 0.015
  2873. }
  2874. },
  2875. back: {
  2876. height: math.unit(5 + 3/12, "feet"),
  2877. weight: math.unit(60, "kg"),
  2878. name: "Back",
  2879. image: {
  2880. source: "./media/characters/zephiro/back.svg",
  2881. extra: 2373 / 2244,
  2882. bottom: 0.013
  2883. }
  2884. },
  2885. hand: {
  2886. height: math.unit(0.68, "feet"),
  2887. name: "Hand",
  2888. image: {
  2889. source: "./media/characters/zephiro/hand.svg"
  2890. }
  2891. },
  2892. paw: {
  2893. height: math.unit(1, "feet"),
  2894. name: "Paw",
  2895. image: {
  2896. source: "./media/characters/zephiro/paw.svg"
  2897. }
  2898. },
  2899. beans: {
  2900. height: math.unit(0.93, "feet"),
  2901. name: "Beans",
  2902. image: {
  2903. source: "./media/characters/zephiro/beans.svg"
  2904. }
  2905. },
  2906. },
  2907. [
  2908. {
  2909. name: "Micro",
  2910. height: math.unit(3, "inches")
  2911. },
  2912. {
  2913. name: "Normal",
  2914. height: math.unit(5 + 3 / 12, "feet"),
  2915. default: true
  2916. },
  2917. {
  2918. name: "Macro",
  2919. height: math.unit(118, "feet")
  2920. },
  2921. ]
  2922. ))
  2923. characterMakers.push(() => makeCharacter(
  2924. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2925. {
  2926. front: {
  2927. height: math.unit(5, "feet"),
  2928. weight: math.unit(90, "kg"),
  2929. name: "Front",
  2930. image: {
  2931. source: "./media/characters/fory/front.svg",
  2932. extra: 2862 / 2674,
  2933. bottom: 180 / 3043.8
  2934. }
  2935. },
  2936. back: {
  2937. height: math.unit(5, "feet"),
  2938. weight: math.unit(90, "kg"),
  2939. name: "Back",
  2940. image: {
  2941. source: "./media/characters/fory/back.svg",
  2942. extra: 2962 / 2791,
  2943. bottom: 106 / 3071.8
  2944. }
  2945. },
  2946. foot: {
  2947. height: math.unit(2.14, "feet"),
  2948. name: "Foot",
  2949. image: {
  2950. source: "./media/characters/fory/foot.svg"
  2951. }
  2952. },
  2953. },
  2954. [
  2955. {
  2956. name: "Normal",
  2957. height: math.unit(5, "feet")
  2958. },
  2959. {
  2960. name: "Macro",
  2961. height: math.unit(50, "feet"),
  2962. default: true
  2963. },
  2964. {
  2965. name: "Megamacro",
  2966. height: math.unit(10, "miles")
  2967. },
  2968. {
  2969. name: "Gigamacro",
  2970. height: math.unit(5, "earths")
  2971. },
  2972. ]
  2973. ))
  2974. characterMakers.push(() => makeCharacter(
  2975. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2976. {
  2977. front: {
  2978. height: math.unit(7, "feet"),
  2979. weight: math.unit(90, "kg"),
  2980. name: "Front",
  2981. image: {
  2982. source: "./media/characters/kurrikage/front.svg",
  2983. extra: 1845/1733,
  2984. bottom: 119/1964
  2985. }
  2986. },
  2987. back: {
  2988. height: math.unit(7, "feet"),
  2989. weight: math.unit(90, "kg"),
  2990. name: "Back",
  2991. image: {
  2992. source: "./media/characters/kurrikage/back.svg",
  2993. extra: 1790/1677,
  2994. bottom: 61/1851
  2995. }
  2996. },
  2997. dressed: {
  2998. height: math.unit(7, "feet"),
  2999. weight: math.unit(90, "kg"),
  3000. name: "Dressed",
  3001. image: {
  3002. source: "./media/characters/kurrikage/dressed.svg",
  3003. extra: 1845/1733,
  3004. bottom: 119/1964
  3005. }
  3006. },
  3007. foot: {
  3008. height: math.unit(1.5, "feet"),
  3009. name: "Foot",
  3010. image: {
  3011. source: "./media/characters/kurrikage/foot.svg"
  3012. }
  3013. },
  3014. staff: {
  3015. height: math.unit(6.7, "feet"),
  3016. name: "Staff",
  3017. image: {
  3018. source: "./media/characters/kurrikage/staff.svg"
  3019. }
  3020. },
  3021. peek: {
  3022. height: math.unit(1.05, "feet"),
  3023. name: "Peeking",
  3024. image: {
  3025. source: "./media/characters/kurrikage/peek.svg",
  3026. bottom: 0.08
  3027. }
  3028. },
  3029. },
  3030. [
  3031. {
  3032. name: "Normal",
  3033. height: math.unit(12, "feet"),
  3034. default: true
  3035. },
  3036. {
  3037. name: "Big",
  3038. height: math.unit(20, "feet")
  3039. },
  3040. {
  3041. name: "Macro",
  3042. height: math.unit(500, "feet")
  3043. },
  3044. {
  3045. name: "Megamacro",
  3046. height: math.unit(20, "miles")
  3047. },
  3048. ]
  3049. ))
  3050. characterMakers.push(() => makeCharacter(
  3051. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3052. {
  3053. front: {
  3054. height: math.unit(6, "feet"),
  3055. weight: math.unit(75, "kg"),
  3056. name: "Front",
  3057. image: {
  3058. source: "./media/characters/shingo/front.svg",
  3059. extra: 1900/1825,
  3060. bottom: 82/1982
  3061. }
  3062. },
  3063. side: {
  3064. height: math.unit(6, "feet"),
  3065. weight: math.unit(75, "kg"),
  3066. name: "Side",
  3067. image: {
  3068. source: "./media/characters/shingo/side.svg",
  3069. extra: 1930/1865,
  3070. bottom: 16/1946
  3071. }
  3072. },
  3073. back: {
  3074. height: math.unit(6, "feet"),
  3075. weight: math.unit(75, "kg"),
  3076. name: "Back",
  3077. image: {
  3078. source: "./media/characters/shingo/back.svg",
  3079. extra: 1922/1852,
  3080. bottom: 16/1938
  3081. }
  3082. },
  3083. frontDressed: {
  3084. height: math.unit(6, "feet"),
  3085. weight: math.unit(150, "lb"),
  3086. name: "Front-dressed",
  3087. image: {
  3088. source: "./media/characters/shingo/front-dressed.svg",
  3089. extra: 1900/1825,
  3090. bottom: 82/1982
  3091. }
  3092. },
  3093. paw: {
  3094. height: math.unit(1.29, "feet"),
  3095. name: "Paw",
  3096. image: {
  3097. source: "./media/characters/shingo/paw.svg"
  3098. }
  3099. },
  3100. hand: {
  3101. height: math.unit(1.07, "feet"),
  3102. name: "Hand",
  3103. image: {
  3104. source: "./media/characters/shingo/hand.svg"
  3105. }
  3106. },
  3107. frontAlt: {
  3108. height: math.unit(6, "feet"),
  3109. weight: math.unit(75, "kg"),
  3110. name: "Front (Alt)",
  3111. image: {
  3112. source: "./media/characters/shingo/front-alt.svg",
  3113. extra: 3511 / 3338,
  3114. bottom: 0.005
  3115. }
  3116. },
  3117. frontAlt2: {
  3118. height: math.unit(6, "feet"),
  3119. weight: math.unit(75, "kg"),
  3120. name: "Front (Alt 2)",
  3121. image: {
  3122. source: "./media/characters/shingo/front-alt-2.svg",
  3123. extra: 706/681,
  3124. bottom: 11/717
  3125. }
  3126. },
  3127. pawAlt: {
  3128. height: math.unit(1, "feet"),
  3129. name: "Paw (Alt)",
  3130. image: {
  3131. source: "./media/characters/shingo/paw-alt.svg"
  3132. }
  3133. },
  3134. },
  3135. [
  3136. {
  3137. name: "Micro",
  3138. height: math.unit(4, "inches")
  3139. },
  3140. {
  3141. name: "Normal",
  3142. height: math.unit(6, "feet"),
  3143. default: true
  3144. },
  3145. {
  3146. name: "Macro",
  3147. height: math.unit(108, "feet")
  3148. },
  3149. {
  3150. name: "Macro+",
  3151. height: math.unit(1500, "feet")
  3152. },
  3153. ]
  3154. ))
  3155. characterMakers.push(() => makeCharacter(
  3156. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3157. {
  3158. side: {
  3159. height: math.unit(6, "feet"),
  3160. weight: math.unit(75, "kg"),
  3161. name: "Side",
  3162. image: {
  3163. source: "./media/characters/aigey/side.svg"
  3164. }
  3165. },
  3166. },
  3167. [
  3168. {
  3169. name: "Macro",
  3170. height: math.unit(200, "feet"),
  3171. default: true
  3172. },
  3173. {
  3174. name: "Megamacro",
  3175. height: math.unit(100, "miles")
  3176. },
  3177. ]
  3178. )
  3179. )
  3180. characterMakers.push(() => makeCharacter(
  3181. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3182. {
  3183. front: {
  3184. height: math.unit(5 + 5 / 12, "feet"),
  3185. weight: math.unit(75, "kg"),
  3186. name: "Front",
  3187. image: {
  3188. source: "./media/characters/natasha/front.svg",
  3189. extra: 859 / 824,
  3190. bottom: 23 / 879.6
  3191. }
  3192. },
  3193. frontNsfw: {
  3194. height: math.unit(5 + 5 / 12, "feet"),
  3195. weight: math.unit(75, "kg"),
  3196. name: "Front (NSFW)",
  3197. image: {
  3198. source: "./media/characters/natasha/front-nsfw.svg",
  3199. extra: 859 / 824,
  3200. bottom: 23 / 879.6
  3201. }
  3202. },
  3203. frontErect: {
  3204. height: math.unit(5 + 5 / 12, "feet"),
  3205. weight: math.unit(75, "kg"),
  3206. name: "Front (Erect)",
  3207. image: {
  3208. source: "./media/characters/natasha/front-erect.svg",
  3209. extra: 859 / 824,
  3210. bottom: 23 / 879.6
  3211. }
  3212. },
  3213. back: {
  3214. height: math.unit(5 + 5 / 12, "feet"),
  3215. weight: math.unit(75, "kg"),
  3216. name: "Back",
  3217. image: {
  3218. source: "./media/characters/natasha/back.svg",
  3219. extra: 887.9 / 852.6,
  3220. bottom: 9.7 / 896.4
  3221. }
  3222. },
  3223. backAlt: {
  3224. height: math.unit(5 + 5 / 12, "feet"),
  3225. weight: math.unit(75, "kg"),
  3226. name: "Back (Alt)",
  3227. image: {
  3228. source: "./media/characters/natasha/back-alt.svg",
  3229. extra: 1236.7 / 1192,
  3230. bottom: 22.3 / 1258.2
  3231. }
  3232. },
  3233. dick: {
  3234. height: math.unit(1.772, "feet"),
  3235. name: "Dick",
  3236. image: {
  3237. source: "./media/characters/natasha/dick.svg"
  3238. }
  3239. },
  3240. paw: {
  3241. height: math.unit(0.250, "meters"),
  3242. name: "Paw",
  3243. image: {
  3244. source: "./media/characters/natasha/paw.svg"
  3245. }
  3246. },
  3247. },
  3248. [
  3249. {
  3250. name: "Normal",
  3251. height: math.unit(5 + 5 / 12, "feet")
  3252. },
  3253. {
  3254. name: "Large",
  3255. height: math.unit(12, "feet")
  3256. },
  3257. {
  3258. name: "Macro",
  3259. height: math.unit(100, "feet"),
  3260. default: true
  3261. },
  3262. {
  3263. name: "Macro+",
  3264. height: math.unit(260, "feet")
  3265. },
  3266. {
  3267. name: "Macro++",
  3268. height: math.unit(1, "mile")
  3269. },
  3270. ]
  3271. ))
  3272. characterMakers.push(() => makeCharacter(
  3273. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3274. {
  3275. front: {
  3276. height: math.unit(6, "feet"),
  3277. weight: math.unit(75, "kg"),
  3278. name: "Front",
  3279. image: {
  3280. source: "./media/characters/malik/front.svg"
  3281. }
  3282. },
  3283. side: {
  3284. height: math.unit(6, "feet"),
  3285. weight: math.unit(75, "kg"),
  3286. name: "Side",
  3287. image: {
  3288. source: "./media/characters/malik/side.svg",
  3289. extra: 1.1539
  3290. }
  3291. },
  3292. back: {
  3293. height: math.unit(6, "feet"),
  3294. weight: math.unit(75, "kg"),
  3295. name: "Back",
  3296. image: {
  3297. source: "./media/characters/malik/back.svg"
  3298. }
  3299. },
  3300. },
  3301. [
  3302. {
  3303. name: "Macro",
  3304. height: math.unit(156, "feet"),
  3305. default: true
  3306. },
  3307. {
  3308. name: "Macro+",
  3309. height: math.unit(1188, "feet")
  3310. },
  3311. ]
  3312. ))
  3313. characterMakers.push(() => makeCharacter(
  3314. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3315. {
  3316. front: {
  3317. height: math.unit(6, "feet"),
  3318. weight: math.unit(75, "kg"),
  3319. name: "Front",
  3320. image: {
  3321. source: "./media/characters/sefer/front.svg",
  3322. extra: 848 / 659,
  3323. bottom: 28.3 / 876.442
  3324. }
  3325. },
  3326. back: {
  3327. height: math.unit(6, "feet"),
  3328. weight: math.unit(75, "kg"),
  3329. name: "Back",
  3330. image: {
  3331. source: "./media/characters/sefer/back.svg",
  3332. extra: 864 / 695,
  3333. bottom: 10 / 871
  3334. }
  3335. },
  3336. frontDressed: {
  3337. height: math.unit(6, "feet"),
  3338. weight: math.unit(75, "kg"),
  3339. name: "Front (Dressed)",
  3340. image: {
  3341. source: "./media/characters/sefer/front-dressed.svg",
  3342. extra: 839 / 653,
  3343. bottom: 37.6 / 878
  3344. }
  3345. },
  3346. },
  3347. [
  3348. {
  3349. name: "Normal",
  3350. height: math.unit(6, "feet"),
  3351. default: true
  3352. },
  3353. ]
  3354. ))
  3355. characterMakers.push(() => makeCharacter(
  3356. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3357. {
  3358. body: {
  3359. height: math.unit(2.2428, "meter"),
  3360. weight: math.unit(124.738, "kg"),
  3361. name: "Body",
  3362. image: {
  3363. extra: 1225 / 1050,
  3364. source: "./media/characters/north/front.svg"
  3365. }
  3366. }
  3367. },
  3368. [
  3369. {
  3370. name: "Micro",
  3371. height: math.unit(4, "inches")
  3372. },
  3373. {
  3374. name: "Macro",
  3375. height: math.unit(63, "meters")
  3376. },
  3377. {
  3378. name: "Megamacro",
  3379. height: math.unit(101, "miles"),
  3380. default: true
  3381. }
  3382. ]
  3383. ))
  3384. characterMakers.push(() => makeCharacter(
  3385. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3386. {
  3387. angled: {
  3388. height: math.unit(4, "meter"),
  3389. weight: math.unit(150, "kg"),
  3390. name: "Angled",
  3391. image: {
  3392. source: "./media/characters/talan/angled-sfw.svg",
  3393. bottom: 29 / 3734
  3394. }
  3395. },
  3396. angledNsfw: {
  3397. height: math.unit(4, "meter"),
  3398. weight: math.unit(150, "kg"),
  3399. name: "Angled (NSFW)",
  3400. image: {
  3401. source: "./media/characters/talan/angled-nsfw.svg",
  3402. bottom: 29 / 3734
  3403. }
  3404. },
  3405. frontNsfw: {
  3406. height: math.unit(4, "meter"),
  3407. weight: math.unit(150, "kg"),
  3408. name: "Front (NSFW)",
  3409. image: {
  3410. source: "./media/characters/talan/front-nsfw.svg",
  3411. bottom: 29 / 3734
  3412. }
  3413. },
  3414. sideNsfw: {
  3415. height: math.unit(4, "meter"),
  3416. weight: math.unit(150, "kg"),
  3417. name: "Side (NSFW)",
  3418. image: {
  3419. source: "./media/characters/talan/side-nsfw.svg",
  3420. bottom: 29 / 3734
  3421. }
  3422. },
  3423. back: {
  3424. height: math.unit(4, "meter"),
  3425. weight: math.unit(150, "kg"),
  3426. name: "Back",
  3427. image: {
  3428. source: "./media/characters/talan/back.svg"
  3429. }
  3430. },
  3431. dickBottom: {
  3432. height: math.unit(0.621, "meter"),
  3433. name: "Dick (Bottom)",
  3434. image: {
  3435. source: "./media/characters/talan/dick-bottom.svg"
  3436. }
  3437. },
  3438. dickTop: {
  3439. height: math.unit(0.621, "meter"),
  3440. name: "Dick (Top)",
  3441. image: {
  3442. source: "./media/characters/talan/dick-top.svg"
  3443. }
  3444. },
  3445. dickSide: {
  3446. height: math.unit(0.305, "meter"),
  3447. name: "Dick (Side)",
  3448. image: {
  3449. source: "./media/characters/talan/dick-side.svg"
  3450. }
  3451. },
  3452. dickFront: {
  3453. height: math.unit(0.305, "meter"),
  3454. name: "Dick (Front)",
  3455. image: {
  3456. source: "./media/characters/talan/dick-front.svg"
  3457. }
  3458. },
  3459. },
  3460. [
  3461. {
  3462. name: "Normal",
  3463. height: math.unit(4, "meters")
  3464. },
  3465. {
  3466. name: "Macro",
  3467. height: math.unit(100, "meters")
  3468. },
  3469. {
  3470. name: "Megamacro",
  3471. height: math.unit(2, "miles"),
  3472. default: true
  3473. },
  3474. {
  3475. name: "Gigamacro",
  3476. height: math.unit(5000, "miles")
  3477. },
  3478. {
  3479. name: "Teramacro",
  3480. height: math.unit(100, "parsecs")
  3481. }
  3482. ]
  3483. ))
  3484. characterMakers.push(() => makeCharacter(
  3485. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3486. {
  3487. front: {
  3488. height: math.unit(2, "meter"),
  3489. weight: math.unit(90, "kg"),
  3490. name: "Front",
  3491. image: {
  3492. source: "./media/characters/gael'rathus/front.svg"
  3493. }
  3494. },
  3495. frontAlt: {
  3496. height: math.unit(2, "meter"),
  3497. weight: math.unit(90, "kg"),
  3498. name: "Front (alt)",
  3499. image: {
  3500. source: "./media/characters/gael'rathus/front-alt.svg"
  3501. }
  3502. },
  3503. frontAlt2: {
  3504. height: math.unit(2, "meter"),
  3505. weight: math.unit(90, "kg"),
  3506. name: "Front (alt 2)",
  3507. image: {
  3508. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3509. }
  3510. }
  3511. },
  3512. [
  3513. {
  3514. name: "Normal",
  3515. height: math.unit(9, "feet"),
  3516. default: true
  3517. },
  3518. {
  3519. name: "Large",
  3520. height: math.unit(25, "feet")
  3521. },
  3522. {
  3523. name: "Macro",
  3524. height: math.unit(0.25, "miles")
  3525. },
  3526. {
  3527. name: "Megamacro",
  3528. height: math.unit(10, "miles")
  3529. }
  3530. ]
  3531. ))
  3532. characterMakers.push(() => makeCharacter(
  3533. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3534. {
  3535. side: {
  3536. height: math.unit(2, "meter"),
  3537. weight: math.unit(140, "kg"),
  3538. name: "Side",
  3539. image: {
  3540. source: "./media/characters/sosha/side.svg",
  3541. bottom: 0.042
  3542. }
  3543. },
  3544. },
  3545. [
  3546. {
  3547. name: "Normal",
  3548. height: math.unit(12, "feet"),
  3549. default: true
  3550. }
  3551. ]
  3552. ))
  3553. characterMakers.push(() => makeCharacter(
  3554. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3555. {
  3556. side: {
  3557. height: math.unit(5 + 5 / 12, "feet"),
  3558. weight: math.unit(170, "kg"),
  3559. name: "Side",
  3560. image: {
  3561. source: "./media/characters/runnola/side.svg",
  3562. extra: 741 / 448,
  3563. bottom: 0.05
  3564. }
  3565. },
  3566. },
  3567. [
  3568. {
  3569. name: "Small",
  3570. height: math.unit(3, "feet")
  3571. },
  3572. {
  3573. name: "Normal",
  3574. height: math.unit(5 + 5 / 12, "feet"),
  3575. default: true
  3576. },
  3577. {
  3578. name: "Big",
  3579. height: math.unit(10, "feet")
  3580. },
  3581. ]
  3582. ))
  3583. characterMakers.push(() => makeCharacter(
  3584. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3585. {
  3586. front: {
  3587. height: math.unit(2, "meter"),
  3588. weight: math.unit(50, "kg"),
  3589. name: "Front",
  3590. image: {
  3591. source: "./media/characters/kurribird/front.svg",
  3592. bottom: 0.015
  3593. }
  3594. },
  3595. frontAlt: {
  3596. height: math.unit(1.5, "meter"),
  3597. weight: math.unit(50, "kg"),
  3598. name: "Front (Alt)",
  3599. image: {
  3600. source: "./media/characters/kurribird/front-alt.svg",
  3601. extra: 1.45
  3602. }
  3603. },
  3604. },
  3605. [
  3606. {
  3607. name: "Normal",
  3608. height: math.unit(7, "feet")
  3609. },
  3610. {
  3611. name: "Big",
  3612. height: math.unit(12, "feet"),
  3613. default: true
  3614. },
  3615. {
  3616. name: "Macro",
  3617. height: math.unit(1500, "feet")
  3618. },
  3619. {
  3620. name: "Megamacro",
  3621. height: math.unit(2, "miles")
  3622. }
  3623. ]
  3624. ))
  3625. characterMakers.push(() => makeCharacter(
  3626. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3627. {
  3628. front: {
  3629. height: math.unit(2, "meter"),
  3630. weight: math.unit(80, "kg"),
  3631. name: "Front",
  3632. image: {
  3633. source: "./media/characters/elbial/front.svg",
  3634. extra: 1643 / 1556,
  3635. bottom: 60.2 / 1696
  3636. }
  3637. },
  3638. side: {
  3639. height: math.unit(2, "meter"),
  3640. weight: math.unit(80, "kg"),
  3641. name: "Side",
  3642. image: {
  3643. source: "./media/characters/elbial/side.svg",
  3644. extra: 1601/1528,
  3645. bottom: 97/1698
  3646. }
  3647. },
  3648. back: {
  3649. height: math.unit(2, "meter"),
  3650. weight: math.unit(80, "kg"),
  3651. name: "Back",
  3652. image: {
  3653. source: "./media/characters/elbial/back.svg",
  3654. extra: 1653/1569,
  3655. bottom: 20/1673
  3656. }
  3657. },
  3658. frontDressed: {
  3659. height: math.unit(2, "meter"),
  3660. weight: math.unit(80, "kg"),
  3661. name: "Front (Dressed)",
  3662. image: {
  3663. source: "./media/characters/elbial/front-dressed.svg",
  3664. extra: 1638/1569,
  3665. bottom: 70/1708
  3666. }
  3667. },
  3668. genitals: {
  3669. height: math.unit(2 / 3.367, "meter"),
  3670. name: "Genitals",
  3671. image: {
  3672. source: "./media/characters/elbial/genitals.svg"
  3673. }
  3674. },
  3675. },
  3676. [
  3677. {
  3678. name: "Large",
  3679. height: math.unit(100, "feet")
  3680. },
  3681. {
  3682. name: "Macro",
  3683. height: math.unit(500, "feet"),
  3684. default: true
  3685. },
  3686. {
  3687. name: "Megamacro",
  3688. height: math.unit(10, "miles")
  3689. },
  3690. {
  3691. name: "Gigamacro",
  3692. height: math.unit(25000, "miles")
  3693. },
  3694. {
  3695. name: "Full-Size",
  3696. height: math.unit(8000000, "gigaparsecs")
  3697. }
  3698. ]
  3699. ))
  3700. characterMakers.push(() => makeCharacter(
  3701. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3702. {
  3703. front: {
  3704. height: math.unit(2, "meter"),
  3705. weight: math.unit(60, "kg"),
  3706. name: "Front",
  3707. image: {
  3708. source: "./media/characters/noah/front.svg"
  3709. }
  3710. },
  3711. talons: {
  3712. height: math.unit(0.315, "meter"),
  3713. name: "Talons",
  3714. image: {
  3715. source: "./media/characters/noah/talons.svg"
  3716. }
  3717. }
  3718. },
  3719. [
  3720. {
  3721. name: "Large",
  3722. height: math.unit(50, "feet")
  3723. },
  3724. {
  3725. name: "Macro",
  3726. height: math.unit(750, "feet"),
  3727. default: true
  3728. },
  3729. {
  3730. name: "Megamacro",
  3731. height: math.unit(50, "miles")
  3732. },
  3733. {
  3734. name: "Gigamacro",
  3735. height: math.unit(100000, "miles")
  3736. },
  3737. {
  3738. name: "Full-Size",
  3739. height: math.unit(3000000000, "miles")
  3740. }
  3741. ]
  3742. ))
  3743. characterMakers.push(() => makeCharacter(
  3744. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3745. {
  3746. front: {
  3747. height: math.unit(2, "meter"),
  3748. weight: math.unit(80, "kg"),
  3749. name: "Front",
  3750. image: {
  3751. source: "./media/characters/natalya/front.svg"
  3752. }
  3753. },
  3754. back: {
  3755. height: math.unit(2, "meter"),
  3756. weight: math.unit(80, "kg"),
  3757. name: "Back",
  3758. image: {
  3759. source: "./media/characters/natalya/back.svg"
  3760. }
  3761. }
  3762. },
  3763. [
  3764. {
  3765. name: "Normal",
  3766. height: math.unit(150, "feet"),
  3767. default: true
  3768. },
  3769. {
  3770. name: "Megamacro",
  3771. height: math.unit(5, "miles")
  3772. },
  3773. {
  3774. name: "Full-Size",
  3775. height: math.unit(600, "kiloparsecs")
  3776. }
  3777. ]
  3778. ))
  3779. characterMakers.push(() => makeCharacter(
  3780. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3781. {
  3782. front: {
  3783. height: math.unit(2, "meter"),
  3784. weight: math.unit(50, "kg"),
  3785. name: "Front",
  3786. image: {
  3787. source: "./media/characters/erestrebah/front.svg",
  3788. extra: 1262/1162,
  3789. bottom: 96/1358
  3790. }
  3791. },
  3792. back: {
  3793. height: math.unit(2, "meter"),
  3794. weight: math.unit(50, "kg"),
  3795. name: "Back",
  3796. image: {
  3797. source: "./media/characters/erestrebah/back.svg",
  3798. extra: 1257/1139,
  3799. bottom: 13/1270
  3800. }
  3801. },
  3802. wing: {
  3803. height: math.unit(2, "meter"),
  3804. weight: math.unit(50, "kg"),
  3805. name: "Wing",
  3806. image: {
  3807. source: "./media/characters/erestrebah/wing.svg",
  3808. extra: 1262/1162,
  3809. bottom: 96/1358
  3810. }
  3811. },
  3812. mouth: {
  3813. height: math.unit(0.39, "feet"),
  3814. name: "Mouth",
  3815. image: {
  3816. source: "./media/characters/erestrebah/mouth.svg"
  3817. }
  3818. }
  3819. },
  3820. [
  3821. {
  3822. name: "Normal",
  3823. height: math.unit(10, "feet")
  3824. },
  3825. {
  3826. name: "Large",
  3827. height: math.unit(50, "feet"),
  3828. default: true
  3829. },
  3830. {
  3831. name: "Macro",
  3832. height: math.unit(300, "feet")
  3833. },
  3834. {
  3835. name: "Macro+",
  3836. height: math.unit(750, "feet")
  3837. },
  3838. {
  3839. name: "Megamacro",
  3840. height: math.unit(3, "miles")
  3841. }
  3842. ]
  3843. ))
  3844. characterMakers.push(() => makeCharacter(
  3845. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3846. {
  3847. front: {
  3848. height: math.unit(2, "meter"),
  3849. weight: math.unit(80, "kg"),
  3850. name: "Front",
  3851. image: {
  3852. source: "./media/characters/jennifer/front.svg",
  3853. bottom: 0.11,
  3854. extra: 1.16
  3855. }
  3856. },
  3857. frontAlt: {
  3858. height: math.unit(2, "meter"),
  3859. weight: math.unit(80, "kg"),
  3860. name: "Front (Alt)",
  3861. image: {
  3862. source: "./media/characters/jennifer/front-alt.svg"
  3863. }
  3864. }
  3865. },
  3866. [
  3867. {
  3868. name: "Canon Height",
  3869. height: math.unit(120, "feet"),
  3870. default: true
  3871. },
  3872. {
  3873. name: "Macro+",
  3874. height: math.unit(300, "feet")
  3875. },
  3876. {
  3877. name: "Megamacro",
  3878. height: math.unit(20000, "feet")
  3879. }
  3880. ]
  3881. ))
  3882. characterMakers.push(() => makeCharacter(
  3883. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3884. {
  3885. front: {
  3886. height: math.unit(2, "meter"),
  3887. weight: math.unit(50, "kg"),
  3888. name: "Front",
  3889. image: {
  3890. source: "./media/characters/kalista/front.svg",
  3891. extra: 1314/1145,
  3892. bottom: 101/1415
  3893. }
  3894. },
  3895. back: {
  3896. height: math.unit(2, "meter"),
  3897. weight: math.unit(50, "kg"),
  3898. name: "Back",
  3899. image: {
  3900. source: "./media/characters/kalista/back.svg",
  3901. extra: 1366 / 1156,
  3902. bottom: 33.9 / 1362.78
  3903. }
  3904. }
  3905. },
  3906. [
  3907. {
  3908. name: "Uncomfortably Small",
  3909. height: math.unit(10, "feet")
  3910. },
  3911. {
  3912. name: "Small",
  3913. height: math.unit(30, "feet")
  3914. },
  3915. {
  3916. name: "Macro",
  3917. height: math.unit(100, "feet"),
  3918. default: true
  3919. },
  3920. {
  3921. name: "Macro+",
  3922. height: math.unit(2000, "feet")
  3923. },
  3924. {
  3925. name: "True Form",
  3926. height: math.unit(8924, "miles")
  3927. }
  3928. ]
  3929. ))
  3930. characterMakers.push(() => makeCharacter(
  3931. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3932. {
  3933. front: {
  3934. height: math.unit(2, "meter"),
  3935. weight: math.unit(120, "kg"),
  3936. name: "Front",
  3937. image: {
  3938. source: "./media/characters/ggv/front.svg"
  3939. }
  3940. },
  3941. side: {
  3942. height: math.unit(2, "meter"),
  3943. weight: math.unit(120, "kg"),
  3944. name: "Side",
  3945. image: {
  3946. source: "./media/characters/ggv/side.svg"
  3947. }
  3948. }
  3949. },
  3950. [
  3951. {
  3952. name: "Extremely Puny",
  3953. height: math.unit(9 + 5 / 12, "feet")
  3954. },
  3955. {
  3956. name: "Horribly Small",
  3957. height: math.unit(47.7, "miles"),
  3958. default: true
  3959. },
  3960. {
  3961. name: "Reasonably Sized",
  3962. height: math.unit(25000, "parsecs")
  3963. },
  3964. {
  3965. name: "Slightly Uncompressed",
  3966. height: math.unit(7.77e31, "parsecs")
  3967. },
  3968. {
  3969. name: "Omniversal",
  3970. height: math.unit(1e300, "meters")
  3971. },
  3972. ]
  3973. ))
  3974. characterMakers.push(() => makeCharacter(
  3975. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3976. {
  3977. front: {
  3978. height: math.unit(2, "meter"),
  3979. weight: math.unit(75, "lb"),
  3980. name: "Front",
  3981. image: {
  3982. source: "./media/characters/napalm/front.svg"
  3983. }
  3984. },
  3985. back: {
  3986. height: math.unit(2, "meter"),
  3987. weight: math.unit(75, "lb"),
  3988. name: "Back",
  3989. image: {
  3990. source: "./media/characters/napalm/back.svg"
  3991. }
  3992. }
  3993. },
  3994. [
  3995. {
  3996. name: "Standard",
  3997. height: math.unit(55, "feet"),
  3998. default: true
  3999. }
  4000. ]
  4001. ))
  4002. characterMakers.push(() => makeCharacter(
  4003. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4004. {
  4005. front: {
  4006. height: math.unit(7 + 5 / 6, "feet"),
  4007. weight: math.unit(325, "lb"),
  4008. name: "Front",
  4009. image: {
  4010. source: "./media/characters/asana/front.svg",
  4011. extra: 1133 / 1060,
  4012. bottom: 15.2 / 1148.6
  4013. }
  4014. },
  4015. back: {
  4016. height: math.unit(7 + 5 / 6, "feet"),
  4017. weight: math.unit(325, "lb"),
  4018. name: "Back",
  4019. image: {
  4020. source: "./media/characters/asana/back.svg",
  4021. extra: 1114 / 1043,
  4022. bottom: 5 / 1120
  4023. }
  4024. },
  4025. dressedDark: {
  4026. height: math.unit(7 + 5 / 6, "feet"),
  4027. weight: math.unit(325, "lb"),
  4028. name: "Dressed (Dark)",
  4029. image: {
  4030. source: "./media/characters/asana/dressed-dark.svg",
  4031. extra: 1133 / 1060,
  4032. bottom: 15.2 / 1148.6
  4033. }
  4034. },
  4035. dressedLight: {
  4036. height: math.unit(7 + 5 / 6, "feet"),
  4037. weight: math.unit(325, "lb"),
  4038. name: "Dressed (Light)",
  4039. image: {
  4040. source: "./media/characters/asana/dressed-light.svg",
  4041. extra: 1133 / 1060,
  4042. bottom: 15.2 / 1148.6
  4043. }
  4044. },
  4045. },
  4046. [
  4047. {
  4048. name: "Standard",
  4049. height: math.unit(7 + 5 / 6, "feet"),
  4050. default: true
  4051. },
  4052. {
  4053. name: "Large",
  4054. height: math.unit(10, "meters")
  4055. },
  4056. {
  4057. name: "Macro",
  4058. height: math.unit(2500, "meters")
  4059. },
  4060. {
  4061. name: "Megamacro",
  4062. height: math.unit(5e6, "meters")
  4063. },
  4064. {
  4065. name: "Examacro",
  4066. height: math.unit(5e12, "lightyears")
  4067. },
  4068. {
  4069. name: "Max Size",
  4070. height: math.unit(1e31, "lightyears")
  4071. }
  4072. ]
  4073. ))
  4074. characterMakers.push(() => makeCharacter(
  4075. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4076. {
  4077. front: {
  4078. height: math.unit(2, "meter"),
  4079. weight: math.unit(60, "kg"),
  4080. name: "Front",
  4081. image: {
  4082. source: "./media/characters/ebony/front.svg",
  4083. bottom: 0.03,
  4084. extra: 1045 / 810 + 0.03
  4085. }
  4086. },
  4087. side: {
  4088. height: math.unit(2, "meter"),
  4089. weight: math.unit(60, "kg"),
  4090. name: "Side",
  4091. image: {
  4092. source: "./media/characters/ebony/side.svg",
  4093. bottom: 0.03,
  4094. extra: 1045 / 810 + 0.03
  4095. }
  4096. },
  4097. back: {
  4098. height: math.unit(2, "meter"),
  4099. weight: math.unit(60, "kg"),
  4100. name: "Back",
  4101. image: {
  4102. source: "./media/characters/ebony/back.svg",
  4103. bottom: 0.01,
  4104. extra: 1045 / 810 + 0.01
  4105. }
  4106. },
  4107. },
  4108. [
  4109. // TODO check why I did this lol
  4110. {
  4111. name: "Standard",
  4112. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4113. default: true
  4114. },
  4115. {
  4116. name: "Macro",
  4117. height: math.unit(200, "feet")
  4118. },
  4119. {
  4120. name: "Gigamacro",
  4121. height: math.unit(13000, "km")
  4122. }
  4123. ]
  4124. ))
  4125. characterMakers.push(() => makeCharacter(
  4126. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4127. {
  4128. front: {
  4129. height: math.unit(6, "feet"),
  4130. weight: math.unit(175, "lb"),
  4131. name: "Front",
  4132. image: {
  4133. source: "./media/characters/mountain/front.svg",
  4134. extra: 972 / 955,
  4135. bottom: 64 / 1036.6
  4136. }
  4137. },
  4138. back: {
  4139. height: math.unit(6, "feet"),
  4140. weight: math.unit(175, "lb"),
  4141. name: "Back",
  4142. image: {
  4143. source: "./media/characters/mountain/back.svg",
  4144. extra: 970 / 950,
  4145. bottom: 28.25 / 999
  4146. }
  4147. },
  4148. },
  4149. [
  4150. {
  4151. name: "Large",
  4152. height: math.unit(20, "meters")
  4153. },
  4154. {
  4155. name: "Macro",
  4156. height: math.unit(300, "meters")
  4157. },
  4158. {
  4159. name: "Gigamacro",
  4160. height: math.unit(10000, "km"),
  4161. default: true
  4162. },
  4163. {
  4164. name: "Examacro",
  4165. height: math.unit(10e9, "lightyears")
  4166. }
  4167. ]
  4168. ))
  4169. characterMakers.push(() => makeCharacter(
  4170. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4171. {
  4172. front: {
  4173. height: math.unit(8, "feet"),
  4174. weight: math.unit(500, "lb"),
  4175. name: "Front",
  4176. image: {
  4177. source: "./media/characters/rick/front.svg"
  4178. }
  4179. }
  4180. },
  4181. [
  4182. {
  4183. name: "Normal",
  4184. height: math.unit(8, "feet"),
  4185. default: true
  4186. },
  4187. {
  4188. name: "Macro",
  4189. height: math.unit(5, "km")
  4190. }
  4191. ]
  4192. ))
  4193. characterMakers.push(() => makeCharacter(
  4194. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4195. {
  4196. front: {
  4197. height: math.unit(8, "feet"),
  4198. weight: math.unit(120, "lb"),
  4199. name: "Front",
  4200. image: {
  4201. source: "./media/characters/ona/front.svg"
  4202. }
  4203. },
  4204. frontAlt: {
  4205. height: math.unit(8, "feet"),
  4206. weight: math.unit(120, "lb"),
  4207. name: "Front (Alt)",
  4208. image: {
  4209. source: "./media/characters/ona/front-alt.svg"
  4210. }
  4211. },
  4212. back: {
  4213. height: math.unit(8, "feet"),
  4214. weight: math.unit(120, "lb"),
  4215. name: "Back",
  4216. image: {
  4217. source: "./media/characters/ona/back.svg"
  4218. }
  4219. },
  4220. foot: {
  4221. height: math.unit(1.1, "feet"),
  4222. name: "Foot",
  4223. image: {
  4224. source: "./media/characters/ona/foot.svg"
  4225. }
  4226. }
  4227. },
  4228. [
  4229. {
  4230. name: "Megamacro",
  4231. height: math.unit(70, "km"),
  4232. default: true
  4233. },
  4234. {
  4235. name: "Gigamacro",
  4236. height: math.unit(681818, "miles")
  4237. },
  4238. {
  4239. name: "Examacro",
  4240. height: math.unit(3800000, "lightyears")
  4241. },
  4242. ]
  4243. ))
  4244. characterMakers.push(() => makeCharacter(
  4245. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4246. {
  4247. front: {
  4248. height: math.unit(12, "feet"),
  4249. weight: math.unit(3000, "lb"),
  4250. name: "Front",
  4251. image: {
  4252. source: "./media/characters/mech/front.svg",
  4253. extra: 2900 / 2770,
  4254. bottom: 110 / 3010
  4255. }
  4256. },
  4257. back: {
  4258. height: math.unit(12, "feet"),
  4259. weight: math.unit(3000, "lb"),
  4260. name: "Back",
  4261. image: {
  4262. source: "./media/characters/mech/back.svg",
  4263. extra: 3011 / 2890,
  4264. bottom: 94 / 3105
  4265. }
  4266. },
  4267. maw: {
  4268. height: math.unit(3.07, "feet"),
  4269. name: "Maw",
  4270. image: {
  4271. source: "./media/characters/mech/maw.svg"
  4272. }
  4273. },
  4274. head: {
  4275. height: math.unit(2.82, "feet"),
  4276. name: "Head",
  4277. image: {
  4278. source: "./media/characters/mech/head.svg"
  4279. }
  4280. },
  4281. dick: {
  4282. height: math.unit(1.43, "feet"),
  4283. name: "Dick",
  4284. image: {
  4285. source: "./media/characters/mech/dick.svg"
  4286. }
  4287. },
  4288. },
  4289. [
  4290. {
  4291. name: "Normal",
  4292. height: math.unit(12, "feet")
  4293. },
  4294. {
  4295. name: "Macro",
  4296. height: math.unit(300, "feet"),
  4297. default: true
  4298. },
  4299. {
  4300. name: "Macro+",
  4301. height: math.unit(1500, "feet")
  4302. },
  4303. ]
  4304. ))
  4305. characterMakers.push(() => makeCharacter(
  4306. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4307. {
  4308. front: {
  4309. height: math.unit(1.3, "meter"),
  4310. weight: math.unit(30, "kg"),
  4311. name: "Front",
  4312. image: {
  4313. source: "./media/characters/gregory/front.svg",
  4314. }
  4315. }
  4316. },
  4317. [
  4318. {
  4319. name: "Normal",
  4320. height: math.unit(1.3, "meter"),
  4321. default: true
  4322. },
  4323. {
  4324. name: "Macro",
  4325. height: math.unit(20, "meter")
  4326. }
  4327. ]
  4328. ))
  4329. characterMakers.push(() => makeCharacter(
  4330. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4331. {
  4332. front: {
  4333. height: math.unit(2.8, "meter"),
  4334. weight: math.unit(200, "kg"),
  4335. name: "Front",
  4336. image: {
  4337. source: "./media/characters/elory/front.svg",
  4338. }
  4339. }
  4340. },
  4341. [
  4342. {
  4343. name: "Normal",
  4344. height: math.unit(2.8, "meter"),
  4345. default: true
  4346. },
  4347. {
  4348. name: "Macro",
  4349. height: math.unit(38, "meter")
  4350. }
  4351. ]
  4352. ))
  4353. characterMakers.push(() => makeCharacter(
  4354. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4355. {
  4356. front: {
  4357. height: math.unit(470, "feet"),
  4358. weight: math.unit(924, "tons"),
  4359. name: "Front",
  4360. image: {
  4361. source: "./media/characters/angelpatamon/front.svg",
  4362. }
  4363. }
  4364. },
  4365. [
  4366. {
  4367. name: "Normal",
  4368. height: math.unit(470, "feet"),
  4369. default: true
  4370. },
  4371. {
  4372. name: "Deity Size I",
  4373. height: math.unit(28651.2, "km")
  4374. },
  4375. {
  4376. name: "Deity Size II",
  4377. height: math.unit(171907.2, "km")
  4378. }
  4379. ]
  4380. ))
  4381. characterMakers.push(() => makeCharacter(
  4382. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4383. {
  4384. side: {
  4385. height: math.unit(7.2, "meter"),
  4386. weight: math.unit(8.2, "tons"),
  4387. name: "Side",
  4388. image: {
  4389. source: "./media/characters/cryae/side.svg",
  4390. extra: 3500 / 1500
  4391. }
  4392. }
  4393. },
  4394. [
  4395. {
  4396. name: "Normal",
  4397. height: math.unit(7.2, "meter"),
  4398. default: true
  4399. }
  4400. ]
  4401. ))
  4402. characterMakers.push(() => makeCharacter(
  4403. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4404. {
  4405. front: {
  4406. height: math.unit(6, "feet"),
  4407. weight: math.unit(175, "lb"),
  4408. name: "Front",
  4409. image: {
  4410. source: "./media/characters/xera/front.svg",
  4411. extra: 2377 / 1972,
  4412. bottom: 75.5 / 2452
  4413. }
  4414. },
  4415. side: {
  4416. height: math.unit(6, "feet"),
  4417. weight: math.unit(175, "lb"),
  4418. name: "Side",
  4419. image: {
  4420. source: "./media/characters/xera/side.svg",
  4421. extra: 2345 / 2019,
  4422. bottom: 39.7 / 2384
  4423. }
  4424. },
  4425. back: {
  4426. height: math.unit(6, "feet"),
  4427. weight: math.unit(175, "lb"),
  4428. name: "Back",
  4429. image: {
  4430. source: "./media/characters/xera/back.svg",
  4431. extra: 2095 / 1984,
  4432. bottom: 67 / 2166
  4433. }
  4434. },
  4435. },
  4436. [
  4437. {
  4438. name: "Small",
  4439. height: math.unit(10, "feet")
  4440. },
  4441. {
  4442. name: "Macro",
  4443. height: math.unit(500, "meters"),
  4444. default: true
  4445. },
  4446. {
  4447. name: "Macro+",
  4448. height: math.unit(10, "km")
  4449. },
  4450. {
  4451. name: "Gigamacro",
  4452. height: math.unit(25000, "km")
  4453. },
  4454. {
  4455. name: "Teramacro",
  4456. height: math.unit(3e6, "km")
  4457. }
  4458. ]
  4459. ))
  4460. characterMakers.push(() => makeCharacter(
  4461. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4462. {
  4463. front: {
  4464. height: math.unit(6, "feet"),
  4465. weight: math.unit(175, "lb"),
  4466. name: "Front",
  4467. image: {
  4468. source: "./media/characters/nebula/front.svg",
  4469. extra: 2566 / 2362,
  4470. bottom: 81 / 2644
  4471. }
  4472. }
  4473. },
  4474. [
  4475. {
  4476. name: "Small",
  4477. height: math.unit(4.5, "meters")
  4478. },
  4479. {
  4480. name: "Macro",
  4481. height: math.unit(1500, "meters"),
  4482. default: true
  4483. },
  4484. {
  4485. name: "Megamacro",
  4486. height: math.unit(150, "km")
  4487. },
  4488. {
  4489. name: "Gigamacro",
  4490. height: math.unit(27000, "km")
  4491. }
  4492. ]
  4493. ))
  4494. characterMakers.push(() => makeCharacter(
  4495. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4496. {
  4497. front: {
  4498. height: math.unit(6, "feet"),
  4499. weight: math.unit(225, "lb"),
  4500. name: "Front",
  4501. image: {
  4502. source: "./media/characters/abysgar/front.svg"
  4503. }
  4504. }
  4505. },
  4506. [
  4507. {
  4508. name: "Small",
  4509. height: math.unit(4.5, "meters")
  4510. },
  4511. {
  4512. name: "Macro",
  4513. height: math.unit(1250, "meters"),
  4514. default: true
  4515. },
  4516. {
  4517. name: "Megamacro",
  4518. height: math.unit(125, "km")
  4519. },
  4520. {
  4521. name: "Gigamacro",
  4522. height: math.unit(26000, "km")
  4523. }
  4524. ]
  4525. ))
  4526. characterMakers.push(() => makeCharacter(
  4527. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4528. {
  4529. front: {
  4530. height: math.unit(6, "feet"),
  4531. weight: math.unit(180, "lb"),
  4532. name: "Front",
  4533. image: {
  4534. source: "./media/characters/yakuz/front.svg"
  4535. }
  4536. }
  4537. },
  4538. [
  4539. {
  4540. name: "Small",
  4541. height: math.unit(5, "meters")
  4542. },
  4543. {
  4544. name: "Macro",
  4545. height: math.unit(1500, "meters"),
  4546. default: true
  4547. },
  4548. {
  4549. name: "Megamacro",
  4550. height: math.unit(200, "km")
  4551. },
  4552. {
  4553. name: "Gigamacro",
  4554. height: math.unit(100000, "km")
  4555. }
  4556. ]
  4557. ))
  4558. characterMakers.push(() => makeCharacter(
  4559. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4560. {
  4561. front: {
  4562. height: math.unit(6, "feet"),
  4563. weight: math.unit(175, "lb"),
  4564. name: "Front",
  4565. image: {
  4566. source: "./media/characters/mirova/front.svg",
  4567. extra: 3334 / 3071,
  4568. bottom: 42 / 3375.6
  4569. }
  4570. }
  4571. },
  4572. [
  4573. {
  4574. name: "Small",
  4575. height: math.unit(5, "meters")
  4576. },
  4577. {
  4578. name: "Macro",
  4579. height: math.unit(900, "meters"),
  4580. default: true
  4581. },
  4582. {
  4583. name: "Megamacro",
  4584. height: math.unit(135, "km")
  4585. },
  4586. {
  4587. name: "Gigamacro",
  4588. height: math.unit(20000, "km")
  4589. }
  4590. ]
  4591. ))
  4592. characterMakers.push(() => makeCharacter(
  4593. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4594. {
  4595. side: {
  4596. height: math.unit(28.35, "feet"),
  4597. weight: math.unit(99.75, "tons"),
  4598. name: "Side",
  4599. image: {
  4600. source: "./media/characters/asana-mech/side.svg",
  4601. extra: 923 / 699,
  4602. bottom: 50 / 975
  4603. }
  4604. },
  4605. chaingun: {
  4606. height: math.unit(7, "feet"),
  4607. weight: math.unit(2400, "lb"),
  4608. name: "Chaingun",
  4609. image: {
  4610. source: "./media/characters/asana-mech/chaingun.svg"
  4611. }
  4612. },
  4613. laser: {
  4614. height: math.unit(7.12, "feet"),
  4615. weight: math.unit(2000, "lb"),
  4616. name: "Laser",
  4617. image: {
  4618. source: "./media/characters/asana-mech/laser.svg"
  4619. }
  4620. },
  4621. },
  4622. [
  4623. {
  4624. name: "Normal",
  4625. height: math.unit(28.35, "feet"),
  4626. default: true
  4627. },
  4628. {
  4629. name: "Macro",
  4630. height: math.unit(2500, "feet")
  4631. },
  4632. {
  4633. name: "Megamacro",
  4634. height: math.unit(25, "miles")
  4635. },
  4636. {
  4637. name: "Examacro",
  4638. height: math.unit(6e8, "lightyears")
  4639. },
  4640. ]
  4641. ))
  4642. characterMakers.push(() => makeCharacter(
  4643. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4644. {
  4645. front: {
  4646. height: math.unit(5, "meters"),
  4647. weight: math.unit(1000, "kg"),
  4648. name: "Front",
  4649. image: {
  4650. source: "./media/characters/asche/front.svg",
  4651. extra: 1258 / 1190,
  4652. bottom: 47 / 1305
  4653. }
  4654. },
  4655. frontUnderwear: {
  4656. height: math.unit(5, "meters"),
  4657. weight: math.unit(1000, "kg"),
  4658. name: "Front (Underwear)",
  4659. image: {
  4660. source: "./media/characters/asche/front-underwear.svg",
  4661. extra: 1258 / 1190,
  4662. bottom: 47 / 1305
  4663. }
  4664. },
  4665. frontDressed: {
  4666. height: math.unit(5, "meters"),
  4667. weight: math.unit(1000, "kg"),
  4668. name: "Front (Dressed)",
  4669. image: {
  4670. source: "./media/characters/asche/front-dressed.svg",
  4671. extra: 1258 / 1190,
  4672. bottom: 47 / 1305
  4673. }
  4674. },
  4675. frontArmor: {
  4676. height: math.unit(5, "meters"),
  4677. weight: math.unit(1000, "kg"),
  4678. name: "Front (Armored)",
  4679. image: {
  4680. source: "./media/characters/asche/front-armored.svg",
  4681. extra: 1374 / 1308,
  4682. bottom: 23 / 1397
  4683. }
  4684. },
  4685. mp724: {
  4686. height: math.unit(0.96, "meters"),
  4687. weight: math.unit(38, "kg"),
  4688. name: "H&K MP724",
  4689. image: {
  4690. source: "./media/characters/asche/h&k-mp724.svg"
  4691. }
  4692. },
  4693. side: {
  4694. height: math.unit(5, "meters"),
  4695. weight: math.unit(1000, "kg"),
  4696. name: "Side",
  4697. image: {
  4698. source: "./media/characters/asche/side.svg",
  4699. extra: 1717 / 1609,
  4700. bottom: 0.005
  4701. }
  4702. },
  4703. back: {
  4704. height: math.unit(5, "meters"),
  4705. weight: math.unit(1000, "kg"),
  4706. name: "Back",
  4707. image: {
  4708. source: "./media/characters/asche/back.svg",
  4709. extra: 1570 / 1501
  4710. }
  4711. },
  4712. },
  4713. [
  4714. {
  4715. name: "DEFCON 5",
  4716. height: math.unit(5, "meters")
  4717. },
  4718. {
  4719. name: "DEFCON 4",
  4720. height: math.unit(500, "meters"),
  4721. default: true
  4722. },
  4723. {
  4724. name: "DEFCON 3",
  4725. height: math.unit(5, "km")
  4726. },
  4727. {
  4728. name: "DEFCON 2",
  4729. height: math.unit(500, "km")
  4730. },
  4731. {
  4732. name: "DEFCON 1",
  4733. height: math.unit(500000, "km")
  4734. },
  4735. {
  4736. name: "DEFCON 0",
  4737. height: math.unit(3, "gigaparsecs")
  4738. },
  4739. ]
  4740. ))
  4741. characterMakers.push(() => makeCharacter(
  4742. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4743. {
  4744. front: {
  4745. height: math.unit(2, "meters"),
  4746. weight: math.unit(76, "kg"),
  4747. name: "Front",
  4748. image: {
  4749. source: "./media/characters/gale/front.svg"
  4750. }
  4751. },
  4752. frontAlt1: {
  4753. height: math.unit(2, "meters"),
  4754. weight: math.unit(76, "kg"),
  4755. name: "Front (Alt 1)",
  4756. image: {
  4757. source: "./media/characters/gale/front-alt-1.svg"
  4758. }
  4759. },
  4760. frontAlt2: {
  4761. height: math.unit(2, "meters"),
  4762. weight: math.unit(76, "kg"),
  4763. name: "Front (Alt 2)",
  4764. image: {
  4765. source: "./media/characters/gale/front-alt-2.svg"
  4766. }
  4767. },
  4768. },
  4769. [
  4770. {
  4771. name: "Normal",
  4772. height: math.unit(7, "feet")
  4773. },
  4774. {
  4775. name: "Macro",
  4776. height: math.unit(150, "feet"),
  4777. default: true
  4778. },
  4779. {
  4780. name: "Macro+",
  4781. height: math.unit(300, "feet")
  4782. },
  4783. ]
  4784. ))
  4785. characterMakers.push(() => makeCharacter(
  4786. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4787. {
  4788. front: {
  4789. height: math.unit(5 + 10/12, "feet"),
  4790. weight: math.unit(67, "kg"),
  4791. name: "Front",
  4792. image: {
  4793. source: "./media/characters/draylen/front.svg",
  4794. extra: 832/777,
  4795. bottom: 85/917
  4796. }
  4797. }
  4798. },
  4799. [
  4800. {
  4801. name: "Normal",
  4802. height: math.unit(5 + 10/12, "feet")
  4803. },
  4804. {
  4805. name: "Macro",
  4806. height: math.unit(150, "feet"),
  4807. default: true
  4808. }
  4809. ]
  4810. ))
  4811. characterMakers.push(() => makeCharacter(
  4812. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4813. {
  4814. front: {
  4815. height: math.unit(7 + 9 / 12, "feet"),
  4816. weight: math.unit(379, "lbs"),
  4817. name: "Front",
  4818. image: {
  4819. source: "./media/characters/chez/front.svg"
  4820. }
  4821. },
  4822. side: {
  4823. height: math.unit(7 + 9 / 12, "feet"),
  4824. weight: math.unit(379, "lbs"),
  4825. name: "Side",
  4826. image: {
  4827. source: "./media/characters/chez/side.svg"
  4828. }
  4829. }
  4830. },
  4831. [
  4832. {
  4833. name: "Normal",
  4834. height: math.unit(7 + 9 / 12, "feet"),
  4835. default: true
  4836. },
  4837. {
  4838. name: "God King",
  4839. height: math.unit(9750000, "meters")
  4840. }
  4841. ]
  4842. ))
  4843. characterMakers.push(() => makeCharacter(
  4844. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4845. {
  4846. front: {
  4847. height: math.unit(6, "feet"),
  4848. weight: math.unit(275, "lbs"),
  4849. name: "Front",
  4850. image: {
  4851. source: "./media/characters/kaylum/front.svg",
  4852. bottom: 0.01,
  4853. extra: 1166 / 1031
  4854. }
  4855. },
  4856. frontWingless: {
  4857. height: math.unit(6, "feet"),
  4858. weight: math.unit(275, "lbs"),
  4859. name: "Front (Wingless)",
  4860. image: {
  4861. source: "./media/characters/kaylum/front-wingless.svg",
  4862. bottom: 0.01,
  4863. extra: 1117 / 1031
  4864. }
  4865. }
  4866. },
  4867. [
  4868. {
  4869. name: "Normal",
  4870. height: math.unit(3.05, "meters")
  4871. },
  4872. {
  4873. name: "Master",
  4874. height: math.unit(5.5, "meters")
  4875. },
  4876. {
  4877. name: "Rampage",
  4878. height: math.unit(19, "meters")
  4879. },
  4880. {
  4881. name: "Macro Lite",
  4882. height: math.unit(37, "meters")
  4883. },
  4884. {
  4885. name: "Hyper Predator",
  4886. height: math.unit(61, "meters")
  4887. },
  4888. {
  4889. name: "Macro",
  4890. height: math.unit(138, "meters"),
  4891. default: true
  4892. }
  4893. ]
  4894. ))
  4895. characterMakers.push(() => makeCharacter(
  4896. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4897. {
  4898. front: {
  4899. height: math.unit(5 + 5 / 12, "feet"),
  4900. weight: math.unit(120, "lbs"),
  4901. name: "Front",
  4902. image: {
  4903. source: "./media/characters/geta/front.svg",
  4904. extra: 1003/933,
  4905. bottom: 21/1024
  4906. }
  4907. },
  4908. paw: {
  4909. height: math.unit(0.35, "feet"),
  4910. name: "Paw",
  4911. image: {
  4912. source: "./media/characters/geta/paw.svg"
  4913. }
  4914. },
  4915. },
  4916. [
  4917. {
  4918. name: "Micro",
  4919. height: math.unit(3, "inches"),
  4920. default: true
  4921. },
  4922. {
  4923. name: "Normal",
  4924. height: math.unit(5 + 5 / 12, "feet")
  4925. }
  4926. ]
  4927. ))
  4928. characterMakers.push(() => makeCharacter(
  4929. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4930. {
  4931. front: {
  4932. height: math.unit(6, "feet"),
  4933. weight: math.unit(300, "lbs"),
  4934. name: "Front",
  4935. image: {
  4936. source: "./media/characters/tyrnn/front.svg"
  4937. }
  4938. }
  4939. },
  4940. [
  4941. {
  4942. name: "Main Height",
  4943. height: math.unit(355, "feet"),
  4944. default: true
  4945. },
  4946. {
  4947. name: "Fave. Height",
  4948. height: math.unit(2400, "feet")
  4949. }
  4950. ]
  4951. ))
  4952. characterMakers.push(() => makeCharacter(
  4953. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4954. {
  4955. front: {
  4956. height: math.unit(6, "feet"),
  4957. weight: math.unit(300, "lbs"),
  4958. name: "Front",
  4959. image: {
  4960. source: "./media/characters/appledectomy/front.svg"
  4961. }
  4962. }
  4963. },
  4964. [
  4965. {
  4966. name: "Macro",
  4967. height: math.unit(2500, "feet")
  4968. },
  4969. {
  4970. name: "Megamacro",
  4971. height: math.unit(50, "miles"),
  4972. default: true
  4973. },
  4974. {
  4975. name: "Gigamacro",
  4976. height: math.unit(5000, "miles")
  4977. },
  4978. {
  4979. name: "Teramacro",
  4980. height: math.unit(250000, "miles")
  4981. },
  4982. ]
  4983. ))
  4984. characterMakers.push(() => makeCharacter(
  4985. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4986. {
  4987. front: {
  4988. height: math.unit(6, "feet"),
  4989. weight: math.unit(200, "lbs"),
  4990. name: "Front",
  4991. image: {
  4992. source: "./media/characters/vulpes/front.svg",
  4993. extra: 573 / 543,
  4994. bottom: 0.033
  4995. }
  4996. },
  4997. side: {
  4998. height: math.unit(6, "feet"),
  4999. weight: math.unit(200, "lbs"),
  5000. name: "Side",
  5001. image: {
  5002. source: "./media/characters/vulpes/side.svg",
  5003. extra: 577 / 549,
  5004. bottom: 11 / 588
  5005. }
  5006. },
  5007. back: {
  5008. height: math.unit(6, "feet"),
  5009. weight: math.unit(200, "lbs"),
  5010. name: "Back",
  5011. image: {
  5012. source: "./media/characters/vulpes/back.svg",
  5013. extra: 573 / 549,
  5014. bottom: 20 / 593
  5015. }
  5016. },
  5017. feet: {
  5018. height: math.unit(1.276, "feet"),
  5019. name: "Feet",
  5020. image: {
  5021. source: "./media/characters/vulpes/feet.svg"
  5022. }
  5023. },
  5024. maw: {
  5025. height: math.unit(1.18, "feet"),
  5026. name: "Maw",
  5027. image: {
  5028. source: "./media/characters/vulpes/maw.svg"
  5029. }
  5030. },
  5031. },
  5032. [
  5033. {
  5034. name: "Micro",
  5035. height: math.unit(2, "inches")
  5036. },
  5037. {
  5038. name: "Normal",
  5039. height: math.unit(6.3, "feet")
  5040. },
  5041. {
  5042. name: "Macro",
  5043. height: math.unit(850, "feet")
  5044. },
  5045. {
  5046. name: "Megamacro",
  5047. height: math.unit(7500, "feet"),
  5048. default: true
  5049. },
  5050. {
  5051. name: "Gigamacro",
  5052. height: math.unit(570000, "miles")
  5053. }
  5054. ]
  5055. ))
  5056. characterMakers.push(() => makeCharacter(
  5057. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5058. {
  5059. front: {
  5060. height: math.unit(6, "feet"),
  5061. weight: math.unit(210, "lbs"),
  5062. name: "Front",
  5063. image: {
  5064. source: "./media/characters/rain-fallen/front.svg"
  5065. }
  5066. },
  5067. side: {
  5068. height: math.unit(6, "feet"),
  5069. weight: math.unit(210, "lbs"),
  5070. name: "Side",
  5071. image: {
  5072. source: "./media/characters/rain-fallen/side.svg"
  5073. }
  5074. },
  5075. back: {
  5076. height: math.unit(6, "feet"),
  5077. weight: math.unit(210, "lbs"),
  5078. name: "Back",
  5079. image: {
  5080. source: "./media/characters/rain-fallen/back.svg"
  5081. }
  5082. },
  5083. feral: {
  5084. height: math.unit(9, "feet"),
  5085. weight: math.unit(700, "lbs"),
  5086. name: "Feral",
  5087. image: {
  5088. source: "./media/characters/rain-fallen/feral.svg"
  5089. }
  5090. },
  5091. },
  5092. [
  5093. {
  5094. name: "Meddling with Mortals",
  5095. height: math.unit(8 + 8/12, "feet")
  5096. },
  5097. {
  5098. name: "Normal",
  5099. height: math.unit(5, "meter")
  5100. },
  5101. {
  5102. name: "Macro",
  5103. height: math.unit(150, "meter"),
  5104. default: true
  5105. },
  5106. {
  5107. name: "Megamacro",
  5108. height: math.unit(278e6, "meter")
  5109. },
  5110. {
  5111. name: "Gigamacro",
  5112. height: math.unit(2e9, "meter")
  5113. },
  5114. {
  5115. name: "Teramacro",
  5116. height: math.unit(8e12, "meter")
  5117. },
  5118. {
  5119. name: "Devourer",
  5120. height: math.unit(14, "zettameters")
  5121. },
  5122. {
  5123. name: "Scarlet King",
  5124. height: math.unit(18, "yottameters")
  5125. },
  5126. {
  5127. name: "Void",
  5128. height: math.unit(1e88, "yottameters")
  5129. }
  5130. ]
  5131. ))
  5132. characterMakers.push(() => makeCharacter(
  5133. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5134. {
  5135. standing: {
  5136. height: math.unit(6, "feet"),
  5137. weight: math.unit(180, "lbs"),
  5138. name: "Standing",
  5139. image: {
  5140. source: "./media/characters/zaakira/standing.svg",
  5141. extra: 1599/1504,
  5142. bottom: 39/1638
  5143. }
  5144. },
  5145. laying: {
  5146. height: math.unit(3, "feet"),
  5147. weight: math.unit(180, "lbs"),
  5148. name: "Laying",
  5149. image: {
  5150. source: "./media/characters/zaakira/laying.svg"
  5151. }
  5152. },
  5153. },
  5154. [
  5155. {
  5156. name: "Normal",
  5157. height: math.unit(12, "feet")
  5158. },
  5159. {
  5160. name: "Macro",
  5161. height: math.unit(279, "feet"),
  5162. default: true
  5163. }
  5164. ]
  5165. ))
  5166. characterMakers.push(() => makeCharacter(
  5167. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5168. {
  5169. femSfw: {
  5170. height: math.unit(8, "feet"),
  5171. weight: math.unit(350, "lb"),
  5172. name: "Fem",
  5173. image: {
  5174. source: "./media/characters/sigvald/fem-sfw.svg",
  5175. extra: 182 / 164,
  5176. bottom: 8.7 / 190.5
  5177. }
  5178. },
  5179. femNsfw: {
  5180. height: math.unit(8, "feet"),
  5181. weight: math.unit(350, "lb"),
  5182. name: "Fem (NSFW)",
  5183. image: {
  5184. source: "./media/characters/sigvald/fem-nsfw.svg",
  5185. extra: 182 / 164,
  5186. bottom: 8.7 / 190.5
  5187. }
  5188. },
  5189. maleNsfw: {
  5190. height: math.unit(8, "feet"),
  5191. weight: math.unit(350, "lb"),
  5192. name: "Male (NSFW)",
  5193. image: {
  5194. source: "./media/characters/sigvald/male-nsfw.svg",
  5195. extra: 182 / 164,
  5196. bottom: 8.7 / 190.5
  5197. }
  5198. },
  5199. hermNsfw: {
  5200. height: math.unit(8, "feet"),
  5201. weight: math.unit(350, "lb"),
  5202. name: "Herm (NSFW)",
  5203. image: {
  5204. source: "./media/characters/sigvald/herm-nsfw.svg",
  5205. extra: 182 / 164,
  5206. bottom: 8.7 / 190.5
  5207. }
  5208. },
  5209. dick: {
  5210. height: math.unit(2.36, "feet"),
  5211. name: "Dick",
  5212. image: {
  5213. source: "./media/characters/sigvald/dick.svg"
  5214. }
  5215. },
  5216. eye: {
  5217. height: math.unit(0.31, "feet"),
  5218. name: "Eye",
  5219. image: {
  5220. source: "./media/characters/sigvald/eye.svg"
  5221. }
  5222. },
  5223. mouth: {
  5224. height: math.unit(0.92, "feet"),
  5225. name: "Mouth",
  5226. image: {
  5227. source: "./media/characters/sigvald/mouth.svg"
  5228. }
  5229. },
  5230. paws: {
  5231. height: math.unit(2.2, "feet"),
  5232. name: "Paws",
  5233. image: {
  5234. source: "./media/characters/sigvald/paws.svg"
  5235. }
  5236. }
  5237. },
  5238. [
  5239. {
  5240. name: "Normal",
  5241. height: math.unit(8, "feet")
  5242. },
  5243. {
  5244. name: "Large",
  5245. height: math.unit(12, "feet")
  5246. },
  5247. {
  5248. name: "Larger",
  5249. height: math.unit(20, "feet")
  5250. },
  5251. {
  5252. name: "Macro",
  5253. height: math.unit(150, "feet")
  5254. },
  5255. {
  5256. name: "Macro+",
  5257. height: math.unit(200, "feet"),
  5258. default: true
  5259. },
  5260. ]
  5261. ))
  5262. characterMakers.push(() => makeCharacter(
  5263. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5264. {
  5265. side: {
  5266. height: math.unit(12, "feet"),
  5267. weight: math.unit(2000, "kg"),
  5268. name: "Side",
  5269. image: {
  5270. source: "./media/characters/scott/side.svg",
  5271. extra: 754 / 724,
  5272. bottom: 0.069
  5273. }
  5274. },
  5275. upright: {
  5276. height: math.unit(12, "feet"),
  5277. weight: math.unit(2000, "kg"),
  5278. name: "Upright",
  5279. image: {
  5280. source: "./media/characters/scott/upright.svg",
  5281. extra: 3881 / 3722,
  5282. bottom: 0.05
  5283. }
  5284. },
  5285. },
  5286. [
  5287. {
  5288. name: "Normal",
  5289. height: math.unit(12, "feet"),
  5290. default: true
  5291. },
  5292. ]
  5293. ))
  5294. characterMakers.push(() => makeCharacter(
  5295. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5296. {
  5297. side: {
  5298. height: math.unit(8, "meters"),
  5299. weight: math.unit(84755, "lbs"),
  5300. name: "Side",
  5301. image: {
  5302. source: "./media/characters/tobias/side.svg",
  5303. extra: 1474 / 1096,
  5304. bottom: 38.9 / 1513.1235
  5305. }
  5306. },
  5307. },
  5308. [
  5309. {
  5310. name: "Normal",
  5311. height: math.unit(8, "meters"),
  5312. default: true
  5313. },
  5314. ]
  5315. ))
  5316. characterMakers.push(() => makeCharacter(
  5317. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5318. {
  5319. front: {
  5320. height: math.unit(5.5, "feet"),
  5321. weight: math.unit(400, "lbs"),
  5322. name: "Front",
  5323. image: {
  5324. source: "./media/characters/kieran/front.svg",
  5325. extra: 2694 / 2364,
  5326. bottom: 217 / 2908
  5327. }
  5328. },
  5329. side: {
  5330. height: math.unit(5.5, "feet"),
  5331. weight: math.unit(400, "lbs"),
  5332. name: "Side",
  5333. image: {
  5334. source: "./media/characters/kieran/side.svg",
  5335. extra: 875 / 777,
  5336. bottom: 84.6 / 959
  5337. }
  5338. },
  5339. },
  5340. [
  5341. {
  5342. name: "Normal",
  5343. height: math.unit(5.5, "feet"),
  5344. default: true
  5345. },
  5346. ]
  5347. ))
  5348. characterMakers.push(() => makeCharacter(
  5349. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5350. {
  5351. side: {
  5352. height: math.unit(2, "meters"),
  5353. weight: math.unit(70, "kg"),
  5354. name: "Side",
  5355. image: {
  5356. source: "./media/characters/sanya/side.svg",
  5357. bottom: 0.02,
  5358. extra: 1.02
  5359. }
  5360. },
  5361. },
  5362. [
  5363. {
  5364. name: "Small",
  5365. height: math.unit(2, "meters")
  5366. },
  5367. {
  5368. name: "Normal",
  5369. height: math.unit(3, "meters")
  5370. },
  5371. {
  5372. name: "Macro",
  5373. height: math.unit(16, "meters"),
  5374. default: true
  5375. },
  5376. ]
  5377. ))
  5378. characterMakers.push(() => makeCharacter(
  5379. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5380. {
  5381. front: {
  5382. height: math.unit(2, "meters"),
  5383. weight: math.unit(120, "kg"),
  5384. name: "Front",
  5385. image: {
  5386. source: "./media/characters/miranda/front.svg",
  5387. extra: 195 / 185,
  5388. bottom: 10.9 / 206.5
  5389. }
  5390. },
  5391. back: {
  5392. height: math.unit(2, "meters"),
  5393. weight: math.unit(120, "kg"),
  5394. name: "Back",
  5395. image: {
  5396. source: "./media/characters/miranda/back.svg",
  5397. extra: 201 / 193,
  5398. bottom: 2.3 / 203.7
  5399. }
  5400. },
  5401. },
  5402. [
  5403. {
  5404. name: "Normal",
  5405. height: math.unit(10, "feet"),
  5406. default: true
  5407. }
  5408. ]
  5409. ))
  5410. characterMakers.push(() => makeCharacter(
  5411. { name: "James", species: ["deer"], tags: ["anthro"] },
  5412. {
  5413. side: {
  5414. height: math.unit(2, "meters"),
  5415. weight: math.unit(100, "kg"),
  5416. name: "Front",
  5417. image: {
  5418. source: "./media/characters/james/front.svg",
  5419. extra: 10 / 8.5
  5420. }
  5421. },
  5422. },
  5423. [
  5424. {
  5425. name: "Normal",
  5426. height: math.unit(8.5, "feet"),
  5427. default: true
  5428. }
  5429. ]
  5430. ))
  5431. characterMakers.push(() => makeCharacter(
  5432. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5433. {
  5434. side: {
  5435. height: math.unit(9.5, "feet"),
  5436. weight: math.unit(2500, "lbs"),
  5437. name: "Side",
  5438. image: {
  5439. source: "./media/characters/heather/side.svg"
  5440. }
  5441. },
  5442. },
  5443. [
  5444. {
  5445. name: "Normal",
  5446. height: math.unit(9.5, "feet"),
  5447. default: true
  5448. }
  5449. ]
  5450. ))
  5451. characterMakers.push(() => makeCharacter(
  5452. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5453. {
  5454. side: {
  5455. height: math.unit(6.5, "feet"),
  5456. weight: math.unit(400, "lbs"),
  5457. name: "Side",
  5458. image: {
  5459. source: "./media/characters/lukas/side.svg",
  5460. extra: 7.25 / 6.5
  5461. }
  5462. },
  5463. },
  5464. [
  5465. {
  5466. name: "Normal",
  5467. height: math.unit(6.5, "feet"),
  5468. default: true
  5469. }
  5470. ]
  5471. ))
  5472. characterMakers.push(() => makeCharacter(
  5473. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5474. {
  5475. side: {
  5476. height: math.unit(5, "feet"),
  5477. weight: math.unit(3000, "lbs"),
  5478. name: "Side",
  5479. image: {
  5480. source: "./media/characters/louise/side.svg"
  5481. }
  5482. },
  5483. },
  5484. [
  5485. {
  5486. name: "Normal",
  5487. height: math.unit(5, "feet"),
  5488. default: true
  5489. }
  5490. ]
  5491. ))
  5492. characterMakers.push(() => makeCharacter(
  5493. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5494. {
  5495. side: {
  5496. height: math.unit(6, "feet"),
  5497. weight: math.unit(150, "lbs"),
  5498. name: "Side",
  5499. image: {
  5500. source: "./media/characters/ramona/side.svg",
  5501. extra: 871/854,
  5502. bottom: 41/912
  5503. }
  5504. },
  5505. },
  5506. [
  5507. {
  5508. name: "Normal",
  5509. height: math.unit(5.3, "meters"),
  5510. default: true
  5511. },
  5512. {
  5513. name: "Macro",
  5514. height: math.unit(20, "stories")
  5515. },
  5516. {
  5517. name: "Macro+",
  5518. height: math.unit(50, "stories")
  5519. },
  5520. ]
  5521. ))
  5522. characterMakers.push(() => makeCharacter(
  5523. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5524. {
  5525. standing: {
  5526. height: math.unit(5.75, "feet"),
  5527. weight: math.unit(160, "lbs"),
  5528. name: "Standing",
  5529. image: {
  5530. source: "./media/characters/deerpuff/standing.svg",
  5531. extra: 682 / 624
  5532. }
  5533. },
  5534. sitting: {
  5535. height: math.unit(5.75 / 1.79, "feet"),
  5536. weight: math.unit(160, "lbs"),
  5537. name: "Sitting",
  5538. image: {
  5539. source: "./media/characters/deerpuff/sitting.svg",
  5540. bottom: 44 / 400,
  5541. extra: 1
  5542. }
  5543. },
  5544. taurLaying: {
  5545. height: math.unit(6, "feet"),
  5546. weight: math.unit(400, "lbs"),
  5547. name: "Taur (Laying)",
  5548. image: {
  5549. source: "./media/characters/deerpuff/taur-laying.svg"
  5550. }
  5551. },
  5552. },
  5553. [
  5554. {
  5555. name: "Puffball",
  5556. height: math.unit(6, "inches")
  5557. },
  5558. {
  5559. name: "Normalpuff",
  5560. height: math.unit(5.75, "feet")
  5561. },
  5562. {
  5563. name: "Macropuff",
  5564. height: math.unit(1500, "feet"),
  5565. default: true
  5566. },
  5567. {
  5568. name: "Megapuff",
  5569. height: math.unit(500, "miles")
  5570. },
  5571. {
  5572. name: "Gigapuff",
  5573. height: math.unit(250000, "miles")
  5574. },
  5575. {
  5576. name: "Omegapuff",
  5577. height: math.unit(1000, "lightyears")
  5578. },
  5579. ]
  5580. ))
  5581. characterMakers.push(() => makeCharacter(
  5582. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5583. {
  5584. stomping: {
  5585. height: math.unit(6, "feet"),
  5586. weight: math.unit(170, "lbs"),
  5587. name: "Stomping",
  5588. image: {
  5589. source: "./media/characters/vivian/stomping.svg"
  5590. }
  5591. },
  5592. sitting: {
  5593. height: math.unit(6 / 1.75, "feet"),
  5594. weight: math.unit(170, "lbs"),
  5595. name: "Sitting",
  5596. image: {
  5597. source: "./media/characters/vivian/sitting.svg",
  5598. bottom: 1 / 6.4,
  5599. extra: 1,
  5600. }
  5601. },
  5602. },
  5603. [
  5604. {
  5605. name: "Normal",
  5606. height: math.unit(7, "feet"),
  5607. default: true
  5608. },
  5609. {
  5610. name: "Macro",
  5611. height: math.unit(10, "stories")
  5612. },
  5613. {
  5614. name: "Macro+",
  5615. height: math.unit(30, "stories")
  5616. },
  5617. {
  5618. name: "Megamacro",
  5619. height: math.unit(10, "miles")
  5620. },
  5621. {
  5622. name: "Megamacro+",
  5623. height: math.unit(2750000, "meters")
  5624. },
  5625. ]
  5626. ))
  5627. characterMakers.push(() => makeCharacter(
  5628. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5629. {
  5630. front: {
  5631. height: math.unit(6, "feet"),
  5632. weight: math.unit(160, "lbs"),
  5633. name: "Front",
  5634. image: {
  5635. source: "./media/characters/prince/front.svg",
  5636. extra: 3400 / 3000
  5637. }
  5638. },
  5639. jumping: {
  5640. height: math.unit(6, "feet"),
  5641. weight: math.unit(160, "lbs"),
  5642. name: "Jumping",
  5643. image: {
  5644. source: "./media/characters/prince/jump.svg",
  5645. extra: 2555 / 2134
  5646. }
  5647. },
  5648. },
  5649. [
  5650. {
  5651. name: "Normal",
  5652. height: math.unit(7.75, "feet"),
  5653. default: true
  5654. },
  5655. {
  5656. name: "Not cute",
  5657. height: math.unit(17, "feet")
  5658. },
  5659. {
  5660. name: "I said NOT",
  5661. height: math.unit(91, "feet")
  5662. },
  5663. {
  5664. name: "Please stop",
  5665. height: math.unit(560, "feet")
  5666. },
  5667. {
  5668. name: "What have you done",
  5669. height: math.unit(2200, "feet")
  5670. },
  5671. {
  5672. name: "Deer God",
  5673. height: math.unit(3.6, "miles")
  5674. },
  5675. ]
  5676. ))
  5677. characterMakers.push(() => makeCharacter(
  5678. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5679. {
  5680. standing: {
  5681. height: math.unit(6, "feet"),
  5682. weight: math.unit(300, "lbs"),
  5683. name: "Standing",
  5684. image: {
  5685. source: "./media/characters/psymon/standing.svg",
  5686. extra: 1888 / 1810,
  5687. bottom: 0.05
  5688. }
  5689. },
  5690. slithering: {
  5691. height: math.unit(6, "feet"),
  5692. weight: math.unit(300, "lbs"),
  5693. name: "Slithering",
  5694. image: {
  5695. source: "./media/characters/psymon/slithering.svg",
  5696. extra: 1330 / 1224
  5697. }
  5698. },
  5699. slitheringAlt: {
  5700. height: math.unit(6, "feet"),
  5701. weight: math.unit(300, "lbs"),
  5702. name: "Slithering (Alt)",
  5703. image: {
  5704. source: "./media/characters/psymon/slithering-alt.svg",
  5705. extra: 1330 / 1224
  5706. }
  5707. },
  5708. },
  5709. [
  5710. {
  5711. name: "Normal",
  5712. height: math.unit(11.25, "feet"),
  5713. default: true
  5714. },
  5715. {
  5716. name: "Large",
  5717. height: math.unit(27, "feet")
  5718. },
  5719. {
  5720. name: "Giant",
  5721. height: math.unit(87, "feet")
  5722. },
  5723. {
  5724. name: "Macro",
  5725. height: math.unit(365, "feet")
  5726. },
  5727. {
  5728. name: "Megamacro",
  5729. height: math.unit(3, "miles")
  5730. },
  5731. {
  5732. name: "World Serpent",
  5733. height: math.unit(8000, "miles")
  5734. },
  5735. ]
  5736. ))
  5737. characterMakers.push(() => makeCharacter(
  5738. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5739. {
  5740. front: {
  5741. height: math.unit(6, "feet"),
  5742. weight: math.unit(180, "lbs"),
  5743. name: "Front",
  5744. image: {
  5745. source: "./media/characters/daimos/front.svg",
  5746. extra: 4160 / 3897,
  5747. bottom: 0.021
  5748. }
  5749. }
  5750. },
  5751. [
  5752. {
  5753. name: "Normal",
  5754. height: math.unit(8, "feet"),
  5755. default: true
  5756. },
  5757. {
  5758. name: "Big Dog",
  5759. height: math.unit(22, "feet")
  5760. },
  5761. {
  5762. name: "Macro",
  5763. height: math.unit(127, "feet")
  5764. },
  5765. {
  5766. name: "Megamacro",
  5767. height: math.unit(3600, "feet")
  5768. },
  5769. ]
  5770. ))
  5771. characterMakers.push(() => makeCharacter(
  5772. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5773. {
  5774. side: {
  5775. height: math.unit(6, "feet"),
  5776. weight: math.unit(180, "lbs"),
  5777. name: "Side",
  5778. image: {
  5779. source: "./media/characters/blake/side.svg",
  5780. extra: 1212 / 1120,
  5781. bottom: 0.05
  5782. }
  5783. },
  5784. crouched: {
  5785. height: math.unit(6 * 0.57, "feet"),
  5786. weight: math.unit(180, "lbs"),
  5787. name: "Crouched",
  5788. image: {
  5789. source: "./media/characters/blake/crouched.svg",
  5790. extra: 840 / 587,
  5791. bottom: 0.04
  5792. }
  5793. },
  5794. bent: {
  5795. height: math.unit(6 * 0.75, "feet"),
  5796. weight: math.unit(180, "lbs"),
  5797. name: "Bent",
  5798. image: {
  5799. source: "./media/characters/blake/bent.svg",
  5800. extra: 592 / 544,
  5801. bottom: 0.035
  5802. }
  5803. },
  5804. },
  5805. [
  5806. {
  5807. name: "Normal",
  5808. height: math.unit(8 + 1 / 6, "feet"),
  5809. default: true
  5810. },
  5811. {
  5812. name: "Big Backside",
  5813. height: math.unit(37, "feet")
  5814. },
  5815. {
  5816. name: "Subway Shredder",
  5817. height: math.unit(72, "feet")
  5818. },
  5819. {
  5820. name: "City Carver",
  5821. height: math.unit(1675, "feet")
  5822. },
  5823. {
  5824. name: "Tectonic Tweaker",
  5825. height: math.unit(2300, "miles")
  5826. },
  5827. ]
  5828. ))
  5829. characterMakers.push(() => makeCharacter(
  5830. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5831. {
  5832. front: {
  5833. height: math.unit(6, "feet"),
  5834. weight: math.unit(180, "lbs"),
  5835. name: "Front",
  5836. image: {
  5837. source: "./media/characters/guisetto/front.svg",
  5838. extra: 856 / 817,
  5839. bottom: 0.06
  5840. }
  5841. },
  5842. airborne: {
  5843. height: math.unit(6, "feet"),
  5844. weight: math.unit(180, "lbs"),
  5845. name: "Airborne",
  5846. image: {
  5847. source: "./media/characters/guisetto/airborne.svg",
  5848. extra: 584 / 525
  5849. }
  5850. },
  5851. },
  5852. [
  5853. {
  5854. name: "Normal",
  5855. height: math.unit(10 + 11 / 12, "feet"),
  5856. default: true
  5857. },
  5858. {
  5859. name: "Large",
  5860. height: math.unit(35, "feet")
  5861. },
  5862. {
  5863. name: "Macro",
  5864. height: math.unit(475, "feet")
  5865. },
  5866. ]
  5867. ))
  5868. characterMakers.push(() => makeCharacter(
  5869. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5870. {
  5871. front: {
  5872. height: math.unit(6, "feet"),
  5873. weight: math.unit(180, "lbs"),
  5874. name: "Front",
  5875. image: {
  5876. source: "./media/characters/luxor/front.svg",
  5877. extra: 2940 / 2152
  5878. }
  5879. },
  5880. back: {
  5881. height: math.unit(6, "feet"),
  5882. weight: math.unit(180, "lbs"),
  5883. name: "Back",
  5884. image: {
  5885. source: "./media/characters/luxor/back.svg",
  5886. extra: 1083 / 960
  5887. }
  5888. },
  5889. },
  5890. [
  5891. {
  5892. name: "Normal",
  5893. height: math.unit(5 + 5 / 6, "feet"),
  5894. default: true
  5895. },
  5896. {
  5897. name: "Lamp",
  5898. height: math.unit(50, "feet")
  5899. },
  5900. {
  5901. name: "Lämp",
  5902. height: math.unit(300, "feet")
  5903. },
  5904. {
  5905. name: "The sun is a lamp",
  5906. height: math.unit(250000, "miles")
  5907. },
  5908. ]
  5909. ))
  5910. characterMakers.push(() => makeCharacter(
  5911. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5912. {
  5913. front: {
  5914. height: math.unit(6, "feet"),
  5915. weight: math.unit(50, "lbs"),
  5916. name: "Front",
  5917. image: {
  5918. source: "./media/characters/huoyan/front.svg"
  5919. }
  5920. },
  5921. side: {
  5922. height: math.unit(6, "feet"),
  5923. weight: math.unit(180, "lbs"),
  5924. name: "Side",
  5925. image: {
  5926. source: "./media/characters/huoyan/side.svg"
  5927. }
  5928. },
  5929. },
  5930. [
  5931. {
  5932. name: "Chef",
  5933. height: math.unit(9, "feet")
  5934. },
  5935. {
  5936. name: "Normal",
  5937. height: math.unit(65, "feet"),
  5938. default: true
  5939. },
  5940. {
  5941. name: "Macro",
  5942. height: math.unit(780, "feet")
  5943. },
  5944. {
  5945. name: "Flaming Mountain",
  5946. height: math.unit(4.8, "miles")
  5947. },
  5948. {
  5949. name: "Celestial",
  5950. height: math.unit(765000, "miles")
  5951. },
  5952. ]
  5953. ))
  5954. characterMakers.push(() => makeCharacter(
  5955. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5956. {
  5957. front: {
  5958. height: math.unit(5 + 3 / 4, "feet"),
  5959. weight: math.unit(120, "lbs"),
  5960. name: "Front",
  5961. image: {
  5962. source: "./media/characters/tails/front.svg"
  5963. }
  5964. }
  5965. },
  5966. [
  5967. {
  5968. name: "Normal",
  5969. height: math.unit(5 + 3 / 4, "feet"),
  5970. default: true
  5971. }
  5972. ]
  5973. ))
  5974. characterMakers.push(() => makeCharacter(
  5975. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5976. {
  5977. front: {
  5978. height: math.unit(4, "feet"),
  5979. weight: math.unit(50, "lbs"),
  5980. name: "Front",
  5981. image: {
  5982. source: "./media/characters/rainy/front.svg"
  5983. }
  5984. }
  5985. },
  5986. [
  5987. {
  5988. name: "Macro",
  5989. height: math.unit(800, "feet"),
  5990. default: true
  5991. }
  5992. ]
  5993. ))
  5994. characterMakers.push(() => makeCharacter(
  5995. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5996. {
  5997. front: {
  5998. height: math.unit(6, "feet"),
  5999. weight: math.unit(150, "lbs"),
  6000. name: "Front",
  6001. image: {
  6002. source: "./media/characters/rainier/front.svg"
  6003. }
  6004. }
  6005. },
  6006. [
  6007. {
  6008. name: "Micro",
  6009. height: math.unit(2, "mm"),
  6010. default: true
  6011. }
  6012. ]
  6013. ))
  6014. characterMakers.push(() => makeCharacter(
  6015. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6016. {
  6017. front: {
  6018. height: math.unit(8 + 4/12, "feet"),
  6019. weight: math.unit(450, "kilograms"),
  6020. volume: math.unit(5, "cups"),
  6021. name: "Front",
  6022. image: {
  6023. source: "./media/characters/andy-renard/front.svg",
  6024. extra: 1839/1726,
  6025. bottom: 134/1973
  6026. }
  6027. },
  6028. back: {
  6029. height: math.unit(8 + 4/12, "feet"),
  6030. weight: math.unit(450, "kilograms"),
  6031. volume: math.unit(5, "cups"),
  6032. name: "Back",
  6033. image: {
  6034. source: "./media/characters/andy-renard/back.svg",
  6035. extra: 1838/1710,
  6036. bottom: 105/1943
  6037. }
  6038. },
  6039. },
  6040. [
  6041. {
  6042. name: "Tall",
  6043. height: math.unit(8 + 4/12, "feet")
  6044. },
  6045. {
  6046. name: "Mini Macro",
  6047. height: math.unit(15, "feet"),
  6048. default: true
  6049. },
  6050. {
  6051. name: "Macro",
  6052. height: math.unit(100, "feet")
  6053. },
  6054. {
  6055. name: "Mega Macro",
  6056. height: math.unit(1000, "feet")
  6057. },
  6058. {
  6059. name: "Giga Macro",
  6060. height: math.unit(10, "miles")
  6061. },
  6062. {
  6063. name: "God Macro",
  6064. height: math.unit(1, "multiverse")
  6065. },
  6066. ]
  6067. ))
  6068. characterMakers.push(() => makeCharacter(
  6069. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6070. {
  6071. front: {
  6072. height: math.unit(6, "feet"),
  6073. weight: math.unit(210, "lbs"),
  6074. name: "Front",
  6075. image: {
  6076. source: "./media/characters/cimmaron/front-sfw.svg",
  6077. extra: 701 / 676,
  6078. bottom: 0.046
  6079. }
  6080. },
  6081. back: {
  6082. height: math.unit(6, "feet"),
  6083. weight: math.unit(210, "lbs"),
  6084. name: "Back",
  6085. image: {
  6086. source: "./media/characters/cimmaron/back-sfw.svg",
  6087. extra: 701 / 676,
  6088. bottom: 0.046
  6089. }
  6090. },
  6091. frontNsfw: {
  6092. height: math.unit(6, "feet"),
  6093. weight: math.unit(210, "lbs"),
  6094. name: "Front (NSFW)",
  6095. image: {
  6096. source: "./media/characters/cimmaron/front-nsfw.svg",
  6097. extra: 701 / 676,
  6098. bottom: 0.046
  6099. }
  6100. },
  6101. backNsfw: {
  6102. height: math.unit(6, "feet"),
  6103. weight: math.unit(210, "lbs"),
  6104. name: "Back (NSFW)",
  6105. image: {
  6106. source: "./media/characters/cimmaron/back-nsfw.svg",
  6107. extra: 701 / 676,
  6108. bottom: 0.046
  6109. }
  6110. },
  6111. dick: {
  6112. height: math.unit(1.714, "feet"),
  6113. name: "Dick",
  6114. image: {
  6115. source: "./media/characters/cimmaron/dick.svg"
  6116. }
  6117. },
  6118. },
  6119. [
  6120. {
  6121. name: "Normal",
  6122. height: math.unit(6, "feet"),
  6123. default: true
  6124. },
  6125. {
  6126. name: "Macro Mayor",
  6127. height: math.unit(350, "meters")
  6128. },
  6129. ]
  6130. ))
  6131. characterMakers.push(() => makeCharacter(
  6132. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6133. {
  6134. front: {
  6135. height: math.unit(6, "feet"),
  6136. weight: math.unit(200, "lbs"),
  6137. name: "Front",
  6138. image: {
  6139. source: "./media/characters/akari/front.svg",
  6140. extra: 962 / 901,
  6141. bottom: 0.04
  6142. }
  6143. }
  6144. },
  6145. [
  6146. {
  6147. name: "Micro",
  6148. height: math.unit(5, "inches"),
  6149. default: true
  6150. },
  6151. {
  6152. name: "Normal",
  6153. height: math.unit(7, "feet")
  6154. },
  6155. ]
  6156. ))
  6157. characterMakers.push(() => makeCharacter(
  6158. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6159. {
  6160. front: {
  6161. height: math.unit(6, "feet"),
  6162. weight: math.unit(140, "lbs"),
  6163. name: "Front",
  6164. image: {
  6165. source: "./media/characters/cynosura/front.svg",
  6166. extra: 896 / 847
  6167. }
  6168. },
  6169. back: {
  6170. height: math.unit(6, "feet"),
  6171. weight: math.unit(140, "lbs"),
  6172. name: "Back",
  6173. image: {
  6174. source: "./media/characters/cynosura/back.svg",
  6175. extra: 1365 / 1250
  6176. }
  6177. },
  6178. },
  6179. [
  6180. {
  6181. name: "Micro",
  6182. height: math.unit(4, "inches")
  6183. },
  6184. {
  6185. name: "Normal",
  6186. height: math.unit(5.75, "feet"),
  6187. default: true
  6188. },
  6189. {
  6190. name: "Tall",
  6191. height: math.unit(10, "feet")
  6192. },
  6193. {
  6194. name: "Big",
  6195. height: math.unit(20, "feet")
  6196. },
  6197. {
  6198. name: "Macro",
  6199. height: math.unit(50, "feet")
  6200. },
  6201. ]
  6202. ))
  6203. characterMakers.push(() => makeCharacter(
  6204. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6205. {
  6206. front: {
  6207. height: math.unit(13 + 2/12, "feet"),
  6208. weight: math.unit(800, "kg"),
  6209. name: "Front",
  6210. image: {
  6211. source: "./media/characters/gin/front.svg",
  6212. extra: 1312/1191,
  6213. bottom: 45/1357
  6214. }
  6215. },
  6216. mouth: {
  6217. height: math.unit(2.39 * 1.8, "feet"),
  6218. name: "Mouth",
  6219. image: {
  6220. source: "./media/characters/gin/mouth.svg"
  6221. }
  6222. },
  6223. hand: {
  6224. height: math.unit(1.57 * 2.19, "feet"),
  6225. name: "Hand",
  6226. image: {
  6227. source: "./media/characters/gin/hand.svg"
  6228. }
  6229. },
  6230. foot: {
  6231. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6232. name: "Foot",
  6233. image: {
  6234. source: "./media/characters/gin/foot.svg"
  6235. }
  6236. },
  6237. sole: {
  6238. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6239. name: "Sole",
  6240. image: {
  6241. source: "./media/characters/gin/sole.svg"
  6242. }
  6243. },
  6244. },
  6245. [
  6246. {
  6247. name: "Very Small",
  6248. height: math.unit(13 + 2 / 12, "feet")
  6249. },
  6250. {
  6251. name: "Micro",
  6252. height: math.unit(600, "miles")
  6253. },
  6254. {
  6255. name: "Regular",
  6256. height: math.unit(20, "earths"),
  6257. default: true
  6258. },
  6259. {
  6260. name: "Macro",
  6261. height: math.unit(2.2, "solarradii")
  6262. },
  6263. {
  6264. name: "Teramacro",
  6265. height: math.unit(1.2, "galaxies")
  6266. },
  6267. {
  6268. name: "Omegamacro",
  6269. height: math.unit(200, "universes")
  6270. },
  6271. ]
  6272. ))
  6273. characterMakers.push(() => makeCharacter(
  6274. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6275. {
  6276. front: {
  6277. height: math.unit(6 + 1 / 6, "feet"),
  6278. weight: math.unit(178, "lbs"),
  6279. name: "Front",
  6280. image: {
  6281. source: "./media/characters/guy/front.svg"
  6282. }
  6283. }
  6284. },
  6285. [
  6286. {
  6287. name: "Normal",
  6288. height: math.unit(6 + 1 / 6, "feet"),
  6289. default: true
  6290. },
  6291. {
  6292. name: "Large",
  6293. height: math.unit(25 + 7 / 12, "feet")
  6294. },
  6295. {
  6296. name: "Macro",
  6297. height: math.unit(60 + 9 / 12, "feet")
  6298. },
  6299. {
  6300. name: "Macro+",
  6301. height: math.unit(246, "feet")
  6302. },
  6303. {
  6304. name: "Macro++",
  6305. height: math.unit(878, "feet")
  6306. }
  6307. ]
  6308. ))
  6309. characterMakers.push(() => makeCharacter(
  6310. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6311. {
  6312. front: {
  6313. height: math.unit(9, "feet"),
  6314. weight: math.unit(800, "lbs"),
  6315. name: "Front",
  6316. image: {
  6317. source: "./media/characters/tiberius/front.svg",
  6318. extra: 2295 / 2071
  6319. }
  6320. },
  6321. back: {
  6322. height: math.unit(9, "feet"),
  6323. weight: math.unit(800, "lbs"),
  6324. name: "Back",
  6325. image: {
  6326. source: "./media/characters/tiberius/back.svg",
  6327. extra: 2373 / 2160
  6328. }
  6329. },
  6330. },
  6331. [
  6332. {
  6333. name: "Normal",
  6334. height: math.unit(9, "feet"),
  6335. default: true
  6336. }
  6337. ]
  6338. ))
  6339. characterMakers.push(() => makeCharacter(
  6340. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6341. {
  6342. front: {
  6343. height: math.unit(6, "feet"),
  6344. weight: math.unit(600, "lbs"),
  6345. name: "Front",
  6346. image: {
  6347. source: "./media/characters/surgo/front.svg",
  6348. extra: 3591 / 2227
  6349. }
  6350. },
  6351. back: {
  6352. height: math.unit(6, "feet"),
  6353. weight: math.unit(600, "lbs"),
  6354. name: "Back",
  6355. image: {
  6356. source: "./media/characters/surgo/back.svg",
  6357. extra: 3557 / 2228
  6358. }
  6359. },
  6360. laying: {
  6361. height: math.unit(6 * 0.85, "feet"),
  6362. weight: math.unit(600, "lbs"),
  6363. name: "Laying",
  6364. image: {
  6365. source: "./media/characters/surgo/laying.svg"
  6366. }
  6367. },
  6368. },
  6369. [
  6370. {
  6371. name: "Normal",
  6372. height: math.unit(6, "feet"),
  6373. default: true
  6374. }
  6375. ]
  6376. ))
  6377. characterMakers.push(() => makeCharacter(
  6378. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6379. {
  6380. side: {
  6381. height: math.unit(6, "feet"),
  6382. weight: math.unit(150, "lbs"),
  6383. name: "Side",
  6384. image: {
  6385. source: "./media/characters/cibus/side.svg",
  6386. extra: 800 / 400
  6387. }
  6388. },
  6389. },
  6390. [
  6391. {
  6392. name: "Normal",
  6393. height: math.unit(6, "feet"),
  6394. default: true
  6395. }
  6396. ]
  6397. ))
  6398. characterMakers.push(() => makeCharacter(
  6399. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6400. {
  6401. front: {
  6402. height: math.unit(6, "feet"),
  6403. weight: math.unit(240, "lbs"),
  6404. name: "Front",
  6405. image: {
  6406. source: "./media/characters/nibbles/front.svg"
  6407. }
  6408. },
  6409. side: {
  6410. height: math.unit(6, "feet"),
  6411. weight: math.unit(240, "lbs"),
  6412. name: "Side",
  6413. image: {
  6414. source: "./media/characters/nibbles/side.svg"
  6415. }
  6416. },
  6417. },
  6418. [
  6419. {
  6420. name: "Normal",
  6421. height: math.unit(9, "feet"),
  6422. default: true
  6423. }
  6424. ]
  6425. ))
  6426. characterMakers.push(() => makeCharacter(
  6427. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6428. {
  6429. side: {
  6430. height: math.unit(5 + 1 / 6, "feet"),
  6431. weight: math.unit(130, "lbs"),
  6432. name: "Side",
  6433. image: {
  6434. source: "./media/characters/rikky/side.svg",
  6435. extra: 851 / 801
  6436. }
  6437. },
  6438. },
  6439. [
  6440. {
  6441. name: "Normal",
  6442. height: math.unit(5 + 1 / 6, "feet")
  6443. },
  6444. {
  6445. name: "Macro",
  6446. height: math.unit(152, "feet"),
  6447. default: true
  6448. },
  6449. {
  6450. name: "Megamacro",
  6451. height: math.unit(7, "miles")
  6452. }
  6453. ]
  6454. ))
  6455. characterMakers.push(() => makeCharacter(
  6456. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6457. {
  6458. side: {
  6459. height: math.unit(370, "cm"),
  6460. weight: math.unit(350, "lbs"),
  6461. name: "Side",
  6462. image: {
  6463. source: "./media/characters/malfressa/side.svg"
  6464. }
  6465. },
  6466. walking: {
  6467. height: math.unit(370, "cm"),
  6468. weight: math.unit(350, "lbs"),
  6469. name: "Walking",
  6470. image: {
  6471. source: "./media/characters/malfressa/walking.svg"
  6472. }
  6473. },
  6474. feral: {
  6475. height: math.unit(2500, "cm"),
  6476. weight: math.unit(100000, "lbs"),
  6477. name: "Feral",
  6478. image: {
  6479. source: "./media/characters/malfressa/feral.svg",
  6480. extra: 2108 / 837,
  6481. bottom: 0.02
  6482. }
  6483. },
  6484. },
  6485. [
  6486. {
  6487. name: "Normal",
  6488. height: math.unit(370, "cm")
  6489. },
  6490. {
  6491. name: "Macro",
  6492. height: math.unit(300, "meters"),
  6493. default: true
  6494. }
  6495. ]
  6496. ))
  6497. characterMakers.push(() => makeCharacter(
  6498. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6499. {
  6500. front: {
  6501. height: math.unit(6, "feet"),
  6502. weight: math.unit(60, "kg"),
  6503. name: "Front",
  6504. image: {
  6505. source: "./media/characters/jaro/front.svg",
  6506. extra: 845/817,
  6507. bottom: 45/890
  6508. }
  6509. },
  6510. back: {
  6511. height: math.unit(6, "feet"),
  6512. weight: math.unit(60, "kg"),
  6513. name: "Back",
  6514. image: {
  6515. source: "./media/characters/jaro/back.svg",
  6516. extra: 847/817,
  6517. bottom: 34/881
  6518. }
  6519. },
  6520. },
  6521. [
  6522. {
  6523. name: "Micro",
  6524. height: math.unit(7, "inches")
  6525. },
  6526. {
  6527. name: "Normal",
  6528. height: math.unit(5.5, "feet"),
  6529. default: true
  6530. },
  6531. {
  6532. name: "Minimacro",
  6533. height: math.unit(20, "feet")
  6534. },
  6535. {
  6536. name: "Macro",
  6537. height: math.unit(200, "meters")
  6538. }
  6539. ]
  6540. ))
  6541. characterMakers.push(() => makeCharacter(
  6542. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6543. {
  6544. front: {
  6545. height: math.unit(6, "feet"),
  6546. weight: math.unit(195, "lb"),
  6547. name: "Front",
  6548. image: {
  6549. source: "./media/characters/rogue/front.svg"
  6550. }
  6551. },
  6552. },
  6553. [
  6554. {
  6555. name: "Macro",
  6556. height: math.unit(90, "feet"),
  6557. default: true
  6558. },
  6559. ]
  6560. ))
  6561. characterMakers.push(() => makeCharacter(
  6562. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6563. {
  6564. standing: {
  6565. height: math.unit(5 + 8 / 12, "feet"),
  6566. weight: math.unit(140, "lb"),
  6567. name: "Standing",
  6568. image: {
  6569. source: "./media/characters/piper/standing.svg",
  6570. extra: 1440/1284,
  6571. bottom: 66/1506
  6572. }
  6573. },
  6574. running: {
  6575. height: math.unit(5 + 8 / 12, "feet"),
  6576. weight: math.unit(140, "lb"),
  6577. name: "Running",
  6578. image: {
  6579. source: "./media/characters/piper/running.svg",
  6580. extra: 3948/3655,
  6581. bottom: 0/3948
  6582. }
  6583. },
  6584. sole: {
  6585. height: math.unit(0.81, "feet"),
  6586. weight: math.unit(2, "kg"),
  6587. name: "Sole",
  6588. image: {
  6589. source: "./media/characters/piper/sole.svg"
  6590. }
  6591. },
  6592. nipple: {
  6593. height: math.unit(0.25, "feet"),
  6594. weight: math.unit(1.5, "lb"),
  6595. name: "Nipple",
  6596. image: {
  6597. source: "./media/characters/piper/nipple.svg"
  6598. }
  6599. },
  6600. head: {
  6601. height: math.unit(1.1, "feet"),
  6602. name: "Head",
  6603. image: {
  6604. source: "./media/characters/piper/head.svg"
  6605. }
  6606. },
  6607. },
  6608. [
  6609. {
  6610. name: "Micro",
  6611. height: math.unit(2, "inches")
  6612. },
  6613. {
  6614. name: "Normal",
  6615. height: math.unit(5 + 8 / 12, "feet")
  6616. },
  6617. {
  6618. name: "Macro",
  6619. height: math.unit(250, "feet"),
  6620. default: true
  6621. },
  6622. {
  6623. name: "Megamacro",
  6624. height: math.unit(7, "miles")
  6625. },
  6626. ]
  6627. ))
  6628. characterMakers.push(() => makeCharacter(
  6629. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6630. {
  6631. front: {
  6632. height: math.unit(6, "feet"),
  6633. weight: math.unit(220, "lb"),
  6634. name: "Front",
  6635. image: {
  6636. source: "./media/characters/gemini/front.svg"
  6637. }
  6638. },
  6639. back: {
  6640. height: math.unit(6, "feet"),
  6641. weight: math.unit(220, "lb"),
  6642. name: "Back",
  6643. image: {
  6644. source: "./media/characters/gemini/back.svg"
  6645. }
  6646. },
  6647. kneeling: {
  6648. height: math.unit(6 / 1.5, "feet"),
  6649. weight: math.unit(220, "lb"),
  6650. name: "Kneeling",
  6651. image: {
  6652. source: "./media/characters/gemini/kneeling.svg",
  6653. bottom: 0.02
  6654. }
  6655. },
  6656. },
  6657. [
  6658. {
  6659. name: "Macro",
  6660. height: math.unit(300, "meters"),
  6661. default: true
  6662. },
  6663. {
  6664. name: "Megamacro",
  6665. height: math.unit(6900, "meters")
  6666. },
  6667. ]
  6668. ))
  6669. characterMakers.push(() => makeCharacter(
  6670. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6671. {
  6672. anthro: {
  6673. height: math.unit(2.35, "meters"),
  6674. weight: math.unit(73, "kg"),
  6675. name: "Anthro",
  6676. image: {
  6677. source: "./media/characters/alicia/anthro.svg",
  6678. extra: 2571 / 2385,
  6679. bottom: 75 / 2648
  6680. }
  6681. },
  6682. paw: {
  6683. height: math.unit(1.32, "feet"),
  6684. name: "Paw",
  6685. image: {
  6686. source: "./media/characters/alicia/paw.svg"
  6687. }
  6688. },
  6689. feral: {
  6690. height: math.unit(1.69, "meters"),
  6691. weight: math.unit(73, "kg"),
  6692. name: "Feral",
  6693. image: {
  6694. source: "./media/characters/alicia/feral.svg",
  6695. extra: 2123 / 1715,
  6696. bottom: 222 / 2349
  6697. }
  6698. },
  6699. },
  6700. [
  6701. {
  6702. name: "Normal",
  6703. height: math.unit(2.35, "meters")
  6704. },
  6705. {
  6706. name: "Macro",
  6707. height: math.unit(60, "meters"),
  6708. default: true
  6709. },
  6710. {
  6711. name: "Megamacro",
  6712. height: math.unit(10000, "kilometers")
  6713. },
  6714. ]
  6715. ))
  6716. characterMakers.push(() => makeCharacter(
  6717. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6718. {
  6719. front: {
  6720. height: math.unit(7, "feet"),
  6721. weight: math.unit(250, "lbs"),
  6722. name: "Front",
  6723. image: {
  6724. source: "./media/characters/archy/front.svg"
  6725. }
  6726. }
  6727. },
  6728. [
  6729. {
  6730. name: "Micro",
  6731. height: math.unit(1, "inch")
  6732. },
  6733. {
  6734. name: "Shorty",
  6735. height: math.unit(5, "feet")
  6736. },
  6737. {
  6738. name: "Normal",
  6739. height: math.unit(7, "feet")
  6740. },
  6741. {
  6742. name: "Macro",
  6743. height: math.unit(600, "meters"),
  6744. default: true
  6745. },
  6746. {
  6747. name: "Megamacro",
  6748. height: math.unit(1, "mile")
  6749. },
  6750. ]
  6751. ))
  6752. characterMakers.push(() => makeCharacter(
  6753. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6754. {
  6755. front: {
  6756. height: math.unit(1.65, "meters"),
  6757. weight: math.unit(74, "kg"),
  6758. name: "Front",
  6759. image: {
  6760. source: "./media/characters/berri/front.svg",
  6761. extra: 857 / 837,
  6762. bottom: 18 / 877
  6763. }
  6764. },
  6765. bum: {
  6766. height: math.unit(1.46, "feet"),
  6767. name: "Bum",
  6768. image: {
  6769. source: "./media/characters/berri/bum.svg"
  6770. }
  6771. },
  6772. mouth: {
  6773. height: math.unit(0.44, "feet"),
  6774. name: "Mouth",
  6775. image: {
  6776. source: "./media/characters/berri/mouth.svg"
  6777. }
  6778. },
  6779. paw: {
  6780. height: math.unit(0.826, "feet"),
  6781. name: "Paw",
  6782. image: {
  6783. source: "./media/characters/berri/paw.svg"
  6784. }
  6785. },
  6786. },
  6787. [
  6788. {
  6789. name: "Normal",
  6790. height: math.unit(1.65, "meters")
  6791. },
  6792. {
  6793. name: "Macro",
  6794. height: math.unit(60, "m"),
  6795. default: true
  6796. },
  6797. {
  6798. name: "Megamacro",
  6799. height: math.unit(9.213, "km")
  6800. },
  6801. {
  6802. name: "Planet Eater",
  6803. height: math.unit(489, "megameters")
  6804. },
  6805. {
  6806. name: "Teramacro",
  6807. height: math.unit(2471635000000, "meters")
  6808. },
  6809. {
  6810. name: "Examacro",
  6811. height: math.unit(8.0624e+26, "meters")
  6812. }
  6813. ]
  6814. ))
  6815. characterMakers.push(() => makeCharacter(
  6816. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6817. {
  6818. front: {
  6819. height: math.unit(1.72, "meters"),
  6820. weight: math.unit(68, "kg"),
  6821. name: "Front",
  6822. image: {
  6823. source: "./media/characters/lexi/front.svg"
  6824. }
  6825. }
  6826. },
  6827. [
  6828. {
  6829. name: "Very Smol",
  6830. height: math.unit(10, "mm")
  6831. },
  6832. {
  6833. name: "Micro",
  6834. height: math.unit(6.8, "cm"),
  6835. default: true
  6836. },
  6837. {
  6838. name: "Normal",
  6839. height: math.unit(1.72, "m")
  6840. }
  6841. ]
  6842. ))
  6843. characterMakers.push(() => makeCharacter(
  6844. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6845. {
  6846. front: {
  6847. height: math.unit(1.69, "meters"),
  6848. weight: math.unit(68, "kg"),
  6849. name: "Front",
  6850. image: {
  6851. source: "./media/characters/martin/front.svg",
  6852. extra: 596 / 581
  6853. }
  6854. }
  6855. },
  6856. [
  6857. {
  6858. name: "Micro",
  6859. height: math.unit(6.85, "cm"),
  6860. default: true
  6861. },
  6862. {
  6863. name: "Normal",
  6864. height: math.unit(1.69, "m")
  6865. }
  6866. ]
  6867. ))
  6868. characterMakers.push(() => makeCharacter(
  6869. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6870. {
  6871. front: {
  6872. height: math.unit(1.69, "meters"),
  6873. weight: math.unit(68, "kg"),
  6874. name: "Front",
  6875. image: {
  6876. source: "./media/characters/juno/front.svg"
  6877. }
  6878. }
  6879. },
  6880. [
  6881. {
  6882. name: "Micro",
  6883. height: math.unit(7, "cm")
  6884. },
  6885. {
  6886. name: "Normal",
  6887. height: math.unit(1.89, "m")
  6888. },
  6889. {
  6890. name: "Macro",
  6891. height: math.unit(353, "meters"),
  6892. default: true
  6893. }
  6894. ]
  6895. ))
  6896. characterMakers.push(() => makeCharacter(
  6897. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6898. {
  6899. front: {
  6900. height: math.unit(1.93, "meters"),
  6901. weight: math.unit(83, "kg"),
  6902. name: "Front",
  6903. image: {
  6904. source: "./media/characters/samantha/front.svg"
  6905. }
  6906. },
  6907. frontClothed: {
  6908. height: math.unit(1.93, "meters"),
  6909. weight: math.unit(83, "kg"),
  6910. name: "Front (Clothed)",
  6911. image: {
  6912. source: "./media/characters/samantha/front-clothed.svg"
  6913. }
  6914. },
  6915. back: {
  6916. height: math.unit(1.93, "meters"),
  6917. weight: math.unit(83, "kg"),
  6918. name: "Back",
  6919. image: {
  6920. source: "./media/characters/samantha/back.svg"
  6921. }
  6922. },
  6923. },
  6924. [
  6925. {
  6926. name: "Normal",
  6927. height: math.unit(1.93, "m")
  6928. },
  6929. {
  6930. name: "Macro",
  6931. height: math.unit(74, "meters"),
  6932. default: true
  6933. },
  6934. {
  6935. name: "Macro+",
  6936. height: math.unit(223, "meters"),
  6937. },
  6938. {
  6939. name: "Megamacro",
  6940. height: math.unit(8381, "meters"),
  6941. },
  6942. {
  6943. name: "Megamacro+",
  6944. height: math.unit(12000, "kilometers")
  6945. },
  6946. ]
  6947. ))
  6948. characterMakers.push(() => makeCharacter(
  6949. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6950. {
  6951. front: {
  6952. height: math.unit(1.92, "meters"),
  6953. weight: math.unit(80, "kg"),
  6954. name: "Front",
  6955. image: {
  6956. source: "./media/characters/dr-clay/front.svg"
  6957. }
  6958. },
  6959. frontClothed: {
  6960. height: math.unit(1.92, "meters"),
  6961. weight: math.unit(80, "kg"),
  6962. name: "Front (Clothed)",
  6963. image: {
  6964. source: "./media/characters/dr-clay/front-clothed.svg"
  6965. }
  6966. }
  6967. },
  6968. [
  6969. {
  6970. name: "Normal",
  6971. height: math.unit(1.92, "m")
  6972. },
  6973. {
  6974. name: "Macro",
  6975. height: math.unit(214, "meters"),
  6976. default: true
  6977. },
  6978. {
  6979. name: "Macro+",
  6980. height: math.unit(12.237, "meters"),
  6981. },
  6982. {
  6983. name: "Megamacro",
  6984. height: math.unit(557, "megameters"),
  6985. },
  6986. {
  6987. name: "Unimaginable",
  6988. height: math.unit(120e9, "lightyears")
  6989. },
  6990. ]
  6991. ))
  6992. characterMakers.push(() => makeCharacter(
  6993. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6994. {
  6995. front: {
  6996. height: math.unit(2, "meters"),
  6997. weight: math.unit(80, "kg"),
  6998. name: "Front",
  6999. image: {
  7000. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7001. }
  7002. }
  7003. },
  7004. [
  7005. {
  7006. name: "Teramacro",
  7007. height: math.unit(500000, "lightyears"),
  7008. default: true
  7009. },
  7010. ]
  7011. ))
  7012. characterMakers.push(() => makeCharacter(
  7013. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7014. {
  7015. crux: {
  7016. height: math.unit(2, "meters"),
  7017. weight: math.unit(150, "kg"),
  7018. name: "Crux",
  7019. image: {
  7020. source: "./media/characters/vemus/crux.svg",
  7021. extra: 1074/936,
  7022. bottom: 23/1097
  7023. }
  7024. },
  7025. skunkTanuki: {
  7026. height: math.unit(2, "meters"),
  7027. weight: math.unit(150, "kg"),
  7028. name: "Skunk-Tanuki",
  7029. image: {
  7030. source: "./media/characters/vemus/skunk-tanuki.svg",
  7031. extra: 926/893,
  7032. bottom: 20/946
  7033. }
  7034. },
  7035. },
  7036. [
  7037. {
  7038. name: "Normal",
  7039. height: math.unit(3.75, "meters"),
  7040. default: true
  7041. },
  7042. {
  7043. name: "Big",
  7044. height: math.unit(8, "meters")
  7045. },
  7046. {
  7047. name: "Macro",
  7048. height: math.unit(100, "meters")
  7049. },
  7050. {
  7051. name: "Macro+",
  7052. height: math.unit(1500, "meters")
  7053. },
  7054. {
  7055. name: "Stellar",
  7056. height: math.unit(14e8, "meters")
  7057. },
  7058. ]
  7059. ))
  7060. characterMakers.push(() => makeCharacter(
  7061. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7062. {
  7063. front: {
  7064. height: math.unit(2, "meters"),
  7065. weight: math.unit(70, "kg"),
  7066. name: "Front",
  7067. image: {
  7068. source: "./media/characters/beherit/front.svg",
  7069. extra: 1234/1109,
  7070. bottom: 55/1289
  7071. }
  7072. }
  7073. },
  7074. [
  7075. {
  7076. name: "Normal",
  7077. height: math.unit(6, "feet")
  7078. },
  7079. {
  7080. name: "Lorg",
  7081. height: math.unit(25, "feet"),
  7082. default: true
  7083. },
  7084. {
  7085. name: "Lorger",
  7086. height: math.unit(75, "feet")
  7087. },
  7088. {
  7089. name: "Macro",
  7090. height: math.unit(200, "meters")
  7091. },
  7092. ]
  7093. ))
  7094. characterMakers.push(() => makeCharacter(
  7095. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7096. {
  7097. front: {
  7098. height: math.unit(2, "meters"),
  7099. weight: math.unit(150, "kg"),
  7100. name: "Front",
  7101. image: {
  7102. source: "./media/characters/everett/front.svg",
  7103. extra: 1017/866,
  7104. bottom: 86/1103
  7105. }
  7106. },
  7107. paw: {
  7108. height: math.unit(2 / 3.6, "meters"),
  7109. name: "Paw",
  7110. image: {
  7111. source: "./media/characters/everett/paw.svg"
  7112. }
  7113. },
  7114. },
  7115. [
  7116. {
  7117. name: "Normal",
  7118. height: math.unit(15, "feet"),
  7119. default: true
  7120. },
  7121. {
  7122. name: "Lorg",
  7123. height: math.unit(70, "feet"),
  7124. default: true
  7125. },
  7126. {
  7127. name: "Lorger",
  7128. height: math.unit(250, "feet")
  7129. },
  7130. {
  7131. name: "Macro",
  7132. height: math.unit(500, "meters")
  7133. },
  7134. ]
  7135. ))
  7136. characterMakers.push(() => makeCharacter(
  7137. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7138. {
  7139. front: {
  7140. height: math.unit(2, "meters"),
  7141. weight: math.unit(86, "kg"),
  7142. name: "Front",
  7143. image: {
  7144. source: "./media/characters/rose/front.svg",
  7145. extra: 1785/1636,
  7146. bottom: 30/1815
  7147. },
  7148. form: "liom",
  7149. default: true
  7150. },
  7151. frontSporty: {
  7152. height: math.unit(2, "meters"),
  7153. weight: math.unit(86, "kg"),
  7154. name: "Front (Sporty)",
  7155. image: {
  7156. source: "./media/characters/rose/front-sporty.svg",
  7157. extra: 350/335,
  7158. bottom: 10/360
  7159. },
  7160. form: "liom"
  7161. },
  7162. frontAlt: {
  7163. height: math.unit(1.6, "meters"),
  7164. weight: math.unit(86, "kg"),
  7165. name: "Front (Alt)",
  7166. image: {
  7167. source: "./media/characters/rose/front-alt.svg",
  7168. extra: 299/283,
  7169. bottom: 3/302
  7170. },
  7171. form: "liom"
  7172. },
  7173. plush: {
  7174. height: math.unit(2, "meters"),
  7175. weight: math.unit(86/3, "kg"),
  7176. name: "Plush",
  7177. image: {
  7178. source: "./media/characters/rose/plush.svg",
  7179. extra: 361/337,
  7180. bottom: 11/372
  7181. },
  7182. form: "plush",
  7183. default: true
  7184. },
  7185. faeStanding: {
  7186. height: math.unit(10, "cm"),
  7187. weight: math.unit(10, "grams"),
  7188. name: "Standing",
  7189. image: {
  7190. source: "./media/characters/rose/fae-standing.svg",
  7191. extra: 1189/1060,
  7192. bottom: 27/1216
  7193. },
  7194. form: "fae",
  7195. default: true
  7196. },
  7197. faeSitting: {
  7198. height: math.unit(5, "cm"),
  7199. weight: math.unit(10, "grams"),
  7200. name: "Sitting",
  7201. image: {
  7202. source: "./media/characters/rose/fae-sitting.svg",
  7203. extra: 737/577,
  7204. bottom: 356/1093
  7205. },
  7206. form: "fae"
  7207. },
  7208. faePaw: {
  7209. height: math.unit(1.35, "cm"),
  7210. name: "Paw",
  7211. image: {
  7212. source: "./media/characters/rose/fae-paw.svg"
  7213. },
  7214. form: "fae"
  7215. },
  7216. },
  7217. [
  7218. {
  7219. name: "True Micro",
  7220. height: math.unit(9, "cm"),
  7221. form: "liom"
  7222. },
  7223. {
  7224. name: "Micro",
  7225. height: math.unit(16, "cm"),
  7226. form: "liom"
  7227. },
  7228. {
  7229. name: "Normal",
  7230. height: math.unit(1.85, "meters"),
  7231. default: true,
  7232. form: "liom"
  7233. },
  7234. {
  7235. name: "Mini-Macro",
  7236. height: math.unit(5, "meters"),
  7237. form: "liom"
  7238. },
  7239. {
  7240. name: "Macro",
  7241. height: math.unit(15, "meters"),
  7242. form: "liom"
  7243. },
  7244. {
  7245. name: "True Macro",
  7246. height: math.unit(40, "meters"),
  7247. form: "liom"
  7248. },
  7249. {
  7250. name: "City Scale",
  7251. height: math.unit(1, "km"),
  7252. form: "liom"
  7253. },
  7254. {
  7255. name: "Plushie",
  7256. height: math.unit(9, "cm"),
  7257. form: "plush",
  7258. default: true
  7259. },
  7260. {
  7261. name: "Fae",
  7262. height: math.unit(10, "cm"),
  7263. form: "fae",
  7264. default: true
  7265. },
  7266. ],
  7267. {
  7268. "liom": {
  7269. name: "Liom"
  7270. },
  7271. "plush": {
  7272. name: "Plush"
  7273. },
  7274. "fae": {
  7275. name: "Fae Fox",
  7276. default: true
  7277. }
  7278. }
  7279. ))
  7280. characterMakers.push(() => makeCharacter(
  7281. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7282. {
  7283. front: {
  7284. height: math.unit(2, "meters"),
  7285. weight: math.unit(350, "lbs"),
  7286. name: "Front",
  7287. image: {
  7288. source: "./media/characters/regal/front.svg"
  7289. }
  7290. },
  7291. back: {
  7292. height: math.unit(2, "meters"),
  7293. weight: math.unit(350, "lbs"),
  7294. name: "Back",
  7295. image: {
  7296. source: "./media/characters/regal/back.svg"
  7297. }
  7298. },
  7299. },
  7300. [
  7301. {
  7302. name: "Macro",
  7303. height: math.unit(350, "feet"),
  7304. default: true
  7305. }
  7306. ]
  7307. ))
  7308. characterMakers.push(() => makeCharacter(
  7309. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7310. {
  7311. front: {
  7312. height: math.unit(4 + 11 / 12, "feet"),
  7313. weight: math.unit(100, "lbs"),
  7314. name: "Front",
  7315. image: {
  7316. source: "./media/characters/opal/front.svg"
  7317. }
  7318. },
  7319. frontAlt: {
  7320. height: math.unit(4 + 11 / 12, "feet"),
  7321. weight: math.unit(100, "lbs"),
  7322. name: "Front (Alt)",
  7323. image: {
  7324. source: "./media/characters/opal/front-alt.svg"
  7325. }
  7326. },
  7327. },
  7328. [
  7329. {
  7330. name: "Small",
  7331. height: math.unit(4 + 11 / 12, "feet")
  7332. },
  7333. {
  7334. name: "Normal",
  7335. height: math.unit(20, "feet"),
  7336. default: true
  7337. },
  7338. {
  7339. name: "Macro",
  7340. height: math.unit(120, "feet")
  7341. },
  7342. {
  7343. name: "Megamacro",
  7344. height: math.unit(80, "miles")
  7345. },
  7346. {
  7347. name: "True Size",
  7348. height: math.unit(100000, "lightyears")
  7349. },
  7350. ]
  7351. ))
  7352. characterMakers.push(() => makeCharacter(
  7353. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7354. {
  7355. front: {
  7356. height: math.unit(6, "feet"),
  7357. weight: math.unit(200, "lbs"),
  7358. name: "Front",
  7359. image: {
  7360. source: "./media/characters/vector-wuff/front.svg"
  7361. }
  7362. }
  7363. },
  7364. [
  7365. {
  7366. name: "Normal",
  7367. height: math.unit(2.8, "meters")
  7368. },
  7369. {
  7370. name: "Macro",
  7371. height: math.unit(450, "meters"),
  7372. default: true
  7373. },
  7374. {
  7375. name: "Megamacro",
  7376. height: math.unit(15, "kilometers")
  7377. }
  7378. ]
  7379. ))
  7380. characterMakers.push(() => makeCharacter(
  7381. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7382. {
  7383. front: {
  7384. height: math.unit(6, "feet"),
  7385. weight: math.unit(256, "lbs"),
  7386. name: "Front",
  7387. image: {
  7388. source: "./media/characters/dannik/front.svg"
  7389. }
  7390. }
  7391. },
  7392. [
  7393. {
  7394. name: "Macro",
  7395. height: math.unit(69.57, "meters"),
  7396. default: true
  7397. },
  7398. ]
  7399. ))
  7400. characterMakers.push(() => makeCharacter(
  7401. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7402. {
  7403. front: {
  7404. height: math.unit(6, "feet"),
  7405. weight: math.unit(120, "lbs"),
  7406. name: "Front",
  7407. image: {
  7408. source: "./media/characters/azura-saharah/front.svg"
  7409. }
  7410. },
  7411. back: {
  7412. height: math.unit(6, "feet"),
  7413. weight: math.unit(120, "lbs"),
  7414. name: "Back",
  7415. image: {
  7416. source: "./media/characters/azura-saharah/back.svg"
  7417. }
  7418. },
  7419. },
  7420. [
  7421. {
  7422. name: "Macro",
  7423. height: math.unit(100, "feet"),
  7424. default: true
  7425. },
  7426. ]
  7427. ))
  7428. characterMakers.push(() => makeCharacter(
  7429. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7430. {
  7431. side: {
  7432. height: math.unit(5 + 4 / 12, "feet"),
  7433. weight: math.unit(163, "lbs"),
  7434. name: "Side",
  7435. image: {
  7436. source: "./media/characters/kennedy/side.svg"
  7437. }
  7438. }
  7439. },
  7440. [
  7441. {
  7442. name: "Standard Doggo",
  7443. height: math.unit(5 + 4 / 12, "feet")
  7444. },
  7445. {
  7446. name: "Big Doggo",
  7447. height: math.unit(25 + 3 / 12, "feet"),
  7448. default: true
  7449. },
  7450. ]
  7451. ))
  7452. characterMakers.push(() => makeCharacter(
  7453. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7454. {
  7455. front: {
  7456. height: math.unit(5 + 5/12, "feet"),
  7457. weight: math.unit(100, "lbs"),
  7458. name: "Front",
  7459. image: {
  7460. source: "./media/characters/odios-de-lunar/front.svg",
  7461. extra: 1468/1323,
  7462. bottom: 22/1490
  7463. }
  7464. }
  7465. },
  7466. [
  7467. {
  7468. name: "Micro",
  7469. height: math.unit(3, "inches")
  7470. },
  7471. {
  7472. name: "Normal",
  7473. height: math.unit(5.5, "feet"),
  7474. default: true
  7475. },
  7476. {
  7477. name: "Macro",
  7478. height: math.unit(100, "feet")
  7479. },
  7480. ]
  7481. ))
  7482. characterMakers.push(() => makeCharacter(
  7483. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7484. {
  7485. back: {
  7486. height: math.unit(6, "feet"),
  7487. weight: math.unit(220, "lbs"),
  7488. name: "Back",
  7489. image: {
  7490. source: "./media/characters/mandake/back.svg"
  7491. }
  7492. }
  7493. },
  7494. [
  7495. {
  7496. name: "Normal",
  7497. height: math.unit(7, "feet"),
  7498. default: true
  7499. },
  7500. {
  7501. name: "Macro",
  7502. height: math.unit(78, "feet")
  7503. },
  7504. {
  7505. name: "Macro+",
  7506. height: math.unit(300, "meters")
  7507. },
  7508. {
  7509. name: "Macro++",
  7510. height: math.unit(2400, "feet")
  7511. },
  7512. {
  7513. name: "Megamacro",
  7514. height: math.unit(5167, "meters")
  7515. },
  7516. {
  7517. name: "Gigamacro",
  7518. height: math.unit(41769, "miles")
  7519. },
  7520. ]
  7521. ))
  7522. characterMakers.push(() => makeCharacter(
  7523. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7524. {
  7525. front: {
  7526. height: math.unit(6, "feet"),
  7527. weight: math.unit(120, "lbs"),
  7528. name: "Front",
  7529. image: {
  7530. source: "./media/characters/yozey/front.svg"
  7531. }
  7532. },
  7533. frontAlt: {
  7534. height: math.unit(6, "feet"),
  7535. weight: math.unit(120, "lbs"),
  7536. name: "Front (Alt)",
  7537. image: {
  7538. source: "./media/characters/yozey/front-alt.svg"
  7539. }
  7540. },
  7541. side: {
  7542. height: math.unit(6, "feet"),
  7543. weight: math.unit(120, "lbs"),
  7544. name: "Side",
  7545. image: {
  7546. source: "./media/characters/yozey/side.svg"
  7547. }
  7548. },
  7549. },
  7550. [
  7551. {
  7552. name: "Micro",
  7553. height: math.unit(3, "inches"),
  7554. default: true
  7555. },
  7556. {
  7557. name: "Normal",
  7558. height: math.unit(6, "feet")
  7559. }
  7560. ]
  7561. ))
  7562. characterMakers.push(() => makeCharacter(
  7563. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7564. {
  7565. front: {
  7566. height: math.unit(6, "feet"),
  7567. weight: math.unit(103, "lbs"),
  7568. name: "Front",
  7569. image: {
  7570. source: "./media/characters/valeska-voss/front.svg"
  7571. }
  7572. }
  7573. },
  7574. [
  7575. {
  7576. name: "Mini-Sized Sub",
  7577. height: math.unit(3.1, "inches")
  7578. },
  7579. {
  7580. name: "Mid-Sized Sub",
  7581. height: math.unit(6.2, "inches")
  7582. },
  7583. {
  7584. name: "Full-Sized Sub",
  7585. height: math.unit(9.3, "inches")
  7586. },
  7587. {
  7588. name: "Normal",
  7589. height: math.unit(5 + 2 / 12, "foot"),
  7590. default: true
  7591. },
  7592. ]
  7593. ))
  7594. characterMakers.push(() => makeCharacter(
  7595. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7596. {
  7597. front: {
  7598. height: math.unit(6, "feet"),
  7599. weight: math.unit(160, "lbs"),
  7600. name: "Front",
  7601. image: {
  7602. source: "./media/characters/gene-zeta/front.svg",
  7603. extra: 3006 / 2826,
  7604. bottom: 182 / 3188
  7605. }
  7606. }
  7607. },
  7608. [
  7609. {
  7610. name: "Micro",
  7611. height: math.unit(6, "inches")
  7612. },
  7613. {
  7614. name: "Normal",
  7615. height: math.unit(5 + 11 / 12, "foot"),
  7616. default: true
  7617. },
  7618. {
  7619. name: "Macro",
  7620. height: math.unit(140, "feet")
  7621. },
  7622. {
  7623. name: "Supercharged",
  7624. height: math.unit(2500, "feet")
  7625. },
  7626. ]
  7627. ))
  7628. characterMakers.push(() => makeCharacter(
  7629. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7630. {
  7631. front: {
  7632. height: math.unit(6, "feet"),
  7633. weight: math.unit(350, "lbs"),
  7634. name: "Front",
  7635. image: {
  7636. source: "./media/characters/razinox/front.svg",
  7637. extra: 1686 / 1548,
  7638. bottom: 28.2 / 1868
  7639. }
  7640. },
  7641. back: {
  7642. height: math.unit(6, "feet"),
  7643. weight: math.unit(350, "lbs"),
  7644. name: "Back",
  7645. image: {
  7646. source: "./media/characters/razinox/back.svg",
  7647. extra: 1660 / 1590,
  7648. bottom: 15 / 1665
  7649. }
  7650. },
  7651. },
  7652. [
  7653. {
  7654. name: "Normal",
  7655. height: math.unit(10 + 8 / 12, "foot")
  7656. },
  7657. {
  7658. name: "Minimacro",
  7659. height: math.unit(15, "foot")
  7660. },
  7661. {
  7662. name: "Macro",
  7663. height: math.unit(60, "foot"),
  7664. default: true
  7665. },
  7666. {
  7667. name: "Megamacro",
  7668. height: math.unit(5, "miles")
  7669. },
  7670. {
  7671. name: "Gigamacro",
  7672. height: math.unit(6000, "miles")
  7673. },
  7674. ]
  7675. ))
  7676. characterMakers.push(() => makeCharacter(
  7677. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7678. {
  7679. front: {
  7680. height: math.unit(6, "feet"),
  7681. weight: math.unit(150, "lbs"),
  7682. name: "Front",
  7683. image: {
  7684. source: "./media/characters/cobalt/front.svg"
  7685. }
  7686. }
  7687. },
  7688. [
  7689. {
  7690. name: "Normal",
  7691. height: math.unit(8 + 1 / 12, "foot")
  7692. },
  7693. {
  7694. name: "Macro",
  7695. height: math.unit(111, "foot"),
  7696. default: true
  7697. },
  7698. {
  7699. name: "Supracosmic",
  7700. height: math.unit(1e42, "feet")
  7701. },
  7702. ]
  7703. ))
  7704. characterMakers.push(() => makeCharacter(
  7705. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7706. {
  7707. front: {
  7708. height: math.unit(5, "inches"),
  7709. name: "Front",
  7710. image: {
  7711. source: "./media/characters/amanda/front.svg",
  7712. extra: 926/791,
  7713. bottom: 38/964
  7714. }
  7715. },
  7716. back: {
  7717. height: math.unit(5, "inches"),
  7718. name: "Back",
  7719. image: {
  7720. source: "./media/characters/amanda/back.svg",
  7721. extra: 909/805,
  7722. bottom: 43/952
  7723. }
  7724. },
  7725. },
  7726. [
  7727. {
  7728. name: "Micro",
  7729. height: math.unit(5, "inches"),
  7730. default: true
  7731. },
  7732. ]
  7733. ))
  7734. characterMakers.push(() => makeCharacter(
  7735. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7736. {
  7737. front: {
  7738. height: math.unit(2.75, "meters"),
  7739. weight: math.unit(1200, "lb"),
  7740. name: "Front",
  7741. image: {
  7742. source: "./media/characters/teal/front.svg",
  7743. extra: 2463 / 2320,
  7744. bottom: 166 / 2629
  7745. }
  7746. },
  7747. back: {
  7748. height: math.unit(2.75, "meters"),
  7749. weight: math.unit(1200, "lb"),
  7750. name: "Back",
  7751. image: {
  7752. source: "./media/characters/teal/back.svg",
  7753. extra: 2580 / 2489,
  7754. bottom: 151 / 2731
  7755. }
  7756. },
  7757. sitting: {
  7758. height: math.unit(1.9, "meters"),
  7759. weight: math.unit(1200, "lb"),
  7760. name: "Sitting",
  7761. image: {
  7762. source: "./media/characters/teal/sitting.svg",
  7763. extra: 623 / 590,
  7764. bottom: 121 / 744
  7765. }
  7766. },
  7767. standing: {
  7768. height: math.unit(2.75, "meters"),
  7769. weight: math.unit(1200, "lb"),
  7770. name: "Standing",
  7771. image: {
  7772. source: "./media/characters/teal/standing.svg",
  7773. extra: 923 / 893,
  7774. bottom: 60 / 983
  7775. }
  7776. },
  7777. stretching: {
  7778. height: math.unit(3.65, "meters"),
  7779. weight: math.unit(1200, "lb"),
  7780. name: "Stretching",
  7781. image: {
  7782. source: "./media/characters/teal/stretching.svg",
  7783. extra: 1276 / 1244,
  7784. bottom: 0 / 1276
  7785. }
  7786. },
  7787. legged: {
  7788. height: math.unit(1.3, "meters"),
  7789. weight: math.unit(100, "lb"),
  7790. name: "Legged",
  7791. image: {
  7792. source: "./media/characters/teal/legged.svg",
  7793. extra: 462 / 437,
  7794. bottom: 24 / 486
  7795. }
  7796. },
  7797. naga: {
  7798. height: math.unit(5.4, "meters"),
  7799. weight: math.unit(4000, "lb"),
  7800. name: "Naga",
  7801. image: {
  7802. source: "./media/characters/teal/naga.svg",
  7803. extra: 1902 / 1858,
  7804. bottom: 0 / 1902
  7805. }
  7806. },
  7807. hand: {
  7808. height: math.unit(0.52, "meters"),
  7809. name: "Hand",
  7810. image: {
  7811. source: "./media/characters/teal/hand.svg"
  7812. }
  7813. },
  7814. maw: {
  7815. height: math.unit(0.43, "meters"),
  7816. name: "Maw",
  7817. image: {
  7818. source: "./media/characters/teal/maw.svg"
  7819. }
  7820. },
  7821. slit: {
  7822. height: math.unit(0.25, "meters"),
  7823. name: "Slit",
  7824. image: {
  7825. source: "./media/characters/teal/slit.svg"
  7826. }
  7827. },
  7828. },
  7829. [
  7830. {
  7831. name: "Normal",
  7832. height: math.unit(2.75, "meters"),
  7833. default: true
  7834. },
  7835. {
  7836. name: "Macro",
  7837. height: math.unit(300, "feet")
  7838. },
  7839. {
  7840. name: "Macro+",
  7841. height: math.unit(2000, "feet")
  7842. },
  7843. ]
  7844. ))
  7845. characterMakers.push(() => makeCharacter(
  7846. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7847. {
  7848. frontCat: {
  7849. height: math.unit(6, "feet"),
  7850. weight: math.unit(180, "lbs"),
  7851. name: "Front (Cat)",
  7852. image: {
  7853. source: "./media/characters/ravin-amulet/front-cat.svg"
  7854. }
  7855. },
  7856. frontCatAlt: {
  7857. height: math.unit(6, "feet"),
  7858. weight: math.unit(180, "lbs"),
  7859. name: "Front (Alt, Cat)",
  7860. image: {
  7861. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7862. }
  7863. },
  7864. frontWerewolf: {
  7865. height: math.unit(6 * 1.2, "feet"),
  7866. weight: math.unit(225, "lbs"),
  7867. name: "Front (Werewolf)",
  7868. image: {
  7869. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7870. }
  7871. },
  7872. backWerewolf: {
  7873. height: math.unit(6 * 1.2, "feet"),
  7874. weight: math.unit(225, "lbs"),
  7875. name: "Back (Werewolf)",
  7876. image: {
  7877. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7878. }
  7879. },
  7880. },
  7881. [
  7882. {
  7883. name: "Nano",
  7884. height: math.unit(1, "micrometer")
  7885. },
  7886. {
  7887. name: "Micro",
  7888. height: math.unit(1, "inch")
  7889. },
  7890. {
  7891. name: "Normal",
  7892. height: math.unit(6, "feet"),
  7893. default: true
  7894. },
  7895. {
  7896. name: "Macro",
  7897. height: math.unit(60, "feet")
  7898. }
  7899. ]
  7900. ))
  7901. characterMakers.push(() => makeCharacter(
  7902. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7903. {
  7904. front: {
  7905. height: math.unit(6, "feet"),
  7906. weight: math.unit(165, "lbs"),
  7907. name: "Front",
  7908. image: {
  7909. source: "./media/characters/fluoresce/front.svg"
  7910. }
  7911. }
  7912. },
  7913. [
  7914. {
  7915. name: "Micro",
  7916. height: math.unit(6, "cm")
  7917. },
  7918. {
  7919. name: "Normal",
  7920. height: math.unit(5 + 7 / 12, "feet"),
  7921. default: true
  7922. },
  7923. {
  7924. name: "Macro",
  7925. height: math.unit(56, "feet")
  7926. },
  7927. {
  7928. name: "Megamacro",
  7929. height: math.unit(1.9, "miles")
  7930. },
  7931. ]
  7932. ))
  7933. characterMakers.push(() => makeCharacter(
  7934. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7935. {
  7936. front: {
  7937. height: math.unit(9 + 6 / 12, "feet"),
  7938. weight: math.unit(523, "lbs"),
  7939. name: "Side",
  7940. image: {
  7941. source: "./media/characters/aurora/side.svg"
  7942. }
  7943. }
  7944. },
  7945. [
  7946. {
  7947. name: "Normal",
  7948. height: math.unit(9 + 6 / 12, "feet")
  7949. },
  7950. {
  7951. name: "Macro",
  7952. height: math.unit(96, "feet"),
  7953. default: true
  7954. },
  7955. {
  7956. name: "Macro+",
  7957. height: math.unit(243, "feet")
  7958. },
  7959. ]
  7960. ))
  7961. characterMakers.push(() => makeCharacter(
  7962. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7963. {
  7964. front: {
  7965. height: math.unit(194, "cm"),
  7966. weight: math.unit(90, "kg"),
  7967. name: "Front",
  7968. image: {
  7969. source: "./media/characters/ranek/front.svg",
  7970. extra: 1862/1791,
  7971. bottom: 80/1942
  7972. }
  7973. },
  7974. back: {
  7975. height: math.unit(194, "cm"),
  7976. weight: math.unit(90, "kg"),
  7977. name: "Back",
  7978. image: {
  7979. source: "./media/characters/ranek/back.svg",
  7980. extra: 1853/1787,
  7981. bottom: 74/1927
  7982. }
  7983. },
  7984. feral: {
  7985. height: math.unit(30, "cm"),
  7986. weight: math.unit(1.6, "lbs"),
  7987. name: "Feral",
  7988. image: {
  7989. source: "./media/characters/ranek/feral.svg",
  7990. extra: 990/631,
  7991. bottom: 29/1019
  7992. }
  7993. },
  7994. },
  7995. [
  7996. {
  7997. name: "Normal",
  7998. height: math.unit(194, "cm"),
  7999. default: true
  8000. },
  8001. {
  8002. name: "Macro",
  8003. height: math.unit(100, "meters")
  8004. },
  8005. ]
  8006. ))
  8007. characterMakers.push(() => makeCharacter(
  8008. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8009. {
  8010. front: {
  8011. height: math.unit(5 + 6 / 12, "feet"),
  8012. weight: math.unit(153, "lbs"),
  8013. name: "Front",
  8014. image: {
  8015. source: "./media/characters/andrew-cooper/front.svg"
  8016. }
  8017. },
  8018. },
  8019. [
  8020. {
  8021. name: "Nano",
  8022. height: math.unit(1, "mm")
  8023. },
  8024. {
  8025. name: "Micro",
  8026. height: math.unit(2, "inches")
  8027. },
  8028. {
  8029. name: "Normal",
  8030. height: math.unit(5 + 6 / 12, "feet"),
  8031. default: true
  8032. }
  8033. ]
  8034. ))
  8035. characterMakers.push(() => makeCharacter(
  8036. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8037. {
  8038. front: {
  8039. height: math.unit(6, "feet"),
  8040. weight: math.unit(180, "lbs"),
  8041. name: "Front",
  8042. image: {
  8043. source: "./media/characters/akane-sato/front.svg",
  8044. extra: 1219 / 1140
  8045. }
  8046. },
  8047. back: {
  8048. height: math.unit(6, "feet"),
  8049. weight: math.unit(180, "lbs"),
  8050. name: "Back",
  8051. image: {
  8052. source: "./media/characters/akane-sato/back.svg",
  8053. extra: 1219 / 1170
  8054. }
  8055. },
  8056. },
  8057. [
  8058. {
  8059. name: "Normal",
  8060. height: math.unit(2.5, "meters")
  8061. },
  8062. {
  8063. name: "Macro",
  8064. height: math.unit(250, "meters"),
  8065. default: true
  8066. },
  8067. {
  8068. name: "Megamacro",
  8069. height: math.unit(25, "km")
  8070. },
  8071. ]
  8072. ))
  8073. characterMakers.push(() => makeCharacter(
  8074. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8075. {
  8076. front: {
  8077. height: math.unit(6, "feet"),
  8078. weight: math.unit(65, "kg"),
  8079. name: "Front",
  8080. image: {
  8081. source: "./media/characters/rook/front.svg",
  8082. extra: 960 / 950
  8083. }
  8084. }
  8085. },
  8086. [
  8087. {
  8088. name: "Normal",
  8089. height: math.unit(8.8, "feet")
  8090. },
  8091. {
  8092. name: "Macro",
  8093. height: math.unit(88, "feet"),
  8094. default: true
  8095. },
  8096. {
  8097. name: "Megamacro",
  8098. height: math.unit(8, "miles")
  8099. },
  8100. ]
  8101. ))
  8102. characterMakers.push(() => makeCharacter(
  8103. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8104. {
  8105. front: {
  8106. height: math.unit(12 + 2 / 12, "feet"),
  8107. weight: math.unit(808, "lbs"),
  8108. name: "Front",
  8109. image: {
  8110. source: "./media/characters/prodigy/front.svg"
  8111. }
  8112. }
  8113. },
  8114. [
  8115. {
  8116. name: "Normal",
  8117. height: math.unit(12 + 2 / 12, "feet"),
  8118. default: true
  8119. },
  8120. {
  8121. name: "Macro",
  8122. height: math.unit(143, "feet")
  8123. },
  8124. {
  8125. name: "Macro+",
  8126. height: math.unit(400, "feet")
  8127. },
  8128. ]
  8129. ))
  8130. characterMakers.push(() => makeCharacter(
  8131. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8132. {
  8133. front: {
  8134. height: math.unit(6, "feet"),
  8135. weight: math.unit(225, "lbs"),
  8136. name: "Front",
  8137. image: {
  8138. source: "./media/characters/daniel/front.svg"
  8139. }
  8140. },
  8141. leaning: {
  8142. height: math.unit(6, "feet"),
  8143. weight: math.unit(225, "lbs"),
  8144. name: "Leaning",
  8145. image: {
  8146. source: "./media/characters/daniel/leaning.svg"
  8147. }
  8148. },
  8149. },
  8150. [
  8151. {
  8152. name: "Macro",
  8153. height: math.unit(1000, "feet"),
  8154. default: true
  8155. },
  8156. ]
  8157. ))
  8158. characterMakers.push(() => makeCharacter(
  8159. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8160. {
  8161. front: {
  8162. height: math.unit(6, "feet"),
  8163. weight: math.unit(88, "lbs"),
  8164. name: "Front",
  8165. image: {
  8166. source: "./media/characters/chiros/front.svg",
  8167. extra: 306 / 226
  8168. }
  8169. },
  8170. side: {
  8171. height: math.unit(6, "feet"),
  8172. weight: math.unit(88, "lbs"),
  8173. name: "Side",
  8174. image: {
  8175. source: "./media/characters/chiros/side.svg",
  8176. extra: 306 / 226
  8177. }
  8178. },
  8179. },
  8180. [
  8181. {
  8182. name: "Normal",
  8183. height: math.unit(6, "cm"),
  8184. default: true
  8185. },
  8186. ]
  8187. ))
  8188. characterMakers.push(() => makeCharacter(
  8189. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8190. {
  8191. front: {
  8192. height: math.unit(6, "feet"),
  8193. weight: math.unit(100, "lbs"),
  8194. name: "Front",
  8195. image: {
  8196. source: "./media/characters/selka/front.svg",
  8197. extra: 947 / 887
  8198. }
  8199. }
  8200. },
  8201. [
  8202. {
  8203. name: "Normal",
  8204. height: math.unit(5, "cm"),
  8205. default: true
  8206. },
  8207. ]
  8208. ))
  8209. characterMakers.push(() => makeCharacter(
  8210. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8211. {
  8212. front: {
  8213. height: math.unit(8 + 3 / 12, "feet"),
  8214. weight: math.unit(424, "lbs"),
  8215. name: "Front",
  8216. image: {
  8217. source: "./media/characters/verin/front.svg",
  8218. extra: 1845 / 1550
  8219. }
  8220. },
  8221. frontArmored: {
  8222. height: math.unit(8 + 3 / 12, "feet"),
  8223. weight: math.unit(424, "lbs"),
  8224. name: "Front (Armored)",
  8225. image: {
  8226. source: "./media/characters/verin/front-armor.svg",
  8227. extra: 1845 / 1550,
  8228. bottom: 0.01
  8229. }
  8230. },
  8231. back: {
  8232. height: math.unit(8 + 3 / 12, "feet"),
  8233. weight: math.unit(424, "lbs"),
  8234. name: "Back",
  8235. image: {
  8236. source: "./media/characters/verin/back.svg",
  8237. bottom: 0.1,
  8238. extra: 1
  8239. }
  8240. },
  8241. foot: {
  8242. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8243. name: "Foot",
  8244. image: {
  8245. source: "./media/characters/verin/foot.svg"
  8246. }
  8247. },
  8248. },
  8249. [
  8250. {
  8251. name: "Normal",
  8252. height: math.unit(8 + 3 / 12, "feet")
  8253. },
  8254. {
  8255. name: "Minimacro",
  8256. height: math.unit(21, "feet"),
  8257. default: true
  8258. },
  8259. {
  8260. name: "Macro",
  8261. height: math.unit(626, "feet")
  8262. },
  8263. ]
  8264. ))
  8265. characterMakers.push(() => makeCharacter(
  8266. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8267. {
  8268. front: {
  8269. height: math.unit(2.718, "meters"),
  8270. weight: math.unit(150, "lbs"),
  8271. name: "Front",
  8272. image: {
  8273. source: "./media/characters/sovrim-terraquian/front.svg",
  8274. extra: 1752/1689,
  8275. bottom: 36/1788
  8276. }
  8277. },
  8278. back: {
  8279. height: math.unit(2.718, "meters"),
  8280. weight: math.unit(150, "lbs"),
  8281. name: "Back",
  8282. image: {
  8283. source: "./media/characters/sovrim-terraquian/back.svg",
  8284. extra: 1698/1657,
  8285. bottom: 58/1756
  8286. }
  8287. },
  8288. tongue: {
  8289. height: math.unit(2.865, "feet"),
  8290. name: "Tongue",
  8291. image: {
  8292. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8293. }
  8294. },
  8295. hand: {
  8296. height: math.unit(1.61, "feet"),
  8297. name: "Hand",
  8298. image: {
  8299. source: "./media/characters/sovrim-terraquian/hand.svg"
  8300. }
  8301. },
  8302. foot: {
  8303. height: math.unit(1.05, "feet"),
  8304. name: "Foot",
  8305. image: {
  8306. source: "./media/characters/sovrim-terraquian/foot.svg"
  8307. }
  8308. },
  8309. footAlt: {
  8310. height: math.unit(0.88, "feet"),
  8311. name: "Foot (Alt)",
  8312. image: {
  8313. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8314. }
  8315. },
  8316. },
  8317. [
  8318. {
  8319. name: "Micro",
  8320. height: math.unit(2, "inches")
  8321. },
  8322. {
  8323. name: "Small",
  8324. height: math.unit(1, "meter")
  8325. },
  8326. {
  8327. name: "Normal",
  8328. height: math.unit(Math.E, "meters"),
  8329. default: true
  8330. },
  8331. {
  8332. name: "Macro",
  8333. height: math.unit(20, "meters")
  8334. },
  8335. {
  8336. name: "Macro+",
  8337. height: math.unit(400, "meters")
  8338. },
  8339. ]
  8340. ))
  8341. characterMakers.push(() => makeCharacter(
  8342. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8343. {
  8344. front: {
  8345. height: math.unit(7, "feet"),
  8346. weight: math.unit(489, "lbs"),
  8347. name: "Front",
  8348. image: {
  8349. source: "./media/characters/reece-silvermane/front.svg",
  8350. bottom: 0.02,
  8351. extra: 1
  8352. }
  8353. },
  8354. },
  8355. [
  8356. {
  8357. name: "Macro",
  8358. height: math.unit(1.5, "miles"),
  8359. default: true
  8360. },
  8361. ]
  8362. ))
  8363. characterMakers.push(() => makeCharacter(
  8364. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8365. {
  8366. front: {
  8367. height: math.unit(6, "feet"),
  8368. weight: math.unit(78, "kg"),
  8369. name: "Front",
  8370. image: {
  8371. source: "./media/characters/kane/front.svg",
  8372. extra: 978 / 899
  8373. }
  8374. },
  8375. },
  8376. [
  8377. {
  8378. name: "Normal",
  8379. height: math.unit(2.1, "m"),
  8380. },
  8381. {
  8382. name: "Macro",
  8383. height: math.unit(1, "km"),
  8384. default: true
  8385. },
  8386. ]
  8387. ))
  8388. characterMakers.push(() => makeCharacter(
  8389. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8390. {
  8391. front: {
  8392. height: math.unit(6, "feet"),
  8393. weight: math.unit(200, "kg"),
  8394. name: "Front",
  8395. image: {
  8396. source: "./media/characters/tegon/front.svg",
  8397. bottom: 0.01,
  8398. extra: 1
  8399. }
  8400. },
  8401. },
  8402. [
  8403. {
  8404. name: "Micro",
  8405. height: math.unit(1, "inch")
  8406. },
  8407. {
  8408. name: "Normal",
  8409. height: math.unit(6 + 3 / 12, "feet"),
  8410. default: true
  8411. },
  8412. {
  8413. name: "Macro",
  8414. height: math.unit(300, "feet")
  8415. },
  8416. {
  8417. name: "Megamacro",
  8418. height: math.unit(69, "miles")
  8419. },
  8420. ]
  8421. ))
  8422. characterMakers.push(() => makeCharacter(
  8423. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8424. {
  8425. side: {
  8426. height: math.unit(6, "feet"),
  8427. weight: math.unit(2304, "lbs"),
  8428. name: "Side",
  8429. image: {
  8430. source: "./media/characters/arcturax/side.svg",
  8431. extra: 790 / 376,
  8432. bottom: 0.01
  8433. }
  8434. },
  8435. },
  8436. [
  8437. {
  8438. name: "Micro",
  8439. height: math.unit(2, "inch")
  8440. },
  8441. {
  8442. name: "Normal",
  8443. height: math.unit(6, "feet")
  8444. },
  8445. {
  8446. name: "Macro",
  8447. height: math.unit(39, "feet"),
  8448. default: true
  8449. },
  8450. {
  8451. name: "Megamacro",
  8452. height: math.unit(7, "miles")
  8453. },
  8454. ]
  8455. ))
  8456. characterMakers.push(() => makeCharacter(
  8457. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8458. {
  8459. front: {
  8460. height: math.unit(6, "feet"),
  8461. weight: math.unit(50, "lbs"),
  8462. name: "Front",
  8463. image: {
  8464. source: "./media/characters/sentri/front.svg",
  8465. extra: 1750 / 1570,
  8466. bottom: 0.025
  8467. }
  8468. },
  8469. frontAlt: {
  8470. height: math.unit(6, "feet"),
  8471. weight: math.unit(50, "lbs"),
  8472. name: "Front (Alt)",
  8473. image: {
  8474. source: "./media/characters/sentri/front-alt.svg",
  8475. extra: 1750 / 1570,
  8476. bottom: 0.025
  8477. }
  8478. },
  8479. },
  8480. [
  8481. {
  8482. name: "Normal",
  8483. height: math.unit(15, "feet"),
  8484. default: true
  8485. },
  8486. {
  8487. name: "Macro",
  8488. height: math.unit(2500, "feet")
  8489. }
  8490. ]
  8491. ))
  8492. characterMakers.push(() => makeCharacter(
  8493. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8494. {
  8495. front: {
  8496. height: math.unit(5 + 8 / 12, "feet"),
  8497. weight: math.unit(130, "lbs"),
  8498. name: "Front",
  8499. image: {
  8500. source: "./media/characters/corvin/front.svg",
  8501. extra: 1803 / 1629
  8502. }
  8503. },
  8504. frontShirt: {
  8505. height: math.unit(5 + 8 / 12, "feet"),
  8506. weight: math.unit(130, "lbs"),
  8507. name: "Front (Shirt)",
  8508. image: {
  8509. source: "./media/characters/corvin/front-shirt.svg",
  8510. extra: 1803 / 1629
  8511. }
  8512. },
  8513. frontPoncho: {
  8514. height: math.unit(5 + 8 / 12, "feet"),
  8515. weight: math.unit(130, "lbs"),
  8516. name: "Front (Poncho)",
  8517. image: {
  8518. source: "./media/characters/corvin/front-poncho.svg",
  8519. extra: 1803 / 1629
  8520. }
  8521. },
  8522. side: {
  8523. height: math.unit(5 + 8 / 12, "feet"),
  8524. weight: math.unit(130, "lbs"),
  8525. name: "Side",
  8526. image: {
  8527. source: "./media/characters/corvin/side.svg",
  8528. extra: 1012 / 945
  8529. }
  8530. },
  8531. back: {
  8532. height: math.unit(5 + 8 / 12, "feet"),
  8533. weight: math.unit(130, "lbs"),
  8534. name: "Back",
  8535. image: {
  8536. source: "./media/characters/corvin/back.svg",
  8537. extra: 1803 / 1629
  8538. }
  8539. },
  8540. },
  8541. [
  8542. {
  8543. name: "Micro",
  8544. height: math.unit(3, "inches")
  8545. },
  8546. {
  8547. name: "Normal",
  8548. height: math.unit(5 + 8 / 12, "feet")
  8549. },
  8550. {
  8551. name: "Macro",
  8552. height: math.unit(300, "feet"),
  8553. default: true
  8554. },
  8555. {
  8556. name: "Megamacro",
  8557. height: math.unit(500, "miles")
  8558. }
  8559. ]
  8560. ))
  8561. characterMakers.push(() => makeCharacter(
  8562. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8563. {
  8564. front: {
  8565. height: math.unit(6, "feet"),
  8566. weight: math.unit(135, "lbs"),
  8567. name: "Front",
  8568. image: {
  8569. source: "./media/characters/q/front.svg",
  8570. extra: 854 / 752,
  8571. bottom: 0.005
  8572. }
  8573. },
  8574. back: {
  8575. height: math.unit(6, "feet"),
  8576. weight: math.unit(130, "lbs"),
  8577. name: "Back",
  8578. image: {
  8579. source: "./media/characters/q/back.svg",
  8580. extra: 854 / 752
  8581. }
  8582. },
  8583. },
  8584. [
  8585. {
  8586. name: "Macro",
  8587. height: math.unit(90, "feet"),
  8588. default: true
  8589. },
  8590. {
  8591. name: "Extra Macro",
  8592. height: math.unit(300, "feet"),
  8593. },
  8594. {
  8595. name: "BIG WALF",
  8596. height: math.unit(750, "feet"),
  8597. },
  8598. ]
  8599. ))
  8600. characterMakers.push(() => makeCharacter(
  8601. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8602. {
  8603. front: {
  8604. height: math.unit(6, "feet"),
  8605. weight: math.unit(150, "lbs"),
  8606. name: "Front",
  8607. image: {
  8608. source: "./media/characters/carley/front.svg",
  8609. extra: 3927 / 3540,
  8610. bottom: 29.2 / 735
  8611. }
  8612. }
  8613. },
  8614. [
  8615. {
  8616. name: "Normal",
  8617. height: math.unit(6 + 3 / 12, "feet")
  8618. },
  8619. {
  8620. name: "Macro",
  8621. height: math.unit(185, "feet"),
  8622. default: true
  8623. },
  8624. {
  8625. name: "Megamacro",
  8626. height: math.unit(8, "miles"),
  8627. },
  8628. ]
  8629. ))
  8630. characterMakers.push(() => makeCharacter(
  8631. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8632. {
  8633. front: {
  8634. height: math.unit(3, "feet"),
  8635. weight: math.unit(28, "lbs"),
  8636. name: "Front",
  8637. image: {
  8638. source: "./media/characters/citrine/front.svg"
  8639. }
  8640. }
  8641. },
  8642. [
  8643. {
  8644. name: "Normal",
  8645. height: math.unit(3, "feet"),
  8646. default: true
  8647. }
  8648. ]
  8649. ))
  8650. characterMakers.push(() => makeCharacter(
  8651. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8652. {
  8653. front: {
  8654. height: math.unit(14, "feet"),
  8655. weight: math.unit(1450, "kg"),
  8656. capacity: math.unit(15, "people"),
  8657. name: "Front",
  8658. image: {
  8659. source: "./media/characters/aura-starwind/front.svg",
  8660. extra: 1440/1327,
  8661. bottom: 11/1451
  8662. }
  8663. },
  8664. side: {
  8665. height: math.unit(14, "feet"),
  8666. weight: math.unit(1450, "kg"),
  8667. capacity: math.unit(15, "people"),
  8668. name: "Side",
  8669. image: {
  8670. source: "./media/characters/aura-starwind/side.svg",
  8671. extra: 1654 / 1497
  8672. }
  8673. },
  8674. taur: {
  8675. height: math.unit(18, "feet"),
  8676. weight: math.unit(5500, "kg"),
  8677. capacity: math.unit(50, "people"),
  8678. name: "Taur",
  8679. image: {
  8680. source: "./media/characters/aura-starwind/taur.svg",
  8681. extra: 1760 / 1650
  8682. }
  8683. },
  8684. feral: {
  8685. height: math.unit(46, "feet"),
  8686. weight: math.unit(25000, "kg"),
  8687. capacity: math.unit(120, "people"),
  8688. name: "Feral",
  8689. image: {
  8690. source: "./media/characters/aura-starwind/feral.svg"
  8691. }
  8692. },
  8693. },
  8694. [
  8695. {
  8696. name: "Normal",
  8697. height: math.unit(14, "feet"),
  8698. default: true
  8699. },
  8700. {
  8701. name: "Macro",
  8702. height: math.unit(50, "meters")
  8703. },
  8704. {
  8705. name: "Megamacro",
  8706. height: math.unit(5000, "meters")
  8707. },
  8708. {
  8709. name: "Gigamacro",
  8710. height: math.unit(100000, "kilometers")
  8711. },
  8712. ]
  8713. ))
  8714. characterMakers.push(() => makeCharacter(
  8715. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8716. {
  8717. front: {
  8718. height: math.unit(2 + 7 / 12, "feet"),
  8719. weight: math.unit(32, "lbs"),
  8720. name: "Front",
  8721. image: {
  8722. source: "./media/characters/rivet/front.svg",
  8723. extra: 1716 / 1658,
  8724. bottom: 0.03
  8725. }
  8726. },
  8727. foot: {
  8728. height: math.unit(0.551, "feet"),
  8729. name: "Rivet's Foot",
  8730. image: {
  8731. source: "./media/characters/rivet/foot.svg"
  8732. },
  8733. rename: true
  8734. }
  8735. },
  8736. [
  8737. {
  8738. name: "Micro",
  8739. height: math.unit(1.5, "inches"),
  8740. },
  8741. {
  8742. name: "Normal",
  8743. height: math.unit(2 + 7 / 12, "feet"),
  8744. default: true
  8745. },
  8746. {
  8747. name: "Macro",
  8748. height: math.unit(85, "feet")
  8749. },
  8750. {
  8751. name: "Megamacro",
  8752. height: math.unit(2.2, "km")
  8753. }
  8754. ]
  8755. ))
  8756. characterMakers.push(() => makeCharacter(
  8757. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8758. {
  8759. front: {
  8760. height: math.unit(5 + 9 / 12, "feet"),
  8761. weight: math.unit(150, "lbs"),
  8762. name: "Front",
  8763. image: {
  8764. source: "./media/characters/coffee/front.svg",
  8765. extra: 3666 / 3032,
  8766. bottom: 0.04
  8767. }
  8768. },
  8769. foot: {
  8770. height: math.unit(1.29, "feet"),
  8771. name: "Foot",
  8772. image: {
  8773. source: "./media/characters/coffee/foot.svg"
  8774. }
  8775. },
  8776. },
  8777. [
  8778. {
  8779. name: "Micro",
  8780. height: math.unit(2, "inches"),
  8781. },
  8782. {
  8783. name: "Normal",
  8784. height: math.unit(5 + 9 / 12, "feet"),
  8785. default: true
  8786. },
  8787. {
  8788. name: "Macro",
  8789. height: math.unit(800, "feet")
  8790. },
  8791. {
  8792. name: "Megamacro",
  8793. height: math.unit(25, "miles")
  8794. }
  8795. ]
  8796. ))
  8797. characterMakers.push(() => makeCharacter(
  8798. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8799. {
  8800. front: {
  8801. height: math.unit(6, "feet"),
  8802. weight: math.unit(200, "lbs"),
  8803. name: "Front",
  8804. image: {
  8805. source: "./media/characters/chari-gal/front.svg",
  8806. extra: 1568 / 1385,
  8807. bottom: 0.047
  8808. }
  8809. },
  8810. gigantamax: {
  8811. height: math.unit(6 * 16, "feet"),
  8812. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8813. name: "Gigantamax",
  8814. image: {
  8815. source: "./media/characters/chari-gal/gigantamax.svg",
  8816. extra: 1124 / 888,
  8817. bottom: 0.03
  8818. }
  8819. },
  8820. },
  8821. [
  8822. {
  8823. name: "Normal",
  8824. height: math.unit(5 + 7 / 12, "feet")
  8825. },
  8826. {
  8827. name: "Macro",
  8828. height: math.unit(200, "feet"),
  8829. default: true
  8830. }
  8831. ]
  8832. ))
  8833. characterMakers.push(() => makeCharacter(
  8834. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8835. {
  8836. front: {
  8837. height: math.unit(6, "feet"),
  8838. weight: math.unit(150, "lbs"),
  8839. name: "Front",
  8840. image: {
  8841. source: "./media/characters/nova/front.svg",
  8842. extra: 5000 / 4722,
  8843. bottom: 0.02
  8844. }
  8845. }
  8846. },
  8847. [
  8848. {
  8849. name: "Micro-",
  8850. height: math.unit(0.8, "inches")
  8851. },
  8852. {
  8853. name: "Micro",
  8854. height: math.unit(2, "inches"),
  8855. default: true
  8856. },
  8857. ]
  8858. ))
  8859. characterMakers.push(() => makeCharacter(
  8860. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8861. {
  8862. front: {
  8863. height: math.unit(3 + 1 / 12, "feet"),
  8864. weight: math.unit(21.7, "lbs"),
  8865. name: "Front",
  8866. image: {
  8867. source: "./media/characters/argent/front.svg",
  8868. extra: 1471 / 1331,
  8869. bottom: 100.8 / 1575.5
  8870. }
  8871. }
  8872. },
  8873. [
  8874. {
  8875. name: "Micro",
  8876. height: math.unit(2, "inches")
  8877. },
  8878. {
  8879. name: "Normal",
  8880. height: math.unit(3 + 1 / 12, "feet"),
  8881. default: true
  8882. },
  8883. {
  8884. name: "Macro",
  8885. height: math.unit(120, "feet")
  8886. },
  8887. ]
  8888. ))
  8889. characterMakers.push(() => makeCharacter(
  8890. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8891. {
  8892. lamp: {
  8893. height: math.unit(7 * 1559 / 989, "feet"),
  8894. name: "Magic Lamp",
  8895. image: {
  8896. source: "./media/characters/mira-al-cul/lamp.svg",
  8897. extra: 1617 / 1559
  8898. }
  8899. },
  8900. front: {
  8901. height: math.unit(7, "feet"),
  8902. name: "Front",
  8903. image: {
  8904. source: "./media/characters/mira-al-cul/front.svg",
  8905. extra: 1044 / 990
  8906. }
  8907. },
  8908. },
  8909. [
  8910. {
  8911. name: "Heavily Restricted",
  8912. height: math.unit(7 * 1559 / 989, "feet")
  8913. },
  8914. {
  8915. name: "Freshly Freed",
  8916. height: math.unit(50 * 1559 / 989, "feet")
  8917. },
  8918. {
  8919. name: "World Encompassing",
  8920. height: math.unit(10000 * 1559 / 989, "miles")
  8921. },
  8922. {
  8923. name: "Galactic",
  8924. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8925. },
  8926. {
  8927. name: "Palmed Universe",
  8928. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8929. default: true
  8930. },
  8931. {
  8932. name: "Multiversal Matriarch",
  8933. height: math.unit(8.87e10, "yottameters")
  8934. },
  8935. {
  8936. name: "Void Mother",
  8937. height: math.unit(3.14e110, "yottaparsecs")
  8938. },
  8939. {
  8940. name: "Toying with Transcendence",
  8941. height: math.unit(1e307, "meters")
  8942. },
  8943. ]
  8944. ))
  8945. characterMakers.push(() => makeCharacter(
  8946. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8947. {
  8948. front: {
  8949. height: math.unit(17 + 1 / 12, "feet"),
  8950. weight: math.unit(476.2 * 5, "lbs"),
  8951. name: "Front",
  8952. image: {
  8953. source: "./media/characters/kuro-shi-uchū/front.svg",
  8954. extra: 2329 / 1835,
  8955. bottom: 0.02
  8956. }
  8957. },
  8958. },
  8959. [
  8960. {
  8961. name: "Micro",
  8962. height: math.unit(2, "inches")
  8963. },
  8964. {
  8965. name: "Normal",
  8966. height: math.unit(12, "meters")
  8967. },
  8968. {
  8969. name: "Planetary",
  8970. height: math.unit(0.00929, "AU"),
  8971. default: true
  8972. },
  8973. {
  8974. name: "Universal",
  8975. height: math.unit(20, "gigaparsecs")
  8976. },
  8977. ]
  8978. ))
  8979. characterMakers.push(() => makeCharacter(
  8980. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8981. {
  8982. front: {
  8983. height: math.unit(5 + 2 / 12, "feet"),
  8984. weight: math.unit(120, "lbs"),
  8985. name: "Front",
  8986. image: {
  8987. source: "./media/characters/katherine/front.svg",
  8988. extra: 2075 / 1969
  8989. }
  8990. },
  8991. dress: {
  8992. height: math.unit(5 + 2 / 12, "feet"),
  8993. weight: math.unit(120, "lbs"),
  8994. name: "Dress",
  8995. image: {
  8996. source: "./media/characters/katherine/dress.svg",
  8997. extra: 2258 / 2064
  8998. }
  8999. },
  9000. },
  9001. [
  9002. {
  9003. name: "Micro",
  9004. height: math.unit(1, "inches"),
  9005. default: true
  9006. },
  9007. {
  9008. name: "Normal",
  9009. height: math.unit(5 + 2 / 12, "feet")
  9010. },
  9011. {
  9012. name: "Macro",
  9013. height: math.unit(100, "meters")
  9014. },
  9015. {
  9016. name: "Megamacro",
  9017. height: math.unit(80, "miles")
  9018. },
  9019. ]
  9020. ))
  9021. characterMakers.push(() => makeCharacter(
  9022. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9023. {
  9024. front: {
  9025. height: math.unit(7 + 8 / 12, "feet"),
  9026. weight: math.unit(250, "lbs"),
  9027. name: "Front",
  9028. image: {
  9029. source: "./media/characters/yevis/front.svg",
  9030. extra: 1938 / 1755
  9031. }
  9032. }
  9033. },
  9034. [
  9035. {
  9036. name: "Mortal",
  9037. height: math.unit(7 + 8 / 12, "feet")
  9038. },
  9039. {
  9040. name: "Battle",
  9041. height: math.unit(25 + 11 / 12, "feet")
  9042. },
  9043. {
  9044. name: "Wrath",
  9045. height: math.unit(1654 + 11 / 12, "feet")
  9046. },
  9047. {
  9048. name: "Planet Destroyer",
  9049. height: math.unit(12000, "miles")
  9050. },
  9051. {
  9052. name: "Galaxy Conqueror",
  9053. height: math.unit(1.45, "zettameters"),
  9054. default: true
  9055. },
  9056. {
  9057. name: "Universal War",
  9058. height: math.unit(184, "gigaparsecs")
  9059. },
  9060. {
  9061. name: "Eternity War",
  9062. height: math.unit(1.98e55, "yottaparsecs")
  9063. },
  9064. ]
  9065. ))
  9066. characterMakers.push(() => makeCharacter(
  9067. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9068. {
  9069. front: {
  9070. height: math.unit(5 + 8 / 12, "feet"),
  9071. weight: math.unit(63, "kg"),
  9072. name: "Front",
  9073. image: {
  9074. source: "./media/characters/xavier/front.svg",
  9075. extra: 944 / 883
  9076. }
  9077. },
  9078. frontStretch: {
  9079. height: math.unit(5 + 8 / 12, "feet"),
  9080. weight: math.unit(63, "kg"),
  9081. name: "Stretching",
  9082. image: {
  9083. source: "./media/characters/xavier/front-stretch.svg",
  9084. extra: 962 / 820
  9085. }
  9086. },
  9087. },
  9088. [
  9089. {
  9090. name: "Normal",
  9091. height: math.unit(5 + 8 / 12, "feet")
  9092. },
  9093. {
  9094. name: "Macro",
  9095. height: math.unit(100, "meters"),
  9096. default: true
  9097. },
  9098. {
  9099. name: "McLargeHuge",
  9100. height: math.unit(10, "miles")
  9101. },
  9102. ]
  9103. ))
  9104. characterMakers.push(() => makeCharacter(
  9105. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9106. {
  9107. front: {
  9108. height: math.unit(5 + 5 / 12, "feet"),
  9109. weight: math.unit(150, "lb"),
  9110. name: "Front",
  9111. image: {
  9112. source: "./media/characters/joshii/front.svg",
  9113. extra: 765 / 653,
  9114. bottom: 51 / 816
  9115. }
  9116. },
  9117. foot: {
  9118. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9119. name: "Foot",
  9120. image: {
  9121. source: "./media/characters/joshii/foot.svg"
  9122. }
  9123. },
  9124. },
  9125. [
  9126. {
  9127. name: "Micro",
  9128. height: math.unit(2, "inches"),
  9129. default: true
  9130. },
  9131. {
  9132. name: "Normal",
  9133. height: math.unit(5 + 5 / 12, "feet")
  9134. },
  9135. {
  9136. name: "Macro",
  9137. height: math.unit(785, "feet")
  9138. },
  9139. {
  9140. name: "Megamacro",
  9141. height: math.unit(24.5, "miles")
  9142. },
  9143. ]
  9144. ))
  9145. characterMakers.push(() => makeCharacter(
  9146. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9147. {
  9148. front: {
  9149. height: math.unit(6, "feet"),
  9150. weight: math.unit(150, "lb"),
  9151. name: "Front",
  9152. image: {
  9153. source: "./media/characters/goddess-elizabeth/front.svg",
  9154. extra: 1800 / 1525,
  9155. bottom: 0.005
  9156. }
  9157. },
  9158. foot: {
  9159. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9160. name: "Foot",
  9161. image: {
  9162. source: "./media/characters/goddess-elizabeth/foot.svg"
  9163. }
  9164. },
  9165. mouth: {
  9166. height: math.unit(6, "feet"),
  9167. name: "Mouth",
  9168. image: {
  9169. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9170. }
  9171. },
  9172. },
  9173. [
  9174. {
  9175. name: "Micro",
  9176. height: math.unit(12, "feet")
  9177. },
  9178. {
  9179. name: "Normal",
  9180. height: math.unit(80, "miles"),
  9181. default: true
  9182. },
  9183. {
  9184. name: "Macro",
  9185. height: math.unit(15000, "parsecs")
  9186. },
  9187. ]
  9188. ))
  9189. characterMakers.push(() => makeCharacter(
  9190. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9191. {
  9192. front: {
  9193. height: math.unit(5 + 9 / 12, "feet"),
  9194. weight: math.unit(144, "lb"),
  9195. name: "Front",
  9196. image: {
  9197. source: "./media/characters/kara/front.svg"
  9198. }
  9199. },
  9200. feet: {
  9201. height: math.unit(6 / 6.765, "feet"),
  9202. name: "Kara's Feet",
  9203. rename: true,
  9204. image: {
  9205. source: "./media/characters/kara/feet.svg"
  9206. }
  9207. },
  9208. },
  9209. [
  9210. {
  9211. name: "Normal",
  9212. height: math.unit(5 + 9 / 12, "feet")
  9213. },
  9214. {
  9215. name: "Macro",
  9216. height: math.unit(174, "feet"),
  9217. default: true
  9218. },
  9219. ]
  9220. ))
  9221. characterMakers.push(() => makeCharacter(
  9222. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9223. {
  9224. front: {
  9225. height: math.unit(18, "feet"),
  9226. weight: math.unit(4050, "lb"),
  9227. name: "Front",
  9228. image: {
  9229. source: "./media/characters/tyrone/front.svg",
  9230. extra: 2405 / 2270,
  9231. bottom: 182 / 2587
  9232. }
  9233. },
  9234. },
  9235. [
  9236. {
  9237. name: "Normal",
  9238. height: math.unit(18, "feet"),
  9239. default: true
  9240. },
  9241. {
  9242. name: "Macro",
  9243. height: math.unit(300, "feet")
  9244. },
  9245. {
  9246. name: "Megamacro",
  9247. height: math.unit(15, "km")
  9248. },
  9249. {
  9250. name: "Gigamacro",
  9251. height: math.unit(500, "km")
  9252. },
  9253. {
  9254. name: "Teramacro",
  9255. height: math.unit(0.5, "gigameters")
  9256. },
  9257. {
  9258. name: "Omnimacro",
  9259. height: math.unit(1e252, "yottauniverse")
  9260. },
  9261. ]
  9262. ))
  9263. characterMakers.push(() => makeCharacter(
  9264. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9265. {
  9266. front: {
  9267. height: math.unit(7 + 8 / 12, "feet"),
  9268. weight: math.unit(120, "lb"),
  9269. name: "Front",
  9270. image: {
  9271. source: "./media/characters/danny/front.svg",
  9272. extra: 1490 / 1350
  9273. }
  9274. },
  9275. back: {
  9276. height: math.unit(7 + 8 / 12, "feet"),
  9277. weight: math.unit(120, "lb"),
  9278. name: "Back",
  9279. image: {
  9280. source: "./media/characters/danny/back.svg",
  9281. extra: 1490 / 1350
  9282. }
  9283. },
  9284. },
  9285. [
  9286. {
  9287. name: "Normal",
  9288. height: math.unit(7 + 8 / 12, "feet"),
  9289. default: true
  9290. },
  9291. ]
  9292. ))
  9293. characterMakers.push(() => makeCharacter(
  9294. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9295. {
  9296. front: {
  9297. height: math.unit(3.5, "inches"),
  9298. weight: math.unit(19, "grams"),
  9299. name: "Front",
  9300. image: {
  9301. source: "./media/characters/mallow/front.svg",
  9302. extra: 471 / 431
  9303. }
  9304. },
  9305. back: {
  9306. height: math.unit(3.5, "inches"),
  9307. weight: math.unit(19, "grams"),
  9308. name: "Back",
  9309. image: {
  9310. source: "./media/characters/mallow/back.svg",
  9311. extra: 471 / 431
  9312. }
  9313. },
  9314. },
  9315. [
  9316. {
  9317. name: "Normal",
  9318. height: math.unit(3.5, "inches"),
  9319. default: true
  9320. },
  9321. ]
  9322. ))
  9323. characterMakers.push(() => makeCharacter(
  9324. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9325. {
  9326. front: {
  9327. height: math.unit(9, "feet"),
  9328. weight: math.unit(230, "kg"),
  9329. name: "Front",
  9330. image: {
  9331. source: "./media/characters/starry-aqua/front.svg"
  9332. }
  9333. },
  9334. back: {
  9335. height: math.unit(9, "feet"),
  9336. weight: math.unit(230, "kg"),
  9337. name: "Back",
  9338. image: {
  9339. source: "./media/characters/starry-aqua/back.svg"
  9340. }
  9341. },
  9342. hand: {
  9343. height: math.unit(9 * 0.1168, "feet"),
  9344. name: "Hand",
  9345. image: {
  9346. source: "./media/characters/starry-aqua/hand.svg"
  9347. }
  9348. },
  9349. foot: {
  9350. height: math.unit(9 * 0.18, "feet"),
  9351. name: "Foot",
  9352. image: {
  9353. source: "./media/characters/starry-aqua/foot.svg"
  9354. }
  9355. }
  9356. },
  9357. [
  9358. {
  9359. name: "Micro",
  9360. height: math.unit(3, "inches")
  9361. },
  9362. {
  9363. name: "Normal",
  9364. height: math.unit(9, "feet")
  9365. },
  9366. {
  9367. name: "Macro",
  9368. height: math.unit(300, "feet"),
  9369. default: true
  9370. },
  9371. {
  9372. name: "Megamacro",
  9373. height: math.unit(3200, "feet")
  9374. }
  9375. ]
  9376. ))
  9377. characterMakers.push(() => makeCharacter(
  9378. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9379. {
  9380. front: {
  9381. height: math.unit(15, "feet"),
  9382. weight: math.unit(5026, "lb"),
  9383. name: "Front",
  9384. image: {
  9385. source: "./media/characters/luka-towers/front.svg",
  9386. extra: 1269/1133,
  9387. bottom: 51/1320
  9388. }
  9389. },
  9390. },
  9391. [
  9392. {
  9393. name: "Normal",
  9394. height: math.unit(15, "feet"),
  9395. default: true
  9396. },
  9397. {
  9398. name: "Minimacro",
  9399. height: math.unit(25, "feet")
  9400. },
  9401. {
  9402. name: "Macro",
  9403. height: math.unit(320, "feet")
  9404. },
  9405. {
  9406. name: "Megamacro",
  9407. height: math.unit(35000, "feet")
  9408. },
  9409. {
  9410. name: "Gigamacro",
  9411. height: math.unit(4000, "miles")
  9412. },
  9413. {
  9414. name: "Teramacro",
  9415. height: math.unit(15000, "miles")
  9416. },
  9417. ]
  9418. ))
  9419. characterMakers.push(() => makeCharacter(
  9420. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9421. {
  9422. front: {
  9423. height: math.unit(6, "feet"),
  9424. weight: math.unit(150, "lb"),
  9425. name: "Front",
  9426. image: {
  9427. source: "./media/characters/natalie-nightring/front.svg",
  9428. extra: 1,
  9429. bottom: 0.06
  9430. }
  9431. },
  9432. },
  9433. [
  9434. {
  9435. name: "Uh Oh",
  9436. height: math.unit(0.1, "mm")
  9437. },
  9438. {
  9439. name: "Small",
  9440. height: math.unit(3, "inches")
  9441. },
  9442. {
  9443. name: "Human Scale",
  9444. height: math.unit(6, "feet")
  9445. },
  9446. {
  9447. name: "Librarian",
  9448. height: math.unit(50, "feet"),
  9449. default: true
  9450. },
  9451. {
  9452. name: "Immense",
  9453. height: math.unit(200, "miles")
  9454. },
  9455. ]
  9456. ))
  9457. characterMakers.push(() => makeCharacter(
  9458. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9459. {
  9460. front: {
  9461. height: math.unit(6, "feet"),
  9462. weight: math.unit(180, "lbs"),
  9463. name: "Front",
  9464. image: {
  9465. source: "./media/characters/danni-rosie/front.svg",
  9466. extra: 1260 / 1128,
  9467. bottom: 0.022
  9468. }
  9469. },
  9470. },
  9471. [
  9472. {
  9473. name: "Micro",
  9474. height: math.unit(2, "inches"),
  9475. default: true
  9476. },
  9477. ]
  9478. ))
  9479. characterMakers.push(() => makeCharacter(
  9480. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9481. {
  9482. front: {
  9483. height: math.unit(5 + 9 / 12, "feet"),
  9484. weight: math.unit(220, "lb"),
  9485. name: "Front",
  9486. image: {
  9487. source: "./media/characters/samantha-kruse/front.svg",
  9488. extra: (985 / 935),
  9489. bottom: 0.03
  9490. }
  9491. },
  9492. frontUndressed: {
  9493. height: math.unit(5 + 9 / 12, "feet"),
  9494. weight: math.unit(220, "lb"),
  9495. name: "Front (Undressed)",
  9496. image: {
  9497. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9498. extra: (973 / 923),
  9499. bottom: 0.025
  9500. }
  9501. },
  9502. fat: {
  9503. height: math.unit(5 + 9 / 12, "feet"),
  9504. weight: math.unit(900, "lb"),
  9505. name: "Front (Fat)",
  9506. image: {
  9507. source: "./media/characters/samantha-kruse/fat.svg",
  9508. extra: 2688 / 2561
  9509. }
  9510. },
  9511. },
  9512. [
  9513. {
  9514. name: "Normal",
  9515. height: math.unit(5 + 9 / 12, "feet"),
  9516. default: true
  9517. }
  9518. ]
  9519. ))
  9520. characterMakers.push(() => makeCharacter(
  9521. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9522. {
  9523. back: {
  9524. height: math.unit(5 + 4 / 12, "feet"),
  9525. weight: math.unit(4963, "lb"),
  9526. name: "Back",
  9527. image: {
  9528. source: "./media/characters/amelia-rosie/back.svg",
  9529. extra: 1113 / 963,
  9530. bottom: 0.01
  9531. }
  9532. },
  9533. },
  9534. [
  9535. {
  9536. name: "Level 0",
  9537. height: math.unit(5 + 4 / 12, "feet")
  9538. },
  9539. {
  9540. name: "Level 1",
  9541. height: math.unit(164597, "feet"),
  9542. default: true
  9543. },
  9544. {
  9545. name: "Level 2",
  9546. height: math.unit(956243, "miles")
  9547. },
  9548. {
  9549. name: "Level 3",
  9550. height: math.unit(29421709423, "miles")
  9551. },
  9552. {
  9553. name: "Level 4",
  9554. height: math.unit(154, "lightyears")
  9555. },
  9556. {
  9557. name: "Level 5",
  9558. height: math.unit(4738272, "lightyears")
  9559. },
  9560. {
  9561. name: "Level 6",
  9562. height: math.unit(145787152896, "lightyears")
  9563. },
  9564. ]
  9565. ))
  9566. characterMakers.push(() => makeCharacter(
  9567. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9568. {
  9569. front: {
  9570. height: math.unit(5 + 11 / 12, "feet"),
  9571. weight: math.unit(65, "kg"),
  9572. name: "Front",
  9573. image: {
  9574. source: "./media/characters/rook-kitara/front.svg",
  9575. extra: 1347 / 1274,
  9576. bottom: 0.005
  9577. }
  9578. },
  9579. },
  9580. [
  9581. {
  9582. name: "Totally Unfair",
  9583. height: math.unit(1.8, "mm")
  9584. },
  9585. {
  9586. name: "Lap Rookie",
  9587. height: math.unit(1.4, "feet")
  9588. },
  9589. {
  9590. name: "Normal",
  9591. height: math.unit(5 + 11 / 12, "feet"),
  9592. default: true
  9593. },
  9594. {
  9595. name: "How Did This Happen",
  9596. height: math.unit(80, "miles")
  9597. }
  9598. ]
  9599. ))
  9600. characterMakers.push(() => makeCharacter(
  9601. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9602. {
  9603. front: {
  9604. height: math.unit(7, "feet"),
  9605. weight: math.unit(300, "lb"),
  9606. name: "Front",
  9607. image: {
  9608. source: "./media/characters/pisces/front.svg",
  9609. extra: 2255 / 2115,
  9610. bottom: 0.03
  9611. }
  9612. },
  9613. back: {
  9614. height: math.unit(7, "feet"),
  9615. weight: math.unit(300, "lb"),
  9616. name: "Back",
  9617. image: {
  9618. source: "./media/characters/pisces/back.svg",
  9619. extra: 2146 / 2055,
  9620. bottom: 0.04
  9621. }
  9622. },
  9623. },
  9624. [
  9625. {
  9626. name: "Normal",
  9627. height: math.unit(7, "feet"),
  9628. default: true
  9629. },
  9630. {
  9631. name: "Swimming Pool",
  9632. height: math.unit(12.2, "meters")
  9633. },
  9634. {
  9635. name: "Olympic Swimming Pool",
  9636. height: math.unit(56.3, "meters")
  9637. },
  9638. {
  9639. name: "Lake Superior",
  9640. height: math.unit(93900, "meters")
  9641. },
  9642. {
  9643. name: "Mediterranean Sea",
  9644. height: math.unit(644457, "meters")
  9645. },
  9646. {
  9647. name: "World's Oceans",
  9648. height: math.unit(4567491, "meters")
  9649. },
  9650. ]
  9651. ))
  9652. characterMakers.push(() => makeCharacter(
  9653. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9654. {
  9655. front: {
  9656. height: math.unit(2.3, "meters"),
  9657. weight: math.unit(120, "kg"),
  9658. name: "Front",
  9659. image: {
  9660. source: "./media/characters/zelas/front.svg"
  9661. }
  9662. },
  9663. side: {
  9664. height: math.unit(2.3, "meters"),
  9665. weight: math.unit(120, "kg"),
  9666. name: "Side",
  9667. image: {
  9668. source: "./media/characters/zelas/side.svg"
  9669. }
  9670. },
  9671. back: {
  9672. height: math.unit(2.3, "meters"),
  9673. weight: math.unit(120, "kg"),
  9674. name: "Back",
  9675. image: {
  9676. source: "./media/characters/zelas/back.svg"
  9677. }
  9678. },
  9679. foot: {
  9680. height: math.unit(1.116, "feet"),
  9681. name: "Foot",
  9682. image: {
  9683. source: "./media/characters/zelas/foot.svg"
  9684. }
  9685. },
  9686. },
  9687. [
  9688. {
  9689. name: "Normal",
  9690. height: math.unit(2.3, "meters")
  9691. },
  9692. {
  9693. name: "Macro",
  9694. height: math.unit(30, "meters"),
  9695. default: true
  9696. },
  9697. ]
  9698. ))
  9699. characterMakers.push(() => makeCharacter(
  9700. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9701. {
  9702. front: {
  9703. height: math.unit(1, "inch"),
  9704. weight: math.unit(0.21, "grams"),
  9705. name: "Front",
  9706. image: {
  9707. source: "./media/characters/talbot/front.svg",
  9708. extra: 594 / 544
  9709. }
  9710. },
  9711. },
  9712. [
  9713. {
  9714. name: "Micro",
  9715. height: math.unit(1, "inch"),
  9716. default: true
  9717. },
  9718. ]
  9719. ))
  9720. characterMakers.push(() => makeCharacter(
  9721. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9722. {
  9723. front: {
  9724. height: math.unit(3 + 3 / 12, "feet"),
  9725. weight: math.unit(51.8, "lb"),
  9726. name: "Front",
  9727. image: {
  9728. source: "./media/characters/fliss/front.svg",
  9729. extra: 840 / 640
  9730. }
  9731. },
  9732. },
  9733. [
  9734. {
  9735. name: "Teeny Tiny",
  9736. height: math.unit(1, "mm")
  9737. },
  9738. {
  9739. name: "Small",
  9740. height: math.unit(1, "inch"),
  9741. default: true
  9742. },
  9743. {
  9744. name: "Standard Sylveon",
  9745. height: math.unit(3 + 3 / 12, "feet")
  9746. },
  9747. {
  9748. name: "Large Nuisance",
  9749. height: math.unit(33, "feet")
  9750. },
  9751. {
  9752. name: "City Filler",
  9753. height: math.unit(3000, "feet")
  9754. },
  9755. {
  9756. name: "New Horizon",
  9757. height: math.unit(6000, "miles")
  9758. },
  9759. ]
  9760. ))
  9761. characterMakers.push(() => makeCharacter(
  9762. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9763. {
  9764. front: {
  9765. height: math.unit(5, "cm"),
  9766. weight: math.unit(1.94, "g"),
  9767. name: "Front",
  9768. image: {
  9769. source: "./media/characters/fleta/front.svg",
  9770. extra: 835 / 803
  9771. }
  9772. },
  9773. back: {
  9774. height: math.unit(5, "cm"),
  9775. weight: math.unit(1.94, "g"),
  9776. name: "Back",
  9777. image: {
  9778. source: "./media/characters/fleta/back.svg",
  9779. extra: 835 / 803
  9780. }
  9781. },
  9782. },
  9783. [
  9784. {
  9785. name: "Micro",
  9786. height: math.unit(5, "cm"),
  9787. default: true
  9788. },
  9789. ]
  9790. ))
  9791. characterMakers.push(() => makeCharacter(
  9792. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9793. {
  9794. front: {
  9795. height: math.unit(6, "feet"),
  9796. weight: math.unit(225, "lb"),
  9797. name: "Front",
  9798. image: {
  9799. source: "./media/characters/dominic/front.svg",
  9800. extra: 1770 / 1620,
  9801. bottom: 0.025
  9802. }
  9803. },
  9804. back: {
  9805. height: math.unit(6, "feet"),
  9806. weight: math.unit(225, "lb"),
  9807. name: "Back",
  9808. image: {
  9809. source: "./media/characters/dominic/back.svg",
  9810. extra: 1745 / 1620,
  9811. bottom: 0.065
  9812. }
  9813. },
  9814. },
  9815. [
  9816. {
  9817. name: "Nano",
  9818. height: math.unit(0.1, "mm")
  9819. },
  9820. {
  9821. name: "Micro-",
  9822. height: math.unit(1, "mm")
  9823. },
  9824. {
  9825. name: "Micro",
  9826. height: math.unit(4, "inches")
  9827. },
  9828. {
  9829. name: "Normal",
  9830. height: math.unit(6 + 4 / 12, "feet"),
  9831. default: true
  9832. },
  9833. {
  9834. name: "Macro",
  9835. height: math.unit(115, "feet")
  9836. },
  9837. {
  9838. name: "Macro+",
  9839. height: math.unit(955, "feet")
  9840. },
  9841. {
  9842. name: "Megamacro",
  9843. height: math.unit(8990, "feet")
  9844. },
  9845. {
  9846. name: "Gigmacro",
  9847. height: math.unit(9310, "miles")
  9848. },
  9849. {
  9850. name: "Teramacro",
  9851. height: math.unit(1567005010, "miles")
  9852. },
  9853. {
  9854. name: "Examacro",
  9855. height: math.unit(1425, "parsecs")
  9856. },
  9857. ]
  9858. ))
  9859. characterMakers.push(() => makeCharacter(
  9860. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9861. {
  9862. front: {
  9863. height: math.unit(400, "feet"),
  9864. weight: math.unit(44444444, "lb"),
  9865. name: "Front",
  9866. image: {
  9867. source: "./media/characters/major-colonel/front.svg"
  9868. }
  9869. },
  9870. back: {
  9871. height: math.unit(400, "feet"),
  9872. weight: math.unit(44444444, "lb"),
  9873. name: "Back",
  9874. image: {
  9875. source: "./media/characters/major-colonel/back.svg"
  9876. }
  9877. },
  9878. },
  9879. [
  9880. {
  9881. name: "Macro",
  9882. height: math.unit(400, "feet"),
  9883. default: true
  9884. },
  9885. ]
  9886. ))
  9887. characterMakers.push(() => makeCharacter(
  9888. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9889. {
  9890. catFront: {
  9891. height: math.unit(6, "feet"),
  9892. weight: math.unit(120, "lb"),
  9893. name: "Front (Cat Side)",
  9894. image: {
  9895. source: "./media/characters/axel-lycan/cat-front.svg",
  9896. extra: 430 / 402,
  9897. bottom: 43 / 472.35
  9898. }
  9899. },
  9900. catBack: {
  9901. height: math.unit(6, "feet"),
  9902. weight: math.unit(120, "lb"),
  9903. name: "Back (Cat Side)",
  9904. image: {
  9905. source: "./media/characters/axel-lycan/cat-back.svg",
  9906. extra: 447 / 419,
  9907. bottom: 23.3 / 469
  9908. }
  9909. },
  9910. wolfFront: {
  9911. height: math.unit(6, "feet"),
  9912. weight: math.unit(120, "lb"),
  9913. name: "Front (Wolf Side)",
  9914. image: {
  9915. source: "./media/characters/axel-lycan/wolf-front.svg",
  9916. extra: 485 / 456,
  9917. bottom: 19 / 504
  9918. }
  9919. },
  9920. wolfBack: {
  9921. height: math.unit(6, "feet"),
  9922. weight: math.unit(120, "lb"),
  9923. name: "Back (Wolf Side)",
  9924. image: {
  9925. source: "./media/characters/axel-lycan/wolf-back.svg",
  9926. extra: 475 / 438,
  9927. bottom: 39.2 / 514
  9928. }
  9929. },
  9930. },
  9931. [
  9932. {
  9933. name: "Macro",
  9934. height: math.unit(1, "km"),
  9935. default: true
  9936. },
  9937. ]
  9938. ))
  9939. characterMakers.push(() => makeCharacter(
  9940. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9941. {
  9942. front: {
  9943. height: math.unit(5 + 9 / 12, "feet"),
  9944. weight: math.unit(175, "lb"),
  9945. name: "Front",
  9946. image: {
  9947. source: "./media/characters/vanrel-hyena/front.svg",
  9948. extra: 1086 / 1010,
  9949. bottom: 0.04
  9950. }
  9951. },
  9952. },
  9953. [
  9954. {
  9955. name: "Normal",
  9956. height: math.unit(5 + 9 / 12, "feet"),
  9957. default: true
  9958. },
  9959. ]
  9960. ))
  9961. characterMakers.push(() => makeCharacter(
  9962. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9963. {
  9964. front: {
  9965. height: math.unit(6, "feet"),
  9966. weight: math.unit(103, "lb"),
  9967. name: "Front",
  9968. image: {
  9969. source: "./media/characters/abbott-absol/front.svg",
  9970. extra: 2010 / 1842
  9971. }
  9972. },
  9973. },
  9974. [
  9975. {
  9976. name: "Megamicro",
  9977. height: math.unit(0.1, "mm")
  9978. },
  9979. {
  9980. name: "Micro",
  9981. height: math.unit(1, "inch")
  9982. },
  9983. {
  9984. name: "Normal",
  9985. height: math.unit(6, "feet"),
  9986. default: true
  9987. },
  9988. ]
  9989. ))
  9990. characterMakers.push(() => makeCharacter(
  9991. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9992. {
  9993. front: {
  9994. height: math.unit(6, "feet"),
  9995. weight: math.unit(264, "lb"),
  9996. name: "Front",
  9997. image: {
  9998. source: "./media/characters/hector/front.svg",
  9999. extra: 2280 / 2130,
  10000. bottom: 0.07
  10001. }
  10002. },
  10003. },
  10004. [
  10005. {
  10006. name: "Normal",
  10007. height: math.unit(12.25, "foot"),
  10008. default: true
  10009. },
  10010. {
  10011. name: "Macro",
  10012. height: math.unit(160, "feet")
  10013. },
  10014. ]
  10015. ))
  10016. characterMakers.push(() => makeCharacter(
  10017. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10018. {
  10019. front: {
  10020. height: math.unit(6, "feet"),
  10021. weight: math.unit(150, "lb"),
  10022. name: "Front",
  10023. image: {
  10024. source: "./media/characters/sal/front.svg",
  10025. extra: 1846 / 1699,
  10026. bottom: 0.04
  10027. }
  10028. },
  10029. },
  10030. [
  10031. {
  10032. name: "Megamacro",
  10033. height: math.unit(10, "miles"),
  10034. default: true
  10035. },
  10036. ]
  10037. ))
  10038. characterMakers.push(() => makeCharacter(
  10039. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10040. {
  10041. front: {
  10042. height: math.unit(3, "meters"),
  10043. weight: math.unit(450, "kg"),
  10044. name: "front",
  10045. image: {
  10046. source: "./media/characters/ranger/front.svg",
  10047. extra: 2401 / 2243,
  10048. bottom: 0.05
  10049. }
  10050. },
  10051. },
  10052. [
  10053. {
  10054. name: "Normal",
  10055. height: math.unit(3, "meters"),
  10056. default: true
  10057. },
  10058. ]
  10059. ))
  10060. characterMakers.push(() => makeCharacter(
  10061. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10062. {
  10063. front: {
  10064. height: math.unit(14, "feet"),
  10065. weight: math.unit(800, "kg"),
  10066. name: "Front",
  10067. image: {
  10068. source: "./media/characters/theresa/front.svg",
  10069. extra: 3575 / 3346,
  10070. bottom: 0.03
  10071. }
  10072. },
  10073. },
  10074. [
  10075. {
  10076. name: "Normal",
  10077. height: math.unit(14, "feet"),
  10078. default: true
  10079. },
  10080. ]
  10081. ))
  10082. characterMakers.push(() => makeCharacter(
  10083. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10084. {
  10085. front: {
  10086. height: math.unit(6, "feet"),
  10087. weight: math.unit(3, "kg"),
  10088. name: "Front",
  10089. image: {
  10090. source: "./media/characters/ine/front.svg",
  10091. extra: 678 / 539,
  10092. bottom: 0.023
  10093. }
  10094. },
  10095. },
  10096. [
  10097. {
  10098. name: "Normal",
  10099. height: math.unit(2.265, "feet"),
  10100. default: true
  10101. },
  10102. ]
  10103. ))
  10104. characterMakers.push(() => makeCharacter(
  10105. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10106. {
  10107. front: {
  10108. height: math.unit(5, "feet"),
  10109. weight: math.unit(30, "kg"),
  10110. name: "Front",
  10111. image: {
  10112. source: "./media/characters/vial/front.svg",
  10113. extra: 1365 / 1277,
  10114. bottom: 0.04
  10115. }
  10116. },
  10117. },
  10118. [
  10119. {
  10120. name: "Normal",
  10121. height: math.unit(5, "feet"),
  10122. default: true
  10123. },
  10124. ]
  10125. ))
  10126. characterMakers.push(() => makeCharacter(
  10127. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10128. {
  10129. side: {
  10130. height: math.unit(3.4, "meters"),
  10131. weight: math.unit(1000, "lb"),
  10132. name: "Side",
  10133. image: {
  10134. source: "./media/characters/rovoska/side.svg",
  10135. extra: 4403 / 1515
  10136. }
  10137. },
  10138. },
  10139. [
  10140. {
  10141. name: "Normal",
  10142. height: math.unit(3.4, "meters"),
  10143. default: true
  10144. },
  10145. ]
  10146. ))
  10147. characterMakers.push(() => makeCharacter(
  10148. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10149. {
  10150. front: {
  10151. height: math.unit(8, "feet"),
  10152. weight: math.unit(315, "lb"),
  10153. name: "Front",
  10154. image: {
  10155. source: "./media/characters/gunner-rotthbauer/front.svg"
  10156. }
  10157. },
  10158. back: {
  10159. height: math.unit(8, "feet"),
  10160. weight: math.unit(315, "lb"),
  10161. name: "Back",
  10162. image: {
  10163. source: "./media/characters/gunner-rotthbauer/back.svg"
  10164. }
  10165. },
  10166. },
  10167. [
  10168. {
  10169. name: "Micro",
  10170. height: math.unit(3.5, "inches")
  10171. },
  10172. {
  10173. name: "Normal",
  10174. height: math.unit(8, "feet"),
  10175. default: true
  10176. },
  10177. {
  10178. name: "Macro",
  10179. height: math.unit(250, "feet")
  10180. },
  10181. {
  10182. name: "Megamacro",
  10183. height: math.unit(1, "AU")
  10184. },
  10185. ]
  10186. ))
  10187. characterMakers.push(() => makeCharacter(
  10188. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10189. {
  10190. front: {
  10191. height: math.unit(5 + 5 / 12, "feet"),
  10192. weight: math.unit(140, "lb"),
  10193. name: "Front",
  10194. image: {
  10195. source: "./media/characters/allatia/front.svg",
  10196. extra: 1227 / 1180,
  10197. bottom: 0.027
  10198. }
  10199. },
  10200. },
  10201. [
  10202. {
  10203. name: "Normal",
  10204. height: math.unit(5 + 5 / 12, "feet")
  10205. },
  10206. {
  10207. name: "Macro",
  10208. height: math.unit(250, "feet"),
  10209. default: true
  10210. },
  10211. {
  10212. name: "Megamacro",
  10213. height: math.unit(8, "miles")
  10214. }
  10215. ]
  10216. ))
  10217. characterMakers.push(() => makeCharacter(
  10218. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10219. {
  10220. front: {
  10221. height: math.unit(6, "feet"),
  10222. weight: math.unit(120, "lb"),
  10223. name: "Front",
  10224. image: {
  10225. source: "./media/characters/tene/front.svg",
  10226. extra: 814/750,
  10227. bottom: 36/850
  10228. }
  10229. },
  10230. stomping: {
  10231. height: math.unit(2.025, "meters"),
  10232. weight: math.unit(120, "lb"),
  10233. name: "Stomping",
  10234. image: {
  10235. source: "./media/characters/tene/stomping.svg",
  10236. extra: 885/821,
  10237. bottom: 15/900
  10238. }
  10239. },
  10240. sitting: {
  10241. height: math.unit(1, "meter"),
  10242. weight: math.unit(120, "lb"),
  10243. name: "Sitting",
  10244. image: {
  10245. source: "./media/characters/tene/sitting.svg",
  10246. extra: 396/366,
  10247. bottom: 79/475
  10248. }
  10249. },
  10250. smiling: {
  10251. height: math.unit(1.2, "feet"),
  10252. name: "Smiling",
  10253. image: {
  10254. source: "./media/characters/tene/smiling.svg",
  10255. extra: 1364/1071,
  10256. bottom: 0/1364
  10257. }
  10258. },
  10259. smug: {
  10260. height: math.unit(1.3, "feet"),
  10261. name: "Smug",
  10262. image: {
  10263. source: "./media/characters/tene/smug.svg",
  10264. extra: 1323/1082,
  10265. bottom: 0/1323
  10266. }
  10267. },
  10268. feral: {
  10269. height: math.unit(3.9, "feet"),
  10270. weight: math.unit(250, "lb"),
  10271. name: "Feral",
  10272. image: {
  10273. source: "./media/characters/tene/feral.svg",
  10274. extra: 717 / 458,
  10275. bottom: 0.179
  10276. }
  10277. },
  10278. },
  10279. [
  10280. {
  10281. name: "Normal",
  10282. height: math.unit(6, "feet")
  10283. },
  10284. {
  10285. name: "Macro",
  10286. height: math.unit(300, "feet"),
  10287. default: true
  10288. },
  10289. {
  10290. name: "Megamacro",
  10291. height: math.unit(5, "miles")
  10292. },
  10293. ]
  10294. ))
  10295. characterMakers.push(() => makeCharacter(
  10296. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10297. {
  10298. side: {
  10299. height: math.unit(6, "feet"),
  10300. name: "Side",
  10301. image: {
  10302. source: "./media/characters/evander/side.svg",
  10303. extra: 877 / 477
  10304. }
  10305. },
  10306. },
  10307. [
  10308. {
  10309. name: "Normal",
  10310. height: math.unit(0.83, "meters"),
  10311. default: true
  10312. },
  10313. ]
  10314. ))
  10315. characterMakers.push(() => makeCharacter(
  10316. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10317. {
  10318. front: {
  10319. height: math.unit(12, "feet"),
  10320. weight: math.unit(1000, "lb"),
  10321. name: "Front",
  10322. image: {
  10323. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10324. extra: 1762 / 1611
  10325. }
  10326. },
  10327. back: {
  10328. height: math.unit(12, "feet"),
  10329. weight: math.unit(1000, "lb"),
  10330. name: "Back",
  10331. image: {
  10332. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10333. extra: 1762 / 1611
  10334. }
  10335. },
  10336. },
  10337. [
  10338. {
  10339. name: "Normal",
  10340. height: math.unit(12, "feet"),
  10341. default: true
  10342. },
  10343. {
  10344. name: "Kaiju",
  10345. height: math.unit(150, "feet")
  10346. },
  10347. ]
  10348. ))
  10349. characterMakers.push(() => makeCharacter(
  10350. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10351. {
  10352. front: {
  10353. height: math.unit(6, "feet"),
  10354. weight: math.unit(150, "lb"),
  10355. name: "Front",
  10356. image: {
  10357. source: "./media/characters/zero-alurus/front.svg"
  10358. }
  10359. },
  10360. back: {
  10361. height: math.unit(6, "feet"),
  10362. weight: math.unit(150, "lb"),
  10363. name: "Back",
  10364. image: {
  10365. source: "./media/characters/zero-alurus/back.svg"
  10366. }
  10367. },
  10368. },
  10369. [
  10370. {
  10371. name: "Normal",
  10372. height: math.unit(5 + 10 / 12, "feet")
  10373. },
  10374. {
  10375. name: "Macro",
  10376. height: math.unit(60, "feet"),
  10377. default: true
  10378. },
  10379. {
  10380. name: "Macro+",
  10381. height: math.unit(450, "feet")
  10382. },
  10383. ]
  10384. ))
  10385. characterMakers.push(() => makeCharacter(
  10386. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10387. {
  10388. front: {
  10389. height: math.unit(6, "feet"),
  10390. weight: math.unit(200, "lb"),
  10391. name: "Front",
  10392. image: {
  10393. source: "./media/characters/mega-shi/front.svg",
  10394. extra: 1279 / 1250,
  10395. bottom: 0.02
  10396. }
  10397. },
  10398. back: {
  10399. height: math.unit(6, "feet"),
  10400. weight: math.unit(200, "lb"),
  10401. name: "Back",
  10402. image: {
  10403. source: "./media/characters/mega-shi/back.svg",
  10404. extra: 1279 / 1250,
  10405. bottom: 0.02
  10406. }
  10407. },
  10408. },
  10409. [
  10410. {
  10411. name: "Micro",
  10412. height: math.unit(16 + 6 / 12, "feet")
  10413. },
  10414. {
  10415. name: "Third Dimension",
  10416. height: math.unit(40, "meters")
  10417. },
  10418. {
  10419. name: "Normal",
  10420. height: math.unit(660, "feet"),
  10421. default: true
  10422. },
  10423. {
  10424. name: "Megamacro",
  10425. height: math.unit(10, "miles")
  10426. },
  10427. {
  10428. name: "Planetary Launch",
  10429. height: math.unit(500, "miles")
  10430. },
  10431. {
  10432. name: "Interstellar",
  10433. height: math.unit(1e9, "miles")
  10434. },
  10435. {
  10436. name: "Leaving the Universe",
  10437. height: math.unit(1, "gigaparsec")
  10438. },
  10439. {
  10440. name: "Travelling Universes",
  10441. height: math.unit(30e15, "parsecs")
  10442. },
  10443. ]
  10444. ))
  10445. characterMakers.push(() => makeCharacter(
  10446. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10447. {
  10448. front: {
  10449. height: math.unit(5 + 4/12, "feet"),
  10450. weight: math.unit(120, "lb"),
  10451. name: "Front",
  10452. image: {
  10453. source: "./media/characters/odyssey/front.svg",
  10454. extra: 1747/1571,
  10455. bottom: 47/1794
  10456. }
  10457. },
  10458. side: {
  10459. height: math.unit(5.1, "feet"),
  10460. weight: math.unit(120, "lb"),
  10461. name: "Side",
  10462. image: {
  10463. source: "./media/characters/odyssey/side.svg",
  10464. extra: 1847/1619,
  10465. bottom: 47/1894
  10466. }
  10467. },
  10468. lounging: {
  10469. height: math.unit(1.464, "feet"),
  10470. weight: math.unit(120, "lb"),
  10471. name: "Lounging",
  10472. image: {
  10473. source: "./media/characters/odyssey/lounging.svg",
  10474. extra: 1235/837,
  10475. bottom: 551/1786
  10476. }
  10477. },
  10478. },
  10479. [
  10480. {
  10481. name: "Normal",
  10482. height: math.unit(5 + 4 / 12, "feet")
  10483. },
  10484. {
  10485. name: "Macro",
  10486. height: math.unit(1, "km")
  10487. },
  10488. {
  10489. name: "Megamacro",
  10490. height: math.unit(3000, "km")
  10491. },
  10492. {
  10493. name: "Gigamacro",
  10494. height: math.unit(1, "AU"),
  10495. default: true
  10496. },
  10497. {
  10498. name: "Omniversal",
  10499. height: math.unit(100e14, "lightyears")
  10500. },
  10501. ]
  10502. ))
  10503. characterMakers.push(() => makeCharacter(
  10504. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10505. {
  10506. front: {
  10507. height: math.unit(6, "feet"),
  10508. weight: math.unit(300, "lb"),
  10509. name: "Front",
  10510. image: {
  10511. source: "./media/characters/mekuto/front.svg",
  10512. extra: 921 / 832,
  10513. bottom: 0.03
  10514. }
  10515. },
  10516. hand: {
  10517. height: math.unit(6 / 10.24, "feet"),
  10518. name: "Hand",
  10519. image: {
  10520. source: "./media/characters/mekuto/hand.svg"
  10521. }
  10522. },
  10523. foot: {
  10524. height: math.unit(6 / 5.05, "feet"),
  10525. name: "Foot",
  10526. image: {
  10527. source: "./media/characters/mekuto/foot.svg"
  10528. }
  10529. },
  10530. },
  10531. [
  10532. {
  10533. name: "Minimicro",
  10534. height: math.unit(0.2, "inches")
  10535. },
  10536. {
  10537. name: "Micro",
  10538. height: math.unit(1.5, "inches")
  10539. },
  10540. {
  10541. name: "Normal",
  10542. height: math.unit(5 + 11 / 12, "feet"),
  10543. default: true
  10544. },
  10545. {
  10546. name: "Minimacro",
  10547. height: math.unit(17 + 9 / 12, "feet")
  10548. },
  10549. {
  10550. name: "Macro",
  10551. height: math.unit(177.5, "feet")
  10552. },
  10553. {
  10554. name: "Megamacro",
  10555. height: math.unit(152, "miles")
  10556. },
  10557. ]
  10558. ))
  10559. characterMakers.push(() => makeCharacter(
  10560. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10561. {
  10562. front: {
  10563. height: math.unit(6.5, "inches"),
  10564. weight: math.unit(13, "oz"),
  10565. name: "Front",
  10566. image: {
  10567. source: "./media/characters/dafydd-tomos/front.svg",
  10568. extra: 2990 / 2603,
  10569. bottom: 0.03
  10570. }
  10571. },
  10572. },
  10573. [
  10574. {
  10575. name: "Micro",
  10576. height: math.unit(6.5, "inches"),
  10577. default: true
  10578. },
  10579. ]
  10580. ))
  10581. characterMakers.push(() => makeCharacter(
  10582. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10583. {
  10584. front: {
  10585. height: math.unit(6, "feet"),
  10586. weight: math.unit(150, "lb"),
  10587. name: "Front",
  10588. image: {
  10589. source: "./media/characters/splinter/front.svg",
  10590. extra: 2990 / 2882,
  10591. bottom: 0.04
  10592. }
  10593. },
  10594. back: {
  10595. height: math.unit(6, "feet"),
  10596. weight: math.unit(150, "lb"),
  10597. name: "Back",
  10598. image: {
  10599. source: "./media/characters/splinter/back.svg",
  10600. extra: 2990 / 2882,
  10601. bottom: 0.04
  10602. }
  10603. },
  10604. },
  10605. [
  10606. {
  10607. name: "Normal",
  10608. height: math.unit(6, "feet")
  10609. },
  10610. {
  10611. name: "Macro",
  10612. height: math.unit(230, "meters"),
  10613. default: true
  10614. },
  10615. ]
  10616. ))
  10617. characterMakers.push(() => makeCharacter(
  10618. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10619. {
  10620. front: {
  10621. height: math.unit(4 + 10 / 12, "feet"),
  10622. weight: math.unit(480, "lb"),
  10623. name: "Front",
  10624. image: {
  10625. source: "./media/characters/snow-gabumon/front.svg",
  10626. extra: 1140 / 963,
  10627. bottom: 0.058
  10628. }
  10629. },
  10630. back: {
  10631. height: math.unit(4 + 10 / 12, "feet"),
  10632. weight: math.unit(480, "lb"),
  10633. name: "Back",
  10634. image: {
  10635. source: "./media/characters/snow-gabumon/back.svg",
  10636. extra: 1115 / 962,
  10637. bottom: 0.041
  10638. }
  10639. },
  10640. frontUndresed: {
  10641. height: math.unit(4 + 10 / 12, "feet"),
  10642. weight: math.unit(480, "lb"),
  10643. name: "Front (Undressed)",
  10644. image: {
  10645. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10646. extra: 1061 / 960,
  10647. bottom: 0.045
  10648. }
  10649. },
  10650. },
  10651. [
  10652. {
  10653. name: "Micro",
  10654. height: math.unit(1, "inch")
  10655. },
  10656. {
  10657. name: "Normal",
  10658. height: math.unit(4 + 10 / 12, "feet"),
  10659. default: true
  10660. },
  10661. {
  10662. name: "Macro",
  10663. height: math.unit(200, "feet")
  10664. },
  10665. {
  10666. name: "Megamacro",
  10667. height: math.unit(120, "miles")
  10668. },
  10669. {
  10670. name: "Gigamacro",
  10671. height: math.unit(9800, "miles")
  10672. },
  10673. ]
  10674. ))
  10675. characterMakers.push(() => makeCharacter(
  10676. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10677. {
  10678. front: {
  10679. height: math.unit(1.7, "meters"),
  10680. weight: math.unit(140, "lb"),
  10681. name: "Front",
  10682. image: {
  10683. source: "./media/characters/moody/front.svg",
  10684. extra: 3226 / 3007,
  10685. bottom: 0.087
  10686. }
  10687. },
  10688. },
  10689. [
  10690. {
  10691. name: "Micro",
  10692. height: math.unit(1, "mm")
  10693. },
  10694. {
  10695. name: "Normal",
  10696. height: math.unit(1.7, "meters"),
  10697. default: true
  10698. },
  10699. {
  10700. name: "Macro",
  10701. height: math.unit(80, "meters")
  10702. },
  10703. {
  10704. name: "Macro+",
  10705. height: math.unit(500, "meters")
  10706. },
  10707. ]
  10708. ))
  10709. characterMakers.push(() => makeCharacter(
  10710. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10711. {
  10712. front: {
  10713. height: math.unit(6, "feet"),
  10714. weight: math.unit(150, "lb"),
  10715. name: "Front",
  10716. image: {
  10717. source: "./media/characters/zyas/front.svg",
  10718. extra: 1180 / 1120,
  10719. bottom: 0.045
  10720. }
  10721. },
  10722. },
  10723. [
  10724. {
  10725. name: "Normal",
  10726. height: math.unit(10, "feet"),
  10727. default: true
  10728. },
  10729. {
  10730. name: "Macro",
  10731. height: math.unit(500, "feet")
  10732. },
  10733. {
  10734. name: "Megamacro",
  10735. height: math.unit(5, "miles")
  10736. },
  10737. {
  10738. name: "Teramacro",
  10739. height: math.unit(150000, "miles")
  10740. },
  10741. ]
  10742. ))
  10743. characterMakers.push(() => makeCharacter(
  10744. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10745. {
  10746. front: {
  10747. height: math.unit(6, "feet"),
  10748. weight: math.unit(150, "lb"),
  10749. name: "Front",
  10750. image: {
  10751. source: "./media/characters/cuon/front.svg",
  10752. extra: 1390 / 1320,
  10753. bottom: 0.008
  10754. }
  10755. },
  10756. },
  10757. [
  10758. {
  10759. name: "Micro",
  10760. height: math.unit(3, "inches")
  10761. },
  10762. {
  10763. name: "Normal",
  10764. height: math.unit(18 + 9 / 12, "feet"),
  10765. default: true
  10766. },
  10767. {
  10768. name: "Macro",
  10769. height: math.unit(360, "feet")
  10770. },
  10771. {
  10772. name: "Megamacro",
  10773. height: math.unit(360, "miles")
  10774. },
  10775. ]
  10776. ))
  10777. characterMakers.push(() => makeCharacter(
  10778. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10779. {
  10780. front: {
  10781. height: math.unit(2.4, "meters"),
  10782. weight: math.unit(70, "kg"),
  10783. name: "Front",
  10784. image: {
  10785. source: "./media/characters/nyanuxk/front.svg",
  10786. extra: 1172 / 1084,
  10787. bottom: 0.065
  10788. }
  10789. },
  10790. side: {
  10791. height: math.unit(2.4, "meters"),
  10792. weight: math.unit(70, "kg"),
  10793. name: "Side",
  10794. image: {
  10795. source: "./media/characters/nyanuxk/side.svg",
  10796. extra: 1190 / 1132,
  10797. bottom: 0.007
  10798. }
  10799. },
  10800. back: {
  10801. height: math.unit(2.4, "meters"),
  10802. weight: math.unit(70, "kg"),
  10803. name: "Back",
  10804. image: {
  10805. source: "./media/characters/nyanuxk/back.svg",
  10806. extra: 1200 / 1141,
  10807. bottom: 0.015
  10808. }
  10809. },
  10810. foot: {
  10811. height: math.unit(0.52, "meters"),
  10812. name: "Foot",
  10813. image: {
  10814. source: "./media/characters/nyanuxk/foot.svg"
  10815. }
  10816. },
  10817. },
  10818. [
  10819. {
  10820. name: "Micro",
  10821. height: math.unit(2, "cm")
  10822. },
  10823. {
  10824. name: "Normal",
  10825. height: math.unit(2.4, "meters"),
  10826. default: true
  10827. },
  10828. {
  10829. name: "Smaller Macro",
  10830. height: math.unit(120, "meters")
  10831. },
  10832. {
  10833. name: "Bigger Macro",
  10834. height: math.unit(1.2, "km")
  10835. },
  10836. {
  10837. name: "Megamacro",
  10838. height: math.unit(15, "kilometers")
  10839. },
  10840. {
  10841. name: "Gigamacro",
  10842. height: math.unit(2000, "km")
  10843. },
  10844. {
  10845. name: "Teramacro",
  10846. height: math.unit(500000, "km")
  10847. },
  10848. ]
  10849. ))
  10850. characterMakers.push(() => makeCharacter(
  10851. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10852. {
  10853. side: {
  10854. height: math.unit(6, "feet"),
  10855. name: "Side",
  10856. image: {
  10857. source: "./media/characters/ailbhe/side.svg",
  10858. extra: 757 / 464,
  10859. bottom: 0.041
  10860. }
  10861. },
  10862. },
  10863. [
  10864. {
  10865. name: "Normal",
  10866. height: math.unit(1.07, "meters"),
  10867. default: true
  10868. },
  10869. ]
  10870. ))
  10871. characterMakers.push(() => makeCharacter(
  10872. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10873. {
  10874. front: {
  10875. height: math.unit(6, "feet"),
  10876. weight: math.unit(120, "kg"),
  10877. name: "Front",
  10878. image: {
  10879. source: "./media/characters/zevulfius/front.svg",
  10880. extra: 965 / 903
  10881. }
  10882. },
  10883. side: {
  10884. height: math.unit(6, "feet"),
  10885. weight: math.unit(120, "kg"),
  10886. name: "Side",
  10887. image: {
  10888. source: "./media/characters/zevulfius/side.svg",
  10889. extra: 939 / 900
  10890. }
  10891. },
  10892. back: {
  10893. height: math.unit(6, "feet"),
  10894. weight: math.unit(120, "kg"),
  10895. name: "Back",
  10896. image: {
  10897. source: "./media/characters/zevulfius/back.svg",
  10898. extra: 918 / 854,
  10899. bottom: 0.005
  10900. }
  10901. },
  10902. foot: {
  10903. height: math.unit(6 / 3.72, "feet"),
  10904. name: "Foot",
  10905. image: {
  10906. source: "./media/characters/zevulfius/foot.svg"
  10907. }
  10908. },
  10909. },
  10910. [
  10911. {
  10912. name: "Macro",
  10913. height: math.unit(750, "meters")
  10914. },
  10915. {
  10916. name: "Megamacro",
  10917. height: math.unit(20, "km"),
  10918. default: true
  10919. },
  10920. {
  10921. name: "Gigamacro",
  10922. height: math.unit(2000, "km")
  10923. },
  10924. {
  10925. name: "Teramacro",
  10926. height: math.unit(250000, "km")
  10927. },
  10928. ]
  10929. ))
  10930. characterMakers.push(() => makeCharacter(
  10931. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10932. {
  10933. front: {
  10934. height: math.unit(100, "feet"),
  10935. weight: math.unit(350, "kg"),
  10936. name: "Front",
  10937. image: {
  10938. source: "./media/characters/rikes/front.svg",
  10939. extra: 1565 / 1483,
  10940. bottom: 0.017
  10941. }
  10942. },
  10943. },
  10944. [
  10945. {
  10946. name: "Macro",
  10947. height: math.unit(100, "feet"),
  10948. default: true
  10949. },
  10950. ]
  10951. ))
  10952. characterMakers.push(() => makeCharacter(
  10953. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10954. {
  10955. front: {
  10956. height: math.unit(8, "feet"),
  10957. weight: math.unit(356, "lb"),
  10958. name: "Front",
  10959. image: {
  10960. source: "./media/characters/adam-silver-mane/front.svg",
  10961. extra: 1036/937,
  10962. bottom: 63/1099
  10963. }
  10964. },
  10965. side: {
  10966. height: math.unit(8, "feet"),
  10967. weight: math.unit(356, "lb"),
  10968. name: "Side",
  10969. image: {
  10970. source: "./media/characters/adam-silver-mane/side.svg",
  10971. extra: 997/901,
  10972. bottom: 59/1056
  10973. }
  10974. },
  10975. frontNsfw: {
  10976. height: math.unit(8, "feet"),
  10977. weight: math.unit(356, "lb"),
  10978. name: "Front (NSFW)",
  10979. image: {
  10980. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10981. extra: 1036/937,
  10982. bottom: 63/1099
  10983. }
  10984. },
  10985. sideNsfw: {
  10986. height: math.unit(8, "feet"),
  10987. weight: math.unit(356, "lb"),
  10988. name: "Side (NSFW)",
  10989. image: {
  10990. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10991. extra: 997/901,
  10992. bottom: 59/1056
  10993. }
  10994. },
  10995. dick: {
  10996. height: math.unit(2.1, "feet"),
  10997. name: "Dick",
  10998. image: {
  10999. source: "./media/characters/adam-silver-mane/dick.svg"
  11000. }
  11001. },
  11002. taur: {
  11003. height: math.unit(16, "feet"),
  11004. weight: math.unit(1500, "kg"),
  11005. name: "Taur",
  11006. image: {
  11007. source: "./media/characters/adam-silver-mane/taur.svg",
  11008. extra: 1713 / 1571,
  11009. bottom: 0.01
  11010. }
  11011. },
  11012. },
  11013. [
  11014. {
  11015. name: "Normal",
  11016. height: math.unit(8, "feet")
  11017. },
  11018. {
  11019. name: "Minimacro",
  11020. height: math.unit(80, "feet")
  11021. },
  11022. {
  11023. name: "MDA",
  11024. height: math.unit(80, "meters")
  11025. },
  11026. {
  11027. name: "Macro",
  11028. height: math.unit(800, "feet"),
  11029. default: true
  11030. },
  11031. {
  11032. name: "Megamacro",
  11033. height: math.unit(8000, "feet")
  11034. },
  11035. {
  11036. name: "Gigamacro",
  11037. height: math.unit(800, "miles")
  11038. },
  11039. {
  11040. name: "Teramacro",
  11041. height: math.unit(80000, "miles")
  11042. },
  11043. {
  11044. name: "Celestial",
  11045. height: math.unit(8e6, "miles")
  11046. },
  11047. {
  11048. name: "Star Dragon",
  11049. height: math.unit(800000, "parsecs")
  11050. },
  11051. {
  11052. name: "Godly",
  11053. height: math.unit(800, "teraparsecs")
  11054. },
  11055. ]
  11056. ))
  11057. characterMakers.push(() => makeCharacter(
  11058. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11059. {
  11060. front: {
  11061. height: math.unit(6, "feet"),
  11062. weight: math.unit(150, "lb"),
  11063. name: "Front",
  11064. image: {
  11065. source: "./media/characters/ky'owin/front.svg",
  11066. extra: 3888 / 3068,
  11067. bottom: 0.015
  11068. }
  11069. },
  11070. },
  11071. [
  11072. {
  11073. name: "Normal",
  11074. height: math.unit(6 + 8 / 12, "feet")
  11075. },
  11076. {
  11077. name: "Large",
  11078. height: math.unit(68, "feet")
  11079. },
  11080. {
  11081. name: "Macro",
  11082. height: math.unit(132, "feet")
  11083. },
  11084. {
  11085. name: "Macro+",
  11086. height: math.unit(340, "feet")
  11087. },
  11088. {
  11089. name: "Macro++",
  11090. height: math.unit(680, "feet"),
  11091. default: true
  11092. },
  11093. {
  11094. name: "Megamacro",
  11095. height: math.unit(1, "mile")
  11096. },
  11097. {
  11098. name: "Megamacro+",
  11099. height: math.unit(10, "miles")
  11100. },
  11101. ]
  11102. ))
  11103. characterMakers.push(() => makeCharacter(
  11104. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11105. {
  11106. front: {
  11107. height: math.unit(4, "feet"),
  11108. weight: math.unit(50, "lb"),
  11109. name: "Front",
  11110. image: {
  11111. source: "./media/characters/mal/front.svg",
  11112. extra: 785 / 724,
  11113. bottom: 0.07
  11114. }
  11115. },
  11116. },
  11117. [
  11118. {
  11119. name: "Micro",
  11120. height: math.unit(4, "inches")
  11121. },
  11122. {
  11123. name: "Normal",
  11124. height: math.unit(4, "feet"),
  11125. default: true
  11126. },
  11127. {
  11128. name: "Macro",
  11129. height: math.unit(200, "feet")
  11130. },
  11131. ]
  11132. ))
  11133. characterMakers.push(() => makeCharacter(
  11134. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11135. {
  11136. front: {
  11137. height: math.unit(6, "feet"),
  11138. weight: math.unit(150, "lb"),
  11139. name: "Front",
  11140. image: {
  11141. source: "./media/characters/jordan-deware/front.svg",
  11142. extra: 1191 / 1012
  11143. }
  11144. },
  11145. },
  11146. [
  11147. {
  11148. name: "Nano",
  11149. height: math.unit(0.01, "mm")
  11150. },
  11151. {
  11152. name: "Minimicro",
  11153. height: math.unit(1, "mm")
  11154. },
  11155. {
  11156. name: "Micro",
  11157. height: math.unit(0.5, "inches")
  11158. },
  11159. {
  11160. name: "Normal",
  11161. height: math.unit(4, "feet"),
  11162. default: true
  11163. },
  11164. {
  11165. name: "Minimacro",
  11166. height: math.unit(40, "meters")
  11167. },
  11168. {
  11169. name: "Small Macro",
  11170. height: math.unit(400, "meters")
  11171. },
  11172. {
  11173. name: "Macro",
  11174. height: math.unit(4, "miles")
  11175. },
  11176. {
  11177. name: "Megamacro",
  11178. height: math.unit(40, "miles")
  11179. },
  11180. {
  11181. name: "Megamacro+",
  11182. height: math.unit(400, "miles")
  11183. },
  11184. {
  11185. name: "Gigamacro",
  11186. height: math.unit(400000, "miles")
  11187. },
  11188. ]
  11189. ))
  11190. characterMakers.push(() => makeCharacter(
  11191. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11192. {
  11193. side: {
  11194. height: math.unit(6, "feet"),
  11195. weight: math.unit(150, "lb"),
  11196. name: "Side",
  11197. image: {
  11198. source: "./media/characters/kimiko/side.svg",
  11199. extra: 600 / 358
  11200. }
  11201. },
  11202. },
  11203. [
  11204. {
  11205. name: "Normal",
  11206. height: math.unit(15, "feet"),
  11207. default: true
  11208. },
  11209. {
  11210. name: "Macro",
  11211. height: math.unit(220, "feet")
  11212. },
  11213. {
  11214. name: "Macro+",
  11215. height: math.unit(1450, "feet")
  11216. },
  11217. {
  11218. name: "Megamacro",
  11219. height: math.unit(11500, "feet")
  11220. },
  11221. {
  11222. name: "Gigamacro",
  11223. height: math.unit(9500, "miles")
  11224. },
  11225. {
  11226. name: "Teramacro",
  11227. height: math.unit(2208005005, "miles")
  11228. },
  11229. {
  11230. name: "Examacro",
  11231. height: math.unit(2750, "parsecs")
  11232. },
  11233. {
  11234. name: "Zettamacro",
  11235. height: math.unit(101500, "parsecs")
  11236. },
  11237. ]
  11238. ))
  11239. characterMakers.push(() => makeCharacter(
  11240. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11241. {
  11242. front: {
  11243. height: math.unit(6, "feet"),
  11244. weight: math.unit(70, "kg"),
  11245. name: "Front",
  11246. image: {
  11247. source: "./media/characters/andrew-sleepy/front.svg"
  11248. }
  11249. },
  11250. side: {
  11251. height: math.unit(6, "feet"),
  11252. weight: math.unit(70, "kg"),
  11253. name: "Side",
  11254. image: {
  11255. source: "./media/characters/andrew-sleepy/side.svg"
  11256. }
  11257. },
  11258. },
  11259. [
  11260. {
  11261. name: "Micro",
  11262. height: math.unit(1, "mm"),
  11263. default: true
  11264. },
  11265. ]
  11266. ))
  11267. characterMakers.push(() => makeCharacter(
  11268. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11269. {
  11270. front: {
  11271. height: math.unit(6, "feet"),
  11272. weight: math.unit(150, "lb"),
  11273. name: "Front",
  11274. image: {
  11275. source: "./media/characters/judio/front.svg",
  11276. extra: 1258 / 1110
  11277. }
  11278. },
  11279. },
  11280. [
  11281. {
  11282. name: "Normal",
  11283. height: math.unit(5 + 6 / 12, "feet")
  11284. },
  11285. {
  11286. name: "Macro",
  11287. height: math.unit(1000, "feet"),
  11288. default: true
  11289. },
  11290. {
  11291. name: "Megamacro",
  11292. height: math.unit(10, "miles")
  11293. },
  11294. ]
  11295. ))
  11296. characterMakers.push(() => makeCharacter(
  11297. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11298. {
  11299. frontDressed: {
  11300. height: math.unit(6, "feet"),
  11301. weight: math.unit(68, "kg"),
  11302. name: "Front (Dressed)",
  11303. image: {
  11304. source: "./media/characters/nomaxice/front-dressed.svg",
  11305. extra: 1137/824,
  11306. bottom: 74/1211
  11307. }
  11308. },
  11309. frontShorts: {
  11310. height: math.unit(6, "feet"),
  11311. weight: math.unit(68, "kg"),
  11312. name: "Front (Shorts)",
  11313. image: {
  11314. source: "./media/characters/nomaxice/front-shorts.svg",
  11315. extra: 1137/824,
  11316. bottom: 74/1211
  11317. }
  11318. },
  11319. back: {
  11320. height: math.unit(6, "feet"),
  11321. weight: math.unit(68, "kg"),
  11322. name: "Back",
  11323. image: {
  11324. source: "./media/characters/nomaxice/back.svg",
  11325. extra: 822/786,
  11326. bottom: 39/861
  11327. }
  11328. },
  11329. hand: {
  11330. height: math.unit(0.565, "feet"),
  11331. name: "Hand",
  11332. image: {
  11333. source: "./media/characters/nomaxice/hand.svg"
  11334. }
  11335. },
  11336. foot: {
  11337. height: math.unit(1, "feet"),
  11338. name: "Foot",
  11339. image: {
  11340. source: "./media/characters/nomaxice/foot.svg"
  11341. }
  11342. },
  11343. },
  11344. [
  11345. {
  11346. name: "Micro",
  11347. height: math.unit(8, "cm")
  11348. },
  11349. {
  11350. name: "Norm",
  11351. height: math.unit(1.82, "m")
  11352. },
  11353. {
  11354. name: "Norm+",
  11355. height: math.unit(8.8, "feet"),
  11356. default: true
  11357. },
  11358. {
  11359. name: "Big",
  11360. height: math.unit(8, "meters")
  11361. },
  11362. {
  11363. name: "Macro",
  11364. height: math.unit(18, "meters")
  11365. },
  11366. {
  11367. name: "Macro+",
  11368. height: math.unit(88, "meters")
  11369. },
  11370. ]
  11371. ))
  11372. characterMakers.push(() => makeCharacter(
  11373. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11374. {
  11375. front: {
  11376. height: math.unit(12, "feet"),
  11377. weight: math.unit(1.5, "tons"),
  11378. name: "Front",
  11379. image: {
  11380. source: "./media/characters/dydros/front.svg",
  11381. extra: 863 / 800,
  11382. bottom: 0.015
  11383. }
  11384. },
  11385. back: {
  11386. height: math.unit(12, "feet"),
  11387. weight: math.unit(1.5, "tons"),
  11388. name: "Back",
  11389. image: {
  11390. source: "./media/characters/dydros/back.svg",
  11391. extra: 900 / 843,
  11392. bottom: 0.005
  11393. }
  11394. },
  11395. },
  11396. [
  11397. {
  11398. name: "Normal",
  11399. height: math.unit(12, "feet"),
  11400. default: true
  11401. },
  11402. ]
  11403. ))
  11404. characterMakers.push(() => makeCharacter(
  11405. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11406. {
  11407. front: {
  11408. height: math.unit(6, "feet"),
  11409. weight: math.unit(100, "kg"),
  11410. name: "Front",
  11411. image: {
  11412. source: "./media/characters/riggi/front.svg",
  11413. extra: 5787 / 5303
  11414. }
  11415. },
  11416. hyper: {
  11417. height: math.unit(6 * 5 / 3, "feet"),
  11418. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11419. name: "Hyper",
  11420. image: {
  11421. source: "./media/characters/riggi/hyper.svg",
  11422. extra: 3595 / 3485
  11423. }
  11424. },
  11425. },
  11426. [
  11427. {
  11428. name: "Small Macro",
  11429. height: math.unit(50, "feet")
  11430. },
  11431. {
  11432. name: "Default",
  11433. height: math.unit(200, "feet"),
  11434. default: true
  11435. },
  11436. {
  11437. name: "Loom",
  11438. height: math.unit(10000, "feet")
  11439. },
  11440. {
  11441. name: "Cruising Altitude",
  11442. height: math.unit(30000, "feet")
  11443. },
  11444. {
  11445. name: "Megamacro",
  11446. height: math.unit(100, "miles")
  11447. },
  11448. {
  11449. name: "Continent Sized",
  11450. height: math.unit(2800, "miles")
  11451. },
  11452. {
  11453. name: "Earth Sized",
  11454. height: math.unit(8000, "miles")
  11455. },
  11456. ]
  11457. ))
  11458. characterMakers.push(() => makeCharacter(
  11459. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11460. {
  11461. front: {
  11462. height: math.unit(6, "feet"),
  11463. weight: math.unit(250, "lb"),
  11464. name: "Front",
  11465. image: {
  11466. source: "./media/characters/alexi/front.svg",
  11467. extra: 3483 / 3291,
  11468. bottom: 0.04
  11469. }
  11470. },
  11471. back: {
  11472. height: math.unit(6, "feet"),
  11473. weight: math.unit(250, "lb"),
  11474. name: "Back",
  11475. image: {
  11476. source: "./media/characters/alexi/back.svg",
  11477. extra: 3533 / 3356,
  11478. bottom: 0.021
  11479. }
  11480. },
  11481. frontTransforming: {
  11482. height: math.unit(8.58, "feet"),
  11483. weight: math.unit(1300, "lb"),
  11484. name: "Transforming",
  11485. image: {
  11486. source: "./media/characters/alexi/front-transforming.svg",
  11487. extra: 437 / 409,
  11488. bottom: 19 / 458.66
  11489. }
  11490. },
  11491. frontTransformed: {
  11492. height: math.unit(12.5, "feet"),
  11493. weight: math.unit(4000, "lb"),
  11494. name: "Transformed",
  11495. image: {
  11496. source: "./media/characters/alexi/front-transformed.svg",
  11497. extra: 639 / 614,
  11498. bottom: 30.55 / 671
  11499. }
  11500. },
  11501. },
  11502. [
  11503. {
  11504. name: "Normal",
  11505. height: math.unit(14, "feet"),
  11506. default: true
  11507. },
  11508. {
  11509. name: "Minimacro",
  11510. height: math.unit(30, "meters")
  11511. },
  11512. {
  11513. name: "Macro",
  11514. height: math.unit(500, "meters")
  11515. },
  11516. {
  11517. name: "Megamacro",
  11518. height: math.unit(9000, "km")
  11519. },
  11520. {
  11521. name: "Teramacro",
  11522. height: math.unit(384000, "km")
  11523. },
  11524. ]
  11525. ))
  11526. characterMakers.push(() => makeCharacter(
  11527. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11528. {
  11529. front: {
  11530. height: math.unit(6, "feet"),
  11531. weight: math.unit(150, "lb"),
  11532. name: "Front",
  11533. image: {
  11534. source: "./media/characters/kayroo/front.svg",
  11535. extra: 1153 / 1038,
  11536. bottom: 0.06
  11537. }
  11538. },
  11539. foot: {
  11540. height: math.unit(6, "feet"),
  11541. weight: math.unit(150, "lb"),
  11542. name: "Foot",
  11543. image: {
  11544. source: "./media/characters/kayroo/foot.svg"
  11545. }
  11546. },
  11547. },
  11548. [
  11549. {
  11550. name: "Normal",
  11551. height: math.unit(8, "feet"),
  11552. default: true
  11553. },
  11554. {
  11555. name: "Minimacro",
  11556. height: math.unit(250, "feet")
  11557. },
  11558. {
  11559. name: "Macro",
  11560. height: math.unit(2800, "feet")
  11561. },
  11562. {
  11563. name: "Megamacro",
  11564. height: math.unit(5200, "feet")
  11565. },
  11566. {
  11567. name: "Gigamacro",
  11568. height: math.unit(27000, "feet")
  11569. },
  11570. {
  11571. name: "Omega",
  11572. height: math.unit(45000, "feet")
  11573. },
  11574. ]
  11575. ))
  11576. characterMakers.push(() => makeCharacter(
  11577. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11578. {
  11579. front: {
  11580. height: math.unit(18, "feet"),
  11581. weight: math.unit(5800, "lb"),
  11582. name: "Front",
  11583. image: {
  11584. source: "./media/characters/rhys/front.svg",
  11585. extra: 3386 / 3090,
  11586. bottom: 0.07
  11587. }
  11588. },
  11589. },
  11590. [
  11591. {
  11592. name: "Normal",
  11593. height: math.unit(18, "feet"),
  11594. default: true
  11595. },
  11596. {
  11597. name: "Working Size",
  11598. height: math.unit(200, "feet")
  11599. },
  11600. {
  11601. name: "Demolition Size",
  11602. height: math.unit(2000, "feet")
  11603. },
  11604. {
  11605. name: "Maximum Licensed Size",
  11606. height: math.unit(5, "miles")
  11607. },
  11608. {
  11609. name: "Maximum Observed Size",
  11610. height: math.unit(10, "yottameters")
  11611. },
  11612. ]
  11613. ))
  11614. characterMakers.push(() => makeCharacter(
  11615. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11616. {
  11617. front: {
  11618. height: math.unit(6, "feet"),
  11619. weight: math.unit(250, "lb"),
  11620. name: "Front",
  11621. image: {
  11622. source: "./media/characters/toto/front.svg",
  11623. extra: 527 / 479,
  11624. bottom: 0.05
  11625. }
  11626. },
  11627. },
  11628. [
  11629. {
  11630. name: "Micro",
  11631. height: math.unit(3, "feet")
  11632. },
  11633. {
  11634. name: "Normal",
  11635. height: math.unit(10, "feet")
  11636. },
  11637. {
  11638. name: "Macro",
  11639. height: math.unit(150, "feet"),
  11640. default: true
  11641. },
  11642. {
  11643. name: "Megamacro",
  11644. height: math.unit(1200, "feet")
  11645. },
  11646. ]
  11647. ))
  11648. characterMakers.push(() => makeCharacter(
  11649. { name: "King", species: ["lion"], tags: ["anthro"] },
  11650. {
  11651. back: {
  11652. height: math.unit(6, "feet"),
  11653. weight: math.unit(150, "lb"),
  11654. name: "Back",
  11655. image: {
  11656. source: "./media/characters/king/back.svg"
  11657. }
  11658. },
  11659. },
  11660. [
  11661. {
  11662. name: "Micro",
  11663. height: math.unit(2, "inches")
  11664. },
  11665. {
  11666. name: "Normal",
  11667. height: math.unit(8, "feet")
  11668. },
  11669. {
  11670. name: "Macro",
  11671. height: math.unit(200, "feet"),
  11672. default: true
  11673. },
  11674. {
  11675. name: "Megamacro",
  11676. height: math.unit(50, "miles")
  11677. },
  11678. ]
  11679. ))
  11680. characterMakers.push(() => makeCharacter(
  11681. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11682. {
  11683. front: {
  11684. height: math.unit(11, "feet"),
  11685. weight: math.unit(1400, "lb"),
  11686. name: "Front",
  11687. image: {
  11688. source: "./media/characters/cordite/front.svg",
  11689. extra: 1919/1827,
  11690. bottom: 40/1959
  11691. }
  11692. },
  11693. side: {
  11694. height: math.unit(11, "feet"),
  11695. weight: math.unit(1400, "lb"),
  11696. name: "Side",
  11697. image: {
  11698. source: "./media/characters/cordite/side.svg",
  11699. extra: 1908/1793,
  11700. bottom: 38/1946
  11701. }
  11702. },
  11703. back: {
  11704. height: math.unit(11, "feet"),
  11705. weight: math.unit(1400, "lb"),
  11706. name: "Back",
  11707. image: {
  11708. source: "./media/characters/cordite/back.svg",
  11709. extra: 1938/1837,
  11710. bottom: 10/1948
  11711. }
  11712. },
  11713. feral: {
  11714. height: math.unit(2, "feet"),
  11715. weight: math.unit(90, "lb"),
  11716. name: "Feral",
  11717. image: {
  11718. source: "./media/characters/cordite/feral.svg",
  11719. extra: 1260 / 755,
  11720. bottom: 0.05
  11721. }
  11722. },
  11723. },
  11724. [
  11725. {
  11726. name: "Normal",
  11727. height: math.unit(11, "feet"),
  11728. default: true
  11729. },
  11730. ]
  11731. ))
  11732. characterMakers.push(() => makeCharacter(
  11733. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11734. {
  11735. front: {
  11736. height: math.unit(6, "feet"),
  11737. weight: math.unit(150, "lb"),
  11738. name: "Front",
  11739. image: {
  11740. source: "./media/characters/pianostrong/front.svg",
  11741. extra: 6577 / 6254,
  11742. bottom: 0.02
  11743. }
  11744. },
  11745. side: {
  11746. height: math.unit(6, "feet"),
  11747. weight: math.unit(150, "lb"),
  11748. name: "Side",
  11749. image: {
  11750. source: "./media/characters/pianostrong/side.svg",
  11751. extra: 6106 / 5730
  11752. }
  11753. },
  11754. back: {
  11755. height: math.unit(6, "feet"),
  11756. weight: math.unit(150, "lb"),
  11757. name: "Back",
  11758. image: {
  11759. source: "./media/characters/pianostrong/back.svg",
  11760. extra: 6085 / 5733,
  11761. bottom: 0.01
  11762. }
  11763. },
  11764. },
  11765. [
  11766. {
  11767. name: "Macro",
  11768. height: math.unit(100, "feet")
  11769. },
  11770. {
  11771. name: "Macro+",
  11772. height: math.unit(300, "feet"),
  11773. default: true
  11774. },
  11775. {
  11776. name: "Macro++",
  11777. height: math.unit(1000, "feet")
  11778. },
  11779. ]
  11780. ))
  11781. characterMakers.push(() => makeCharacter(
  11782. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11783. {
  11784. front: {
  11785. height: math.unit(6, "feet"),
  11786. weight: math.unit(150, "lb"),
  11787. name: "Front",
  11788. image: {
  11789. source: "./media/characters/kona/front.svg",
  11790. extra: 2960 / 2629,
  11791. bottom: 0.005
  11792. }
  11793. },
  11794. },
  11795. [
  11796. {
  11797. name: "Normal",
  11798. height: math.unit(11 + 8 / 12, "feet")
  11799. },
  11800. {
  11801. name: "Macro",
  11802. height: math.unit(850, "feet"),
  11803. default: true
  11804. },
  11805. {
  11806. name: "Macro+",
  11807. height: math.unit(1.5, "km"),
  11808. default: true
  11809. },
  11810. {
  11811. name: "Megamacro",
  11812. height: math.unit(80, "miles")
  11813. },
  11814. {
  11815. name: "Gigamacro",
  11816. height: math.unit(3500, "miles")
  11817. },
  11818. ]
  11819. ))
  11820. characterMakers.push(() => makeCharacter(
  11821. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11822. {
  11823. side: {
  11824. height: math.unit(1.9, "meters"),
  11825. weight: math.unit(326, "kg"),
  11826. name: "Side",
  11827. image: {
  11828. source: "./media/characters/levi/side.svg",
  11829. extra: 1704 / 1334,
  11830. bottom: 0.02
  11831. }
  11832. },
  11833. },
  11834. [
  11835. {
  11836. name: "Normal",
  11837. height: math.unit(1.9, "meters"),
  11838. default: true
  11839. },
  11840. {
  11841. name: "Macro",
  11842. height: math.unit(20, "meters")
  11843. },
  11844. {
  11845. name: "Macro+",
  11846. height: math.unit(200, "meters")
  11847. },
  11848. {
  11849. name: "Megamacro",
  11850. height: math.unit(2, "km")
  11851. },
  11852. {
  11853. name: "Megamacro+",
  11854. height: math.unit(20, "km")
  11855. },
  11856. {
  11857. name: "Gigamacro",
  11858. height: math.unit(2500, "km")
  11859. },
  11860. {
  11861. name: "Gigamacro+",
  11862. height: math.unit(120000, "km")
  11863. },
  11864. {
  11865. name: "Teramacro",
  11866. height: math.unit(7.77e6, "km")
  11867. },
  11868. ]
  11869. ))
  11870. characterMakers.push(() => makeCharacter(
  11871. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11872. {
  11873. front: {
  11874. height: math.unit(6 + 4/12, "feet"),
  11875. weight: math.unit(190, "lb"),
  11876. name: "Front",
  11877. image: {
  11878. source: "./media/characters/bmc/front.svg",
  11879. extra: 1626/1472,
  11880. bottom: 79/1705
  11881. }
  11882. },
  11883. back: {
  11884. height: math.unit(6 + 4/12, "feet"),
  11885. weight: math.unit(190, "lb"),
  11886. name: "Back",
  11887. image: {
  11888. source: "./media/characters/bmc/back.svg",
  11889. extra: 1640/1479,
  11890. bottom: 45/1685
  11891. }
  11892. },
  11893. frontArmor: {
  11894. height: math.unit(6 + 4/12, "feet"),
  11895. weight: math.unit(190, "lb"),
  11896. name: "Front-armor",
  11897. image: {
  11898. source: "./media/characters/bmc/front-armor.svg",
  11899. extra: 1538/1468,
  11900. bottom: 79/1617
  11901. }
  11902. },
  11903. },
  11904. [
  11905. {
  11906. name: "Human-sized",
  11907. height: math.unit(6 + 4 / 12, "feet")
  11908. },
  11909. {
  11910. name: "Interactive Size",
  11911. height: math.unit(25, "feet")
  11912. },
  11913. {
  11914. name: "Small",
  11915. height: math.unit(250, "feet")
  11916. },
  11917. {
  11918. name: "Normal",
  11919. height: math.unit(1250, "feet"),
  11920. default: true
  11921. },
  11922. {
  11923. name: "Good Day",
  11924. height: math.unit(88, "miles")
  11925. },
  11926. {
  11927. name: "Largest Measured Size",
  11928. height: math.unit(105.960, "galaxies")
  11929. },
  11930. ]
  11931. ))
  11932. characterMakers.push(() => makeCharacter(
  11933. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11934. {
  11935. front: {
  11936. height: math.unit(20, "feet"),
  11937. weight: math.unit(2016, "kg"),
  11938. name: "Front",
  11939. image: {
  11940. source: "./media/characters/sven-the-kaiju/front.svg",
  11941. extra: 1277/1250,
  11942. bottom: 35/1312
  11943. }
  11944. },
  11945. mouth: {
  11946. height: math.unit(1.85, "feet"),
  11947. name: "Mouth",
  11948. image: {
  11949. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11950. }
  11951. },
  11952. },
  11953. [
  11954. {
  11955. name: "Fairy",
  11956. height: math.unit(6, "inches")
  11957. },
  11958. {
  11959. name: "Normal",
  11960. height: math.unit(20, "feet"),
  11961. default: true
  11962. },
  11963. {
  11964. name: "Rampage",
  11965. height: math.unit(200, "feet")
  11966. },
  11967. {
  11968. name: "Archfey Forest Guardian",
  11969. height: math.unit(1, "mile")
  11970. },
  11971. ]
  11972. ))
  11973. characterMakers.push(() => makeCharacter(
  11974. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11975. {
  11976. front: {
  11977. height: math.unit(4, "meters"),
  11978. weight: math.unit(2, "tons"),
  11979. name: "Front",
  11980. image: {
  11981. source: "./media/characters/marik/front.svg",
  11982. extra: 1057 / 1003,
  11983. bottom: 0.08
  11984. }
  11985. },
  11986. },
  11987. [
  11988. {
  11989. name: "Normal",
  11990. height: math.unit(4, "meters"),
  11991. default: true
  11992. },
  11993. {
  11994. name: "Macro",
  11995. height: math.unit(20, "meters")
  11996. },
  11997. {
  11998. name: "Megamacro",
  11999. height: math.unit(50, "km")
  12000. },
  12001. {
  12002. name: "Gigamacro",
  12003. height: math.unit(100, "km")
  12004. },
  12005. {
  12006. name: "Alpha Macro",
  12007. height: math.unit(7.88e7, "yottameters")
  12008. },
  12009. ]
  12010. ))
  12011. characterMakers.push(() => makeCharacter(
  12012. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12013. {
  12014. front: {
  12015. height: math.unit(6, "feet"),
  12016. weight: math.unit(110, "lb"),
  12017. name: "Front",
  12018. image: {
  12019. source: "./media/characters/mel/front.svg",
  12020. extra: 736 / 617,
  12021. bottom: 0.017
  12022. }
  12023. },
  12024. },
  12025. [
  12026. {
  12027. name: "Pico",
  12028. height: math.unit(3, "pm")
  12029. },
  12030. {
  12031. name: "Nano",
  12032. height: math.unit(3, "nm")
  12033. },
  12034. {
  12035. name: "Micro",
  12036. height: math.unit(0.3, "mm"),
  12037. default: true
  12038. },
  12039. {
  12040. name: "Micro+",
  12041. height: math.unit(3, "mm")
  12042. },
  12043. {
  12044. name: "Normal",
  12045. height: math.unit(5 + 10.5 / 12, "feet")
  12046. },
  12047. ]
  12048. ))
  12049. characterMakers.push(() => makeCharacter(
  12050. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12051. {
  12052. kaiju: {
  12053. height: math.unit(1.75, "meters"),
  12054. weight: math.unit(55, "kg"),
  12055. name: "Kaiju",
  12056. image: {
  12057. source: "./media/characters/lykonous/kaiju.svg",
  12058. extra: 1055 / 946,
  12059. bottom: 0.135
  12060. }
  12061. },
  12062. },
  12063. [
  12064. {
  12065. name: "Normal",
  12066. height: math.unit(2.5, "meters"),
  12067. default: true
  12068. },
  12069. {
  12070. name: "Kaiju Dragon",
  12071. height: math.unit(60, "meters")
  12072. },
  12073. {
  12074. name: "Mega Kaiju",
  12075. height: math.unit(120, "km")
  12076. },
  12077. {
  12078. name: "Giga Kaiju",
  12079. height: math.unit(200, "megameters")
  12080. },
  12081. {
  12082. name: "Terra Kaiju",
  12083. height: math.unit(400, "gigameters")
  12084. },
  12085. {
  12086. name: "Kaiju Dragon God",
  12087. height: math.unit(13000, "exaparsecs")
  12088. },
  12089. ]
  12090. ))
  12091. characterMakers.push(() => makeCharacter(
  12092. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12093. {
  12094. front: {
  12095. height: math.unit(6, "feet"),
  12096. weight: math.unit(150, "lb"),
  12097. name: "Front",
  12098. image: {
  12099. source: "./media/characters/blü/front.svg",
  12100. extra: 1883 / 1564,
  12101. bottom: 0.031
  12102. }
  12103. },
  12104. },
  12105. [
  12106. {
  12107. name: "Normal",
  12108. height: math.unit(13, "feet"),
  12109. default: true
  12110. },
  12111. {
  12112. name: "Big Boi",
  12113. height: math.unit(150, "meters")
  12114. },
  12115. {
  12116. name: "Mini Stomper",
  12117. height: math.unit(300, "meters")
  12118. },
  12119. {
  12120. name: "Macro",
  12121. height: math.unit(1000, "meters")
  12122. },
  12123. {
  12124. name: "Megamacro",
  12125. height: math.unit(11000, "meters")
  12126. },
  12127. {
  12128. name: "Gigamacro",
  12129. height: math.unit(11000, "km")
  12130. },
  12131. {
  12132. name: "Teramacro",
  12133. height: math.unit(420000, "km")
  12134. },
  12135. {
  12136. name: "Examacro",
  12137. height: math.unit(120, "parsecs")
  12138. },
  12139. {
  12140. name: "God Tho",
  12141. height: math.unit(98000000000, "parsecs")
  12142. },
  12143. ]
  12144. ))
  12145. characterMakers.push(() => makeCharacter(
  12146. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12147. {
  12148. taurFront: {
  12149. height: math.unit(6, "feet"),
  12150. weight: math.unit(200, "lb"),
  12151. name: "Taur (Front)",
  12152. image: {
  12153. source: "./media/characters/scales/taur-front.svg",
  12154. extra: 1,
  12155. bottom: 0.05
  12156. }
  12157. },
  12158. taurBack: {
  12159. height: math.unit(6, "feet"),
  12160. weight: math.unit(200, "lb"),
  12161. name: "Taur (Back)",
  12162. image: {
  12163. source: "./media/characters/scales/taur-back.svg",
  12164. extra: 1,
  12165. bottom: 0.08
  12166. }
  12167. },
  12168. anthro: {
  12169. height: math.unit(6 * 7 / 12, "feet"),
  12170. weight: math.unit(100, "lb"),
  12171. name: "Anthro",
  12172. image: {
  12173. source: "./media/characters/scales/anthro.svg",
  12174. extra: 1,
  12175. bottom: 0.06
  12176. }
  12177. },
  12178. },
  12179. [
  12180. {
  12181. name: "Normal",
  12182. height: math.unit(12, "feet"),
  12183. default: true
  12184. },
  12185. ]
  12186. ))
  12187. characterMakers.push(() => makeCharacter(
  12188. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12189. {
  12190. front: {
  12191. height: math.unit(6, "feet"),
  12192. weight: math.unit(150, "lb"),
  12193. name: "Front",
  12194. image: {
  12195. source: "./media/characters/koragos/front.svg",
  12196. extra: 841 / 794,
  12197. bottom: 0.035
  12198. }
  12199. },
  12200. back: {
  12201. height: math.unit(6, "feet"),
  12202. weight: math.unit(150, "lb"),
  12203. name: "Back",
  12204. image: {
  12205. source: "./media/characters/koragos/back.svg",
  12206. extra: 841 / 810,
  12207. bottom: 0.022
  12208. }
  12209. },
  12210. },
  12211. [
  12212. {
  12213. name: "Normal",
  12214. height: math.unit(6 + 11 / 12, "feet"),
  12215. default: true
  12216. },
  12217. {
  12218. name: "Macro",
  12219. height: math.unit(490, "feet")
  12220. },
  12221. {
  12222. name: "Megamacro",
  12223. height: math.unit(10, "miles")
  12224. },
  12225. {
  12226. name: "Gigamacro",
  12227. height: math.unit(50, "miles")
  12228. },
  12229. ]
  12230. ))
  12231. characterMakers.push(() => makeCharacter(
  12232. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12233. {
  12234. front: {
  12235. height: math.unit(6, "feet"),
  12236. weight: math.unit(250, "lb"),
  12237. name: "Front",
  12238. image: {
  12239. source: "./media/characters/xylrem/front.svg",
  12240. extra: 3323 / 3050,
  12241. bottom: 0.065
  12242. }
  12243. },
  12244. },
  12245. [
  12246. {
  12247. name: "Micro",
  12248. height: math.unit(4, "feet")
  12249. },
  12250. {
  12251. name: "Normal",
  12252. height: math.unit(16, "feet"),
  12253. default: true
  12254. },
  12255. {
  12256. name: "Macro",
  12257. height: math.unit(2720, "feet")
  12258. },
  12259. {
  12260. name: "Megamacro",
  12261. height: math.unit(25000, "miles")
  12262. },
  12263. ]
  12264. ))
  12265. characterMakers.push(() => makeCharacter(
  12266. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12267. {
  12268. front: {
  12269. height: math.unit(8, "feet"),
  12270. weight: math.unit(250, "kg"),
  12271. name: "Front",
  12272. image: {
  12273. source: "./media/characters/ikideru/front.svg",
  12274. extra: 930 / 870,
  12275. bottom: 0.087
  12276. }
  12277. },
  12278. back: {
  12279. height: math.unit(8, "feet"),
  12280. weight: math.unit(250, "kg"),
  12281. name: "Back",
  12282. image: {
  12283. source: "./media/characters/ikideru/back.svg",
  12284. extra: 919 / 852,
  12285. bottom: 0.055
  12286. }
  12287. },
  12288. },
  12289. [
  12290. {
  12291. name: "Rare",
  12292. height: math.unit(8, "feet"),
  12293. default: true
  12294. },
  12295. {
  12296. name: "Playful Loom",
  12297. height: math.unit(80, "feet")
  12298. },
  12299. {
  12300. name: "City Leaner",
  12301. height: math.unit(230, "feet")
  12302. },
  12303. {
  12304. name: "Megamacro",
  12305. height: math.unit(2500, "feet")
  12306. },
  12307. {
  12308. name: "Gigamacro",
  12309. height: math.unit(26400, "feet")
  12310. },
  12311. {
  12312. name: "Tectonic Shifter",
  12313. height: math.unit(1.7, "megameters")
  12314. },
  12315. {
  12316. name: "Planet Carer",
  12317. height: math.unit(21, "megameters")
  12318. },
  12319. {
  12320. name: "God",
  12321. height: math.unit(11157.22, "parsecs")
  12322. },
  12323. ]
  12324. ))
  12325. characterMakers.push(() => makeCharacter(
  12326. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12327. {
  12328. front: {
  12329. height: math.unit(6, "feet"),
  12330. weight: math.unit(120, "lb"),
  12331. name: "Front",
  12332. image: {
  12333. source: "./media/characters/neo/front.svg"
  12334. }
  12335. },
  12336. },
  12337. [
  12338. {
  12339. name: "Micro",
  12340. height: math.unit(2, "inches"),
  12341. default: true
  12342. },
  12343. {
  12344. name: "Human Size",
  12345. height: math.unit(5 + 8 / 12, "feet")
  12346. },
  12347. ]
  12348. ))
  12349. characterMakers.push(() => makeCharacter(
  12350. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12351. {
  12352. front: {
  12353. height: math.unit(13 + 10 / 12, "feet"),
  12354. weight: math.unit(5320, "lb"),
  12355. name: "Front",
  12356. image: {
  12357. source: "./media/characters/chauncey-chantz/front.svg",
  12358. extra: 1587 / 1435,
  12359. bottom: 0.02
  12360. }
  12361. },
  12362. },
  12363. [
  12364. {
  12365. name: "Normal",
  12366. height: math.unit(13 + 10 / 12, "feet"),
  12367. default: true
  12368. },
  12369. {
  12370. name: "Macro",
  12371. height: math.unit(45, "feet")
  12372. },
  12373. {
  12374. name: "Megamacro",
  12375. height: math.unit(250, "miles")
  12376. },
  12377. {
  12378. name: "Planetary",
  12379. height: math.unit(10000, "miles")
  12380. },
  12381. {
  12382. name: "Galactic",
  12383. height: math.unit(40000, "parsecs")
  12384. },
  12385. {
  12386. name: "Universal",
  12387. height: math.unit(1, "yottameter")
  12388. },
  12389. ]
  12390. ))
  12391. characterMakers.push(() => makeCharacter(
  12392. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12393. {
  12394. front: {
  12395. height: math.unit(6, "feet"),
  12396. weight: math.unit(150, "lb"),
  12397. name: "Front",
  12398. image: {
  12399. source: "./media/characters/epifox/front.svg",
  12400. extra: 1,
  12401. bottom: 0.075
  12402. }
  12403. },
  12404. },
  12405. [
  12406. {
  12407. name: "Micro",
  12408. height: math.unit(6, "inches")
  12409. },
  12410. {
  12411. name: "Normal",
  12412. height: math.unit(12, "feet"),
  12413. default: true
  12414. },
  12415. {
  12416. name: "Macro",
  12417. height: math.unit(3810, "feet")
  12418. },
  12419. {
  12420. name: "Megamacro",
  12421. height: math.unit(500, "miles")
  12422. },
  12423. ]
  12424. ))
  12425. characterMakers.push(() => makeCharacter(
  12426. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12427. {
  12428. front: {
  12429. height: math.unit(1.8796, "m"),
  12430. weight: math.unit(230, "lb"),
  12431. name: "Front",
  12432. image: {
  12433. source: "./media/characters/colin-t/front.svg",
  12434. extra: 1272 / 1193,
  12435. bottom: 0.07
  12436. }
  12437. },
  12438. },
  12439. [
  12440. {
  12441. name: "Micro",
  12442. height: math.unit(0.571, "meters")
  12443. },
  12444. {
  12445. name: "Normal",
  12446. height: math.unit(1.8796, "meters"),
  12447. default: true
  12448. },
  12449. {
  12450. name: "Tall",
  12451. height: math.unit(4, "meters")
  12452. },
  12453. {
  12454. name: "Macro",
  12455. height: math.unit(67.241, "meters")
  12456. },
  12457. {
  12458. name: "Megamacro",
  12459. height: math.unit(371.856, "meters")
  12460. },
  12461. {
  12462. name: "Planetary",
  12463. height: math.unit(12631.5689, "km")
  12464. },
  12465. ]
  12466. ))
  12467. characterMakers.push(() => makeCharacter(
  12468. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12469. {
  12470. front: {
  12471. height: math.unit(1.85, "meters"),
  12472. weight: math.unit(80, "kg"),
  12473. name: "Front",
  12474. image: {
  12475. source: "./media/characters/matvei/front.svg",
  12476. extra: 614 / 594,
  12477. bottom: 0.01
  12478. }
  12479. },
  12480. },
  12481. [
  12482. {
  12483. name: "Normal",
  12484. height: math.unit(1.85, "meters"),
  12485. default: true
  12486. },
  12487. ]
  12488. ))
  12489. characterMakers.push(() => makeCharacter(
  12490. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12491. {
  12492. front: {
  12493. height: math.unit(5 + 9 / 12, "feet"),
  12494. weight: math.unit(70, "lb"),
  12495. name: "Front",
  12496. image: {
  12497. source: "./media/characters/quincy/front.svg",
  12498. extra: 3041 / 2751
  12499. }
  12500. },
  12501. back: {
  12502. height: math.unit(5 + 9 / 12, "feet"),
  12503. weight: math.unit(70, "lb"),
  12504. name: "Back",
  12505. image: {
  12506. source: "./media/characters/quincy/back.svg",
  12507. extra: 3041 / 2751
  12508. }
  12509. },
  12510. flying: {
  12511. height: math.unit(5 + 4 / 12, "feet"),
  12512. weight: math.unit(70, "lb"),
  12513. name: "Flying",
  12514. image: {
  12515. source: "./media/characters/quincy/flying.svg",
  12516. extra: 1044 / 930
  12517. }
  12518. },
  12519. },
  12520. [
  12521. {
  12522. name: "Micro",
  12523. height: math.unit(3, "cm")
  12524. },
  12525. {
  12526. name: "Normal",
  12527. height: math.unit(5 + 9 / 12, "feet")
  12528. },
  12529. {
  12530. name: "Macro",
  12531. height: math.unit(200, "meters"),
  12532. default: true
  12533. },
  12534. {
  12535. name: "Megamacro",
  12536. height: math.unit(1000, "meters")
  12537. },
  12538. ]
  12539. ))
  12540. characterMakers.push(() => makeCharacter(
  12541. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12542. {
  12543. front: {
  12544. height: math.unit(3 + 11/12, "feet"),
  12545. weight: math.unit(50, "lb"),
  12546. name: "Front",
  12547. image: {
  12548. source: "./media/characters/vanrel/front.svg",
  12549. extra: 1104/949,
  12550. bottom: 52/1156
  12551. }
  12552. },
  12553. back: {
  12554. height: math.unit(3 + 11/12, "feet"),
  12555. weight: math.unit(50, "lb"),
  12556. name: "Back",
  12557. image: {
  12558. source: "./media/characters/vanrel/back.svg",
  12559. extra: 1119/976,
  12560. bottom: 37/1156
  12561. }
  12562. },
  12563. tome: {
  12564. height: math.unit(1.35, "feet"),
  12565. weight: math.unit(10, "lb"),
  12566. name: "Vanrel's Tome",
  12567. rename: true,
  12568. image: {
  12569. source: "./media/characters/vanrel/tome.svg"
  12570. }
  12571. },
  12572. beans: {
  12573. height: math.unit(0.89, "feet"),
  12574. name: "Beans",
  12575. image: {
  12576. source: "./media/characters/vanrel/beans.svg"
  12577. }
  12578. },
  12579. },
  12580. [
  12581. {
  12582. name: "Normal",
  12583. height: math.unit(3 + 11/12, "feet"),
  12584. default: true
  12585. },
  12586. ]
  12587. ))
  12588. characterMakers.push(() => makeCharacter(
  12589. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12590. {
  12591. front: {
  12592. height: math.unit(7 + 5 / 12, "feet"),
  12593. name: "Front",
  12594. image: {
  12595. source: "./media/characters/kuiper-vanrel/front.svg",
  12596. extra: 1219/1169,
  12597. bottom: 69/1288
  12598. }
  12599. },
  12600. back: {
  12601. height: math.unit(7 + 5 / 12, "feet"),
  12602. name: "Back",
  12603. image: {
  12604. source: "./media/characters/kuiper-vanrel/back.svg",
  12605. extra: 1236/1193,
  12606. bottom: 27/1263
  12607. }
  12608. },
  12609. foot: {
  12610. height: math.unit(0.55, "meters"),
  12611. name: "Foot",
  12612. image: {
  12613. source: "./media/characters/kuiper-vanrel/foot.svg",
  12614. }
  12615. },
  12616. battle: {
  12617. height: math.unit(6.824, "feet"),
  12618. name: "Battle",
  12619. image: {
  12620. source: "./media/characters/kuiper-vanrel/battle.svg",
  12621. extra: 1466 / 1327,
  12622. bottom: 29 / 1492.5
  12623. }
  12624. },
  12625. meerkui: {
  12626. height: math.unit(18, "inches"),
  12627. name: "Meerkui",
  12628. image: {
  12629. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12630. extra: 1354/1289,
  12631. bottom: 69/1423
  12632. }
  12633. },
  12634. },
  12635. [
  12636. {
  12637. name: "Normal",
  12638. height: math.unit(7 + 5 / 12, "feet"),
  12639. default: true
  12640. },
  12641. ]
  12642. ))
  12643. characterMakers.push(() => makeCharacter(
  12644. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12645. {
  12646. front: {
  12647. height: math.unit(8 + 5 / 12, "feet"),
  12648. name: "Front",
  12649. image: {
  12650. source: "./media/characters/keset-vanrel/front.svg",
  12651. extra: 1231/1148,
  12652. bottom: 82/1313
  12653. }
  12654. },
  12655. back: {
  12656. height: math.unit(8 + 5 / 12, "feet"),
  12657. name: "Back",
  12658. image: {
  12659. source: "./media/characters/keset-vanrel/back.svg",
  12660. extra: 1240/1174,
  12661. bottom: 33/1273
  12662. }
  12663. },
  12664. hand: {
  12665. height: math.unit(0.6, "meters"),
  12666. name: "Hand",
  12667. image: {
  12668. source: "./media/characters/keset-vanrel/hand.svg"
  12669. }
  12670. },
  12671. foot: {
  12672. height: math.unit(0.94978, "meters"),
  12673. name: "Foot",
  12674. image: {
  12675. source: "./media/characters/keset-vanrel/foot.svg"
  12676. }
  12677. },
  12678. battle: {
  12679. height: math.unit(7.408, "feet"),
  12680. name: "Battle",
  12681. image: {
  12682. source: "./media/characters/keset-vanrel/battle.svg",
  12683. extra: 1890 / 1386,
  12684. bottom: 73.28 / 1970
  12685. }
  12686. },
  12687. },
  12688. [
  12689. {
  12690. name: "Normal",
  12691. height: math.unit(8 + 5 / 12, "feet"),
  12692. default: true
  12693. },
  12694. ]
  12695. ))
  12696. characterMakers.push(() => makeCharacter(
  12697. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12698. {
  12699. front: {
  12700. height: math.unit(6, "feet"),
  12701. weight: math.unit(150, "lb"),
  12702. name: "Front",
  12703. image: {
  12704. source: "./media/characters/neos/front.svg",
  12705. extra: 1696 / 992,
  12706. bottom: 0.14
  12707. }
  12708. },
  12709. },
  12710. [
  12711. {
  12712. name: "Normal",
  12713. height: math.unit(54, "cm"),
  12714. default: true
  12715. },
  12716. {
  12717. name: "Macro",
  12718. height: math.unit(100, "m")
  12719. },
  12720. {
  12721. name: "Megamacro",
  12722. height: math.unit(10, "km")
  12723. },
  12724. {
  12725. name: "Megamacro+",
  12726. height: math.unit(100, "km")
  12727. },
  12728. {
  12729. name: "Gigamacro",
  12730. height: math.unit(100, "Mm")
  12731. },
  12732. {
  12733. name: "Teramacro",
  12734. height: math.unit(100, "Gm")
  12735. },
  12736. {
  12737. name: "Examacro",
  12738. height: math.unit(100, "Em")
  12739. },
  12740. {
  12741. name: "Godly",
  12742. height: math.unit(10000, "Ym")
  12743. },
  12744. {
  12745. name: "Beyond Godly",
  12746. height: math.unit(25, "multiverses")
  12747. },
  12748. ]
  12749. ))
  12750. characterMakers.push(() => makeCharacter(
  12751. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12752. {
  12753. feminine: {
  12754. height: math.unit(5, "feet"),
  12755. weight: math.unit(100, "lb"),
  12756. name: "Feminine",
  12757. image: {
  12758. source: "./media/characters/sammy-mouse/feminine.svg",
  12759. extra: 2526 / 2425,
  12760. bottom: 0.123
  12761. }
  12762. },
  12763. masculine: {
  12764. height: math.unit(5, "feet"),
  12765. weight: math.unit(100, "lb"),
  12766. name: "Masculine",
  12767. image: {
  12768. source: "./media/characters/sammy-mouse/masculine.svg",
  12769. extra: 2526 / 2425,
  12770. bottom: 0.123
  12771. }
  12772. },
  12773. },
  12774. [
  12775. {
  12776. name: "Micro",
  12777. height: math.unit(5, "inches")
  12778. },
  12779. {
  12780. name: "Normal",
  12781. height: math.unit(5, "feet"),
  12782. default: true
  12783. },
  12784. {
  12785. name: "Macro",
  12786. height: math.unit(60, "feet")
  12787. },
  12788. ]
  12789. ))
  12790. characterMakers.push(() => makeCharacter(
  12791. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12792. {
  12793. front: {
  12794. height: math.unit(4, "feet"),
  12795. weight: math.unit(50, "lb"),
  12796. name: "Front",
  12797. image: {
  12798. source: "./media/characters/kole/front.svg",
  12799. extra: 1423 / 1303,
  12800. bottom: 0.025
  12801. }
  12802. },
  12803. back: {
  12804. height: math.unit(4, "feet"),
  12805. weight: math.unit(50, "lb"),
  12806. name: "Back",
  12807. image: {
  12808. source: "./media/characters/kole/back.svg",
  12809. extra: 1426 / 1280,
  12810. bottom: 0.02
  12811. }
  12812. },
  12813. },
  12814. [
  12815. {
  12816. name: "Normal",
  12817. height: math.unit(4, "feet"),
  12818. default: true
  12819. },
  12820. ]
  12821. ))
  12822. characterMakers.push(() => makeCharacter(
  12823. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12824. {
  12825. front: {
  12826. height: math.unit(2.5, "feet"),
  12827. weight: math.unit(32, "lb"),
  12828. name: "Front",
  12829. image: {
  12830. source: "./media/characters/rufran/front.svg",
  12831. extra: 1313/885,
  12832. bottom: 94/1407
  12833. }
  12834. },
  12835. side: {
  12836. height: math.unit(2.5, "feet"),
  12837. weight: math.unit(32, "lb"),
  12838. name: "Side",
  12839. image: {
  12840. source: "./media/characters/rufran/side.svg",
  12841. extra: 1109/852,
  12842. bottom: 118/1227
  12843. }
  12844. },
  12845. back: {
  12846. height: math.unit(2.5, "feet"),
  12847. weight: math.unit(32, "lb"),
  12848. name: "Back",
  12849. image: {
  12850. source: "./media/characters/rufran/back.svg",
  12851. extra: 1280/878,
  12852. bottom: 131/1411
  12853. }
  12854. },
  12855. mouth: {
  12856. height: math.unit(1.13, "feet"),
  12857. name: "Mouth",
  12858. image: {
  12859. source: "./media/characters/rufran/mouth.svg"
  12860. }
  12861. },
  12862. foot: {
  12863. height: math.unit(1.33, "feet"),
  12864. name: "Foot",
  12865. image: {
  12866. source: "./media/characters/rufran/foot.svg"
  12867. }
  12868. },
  12869. koboldFront: {
  12870. height: math.unit(2 + 6 / 12, "feet"),
  12871. weight: math.unit(20, "lb"),
  12872. name: "Front (Kobold)",
  12873. image: {
  12874. source: "./media/characters/rufran/kobold-front.svg",
  12875. extra: 2041 / 1839,
  12876. bottom: 0.055
  12877. }
  12878. },
  12879. koboldBack: {
  12880. height: math.unit(2 + 6 / 12, "feet"),
  12881. weight: math.unit(20, "lb"),
  12882. name: "Back (Kobold)",
  12883. image: {
  12884. source: "./media/characters/rufran/kobold-back.svg",
  12885. extra: 2054 / 1839,
  12886. bottom: 0.01
  12887. }
  12888. },
  12889. koboldHand: {
  12890. height: math.unit(0.2166, "meters"),
  12891. name: "Hand (Kobold)",
  12892. image: {
  12893. source: "./media/characters/rufran/kobold-hand.svg"
  12894. }
  12895. },
  12896. koboldFoot: {
  12897. height: math.unit(0.185, "meters"),
  12898. name: "Foot (Kobold)",
  12899. image: {
  12900. source: "./media/characters/rufran/kobold-foot.svg"
  12901. }
  12902. },
  12903. },
  12904. [
  12905. {
  12906. name: "Micro",
  12907. height: math.unit(1, "inch")
  12908. },
  12909. {
  12910. name: "Normal",
  12911. height: math.unit(2 + 6 / 12, "feet"),
  12912. default: true
  12913. },
  12914. {
  12915. name: "Big",
  12916. height: math.unit(60, "feet")
  12917. },
  12918. {
  12919. name: "Macro",
  12920. height: math.unit(325, "feet")
  12921. },
  12922. ]
  12923. ))
  12924. characterMakers.push(() => makeCharacter(
  12925. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12926. {
  12927. front: {
  12928. height: math.unit(0.3, "meters"),
  12929. weight: math.unit(3.5, "kg"),
  12930. name: "Front",
  12931. image: {
  12932. source: "./media/characters/chip/front.svg",
  12933. extra: 748 / 674
  12934. }
  12935. },
  12936. },
  12937. [
  12938. {
  12939. name: "Micro",
  12940. height: math.unit(1, "inch"),
  12941. default: true
  12942. },
  12943. ]
  12944. ))
  12945. characterMakers.push(() => makeCharacter(
  12946. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12947. {
  12948. side: {
  12949. height: math.unit(2.3, "meters"),
  12950. weight: math.unit(3500, "lb"),
  12951. name: "Side",
  12952. image: {
  12953. source: "./media/characters/torvid/side.svg",
  12954. extra: 1972 / 722,
  12955. bottom: 0.035
  12956. }
  12957. },
  12958. },
  12959. [
  12960. {
  12961. name: "Normal",
  12962. height: math.unit(2.3, "meters"),
  12963. default: true
  12964. },
  12965. ]
  12966. ))
  12967. characterMakers.push(() => makeCharacter(
  12968. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12969. {
  12970. front: {
  12971. height: math.unit(2, "meters"),
  12972. weight: math.unit(150.5, "kg"),
  12973. name: "Front",
  12974. image: {
  12975. source: "./media/characters/susan/front.svg",
  12976. extra: 693 / 635,
  12977. bottom: 0.05
  12978. }
  12979. },
  12980. },
  12981. [
  12982. {
  12983. name: "Megamacro",
  12984. height: math.unit(505, "miles"),
  12985. default: true
  12986. },
  12987. ]
  12988. ))
  12989. characterMakers.push(() => makeCharacter(
  12990. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12991. {
  12992. front: {
  12993. height: math.unit(6, "feet"),
  12994. weight: math.unit(150, "lb"),
  12995. name: "Front",
  12996. image: {
  12997. source: "./media/characters/raindrops/front.svg",
  12998. extra: 2655 / 2461,
  12999. bottom: 49 / 2705
  13000. }
  13001. },
  13002. back: {
  13003. height: math.unit(6, "feet"),
  13004. weight: math.unit(150, "lb"),
  13005. name: "Back",
  13006. image: {
  13007. source: "./media/characters/raindrops/back.svg",
  13008. extra: 2574 / 2400,
  13009. bottom: 65 / 2634
  13010. }
  13011. },
  13012. },
  13013. [
  13014. {
  13015. name: "Micro",
  13016. height: math.unit(6, "inches")
  13017. },
  13018. {
  13019. name: "Normal",
  13020. height: math.unit(6 + 2 / 12, "feet")
  13021. },
  13022. {
  13023. name: "Macro",
  13024. height: math.unit(131, "feet"),
  13025. default: true
  13026. },
  13027. {
  13028. name: "Megamacro",
  13029. height: math.unit(15, "miles")
  13030. },
  13031. {
  13032. name: "Gigamacro",
  13033. height: math.unit(4000, "miles")
  13034. },
  13035. {
  13036. name: "Teramacro",
  13037. height: math.unit(315000, "miles")
  13038. },
  13039. ]
  13040. ))
  13041. characterMakers.push(() => makeCharacter(
  13042. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13043. {
  13044. front: {
  13045. height: math.unit(2.794, "meters"),
  13046. weight: math.unit(325, "kg"),
  13047. name: "Front",
  13048. image: {
  13049. source: "./media/characters/tezwa/front.svg",
  13050. extra: 2083 / 1906,
  13051. bottom: 0.031
  13052. }
  13053. },
  13054. foot: {
  13055. height: math.unit(0.687, "meters"),
  13056. name: "Foot",
  13057. image: {
  13058. source: "./media/characters/tezwa/foot.svg"
  13059. }
  13060. },
  13061. },
  13062. [
  13063. {
  13064. name: "Normal",
  13065. height: math.unit(9 + 2 / 12, "feet"),
  13066. default: true
  13067. },
  13068. ]
  13069. ))
  13070. characterMakers.push(() => makeCharacter(
  13071. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13072. {
  13073. front: {
  13074. height: math.unit(58, "feet"),
  13075. weight: math.unit(89000, "lb"),
  13076. name: "Front",
  13077. image: {
  13078. source: "./media/characters/typhus/front.svg",
  13079. extra: 816 / 800,
  13080. bottom: 0.065
  13081. }
  13082. },
  13083. },
  13084. [
  13085. {
  13086. name: "Macro",
  13087. height: math.unit(58, "feet"),
  13088. default: true
  13089. },
  13090. ]
  13091. ))
  13092. characterMakers.push(() => makeCharacter(
  13093. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13094. {
  13095. front: {
  13096. height: math.unit(12, "feet"),
  13097. weight: math.unit(6, "tonnes"),
  13098. name: "Front",
  13099. image: {
  13100. source: "./media/characters/lyra-von-wulf/front.svg",
  13101. extra: 1,
  13102. bottom: 0.10
  13103. }
  13104. },
  13105. frontMecha: {
  13106. height: math.unit(12, "feet"),
  13107. weight: math.unit(12, "tonnes"),
  13108. name: "Front (Mecha)",
  13109. image: {
  13110. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13111. extra: 1,
  13112. bottom: 0.042
  13113. }
  13114. },
  13115. maw: {
  13116. height: math.unit(2.2, "feet"),
  13117. name: "Maw",
  13118. image: {
  13119. source: "./media/characters/lyra-von-wulf/maw.svg"
  13120. }
  13121. },
  13122. },
  13123. [
  13124. {
  13125. name: "Normal",
  13126. height: math.unit(12, "feet"),
  13127. default: true
  13128. },
  13129. {
  13130. name: "Classic",
  13131. height: math.unit(50, "feet")
  13132. },
  13133. {
  13134. name: "Macro",
  13135. height: math.unit(500, "feet")
  13136. },
  13137. {
  13138. name: "Megamacro",
  13139. height: math.unit(1, "mile")
  13140. },
  13141. {
  13142. name: "Gigamacro",
  13143. height: math.unit(400, "miles")
  13144. },
  13145. {
  13146. name: "Teramacro",
  13147. height: math.unit(22000, "miles")
  13148. },
  13149. {
  13150. name: "Solarmacro",
  13151. height: math.unit(8600000, "miles")
  13152. },
  13153. {
  13154. name: "Galactic",
  13155. height: math.unit(1057000, "lightyears")
  13156. },
  13157. ]
  13158. ))
  13159. characterMakers.push(() => makeCharacter(
  13160. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13161. {
  13162. front: {
  13163. height: math.unit(6 + 10 / 12, "feet"),
  13164. weight: math.unit(150, "lb"),
  13165. name: "Front",
  13166. image: {
  13167. source: "./media/characters/dixon/front.svg",
  13168. extra: 3361 / 3209,
  13169. bottom: 0.01
  13170. }
  13171. },
  13172. },
  13173. [
  13174. {
  13175. name: "Normal",
  13176. height: math.unit(6 + 10 / 12, "feet"),
  13177. default: true
  13178. },
  13179. {
  13180. name: "Big",
  13181. height: math.unit(12, "meters")
  13182. },
  13183. {
  13184. name: "Macro",
  13185. height: math.unit(500, "meters")
  13186. },
  13187. {
  13188. name: "Megamacro",
  13189. height: math.unit(2, "km")
  13190. },
  13191. ]
  13192. ))
  13193. characterMakers.push(() => makeCharacter(
  13194. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13195. {
  13196. front: {
  13197. height: math.unit(185, "cm"),
  13198. weight: math.unit(68, "kg"),
  13199. name: "Front",
  13200. image: {
  13201. source: "./media/characters/kauko/front.svg",
  13202. extra: 1455 / 1421,
  13203. bottom: 0.03
  13204. }
  13205. },
  13206. back: {
  13207. height: math.unit(185, "cm"),
  13208. weight: math.unit(68, "kg"),
  13209. name: "Back",
  13210. image: {
  13211. source: "./media/characters/kauko/back.svg",
  13212. extra: 1455 / 1421,
  13213. bottom: 0.004
  13214. }
  13215. },
  13216. },
  13217. [
  13218. {
  13219. name: "Normal",
  13220. height: math.unit(185, "cm"),
  13221. default: true
  13222. },
  13223. ]
  13224. ))
  13225. characterMakers.push(() => makeCharacter(
  13226. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13227. {
  13228. front: {
  13229. height: math.unit(6, "feet"),
  13230. weight: math.unit(150, "kg"),
  13231. name: "Front",
  13232. image: {
  13233. source: "./media/characters/varg/front.svg",
  13234. extra: 1108 / 1018,
  13235. bottom: 0.0375
  13236. }
  13237. },
  13238. },
  13239. [
  13240. {
  13241. name: "Normal",
  13242. height: math.unit(5, "meters")
  13243. },
  13244. {
  13245. name: "Macro",
  13246. height: math.unit(200, "meters")
  13247. },
  13248. {
  13249. name: "Megamacro",
  13250. height: math.unit(20, "kilometers")
  13251. },
  13252. {
  13253. name: "True Size",
  13254. height: math.unit(211, "km"),
  13255. default: true
  13256. },
  13257. {
  13258. name: "Gigamacro",
  13259. height: math.unit(1000, "km")
  13260. },
  13261. {
  13262. name: "Gigamacro+",
  13263. height: math.unit(8000, "km")
  13264. },
  13265. {
  13266. name: "Teramacro",
  13267. height: math.unit(1000000, "km")
  13268. },
  13269. ]
  13270. ))
  13271. characterMakers.push(() => makeCharacter(
  13272. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13273. {
  13274. front: {
  13275. height: math.unit(7 + 7 / 12, "feet"),
  13276. weight: math.unit(267, "lb"),
  13277. name: "Front",
  13278. image: {
  13279. source: "./media/characters/dayza/front.svg",
  13280. extra: 1262 / 1200,
  13281. bottom: 0.035
  13282. }
  13283. },
  13284. side: {
  13285. height: math.unit(7 + 7 / 12, "feet"),
  13286. weight: math.unit(267, "lb"),
  13287. name: "Side",
  13288. image: {
  13289. source: "./media/characters/dayza/side.svg",
  13290. extra: 1295 / 1245,
  13291. bottom: 0.05
  13292. }
  13293. },
  13294. back: {
  13295. height: math.unit(7 + 7 / 12, "feet"),
  13296. weight: math.unit(267, "lb"),
  13297. name: "Back",
  13298. image: {
  13299. source: "./media/characters/dayza/back.svg",
  13300. extra: 1241 / 1170
  13301. }
  13302. },
  13303. },
  13304. [
  13305. {
  13306. name: "Normal",
  13307. height: math.unit(7 + 7 / 12, "feet"),
  13308. default: true
  13309. },
  13310. {
  13311. name: "Macro",
  13312. height: math.unit(155, "feet")
  13313. },
  13314. ]
  13315. ))
  13316. characterMakers.push(() => makeCharacter(
  13317. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13318. {
  13319. front: {
  13320. height: math.unit(6 + 5 / 12, "feet"),
  13321. weight: math.unit(160, "lb"),
  13322. name: "Front",
  13323. image: {
  13324. source: "./media/characters/xanthos/front.svg",
  13325. extra: 1,
  13326. bottom: 0.04
  13327. }
  13328. },
  13329. back: {
  13330. height: math.unit(6 + 5 / 12, "feet"),
  13331. weight: math.unit(160, "lb"),
  13332. name: "Back",
  13333. image: {
  13334. source: "./media/characters/xanthos/back.svg",
  13335. extra: 1,
  13336. bottom: 0.03
  13337. }
  13338. },
  13339. hand: {
  13340. height: math.unit(0.928, "feet"),
  13341. name: "Hand",
  13342. image: {
  13343. source: "./media/characters/xanthos/hand.svg"
  13344. }
  13345. },
  13346. foot: {
  13347. height: math.unit(1.286, "feet"),
  13348. name: "Foot",
  13349. image: {
  13350. source: "./media/characters/xanthos/foot.svg"
  13351. }
  13352. },
  13353. },
  13354. [
  13355. {
  13356. name: "Normal",
  13357. height: math.unit(6 + 5 / 12, "feet"),
  13358. default: true
  13359. },
  13360. {
  13361. name: "Normal+",
  13362. height: math.unit(6, "meters")
  13363. },
  13364. {
  13365. name: "Macro",
  13366. height: math.unit(40, "feet")
  13367. },
  13368. {
  13369. name: "Macro+",
  13370. height: math.unit(200, "meters")
  13371. },
  13372. {
  13373. name: "Megamacro",
  13374. height: math.unit(20, "km")
  13375. },
  13376. {
  13377. name: "Megamacro+",
  13378. height: math.unit(100, "km")
  13379. },
  13380. {
  13381. name: "Gigamacro",
  13382. height: math.unit(200, "megameters")
  13383. },
  13384. {
  13385. name: "Gigamacro+",
  13386. height: math.unit(1.5, "gigameters")
  13387. },
  13388. ]
  13389. ))
  13390. characterMakers.push(() => makeCharacter(
  13391. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13392. {
  13393. front: {
  13394. height: math.unit(6 + 3 / 12, "feet"),
  13395. weight: math.unit(215, "lb"),
  13396. name: "Front",
  13397. image: {
  13398. source: "./media/characters/grynn/front.svg",
  13399. extra: 4627 / 4209,
  13400. bottom: 0.047
  13401. }
  13402. },
  13403. },
  13404. [
  13405. {
  13406. name: "Micro",
  13407. height: math.unit(6, "inches")
  13408. },
  13409. {
  13410. name: "Normal",
  13411. height: math.unit(6 + 3 / 12, "feet"),
  13412. default: true
  13413. },
  13414. {
  13415. name: "Big",
  13416. height: math.unit(104, "feet")
  13417. },
  13418. {
  13419. name: "Macro",
  13420. height: math.unit(944, "feet")
  13421. },
  13422. {
  13423. name: "Macro+",
  13424. height: math.unit(9480, "feet")
  13425. },
  13426. {
  13427. name: "Megamacro",
  13428. height: math.unit(78752, "feet")
  13429. },
  13430. {
  13431. name: "Megamacro+",
  13432. height: math.unit(630128, "feet")
  13433. },
  13434. {
  13435. name: "Megamacro++",
  13436. height: math.unit(3150695, "feet")
  13437. },
  13438. ]
  13439. ))
  13440. characterMakers.push(() => makeCharacter(
  13441. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13442. {
  13443. front: {
  13444. height: math.unit(7 + 5 / 12, "feet"),
  13445. weight: math.unit(450, "lb"),
  13446. name: "Front",
  13447. image: {
  13448. source: "./media/characters/mocha-aura/front.svg",
  13449. extra: 1907 / 1817,
  13450. bottom: 0.04
  13451. }
  13452. },
  13453. back: {
  13454. height: math.unit(7 + 5 / 12, "feet"),
  13455. weight: math.unit(450, "lb"),
  13456. name: "Back",
  13457. image: {
  13458. source: "./media/characters/mocha-aura/back.svg",
  13459. extra: 1900 / 1825,
  13460. bottom: 0.045
  13461. }
  13462. },
  13463. },
  13464. [
  13465. {
  13466. name: "Nano",
  13467. height: math.unit(1, "nm")
  13468. },
  13469. {
  13470. name: "Megamicro",
  13471. height: math.unit(1, "mm")
  13472. },
  13473. {
  13474. name: "Micro",
  13475. height: math.unit(3, "inches")
  13476. },
  13477. {
  13478. name: "Normal",
  13479. height: math.unit(7 + 5 / 12, "feet"),
  13480. default: true
  13481. },
  13482. {
  13483. name: "Macro",
  13484. height: math.unit(30, "feet")
  13485. },
  13486. {
  13487. name: "Megamacro",
  13488. height: math.unit(3500, "feet")
  13489. },
  13490. {
  13491. name: "Teramacro",
  13492. height: math.unit(500000, "miles")
  13493. },
  13494. {
  13495. name: "Petamacro",
  13496. height: math.unit(50000000000000000, "parsecs")
  13497. },
  13498. ]
  13499. ))
  13500. characterMakers.push(() => makeCharacter(
  13501. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13502. {
  13503. front: {
  13504. height: math.unit(6, "feet"),
  13505. weight: math.unit(150, "lb"),
  13506. name: "Front",
  13507. image: {
  13508. source: "./media/characters/ilisha-devya/front.svg",
  13509. extra: 1053/1049,
  13510. bottom: 270/1323
  13511. }
  13512. },
  13513. back: {
  13514. height: math.unit(6, "feet"),
  13515. weight: math.unit(150, "lb"),
  13516. name: "Back",
  13517. image: {
  13518. source: "./media/characters/ilisha-devya/back.svg",
  13519. extra: 1131/1128,
  13520. bottom: 39/1170
  13521. }
  13522. },
  13523. },
  13524. [
  13525. {
  13526. name: "Macro",
  13527. height: math.unit(500, "feet"),
  13528. default: true
  13529. },
  13530. {
  13531. name: "Megamacro",
  13532. height: math.unit(10, "miles")
  13533. },
  13534. {
  13535. name: "Gigamacro",
  13536. height: math.unit(100000, "miles")
  13537. },
  13538. {
  13539. name: "Examacro",
  13540. height: math.unit(1e9, "lightyears")
  13541. },
  13542. {
  13543. name: "Omniversal",
  13544. height: math.unit(1e33, "lightyears")
  13545. },
  13546. {
  13547. name: "Beyond Infinite",
  13548. height: math.unit(1e100, "lightyears")
  13549. },
  13550. ]
  13551. ))
  13552. characterMakers.push(() => makeCharacter(
  13553. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13554. {
  13555. Side: {
  13556. height: math.unit(6, "feet"),
  13557. weight: math.unit(150, "lb"),
  13558. name: "Side",
  13559. image: {
  13560. source: "./media/characters/mira/side.svg",
  13561. extra: 900 / 799,
  13562. bottom: 0.02
  13563. }
  13564. },
  13565. },
  13566. [
  13567. {
  13568. name: "Human Size",
  13569. height: math.unit(6, "feet")
  13570. },
  13571. {
  13572. name: "Macro",
  13573. height: math.unit(100, "feet"),
  13574. default: true
  13575. },
  13576. {
  13577. name: "Megamacro",
  13578. height: math.unit(10, "miles")
  13579. },
  13580. {
  13581. name: "Gigamacro",
  13582. height: math.unit(25000, "miles")
  13583. },
  13584. {
  13585. name: "Teramacro",
  13586. height: math.unit(300, "AU")
  13587. },
  13588. {
  13589. name: "Full Size",
  13590. height: math.unit(4.5e10, "lightyears")
  13591. },
  13592. ]
  13593. ))
  13594. characterMakers.push(() => makeCharacter(
  13595. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13596. {
  13597. front: {
  13598. height: math.unit(6, "feet"),
  13599. weight: math.unit(150, "lb"),
  13600. name: "Front",
  13601. image: {
  13602. source: "./media/characters/holly/front.svg",
  13603. extra: 639 / 606
  13604. }
  13605. },
  13606. back: {
  13607. height: math.unit(6, "feet"),
  13608. weight: math.unit(150, "lb"),
  13609. name: "Back",
  13610. image: {
  13611. source: "./media/characters/holly/back.svg",
  13612. extra: 623 / 598
  13613. }
  13614. },
  13615. frontWorking: {
  13616. height: math.unit(6, "feet"),
  13617. weight: math.unit(150, "lb"),
  13618. name: "Front (Working)",
  13619. image: {
  13620. source: "./media/characters/holly/front-working.svg",
  13621. extra: 607 / 577,
  13622. bottom: 0.048
  13623. }
  13624. },
  13625. },
  13626. [
  13627. {
  13628. name: "Normal",
  13629. height: math.unit(12 + 3 / 12, "feet"),
  13630. default: true
  13631. },
  13632. ]
  13633. ))
  13634. characterMakers.push(() => makeCharacter(
  13635. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13636. {
  13637. front: {
  13638. height: math.unit(6, "feet"),
  13639. weight: math.unit(150, "lb"),
  13640. name: "Front",
  13641. image: {
  13642. source: "./media/characters/porter/front.svg",
  13643. extra: 1,
  13644. bottom: 0.01
  13645. }
  13646. },
  13647. frontRobes: {
  13648. height: math.unit(6, "feet"),
  13649. weight: math.unit(150, "lb"),
  13650. name: "Front (Robes)",
  13651. image: {
  13652. source: "./media/characters/porter/front-robes.svg",
  13653. extra: 1.01,
  13654. bottom: 0.01
  13655. }
  13656. },
  13657. },
  13658. [
  13659. {
  13660. name: "Normal",
  13661. height: math.unit(11 + 9 / 12, "feet"),
  13662. default: true
  13663. },
  13664. ]
  13665. ))
  13666. characterMakers.push(() => makeCharacter(
  13667. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13668. {
  13669. legendary: {
  13670. height: math.unit(6, "feet"),
  13671. weight: math.unit(150, "lb"),
  13672. name: "Legendary",
  13673. image: {
  13674. source: "./media/characters/lucy/legendary.svg",
  13675. extra: 1355 / 1100,
  13676. bottom: 0.045
  13677. }
  13678. },
  13679. },
  13680. [
  13681. {
  13682. name: "Legendary",
  13683. height: math.unit(86882 * 2, "miles"),
  13684. default: true
  13685. },
  13686. ]
  13687. ))
  13688. characterMakers.push(() => makeCharacter(
  13689. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13690. {
  13691. front: {
  13692. height: math.unit(6, "feet"),
  13693. weight: math.unit(150, "lb"),
  13694. name: "Front",
  13695. image: {
  13696. source: "./media/characters/drusilla/front.svg",
  13697. extra: 678 / 635,
  13698. bottom: 0.03
  13699. }
  13700. },
  13701. back: {
  13702. height: math.unit(6, "feet"),
  13703. weight: math.unit(150, "lb"),
  13704. name: "Back",
  13705. image: {
  13706. source: "./media/characters/drusilla/back.svg",
  13707. extra: 678 / 635,
  13708. bottom: 0.005
  13709. }
  13710. },
  13711. },
  13712. [
  13713. {
  13714. name: "Macro",
  13715. height: math.unit(100, "feet")
  13716. },
  13717. {
  13718. name: "Canon Height",
  13719. height: math.unit(2000, "feet"),
  13720. default: true
  13721. },
  13722. ]
  13723. ))
  13724. characterMakers.push(() => makeCharacter(
  13725. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13726. {
  13727. front: {
  13728. height: math.unit(6, "feet"),
  13729. weight: math.unit(180, "lb"),
  13730. name: "Front",
  13731. image: {
  13732. source: "./media/characters/renard-thatch/front.svg",
  13733. extra: 2411 / 2275,
  13734. bottom: 0.01
  13735. }
  13736. },
  13737. frontPosing: {
  13738. height: math.unit(6, "feet"),
  13739. weight: math.unit(180, "lb"),
  13740. name: "Front (Posing)",
  13741. image: {
  13742. source: "./media/characters/renard-thatch/front-posing.svg",
  13743. extra: 2381 / 2261,
  13744. bottom: 0.01
  13745. }
  13746. },
  13747. back: {
  13748. height: math.unit(6, "feet"),
  13749. weight: math.unit(180, "lb"),
  13750. name: "Back",
  13751. image: {
  13752. source: "./media/characters/renard-thatch/back.svg",
  13753. extra: 2428 / 2288
  13754. }
  13755. },
  13756. },
  13757. [
  13758. {
  13759. name: "Micro",
  13760. height: math.unit(3, "inches")
  13761. },
  13762. {
  13763. name: "Default",
  13764. height: math.unit(6, "feet"),
  13765. default: true
  13766. },
  13767. {
  13768. name: "Macro",
  13769. height: math.unit(75, "feet")
  13770. },
  13771. ]
  13772. ))
  13773. characterMakers.push(() => makeCharacter(
  13774. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13775. {
  13776. front: {
  13777. height: math.unit(1450, "feet"),
  13778. weight: math.unit(1.21e6, "tons"),
  13779. name: "Front",
  13780. image: {
  13781. source: "./media/characters/sekvra/front.svg",
  13782. extra: 1193/1190,
  13783. bottom: 78/1271
  13784. }
  13785. },
  13786. side: {
  13787. height: math.unit(1450, "feet"),
  13788. weight: math.unit(1.21e6, "tons"),
  13789. name: "Side",
  13790. image: {
  13791. source: "./media/characters/sekvra/side.svg",
  13792. extra: 1193/1190,
  13793. bottom: 52/1245
  13794. }
  13795. },
  13796. back: {
  13797. height: math.unit(1450, "feet"),
  13798. weight: math.unit(1.21e6, "tons"),
  13799. name: "Back",
  13800. image: {
  13801. source: "./media/characters/sekvra/back.svg",
  13802. extra: 1219/1216,
  13803. bottom: 21/1240
  13804. }
  13805. },
  13806. frontClothed: {
  13807. height: math.unit(1450, "feet"),
  13808. weight: math.unit(1.21e6, "tons"),
  13809. name: "Front (Clothed)",
  13810. image: {
  13811. source: "./media/characters/sekvra/front-clothed.svg",
  13812. extra: 1192/1189,
  13813. bottom: 79/1271
  13814. }
  13815. },
  13816. },
  13817. [
  13818. {
  13819. name: "Macro",
  13820. height: math.unit(1450, "feet"),
  13821. default: true
  13822. },
  13823. {
  13824. name: "Megamacro",
  13825. height: math.unit(15000, "feet")
  13826. },
  13827. ]
  13828. ))
  13829. characterMakers.push(() => makeCharacter(
  13830. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13831. {
  13832. front: {
  13833. height: math.unit(6, "feet"),
  13834. weight: math.unit(150, "lb"),
  13835. name: "Front",
  13836. image: {
  13837. source: "./media/characters/carmine/front.svg",
  13838. extra: 1,
  13839. bottom: 0.035
  13840. }
  13841. },
  13842. frontArmor: {
  13843. height: math.unit(6, "feet"),
  13844. weight: math.unit(150, "lb"),
  13845. name: "Front (Armor)",
  13846. image: {
  13847. source: "./media/characters/carmine/front-armor.svg",
  13848. extra: 1,
  13849. bottom: 0.035
  13850. }
  13851. },
  13852. },
  13853. [
  13854. {
  13855. name: "Large",
  13856. height: math.unit(1, "mile")
  13857. },
  13858. {
  13859. name: "Huge",
  13860. height: math.unit(40, "miles"),
  13861. default: true
  13862. },
  13863. {
  13864. name: "Colossal",
  13865. height: math.unit(2500, "miles")
  13866. },
  13867. ]
  13868. ))
  13869. characterMakers.push(() => makeCharacter(
  13870. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13871. {
  13872. front: {
  13873. height: math.unit(6, "feet"),
  13874. weight: math.unit(150, "lb"),
  13875. name: "Front",
  13876. image: {
  13877. source: "./media/characters/elyssia/front.svg",
  13878. extra: 2201 / 2035,
  13879. bottom: 0.05
  13880. }
  13881. },
  13882. frontClothed: {
  13883. height: math.unit(6, "feet"),
  13884. weight: math.unit(150, "lb"),
  13885. name: "Front (Clothed)",
  13886. image: {
  13887. source: "./media/characters/elyssia/front-clothed.svg",
  13888. extra: 2201 / 2035,
  13889. bottom: 0.05
  13890. }
  13891. },
  13892. back: {
  13893. height: math.unit(6, "feet"),
  13894. weight: math.unit(150, "lb"),
  13895. name: "Back",
  13896. image: {
  13897. source: "./media/characters/elyssia/back.svg",
  13898. extra: 2201 / 2035,
  13899. bottom: 0.013
  13900. }
  13901. },
  13902. },
  13903. [
  13904. {
  13905. name: "Smaller",
  13906. height: math.unit(150, "feet")
  13907. },
  13908. {
  13909. name: "Standard",
  13910. height: math.unit(1400, "feet"),
  13911. default: true
  13912. },
  13913. {
  13914. name: "Distracted",
  13915. height: math.unit(15000, "feet")
  13916. },
  13917. ]
  13918. ))
  13919. characterMakers.push(() => makeCharacter(
  13920. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13921. {
  13922. front: {
  13923. height: math.unit(7 + 4/12, "feet"),
  13924. weight: math.unit(690, "lb"),
  13925. name: "Front",
  13926. image: {
  13927. source: "./media/characters/geno-maxwell/front.svg",
  13928. extra: 984/856,
  13929. bottom: 87/1071
  13930. }
  13931. },
  13932. back: {
  13933. height: math.unit(7 + 4/12, "feet"),
  13934. weight: math.unit(690, "lb"),
  13935. name: "Back",
  13936. image: {
  13937. source: "./media/characters/geno-maxwell/back.svg",
  13938. extra: 981/854,
  13939. bottom: 57/1038
  13940. }
  13941. },
  13942. frontCostume: {
  13943. height: math.unit(7 + 4/12, "feet"),
  13944. weight: math.unit(690, "lb"),
  13945. name: "Front (Costume)",
  13946. image: {
  13947. source: "./media/characters/geno-maxwell/front-costume.svg",
  13948. extra: 984/856,
  13949. bottom: 87/1071
  13950. }
  13951. },
  13952. backcostume: {
  13953. height: math.unit(7 + 4/12, "feet"),
  13954. weight: math.unit(690, "lb"),
  13955. name: "Back (Costume)",
  13956. image: {
  13957. source: "./media/characters/geno-maxwell/back-costume.svg",
  13958. extra: 981/854,
  13959. bottom: 57/1038
  13960. }
  13961. },
  13962. },
  13963. [
  13964. {
  13965. name: "Micro",
  13966. height: math.unit(3, "inches")
  13967. },
  13968. {
  13969. name: "Normal",
  13970. height: math.unit(7 + 4 / 12, "feet"),
  13971. default: true
  13972. },
  13973. {
  13974. name: "Macro",
  13975. height: math.unit(220, "feet")
  13976. },
  13977. {
  13978. name: "Megamacro",
  13979. height: math.unit(11, "miles")
  13980. },
  13981. ]
  13982. ))
  13983. characterMakers.push(() => makeCharacter(
  13984. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13985. {
  13986. front: {
  13987. height: math.unit(7 + 4/12, "feet"),
  13988. weight: math.unit(750, "lb"),
  13989. name: "Front",
  13990. image: {
  13991. source: "./media/characters/regena-maxwell/front.svg",
  13992. extra: 984/856,
  13993. bottom: 87/1071
  13994. }
  13995. },
  13996. back: {
  13997. height: math.unit(7 + 4/12, "feet"),
  13998. weight: math.unit(750, "lb"),
  13999. name: "Back",
  14000. image: {
  14001. source: "./media/characters/regena-maxwell/back.svg",
  14002. extra: 981/854,
  14003. bottom: 57/1038
  14004. }
  14005. },
  14006. frontCostume: {
  14007. height: math.unit(7 + 4/12, "feet"),
  14008. weight: math.unit(750, "lb"),
  14009. name: "Front (Costume)",
  14010. image: {
  14011. source: "./media/characters/regena-maxwell/front-costume.svg",
  14012. extra: 984/856,
  14013. bottom: 87/1071
  14014. }
  14015. },
  14016. backcostume: {
  14017. height: math.unit(7 + 4/12, "feet"),
  14018. weight: math.unit(750, "lb"),
  14019. name: "Back (Costume)",
  14020. image: {
  14021. source: "./media/characters/regena-maxwell/back-costume.svg",
  14022. extra: 981/854,
  14023. bottom: 57/1038
  14024. }
  14025. },
  14026. },
  14027. [
  14028. {
  14029. name: "Normal",
  14030. height: math.unit(7 + 4 / 12, "feet"),
  14031. default: true
  14032. },
  14033. {
  14034. name: "Macro",
  14035. height: math.unit(220, "feet")
  14036. },
  14037. {
  14038. name: "Megamacro",
  14039. height: math.unit(11, "miles")
  14040. },
  14041. ]
  14042. ))
  14043. characterMakers.push(() => makeCharacter(
  14044. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14045. {
  14046. front: {
  14047. height: math.unit(6, "feet"),
  14048. weight: math.unit(150, "lb"),
  14049. name: "Front",
  14050. image: {
  14051. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14052. extra: 860 / 690,
  14053. bottom: 0.03
  14054. }
  14055. },
  14056. },
  14057. [
  14058. {
  14059. name: "Normal",
  14060. height: math.unit(1.7, "meters"),
  14061. default: true
  14062. },
  14063. ]
  14064. ))
  14065. characterMakers.push(() => makeCharacter(
  14066. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14067. {
  14068. front: {
  14069. height: math.unit(6, "feet"),
  14070. weight: math.unit(150, "lb"),
  14071. name: "Front",
  14072. image: {
  14073. source: "./media/characters/quilly/front.svg",
  14074. extra: 890 / 776
  14075. }
  14076. },
  14077. },
  14078. [
  14079. {
  14080. name: "Gigamacro",
  14081. height: math.unit(404090, "miles"),
  14082. default: true
  14083. },
  14084. ]
  14085. ))
  14086. characterMakers.push(() => makeCharacter(
  14087. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14088. {
  14089. front: {
  14090. height: math.unit(7 + 8 / 12, "feet"),
  14091. weight: math.unit(350, "lb"),
  14092. name: "Front",
  14093. image: {
  14094. source: "./media/characters/tempest/front.svg",
  14095. extra: 1175 / 1086,
  14096. bottom: 0.02
  14097. }
  14098. },
  14099. },
  14100. [
  14101. {
  14102. name: "Normal",
  14103. height: math.unit(7 + 8 / 12, "feet"),
  14104. default: true
  14105. },
  14106. ]
  14107. ))
  14108. characterMakers.push(() => makeCharacter(
  14109. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14110. {
  14111. side: {
  14112. height: math.unit(4 + 5 / 12, "feet"),
  14113. weight: math.unit(80, "lb"),
  14114. name: "Side",
  14115. image: {
  14116. source: "./media/characters/rodger/side.svg",
  14117. extra: 1235 / 1118
  14118. }
  14119. },
  14120. },
  14121. [
  14122. {
  14123. name: "Micro",
  14124. height: math.unit(1, "inch")
  14125. },
  14126. {
  14127. name: "Normal",
  14128. height: math.unit(4 + 5 / 12, "feet"),
  14129. default: true
  14130. },
  14131. {
  14132. name: "Macro",
  14133. height: math.unit(120, "feet")
  14134. },
  14135. ]
  14136. ))
  14137. characterMakers.push(() => makeCharacter(
  14138. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14139. {
  14140. front: {
  14141. height: math.unit(6, "feet"),
  14142. weight: math.unit(150, "lb"),
  14143. name: "Front",
  14144. image: {
  14145. source: "./media/characters/danyel/front.svg",
  14146. extra: 1185 / 1123,
  14147. bottom: 0.05
  14148. }
  14149. },
  14150. },
  14151. [
  14152. {
  14153. name: "Shrunken",
  14154. height: math.unit(0.5, "mm")
  14155. },
  14156. {
  14157. name: "Micro",
  14158. height: math.unit(1, "mm"),
  14159. default: true
  14160. },
  14161. {
  14162. name: "Upsized",
  14163. height: math.unit(5 + 5 / 12, "feet")
  14164. },
  14165. ]
  14166. ))
  14167. characterMakers.push(() => makeCharacter(
  14168. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14169. {
  14170. front: {
  14171. height: math.unit(5 + 6 / 12, "feet"),
  14172. weight: math.unit(200, "lb"),
  14173. name: "Front",
  14174. image: {
  14175. source: "./media/characters/vivian-bijoux/front.svg",
  14176. extra: 1217/1209,
  14177. bottom: 76/1293
  14178. }
  14179. },
  14180. back: {
  14181. height: math.unit(5 + 6 / 12, "feet"),
  14182. weight: math.unit(200, "lb"),
  14183. name: "Back",
  14184. image: {
  14185. source: "./media/characters/vivian-bijoux/back.svg",
  14186. extra: 1214/1208,
  14187. bottom: 51/1265
  14188. }
  14189. },
  14190. dressed: {
  14191. height: math.unit(5 + 6 / 12, "feet"),
  14192. weight: math.unit(200, "lb"),
  14193. name: "Dressed",
  14194. image: {
  14195. source: "./media/characters/vivian-bijoux/dressed.svg",
  14196. extra: 1217/1209,
  14197. bottom: 76/1293
  14198. }
  14199. },
  14200. },
  14201. [
  14202. {
  14203. name: "Normal",
  14204. height: math.unit(5 + 6 / 12, "feet"),
  14205. default: true
  14206. },
  14207. {
  14208. name: "Bad Dream",
  14209. height: math.unit(500, "feet")
  14210. },
  14211. {
  14212. name: "Nightmare",
  14213. height: math.unit(500, "miles")
  14214. },
  14215. ]
  14216. ))
  14217. characterMakers.push(() => makeCharacter(
  14218. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14219. {
  14220. front: {
  14221. height: math.unit(6 + 1 / 12, "feet"),
  14222. weight: math.unit(260, "lb"),
  14223. name: "Front",
  14224. image: {
  14225. source: "./media/characters/zeta/front.svg",
  14226. extra: 1968 / 1889,
  14227. bottom: 0.06
  14228. }
  14229. },
  14230. back: {
  14231. height: math.unit(6 + 1 / 12, "feet"),
  14232. weight: math.unit(260, "lb"),
  14233. name: "Back",
  14234. image: {
  14235. source: "./media/characters/zeta/back.svg",
  14236. extra: 1944 / 1858,
  14237. bottom: 0.03
  14238. }
  14239. },
  14240. hand: {
  14241. height: math.unit(1.112, "feet"),
  14242. name: "Hand",
  14243. image: {
  14244. source: "./media/characters/zeta/hand.svg"
  14245. }
  14246. },
  14247. foot: {
  14248. height: math.unit(1.48, "feet"),
  14249. name: "Foot",
  14250. image: {
  14251. source: "./media/characters/zeta/foot.svg"
  14252. }
  14253. },
  14254. },
  14255. [
  14256. {
  14257. name: "Micro",
  14258. height: math.unit(6, "inches")
  14259. },
  14260. {
  14261. name: "Normal",
  14262. height: math.unit(6 + 1 / 12, "feet"),
  14263. default: true
  14264. },
  14265. {
  14266. name: "Macro",
  14267. height: math.unit(20, "feet")
  14268. },
  14269. ]
  14270. ))
  14271. characterMakers.push(() => makeCharacter(
  14272. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14273. {
  14274. front: {
  14275. height: math.unit(6, "feet"),
  14276. weight: math.unit(150, "lb"),
  14277. name: "Front",
  14278. image: {
  14279. source: "./media/characters/jamie-larsen/front.svg",
  14280. extra: 962 / 933,
  14281. bottom: 0.02
  14282. }
  14283. },
  14284. back: {
  14285. height: math.unit(6, "feet"),
  14286. weight: math.unit(150, "lb"),
  14287. name: "Back",
  14288. image: {
  14289. source: "./media/characters/jamie-larsen/back.svg",
  14290. extra: 997 / 946
  14291. }
  14292. },
  14293. },
  14294. [
  14295. {
  14296. name: "Macro",
  14297. height: math.unit(28 + 7 / 12, "feet"),
  14298. default: true
  14299. },
  14300. {
  14301. name: "Macro+",
  14302. height: math.unit(180, "feet")
  14303. },
  14304. {
  14305. name: "Megamacro",
  14306. height: math.unit(10, "miles")
  14307. },
  14308. {
  14309. name: "Gigamacro",
  14310. height: math.unit(200000, "miles")
  14311. },
  14312. ]
  14313. ))
  14314. characterMakers.push(() => makeCharacter(
  14315. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14316. {
  14317. front: {
  14318. height: math.unit(6, "feet"),
  14319. weight: math.unit(120, "lb"),
  14320. name: "Front",
  14321. image: {
  14322. source: "./media/characters/vance/front.svg",
  14323. extra: 1980 / 1890,
  14324. bottom: 0.09
  14325. }
  14326. },
  14327. back: {
  14328. height: math.unit(6, "feet"),
  14329. weight: math.unit(120, "lb"),
  14330. name: "Back",
  14331. image: {
  14332. source: "./media/characters/vance/back.svg",
  14333. extra: 2081 / 1994,
  14334. bottom: 0.014
  14335. }
  14336. },
  14337. hand: {
  14338. height: math.unit(0.88, "feet"),
  14339. name: "Hand",
  14340. image: {
  14341. source: "./media/characters/vance/hand.svg"
  14342. }
  14343. },
  14344. foot: {
  14345. height: math.unit(0.64, "feet"),
  14346. name: "Foot",
  14347. image: {
  14348. source: "./media/characters/vance/foot.svg"
  14349. }
  14350. },
  14351. },
  14352. [
  14353. {
  14354. name: "Small",
  14355. height: math.unit(90, "feet"),
  14356. default: true
  14357. },
  14358. {
  14359. name: "Macro",
  14360. height: math.unit(100, "meters")
  14361. },
  14362. {
  14363. name: "Megamacro",
  14364. height: math.unit(15, "miles")
  14365. },
  14366. ]
  14367. ))
  14368. characterMakers.push(() => makeCharacter(
  14369. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14370. {
  14371. front: {
  14372. height: math.unit(6, "feet"),
  14373. weight: math.unit(180, "lb"),
  14374. name: "Front",
  14375. image: {
  14376. source: "./media/characters/xochitl/front.svg",
  14377. extra: 2297 / 2261,
  14378. bottom: 0.065
  14379. }
  14380. },
  14381. back: {
  14382. height: math.unit(6, "feet"),
  14383. weight: math.unit(180, "lb"),
  14384. name: "Back",
  14385. image: {
  14386. source: "./media/characters/xochitl/back.svg",
  14387. extra: 2386 / 2354,
  14388. bottom: 0.01
  14389. }
  14390. },
  14391. foot: {
  14392. height: math.unit(6 / 5 * 1.15, "feet"),
  14393. weight: math.unit(150, "lb"),
  14394. name: "Foot",
  14395. image: {
  14396. source: "./media/characters/xochitl/foot.svg"
  14397. }
  14398. },
  14399. },
  14400. [
  14401. {
  14402. name: "Macro",
  14403. height: math.unit(80, "feet")
  14404. },
  14405. {
  14406. name: "Macro+",
  14407. height: math.unit(400, "feet"),
  14408. default: true
  14409. },
  14410. {
  14411. name: "Gigamacro",
  14412. height: math.unit(80000, "miles")
  14413. },
  14414. {
  14415. name: "Gigamacro+",
  14416. height: math.unit(400000, "miles")
  14417. },
  14418. {
  14419. name: "Teramacro",
  14420. height: math.unit(300, "AU")
  14421. },
  14422. ]
  14423. ))
  14424. characterMakers.push(() => makeCharacter(
  14425. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14426. {
  14427. front: {
  14428. height: math.unit(6, "feet"),
  14429. weight: math.unit(150, "lb"),
  14430. name: "Front",
  14431. image: {
  14432. source: "./media/characters/vincent/front.svg",
  14433. extra: 1130 / 1080,
  14434. bottom: 0.055
  14435. }
  14436. },
  14437. beak: {
  14438. height: math.unit(6 * 0.1, "feet"),
  14439. name: "Beak",
  14440. image: {
  14441. source: "./media/characters/vincent/beak.svg"
  14442. }
  14443. },
  14444. hand: {
  14445. height: math.unit(6 * 0.85, "feet"),
  14446. weight: math.unit(150, "lb"),
  14447. name: "Hand",
  14448. image: {
  14449. source: "./media/characters/vincent/hand.svg"
  14450. }
  14451. },
  14452. foot: {
  14453. height: math.unit(6 * 0.19, "feet"),
  14454. weight: math.unit(150, "lb"),
  14455. name: "Foot",
  14456. image: {
  14457. source: "./media/characters/vincent/foot.svg"
  14458. }
  14459. },
  14460. },
  14461. [
  14462. {
  14463. name: "Base",
  14464. height: math.unit(6 + 5 / 12, "feet"),
  14465. default: true
  14466. },
  14467. {
  14468. name: "Macro",
  14469. height: math.unit(300, "feet")
  14470. },
  14471. {
  14472. name: "Megamacro",
  14473. height: math.unit(2, "miles")
  14474. },
  14475. {
  14476. name: "Gigamacro",
  14477. height: math.unit(1000, "miles")
  14478. },
  14479. ]
  14480. ))
  14481. characterMakers.push(() => makeCharacter(
  14482. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14483. {
  14484. front: {
  14485. height: math.unit(2, "meters"),
  14486. weight: math.unit(500, "kg"),
  14487. name: "Front",
  14488. image: {
  14489. source: "./media/characters/coatl/front.svg",
  14490. extra: 3948 / 3500,
  14491. bottom: 0.082
  14492. }
  14493. },
  14494. },
  14495. [
  14496. {
  14497. name: "Normal",
  14498. height: math.unit(4, "meters")
  14499. },
  14500. {
  14501. name: "Macro",
  14502. height: math.unit(100, "meters"),
  14503. default: true
  14504. },
  14505. {
  14506. name: "Macro+",
  14507. height: math.unit(300, "meters")
  14508. },
  14509. {
  14510. name: "Megamacro",
  14511. height: math.unit(3, "gigameters")
  14512. },
  14513. {
  14514. name: "Megamacro+",
  14515. height: math.unit(300, "terameters")
  14516. },
  14517. {
  14518. name: "Megamacro++",
  14519. height: math.unit(3, "lightyears")
  14520. },
  14521. ]
  14522. ))
  14523. characterMakers.push(() => makeCharacter(
  14524. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14525. {
  14526. front: {
  14527. height: math.unit(6, "feet"),
  14528. weight: math.unit(50, "kg"),
  14529. name: "front",
  14530. image: {
  14531. source: "./media/characters/shiroryu/front.svg",
  14532. extra: 1990 / 1935
  14533. }
  14534. },
  14535. },
  14536. [
  14537. {
  14538. name: "Mortal Mingling",
  14539. height: math.unit(3, "meters")
  14540. },
  14541. {
  14542. name: "Kaiju-ish",
  14543. height: math.unit(250, "meters")
  14544. },
  14545. {
  14546. name: "Somewhat Godly",
  14547. height: math.unit(400, "km"),
  14548. default: true
  14549. },
  14550. {
  14551. name: "Planetary",
  14552. height: math.unit(300, "megameters")
  14553. },
  14554. {
  14555. name: "Galaxy-dwarfing",
  14556. height: math.unit(450, "kiloparsecs")
  14557. },
  14558. {
  14559. name: "Universe Eater",
  14560. height: math.unit(150, "gigaparsecs")
  14561. },
  14562. {
  14563. name: "Almost Immeasurable",
  14564. height: math.unit(1.3e266, "yottaparsecs")
  14565. },
  14566. ]
  14567. ))
  14568. characterMakers.push(() => makeCharacter(
  14569. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14570. {
  14571. front: {
  14572. height: math.unit(6, "feet"),
  14573. weight: math.unit(150, "lb"),
  14574. name: "Front",
  14575. image: {
  14576. source: "./media/characters/umeko/front.svg",
  14577. extra: 1,
  14578. bottom: 0.019
  14579. }
  14580. },
  14581. frontArmored: {
  14582. height: math.unit(6, "feet"),
  14583. weight: math.unit(150, "lb"),
  14584. name: "Front (Armored)",
  14585. image: {
  14586. source: "./media/characters/umeko/front-armored.svg",
  14587. extra: 1,
  14588. bottom: 0.021
  14589. }
  14590. },
  14591. },
  14592. [
  14593. {
  14594. name: "Macro",
  14595. height: math.unit(220, "feet"),
  14596. default: true
  14597. },
  14598. {
  14599. name: "Guardian Dragon",
  14600. height: math.unit(50, "miles")
  14601. },
  14602. {
  14603. name: "Cosmic",
  14604. height: math.unit(800000, "miles")
  14605. },
  14606. ]
  14607. ))
  14608. characterMakers.push(() => makeCharacter(
  14609. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14610. {
  14611. front: {
  14612. height: math.unit(6, "feet"),
  14613. weight: math.unit(150, "lb"),
  14614. name: "Front",
  14615. image: {
  14616. source: "./media/characters/cassidy/front.svg",
  14617. extra: 810/808,
  14618. bottom: 41/851
  14619. }
  14620. },
  14621. },
  14622. [
  14623. {
  14624. name: "Canon Height",
  14625. height: math.unit(120, "feet"),
  14626. default: true
  14627. },
  14628. {
  14629. name: "Macro+",
  14630. height: math.unit(400, "feet")
  14631. },
  14632. {
  14633. name: "Macro++",
  14634. height: math.unit(4000, "feet")
  14635. },
  14636. {
  14637. name: "Megamacro",
  14638. height: math.unit(3, "miles")
  14639. },
  14640. ]
  14641. ))
  14642. characterMakers.push(() => makeCharacter(
  14643. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14644. {
  14645. front: {
  14646. height: math.unit(6, "feet"),
  14647. weight: math.unit(150, "lb"),
  14648. name: "Front",
  14649. image: {
  14650. source: "./media/characters/isaac/front.svg",
  14651. extra: 896 / 815,
  14652. bottom: 0.11
  14653. }
  14654. },
  14655. },
  14656. [
  14657. {
  14658. name: "Human Size",
  14659. height: math.unit(8, "feet"),
  14660. default: true
  14661. },
  14662. {
  14663. name: "Macro",
  14664. height: math.unit(400, "feet")
  14665. },
  14666. {
  14667. name: "Megamacro",
  14668. height: math.unit(50, "miles")
  14669. },
  14670. {
  14671. name: "Canon Height",
  14672. height: math.unit(200, "AU")
  14673. },
  14674. ]
  14675. ))
  14676. characterMakers.push(() => makeCharacter(
  14677. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14678. {
  14679. front: {
  14680. height: math.unit(6, "feet"),
  14681. weight: math.unit(72, "kg"),
  14682. name: "Front",
  14683. image: {
  14684. source: "./media/characters/sleekit/front.svg",
  14685. extra: 4693 / 4487,
  14686. bottom: 0.012
  14687. }
  14688. },
  14689. },
  14690. [
  14691. {
  14692. name: "Minimum Height",
  14693. height: math.unit(10, "meters")
  14694. },
  14695. {
  14696. name: "Smaller",
  14697. height: math.unit(25, "meters")
  14698. },
  14699. {
  14700. name: "Larger",
  14701. height: math.unit(38, "meters"),
  14702. default: true
  14703. },
  14704. {
  14705. name: "Maximum height",
  14706. height: math.unit(100, "meters")
  14707. },
  14708. ]
  14709. ))
  14710. characterMakers.push(() => makeCharacter(
  14711. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14712. {
  14713. front: {
  14714. height: math.unit(6, "feet"),
  14715. weight: math.unit(150, "lb"),
  14716. name: "Front",
  14717. image: {
  14718. source: "./media/characters/nillia/front.svg",
  14719. extra: 2195 / 2037,
  14720. bottom: 0.005
  14721. }
  14722. },
  14723. back: {
  14724. height: math.unit(6, "feet"),
  14725. weight: math.unit(150, "lb"),
  14726. name: "Back",
  14727. image: {
  14728. source: "./media/characters/nillia/back.svg",
  14729. extra: 2195 / 2037,
  14730. bottom: 0.005
  14731. }
  14732. },
  14733. },
  14734. [
  14735. {
  14736. name: "Canon Height",
  14737. height: math.unit(489, "feet"),
  14738. default: true
  14739. }
  14740. ]
  14741. ))
  14742. characterMakers.push(() => makeCharacter(
  14743. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14744. {
  14745. front: {
  14746. height: math.unit(6, "feet"),
  14747. weight: math.unit(150, "lb"),
  14748. name: "Front",
  14749. image: {
  14750. source: "./media/characters/mesmyriza/front.svg",
  14751. extra: 2067 / 1784,
  14752. bottom: 0.035
  14753. }
  14754. },
  14755. foot: {
  14756. height: math.unit(6 / (250 / 35), "feet"),
  14757. name: "Foot",
  14758. image: {
  14759. source: "./media/characters/mesmyriza/foot.svg"
  14760. }
  14761. },
  14762. },
  14763. [
  14764. {
  14765. name: "Macro",
  14766. height: math.unit(457, "meters"),
  14767. default: true
  14768. },
  14769. {
  14770. name: "Megamacro",
  14771. height: math.unit(8, "megameters")
  14772. },
  14773. ]
  14774. ))
  14775. characterMakers.push(() => makeCharacter(
  14776. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14777. {
  14778. front: {
  14779. height: math.unit(6, "feet"),
  14780. weight: math.unit(250, "lb"),
  14781. name: "Front",
  14782. image: {
  14783. source: "./media/characters/saudade/front.svg",
  14784. extra: 1172 / 1139,
  14785. bottom: 0.035
  14786. }
  14787. },
  14788. },
  14789. [
  14790. {
  14791. name: "Micro",
  14792. height: math.unit(3, "inches")
  14793. },
  14794. {
  14795. name: "Normal",
  14796. height: math.unit(6, "feet"),
  14797. default: true
  14798. },
  14799. {
  14800. name: "Macro",
  14801. height: math.unit(50, "feet")
  14802. },
  14803. {
  14804. name: "Megamacro",
  14805. height: math.unit(2800, "feet")
  14806. },
  14807. ]
  14808. ))
  14809. characterMakers.push(() => makeCharacter(
  14810. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14811. {
  14812. front: {
  14813. height: math.unit(5 + 4 / 12, "feet"),
  14814. weight: math.unit(100, "lb"),
  14815. name: "Front",
  14816. image: {
  14817. source: "./media/characters/keireer/front.svg",
  14818. extra: 716 / 666,
  14819. bottom: 0.05
  14820. }
  14821. },
  14822. },
  14823. [
  14824. {
  14825. name: "Normal",
  14826. height: math.unit(5 + 4 / 12, "feet"),
  14827. default: true
  14828. },
  14829. ]
  14830. ))
  14831. characterMakers.push(() => makeCharacter(
  14832. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14833. {
  14834. front: {
  14835. height: math.unit(6, "feet"),
  14836. weight: math.unit(90, "kg"),
  14837. name: "Front",
  14838. image: {
  14839. source: "./media/characters/mirja/front.svg",
  14840. extra: 1789 / 1683,
  14841. bottom: 0.05
  14842. }
  14843. },
  14844. frontDressed: {
  14845. height: math.unit(6, "feet"),
  14846. weight: math.unit(90, "lb"),
  14847. name: "Front (Dressed)",
  14848. image: {
  14849. source: "./media/characters/mirja/front-dressed.svg",
  14850. extra: 1789 / 1683,
  14851. bottom: 0.05
  14852. }
  14853. },
  14854. back: {
  14855. height: math.unit(6, "feet"),
  14856. weight: math.unit(90, "lb"),
  14857. name: "Back",
  14858. image: {
  14859. source: "./media/characters/mirja/back.svg",
  14860. extra: 953 / 917,
  14861. bottom: 0.017
  14862. }
  14863. },
  14864. },
  14865. [
  14866. {
  14867. name: "\"Incognito\"",
  14868. height: math.unit(3, "meters")
  14869. },
  14870. {
  14871. name: "Strolling Size",
  14872. height: math.unit(15, "km")
  14873. },
  14874. {
  14875. name: "Larger Strolling Size",
  14876. height: math.unit(400, "km")
  14877. },
  14878. {
  14879. name: "Preferred Size",
  14880. height: math.unit(5000, "km")
  14881. },
  14882. {
  14883. name: "True Size",
  14884. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14885. default: true
  14886. },
  14887. ]
  14888. ))
  14889. characterMakers.push(() => makeCharacter(
  14890. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14891. {
  14892. front: {
  14893. height: math.unit(15, "feet"),
  14894. weight: math.unit(880, "kg"),
  14895. name: "Front",
  14896. image: {
  14897. source: "./media/characters/nightraver/front.svg",
  14898. extra: 2444 / 2160,
  14899. bottom: 0.027
  14900. }
  14901. },
  14902. back: {
  14903. height: math.unit(15, "feet"),
  14904. weight: math.unit(880, "kg"),
  14905. name: "Back",
  14906. image: {
  14907. source: "./media/characters/nightraver/back.svg",
  14908. extra: 2309 / 2180,
  14909. bottom: 0.005
  14910. }
  14911. },
  14912. sole: {
  14913. height: math.unit(2.878, "feet"),
  14914. name: "Sole",
  14915. image: {
  14916. source: "./media/characters/nightraver/sole.svg"
  14917. }
  14918. },
  14919. foot: {
  14920. height: math.unit(2.285, "feet"),
  14921. name: "Foot",
  14922. image: {
  14923. source: "./media/characters/nightraver/foot.svg"
  14924. }
  14925. },
  14926. maw: {
  14927. height: math.unit(2.67, "feet"),
  14928. name: "Maw",
  14929. image: {
  14930. source: "./media/characters/nightraver/maw.svg"
  14931. }
  14932. },
  14933. },
  14934. [
  14935. {
  14936. name: "Micro",
  14937. height: math.unit(1, "cm")
  14938. },
  14939. {
  14940. name: "Normal",
  14941. height: math.unit(15, "feet"),
  14942. default: true
  14943. },
  14944. {
  14945. name: "Macro",
  14946. height: math.unit(300, "feet")
  14947. },
  14948. {
  14949. name: "Megamacro",
  14950. height: math.unit(300, "miles")
  14951. },
  14952. {
  14953. name: "Gigamacro",
  14954. height: math.unit(10000, "miles")
  14955. },
  14956. ]
  14957. ))
  14958. characterMakers.push(() => makeCharacter(
  14959. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14960. {
  14961. side: {
  14962. height: math.unit(2, "inches"),
  14963. weight: math.unit(5, "grams"),
  14964. name: "Side",
  14965. image: {
  14966. source: "./media/characters/arc/side.svg"
  14967. }
  14968. },
  14969. },
  14970. [
  14971. {
  14972. name: "Micro",
  14973. height: math.unit(2, "inches"),
  14974. default: true
  14975. },
  14976. ]
  14977. ))
  14978. characterMakers.push(() => makeCharacter(
  14979. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14980. {
  14981. front: {
  14982. height: math.unit(1.1938, "meters"),
  14983. weight: math.unit(54, "kg"),
  14984. name: "Front",
  14985. image: {
  14986. source: "./media/characters/nebula-shahar/front.svg",
  14987. extra: 1642 / 1436,
  14988. bottom: 0.06
  14989. }
  14990. },
  14991. },
  14992. [
  14993. {
  14994. name: "Megamicro",
  14995. height: math.unit(0.3, "mm")
  14996. },
  14997. {
  14998. name: "Micro",
  14999. height: math.unit(3, "cm")
  15000. },
  15001. {
  15002. name: "Normal",
  15003. height: math.unit(138, "cm"),
  15004. default: true
  15005. },
  15006. {
  15007. name: "Macro",
  15008. height: math.unit(30, "m")
  15009. },
  15010. ]
  15011. ))
  15012. characterMakers.push(() => makeCharacter(
  15013. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15014. {
  15015. front: {
  15016. height: math.unit(5.24, "feet"),
  15017. weight: math.unit(150, "lb"),
  15018. name: "Front",
  15019. image: {
  15020. source: "./media/characters/shayla/front.svg",
  15021. extra: 1512 / 1414,
  15022. bottom: 0.01
  15023. }
  15024. },
  15025. back: {
  15026. height: math.unit(5.24, "feet"),
  15027. weight: math.unit(150, "lb"),
  15028. name: "Back",
  15029. image: {
  15030. source: "./media/characters/shayla/back.svg",
  15031. extra: 1512 / 1414
  15032. }
  15033. },
  15034. hand: {
  15035. height: math.unit(0.7781496062992126, "feet"),
  15036. name: "Hand",
  15037. image: {
  15038. source: "./media/characters/shayla/hand.svg"
  15039. }
  15040. },
  15041. foot: {
  15042. height: math.unit(1.4206036745406823, "feet"),
  15043. name: "Foot",
  15044. image: {
  15045. source: "./media/characters/shayla/foot.svg"
  15046. }
  15047. },
  15048. },
  15049. [
  15050. {
  15051. name: "Micro",
  15052. height: math.unit(0.32, "feet")
  15053. },
  15054. {
  15055. name: "Normal",
  15056. height: math.unit(5.24, "feet"),
  15057. default: true
  15058. },
  15059. {
  15060. name: "Macro",
  15061. height: math.unit(492.12, "feet")
  15062. },
  15063. {
  15064. name: "Megamacro",
  15065. height: math.unit(186.41, "miles")
  15066. },
  15067. ]
  15068. ))
  15069. characterMakers.push(() => makeCharacter(
  15070. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15071. {
  15072. front: {
  15073. height: math.unit(2.2, "m"),
  15074. weight: math.unit(120, "kg"),
  15075. name: "Front",
  15076. image: {
  15077. source: "./media/characters/pia-jr/front.svg",
  15078. extra: 1000 / 970,
  15079. bottom: 0.035
  15080. }
  15081. },
  15082. hand: {
  15083. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15084. name: "Hand",
  15085. image: {
  15086. source: "./media/characters/pia-jr/hand.svg"
  15087. }
  15088. },
  15089. paw: {
  15090. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15091. name: "Paw",
  15092. image: {
  15093. source: "./media/characters/pia-jr/paw.svg"
  15094. }
  15095. },
  15096. },
  15097. [
  15098. {
  15099. name: "Micro",
  15100. height: math.unit(1.2, "cm")
  15101. },
  15102. {
  15103. name: "Normal",
  15104. height: math.unit(2.2, "m"),
  15105. default: true
  15106. },
  15107. {
  15108. name: "Macro",
  15109. height: math.unit(180, "m")
  15110. },
  15111. {
  15112. name: "Megamacro",
  15113. height: math.unit(420, "km")
  15114. },
  15115. ]
  15116. ))
  15117. characterMakers.push(() => makeCharacter(
  15118. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15119. {
  15120. front: {
  15121. height: math.unit(2, "m"),
  15122. weight: math.unit(115, "kg"),
  15123. name: "Front",
  15124. image: {
  15125. source: "./media/characters/pia-sr/front.svg",
  15126. extra: 760 / 730,
  15127. bottom: 0.015
  15128. }
  15129. },
  15130. back: {
  15131. height: math.unit(2, "m"),
  15132. weight: math.unit(115, "kg"),
  15133. name: "Back",
  15134. image: {
  15135. source: "./media/characters/pia-sr/back.svg",
  15136. extra: 760 / 730,
  15137. bottom: 0.01
  15138. }
  15139. },
  15140. hand: {
  15141. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15142. name: "Hand",
  15143. image: {
  15144. source: "./media/characters/pia-sr/hand.svg"
  15145. }
  15146. },
  15147. foot: {
  15148. height: math.unit(1.83, "feet"),
  15149. name: "Foot",
  15150. image: {
  15151. source: "./media/characters/pia-sr/foot.svg"
  15152. }
  15153. },
  15154. },
  15155. [
  15156. {
  15157. name: "Micro",
  15158. height: math.unit(88, "mm")
  15159. },
  15160. {
  15161. name: "Normal",
  15162. height: math.unit(2, "m"),
  15163. default: true
  15164. },
  15165. {
  15166. name: "Macro",
  15167. height: math.unit(200, "m")
  15168. },
  15169. {
  15170. name: "Megamacro",
  15171. height: math.unit(420, "km")
  15172. },
  15173. ]
  15174. ))
  15175. characterMakers.push(() => makeCharacter(
  15176. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15177. {
  15178. front: {
  15179. height: math.unit(8 + 2 / 12, "feet"),
  15180. weight: math.unit(300, "lb"),
  15181. name: "Front",
  15182. image: {
  15183. source: "./media/characters/kibibyte/front.svg",
  15184. extra: 2221 / 2098,
  15185. bottom: 0.04
  15186. }
  15187. },
  15188. },
  15189. [
  15190. {
  15191. name: "Normal",
  15192. height: math.unit(8 + 2 / 12, "feet"),
  15193. default: true
  15194. },
  15195. {
  15196. name: "Socialable Macro",
  15197. height: math.unit(50, "feet")
  15198. },
  15199. {
  15200. name: "Macro",
  15201. height: math.unit(300, "feet")
  15202. },
  15203. {
  15204. name: "Megamacro",
  15205. height: math.unit(500, "miles")
  15206. },
  15207. ]
  15208. ))
  15209. characterMakers.push(() => makeCharacter(
  15210. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15211. {
  15212. front: {
  15213. height: math.unit(6, "feet"),
  15214. weight: math.unit(150, "lb"),
  15215. name: "Front",
  15216. image: {
  15217. source: "./media/characters/felix/front.svg",
  15218. extra: 762 / 722,
  15219. bottom: 0.02
  15220. }
  15221. },
  15222. frontClothed: {
  15223. height: math.unit(6, "feet"),
  15224. weight: math.unit(150, "lb"),
  15225. name: "Front (Clothed)",
  15226. image: {
  15227. source: "./media/characters/felix/front-clothed.svg",
  15228. extra: 762 / 722,
  15229. bottom: 0.02
  15230. }
  15231. },
  15232. },
  15233. [
  15234. {
  15235. name: "Normal",
  15236. height: math.unit(6 + 8 / 12, "feet"),
  15237. default: true
  15238. },
  15239. {
  15240. name: "Macro",
  15241. height: math.unit(2600, "feet")
  15242. },
  15243. {
  15244. name: "Megamacro",
  15245. height: math.unit(450, "miles")
  15246. },
  15247. ]
  15248. ))
  15249. characterMakers.push(() => makeCharacter(
  15250. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15251. {
  15252. front: {
  15253. height: math.unit(6 + 1 / 12, "feet"),
  15254. weight: math.unit(250, "lb"),
  15255. name: "Front",
  15256. image: {
  15257. source: "./media/characters/tobo/front.svg",
  15258. extra: 608 / 586,
  15259. bottom: 0.023
  15260. }
  15261. },
  15262. back: {
  15263. height: math.unit(6 + 1 / 12, "feet"),
  15264. weight: math.unit(250, "lb"),
  15265. name: "Back",
  15266. image: {
  15267. source: "./media/characters/tobo/back.svg",
  15268. extra: 608 / 586
  15269. }
  15270. },
  15271. },
  15272. [
  15273. {
  15274. name: "Nano",
  15275. height: math.unit(2, "nm")
  15276. },
  15277. {
  15278. name: "Megamicro",
  15279. height: math.unit(0.1, "mm")
  15280. },
  15281. {
  15282. name: "Micro",
  15283. height: math.unit(1, "inch"),
  15284. default: true
  15285. },
  15286. {
  15287. name: "Human-sized",
  15288. height: math.unit(6 + 1 / 12, "feet")
  15289. },
  15290. {
  15291. name: "Macro",
  15292. height: math.unit(250, "feet")
  15293. },
  15294. {
  15295. name: "Megamacro",
  15296. height: math.unit(75, "miles")
  15297. },
  15298. {
  15299. name: "Texas-sized",
  15300. height: math.unit(750, "miles")
  15301. },
  15302. {
  15303. name: "Teramacro",
  15304. height: math.unit(50000, "miles")
  15305. },
  15306. ]
  15307. ))
  15308. characterMakers.push(() => makeCharacter(
  15309. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15310. {
  15311. front: {
  15312. height: math.unit(6, "feet"),
  15313. weight: math.unit(269, "lb"),
  15314. name: "Front",
  15315. image: {
  15316. source: "./media/characters/danny-kapowsky/front.svg",
  15317. extra: 766 / 736,
  15318. bottom: 0.044
  15319. }
  15320. },
  15321. back: {
  15322. height: math.unit(6, "feet"),
  15323. weight: math.unit(269, "lb"),
  15324. name: "Back",
  15325. image: {
  15326. source: "./media/characters/danny-kapowsky/back.svg",
  15327. extra: 797 / 760,
  15328. bottom: 0.025
  15329. }
  15330. },
  15331. },
  15332. [
  15333. {
  15334. name: "Macro",
  15335. height: math.unit(150, "feet"),
  15336. default: true
  15337. },
  15338. {
  15339. name: "Macro+",
  15340. height: math.unit(200, "feet")
  15341. },
  15342. {
  15343. name: "Macro++",
  15344. height: math.unit(300, "feet")
  15345. },
  15346. {
  15347. name: "Macro+++",
  15348. height: math.unit(400, "feet")
  15349. },
  15350. ]
  15351. ))
  15352. characterMakers.push(() => makeCharacter(
  15353. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15354. {
  15355. side: {
  15356. height: math.unit(6, "feet"),
  15357. weight: math.unit(170, "lb"),
  15358. name: "Side",
  15359. image: {
  15360. source: "./media/characters/finn/side.svg",
  15361. extra: 1953 / 1807,
  15362. bottom: 0.057
  15363. }
  15364. },
  15365. },
  15366. [
  15367. {
  15368. name: "Megamacro",
  15369. height: math.unit(14445, "feet"),
  15370. default: true
  15371. },
  15372. ]
  15373. ))
  15374. characterMakers.push(() => makeCharacter(
  15375. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15376. {
  15377. front: {
  15378. height: math.unit(5 + 6 / 12, "feet"),
  15379. weight: math.unit(125, "lb"),
  15380. name: "Front",
  15381. image: {
  15382. source: "./media/characters/roy/front.svg",
  15383. extra: 1,
  15384. bottom: 0.11
  15385. }
  15386. },
  15387. },
  15388. [
  15389. {
  15390. name: "Micro",
  15391. height: math.unit(3, "inches"),
  15392. default: true
  15393. },
  15394. {
  15395. name: "Normal",
  15396. height: math.unit(5 + 6 / 12, "feet")
  15397. },
  15398. {
  15399. name: "Lesser Macro",
  15400. height: math.unit(60, "feet")
  15401. },
  15402. {
  15403. name: "Greater Macro",
  15404. height: math.unit(120, "feet")
  15405. },
  15406. ]
  15407. ))
  15408. characterMakers.push(() => makeCharacter(
  15409. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15410. {
  15411. front: {
  15412. height: math.unit(6, "feet"),
  15413. weight: math.unit(100, "lb"),
  15414. name: "Front",
  15415. image: {
  15416. source: "./media/characters/aevsivs/front.svg",
  15417. extra: 1,
  15418. bottom: 0.03
  15419. }
  15420. },
  15421. back: {
  15422. height: math.unit(6, "feet"),
  15423. weight: math.unit(100, "lb"),
  15424. name: "Back",
  15425. image: {
  15426. source: "./media/characters/aevsivs/back.svg"
  15427. }
  15428. },
  15429. },
  15430. [
  15431. {
  15432. name: "Micro",
  15433. height: math.unit(2, "inches"),
  15434. default: true
  15435. },
  15436. {
  15437. name: "Normal",
  15438. height: math.unit(5, "feet")
  15439. },
  15440. ]
  15441. ))
  15442. characterMakers.push(() => makeCharacter(
  15443. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15444. {
  15445. front: {
  15446. height: math.unit(5 + 7 / 12, "feet"),
  15447. weight: math.unit(159, "lb"),
  15448. name: "Front",
  15449. image: {
  15450. source: "./media/characters/hildegard/front.svg",
  15451. extra: 289 / 269,
  15452. bottom: 7.63 / 297.8
  15453. }
  15454. },
  15455. back: {
  15456. height: math.unit(5 + 7 / 12, "feet"),
  15457. weight: math.unit(159, "lb"),
  15458. name: "Back",
  15459. image: {
  15460. source: "./media/characters/hildegard/back.svg",
  15461. extra: 280 / 260,
  15462. bottom: 2.3 / 282
  15463. }
  15464. },
  15465. },
  15466. [
  15467. {
  15468. name: "Normal",
  15469. height: math.unit(5 + 7 / 12, "feet"),
  15470. default: true
  15471. },
  15472. ]
  15473. ))
  15474. characterMakers.push(() => makeCharacter(
  15475. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15476. {
  15477. bernard: {
  15478. height: math.unit(2 + 7 / 12, "feet"),
  15479. weight: math.unit(66, "lb"),
  15480. name: "Bernard",
  15481. rename: true,
  15482. image: {
  15483. source: "./media/characters/bernard-wilder/bernard.svg",
  15484. extra: 192 / 128,
  15485. bottom: 0.05
  15486. }
  15487. },
  15488. wilder: {
  15489. height: math.unit(5 + 8 / 12, "feet"),
  15490. weight: math.unit(143, "lb"),
  15491. name: "Wilder",
  15492. rename: true,
  15493. image: {
  15494. source: "./media/characters/bernard-wilder/wilder.svg",
  15495. extra: 361 / 312,
  15496. bottom: 0.02
  15497. }
  15498. },
  15499. },
  15500. [
  15501. {
  15502. name: "Normal",
  15503. height: math.unit(2 + 7 / 12, "feet"),
  15504. default: true
  15505. },
  15506. ]
  15507. ))
  15508. characterMakers.push(() => makeCharacter(
  15509. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15510. {
  15511. anthro: {
  15512. height: math.unit(6 + 1 / 12, "feet"),
  15513. weight: math.unit(155, "lb"),
  15514. name: "Anthro",
  15515. image: {
  15516. source: "./media/characters/hearth/anthro.svg",
  15517. extra: 1178/1136,
  15518. bottom: 28/1206
  15519. }
  15520. },
  15521. feral: {
  15522. height: math.unit(3.78, "feet"),
  15523. weight: math.unit(35, "kg"),
  15524. name: "Feral",
  15525. image: {
  15526. source: "./media/characters/hearth/feral.svg",
  15527. extra: 153 / 135,
  15528. bottom: 0.03
  15529. }
  15530. },
  15531. },
  15532. [
  15533. {
  15534. name: "Normal",
  15535. height: math.unit(6 + 1 / 12, "feet"),
  15536. default: true
  15537. },
  15538. ]
  15539. ))
  15540. characterMakers.push(() => makeCharacter(
  15541. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15542. {
  15543. front: {
  15544. height: math.unit(6, "feet"),
  15545. weight: math.unit(182, "lb"),
  15546. name: "Front",
  15547. image: {
  15548. source: "./media/characters/ingrid/front.svg",
  15549. extra: 294 / 268,
  15550. bottom: 0.027
  15551. }
  15552. },
  15553. },
  15554. [
  15555. {
  15556. name: "Normal",
  15557. height: math.unit(6, "feet"),
  15558. default: true
  15559. },
  15560. ]
  15561. ))
  15562. characterMakers.push(() => makeCharacter(
  15563. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15564. {
  15565. eevee: {
  15566. height: math.unit(2 + 10 / 12, "feet"),
  15567. weight: math.unit(86, "lb"),
  15568. name: "Malgam",
  15569. image: {
  15570. source: "./media/characters/malgam/eevee.svg",
  15571. extra: 952/784,
  15572. bottom: 38/990
  15573. }
  15574. },
  15575. sylveon: {
  15576. height: math.unit(4, "feet"),
  15577. weight: math.unit(101, "lb"),
  15578. name: "Future Malgam",
  15579. rename: true,
  15580. image: {
  15581. source: "./media/characters/malgam/sylveon.svg",
  15582. extra: 371 / 325,
  15583. bottom: 0.015
  15584. }
  15585. },
  15586. gigantamax: {
  15587. height: math.unit(50, "feet"),
  15588. name: "Gigantamax Malgam",
  15589. rename: true,
  15590. image: {
  15591. source: "./media/characters/malgam/gigantamax.svg"
  15592. }
  15593. },
  15594. },
  15595. [
  15596. {
  15597. name: "Normal",
  15598. height: math.unit(2 + 10 / 12, "feet"),
  15599. default: true
  15600. },
  15601. ]
  15602. ))
  15603. characterMakers.push(() => makeCharacter(
  15604. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15605. {
  15606. front: {
  15607. height: math.unit(5 + 11 / 12, "feet"),
  15608. weight: math.unit(188, "lb"),
  15609. name: "Front",
  15610. image: {
  15611. source: "./media/characters/fleur/front.svg",
  15612. extra: 309 / 283,
  15613. bottom: 0.007
  15614. }
  15615. },
  15616. },
  15617. [
  15618. {
  15619. name: "Normal",
  15620. height: math.unit(5 + 11 / 12, "feet"),
  15621. default: true
  15622. },
  15623. ]
  15624. ))
  15625. characterMakers.push(() => makeCharacter(
  15626. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15627. {
  15628. front: {
  15629. height: math.unit(5 + 4 / 12, "feet"),
  15630. weight: math.unit(122, "lb"),
  15631. name: "Front",
  15632. image: {
  15633. source: "./media/characters/jude/front.svg",
  15634. extra: 288 / 273,
  15635. bottom: 0.03
  15636. }
  15637. },
  15638. },
  15639. [
  15640. {
  15641. name: "Normal",
  15642. height: math.unit(5 + 4 / 12, "feet"),
  15643. default: true
  15644. },
  15645. ]
  15646. ))
  15647. characterMakers.push(() => makeCharacter(
  15648. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15649. {
  15650. front: {
  15651. height: math.unit(5 + 11 / 12, "feet"),
  15652. weight: math.unit(190, "lb"),
  15653. name: "Front",
  15654. image: {
  15655. source: "./media/characters/seara/front.svg",
  15656. extra: 1,
  15657. bottom: 0.05
  15658. }
  15659. },
  15660. },
  15661. [
  15662. {
  15663. name: "Normal",
  15664. height: math.unit(5 + 11 / 12, "feet"),
  15665. default: true
  15666. },
  15667. ]
  15668. ))
  15669. characterMakers.push(() => makeCharacter(
  15670. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  15671. {
  15672. front: {
  15673. height: math.unit(16 + 5 / 12, "feet"),
  15674. weight: math.unit(524, "lb"),
  15675. name: "Front",
  15676. image: {
  15677. source: "./media/characters/caspian-lugia/front.svg",
  15678. extra: 1,
  15679. bottom: 0.04
  15680. }
  15681. },
  15682. },
  15683. [
  15684. {
  15685. name: "Normal",
  15686. height: math.unit(16 + 5 / 12, "feet"),
  15687. default: true
  15688. },
  15689. ]
  15690. ))
  15691. characterMakers.push(() => makeCharacter(
  15692. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15693. {
  15694. front: {
  15695. height: math.unit(5 + 7 / 12, "feet"),
  15696. weight: math.unit(170, "lb"),
  15697. name: "Front",
  15698. image: {
  15699. source: "./media/characters/mika/front.svg",
  15700. extra: 1,
  15701. bottom: 0.016
  15702. }
  15703. },
  15704. },
  15705. [
  15706. {
  15707. name: "Normal",
  15708. height: math.unit(5 + 7 / 12, "feet"),
  15709. default: true
  15710. },
  15711. ]
  15712. ))
  15713. characterMakers.push(() => makeCharacter(
  15714. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15715. {
  15716. front: {
  15717. height: math.unit(6 + 2 / 12, "feet"),
  15718. weight: math.unit(268, "lb"),
  15719. name: "Front",
  15720. image: {
  15721. source: "./media/characters/sol/front.svg",
  15722. extra: 247 / 231,
  15723. bottom: 0.05
  15724. }
  15725. },
  15726. },
  15727. [
  15728. {
  15729. name: "Normal",
  15730. height: math.unit(6 + 2 / 12, "feet"),
  15731. default: true
  15732. },
  15733. ]
  15734. ))
  15735. characterMakers.push(() => makeCharacter(
  15736. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15737. {
  15738. buizel: {
  15739. height: math.unit(2 + 5 / 12, "feet"),
  15740. weight: math.unit(87, "lb"),
  15741. name: "Front",
  15742. image: {
  15743. source: "./media/characters/umiko/buizel.svg",
  15744. extra: 172 / 157,
  15745. bottom: 0.01
  15746. },
  15747. form: "buizel",
  15748. default: true
  15749. },
  15750. floatzel: {
  15751. height: math.unit(5 + 9 / 12, "feet"),
  15752. weight: math.unit(250, "lb"),
  15753. name: "Front",
  15754. image: {
  15755. source: "./media/characters/umiko/floatzel.svg",
  15756. extra: 1076/1006,
  15757. bottom: 15/1091
  15758. },
  15759. form: "floatzel",
  15760. default: true
  15761. },
  15762. },
  15763. [
  15764. {
  15765. name: "Normal",
  15766. height: math.unit(2 + 5 / 12, "feet"),
  15767. form: "buizel",
  15768. default: true
  15769. },
  15770. {
  15771. name: "Normal",
  15772. height: math.unit(5 + 9 / 12, "feet"),
  15773. form: "floatzel",
  15774. default: true
  15775. },
  15776. ],
  15777. {
  15778. "buizel": {
  15779. name: "Buizel"
  15780. },
  15781. "floatzel": {
  15782. name: "Floatzel",
  15783. default: true
  15784. }
  15785. }
  15786. ))
  15787. characterMakers.push(() => makeCharacter(
  15788. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15789. {
  15790. front: {
  15791. height: math.unit(6 + 2 / 12, "feet"),
  15792. weight: math.unit(146, "lb"),
  15793. name: "Front",
  15794. image: {
  15795. source: "./media/characters/iliac/front.svg",
  15796. extra: 389 / 365,
  15797. bottom: 0.035
  15798. }
  15799. },
  15800. },
  15801. [
  15802. {
  15803. name: "Normal",
  15804. height: math.unit(6 + 2 / 12, "feet"),
  15805. default: true
  15806. },
  15807. ]
  15808. ))
  15809. characterMakers.push(() => makeCharacter(
  15810. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15811. {
  15812. front: {
  15813. height: math.unit(6, "feet"),
  15814. weight: math.unit(170, "lb"),
  15815. name: "Front",
  15816. image: {
  15817. source: "./media/characters/topaz/front.svg",
  15818. extra: 317 / 303,
  15819. bottom: 0.055
  15820. }
  15821. },
  15822. },
  15823. [
  15824. {
  15825. name: "Normal",
  15826. height: math.unit(6, "feet"),
  15827. default: true
  15828. },
  15829. ]
  15830. ))
  15831. characterMakers.push(() => makeCharacter(
  15832. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15833. {
  15834. front: {
  15835. height: math.unit(5 + 11 / 12, "feet"),
  15836. weight: math.unit(144, "lb"),
  15837. name: "Front",
  15838. image: {
  15839. source: "./media/characters/gabriel/front.svg",
  15840. extra: 285 / 262,
  15841. bottom: 0.004
  15842. }
  15843. },
  15844. },
  15845. [
  15846. {
  15847. name: "Normal",
  15848. height: math.unit(5 + 11 / 12, "feet"),
  15849. default: true
  15850. },
  15851. ]
  15852. ))
  15853. characterMakers.push(() => makeCharacter(
  15854. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15855. {
  15856. side: {
  15857. height: math.unit(6 + 5 / 12, "feet"),
  15858. weight: math.unit(300, "lb"),
  15859. name: "Side",
  15860. image: {
  15861. source: "./media/characters/tempest-suicune/side.svg",
  15862. extra: 195 / 154,
  15863. bottom: 0.04
  15864. }
  15865. },
  15866. },
  15867. [
  15868. {
  15869. name: "Normal",
  15870. height: math.unit(6 + 5 / 12, "feet"),
  15871. default: true
  15872. },
  15873. ]
  15874. ))
  15875. characterMakers.push(() => makeCharacter(
  15876. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15877. {
  15878. front: {
  15879. height: math.unit(7 + 2 / 12, "feet"),
  15880. weight: math.unit(322, "lb"),
  15881. name: "Front",
  15882. image: {
  15883. source: "./media/characters/vulcan/front.svg",
  15884. extra: 154 / 147,
  15885. bottom: 0.04
  15886. }
  15887. },
  15888. },
  15889. [
  15890. {
  15891. name: "Normal",
  15892. height: math.unit(7 + 2 / 12, "feet"),
  15893. default: true
  15894. },
  15895. ]
  15896. ))
  15897. characterMakers.push(() => makeCharacter(
  15898. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15899. {
  15900. front: {
  15901. height: math.unit(5 + 10 / 12, "feet"),
  15902. weight: math.unit(264, "lb"),
  15903. name: "Front",
  15904. image: {
  15905. source: "./media/characters/gault/front.svg",
  15906. extra: 161 / 140,
  15907. bottom: 0.028
  15908. }
  15909. },
  15910. },
  15911. [
  15912. {
  15913. name: "Normal",
  15914. height: math.unit(5 + 10 / 12, "feet"),
  15915. default: true
  15916. },
  15917. ]
  15918. ))
  15919. characterMakers.push(() => makeCharacter(
  15920. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15921. {
  15922. front: {
  15923. height: math.unit(6, "feet"),
  15924. weight: math.unit(150, "lb"),
  15925. name: "Front",
  15926. image: {
  15927. source: "./media/characters/shard/front.svg",
  15928. extra: 273 / 238,
  15929. bottom: 0.02
  15930. }
  15931. },
  15932. },
  15933. [
  15934. {
  15935. name: "Normal",
  15936. height: math.unit(3 + 6 / 12, "feet"),
  15937. default: true
  15938. },
  15939. ]
  15940. ))
  15941. characterMakers.push(() => makeCharacter(
  15942. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15943. {
  15944. front: {
  15945. height: math.unit(5 + 11 / 12, "feet"),
  15946. weight: math.unit(146, "lb"),
  15947. name: "Front",
  15948. image: {
  15949. source: "./media/characters/ashe/front.svg",
  15950. extra: 400 / 373,
  15951. bottom: 0.01
  15952. }
  15953. },
  15954. },
  15955. [
  15956. {
  15957. name: "Normal",
  15958. height: math.unit(5 + 11 / 12, "feet"),
  15959. default: true
  15960. },
  15961. ]
  15962. ))
  15963. characterMakers.push(() => makeCharacter(
  15964. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15965. {
  15966. front: {
  15967. height: math.unit(5 + 5 / 12, "feet"),
  15968. weight: math.unit(135, "lb"),
  15969. name: "Front",
  15970. image: {
  15971. source: "./media/characters/beatrix/front.svg",
  15972. extra: 392 / 379,
  15973. bottom: 0.01
  15974. }
  15975. },
  15976. },
  15977. [
  15978. {
  15979. name: "Normal",
  15980. height: math.unit(6, "feet"),
  15981. default: true
  15982. },
  15983. ]
  15984. ))
  15985. characterMakers.push(() => makeCharacter(
  15986. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15987. {
  15988. front: {
  15989. height: math.unit(6 + 2/12, "feet"),
  15990. weight: math.unit(135, "lb"),
  15991. name: "Front",
  15992. image: {
  15993. source: "./media/characters/ignatius/front.svg",
  15994. extra: 1380/1259,
  15995. bottom: 27/1407
  15996. }
  15997. },
  15998. },
  15999. [
  16000. {
  16001. name: "Normal",
  16002. height: math.unit(6 + 2/12, "feet"),
  16003. default: true
  16004. },
  16005. ]
  16006. ))
  16007. characterMakers.push(() => makeCharacter(
  16008. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16009. {
  16010. front: {
  16011. height: math.unit(6 + 2 / 12, "feet"),
  16012. weight: math.unit(138, "lb"),
  16013. name: "Front",
  16014. image: {
  16015. source: "./media/characters/mei-li/front.svg",
  16016. extra: 237 / 229,
  16017. bottom: 0.03
  16018. }
  16019. },
  16020. },
  16021. [
  16022. {
  16023. name: "Normal",
  16024. height: math.unit(6 + 2 / 12, "feet"),
  16025. default: true
  16026. },
  16027. ]
  16028. ))
  16029. characterMakers.push(() => makeCharacter(
  16030. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16031. {
  16032. front: {
  16033. height: math.unit(2 + 4 / 12, "feet"),
  16034. weight: math.unit(62, "lb"),
  16035. name: "Front",
  16036. image: {
  16037. source: "./media/characters/puru/front.svg",
  16038. extra: 206 / 149,
  16039. bottom: 0.06
  16040. }
  16041. },
  16042. },
  16043. [
  16044. {
  16045. name: "Normal",
  16046. height: math.unit(2 + 4 / 12, "feet"),
  16047. default: true
  16048. },
  16049. ]
  16050. ))
  16051. characterMakers.push(() => makeCharacter(
  16052. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16053. {
  16054. anthro: {
  16055. height: math.unit(5 + 8/12, "feet"),
  16056. weight: math.unit(200, "lb"),
  16057. energyNeed: math.unit(2000, "kcal"),
  16058. name: "Anthro",
  16059. image: {
  16060. source: "./media/characters/kee/anthro.svg",
  16061. extra: 3251/3184,
  16062. bottom: 250/3501
  16063. }
  16064. },
  16065. taur: {
  16066. height: math.unit(11, "feet"),
  16067. weight: math.unit(500, "lb"),
  16068. energyNeed: math.unit(5000, "kcal"),
  16069. name: "Taur",
  16070. image: {
  16071. source: "./media/characters/kee/taur.svg",
  16072. extra: 1362/1320,
  16073. bottom: 83/1445
  16074. }
  16075. },
  16076. },
  16077. [
  16078. {
  16079. name: "Normal",
  16080. height: math.unit(5 + 8/12, "feet"),
  16081. default: true
  16082. },
  16083. {
  16084. name: "Macro",
  16085. height: math.unit(35, "feet")
  16086. },
  16087. ]
  16088. ))
  16089. characterMakers.push(() => makeCharacter(
  16090. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16091. {
  16092. anthro: {
  16093. height: math.unit(7, "feet"),
  16094. weight: math.unit(190, "lb"),
  16095. name: "Anthro",
  16096. image: {
  16097. source: "./media/characters/cobalt-dracha/anthro.svg",
  16098. extra: 231 / 225,
  16099. bottom: 0.04
  16100. }
  16101. },
  16102. feral: {
  16103. height: math.unit(9 + 7 / 12, "feet"),
  16104. weight: math.unit(294, "lb"),
  16105. name: "Feral",
  16106. image: {
  16107. source: "./media/characters/cobalt-dracha/feral.svg",
  16108. extra: 692 / 633,
  16109. bottom: 0.05
  16110. }
  16111. },
  16112. },
  16113. [
  16114. {
  16115. name: "Normal",
  16116. height: math.unit(7, "feet"),
  16117. default: true
  16118. },
  16119. ]
  16120. ))
  16121. characterMakers.push(() => makeCharacter(
  16122. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16123. {
  16124. fallen: {
  16125. height: math.unit(11 + 8 / 12, "feet"),
  16126. weight: math.unit(485, "lb"),
  16127. name: "Java (Fallen)",
  16128. rename: true,
  16129. image: {
  16130. source: "./media/characters/java/fallen.svg",
  16131. extra: 226 / 208,
  16132. bottom: 0.005
  16133. }
  16134. },
  16135. godkin: {
  16136. height: math.unit(10 + 6 / 12, "feet"),
  16137. weight: math.unit(328, "lb"),
  16138. name: "Java (Godkin)",
  16139. rename: true,
  16140. image: {
  16141. source: "./media/characters/java/godkin.svg",
  16142. extra: 1104/1068,
  16143. bottom: 36/1140
  16144. }
  16145. },
  16146. },
  16147. [
  16148. {
  16149. name: "Normal",
  16150. height: math.unit(11 + 8 / 12, "feet"),
  16151. default: true
  16152. },
  16153. ]
  16154. ))
  16155. characterMakers.push(() => makeCharacter(
  16156. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16157. {
  16158. front: {
  16159. height: math.unit(5 + 9 / 12, "feet"),
  16160. weight: math.unit(170, "lb"),
  16161. name: "Front",
  16162. image: {
  16163. source: "./media/characters/purna/front.svg",
  16164. extra: 239 / 229,
  16165. bottom: 0.01
  16166. }
  16167. },
  16168. },
  16169. [
  16170. {
  16171. name: "Normal",
  16172. height: math.unit(5 + 9 / 12, "feet"),
  16173. default: true
  16174. },
  16175. ]
  16176. ))
  16177. characterMakers.push(() => makeCharacter(
  16178. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16179. {
  16180. front: {
  16181. height: math.unit(5 + 9 / 12, "feet"),
  16182. weight: math.unit(142, "lb"),
  16183. name: "Front",
  16184. image: {
  16185. source: "./media/characters/kuva/front.svg",
  16186. extra: 281 / 271,
  16187. bottom: 0.006
  16188. }
  16189. },
  16190. },
  16191. [
  16192. {
  16193. name: "Normal",
  16194. height: math.unit(5 + 9 / 12, "feet"),
  16195. default: true
  16196. },
  16197. ]
  16198. ))
  16199. characterMakers.push(() => makeCharacter(
  16200. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16201. {
  16202. anthro: {
  16203. height: math.unit(9 + 2 / 12, "feet"),
  16204. weight: math.unit(270, "lb"),
  16205. name: "Anthro",
  16206. image: {
  16207. source: "./media/characters/embra/anthro.svg",
  16208. extra: 200 / 187,
  16209. bottom: 0.02
  16210. }
  16211. },
  16212. feral: {
  16213. height: math.unit(18 + 8 / 12, "feet"),
  16214. weight: math.unit(576, "lb"),
  16215. name: "Feral",
  16216. image: {
  16217. source: "./media/characters/embra/feral.svg",
  16218. extra: 152 / 137,
  16219. bottom: 0.037
  16220. }
  16221. },
  16222. },
  16223. [
  16224. {
  16225. name: "Normal",
  16226. height: math.unit(9 + 2 / 12, "feet"),
  16227. default: true
  16228. },
  16229. ]
  16230. ))
  16231. characterMakers.push(() => makeCharacter(
  16232. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16233. {
  16234. anthro: {
  16235. height: math.unit(10 + 9 / 12, "feet"),
  16236. weight: math.unit(224, "lb"),
  16237. name: "Anthro",
  16238. image: {
  16239. source: "./media/characters/grottos/anthro.svg",
  16240. extra: 350 / 332,
  16241. bottom: 0.045
  16242. }
  16243. },
  16244. feral: {
  16245. height: math.unit(20 + 7 / 12, "feet"),
  16246. weight: math.unit(629, "lb"),
  16247. name: "Feral",
  16248. image: {
  16249. source: "./media/characters/grottos/feral.svg",
  16250. extra: 207 / 190,
  16251. bottom: 0.05
  16252. }
  16253. },
  16254. },
  16255. [
  16256. {
  16257. name: "Normal",
  16258. height: math.unit(10 + 9 / 12, "feet"),
  16259. default: true
  16260. },
  16261. ]
  16262. ))
  16263. characterMakers.push(() => makeCharacter(
  16264. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16265. {
  16266. anthro: {
  16267. height: math.unit(9 + 6 / 12, "feet"),
  16268. weight: math.unit(298, "lb"),
  16269. name: "Anthro",
  16270. image: {
  16271. source: "./media/characters/frifna/anthro.svg",
  16272. extra: 282 / 269,
  16273. bottom: 0.015
  16274. }
  16275. },
  16276. feral: {
  16277. height: math.unit(16 + 2 / 12, "feet"),
  16278. weight: math.unit(624, "lb"),
  16279. name: "Feral",
  16280. image: {
  16281. source: "./media/characters/frifna/feral.svg"
  16282. }
  16283. },
  16284. },
  16285. [
  16286. {
  16287. name: "Normal",
  16288. height: math.unit(9 + 6 / 12, "feet"),
  16289. default: true
  16290. },
  16291. ]
  16292. ))
  16293. characterMakers.push(() => makeCharacter(
  16294. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16295. {
  16296. front: {
  16297. height: math.unit(6 + 2 / 12, "feet"),
  16298. weight: math.unit(168, "lb"),
  16299. name: "Front",
  16300. image: {
  16301. source: "./media/characters/elise/front.svg",
  16302. extra: 276 / 271
  16303. }
  16304. },
  16305. },
  16306. [
  16307. {
  16308. name: "Normal",
  16309. height: math.unit(6 + 2 / 12, "feet"),
  16310. default: true
  16311. },
  16312. ]
  16313. ))
  16314. characterMakers.push(() => makeCharacter(
  16315. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16316. {
  16317. front: {
  16318. height: math.unit(5 + 10 / 12, "feet"),
  16319. weight: math.unit(210, "lb"),
  16320. name: "Front",
  16321. image: {
  16322. source: "./media/characters/glade/front.svg",
  16323. extra: 258 / 247,
  16324. bottom: 0.008
  16325. }
  16326. },
  16327. },
  16328. [
  16329. {
  16330. name: "Normal",
  16331. height: math.unit(5 + 10 / 12, "feet"),
  16332. default: true
  16333. },
  16334. ]
  16335. ))
  16336. characterMakers.push(() => makeCharacter(
  16337. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16338. {
  16339. front: {
  16340. height: math.unit(5 + 10 / 12, "feet"),
  16341. weight: math.unit(129, "lb"),
  16342. name: "Front",
  16343. image: {
  16344. source: "./media/characters/rina/front.svg",
  16345. extra: 266 / 255,
  16346. bottom: 0.005
  16347. }
  16348. },
  16349. },
  16350. [
  16351. {
  16352. name: "Normal",
  16353. height: math.unit(5 + 10 / 12, "feet"),
  16354. default: true
  16355. },
  16356. ]
  16357. ))
  16358. characterMakers.push(() => makeCharacter(
  16359. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16360. {
  16361. front: {
  16362. height: math.unit(6 + 1 / 12, "feet"),
  16363. weight: math.unit(192, "lb"),
  16364. name: "Front",
  16365. image: {
  16366. source: "./media/characters/veronica/front.svg",
  16367. extra: 319 / 309,
  16368. bottom: 0.005
  16369. }
  16370. },
  16371. },
  16372. [
  16373. {
  16374. name: "Normal",
  16375. height: math.unit(6 + 1 / 12, "feet"),
  16376. default: true
  16377. },
  16378. ]
  16379. ))
  16380. characterMakers.push(() => makeCharacter(
  16381. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16382. {
  16383. front: {
  16384. height: math.unit(9 + 3 / 12, "feet"),
  16385. weight: math.unit(1100, "lb"),
  16386. name: "Front",
  16387. image: {
  16388. source: "./media/characters/braxton/front.svg",
  16389. extra: 1057 / 984,
  16390. bottom: 0.05
  16391. }
  16392. },
  16393. },
  16394. [
  16395. {
  16396. name: "Normal",
  16397. height: math.unit(9 + 3 / 12, "feet")
  16398. },
  16399. {
  16400. name: "Giant",
  16401. height: math.unit(300, "feet"),
  16402. default: true
  16403. },
  16404. {
  16405. name: "Macro",
  16406. height: math.unit(700, "feet")
  16407. },
  16408. {
  16409. name: "Megamacro",
  16410. height: math.unit(6000, "feet")
  16411. },
  16412. ]
  16413. ))
  16414. characterMakers.push(() => makeCharacter(
  16415. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16416. {
  16417. front: {
  16418. height: math.unit(6 + 7 / 12, "feet"),
  16419. weight: math.unit(150, "lb"),
  16420. name: "Front",
  16421. image: {
  16422. source: "./media/characters/blue-feyonics/front.svg",
  16423. extra: 1403 / 1306,
  16424. bottom: 0.047
  16425. }
  16426. },
  16427. },
  16428. [
  16429. {
  16430. name: "Normal",
  16431. height: math.unit(6 + 7 / 12, "feet"),
  16432. default: true
  16433. },
  16434. ]
  16435. ))
  16436. characterMakers.push(() => makeCharacter(
  16437. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16438. {
  16439. front: {
  16440. height: math.unit(1.8, "meters"),
  16441. weight: math.unit(60, "kg"),
  16442. name: "Front",
  16443. image: {
  16444. source: "./media/characters/maxwell/front.svg",
  16445. extra: 2060 / 1873
  16446. }
  16447. },
  16448. },
  16449. [
  16450. {
  16451. name: "Micro",
  16452. height: math.unit(1, "mm")
  16453. },
  16454. {
  16455. name: "Normal",
  16456. height: math.unit(1.8, "meter"),
  16457. default: true
  16458. },
  16459. {
  16460. name: "Macro",
  16461. height: math.unit(30, "meters")
  16462. },
  16463. {
  16464. name: "Megamacro",
  16465. height: math.unit(10, "km")
  16466. },
  16467. ]
  16468. ))
  16469. characterMakers.push(() => makeCharacter(
  16470. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16471. {
  16472. front: {
  16473. height: math.unit(6, "feet"),
  16474. weight: math.unit(150, "lb"),
  16475. name: "Front",
  16476. image: {
  16477. source: "./media/characters/jack/front.svg",
  16478. extra: 1754 / 1640,
  16479. bottom: 0.01
  16480. }
  16481. },
  16482. },
  16483. [
  16484. {
  16485. name: "Normal",
  16486. height: math.unit(80000, "feet"),
  16487. default: true
  16488. },
  16489. {
  16490. name: "Max size",
  16491. height: math.unit(10, "lightyears")
  16492. },
  16493. ]
  16494. ))
  16495. characterMakers.push(() => makeCharacter(
  16496. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16497. {
  16498. urban: {
  16499. height: math.unit(5, "feet"),
  16500. weight: math.unit(240, "lb"),
  16501. name: "Urban",
  16502. image: {
  16503. source: "./media/characters/cafat/urban.svg",
  16504. extra: 1223/1126,
  16505. bottom: 205/1428
  16506. }
  16507. },
  16508. summer: {
  16509. height: math.unit(5, "feet"),
  16510. weight: math.unit(240, "lb"),
  16511. name: "Summer",
  16512. image: {
  16513. source: "./media/characters/cafat/summer.svg",
  16514. extra: 1223/1126,
  16515. bottom: 205/1428
  16516. }
  16517. },
  16518. winter: {
  16519. height: math.unit(5, "feet"),
  16520. weight: math.unit(240, "lb"),
  16521. name: "Winter",
  16522. image: {
  16523. source: "./media/characters/cafat/winter.svg",
  16524. extra: 1223/1126,
  16525. bottom: 205/1428
  16526. }
  16527. },
  16528. lingerie: {
  16529. height: math.unit(5, "feet"),
  16530. weight: math.unit(240, "lb"),
  16531. name: "Lingerie",
  16532. image: {
  16533. source: "./media/characters/cafat/lingerie.svg",
  16534. extra: 1223/1126,
  16535. bottom: 205/1428
  16536. }
  16537. },
  16538. upright: {
  16539. height: math.unit(6.3, "feet"),
  16540. weight: math.unit(240, "lb"),
  16541. name: "Upright",
  16542. image: {
  16543. source: "./media/characters/cafat/upright.svg",
  16544. bottom: 0.01
  16545. }
  16546. },
  16547. uprightFull: {
  16548. height: math.unit(6.3, "feet"),
  16549. weight: math.unit(240, "lb"),
  16550. name: "Upright (Full)",
  16551. image: {
  16552. source: "./media/characters/cafat/upright-full.svg",
  16553. bottom: 0.01
  16554. }
  16555. },
  16556. },
  16557. [
  16558. {
  16559. name: "Small",
  16560. height: math.unit(5, "feet"),
  16561. default: true
  16562. },
  16563. {
  16564. name: "Large",
  16565. height: math.unit(13, "feet")
  16566. },
  16567. ]
  16568. ))
  16569. characterMakers.push(() => makeCharacter(
  16570. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16571. {
  16572. front: {
  16573. height: math.unit(6, "feet"),
  16574. weight: math.unit(150, "lb"),
  16575. name: "Front",
  16576. image: {
  16577. source: "./media/characters/verin-raharra/front.svg",
  16578. extra: 5019 / 4835,
  16579. bottom: 0.023
  16580. }
  16581. },
  16582. },
  16583. [
  16584. {
  16585. name: "Normal",
  16586. height: math.unit(7 + 5 / 12, "feet"),
  16587. default: true
  16588. },
  16589. {
  16590. name: "Upsized",
  16591. height: math.unit(20, "feet")
  16592. },
  16593. ]
  16594. ))
  16595. characterMakers.push(() => makeCharacter(
  16596. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16597. {
  16598. front: {
  16599. height: math.unit(7, "feet"),
  16600. weight: math.unit(230, "lb"),
  16601. name: "Front",
  16602. image: {
  16603. source: "./media/characters/nakata/front.svg",
  16604. extra: 1.005,
  16605. bottom: 0.01
  16606. }
  16607. },
  16608. },
  16609. [
  16610. {
  16611. name: "Normal",
  16612. height: math.unit(7, "feet"),
  16613. default: true
  16614. },
  16615. {
  16616. name: "Big",
  16617. height: math.unit(14, "feet")
  16618. },
  16619. {
  16620. name: "Macro",
  16621. height: math.unit(400, "feet")
  16622. },
  16623. ]
  16624. ))
  16625. characterMakers.push(() => makeCharacter(
  16626. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16627. {
  16628. front: {
  16629. height: math.unit(4.91, "feet"),
  16630. weight: math.unit(100, "lb"),
  16631. name: "Front",
  16632. image: {
  16633. source: "./media/characters/lily/front.svg",
  16634. extra: 1585 / 1415,
  16635. bottom: 0.02
  16636. }
  16637. },
  16638. },
  16639. [
  16640. {
  16641. name: "Normal",
  16642. height: math.unit(4.91, "feet"),
  16643. default: true
  16644. },
  16645. ]
  16646. ))
  16647. characterMakers.push(() => makeCharacter(
  16648. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16649. {
  16650. laying: {
  16651. height: math.unit(4 + 4 / 12, "feet"),
  16652. weight: math.unit(600, "lb"),
  16653. name: "Laying",
  16654. image: {
  16655. source: "./media/characters/sheila/laying.svg",
  16656. extra: 1333 / 1265,
  16657. bottom: 0.16
  16658. }
  16659. },
  16660. },
  16661. [
  16662. {
  16663. name: "Normal",
  16664. height: math.unit(4 + 4 / 12, "feet"),
  16665. default: true
  16666. },
  16667. ]
  16668. ))
  16669. characterMakers.push(() => makeCharacter(
  16670. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16671. {
  16672. front: {
  16673. height: math.unit(6, "feet"),
  16674. weight: math.unit(190, "lb"),
  16675. name: "Front",
  16676. image: {
  16677. source: "./media/characters/sax/front.svg",
  16678. extra: 1187 / 973,
  16679. bottom: 0.042
  16680. }
  16681. },
  16682. },
  16683. [
  16684. {
  16685. name: "Micro",
  16686. height: math.unit(4, "inches"),
  16687. default: true
  16688. },
  16689. ]
  16690. ))
  16691. characterMakers.push(() => makeCharacter(
  16692. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16693. {
  16694. front: {
  16695. height: math.unit(6, "feet"),
  16696. weight: math.unit(150, "lb"),
  16697. name: "Front",
  16698. image: {
  16699. source: "./media/characters/pandora/front.svg",
  16700. extra: 2720 / 2556,
  16701. bottom: 0.015
  16702. }
  16703. },
  16704. back: {
  16705. height: math.unit(6, "feet"),
  16706. weight: math.unit(150, "lb"),
  16707. name: "Back",
  16708. image: {
  16709. source: "./media/characters/pandora/back.svg",
  16710. extra: 2720 / 2556,
  16711. bottom: 0.01
  16712. }
  16713. },
  16714. beans: {
  16715. height: math.unit(6 / 8, "feet"),
  16716. name: "Beans",
  16717. image: {
  16718. source: "./media/characters/pandora/beans.svg"
  16719. }
  16720. },
  16721. collar: {
  16722. height: math.unit(0.31, "feet"),
  16723. name: "Collar",
  16724. image: {
  16725. source: "./media/characters/pandora/collar.svg"
  16726. }
  16727. },
  16728. skirt: {
  16729. height: math.unit(6, "feet"),
  16730. weight: math.unit(150, "lb"),
  16731. name: "Skirt",
  16732. image: {
  16733. source: "./media/characters/pandora/skirt.svg",
  16734. extra: 1622 / 1525,
  16735. bottom: 0.015
  16736. }
  16737. },
  16738. hoodie: {
  16739. height: math.unit(6, "feet"),
  16740. weight: math.unit(150, "lb"),
  16741. name: "Hoodie",
  16742. image: {
  16743. source: "./media/characters/pandora/hoodie.svg",
  16744. extra: 1622 / 1525,
  16745. bottom: 0.015
  16746. }
  16747. },
  16748. casual: {
  16749. height: math.unit(6, "feet"),
  16750. weight: math.unit(150, "lb"),
  16751. name: "Casual",
  16752. image: {
  16753. source: "./media/characters/pandora/casual.svg",
  16754. extra: 1622 / 1525,
  16755. bottom: 0.015
  16756. }
  16757. },
  16758. },
  16759. [
  16760. {
  16761. name: "Normal",
  16762. height: math.unit(6, "feet")
  16763. },
  16764. {
  16765. name: "Big Steppy",
  16766. height: math.unit(1, "km"),
  16767. default: true
  16768. },
  16769. {
  16770. name: "Galactic Steppy",
  16771. height: math.unit(2, "gigameters")
  16772. },
  16773. ]
  16774. ))
  16775. characterMakers.push(() => makeCharacter(
  16776. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16777. {
  16778. side: {
  16779. height: math.unit(10, "feet"),
  16780. weight: math.unit(800, "kg"),
  16781. name: "Side",
  16782. image: {
  16783. source: "./media/characters/venio-darcony/side.svg",
  16784. extra: 1373 / 1003,
  16785. bottom: 0.037
  16786. }
  16787. },
  16788. front: {
  16789. height: math.unit(19, "feet"),
  16790. weight: math.unit(800, "kg"),
  16791. name: "Front",
  16792. image: {
  16793. source: "./media/characters/venio-darcony/front.svg"
  16794. }
  16795. },
  16796. back: {
  16797. height: math.unit(19, "feet"),
  16798. weight: math.unit(800, "kg"),
  16799. name: "Back",
  16800. image: {
  16801. source: "./media/characters/venio-darcony/back.svg"
  16802. }
  16803. },
  16804. sideNsfw: {
  16805. height: math.unit(10, "feet"),
  16806. weight: math.unit(800, "kg"),
  16807. name: "Side (NSFW)",
  16808. image: {
  16809. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16810. extra: 1373 / 1003,
  16811. bottom: 0.037
  16812. }
  16813. },
  16814. frontNsfw: {
  16815. height: math.unit(19, "feet"),
  16816. weight: math.unit(800, "kg"),
  16817. name: "Front (NSFW)",
  16818. image: {
  16819. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16820. }
  16821. },
  16822. backNsfw: {
  16823. height: math.unit(19, "feet"),
  16824. weight: math.unit(800, "kg"),
  16825. name: "Back (NSFW)",
  16826. image: {
  16827. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16828. }
  16829. },
  16830. sideArmored: {
  16831. height: math.unit(10, "feet"),
  16832. weight: math.unit(800, "kg"),
  16833. name: "Side (Armored)",
  16834. image: {
  16835. source: "./media/characters/venio-darcony/side-armored.svg",
  16836. extra: 1373 / 1003,
  16837. bottom: 0.037
  16838. }
  16839. },
  16840. frontArmored: {
  16841. height: math.unit(19, "feet"),
  16842. weight: math.unit(900, "kg"),
  16843. name: "Front (Armored)",
  16844. image: {
  16845. source: "./media/characters/venio-darcony/front-armored.svg"
  16846. }
  16847. },
  16848. backArmored: {
  16849. height: math.unit(19, "feet"),
  16850. weight: math.unit(900, "kg"),
  16851. name: "Back (Armored)",
  16852. image: {
  16853. source: "./media/characters/venio-darcony/back-armored.svg"
  16854. }
  16855. },
  16856. sword: {
  16857. height: math.unit(10, "feet"),
  16858. weight: math.unit(50, "lb"),
  16859. name: "Sword",
  16860. image: {
  16861. source: "./media/characters/venio-darcony/sword.svg"
  16862. }
  16863. },
  16864. },
  16865. [
  16866. {
  16867. name: "Normal",
  16868. height: math.unit(10, "feet")
  16869. },
  16870. {
  16871. name: "Macro",
  16872. height: math.unit(130, "feet"),
  16873. default: true
  16874. },
  16875. {
  16876. name: "Macro+",
  16877. height: math.unit(240, "feet")
  16878. },
  16879. ]
  16880. ))
  16881. characterMakers.push(() => makeCharacter(
  16882. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16883. {
  16884. front: {
  16885. height: math.unit(6, "feet"),
  16886. weight: math.unit(150, "lb"),
  16887. name: "Front",
  16888. image: {
  16889. source: "./media/characters/veski/front.svg",
  16890. extra: 1299 / 1225,
  16891. bottom: 0.04
  16892. }
  16893. },
  16894. back: {
  16895. height: math.unit(6, "feet"),
  16896. weight: math.unit(150, "lb"),
  16897. name: "Back",
  16898. image: {
  16899. source: "./media/characters/veski/back.svg",
  16900. extra: 1299 / 1225,
  16901. bottom: 0.008
  16902. }
  16903. },
  16904. maw: {
  16905. height: math.unit(1.5 * 1.21, "feet"),
  16906. name: "Maw",
  16907. image: {
  16908. source: "./media/characters/veski/maw.svg"
  16909. }
  16910. },
  16911. },
  16912. [
  16913. {
  16914. name: "Macro",
  16915. height: math.unit(2, "km"),
  16916. default: true
  16917. },
  16918. ]
  16919. ))
  16920. characterMakers.push(() => makeCharacter(
  16921. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16922. {
  16923. front: {
  16924. height: math.unit(5 + 7 / 12, "feet"),
  16925. name: "Front",
  16926. image: {
  16927. source: "./media/characters/isabelle/front.svg",
  16928. extra: 2130 / 1976,
  16929. bottom: 0.05
  16930. }
  16931. },
  16932. },
  16933. [
  16934. {
  16935. name: "Supermicro",
  16936. height: math.unit(10, "micrometers")
  16937. },
  16938. {
  16939. name: "Micro",
  16940. height: math.unit(1, "inch")
  16941. },
  16942. {
  16943. name: "Tiny",
  16944. height: math.unit(5, "inches")
  16945. },
  16946. {
  16947. name: "Standard",
  16948. height: math.unit(5 + 7 / 12, "inches")
  16949. },
  16950. {
  16951. name: "Macro",
  16952. height: math.unit(80, "meters"),
  16953. default: true
  16954. },
  16955. {
  16956. name: "Megamacro",
  16957. height: math.unit(250, "meters")
  16958. },
  16959. {
  16960. name: "Gigamacro",
  16961. height: math.unit(5, "km")
  16962. },
  16963. {
  16964. name: "Cosmic",
  16965. height: math.unit(2.5e6, "miles")
  16966. },
  16967. ]
  16968. ))
  16969. characterMakers.push(() => makeCharacter(
  16970. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16971. {
  16972. front: {
  16973. height: math.unit(6, "feet"),
  16974. weight: math.unit(150, "lb"),
  16975. name: "Front",
  16976. image: {
  16977. source: "./media/characters/hanzo/front.svg",
  16978. extra: 374 / 344,
  16979. bottom: 0.02
  16980. }
  16981. },
  16982. },
  16983. [
  16984. {
  16985. name: "Normal",
  16986. height: math.unit(8, "feet"),
  16987. default: true
  16988. },
  16989. ]
  16990. ))
  16991. characterMakers.push(() => makeCharacter(
  16992. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16993. {
  16994. front: {
  16995. height: math.unit(7, "feet"),
  16996. weight: math.unit(130, "lb"),
  16997. name: "Front",
  16998. image: {
  16999. source: "./media/characters/anna/front.svg",
  17000. extra: 169 / 145,
  17001. bottom: 0.06
  17002. }
  17003. },
  17004. full: {
  17005. height: math.unit(4.96, "feet"),
  17006. weight: math.unit(220, "lb"),
  17007. name: "Full",
  17008. image: {
  17009. source: "./media/characters/anna/full.svg",
  17010. extra: 138 / 114,
  17011. bottom: 0.15
  17012. }
  17013. },
  17014. tongue: {
  17015. height: math.unit(2.53, "feet"),
  17016. name: "Tongue",
  17017. image: {
  17018. source: "./media/characters/anna/tongue.svg"
  17019. }
  17020. },
  17021. },
  17022. [
  17023. {
  17024. name: "Normal",
  17025. height: math.unit(7, "feet"),
  17026. default: true
  17027. },
  17028. ]
  17029. ))
  17030. characterMakers.push(() => makeCharacter(
  17031. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17032. {
  17033. front: {
  17034. height: math.unit(7, "feet"),
  17035. weight: math.unit(150, "lb"),
  17036. name: "Front",
  17037. image: {
  17038. source: "./media/characters/ian-corvid/front.svg",
  17039. extra: 150 / 142,
  17040. bottom: 0.02
  17041. }
  17042. },
  17043. back: {
  17044. height: math.unit(7, "feet"),
  17045. weight: math.unit(150, "lb"),
  17046. name: "Back",
  17047. image: {
  17048. source: "./media/characters/ian-corvid/back.svg",
  17049. extra: 150 / 143,
  17050. bottom: 0.01
  17051. }
  17052. },
  17053. stomping: {
  17054. height: math.unit(7, "feet"),
  17055. weight: math.unit(150, "lb"),
  17056. name: "Stomping",
  17057. image: {
  17058. source: "./media/characters/ian-corvid/stomping.svg",
  17059. extra: 76 / 72
  17060. }
  17061. },
  17062. sitting: {
  17063. height: math.unit(7 / 1.8, "feet"),
  17064. weight: math.unit(150, "lb"),
  17065. name: "Sitting",
  17066. image: {
  17067. source: "./media/characters/ian-corvid/sitting.svg",
  17068. extra: 1400 / 1269,
  17069. bottom: 0.15
  17070. }
  17071. },
  17072. },
  17073. [
  17074. {
  17075. name: "Tiny Microw",
  17076. height: math.unit(1, "inch")
  17077. },
  17078. {
  17079. name: "Microw",
  17080. height: math.unit(6, "inches")
  17081. },
  17082. {
  17083. name: "Crow",
  17084. height: math.unit(7 + 1 / 12, "feet"),
  17085. default: true
  17086. },
  17087. {
  17088. name: "Macrow",
  17089. height: math.unit(176, "feet")
  17090. },
  17091. ]
  17092. ))
  17093. characterMakers.push(() => makeCharacter(
  17094. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17095. {
  17096. front: {
  17097. height: math.unit(5 + 7 / 12, "feet"),
  17098. weight: math.unit(147, "lb"),
  17099. name: "Front",
  17100. image: {
  17101. source: "./media/characters/natalie-kellon/front.svg",
  17102. extra: 1214 / 1141,
  17103. bottom: 0.02
  17104. }
  17105. },
  17106. },
  17107. [
  17108. {
  17109. name: "Micro",
  17110. height: math.unit(1 / 16, "inch")
  17111. },
  17112. {
  17113. name: "Tiny",
  17114. height: math.unit(4, "inches")
  17115. },
  17116. {
  17117. name: "Normal",
  17118. height: math.unit(5 + 7 / 12, "feet"),
  17119. default: true
  17120. },
  17121. {
  17122. name: "Amazon",
  17123. height: math.unit(12, "feet")
  17124. },
  17125. {
  17126. name: "Giantess",
  17127. height: math.unit(160, "meters")
  17128. },
  17129. {
  17130. name: "Titaness",
  17131. height: math.unit(800, "meters")
  17132. },
  17133. ]
  17134. ))
  17135. characterMakers.push(() => makeCharacter(
  17136. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17137. {
  17138. front: {
  17139. height: math.unit(6, "feet"),
  17140. weight: math.unit(150, "lb"),
  17141. name: "Front",
  17142. image: {
  17143. source: "./media/characters/alluria/front.svg",
  17144. extra: 806 / 738,
  17145. bottom: 0.01
  17146. }
  17147. },
  17148. side: {
  17149. height: math.unit(6, "feet"),
  17150. weight: math.unit(150, "lb"),
  17151. name: "Side",
  17152. image: {
  17153. source: "./media/characters/alluria/side.svg",
  17154. extra: 800 / 750,
  17155. }
  17156. },
  17157. back: {
  17158. height: math.unit(6, "feet"),
  17159. weight: math.unit(150, "lb"),
  17160. name: "Back",
  17161. image: {
  17162. source: "./media/characters/alluria/back.svg",
  17163. extra: 806 / 738,
  17164. }
  17165. },
  17166. frontMaid: {
  17167. height: math.unit(6, "feet"),
  17168. weight: math.unit(150, "lb"),
  17169. name: "Front (Maid)",
  17170. image: {
  17171. source: "./media/characters/alluria/front-maid.svg",
  17172. extra: 806 / 738,
  17173. bottom: 0.01
  17174. }
  17175. },
  17176. sideMaid: {
  17177. height: math.unit(6, "feet"),
  17178. weight: math.unit(150, "lb"),
  17179. name: "Side (Maid)",
  17180. image: {
  17181. source: "./media/characters/alluria/side-maid.svg",
  17182. extra: 800 / 750,
  17183. bottom: 0.005
  17184. }
  17185. },
  17186. backMaid: {
  17187. height: math.unit(6, "feet"),
  17188. weight: math.unit(150, "lb"),
  17189. name: "Back (Maid)",
  17190. image: {
  17191. source: "./media/characters/alluria/back-maid.svg",
  17192. extra: 806 / 738,
  17193. }
  17194. },
  17195. },
  17196. [
  17197. {
  17198. name: "Micro",
  17199. height: math.unit(6, "inches"),
  17200. default: true
  17201. },
  17202. ]
  17203. ))
  17204. characterMakers.push(() => makeCharacter(
  17205. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17206. {
  17207. front: {
  17208. height: math.unit(6, "feet"),
  17209. weight: math.unit(150, "lb"),
  17210. name: "Front",
  17211. image: {
  17212. source: "./media/characters/kyle/front.svg",
  17213. extra: 1069 / 962,
  17214. bottom: 77.228 / 1727.45
  17215. }
  17216. },
  17217. },
  17218. [
  17219. {
  17220. name: "Macro",
  17221. height: math.unit(150, "feet"),
  17222. default: true
  17223. },
  17224. ]
  17225. ))
  17226. characterMakers.push(() => makeCharacter(
  17227. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17228. {
  17229. front: {
  17230. height: math.unit(6, "feet"),
  17231. weight: math.unit(300, "lb"),
  17232. name: "Front",
  17233. image: {
  17234. source: "./media/characters/duncan/front.svg",
  17235. extra: 1650 / 1482,
  17236. bottom: 0.05
  17237. }
  17238. },
  17239. },
  17240. [
  17241. {
  17242. name: "Macro",
  17243. height: math.unit(100, "feet"),
  17244. default: true
  17245. },
  17246. ]
  17247. ))
  17248. characterMakers.push(() => makeCharacter(
  17249. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17250. {
  17251. front: {
  17252. height: math.unit(5 + 4 / 12, "feet"),
  17253. weight: math.unit(220, "lb"),
  17254. name: "Front",
  17255. image: {
  17256. source: "./media/characters/memory/front.svg",
  17257. extra: 3641 / 3545,
  17258. bottom: 0.03
  17259. }
  17260. },
  17261. back: {
  17262. height: math.unit(5 + 4 / 12, "feet"),
  17263. weight: math.unit(220, "lb"),
  17264. name: "Back",
  17265. image: {
  17266. source: "./media/characters/memory/back.svg",
  17267. extra: 3641 / 3545,
  17268. bottom: 0.025
  17269. }
  17270. },
  17271. frontSkirt: {
  17272. height: math.unit(5 + 4 / 12, "feet"),
  17273. weight: math.unit(220, "lb"),
  17274. name: "Front (Skirt)",
  17275. image: {
  17276. source: "./media/characters/memory/front-skirt.svg",
  17277. extra: 3641 / 3545,
  17278. bottom: 0.03
  17279. }
  17280. },
  17281. frontDress: {
  17282. height: math.unit(5 + 4 / 12, "feet"),
  17283. weight: math.unit(220, "lb"),
  17284. name: "Front (Dress)",
  17285. image: {
  17286. source: "./media/characters/memory/front-dress.svg",
  17287. extra: 3641 / 3545,
  17288. bottom: 0.03
  17289. }
  17290. },
  17291. },
  17292. [
  17293. {
  17294. name: "Micro",
  17295. height: math.unit(6, "inches"),
  17296. default: true
  17297. },
  17298. {
  17299. name: "Normal",
  17300. height: math.unit(5 + 4 / 12, "feet")
  17301. },
  17302. ]
  17303. ))
  17304. characterMakers.push(() => makeCharacter(
  17305. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17306. {
  17307. front: {
  17308. height: math.unit(4 + 11 / 12, "feet"),
  17309. weight: math.unit(100, "lb"),
  17310. name: "Front",
  17311. image: {
  17312. source: "./media/characters/luno/front.svg",
  17313. extra: 1535 / 1487,
  17314. bottom: 0.03
  17315. }
  17316. },
  17317. },
  17318. [
  17319. {
  17320. name: "Micro",
  17321. height: math.unit(3, "inches")
  17322. },
  17323. {
  17324. name: "Normal",
  17325. height: math.unit(4 + 11 / 12, "feet"),
  17326. default: true
  17327. },
  17328. {
  17329. name: "Macro",
  17330. height: math.unit(300, "feet")
  17331. },
  17332. {
  17333. name: "Megamacro",
  17334. height: math.unit(700, "miles")
  17335. },
  17336. ]
  17337. ))
  17338. characterMakers.push(() => makeCharacter(
  17339. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17340. {
  17341. front: {
  17342. height: math.unit(6 + 2 / 12, "feet"),
  17343. weight: math.unit(170, "lb"),
  17344. name: "Front",
  17345. image: {
  17346. source: "./media/characters/jamesy/front.svg",
  17347. extra: 440 / 382,
  17348. bottom: 0.005
  17349. }
  17350. },
  17351. },
  17352. [
  17353. {
  17354. name: "Micro",
  17355. height: math.unit(3, "inches")
  17356. },
  17357. {
  17358. name: "Normal",
  17359. height: math.unit(6 + 2 / 12, "feet"),
  17360. default: true
  17361. },
  17362. {
  17363. name: "Macro",
  17364. height: math.unit(300, "feet")
  17365. },
  17366. {
  17367. name: "Megamacro",
  17368. height: math.unit(700, "miles")
  17369. },
  17370. ]
  17371. ))
  17372. characterMakers.push(() => makeCharacter(
  17373. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17374. {
  17375. front: {
  17376. height: math.unit(6, "feet"),
  17377. weight: math.unit(160, "lb"),
  17378. name: "Front",
  17379. image: {
  17380. source: "./media/characters/mark/front.svg",
  17381. extra: 3300 / 3100,
  17382. bottom: 136.42 / 3440.47
  17383. }
  17384. },
  17385. },
  17386. [
  17387. {
  17388. name: "Macro",
  17389. height: math.unit(120, "meters")
  17390. },
  17391. {
  17392. name: "Bigger Macro",
  17393. height: math.unit(350, "meters")
  17394. },
  17395. {
  17396. name: "Megamacro",
  17397. height: math.unit(8, "km"),
  17398. default: true
  17399. },
  17400. {
  17401. name: "Continental",
  17402. height: math.unit(4550, "km")
  17403. },
  17404. {
  17405. name: "Planetary",
  17406. height: math.unit(65000, "km")
  17407. },
  17408. ]
  17409. ))
  17410. characterMakers.push(() => makeCharacter(
  17411. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17412. {
  17413. front: {
  17414. height: math.unit(6, "feet"),
  17415. weight: math.unit(400, "lb"),
  17416. name: "Front",
  17417. image: {
  17418. source: "./media/characters/mac/front.svg",
  17419. extra: 1048 / 987.7,
  17420. bottom: 60 / 1107.6,
  17421. }
  17422. },
  17423. },
  17424. [
  17425. {
  17426. name: "Macro",
  17427. height: math.unit(500, "feet"),
  17428. default: true
  17429. },
  17430. ]
  17431. ))
  17432. characterMakers.push(() => makeCharacter(
  17433. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17434. {
  17435. front: {
  17436. height: math.unit(5 + 2 / 12, "feet"),
  17437. weight: math.unit(190, "lb"),
  17438. name: "Front",
  17439. image: {
  17440. source: "./media/characters/bari/front.svg",
  17441. extra: 3156 / 2880,
  17442. bottom: 0.03
  17443. }
  17444. },
  17445. back: {
  17446. height: math.unit(5 + 2 / 12, "feet"),
  17447. weight: math.unit(190, "lb"),
  17448. name: "Back",
  17449. image: {
  17450. source: "./media/characters/bari/back.svg",
  17451. extra: 3260 / 2834,
  17452. bottom: 0.025
  17453. }
  17454. },
  17455. frontPlush: {
  17456. height: math.unit(5 + 2 / 12, "feet"),
  17457. weight: math.unit(190, "lb"),
  17458. name: "Front (Plush)",
  17459. image: {
  17460. source: "./media/characters/bari/front-plush.svg",
  17461. extra: 1112 / 1061,
  17462. bottom: 0.002
  17463. }
  17464. },
  17465. },
  17466. [
  17467. {
  17468. name: "Micro",
  17469. height: math.unit(3, "inches")
  17470. },
  17471. {
  17472. name: "Normal",
  17473. height: math.unit(5 + 2 / 12, "feet"),
  17474. default: true
  17475. },
  17476. {
  17477. name: "Macro",
  17478. height: math.unit(20, "feet")
  17479. },
  17480. ]
  17481. ))
  17482. characterMakers.push(() => makeCharacter(
  17483. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17484. {
  17485. front: {
  17486. height: math.unit(6 + 1 / 12, "feet"),
  17487. weight: math.unit(275, "lb"),
  17488. name: "Front",
  17489. image: {
  17490. source: "./media/characters/hunter-misha-raven/front.svg"
  17491. }
  17492. },
  17493. },
  17494. [
  17495. {
  17496. name: "Mortal",
  17497. height: math.unit(6 + 1 / 12, "feet")
  17498. },
  17499. {
  17500. name: "Divine",
  17501. height: math.unit(1.12134e34, "parsecs"),
  17502. default: true
  17503. },
  17504. ]
  17505. ))
  17506. characterMakers.push(() => makeCharacter(
  17507. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17508. {
  17509. front: {
  17510. height: math.unit(6 + 3 / 12, "feet"),
  17511. weight: math.unit(220, "lb"),
  17512. name: "Front",
  17513. image: {
  17514. source: "./media/characters/max-calore/front.svg",
  17515. extra: 1700 / 1648,
  17516. bottom: 0.01
  17517. }
  17518. },
  17519. back: {
  17520. height: math.unit(6 + 3 / 12, "feet"),
  17521. weight: math.unit(220, "lb"),
  17522. name: "Back",
  17523. image: {
  17524. source: "./media/characters/max-calore/back.svg",
  17525. extra: 1700 / 1648,
  17526. bottom: 0.01
  17527. }
  17528. },
  17529. },
  17530. [
  17531. {
  17532. name: "Normal",
  17533. height: math.unit(6 + 3 / 12, "feet"),
  17534. default: true
  17535. },
  17536. ]
  17537. ))
  17538. characterMakers.push(() => makeCharacter(
  17539. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17540. {
  17541. side: {
  17542. height: math.unit(2 + 8 / 12, "feet"),
  17543. weight: math.unit(99, "lb"),
  17544. name: "Side",
  17545. image: {
  17546. source: "./media/characters/aspen/side.svg",
  17547. extra: 152 / 138,
  17548. bottom: 0.032
  17549. }
  17550. },
  17551. },
  17552. [
  17553. {
  17554. name: "Normal",
  17555. height: math.unit(2 + 8 / 12, "feet"),
  17556. default: true
  17557. },
  17558. ]
  17559. ))
  17560. characterMakers.push(() => makeCharacter(
  17561. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17562. {
  17563. side: {
  17564. height: math.unit(3 + 2 / 12, "feet"),
  17565. weight: math.unit(224, "lb"),
  17566. name: "Side",
  17567. image: {
  17568. source: "./media/characters/sheila-feral-wolf/side.svg",
  17569. extra: 179 / 166,
  17570. bottom: 0.03
  17571. }
  17572. },
  17573. },
  17574. [
  17575. {
  17576. name: "Normal",
  17577. height: math.unit(3 + 2 / 12, "feet"),
  17578. default: true
  17579. },
  17580. ]
  17581. ))
  17582. characterMakers.push(() => makeCharacter(
  17583. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17584. {
  17585. side: {
  17586. height: math.unit(1 + 9 / 12, "feet"),
  17587. weight: math.unit(38, "lb"),
  17588. name: "Side",
  17589. image: {
  17590. source: "./media/characters/michelle/side.svg",
  17591. extra: 147 / 136.7,
  17592. bottom: 0.03
  17593. }
  17594. },
  17595. },
  17596. [
  17597. {
  17598. name: "Normal",
  17599. height: math.unit(1 + 9 / 12, "feet"),
  17600. default: true
  17601. },
  17602. ]
  17603. ))
  17604. characterMakers.push(() => makeCharacter(
  17605. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17606. {
  17607. front: {
  17608. height: math.unit(1.54, "feet"),
  17609. weight: math.unit(50, "lb"),
  17610. name: "Front",
  17611. image: {
  17612. source: "./media/characters/nino/front.svg"
  17613. }
  17614. },
  17615. },
  17616. [
  17617. {
  17618. name: "Normal",
  17619. height: math.unit(1.54, "feet"),
  17620. default: true
  17621. },
  17622. ]
  17623. ))
  17624. characterMakers.push(() => makeCharacter(
  17625. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17626. {
  17627. front: {
  17628. height: math.unit(1.49, "feet"),
  17629. weight: math.unit(45, "lb"),
  17630. name: "Front",
  17631. image: {
  17632. source: "./media/characters/viola/front.svg"
  17633. }
  17634. },
  17635. },
  17636. [
  17637. {
  17638. name: "Normal",
  17639. height: math.unit(1.49, "feet"),
  17640. default: true
  17641. },
  17642. ]
  17643. ))
  17644. characterMakers.push(() => makeCharacter(
  17645. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17646. {
  17647. front: {
  17648. height: math.unit(6 + 5 / 12, "feet"),
  17649. weight: math.unit(580, "lb"),
  17650. name: "Front",
  17651. image: {
  17652. source: "./media/characters/atlas/front.svg",
  17653. extra: 298.5 / 290,
  17654. bottom: 0.015
  17655. }
  17656. },
  17657. },
  17658. [
  17659. {
  17660. name: "Normal",
  17661. height: math.unit(6 + 5 / 12, "feet"),
  17662. default: true
  17663. },
  17664. ]
  17665. ))
  17666. characterMakers.push(() => makeCharacter(
  17667. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17668. {
  17669. side: {
  17670. height: math.unit(15.6, "inches"),
  17671. weight: math.unit(10, "lb"),
  17672. name: "Side",
  17673. image: {
  17674. source: "./media/characters/davy/side.svg",
  17675. extra: 200 / 170,
  17676. bottom: 0.01
  17677. }
  17678. },
  17679. },
  17680. [
  17681. {
  17682. name: "Normal",
  17683. height: math.unit(15.6, "inches"),
  17684. default: true
  17685. },
  17686. ]
  17687. ))
  17688. characterMakers.push(() => makeCharacter(
  17689. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17690. {
  17691. side: {
  17692. height: math.unit(4 + 8 / 12, "feet"),
  17693. weight: math.unit(166, "lb"),
  17694. name: "Side",
  17695. image: {
  17696. source: "./media/characters/fiona/side.svg",
  17697. extra: 232 / 220,
  17698. bottom: 0.03
  17699. }
  17700. },
  17701. },
  17702. [
  17703. {
  17704. name: "Normal",
  17705. height: math.unit(4 + 8 / 12, "feet"),
  17706. default: true
  17707. },
  17708. ]
  17709. ))
  17710. characterMakers.push(() => makeCharacter(
  17711. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17712. {
  17713. front: {
  17714. height: math.unit(26, "inches"),
  17715. weight: math.unit(35, "lb"),
  17716. name: "Front",
  17717. image: {
  17718. source: "./media/characters/lyla/front.svg",
  17719. bottom: 0.1
  17720. }
  17721. },
  17722. },
  17723. [
  17724. {
  17725. name: "Normal",
  17726. height: math.unit(3, "feet"),
  17727. default: true
  17728. },
  17729. ]
  17730. ))
  17731. characterMakers.push(() => makeCharacter(
  17732. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17733. {
  17734. side: {
  17735. height: math.unit(1.8, "feet"),
  17736. weight: math.unit(44, "lb"),
  17737. name: "Side",
  17738. image: {
  17739. source: "./media/characters/perseus/side.svg",
  17740. bottom: 0.21
  17741. }
  17742. },
  17743. },
  17744. [
  17745. {
  17746. name: "Normal",
  17747. height: math.unit(1.8, "feet"),
  17748. default: true
  17749. },
  17750. ]
  17751. ))
  17752. characterMakers.push(() => makeCharacter(
  17753. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17754. {
  17755. side: {
  17756. height: math.unit(4 + 2 / 12, "feet"),
  17757. weight: math.unit(20, "lb"),
  17758. name: "Side",
  17759. image: {
  17760. source: "./media/characters/remus/side.svg"
  17761. }
  17762. },
  17763. },
  17764. [
  17765. {
  17766. name: "Normal",
  17767. height: math.unit(4 + 2 / 12, "feet"),
  17768. default: true
  17769. },
  17770. ]
  17771. ))
  17772. characterMakers.push(() => makeCharacter(
  17773. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17774. {
  17775. front: {
  17776. height: math.unit(4 + 11 / 12, "feet"),
  17777. weight: math.unit(114, "lb"),
  17778. name: "Front",
  17779. image: {
  17780. source: "./media/characters/raf/front.svg",
  17781. extra: 1504/1339,
  17782. bottom: 26/1530
  17783. }
  17784. },
  17785. side: {
  17786. height: math.unit(4 + 11 / 12, "feet"),
  17787. weight: math.unit(114, "lb"),
  17788. name: "Side",
  17789. image: {
  17790. source: "./media/characters/raf/side.svg",
  17791. extra: 1466/1316,
  17792. bottom: 29/1495
  17793. }
  17794. },
  17795. },
  17796. [
  17797. {
  17798. name: "Micro",
  17799. height: math.unit(2, "inches")
  17800. },
  17801. {
  17802. name: "Normal",
  17803. height: math.unit(4 + 11 / 12, "feet"),
  17804. default: true
  17805. },
  17806. {
  17807. name: "Macro",
  17808. height: math.unit(70, "feet")
  17809. },
  17810. ]
  17811. ))
  17812. characterMakers.push(() => makeCharacter(
  17813. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17814. {
  17815. front: {
  17816. height: math.unit(1.5, "meters"),
  17817. weight: math.unit(68, "kg"),
  17818. name: "Front",
  17819. image: {
  17820. source: "./media/characters/liam-einarr/front.svg",
  17821. extra: 2822 / 2666
  17822. }
  17823. },
  17824. back: {
  17825. height: math.unit(1.5, "meters"),
  17826. weight: math.unit(68, "kg"),
  17827. name: "Back",
  17828. image: {
  17829. source: "./media/characters/liam-einarr/back.svg",
  17830. extra: 2822 / 2666,
  17831. bottom: 0.015
  17832. }
  17833. },
  17834. },
  17835. [
  17836. {
  17837. name: "Normal",
  17838. height: math.unit(1.5, "meters"),
  17839. default: true
  17840. },
  17841. {
  17842. name: "Macro",
  17843. height: math.unit(150, "meters")
  17844. },
  17845. {
  17846. name: "Megamacro",
  17847. height: math.unit(35, "km")
  17848. },
  17849. ]
  17850. ))
  17851. characterMakers.push(() => makeCharacter(
  17852. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17853. {
  17854. front: {
  17855. height: math.unit(6, "feet"),
  17856. weight: math.unit(75, "kg"),
  17857. name: "Front",
  17858. image: {
  17859. source: "./media/characters/linda/front.svg",
  17860. extra: 930 / 874,
  17861. bottom: 0.004
  17862. }
  17863. },
  17864. },
  17865. [
  17866. {
  17867. name: "Normal",
  17868. height: math.unit(6, "feet"),
  17869. default: true
  17870. },
  17871. ]
  17872. ))
  17873. characterMakers.push(() => makeCharacter(
  17874. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17875. {
  17876. front: {
  17877. height: math.unit(6 + 8 / 12, "feet"),
  17878. weight: math.unit(220, "lb"),
  17879. name: "Front",
  17880. image: {
  17881. source: "./media/characters/caylex/front.svg",
  17882. extra: 821 / 772,
  17883. bottom: 0.07
  17884. }
  17885. },
  17886. back: {
  17887. height: math.unit(6 + 8 / 12, "feet"),
  17888. weight: math.unit(220, "lb"),
  17889. name: "Back",
  17890. image: {
  17891. source: "./media/characters/caylex/back.svg",
  17892. extra: 821 / 772,
  17893. bottom: 0.022
  17894. }
  17895. },
  17896. hand: {
  17897. height: math.unit(1.25, "feet"),
  17898. name: "Hand",
  17899. image: {
  17900. source: "./media/characters/caylex/hand.svg"
  17901. }
  17902. },
  17903. foot: {
  17904. height: math.unit(1.6, "feet"),
  17905. name: "Foot",
  17906. image: {
  17907. source: "./media/characters/caylex/foot.svg"
  17908. }
  17909. },
  17910. armored: {
  17911. height: math.unit(6 + 8 / 12, "feet"),
  17912. weight: math.unit(250, "lb"),
  17913. name: "Armored",
  17914. image: {
  17915. source: "./media/characters/caylex/armored.svg",
  17916. extra: 1420 / 1310,
  17917. bottom: 0.045
  17918. }
  17919. },
  17920. },
  17921. [
  17922. {
  17923. name: "Normal",
  17924. height: math.unit(6 + 8 / 12, "feet"),
  17925. default: true
  17926. },
  17927. {
  17928. name: "Normal+",
  17929. height: math.unit(12, "feet")
  17930. },
  17931. ]
  17932. ))
  17933. characterMakers.push(() => makeCharacter(
  17934. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17935. {
  17936. front: {
  17937. height: math.unit(7 + 6 / 12, "feet"),
  17938. weight: math.unit(288, "lb"),
  17939. name: "Front",
  17940. image: {
  17941. source: "./media/characters/alana/front.svg",
  17942. extra: 679 / 653,
  17943. bottom: 22.5 / 701
  17944. }
  17945. },
  17946. },
  17947. [
  17948. {
  17949. name: "Normal",
  17950. height: math.unit(7 + 6 / 12, "feet")
  17951. },
  17952. {
  17953. name: "Large",
  17954. height: math.unit(50, "feet")
  17955. },
  17956. {
  17957. name: "Macro",
  17958. height: math.unit(100, "feet"),
  17959. default: true
  17960. },
  17961. {
  17962. name: "Macro+",
  17963. height: math.unit(200, "feet")
  17964. },
  17965. ]
  17966. ))
  17967. characterMakers.push(() => makeCharacter(
  17968. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17969. {
  17970. front: {
  17971. height: math.unit(6 + 1 / 12, "feet"),
  17972. weight: math.unit(210, "lb"),
  17973. name: "Front",
  17974. image: {
  17975. source: "./media/characters/hasani/front.svg",
  17976. extra: 244 / 232,
  17977. bottom: 0.01
  17978. }
  17979. },
  17980. back: {
  17981. height: math.unit(6 + 1 / 12, "feet"),
  17982. weight: math.unit(210, "lb"),
  17983. name: "Back",
  17984. image: {
  17985. source: "./media/characters/hasani/back.svg",
  17986. extra: 244 / 232,
  17987. bottom: 0.01
  17988. }
  17989. },
  17990. },
  17991. [
  17992. {
  17993. name: "Normal",
  17994. height: math.unit(6 + 1 / 12, "feet")
  17995. },
  17996. {
  17997. name: "Macro",
  17998. height: math.unit(175, "feet"),
  17999. default: true
  18000. },
  18001. ]
  18002. ))
  18003. characterMakers.push(() => makeCharacter(
  18004. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18005. {
  18006. front: {
  18007. height: math.unit(1.82, "meters"),
  18008. weight: math.unit(140, "lb"),
  18009. name: "Front",
  18010. image: {
  18011. source: "./media/characters/nita/front.svg",
  18012. extra: 2473 / 2363,
  18013. bottom: 0.01
  18014. }
  18015. },
  18016. },
  18017. [
  18018. {
  18019. name: "Normal",
  18020. height: math.unit(1.82, "m")
  18021. },
  18022. {
  18023. name: "Macro",
  18024. height: math.unit(300, "m")
  18025. },
  18026. {
  18027. name: "Mistake Canon",
  18028. height: math.unit(0.5, "miles"),
  18029. default: true
  18030. },
  18031. {
  18032. name: "Big Mistake",
  18033. height: math.unit(13, "miles")
  18034. },
  18035. {
  18036. name: "Playing God",
  18037. height: math.unit(2450, "miles")
  18038. },
  18039. ]
  18040. ))
  18041. characterMakers.push(() => makeCharacter(
  18042. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18043. {
  18044. front: {
  18045. height: math.unit(4, "feet"),
  18046. weight: math.unit(120, "lb"),
  18047. name: "Front",
  18048. image: {
  18049. source: "./media/characters/shiriko/front.svg",
  18050. extra: 970/934,
  18051. bottom: 5/975
  18052. }
  18053. },
  18054. },
  18055. [
  18056. {
  18057. name: "Normal",
  18058. height: math.unit(4, "feet"),
  18059. default: true
  18060. },
  18061. ]
  18062. ))
  18063. characterMakers.push(() => makeCharacter(
  18064. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18065. {
  18066. front: {
  18067. height: math.unit(6, "feet"),
  18068. name: "front",
  18069. image: {
  18070. source: "./media/characters/deja/front.svg",
  18071. extra: 926 / 840,
  18072. bottom: 0.07
  18073. }
  18074. },
  18075. },
  18076. [
  18077. {
  18078. name: "Planck Length",
  18079. height: math.unit(1.6e-35, "meters")
  18080. },
  18081. {
  18082. name: "Normal",
  18083. height: math.unit(30.48, "meters"),
  18084. default: true
  18085. },
  18086. {
  18087. name: "Universal",
  18088. height: math.unit(8.8e26, "meters")
  18089. },
  18090. ]
  18091. ))
  18092. characterMakers.push(() => makeCharacter(
  18093. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18094. {
  18095. side: {
  18096. height: math.unit(8, "feet"),
  18097. weight: math.unit(6300, "lb"),
  18098. name: "Side",
  18099. image: {
  18100. source: "./media/characters/anima/side.svg",
  18101. bottom: 0.035
  18102. }
  18103. },
  18104. },
  18105. [
  18106. {
  18107. name: "Normal",
  18108. height: math.unit(8, "feet"),
  18109. default: true
  18110. },
  18111. ]
  18112. ))
  18113. characterMakers.push(() => makeCharacter(
  18114. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18115. {
  18116. front: {
  18117. height: math.unit(8, "feet"),
  18118. weight: math.unit(350, "lb"),
  18119. name: "Front",
  18120. image: {
  18121. source: "./media/characters/bianca/front.svg",
  18122. extra: 234 / 225,
  18123. bottom: 0.03
  18124. }
  18125. },
  18126. },
  18127. [
  18128. {
  18129. name: "Normal",
  18130. height: math.unit(8, "feet"),
  18131. default: true
  18132. },
  18133. ]
  18134. ))
  18135. characterMakers.push(() => makeCharacter(
  18136. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18137. {
  18138. front: {
  18139. height: math.unit(6, "feet"),
  18140. weight: math.unit(150, "lb"),
  18141. name: "Front",
  18142. image: {
  18143. source: "./media/characters/adinia/front.svg",
  18144. extra: 1845 / 1672,
  18145. bottom: 0.02
  18146. }
  18147. },
  18148. back: {
  18149. height: math.unit(6, "feet"),
  18150. weight: math.unit(150, "lb"),
  18151. name: "Back",
  18152. image: {
  18153. source: "./media/characters/adinia/back.svg",
  18154. extra: 1845 / 1672,
  18155. bottom: 0.002
  18156. }
  18157. },
  18158. },
  18159. [
  18160. {
  18161. name: "Normal",
  18162. height: math.unit(11 + 5 / 12, "feet"),
  18163. default: true
  18164. },
  18165. ]
  18166. ))
  18167. characterMakers.push(() => makeCharacter(
  18168. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18169. {
  18170. front: {
  18171. height: math.unit(3, "meters"),
  18172. weight: math.unit(200, "kg"),
  18173. name: "Front",
  18174. image: {
  18175. source: "./media/characters/lykasa/front.svg",
  18176. extra: 1076 / 976,
  18177. bottom: 0.06
  18178. }
  18179. },
  18180. },
  18181. [
  18182. {
  18183. name: "Normal",
  18184. height: math.unit(3, "meters")
  18185. },
  18186. {
  18187. name: "Kaiju",
  18188. height: math.unit(120, "meters"),
  18189. default: true
  18190. },
  18191. {
  18192. name: "Mega Kaiju",
  18193. height: math.unit(240, "km")
  18194. },
  18195. {
  18196. name: "Giga Kaiju",
  18197. height: math.unit(400, "megameters")
  18198. },
  18199. {
  18200. name: "Tera Kaiju",
  18201. height: math.unit(800, "gigameters")
  18202. },
  18203. {
  18204. name: "Kaiju Dragon Goddess",
  18205. height: math.unit(26, "zettaparsecs")
  18206. },
  18207. ]
  18208. ))
  18209. characterMakers.push(() => makeCharacter(
  18210. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18211. {
  18212. side: {
  18213. height: math.unit(283 / 124 * 6, "feet"),
  18214. weight: math.unit(35000, "lb"),
  18215. name: "Side",
  18216. image: {
  18217. source: "./media/characters/malfaren/side.svg",
  18218. extra: 1310/529,
  18219. bottom: 24/1334
  18220. }
  18221. },
  18222. front: {
  18223. height: math.unit(22.36, "feet"),
  18224. weight: math.unit(35000, "lb"),
  18225. name: "Front",
  18226. image: {
  18227. source: "./media/characters/malfaren/front.svg",
  18228. extra: 1237/1115,
  18229. bottom: 32/1269
  18230. }
  18231. },
  18232. maw: {
  18233. height: math.unit(6.9, "feet"),
  18234. name: "Maw",
  18235. image: {
  18236. source: "./media/characters/malfaren/maw.svg"
  18237. }
  18238. },
  18239. dick: {
  18240. height: math.unit(6.19, "feet"),
  18241. name: "Dick",
  18242. image: {
  18243. source: "./media/characters/malfaren/dick.svg"
  18244. }
  18245. },
  18246. eye: {
  18247. height: math.unit(0.69, "feet"),
  18248. name: "Eye",
  18249. image: {
  18250. source: "./media/characters/malfaren/eye.svg"
  18251. }
  18252. },
  18253. },
  18254. [
  18255. {
  18256. name: "Big",
  18257. height: math.unit(283 / 162 * 6, "feet"),
  18258. },
  18259. {
  18260. name: "Bigger",
  18261. height: math.unit(283 / 124 * 6, "feet")
  18262. },
  18263. {
  18264. name: "Massive",
  18265. height: math.unit(283 / 92 * 6, "feet"),
  18266. default: true
  18267. },
  18268. {
  18269. name: "👀💦",
  18270. height: math.unit(283 / 73 * 6, "feet"),
  18271. },
  18272. ]
  18273. ))
  18274. characterMakers.push(() => makeCharacter(
  18275. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18276. {
  18277. front: {
  18278. height: math.unit(1.7, "m"),
  18279. weight: math.unit(70, "kg"),
  18280. name: "Front",
  18281. image: {
  18282. source: "./media/characters/kernel/front.svg",
  18283. extra: 222 / 210,
  18284. bottom: 0.007
  18285. }
  18286. },
  18287. },
  18288. [
  18289. {
  18290. name: "Nano",
  18291. height: math.unit(17, "micrometers")
  18292. },
  18293. {
  18294. name: "Micro",
  18295. height: math.unit(1.7, "mm")
  18296. },
  18297. {
  18298. name: "Small",
  18299. height: math.unit(1.7, "cm")
  18300. },
  18301. {
  18302. name: "Normal",
  18303. height: math.unit(1.7, "m"),
  18304. default: true
  18305. },
  18306. ]
  18307. ))
  18308. characterMakers.push(() => makeCharacter(
  18309. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18310. {
  18311. front: {
  18312. height: math.unit(1.75, "meters"),
  18313. weight: math.unit(65, "kg"),
  18314. name: "Front",
  18315. image: {
  18316. source: "./media/characters/jayne-folest/front.svg",
  18317. extra: 2115 / 2007,
  18318. bottom: 0.02
  18319. }
  18320. },
  18321. back: {
  18322. height: math.unit(1.75, "meters"),
  18323. weight: math.unit(65, "kg"),
  18324. name: "Back",
  18325. image: {
  18326. source: "./media/characters/jayne-folest/back.svg",
  18327. extra: 2115 / 2007,
  18328. bottom: 0.005
  18329. }
  18330. },
  18331. frontClothed: {
  18332. height: math.unit(1.75, "meters"),
  18333. weight: math.unit(65, "kg"),
  18334. name: "Front (Clothed)",
  18335. image: {
  18336. source: "./media/characters/jayne-folest/front-clothed.svg",
  18337. extra: 2115 / 2007,
  18338. bottom: 0.035
  18339. }
  18340. },
  18341. hand: {
  18342. height: math.unit(1 / 1.260, "feet"),
  18343. name: "Hand",
  18344. image: {
  18345. source: "./media/characters/jayne-folest/hand.svg"
  18346. }
  18347. },
  18348. foot: {
  18349. height: math.unit(1 / 0.918, "feet"),
  18350. name: "Foot",
  18351. image: {
  18352. source: "./media/characters/jayne-folest/foot.svg"
  18353. }
  18354. },
  18355. },
  18356. [
  18357. {
  18358. name: "Micro",
  18359. height: math.unit(4, "cm")
  18360. },
  18361. {
  18362. name: "Normal",
  18363. height: math.unit(1.75, "meters")
  18364. },
  18365. {
  18366. name: "Macro",
  18367. height: math.unit(47.5, "meters"),
  18368. default: true
  18369. },
  18370. ]
  18371. ))
  18372. characterMakers.push(() => makeCharacter(
  18373. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18374. {
  18375. front: {
  18376. height: math.unit(180, "cm"),
  18377. weight: math.unit(70, "kg"),
  18378. name: "Front",
  18379. image: {
  18380. source: "./media/characters/algier/front.svg",
  18381. extra: 596 / 572,
  18382. bottom: 0.04
  18383. }
  18384. },
  18385. back: {
  18386. height: math.unit(180, "cm"),
  18387. weight: math.unit(70, "kg"),
  18388. name: "Back",
  18389. image: {
  18390. source: "./media/characters/algier/back.svg",
  18391. extra: 596 / 572,
  18392. bottom: 0.025
  18393. }
  18394. },
  18395. frontdressed: {
  18396. height: math.unit(180, "cm"),
  18397. weight: math.unit(150, "kg"),
  18398. name: "Front-dressed",
  18399. image: {
  18400. source: "./media/characters/algier/front-dressed.svg",
  18401. extra: 596 / 572,
  18402. bottom: 0.038
  18403. }
  18404. },
  18405. },
  18406. [
  18407. {
  18408. name: "Micro",
  18409. height: math.unit(5, "cm")
  18410. },
  18411. {
  18412. name: "Normal",
  18413. height: math.unit(180, "cm"),
  18414. default: true
  18415. },
  18416. {
  18417. name: "Macro",
  18418. height: math.unit(64, "m")
  18419. },
  18420. ]
  18421. ))
  18422. characterMakers.push(() => makeCharacter(
  18423. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18424. {
  18425. upright: {
  18426. height: math.unit(7, "feet"),
  18427. weight: math.unit(300, "lb"),
  18428. name: "Upright",
  18429. image: {
  18430. source: "./media/characters/pretzel/upright.svg",
  18431. extra: 534 / 522,
  18432. bottom: 0.065
  18433. }
  18434. },
  18435. sprawling: {
  18436. height: math.unit(3.75, "feet"),
  18437. weight: math.unit(300, "lb"),
  18438. name: "Sprawling",
  18439. image: {
  18440. source: "./media/characters/pretzel/sprawling.svg",
  18441. extra: 314 / 281,
  18442. bottom: 0.1
  18443. }
  18444. },
  18445. tongue: {
  18446. height: math.unit(2, "feet"),
  18447. name: "Tongue",
  18448. image: {
  18449. source: "./media/characters/pretzel/tongue.svg"
  18450. }
  18451. },
  18452. },
  18453. [
  18454. {
  18455. name: "Normal",
  18456. height: math.unit(7, "feet"),
  18457. default: true
  18458. },
  18459. {
  18460. name: "Oversized",
  18461. height: math.unit(15, "feet")
  18462. },
  18463. {
  18464. name: "Huge",
  18465. height: math.unit(30, "feet")
  18466. },
  18467. {
  18468. name: "Macro",
  18469. height: math.unit(250, "feet")
  18470. },
  18471. ]
  18472. ))
  18473. characterMakers.push(() => makeCharacter(
  18474. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18475. {
  18476. sideFront: {
  18477. height: math.unit(5 + 2 / 12, "feet"),
  18478. weight: math.unit(120, "lb"),
  18479. name: "Front Side",
  18480. image: {
  18481. source: "./media/characters/roxi/side-front.svg",
  18482. extra: 2924 / 2717,
  18483. bottom: 0.08
  18484. }
  18485. },
  18486. sideBack: {
  18487. height: math.unit(5 + 2 / 12, "feet"),
  18488. weight: math.unit(120, "lb"),
  18489. name: "Back Side",
  18490. image: {
  18491. source: "./media/characters/roxi/side-back.svg",
  18492. extra: 2904 / 2693,
  18493. bottom: 0.06
  18494. }
  18495. },
  18496. front: {
  18497. height: math.unit(5 + 2 / 12, "feet"),
  18498. weight: math.unit(120, "lb"),
  18499. name: "Front",
  18500. image: {
  18501. source: "./media/characters/roxi/front.svg",
  18502. extra: 2028 / 1907,
  18503. bottom: 0.01
  18504. }
  18505. },
  18506. frontAlt: {
  18507. height: math.unit(5 + 2 / 12, "feet"),
  18508. weight: math.unit(120, "lb"),
  18509. name: "Front (Alt)",
  18510. image: {
  18511. source: "./media/characters/roxi/front-alt.svg",
  18512. extra: 1828 / 1798,
  18513. bottom: 0.01
  18514. }
  18515. },
  18516. sitting: {
  18517. height: math.unit(2.8, "feet"),
  18518. weight: math.unit(120, "lb"),
  18519. name: "Sitting",
  18520. image: {
  18521. source: "./media/characters/roxi/sitting.svg",
  18522. extra: 2660 / 2462,
  18523. bottom: 0.1
  18524. }
  18525. },
  18526. },
  18527. [
  18528. {
  18529. name: "Normal",
  18530. height: math.unit(5 + 2 / 12, "feet"),
  18531. default: true
  18532. },
  18533. ]
  18534. ))
  18535. characterMakers.push(() => makeCharacter(
  18536. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18537. {
  18538. side: {
  18539. height: math.unit(55, "feet"),
  18540. weight: math.unit(153, "tons"),
  18541. name: "Side",
  18542. image: {
  18543. source: "./media/characters/shadow/side.svg",
  18544. extra: 701 / 628,
  18545. bottom: 0.02
  18546. }
  18547. },
  18548. flying: {
  18549. height: math.unit(145, "feet"),
  18550. weight: math.unit(153, "tons"),
  18551. name: "Flying",
  18552. image: {
  18553. source: "./media/characters/shadow/flying.svg"
  18554. }
  18555. },
  18556. },
  18557. [
  18558. {
  18559. name: "Normal",
  18560. height: math.unit(55, "feet"),
  18561. default: true
  18562. },
  18563. ]
  18564. ))
  18565. characterMakers.push(() => makeCharacter(
  18566. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18567. {
  18568. front: {
  18569. height: math.unit(6, "feet"),
  18570. weight: math.unit(200, "lb"),
  18571. name: "Front",
  18572. image: {
  18573. source: "./media/characters/marcie/front.svg",
  18574. extra: 960 / 876,
  18575. bottom: 58 / 1017.87
  18576. }
  18577. },
  18578. },
  18579. [
  18580. {
  18581. name: "Macro",
  18582. height: math.unit(1, "mile"),
  18583. default: true
  18584. },
  18585. ]
  18586. ))
  18587. characterMakers.push(() => makeCharacter(
  18588. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18589. {
  18590. front: {
  18591. height: math.unit(7, "feet"),
  18592. weight: math.unit(200, "lb"),
  18593. name: "Front",
  18594. image: {
  18595. source: "./media/characters/kachina/front.svg",
  18596. extra: 1290.68 / 1119,
  18597. bottom: 36.5 / 1327.18
  18598. }
  18599. },
  18600. },
  18601. [
  18602. {
  18603. name: "Normal",
  18604. height: math.unit(7, "feet"),
  18605. default: true
  18606. },
  18607. ]
  18608. ))
  18609. characterMakers.push(() => makeCharacter(
  18610. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18611. {
  18612. looking: {
  18613. height: math.unit(2, "meters"),
  18614. weight: math.unit(300, "kg"),
  18615. name: "Looking",
  18616. image: {
  18617. source: "./media/characters/kash/looking.svg",
  18618. extra: 474 / 344,
  18619. bottom: 0.03
  18620. }
  18621. },
  18622. side: {
  18623. height: math.unit(2, "meters"),
  18624. weight: math.unit(300, "kg"),
  18625. name: "Side",
  18626. image: {
  18627. source: "./media/characters/kash/side.svg",
  18628. extra: 302 / 251,
  18629. bottom: 0.03
  18630. }
  18631. },
  18632. front: {
  18633. height: math.unit(2, "meters"),
  18634. weight: math.unit(300, "kg"),
  18635. name: "Front",
  18636. image: {
  18637. source: "./media/characters/kash/front.svg",
  18638. extra: 495 / 360,
  18639. bottom: 0.015
  18640. }
  18641. },
  18642. },
  18643. [
  18644. {
  18645. name: "Normal",
  18646. height: math.unit(2, "meters"),
  18647. default: true
  18648. },
  18649. {
  18650. name: "Big",
  18651. height: math.unit(3, "meters")
  18652. },
  18653. {
  18654. name: "Large",
  18655. height: math.unit(5, "meters")
  18656. },
  18657. ]
  18658. ))
  18659. characterMakers.push(() => makeCharacter(
  18660. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18661. {
  18662. feeding: {
  18663. height: math.unit(6.7, "feet"),
  18664. weight: math.unit(350, "lb"),
  18665. name: "Feeding",
  18666. image: {
  18667. source: "./media/characters/lalim/feeding.svg",
  18668. }
  18669. },
  18670. },
  18671. [
  18672. {
  18673. name: "Normal",
  18674. height: math.unit(6.7, "feet"),
  18675. default: true
  18676. },
  18677. ]
  18678. ))
  18679. characterMakers.push(() => makeCharacter(
  18680. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18681. {
  18682. front: {
  18683. height: math.unit(9.5, "feet"),
  18684. weight: math.unit(600, "lb"),
  18685. name: "Front",
  18686. image: {
  18687. source: "./media/characters/de'vout/front.svg",
  18688. extra: 1443 / 1328,
  18689. bottom: 0.025
  18690. }
  18691. },
  18692. back: {
  18693. height: math.unit(9.5, "feet"),
  18694. weight: math.unit(600, "lb"),
  18695. name: "Back",
  18696. image: {
  18697. source: "./media/characters/de'vout/back.svg",
  18698. extra: 1443 / 1328
  18699. }
  18700. },
  18701. frontDressed: {
  18702. height: math.unit(9.5, "feet"),
  18703. weight: math.unit(600, "lb"),
  18704. name: "Front (Dressed",
  18705. image: {
  18706. source: "./media/characters/de'vout/front-dressed.svg",
  18707. extra: 1443 / 1328,
  18708. bottom: 0.025
  18709. }
  18710. },
  18711. backDressed: {
  18712. height: math.unit(9.5, "feet"),
  18713. weight: math.unit(600, "lb"),
  18714. name: "Back (Dressed",
  18715. image: {
  18716. source: "./media/characters/de'vout/back-dressed.svg",
  18717. extra: 1443 / 1328
  18718. }
  18719. },
  18720. },
  18721. [
  18722. {
  18723. name: "Normal",
  18724. height: math.unit(9.5, "feet"),
  18725. default: true
  18726. },
  18727. ]
  18728. ))
  18729. characterMakers.push(() => makeCharacter(
  18730. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18731. {
  18732. front: {
  18733. height: math.unit(8, "feet"),
  18734. weight: math.unit(225, "lb"),
  18735. name: "Front",
  18736. image: {
  18737. source: "./media/characters/talana/front.svg",
  18738. extra: 1410 / 1300,
  18739. bottom: 0.015
  18740. }
  18741. },
  18742. frontDressed: {
  18743. height: math.unit(8, "feet"),
  18744. weight: math.unit(225, "lb"),
  18745. name: "Front (Dressed",
  18746. image: {
  18747. source: "./media/characters/talana/front-dressed.svg",
  18748. extra: 1410 / 1300,
  18749. bottom: 0.015
  18750. }
  18751. },
  18752. },
  18753. [
  18754. {
  18755. name: "Normal",
  18756. height: math.unit(8, "feet"),
  18757. default: true
  18758. },
  18759. ]
  18760. ))
  18761. characterMakers.push(() => makeCharacter(
  18762. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18763. {
  18764. side: {
  18765. height: math.unit(7.2, "feet"),
  18766. weight: math.unit(150, "lb"),
  18767. name: "Side",
  18768. image: {
  18769. source: "./media/characters/xeauvok/side.svg",
  18770. extra: 1975 / 1523,
  18771. bottom: 0.07
  18772. }
  18773. },
  18774. },
  18775. [
  18776. {
  18777. name: "Normal",
  18778. height: math.unit(7.2, "feet"),
  18779. default: true
  18780. },
  18781. ]
  18782. ))
  18783. characterMakers.push(() => makeCharacter(
  18784. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18785. {
  18786. side: {
  18787. height: math.unit(10, "feet"),
  18788. weight: math.unit(900, "kg"),
  18789. name: "Side",
  18790. image: {
  18791. source: "./media/characters/zara/side.svg",
  18792. extra: 504 / 498
  18793. }
  18794. },
  18795. },
  18796. [
  18797. {
  18798. name: "Normal",
  18799. height: math.unit(10, "feet"),
  18800. default: true
  18801. },
  18802. ]
  18803. ))
  18804. characterMakers.push(() => makeCharacter(
  18805. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18806. {
  18807. side: {
  18808. height: math.unit(6, "feet"),
  18809. weight: math.unit(150, "lb"),
  18810. name: "Side",
  18811. image: {
  18812. source: "./media/characters/richard-dragon/side.svg",
  18813. extra: 845 / 340,
  18814. bottom: 0.017
  18815. }
  18816. },
  18817. maw: {
  18818. height: math.unit(2.97, "feet"),
  18819. name: "Maw",
  18820. image: {
  18821. source: "./media/characters/richard-dragon/maw.svg"
  18822. }
  18823. },
  18824. },
  18825. [
  18826. ]
  18827. ))
  18828. characterMakers.push(() => makeCharacter(
  18829. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18830. {
  18831. front: {
  18832. height: math.unit(4, "feet"),
  18833. weight: math.unit(100, "lb"),
  18834. name: "Front",
  18835. image: {
  18836. source: "./media/characters/richard-smeargle/front.svg",
  18837. extra: 2952 / 2820,
  18838. bottom: 0.028
  18839. }
  18840. },
  18841. },
  18842. [
  18843. {
  18844. name: "Normal",
  18845. height: math.unit(4, "feet"),
  18846. default: true
  18847. },
  18848. {
  18849. name: "Dynamax",
  18850. height: math.unit(20, "meters")
  18851. },
  18852. ]
  18853. ))
  18854. characterMakers.push(() => makeCharacter(
  18855. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18856. {
  18857. front: {
  18858. height: math.unit(6, "feet"),
  18859. weight: math.unit(110, "lb"),
  18860. name: "Front",
  18861. image: {
  18862. source: "./media/characters/klay/front.svg",
  18863. extra: 962 / 883,
  18864. bottom: 0.04
  18865. }
  18866. },
  18867. back: {
  18868. height: math.unit(6, "feet"),
  18869. weight: math.unit(110, "lb"),
  18870. name: "Back",
  18871. image: {
  18872. source: "./media/characters/klay/back.svg",
  18873. extra: 962 / 883
  18874. }
  18875. },
  18876. beans: {
  18877. height: math.unit(1.15, "feet"),
  18878. name: "Beans",
  18879. image: {
  18880. source: "./media/characters/klay/beans.svg"
  18881. }
  18882. },
  18883. },
  18884. [
  18885. {
  18886. name: "Micro",
  18887. height: math.unit(6, "inches")
  18888. },
  18889. {
  18890. name: "Mini",
  18891. height: math.unit(3, "feet")
  18892. },
  18893. {
  18894. name: "Normal",
  18895. height: math.unit(6, "feet"),
  18896. default: true
  18897. },
  18898. {
  18899. name: "Big",
  18900. height: math.unit(25, "feet")
  18901. },
  18902. {
  18903. name: "Macro",
  18904. height: math.unit(100, "feet")
  18905. },
  18906. {
  18907. name: "Megamacro",
  18908. height: math.unit(400, "feet")
  18909. },
  18910. ]
  18911. ))
  18912. characterMakers.push(() => makeCharacter(
  18913. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18914. {
  18915. front: {
  18916. height: math.unit(6, "feet"),
  18917. weight: math.unit(160, "lb"),
  18918. name: "Front",
  18919. image: {
  18920. source: "./media/characters/marcus/front.svg",
  18921. extra: 734 / 676,
  18922. bottom: 0.03
  18923. }
  18924. },
  18925. },
  18926. [
  18927. {
  18928. name: "Little",
  18929. height: math.unit(6, "feet")
  18930. },
  18931. {
  18932. name: "Normal",
  18933. height: math.unit(110, "feet"),
  18934. default: true
  18935. },
  18936. {
  18937. name: "Macro",
  18938. height: math.unit(250, "feet")
  18939. },
  18940. {
  18941. name: "Megamacro",
  18942. height: math.unit(1000, "feet")
  18943. },
  18944. ]
  18945. ))
  18946. characterMakers.push(() => makeCharacter(
  18947. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18948. {
  18949. front: {
  18950. height: math.unit(7, "feet"),
  18951. weight: math.unit(275, "lb"),
  18952. name: "Front",
  18953. image: {
  18954. source: "./media/characters/claude-delroute/front.svg",
  18955. extra: 902/827,
  18956. bottom: 26/928
  18957. }
  18958. },
  18959. side: {
  18960. height: math.unit(7, "feet"),
  18961. weight: math.unit(275, "lb"),
  18962. name: "Side",
  18963. image: {
  18964. source: "./media/characters/claude-delroute/side.svg",
  18965. extra: 908/853,
  18966. bottom: 16/924
  18967. }
  18968. },
  18969. back: {
  18970. height: math.unit(7, "feet"),
  18971. weight: math.unit(275, "lb"),
  18972. name: "Back",
  18973. image: {
  18974. source: "./media/characters/claude-delroute/back.svg",
  18975. extra: 911/829,
  18976. bottom: 18/929
  18977. }
  18978. },
  18979. maw: {
  18980. height: math.unit(0.6407, "meters"),
  18981. name: "Maw",
  18982. image: {
  18983. source: "./media/characters/claude-delroute/maw.svg"
  18984. }
  18985. },
  18986. },
  18987. [
  18988. {
  18989. name: "Normal",
  18990. height: math.unit(7, "feet"),
  18991. default: true
  18992. },
  18993. {
  18994. name: "Lorge",
  18995. height: math.unit(20, "feet")
  18996. },
  18997. ]
  18998. ))
  18999. characterMakers.push(() => makeCharacter(
  19000. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19001. {
  19002. front: {
  19003. height: math.unit(8 + 4 / 12, "feet"),
  19004. weight: math.unit(600, "lb"),
  19005. name: "Front",
  19006. image: {
  19007. source: "./media/characters/dragonien/front.svg",
  19008. extra: 100 / 94,
  19009. bottom: 3.3 / 103.3445
  19010. }
  19011. },
  19012. back: {
  19013. height: math.unit(8 + 4 / 12, "feet"),
  19014. weight: math.unit(600, "lb"),
  19015. name: "Back",
  19016. image: {
  19017. source: "./media/characters/dragonien/back.svg",
  19018. extra: 776 / 746,
  19019. bottom: 6.4 / 782.0616
  19020. }
  19021. },
  19022. foot: {
  19023. height: math.unit(1.54, "feet"),
  19024. name: "Foot",
  19025. image: {
  19026. source: "./media/characters/dragonien/foot.svg",
  19027. }
  19028. },
  19029. },
  19030. [
  19031. {
  19032. name: "Normal",
  19033. height: math.unit(8 + 4 / 12, "feet"),
  19034. default: true
  19035. },
  19036. {
  19037. name: "Macro",
  19038. height: math.unit(200, "feet")
  19039. },
  19040. {
  19041. name: "Megamacro",
  19042. height: math.unit(1, "mile")
  19043. },
  19044. {
  19045. name: "Gigamacro",
  19046. height: math.unit(1000, "miles")
  19047. },
  19048. ]
  19049. ))
  19050. characterMakers.push(() => makeCharacter(
  19051. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19052. {
  19053. front: {
  19054. height: math.unit(5 + 2 / 12, "feet"),
  19055. weight: math.unit(110, "lb"),
  19056. name: "Front",
  19057. image: {
  19058. source: "./media/characters/desta/front.svg",
  19059. extra: 767 / 726,
  19060. bottom: 11.7 / 779
  19061. }
  19062. },
  19063. back: {
  19064. height: math.unit(5 + 2 / 12, "feet"),
  19065. weight: math.unit(110, "lb"),
  19066. name: "Back",
  19067. image: {
  19068. source: "./media/characters/desta/back.svg",
  19069. extra: 777 / 728,
  19070. bottom: 6 / 784
  19071. }
  19072. },
  19073. frontAlt: {
  19074. height: math.unit(5 + 2 / 12, "feet"),
  19075. weight: math.unit(110, "lb"),
  19076. name: "Front",
  19077. image: {
  19078. source: "./media/characters/desta/front-alt.svg",
  19079. extra: 1482 / 1417
  19080. }
  19081. },
  19082. side: {
  19083. height: math.unit(5 + 2 / 12, "feet"),
  19084. weight: math.unit(110, "lb"),
  19085. name: "Side",
  19086. image: {
  19087. source: "./media/characters/desta/side.svg",
  19088. extra: 2579 / 2491,
  19089. bottom: 0.053
  19090. }
  19091. },
  19092. },
  19093. [
  19094. {
  19095. name: "Micro",
  19096. height: math.unit(6, "inches")
  19097. },
  19098. {
  19099. name: "Normal",
  19100. height: math.unit(5 + 2 / 12, "feet"),
  19101. default: true
  19102. },
  19103. {
  19104. name: "Macro",
  19105. height: math.unit(62, "feet")
  19106. },
  19107. {
  19108. name: "Megamacro",
  19109. height: math.unit(1800, "feet")
  19110. },
  19111. ]
  19112. ))
  19113. characterMakers.push(() => makeCharacter(
  19114. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19115. {
  19116. front: {
  19117. height: math.unit(10, "feet"),
  19118. weight: math.unit(700, "lb"),
  19119. name: "Front",
  19120. image: {
  19121. source: "./media/characters/storm-alystar/front.svg",
  19122. extra: 2112 / 1898,
  19123. bottom: 0.034
  19124. }
  19125. },
  19126. },
  19127. [
  19128. {
  19129. name: "Micro",
  19130. height: math.unit(3.5, "inches")
  19131. },
  19132. {
  19133. name: "Normal",
  19134. height: math.unit(10, "feet"),
  19135. default: true
  19136. },
  19137. {
  19138. name: "Macro",
  19139. height: math.unit(400, "feet")
  19140. },
  19141. {
  19142. name: "Deific",
  19143. height: math.unit(60, "miles")
  19144. },
  19145. ]
  19146. ))
  19147. characterMakers.push(() => makeCharacter(
  19148. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19149. {
  19150. front: {
  19151. height: math.unit(2.35, "meters"),
  19152. weight: math.unit(119, "kg"),
  19153. name: "Front",
  19154. image: {
  19155. source: "./media/characters/ilia/front.svg",
  19156. extra: 1285 / 1255,
  19157. bottom: 0.06
  19158. }
  19159. },
  19160. },
  19161. [
  19162. {
  19163. name: "Normal",
  19164. height: math.unit(2.35, "meters")
  19165. },
  19166. {
  19167. name: "Macro",
  19168. height: math.unit(140, "meters"),
  19169. default: true
  19170. },
  19171. {
  19172. name: "Megamacro",
  19173. height: math.unit(100, "miles")
  19174. },
  19175. ]
  19176. ))
  19177. characterMakers.push(() => makeCharacter(
  19178. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19179. {
  19180. front: {
  19181. height: math.unit(6 + 5 / 12, "feet"),
  19182. weight: math.unit(190, "lb"),
  19183. name: "Front",
  19184. image: {
  19185. source: "./media/characters/kingdead/front.svg",
  19186. extra: 1228 / 1177
  19187. }
  19188. },
  19189. },
  19190. [
  19191. {
  19192. name: "Micro",
  19193. height: math.unit(7, "inches")
  19194. },
  19195. {
  19196. name: "Normal",
  19197. height: math.unit(6 + 5 / 12, "feet")
  19198. },
  19199. {
  19200. name: "Macro",
  19201. height: math.unit(150, "feet"),
  19202. default: true
  19203. },
  19204. {
  19205. name: "Megamacro",
  19206. height: math.unit(200, "miles")
  19207. },
  19208. ]
  19209. ))
  19210. characterMakers.push(() => makeCharacter(
  19211. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19212. {
  19213. front: {
  19214. height: math.unit(8, "feet"),
  19215. weight: math.unit(600, "lb"),
  19216. name: "Front",
  19217. image: {
  19218. source: "./media/characters/kyrehx/front.svg",
  19219. extra: 1195 / 1095,
  19220. bottom: 0.034
  19221. }
  19222. },
  19223. },
  19224. [
  19225. {
  19226. name: "Micro",
  19227. height: math.unit(2, "inches")
  19228. },
  19229. {
  19230. name: "Normal",
  19231. height: math.unit(8, "feet"),
  19232. default: true
  19233. },
  19234. {
  19235. name: "Macro",
  19236. height: math.unit(255, "feet")
  19237. },
  19238. ]
  19239. ))
  19240. characterMakers.push(() => makeCharacter(
  19241. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19242. {
  19243. front: {
  19244. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19245. weight: math.unit(184, "lb"),
  19246. name: "Front",
  19247. image: {
  19248. source: "./media/characters/xang/front.svg",
  19249. extra: 845 / 755
  19250. }
  19251. },
  19252. },
  19253. [
  19254. {
  19255. name: "Normal",
  19256. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19257. default: true
  19258. },
  19259. {
  19260. name: "Macro",
  19261. height: math.unit(0.935 * 146, "feet")
  19262. },
  19263. {
  19264. name: "Megamacro",
  19265. height: math.unit(0.935 * 3, "miles")
  19266. },
  19267. ]
  19268. ))
  19269. characterMakers.push(() => makeCharacter(
  19270. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19271. {
  19272. frontDressed: {
  19273. height: math.unit(5 + 7 / 12, "feet"),
  19274. weight: math.unit(140, "lb"),
  19275. name: "Front (Dressed)",
  19276. image: {
  19277. source: "./media/characters/doc-weardno/front-dressed.svg",
  19278. extra: 263 / 234
  19279. }
  19280. },
  19281. backDressed: {
  19282. height: math.unit(5 + 7 / 12, "feet"),
  19283. weight: math.unit(140, "lb"),
  19284. name: "Back (Dressed)",
  19285. image: {
  19286. source: "./media/characters/doc-weardno/back-dressed.svg",
  19287. extra: 266 / 238
  19288. }
  19289. },
  19290. front: {
  19291. height: math.unit(5 + 7 / 12, "feet"),
  19292. weight: math.unit(140, "lb"),
  19293. name: "Front",
  19294. image: {
  19295. source: "./media/characters/doc-weardno/front.svg",
  19296. extra: 254 / 233
  19297. }
  19298. },
  19299. },
  19300. [
  19301. {
  19302. name: "Micro",
  19303. height: math.unit(3, "inches")
  19304. },
  19305. {
  19306. name: "Normal",
  19307. height: math.unit(5 + 7 / 12, "feet"),
  19308. default: true
  19309. },
  19310. {
  19311. name: "Macro",
  19312. height: math.unit(25, "feet")
  19313. },
  19314. {
  19315. name: "Megamacro",
  19316. height: math.unit(2, "miles")
  19317. },
  19318. ]
  19319. ))
  19320. characterMakers.push(() => makeCharacter(
  19321. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19322. {
  19323. front: {
  19324. height: math.unit(6 + 2 / 12, "feet"),
  19325. weight: math.unit(153, "lb"),
  19326. name: "Front",
  19327. image: {
  19328. source: "./media/characters/seth-whilst/front.svg",
  19329. bottom: 0.07
  19330. }
  19331. },
  19332. },
  19333. [
  19334. {
  19335. name: "Micro",
  19336. height: math.unit(5, "inches")
  19337. },
  19338. {
  19339. name: "Normal",
  19340. height: math.unit(6 + 2 / 12, "feet"),
  19341. default: true
  19342. },
  19343. ]
  19344. ))
  19345. characterMakers.push(() => makeCharacter(
  19346. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19347. {
  19348. front: {
  19349. height: math.unit(3, "inches"),
  19350. weight: math.unit(8, "grams"),
  19351. name: "Front",
  19352. image: {
  19353. source: "./media/characters/pocket-jabari/front.svg",
  19354. extra: 1024 / 974,
  19355. bottom: 0.039
  19356. }
  19357. },
  19358. },
  19359. [
  19360. {
  19361. name: "Minimicro",
  19362. height: math.unit(8, "mm")
  19363. },
  19364. {
  19365. name: "Micro",
  19366. height: math.unit(3, "inches"),
  19367. default: true
  19368. },
  19369. {
  19370. name: "Normal",
  19371. height: math.unit(3, "feet")
  19372. },
  19373. ]
  19374. ))
  19375. characterMakers.push(() => makeCharacter(
  19376. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19377. {
  19378. frontDressed: {
  19379. height: math.unit(15, "feet"),
  19380. weight: math.unit(3280, "lb"),
  19381. name: "Front (Dressed)",
  19382. image: {
  19383. source: "./media/characters/sapphy/front-dressed.svg",
  19384. extra: 1951/1654,
  19385. bottom: 194/2145
  19386. },
  19387. form: "anthro",
  19388. default: true
  19389. },
  19390. backDressed: {
  19391. height: math.unit(15, "feet"),
  19392. weight: math.unit(3280, "lb"),
  19393. name: "Back (Dressed)",
  19394. image: {
  19395. source: "./media/characters/sapphy/back-dressed.svg",
  19396. extra: 2058/1918,
  19397. bottom: 125/2183
  19398. },
  19399. form: "anthro"
  19400. },
  19401. frontNude: {
  19402. height: math.unit(15, "feet"),
  19403. weight: math.unit(3280, "lb"),
  19404. name: "Front (Nude)",
  19405. image: {
  19406. source: "./media/characters/sapphy/front-nude.svg",
  19407. extra: 1951/1654,
  19408. bottom: 194/2145
  19409. },
  19410. form: "anthro"
  19411. },
  19412. backNude: {
  19413. height: math.unit(15, "feet"),
  19414. weight: math.unit(3280, "lb"),
  19415. name: "Back (Nude)",
  19416. image: {
  19417. source: "./media/characters/sapphy/back-nude.svg",
  19418. extra: 2058/1918,
  19419. bottom: 125/2183
  19420. },
  19421. form: "anthro"
  19422. },
  19423. full: {
  19424. height: math.unit(15, "feet"),
  19425. weight: math.unit(3280, "lb"),
  19426. name: "Full",
  19427. image: {
  19428. source: "./media/characters/sapphy/full.svg",
  19429. extra: 1396/1317,
  19430. bottom: 44/1440
  19431. },
  19432. form: "anthro"
  19433. },
  19434. dick: {
  19435. height: math.unit(3.8, "feet"),
  19436. name: "Dick",
  19437. image: {
  19438. source: "./media/characters/sapphy/dick.svg"
  19439. },
  19440. form: "anthro"
  19441. },
  19442. feral: {
  19443. height: math.unit(35, "feet"),
  19444. weight: math.unit(160, "tons"),
  19445. name: "Feral",
  19446. image: {
  19447. source: "./media/characters/sapphy/feral.svg",
  19448. extra: 1050/573,
  19449. bottom: 60/1110
  19450. },
  19451. form: "feral",
  19452. default: true
  19453. },
  19454. },
  19455. [
  19456. {
  19457. name: "Normal",
  19458. height: math.unit(15, "feet"),
  19459. form: "anthro"
  19460. },
  19461. {
  19462. name: "Casual Macro",
  19463. height: math.unit(120, "feet"),
  19464. form: "anthro"
  19465. },
  19466. {
  19467. name: "Macro",
  19468. height: math.unit(2150, "feet"),
  19469. default: true,
  19470. form: "anthro"
  19471. },
  19472. {
  19473. name: "Megamacro",
  19474. height: math.unit(8, "miles"),
  19475. form: "anthro"
  19476. },
  19477. {
  19478. name: "Galaxy Mom",
  19479. height: math.unit(6, "megalightyears"),
  19480. form: "anthro"
  19481. },
  19482. {
  19483. name: "Normal",
  19484. height: math.unit(35, "feet"),
  19485. form: "feral",
  19486. default: true
  19487. },
  19488. {
  19489. name: "Macro",
  19490. height: math.unit(300, "feet"),
  19491. form: "feral"
  19492. },
  19493. {
  19494. name: "Galaxy Mom",
  19495. height: math.unit(10, "megalightyears"),
  19496. form: "feral"
  19497. },
  19498. ],
  19499. {
  19500. "anthro": {
  19501. name: "Anthro",
  19502. default: true
  19503. },
  19504. "feral": {
  19505. name: "Feral"
  19506. }
  19507. }
  19508. ))
  19509. characterMakers.push(() => makeCharacter(
  19510. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19511. {
  19512. front: {
  19513. height: math.unit(6, "feet"),
  19514. weight: math.unit(170, "lb"),
  19515. name: "Front",
  19516. image: {
  19517. source: "./media/characters/kiro/front.svg",
  19518. extra: 1064 / 1012,
  19519. bottom: 0.052
  19520. }
  19521. },
  19522. },
  19523. [
  19524. {
  19525. name: "Micro",
  19526. height: math.unit(6, "inches")
  19527. },
  19528. {
  19529. name: "Normal",
  19530. height: math.unit(6, "feet"),
  19531. default: true
  19532. },
  19533. {
  19534. name: "Macro",
  19535. height: math.unit(72, "feet")
  19536. },
  19537. ]
  19538. ))
  19539. characterMakers.push(() => makeCharacter(
  19540. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19541. {
  19542. front: {
  19543. height: math.unit(5 + 9 / 12, "feet"),
  19544. weight: math.unit(175, "lb"),
  19545. name: "Front",
  19546. image: {
  19547. source: "./media/characters/irishfox/front.svg",
  19548. extra: 1912 / 1680,
  19549. bottom: 0.02
  19550. }
  19551. },
  19552. },
  19553. [
  19554. {
  19555. name: "Nano",
  19556. height: math.unit(1, "mm")
  19557. },
  19558. {
  19559. name: "Micro",
  19560. height: math.unit(2, "inches")
  19561. },
  19562. {
  19563. name: "Normal",
  19564. height: math.unit(5 + 9 / 12, "feet"),
  19565. default: true
  19566. },
  19567. {
  19568. name: "Macro",
  19569. height: math.unit(45, "feet")
  19570. },
  19571. ]
  19572. ))
  19573. characterMakers.push(() => makeCharacter(
  19574. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19575. {
  19576. front: {
  19577. height: math.unit(6 + 1 / 12, "feet"),
  19578. weight: math.unit(75, "lb"),
  19579. name: "Front",
  19580. image: {
  19581. source: "./media/characters/aronai-sieyes/front.svg",
  19582. extra: 1532/1450,
  19583. bottom: 42/1574
  19584. }
  19585. },
  19586. side: {
  19587. height: math.unit(6 + 1 / 12, "feet"),
  19588. weight: math.unit(75, "lb"),
  19589. name: "Side",
  19590. image: {
  19591. source: "./media/characters/aronai-sieyes/side.svg",
  19592. extra: 1422/1365,
  19593. bottom: 148/1570
  19594. }
  19595. },
  19596. back: {
  19597. height: math.unit(6 + 1 / 12, "feet"),
  19598. weight: math.unit(75, "lb"),
  19599. name: "Back",
  19600. image: {
  19601. source: "./media/characters/aronai-sieyes/back.svg",
  19602. extra: 1526/1464,
  19603. bottom: 51/1577
  19604. }
  19605. },
  19606. dressed: {
  19607. height: math.unit(6 + 1 / 12, "feet"),
  19608. weight: math.unit(75, "lb"),
  19609. name: "Dressed",
  19610. image: {
  19611. source: "./media/characters/aronai-sieyes/dressed.svg",
  19612. extra: 1559/1483,
  19613. bottom: 39/1598
  19614. }
  19615. },
  19616. slit: {
  19617. height: math.unit(1.3, "feet"),
  19618. name: "Slit",
  19619. image: {
  19620. source: "./media/characters/aronai-sieyes/slit.svg"
  19621. }
  19622. },
  19623. slitSpread: {
  19624. height: math.unit(0.9, "feet"),
  19625. name: "Slit (Spread)",
  19626. image: {
  19627. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19628. }
  19629. },
  19630. rump: {
  19631. height: math.unit(1.3, "feet"),
  19632. name: "Rump",
  19633. image: {
  19634. source: "./media/characters/aronai-sieyes/rump.svg"
  19635. }
  19636. },
  19637. maw: {
  19638. height: math.unit(1.25, "feet"),
  19639. name: "Maw",
  19640. image: {
  19641. source: "./media/characters/aronai-sieyes/maw.svg"
  19642. }
  19643. },
  19644. feral: {
  19645. height: math.unit(18, "feet"),
  19646. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19647. name: "Feral",
  19648. image: {
  19649. source: "./media/characters/aronai-sieyes/feral.svg",
  19650. extra: 1530 / 1240,
  19651. bottom: 0.035
  19652. }
  19653. },
  19654. },
  19655. [
  19656. {
  19657. name: "Micro",
  19658. height: math.unit(2, "inches")
  19659. },
  19660. {
  19661. name: "Normal",
  19662. height: math.unit(6 + 1 / 12, "feet"),
  19663. default: true
  19664. }
  19665. ]
  19666. ))
  19667. characterMakers.push(() => makeCharacter(
  19668. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19669. {
  19670. front: {
  19671. height: math.unit(12, "feet"),
  19672. weight: math.unit(410, "kg"),
  19673. name: "Front",
  19674. image: {
  19675. source: "./media/characters/xuna/front.svg",
  19676. extra: 2184 / 1980
  19677. }
  19678. },
  19679. side: {
  19680. height: math.unit(12, "feet"),
  19681. weight: math.unit(410, "kg"),
  19682. name: "Side",
  19683. image: {
  19684. source: "./media/characters/xuna/side.svg",
  19685. extra: 2184 / 1980
  19686. }
  19687. },
  19688. back: {
  19689. height: math.unit(12, "feet"),
  19690. weight: math.unit(410, "kg"),
  19691. name: "Back",
  19692. image: {
  19693. source: "./media/characters/xuna/back.svg",
  19694. extra: 2184 / 1980
  19695. }
  19696. },
  19697. },
  19698. [
  19699. {
  19700. name: "Nano glow",
  19701. height: math.unit(10, "nm")
  19702. },
  19703. {
  19704. name: "Micro floof",
  19705. height: math.unit(0.3, "m")
  19706. },
  19707. {
  19708. name: "Huggable softy boi",
  19709. height: math.unit(3.6576, "m"),
  19710. default: true
  19711. },
  19712. {
  19713. name: "Admirable floof",
  19714. height: math.unit(80, "meters")
  19715. },
  19716. {
  19717. name: "Gentle macro",
  19718. height: math.unit(300, "meters")
  19719. },
  19720. {
  19721. name: "Very careful floof",
  19722. height: math.unit(3200, "meters")
  19723. },
  19724. {
  19725. name: "The mega floof",
  19726. height: math.unit(36000, "meters")
  19727. },
  19728. {
  19729. name: "Giga-fur-Wicker",
  19730. height: math.unit(4800000, "meters")
  19731. },
  19732. {
  19733. name: "Licky world",
  19734. height: math.unit(20000000, "meters")
  19735. },
  19736. {
  19737. name: "Floofy cyan sun",
  19738. height: math.unit(1500000000, "meters")
  19739. },
  19740. {
  19741. name: "Milky Wicker",
  19742. height: math.unit(1000000000000000000000, "meters")
  19743. },
  19744. {
  19745. name: "The observing Wicker",
  19746. height: math.unit(999999999999999999999999999, "meters")
  19747. },
  19748. ]
  19749. ))
  19750. characterMakers.push(() => makeCharacter(
  19751. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19752. {
  19753. front: {
  19754. height: math.unit(5 + 9 / 12, "feet"),
  19755. weight: math.unit(150, "lb"),
  19756. name: "Front",
  19757. image: {
  19758. source: "./media/characters/arokha-sieyes/front.svg",
  19759. extra: 1425 / 1284,
  19760. bottom: 0.05
  19761. }
  19762. },
  19763. },
  19764. [
  19765. {
  19766. name: "Normal",
  19767. height: math.unit(5 + 9 / 12, "feet")
  19768. },
  19769. {
  19770. name: "Macro",
  19771. height: math.unit(30, "meters"),
  19772. default: true
  19773. },
  19774. ]
  19775. ))
  19776. characterMakers.push(() => makeCharacter(
  19777. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19778. {
  19779. front: {
  19780. height: math.unit(6, "feet"),
  19781. weight: math.unit(180, "lb"),
  19782. name: "Front",
  19783. image: {
  19784. source: "./media/characters/arokh-sieyes/front.svg",
  19785. extra: 1830 / 1769,
  19786. bottom: 0.01
  19787. }
  19788. },
  19789. },
  19790. [
  19791. {
  19792. name: "Normal",
  19793. height: math.unit(6, "feet")
  19794. },
  19795. {
  19796. name: "Macro",
  19797. height: math.unit(30, "meters"),
  19798. default: true
  19799. },
  19800. ]
  19801. ))
  19802. characterMakers.push(() => makeCharacter(
  19803. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19804. {
  19805. side: {
  19806. height: math.unit(13 + 1 / 12, "feet"),
  19807. weight: math.unit(8.5, "tonnes"),
  19808. name: "Side",
  19809. image: {
  19810. source: "./media/characters/goldeneye/side.svg",
  19811. extra: 1182 / 778,
  19812. bottom: 0.067
  19813. }
  19814. },
  19815. paw: {
  19816. height: math.unit(3.4, "feet"),
  19817. name: "Paw",
  19818. image: {
  19819. source: "./media/characters/goldeneye/paw.svg"
  19820. }
  19821. },
  19822. },
  19823. [
  19824. {
  19825. name: "Normal",
  19826. height: math.unit(13 + 1 / 12, "feet"),
  19827. default: true
  19828. },
  19829. ]
  19830. ))
  19831. characterMakers.push(() => makeCharacter(
  19832. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19833. {
  19834. front: {
  19835. height: math.unit(6 + 1 / 12, "feet"),
  19836. weight: math.unit(210, "lb"),
  19837. name: "Front",
  19838. image: {
  19839. source: "./media/characters/leonardo-lycheborne/front.svg",
  19840. extra: 776/723,
  19841. bottom: 34/810
  19842. }
  19843. },
  19844. side: {
  19845. height: math.unit(6 + 1 / 12, "feet"),
  19846. weight: math.unit(210, "lb"),
  19847. name: "Side",
  19848. image: {
  19849. source: "./media/characters/leonardo-lycheborne/side.svg",
  19850. extra: 780/728,
  19851. bottom: 12/792
  19852. }
  19853. },
  19854. back: {
  19855. height: math.unit(6 + 1 / 12, "feet"),
  19856. weight: math.unit(210, "lb"),
  19857. name: "Back",
  19858. image: {
  19859. source: "./media/characters/leonardo-lycheborne/back.svg",
  19860. extra: 775/721,
  19861. bottom: 17/792
  19862. }
  19863. },
  19864. hand: {
  19865. height: math.unit(1.08, "feet"),
  19866. name: "Hand",
  19867. image: {
  19868. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19869. }
  19870. },
  19871. foot: {
  19872. height: math.unit(1.32, "feet"),
  19873. name: "Foot",
  19874. image: {
  19875. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19876. }
  19877. },
  19878. maw: {
  19879. height: math.unit(1, "feet"),
  19880. name: "Maw",
  19881. image: {
  19882. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19883. }
  19884. },
  19885. were: {
  19886. height: math.unit(20, "feet"),
  19887. weight: math.unit(7800, "lb"),
  19888. name: "Were",
  19889. image: {
  19890. source: "./media/characters/leonardo-lycheborne/were.svg",
  19891. extra: 1224/1165,
  19892. bottom: 72/1296
  19893. }
  19894. },
  19895. feral: {
  19896. height: math.unit(7.5, "feet"),
  19897. weight: math.unit(600, "lb"),
  19898. name: "Feral",
  19899. image: {
  19900. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19901. extra: 797/702,
  19902. bottom: 139/936
  19903. }
  19904. },
  19905. taur: {
  19906. height: math.unit(11, "feet"),
  19907. weight: math.unit(3300, "lb"),
  19908. name: "Taur",
  19909. image: {
  19910. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19911. extra: 1271/1197,
  19912. bottom: 47/1318
  19913. }
  19914. },
  19915. barghest: {
  19916. height: math.unit(11, "feet"),
  19917. weight: math.unit(1300, "lb"),
  19918. name: "Barghest",
  19919. image: {
  19920. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19921. extra: 1291/1204,
  19922. bottom: 37/1328
  19923. }
  19924. },
  19925. dick: {
  19926. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19927. name: "Dick",
  19928. image: {
  19929. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19930. }
  19931. },
  19932. dickWere: {
  19933. height: math.unit((20) / 3.8, "feet"),
  19934. name: "Dick (Were)",
  19935. image: {
  19936. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19937. }
  19938. },
  19939. },
  19940. [
  19941. {
  19942. name: "Normal",
  19943. height: math.unit(6 + 1 / 12, "feet"),
  19944. default: true
  19945. },
  19946. ]
  19947. ))
  19948. characterMakers.push(() => makeCharacter(
  19949. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19950. {
  19951. front: {
  19952. height: math.unit(10, "feet"),
  19953. weight: math.unit(350, "lb"),
  19954. name: "Front",
  19955. image: {
  19956. source: "./media/characters/jet/front.svg",
  19957. extra: 2050 / 1980,
  19958. bottom: 0.013
  19959. }
  19960. },
  19961. back: {
  19962. height: math.unit(10, "feet"),
  19963. weight: math.unit(350, "lb"),
  19964. name: "Back",
  19965. image: {
  19966. source: "./media/characters/jet/back.svg",
  19967. extra: 2050 / 1980,
  19968. bottom: 0.013
  19969. }
  19970. },
  19971. },
  19972. [
  19973. {
  19974. name: "Micro",
  19975. height: math.unit(6, "inches")
  19976. },
  19977. {
  19978. name: "Normal",
  19979. height: math.unit(10, "feet"),
  19980. default: true
  19981. },
  19982. {
  19983. name: "Macro",
  19984. height: math.unit(100, "feet")
  19985. },
  19986. ]
  19987. ))
  19988. characterMakers.push(() => makeCharacter(
  19989. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19990. {
  19991. front: {
  19992. height: math.unit(15, "feet"),
  19993. weight: math.unit(2800, "lb"),
  19994. name: "Front",
  19995. image: {
  19996. source: "./media/characters/tanarath/front.svg",
  19997. extra: 2392 / 2220,
  19998. bottom: 0.03
  19999. }
  20000. },
  20001. back: {
  20002. height: math.unit(15, "feet"),
  20003. weight: math.unit(2800, "lb"),
  20004. name: "Back",
  20005. image: {
  20006. source: "./media/characters/tanarath/back.svg",
  20007. extra: 2392 / 2220,
  20008. bottom: 0.03
  20009. }
  20010. },
  20011. },
  20012. [
  20013. {
  20014. name: "Normal",
  20015. height: math.unit(15, "feet"),
  20016. default: true
  20017. },
  20018. ]
  20019. ))
  20020. characterMakers.push(() => makeCharacter(
  20021. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20022. {
  20023. front: {
  20024. height: math.unit(7 + 1 / 12, "feet"),
  20025. weight: math.unit(175, "lb"),
  20026. name: "Front",
  20027. image: {
  20028. source: "./media/characters/patty-cattybatty/front.svg",
  20029. extra: 908 / 874,
  20030. bottom: 0.025
  20031. }
  20032. },
  20033. },
  20034. [
  20035. {
  20036. name: "Micro",
  20037. height: math.unit(1, "inch")
  20038. },
  20039. {
  20040. name: "Normal",
  20041. height: math.unit(7 + 1 / 12, "feet")
  20042. },
  20043. {
  20044. name: "Mini Macro",
  20045. height: math.unit(155, "feet")
  20046. },
  20047. {
  20048. name: "Macro",
  20049. height: math.unit(1077, "feet")
  20050. },
  20051. {
  20052. name: "Mega Macro",
  20053. height: math.unit(47650, "feet"),
  20054. default: true
  20055. },
  20056. {
  20057. name: "Giga Macro",
  20058. height: math.unit(440, "miles")
  20059. },
  20060. {
  20061. name: "Tera Macro",
  20062. height: math.unit(8700, "miles")
  20063. },
  20064. {
  20065. name: "Planetary Macro",
  20066. height: math.unit(32700, "miles")
  20067. },
  20068. {
  20069. name: "Solar Macro",
  20070. height: math.unit(550000, "miles")
  20071. },
  20072. {
  20073. name: "Celestial Macro",
  20074. height: math.unit(2.5, "AU")
  20075. },
  20076. ]
  20077. ))
  20078. characterMakers.push(() => makeCharacter(
  20079. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20080. {
  20081. front: {
  20082. height: math.unit(4 + 5 / 12, "feet"),
  20083. weight: math.unit(90, "lb"),
  20084. name: "Front",
  20085. image: {
  20086. source: "./media/characters/cappu/front.svg",
  20087. extra: 1247 / 1152,
  20088. bottom: 0.012
  20089. }
  20090. },
  20091. },
  20092. [
  20093. {
  20094. name: "Normal",
  20095. height: math.unit(4 + 5 / 12, "feet"),
  20096. default: true
  20097. },
  20098. ]
  20099. ))
  20100. characterMakers.push(() => makeCharacter(
  20101. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20102. {
  20103. frontDressed: {
  20104. height: math.unit(70, "cm"),
  20105. weight: math.unit(6, "kg"),
  20106. name: "Front (Dressed)",
  20107. image: {
  20108. source: "./media/characters/sebi/front-dressed.svg",
  20109. extra: 713.5 / 686.5,
  20110. bottom: 0.003
  20111. }
  20112. },
  20113. front: {
  20114. height: math.unit(70, "cm"),
  20115. weight: math.unit(5, "kg"),
  20116. name: "Front",
  20117. image: {
  20118. source: "./media/characters/sebi/front.svg",
  20119. extra: 713.5 / 686.5,
  20120. bottom: 0.003
  20121. }
  20122. }
  20123. },
  20124. [
  20125. {
  20126. name: "Normal",
  20127. height: math.unit(70, "cm"),
  20128. default: true
  20129. },
  20130. {
  20131. name: "Macro",
  20132. height: math.unit(8, "meters")
  20133. },
  20134. ]
  20135. ))
  20136. characterMakers.push(() => makeCharacter(
  20137. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20138. {
  20139. front: {
  20140. height: math.unit(6, "feet"),
  20141. weight: math.unit(150, "lb"),
  20142. name: "Front",
  20143. image: {
  20144. source: "./media/characters/typhek/front.svg",
  20145. extra: 1948 / 1929,
  20146. bottom: 0.025
  20147. }
  20148. },
  20149. side: {
  20150. height: math.unit(6, "feet"),
  20151. weight: math.unit(150, "lb"),
  20152. name: "Side",
  20153. image: {
  20154. source: "./media/characters/typhek/side.svg",
  20155. extra: 2034 / 2010,
  20156. bottom: 0.003
  20157. }
  20158. },
  20159. back: {
  20160. height: math.unit(6, "feet"),
  20161. weight: math.unit(150, "lb"),
  20162. name: "Back",
  20163. image: {
  20164. source: "./media/characters/typhek/back.svg",
  20165. extra: 2005 / 1978,
  20166. bottom: 0.004
  20167. }
  20168. },
  20169. palm: {
  20170. height: math.unit(1.2, "feet"),
  20171. name: "Palm",
  20172. image: {
  20173. source: "./media/characters/typhek/palm.svg"
  20174. }
  20175. },
  20176. fist: {
  20177. height: math.unit(1.1, "feet"),
  20178. name: "Fist",
  20179. image: {
  20180. source: "./media/characters/typhek/fist.svg"
  20181. }
  20182. },
  20183. foot: {
  20184. height: math.unit(1.57, "feet"),
  20185. name: "Foot",
  20186. image: {
  20187. source: "./media/characters/typhek/foot.svg"
  20188. }
  20189. },
  20190. sole: {
  20191. height: math.unit(2.05, "feet"),
  20192. name: "Sole",
  20193. image: {
  20194. source: "./media/characters/typhek/sole.svg"
  20195. }
  20196. },
  20197. },
  20198. [
  20199. {
  20200. name: "Macro",
  20201. height: math.unit(40, "stories"),
  20202. default: true
  20203. },
  20204. {
  20205. name: "Megamacro",
  20206. height: math.unit(1, "mile")
  20207. },
  20208. {
  20209. name: "Gigamacro",
  20210. height: math.unit(4000, "solarradii")
  20211. },
  20212. {
  20213. name: "Universal",
  20214. height: math.unit(1.1, "universes")
  20215. }
  20216. ]
  20217. ))
  20218. characterMakers.push(() => makeCharacter(
  20219. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20220. {
  20221. side: {
  20222. height: math.unit(5 + 7 / 12, "feet"),
  20223. weight: math.unit(150, "lb"),
  20224. name: "Side",
  20225. image: {
  20226. source: "./media/characters/kassy/side.svg",
  20227. extra: 1280 / 1225,
  20228. bottom: 0.002
  20229. }
  20230. },
  20231. front: {
  20232. height: math.unit(5 + 7 / 12, "feet"),
  20233. weight: math.unit(150, "lb"),
  20234. name: "Front",
  20235. image: {
  20236. source: "./media/characters/kassy/front.svg",
  20237. extra: 1280 / 1225,
  20238. bottom: 0.025
  20239. }
  20240. },
  20241. back: {
  20242. height: math.unit(5 + 7 / 12, "feet"),
  20243. weight: math.unit(150, "lb"),
  20244. name: "Back",
  20245. image: {
  20246. source: "./media/characters/kassy/back.svg",
  20247. extra: 1280 / 1225,
  20248. bottom: 0.002
  20249. }
  20250. },
  20251. foot: {
  20252. height: math.unit(1.266, "feet"),
  20253. name: "Foot",
  20254. image: {
  20255. source: "./media/characters/kassy/foot.svg"
  20256. }
  20257. },
  20258. },
  20259. [
  20260. {
  20261. name: "Normal",
  20262. height: math.unit(5 + 7 / 12, "feet")
  20263. },
  20264. {
  20265. name: "Macro",
  20266. height: math.unit(137, "feet"),
  20267. default: true
  20268. },
  20269. {
  20270. name: "Megamacro",
  20271. height: math.unit(1, "mile")
  20272. },
  20273. ]
  20274. ))
  20275. characterMakers.push(() => makeCharacter(
  20276. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20277. {
  20278. front: {
  20279. height: math.unit(6 + 1 / 12, "feet"),
  20280. weight: math.unit(200, "lb"),
  20281. name: "Front",
  20282. image: {
  20283. source: "./media/characters/neil/front.svg",
  20284. extra: 1326 / 1250,
  20285. bottom: 0.023
  20286. }
  20287. },
  20288. },
  20289. [
  20290. {
  20291. name: "Normal",
  20292. height: math.unit(6 + 1 / 12, "feet"),
  20293. default: true
  20294. },
  20295. {
  20296. name: "Macro",
  20297. height: math.unit(200, "feet")
  20298. },
  20299. ]
  20300. ))
  20301. characterMakers.push(() => makeCharacter(
  20302. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20303. {
  20304. front: {
  20305. height: math.unit(5 + 9 / 12, "feet"),
  20306. weight: math.unit(190, "lb"),
  20307. name: "Front",
  20308. image: {
  20309. source: "./media/characters/atticus/front.svg",
  20310. extra: 2934 / 2785,
  20311. bottom: 0.025
  20312. }
  20313. },
  20314. },
  20315. [
  20316. {
  20317. name: "Normal",
  20318. height: math.unit(5 + 9 / 12, "feet"),
  20319. default: true
  20320. },
  20321. {
  20322. name: "Macro",
  20323. height: math.unit(180, "feet")
  20324. },
  20325. ]
  20326. ))
  20327. characterMakers.push(() => makeCharacter(
  20328. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20329. {
  20330. side: {
  20331. height: math.unit(9, "feet"),
  20332. weight: math.unit(650, "lb"),
  20333. name: "Side",
  20334. image: {
  20335. source: "./media/characters/milo/side.svg",
  20336. extra: 2644 / 2310,
  20337. bottom: 0.032
  20338. }
  20339. },
  20340. },
  20341. [
  20342. {
  20343. name: "Normal",
  20344. height: math.unit(9, "feet"),
  20345. default: true
  20346. },
  20347. {
  20348. name: "Macro",
  20349. height: math.unit(300, "feet")
  20350. },
  20351. ]
  20352. ))
  20353. characterMakers.push(() => makeCharacter(
  20354. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20355. {
  20356. side: {
  20357. height: math.unit(8, "meters"),
  20358. weight: math.unit(90000, "kg"),
  20359. name: "Side",
  20360. image: {
  20361. source: "./media/characters/ijzer/side.svg",
  20362. extra: 2756 / 1600,
  20363. bottom: 0.01
  20364. }
  20365. },
  20366. },
  20367. [
  20368. {
  20369. name: "Small",
  20370. height: math.unit(3, "meters")
  20371. },
  20372. {
  20373. name: "Normal",
  20374. height: math.unit(8, "meters"),
  20375. default: true
  20376. },
  20377. {
  20378. name: "Normal+",
  20379. height: math.unit(10, "meters")
  20380. },
  20381. {
  20382. name: "Bigger",
  20383. height: math.unit(24, "meters")
  20384. },
  20385. {
  20386. name: "Huge",
  20387. height: math.unit(80, "meters")
  20388. },
  20389. ]
  20390. ))
  20391. characterMakers.push(() => makeCharacter(
  20392. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20393. {
  20394. front: {
  20395. height: math.unit(6 + 2 / 12, "feet"),
  20396. weight: math.unit(153, "lb"),
  20397. name: "Front",
  20398. image: {
  20399. source: "./media/characters/luca-cervicum/front.svg",
  20400. extra: 370 / 327,
  20401. bottom: 0.015
  20402. }
  20403. },
  20404. back: {
  20405. height: math.unit(6 + 2 / 12, "feet"),
  20406. weight: math.unit(153, "lb"),
  20407. name: "Back",
  20408. image: {
  20409. source: "./media/characters/luca-cervicum/back.svg",
  20410. extra: 367 / 333,
  20411. bottom: 0.005
  20412. }
  20413. },
  20414. frontGear: {
  20415. height: math.unit(6 + 2 / 12, "feet"),
  20416. weight: math.unit(173, "lb"),
  20417. name: "Front (Gear)",
  20418. image: {
  20419. source: "./media/characters/luca-cervicum/front-gear.svg",
  20420. extra: 377 / 333,
  20421. bottom: 0.006
  20422. }
  20423. },
  20424. },
  20425. [
  20426. {
  20427. name: "Normal",
  20428. height: math.unit(6 + 2 / 12, "feet"),
  20429. default: true
  20430. },
  20431. ]
  20432. ))
  20433. characterMakers.push(() => makeCharacter(
  20434. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20435. {
  20436. front: {
  20437. height: math.unit(6 + 1 / 12, "feet"),
  20438. weight: math.unit(304, "lb"),
  20439. name: "Front",
  20440. image: {
  20441. source: "./media/characters/oliver/front.svg",
  20442. extra: 157 / 143,
  20443. bottom: 0.08
  20444. }
  20445. },
  20446. },
  20447. [
  20448. {
  20449. name: "Normal",
  20450. height: math.unit(6 + 1 / 12, "feet"),
  20451. default: true
  20452. },
  20453. ]
  20454. ))
  20455. characterMakers.push(() => makeCharacter(
  20456. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20457. {
  20458. front: {
  20459. height: math.unit(5 + 7 / 12, "feet"),
  20460. weight: math.unit(140, "lb"),
  20461. name: "Front",
  20462. image: {
  20463. source: "./media/characters/shane/front.svg",
  20464. extra: 304 / 289,
  20465. bottom: 0.005
  20466. }
  20467. },
  20468. },
  20469. [
  20470. {
  20471. name: "Normal",
  20472. height: math.unit(5 + 7 / 12, "feet"),
  20473. default: true
  20474. },
  20475. ]
  20476. ))
  20477. characterMakers.push(() => makeCharacter(
  20478. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20479. {
  20480. front: {
  20481. height: math.unit(5 + 9 / 12, "feet"),
  20482. weight: math.unit(178, "lb"),
  20483. name: "Front",
  20484. image: {
  20485. source: "./media/characters/shin/front.svg",
  20486. extra: 159 / 151,
  20487. bottom: 0.015
  20488. }
  20489. },
  20490. },
  20491. [
  20492. {
  20493. name: "Normal",
  20494. height: math.unit(5 + 9 / 12, "feet"),
  20495. default: true
  20496. },
  20497. ]
  20498. ))
  20499. characterMakers.push(() => makeCharacter(
  20500. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20501. {
  20502. front: {
  20503. height: math.unit(5 + 10 / 12, "feet"),
  20504. weight: math.unit(168, "lb"),
  20505. name: "Front",
  20506. image: {
  20507. source: "./media/characters/xerxes/front.svg",
  20508. extra: 282 / 260,
  20509. bottom: 0.045
  20510. }
  20511. },
  20512. },
  20513. [
  20514. {
  20515. name: "Normal",
  20516. height: math.unit(5 + 10 / 12, "feet"),
  20517. default: true
  20518. },
  20519. ]
  20520. ))
  20521. characterMakers.push(() => makeCharacter(
  20522. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20523. {
  20524. front: {
  20525. height: math.unit(6 + 7 / 12, "feet"),
  20526. weight: math.unit(208, "lb"),
  20527. name: "Front",
  20528. image: {
  20529. source: "./media/characters/chaska/front.svg",
  20530. extra: 332 / 319,
  20531. bottom: 0.015
  20532. }
  20533. },
  20534. },
  20535. [
  20536. {
  20537. name: "Normal",
  20538. height: math.unit(6 + 7 / 12, "feet"),
  20539. default: true
  20540. },
  20541. ]
  20542. ))
  20543. characterMakers.push(() => makeCharacter(
  20544. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20545. {
  20546. front: {
  20547. height: math.unit(5 + 8 / 12, "feet"),
  20548. weight: math.unit(208, "lb"),
  20549. name: "Front",
  20550. image: {
  20551. source: "./media/characters/enuk/front.svg",
  20552. extra: 437 / 406,
  20553. bottom: 0.02
  20554. }
  20555. },
  20556. },
  20557. [
  20558. {
  20559. name: "Normal",
  20560. height: math.unit(5 + 8 / 12, "feet"),
  20561. default: true
  20562. },
  20563. ]
  20564. ))
  20565. characterMakers.push(() => makeCharacter(
  20566. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20567. {
  20568. front: {
  20569. height: math.unit(5 + 10 / 12, "feet"),
  20570. weight: math.unit(252, "lb"),
  20571. name: "Front",
  20572. image: {
  20573. source: "./media/characters/bruun/front.svg",
  20574. extra: 197 / 187,
  20575. bottom: 0.012
  20576. }
  20577. },
  20578. },
  20579. [
  20580. {
  20581. name: "Normal",
  20582. height: math.unit(5 + 10 / 12, "feet"),
  20583. default: true
  20584. },
  20585. ]
  20586. ))
  20587. characterMakers.push(() => makeCharacter(
  20588. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20589. {
  20590. front: {
  20591. height: math.unit(6 + 10 / 12, "feet"),
  20592. weight: math.unit(255, "lb"),
  20593. name: "Front",
  20594. image: {
  20595. source: "./media/characters/alexeev/front.svg",
  20596. extra: 213 / 200,
  20597. bottom: 0.05
  20598. }
  20599. },
  20600. },
  20601. [
  20602. {
  20603. name: "Normal",
  20604. height: math.unit(6 + 10 / 12, "feet"),
  20605. default: true
  20606. },
  20607. ]
  20608. ))
  20609. characterMakers.push(() => makeCharacter(
  20610. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20611. {
  20612. front: {
  20613. height: math.unit(2 + 8 / 12, "feet"),
  20614. weight: math.unit(22, "lb"),
  20615. name: "Front",
  20616. image: {
  20617. source: "./media/characters/evelyn/front.svg",
  20618. extra: 208 / 180
  20619. }
  20620. },
  20621. },
  20622. [
  20623. {
  20624. name: "Normal",
  20625. height: math.unit(2 + 8 / 12, "feet"),
  20626. default: true
  20627. },
  20628. ]
  20629. ))
  20630. characterMakers.push(() => makeCharacter(
  20631. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20632. {
  20633. front: {
  20634. height: math.unit(5 + 9 / 12, "feet"),
  20635. weight: math.unit(139, "lb"),
  20636. name: "Front",
  20637. image: {
  20638. source: "./media/characters/inca/front.svg",
  20639. extra: 294 / 291,
  20640. bottom: 0.03
  20641. }
  20642. },
  20643. },
  20644. [
  20645. {
  20646. name: "Normal",
  20647. height: math.unit(5 + 9 / 12, "feet"),
  20648. default: true
  20649. },
  20650. ]
  20651. ))
  20652. characterMakers.push(() => makeCharacter(
  20653. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20654. {
  20655. front: {
  20656. height: math.unit(6 + 3 / 12, "feet"),
  20657. weight: math.unit(185, "lb"),
  20658. name: "Front",
  20659. image: {
  20660. source: "./media/characters/mera/front.svg",
  20661. extra: 291 / 277,
  20662. bottom: 0.03
  20663. }
  20664. },
  20665. },
  20666. [
  20667. {
  20668. name: "Normal",
  20669. height: math.unit(6 + 3 / 12, "feet"),
  20670. default: true
  20671. },
  20672. ]
  20673. ))
  20674. characterMakers.push(() => makeCharacter(
  20675. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20676. {
  20677. front: {
  20678. height: math.unit(6 + 7 / 12, "feet"),
  20679. weight: math.unit(160, "lb"),
  20680. name: "Front",
  20681. image: {
  20682. source: "./media/characters/ceres/front.svg",
  20683. extra: 1023 / 950,
  20684. bottom: 0.027
  20685. }
  20686. },
  20687. back: {
  20688. height: math.unit(6 + 7 / 12, "feet"),
  20689. weight: math.unit(160, "lb"),
  20690. name: "Back",
  20691. image: {
  20692. source: "./media/characters/ceres/back.svg",
  20693. extra: 1023 / 950
  20694. }
  20695. },
  20696. },
  20697. [
  20698. {
  20699. name: "Normal",
  20700. height: math.unit(6 + 7 / 12, "feet"),
  20701. default: true
  20702. },
  20703. ]
  20704. ))
  20705. characterMakers.push(() => makeCharacter(
  20706. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20707. {
  20708. front: {
  20709. height: math.unit(5 + 10 / 12, "feet"),
  20710. weight: math.unit(150, "lb"),
  20711. name: "Front",
  20712. image: {
  20713. source: "./media/characters/kris/front.svg",
  20714. extra: 885 / 803,
  20715. bottom: 0.03
  20716. }
  20717. },
  20718. },
  20719. [
  20720. {
  20721. name: "Normal",
  20722. height: math.unit(5 + 10 / 12, "feet"),
  20723. default: true
  20724. },
  20725. ]
  20726. ))
  20727. characterMakers.push(() => makeCharacter(
  20728. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20729. {
  20730. front: {
  20731. height: math.unit(7, "feet"),
  20732. weight: math.unit(120, "kg"),
  20733. name: "Front",
  20734. image: {
  20735. source: "./media/characters/taluthus/front.svg",
  20736. extra: 903 / 833,
  20737. bottom: 0.015
  20738. }
  20739. },
  20740. },
  20741. [
  20742. {
  20743. name: "Normal",
  20744. height: math.unit(7, "feet"),
  20745. default: true
  20746. },
  20747. {
  20748. name: "Macro",
  20749. height: math.unit(300, "feet")
  20750. },
  20751. ]
  20752. ))
  20753. characterMakers.push(() => makeCharacter(
  20754. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20755. {
  20756. front: {
  20757. height: math.unit(5 + 9 / 12, "feet"),
  20758. weight: math.unit(145, "lb"),
  20759. name: "Front",
  20760. image: {
  20761. source: "./media/characters/dawn/front.svg",
  20762. extra: 2094 / 2016,
  20763. bottom: 0.025
  20764. }
  20765. },
  20766. back: {
  20767. height: math.unit(5 + 9 / 12, "feet"),
  20768. weight: math.unit(160, "lb"),
  20769. name: "Back",
  20770. image: {
  20771. source: "./media/characters/dawn/back.svg",
  20772. extra: 2112 / 2080,
  20773. bottom: 0.005
  20774. }
  20775. },
  20776. },
  20777. [
  20778. {
  20779. name: "Normal",
  20780. height: math.unit(6 + 7 / 12, "feet"),
  20781. default: true
  20782. },
  20783. ]
  20784. ))
  20785. characterMakers.push(() => makeCharacter(
  20786. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20787. {
  20788. anthro: {
  20789. height: math.unit(8 + 3 / 12, "feet"),
  20790. weight: math.unit(450, "lb"),
  20791. name: "Anthro",
  20792. image: {
  20793. source: "./media/characters/arador/anthro.svg",
  20794. extra: 1835 / 1718,
  20795. bottom: 0.025
  20796. }
  20797. },
  20798. feral: {
  20799. height: math.unit(4, "feet"),
  20800. weight: math.unit(200, "lb"),
  20801. name: "Feral",
  20802. image: {
  20803. source: "./media/characters/arador/feral.svg",
  20804. extra: 1683 / 1514,
  20805. bottom: 0.07
  20806. }
  20807. },
  20808. },
  20809. [
  20810. {
  20811. name: "Normal",
  20812. height: math.unit(8 + 3 / 12, "feet")
  20813. },
  20814. {
  20815. name: "Macro",
  20816. height: math.unit(82.5, "feet"),
  20817. default: true
  20818. },
  20819. ]
  20820. ))
  20821. characterMakers.push(() => makeCharacter(
  20822. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20823. {
  20824. front: {
  20825. height: math.unit(5 + 10 / 12, "feet"),
  20826. weight: math.unit(125, "lb"),
  20827. name: "Front",
  20828. image: {
  20829. source: "./media/characters/dharsi/front.svg",
  20830. extra: 716 / 630,
  20831. bottom: 0.035
  20832. }
  20833. },
  20834. },
  20835. [
  20836. {
  20837. name: "Nano",
  20838. height: math.unit(100, "nm")
  20839. },
  20840. {
  20841. name: "Micro",
  20842. height: math.unit(2, "inches")
  20843. },
  20844. {
  20845. name: "Normal",
  20846. height: math.unit(5 + 10 / 12, "feet"),
  20847. default: true
  20848. },
  20849. {
  20850. name: "Macro",
  20851. height: math.unit(1000, "feet")
  20852. },
  20853. {
  20854. name: "Megamacro",
  20855. height: math.unit(10, "miles")
  20856. },
  20857. {
  20858. name: "Gigamacro",
  20859. height: math.unit(3000, "miles")
  20860. },
  20861. {
  20862. name: "Teramacro",
  20863. height: math.unit(500000, "miles")
  20864. },
  20865. {
  20866. name: "Teramacro+",
  20867. height: math.unit(30, "galaxies")
  20868. },
  20869. ]
  20870. ))
  20871. characterMakers.push(() => makeCharacter(
  20872. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20873. {
  20874. front: {
  20875. height: math.unit(6, "feet"),
  20876. weight: math.unit(150, "lb"),
  20877. name: "Front",
  20878. image: {
  20879. source: "./media/characters/deathy/front.svg",
  20880. extra: 1552 / 1463,
  20881. bottom: 0.025
  20882. }
  20883. },
  20884. side: {
  20885. height: math.unit(6, "feet"),
  20886. weight: math.unit(150, "lb"),
  20887. name: "Side",
  20888. image: {
  20889. source: "./media/characters/deathy/side.svg",
  20890. extra: 1604 / 1455,
  20891. bottom: 0.025
  20892. }
  20893. },
  20894. back: {
  20895. height: math.unit(6, "feet"),
  20896. weight: math.unit(150, "lb"),
  20897. name: "Back",
  20898. image: {
  20899. source: "./media/characters/deathy/back.svg",
  20900. extra: 1580 / 1463,
  20901. bottom: 0.005
  20902. }
  20903. },
  20904. },
  20905. [
  20906. {
  20907. name: "Micro",
  20908. height: math.unit(5, "millimeters")
  20909. },
  20910. {
  20911. name: "Normal",
  20912. height: math.unit(6 + 5 / 12, "feet"),
  20913. default: true
  20914. },
  20915. ]
  20916. ))
  20917. characterMakers.push(() => makeCharacter(
  20918. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20919. {
  20920. front: {
  20921. height: math.unit(16, "feet"),
  20922. weight: math.unit(4000, "lb"),
  20923. name: "Front",
  20924. image: {
  20925. source: "./media/characters/juniper/front.svg",
  20926. bottom: 0.04
  20927. }
  20928. },
  20929. },
  20930. [
  20931. {
  20932. name: "Normal",
  20933. height: math.unit(16, "feet"),
  20934. default: true
  20935. },
  20936. ]
  20937. ))
  20938. characterMakers.push(() => makeCharacter(
  20939. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20940. {
  20941. front: {
  20942. height: math.unit(6, "feet"),
  20943. weight: math.unit(150, "lb"),
  20944. name: "Front",
  20945. image: {
  20946. source: "./media/characters/hipster/front.svg",
  20947. extra: 1312 / 1209,
  20948. bottom: 0.025
  20949. }
  20950. },
  20951. back: {
  20952. height: math.unit(6, "feet"),
  20953. weight: math.unit(150, "lb"),
  20954. name: "Back",
  20955. image: {
  20956. source: "./media/characters/hipster/back.svg",
  20957. extra: 1281 / 1196,
  20958. bottom: 0.01
  20959. }
  20960. },
  20961. },
  20962. [
  20963. {
  20964. name: "Micro",
  20965. height: math.unit(1, "mm")
  20966. },
  20967. {
  20968. name: "Normal",
  20969. height: math.unit(4, "inches"),
  20970. default: true
  20971. },
  20972. {
  20973. name: "Macro",
  20974. height: math.unit(500, "feet")
  20975. },
  20976. {
  20977. name: "Megamacro",
  20978. height: math.unit(1000, "miles")
  20979. },
  20980. ]
  20981. ))
  20982. characterMakers.push(() => makeCharacter(
  20983. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20984. {
  20985. front: {
  20986. height: math.unit(6, "feet"),
  20987. weight: math.unit(150, "lb"),
  20988. name: "Front",
  20989. image: {
  20990. source: "./media/characters/tendirmuldr/front.svg",
  20991. extra: 1878 / 1772,
  20992. bottom: 0.015
  20993. }
  20994. },
  20995. },
  20996. [
  20997. {
  20998. name: "Megamacro",
  20999. height: math.unit(1500, "miles"),
  21000. default: true
  21001. },
  21002. ]
  21003. ))
  21004. characterMakers.push(() => makeCharacter(
  21005. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21006. {
  21007. front: {
  21008. height: math.unit(14, "feet"),
  21009. weight: math.unit(12000, "lb"),
  21010. name: "Front",
  21011. image: {
  21012. source: "./media/characters/mort/front.svg",
  21013. extra: 365 / 318,
  21014. bottom: 0.01
  21015. }
  21016. },
  21017. side: {
  21018. height: math.unit(14, "feet"),
  21019. weight: math.unit(12000, "lb"),
  21020. name: "Side",
  21021. image: {
  21022. source: "./media/characters/mort/side.svg",
  21023. extra: 365 / 318,
  21024. bottom: 0.052
  21025. },
  21026. default: true
  21027. },
  21028. back: {
  21029. height: math.unit(14, "feet"),
  21030. weight: math.unit(12000, "lb"),
  21031. name: "Back",
  21032. image: {
  21033. source: "./media/characters/mort/back.svg",
  21034. extra: 371 / 332,
  21035. bottom: 0.18
  21036. }
  21037. },
  21038. },
  21039. [
  21040. {
  21041. name: "Normal",
  21042. height: math.unit(14, "feet"),
  21043. default: true
  21044. },
  21045. ]
  21046. ))
  21047. characterMakers.push(() => makeCharacter(
  21048. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21049. {
  21050. front: {
  21051. height: math.unit(8, "feet"),
  21052. weight: math.unit(1, "ton"),
  21053. name: "Front",
  21054. image: {
  21055. source: "./media/characters/lycoa/front.svg",
  21056. extra: 1836/1728,
  21057. bottom: 81/1917
  21058. }
  21059. },
  21060. back: {
  21061. height: math.unit(8, "feet"),
  21062. weight: math.unit(1, "ton"),
  21063. name: "Back",
  21064. image: {
  21065. source: "./media/characters/lycoa/back.svg",
  21066. extra: 1785/1720,
  21067. bottom: 91/1876
  21068. }
  21069. },
  21070. head: {
  21071. height: math.unit(1.6243, "feet"),
  21072. name: "Head",
  21073. image: {
  21074. source: "./media/characters/lycoa/head.svg",
  21075. extra: 1011/782,
  21076. bottom: 0/1011
  21077. }
  21078. },
  21079. tailmaw: {
  21080. height: math.unit(1.9, "feet"),
  21081. name: "Tailmaw",
  21082. image: {
  21083. source: "./media/characters/lycoa/tailmaw.svg"
  21084. }
  21085. },
  21086. tentacles: {
  21087. height: math.unit(2.1, "feet"),
  21088. name: "Tentacles",
  21089. image: {
  21090. source: "./media/characters/lycoa/tentacles.svg"
  21091. }
  21092. },
  21093. dick: {
  21094. height: math.unit(1.73, "feet"),
  21095. name: "Dick",
  21096. image: {
  21097. source: "./media/characters/lycoa/dick.svg"
  21098. }
  21099. },
  21100. },
  21101. [
  21102. {
  21103. name: "Normal",
  21104. height: math.unit(8, "feet"),
  21105. default: true
  21106. },
  21107. {
  21108. name: "Macro",
  21109. height: math.unit(30, "feet")
  21110. },
  21111. ]
  21112. ))
  21113. characterMakers.push(() => makeCharacter(
  21114. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21115. {
  21116. front: {
  21117. height: math.unit(4 + 2 / 12, "feet"),
  21118. weight: math.unit(70, "lb"),
  21119. name: "Front",
  21120. image: {
  21121. source: "./media/characters/naldara/front.svg",
  21122. extra: 1664/1387,
  21123. bottom: 81/1745
  21124. },
  21125. form: "anthro",
  21126. default: true
  21127. },
  21128. naga: {
  21129. height: math.unit(20, "feet"),
  21130. weight: math.unit(15000, "kg"),
  21131. name: "Front",
  21132. image: {
  21133. source: "./media/characters/naldara/naga.svg",
  21134. extra: 1590/1396,
  21135. bottom: 285/1875
  21136. },
  21137. form: "naga",
  21138. default: true
  21139. },
  21140. },
  21141. [
  21142. {
  21143. name: "Normal",
  21144. height: math.unit(4 + 2 / 12, "feet"),
  21145. form: "anthro",
  21146. default: true
  21147. },
  21148. {
  21149. name: "Normal",
  21150. height: math.unit(20, "feet"),
  21151. form: "naga",
  21152. default: true
  21153. },
  21154. ],
  21155. {
  21156. "anthro": {
  21157. name: "Anthro",
  21158. default: true
  21159. },
  21160. "naga": {
  21161. name: "Naga"
  21162. }
  21163. }
  21164. ))
  21165. characterMakers.push(() => makeCharacter(
  21166. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21167. {
  21168. front: {
  21169. height: math.unit(13 + 7 / 12, "feet"),
  21170. weight: math.unit(1500, "lb"),
  21171. name: "Front",
  21172. image: {
  21173. source: "./media/characters/briar/front.svg",
  21174. extra: 1223/1157,
  21175. bottom: 123/1346
  21176. }
  21177. },
  21178. },
  21179. [
  21180. {
  21181. name: "Normal",
  21182. height: math.unit(13 + 7 / 12, "feet"),
  21183. default: true
  21184. },
  21185. ]
  21186. ))
  21187. characterMakers.push(() => makeCharacter(
  21188. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21189. {
  21190. side: {
  21191. height: math.unit(16, "feet"),
  21192. weight: math.unit(500, "lb"),
  21193. name: "Side",
  21194. image: {
  21195. source: "./media/characters/vanguard/side.svg",
  21196. extra: 1022/914,
  21197. bottom: 30/1052
  21198. }
  21199. },
  21200. sideAlt: {
  21201. height: math.unit(10, "feet"),
  21202. weight: math.unit(500, "lb"),
  21203. name: "Side (Alt)",
  21204. image: {
  21205. source: "./media/characters/vanguard/side-alt.svg",
  21206. extra: 502 / 425,
  21207. bottom: 0.087
  21208. }
  21209. },
  21210. },
  21211. [
  21212. {
  21213. name: "Normal",
  21214. height: math.unit(17.71, "feet"),
  21215. default: true
  21216. },
  21217. ]
  21218. ))
  21219. characterMakers.push(() => makeCharacter(
  21220. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21221. {
  21222. front: {
  21223. height: math.unit(7.5, "feet"),
  21224. weight: math.unit(2, "lb"),
  21225. name: "Front",
  21226. image: {
  21227. source: "./media/characters/artemis/work-safe-front.svg",
  21228. extra: 1192 / 1075,
  21229. bottom: 0.07
  21230. },
  21231. form: "work-safe",
  21232. default: true
  21233. },
  21234. frontNsfw: {
  21235. height: math.unit(7.5, "feet"),
  21236. weight: math.unit(2, "lb"),
  21237. name: "Front",
  21238. image: {
  21239. source: "./media/characters/artemis/calibrating-front.svg",
  21240. extra: 1192 / 1075,
  21241. bottom: 0.07
  21242. },
  21243. form: "calibrating",
  21244. default: true
  21245. },
  21246. frontNsfwer: {
  21247. height: math.unit(7.5, "feet"),
  21248. weight: math.unit(2, "lb"),
  21249. name: "Front",
  21250. image: {
  21251. source: "./media/characters/artemis/oversize-load-front.svg",
  21252. extra: 1192 / 1075,
  21253. bottom: 0.07
  21254. },
  21255. form: "oversize-load",
  21256. default: true
  21257. },
  21258. side: {
  21259. height: math.unit(7.5, "feet"),
  21260. weight: math.unit(2, "lb"),
  21261. name: "Side",
  21262. image: {
  21263. source: "./media/characters/artemis/work-safe-side.svg",
  21264. extra: 1192 / 1075,
  21265. bottom: 0.07
  21266. },
  21267. form: "work-safe"
  21268. },
  21269. sideNsfw: {
  21270. height: math.unit(7.5, "feet"),
  21271. weight: math.unit(2, "lb"),
  21272. name: "Side",
  21273. image: {
  21274. source: "./media/characters/artemis/calibrating-side.svg",
  21275. extra: 1192 / 1075,
  21276. bottom: 0.07
  21277. },
  21278. form: "calibrating"
  21279. },
  21280. sideNsfwer: {
  21281. height: math.unit(7.5, "feet"),
  21282. weight: math.unit(2, "lb"),
  21283. name: "Side",
  21284. image: {
  21285. source: "./media/characters/artemis/oversize-load-side.svg",
  21286. extra: 1192 / 1075,
  21287. bottom: 0.07
  21288. },
  21289. form: "oversize-load"
  21290. },
  21291. maw: {
  21292. height: math.unit(1.1, "feet"),
  21293. name: "Maw",
  21294. image: {
  21295. source: "./media/characters/artemis/maw.svg"
  21296. },
  21297. form: "work-safe"
  21298. },
  21299. stomach: {
  21300. height: math.unit(0.95, "feet"),
  21301. name: "Stomach",
  21302. image: {
  21303. source: "./media/characters/artemis/stomach.svg"
  21304. },
  21305. form: "work-safe"
  21306. },
  21307. dickCanine: {
  21308. height: math.unit(1, "feet"),
  21309. name: "Dick (Canine)",
  21310. image: {
  21311. source: "./media/characters/artemis/dick-canine.svg"
  21312. },
  21313. form: "calibrating"
  21314. },
  21315. dickEquine: {
  21316. height: math.unit(0.85, "feet"),
  21317. name: "Dick (Equine)",
  21318. image: {
  21319. source: "./media/characters/artemis/dick-equine.svg"
  21320. },
  21321. form: "calibrating"
  21322. },
  21323. dickExotic: {
  21324. height: math.unit(0.85, "feet"),
  21325. name: "Dick (Exotic)",
  21326. image: {
  21327. source: "./media/characters/artemis/dick-exotic.svg"
  21328. },
  21329. form: "calibrating"
  21330. },
  21331. dickCanineBigger: {
  21332. height: math.unit(1 * 1.33, "feet"),
  21333. name: "Dick (Canine)",
  21334. image: {
  21335. source: "./media/characters/artemis/dick-canine.svg"
  21336. },
  21337. form: "oversize-load"
  21338. },
  21339. dickEquineBigger: {
  21340. height: math.unit(0.85 * 1.33, "feet"),
  21341. name: "Dick (Equine)",
  21342. image: {
  21343. source: "./media/characters/artemis/dick-equine.svg"
  21344. },
  21345. form: "oversize-load"
  21346. },
  21347. dickExoticBigger: {
  21348. height: math.unit(0.85 * 1.33, "feet"),
  21349. name: "Dick (Exotic)",
  21350. image: {
  21351. source: "./media/characters/artemis/dick-exotic.svg"
  21352. },
  21353. form: "oversize-load"
  21354. },
  21355. },
  21356. [
  21357. {
  21358. name: "Normal",
  21359. height: math.unit(7.5, "feet"),
  21360. form: "work-safe",
  21361. default: true
  21362. },
  21363. {
  21364. name: "Normal",
  21365. height: math.unit(7.5, "feet"),
  21366. form: "calibrating",
  21367. default: true
  21368. },
  21369. {
  21370. name: "Normal",
  21371. height: math.unit(7.5, "feet"),
  21372. form: "oversize-load",
  21373. default: true
  21374. },
  21375. {
  21376. name: "Enlarged",
  21377. height: math.unit(12, "feet"),
  21378. form: "work-safe",
  21379. },
  21380. {
  21381. name: "Enlarged",
  21382. height: math.unit(12, "feet"),
  21383. form: "calibrating",
  21384. },
  21385. {
  21386. name: "Enlarged",
  21387. height: math.unit(12, "feet"),
  21388. form: "oversize-load",
  21389. },
  21390. ],
  21391. {
  21392. "work-safe": {
  21393. name: "Work-Safe",
  21394. default: true
  21395. },
  21396. "calibrating": {
  21397. name: "Calibrating"
  21398. },
  21399. "oversize-load": {
  21400. name: "Oversize Load"
  21401. }
  21402. }
  21403. ))
  21404. characterMakers.push(() => makeCharacter(
  21405. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21406. {
  21407. front: {
  21408. height: math.unit(5 + 3 / 12, "feet"),
  21409. weight: math.unit(160, "lb"),
  21410. name: "Front",
  21411. image: {
  21412. source: "./media/characters/kira/front.svg",
  21413. extra: 906 / 786,
  21414. bottom: 0.01
  21415. }
  21416. },
  21417. back: {
  21418. height: math.unit(5 + 3 / 12, "feet"),
  21419. weight: math.unit(160, "lb"),
  21420. name: "Back",
  21421. image: {
  21422. source: "./media/characters/kira/back.svg",
  21423. extra: 882 / 757,
  21424. bottom: 0.005
  21425. }
  21426. },
  21427. frontDressed: {
  21428. height: math.unit(5 + 3 / 12, "feet"),
  21429. weight: math.unit(160, "lb"),
  21430. name: "Front (Dressed)",
  21431. image: {
  21432. source: "./media/characters/kira/front-dressed.svg",
  21433. extra: 906 / 786,
  21434. bottom: 0.01
  21435. }
  21436. },
  21437. beans: {
  21438. height: math.unit(0.92, "feet"),
  21439. name: "Beans",
  21440. image: {
  21441. source: "./media/characters/kira/beans.svg"
  21442. }
  21443. },
  21444. },
  21445. [
  21446. {
  21447. name: "Normal",
  21448. height: math.unit(5 + 3 / 12, "feet"),
  21449. default: true
  21450. },
  21451. ]
  21452. ))
  21453. characterMakers.push(() => makeCharacter(
  21454. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21455. {
  21456. front: {
  21457. height: math.unit(5 + 4 / 12, "feet"),
  21458. weight: math.unit(145, "lb"),
  21459. name: "Front",
  21460. image: {
  21461. source: "./media/characters/scramble/front.svg",
  21462. extra: 763 / 727,
  21463. bottom: 0.05
  21464. }
  21465. },
  21466. back: {
  21467. height: math.unit(5 + 4 / 12, "feet"),
  21468. weight: math.unit(145, "lb"),
  21469. name: "Back",
  21470. image: {
  21471. source: "./media/characters/scramble/back.svg",
  21472. extra: 826 / 737,
  21473. bottom: 0.002
  21474. }
  21475. },
  21476. },
  21477. [
  21478. {
  21479. name: "Normal",
  21480. height: math.unit(5 + 4 / 12, "feet"),
  21481. default: true
  21482. },
  21483. ]
  21484. ))
  21485. characterMakers.push(() => makeCharacter(
  21486. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21487. {
  21488. side: {
  21489. height: math.unit(6 + 2 / 12, "feet"),
  21490. weight: math.unit(190, "lb"),
  21491. name: "Side",
  21492. image: {
  21493. source: "./media/characters/biscuit/side.svg",
  21494. extra: 858 / 791,
  21495. bottom: 0.044
  21496. }
  21497. },
  21498. },
  21499. [
  21500. {
  21501. name: "Normal",
  21502. height: math.unit(6 + 2 / 12, "feet"),
  21503. default: true
  21504. },
  21505. ]
  21506. ))
  21507. characterMakers.push(() => makeCharacter(
  21508. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21509. {
  21510. front: {
  21511. height: math.unit(5 + 2 / 12, "feet"),
  21512. weight: math.unit(120, "lb"),
  21513. name: "Front",
  21514. image: {
  21515. source: "./media/characters/poffin/front.svg",
  21516. extra: 786 / 680,
  21517. bottom: 0.005
  21518. }
  21519. },
  21520. },
  21521. [
  21522. {
  21523. name: "Normal",
  21524. height: math.unit(5 + 2 / 12, "feet"),
  21525. default: true
  21526. },
  21527. ]
  21528. ))
  21529. characterMakers.push(() => makeCharacter(
  21530. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21531. {
  21532. front: {
  21533. height: math.unit(6 + 3 / 12, "feet"),
  21534. weight: math.unit(519, "lb"),
  21535. name: "Front",
  21536. image: {
  21537. source: "./media/characters/dhari/front.svg",
  21538. extra: 1048 / 946,
  21539. bottom: 0.015
  21540. }
  21541. },
  21542. back: {
  21543. height: math.unit(6 + 3 / 12, "feet"),
  21544. weight: math.unit(519, "lb"),
  21545. name: "Back",
  21546. image: {
  21547. source: "./media/characters/dhari/back.svg",
  21548. extra: 1048 / 931,
  21549. bottom: 0.005
  21550. }
  21551. },
  21552. frontDressed: {
  21553. height: math.unit(6 + 3 / 12, "feet"),
  21554. weight: math.unit(519, "lb"),
  21555. name: "Front (Dressed)",
  21556. image: {
  21557. source: "./media/characters/dhari/front-dressed.svg",
  21558. extra: 1713 / 1546,
  21559. bottom: 0.02
  21560. }
  21561. },
  21562. backDressed: {
  21563. height: math.unit(6 + 3 / 12, "feet"),
  21564. weight: math.unit(519, "lb"),
  21565. name: "Back (Dressed)",
  21566. image: {
  21567. source: "./media/characters/dhari/back-dressed.svg",
  21568. extra: 1699 / 1537,
  21569. bottom: 0.01
  21570. }
  21571. },
  21572. maw: {
  21573. height: math.unit(0.95, "feet"),
  21574. name: "Maw",
  21575. image: {
  21576. source: "./media/characters/dhari/maw.svg"
  21577. }
  21578. },
  21579. wereFront: {
  21580. height: math.unit(12 + 8 / 12, "feet"),
  21581. weight: math.unit(4000, "lb"),
  21582. name: "Front (Were)",
  21583. image: {
  21584. source: "./media/characters/dhari/were-front.svg",
  21585. extra: 1065 / 969,
  21586. bottom: 0.015
  21587. }
  21588. },
  21589. wereBack: {
  21590. height: math.unit(12 + 8 / 12, "feet"),
  21591. weight: math.unit(4000, "lb"),
  21592. name: "Back (Were)",
  21593. image: {
  21594. source: "./media/characters/dhari/were-back.svg",
  21595. extra: 1065 / 969,
  21596. bottom: 0.012
  21597. }
  21598. },
  21599. wereMaw: {
  21600. height: math.unit(0.625, "meters"),
  21601. name: "Maw (Were)",
  21602. image: {
  21603. source: "./media/characters/dhari/were-maw.svg"
  21604. }
  21605. },
  21606. },
  21607. [
  21608. {
  21609. name: "Normal",
  21610. height: math.unit(6 + 3 / 12, "feet"),
  21611. default: true
  21612. },
  21613. ]
  21614. ))
  21615. characterMakers.push(() => makeCharacter(
  21616. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21617. {
  21618. anthro: {
  21619. height: math.unit(5 + 7 / 12, "feet"),
  21620. weight: math.unit(175, "lb"),
  21621. name: "Anthro",
  21622. image: {
  21623. source: "./media/characters/rena-dyne/anthro.svg",
  21624. extra: 1849 / 1785,
  21625. bottom: 0.005
  21626. }
  21627. },
  21628. taur: {
  21629. height: math.unit(15 + 6 / 12, "feet"),
  21630. weight: math.unit(8000, "lb"),
  21631. name: "Taur",
  21632. image: {
  21633. source: "./media/characters/rena-dyne/taur.svg",
  21634. extra: 2315 / 2234,
  21635. bottom: 0.033
  21636. }
  21637. },
  21638. },
  21639. [
  21640. {
  21641. name: "Normal",
  21642. height: math.unit(5 + 7 / 12, "feet"),
  21643. default: true
  21644. },
  21645. ]
  21646. ))
  21647. characterMakers.push(() => makeCharacter(
  21648. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21649. {
  21650. front: {
  21651. height: math.unit(8, "feet"),
  21652. weight: math.unit(600, "lb"),
  21653. name: "Front",
  21654. image: {
  21655. source: "./media/characters/weremeep/front.svg",
  21656. extra: 967 / 862,
  21657. bottom: 0.01
  21658. }
  21659. },
  21660. },
  21661. [
  21662. {
  21663. name: "Normal",
  21664. height: math.unit(8, "feet"),
  21665. default: true
  21666. },
  21667. {
  21668. name: "Lorg",
  21669. height: math.unit(12, "feet")
  21670. },
  21671. {
  21672. name: "Oh Lawd She Comin'",
  21673. height: math.unit(20, "feet")
  21674. },
  21675. ]
  21676. ))
  21677. characterMakers.push(() => makeCharacter(
  21678. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21679. {
  21680. front: {
  21681. height: math.unit(4, "feet"),
  21682. weight: math.unit(90, "lb"),
  21683. name: "Front",
  21684. image: {
  21685. source: "./media/characters/reza/front.svg",
  21686. extra: 1183 / 1111,
  21687. bottom: 0.017
  21688. }
  21689. },
  21690. back: {
  21691. height: math.unit(4, "feet"),
  21692. weight: math.unit(90, "lb"),
  21693. name: "Back",
  21694. image: {
  21695. source: "./media/characters/reza/back.svg",
  21696. extra: 1183 / 1111,
  21697. bottom: 0.01
  21698. }
  21699. },
  21700. drake: {
  21701. height: math.unit(30, "feet"),
  21702. weight: math.unit(246960, "lb"),
  21703. name: "Drake",
  21704. image: {
  21705. source: "./media/characters/reza/drake.svg",
  21706. extra: 2350 / 2024,
  21707. bottom: 60.7 / 2403
  21708. }
  21709. },
  21710. },
  21711. [
  21712. {
  21713. name: "Normal",
  21714. height: math.unit(4, "feet"),
  21715. default: true
  21716. },
  21717. ]
  21718. ))
  21719. characterMakers.push(() => makeCharacter(
  21720. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21721. {
  21722. side: {
  21723. height: math.unit(15, "feet"),
  21724. weight: math.unit(14, "tons"),
  21725. name: "Side",
  21726. image: {
  21727. source: "./media/characters/athea/side.svg",
  21728. extra: 960 / 540,
  21729. bottom: 0.003
  21730. }
  21731. },
  21732. sitting: {
  21733. height: math.unit(6 * 2.85, "feet"),
  21734. weight: math.unit(14, "tons"),
  21735. name: "Sitting",
  21736. image: {
  21737. source: "./media/characters/athea/sitting.svg",
  21738. extra: 621 / 581,
  21739. bottom: 0.075
  21740. }
  21741. },
  21742. maw: {
  21743. height: math.unit(7.59498031496063, "feet"),
  21744. name: "Maw",
  21745. image: {
  21746. source: "./media/characters/athea/maw.svg"
  21747. }
  21748. },
  21749. },
  21750. [
  21751. {
  21752. name: "Lap Cat",
  21753. height: math.unit(2.5, "feet")
  21754. },
  21755. {
  21756. name: "Minimacro",
  21757. height: math.unit(15, "feet"),
  21758. default: true
  21759. },
  21760. {
  21761. name: "Macro",
  21762. height: math.unit(120, "feet")
  21763. },
  21764. {
  21765. name: "Macro+",
  21766. height: math.unit(640, "feet")
  21767. },
  21768. {
  21769. name: "Colossus",
  21770. height: math.unit(2.2, "miles")
  21771. },
  21772. ]
  21773. ))
  21774. characterMakers.push(() => makeCharacter(
  21775. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21776. {
  21777. front: {
  21778. height: math.unit(8 + 8 / 12, "feet"),
  21779. weight: math.unit(130, "kg"),
  21780. name: "Front",
  21781. image: {
  21782. source: "./media/characters/seroko/front.svg",
  21783. extra: 1385 / 1280,
  21784. bottom: 0.025
  21785. }
  21786. },
  21787. back: {
  21788. height: math.unit(8 + 8 / 12, "feet"),
  21789. weight: math.unit(130, "kg"),
  21790. name: "Back",
  21791. image: {
  21792. source: "./media/characters/seroko/back.svg",
  21793. extra: 1369 / 1238,
  21794. bottom: 0.018
  21795. }
  21796. },
  21797. frontDressed: {
  21798. height: math.unit(8 + 8 / 12, "feet"),
  21799. weight: math.unit(130, "kg"),
  21800. name: "Front (Dressed)",
  21801. image: {
  21802. source: "./media/characters/seroko/front-dressed.svg",
  21803. extra: 1366 / 1275,
  21804. bottom: 0.03
  21805. }
  21806. },
  21807. },
  21808. [
  21809. {
  21810. name: "Normal",
  21811. height: math.unit(8 + 8 / 12, "feet"),
  21812. default: true
  21813. },
  21814. ]
  21815. ))
  21816. characterMakers.push(() => makeCharacter(
  21817. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21818. {
  21819. front: {
  21820. height: math.unit(5.5, "feet"),
  21821. weight: math.unit(160, "lb"),
  21822. name: "Front",
  21823. image: {
  21824. source: "./media/characters/quatzi/front.svg",
  21825. extra: 2346 / 2242,
  21826. bottom: 0.015
  21827. }
  21828. },
  21829. },
  21830. [
  21831. {
  21832. name: "Normal",
  21833. height: math.unit(5.5, "feet"),
  21834. default: true
  21835. },
  21836. {
  21837. name: "Big",
  21838. height: math.unit(7.7, "feet")
  21839. },
  21840. ]
  21841. ))
  21842. characterMakers.push(() => makeCharacter(
  21843. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21844. {
  21845. front: {
  21846. height: math.unit(5 + 11 / 12, "feet"),
  21847. weight: math.unit(180, "lb"),
  21848. name: "Front",
  21849. image: {
  21850. source: "./media/characters/sen/front.svg",
  21851. extra: 1321 / 1254,
  21852. bottom: 0.015
  21853. }
  21854. },
  21855. side: {
  21856. height: math.unit(5 + 11 / 12, "feet"),
  21857. weight: math.unit(180, "lb"),
  21858. name: "Side",
  21859. image: {
  21860. source: "./media/characters/sen/side.svg",
  21861. extra: 1321 / 1254,
  21862. bottom: 0.007
  21863. }
  21864. },
  21865. back: {
  21866. height: math.unit(5 + 11 / 12, "feet"),
  21867. weight: math.unit(180, "lb"),
  21868. name: "Back",
  21869. image: {
  21870. source: "./media/characters/sen/back.svg",
  21871. extra: 1321 / 1254
  21872. }
  21873. },
  21874. },
  21875. [
  21876. {
  21877. name: "Normal",
  21878. height: math.unit(5 + 11 / 12, "feet"),
  21879. default: true
  21880. },
  21881. ]
  21882. ))
  21883. characterMakers.push(() => makeCharacter(
  21884. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21885. {
  21886. front: {
  21887. height: math.unit(166.6, "cm"),
  21888. weight: math.unit(66.6, "kg"),
  21889. name: "Front",
  21890. image: {
  21891. source: "./media/characters/fruity/front.svg",
  21892. extra: 1510 / 1386,
  21893. bottom: 0.04
  21894. }
  21895. },
  21896. back: {
  21897. height: math.unit(166.6, "cm"),
  21898. weight: math.unit(66.6, "lb"),
  21899. name: "Back",
  21900. image: {
  21901. source: "./media/characters/fruity/back.svg",
  21902. extra: 1563 / 1435,
  21903. bottom: 0.005
  21904. }
  21905. },
  21906. },
  21907. [
  21908. {
  21909. name: "Normal",
  21910. height: math.unit(166.6, "cm"),
  21911. default: true
  21912. },
  21913. {
  21914. name: "Demonic",
  21915. height: math.unit(166.6, "feet")
  21916. },
  21917. ]
  21918. ))
  21919. characterMakers.push(() => makeCharacter(
  21920. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21921. {
  21922. side: {
  21923. height: math.unit(10, "feet"),
  21924. weight: math.unit(500, "lb"),
  21925. name: "Side",
  21926. image: {
  21927. source: "./media/characters/zost/side.svg",
  21928. extra: 2870/2533,
  21929. bottom: 252/3122
  21930. }
  21931. },
  21932. mawFront: {
  21933. height: math.unit(1.08, "meters"),
  21934. name: "Maw (Front)",
  21935. image: {
  21936. source: "./media/characters/zost/maw-front.svg"
  21937. }
  21938. },
  21939. mawSide: {
  21940. height: math.unit(2.66, "feet"),
  21941. name: "Maw (Side)",
  21942. image: {
  21943. source: "./media/characters/zost/maw-side.svg"
  21944. }
  21945. },
  21946. wingspan: {
  21947. height: math.unit(7.4, "feet"),
  21948. name: "Wingspan",
  21949. image: {
  21950. source: "./media/characters/zost/wingspan.svg"
  21951. }
  21952. },
  21953. },
  21954. [
  21955. {
  21956. name: "Normal",
  21957. height: math.unit(10, "feet"),
  21958. default: true
  21959. },
  21960. ]
  21961. ))
  21962. characterMakers.push(() => makeCharacter(
  21963. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21964. {
  21965. front: {
  21966. height: math.unit(5 + 4 / 12, "feet"),
  21967. weight: math.unit(120, "lb"),
  21968. name: "Front",
  21969. image: {
  21970. source: "./media/characters/luci/front.svg",
  21971. extra: 1985 / 1884,
  21972. bottom: 0.04
  21973. }
  21974. },
  21975. back: {
  21976. height: math.unit(5 + 4 / 12, "feet"),
  21977. weight: math.unit(120, "lb"),
  21978. name: "Back",
  21979. image: {
  21980. source: "./media/characters/luci/back.svg",
  21981. extra: 1892 / 1791,
  21982. bottom: 0.002
  21983. }
  21984. },
  21985. },
  21986. [
  21987. {
  21988. name: "Normal",
  21989. height: math.unit(5 + 4 / 12, "feet"),
  21990. default: true
  21991. },
  21992. ]
  21993. ))
  21994. characterMakers.push(() => makeCharacter(
  21995. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21996. {
  21997. front: {
  21998. height: math.unit(1500, "feet"),
  21999. weight: math.unit(3.8e6, "tons"),
  22000. name: "Front",
  22001. image: {
  22002. source: "./media/characters/2th/front.svg",
  22003. extra: 3489 / 3350,
  22004. bottom: 0.1
  22005. }
  22006. },
  22007. foot: {
  22008. height: math.unit(461, "feet"),
  22009. name: "Foot",
  22010. image: {
  22011. source: "./media/characters/2th/foot.svg"
  22012. }
  22013. },
  22014. },
  22015. [
  22016. {
  22017. name: "\"Micro\"",
  22018. height: math.unit(15 + 7 / 12, "feet")
  22019. },
  22020. {
  22021. name: "Normal",
  22022. height: math.unit(1500, "feet"),
  22023. default: true
  22024. },
  22025. {
  22026. name: "Macro",
  22027. height: math.unit(5000, "feet")
  22028. },
  22029. {
  22030. name: "Megamacro",
  22031. height: math.unit(15, "miles")
  22032. },
  22033. {
  22034. name: "Gigamacro",
  22035. height: math.unit(4000, "miles")
  22036. },
  22037. {
  22038. name: "Galactic",
  22039. height: math.unit(50, "AU")
  22040. },
  22041. ]
  22042. ))
  22043. characterMakers.push(() => makeCharacter(
  22044. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22045. {
  22046. front: {
  22047. height: math.unit(5 + 6 / 12, "feet"),
  22048. weight: math.unit(220, "lb"),
  22049. name: "Front",
  22050. image: {
  22051. source: "./media/characters/amethyst/front.svg",
  22052. extra: 2078 / 2040,
  22053. bottom: 0.045
  22054. }
  22055. },
  22056. back: {
  22057. height: math.unit(5 + 6 / 12, "feet"),
  22058. weight: math.unit(220, "lb"),
  22059. name: "Back",
  22060. image: {
  22061. source: "./media/characters/amethyst/back.svg",
  22062. extra: 2021 / 1989,
  22063. bottom: 0.02
  22064. }
  22065. },
  22066. },
  22067. [
  22068. {
  22069. name: "Normal",
  22070. height: math.unit(5 + 6 / 12, "feet"),
  22071. default: true
  22072. },
  22073. ]
  22074. ))
  22075. characterMakers.push(() => makeCharacter(
  22076. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22077. {
  22078. front: {
  22079. height: math.unit(4 + 11 / 12, "feet"),
  22080. weight: math.unit(120, "lb"),
  22081. name: "Front",
  22082. image: {
  22083. source: "./media/characters/yumi-akiyama/front.svg",
  22084. extra: 1327 / 1235,
  22085. bottom: 0.02
  22086. }
  22087. },
  22088. back: {
  22089. height: math.unit(4 + 11 / 12, "feet"),
  22090. weight: math.unit(120, "lb"),
  22091. name: "Back",
  22092. image: {
  22093. source: "./media/characters/yumi-akiyama/back.svg",
  22094. extra: 1287 / 1245,
  22095. bottom: 0.002
  22096. }
  22097. },
  22098. },
  22099. [
  22100. {
  22101. name: "Galactic",
  22102. height: math.unit(50, "galaxies"),
  22103. default: true
  22104. },
  22105. {
  22106. name: "Universal",
  22107. height: math.unit(100, "universes")
  22108. },
  22109. ]
  22110. ))
  22111. characterMakers.push(() => makeCharacter(
  22112. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22113. {
  22114. front: {
  22115. height: math.unit(8, "feet"),
  22116. weight: math.unit(500, "lb"),
  22117. name: "Front",
  22118. image: {
  22119. source: "./media/characters/rifter-yrmori/front.svg",
  22120. extra: 1180 / 1125,
  22121. bottom: 0.02
  22122. }
  22123. },
  22124. back: {
  22125. height: math.unit(8, "feet"),
  22126. weight: math.unit(500, "lb"),
  22127. name: "Back",
  22128. image: {
  22129. source: "./media/characters/rifter-yrmori/back.svg",
  22130. extra: 1190 / 1145,
  22131. bottom: 0.001
  22132. }
  22133. },
  22134. wings: {
  22135. height: math.unit(7.75, "feet"),
  22136. weight: math.unit(500, "lb"),
  22137. name: "Wings",
  22138. image: {
  22139. source: "./media/characters/rifter-yrmori/wings.svg",
  22140. extra: 1357 / 1285
  22141. }
  22142. },
  22143. maw: {
  22144. height: math.unit(0.8, "feet"),
  22145. name: "Maw",
  22146. image: {
  22147. source: "./media/characters/rifter-yrmori/maw.svg"
  22148. }
  22149. },
  22150. mawfront: {
  22151. height: math.unit(1.45, "feet"),
  22152. name: "Maw (Front)",
  22153. image: {
  22154. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22155. }
  22156. },
  22157. },
  22158. [
  22159. {
  22160. name: "Normal",
  22161. height: math.unit(8, "feet"),
  22162. default: true
  22163. },
  22164. {
  22165. name: "Macro",
  22166. height: math.unit(42, "meters")
  22167. },
  22168. ]
  22169. ))
  22170. characterMakers.push(() => makeCharacter(
  22171. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22172. {
  22173. were: {
  22174. height: math.unit(25 + 6 / 12, "feet"),
  22175. weight: math.unit(10000, "lb"),
  22176. name: "Were",
  22177. image: {
  22178. source: "./media/characters/tahajin/were.svg",
  22179. extra: 801 / 770,
  22180. bottom: 0.042
  22181. }
  22182. },
  22183. aquatic: {
  22184. height: math.unit(6 + 4 / 12, "feet"),
  22185. weight: math.unit(160, "lb"),
  22186. name: "Aquatic",
  22187. image: {
  22188. source: "./media/characters/tahajin/aquatic.svg",
  22189. extra: 572 / 542,
  22190. bottom: 0.04
  22191. }
  22192. },
  22193. chow: {
  22194. height: math.unit(8 + 11 / 12, "feet"),
  22195. weight: math.unit(450, "lb"),
  22196. name: "Chow",
  22197. image: {
  22198. source: "./media/characters/tahajin/chow.svg",
  22199. extra: 660 / 640,
  22200. bottom: 0.015
  22201. }
  22202. },
  22203. demiNaga: {
  22204. height: math.unit(6 + 8 / 12, "feet"),
  22205. weight: math.unit(300, "lb"),
  22206. name: "Demi Naga",
  22207. image: {
  22208. source: "./media/characters/tahajin/demi-naga.svg",
  22209. extra: 643 / 615,
  22210. bottom: 0.1
  22211. }
  22212. },
  22213. data: {
  22214. height: math.unit(5, "inches"),
  22215. weight: math.unit(0.1, "lb"),
  22216. name: "Data",
  22217. image: {
  22218. source: "./media/characters/tahajin/data.svg"
  22219. }
  22220. },
  22221. fluu: {
  22222. height: math.unit(5 + 7 / 12, "feet"),
  22223. weight: math.unit(140, "lb"),
  22224. name: "Fluu",
  22225. image: {
  22226. source: "./media/characters/tahajin/fluu.svg",
  22227. extra: 628 / 592,
  22228. bottom: 0.02
  22229. }
  22230. },
  22231. starWarrior: {
  22232. height: math.unit(4 + 5 / 12, "feet"),
  22233. weight: math.unit(50, "lb"),
  22234. name: "Star Warrior",
  22235. image: {
  22236. source: "./media/characters/tahajin/star-warrior.svg"
  22237. }
  22238. },
  22239. },
  22240. [
  22241. {
  22242. name: "Normal",
  22243. height: math.unit(25 + 6 / 12, "feet"),
  22244. default: true
  22245. },
  22246. ]
  22247. ))
  22248. characterMakers.push(() => makeCharacter(
  22249. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22250. {
  22251. front: {
  22252. height: math.unit(8, "feet"),
  22253. weight: math.unit(350, "lb"),
  22254. name: "Front",
  22255. image: {
  22256. source: "./media/characters/gabira/front.svg",
  22257. extra: 608 / 580,
  22258. bottom: 0.03
  22259. }
  22260. },
  22261. back: {
  22262. height: math.unit(8, "feet"),
  22263. weight: math.unit(350, "lb"),
  22264. name: "Back",
  22265. image: {
  22266. source: "./media/characters/gabira/back.svg",
  22267. extra: 608 / 580,
  22268. bottom: 0.03
  22269. }
  22270. },
  22271. },
  22272. [
  22273. {
  22274. name: "Normal",
  22275. height: math.unit(8, "feet"),
  22276. default: true
  22277. },
  22278. ]
  22279. ))
  22280. characterMakers.push(() => makeCharacter(
  22281. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22282. {
  22283. front: {
  22284. height: math.unit(5 + 3 / 12, "feet"),
  22285. weight: math.unit(137, "lb"),
  22286. name: "Front",
  22287. image: {
  22288. source: "./media/characters/sasha-katraine/front.svg",
  22289. extra: 1745/1694,
  22290. bottom: 37/1782
  22291. }
  22292. },
  22293. back: {
  22294. height: math.unit(5 + 3 / 12, "feet"),
  22295. weight: math.unit(137, "lb"),
  22296. name: "Back",
  22297. image: {
  22298. source: "./media/characters/sasha-katraine/back.svg",
  22299. extra: 1776/1699,
  22300. bottom: 26/1802
  22301. }
  22302. },
  22303. },
  22304. [
  22305. {
  22306. name: "Micro",
  22307. height: math.unit(5, "inches")
  22308. },
  22309. {
  22310. name: "Normal",
  22311. height: math.unit(5 + 3 / 12, "feet"),
  22312. default: true
  22313. },
  22314. ]
  22315. ))
  22316. characterMakers.push(() => makeCharacter(
  22317. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22318. {
  22319. side: {
  22320. height: math.unit(4, "inches"),
  22321. weight: math.unit(200, "grams"),
  22322. name: "Side",
  22323. image: {
  22324. source: "./media/characters/der/side.svg",
  22325. extra: 719 / 400,
  22326. bottom: 30.6 / 749.9187
  22327. }
  22328. },
  22329. },
  22330. [
  22331. {
  22332. name: "Micro",
  22333. height: math.unit(4, "inches"),
  22334. default: true
  22335. },
  22336. ]
  22337. ))
  22338. characterMakers.push(() => makeCharacter(
  22339. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22340. {
  22341. side: {
  22342. height: math.unit(30, "meters"),
  22343. weight: math.unit(700, "tonnes"),
  22344. name: "Side",
  22345. image: {
  22346. source: "./media/characters/fixerdragon/side.svg",
  22347. extra: (1293.0514 - 116.03) / 1106.86,
  22348. bottom: 116.03 / 1293.0514
  22349. }
  22350. },
  22351. },
  22352. [
  22353. {
  22354. name: "Planck",
  22355. height: math.unit(1.6e-35, "meters")
  22356. },
  22357. {
  22358. name: "Micro",
  22359. height: math.unit(0.4, "meters")
  22360. },
  22361. {
  22362. name: "Normal",
  22363. height: math.unit(30, "meters"),
  22364. default: true
  22365. },
  22366. {
  22367. name: "Megamacro",
  22368. height: math.unit(1.2, "megameters")
  22369. },
  22370. {
  22371. name: "Teramacro",
  22372. height: math.unit(130, "terameters")
  22373. },
  22374. {
  22375. name: "Yottamacro",
  22376. height: math.unit(6200, "yottameters")
  22377. },
  22378. ]
  22379. ));
  22380. characterMakers.push(() => makeCharacter(
  22381. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22382. {
  22383. front: {
  22384. height: math.unit(8, "feet"),
  22385. weight: math.unit(250, "lb"),
  22386. name: "Front",
  22387. image: {
  22388. source: "./media/characters/kite/front.svg",
  22389. extra: 2796 / 2659,
  22390. bottom: 0.002
  22391. }
  22392. },
  22393. },
  22394. [
  22395. {
  22396. name: "Normal",
  22397. height: math.unit(8, "feet"),
  22398. default: true
  22399. },
  22400. {
  22401. name: "Macro",
  22402. height: math.unit(360, "feet")
  22403. },
  22404. {
  22405. name: "Megamacro",
  22406. height: math.unit(1500, "feet")
  22407. },
  22408. ]
  22409. ))
  22410. characterMakers.push(() => makeCharacter(
  22411. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22412. {
  22413. front: {
  22414. height: math.unit(5 + 11/12, "feet"),
  22415. weight: math.unit(170, "lb"),
  22416. name: "Front",
  22417. image: {
  22418. source: "./media/characters/poojawa-vynar/front.svg",
  22419. extra: 1735/1585,
  22420. bottom: 96/1831
  22421. }
  22422. },
  22423. back: {
  22424. height: math.unit(5 + 11/12, "feet"),
  22425. weight: math.unit(170, "lb"),
  22426. name: "Back",
  22427. image: {
  22428. source: "./media/characters/poojawa-vynar/back.svg",
  22429. extra: 1749/1607,
  22430. bottom: 28/1777
  22431. }
  22432. },
  22433. male: {
  22434. height: math.unit(5 + 11/12, "feet"),
  22435. weight: math.unit(170, "lb"),
  22436. name: "Male",
  22437. image: {
  22438. source: "./media/characters/poojawa-vynar/male.svg",
  22439. extra: 1855/1713,
  22440. bottom: 63/1918
  22441. }
  22442. },
  22443. taur: {
  22444. height: math.unit(5 + 11/12, "feet"),
  22445. weight: math.unit(170, "lb"),
  22446. name: "Taur",
  22447. image: {
  22448. source: "./media/characters/poojawa-vynar/taur.svg",
  22449. extra: 1151/1059,
  22450. bottom: 356/1507
  22451. }
  22452. },
  22453. frontDressed: {
  22454. height: math.unit(5 + 11/12, "feet"),
  22455. weight: math.unit(170, "lb"),
  22456. name: "Front (Dressed)",
  22457. image: {
  22458. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22459. extra: 1735/1585,
  22460. bottom: 96/1831
  22461. }
  22462. },
  22463. backDressed: {
  22464. height: math.unit(5 + 11/12, "feet"),
  22465. weight: math.unit(170, "lb"),
  22466. name: "Back (Dressed)",
  22467. image: {
  22468. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22469. extra: 1749/1607,
  22470. bottom: 28/1777
  22471. }
  22472. },
  22473. maleDressed: {
  22474. height: math.unit(5 + 11/12, "feet"),
  22475. weight: math.unit(170, "lb"),
  22476. name: "Male (Dressed)",
  22477. image: {
  22478. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22479. extra: 1855/1713,
  22480. bottom: 63/1918
  22481. }
  22482. },
  22483. taurDressed: {
  22484. height: math.unit(5 + 11/12, "feet"),
  22485. weight: math.unit(170, "lb"),
  22486. name: "Taur (Dressed)",
  22487. image: {
  22488. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22489. extra: 1151/1059,
  22490. bottom: 356/1507
  22491. }
  22492. },
  22493. maw: {
  22494. height: math.unit(1.46, "feet"),
  22495. name: "Maw",
  22496. image: {
  22497. source: "./media/characters/poojawa-vynar/maw.svg"
  22498. }
  22499. },
  22500. head: {
  22501. height: math.unit(2.34, "feet"),
  22502. name: "Head",
  22503. image: {
  22504. source: "./media/characters/poojawa-vynar/head.svg"
  22505. }
  22506. },
  22507. paw: {
  22508. height: math.unit(1.61, "feet"),
  22509. name: "Paw",
  22510. image: {
  22511. source: "./media/characters/poojawa-vynar/paw.svg"
  22512. }
  22513. },
  22514. pawToering: {
  22515. height: math.unit(1.72, "feet"),
  22516. name: "Paw (Toering)",
  22517. image: {
  22518. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22519. }
  22520. },
  22521. toering: {
  22522. height: math.unit(2.9, "inches"),
  22523. name: "Toering",
  22524. image: {
  22525. source: "./media/characters/poojawa-vynar/toering.svg"
  22526. }
  22527. },
  22528. shaft: {
  22529. height: math.unit(0.625, "feet"),
  22530. name: "Shaft",
  22531. image: {
  22532. source: "./media/characters/poojawa-vynar/shaft.svg"
  22533. }
  22534. },
  22535. spade: {
  22536. height: math.unit(0.42, "feet"),
  22537. name: "Spade",
  22538. image: {
  22539. source: "./media/characters/poojawa-vynar/spade.svg"
  22540. }
  22541. },
  22542. },
  22543. [
  22544. {
  22545. name: "Shortstack",
  22546. height: math.unit(4, "feet")
  22547. },
  22548. {
  22549. name: "Normal",
  22550. height: math.unit(5 + 11 / 12, "feet"),
  22551. default: true
  22552. },
  22553. {
  22554. name: "Tauric",
  22555. height: math.unit(4, "meters")
  22556. },
  22557. ]
  22558. ))
  22559. characterMakers.push(() => makeCharacter(
  22560. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22561. {
  22562. front: {
  22563. height: math.unit(293, "meters"),
  22564. weight: math.unit(70400, "tons"),
  22565. name: "Front",
  22566. image: {
  22567. source: "./media/characters/violette/front.svg",
  22568. extra: 1227 / 1180,
  22569. bottom: 0.005
  22570. }
  22571. },
  22572. back: {
  22573. height: math.unit(293, "meters"),
  22574. weight: math.unit(70400, "tons"),
  22575. name: "Back",
  22576. image: {
  22577. source: "./media/characters/violette/back.svg",
  22578. extra: 1227 / 1180,
  22579. bottom: 0.005
  22580. }
  22581. },
  22582. },
  22583. [
  22584. {
  22585. name: "Macro",
  22586. height: math.unit(293, "meters"),
  22587. default: true
  22588. },
  22589. ]
  22590. ))
  22591. characterMakers.push(() => makeCharacter(
  22592. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22593. {
  22594. front: {
  22595. height: math.unit(1050, "feet"),
  22596. weight: math.unit(200000, "tons"),
  22597. name: "Front",
  22598. image: {
  22599. source: "./media/characters/alessandra/front.svg",
  22600. extra: 960 / 912,
  22601. bottom: 0.06
  22602. }
  22603. },
  22604. },
  22605. [
  22606. {
  22607. name: "Macro",
  22608. height: math.unit(1050, "feet")
  22609. },
  22610. {
  22611. name: "Macro+",
  22612. height: math.unit(900, "meters"),
  22613. default: true
  22614. },
  22615. ]
  22616. ))
  22617. characterMakers.push(() => makeCharacter(
  22618. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22619. {
  22620. front: {
  22621. height: math.unit(5, "feet"),
  22622. weight: math.unit(187, "lb"),
  22623. name: "Front",
  22624. image: {
  22625. source: "./media/characters/person/front.svg",
  22626. extra: 3087 / 2945,
  22627. bottom: 91 / 3181
  22628. }
  22629. },
  22630. },
  22631. [
  22632. {
  22633. name: "Micro",
  22634. height: math.unit(3, "inches")
  22635. },
  22636. {
  22637. name: "Normal",
  22638. height: math.unit(5, "feet"),
  22639. default: true
  22640. },
  22641. {
  22642. name: "Macro",
  22643. height: math.unit(90, "feet")
  22644. },
  22645. {
  22646. name: "Max Size",
  22647. height: math.unit(280, "feet")
  22648. },
  22649. ]
  22650. ))
  22651. characterMakers.push(() => makeCharacter(
  22652. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22653. {
  22654. front: {
  22655. height: math.unit(4.5, "meters"),
  22656. weight: math.unit(3200, "lb"),
  22657. name: "Front",
  22658. image: {
  22659. source: "./media/characters/ty/front.svg",
  22660. extra: 1038 / 960,
  22661. bottom: 31.156 / 1068
  22662. }
  22663. },
  22664. back: {
  22665. height: math.unit(4.5, "meters"),
  22666. weight: math.unit(3200, "lb"),
  22667. name: "Back",
  22668. image: {
  22669. source: "./media/characters/ty/back.svg",
  22670. extra: 1044 / 966,
  22671. bottom: 7.48 / 1049
  22672. }
  22673. },
  22674. },
  22675. [
  22676. {
  22677. name: "Normal",
  22678. height: math.unit(4.5, "meters"),
  22679. default: true
  22680. },
  22681. ]
  22682. ))
  22683. characterMakers.push(() => makeCharacter(
  22684. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22685. {
  22686. front: {
  22687. height: math.unit(5 + 4 / 12, "feet"),
  22688. weight: math.unit(115, "lb"),
  22689. name: "Front",
  22690. image: {
  22691. source: "./media/characters/rocky/front.svg",
  22692. extra: 1012 / 975,
  22693. bottom: 54 / 1066
  22694. }
  22695. },
  22696. },
  22697. [
  22698. {
  22699. name: "Normal",
  22700. height: math.unit(5 + 4 / 12, "feet"),
  22701. default: true
  22702. },
  22703. ]
  22704. ))
  22705. characterMakers.push(() => makeCharacter(
  22706. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22707. {
  22708. upright: {
  22709. height: math.unit(6, "meters"),
  22710. weight: math.unit(4000, "kg"),
  22711. name: "Upright",
  22712. image: {
  22713. source: "./media/characters/ruin/upright.svg",
  22714. extra: 668 / 661,
  22715. bottom: 42 / 799.8396
  22716. }
  22717. },
  22718. },
  22719. [
  22720. {
  22721. name: "Normal",
  22722. height: math.unit(6, "meters"),
  22723. default: true
  22724. },
  22725. ]
  22726. ))
  22727. characterMakers.push(() => makeCharacter(
  22728. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22729. {
  22730. front: {
  22731. height: math.unit(5, "feet"),
  22732. weight: math.unit(106, "lb"),
  22733. name: "Front",
  22734. image: {
  22735. source: "./media/characters/robin/front.svg",
  22736. extra: 862 / 799,
  22737. bottom: 42.4 / 914.8856
  22738. }
  22739. },
  22740. },
  22741. [
  22742. {
  22743. name: "Normal",
  22744. height: math.unit(5, "feet"),
  22745. default: true
  22746. },
  22747. ]
  22748. ))
  22749. characterMakers.push(() => makeCharacter(
  22750. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22751. {
  22752. side: {
  22753. height: math.unit(3, "feet"),
  22754. weight: math.unit(225, "lb"),
  22755. name: "Side",
  22756. image: {
  22757. source: "./media/characters/saian/side.svg",
  22758. extra: 566 / 356,
  22759. bottom: 79.7 / 643
  22760. }
  22761. },
  22762. maw: {
  22763. height: math.unit(2.85, "feet"),
  22764. name: "Maw",
  22765. image: {
  22766. source: "./media/characters/saian/maw.svg"
  22767. }
  22768. },
  22769. },
  22770. [
  22771. {
  22772. name: "Normal",
  22773. height: math.unit(3, "feet"),
  22774. default: true
  22775. },
  22776. ]
  22777. ))
  22778. characterMakers.push(() => makeCharacter(
  22779. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22780. {
  22781. side: {
  22782. height: math.unit(8, "feet"),
  22783. weight: math.unit(300, "lb"),
  22784. name: "Side",
  22785. image: {
  22786. source: "./media/characters/equus-silvermane/side.svg",
  22787. extra: 2176 / 2050,
  22788. bottom: 65.7 / 2245
  22789. }
  22790. },
  22791. front: {
  22792. height: math.unit(8, "feet"),
  22793. weight: math.unit(300, "lb"),
  22794. name: "Front",
  22795. image: {
  22796. source: "./media/characters/equus-silvermane/front.svg",
  22797. extra: 4633 / 4400,
  22798. bottom: 71.3 / 4706.915
  22799. }
  22800. },
  22801. sideStepping: {
  22802. height: math.unit(8, "feet"),
  22803. weight: math.unit(300, "lb"),
  22804. name: "Side (Stepping)",
  22805. image: {
  22806. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22807. extra: 1968 / 1860,
  22808. bottom: 16.4 / 1989
  22809. }
  22810. },
  22811. },
  22812. [
  22813. {
  22814. name: "Normal",
  22815. height: math.unit(8, "feet")
  22816. },
  22817. {
  22818. name: "Minimacro",
  22819. height: math.unit(75, "feet"),
  22820. default: true
  22821. },
  22822. {
  22823. name: "Macro",
  22824. height: math.unit(150, "feet")
  22825. },
  22826. {
  22827. name: "Macro+",
  22828. height: math.unit(1000, "feet")
  22829. },
  22830. {
  22831. name: "Megamacro",
  22832. height: math.unit(1, "mile")
  22833. },
  22834. ]
  22835. ))
  22836. characterMakers.push(() => makeCharacter(
  22837. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22838. {
  22839. side: {
  22840. height: math.unit(20, "feet"),
  22841. weight: math.unit(30000, "kg"),
  22842. name: "Side",
  22843. image: {
  22844. source: "./media/characters/windar/side.svg",
  22845. extra: 1491 / 1248,
  22846. bottom: 82.56 / 1568
  22847. }
  22848. },
  22849. },
  22850. [
  22851. {
  22852. name: "Normal",
  22853. height: math.unit(20, "feet"),
  22854. default: true
  22855. },
  22856. ]
  22857. ))
  22858. characterMakers.push(() => makeCharacter(
  22859. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22860. {
  22861. side: {
  22862. height: math.unit(15.66, "feet"),
  22863. weight: math.unit(150, "lb"),
  22864. name: "Side",
  22865. image: {
  22866. source: "./media/characters/melody/side.svg",
  22867. extra: 1097 / 944,
  22868. bottom: 11.8 / 1109
  22869. }
  22870. },
  22871. sideOutfit: {
  22872. height: math.unit(15.66, "feet"),
  22873. weight: math.unit(150, "lb"),
  22874. name: "Side (Outfit)",
  22875. image: {
  22876. source: "./media/characters/melody/side-outfit.svg",
  22877. extra: 1097 / 944,
  22878. bottom: 11.8 / 1109
  22879. }
  22880. },
  22881. },
  22882. [
  22883. {
  22884. name: "Normal",
  22885. height: math.unit(15.66, "feet"),
  22886. default: true
  22887. },
  22888. ]
  22889. ))
  22890. characterMakers.push(() => makeCharacter(
  22891. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22892. {
  22893. front: {
  22894. height: math.unit(8, "feet"),
  22895. weight: math.unit(325, "lb"),
  22896. name: "Front",
  22897. image: {
  22898. source: "./media/characters/windera/front.svg",
  22899. extra: 3180 / 2845,
  22900. bottom: 178 / 3365
  22901. }
  22902. },
  22903. },
  22904. [
  22905. {
  22906. name: "Normal",
  22907. height: math.unit(8, "feet"),
  22908. default: true
  22909. },
  22910. ]
  22911. ))
  22912. characterMakers.push(() => makeCharacter(
  22913. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22914. {
  22915. front: {
  22916. height: math.unit(28.75, "feet"),
  22917. weight: math.unit(2000, "kg"),
  22918. name: "Front",
  22919. image: {
  22920. source: "./media/characters/sonear/front.svg",
  22921. extra: 1041.1 / 964.9,
  22922. bottom: 53.7 / 1096.6
  22923. }
  22924. },
  22925. },
  22926. [
  22927. {
  22928. name: "Normal",
  22929. height: math.unit(28.75, "feet"),
  22930. default: true
  22931. },
  22932. ]
  22933. ))
  22934. characterMakers.push(() => makeCharacter(
  22935. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22936. {
  22937. side: {
  22938. height: math.unit(25.5, "feet"),
  22939. weight: math.unit(23000, "kg"),
  22940. name: "Side",
  22941. image: {
  22942. source: "./media/characters/kanara/side.svg"
  22943. }
  22944. },
  22945. },
  22946. [
  22947. {
  22948. name: "Normal",
  22949. height: math.unit(25.5, "feet"),
  22950. default: true
  22951. },
  22952. ]
  22953. ))
  22954. characterMakers.push(() => makeCharacter(
  22955. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22956. {
  22957. side: {
  22958. height: math.unit(10, "feet"),
  22959. weight: math.unit(1000, "kg"),
  22960. name: "Side",
  22961. image: {
  22962. source: "./media/characters/ereus/side.svg",
  22963. extra: 1157 / 959,
  22964. bottom: 153 / 1312.5
  22965. }
  22966. },
  22967. },
  22968. [
  22969. {
  22970. name: "Normal",
  22971. height: math.unit(10, "feet"),
  22972. default: true
  22973. },
  22974. ]
  22975. ))
  22976. characterMakers.push(() => makeCharacter(
  22977. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22978. {
  22979. side: {
  22980. height: math.unit(4.5, "feet"),
  22981. weight: math.unit(500, "lb"),
  22982. name: "Side",
  22983. image: {
  22984. source: "./media/characters/e-ter/side.svg",
  22985. extra: 1550 / 1248,
  22986. bottom: 146 / 1694
  22987. }
  22988. },
  22989. },
  22990. [
  22991. {
  22992. name: "Normal",
  22993. height: math.unit(4.5, "feet"),
  22994. default: true
  22995. },
  22996. ]
  22997. ))
  22998. characterMakers.push(() => makeCharacter(
  22999. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23000. {
  23001. side: {
  23002. height: math.unit(9.7, "feet"),
  23003. weight: math.unit(4000, "kg"),
  23004. name: "Side",
  23005. image: {
  23006. source: "./media/characters/yamie/side.svg"
  23007. }
  23008. },
  23009. },
  23010. [
  23011. {
  23012. name: "Normal",
  23013. height: math.unit(9.7, "feet"),
  23014. default: true
  23015. },
  23016. ]
  23017. ))
  23018. characterMakers.push(() => makeCharacter(
  23019. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23020. {
  23021. front: {
  23022. height: math.unit(50, "feet"),
  23023. weight: math.unit(50000, "kg"),
  23024. name: "Front",
  23025. image: {
  23026. source: "./media/characters/anders/front.svg",
  23027. extra: 570 / 539,
  23028. bottom: 14.7 / 586.7
  23029. }
  23030. },
  23031. },
  23032. [
  23033. {
  23034. name: "Large",
  23035. height: math.unit(50, "feet")
  23036. },
  23037. {
  23038. name: "Macro",
  23039. height: math.unit(2000, "feet"),
  23040. default: true
  23041. },
  23042. {
  23043. name: "Megamacro",
  23044. height: math.unit(12, "miles")
  23045. },
  23046. ]
  23047. ))
  23048. characterMakers.push(() => makeCharacter(
  23049. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23050. {
  23051. front: {
  23052. height: math.unit(7 + 2 / 12, "feet"),
  23053. weight: math.unit(300, "lb"),
  23054. name: "Front",
  23055. image: {
  23056. source: "./media/characters/reban/front.svg",
  23057. extra: 1287/1212,
  23058. bottom: 148/1435
  23059. }
  23060. },
  23061. head: {
  23062. height: math.unit(1.95, "feet"),
  23063. name: "Head",
  23064. image: {
  23065. source: "./media/characters/reban/head.svg"
  23066. }
  23067. },
  23068. maw: {
  23069. height: math.unit(0.95, "feet"),
  23070. name: "Maw",
  23071. image: {
  23072. source: "./media/characters/reban/maw.svg"
  23073. }
  23074. },
  23075. foot: {
  23076. height: math.unit(1.65, "feet"),
  23077. name: "Foot",
  23078. image: {
  23079. source: "./media/characters/reban/foot.svg"
  23080. }
  23081. },
  23082. dick: {
  23083. height: math.unit(7 / 5, "feet"),
  23084. name: "Dick",
  23085. image: {
  23086. source: "./media/characters/reban/dick.svg"
  23087. }
  23088. },
  23089. },
  23090. [
  23091. {
  23092. name: "Natural Height",
  23093. height: math.unit(7 + 2 / 12, "feet")
  23094. },
  23095. {
  23096. name: "Macro",
  23097. height: math.unit(500, "feet"),
  23098. default: true
  23099. },
  23100. {
  23101. name: "Canon Height",
  23102. height: math.unit(50, "AU")
  23103. },
  23104. ]
  23105. ))
  23106. characterMakers.push(() => makeCharacter(
  23107. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23108. {
  23109. front: {
  23110. height: math.unit(6, "feet"),
  23111. weight: math.unit(150, "lb"),
  23112. name: "Front",
  23113. image: {
  23114. source: "./media/characters/terrance-keayes/front.svg",
  23115. extra: 1.005,
  23116. bottom: 151 / 1615
  23117. }
  23118. },
  23119. side: {
  23120. height: math.unit(6, "feet"),
  23121. weight: math.unit(150, "lb"),
  23122. name: "Side",
  23123. image: {
  23124. source: "./media/characters/terrance-keayes/side.svg",
  23125. extra: 1.005,
  23126. bottom: 129.4 / 1544
  23127. }
  23128. },
  23129. back: {
  23130. height: math.unit(6, "feet"),
  23131. weight: math.unit(150, "lb"),
  23132. name: "Back",
  23133. image: {
  23134. source: "./media/characters/terrance-keayes/back.svg",
  23135. extra: 1.005,
  23136. bottom: 58.4 / 1557.3
  23137. }
  23138. },
  23139. dick: {
  23140. height: math.unit(6 * 0.208, "feet"),
  23141. name: "Dick",
  23142. image: {
  23143. source: "./media/characters/terrance-keayes/dick.svg"
  23144. }
  23145. },
  23146. },
  23147. [
  23148. {
  23149. name: "Canon Height",
  23150. height: math.unit(35, "miles"),
  23151. default: true
  23152. },
  23153. ]
  23154. ))
  23155. characterMakers.push(() => makeCharacter(
  23156. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23157. {
  23158. front: {
  23159. height: math.unit(6, "feet"),
  23160. weight: math.unit(150, "lb"),
  23161. name: "Front",
  23162. image: {
  23163. source: "./media/characters/ofelia/front.svg",
  23164. extra: 1130/1117,
  23165. bottom: 91/1221
  23166. }
  23167. },
  23168. back: {
  23169. height: math.unit(6, "feet"),
  23170. weight: math.unit(150, "lb"),
  23171. name: "Back",
  23172. image: {
  23173. source: "./media/characters/ofelia/back.svg",
  23174. extra: 1172/1159,
  23175. bottom: 28/1200
  23176. }
  23177. },
  23178. maw: {
  23179. height: math.unit(1, "feet"),
  23180. name: "Maw",
  23181. image: {
  23182. source: "./media/characters/ofelia/maw.svg"
  23183. }
  23184. },
  23185. foot: {
  23186. height: math.unit(1.949, "feet"),
  23187. name: "Foot",
  23188. image: {
  23189. source: "./media/characters/ofelia/foot.svg"
  23190. }
  23191. },
  23192. },
  23193. [
  23194. {
  23195. name: "Canon Height",
  23196. height: math.unit(2000, "miles"),
  23197. default: true
  23198. },
  23199. ]
  23200. ))
  23201. characterMakers.push(() => makeCharacter(
  23202. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23203. {
  23204. front: {
  23205. height: math.unit(6, "feet"),
  23206. weight: math.unit(150, "lb"),
  23207. name: "Front",
  23208. image: {
  23209. source: "./media/characters/samuel/front.svg",
  23210. extra: 265 / 258,
  23211. bottom: 2 / 266.1566
  23212. }
  23213. },
  23214. },
  23215. [
  23216. {
  23217. name: "Macro",
  23218. height: math.unit(100, "feet"),
  23219. default: true
  23220. },
  23221. {
  23222. name: "Full Size",
  23223. height: math.unit(1000, "miles")
  23224. },
  23225. ]
  23226. ))
  23227. characterMakers.push(() => makeCharacter(
  23228. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23229. {
  23230. front: {
  23231. height: math.unit(6, "feet"),
  23232. weight: math.unit(300, "lb"),
  23233. name: "Front",
  23234. image: {
  23235. source: "./media/characters/beishir-kiel/front.svg",
  23236. extra: 569 / 547,
  23237. bottom: 41.9 / 609
  23238. }
  23239. },
  23240. maw: {
  23241. height: math.unit(6 * 0.202, "feet"),
  23242. name: "Maw",
  23243. image: {
  23244. source: "./media/characters/beishir-kiel/maw.svg"
  23245. }
  23246. },
  23247. },
  23248. [
  23249. {
  23250. name: "Macro",
  23251. height: math.unit(300, "feet"),
  23252. default: true
  23253. },
  23254. ]
  23255. ))
  23256. characterMakers.push(() => makeCharacter(
  23257. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23258. {
  23259. front: {
  23260. height: math.unit(5 + 7/12, "feet"),
  23261. weight: math.unit(120, "lb"),
  23262. name: "Front",
  23263. image: {
  23264. source: "./media/characters/logan-grey/front.svg",
  23265. extra: 1836/1738,
  23266. bottom: 108/1944
  23267. }
  23268. },
  23269. back: {
  23270. height: math.unit(5 + 7/12, "feet"),
  23271. weight: math.unit(120, "lb"),
  23272. name: "Back",
  23273. image: {
  23274. source: "./media/characters/logan-grey/back.svg",
  23275. extra: 1880/1794,
  23276. bottom: 24/1904
  23277. }
  23278. },
  23279. frontSfw: {
  23280. height: math.unit(5 + 7/12, "feet"),
  23281. weight: math.unit(120, "lb"),
  23282. name: "Front (SFW)",
  23283. image: {
  23284. source: "./media/characters/logan-grey/front-sfw.svg",
  23285. extra: 1836/1738,
  23286. bottom: 108/1944
  23287. }
  23288. },
  23289. backSfw: {
  23290. height: math.unit(5 + 7/12, "feet"),
  23291. weight: math.unit(120, "lb"),
  23292. name: "Back (SFW)",
  23293. image: {
  23294. source: "./media/characters/logan-grey/back-sfw.svg",
  23295. extra: 1880/1794,
  23296. bottom: 24/1904
  23297. }
  23298. },
  23299. hands: {
  23300. height: math.unit(0.84, "feet"),
  23301. name: "Hands",
  23302. image: {
  23303. source: "./media/characters/logan-grey/hands.svg"
  23304. }
  23305. },
  23306. paws: {
  23307. height: math.unit(0.72, "feet"),
  23308. name: "Paws",
  23309. image: {
  23310. source: "./media/characters/logan-grey/paws.svg"
  23311. }
  23312. },
  23313. cock: {
  23314. height: math.unit(1.45, "feet"),
  23315. name: "Cock",
  23316. image: {
  23317. source: "./media/characters/logan-grey/cock.svg"
  23318. }
  23319. },
  23320. cockAlt: {
  23321. height: math.unit(1.437, "feet"),
  23322. name: "Cock (alt)",
  23323. image: {
  23324. source: "./media/characters/logan-grey/cock-alt.svg"
  23325. }
  23326. },
  23327. },
  23328. [
  23329. {
  23330. name: "Normal",
  23331. height: math.unit(5 + 8 / 12, "feet")
  23332. },
  23333. {
  23334. name: "The 500 Foot Femboy",
  23335. height: math.unit(500, "feet"),
  23336. default: true
  23337. },
  23338. {
  23339. name: "Megmacro",
  23340. height: math.unit(20, "miles")
  23341. },
  23342. ]
  23343. ))
  23344. characterMakers.push(() => makeCharacter(
  23345. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23346. {
  23347. front: {
  23348. height: math.unit(8 + 2 / 12, "feet"),
  23349. weight: math.unit(275, "lb"),
  23350. name: "Front",
  23351. image: {
  23352. source: "./media/characters/draganta/front.svg",
  23353. extra: 1177 / 1135,
  23354. bottom: 33.46 / 1212.1
  23355. }
  23356. },
  23357. },
  23358. [
  23359. {
  23360. name: "Normal",
  23361. height: math.unit(8 + 6 / 12, "feet"),
  23362. default: true
  23363. },
  23364. {
  23365. name: "Macro",
  23366. height: math.unit(150, "feet")
  23367. },
  23368. {
  23369. name: "Megamacro",
  23370. height: math.unit(1000, "miles")
  23371. },
  23372. ]
  23373. ))
  23374. characterMakers.push(() => makeCharacter(
  23375. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23376. {
  23377. front: {
  23378. height: math.unit(1.72, "m"),
  23379. weight: math.unit(80, "lb"),
  23380. name: "Front",
  23381. image: {
  23382. source: "./media/characters/voski/front.svg",
  23383. extra: 2076.22 / 2022.4,
  23384. bottom: 102.7 / 2177.3866
  23385. }
  23386. },
  23387. frontFlaccid: {
  23388. height: math.unit(1.72, "m"),
  23389. weight: math.unit(80, "lb"),
  23390. name: "Front (Flaccid)",
  23391. image: {
  23392. source: "./media/characters/voski/front-flaccid.svg",
  23393. extra: 2076.22 / 2022.4,
  23394. bottom: 102.7 / 2177.3866
  23395. }
  23396. },
  23397. frontErect: {
  23398. height: math.unit(1.72, "m"),
  23399. weight: math.unit(80, "lb"),
  23400. name: "Front (Erect)",
  23401. image: {
  23402. source: "./media/characters/voski/front-erect.svg",
  23403. extra: 2076.22 / 2022.4,
  23404. bottom: 102.7 / 2177.3866
  23405. }
  23406. },
  23407. back: {
  23408. height: math.unit(1.72, "m"),
  23409. weight: math.unit(80, "lb"),
  23410. name: "Back",
  23411. image: {
  23412. source: "./media/characters/voski/back.svg",
  23413. extra: 2104 / 2051,
  23414. bottom: 10.45 / 2113.63
  23415. }
  23416. },
  23417. },
  23418. [
  23419. {
  23420. name: "Normal",
  23421. height: math.unit(1.72, "m")
  23422. },
  23423. {
  23424. name: "Macro",
  23425. height: math.unit(55, "m"),
  23426. default: true
  23427. },
  23428. {
  23429. name: "Macro+",
  23430. height: math.unit(300, "m")
  23431. },
  23432. {
  23433. name: "Macro++",
  23434. height: math.unit(700, "m")
  23435. },
  23436. {
  23437. name: "Macro+++",
  23438. height: math.unit(4500, "m")
  23439. },
  23440. {
  23441. name: "Macro++++",
  23442. height: math.unit(45, "km")
  23443. },
  23444. {
  23445. name: "Macro+++++",
  23446. height: math.unit(1220, "km")
  23447. },
  23448. ]
  23449. ))
  23450. characterMakers.push(() => makeCharacter(
  23451. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23452. {
  23453. front: {
  23454. height: math.unit(2.3, "m"),
  23455. weight: math.unit(304, "kg"),
  23456. name: "Front",
  23457. image: {
  23458. source: "./media/characters/icowom-lee/front.svg",
  23459. extra: 985 / 955,
  23460. bottom: 25.4 / 1012
  23461. }
  23462. },
  23463. fronttentacles: {
  23464. height: math.unit(2.3, "m"),
  23465. weight: math.unit(304, "kg"),
  23466. name: "Front-tentacles",
  23467. image: {
  23468. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23469. extra: 985 / 955,
  23470. bottom: 25.4 / 1012
  23471. }
  23472. },
  23473. back: {
  23474. height: math.unit(2.3, "m"),
  23475. weight: math.unit(304, "kg"),
  23476. name: "Back",
  23477. image: {
  23478. source: "./media/characters/icowom-lee/back.svg",
  23479. extra: 975 / 954,
  23480. bottom: 9.5 / 985
  23481. }
  23482. },
  23483. backtentacles: {
  23484. height: math.unit(2.3, "m"),
  23485. weight: math.unit(304, "kg"),
  23486. name: "Back-tentacles",
  23487. image: {
  23488. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23489. extra: 975 / 954,
  23490. bottom: 9.5 / 985
  23491. }
  23492. },
  23493. frontDressed: {
  23494. height: math.unit(2.3, "m"),
  23495. weight: math.unit(304, "kg"),
  23496. name: "Front (Dressed)",
  23497. image: {
  23498. source: "./media/characters/icowom-lee/front-dressed.svg",
  23499. extra: 3076 / 2933,
  23500. bottom: 51.4 / 3125.1889
  23501. }
  23502. },
  23503. rump: {
  23504. height: math.unit(0.776, "meters"),
  23505. name: "Rump",
  23506. image: {
  23507. source: "./media/characters/icowom-lee/rump.svg"
  23508. }
  23509. },
  23510. genitals: {
  23511. height: math.unit(0.78, "meters"),
  23512. name: "Genitals",
  23513. image: {
  23514. source: "./media/characters/icowom-lee/genitals.svg"
  23515. }
  23516. },
  23517. },
  23518. [
  23519. {
  23520. name: "Normal",
  23521. height: math.unit(2.3, "meters"),
  23522. default: true
  23523. },
  23524. {
  23525. name: "Macro",
  23526. height: math.unit(94, "meters"),
  23527. default: true
  23528. },
  23529. ]
  23530. ))
  23531. characterMakers.push(() => makeCharacter(
  23532. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23533. {
  23534. front: {
  23535. height: math.unit(22, "meters"),
  23536. weight: math.unit(21000, "kg"),
  23537. name: "Front",
  23538. image: {
  23539. source: "./media/characters/shock-diamond/front.svg",
  23540. extra: 2204 / 2053,
  23541. bottom: 65 / 2239.47
  23542. }
  23543. },
  23544. frontNude: {
  23545. height: math.unit(22, "meters"),
  23546. weight: math.unit(21000, "kg"),
  23547. name: "Front (Nude)",
  23548. image: {
  23549. source: "./media/characters/shock-diamond/front-nude.svg",
  23550. extra: 2514 / 2285,
  23551. bottom: 13 / 2527.56
  23552. }
  23553. },
  23554. },
  23555. [
  23556. {
  23557. name: "Normal",
  23558. height: math.unit(3, "meters")
  23559. },
  23560. {
  23561. name: "Macro",
  23562. height: math.unit(22, "meters"),
  23563. default: true
  23564. },
  23565. ]
  23566. ))
  23567. characterMakers.push(() => makeCharacter(
  23568. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23569. {
  23570. front: {
  23571. height: math.unit(5 + 4 / 12, "feet"),
  23572. weight: math.unit(120, "lb"),
  23573. name: "Front",
  23574. image: {
  23575. source: "./media/characters/rory/front.svg",
  23576. extra: 1318/1241,
  23577. bottom: 42/1360
  23578. }
  23579. },
  23580. back: {
  23581. height: math.unit(5 + 4 / 12, "feet"),
  23582. weight: math.unit(120, "lb"),
  23583. name: "Back",
  23584. image: {
  23585. source: "./media/characters/rory/back.svg",
  23586. extra: 1318/1241,
  23587. bottom: 42/1360
  23588. }
  23589. },
  23590. butt: {
  23591. height: math.unit(1.74, "feet"),
  23592. name: "Butt",
  23593. image: {
  23594. source: "./media/characters/rory/butt.svg"
  23595. }
  23596. },
  23597. dick: {
  23598. height: math.unit(1.02, "feet"),
  23599. name: "Dick",
  23600. image: {
  23601. source: "./media/characters/rory/dick.svg"
  23602. }
  23603. },
  23604. paws: {
  23605. height: math.unit(1, "feet"),
  23606. name: "Paws",
  23607. image: {
  23608. source: "./media/characters/rory/paws.svg"
  23609. }
  23610. },
  23611. frontAlt: {
  23612. height: math.unit(5 + 4 / 12, "feet"),
  23613. weight: math.unit(120, "lb"),
  23614. name: "Front (Alt)",
  23615. image: {
  23616. source: "./media/characters/rory/front-alt.svg",
  23617. extra: 589 / 556,
  23618. bottom: 45.7 / 635.76
  23619. }
  23620. },
  23621. frontAltNude: {
  23622. height: math.unit(5 + 4 / 12, "feet"),
  23623. weight: math.unit(120, "lb"),
  23624. name: "Front (Alt, Nude)",
  23625. image: {
  23626. source: "./media/characters/rory/front-alt-nude.svg",
  23627. extra: 589 / 556,
  23628. bottom: 45.7 / 635.76
  23629. }
  23630. },
  23631. side: {
  23632. height: math.unit(5 + 4 / 12, "feet"),
  23633. weight: math.unit(120, "lb"),
  23634. name: "Side",
  23635. image: {
  23636. source: "./media/characters/rory/side.svg",
  23637. extra: 597 / 564,
  23638. bottom: 55 / 653
  23639. }
  23640. },
  23641. backAlt: {
  23642. height: math.unit(5 + 4 / 12, "feet"),
  23643. weight: math.unit(120, "lb"),
  23644. name: "Back (Alt)",
  23645. image: {
  23646. source: "./media/characters/rory/back-alt.svg",
  23647. extra: 620 / 585,
  23648. bottom: 8.86 / 630.43
  23649. }
  23650. },
  23651. dickAlt: {
  23652. height: math.unit(0.86, "feet"),
  23653. name: "Dick (Alt)",
  23654. image: {
  23655. source: "./media/characters/rory/dick-alt.svg"
  23656. }
  23657. },
  23658. },
  23659. [
  23660. {
  23661. name: "Normal",
  23662. height: math.unit(5 + 4 / 12, "feet"),
  23663. default: true
  23664. },
  23665. {
  23666. name: "Macro",
  23667. height: math.unit(100, "feet")
  23668. },
  23669. {
  23670. name: "Macro+",
  23671. height: math.unit(140, "feet")
  23672. },
  23673. {
  23674. name: "Macro++",
  23675. height: math.unit(300, "feet")
  23676. },
  23677. ]
  23678. ))
  23679. characterMakers.push(() => makeCharacter(
  23680. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23681. {
  23682. front: {
  23683. height: math.unit(5 + 9 / 12, "feet"),
  23684. weight: math.unit(190, "lb"),
  23685. name: "Front",
  23686. image: {
  23687. source: "./media/characters/sprisk/front.svg",
  23688. extra: 1225 / 1180,
  23689. bottom: 42.7 / 1266.4
  23690. }
  23691. },
  23692. frontNsfw: {
  23693. height: math.unit(5 + 9 / 12, "feet"),
  23694. weight: math.unit(190, "lb"),
  23695. name: "Front (NSFW)",
  23696. image: {
  23697. source: "./media/characters/sprisk/front-nsfw.svg",
  23698. extra: 1225 / 1180,
  23699. bottom: 42.7 / 1266.4
  23700. }
  23701. },
  23702. back: {
  23703. height: math.unit(5 + 9 / 12, "feet"),
  23704. weight: math.unit(190, "lb"),
  23705. name: "Back",
  23706. image: {
  23707. source: "./media/characters/sprisk/back.svg",
  23708. extra: 1247 / 1200,
  23709. bottom: 5.6 / 1253.04
  23710. }
  23711. },
  23712. },
  23713. [
  23714. {
  23715. name: "Tiny",
  23716. height: math.unit(2, "inches")
  23717. },
  23718. {
  23719. name: "Normal",
  23720. height: math.unit(5 + 9 / 12, "feet"),
  23721. default: true
  23722. },
  23723. {
  23724. name: "Mini Macro",
  23725. height: math.unit(18, "feet")
  23726. },
  23727. {
  23728. name: "Macro",
  23729. height: math.unit(100, "feet")
  23730. },
  23731. {
  23732. name: "MACRO",
  23733. height: math.unit(50, "miles")
  23734. },
  23735. {
  23736. name: "M A C R O",
  23737. height: math.unit(300, "miles")
  23738. },
  23739. ]
  23740. ))
  23741. characterMakers.push(() => makeCharacter(
  23742. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23743. {
  23744. side: {
  23745. height: math.unit(15.6, "meters"),
  23746. weight: math.unit(700000, "kg"),
  23747. name: "Side",
  23748. image: {
  23749. source: "./media/characters/bunsen/side.svg",
  23750. extra: 1644 / 358
  23751. }
  23752. },
  23753. foot: {
  23754. height: math.unit(1.611 * 1644 / 358, "meter"),
  23755. name: "Foot",
  23756. image: {
  23757. source: "./media/characters/bunsen/foot.svg"
  23758. }
  23759. },
  23760. },
  23761. [
  23762. {
  23763. name: "Small",
  23764. height: math.unit(10, "feet")
  23765. },
  23766. {
  23767. name: "Normal",
  23768. height: math.unit(15.6, "meters"),
  23769. default: true
  23770. },
  23771. ]
  23772. ))
  23773. characterMakers.push(() => makeCharacter(
  23774. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23775. {
  23776. front: {
  23777. height: math.unit(4 + 11 / 12, "feet"),
  23778. weight: math.unit(140, "lb"),
  23779. name: "Front",
  23780. image: {
  23781. source: "./media/characters/sesh/front.svg",
  23782. extra: 3420 / 3231,
  23783. bottom: 72 / 3949.5
  23784. }
  23785. },
  23786. },
  23787. [
  23788. {
  23789. name: "Normal",
  23790. height: math.unit(4 + 11 / 12, "feet")
  23791. },
  23792. {
  23793. name: "Grown",
  23794. height: math.unit(15, "feet"),
  23795. default: true
  23796. },
  23797. {
  23798. name: "Macro",
  23799. height: math.unit(1500, "feet")
  23800. },
  23801. {
  23802. name: "Megamacro",
  23803. height: math.unit(30, "miles")
  23804. },
  23805. {
  23806. name: "Continental",
  23807. height: math.unit(3000, "miles")
  23808. },
  23809. {
  23810. name: "Gravity Mass",
  23811. height: math.unit(300000, "miles")
  23812. },
  23813. {
  23814. name: "Planet Buster",
  23815. height: math.unit(30000000, "miles")
  23816. },
  23817. {
  23818. name: "Big",
  23819. height: math.unit(3000000000, "miles")
  23820. },
  23821. ]
  23822. ))
  23823. characterMakers.push(() => makeCharacter(
  23824. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23825. {
  23826. front: {
  23827. height: math.unit(9, "feet"),
  23828. weight: math.unit(350, "lb"),
  23829. name: "Front",
  23830. image: {
  23831. source: "./media/characters/pepper/front.svg",
  23832. extra: 1448 / 1312,
  23833. bottom: 9.4 / 1457.88
  23834. }
  23835. },
  23836. back: {
  23837. height: math.unit(9, "feet"),
  23838. weight: math.unit(350, "lb"),
  23839. name: "Back",
  23840. image: {
  23841. source: "./media/characters/pepper/back.svg",
  23842. extra: 1423 / 1300,
  23843. bottom: 4.6 / 1429
  23844. }
  23845. },
  23846. maw: {
  23847. height: math.unit(0.932, "feet"),
  23848. name: "Maw",
  23849. image: {
  23850. source: "./media/characters/pepper/maw.svg"
  23851. }
  23852. },
  23853. },
  23854. [
  23855. {
  23856. name: "Normal",
  23857. height: math.unit(9, "feet"),
  23858. default: true
  23859. },
  23860. ]
  23861. ))
  23862. characterMakers.push(() => makeCharacter(
  23863. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23864. {
  23865. front: {
  23866. height: math.unit(6, "feet"),
  23867. weight: math.unit(150, "lb"),
  23868. name: "Front",
  23869. image: {
  23870. source: "./media/characters/maelstrom/front.svg",
  23871. extra: 2100 / 1883,
  23872. bottom: 94 / 2196.7
  23873. }
  23874. },
  23875. },
  23876. [
  23877. {
  23878. name: "Less Kaiju",
  23879. height: math.unit(200, "feet")
  23880. },
  23881. {
  23882. name: "Kaiju",
  23883. height: math.unit(400, "feet"),
  23884. default: true
  23885. },
  23886. {
  23887. name: "Kaiju-er",
  23888. height: math.unit(600, "feet")
  23889. },
  23890. ]
  23891. ))
  23892. characterMakers.push(() => makeCharacter(
  23893. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23894. {
  23895. front: {
  23896. height: math.unit(6 + 5 / 12, "feet"),
  23897. weight: math.unit(180, "lb"),
  23898. name: "Front",
  23899. image: {
  23900. source: "./media/characters/lexir/front.svg",
  23901. extra: 180 / 172,
  23902. bottom: 12 / 192
  23903. }
  23904. },
  23905. back: {
  23906. height: math.unit(6 + 5 / 12, "feet"),
  23907. weight: math.unit(180, "lb"),
  23908. name: "Back",
  23909. image: {
  23910. source: "./media/characters/lexir/back.svg",
  23911. extra: 1273/1201,
  23912. bottom: 39/1312
  23913. }
  23914. },
  23915. },
  23916. [
  23917. {
  23918. name: "Very Smal",
  23919. height: math.unit(1, "nm")
  23920. },
  23921. {
  23922. name: "Normal",
  23923. height: math.unit(6 + 5 / 12, "feet"),
  23924. default: true
  23925. },
  23926. {
  23927. name: "Macro",
  23928. height: math.unit(1, "mile")
  23929. },
  23930. {
  23931. name: "Megamacro",
  23932. height: math.unit(50, "miles")
  23933. },
  23934. ]
  23935. ))
  23936. characterMakers.push(() => makeCharacter(
  23937. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23938. {
  23939. front: {
  23940. height: math.unit(1.5, "meters"),
  23941. weight: math.unit(100, "lb"),
  23942. name: "Front",
  23943. image: {
  23944. source: "./media/characters/maksio/front.svg",
  23945. extra: 1549 / 1531,
  23946. bottom: 123.7 / 1674.5429
  23947. }
  23948. },
  23949. back: {
  23950. height: math.unit(1.5, "meters"),
  23951. weight: math.unit(100, "lb"),
  23952. name: "Back",
  23953. image: {
  23954. source: "./media/characters/maksio/back.svg",
  23955. extra: 1541 / 1509,
  23956. bottom: 97 / 1639
  23957. }
  23958. },
  23959. hand: {
  23960. height: math.unit(0.621, "feet"),
  23961. name: "Hand",
  23962. image: {
  23963. source: "./media/characters/maksio/hand.svg"
  23964. }
  23965. },
  23966. foot: {
  23967. height: math.unit(1.611, "feet"),
  23968. name: "Foot",
  23969. image: {
  23970. source: "./media/characters/maksio/foot.svg"
  23971. }
  23972. },
  23973. },
  23974. [
  23975. {
  23976. name: "Shrunken",
  23977. height: math.unit(10, "cm")
  23978. },
  23979. {
  23980. name: "Normal",
  23981. height: math.unit(150, "cm"),
  23982. default: true
  23983. },
  23984. ]
  23985. ))
  23986. characterMakers.push(() => makeCharacter(
  23987. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23988. {
  23989. front: {
  23990. height: math.unit(100, "feet"),
  23991. name: "Front",
  23992. image: {
  23993. source: "./media/characters/erza-bear/front.svg",
  23994. extra: 2449 / 2390,
  23995. bottom: 46 / 2494
  23996. }
  23997. },
  23998. back: {
  23999. height: math.unit(100, "feet"),
  24000. name: "Back",
  24001. image: {
  24002. source: "./media/characters/erza-bear/back.svg",
  24003. extra: 2489 / 2430,
  24004. bottom: 85.4 / 2480
  24005. }
  24006. },
  24007. tail: {
  24008. height: math.unit(42, "feet"),
  24009. name: "Tail",
  24010. image: {
  24011. source: "./media/characters/erza-bear/tail.svg"
  24012. }
  24013. },
  24014. tongue: {
  24015. height: math.unit(8, "feet"),
  24016. name: "Tongue",
  24017. image: {
  24018. source: "./media/characters/erza-bear/tongue.svg"
  24019. }
  24020. },
  24021. dick: {
  24022. height: math.unit(10.5, "feet"),
  24023. name: "Dick",
  24024. image: {
  24025. source: "./media/characters/erza-bear/dick.svg"
  24026. }
  24027. },
  24028. dickVertical: {
  24029. height: math.unit(16.9, "feet"),
  24030. name: "Dick (Vertical)",
  24031. image: {
  24032. source: "./media/characters/erza-bear/dick-vertical.svg"
  24033. }
  24034. },
  24035. },
  24036. [
  24037. {
  24038. name: "Macro",
  24039. height: math.unit(100, "feet"),
  24040. default: true
  24041. },
  24042. ]
  24043. ))
  24044. characterMakers.push(() => makeCharacter(
  24045. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24046. {
  24047. front: {
  24048. height: math.unit(172, "cm"),
  24049. weight: math.unit(73, "kg"),
  24050. name: "Front",
  24051. image: {
  24052. source: "./media/characters/violet-flor/front.svg",
  24053. extra: 1530 / 1442,
  24054. bottom: 61.9 / 1588.8
  24055. }
  24056. },
  24057. back: {
  24058. height: math.unit(180, "cm"),
  24059. weight: math.unit(73, "kg"),
  24060. name: "Back",
  24061. image: {
  24062. source: "./media/characters/violet-flor/back.svg",
  24063. extra: 1692 / 1630,
  24064. bottom: 20 / 1712
  24065. }
  24066. },
  24067. },
  24068. [
  24069. {
  24070. name: "Normal",
  24071. height: math.unit(172, "cm"),
  24072. default: true
  24073. },
  24074. ]
  24075. ))
  24076. characterMakers.push(() => makeCharacter(
  24077. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24078. {
  24079. front: {
  24080. height: math.unit(6, "feet"),
  24081. weight: math.unit(220, "lb"),
  24082. name: "Front",
  24083. image: {
  24084. source: "./media/characters/lynn-rhea/front.svg",
  24085. extra: 310 / 273
  24086. }
  24087. },
  24088. back: {
  24089. height: math.unit(6, "feet"),
  24090. weight: math.unit(220, "lb"),
  24091. name: "Back",
  24092. image: {
  24093. source: "./media/characters/lynn-rhea/back.svg",
  24094. extra: 310 / 273
  24095. }
  24096. },
  24097. dicks: {
  24098. height: math.unit(0.9, "feet"),
  24099. name: "Dicks",
  24100. image: {
  24101. source: "./media/characters/lynn-rhea/dicks.svg"
  24102. }
  24103. },
  24104. slit: {
  24105. height: math.unit(0.4, "feet"),
  24106. name: "Slit",
  24107. image: {
  24108. source: "./media/characters/lynn-rhea/slit.svg"
  24109. }
  24110. },
  24111. },
  24112. [
  24113. {
  24114. name: "Micro",
  24115. height: math.unit(1, "inch")
  24116. },
  24117. {
  24118. name: "Macro",
  24119. height: math.unit(60, "feet"),
  24120. default: true
  24121. },
  24122. {
  24123. name: "Megamacro",
  24124. height: math.unit(2, "miles")
  24125. },
  24126. {
  24127. name: "Gigamacro",
  24128. height: math.unit(3, "earths")
  24129. },
  24130. {
  24131. name: "Galactic",
  24132. height: math.unit(0.8, "galaxies")
  24133. },
  24134. ]
  24135. ))
  24136. characterMakers.push(() => makeCharacter(
  24137. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24138. {
  24139. front: {
  24140. height: math.unit(1600, "feet"),
  24141. weight: math.unit(85758785169, "kg"),
  24142. name: "Front",
  24143. image: {
  24144. source: "./media/characters/valathos/front.svg",
  24145. extra: 1451 / 1339
  24146. }
  24147. },
  24148. },
  24149. [
  24150. {
  24151. name: "Macro",
  24152. height: math.unit(1600, "feet"),
  24153. default: true
  24154. },
  24155. ]
  24156. ))
  24157. characterMakers.push(() => makeCharacter(
  24158. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24159. {
  24160. front: {
  24161. height: math.unit(7 + 5 / 12, "feet"),
  24162. weight: math.unit(300, "lb"),
  24163. name: "Front",
  24164. image: {
  24165. source: "./media/characters/azula/front.svg",
  24166. extra: 3208 / 2880,
  24167. bottom: 80.2 / 3277
  24168. }
  24169. },
  24170. back: {
  24171. height: math.unit(7 + 5 / 12, "feet"),
  24172. weight: math.unit(300, "lb"),
  24173. name: "Back",
  24174. image: {
  24175. source: "./media/characters/azula/back.svg",
  24176. extra: 3169 / 2822,
  24177. bottom: 150.6 / 3321
  24178. }
  24179. },
  24180. },
  24181. [
  24182. {
  24183. name: "Normal",
  24184. height: math.unit(7 + 5 / 12, "feet"),
  24185. default: true
  24186. },
  24187. {
  24188. name: "Big",
  24189. height: math.unit(20, "feet")
  24190. },
  24191. ]
  24192. ))
  24193. characterMakers.push(() => makeCharacter(
  24194. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24195. {
  24196. front: {
  24197. height: math.unit(5 + 1 / 12, "feet"),
  24198. weight: math.unit(110, "lb"),
  24199. name: "Front",
  24200. image: {
  24201. source: "./media/characters/rupert/front.svg",
  24202. extra: 1549 / 1495,
  24203. bottom: 54.2 / 1604.4
  24204. }
  24205. },
  24206. },
  24207. [
  24208. {
  24209. name: "Normal",
  24210. height: math.unit(5 + 1 / 12, "feet"),
  24211. default: true
  24212. },
  24213. ]
  24214. ))
  24215. characterMakers.push(() => makeCharacter(
  24216. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24217. {
  24218. front: {
  24219. height: math.unit(8 + 4 / 12, "feet"),
  24220. weight: math.unit(350, "lb"),
  24221. name: "Front",
  24222. image: {
  24223. source: "./media/characters/sheera-castellar/front.svg",
  24224. extra: 1957 / 1894,
  24225. bottom: 26.97 / 1975.017
  24226. }
  24227. },
  24228. side: {
  24229. height: math.unit(8 + 4 / 12, "feet"),
  24230. weight: math.unit(350, "lb"),
  24231. name: "Side",
  24232. image: {
  24233. source: "./media/characters/sheera-castellar/side.svg",
  24234. extra: 1957 / 1894
  24235. }
  24236. },
  24237. back: {
  24238. height: math.unit(8 + 4 / 12, "feet"),
  24239. weight: math.unit(350, "lb"),
  24240. name: "Back",
  24241. image: {
  24242. source: "./media/characters/sheera-castellar/back.svg",
  24243. extra: 1957 / 1894
  24244. }
  24245. },
  24246. angled: {
  24247. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24248. weight: math.unit(350, "lb"),
  24249. name: "Angled",
  24250. image: {
  24251. source: "./media/characters/sheera-castellar/angled.svg",
  24252. extra: 1807 / 1707,
  24253. bottom: 68 / 1875
  24254. }
  24255. },
  24256. genitals: {
  24257. height: math.unit(2.2, "feet"),
  24258. name: "Genitals",
  24259. image: {
  24260. source: "./media/characters/sheera-castellar/genitals.svg"
  24261. }
  24262. },
  24263. taur: {
  24264. height: math.unit(10 + 6/12, "feet"),
  24265. name: "Taur",
  24266. image: {
  24267. source: "./media/characters/sheera-castellar/taur.svg",
  24268. extra: 2017/1909,
  24269. bottom: 185/2202
  24270. }
  24271. },
  24272. },
  24273. [
  24274. {
  24275. name: "Normal",
  24276. height: math.unit(8 + 4 / 12, "feet")
  24277. },
  24278. {
  24279. name: "Macro",
  24280. height: math.unit(150, "feet"),
  24281. default: true
  24282. },
  24283. {
  24284. name: "Macro+",
  24285. height: math.unit(800, "feet")
  24286. },
  24287. ]
  24288. ))
  24289. characterMakers.push(() => makeCharacter(
  24290. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24291. {
  24292. front: {
  24293. height: math.unit(6, "feet"),
  24294. weight: math.unit(150, "lb"),
  24295. name: "Front",
  24296. image: {
  24297. source: "./media/characters/jaipur/front.svg",
  24298. extra: 3860 / 3731,
  24299. bottom: 287 / 4140
  24300. }
  24301. },
  24302. back: {
  24303. height: math.unit(6, "feet"),
  24304. weight: math.unit(150, "lb"),
  24305. name: "Back",
  24306. image: {
  24307. source: "./media/characters/jaipur/back.svg",
  24308. extra: 1637/1561,
  24309. bottom: 154/1791
  24310. }
  24311. },
  24312. },
  24313. [
  24314. {
  24315. name: "Normal",
  24316. height: math.unit(1.85, "meters"),
  24317. default: true
  24318. },
  24319. {
  24320. name: "Macro",
  24321. height: math.unit(150, "meters")
  24322. },
  24323. {
  24324. name: "Macro+",
  24325. height: math.unit(0.5, "miles")
  24326. },
  24327. {
  24328. name: "Macro++",
  24329. height: math.unit(2.5, "miles")
  24330. },
  24331. {
  24332. name: "Macro+++",
  24333. height: math.unit(12, "miles")
  24334. },
  24335. {
  24336. name: "Macro++++",
  24337. height: math.unit(120, "miles")
  24338. },
  24339. {
  24340. name: "Macro+++++",
  24341. height: math.unit(1200, "miles")
  24342. },
  24343. ]
  24344. ))
  24345. characterMakers.push(() => makeCharacter(
  24346. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24347. {
  24348. front: {
  24349. height: math.unit(6, "feet"),
  24350. weight: math.unit(150, "lb"),
  24351. name: "Front",
  24352. image: {
  24353. source: "./media/characters/sheila-wolf/front.svg",
  24354. extra: 1931 / 1808,
  24355. bottom: 29.5 / 1960
  24356. }
  24357. },
  24358. dick: {
  24359. height: math.unit(1.464, "feet"),
  24360. name: "Dick",
  24361. image: {
  24362. source: "./media/characters/sheila-wolf/dick.svg"
  24363. }
  24364. },
  24365. muzzle: {
  24366. height: math.unit(0.513, "feet"),
  24367. name: "Muzzle",
  24368. image: {
  24369. source: "./media/characters/sheila-wolf/muzzle.svg"
  24370. }
  24371. },
  24372. },
  24373. [
  24374. {
  24375. name: "Macro",
  24376. height: math.unit(70, "feet"),
  24377. default: true
  24378. },
  24379. ]
  24380. ))
  24381. characterMakers.push(() => makeCharacter(
  24382. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24383. {
  24384. front: {
  24385. height: math.unit(32, "meters"),
  24386. weight: math.unit(300000, "kg"),
  24387. name: "Front",
  24388. image: {
  24389. source: "./media/characters/almor/front.svg",
  24390. extra: 1408 / 1322,
  24391. bottom: 94.6 / 1506.5
  24392. }
  24393. },
  24394. },
  24395. [
  24396. {
  24397. name: "Macro",
  24398. height: math.unit(32, "meters"),
  24399. default: true
  24400. },
  24401. ]
  24402. ))
  24403. characterMakers.push(() => makeCharacter(
  24404. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24405. {
  24406. front: {
  24407. height: math.unit(7, "feet"),
  24408. weight: math.unit(200, "lb"),
  24409. name: "Front",
  24410. image: {
  24411. source: "./media/characters/silver/front.svg",
  24412. extra: 472.1 / 450.5,
  24413. bottom: 26.5 / 499.424
  24414. }
  24415. },
  24416. },
  24417. [
  24418. {
  24419. name: "Normal",
  24420. height: math.unit(7, "feet"),
  24421. default: true
  24422. },
  24423. {
  24424. name: "Macro",
  24425. height: math.unit(800, "feet")
  24426. },
  24427. {
  24428. name: "Megamacro",
  24429. height: math.unit(250, "miles")
  24430. },
  24431. ]
  24432. ))
  24433. characterMakers.push(() => makeCharacter(
  24434. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24435. {
  24436. front: {
  24437. height: math.unit(6, "feet"),
  24438. weight: math.unit(150, "lb"),
  24439. name: "Front",
  24440. image: {
  24441. source: "./media/characters/pliskin/front.svg",
  24442. extra: 1469 / 1359,
  24443. bottom: 70 / 1540
  24444. }
  24445. },
  24446. },
  24447. [
  24448. {
  24449. name: "Micro",
  24450. height: math.unit(3, "inches")
  24451. },
  24452. {
  24453. name: "Normal",
  24454. height: math.unit(5 + 11 / 12, "feet"),
  24455. default: true
  24456. },
  24457. {
  24458. name: "Macro",
  24459. height: math.unit(120, "feet")
  24460. },
  24461. ]
  24462. ))
  24463. characterMakers.push(() => makeCharacter(
  24464. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24465. {
  24466. front: {
  24467. height: math.unit(6, "feet"),
  24468. weight: math.unit(150, "lb"),
  24469. name: "Front",
  24470. image: {
  24471. source: "./media/characters/sammy/front.svg",
  24472. extra: 1193 / 1089,
  24473. bottom: 30.5 / 1226
  24474. }
  24475. },
  24476. },
  24477. [
  24478. {
  24479. name: "Macro",
  24480. height: math.unit(1700, "feet"),
  24481. default: true
  24482. },
  24483. {
  24484. name: "Examacro",
  24485. height: math.unit(2.5e9, "lightyears")
  24486. },
  24487. ]
  24488. ))
  24489. characterMakers.push(() => makeCharacter(
  24490. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24491. {
  24492. front: {
  24493. height: math.unit(21, "meters"),
  24494. weight: math.unit(12, "tonnes"),
  24495. name: "Front",
  24496. image: {
  24497. source: "./media/characters/kuru/front.svg",
  24498. extra: 4301 / 3785,
  24499. bottom: 371.3 / 4691
  24500. }
  24501. },
  24502. },
  24503. [
  24504. {
  24505. name: "Macro",
  24506. height: math.unit(21, "meters"),
  24507. default: true
  24508. },
  24509. ]
  24510. ))
  24511. characterMakers.push(() => makeCharacter(
  24512. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24513. {
  24514. front: {
  24515. height: math.unit(23, "meters"),
  24516. weight: math.unit(12.2, "tonnes"),
  24517. name: "Front",
  24518. image: {
  24519. source: "./media/characters/rakka/front.svg",
  24520. extra: 4670 / 4169,
  24521. bottom: 301 / 4968.7
  24522. }
  24523. },
  24524. },
  24525. [
  24526. {
  24527. name: "Macro",
  24528. height: math.unit(23, "meters"),
  24529. default: true
  24530. },
  24531. ]
  24532. ))
  24533. characterMakers.push(() => makeCharacter(
  24534. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24535. {
  24536. front: {
  24537. height: math.unit(6, "feet"),
  24538. weight: math.unit(150, "lb"),
  24539. name: "Front",
  24540. image: {
  24541. source: "./media/characters/rhys-feline/front.svg",
  24542. extra: 2488 / 2308,
  24543. bottom: 35.67 / 2519.19
  24544. }
  24545. },
  24546. },
  24547. [
  24548. {
  24549. name: "Really Small",
  24550. height: math.unit(1, "nm")
  24551. },
  24552. {
  24553. name: "Micro",
  24554. height: math.unit(4, "inches")
  24555. },
  24556. {
  24557. name: "Normal",
  24558. height: math.unit(4 + 10 / 12, "feet"),
  24559. default: true
  24560. },
  24561. {
  24562. name: "Macro",
  24563. height: math.unit(100, "feet")
  24564. },
  24565. {
  24566. name: "Megamacto",
  24567. height: math.unit(50, "miles")
  24568. },
  24569. ]
  24570. ))
  24571. characterMakers.push(() => makeCharacter(
  24572. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24573. {
  24574. side: {
  24575. height: math.unit(30, "feet"),
  24576. weight: math.unit(35000, "kg"),
  24577. name: "Side",
  24578. image: {
  24579. source: "./media/characters/alydar/side.svg",
  24580. extra: 234 / 222,
  24581. bottom: 6.5 / 241
  24582. }
  24583. },
  24584. front: {
  24585. height: math.unit(30, "feet"),
  24586. weight: math.unit(35000, "kg"),
  24587. name: "Front",
  24588. image: {
  24589. source: "./media/characters/alydar/front.svg",
  24590. extra: 223.37 / 210.2,
  24591. bottom: 22.3 / 246.76
  24592. }
  24593. },
  24594. top: {
  24595. height: math.unit(64.54, "feet"),
  24596. weight: math.unit(35000, "kg"),
  24597. name: "Top",
  24598. image: {
  24599. source: "./media/characters/alydar/top.svg"
  24600. }
  24601. },
  24602. anthro: {
  24603. height: math.unit(30, "feet"),
  24604. weight: math.unit(9000, "kg"),
  24605. name: "Anthro",
  24606. image: {
  24607. source: "./media/characters/alydar/anthro.svg",
  24608. extra: 432 / 421,
  24609. bottom: 7.18 / 440
  24610. }
  24611. },
  24612. maw: {
  24613. height: math.unit(11.693, "feet"),
  24614. name: "Maw",
  24615. image: {
  24616. source: "./media/characters/alydar/maw.svg"
  24617. }
  24618. },
  24619. head: {
  24620. height: math.unit(11.693, "feet"),
  24621. name: "Head",
  24622. image: {
  24623. source: "./media/characters/alydar/head.svg"
  24624. }
  24625. },
  24626. headAlt: {
  24627. height: math.unit(12.861, "feet"),
  24628. name: "Head (Alt)",
  24629. image: {
  24630. source: "./media/characters/alydar/head-alt.svg"
  24631. }
  24632. },
  24633. wing: {
  24634. height: math.unit(20.712, "feet"),
  24635. name: "Wing",
  24636. image: {
  24637. source: "./media/characters/alydar/wing.svg"
  24638. }
  24639. },
  24640. wingFeather: {
  24641. height: math.unit(9.662, "feet"),
  24642. name: "Wing Feather",
  24643. image: {
  24644. source: "./media/characters/alydar/wing-feather.svg"
  24645. }
  24646. },
  24647. countourFeather: {
  24648. height: math.unit(4.154, "feet"),
  24649. name: "Contour Feather",
  24650. image: {
  24651. source: "./media/characters/alydar/contour-feather.svg"
  24652. }
  24653. },
  24654. },
  24655. [
  24656. {
  24657. name: "Diplomatic",
  24658. height: math.unit(13, "feet"),
  24659. default: true
  24660. },
  24661. {
  24662. name: "Small",
  24663. height: math.unit(30, "feet")
  24664. },
  24665. {
  24666. name: "Normal",
  24667. height: math.unit(95, "feet"),
  24668. default: true
  24669. },
  24670. {
  24671. name: "Large",
  24672. height: math.unit(285, "feet")
  24673. },
  24674. {
  24675. name: "Incomprehensible",
  24676. height: math.unit(450, "megameters")
  24677. },
  24678. ]
  24679. ))
  24680. characterMakers.push(() => makeCharacter(
  24681. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24682. {
  24683. side: {
  24684. height: math.unit(11, "feet"),
  24685. weight: math.unit(1750, "kg"),
  24686. name: "Side",
  24687. image: {
  24688. source: "./media/characters/selicia/side.svg",
  24689. extra: 440 / 396,
  24690. bottom: 24.8 / 465.979
  24691. }
  24692. },
  24693. maw: {
  24694. height: math.unit(4.665, "feet"),
  24695. name: "Maw",
  24696. image: {
  24697. source: "./media/characters/selicia/maw.svg"
  24698. }
  24699. },
  24700. },
  24701. [
  24702. {
  24703. name: "Normal",
  24704. height: math.unit(11, "feet"),
  24705. default: true
  24706. },
  24707. ]
  24708. ))
  24709. characterMakers.push(() => makeCharacter(
  24710. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24711. {
  24712. side: {
  24713. height: math.unit(2 + 6 / 12, "feet"),
  24714. weight: math.unit(30, "lb"),
  24715. name: "Side",
  24716. image: {
  24717. source: "./media/characters/layla/side.svg",
  24718. extra: 244 / 188,
  24719. bottom: 18.2 / 262.1
  24720. }
  24721. },
  24722. back: {
  24723. height: math.unit(2 + 6 / 12, "feet"),
  24724. weight: math.unit(30, "lb"),
  24725. name: "Back",
  24726. image: {
  24727. source: "./media/characters/layla/back.svg",
  24728. extra: 308 / 241.5,
  24729. bottom: 8.9 / 316.8
  24730. }
  24731. },
  24732. cumming: {
  24733. height: math.unit(2 + 6 / 12, "feet"),
  24734. weight: math.unit(30, "lb"),
  24735. name: "Cumming",
  24736. image: {
  24737. source: "./media/characters/layla/cumming.svg",
  24738. extra: 342 / 279,
  24739. bottom: 595 / 938
  24740. }
  24741. },
  24742. dickFlaccid: {
  24743. height: math.unit(2.595, "feet"),
  24744. name: "Flaccid Genitals",
  24745. image: {
  24746. source: "./media/characters/layla/dick-flaccid.svg"
  24747. }
  24748. },
  24749. dickErect: {
  24750. height: math.unit(2.359, "feet"),
  24751. name: "Erect Genitals",
  24752. image: {
  24753. source: "./media/characters/layla/dick-erect.svg"
  24754. }
  24755. },
  24756. dragon: {
  24757. height: math.unit(40, "feet"),
  24758. name: "Dragon",
  24759. image: {
  24760. source: "./media/characters/layla/dragon.svg",
  24761. extra: 610/535,
  24762. bottom: 367/977
  24763. }
  24764. },
  24765. taur: {
  24766. height: math.unit(30, "feet"),
  24767. name: "Taur",
  24768. image: {
  24769. source: "./media/characters/layla/taur.svg",
  24770. extra: 1268/1199,
  24771. bottom: 112/1380
  24772. }
  24773. },
  24774. },
  24775. [
  24776. {
  24777. name: "Micro",
  24778. height: math.unit(1, "inch")
  24779. },
  24780. {
  24781. name: "Small",
  24782. height: math.unit(1, "foot")
  24783. },
  24784. {
  24785. name: "Normal",
  24786. height: math.unit(2 + 6 / 12, "feet"),
  24787. default: true
  24788. },
  24789. {
  24790. name: "Macro",
  24791. height: math.unit(200, "feet")
  24792. },
  24793. {
  24794. name: "Megamacro",
  24795. height: math.unit(1000, "miles")
  24796. },
  24797. {
  24798. name: "Planetary",
  24799. height: math.unit(8000, "miles")
  24800. },
  24801. {
  24802. name: "True Layla",
  24803. height: math.unit(200000 * 7, "multiverses")
  24804. },
  24805. ]
  24806. ))
  24807. characterMakers.push(() => makeCharacter(
  24808. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24809. {
  24810. back: {
  24811. height: math.unit(10.5, "feet"),
  24812. weight: math.unit(800, "lb"),
  24813. name: "Back",
  24814. image: {
  24815. source: "./media/characters/knox/back.svg",
  24816. extra: 1486 / 1089,
  24817. bottom: 107 / 1601.4
  24818. }
  24819. },
  24820. side: {
  24821. height: math.unit(10.5, "feet"),
  24822. weight: math.unit(800, "lb"),
  24823. name: "Side",
  24824. image: {
  24825. source: "./media/characters/knox/side.svg",
  24826. extra: 244 / 218,
  24827. bottom: 14 / 260
  24828. }
  24829. },
  24830. },
  24831. [
  24832. {
  24833. name: "Compact",
  24834. height: math.unit(10.5, "feet"),
  24835. default: true
  24836. },
  24837. {
  24838. name: "Dynamax",
  24839. height: math.unit(210, "feet")
  24840. },
  24841. {
  24842. name: "Full Macro",
  24843. height: math.unit(850, "feet")
  24844. },
  24845. ]
  24846. ))
  24847. characterMakers.push(() => makeCharacter(
  24848. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24849. {
  24850. front: {
  24851. height: math.unit(28, "feet"),
  24852. weight: math.unit(10500, "lb"),
  24853. name: "Front",
  24854. image: {
  24855. source: "./media/characters/kayda/front.svg",
  24856. extra: 1536 / 1428,
  24857. bottom: 68.7 / 1603
  24858. }
  24859. },
  24860. back: {
  24861. height: math.unit(28, "feet"),
  24862. weight: math.unit(10500, "lb"),
  24863. name: "Back",
  24864. image: {
  24865. source: "./media/characters/kayda/back.svg",
  24866. extra: 1557 / 1464,
  24867. bottom: 39.5 / 1597.49
  24868. }
  24869. },
  24870. dick: {
  24871. height: math.unit(3.858, "feet"),
  24872. name: "Dick",
  24873. image: {
  24874. source: "./media/characters/kayda/dick.svg"
  24875. }
  24876. },
  24877. },
  24878. [
  24879. {
  24880. name: "Macro",
  24881. height: math.unit(28, "feet"),
  24882. default: true
  24883. },
  24884. ]
  24885. ))
  24886. characterMakers.push(() => makeCharacter(
  24887. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24888. {
  24889. front: {
  24890. height: math.unit(10 + 11 / 12, "feet"),
  24891. weight: math.unit(1400, "lb"),
  24892. name: "Front",
  24893. image: {
  24894. source: "./media/characters/brian/front.svg",
  24895. extra: 737 / 692,
  24896. bottom: 55.4 / 785
  24897. }
  24898. },
  24899. },
  24900. [
  24901. {
  24902. name: "Normal",
  24903. height: math.unit(10 + 11 / 12, "feet"),
  24904. default: true
  24905. },
  24906. ]
  24907. ))
  24908. characterMakers.push(() => makeCharacter(
  24909. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24910. {
  24911. front: {
  24912. height: math.unit(5 + 8 / 12, "feet"),
  24913. weight: math.unit(140, "lb"),
  24914. name: "Front",
  24915. image: {
  24916. source: "./media/characters/khemri/front.svg",
  24917. extra: 4780 / 4059,
  24918. bottom: 80.1 / 4859.25
  24919. }
  24920. },
  24921. },
  24922. [
  24923. {
  24924. name: "Micro",
  24925. height: math.unit(6, "inches")
  24926. },
  24927. {
  24928. name: "Normal",
  24929. height: math.unit(5 + 8 / 12, "feet"),
  24930. default: true
  24931. },
  24932. ]
  24933. ))
  24934. characterMakers.push(() => makeCharacter(
  24935. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24936. {
  24937. front: {
  24938. height: math.unit(13, "feet"),
  24939. weight: math.unit(1700, "lb"),
  24940. name: "Front",
  24941. image: {
  24942. source: "./media/characters/felix-braveheart/front.svg",
  24943. extra: 1222 / 1157,
  24944. bottom: 53.2 / 1280
  24945. }
  24946. },
  24947. back: {
  24948. height: math.unit(13, "feet"),
  24949. weight: math.unit(1700, "lb"),
  24950. name: "Back",
  24951. image: {
  24952. source: "./media/characters/felix-braveheart/back.svg",
  24953. extra: 1277 / 1203,
  24954. bottom: 50.2 / 1327
  24955. }
  24956. },
  24957. feral: {
  24958. height: math.unit(6, "feet"),
  24959. weight: math.unit(400, "lb"),
  24960. name: "Feral",
  24961. image: {
  24962. source: "./media/characters/felix-braveheart/feral.svg",
  24963. extra: 682 / 625,
  24964. bottom: 6.9 / 688
  24965. }
  24966. },
  24967. },
  24968. [
  24969. {
  24970. name: "Normal",
  24971. height: math.unit(13, "feet"),
  24972. default: true
  24973. },
  24974. ]
  24975. ))
  24976. characterMakers.push(() => makeCharacter(
  24977. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24978. {
  24979. side: {
  24980. height: math.unit(5 + 11 / 12, "feet"),
  24981. weight: math.unit(1400, "lb"),
  24982. name: "Side",
  24983. image: {
  24984. source: "./media/characters/shadow-blade/side.svg",
  24985. extra: 1726 / 1267,
  24986. bottom: 58.4 / 1785
  24987. }
  24988. },
  24989. },
  24990. [
  24991. {
  24992. name: "Normal",
  24993. height: math.unit(5 + 11 / 12, "feet"),
  24994. default: true
  24995. },
  24996. ]
  24997. ))
  24998. characterMakers.push(() => makeCharacter(
  24999. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25000. {
  25001. front: {
  25002. height: math.unit(1 + 6 / 12, "feet"),
  25003. weight: math.unit(25, "lb"),
  25004. name: "Front",
  25005. image: {
  25006. source: "./media/characters/karla-halldor/front.svg",
  25007. extra: 1459 / 1383,
  25008. bottom: 12 / 1472
  25009. }
  25010. },
  25011. },
  25012. [
  25013. {
  25014. name: "Normal",
  25015. height: math.unit(1 + 6 / 12, "feet"),
  25016. default: true
  25017. },
  25018. ]
  25019. ))
  25020. characterMakers.push(() => makeCharacter(
  25021. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25022. {
  25023. front: {
  25024. height: math.unit(6 + 2 / 12, "feet"),
  25025. weight: math.unit(160, "lb"),
  25026. name: "Front",
  25027. image: {
  25028. source: "./media/characters/ariam/front.svg",
  25029. extra: 1073/976,
  25030. bottom: 52/1125
  25031. }
  25032. },
  25033. back: {
  25034. height: math.unit(6 + 2/12, "feet"),
  25035. weight: math.unit(160, "lb"),
  25036. name: "Back",
  25037. image: {
  25038. source: "./media/characters/ariam/back.svg",
  25039. extra: 1103/1023,
  25040. bottom: 9/1112
  25041. }
  25042. },
  25043. dressed: {
  25044. height: math.unit(6 + 2/12, "feet"),
  25045. weight: math.unit(160, "lb"),
  25046. name: "Dressed",
  25047. image: {
  25048. source: "./media/characters/ariam/dressed.svg",
  25049. extra: 1099/1009,
  25050. bottom: 25/1124
  25051. }
  25052. },
  25053. squatting: {
  25054. height: math.unit(4.1, "feet"),
  25055. weight: math.unit(160, "lb"),
  25056. name: "Squatting",
  25057. image: {
  25058. source: "./media/characters/ariam/squatting.svg",
  25059. extra: 2617 / 2112,
  25060. bottom: 61.2 / 2681,
  25061. }
  25062. },
  25063. },
  25064. [
  25065. {
  25066. name: "Normal",
  25067. height: math.unit(6 + 2 / 12, "feet"),
  25068. default: true
  25069. },
  25070. {
  25071. name: "Normal+",
  25072. height: math.unit(4, "meters")
  25073. },
  25074. {
  25075. name: "Macro",
  25076. height: math.unit(50, "meters")
  25077. },
  25078. {
  25079. name: "Macro+",
  25080. height: math.unit(100, "meters")
  25081. },
  25082. {
  25083. name: "Megamacro",
  25084. height: math.unit(20, "km")
  25085. },
  25086. {
  25087. name: "Caretaker",
  25088. height: math.unit(444, "megameters")
  25089. },
  25090. ]
  25091. ))
  25092. characterMakers.push(() => makeCharacter(
  25093. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25094. {
  25095. front: {
  25096. height: math.unit(1.67, "meters"),
  25097. weight: math.unit(140, "lb"),
  25098. name: "Front",
  25099. image: {
  25100. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25101. extra: 438 / 410,
  25102. bottom: 0.75 / 439
  25103. }
  25104. },
  25105. },
  25106. [
  25107. {
  25108. name: "Shrunken",
  25109. height: math.unit(7.6, "cm")
  25110. },
  25111. {
  25112. name: "Human Scale",
  25113. height: math.unit(1.67, "meters")
  25114. },
  25115. {
  25116. name: "Wolxi Scale",
  25117. height: math.unit(36.7, "meters"),
  25118. default: true
  25119. },
  25120. ]
  25121. ))
  25122. characterMakers.push(() => makeCharacter(
  25123. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25124. {
  25125. front: {
  25126. height: math.unit(1.73, "meters"),
  25127. weight: math.unit(240, "lb"),
  25128. name: "Front",
  25129. image: {
  25130. source: "./media/characters/izue-two-mothers/front.svg",
  25131. extra: 469 / 437,
  25132. bottom: 1.24 / 470.6
  25133. }
  25134. },
  25135. },
  25136. [
  25137. {
  25138. name: "Shrunken",
  25139. height: math.unit(7.86, "cm")
  25140. },
  25141. {
  25142. name: "Human Scale",
  25143. height: math.unit(1.73, "meters")
  25144. },
  25145. {
  25146. name: "Wolxi Scale",
  25147. height: math.unit(38, "meters"),
  25148. default: true
  25149. },
  25150. ]
  25151. ))
  25152. characterMakers.push(() => makeCharacter(
  25153. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25154. {
  25155. front: {
  25156. height: math.unit(1.55, "meters"),
  25157. weight: math.unit(120, "lb"),
  25158. name: "Front",
  25159. image: {
  25160. source: "./media/characters/teeku-love-shack/front.svg",
  25161. extra: 387 / 362,
  25162. bottom: 1.51 / 388
  25163. }
  25164. },
  25165. },
  25166. [
  25167. {
  25168. name: "Shrunken",
  25169. height: math.unit(7, "cm")
  25170. },
  25171. {
  25172. name: "Human Scale",
  25173. height: math.unit(1.55, "meters")
  25174. },
  25175. {
  25176. name: "Wolxi Scale",
  25177. height: math.unit(34.1, "meters"),
  25178. default: true
  25179. },
  25180. ]
  25181. ))
  25182. characterMakers.push(() => makeCharacter(
  25183. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25184. {
  25185. front: {
  25186. height: math.unit(1.83, "meters"),
  25187. weight: math.unit(135, "lb"),
  25188. name: "Front",
  25189. image: {
  25190. source: "./media/characters/dejma-the-red/front.svg",
  25191. extra: 480 / 458,
  25192. bottom: 1.8 / 482
  25193. }
  25194. },
  25195. },
  25196. [
  25197. {
  25198. name: "Shrunken",
  25199. height: math.unit(8.3, "cm")
  25200. },
  25201. {
  25202. name: "Human Scale",
  25203. height: math.unit(1.83, "meters")
  25204. },
  25205. {
  25206. name: "Wolxi Scale",
  25207. height: math.unit(40, "meters"),
  25208. default: true
  25209. },
  25210. ]
  25211. ))
  25212. characterMakers.push(() => makeCharacter(
  25213. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25214. {
  25215. front: {
  25216. height: math.unit(1.78, "meters"),
  25217. weight: math.unit(65, "kg"),
  25218. name: "Front",
  25219. image: {
  25220. source: "./media/characters/aki/front.svg",
  25221. extra: 452 / 415
  25222. }
  25223. },
  25224. frontNsfw: {
  25225. height: math.unit(1.78, "meters"),
  25226. weight: math.unit(65, "kg"),
  25227. name: "Front (NSFW)",
  25228. image: {
  25229. source: "./media/characters/aki/front-nsfw.svg",
  25230. extra: 452 / 415
  25231. }
  25232. },
  25233. back: {
  25234. height: math.unit(1.78, "meters"),
  25235. weight: math.unit(65, "kg"),
  25236. name: "Back",
  25237. image: {
  25238. source: "./media/characters/aki/back.svg",
  25239. extra: 452 / 415
  25240. }
  25241. },
  25242. rump: {
  25243. height: math.unit(2.05, "feet"),
  25244. name: "Rump",
  25245. image: {
  25246. source: "./media/characters/aki/rump.svg"
  25247. }
  25248. },
  25249. dick: {
  25250. height: math.unit(0.95, "feet"),
  25251. name: "Dick",
  25252. image: {
  25253. source: "./media/characters/aki/dick.svg"
  25254. }
  25255. },
  25256. },
  25257. [
  25258. {
  25259. name: "Micro",
  25260. height: math.unit(15, "cm")
  25261. },
  25262. {
  25263. name: "Normal",
  25264. height: math.unit(178, "cm"),
  25265. default: true
  25266. },
  25267. {
  25268. name: "Macro",
  25269. height: math.unit(214, "m")
  25270. },
  25271. {
  25272. name: "Macro+",
  25273. height: math.unit(534, "m")
  25274. },
  25275. ]
  25276. ))
  25277. characterMakers.push(() => makeCharacter(
  25278. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25279. {
  25280. front: {
  25281. height: math.unit(5 + 5 / 12, "feet"),
  25282. weight: math.unit(120, "lb"),
  25283. name: "Front",
  25284. image: {
  25285. source: "./media/characters/ari/front.svg",
  25286. extra: 1550/1471,
  25287. bottom: 39/1589
  25288. }
  25289. },
  25290. },
  25291. [
  25292. {
  25293. name: "Normal",
  25294. height: math.unit(5 + 5 / 12, "feet")
  25295. },
  25296. {
  25297. name: "Macro",
  25298. height: math.unit(100, "feet"),
  25299. default: true
  25300. },
  25301. {
  25302. name: "Megamacro",
  25303. height: math.unit(100, "miles")
  25304. },
  25305. {
  25306. name: "Gigamacro",
  25307. height: math.unit(80000, "miles")
  25308. },
  25309. ]
  25310. ))
  25311. characterMakers.push(() => makeCharacter(
  25312. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25313. {
  25314. side: {
  25315. height: math.unit(9, "feet"),
  25316. weight: math.unit(400, "kg"),
  25317. name: "Side",
  25318. image: {
  25319. source: "./media/characters/bolt/side.svg",
  25320. extra: 1126 / 896,
  25321. bottom: 60 / 1187.3,
  25322. }
  25323. },
  25324. },
  25325. [
  25326. {
  25327. name: "Micro",
  25328. height: math.unit(5, "inches")
  25329. },
  25330. {
  25331. name: "Normal",
  25332. height: math.unit(9, "feet"),
  25333. default: true
  25334. },
  25335. {
  25336. name: "Macro",
  25337. height: math.unit(700, "feet")
  25338. },
  25339. {
  25340. name: "Max Size",
  25341. height: math.unit(1.52e22, "yottameters")
  25342. },
  25343. ]
  25344. ))
  25345. characterMakers.push(() => makeCharacter(
  25346. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25347. {
  25348. front: {
  25349. height: math.unit(4.3, "meters"),
  25350. weight: math.unit(3, "tons"),
  25351. name: "Front",
  25352. image: {
  25353. source: "./media/characters/draekon-sylviar/front.svg",
  25354. extra: 2072/1512,
  25355. bottom: 74/2146
  25356. }
  25357. },
  25358. back: {
  25359. height: math.unit(4.3, "meters"),
  25360. weight: math.unit(3, "tons"),
  25361. name: "Back",
  25362. image: {
  25363. source: "./media/characters/draekon-sylviar/back.svg",
  25364. extra: 1639/1483,
  25365. bottom: 41/1680
  25366. }
  25367. },
  25368. feral: {
  25369. height: math.unit(1.15, "meters"),
  25370. weight: math.unit(3, "tons"),
  25371. name: "Feral",
  25372. image: {
  25373. source: "./media/characters/draekon-sylviar/feral.svg",
  25374. extra: 1033/395,
  25375. bottom: 130/1163
  25376. }
  25377. },
  25378. maw: {
  25379. height: math.unit(1.3, "meters"),
  25380. name: "Maw",
  25381. image: {
  25382. source: "./media/characters/draekon-sylviar/maw.svg"
  25383. }
  25384. },
  25385. mawSeparated: {
  25386. height: math.unit(1.53, "meters"),
  25387. name: "Separated Maw",
  25388. image: {
  25389. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25390. }
  25391. },
  25392. tail: {
  25393. height: math.unit(1.15, "meters"),
  25394. name: "Tail",
  25395. image: {
  25396. source: "./media/characters/draekon-sylviar/tail.svg"
  25397. }
  25398. },
  25399. tailDick: {
  25400. height: math.unit(1.15, "meters"),
  25401. name: "Tail (Dick)",
  25402. image: {
  25403. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25404. }
  25405. },
  25406. tailDickSeparated: {
  25407. height: math.unit(1.19, "meters"),
  25408. name: "Tail (Separated Dick)",
  25409. image: {
  25410. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25411. }
  25412. },
  25413. slit: {
  25414. height: math.unit(1, "meters"),
  25415. name: "Slit",
  25416. image: {
  25417. source: "./media/characters/draekon-sylviar/slit.svg"
  25418. }
  25419. },
  25420. dick: {
  25421. height: math.unit(1.15, "meters"),
  25422. name: "Dick",
  25423. image: {
  25424. source: "./media/characters/draekon-sylviar/dick.svg"
  25425. }
  25426. },
  25427. dickSeparated: {
  25428. height: math.unit(1.1, "meters"),
  25429. name: "Separated Dick",
  25430. image: {
  25431. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25432. }
  25433. },
  25434. sheath: {
  25435. height: math.unit(1.15, "meters"),
  25436. name: "Sheath",
  25437. image: {
  25438. source: "./media/characters/draekon-sylviar/sheath.svg"
  25439. }
  25440. },
  25441. },
  25442. [
  25443. {
  25444. name: "Small",
  25445. height: math.unit(4.53 / 2, "meters"),
  25446. default: true
  25447. },
  25448. {
  25449. name: "Normal",
  25450. height: math.unit(4.53, "meters"),
  25451. default: true
  25452. },
  25453. {
  25454. name: "Large",
  25455. height: math.unit(4.53 * 2, "meters"),
  25456. },
  25457. ]
  25458. ))
  25459. characterMakers.push(() => makeCharacter(
  25460. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25461. {
  25462. front: {
  25463. height: math.unit(6 + 2 / 12, "feet"),
  25464. weight: math.unit(180, "lb"),
  25465. name: "Front",
  25466. image: {
  25467. source: "./media/characters/brawler/front.svg",
  25468. extra: 3301 / 3027,
  25469. bottom: 138 / 3439
  25470. }
  25471. },
  25472. },
  25473. [
  25474. {
  25475. name: "Normal",
  25476. height: math.unit(6 + 2 / 12, "feet"),
  25477. default: true
  25478. },
  25479. ]
  25480. ))
  25481. characterMakers.push(() => makeCharacter(
  25482. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25483. {
  25484. front: {
  25485. height: math.unit(11, "feet"),
  25486. weight: math.unit(1000, "lb"),
  25487. name: "Front",
  25488. image: {
  25489. source: "./media/characters/alex/front.svg",
  25490. bottom: 44.5 / 620
  25491. }
  25492. },
  25493. },
  25494. [
  25495. {
  25496. name: "Micro",
  25497. height: math.unit(5, "inches")
  25498. },
  25499. {
  25500. name: "Normal",
  25501. height: math.unit(11, "feet"),
  25502. default: true
  25503. },
  25504. {
  25505. name: "Macro",
  25506. height: math.unit(9.5e9, "feet")
  25507. },
  25508. {
  25509. name: "Max Size",
  25510. height: math.unit(1.4e283, "yottameters")
  25511. },
  25512. ]
  25513. ))
  25514. characterMakers.push(() => makeCharacter(
  25515. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25516. {
  25517. female: {
  25518. height: math.unit(29.9, "m"),
  25519. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25520. name: "Female",
  25521. image: {
  25522. source: "./media/characters/zenari/female.svg",
  25523. extra: 3281.6 / 3217,
  25524. bottom: 72.2 / 3353
  25525. }
  25526. },
  25527. male: {
  25528. height: math.unit(27.7, "m"),
  25529. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25530. name: "Male",
  25531. image: {
  25532. source: "./media/characters/zenari/male.svg",
  25533. extra: 3008 / 2991,
  25534. bottom: 54.6 / 3069
  25535. }
  25536. },
  25537. },
  25538. [
  25539. {
  25540. name: "Macro",
  25541. height: math.unit(29.7, "meters"),
  25542. default: true
  25543. },
  25544. ]
  25545. ))
  25546. characterMakers.push(() => makeCharacter(
  25547. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25548. {
  25549. female: {
  25550. height: math.unit(23.8, "m"),
  25551. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25552. name: "Female",
  25553. image: {
  25554. source: "./media/characters/mactarian/female.svg",
  25555. extra: 2662 / 2569,
  25556. bottom: 73 / 2736
  25557. }
  25558. },
  25559. male: {
  25560. height: math.unit(23.8, "m"),
  25561. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25562. name: "Male",
  25563. image: {
  25564. source: "./media/characters/mactarian/male.svg",
  25565. extra: 2673 / 2600,
  25566. bottom: 76 / 2750
  25567. }
  25568. },
  25569. },
  25570. [
  25571. {
  25572. name: "Macro",
  25573. height: math.unit(23.8, "meters"),
  25574. default: true
  25575. },
  25576. ]
  25577. ))
  25578. characterMakers.push(() => makeCharacter(
  25579. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25580. {
  25581. female: {
  25582. height: math.unit(19.3, "m"),
  25583. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25584. name: "Female",
  25585. image: {
  25586. source: "./media/characters/umok/female.svg",
  25587. extra: 2186 / 2078,
  25588. bottom: 87 / 2277
  25589. }
  25590. },
  25591. male: {
  25592. height: math.unit(19.5, "m"),
  25593. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25594. name: "Male",
  25595. image: {
  25596. source: "./media/characters/umok/male.svg",
  25597. extra: 2233 / 2140,
  25598. bottom: 24.4 / 2258
  25599. }
  25600. },
  25601. },
  25602. [
  25603. {
  25604. name: "Macro",
  25605. height: math.unit(19.3, "meters"),
  25606. default: true
  25607. },
  25608. ]
  25609. ))
  25610. characterMakers.push(() => makeCharacter(
  25611. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25612. {
  25613. female: {
  25614. height: math.unit(26.15, "m"),
  25615. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25616. name: "Female",
  25617. image: {
  25618. source: "./media/characters/joraxian/female.svg",
  25619. extra: 2912 / 2824,
  25620. bottom: 36 / 2956
  25621. }
  25622. },
  25623. male: {
  25624. height: math.unit(25.4, "m"),
  25625. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25626. name: "Male",
  25627. image: {
  25628. source: "./media/characters/joraxian/male.svg",
  25629. extra: 2877 / 2721,
  25630. bottom: 82 / 2967
  25631. }
  25632. },
  25633. },
  25634. [
  25635. {
  25636. name: "Macro",
  25637. height: math.unit(26.15, "meters"),
  25638. default: true
  25639. },
  25640. ]
  25641. ))
  25642. characterMakers.push(() => makeCharacter(
  25643. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25644. {
  25645. female: {
  25646. height: math.unit(21.6, "m"),
  25647. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25648. name: "Female",
  25649. image: {
  25650. source: "./media/characters/sthara/female.svg",
  25651. extra: 2516 / 2347,
  25652. bottom: 21.5 / 2537
  25653. }
  25654. },
  25655. male: {
  25656. height: math.unit(24, "m"),
  25657. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25658. name: "Male",
  25659. image: {
  25660. source: "./media/characters/sthara/male.svg",
  25661. extra: 2732 / 2607,
  25662. bottom: 23 / 2732
  25663. }
  25664. },
  25665. },
  25666. [
  25667. {
  25668. name: "Macro",
  25669. height: math.unit(21.6, "meters"),
  25670. default: true
  25671. },
  25672. ]
  25673. ))
  25674. characterMakers.push(() => makeCharacter(
  25675. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25676. {
  25677. front: {
  25678. height: math.unit(6 + 4 / 12, "feet"),
  25679. weight: math.unit(175, "lb"),
  25680. name: "Front",
  25681. image: {
  25682. source: "./media/characters/luka-bryzant/front.svg",
  25683. extra: 311 / 289,
  25684. bottom: 4 / 315
  25685. }
  25686. },
  25687. back: {
  25688. height: math.unit(6 + 4 / 12, "feet"),
  25689. weight: math.unit(175, "lb"),
  25690. name: "Back",
  25691. image: {
  25692. source: "./media/characters/luka-bryzant/back.svg",
  25693. extra: 311 / 289,
  25694. bottom: 3.8 / 313.7
  25695. }
  25696. },
  25697. },
  25698. [
  25699. {
  25700. name: "Micro",
  25701. height: math.unit(10, "inches")
  25702. },
  25703. {
  25704. name: "Normal",
  25705. height: math.unit(6 + 4 / 12, "feet"),
  25706. default: true
  25707. },
  25708. {
  25709. name: "Large",
  25710. height: math.unit(12, "feet")
  25711. },
  25712. ]
  25713. ))
  25714. characterMakers.push(() => makeCharacter(
  25715. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25716. {
  25717. front: {
  25718. height: math.unit(5 + 7 / 12, "feet"),
  25719. weight: math.unit(185, "lb"),
  25720. name: "Front",
  25721. image: {
  25722. source: "./media/characters/aman-aquila/front.svg",
  25723. extra: 1013 / 976,
  25724. bottom: 45.6 / 1057
  25725. }
  25726. },
  25727. side: {
  25728. height: math.unit(5 + 7 / 12, "feet"),
  25729. weight: math.unit(185, "lb"),
  25730. name: "Side",
  25731. image: {
  25732. source: "./media/characters/aman-aquila/side.svg",
  25733. extra: 1054 / 1011,
  25734. bottom: 15 / 1070
  25735. }
  25736. },
  25737. back: {
  25738. height: math.unit(5 + 7 / 12, "feet"),
  25739. weight: math.unit(185, "lb"),
  25740. name: "Back",
  25741. image: {
  25742. source: "./media/characters/aman-aquila/back.svg",
  25743. extra: 1026 / 970,
  25744. bottom: 12 / 1039
  25745. }
  25746. },
  25747. head: {
  25748. height: math.unit(1.211, "feet"),
  25749. name: "Head",
  25750. image: {
  25751. source: "./media/characters/aman-aquila/head.svg",
  25752. }
  25753. },
  25754. },
  25755. [
  25756. {
  25757. name: "Minimicro",
  25758. height: math.unit(0.057, "inches")
  25759. },
  25760. {
  25761. name: "Micro",
  25762. height: math.unit(7, "inches")
  25763. },
  25764. {
  25765. name: "Mini",
  25766. height: math.unit(3 + 7 / 12, "feet")
  25767. },
  25768. {
  25769. name: "Normal",
  25770. height: math.unit(5 + 7 / 12, "feet"),
  25771. default: true
  25772. },
  25773. {
  25774. name: "Macro",
  25775. height: math.unit(157 + 7 / 12, "feet")
  25776. },
  25777. {
  25778. name: "Megamacro",
  25779. height: math.unit(1557 + 7 / 12, "feet")
  25780. },
  25781. {
  25782. name: "Gigamacro",
  25783. height: math.unit(15557 + 7 / 12, "feet")
  25784. },
  25785. ]
  25786. ))
  25787. characterMakers.push(() => makeCharacter(
  25788. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25789. {
  25790. front: {
  25791. height: math.unit(3 + 2 / 12, "inches"),
  25792. weight: math.unit(0.3, "ounces"),
  25793. name: "Front",
  25794. image: {
  25795. source: "./media/characters/hiphae/front.svg",
  25796. extra: 1931 / 1683,
  25797. bottom: 24 / 1955
  25798. }
  25799. },
  25800. },
  25801. [
  25802. {
  25803. name: "Normal",
  25804. height: math.unit(3 + 1 / 2, "inches"),
  25805. default: true
  25806. },
  25807. ]
  25808. ))
  25809. characterMakers.push(() => makeCharacter(
  25810. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25811. {
  25812. front: {
  25813. height: math.unit(5 + 10 / 12, "feet"),
  25814. weight: math.unit(165, "lb"),
  25815. name: "Front",
  25816. image: {
  25817. source: "./media/characters/nicky/front.svg",
  25818. extra: 3144 / 2886,
  25819. bottom: 45.6 / 3192
  25820. }
  25821. },
  25822. back: {
  25823. height: math.unit(5 + 10 / 12, "feet"),
  25824. weight: math.unit(165, "lb"),
  25825. name: "Back",
  25826. image: {
  25827. source: "./media/characters/nicky/back.svg",
  25828. extra: 3055 / 2804,
  25829. bottom: 28.4 / 3087
  25830. }
  25831. },
  25832. frontclothed: {
  25833. height: math.unit(5 + 10 / 12, "feet"),
  25834. weight: math.unit(165, "lb"),
  25835. name: "Front-clothed",
  25836. image: {
  25837. source: "./media/characters/nicky/front-clothed.svg",
  25838. extra: 3184.9 / 2926.9,
  25839. bottom: 86.5 / 3239.9
  25840. }
  25841. },
  25842. foot: {
  25843. height: math.unit(1.16, "feet"),
  25844. name: "Foot",
  25845. image: {
  25846. source: "./media/characters/nicky/foot.svg"
  25847. }
  25848. },
  25849. feet: {
  25850. height: math.unit(1.34, "feet"),
  25851. name: "Feet",
  25852. image: {
  25853. source: "./media/characters/nicky/feet.svg"
  25854. }
  25855. },
  25856. maw: {
  25857. height: math.unit(0.9, "feet"),
  25858. name: "Maw",
  25859. image: {
  25860. source: "./media/characters/nicky/maw.svg"
  25861. }
  25862. },
  25863. },
  25864. [
  25865. {
  25866. name: "Normal",
  25867. height: math.unit(5 + 10 / 12, "feet"),
  25868. default: true
  25869. },
  25870. {
  25871. name: "Macro",
  25872. height: math.unit(60, "feet")
  25873. },
  25874. {
  25875. name: "Megamacro",
  25876. height: math.unit(1, "mile")
  25877. },
  25878. ]
  25879. ))
  25880. characterMakers.push(() => makeCharacter(
  25881. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25882. {
  25883. side: {
  25884. height: math.unit(10, "feet"),
  25885. weight: math.unit(600, "lb"),
  25886. name: "Side",
  25887. image: {
  25888. source: "./media/characters/blair/side.svg",
  25889. bottom: 16.6 / 475,
  25890. extra: 458 / 431
  25891. }
  25892. },
  25893. },
  25894. [
  25895. {
  25896. name: "Micro",
  25897. height: math.unit(8, "inches")
  25898. },
  25899. {
  25900. name: "Normal",
  25901. height: math.unit(10, "feet"),
  25902. default: true
  25903. },
  25904. {
  25905. name: "Macro",
  25906. height: math.unit(180, "feet")
  25907. },
  25908. ]
  25909. ))
  25910. characterMakers.push(() => makeCharacter(
  25911. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25912. {
  25913. front: {
  25914. height: math.unit(5 + 4 / 12, "feet"),
  25915. weight: math.unit(125, "lb"),
  25916. name: "Front",
  25917. image: {
  25918. source: "./media/characters/fisher/front.svg",
  25919. extra: 444 / 390,
  25920. bottom: 2 / 444.8
  25921. }
  25922. },
  25923. },
  25924. [
  25925. {
  25926. name: "Micro",
  25927. height: math.unit(4, "inches")
  25928. },
  25929. {
  25930. name: "Normal",
  25931. height: math.unit(5 + 4 / 12, "feet"),
  25932. default: true
  25933. },
  25934. {
  25935. name: "Macro",
  25936. height: math.unit(100, "feet")
  25937. },
  25938. ]
  25939. ))
  25940. characterMakers.push(() => makeCharacter(
  25941. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25942. {
  25943. front: {
  25944. height: math.unit(6.71, "feet"),
  25945. weight: math.unit(200, "lb"),
  25946. capacity: math.unit(1000000, "people"),
  25947. name: "Front",
  25948. image: {
  25949. source: "./media/characters/gliss/front.svg",
  25950. extra: 2347 / 2231,
  25951. bottom: 113 / 2462
  25952. }
  25953. },
  25954. hammerspaceSize: {
  25955. height: math.unit(6.71 * 717, "feet"),
  25956. weight: math.unit(200, "lb"),
  25957. capacity: math.unit(1000000, "people"),
  25958. name: "Hammerspace Size",
  25959. image: {
  25960. source: "./media/characters/gliss/front.svg",
  25961. extra: 2347 / 2231,
  25962. bottom: 113 / 2462
  25963. }
  25964. },
  25965. },
  25966. [
  25967. {
  25968. name: "Normal",
  25969. height: math.unit(6.71, "feet"),
  25970. default: true
  25971. },
  25972. ]
  25973. ))
  25974. characterMakers.push(() => makeCharacter(
  25975. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25976. {
  25977. side: {
  25978. height: math.unit(1.44, "m"),
  25979. weight: math.unit(80, "kg"),
  25980. name: "Side",
  25981. image: {
  25982. source: "./media/characters/dune-anderson/side.svg",
  25983. bottom: 49 / 1426
  25984. }
  25985. },
  25986. },
  25987. [
  25988. {
  25989. name: "Wolf-sized",
  25990. height: math.unit(1.44, "meters")
  25991. },
  25992. {
  25993. name: "Normal",
  25994. height: math.unit(5.05, "meters"),
  25995. default: true
  25996. },
  25997. {
  25998. name: "Big",
  25999. height: math.unit(14.4, "meters")
  26000. },
  26001. {
  26002. name: "Huge",
  26003. height: math.unit(144, "meters")
  26004. },
  26005. ]
  26006. ))
  26007. characterMakers.push(() => makeCharacter(
  26008. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26009. {
  26010. front: {
  26011. height: math.unit(7, "feet"),
  26012. weight: math.unit(425, "lb"),
  26013. name: "Front",
  26014. image: {
  26015. source: "./media/characters/hind/front.svg",
  26016. extra: 2091 / 1860,
  26017. bottom: 129 / 2220
  26018. }
  26019. },
  26020. back: {
  26021. height: math.unit(7, "feet"),
  26022. weight: math.unit(425, "lb"),
  26023. name: "Back",
  26024. image: {
  26025. source: "./media/characters/hind/back.svg",
  26026. extra: 2091 / 1860,
  26027. bottom: 24.6 / 2309
  26028. }
  26029. },
  26030. tail: {
  26031. height: math.unit(2.8, "feet"),
  26032. name: "Tail",
  26033. image: {
  26034. source: "./media/characters/hind/tail.svg"
  26035. }
  26036. },
  26037. head: {
  26038. height: math.unit(2.55, "feet"),
  26039. name: "Head",
  26040. image: {
  26041. source: "./media/characters/hind/head.svg"
  26042. }
  26043. },
  26044. },
  26045. [
  26046. {
  26047. name: "XS",
  26048. height: math.unit(0.7, "feet")
  26049. },
  26050. {
  26051. name: "Normal",
  26052. height: math.unit(7, "feet"),
  26053. default: true
  26054. },
  26055. {
  26056. name: "XL",
  26057. height: math.unit(70, "feet")
  26058. },
  26059. ]
  26060. ))
  26061. characterMakers.push(() => makeCharacter(
  26062. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26063. {
  26064. front: {
  26065. height: math.unit(2.1, "meters"),
  26066. weight: math.unit(150, "lb"),
  26067. name: "Front",
  26068. image: {
  26069. source: "./media/characters/tharquench-sizestealer/front.svg",
  26070. extra: 1605/1470,
  26071. bottom: 36/1641
  26072. }
  26073. },
  26074. frontAlt: {
  26075. height: math.unit(2.1, "meters"),
  26076. weight: math.unit(150, "lb"),
  26077. name: "Front (Alt)",
  26078. image: {
  26079. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26080. extra: 2318 / 2063,
  26081. bottom: 93.4 / 2410
  26082. }
  26083. },
  26084. },
  26085. [
  26086. {
  26087. name: "Nano",
  26088. height: math.unit(1, "mm")
  26089. },
  26090. {
  26091. name: "Micro",
  26092. height: math.unit(1, "cm")
  26093. },
  26094. {
  26095. name: "Normal",
  26096. height: math.unit(2.1, "meters"),
  26097. default: true
  26098. },
  26099. ]
  26100. ))
  26101. characterMakers.push(() => makeCharacter(
  26102. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26103. {
  26104. front: {
  26105. height: math.unit(7 + 5 / 12, "feet"),
  26106. weight: math.unit(357, "lb"),
  26107. name: "Front",
  26108. image: {
  26109. source: "./media/characters/solex-draconov/front.svg",
  26110. extra: 1993 / 1865,
  26111. bottom: 117 / 2111
  26112. }
  26113. },
  26114. },
  26115. [
  26116. {
  26117. name: "Natural Height",
  26118. height: math.unit(7 + 5 / 12, "feet"),
  26119. default: true
  26120. },
  26121. {
  26122. name: "Macro",
  26123. height: math.unit(350, "feet")
  26124. },
  26125. {
  26126. name: "Macro+",
  26127. height: math.unit(1000, "feet")
  26128. },
  26129. {
  26130. name: "Megamacro",
  26131. height: math.unit(20, "km")
  26132. },
  26133. {
  26134. name: "Megamacro+",
  26135. height: math.unit(1000, "km")
  26136. },
  26137. {
  26138. name: "Gigamacro",
  26139. height: math.unit(2.5, "Gm")
  26140. },
  26141. {
  26142. name: "Teramacro",
  26143. height: math.unit(15, "Tm")
  26144. },
  26145. {
  26146. name: "Galactic",
  26147. height: math.unit(30, "Zm")
  26148. },
  26149. {
  26150. name: "Universal",
  26151. height: math.unit(21000, "Ym")
  26152. },
  26153. {
  26154. name: "Omniversal",
  26155. height: math.unit(9.861e50, "Ym")
  26156. },
  26157. {
  26158. name: "Existential",
  26159. height: math.unit(1e300, "meters")
  26160. },
  26161. ]
  26162. ))
  26163. characterMakers.push(() => makeCharacter(
  26164. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26165. {
  26166. side: {
  26167. height: math.unit(25, "feet"),
  26168. weight: math.unit(90000, "lb"),
  26169. name: "Side",
  26170. image: {
  26171. source: "./media/characters/mandarax/side.svg",
  26172. extra: 614 / 332,
  26173. bottom: 55 / 630
  26174. }
  26175. },
  26176. lounging: {
  26177. height: math.unit(15.4, "feet"),
  26178. weight: math.unit(90000, "lb"),
  26179. name: "Lounging",
  26180. image: {
  26181. source: "./media/characters/mandarax/lounging.svg",
  26182. extra: 817/609,
  26183. bottom: 685/1502
  26184. }
  26185. },
  26186. head: {
  26187. height: math.unit(11.4, "feet"),
  26188. name: "Head",
  26189. image: {
  26190. source: "./media/characters/mandarax/head.svg"
  26191. }
  26192. },
  26193. belly: {
  26194. height: math.unit(33, "feet"),
  26195. name: "Belly",
  26196. capacity: math.unit(500, "people"),
  26197. image: {
  26198. source: "./media/characters/mandarax/belly.svg"
  26199. }
  26200. },
  26201. dick: {
  26202. height: math.unit(8.46, "feet"),
  26203. name: "Dick",
  26204. image: {
  26205. source: "./media/characters/mandarax/dick.svg"
  26206. }
  26207. },
  26208. top: {
  26209. height: math.unit(28, "meters"),
  26210. name: "Top",
  26211. image: {
  26212. source: "./media/characters/mandarax/top.svg"
  26213. }
  26214. },
  26215. },
  26216. [
  26217. {
  26218. name: "Normal",
  26219. height: math.unit(25, "feet"),
  26220. default: true
  26221. },
  26222. ]
  26223. ))
  26224. characterMakers.push(() => makeCharacter(
  26225. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26226. {
  26227. front: {
  26228. height: math.unit(5, "feet"),
  26229. weight: math.unit(90, "lb"),
  26230. name: "Front",
  26231. image: {
  26232. source: "./media/characters/pixil/front.svg",
  26233. extra: 2000 / 1618,
  26234. bottom: 12.3 / 2011
  26235. }
  26236. },
  26237. },
  26238. [
  26239. {
  26240. name: "Normal",
  26241. height: math.unit(5, "feet"),
  26242. default: true
  26243. },
  26244. {
  26245. name: "Megamacro",
  26246. height: math.unit(10, "miles"),
  26247. },
  26248. ]
  26249. ))
  26250. characterMakers.push(() => makeCharacter(
  26251. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26252. {
  26253. front: {
  26254. height: math.unit(7 + 2 / 12, "feet"),
  26255. weight: math.unit(200, "lb"),
  26256. name: "Front",
  26257. image: {
  26258. source: "./media/characters/angel/front.svg",
  26259. extra: 1830 / 1737,
  26260. bottom: 22.6 / 1854,
  26261. }
  26262. },
  26263. },
  26264. [
  26265. {
  26266. name: "Normal",
  26267. height: math.unit(7 + 2 / 12, "feet"),
  26268. default: true
  26269. },
  26270. {
  26271. name: "Macro",
  26272. height: math.unit(1000, "feet")
  26273. },
  26274. {
  26275. name: "Megamacro",
  26276. height: math.unit(2, "miles")
  26277. },
  26278. {
  26279. name: "Gigamacro",
  26280. height: math.unit(20, "earths")
  26281. },
  26282. ]
  26283. ))
  26284. characterMakers.push(() => makeCharacter(
  26285. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26286. {
  26287. front: {
  26288. height: math.unit(5, "feet"),
  26289. weight: math.unit(180, "lb"),
  26290. name: "Front",
  26291. image: {
  26292. source: "./media/characters/mekana/front.svg",
  26293. extra: 1671 / 1605,
  26294. bottom: 3.5 / 1691
  26295. }
  26296. },
  26297. side: {
  26298. height: math.unit(5, "feet"),
  26299. weight: math.unit(180, "lb"),
  26300. name: "Side",
  26301. image: {
  26302. source: "./media/characters/mekana/side.svg",
  26303. extra: 1671 / 1605,
  26304. bottom: 3.5 / 1691
  26305. }
  26306. },
  26307. back: {
  26308. height: math.unit(5, "feet"),
  26309. weight: math.unit(180, "lb"),
  26310. name: "Back",
  26311. image: {
  26312. source: "./media/characters/mekana/back.svg",
  26313. extra: 1671 / 1605,
  26314. bottom: 3.5 / 1691
  26315. }
  26316. },
  26317. },
  26318. [
  26319. {
  26320. name: "Normal",
  26321. height: math.unit(5, "feet"),
  26322. default: true
  26323. },
  26324. ]
  26325. ))
  26326. characterMakers.push(() => makeCharacter(
  26327. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26328. {
  26329. front: {
  26330. height: math.unit(4 + 6 / 12, "feet"),
  26331. weight: math.unit(80, "lb"),
  26332. name: "Front",
  26333. image: {
  26334. source: "./media/characters/pixie/front.svg",
  26335. extra: 1924 / 1825,
  26336. bottom: 22.4 / 1946
  26337. }
  26338. },
  26339. },
  26340. [
  26341. {
  26342. name: "Normal",
  26343. height: math.unit(4 + 6 / 12, "feet"),
  26344. default: true
  26345. },
  26346. {
  26347. name: "Macro",
  26348. height: math.unit(40, "feet")
  26349. },
  26350. ]
  26351. ))
  26352. characterMakers.push(() => makeCharacter(
  26353. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26354. {
  26355. front: {
  26356. height: math.unit(2.1, "meters"),
  26357. weight: math.unit(200, "lb"),
  26358. name: "Front",
  26359. image: {
  26360. source: "./media/characters/the-lascivious/front.svg",
  26361. extra: 1 / 0.893,
  26362. bottom: 3.5 / 573.7
  26363. }
  26364. },
  26365. },
  26366. [
  26367. {
  26368. name: "Human Scale",
  26369. height: math.unit(2.1, "meters")
  26370. },
  26371. {
  26372. name: "Wolxi Scale",
  26373. height: math.unit(46.2, "m"),
  26374. default: true
  26375. },
  26376. {
  26377. name: "Boinker of Buildings",
  26378. height: math.unit(10, "km")
  26379. },
  26380. {
  26381. name: "Shagger of Skyscrapers",
  26382. height: math.unit(40, "km")
  26383. },
  26384. {
  26385. name: "Banger of Boroughs",
  26386. height: math.unit(4000, "km")
  26387. },
  26388. {
  26389. name: "Screwer of States",
  26390. height: math.unit(100000, "km")
  26391. },
  26392. {
  26393. name: "Pounder of Planets",
  26394. height: math.unit(2000000, "km")
  26395. },
  26396. ]
  26397. ))
  26398. characterMakers.push(() => makeCharacter(
  26399. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26400. {
  26401. front: {
  26402. height: math.unit(6, "feet"),
  26403. weight: math.unit(150, "lb"),
  26404. name: "Front",
  26405. image: {
  26406. source: "./media/characters/aj/front.svg",
  26407. extra: 2039 / 1562,
  26408. bottom: 40 / 2079
  26409. }
  26410. },
  26411. },
  26412. [
  26413. {
  26414. name: "Normal",
  26415. height: math.unit(11 + 6 / 12, "feet"),
  26416. default: true
  26417. },
  26418. {
  26419. name: "Megamacro",
  26420. height: math.unit(60, "megameters")
  26421. },
  26422. ]
  26423. ))
  26424. characterMakers.push(() => makeCharacter(
  26425. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26426. {
  26427. side: {
  26428. height: math.unit(31 + 8 / 12, "feet"),
  26429. weight: math.unit(75000, "kg"),
  26430. name: "Side",
  26431. image: {
  26432. source: "./media/characters/koros/side.svg",
  26433. extra: 1442 / 1297,
  26434. bottom: 122.7 / 1562
  26435. }
  26436. },
  26437. dicksKingsCrown: {
  26438. height: math.unit(6, "feet"),
  26439. name: "Dicks (King's Crown)",
  26440. image: {
  26441. source: "./media/characters/koros/dicks-kings-crown.svg"
  26442. }
  26443. },
  26444. dicksTailSet: {
  26445. height: math.unit(3, "feet"),
  26446. name: "Dicks (Tail Set)",
  26447. image: {
  26448. source: "./media/characters/koros/dicks-tail-set.svg"
  26449. }
  26450. },
  26451. dickCumming: {
  26452. height: math.unit(7.98, "feet"),
  26453. name: "Dick (Cumming)",
  26454. image: {
  26455. source: "./media/characters/koros/dick-cumming.svg"
  26456. }
  26457. },
  26458. dicksBack: {
  26459. height: math.unit(5.9, "feet"),
  26460. name: "Dicks (Back)",
  26461. image: {
  26462. source: "./media/characters/koros/dicks-back.svg"
  26463. }
  26464. },
  26465. dicksFront: {
  26466. height: math.unit(3.72, "feet"),
  26467. name: "Dicks (Front)",
  26468. image: {
  26469. source: "./media/characters/koros/dicks-front.svg"
  26470. }
  26471. },
  26472. dicksPeeking: {
  26473. height: math.unit(3.0, "feet"),
  26474. name: "Dicks (Peeking)",
  26475. image: {
  26476. source: "./media/characters/koros/dicks-peeking.svg"
  26477. }
  26478. },
  26479. eye: {
  26480. height: math.unit(1.7, "feet"),
  26481. name: "Eye",
  26482. image: {
  26483. source: "./media/characters/koros/eye.svg"
  26484. }
  26485. },
  26486. headFront: {
  26487. height: math.unit(11.69, "feet"),
  26488. name: "Head (Front)",
  26489. image: {
  26490. source: "./media/characters/koros/head-front.svg"
  26491. }
  26492. },
  26493. headSide: {
  26494. height: math.unit(14, "feet"),
  26495. name: "Head (Side)",
  26496. image: {
  26497. source: "./media/characters/koros/head-side.svg"
  26498. }
  26499. },
  26500. leg: {
  26501. height: math.unit(17, "feet"),
  26502. name: "Leg",
  26503. image: {
  26504. source: "./media/characters/koros/leg.svg"
  26505. }
  26506. },
  26507. mawSide: {
  26508. height: math.unit(12.8, "feet"),
  26509. name: "Maw (Side)",
  26510. image: {
  26511. source: "./media/characters/koros/maw-side.svg"
  26512. }
  26513. },
  26514. mawSpitting: {
  26515. height: math.unit(17, "feet"),
  26516. name: "Maw (Spitting)",
  26517. image: {
  26518. source: "./media/characters/koros/maw-spitting.svg"
  26519. }
  26520. },
  26521. slit: {
  26522. height: math.unit(2.8, "feet"),
  26523. name: "Slit",
  26524. image: {
  26525. source: "./media/characters/koros/slit.svg"
  26526. }
  26527. },
  26528. stomach: {
  26529. height: math.unit(6.8, "feet"),
  26530. capacity: math.unit(20, "people"),
  26531. name: "Stomach",
  26532. image: {
  26533. source: "./media/characters/koros/stomach.svg"
  26534. }
  26535. },
  26536. wingspanBottom: {
  26537. height: math.unit(114, "feet"),
  26538. name: "Wingspan (Bottom)",
  26539. image: {
  26540. source: "./media/characters/koros/wingspan-bottom.svg"
  26541. }
  26542. },
  26543. wingspanTop: {
  26544. height: math.unit(104, "feet"),
  26545. name: "Wingspan (Top)",
  26546. image: {
  26547. source: "./media/characters/koros/wingspan-top.svg"
  26548. }
  26549. },
  26550. },
  26551. [
  26552. {
  26553. name: "Normal",
  26554. height: math.unit(31 + 8 / 12, "feet"),
  26555. default: true
  26556. },
  26557. ]
  26558. ))
  26559. characterMakers.push(() => makeCharacter(
  26560. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26561. {
  26562. front: {
  26563. height: math.unit(18 + 5 / 12, "feet"),
  26564. weight: math.unit(3750, "kg"),
  26565. name: "Front",
  26566. image: {
  26567. source: "./media/characters/vexx/front.svg",
  26568. extra: 426 / 396,
  26569. bottom: 31.5 / 458
  26570. }
  26571. },
  26572. maw: {
  26573. height: math.unit(6, "feet"),
  26574. name: "Maw",
  26575. image: {
  26576. source: "./media/characters/vexx/maw.svg"
  26577. }
  26578. },
  26579. },
  26580. [
  26581. {
  26582. name: "Normal",
  26583. height: math.unit(18 + 5 / 12, "feet"),
  26584. default: true
  26585. },
  26586. ]
  26587. ))
  26588. characterMakers.push(() => makeCharacter(
  26589. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26590. {
  26591. front: {
  26592. height: math.unit(17 + 6 / 12, "feet"),
  26593. weight: math.unit(150, "lb"),
  26594. name: "Front",
  26595. image: {
  26596. source: "./media/characters/baadra/front.svg",
  26597. extra: 1694/1553,
  26598. bottom: 179/1873
  26599. }
  26600. },
  26601. frontAlt: {
  26602. height: math.unit(17 + 6 / 12, "feet"),
  26603. weight: math.unit(150, "lb"),
  26604. name: "Front (Alt)",
  26605. image: {
  26606. source: "./media/characters/baadra/front-alt.svg",
  26607. extra: 3137 / 2890,
  26608. bottom: 168.4 / 3305
  26609. }
  26610. },
  26611. back: {
  26612. height: math.unit(17 + 6 / 12, "feet"),
  26613. weight: math.unit(150, "lb"),
  26614. name: "Back",
  26615. image: {
  26616. source: "./media/characters/baadra/back.svg",
  26617. extra: 3142 / 2890,
  26618. bottom: 220 / 3371
  26619. }
  26620. },
  26621. head: {
  26622. height: math.unit(5.45, "feet"),
  26623. name: "Head",
  26624. image: {
  26625. source: "./media/characters/baadra/head.svg"
  26626. }
  26627. },
  26628. headAngry: {
  26629. height: math.unit(4.95, "feet"),
  26630. name: "Head (Angry)",
  26631. image: {
  26632. source: "./media/characters/baadra/head-angry.svg"
  26633. }
  26634. },
  26635. headOpen: {
  26636. height: math.unit(6, "feet"),
  26637. name: "Head (Open)",
  26638. image: {
  26639. source: "./media/characters/baadra/head-open.svg"
  26640. }
  26641. },
  26642. },
  26643. [
  26644. {
  26645. name: "Normal",
  26646. height: math.unit(17 + 6 / 12, "feet"),
  26647. default: true
  26648. },
  26649. ]
  26650. ))
  26651. characterMakers.push(() => makeCharacter(
  26652. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26653. {
  26654. front: {
  26655. height: math.unit(7 + 3 / 12, "feet"),
  26656. weight: math.unit(180, "lb"),
  26657. name: "Front",
  26658. image: {
  26659. source: "./media/characters/juri/front.svg",
  26660. extra: 1401 / 1237,
  26661. bottom: 18.5 / 1418
  26662. }
  26663. },
  26664. side: {
  26665. height: math.unit(7 + 3 / 12, "feet"),
  26666. weight: math.unit(180, "lb"),
  26667. name: "Side",
  26668. image: {
  26669. source: "./media/characters/juri/side.svg",
  26670. extra: 1424 / 1242,
  26671. bottom: 18.5 / 1447
  26672. }
  26673. },
  26674. sitting: {
  26675. height: math.unit(6, "feet"),
  26676. weight: math.unit(180, "lb"),
  26677. name: "Sitting",
  26678. image: {
  26679. source: "./media/characters/juri/sitting.svg",
  26680. extra: 1270 / 1143,
  26681. bottom: 100 / 1343
  26682. }
  26683. },
  26684. back: {
  26685. height: math.unit(7 + 3 / 12, "feet"),
  26686. weight: math.unit(180, "lb"),
  26687. name: "Back",
  26688. image: {
  26689. source: "./media/characters/juri/back.svg",
  26690. extra: 1377 / 1240,
  26691. bottom: 23.7 / 1405
  26692. }
  26693. },
  26694. maw: {
  26695. height: math.unit(2.8, "feet"),
  26696. name: "Maw",
  26697. image: {
  26698. source: "./media/characters/juri/maw.svg"
  26699. }
  26700. },
  26701. stomach: {
  26702. height: math.unit(0.89, "feet"),
  26703. capacity: math.unit(4, "liters"),
  26704. name: "Stomach",
  26705. image: {
  26706. source: "./media/characters/juri/stomach.svg"
  26707. }
  26708. },
  26709. },
  26710. [
  26711. {
  26712. name: "Normal",
  26713. height: math.unit(7 + 3 / 12, "feet"),
  26714. default: true
  26715. },
  26716. ]
  26717. ))
  26718. characterMakers.push(() => makeCharacter(
  26719. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26720. {
  26721. fox: {
  26722. height: math.unit(5 + 6 / 12, "feet"),
  26723. weight: math.unit(140, "lb"),
  26724. name: "Fox",
  26725. image: {
  26726. source: "./media/characters/maxene-sita/fox.svg",
  26727. extra: 146 / 138,
  26728. bottom: 2.1 / 148.19
  26729. }
  26730. },
  26731. foxLaying: {
  26732. height: math.unit(1.70, "feet"),
  26733. weight: math.unit(140, "lb"),
  26734. name: "Fox (Laying)",
  26735. image: {
  26736. source: "./media/characters/maxene-sita/fox-laying.svg",
  26737. extra: 910 / 572,
  26738. bottom: 71 / 981
  26739. }
  26740. },
  26741. kitsune: {
  26742. height: math.unit(10, "feet"),
  26743. weight: math.unit(800, "lb"),
  26744. name: "Kitsune",
  26745. image: {
  26746. source: "./media/characters/maxene-sita/kitsune.svg",
  26747. extra: 185 / 176,
  26748. bottom: 4.7 / 189.9
  26749. }
  26750. },
  26751. hellhound: {
  26752. height: math.unit(10, "feet"),
  26753. weight: math.unit(700, "lb"),
  26754. name: "Hellhound",
  26755. image: {
  26756. source: "./media/characters/maxene-sita/hellhound.svg",
  26757. extra: 1600 / 1545,
  26758. bottom: 81 / 1681
  26759. }
  26760. },
  26761. },
  26762. [
  26763. {
  26764. name: "Normal",
  26765. height: math.unit(5 + 6 / 12, "feet"),
  26766. default: true
  26767. },
  26768. ]
  26769. ))
  26770. characterMakers.push(() => makeCharacter(
  26771. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26772. {
  26773. front: {
  26774. height: math.unit(3 + 4 / 12, "feet"),
  26775. weight: math.unit(70, "lb"),
  26776. name: "Front",
  26777. image: {
  26778. source: "./media/characters/maia/front.svg",
  26779. extra: 227 / 219.5,
  26780. bottom: 40 / 267
  26781. }
  26782. },
  26783. back: {
  26784. height: math.unit(3 + 4 / 12, "feet"),
  26785. weight: math.unit(70, "lb"),
  26786. name: "Back",
  26787. image: {
  26788. source: "./media/characters/maia/back.svg",
  26789. extra: 237 / 225
  26790. }
  26791. },
  26792. },
  26793. [
  26794. {
  26795. name: "Normal",
  26796. height: math.unit(3 + 4 / 12, "feet"),
  26797. default: true
  26798. },
  26799. ]
  26800. ))
  26801. characterMakers.push(() => makeCharacter(
  26802. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26803. {
  26804. front: {
  26805. height: math.unit(5 + 10 / 12, "feet"),
  26806. weight: math.unit(197, "lb"),
  26807. name: "Front",
  26808. image: {
  26809. source: "./media/characters/jabaro/front.svg",
  26810. extra: 225 / 216,
  26811. bottom: 5.06 / 230
  26812. }
  26813. },
  26814. back: {
  26815. height: math.unit(5 + 10 / 12, "feet"),
  26816. weight: math.unit(197, "lb"),
  26817. name: "Back",
  26818. image: {
  26819. source: "./media/characters/jabaro/back.svg",
  26820. extra: 225 / 219,
  26821. bottom: 1.9 / 227
  26822. }
  26823. },
  26824. },
  26825. [
  26826. {
  26827. name: "Normal",
  26828. height: math.unit(5 + 10 / 12, "feet"),
  26829. default: true
  26830. },
  26831. ]
  26832. ))
  26833. characterMakers.push(() => makeCharacter(
  26834. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26835. {
  26836. front: {
  26837. height: math.unit(5 + 8 / 12, "feet"),
  26838. weight: math.unit(139, "lb"),
  26839. name: "Front",
  26840. image: {
  26841. source: "./media/characters/risa/front.svg",
  26842. extra: 270 / 260,
  26843. bottom: 11.2 / 282
  26844. }
  26845. },
  26846. back: {
  26847. height: math.unit(5 + 8 / 12, "feet"),
  26848. weight: math.unit(139, "lb"),
  26849. name: "Back",
  26850. image: {
  26851. source: "./media/characters/risa/back.svg",
  26852. extra: 264 / 255,
  26853. bottom: 4 / 268
  26854. }
  26855. },
  26856. },
  26857. [
  26858. {
  26859. name: "Normal",
  26860. height: math.unit(5 + 8 / 12, "feet"),
  26861. default: true
  26862. },
  26863. ]
  26864. ))
  26865. characterMakers.push(() => makeCharacter(
  26866. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26867. {
  26868. front: {
  26869. height: math.unit(2 + 11 / 12, "feet"),
  26870. weight: math.unit(30, "lb"),
  26871. name: "Front",
  26872. image: {
  26873. source: "./media/characters/weatley/front.svg",
  26874. bottom: 10.7 / 414,
  26875. extra: 403.5 / 362
  26876. }
  26877. },
  26878. back: {
  26879. height: math.unit(2 + 11 / 12, "feet"),
  26880. weight: math.unit(30, "lb"),
  26881. name: "Back",
  26882. image: {
  26883. source: "./media/characters/weatley/back.svg",
  26884. bottom: 10.7 / 414,
  26885. extra: 403.5 / 362
  26886. }
  26887. },
  26888. },
  26889. [
  26890. {
  26891. name: "Normal",
  26892. height: math.unit(2 + 11 / 12, "feet"),
  26893. default: true
  26894. },
  26895. ]
  26896. ))
  26897. characterMakers.push(() => makeCharacter(
  26898. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26899. {
  26900. front: {
  26901. height: math.unit(5 + 2 / 12, "feet"),
  26902. weight: math.unit(50, "kg"),
  26903. name: "Front",
  26904. image: {
  26905. source: "./media/characters/mercury-crescent/front.svg",
  26906. extra: 1088 / 1033,
  26907. bottom: 18.9 / 1109
  26908. }
  26909. },
  26910. },
  26911. [
  26912. {
  26913. name: "Normal",
  26914. height: math.unit(5 + 2 / 12, "feet"),
  26915. default: true
  26916. },
  26917. ]
  26918. ))
  26919. characterMakers.push(() => makeCharacter(
  26920. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26921. {
  26922. front: {
  26923. height: math.unit(2, "feet"),
  26924. weight: math.unit(15, "kg"),
  26925. name: "Front",
  26926. image: {
  26927. source: "./media/characters/diamond-jones/front.svg",
  26928. extra: 727/723,
  26929. bottom: 46/773
  26930. }
  26931. },
  26932. },
  26933. [
  26934. {
  26935. name: "Normal",
  26936. height: math.unit(2, "feet"),
  26937. default: true
  26938. },
  26939. ]
  26940. ))
  26941. characterMakers.push(() => makeCharacter(
  26942. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26943. {
  26944. front: {
  26945. height: math.unit(3, "feet"),
  26946. weight: math.unit(30, "kg"),
  26947. name: "Front",
  26948. image: {
  26949. source: "./media/characters/sweet-bit/front.svg",
  26950. extra: 675 / 567,
  26951. bottom: 27.7 / 703
  26952. }
  26953. },
  26954. },
  26955. [
  26956. {
  26957. name: "Normal",
  26958. height: math.unit(3, "feet"),
  26959. default: true
  26960. },
  26961. ]
  26962. ))
  26963. characterMakers.push(() => makeCharacter(
  26964. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26965. {
  26966. side: {
  26967. height: math.unit(9.178, "feet"),
  26968. weight: math.unit(500, "lb"),
  26969. name: "Side",
  26970. image: {
  26971. source: "./media/characters/umbrazen/side.svg",
  26972. extra: 1730 / 1473,
  26973. bottom: 34.6 / 1765
  26974. }
  26975. },
  26976. },
  26977. [
  26978. {
  26979. name: "Normal",
  26980. height: math.unit(9.178, "feet"),
  26981. default: true
  26982. },
  26983. ]
  26984. ))
  26985. characterMakers.push(() => makeCharacter(
  26986. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26987. {
  26988. front: {
  26989. height: math.unit(10, "feet"),
  26990. weight: math.unit(750, "lb"),
  26991. name: "Front",
  26992. image: {
  26993. source: "./media/characters/arlist/front.svg",
  26994. extra: 961 / 778,
  26995. bottom: 6.2 / 986
  26996. }
  26997. },
  26998. },
  26999. [
  27000. {
  27001. name: "Normal",
  27002. height: math.unit(10, "feet"),
  27003. default: true
  27004. },
  27005. ]
  27006. ))
  27007. characterMakers.push(() => makeCharacter(
  27008. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27009. {
  27010. front: {
  27011. height: math.unit(5 + 1 / 12, "feet"),
  27012. weight: math.unit(110, "lb"),
  27013. name: "Front",
  27014. image: {
  27015. source: "./media/characters/aradel/front.svg",
  27016. extra: 324 / 303,
  27017. bottom: 3.6 / 329.4
  27018. }
  27019. },
  27020. },
  27021. [
  27022. {
  27023. name: "Normal",
  27024. height: math.unit(5 + 1 / 12, "feet"),
  27025. default: true
  27026. },
  27027. ]
  27028. ))
  27029. characterMakers.push(() => makeCharacter(
  27030. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27031. {
  27032. dressed: {
  27033. height: math.unit(3 + 8 / 12, "feet"),
  27034. weight: math.unit(50, "lb"),
  27035. name: "Dressed",
  27036. image: {
  27037. source: "./media/characters/serryn/dressed.svg",
  27038. extra: 1792 / 1656,
  27039. bottom: 43.5 / 1840
  27040. }
  27041. },
  27042. nude: {
  27043. height: math.unit(3 + 8 / 12, "feet"),
  27044. weight: math.unit(50, "lb"),
  27045. name: "Nude",
  27046. image: {
  27047. source: "./media/characters/serryn/nude.svg",
  27048. extra: 1792 / 1656,
  27049. bottom: 43.5 / 1840
  27050. }
  27051. },
  27052. },
  27053. [
  27054. {
  27055. name: "Normal",
  27056. height: math.unit(3 + 8 / 12, "feet"),
  27057. default: true
  27058. },
  27059. ]
  27060. ))
  27061. characterMakers.push(() => makeCharacter(
  27062. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27063. {
  27064. front: {
  27065. height: math.unit(7 + 10 / 12, "feet"),
  27066. weight: math.unit(255, "lb"),
  27067. name: "Front",
  27068. image: {
  27069. source: "./media/characters/xavier-thyme/front.svg",
  27070. extra: 3733 / 3642,
  27071. bottom: 131 / 3869
  27072. }
  27073. },
  27074. frontRaven: {
  27075. height: math.unit(7 + 10 / 12, "feet"),
  27076. weight: math.unit(255, "lb"),
  27077. name: "Front (Raven)",
  27078. image: {
  27079. source: "./media/characters/xavier-thyme/front-raven.svg",
  27080. extra: 4385 / 3642,
  27081. bottom: 131 / 4517
  27082. }
  27083. },
  27084. },
  27085. [
  27086. {
  27087. name: "Normal",
  27088. height: math.unit(7 + 10 / 12, "feet"),
  27089. default: true
  27090. },
  27091. ]
  27092. ))
  27093. characterMakers.push(() => makeCharacter(
  27094. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27095. {
  27096. front: {
  27097. height: math.unit(1.6, "m"),
  27098. weight: math.unit(50, "kg"),
  27099. name: "Front",
  27100. image: {
  27101. source: "./media/characters/kiki/front.svg",
  27102. extra: 4682 / 3610,
  27103. bottom: 115 / 4777
  27104. }
  27105. },
  27106. },
  27107. [
  27108. {
  27109. name: "Normal",
  27110. height: math.unit(1.6, "meters"),
  27111. default: true
  27112. },
  27113. ]
  27114. ))
  27115. characterMakers.push(() => makeCharacter(
  27116. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27117. {
  27118. front: {
  27119. height: math.unit(50, "m"),
  27120. weight: math.unit(500, "tonnes"),
  27121. name: "Front",
  27122. image: {
  27123. source: "./media/characters/ryoko/front.svg",
  27124. extra: 4632 / 3926,
  27125. bottom: 193 / 4823
  27126. }
  27127. },
  27128. },
  27129. [
  27130. {
  27131. name: "Normal",
  27132. height: math.unit(50, "meters"),
  27133. default: true
  27134. },
  27135. ]
  27136. ))
  27137. characterMakers.push(() => makeCharacter(
  27138. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27139. {
  27140. front: {
  27141. height: math.unit(30, "m"),
  27142. weight: math.unit(22, "tonnes"),
  27143. name: "Front",
  27144. image: {
  27145. source: "./media/characters/elio/front.svg",
  27146. extra: 4582 / 3720,
  27147. bottom: 236 / 4828
  27148. }
  27149. },
  27150. },
  27151. [
  27152. {
  27153. name: "Normal",
  27154. height: math.unit(30, "meters"),
  27155. default: true
  27156. },
  27157. ]
  27158. ))
  27159. characterMakers.push(() => makeCharacter(
  27160. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27161. {
  27162. front: {
  27163. height: math.unit(6 + 3 / 12, "feet"),
  27164. weight: math.unit(120, "lb"),
  27165. name: "Front",
  27166. image: {
  27167. source: "./media/characters/azura/front.svg",
  27168. extra: 1149 / 1135,
  27169. bottom: 45 / 1194
  27170. }
  27171. },
  27172. frontClothed: {
  27173. height: math.unit(6 + 3 / 12, "feet"),
  27174. weight: math.unit(120, "lb"),
  27175. name: "Front (Clothed)",
  27176. image: {
  27177. source: "./media/characters/azura/front-clothed.svg",
  27178. extra: 1149 / 1135,
  27179. bottom: 45 / 1194
  27180. }
  27181. },
  27182. },
  27183. [
  27184. {
  27185. name: "Normal",
  27186. height: math.unit(6 + 3 / 12, "feet"),
  27187. default: true
  27188. },
  27189. {
  27190. name: "Macro",
  27191. height: math.unit(20 + 6 / 12, "feet")
  27192. },
  27193. {
  27194. name: "Megamacro",
  27195. height: math.unit(12, "miles")
  27196. },
  27197. {
  27198. name: "Gigamacro",
  27199. height: math.unit(10000, "miles")
  27200. },
  27201. {
  27202. name: "Teramacro",
  27203. height: math.unit(900000, "miles")
  27204. },
  27205. ]
  27206. ))
  27207. characterMakers.push(() => makeCharacter(
  27208. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27209. {
  27210. front: {
  27211. height: math.unit(12, "feet"),
  27212. weight: math.unit(1, "ton"),
  27213. capacity: math.unit(660000, "gallons"),
  27214. name: "Front",
  27215. image: {
  27216. source: "./media/characters/zeus/front.svg",
  27217. extra: 5005 / 4717,
  27218. bottom: 363 / 5388
  27219. }
  27220. },
  27221. },
  27222. [
  27223. {
  27224. name: "Normal",
  27225. height: math.unit(12, "feet")
  27226. },
  27227. {
  27228. name: "Preferred Size",
  27229. height: math.unit(0.5, "miles"),
  27230. default: true
  27231. },
  27232. {
  27233. name: "Giga Horse",
  27234. height: math.unit(300, "miles")
  27235. },
  27236. {
  27237. name: "Riding Planets",
  27238. height: math.unit(30, "megameters")
  27239. },
  27240. {
  27241. name: "Cosmic Giant",
  27242. height: math.unit(3, "zettameters")
  27243. },
  27244. {
  27245. name: "Breeding God",
  27246. height: math.unit(9.92e22, "yottameters")
  27247. },
  27248. ]
  27249. ))
  27250. characterMakers.push(() => makeCharacter(
  27251. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27252. {
  27253. side: {
  27254. height: math.unit(9, "feet"),
  27255. weight: math.unit(1500, "kg"),
  27256. name: "Side",
  27257. image: {
  27258. source: "./media/characters/fang/side.svg",
  27259. extra: 924 / 866,
  27260. bottom: 47.5 / 972.3
  27261. }
  27262. },
  27263. },
  27264. [
  27265. {
  27266. name: "Normal",
  27267. height: math.unit(9, "feet"),
  27268. default: true
  27269. },
  27270. {
  27271. name: "Macro",
  27272. height: math.unit(75 + 6 / 12, "feet")
  27273. },
  27274. {
  27275. name: "Teramacro",
  27276. height: math.unit(50000, "miles")
  27277. },
  27278. ]
  27279. ))
  27280. characterMakers.push(() => makeCharacter(
  27281. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27282. {
  27283. front: {
  27284. height: math.unit(10, "feet"),
  27285. weight: math.unit(2, "tons"),
  27286. name: "Front",
  27287. image: {
  27288. source: "./media/characters/rekhit/front.svg",
  27289. extra: 2796 / 2590,
  27290. bottom: 225 / 3022
  27291. }
  27292. },
  27293. },
  27294. [
  27295. {
  27296. name: "Normal",
  27297. height: math.unit(10, "feet"),
  27298. default: true
  27299. },
  27300. {
  27301. name: "Macro",
  27302. height: math.unit(500, "feet")
  27303. },
  27304. ]
  27305. ))
  27306. characterMakers.push(() => makeCharacter(
  27307. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27308. {
  27309. front: {
  27310. height: math.unit(7 + 6.451 / 12, "feet"),
  27311. weight: math.unit(310, "lb"),
  27312. name: "Front",
  27313. image: {
  27314. source: "./media/characters/dahlia-verrick/front.svg",
  27315. extra: 1488 / 1365,
  27316. bottom: 6.2 / 1495
  27317. }
  27318. },
  27319. back: {
  27320. height: math.unit(7 + 6.451 / 12, "feet"),
  27321. weight: math.unit(310, "lb"),
  27322. name: "Back",
  27323. image: {
  27324. source: "./media/characters/dahlia-verrick/back.svg",
  27325. extra: 1472 / 1351,
  27326. bottom: 5.28 / 1477
  27327. }
  27328. },
  27329. frontBusiness: {
  27330. height: math.unit(7 + 6.451 / 12, "feet"),
  27331. weight: math.unit(200, "lb"),
  27332. name: "Front (Business)",
  27333. image: {
  27334. source: "./media/characters/dahlia-verrick/front-business.svg",
  27335. extra: 1478 / 1381,
  27336. bottom: 5.5 / 1484
  27337. }
  27338. },
  27339. frontCasual: {
  27340. height: math.unit(7 + 6.451 / 12, "feet"),
  27341. weight: math.unit(200, "lb"),
  27342. name: "Front (Casual)",
  27343. image: {
  27344. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27345. extra: 1478 / 1381,
  27346. bottom: 5.5 / 1484
  27347. }
  27348. },
  27349. },
  27350. [
  27351. {
  27352. name: "Travel-Sized",
  27353. height: math.unit(7.45, "inches")
  27354. },
  27355. {
  27356. name: "Normal",
  27357. height: math.unit(7 + 6.451 / 12, "feet"),
  27358. default: true
  27359. },
  27360. {
  27361. name: "Hitting the Town",
  27362. height: math.unit(37 + 8 / 12, "feet")
  27363. },
  27364. {
  27365. name: "Stomp in the Suburbs",
  27366. height: math.unit(964 + 9.728 / 12, "feet")
  27367. },
  27368. {
  27369. name: "Sit on the City",
  27370. height: math.unit(61747 + 10.592 / 12, "feet")
  27371. },
  27372. {
  27373. name: "Glomp the Globe",
  27374. height: math.unit(252919327 + 4.832 / 12, "feet")
  27375. },
  27376. ]
  27377. ))
  27378. characterMakers.push(() => makeCharacter(
  27379. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27380. {
  27381. front: {
  27382. height: math.unit(6 + 4 / 12, "feet"),
  27383. weight: math.unit(320, "lb"),
  27384. name: "Front",
  27385. image: {
  27386. source: "./media/characters/balina-mahigan/front.svg",
  27387. extra: 447 / 428,
  27388. bottom: 18 / 466
  27389. }
  27390. },
  27391. back: {
  27392. height: math.unit(6 + 4 / 12, "feet"),
  27393. weight: math.unit(320, "lb"),
  27394. name: "Back",
  27395. image: {
  27396. source: "./media/characters/balina-mahigan/back.svg",
  27397. extra: 445 / 428,
  27398. bottom: 4.07 / 448
  27399. }
  27400. },
  27401. arm: {
  27402. height: math.unit(1.88, "feet"),
  27403. name: "Arm",
  27404. image: {
  27405. source: "./media/characters/balina-mahigan/arm.svg"
  27406. }
  27407. },
  27408. backPort: {
  27409. height: math.unit(0.685, "feet"),
  27410. name: "Back Port",
  27411. image: {
  27412. source: "./media/characters/balina-mahigan/back-port.svg"
  27413. }
  27414. },
  27415. hoofpaw: {
  27416. height: math.unit(1.41, "feet"),
  27417. name: "Hoofpaw",
  27418. image: {
  27419. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27420. }
  27421. },
  27422. leftHandBack: {
  27423. height: math.unit(0.938, "feet"),
  27424. name: "Left Hand (Back)",
  27425. image: {
  27426. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27427. }
  27428. },
  27429. leftHandFront: {
  27430. height: math.unit(0.938, "feet"),
  27431. name: "Left Hand (Front)",
  27432. image: {
  27433. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27434. }
  27435. },
  27436. rightHandBack: {
  27437. height: math.unit(0.95, "feet"),
  27438. name: "Right Hand (Back)",
  27439. image: {
  27440. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27441. }
  27442. },
  27443. rightHandFront: {
  27444. height: math.unit(0.95, "feet"),
  27445. name: "Right Hand (Front)",
  27446. image: {
  27447. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27448. }
  27449. },
  27450. },
  27451. [
  27452. {
  27453. name: "Normal",
  27454. height: math.unit(6 + 4 / 12, "feet"),
  27455. default: true
  27456. },
  27457. ]
  27458. ))
  27459. characterMakers.push(() => makeCharacter(
  27460. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27461. {
  27462. front: {
  27463. height: math.unit(6, "feet"),
  27464. weight: math.unit(320, "lb"),
  27465. name: "Front",
  27466. image: {
  27467. source: "./media/characters/balina-mejeri/front.svg",
  27468. extra: 517 / 488,
  27469. bottom: 44.2 / 561
  27470. }
  27471. },
  27472. },
  27473. [
  27474. {
  27475. name: "Normal",
  27476. height: math.unit(6 + 4 / 12, "feet")
  27477. },
  27478. {
  27479. name: "Business",
  27480. height: math.unit(155, "feet"),
  27481. default: true
  27482. },
  27483. ]
  27484. ))
  27485. characterMakers.push(() => makeCharacter(
  27486. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27487. {
  27488. kneeling: {
  27489. height: math.unit(6 + 4 / 12, "feet"),
  27490. weight: math.unit(300 * 20, "lb"),
  27491. name: "Kneeling",
  27492. image: {
  27493. source: "./media/characters/balbarian/kneeling.svg",
  27494. extra: 922 / 862,
  27495. bottom: 42.4 / 965
  27496. }
  27497. },
  27498. },
  27499. [
  27500. {
  27501. name: "Normal",
  27502. height: math.unit(6 + 4 / 12, "feet")
  27503. },
  27504. {
  27505. name: "Treasured",
  27506. height: math.unit(18 + 9 / 12, "feet"),
  27507. default: true
  27508. },
  27509. {
  27510. name: "Macro",
  27511. height: math.unit(900, "feet")
  27512. },
  27513. ]
  27514. ))
  27515. characterMakers.push(() => makeCharacter(
  27516. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27517. {
  27518. front: {
  27519. height: math.unit(6 + 4 / 12, "feet"),
  27520. weight: math.unit(325, "lb"),
  27521. name: "Front",
  27522. image: {
  27523. source: "./media/characters/balina-amarini/front.svg",
  27524. extra: 415 / 403,
  27525. bottom: 19 / 433.4
  27526. }
  27527. },
  27528. back: {
  27529. height: math.unit(6 + 4 / 12, "feet"),
  27530. weight: math.unit(325, "lb"),
  27531. name: "Back",
  27532. image: {
  27533. source: "./media/characters/balina-amarini/back.svg",
  27534. extra: 415 / 403,
  27535. bottom: 13.5 / 432
  27536. }
  27537. },
  27538. overdrive: {
  27539. height: math.unit(6 + 4 / 12, "feet"),
  27540. weight: math.unit(400, "lb"),
  27541. name: "Overdrive",
  27542. image: {
  27543. source: "./media/characters/balina-amarini/overdrive.svg",
  27544. extra: 269 / 259,
  27545. bottom: 12 / 282
  27546. }
  27547. },
  27548. },
  27549. [
  27550. {
  27551. name: "Boom",
  27552. height: math.unit(9 + 10 / 12, "feet"),
  27553. default: true
  27554. },
  27555. {
  27556. name: "Macro",
  27557. height: math.unit(280, "feet")
  27558. },
  27559. ]
  27560. ))
  27561. characterMakers.push(() => makeCharacter(
  27562. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27563. {
  27564. goddess: {
  27565. height: math.unit(600, "feet"),
  27566. weight: math.unit(2000000, "tons"),
  27567. name: "Goddess",
  27568. image: {
  27569. source: "./media/characters/lady-kubwa/goddess.svg",
  27570. extra: 1240.5 / 1223,
  27571. bottom: 22 / 1263
  27572. }
  27573. },
  27574. goddesser: {
  27575. height: math.unit(900, "feet"),
  27576. weight: math.unit(20000000, "lb"),
  27577. name: "Goddess-er",
  27578. image: {
  27579. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27580. extra: 899 / 888,
  27581. bottom: 12.6 / 912
  27582. }
  27583. },
  27584. },
  27585. [
  27586. {
  27587. name: "Macro",
  27588. height: math.unit(600, "feet"),
  27589. default: true
  27590. },
  27591. {
  27592. name: "Megamacro",
  27593. height: math.unit(250, "miles")
  27594. },
  27595. ]
  27596. ))
  27597. characterMakers.push(() => makeCharacter(
  27598. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27599. {
  27600. front: {
  27601. height: math.unit(7 + 7 / 12, "feet"),
  27602. weight: math.unit(250, "lb"),
  27603. name: "Front",
  27604. image: {
  27605. source: "./media/characters/tala-grovehorn/front.svg",
  27606. extra: 2636 / 2525,
  27607. bottom: 147 / 2781
  27608. }
  27609. },
  27610. back: {
  27611. height: math.unit(7 + 7 / 12, "feet"),
  27612. weight: math.unit(250, "lb"),
  27613. name: "Back",
  27614. image: {
  27615. source: "./media/characters/tala-grovehorn/back.svg",
  27616. extra: 2635 / 2539,
  27617. bottom: 100 / 2732.8
  27618. }
  27619. },
  27620. mouth: {
  27621. height: math.unit(1.15, "feet"),
  27622. name: "Mouth",
  27623. image: {
  27624. source: "./media/characters/tala-grovehorn/mouth.svg"
  27625. }
  27626. },
  27627. dick: {
  27628. height: math.unit(2.36, "feet"),
  27629. name: "Dick",
  27630. image: {
  27631. source: "./media/characters/tala-grovehorn/dick.svg"
  27632. }
  27633. },
  27634. slit: {
  27635. height: math.unit(0.61, "feet"),
  27636. name: "Slit",
  27637. image: {
  27638. source: "./media/characters/tala-grovehorn/slit.svg"
  27639. }
  27640. },
  27641. },
  27642. [
  27643. ]
  27644. ))
  27645. characterMakers.push(() => makeCharacter(
  27646. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27647. {
  27648. front: {
  27649. height: math.unit(7 + 7 / 12, "feet"),
  27650. weight: math.unit(225, "lb"),
  27651. name: "Front",
  27652. image: {
  27653. source: "./media/characters/epona/front.svg",
  27654. extra: 2445 / 2290,
  27655. bottom: 251 / 2696
  27656. }
  27657. },
  27658. back: {
  27659. height: math.unit(7 + 7 / 12, "feet"),
  27660. weight: math.unit(225, "lb"),
  27661. name: "Back",
  27662. image: {
  27663. source: "./media/characters/epona/back.svg",
  27664. extra: 2546 / 2408,
  27665. bottom: 44 / 2589
  27666. }
  27667. },
  27668. genitals: {
  27669. height: math.unit(1.5, "feet"),
  27670. name: "Genitals",
  27671. image: {
  27672. source: "./media/characters/epona/genitals.svg"
  27673. }
  27674. },
  27675. },
  27676. [
  27677. {
  27678. name: "Normal",
  27679. height: math.unit(7 + 7 / 12, "feet"),
  27680. default: true
  27681. },
  27682. ]
  27683. ))
  27684. characterMakers.push(() => makeCharacter(
  27685. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27686. {
  27687. front: {
  27688. height: math.unit(7, "feet"),
  27689. weight: math.unit(518, "lb"),
  27690. name: "Front",
  27691. image: {
  27692. source: "./media/characters/avia-bloodbourn/front.svg",
  27693. extra: 1466 / 1350,
  27694. bottom: 65 / 1527
  27695. }
  27696. },
  27697. },
  27698. [
  27699. ]
  27700. ))
  27701. characterMakers.push(() => makeCharacter(
  27702. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27703. {
  27704. front: {
  27705. height: math.unit(9.35, "feet"),
  27706. weight: math.unit(600, "lb"),
  27707. name: "Front",
  27708. image: {
  27709. source: "./media/characters/amera/front.svg",
  27710. extra: 891 / 818,
  27711. bottom: 30 / 922.7
  27712. }
  27713. },
  27714. back: {
  27715. height: math.unit(9.35, "feet"),
  27716. weight: math.unit(600, "lb"),
  27717. name: "Back",
  27718. image: {
  27719. source: "./media/characters/amera/back.svg",
  27720. extra: 876 / 824,
  27721. bottom: 6.8 / 884
  27722. }
  27723. },
  27724. dick: {
  27725. height: math.unit(2.14, "feet"),
  27726. name: "Dick",
  27727. image: {
  27728. source: "./media/characters/amera/dick.svg"
  27729. }
  27730. },
  27731. },
  27732. [
  27733. {
  27734. name: "Normal",
  27735. height: math.unit(9.35, "feet"),
  27736. default: true
  27737. },
  27738. ]
  27739. ))
  27740. characterMakers.push(() => makeCharacter(
  27741. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27742. {
  27743. kneeling: {
  27744. height: math.unit(3 + 4 / 12, "feet"),
  27745. weight: math.unit(90, "lb"),
  27746. name: "Kneeling",
  27747. image: {
  27748. source: "./media/characters/rosewen/kneeling.svg",
  27749. extra: 1835 / 1571,
  27750. bottom: 27.7 / 1862
  27751. }
  27752. },
  27753. },
  27754. [
  27755. {
  27756. name: "Normal",
  27757. height: math.unit(3 + 4 / 12, "feet"),
  27758. default: true
  27759. },
  27760. ]
  27761. ))
  27762. characterMakers.push(() => makeCharacter(
  27763. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27764. {
  27765. front: {
  27766. height: math.unit(5 + 10 / 12, "feet"),
  27767. weight: math.unit(200, "lb"),
  27768. name: "Front",
  27769. image: {
  27770. source: "./media/characters/sabah/front.svg",
  27771. extra: 849 / 763,
  27772. bottom: 33.9 / 881
  27773. }
  27774. },
  27775. },
  27776. [
  27777. {
  27778. name: "Normal",
  27779. height: math.unit(5 + 10 / 12, "feet"),
  27780. default: true
  27781. },
  27782. ]
  27783. ))
  27784. characterMakers.push(() => makeCharacter(
  27785. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27786. {
  27787. front: {
  27788. height: math.unit(3 + 5 / 12, "feet"),
  27789. weight: math.unit(40, "kg"),
  27790. name: "Front",
  27791. image: {
  27792. source: "./media/characters/purple-flame/front.svg",
  27793. extra: 1577 / 1412,
  27794. bottom: 97 / 1694
  27795. }
  27796. },
  27797. frontDressed: {
  27798. height: math.unit(3 + 5 / 12, "feet"),
  27799. weight: math.unit(40, "kg"),
  27800. name: "Front (Dressed)",
  27801. image: {
  27802. source: "./media/characters/purple-flame/front-dressed.svg",
  27803. extra: 1577 / 1412,
  27804. bottom: 97 / 1694
  27805. }
  27806. },
  27807. headphones: {
  27808. height: math.unit(0.85, "feet"),
  27809. name: "Headphones",
  27810. image: {
  27811. source: "./media/characters/purple-flame/headphones.svg"
  27812. }
  27813. },
  27814. },
  27815. [
  27816. {
  27817. name: "Really Small",
  27818. height: math.unit(5, "cm")
  27819. },
  27820. {
  27821. name: "Micro",
  27822. height: math.unit(1 + 5 / 12, "feet")
  27823. },
  27824. {
  27825. name: "Normal",
  27826. height: math.unit(3 + 5 / 12, "feet"),
  27827. default: true
  27828. },
  27829. {
  27830. name: "Minimacro",
  27831. height: math.unit(125, "feet")
  27832. },
  27833. {
  27834. name: "Macro",
  27835. height: math.unit(0.5, "miles")
  27836. },
  27837. {
  27838. name: "Megamacro",
  27839. height: math.unit(50, "miles")
  27840. },
  27841. {
  27842. name: "Gigantic",
  27843. height: math.unit(750, "miles")
  27844. },
  27845. {
  27846. name: "Planetary",
  27847. height: math.unit(15000, "miles")
  27848. },
  27849. ]
  27850. ))
  27851. characterMakers.push(() => makeCharacter(
  27852. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27853. {
  27854. front: {
  27855. height: math.unit(14, "feet"),
  27856. weight: math.unit(959, "lb"),
  27857. name: "Front",
  27858. image: {
  27859. source: "./media/characters/arsenal/front.svg",
  27860. extra: 2357 / 2157,
  27861. bottom: 93 / 2458
  27862. }
  27863. },
  27864. },
  27865. [
  27866. {
  27867. name: "Normal",
  27868. height: math.unit(14, "feet"),
  27869. default: true
  27870. },
  27871. ]
  27872. ))
  27873. characterMakers.push(() => makeCharacter(
  27874. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27875. {
  27876. front: {
  27877. height: math.unit(6, "feet"),
  27878. weight: math.unit(150, "lb"),
  27879. name: "Front",
  27880. image: {
  27881. source: "./media/characters/adira/front.svg",
  27882. extra: 1078 / 1029,
  27883. bottom: 87 / 1166
  27884. }
  27885. },
  27886. },
  27887. [
  27888. {
  27889. name: "Micro",
  27890. height: math.unit(4, "inches"),
  27891. default: true
  27892. },
  27893. {
  27894. name: "Macro",
  27895. height: math.unit(50, "feet")
  27896. },
  27897. ]
  27898. ))
  27899. characterMakers.push(() => makeCharacter(
  27900. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27901. {
  27902. front: {
  27903. height: math.unit(16, "feet"),
  27904. weight: math.unit(1000, "lb"),
  27905. name: "Front",
  27906. image: {
  27907. source: "./media/characters/grim/front.svg",
  27908. extra: 622 / 614,
  27909. bottom: 18.1 / 642
  27910. }
  27911. },
  27912. back: {
  27913. height: math.unit(16, "feet"),
  27914. weight: math.unit(1000, "lb"),
  27915. name: "Back",
  27916. image: {
  27917. source: "./media/characters/grim/back.svg",
  27918. extra: 610.6 / 602,
  27919. bottom: 40.8 / 652
  27920. }
  27921. },
  27922. hunched: {
  27923. height: math.unit(9.75, "feet"),
  27924. weight: math.unit(1000, "lb"),
  27925. name: "Hunched",
  27926. image: {
  27927. source: "./media/characters/grim/hunched.svg",
  27928. extra: 304 / 297,
  27929. bottom: 35.4 / 394
  27930. }
  27931. },
  27932. },
  27933. [
  27934. {
  27935. name: "Normal",
  27936. height: math.unit(16, "feet"),
  27937. default: true
  27938. },
  27939. ]
  27940. ))
  27941. characterMakers.push(() => makeCharacter(
  27942. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27943. {
  27944. front: {
  27945. height: math.unit(2.3, "meters"),
  27946. weight: math.unit(300, "lb"),
  27947. name: "Front",
  27948. image: {
  27949. source: "./media/characters/sinja/front-sfw.svg",
  27950. extra: 1393 / 1294,
  27951. bottom: 70 / 1463
  27952. }
  27953. },
  27954. frontNsfw: {
  27955. height: math.unit(2.3, "meters"),
  27956. weight: math.unit(300, "lb"),
  27957. name: "Front (NSFW)",
  27958. image: {
  27959. source: "./media/characters/sinja/front-nsfw.svg",
  27960. extra: 1393 / 1294,
  27961. bottom: 70 / 1463
  27962. }
  27963. },
  27964. back: {
  27965. height: math.unit(2.3, "meters"),
  27966. weight: math.unit(300, "lb"),
  27967. name: "Back",
  27968. image: {
  27969. source: "./media/characters/sinja/back.svg",
  27970. extra: 1393 / 1294,
  27971. bottom: 70 / 1463
  27972. }
  27973. },
  27974. head: {
  27975. height: math.unit(1.771, "feet"),
  27976. name: "Head",
  27977. image: {
  27978. source: "./media/characters/sinja/head.svg"
  27979. }
  27980. },
  27981. slit: {
  27982. height: math.unit(0.8, "feet"),
  27983. name: "Slit",
  27984. image: {
  27985. source: "./media/characters/sinja/slit.svg"
  27986. }
  27987. },
  27988. },
  27989. [
  27990. {
  27991. name: "Normal",
  27992. height: math.unit(2.3, "meters")
  27993. },
  27994. {
  27995. name: "Macro",
  27996. height: math.unit(91, "meters"),
  27997. default: true
  27998. },
  27999. {
  28000. name: "Megamacro",
  28001. height: math.unit(91440, "meters")
  28002. },
  28003. {
  28004. name: "Gigamacro",
  28005. height: math.unit(60960000, "meters")
  28006. },
  28007. {
  28008. name: "Teramacro",
  28009. height: math.unit(9144000000, "meters")
  28010. },
  28011. ]
  28012. ))
  28013. characterMakers.push(() => makeCharacter(
  28014. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28015. {
  28016. front: {
  28017. height: math.unit(1.7, "meters"),
  28018. weight: math.unit(130, "lb"),
  28019. name: "Front",
  28020. image: {
  28021. source: "./media/characters/kyu/front.svg",
  28022. extra: 415 / 395,
  28023. bottom: 5 / 420
  28024. }
  28025. },
  28026. head: {
  28027. height: math.unit(1.75, "feet"),
  28028. name: "Head",
  28029. image: {
  28030. source: "./media/characters/kyu/head.svg"
  28031. }
  28032. },
  28033. foot: {
  28034. height: math.unit(0.81, "feet"),
  28035. name: "Foot",
  28036. image: {
  28037. source: "./media/characters/kyu/foot.svg"
  28038. }
  28039. },
  28040. },
  28041. [
  28042. {
  28043. name: "Normal",
  28044. height: math.unit(1.7, "meters")
  28045. },
  28046. {
  28047. name: "Macro",
  28048. height: math.unit(131, "feet"),
  28049. default: true
  28050. },
  28051. {
  28052. name: "Megamacro",
  28053. height: math.unit(91440, "meters")
  28054. },
  28055. {
  28056. name: "Gigamacro",
  28057. height: math.unit(60960000, "meters")
  28058. },
  28059. {
  28060. name: "Teramacro",
  28061. height: math.unit(9144000000, "meters")
  28062. },
  28063. ]
  28064. ))
  28065. characterMakers.push(() => makeCharacter(
  28066. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28067. {
  28068. front: {
  28069. height: math.unit(7 + 1 / 12, "feet"),
  28070. weight: math.unit(250, "lb"),
  28071. name: "Front",
  28072. image: {
  28073. source: "./media/characters/joey/front.svg",
  28074. extra: 1791 / 1537,
  28075. bottom: 28 / 1816
  28076. }
  28077. },
  28078. },
  28079. [
  28080. {
  28081. name: "Micro",
  28082. height: math.unit(3, "inches")
  28083. },
  28084. {
  28085. name: "Normal",
  28086. height: math.unit(7 + 1 / 12, "feet"),
  28087. default: true
  28088. },
  28089. ]
  28090. ))
  28091. characterMakers.push(() => makeCharacter(
  28092. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28093. {
  28094. front: {
  28095. height: math.unit(165, "cm"),
  28096. weight: math.unit(140, "lb"),
  28097. name: "Front",
  28098. image: {
  28099. source: "./media/characters/sam-evans/front.svg",
  28100. extra: 3417 / 3230,
  28101. bottom: 41.3 / 3417
  28102. }
  28103. },
  28104. frontSixTails: {
  28105. height: math.unit(165, "cm"),
  28106. weight: math.unit(140, "lb"),
  28107. name: "Front-six-tails",
  28108. image: {
  28109. source: "./media/characters/sam-evans/front-six-tails.svg",
  28110. extra: 3417 / 3230,
  28111. bottom: 41.3 / 3417
  28112. }
  28113. },
  28114. back: {
  28115. height: math.unit(165, "cm"),
  28116. weight: math.unit(140, "lb"),
  28117. name: "Back",
  28118. image: {
  28119. source: "./media/characters/sam-evans/back.svg",
  28120. extra: 3227 / 3032,
  28121. bottom: 6.8 / 3234
  28122. }
  28123. },
  28124. face: {
  28125. height: math.unit(0.68, "feet"),
  28126. name: "Face",
  28127. image: {
  28128. source: "./media/characters/sam-evans/face.svg"
  28129. }
  28130. },
  28131. },
  28132. [
  28133. {
  28134. name: "Normal",
  28135. height: math.unit(165, "cm"),
  28136. default: true
  28137. },
  28138. {
  28139. name: "Macro",
  28140. height: math.unit(100, "meters")
  28141. },
  28142. {
  28143. name: "Macro+",
  28144. height: math.unit(800, "meters")
  28145. },
  28146. {
  28147. name: "Macro++",
  28148. height: math.unit(3, "km")
  28149. },
  28150. {
  28151. name: "Macro+++",
  28152. height: math.unit(30, "km")
  28153. },
  28154. ]
  28155. ))
  28156. characterMakers.push(() => makeCharacter(
  28157. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28158. {
  28159. front: {
  28160. height: math.unit(10, "feet"),
  28161. weight: math.unit(750, "lb"),
  28162. name: "Front",
  28163. image: {
  28164. source: "./media/characters/juliet-a/front.svg",
  28165. extra: 1766 / 1720,
  28166. bottom: 43 / 1809
  28167. }
  28168. },
  28169. back: {
  28170. height: math.unit(10, "feet"),
  28171. weight: math.unit(750, "lb"),
  28172. name: "Back",
  28173. image: {
  28174. source: "./media/characters/juliet-a/back.svg",
  28175. extra: 1781 / 1734,
  28176. bottom: 35 / 1810,
  28177. }
  28178. },
  28179. },
  28180. [
  28181. {
  28182. name: "Normal",
  28183. height: math.unit(10, "feet"),
  28184. default: true
  28185. },
  28186. {
  28187. name: "Dragon Form",
  28188. height: math.unit(250, "feet")
  28189. },
  28190. {
  28191. name: "Macro",
  28192. height: math.unit(1000, "feet")
  28193. },
  28194. {
  28195. name: "Megamacro",
  28196. height: math.unit(10000, "feet")
  28197. }
  28198. ]
  28199. ))
  28200. characterMakers.push(() => makeCharacter(
  28201. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28202. {
  28203. regular: {
  28204. height: math.unit(7 + 3 / 12, "feet"),
  28205. weight: math.unit(260, "lb"),
  28206. name: "Regular",
  28207. image: {
  28208. source: "./media/characters/wild/regular.svg",
  28209. extra: 97.45 / 92,
  28210. bottom: 6.8 / 104.3
  28211. }
  28212. },
  28213. biggums: {
  28214. height: math.unit(8 + 6 / 12, "feet"),
  28215. weight: math.unit(425, "lb"),
  28216. name: "Biggums",
  28217. image: {
  28218. source: "./media/characters/wild/biggums.svg",
  28219. extra: 97.45 / 92,
  28220. bottom: 7.5 / 132.34
  28221. }
  28222. },
  28223. mawRegular: {
  28224. height: math.unit(1.24, "feet"),
  28225. name: "Maw (Regular)",
  28226. image: {
  28227. source: "./media/characters/wild/maw.svg"
  28228. }
  28229. },
  28230. mawBiggums: {
  28231. height: math.unit(1.47, "feet"),
  28232. name: "Maw (Biggums)",
  28233. image: {
  28234. source: "./media/characters/wild/maw.svg"
  28235. }
  28236. },
  28237. },
  28238. [
  28239. {
  28240. name: "Normal",
  28241. height: math.unit(7 + 3 / 12, "feet"),
  28242. default: true
  28243. },
  28244. ]
  28245. ))
  28246. characterMakers.push(() => makeCharacter(
  28247. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28248. {
  28249. front: {
  28250. height: math.unit(2.5, "meters"),
  28251. weight: math.unit(200, "kg"),
  28252. name: "Front",
  28253. image: {
  28254. source: "./media/characters/vidar/front.svg",
  28255. extra: 2994 / 2795,
  28256. bottom: 56 / 3061
  28257. }
  28258. },
  28259. back: {
  28260. height: math.unit(2.5, "meters"),
  28261. weight: math.unit(200, "kg"),
  28262. name: "Back",
  28263. image: {
  28264. source: "./media/characters/vidar/back.svg",
  28265. extra: 3131 / 2928,
  28266. bottom: 13.5 / 3141.5
  28267. }
  28268. },
  28269. feral: {
  28270. height: math.unit(2.5, "meters"),
  28271. weight: math.unit(2000, "kg"),
  28272. name: "Feral",
  28273. image: {
  28274. source: "./media/characters/vidar/feral.svg",
  28275. extra: 2790 / 1765,
  28276. bottom: 6 / 2796
  28277. }
  28278. },
  28279. },
  28280. [
  28281. {
  28282. name: "Normal",
  28283. height: math.unit(2.5, "meters"),
  28284. default: true
  28285. },
  28286. {
  28287. name: "Macro",
  28288. height: math.unit(100, "meters")
  28289. },
  28290. ]
  28291. ))
  28292. characterMakers.push(() => makeCharacter(
  28293. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28294. {
  28295. front: {
  28296. height: math.unit(5 + 9 / 12, "feet"),
  28297. weight: math.unit(120, "lb"),
  28298. name: "Front",
  28299. image: {
  28300. source: "./media/characters/ash/front.svg",
  28301. extra: 2189 / 1961,
  28302. bottom: 5.2 / 2194
  28303. }
  28304. },
  28305. },
  28306. [
  28307. {
  28308. name: "Normal",
  28309. height: math.unit(5 + 9 / 12, "feet"),
  28310. default: true
  28311. },
  28312. ]
  28313. ))
  28314. characterMakers.push(() => makeCharacter(
  28315. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28316. {
  28317. front: {
  28318. height: math.unit(9, "feet"),
  28319. weight: math.unit(10000, "lb"),
  28320. name: "Front",
  28321. image: {
  28322. source: "./media/characters/gygabite/front.svg",
  28323. bottom: 31.7 / 537.8,
  28324. extra: 505 / 370
  28325. }
  28326. },
  28327. },
  28328. [
  28329. {
  28330. name: "Normal",
  28331. height: math.unit(9, "feet"),
  28332. default: true
  28333. },
  28334. ]
  28335. ))
  28336. characterMakers.push(() => makeCharacter(
  28337. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  28338. {
  28339. front: {
  28340. height: math.unit(12, "feet"),
  28341. weight: math.unit(35000, "lb"),
  28342. name: "Front",
  28343. image: {
  28344. source: "./media/characters/p0tat0/front.svg",
  28345. extra: 1065 / 921,
  28346. bottom: 55.7 / 1121.25
  28347. }
  28348. },
  28349. },
  28350. [
  28351. {
  28352. name: "Normal",
  28353. height: math.unit(12, "feet"),
  28354. default: true
  28355. },
  28356. ]
  28357. ))
  28358. characterMakers.push(() => makeCharacter(
  28359. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28360. {
  28361. side: {
  28362. height: math.unit(6.5, "feet"),
  28363. weight: math.unit(800, "lb"),
  28364. name: "Side",
  28365. image: {
  28366. source: "./media/characters/dusk/side.svg",
  28367. extra: 615 / 373,
  28368. bottom: 53 / 664
  28369. }
  28370. },
  28371. sitting: {
  28372. height: math.unit(7, "feet"),
  28373. weight: math.unit(800, "lb"),
  28374. name: "Sitting",
  28375. image: {
  28376. source: "./media/characters/dusk/sitting.svg",
  28377. extra: 753 / 425,
  28378. bottom: 33 / 774
  28379. }
  28380. },
  28381. head: {
  28382. height: math.unit(6.1, "feet"),
  28383. name: "Head",
  28384. image: {
  28385. source: "./media/characters/dusk/head.svg"
  28386. }
  28387. },
  28388. },
  28389. [
  28390. {
  28391. name: "Normal",
  28392. height: math.unit(7, "feet"),
  28393. default: true
  28394. },
  28395. ]
  28396. ))
  28397. characterMakers.push(() => makeCharacter(
  28398. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28399. {
  28400. front: {
  28401. height: math.unit(15, "feet"),
  28402. weight: math.unit(7000, "lb"),
  28403. name: "Front",
  28404. image: {
  28405. source: "./media/characters/jay-direwolf/front.svg",
  28406. extra: 1810 / 1732,
  28407. bottom: 66 / 1892
  28408. }
  28409. },
  28410. },
  28411. [
  28412. {
  28413. name: "Normal",
  28414. height: math.unit(15, "feet"),
  28415. default: true
  28416. },
  28417. ]
  28418. ))
  28419. characterMakers.push(() => makeCharacter(
  28420. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28421. {
  28422. front: {
  28423. height: math.unit(4 + 9 / 12, "feet"),
  28424. weight: math.unit(130, "lb"),
  28425. name: "Front",
  28426. image: {
  28427. source: "./media/characters/anchovie/front.svg",
  28428. extra: 382 / 350,
  28429. bottom: 25 / 409
  28430. }
  28431. },
  28432. back: {
  28433. height: math.unit(4 + 9 / 12, "feet"),
  28434. weight: math.unit(130, "lb"),
  28435. name: "Back",
  28436. image: {
  28437. source: "./media/characters/anchovie/back.svg",
  28438. extra: 385 / 352,
  28439. bottom: 16.6 / 402
  28440. }
  28441. },
  28442. frontDressed: {
  28443. height: math.unit(4 + 9 / 12, "feet"),
  28444. weight: math.unit(130, "lb"),
  28445. name: "Front (Dressed)",
  28446. image: {
  28447. source: "./media/characters/anchovie/front-dressed.svg",
  28448. extra: 382 / 350,
  28449. bottom: 25 / 409
  28450. }
  28451. },
  28452. backDressed: {
  28453. height: math.unit(4 + 9 / 12, "feet"),
  28454. weight: math.unit(130, "lb"),
  28455. name: "Back (Dressed)",
  28456. image: {
  28457. source: "./media/characters/anchovie/back-dressed.svg",
  28458. extra: 385 / 352,
  28459. bottom: 16.6 / 402
  28460. }
  28461. },
  28462. },
  28463. [
  28464. {
  28465. name: "Micro",
  28466. height: math.unit(6.4, "inches")
  28467. },
  28468. {
  28469. name: "Normal",
  28470. height: math.unit(4 + 9 / 12, "feet"),
  28471. default: true
  28472. },
  28473. ]
  28474. ))
  28475. characterMakers.push(() => makeCharacter(
  28476. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28477. {
  28478. front: {
  28479. height: math.unit(2, "meters"),
  28480. weight: math.unit(180, "lb"),
  28481. name: "Front",
  28482. image: {
  28483. source: "./media/characters/acidrenamon/front.svg",
  28484. extra: 987 / 890,
  28485. bottom: 22.8 / 1009
  28486. }
  28487. },
  28488. back: {
  28489. height: math.unit(2, "meters"),
  28490. weight: math.unit(180, "lb"),
  28491. name: "Back",
  28492. image: {
  28493. source: "./media/characters/acidrenamon/back.svg",
  28494. extra: 983 / 891,
  28495. bottom: 8.4 / 992
  28496. }
  28497. },
  28498. head: {
  28499. height: math.unit(1.92, "feet"),
  28500. name: "Head",
  28501. image: {
  28502. source: "./media/characters/acidrenamon/head.svg"
  28503. }
  28504. },
  28505. rump: {
  28506. height: math.unit(1.72, "feet"),
  28507. name: "Rump",
  28508. image: {
  28509. source: "./media/characters/acidrenamon/rump.svg"
  28510. }
  28511. },
  28512. tail: {
  28513. height: math.unit(4.2, "feet"),
  28514. name: "Tail",
  28515. image: {
  28516. source: "./media/characters/acidrenamon/tail.svg"
  28517. }
  28518. },
  28519. },
  28520. [
  28521. {
  28522. name: "Normal",
  28523. height: math.unit(2, "meters"),
  28524. default: true
  28525. },
  28526. {
  28527. name: "Minimacro",
  28528. height: math.unit(7, "meters")
  28529. },
  28530. {
  28531. name: "Macro",
  28532. height: math.unit(200, "meters")
  28533. },
  28534. {
  28535. name: "Gigamacro",
  28536. height: math.unit(0.2, "earths")
  28537. },
  28538. ]
  28539. ))
  28540. characterMakers.push(() => makeCharacter(
  28541. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28542. {
  28543. front: {
  28544. height: math.unit(152, "feet"),
  28545. name: "Front",
  28546. image: {
  28547. source: "./media/characters/kenzie-lee/front.svg",
  28548. extra: 1869/1774,
  28549. bottom: 128/1997
  28550. }
  28551. },
  28552. side: {
  28553. height: math.unit(86, "feet"),
  28554. name: "Side",
  28555. image: {
  28556. source: "./media/characters/kenzie-lee/side.svg",
  28557. extra: 930/815,
  28558. bottom: 177/1107
  28559. }
  28560. },
  28561. paw: {
  28562. height: math.unit(15, "feet"),
  28563. name: "Paw",
  28564. image: {
  28565. source: "./media/characters/kenzie-lee/paw.svg"
  28566. }
  28567. },
  28568. },
  28569. [
  28570. {
  28571. name: "Kenzie Flea",
  28572. height: math.unit(2, "mm"),
  28573. default: true
  28574. },
  28575. {
  28576. name: "Micro",
  28577. height: math.unit(2, "inches")
  28578. },
  28579. {
  28580. name: "Normal",
  28581. height: math.unit(152, "feet")
  28582. },
  28583. {
  28584. name: "Megamacro",
  28585. height: math.unit(7, "miles")
  28586. },
  28587. {
  28588. name: "Gigamacro",
  28589. height: math.unit(8000, "miles")
  28590. },
  28591. ]
  28592. ))
  28593. characterMakers.push(() => makeCharacter(
  28594. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28595. {
  28596. front: {
  28597. height: math.unit(6, "feet"),
  28598. name: "Front",
  28599. image: {
  28600. source: "./media/characters/withers/front.svg",
  28601. extra: 1935/1760,
  28602. bottom: 72/2007
  28603. }
  28604. },
  28605. back: {
  28606. height: math.unit(6, "feet"),
  28607. name: "Back",
  28608. image: {
  28609. source: "./media/characters/withers/back.svg",
  28610. extra: 1944/1792,
  28611. bottom: 12/1956
  28612. }
  28613. },
  28614. dressed: {
  28615. height: math.unit(6, "feet"),
  28616. name: "Dressed",
  28617. image: {
  28618. source: "./media/characters/withers/dressed.svg",
  28619. extra: 1937/1765,
  28620. bottom: 73/2010
  28621. }
  28622. },
  28623. phase1: {
  28624. height: math.unit(1.1, "feet"),
  28625. name: "Phase 1",
  28626. image: {
  28627. source: "./media/characters/withers/phase-1.svg",
  28628. extra: 1885/1232,
  28629. bottom: 0/1885
  28630. }
  28631. },
  28632. phase2: {
  28633. height: math.unit(1.05, "feet"),
  28634. name: "Phase 2",
  28635. image: {
  28636. source: "./media/characters/withers/phase-2.svg",
  28637. extra: 1792/1090,
  28638. bottom: 0/1792
  28639. }
  28640. },
  28641. partyWipe: {
  28642. height: math.unit(1.1, "feet"),
  28643. name: "Party Wipe",
  28644. image: {
  28645. source: "./media/characters/withers/party-wipe.svg",
  28646. extra: 1864/1207,
  28647. bottom: 0/1864
  28648. }
  28649. },
  28650. },
  28651. [
  28652. {
  28653. name: "Macro",
  28654. height: math.unit(167, "feet"),
  28655. default: true
  28656. },
  28657. {
  28658. name: "Megamacro",
  28659. height: math.unit(15, "miles")
  28660. }
  28661. ]
  28662. ))
  28663. characterMakers.push(() => makeCharacter(
  28664. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28665. {
  28666. front: {
  28667. height: math.unit(6 + 7 / 12, "feet"),
  28668. weight: math.unit(250, "lb"),
  28669. name: "Front",
  28670. image: {
  28671. source: "./media/characters/nemoskii/front.svg",
  28672. extra: 2270 / 1734,
  28673. bottom: 86 / 2354
  28674. }
  28675. },
  28676. back: {
  28677. height: math.unit(6 + 7 / 12, "feet"),
  28678. weight: math.unit(250, "lb"),
  28679. name: "Back",
  28680. image: {
  28681. source: "./media/characters/nemoskii/back.svg",
  28682. extra: 1845 / 1788,
  28683. bottom: 10.5 / 1852
  28684. }
  28685. },
  28686. head: {
  28687. height: math.unit(1.31, "feet"),
  28688. name: "Head",
  28689. image: {
  28690. source: "./media/characters/nemoskii/head.svg"
  28691. }
  28692. },
  28693. },
  28694. [
  28695. {
  28696. name: "Micro",
  28697. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28698. },
  28699. {
  28700. name: "Normal",
  28701. height: math.unit(6 + 7 / 12, "feet"),
  28702. default: true
  28703. },
  28704. {
  28705. name: "Macro",
  28706. height: math.unit((6 + 7 / 12) * 150, "feet")
  28707. },
  28708. {
  28709. name: "Macro+",
  28710. height: math.unit((6 + 7 / 12) * 500, "feet")
  28711. },
  28712. {
  28713. name: "Megamacro",
  28714. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28715. },
  28716. ]
  28717. ))
  28718. characterMakers.push(() => makeCharacter(
  28719. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28720. {
  28721. front: {
  28722. height: math.unit(1, "mile"),
  28723. weight: math.unit(265261.9, "lb"),
  28724. name: "Front",
  28725. image: {
  28726. source: "./media/characters/shui/front.svg",
  28727. extra: 1633 / 1564,
  28728. bottom: 91.5 / 1726
  28729. }
  28730. },
  28731. },
  28732. [
  28733. {
  28734. name: "Macro",
  28735. height: math.unit(1, "mile"),
  28736. default: true
  28737. },
  28738. ]
  28739. ))
  28740. characterMakers.push(() => makeCharacter(
  28741. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28742. {
  28743. front: {
  28744. height: math.unit(12 + 6 / 12, "feet"),
  28745. weight: math.unit(1342, "lb"),
  28746. name: "Front",
  28747. image: {
  28748. source: "./media/characters/arokh-takakura/front.svg",
  28749. extra: 1089 / 1043,
  28750. bottom: 77.4 / 1176.7
  28751. }
  28752. },
  28753. back: {
  28754. height: math.unit(12 + 6 / 12, "feet"),
  28755. weight: math.unit(1342, "lb"),
  28756. name: "Back",
  28757. image: {
  28758. source: "./media/characters/arokh-takakura/back.svg",
  28759. extra: 1046 / 1019,
  28760. bottom: 102 / 1150
  28761. }
  28762. },
  28763. },
  28764. [
  28765. {
  28766. name: "Big",
  28767. height: math.unit(12 + 6 / 12, "feet"),
  28768. default: true
  28769. },
  28770. ]
  28771. ))
  28772. characterMakers.push(() => makeCharacter(
  28773. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28774. {
  28775. front: {
  28776. height: math.unit(5 + 6 / 12, "feet"),
  28777. weight: math.unit(150, "lb"),
  28778. name: "Front",
  28779. image: {
  28780. source: "./media/characters/theo/front.svg",
  28781. extra: 1184 / 1131,
  28782. bottom: 7.4 / 1191
  28783. }
  28784. },
  28785. },
  28786. [
  28787. {
  28788. name: "Micro",
  28789. height: math.unit(5, "inches")
  28790. },
  28791. {
  28792. name: "Normal",
  28793. height: math.unit(5 + 6 / 12, "feet"),
  28794. default: true
  28795. },
  28796. ]
  28797. ))
  28798. characterMakers.push(() => makeCharacter(
  28799. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28800. {
  28801. front: {
  28802. height: math.unit(5 + 9 / 12, "feet"),
  28803. weight: math.unit(130, "lb"),
  28804. name: "Front",
  28805. image: {
  28806. source: "./media/characters/cecelia-swift/front.svg",
  28807. extra: 502 / 484,
  28808. bottom: 23 / 523
  28809. }
  28810. },
  28811. back: {
  28812. height: math.unit(5 + 9 / 12, "feet"),
  28813. weight: math.unit(130, "lb"),
  28814. name: "Back",
  28815. image: {
  28816. source: "./media/characters/cecelia-swift/back.svg",
  28817. extra: 499 / 485,
  28818. bottom: 12 / 511
  28819. }
  28820. },
  28821. head: {
  28822. height: math.unit(0.90, "feet"),
  28823. name: "Head",
  28824. image: {
  28825. source: "./media/characters/cecelia-swift/head.svg"
  28826. }
  28827. },
  28828. rump: {
  28829. height: math.unit(1.75, "feet"),
  28830. name: "Rump",
  28831. image: {
  28832. source: "./media/characters/cecelia-swift/rump.svg"
  28833. }
  28834. },
  28835. },
  28836. [
  28837. {
  28838. name: "Normal",
  28839. height: math.unit(5 + 9 / 12, "feet"),
  28840. default: true
  28841. },
  28842. {
  28843. name: "Big",
  28844. height: math.unit(50, "feet")
  28845. },
  28846. {
  28847. name: "Macro",
  28848. height: math.unit(100, "feet")
  28849. },
  28850. {
  28851. name: "Macro+",
  28852. height: math.unit(500, "feet")
  28853. },
  28854. {
  28855. name: "Macro++",
  28856. height: math.unit(1000, "feet")
  28857. },
  28858. ]
  28859. ))
  28860. characterMakers.push(() => makeCharacter(
  28861. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28862. {
  28863. front: {
  28864. height: math.unit(6, "feet"),
  28865. weight: math.unit(150, "lb"),
  28866. name: "Front",
  28867. image: {
  28868. source: "./media/characters/kaunan/front.svg",
  28869. extra: 2890 / 2523,
  28870. bottom: 49 / 2939
  28871. }
  28872. },
  28873. },
  28874. [
  28875. {
  28876. name: "Macro",
  28877. height: math.unit(150, "feet"),
  28878. default: true
  28879. },
  28880. ]
  28881. ))
  28882. characterMakers.push(() => makeCharacter(
  28883. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28884. {
  28885. front: {
  28886. height: math.unit(175, "cm"),
  28887. weight: math.unit(60, "kg"),
  28888. name: "Front",
  28889. image: {
  28890. source: "./media/characters/fei/front.svg",
  28891. extra: 1873/1723,
  28892. bottom: 53/1926
  28893. }
  28894. },
  28895. },
  28896. [
  28897. {
  28898. name: "Mortal",
  28899. height: math.unit(175, "cm")
  28900. },
  28901. {
  28902. name: "Normal",
  28903. height: math.unit(3500, "m"),
  28904. default: true
  28905. },
  28906. {
  28907. name: "Stroll",
  28908. height: math.unit(17.5, "km")
  28909. },
  28910. {
  28911. name: "Showoff",
  28912. height: math.unit(175, "km")
  28913. },
  28914. ]
  28915. ))
  28916. characterMakers.push(() => makeCharacter(
  28917. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28918. {
  28919. front: {
  28920. height: math.unit(7, "feet"),
  28921. weight: math.unit(1000, "kg"),
  28922. name: "Front",
  28923. image: {
  28924. source: "./media/characters/edrax/front.svg",
  28925. extra: 2838 / 2550,
  28926. bottom: 130 / 2968
  28927. }
  28928. },
  28929. },
  28930. [
  28931. {
  28932. name: "Small",
  28933. height: math.unit(7, "feet")
  28934. },
  28935. {
  28936. name: "Normal",
  28937. height: math.unit(1500, "meters")
  28938. },
  28939. {
  28940. name: "Mega",
  28941. height: math.unit(12000000, "km"),
  28942. default: true
  28943. },
  28944. {
  28945. name: "Megamacro",
  28946. height: math.unit(10600000, "lightyears")
  28947. },
  28948. {
  28949. name: "Hypermacro",
  28950. height: math.unit(256, "yottameters")
  28951. },
  28952. ]
  28953. ))
  28954. characterMakers.push(() => makeCharacter(
  28955. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28956. {
  28957. front: {
  28958. height: math.unit(10, "feet"),
  28959. weight: math.unit(750, "lb"),
  28960. name: "Front",
  28961. image: {
  28962. source: "./media/characters/clove/front.svg",
  28963. extra: 1918/1751,
  28964. bottom: 52/1970
  28965. }
  28966. },
  28967. back: {
  28968. height: math.unit(10, "feet"),
  28969. weight: math.unit(750, "lb"),
  28970. name: "Back",
  28971. image: {
  28972. source: "./media/characters/clove/back.svg",
  28973. extra: 1912/1747,
  28974. bottom: 50/1962
  28975. }
  28976. },
  28977. },
  28978. [
  28979. {
  28980. name: "Normal",
  28981. height: math.unit(10, "feet"),
  28982. default: true
  28983. },
  28984. ]
  28985. ))
  28986. characterMakers.push(() => makeCharacter(
  28987. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28988. {
  28989. front: {
  28990. height: math.unit(4, "feet"),
  28991. weight: math.unit(50, "lb"),
  28992. name: "Front",
  28993. image: {
  28994. source: "./media/characters/alex-rabbit/front.svg",
  28995. extra: 507 / 458,
  28996. bottom: 18.5 / 527
  28997. }
  28998. },
  28999. back: {
  29000. height: math.unit(4, "feet"),
  29001. weight: math.unit(50, "lb"),
  29002. name: "Back",
  29003. image: {
  29004. source: "./media/characters/alex-rabbit/back.svg",
  29005. extra: 502 / 460,
  29006. bottom: 18.9 / 521
  29007. }
  29008. },
  29009. },
  29010. [
  29011. {
  29012. name: "Normal",
  29013. height: math.unit(4, "feet"),
  29014. default: true
  29015. },
  29016. ]
  29017. ))
  29018. characterMakers.push(() => makeCharacter(
  29019. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29020. {
  29021. front: {
  29022. height: math.unit(1 + 3 / 12, "feet"),
  29023. weight: math.unit(80, "lb"),
  29024. name: "Front",
  29025. image: {
  29026. source: "./media/characters/zander-rose/front.svg",
  29027. extra: 916 / 797,
  29028. bottom: 17 / 933
  29029. }
  29030. },
  29031. back: {
  29032. height: math.unit(1 + 3 / 12, "feet"),
  29033. weight: math.unit(80, "lb"),
  29034. name: "Back",
  29035. image: {
  29036. source: "./media/characters/zander-rose/back.svg",
  29037. extra: 903 / 779,
  29038. bottom: 31 / 934
  29039. }
  29040. },
  29041. },
  29042. [
  29043. {
  29044. name: "Normal",
  29045. height: math.unit(1 + 3 / 12, "feet"),
  29046. default: true
  29047. },
  29048. ]
  29049. ))
  29050. characterMakers.push(() => makeCharacter(
  29051. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29052. {
  29053. anthro: {
  29054. height: math.unit(6, "feet"),
  29055. weight: math.unit(150, "lb"),
  29056. name: "Anthro",
  29057. image: {
  29058. source: "./media/characters/razz/anthro.svg",
  29059. extra: 1437 / 1343,
  29060. bottom: 48 / 1485
  29061. }
  29062. },
  29063. feral: {
  29064. height: math.unit(6, "feet"),
  29065. weight: math.unit(150, "lb"),
  29066. name: "Feral",
  29067. image: {
  29068. source: "./media/characters/razz/feral.svg",
  29069. extra: 2569 / 1385,
  29070. bottom: 95 / 2664
  29071. }
  29072. },
  29073. },
  29074. [
  29075. {
  29076. name: "Normal",
  29077. height: math.unit(6, "feet"),
  29078. default: true
  29079. },
  29080. ]
  29081. ))
  29082. characterMakers.push(() => makeCharacter(
  29083. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29084. {
  29085. front: {
  29086. height: math.unit(9 + 4 / 12, "feet"),
  29087. weight: math.unit(500, "lb"),
  29088. name: "Front",
  29089. image: {
  29090. source: "./media/characters/morrigan/front.svg",
  29091. extra: 2707 / 2579,
  29092. bottom: 156 / 2863
  29093. }
  29094. },
  29095. },
  29096. [
  29097. {
  29098. name: "Normal",
  29099. height: math.unit(9 + 4 / 12, "feet"),
  29100. default: true
  29101. },
  29102. ]
  29103. ))
  29104. characterMakers.push(() => makeCharacter(
  29105. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29106. {
  29107. front: {
  29108. height: math.unit(5, "stories"),
  29109. weight: math.unit(4000, "lb"),
  29110. name: "Front",
  29111. image: {
  29112. source: "./media/characters/jenene/front.svg",
  29113. extra: 1780 / 1710,
  29114. bottom: 57 / 1837
  29115. }
  29116. },
  29117. },
  29118. [
  29119. {
  29120. name: "Normal",
  29121. height: math.unit(5, "stories"),
  29122. default: true
  29123. },
  29124. ]
  29125. ))
  29126. characterMakers.push(() => makeCharacter(
  29127. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29128. {
  29129. taurSfw: {
  29130. height: math.unit(10, "meters"),
  29131. weight: math.unit(17500, "kg"),
  29132. name: "Taur",
  29133. image: {
  29134. source: "./media/characters/faey/taur-sfw.svg",
  29135. extra: 1200 / 968,
  29136. bottom: 41 / 1241
  29137. }
  29138. },
  29139. chestmaw: {
  29140. height: math.unit(2.01, "meters"),
  29141. name: "Chestmaw",
  29142. image: {
  29143. source: "./media/characters/faey/chestmaw.svg"
  29144. }
  29145. },
  29146. foot: {
  29147. height: math.unit(2.43, "meters"),
  29148. name: "Foot",
  29149. image: {
  29150. source: "./media/characters/faey/foot.svg"
  29151. }
  29152. },
  29153. jaws: {
  29154. height: math.unit(1.66, "meters"),
  29155. name: "Jaws",
  29156. image: {
  29157. source: "./media/characters/faey/jaws.svg"
  29158. }
  29159. },
  29160. tongues: {
  29161. height: math.unit(2.01, "meters"),
  29162. name: "Tongues",
  29163. image: {
  29164. source: "./media/characters/faey/tongues.svg"
  29165. }
  29166. },
  29167. },
  29168. [
  29169. {
  29170. name: "Small",
  29171. height: math.unit(10, "meters"),
  29172. default: true
  29173. },
  29174. {
  29175. name: "Big",
  29176. height: math.unit(500000, "km")
  29177. },
  29178. ]
  29179. ))
  29180. characterMakers.push(() => makeCharacter(
  29181. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29182. {
  29183. front: {
  29184. height: math.unit(7, "feet"),
  29185. weight: math.unit(275, "lb"),
  29186. name: "Front",
  29187. image: {
  29188. source: "./media/characters/roku/front.svg",
  29189. extra: 903 / 878,
  29190. bottom: 37 / 940
  29191. }
  29192. },
  29193. },
  29194. [
  29195. {
  29196. name: "Normal",
  29197. height: math.unit(7, "feet"),
  29198. default: true
  29199. },
  29200. {
  29201. name: "Macro",
  29202. height: math.unit(500, "feet")
  29203. },
  29204. {
  29205. name: "Megamacro",
  29206. height: math.unit(200, "miles")
  29207. },
  29208. ]
  29209. ))
  29210. characterMakers.push(() => makeCharacter(
  29211. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29212. {
  29213. front: {
  29214. height: math.unit(6 + 2 / 12, "feet"),
  29215. weight: math.unit(150, "lb"),
  29216. name: "Front",
  29217. image: {
  29218. source: "./media/characters/lira/front.svg",
  29219. extra: 1727 / 1605,
  29220. bottom: 26 / 1753
  29221. }
  29222. },
  29223. back: {
  29224. height: math.unit(6 + 2 / 12, "feet"),
  29225. weight: math.unit(150, "lb"),
  29226. name: "Back",
  29227. image: {
  29228. source: "./media/characters/lira/back.svg",
  29229. extra: 1713/1621,
  29230. bottom: 20/1733
  29231. }
  29232. },
  29233. hand: {
  29234. height: math.unit(0.75, "feet"),
  29235. name: "Hand",
  29236. image: {
  29237. source: "./media/characters/lira/hand.svg"
  29238. }
  29239. },
  29240. maw: {
  29241. height: math.unit(0.65, "feet"),
  29242. name: "Maw",
  29243. image: {
  29244. source: "./media/characters/lira/maw.svg"
  29245. }
  29246. },
  29247. pawDigi: {
  29248. height: math.unit(1.6, "feet"),
  29249. name: "Paw Digi",
  29250. image: {
  29251. source: "./media/characters/lira/paw-digi.svg"
  29252. }
  29253. },
  29254. pawPlanti: {
  29255. height: math.unit(1.4, "feet"),
  29256. name: "Paw Planti",
  29257. image: {
  29258. source: "./media/characters/lira/paw-planti.svg"
  29259. }
  29260. },
  29261. },
  29262. [
  29263. {
  29264. name: "Normal",
  29265. height: math.unit(6 + 2 / 12, "feet"),
  29266. default: true
  29267. },
  29268. {
  29269. name: "Macro",
  29270. height: math.unit(100, "feet")
  29271. },
  29272. {
  29273. name: "Macro²",
  29274. height: math.unit(1600, "feet")
  29275. },
  29276. {
  29277. name: "Planetary",
  29278. height: math.unit(20, "earths")
  29279. },
  29280. ]
  29281. ))
  29282. characterMakers.push(() => makeCharacter(
  29283. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29284. {
  29285. front: {
  29286. height: math.unit(6, "feet"),
  29287. weight: math.unit(150, "lb"),
  29288. name: "Front",
  29289. image: {
  29290. source: "./media/characters/hadjet/front.svg",
  29291. extra: 1480 / 1346,
  29292. bottom: 26 / 1506
  29293. }
  29294. },
  29295. frontNsfw: {
  29296. height: math.unit(6, "feet"),
  29297. weight: math.unit(150, "lb"),
  29298. name: "Front (NSFW)",
  29299. image: {
  29300. source: "./media/characters/hadjet/front-nsfw.svg",
  29301. extra: 1440 / 1358,
  29302. bottom: 52 / 1492
  29303. }
  29304. },
  29305. },
  29306. [
  29307. {
  29308. name: "Macro",
  29309. height: math.unit(10, "stories"),
  29310. default: true
  29311. },
  29312. {
  29313. name: "Megamacro",
  29314. height: math.unit(1.5, "miles")
  29315. },
  29316. {
  29317. name: "Megamacro+",
  29318. height: math.unit(5, "miles")
  29319. },
  29320. ]
  29321. ))
  29322. characterMakers.push(() => makeCharacter(
  29323. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29324. {
  29325. side: {
  29326. height: math.unit(106, "feet"),
  29327. weight: math.unit(500, "tonnes"),
  29328. name: "Side",
  29329. image: {
  29330. source: "./media/characters/kodran/side.svg",
  29331. extra: 553 / 480,
  29332. bottom: 33 / 586
  29333. }
  29334. },
  29335. front: {
  29336. height: math.unit(132, "feet"),
  29337. weight: math.unit(500, "tonnes"),
  29338. name: "Front",
  29339. image: {
  29340. source: "./media/characters/kodran/front.svg",
  29341. extra: 667 / 643,
  29342. bottom: 42 / 709
  29343. }
  29344. },
  29345. flying: {
  29346. height: math.unit(350, "feet"),
  29347. weight: math.unit(500, "tonnes"),
  29348. name: "Flying",
  29349. image: {
  29350. source: "./media/characters/kodran/flying.svg"
  29351. }
  29352. },
  29353. foot: {
  29354. height: math.unit(33, "feet"),
  29355. name: "Foot",
  29356. image: {
  29357. source: "./media/characters/kodran/foot.svg"
  29358. }
  29359. },
  29360. footFront: {
  29361. height: math.unit(19, "feet"),
  29362. name: "Foot (Front)",
  29363. image: {
  29364. source: "./media/characters/kodran/foot-front.svg",
  29365. extra: 261 / 261,
  29366. bottom: 91 / 352
  29367. }
  29368. },
  29369. headFront: {
  29370. height: math.unit(53, "feet"),
  29371. name: "Head (Front)",
  29372. image: {
  29373. source: "./media/characters/kodran/head-front.svg"
  29374. }
  29375. },
  29376. headSide: {
  29377. height: math.unit(65, "feet"),
  29378. name: "Head (Side)",
  29379. image: {
  29380. source: "./media/characters/kodran/head-side.svg"
  29381. }
  29382. },
  29383. throat: {
  29384. height: math.unit(79, "feet"),
  29385. name: "Throat",
  29386. image: {
  29387. source: "./media/characters/kodran/throat.svg"
  29388. }
  29389. },
  29390. },
  29391. [
  29392. {
  29393. name: "Large",
  29394. height: math.unit(106, "feet"),
  29395. default: true
  29396. },
  29397. ]
  29398. ))
  29399. characterMakers.push(() => makeCharacter(
  29400. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29401. {
  29402. side: {
  29403. height: math.unit(11, "feet"),
  29404. weight: math.unit(150, "lb"),
  29405. name: "Side",
  29406. image: {
  29407. source: "./media/characters/pyxaron/side.svg",
  29408. extra: 305 / 195,
  29409. bottom: 17 / 322
  29410. }
  29411. },
  29412. },
  29413. [
  29414. {
  29415. name: "Normal",
  29416. height: math.unit(11, "feet"),
  29417. default: true
  29418. },
  29419. ]
  29420. ))
  29421. characterMakers.push(() => makeCharacter(
  29422. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29423. {
  29424. front: {
  29425. height: math.unit(6, "feet"),
  29426. weight: math.unit(150, "lb"),
  29427. name: "Front",
  29428. image: {
  29429. source: "./media/characters/meep/front.svg",
  29430. extra: 88 / 80,
  29431. bottom: 6 / 94
  29432. }
  29433. },
  29434. },
  29435. [
  29436. {
  29437. name: "Fun Sized",
  29438. height: math.unit(2, "inches"),
  29439. default: true
  29440. },
  29441. {
  29442. name: "Friend Sized",
  29443. height: math.unit(8, "inches")
  29444. },
  29445. ]
  29446. ))
  29447. characterMakers.push(() => makeCharacter(
  29448. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29449. {
  29450. front: {
  29451. height: math.unit(15, "feet"),
  29452. weight: math.unit(2500, "lb"),
  29453. name: "Front",
  29454. image: {
  29455. source: "./media/characters/holly-rabbit/front.svg",
  29456. extra: 1433 / 1233,
  29457. bottom: 125 / 1558
  29458. }
  29459. },
  29460. dick: {
  29461. height: math.unit(4.6, "feet"),
  29462. name: "Dick",
  29463. image: {
  29464. source: "./media/characters/holly-rabbit/dick.svg"
  29465. }
  29466. },
  29467. },
  29468. [
  29469. {
  29470. name: "Normal",
  29471. height: math.unit(15, "feet"),
  29472. default: true
  29473. },
  29474. {
  29475. name: "Macro",
  29476. height: math.unit(250, "feet")
  29477. },
  29478. {
  29479. name: "Macro+",
  29480. height: math.unit(2500, "feet")
  29481. },
  29482. ]
  29483. ))
  29484. characterMakers.push(() => makeCharacter(
  29485. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29486. {
  29487. front: {
  29488. height: math.unit(3.02, "meters"),
  29489. weight: math.unit(500, "kg"),
  29490. name: "Front",
  29491. image: {
  29492. source: "./media/characters/drena/front.svg",
  29493. extra: 282 / 243,
  29494. bottom: 8 / 290
  29495. }
  29496. },
  29497. side: {
  29498. height: math.unit(3.02, "meters"),
  29499. weight: math.unit(500, "kg"),
  29500. name: "Side",
  29501. image: {
  29502. source: "./media/characters/drena/side.svg",
  29503. extra: 280 / 245,
  29504. bottom: 10 / 290
  29505. }
  29506. },
  29507. back: {
  29508. height: math.unit(3.02, "meters"),
  29509. weight: math.unit(500, "kg"),
  29510. name: "Back",
  29511. image: {
  29512. source: "./media/characters/drena/back.svg",
  29513. extra: 278 / 243,
  29514. bottom: 2 / 280
  29515. }
  29516. },
  29517. foot: {
  29518. height: math.unit(0.75, "meters"),
  29519. name: "Foot",
  29520. image: {
  29521. source: "./media/characters/drena/foot.svg"
  29522. }
  29523. },
  29524. maw: {
  29525. height: math.unit(0.82, "meters"),
  29526. name: "Maw",
  29527. image: {
  29528. source: "./media/characters/drena/maw.svg"
  29529. }
  29530. },
  29531. eating: {
  29532. height: math.unit(0.75, "meters"),
  29533. name: "Eating",
  29534. image: {
  29535. source: "./media/characters/drena/eating.svg"
  29536. }
  29537. },
  29538. rump: {
  29539. height: math.unit(0.93, "meters"),
  29540. name: "Rump",
  29541. image: {
  29542. source: "./media/characters/drena/rump.svg"
  29543. }
  29544. },
  29545. },
  29546. [
  29547. {
  29548. name: "Normal",
  29549. height: math.unit(3.02, "meters"),
  29550. default: true
  29551. },
  29552. ]
  29553. ))
  29554. characterMakers.push(() => makeCharacter(
  29555. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29556. {
  29557. front: {
  29558. height: math.unit(6 + 4 / 12, "feet"),
  29559. weight: math.unit(250, "lb"),
  29560. name: "Front",
  29561. image: {
  29562. source: "./media/characters/remmyzilla/front.svg",
  29563. extra: 4033 / 3588,
  29564. bottom: 123 / 4156
  29565. }
  29566. },
  29567. back: {
  29568. height: math.unit(6 + 4 / 12, "feet"),
  29569. weight: math.unit(250, "lb"),
  29570. name: "Back",
  29571. image: {
  29572. source: "./media/characters/remmyzilla/back.svg",
  29573. extra: 2687 / 2555,
  29574. bottom: 48 / 2735
  29575. }
  29576. },
  29577. paw: {
  29578. height: math.unit(1.73, "feet"),
  29579. name: "Paw",
  29580. image: {
  29581. source: "./media/characters/remmyzilla/paw.svg"
  29582. }
  29583. },
  29584. maw: {
  29585. height: math.unit(1.73, "feet"),
  29586. name: "Maw",
  29587. image: {
  29588. source: "./media/characters/remmyzilla/maw.svg"
  29589. }
  29590. },
  29591. },
  29592. [
  29593. {
  29594. name: "Normal",
  29595. height: math.unit(6 + 4 / 12, "feet")
  29596. },
  29597. {
  29598. name: "Minimacro",
  29599. height: math.unit(12 + 8 / 12, "feet")
  29600. },
  29601. {
  29602. name: "Normal",
  29603. height: math.unit(640, "feet"),
  29604. default: true
  29605. },
  29606. {
  29607. name: "Megamacro",
  29608. height: math.unit(6400, "feet")
  29609. },
  29610. {
  29611. name: "Gigamacro",
  29612. height: math.unit(64000, "miles")
  29613. },
  29614. ]
  29615. ))
  29616. characterMakers.push(() => makeCharacter(
  29617. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29618. {
  29619. front: {
  29620. height: math.unit(2.5, "meters"),
  29621. weight: math.unit(300, "lb"),
  29622. name: "Front",
  29623. image: {
  29624. source: "./media/characters/lawrence/front.svg",
  29625. extra: 357 / 335,
  29626. bottom: 30 / 387
  29627. }
  29628. },
  29629. back: {
  29630. height: math.unit(2.5, "meters"),
  29631. weight: math.unit(300, "lb"),
  29632. name: "Back",
  29633. image: {
  29634. source: "./media/characters/lawrence/back.svg",
  29635. extra: 357 / 338,
  29636. bottom: 16 / 373
  29637. }
  29638. },
  29639. head: {
  29640. height: math.unit(0.9, "meter"),
  29641. name: "Head",
  29642. image: {
  29643. source: "./media/characters/lawrence/head.svg"
  29644. }
  29645. },
  29646. maw: {
  29647. height: math.unit(0.7, "meter"),
  29648. name: "Maw",
  29649. image: {
  29650. source: "./media/characters/lawrence/maw.svg"
  29651. }
  29652. },
  29653. footBottom: {
  29654. height: math.unit(0.5, "meter"),
  29655. name: "Foot (Bottom)",
  29656. image: {
  29657. source: "./media/characters/lawrence/foot-bottom.svg"
  29658. }
  29659. },
  29660. footTop: {
  29661. height: math.unit(0.5, "meter"),
  29662. name: "Foot (Top)",
  29663. image: {
  29664. source: "./media/characters/lawrence/foot-top.svg"
  29665. }
  29666. },
  29667. },
  29668. [
  29669. {
  29670. name: "Normal",
  29671. height: math.unit(2.5, "meters"),
  29672. default: true
  29673. },
  29674. {
  29675. name: "Macro",
  29676. height: math.unit(95, "meters")
  29677. },
  29678. {
  29679. name: "Megamacro",
  29680. height: math.unit(150, "km")
  29681. },
  29682. ]
  29683. ))
  29684. characterMakers.push(() => makeCharacter(
  29685. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29686. {
  29687. front: {
  29688. height: math.unit(4.2, "meters"),
  29689. name: "Front",
  29690. image: {
  29691. source: "./media/characters/sydney/front.svg",
  29692. extra: 1323 / 1277,
  29693. bottom: 111 / 1434
  29694. }
  29695. },
  29696. },
  29697. [
  29698. {
  29699. name: "Normal",
  29700. height: math.unit(4.2, "meters"),
  29701. default: true
  29702. },
  29703. ]
  29704. ))
  29705. characterMakers.push(() => makeCharacter(
  29706. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29707. {
  29708. back: {
  29709. height: math.unit(201, "feet"),
  29710. name: "Back",
  29711. image: {
  29712. source: "./media/characters/jessica/back.svg",
  29713. extra: 273 / 259,
  29714. bottom: 7 / 280
  29715. }
  29716. },
  29717. },
  29718. [
  29719. {
  29720. name: "Normal",
  29721. height: math.unit(201, "feet"),
  29722. default: true
  29723. },
  29724. {
  29725. name: "Megamacro",
  29726. height: math.unit(8, "miles")
  29727. },
  29728. ]
  29729. ))
  29730. characterMakers.push(() => makeCharacter(
  29731. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29732. {
  29733. side: {
  29734. height: math.unit(5.6, "m"),
  29735. weight: math.unit(8000, "kg"),
  29736. name: "Side",
  29737. image: {
  29738. source: "./media/characters/victoria/side.svg",
  29739. extra: 1542/1229,
  29740. bottom: 124/1666
  29741. }
  29742. },
  29743. maw: {
  29744. height: math.unit(7.14, "feet"),
  29745. name: "Maw",
  29746. image: {
  29747. source: "./media/characters/victoria/maw.svg"
  29748. }
  29749. },
  29750. },
  29751. [
  29752. {
  29753. name: "Normal",
  29754. height: math.unit(5.6, "m"),
  29755. default: true
  29756. },
  29757. ]
  29758. ))
  29759. characterMakers.push(() => makeCharacter(
  29760. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29761. {
  29762. front: {
  29763. height: math.unit(5 + 6 / 12, "feet"),
  29764. name: "Front",
  29765. image: {
  29766. source: "./media/characters/cat/front.svg",
  29767. extra: 1449/1295,
  29768. bottom: 34/1483
  29769. },
  29770. form: "cat",
  29771. default: true
  29772. },
  29773. back: {
  29774. height: math.unit(5 + 6 / 12, "feet"),
  29775. name: "Back",
  29776. image: {
  29777. source: "./media/characters/cat/back.svg",
  29778. extra: 1466/1301,
  29779. bottom: 19/1485
  29780. },
  29781. form: "cat"
  29782. },
  29783. taur: {
  29784. height: math.unit(7, "feet"),
  29785. name: "Taur",
  29786. image: {
  29787. source: "./media/characters/cat/taur.svg",
  29788. extra: 1389/1233,
  29789. bottom: 83/1472
  29790. },
  29791. form: "taur",
  29792. default: true
  29793. },
  29794. lucarioFront: {
  29795. height: math.unit(4, "feet"),
  29796. name: "Lucario (Front)",
  29797. image: {
  29798. source: "./media/characters/cat/lucario-front.svg",
  29799. extra: 1149/1019,
  29800. bottom: 84/1233
  29801. },
  29802. form: "lucario",
  29803. default: true
  29804. },
  29805. lucarioBack: {
  29806. height: math.unit(4, "feet"),
  29807. name: "Lucario (Back)",
  29808. image: {
  29809. source: "./media/characters/cat/lucario-back.svg",
  29810. extra: 1190/1059,
  29811. bottom: 33/1223
  29812. },
  29813. form: "lucario"
  29814. },
  29815. megaLucario: {
  29816. height: math.unit(4, "feet"),
  29817. name: "Mega Lucario",
  29818. image: {
  29819. source: "./media/characters/cat/mega-lucario.svg",
  29820. extra: 1515 / 1319,
  29821. bottom: 63 / 1578
  29822. },
  29823. form: "lucario"
  29824. },
  29825. nickit: {
  29826. height: math.unit(2, "feet"),
  29827. name: "Nickit",
  29828. image: {
  29829. source: "./media/characters/cat/nickit.svg",
  29830. extra: 1980 / 1585,
  29831. bottom: 102 / 2082
  29832. },
  29833. form: "nickit",
  29834. default: true
  29835. },
  29836. lopunnyFront: {
  29837. height: math.unit(5, "feet"),
  29838. name: "Lopunny (Front)",
  29839. image: {
  29840. source: "./media/characters/cat/lopunny-front.svg",
  29841. extra: 1782 / 1469,
  29842. bottom: 38 / 1820
  29843. },
  29844. form: "lopunny",
  29845. default: true
  29846. },
  29847. lopunnyBack: {
  29848. height: math.unit(5, "feet"),
  29849. name: "Lopunny (Back)",
  29850. image: {
  29851. source: "./media/characters/cat/lopunny-back.svg",
  29852. extra: 1660 / 1490,
  29853. bottom: 25 / 1685
  29854. },
  29855. form: "lopunny"
  29856. },
  29857. },
  29858. [
  29859. {
  29860. name: "Really small",
  29861. height: math.unit(1, "nm")
  29862. },
  29863. {
  29864. name: "Micro",
  29865. height: math.unit(5, "inches")
  29866. },
  29867. {
  29868. name: "Normal",
  29869. height: math.unit(5 + 6 / 12, "feet"),
  29870. default: true
  29871. },
  29872. {
  29873. name: "Macro",
  29874. height: math.unit(50, "feet")
  29875. },
  29876. {
  29877. name: "Macro+",
  29878. height: math.unit(150, "feet")
  29879. },
  29880. {
  29881. name: "Megamacro",
  29882. height: math.unit(100, "miles")
  29883. },
  29884. ]
  29885. ))
  29886. characterMakers.push(() => makeCharacter(
  29887. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29888. {
  29889. front: {
  29890. height: math.unit(63.4, "meters"),
  29891. weight: math.unit(3.28349e+6, "kilograms"),
  29892. name: "Front",
  29893. image: {
  29894. source: "./media/characters/kirina-violet/front.svg",
  29895. extra: 2812 / 2725,
  29896. bottom: 0 / 2812
  29897. }
  29898. },
  29899. back: {
  29900. height: math.unit(63.4, "meters"),
  29901. weight: math.unit(3.28349e+6, "kilograms"),
  29902. name: "Back",
  29903. image: {
  29904. source: "./media/characters/kirina-violet/back.svg",
  29905. extra: 2812 / 2725,
  29906. bottom: 0 / 2812
  29907. }
  29908. },
  29909. mouth: {
  29910. height: math.unit(4.35, "meters"),
  29911. name: "Mouth",
  29912. image: {
  29913. source: "./media/characters/kirina-violet/mouth.svg"
  29914. }
  29915. },
  29916. paw: {
  29917. height: math.unit(5.6, "meters"),
  29918. name: "Paw",
  29919. image: {
  29920. source: "./media/characters/kirina-violet/paw.svg"
  29921. }
  29922. },
  29923. tail: {
  29924. height: math.unit(18, "meters"),
  29925. name: "Tail",
  29926. image: {
  29927. source: "./media/characters/kirina-violet/tail.svg"
  29928. }
  29929. },
  29930. },
  29931. [
  29932. {
  29933. name: "Macro",
  29934. height: math.unit(63.4, "meters"),
  29935. default: true
  29936. },
  29937. ]
  29938. ))
  29939. characterMakers.push(() => makeCharacter(
  29940. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29941. {
  29942. front: {
  29943. height: math.unit(75, "feet"),
  29944. name: "Front",
  29945. image: {
  29946. source: "./media/characters/cat-gigachu/front.svg",
  29947. extra: 1239/1027,
  29948. bottom: 32/1271
  29949. }
  29950. },
  29951. back: {
  29952. height: math.unit(75, "feet"),
  29953. name: "Back",
  29954. image: {
  29955. source: "./media/characters/cat-gigachu/back.svg",
  29956. extra: 1229/1030,
  29957. bottom: 9/1238
  29958. }
  29959. },
  29960. },
  29961. [
  29962. {
  29963. name: "Dynamax",
  29964. height: math.unit(75, "feet"),
  29965. default: true
  29966. },
  29967. ]
  29968. ))
  29969. characterMakers.push(() => makeCharacter(
  29970. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29971. {
  29972. front: {
  29973. height: math.unit(6, "feet"),
  29974. weight: math.unit(150, "lb"),
  29975. name: "Front",
  29976. image: {
  29977. source: "./media/characters/sfaiyan/front.svg",
  29978. extra: 999 / 978,
  29979. bottom: 5 / 1004
  29980. }
  29981. },
  29982. },
  29983. [
  29984. {
  29985. name: "Normal",
  29986. height: math.unit(1.82, "meters")
  29987. },
  29988. {
  29989. name: "Giant",
  29990. height: math.unit(2.27, "km"),
  29991. default: true
  29992. },
  29993. ]
  29994. ))
  29995. characterMakers.push(() => makeCharacter(
  29996. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29997. {
  29998. front: {
  29999. height: math.unit(179, "cm"),
  30000. weight: math.unit(100, "kg"),
  30001. name: "Front",
  30002. image: {
  30003. source: "./media/characters/raunehkeli/front.svg",
  30004. extra: 1934 / 1926,
  30005. bottom: 0 / 1934
  30006. }
  30007. },
  30008. },
  30009. [
  30010. {
  30011. name: "Normal",
  30012. height: math.unit(179, "cm")
  30013. },
  30014. {
  30015. name: "Maximum",
  30016. height: math.unit(575, "meters"),
  30017. default: true
  30018. },
  30019. ]
  30020. ))
  30021. characterMakers.push(() => makeCharacter(
  30022. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30023. {
  30024. front: {
  30025. height: math.unit(6, "feet"),
  30026. weight: math.unit(150, "lb"),
  30027. name: "Front",
  30028. image: {
  30029. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30030. extra: 2625 / 2518,
  30031. bottom: 60 / 2685
  30032. }
  30033. },
  30034. },
  30035. [
  30036. {
  30037. name: "Normal",
  30038. height: math.unit(6 + 2 / 12, "feet")
  30039. },
  30040. {
  30041. name: "Macro",
  30042. height: math.unit(1180, "feet"),
  30043. default: true
  30044. },
  30045. ]
  30046. ))
  30047. characterMakers.push(() => makeCharacter(
  30048. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30049. {
  30050. front: {
  30051. height: math.unit(5 + 6 / 12, "feet"),
  30052. weight: math.unit(108, "lb"),
  30053. name: "Front",
  30054. image: {
  30055. source: "./media/characters/lilith-zott/front.svg",
  30056. extra: 2510 / 2238,
  30057. bottom: 100 / 2610
  30058. }
  30059. },
  30060. frontDressed: {
  30061. height: math.unit(5 + 6 / 12, "feet"),
  30062. weight: math.unit(108, "lb"),
  30063. name: "Front (Dressed)",
  30064. image: {
  30065. source: "./media/characters/lilith-zott/front-dressed.svg",
  30066. extra: 2510 / 2238,
  30067. bottom: 100 / 2610
  30068. }
  30069. },
  30070. },
  30071. [
  30072. {
  30073. name: "Normal",
  30074. height: math.unit(5 + 6 / 12, "feet")
  30075. },
  30076. {
  30077. name: "Macro",
  30078. height: math.unit(1030, "feet"),
  30079. default: true
  30080. },
  30081. ]
  30082. ))
  30083. characterMakers.push(() => makeCharacter(
  30084. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30085. {
  30086. front: {
  30087. height: math.unit(6, "feet"),
  30088. weight: math.unit(150, "lb"),
  30089. name: "Front",
  30090. image: {
  30091. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30092. extra: 2567 / 2435,
  30093. bottom: 39 / 2606
  30094. }
  30095. },
  30096. frontSuper: {
  30097. height: math.unit(6, "feet"),
  30098. name: "Front (Super)",
  30099. image: {
  30100. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30101. extra: 2567 / 2435,
  30102. bottom: 39 / 2606
  30103. }
  30104. },
  30105. },
  30106. [
  30107. {
  30108. name: "Normal",
  30109. height: math.unit(5 + 10 / 12, "feet")
  30110. },
  30111. {
  30112. name: "Macro",
  30113. height: math.unit(1100, "feet"),
  30114. default: true
  30115. },
  30116. ]
  30117. ))
  30118. characterMakers.push(() => makeCharacter(
  30119. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30120. {
  30121. front: {
  30122. height: math.unit(100, "miles"),
  30123. name: "Front",
  30124. image: {
  30125. source: "./media/characters/sona/front.svg",
  30126. extra: 2433 / 2201,
  30127. bottom: 53 / 2486
  30128. }
  30129. },
  30130. foot: {
  30131. height: math.unit(16.1, "miles"),
  30132. name: "Foot",
  30133. image: {
  30134. source: "./media/characters/sona/foot.svg"
  30135. }
  30136. },
  30137. },
  30138. [
  30139. {
  30140. name: "Macro",
  30141. height: math.unit(100, "miles"),
  30142. default: true
  30143. },
  30144. ]
  30145. ))
  30146. characterMakers.push(() => makeCharacter(
  30147. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30148. {
  30149. front: {
  30150. height: math.unit(6, "feet"),
  30151. weight: math.unit(150, "lb"),
  30152. name: "Front",
  30153. image: {
  30154. source: "./media/characters/bailey/front.svg",
  30155. extra: 1778 / 1724,
  30156. bottom: 30 / 1808
  30157. }
  30158. },
  30159. },
  30160. [
  30161. {
  30162. name: "Micro",
  30163. height: math.unit(4, "inches")
  30164. },
  30165. {
  30166. name: "Normal",
  30167. height: math.unit(5 + 5 / 12, "feet"),
  30168. default: true
  30169. },
  30170. {
  30171. name: "Macro",
  30172. height: math.unit(250, "feet")
  30173. },
  30174. {
  30175. name: "Megamacro",
  30176. height: math.unit(100, "miles")
  30177. },
  30178. ]
  30179. ))
  30180. characterMakers.push(() => makeCharacter(
  30181. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30182. {
  30183. front: {
  30184. height: math.unit(5 + 2 / 12, "feet"),
  30185. weight: math.unit(120, "lb"),
  30186. name: "Front",
  30187. image: {
  30188. source: "./media/characters/snaps/front.svg",
  30189. extra: 2370 / 2177,
  30190. bottom: 48 / 2418
  30191. }
  30192. },
  30193. back: {
  30194. height: math.unit(5 + 2 / 12, "feet"),
  30195. weight: math.unit(120, "lb"),
  30196. name: "Back",
  30197. image: {
  30198. source: "./media/characters/snaps/back.svg",
  30199. extra: 2408 / 2258,
  30200. bottom: 15 / 2423
  30201. }
  30202. },
  30203. },
  30204. [
  30205. {
  30206. name: "Micro",
  30207. height: math.unit(9, "inches")
  30208. },
  30209. {
  30210. name: "Normal",
  30211. height: math.unit(5 + 2 / 12, "feet"),
  30212. default: true
  30213. },
  30214. {
  30215. name: "Mini Macro",
  30216. height: math.unit(10, "feet")
  30217. },
  30218. ]
  30219. ))
  30220. characterMakers.push(() => makeCharacter(
  30221. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30222. {
  30223. front: {
  30224. height: math.unit(1.8, "meters"),
  30225. weight: math.unit(85, "kg"),
  30226. name: "Front",
  30227. image: {
  30228. source: "./media/characters/azteck/front.svg",
  30229. extra: 2815 / 2625,
  30230. bottom: 89 / 2904
  30231. }
  30232. },
  30233. back: {
  30234. height: math.unit(1.8, "meters"),
  30235. weight: math.unit(85, "kg"),
  30236. name: "Back",
  30237. image: {
  30238. source: "./media/characters/azteck/back.svg",
  30239. extra: 2856 / 2648,
  30240. bottom: 85 / 2941
  30241. }
  30242. },
  30243. frontDressed: {
  30244. height: math.unit(1.8, "meters"),
  30245. weight: math.unit(85, "kg"),
  30246. name: "Front (Dressed)",
  30247. image: {
  30248. source: "./media/characters/azteck/front-dressed.svg",
  30249. extra: 2147 / 2003,
  30250. bottom: 68 / 2215
  30251. }
  30252. },
  30253. head: {
  30254. height: math.unit(0.47, "meters"),
  30255. weight: math.unit(85, "kg"),
  30256. name: "Head",
  30257. image: {
  30258. source: "./media/characters/azteck/head.svg"
  30259. }
  30260. },
  30261. },
  30262. [
  30263. {
  30264. name: "Bite sized",
  30265. height: math.unit(16, "cm")
  30266. },
  30267. {
  30268. name: "Normal",
  30269. height: math.unit(1.8, "meters"),
  30270. default: true
  30271. },
  30272. ]
  30273. ))
  30274. characterMakers.push(() => makeCharacter(
  30275. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30276. {
  30277. front: {
  30278. height: math.unit(6, "feet"),
  30279. weight: math.unit(150, "lb"),
  30280. name: "Front",
  30281. image: {
  30282. source: "./media/characters/pidge/front.svg",
  30283. extra: 1936/1820,
  30284. bottom: 0/1936
  30285. }
  30286. },
  30287. back: {
  30288. height: math.unit(6, "feet"),
  30289. weight: math.unit(150, "lb"),
  30290. name: "Back",
  30291. image: {
  30292. source: "./media/characters/pidge/back.svg",
  30293. extra: 1938/1843,
  30294. bottom: 0/1938
  30295. }
  30296. },
  30297. casual: {
  30298. height: math.unit(6, "feet"),
  30299. weight: math.unit(150, "lb"),
  30300. name: "Casual",
  30301. image: {
  30302. source: "./media/characters/pidge/casual.svg",
  30303. extra: 1936/1820,
  30304. bottom: 0/1936
  30305. }
  30306. },
  30307. tech: {
  30308. height: math.unit(6, "feet"),
  30309. weight: math.unit(150, "lb"),
  30310. name: "Tech",
  30311. image: {
  30312. source: "./media/characters/pidge/tech.svg",
  30313. extra: 1802/1682,
  30314. bottom: 0/1802
  30315. }
  30316. },
  30317. head: {
  30318. height: math.unit(1.61, "feet"),
  30319. name: "Head",
  30320. image: {
  30321. source: "./media/characters/pidge/head.svg"
  30322. }
  30323. },
  30324. collar: {
  30325. height: math.unit(0.82, "feet"),
  30326. name: "Collar",
  30327. image: {
  30328. source: "./media/characters/pidge/collar.svg"
  30329. }
  30330. },
  30331. },
  30332. [
  30333. {
  30334. name: "Macro",
  30335. height: math.unit(2, "mile"),
  30336. default: true
  30337. },
  30338. {
  30339. name: "PUPPY",
  30340. height: math.unit(20, "miles")
  30341. },
  30342. ]
  30343. ))
  30344. characterMakers.push(() => makeCharacter(
  30345. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30346. {
  30347. front: {
  30348. height: math.unit(6, "feet"),
  30349. weight: math.unit(150, "lb"),
  30350. name: "Front",
  30351. image: {
  30352. source: "./media/characters/en/front.svg",
  30353. extra: 1697 / 1563,
  30354. bottom: 103 / 1800
  30355. }
  30356. },
  30357. back: {
  30358. height: math.unit(6, "feet"),
  30359. weight: math.unit(150, "lb"),
  30360. name: "Back",
  30361. image: {
  30362. source: "./media/characters/en/back.svg",
  30363. extra: 1700 / 1570,
  30364. bottom: 51 / 1751
  30365. }
  30366. },
  30367. frontDressed: {
  30368. height: math.unit(6, "feet"),
  30369. weight: math.unit(150, "lb"),
  30370. name: "Front (Dressed)",
  30371. image: {
  30372. source: "./media/characters/en/front-dressed.svg",
  30373. extra: 1697 / 1563,
  30374. bottom: 103 / 1800
  30375. }
  30376. },
  30377. backDressed: {
  30378. height: math.unit(6, "feet"),
  30379. weight: math.unit(150, "lb"),
  30380. name: "Back (Dressed)",
  30381. image: {
  30382. source: "./media/characters/en/back-dressed.svg",
  30383. extra: 1700 / 1570,
  30384. bottom: 51 / 1751
  30385. }
  30386. },
  30387. },
  30388. [
  30389. {
  30390. name: "Macro",
  30391. height: math.unit(210, "feet"),
  30392. default: true
  30393. },
  30394. ]
  30395. ))
  30396. characterMakers.push(() => makeCharacter(
  30397. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30398. {
  30399. front: {
  30400. height: math.unit(6, "feet"),
  30401. weight: math.unit(150, "lb"),
  30402. name: "Front",
  30403. image: {
  30404. source: "./media/characters/haze-orris/front.svg",
  30405. extra: 3975 / 3525,
  30406. bottom: 137 / 4112
  30407. }
  30408. },
  30409. },
  30410. [
  30411. {
  30412. name: "Micro",
  30413. height: math.unit(150, "mm"),
  30414. default: true
  30415. },
  30416. ]
  30417. ))
  30418. characterMakers.push(() => makeCharacter(
  30419. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30420. {
  30421. front: {
  30422. height: math.unit(6, "feet"),
  30423. weight: math.unit(150, "lb"),
  30424. name: "Front",
  30425. image: {
  30426. source: "./media/characters/casselene-yaro/front.svg",
  30427. extra: 4721 / 4541,
  30428. bottom: 82 / 4803
  30429. }
  30430. },
  30431. back: {
  30432. height: math.unit(6, "feet"),
  30433. weight: math.unit(150, "lb"),
  30434. name: "Back",
  30435. image: {
  30436. source: "./media/characters/casselene-yaro/back.svg",
  30437. extra: 4569 / 4377,
  30438. bottom: 69 / 4638
  30439. }
  30440. },
  30441. dressed: {
  30442. height: math.unit(6, "feet"),
  30443. weight: math.unit(150, "lb"),
  30444. name: "Dressed",
  30445. image: {
  30446. source: "./media/characters/casselene-yaro/dressed.svg",
  30447. extra: 4721 / 4541,
  30448. bottom: 82 / 4803
  30449. }
  30450. },
  30451. maw: {
  30452. height: math.unit(1, "feet"),
  30453. name: "Maw",
  30454. image: {
  30455. source: "./media/characters/casselene-yaro/maw.svg"
  30456. }
  30457. },
  30458. },
  30459. [
  30460. {
  30461. name: "Macro",
  30462. height: math.unit(190, "feet"),
  30463. default: true
  30464. },
  30465. ]
  30466. ))
  30467. characterMakers.push(() => makeCharacter(
  30468. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  30469. {
  30470. front: {
  30471. height: math.unit(10, "feet"),
  30472. weight: math.unit(15015, "lb"),
  30473. name: "Front",
  30474. image: {
  30475. source: "./media/characters/platine/front.svg",
  30476. extra: 1428/1353,
  30477. bottom: 31/1459
  30478. }
  30479. },
  30480. },
  30481. [
  30482. {
  30483. name: "Normal",
  30484. height: math.unit(10, "feet"),
  30485. default: true
  30486. },
  30487. {
  30488. name: "Macro",
  30489. height: math.unit(100, "feet")
  30490. },
  30491. {
  30492. name: "Megamacro",
  30493. height: math.unit(1000, "feet")
  30494. },
  30495. ]
  30496. ))
  30497. characterMakers.push(() => makeCharacter(
  30498. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30499. {
  30500. front: {
  30501. height: math.unit(15 + 5 / 12, "feet"),
  30502. weight: math.unit(4600, "lb"),
  30503. name: "Front",
  30504. image: {
  30505. source: "./media/characters/neapolitan-ananassa/front.svg",
  30506. extra: 2903 / 2736,
  30507. bottom: 0 / 2903
  30508. }
  30509. },
  30510. side: {
  30511. height: math.unit(15 + 5 / 12, "feet"),
  30512. weight: math.unit(4600, "lb"),
  30513. name: "Side",
  30514. image: {
  30515. source: "./media/characters/neapolitan-ananassa/side.svg",
  30516. extra: 2925 / 2719,
  30517. bottom: 0 / 2925
  30518. }
  30519. },
  30520. back: {
  30521. height: math.unit(15 + 5 / 12, "feet"),
  30522. weight: math.unit(4600, "lb"),
  30523. name: "Back",
  30524. image: {
  30525. source: "./media/characters/neapolitan-ananassa/back.svg",
  30526. extra: 2903 / 2736,
  30527. bottom: 0 / 2903
  30528. }
  30529. },
  30530. },
  30531. [
  30532. {
  30533. name: "Normal",
  30534. height: math.unit(15 + 5 / 12, "feet"),
  30535. default: true
  30536. },
  30537. {
  30538. name: "Post-Millenium",
  30539. height: math.unit(35 + 5 / 12, "feet")
  30540. },
  30541. {
  30542. name: "Post-Era",
  30543. height: math.unit(450 + 5 / 12, "feet")
  30544. },
  30545. ]
  30546. ))
  30547. characterMakers.push(() => makeCharacter(
  30548. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30549. {
  30550. front: {
  30551. height: math.unit(300, "meters"),
  30552. weight: math.unit(125000, "tonnes"),
  30553. name: "Front",
  30554. image: {
  30555. source: "./media/characters/pazuzu/front.svg",
  30556. extra: 877 / 794,
  30557. bottom: 47 / 924
  30558. }
  30559. },
  30560. },
  30561. [
  30562. {
  30563. name: "Macro",
  30564. height: math.unit(300, "meters"),
  30565. default: true
  30566. },
  30567. ]
  30568. ))
  30569. characterMakers.push(() => makeCharacter(
  30570. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30571. {
  30572. side: {
  30573. height: math.unit(10 + 7 / 12, "feet"),
  30574. weight: math.unit(2.5, "tons"),
  30575. name: "Side",
  30576. image: {
  30577. source: "./media/characters/aasha/side.svg",
  30578. extra: 1345 / 1245,
  30579. bottom: 111 / 1456
  30580. }
  30581. },
  30582. back: {
  30583. height: math.unit(10 + 7 / 12, "feet"),
  30584. weight: math.unit(2.5, "tons"),
  30585. name: "Back",
  30586. image: {
  30587. source: "./media/characters/aasha/back.svg",
  30588. extra: 1133 / 1057,
  30589. bottom: 257 / 1390
  30590. }
  30591. },
  30592. },
  30593. [
  30594. {
  30595. name: "Normal",
  30596. height: math.unit(10 + 7 / 12, "feet"),
  30597. default: true
  30598. },
  30599. ]
  30600. ))
  30601. characterMakers.push(() => makeCharacter(
  30602. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30603. {
  30604. front: {
  30605. height: math.unit(6 + 3 / 12, "feet"),
  30606. name: "Front",
  30607. image: {
  30608. source: "./media/characters/nevan/front.svg",
  30609. extra: 704 / 704,
  30610. bottom: 28 / 732
  30611. }
  30612. },
  30613. back: {
  30614. height: math.unit(6 + 3 / 12, "feet"),
  30615. name: "Back",
  30616. image: {
  30617. source: "./media/characters/nevan/back.svg",
  30618. extra: 714 / 714,
  30619. bottom: 21 / 735
  30620. }
  30621. },
  30622. frontFlaccid: {
  30623. height: math.unit(6 + 3 / 12, "feet"),
  30624. name: "Front (Flaccid)",
  30625. image: {
  30626. source: "./media/characters/nevan/front-flaccid.svg",
  30627. extra: 704 / 704,
  30628. bottom: 28 / 732
  30629. }
  30630. },
  30631. frontErect: {
  30632. height: math.unit(6 + 3 / 12, "feet"),
  30633. name: "Front (Erect)",
  30634. image: {
  30635. source: "./media/characters/nevan/front-erect.svg",
  30636. extra: 704 / 704,
  30637. bottom: 28 / 732
  30638. }
  30639. },
  30640. backFlaccid: {
  30641. height: math.unit(6 + 3 / 12, "feet"),
  30642. name: "Back (Flaccid)",
  30643. image: {
  30644. source: "./media/characters/nevan/back-flaccid.svg",
  30645. extra: 714 / 714,
  30646. bottom: 21 / 735
  30647. }
  30648. },
  30649. },
  30650. [
  30651. {
  30652. name: "Normal",
  30653. height: math.unit(6 + 3 / 12, "feet"),
  30654. default: true
  30655. },
  30656. ]
  30657. ))
  30658. characterMakers.push(() => makeCharacter(
  30659. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30660. {
  30661. front: {
  30662. height: math.unit(4, "feet"),
  30663. name: "Front",
  30664. image: {
  30665. source: "./media/characters/arhan/front.svg",
  30666. extra: 3368 / 3133,
  30667. bottom: 0 / 3368
  30668. }
  30669. },
  30670. side: {
  30671. height: math.unit(4, "feet"),
  30672. name: "Side",
  30673. image: {
  30674. source: "./media/characters/arhan/side.svg",
  30675. extra: 3347 / 3105,
  30676. bottom: 0 / 3347
  30677. }
  30678. },
  30679. tongue: {
  30680. height: math.unit(1.42, "feet"),
  30681. name: "Tongue",
  30682. image: {
  30683. source: "./media/characters/arhan/tongue.svg"
  30684. }
  30685. },
  30686. head: {
  30687. height: math.unit(0.85, "feet"),
  30688. name: "Head",
  30689. image: {
  30690. source: "./media/characters/arhan/head.svg"
  30691. }
  30692. },
  30693. },
  30694. [
  30695. {
  30696. name: "Normal",
  30697. height: math.unit(4, "feet"),
  30698. default: true
  30699. },
  30700. ]
  30701. ))
  30702. characterMakers.push(() => makeCharacter(
  30703. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30704. {
  30705. front: {
  30706. height: math.unit(5 + 7.5 / 12, "feet"),
  30707. weight: math.unit(120, "lb"),
  30708. name: "Front",
  30709. image: {
  30710. source: "./media/characters/digi-duncan/front.svg",
  30711. extra: 330 / 326,
  30712. bottom: 16 / 346
  30713. }
  30714. },
  30715. side: {
  30716. height: math.unit(5 + 7.5 / 12, "feet"),
  30717. weight: math.unit(120, "lb"),
  30718. name: "Side",
  30719. image: {
  30720. source: "./media/characters/digi-duncan/side.svg",
  30721. extra: 341 / 337,
  30722. bottom: 1 / 342
  30723. }
  30724. },
  30725. back: {
  30726. height: math.unit(5 + 7.5 / 12, "feet"),
  30727. weight: math.unit(120, "lb"),
  30728. name: "Back",
  30729. image: {
  30730. source: "./media/characters/digi-duncan/back.svg",
  30731. extra: 330 / 326,
  30732. bottom: 12 / 342
  30733. }
  30734. },
  30735. },
  30736. [
  30737. {
  30738. name: "Speck",
  30739. height: math.unit(0.25, "mm")
  30740. },
  30741. {
  30742. name: "Micro",
  30743. height: math.unit(5, "mm")
  30744. },
  30745. {
  30746. name: "Tiny",
  30747. height: math.unit(0.5, "inches"),
  30748. default: true
  30749. },
  30750. {
  30751. name: "Human",
  30752. height: math.unit(5 + 7.5 / 12, "feet")
  30753. },
  30754. {
  30755. name: "Minigiant",
  30756. height: math.unit(8 + 5.25, "feet")
  30757. },
  30758. {
  30759. name: "Giant",
  30760. height: math.unit(2000, "feet")
  30761. },
  30762. {
  30763. name: "Mega",
  30764. height: math.unit(371.1, "miles")
  30765. },
  30766. ]
  30767. ))
  30768. characterMakers.push(() => makeCharacter(
  30769. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30770. {
  30771. front: {
  30772. height: math.unit(2, "meters"),
  30773. weight: math.unit(350, "kg"),
  30774. name: "Front",
  30775. image: {
  30776. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30777. extra: 898 / 838,
  30778. bottom: 9 / 907
  30779. }
  30780. },
  30781. },
  30782. [
  30783. {
  30784. name: "Micro",
  30785. height: math.unit(8, "meters")
  30786. },
  30787. {
  30788. name: "Normal",
  30789. height: math.unit(50, "meters"),
  30790. default: true
  30791. },
  30792. {
  30793. name: "Macro",
  30794. height: math.unit(500, "meters")
  30795. },
  30796. ]
  30797. ))
  30798. characterMakers.push(() => makeCharacter(
  30799. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30800. {
  30801. front: {
  30802. height: math.unit(6 + 6 / 12, "feet"),
  30803. name: "Front",
  30804. image: {
  30805. source: "./media/characters/khardesh/front.svg",
  30806. extra: 1788/1596,
  30807. bottom: 66/1854
  30808. }
  30809. },
  30810. back: {
  30811. height: math.unit(6 + 6 / 12, "feet"),
  30812. name: "Back",
  30813. image: {
  30814. source: "./media/characters/khardesh/back.svg",
  30815. extra: 1781/1584,
  30816. bottom: 68/1849
  30817. }
  30818. },
  30819. },
  30820. [
  30821. {
  30822. name: "Normal",
  30823. height: math.unit(6 + 6 / 12, "feet"),
  30824. default: true
  30825. },
  30826. {
  30827. name: "Normal+",
  30828. height: math.unit(4, "meters")
  30829. },
  30830. {
  30831. name: "Macro",
  30832. height: math.unit(50, "meters")
  30833. },
  30834. {
  30835. name: "Macro+",
  30836. height: math.unit(100, "meters")
  30837. },
  30838. {
  30839. name: "Megamacro",
  30840. height: math.unit(20, "km")
  30841. },
  30842. ]
  30843. ))
  30844. characterMakers.push(() => makeCharacter(
  30845. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30846. {
  30847. front: {
  30848. height: math.unit(6, "feet"),
  30849. weight: math.unit(150, "lb"),
  30850. name: "Front",
  30851. image: {
  30852. source: "./media/characters/kosho/front.svg",
  30853. extra: 1847 / 1847,
  30854. bottom: 86 / 1933
  30855. }
  30856. },
  30857. },
  30858. [
  30859. {
  30860. name: "Second-stage micro",
  30861. height: math.unit(0.5, "inches")
  30862. },
  30863. {
  30864. name: "First-stage micro",
  30865. height: math.unit(6, "inches")
  30866. },
  30867. {
  30868. name: "Normal",
  30869. height: math.unit(6, "feet"),
  30870. default: true
  30871. },
  30872. {
  30873. name: "First-stage macro",
  30874. height: math.unit(72, "feet")
  30875. },
  30876. {
  30877. name: "Second-stage macro",
  30878. height: math.unit(864, "feet")
  30879. },
  30880. ]
  30881. ))
  30882. characterMakers.push(() => makeCharacter(
  30883. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30884. {
  30885. normal: {
  30886. height: math.unit(4 + 6 / 12, "feet"),
  30887. name: "Normal",
  30888. image: {
  30889. source: "./media/characters/hydra/normal.svg",
  30890. extra: 2833 / 2634,
  30891. bottom: 68 / 2901
  30892. }
  30893. },
  30894. smol: {
  30895. height: math.unit(0.705, "inches"),
  30896. name: "Smol",
  30897. image: {
  30898. source: "./media/characters/hydra/smol.svg",
  30899. extra: 2715 / 2540,
  30900. bottom: 0 / 2715
  30901. }
  30902. },
  30903. },
  30904. [
  30905. {
  30906. name: "Normal",
  30907. height: math.unit(4 + 6 / 12, "feet"),
  30908. default: true
  30909. }
  30910. ]
  30911. ))
  30912. characterMakers.push(() => makeCharacter(
  30913. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30914. {
  30915. front: {
  30916. height: math.unit(0.6, "cm"),
  30917. name: "Front",
  30918. image: {
  30919. source: "./media/characters/daz/front.svg",
  30920. extra: 1682 / 1164,
  30921. bottom: 42 / 1724
  30922. }
  30923. },
  30924. },
  30925. [
  30926. {
  30927. name: "Normal",
  30928. height: math.unit(0.6, "cm"),
  30929. default: true
  30930. },
  30931. ]
  30932. ))
  30933. characterMakers.push(() => makeCharacter(
  30934. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30935. {
  30936. front: {
  30937. height: math.unit(6, "feet"),
  30938. weight: math.unit(235, "lb"),
  30939. name: "Front",
  30940. image: {
  30941. source: "./media/characters/theo-pangolin/front.svg",
  30942. extra: 1996 / 1969,
  30943. bottom: 115 / 2111
  30944. }
  30945. },
  30946. back: {
  30947. height: math.unit(6, "feet"),
  30948. weight: math.unit(235, "lb"),
  30949. name: "Back",
  30950. image: {
  30951. source: "./media/characters/theo-pangolin/back.svg",
  30952. extra: 1979 / 1979,
  30953. bottom: 40 / 2019
  30954. }
  30955. },
  30956. feral: {
  30957. height: math.unit(2, "feet"),
  30958. weight: math.unit(30, "lb"),
  30959. name: "Feral",
  30960. image: {
  30961. source: "./media/characters/theo-pangolin/feral.svg",
  30962. extra: 803 / 791,
  30963. bottom: 181 / 984
  30964. }
  30965. },
  30966. footFive: {
  30967. height: math.unit(1.43, "feet"),
  30968. name: "Foot (Five Toes)",
  30969. image: {
  30970. source: "./media/characters/theo-pangolin/foot-five.svg"
  30971. }
  30972. },
  30973. footFour: {
  30974. height: math.unit(1.43, "feet"),
  30975. name: "Foot (Four Toes)",
  30976. image: {
  30977. source: "./media/characters/theo-pangolin/foot-four.svg"
  30978. }
  30979. },
  30980. handFour: {
  30981. height: math.unit(0.81, "feet"),
  30982. name: "Hand (Four Fingers)",
  30983. image: {
  30984. source: "./media/characters/theo-pangolin/hand-four.svg"
  30985. }
  30986. },
  30987. handThree: {
  30988. height: math.unit(0.81, "feet"),
  30989. name: "Hand (Three Fingers)",
  30990. image: {
  30991. source: "./media/characters/theo-pangolin/hand-three.svg"
  30992. }
  30993. },
  30994. headFront: {
  30995. height: math.unit(1.37, "feet"),
  30996. name: "Head (Front)",
  30997. image: {
  30998. source: "./media/characters/theo-pangolin/head-front.svg"
  30999. }
  31000. },
  31001. headSide: {
  31002. height: math.unit(1.43, "feet"),
  31003. name: "Head (Side)",
  31004. image: {
  31005. source: "./media/characters/theo-pangolin/head-side.svg"
  31006. }
  31007. },
  31008. tongue: {
  31009. height: math.unit(2.29, "feet"),
  31010. name: "Tongue",
  31011. image: {
  31012. source: "./media/characters/theo-pangolin/tongue.svg"
  31013. }
  31014. },
  31015. },
  31016. [
  31017. {
  31018. name: "Normal",
  31019. height: math.unit(6, "feet")
  31020. },
  31021. {
  31022. name: "Macro",
  31023. height: math.unit(400, "feet"),
  31024. default: true
  31025. },
  31026. ]
  31027. ))
  31028. characterMakers.push(() => makeCharacter(
  31029. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31030. {
  31031. front: {
  31032. height: math.unit(6, "inches"),
  31033. weight: math.unit(0.036, "kg"),
  31034. name: "Front",
  31035. image: {
  31036. source: "./media/characters/renée/front.svg",
  31037. extra: 900 / 886,
  31038. bottom: 8 / 908
  31039. }
  31040. },
  31041. },
  31042. [
  31043. {
  31044. name: "Nano",
  31045. height: math.unit(1, "nm")
  31046. },
  31047. {
  31048. name: "Micro",
  31049. height: math.unit(1, "mm")
  31050. },
  31051. {
  31052. name: "Normal",
  31053. height: math.unit(6, "inches")
  31054. },
  31055. {
  31056. name: "Macro",
  31057. height: math.unit(2000, "feet"),
  31058. default: true
  31059. },
  31060. {
  31061. name: "Megamacro",
  31062. height: math.unit(2, "km")
  31063. },
  31064. {
  31065. name: "Gigamacro",
  31066. height: math.unit(2000, "km")
  31067. },
  31068. {
  31069. name: "Teramacro",
  31070. height: math.unit(250000, "km")
  31071. },
  31072. ]
  31073. ))
  31074. characterMakers.push(() => makeCharacter(
  31075. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31076. {
  31077. front: {
  31078. height: math.unit(4, "meters"),
  31079. weight: math.unit(150, "kg"),
  31080. name: "Front",
  31081. image: {
  31082. source: "./media/characters/caledvwlch/front.svg",
  31083. extra: 1760 / 1551,
  31084. bottom: 28 / 1788
  31085. }
  31086. },
  31087. side: {
  31088. height: math.unit(4, "meters"),
  31089. weight: math.unit(150, "kg"),
  31090. name: "Side",
  31091. image: {
  31092. source: "./media/characters/caledvwlch/side.svg",
  31093. extra: 1605 / 1536,
  31094. bottom: 31 / 1636
  31095. }
  31096. },
  31097. back: {
  31098. height: math.unit(4, "meters"),
  31099. weight: math.unit(150, "kg"),
  31100. name: "Back",
  31101. image: {
  31102. source: "./media/characters/caledvwlch/back.svg",
  31103. extra: 1635 / 1565,
  31104. bottom: 27 / 1662
  31105. }
  31106. },
  31107. },
  31108. [
  31109. {
  31110. name: "\"Incognito\"",
  31111. height: math.unit(4, "meters")
  31112. },
  31113. {
  31114. name: "Small rampage",
  31115. height: math.unit(600, "meters")
  31116. },
  31117. {
  31118. name: "Mega",
  31119. height: math.unit(30, "km")
  31120. },
  31121. {
  31122. name: "Home-size",
  31123. height: math.unit(50, "km"),
  31124. default: true
  31125. },
  31126. {
  31127. name: "Giga",
  31128. height: math.unit(300, "km")
  31129. },
  31130. {
  31131. name: "Lounging",
  31132. height: math.unit(11000, "km")
  31133. },
  31134. {
  31135. name: "Planet snacking",
  31136. height: math.unit(2000000, "km")
  31137. },
  31138. ]
  31139. ))
  31140. characterMakers.push(() => makeCharacter(
  31141. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31142. {
  31143. front: {
  31144. height: math.unit(6, "feet"),
  31145. weight: math.unit(215, "lb"),
  31146. name: "Front",
  31147. image: {
  31148. source: "./media/characters/sapphire-svell/front.svg",
  31149. extra: 495 / 455,
  31150. bottom: 20 / 515
  31151. }
  31152. },
  31153. back: {
  31154. height: math.unit(6, "feet"),
  31155. weight: math.unit(216, "lb"),
  31156. name: "Back",
  31157. image: {
  31158. source: "./media/characters/sapphire-svell/back.svg",
  31159. extra: 497 / 477,
  31160. bottom: 7 / 504
  31161. }
  31162. },
  31163. maw: {
  31164. height: math.unit(1.57, "feet"),
  31165. name: "Maw",
  31166. image: {
  31167. source: "./media/characters/sapphire-svell/maw.svg"
  31168. }
  31169. },
  31170. foot: {
  31171. height: math.unit(1.07, "feet"),
  31172. name: "Foot",
  31173. image: {
  31174. source: "./media/characters/sapphire-svell/foot.svg"
  31175. }
  31176. },
  31177. toering: {
  31178. height: math.unit(1.7, "inch"),
  31179. name: "Toering",
  31180. image: {
  31181. source: "./media/characters/sapphire-svell/toering.svg"
  31182. }
  31183. },
  31184. },
  31185. [
  31186. {
  31187. name: "Normal",
  31188. height: math.unit(300, "feet"),
  31189. default: true
  31190. },
  31191. {
  31192. name: "Augmented",
  31193. height: math.unit(1250, "feet")
  31194. },
  31195. {
  31196. name: "Unleashed",
  31197. height: math.unit(3000, "feet")
  31198. },
  31199. ]
  31200. ))
  31201. characterMakers.push(() => makeCharacter(
  31202. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31203. {
  31204. side: {
  31205. height: math.unit(2 + 3 / 12, "feet"),
  31206. weight: math.unit(110, "lb"),
  31207. name: "Side",
  31208. image: {
  31209. source: "./media/characters/glitch-flux/side.svg",
  31210. extra: 997 / 805,
  31211. bottom: 20 / 1017
  31212. }
  31213. },
  31214. },
  31215. [
  31216. {
  31217. name: "Normal",
  31218. height: math.unit(2 + 3 / 12, "feet"),
  31219. default: true
  31220. },
  31221. ]
  31222. ))
  31223. characterMakers.push(() => makeCharacter(
  31224. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31225. {
  31226. front: {
  31227. height: math.unit(4, "meters"),
  31228. name: "Front",
  31229. image: {
  31230. source: "./media/characters/mid/front.svg",
  31231. extra: 507 / 476,
  31232. bottom: 17 / 524
  31233. }
  31234. },
  31235. back: {
  31236. height: math.unit(4, "meters"),
  31237. name: "Back",
  31238. image: {
  31239. source: "./media/characters/mid/back.svg",
  31240. extra: 519 / 487,
  31241. bottom: 7 / 526
  31242. }
  31243. },
  31244. stuck: {
  31245. height: math.unit(2.2, "meters"),
  31246. name: "Stuck",
  31247. image: {
  31248. source: "./media/characters/mid/stuck.svg",
  31249. extra: 1951 / 1869,
  31250. bottom: 88 / 2039
  31251. }
  31252. }
  31253. },
  31254. [
  31255. {
  31256. name: "Normal",
  31257. height: math.unit(4, "meters"),
  31258. default: true
  31259. },
  31260. {
  31261. name: "Big",
  31262. height: math.unit(10, "meters")
  31263. },
  31264. {
  31265. name: "Macro",
  31266. height: math.unit(800, "meters")
  31267. },
  31268. {
  31269. name: "Megamacro",
  31270. height: math.unit(100, "km")
  31271. },
  31272. {
  31273. name: "Overgrown",
  31274. height: math.unit(1, "parsec")
  31275. },
  31276. ]
  31277. ))
  31278. characterMakers.push(() => makeCharacter(
  31279. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31280. {
  31281. front: {
  31282. height: math.unit(2.5, "meters"),
  31283. weight: math.unit(225, "kg"),
  31284. name: "Front",
  31285. image: {
  31286. source: "./media/characters/iris/front.svg",
  31287. extra: 3348 / 3251,
  31288. bottom: 205 / 3553
  31289. }
  31290. },
  31291. maw: {
  31292. height: math.unit(0.56, "meter"),
  31293. name: "Maw",
  31294. image: {
  31295. source: "./media/characters/iris/maw.svg"
  31296. }
  31297. },
  31298. },
  31299. [
  31300. {
  31301. name: "Mewter cat",
  31302. height: math.unit(1.2, "meters")
  31303. },
  31304. {
  31305. name: "Minimacro",
  31306. height: math.unit(2.5, "meters"),
  31307. default: true
  31308. },
  31309. {
  31310. name: "Macro",
  31311. height: math.unit(180, "meters")
  31312. },
  31313. {
  31314. name: "Megamacro",
  31315. height: math.unit(2746, "meters")
  31316. },
  31317. ]
  31318. ))
  31319. characterMakers.push(() => makeCharacter(
  31320. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31321. {
  31322. front: {
  31323. height: math.unit(6, "feet"),
  31324. weight: math.unit(135, "lb"),
  31325. name: "Front",
  31326. image: {
  31327. source: "./media/characters/axel/front.svg",
  31328. extra: 908 / 908,
  31329. bottom: 58 / 966
  31330. }
  31331. },
  31332. side: {
  31333. height: math.unit(6, "feet"),
  31334. weight: math.unit(135, "lb"),
  31335. name: "Side",
  31336. image: {
  31337. source: "./media/characters/axel/side.svg",
  31338. extra: 958 / 958,
  31339. bottom: 11 / 969
  31340. }
  31341. },
  31342. back: {
  31343. height: math.unit(6, "feet"),
  31344. weight: math.unit(135, "lb"),
  31345. name: "Back",
  31346. image: {
  31347. source: "./media/characters/axel/back.svg",
  31348. extra: 887 / 887,
  31349. bottom: 34 / 921
  31350. }
  31351. },
  31352. head: {
  31353. height: math.unit(1.07, "feet"),
  31354. name: "Head",
  31355. image: {
  31356. source: "./media/characters/axel/head.svg"
  31357. }
  31358. },
  31359. beak: {
  31360. height: math.unit(1.4, "feet"),
  31361. name: "Beak",
  31362. image: {
  31363. source: "./media/characters/axel/beak.svg"
  31364. }
  31365. },
  31366. beakSide: {
  31367. height: math.unit(1.4, "feet"),
  31368. name: "Beak Side",
  31369. image: {
  31370. source: "./media/characters/axel/beak-side.svg"
  31371. }
  31372. },
  31373. sheath: {
  31374. height: math.unit(0.5, "feet"),
  31375. name: "Sheath",
  31376. image: {
  31377. source: "./media/characters/axel/sheath.svg"
  31378. }
  31379. },
  31380. dick: {
  31381. height: math.unit(0.98, "feet"),
  31382. name: "Dick",
  31383. image: {
  31384. source: "./media/characters/axel/dick.svg"
  31385. }
  31386. },
  31387. },
  31388. [
  31389. {
  31390. name: "Macro",
  31391. height: math.unit(68, "meters"),
  31392. default: true
  31393. },
  31394. ]
  31395. ))
  31396. characterMakers.push(() => makeCharacter(
  31397. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31398. {
  31399. front: {
  31400. height: math.unit(3.5, "meters"),
  31401. weight: math.unit(1200, "kg"),
  31402. name: "Front",
  31403. image: {
  31404. source: "./media/characters/joanna/front.svg",
  31405. extra: 1596 / 1488,
  31406. bottom: 29 / 1625
  31407. }
  31408. },
  31409. back: {
  31410. height: math.unit(3.5, "meters"),
  31411. weight: math.unit(1200, "kg"),
  31412. name: "Back",
  31413. image: {
  31414. source: "./media/characters/joanna/back.svg",
  31415. extra: 1594 / 1495,
  31416. bottom: 26 / 1620
  31417. }
  31418. },
  31419. frontShorts: {
  31420. height: math.unit(3.5, "meters"),
  31421. weight: math.unit(1200, "kg"),
  31422. name: "Front (Shorts)",
  31423. image: {
  31424. source: "./media/characters/joanna/front-shorts.svg",
  31425. extra: 1596 / 1488,
  31426. bottom: 29 / 1625
  31427. }
  31428. },
  31429. frontBiker: {
  31430. height: math.unit(3.5, "meters"),
  31431. weight: math.unit(1200, "kg"),
  31432. name: "Front (Biker)",
  31433. image: {
  31434. source: "./media/characters/joanna/front-biker.svg",
  31435. extra: 1596 / 1488,
  31436. bottom: 29 / 1625
  31437. }
  31438. },
  31439. backBiker: {
  31440. height: math.unit(3.5, "meters"),
  31441. weight: math.unit(1200, "kg"),
  31442. name: "Back (Biker)",
  31443. image: {
  31444. source: "./media/characters/joanna/back-biker.svg",
  31445. extra: 1594 / 1495,
  31446. bottom: 88 / 1682
  31447. }
  31448. },
  31449. bikeLeft: {
  31450. height: math.unit(2.4, "meters"),
  31451. weight: math.unit(1600, "kg"),
  31452. name: "Bike (Left)",
  31453. image: {
  31454. source: "./media/characters/joanna/bike-left.svg",
  31455. extra: 720 / 720,
  31456. bottom: 8 / 728
  31457. }
  31458. },
  31459. bikeRight: {
  31460. height: math.unit(2.4, "meters"),
  31461. weight: math.unit(1600, "kg"),
  31462. name: "Bike (Right)",
  31463. image: {
  31464. source: "./media/characters/joanna/bike-right.svg",
  31465. extra: 720 / 720,
  31466. bottom: 8 / 728
  31467. }
  31468. },
  31469. },
  31470. [
  31471. {
  31472. name: "Incognito",
  31473. height: math.unit(3.5, "meters")
  31474. },
  31475. {
  31476. name: "Casual Big",
  31477. height: math.unit(200, "meters")
  31478. },
  31479. {
  31480. name: "Macro",
  31481. height: math.unit(600, "meters")
  31482. },
  31483. {
  31484. name: "Original",
  31485. height: math.unit(20, "km"),
  31486. default: true
  31487. },
  31488. {
  31489. name: "Giga",
  31490. height: math.unit(400, "km")
  31491. },
  31492. {
  31493. name: "Lounging",
  31494. height: math.unit(1500, "km")
  31495. },
  31496. {
  31497. name: "Planetary",
  31498. height: math.unit(200000, "km")
  31499. },
  31500. ]
  31501. ))
  31502. characterMakers.push(() => makeCharacter(
  31503. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31504. {
  31505. front: {
  31506. height: math.unit(6, "feet"),
  31507. weight: math.unit(150, "lb"),
  31508. name: "Front",
  31509. image: {
  31510. source: "./media/characters/hugo-sigil/front.svg",
  31511. extra: 522 / 500,
  31512. bottom: 2 / 524
  31513. }
  31514. },
  31515. back: {
  31516. height: math.unit(6, "feet"),
  31517. weight: math.unit(150, "lb"),
  31518. name: "Back",
  31519. image: {
  31520. source: "./media/characters/hugo-sigil/back.svg",
  31521. extra: 519 / 495,
  31522. bottom: 5 / 524
  31523. }
  31524. },
  31525. maw: {
  31526. height: math.unit(1.4, "feet"),
  31527. weight: math.unit(150, "lb"),
  31528. name: "Maw",
  31529. image: {
  31530. source: "./media/characters/hugo-sigil/maw.svg"
  31531. }
  31532. },
  31533. feet: {
  31534. height: math.unit(1.56, "feet"),
  31535. weight: math.unit(150, "lb"),
  31536. name: "Feet",
  31537. image: {
  31538. source: "./media/characters/hugo-sigil/feet.svg",
  31539. extra: 177 / 177,
  31540. bottom: 12 / 189
  31541. }
  31542. },
  31543. },
  31544. [
  31545. {
  31546. name: "Normal",
  31547. height: math.unit(6, "feet")
  31548. },
  31549. {
  31550. name: "Macro",
  31551. height: math.unit(200, "feet"),
  31552. default: true
  31553. },
  31554. ]
  31555. ))
  31556. characterMakers.push(() => makeCharacter(
  31557. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31558. {
  31559. front: {
  31560. height: math.unit(6, "feet"),
  31561. weight: math.unit(150, "lb"),
  31562. name: "Front",
  31563. image: {
  31564. source: "./media/characters/peri/front.svg",
  31565. extra: 2354 / 2233,
  31566. bottom: 49 / 2403
  31567. }
  31568. },
  31569. },
  31570. [
  31571. {
  31572. name: "Really Small",
  31573. height: math.unit(1, "nm")
  31574. },
  31575. {
  31576. name: "Micro",
  31577. height: math.unit(4, "inches")
  31578. },
  31579. {
  31580. name: "Normal",
  31581. height: math.unit(7, "inches"),
  31582. default: true
  31583. },
  31584. {
  31585. name: "Macro",
  31586. height: math.unit(400, "feet")
  31587. },
  31588. {
  31589. name: "Megamacro",
  31590. height: math.unit(100, "miles")
  31591. },
  31592. ]
  31593. ))
  31594. characterMakers.push(() => makeCharacter(
  31595. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31596. {
  31597. frontSlim: {
  31598. height: math.unit(7, "feet"),
  31599. name: "Front (Slim)",
  31600. image: {
  31601. source: "./media/characters/issilora/front-slim.svg",
  31602. extra: 529 / 449,
  31603. bottom: 53 / 582
  31604. }
  31605. },
  31606. sideSlim: {
  31607. height: math.unit(7, "feet"),
  31608. name: "Side (Slim)",
  31609. image: {
  31610. source: "./media/characters/issilora/side-slim.svg",
  31611. extra: 570 / 480,
  31612. bottom: 30 / 600
  31613. }
  31614. },
  31615. backSlim: {
  31616. height: math.unit(7, "feet"),
  31617. name: "Back (Slim)",
  31618. image: {
  31619. source: "./media/characters/issilora/back-slim.svg",
  31620. extra: 537 / 455,
  31621. bottom: 46 / 583
  31622. }
  31623. },
  31624. frontBuff: {
  31625. height: math.unit(7, "feet"),
  31626. name: "Front (Buff)",
  31627. image: {
  31628. source: "./media/characters/issilora/front-buff.svg",
  31629. extra: 2310 / 2035,
  31630. bottom: 335 / 2645
  31631. }
  31632. },
  31633. head: {
  31634. height: math.unit(1.94, "feet"),
  31635. name: "Head",
  31636. image: {
  31637. source: "./media/characters/issilora/head.svg"
  31638. }
  31639. },
  31640. },
  31641. [
  31642. {
  31643. name: "Minimum",
  31644. height: math.unit(7, "feet")
  31645. },
  31646. {
  31647. name: "Comfortable",
  31648. height: math.unit(17, "feet")
  31649. },
  31650. {
  31651. name: "Fun Size",
  31652. height: math.unit(47, "feet")
  31653. },
  31654. {
  31655. name: "Natural Macro",
  31656. height: math.unit(137, "feet"),
  31657. default: true
  31658. },
  31659. {
  31660. name: "Maximum Kaiju",
  31661. height: math.unit(397, "feet")
  31662. },
  31663. ]
  31664. ))
  31665. characterMakers.push(() => makeCharacter(
  31666. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31667. {
  31668. front: {
  31669. height: math.unit(50 + 9/12, "feet"),
  31670. weight: math.unit(32.8, "tons"),
  31671. name: "Front",
  31672. image: {
  31673. source: "./media/characters/irb'iiritaahn/front.svg",
  31674. extra: 1878/1826,
  31675. bottom: 326/2204
  31676. }
  31677. },
  31678. back: {
  31679. height: math.unit(50 + 9/12, "feet"),
  31680. weight: math.unit(32.8, "tons"),
  31681. name: "Back",
  31682. image: {
  31683. source: "./media/characters/irb'iiritaahn/back.svg",
  31684. extra: 2052/2018,
  31685. bottom: 152/2204
  31686. }
  31687. },
  31688. head: {
  31689. height: math.unit(12.86, "feet"),
  31690. name: "Head",
  31691. image: {
  31692. source: "./media/characters/irb'iiritaahn/head.svg"
  31693. }
  31694. },
  31695. maw: {
  31696. height: math.unit(9.66, "feet"),
  31697. name: "Maw",
  31698. image: {
  31699. source: "./media/characters/irb'iiritaahn/maw.svg"
  31700. }
  31701. },
  31702. frontDick: {
  31703. height: math.unit(8.78461, "feet"),
  31704. name: "Front Dick",
  31705. image: {
  31706. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31707. }
  31708. },
  31709. rearDick: {
  31710. height: math.unit(8.78461, "feet"),
  31711. name: "Rear Dick",
  31712. image: {
  31713. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31714. }
  31715. },
  31716. rearDickUnfolded: {
  31717. height: math.unit(8.78, "feet"),
  31718. name: "Rear Dick (Unfolded)",
  31719. image: {
  31720. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31721. }
  31722. },
  31723. wings: {
  31724. height: math.unit(43, "feet"),
  31725. name: "Wings",
  31726. image: {
  31727. source: "./media/characters/irb'iiritaahn/wings.svg"
  31728. }
  31729. },
  31730. },
  31731. [
  31732. {
  31733. name: "Macro",
  31734. height: math.unit(50 + 9/12, "feet"),
  31735. default: true
  31736. },
  31737. ]
  31738. ))
  31739. characterMakers.push(() => makeCharacter(
  31740. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31741. {
  31742. front: {
  31743. height: math.unit(205, "cm"),
  31744. weight: math.unit(102, "kg"),
  31745. name: "Front",
  31746. image: {
  31747. source: "./media/characters/irbisgreif/front.svg",
  31748. extra: 785/706,
  31749. bottom: 13/798
  31750. }
  31751. },
  31752. back: {
  31753. height: math.unit(205, "cm"),
  31754. weight: math.unit(102, "kg"),
  31755. name: "Back",
  31756. image: {
  31757. source: "./media/characters/irbisgreif/back.svg",
  31758. extra: 713/701,
  31759. bottom: 26/739
  31760. }
  31761. },
  31762. frontDressed: {
  31763. height: math.unit(216, "cm"),
  31764. weight: math.unit(102, "kg"),
  31765. name: "Front-dressed",
  31766. image: {
  31767. source: "./media/characters/irbisgreif/front-dressed.svg",
  31768. extra: 902/776,
  31769. bottom: 14/916
  31770. }
  31771. },
  31772. sideDressed: {
  31773. height: math.unit(195, "cm"),
  31774. weight: math.unit(102, "kg"),
  31775. name: "Side-dressed",
  31776. image: {
  31777. source: "./media/characters/irbisgreif/side-dressed.svg",
  31778. extra: 788/688,
  31779. bottom: 21/809
  31780. }
  31781. },
  31782. backDressed: {
  31783. height: math.unit(216, "cm"),
  31784. weight: math.unit(102, "kg"),
  31785. name: "Back-dressed",
  31786. image: {
  31787. source: "./media/characters/irbisgreif/back-dressed.svg",
  31788. extra: 901/783,
  31789. bottom: 10/911
  31790. }
  31791. },
  31792. dick: {
  31793. height: math.unit(0.49, "feet"),
  31794. name: "Dick",
  31795. image: {
  31796. source: "./media/characters/irbisgreif/dick.svg"
  31797. }
  31798. },
  31799. wingTop: {
  31800. height: math.unit(1.93 , "feet"),
  31801. name: "Wing-top",
  31802. image: {
  31803. source: "./media/characters/irbisgreif/wing-top.svg"
  31804. }
  31805. },
  31806. wingBottom: {
  31807. height: math.unit(1.93 , "feet"),
  31808. name: "Wing-bottom",
  31809. image: {
  31810. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31811. }
  31812. },
  31813. },
  31814. [
  31815. {
  31816. name: "Normal",
  31817. height: math.unit(216, "cm"),
  31818. default: true
  31819. },
  31820. ]
  31821. ))
  31822. characterMakers.push(() => makeCharacter(
  31823. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31824. {
  31825. front: {
  31826. height: math.unit(6, "feet"),
  31827. weight: math.unit(150, "lb"),
  31828. name: "Front",
  31829. image: {
  31830. source: "./media/characters/pride/front.svg",
  31831. extra: 1299/1230,
  31832. bottom: 18/1317
  31833. }
  31834. },
  31835. },
  31836. [
  31837. {
  31838. name: "Normal",
  31839. height: math.unit(7, "feet")
  31840. },
  31841. {
  31842. name: "Mini-macro",
  31843. height: math.unit(11, "feet")
  31844. },
  31845. {
  31846. name: "Macro",
  31847. height: math.unit(15, "meters"),
  31848. default: true
  31849. },
  31850. {
  31851. name: "Macro+",
  31852. height: math.unit(40, "meters")
  31853. },
  31854. ]
  31855. ))
  31856. characterMakers.push(() => makeCharacter(
  31857. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31858. {
  31859. front: {
  31860. height: math.unit(4 + 2 / 12, "feet"),
  31861. weight: math.unit(95, "lb"),
  31862. name: "Front",
  31863. image: {
  31864. source: "./media/characters/vaelophis-nyx/front.svg",
  31865. extra: 2532/2330,
  31866. bottom: 0/2532
  31867. }
  31868. },
  31869. back: {
  31870. height: math.unit(4 + 2 / 12, "feet"),
  31871. weight: math.unit(95, "lb"),
  31872. name: "Back",
  31873. image: {
  31874. source: "./media/characters/vaelophis-nyx/back.svg",
  31875. extra: 2484/2361,
  31876. bottom: 0/2484
  31877. }
  31878. },
  31879. feralSide: {
  31880. height: math.unit(2 + 1/12, "feet"),
  31881. weight: math.unit(20, "lb"),
  31882. name: "Feral (Side)",
  31883. image: {
  31884. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31885. extra: 1721/1581,
  31886. bottom: 70/1791
  31887. }
  31888. },
  31889. feralLazing: {
  31890. height: math.unit(1.08, "feet"),
  31891. weight: math.unit(20, "lb"),
  31892. name: "Feral (Lazing)",
  31893. image: {
  31894. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31895. extra: 822/822,
  31896. bottom: 248/1070
  31897. }
  31898. },
  31899. ear: {
  31900. height: math.unit(0.416, "feet"),
  31901. name: "Ear",
  31902. image: {
  31903. source: "./media/characters/vaelophis-nyx/ear.svg"
  31904. }
  31905. },
  31906. eye: {
  31907. height: math.unit(0.0748, "feet"),
  31908. name: "Eye",
  31909. image: {
  31910. source: "./media/characters/vaelophis-nyx/eye.svg"
  31911. }
  31912. },
  31913. mouth: {
  31914. height: math.unit(0.378, "feet"),
  31915. name: "Mouth",
  31916. image: {
  31917. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31918. }
  31919. },
  31920. spade: {
  31921. height: math.unit(0.55, "feet"),
  31922. name: "Spade",
  31923. image: {
  31924. source: "./media/characters/vaelophis-nyx/spade.svg"
  31925. }
  31926. },
  31927. },
  31928. [
  31929. {
  31930. name: "Normal",
  31931. height: math.unit(4 + 2/12, "feet"),
  31932. default: true
  31933. },
  31934. ]
  31935. ))
  31936. characterMakers.push(() => makeCharacter(
  31937. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31938. {
  31939. front: {
  31940. height: math.unit(7, "feet"),
  31941. weight: math.unit(231, "lb"),
  31942. name: "Front",
  31943. image: {
  31944. source: "./media/characters/flux/front.svg",
  31945. extra: 919/871,
  31946. bottom: 0/919
  31947. }
  31948. },
  31949. back: {
  31950. height: math.unit(7, "feet"),
  31951. weight: math.unit(231, "lb"),
  31952. name: "Back",
  31953. image: {
  31954. source: "./media/characters/flux/back.svg",
  31955. extra: 1040/992,
  31956. bottom: 0/1040
  31957. }
  31958. },
  31959. frontDressed: {
  31960. height: math.unit(7, "feet"),
  31961. weight: math.unit(231, "lb"),
  31962. name: "Front (Dressed)",
  31963. image: {
  31964. source: "./media/characters/flux/front-dressed.svg",
  31965. extra: 919/871,
  31966. bottom: 0/919
  31967. }
  31968. },
  31969. feralSide: {
  31970. height: math.unit(5, "feet"),
  31971. weight: math.unit(150, "lb"),
  31972. name: "Feral (Side)",
  31973. image: {
  31974. source: "./media/characters/flux/feral-side.svg",
  31975. extra: 598/528,
  31976. bottom: 28/626
  31977. }
  31978. },
  31979. head: {
  31980. height: math.unit(1.585, "feet"),
  31981. name: "Head",
  31982. image: {
  31983. source: "./media/characters/flux/head.svg"
  31984. }
  31985. },
  31986. headSide: {
  31987. height: math.unit(1.74, "feet"),
  31988. name: "Head (Side)",
  31989. image: {
  31990. source: "./media/characters/flux/head-side.svg"
  31991. }
  31992. },
  31993. headSideFire: {
  31994. height: math.unit(1.76, "feet"),
  31995. name: "Head (Side, Fire)",
  31996. image: {
  31997. source: "./media/characters/flux/head-side-fire.svg"
  31998. }
  31999. },
  32000. },
  32001. [
  32002. {
  32003. name: "Normal",
  32004. height: math.unit(7, "feet"),
  32005. default: true
  32006. },
  32007. ]
  32008. ))
  32009. characterMakers.push(() => makeCharacter(
  32010. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32011. {
  32012. front: {
  32013. height: math.unit(9, "feet"),
  32014. weight: math.unit(1012, "lb"),
  32015. name: "Front",
  32016. image: {
  32017. source: "./media/characters/ulfra-lupae/front.svg",
  32018. extra: 1083/1011,
  32019. bottom: 67/1150
  32020. }
  32021. },
  32022. },
  32023. [
  32024. {
  32025. name: "Micro",
  32026. height: math.unit(6, "inches")
  32027. },
  32028. {
  32029. name: "Socializing",
  32030. height: math.unit(6 + 5/12, "feet")
  32031. },
  32032. {
  32033. name: "Normal",
  32034. height: math.unit(9, "feet"),
  32035. default: true
  32036. },
  32037. {
  32038. name: "Macro",
  32039. height: math.unit(150, "feet")
  32040. },
  32041. ]
  32042. ))
  32043. characterMakers.push(() => makeCharacter(
  32044. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32045. {
  32046. front: {
  32047. height: math.unit(5 + 2/12, "feet"),
  32048. weight: math.unit(120, "lb"),
  32049. name: "Front",
  32050. image: {
  32051. source: "./media/characters/timber/front.svg",
  32052. extra: 2814/2705,
  32053. bottom: 181/2995
  32054. }
  32055. },
  32056. },
  32057. [
  32058. {
  32059. name: "Normal",
  32060. height: math.unit(5 + 2/12, "feet"),
  32061. default: true
  32062. },
  32063. ]
  32064. ))
  32065. characterMakers.push(() => makeCharacter(
  32066. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32067. {
  32068. front: {
  32069. height: math.unit(9, "feet"),
  32070. name: "Front",
  32071. image: {
  32072. source: "./media/characters/nicki/front.svg",
  32073. extra: 1240/990,
  32074. bottom: 45/1285
  32075. },
  32076. form: "anthro",
  32077. default: true
  32078. },
  32079. side: {
  32080. height: math.unit(9, "feet"),
  32081. name: "Side",
  32082. image: {
  32083. source: "./media/characters/nicki/side.svg",
  32084. extra: 1047/973,
  32085. bottom: 61/1108
  32086. },
  32087. form: "anthro"
  32088. },
  32089. back: {
  32090. height: math.unit(9, "feet"),
  32091. name: "Back",
  32092. image: {
  32093. source: "./media/characters/nicki/back.svg",
  32094. extra: 1006/965,
  32095. bottom: 39/1045
  32096. },
  32097. form: "anthro"
  32098. },
  32099. taur: {
  32100. height: math.unit(15, "feet"),
  32101. name: "Taur",
  32102. image: {
  32103. source: "./media/characters/nicki/taur.svg",
  32104. extra: 1592/1347,
  32105. bottom: 0/1592
  32106. },
  32107. form: "taur",
  32108. default: true
  32109. },
  32110. },
  32111. [
  32112. {
  32113. name: "Normal",
  32114. height: math.unit(9, "feet"),
  32115. form: "anthro",
  32116. default: true
  32117. },
  32118. {
  32119. name: "Normal",
  32120. height: math.unit(15, "feet"),
  32121. form: "taur",
  32122. default: true
  32123. }
  32124. ],
  32125. {
  32126. "anthro": {
  32127. name: "Anthro",
  32128. default: true
  32129. },
  32130. "taur": {
  32131. name: "Taur"
  32132. }
  32133. }
  32134. ))
  32135. characterMakers.push(() => makeCharacter(
  32136. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32137. {
  32138. front: {
  32139. height: math.unit(7 + 10/12, "feet"),
  32140. weight: math.unit(3.5, "tons"),
  32141. name: "Front",
  32142. image: {
  32143. source: "./media/characters/lee/front.svg",
  32144. extra: 1773/1615,
  32145. bottom: 86/1859
  32146. }
  32147. },
  32148. hand: {
  32149. height: math.unit(1.78, "feet"),
  32150. name: "Hand",
  32151. image: {
  32152. source: "./media/characters/lee/hand.svg"
  32153. }
  32154. },
  32155. maw: {
  32156. height: math.unit(1.18, "feet"),
  32157. name: "Maw",
  32158. image: {
  32159. source: "./media/characters/lee/maw.svg"
  32160. }
  32161. },
  32162. },
  32163. [
  32164. {
  32165. name: "Normal",
  32166. height: math.unit(7 + 10/12, "feet"),
  32167. default: true
  32168. },
  32169. ]
  32170. ))
  32171. characterMakers.push(() => makeCharacter(
  32172. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32173. {
  32174. front: {
  32175. height: math.unit(9, "feet"),
  32176. name: "Front",
  32177. image: {
  32178. source: "./media/characters/guti/front.svg",
  32179. extra: 4551/4355,
  32180. bottom: 123/4674
  32181. }
  32182. },
  32183. tongue: {
  32184. height: math.unit(1, "feet"),
  32185. name: "Tongue",
  32186. image: {
  32187. source: "./media/characters/guti/tongue.svg"
  32188. }
  32189. },
  32190. paw: {
  32191. height: math.unit(1.18, "feet"),
  32192. name: "Paw",
  32193. image: {
  32194. source: "./media/characters/guti/paw.svg"
  32195. }
  32196. },
  32197. },
  32198. [
  32199. {
  32200. name: "Normal",
  32201. height: math.unit(9, "feet"),
  32202. default: true
  32203. },
  32204. ]
  32205. ))
  32206. characterMakers.push(() => makeCharacter(
  32207. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32208. {
  32209. side: {
  32210. height: math.unit(5, "meters"),
  32211. name: "Side",
  32212. image: {
  32213. source: "./media/characters/vesper/side.svg",
  32214. extra: 1605/1518,
  32215. bottom: 0/1605
  32216. }
  32217. },
  32218. },
  32219. [
  32220. {
  32221. name: "Small",
  32222. height: math.unit(5, "meters")
  32223. },
  32224. {
  32225. name: "Sage",
  32226. height: math.unit(100, "meters"),
  32227. default: true
  32228. },
  32229. {
  32230. name: "Fun Size",
  32231. height: math.unit(600, "meters")
  32232. },
  32233. {
  32234. name: "Goddess",
  32235. height: math.unit(20000, "km")
  32236. },
  32237. {
  32238. name: "Maximum",
  32239. height: math.unit(5, "galaxies")
  32240. },
  32241. ]
  32242. ))
  32243. characterMakers.push(() => makeCharacter(
  32244. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32245. {
  32246. front: {
  32247. height: math.unit(6 + 3/12, "feet"),
  32248. weight: math.unit(190, "lb"),
  32249. name: "Front",
  32250. image: {
  32251. source: "./media/characters/gawain/front.svg",
  32252. extra: 2222/2139,
  32253. bottom: 90/2312
  32254. }
  32255. },
  32256. back: {
  32257. height: math.unit(6 + 3/12, "feet"),
  32258. weight: math.unit(190, "lb"),
  32259. name: "Back",
  32260. image: {
  32261. source: "./media/characters/gawain/back.svg",
  32262. extra: 2199/2111,
  32263. bottom: 73/2272
  32264. }
  32265. },
  32266. },
  32267. [
  32268. {
  32269. name: "Normal",
  32270. height: math.unit(6 + 3/12, "feet"),
  32271. default: true
  32272. },
  32273. ]
  32274. ))
  32275. characterMakers.push(() => makeCharacter(
  32276. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32277. {
  32278. side: {
  32279. height: math.unit(3.5, "meters"),
  32280. weight: math.unit(16000, "lb"),
  32281. name: "Side",
  32282. image: {
  32283. source: "./media/characters/dascalti/side.svg",
  32284. extra: 392/273,
  32285. bottom: 47/439
  32286. }
  32287. },
  32288. breath: {
  32289. height: math.unit(7.4, "feet"),
  32290. name: "Breath",
  32291. image: {
  32292. source: "./media/characters/dascalti/breath.svg"
  32293. }
  32294. },
  32295. fed: {
  32296. height: math.unit(3.6, "meters"),
  32297. weight: math.unit(16000, "lb"),
  32298. name: "Fed",
  32299. image: {
  32300. source: "./media/characters/dascalti/fed.svg",
  32301. extra: 1419/820,
  32302. bottom: 95/1514
  32303. }
  32304. },
  32305. },
  32306. [
  32307. {
  32308. name: "Normal",
  32309. height: math.unit(3.5, "meters"),
  32310. default: true
  32311. },
  32312. ]
  32313. ))
  32314. characterMakers.push(() => makeCharacter(
  32315. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32316. {
  32317. front: {
  32318. height: math.unit(3 + 5/12, "feet"),
  32319. name: "Front",
  32320. image: {
  32321. source: "./media/characters/mauve/front.svg",
  32322. extra: 1126/1033,
  32323. bottom: 65/1191
  32324. }
  32325. },
  32326. side: {
  32327. height: math.unit(3 + 5/12, "feet"),
  32328. name: "Side",
  32329. image: {
  32330. source: "./media/characters/mauve/side.svg",
  32331. extra: 1089/1001,
  32332. bottom: 29/1118
  32333. }
  32334. },
  32335. back: {
  32336. height: math.unit(3 + 5/12, "feet"),
  32337. name: "Back",
  32338. image: {
  32339. source: "./media/characters/mauve/back.svg",
  32340. extra: 1173/1053,
  32341. bottom: 109/1282
  32342. }
  32343. },
  32344. },
  32345. [
  32346. {
  32347. name: "Normal",
  32348. height: math.unit(3 + 5/12, "feet"),
  32349. default: true
  32350. },
  32351. ]
  32352. ))
  32353. characterMakers.push(() => makeCharacter(
  32354. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32355. {
  32356. front: {
  32357. height: math.unit(6 + 3/12, "feet"),
  32358. weight: math.unit(430, "lb"),
  32359. name: "Front",
  32360. image: {
  32361. source: "./media/characters/carlos/front.svg",
  32362. extra: 1964/1913,
  32363. bottom: 70/2034
  32364. }
  32365. },
  32366. },
  32367. [
  32368. {
  32369. name: "Normal",
  32370. height: math.unit(6 + 3/12, "feet"),
  32371. default: true
  32372. },
  32373. ]
  32374. ))
  32375. characterMakers.push(() => makeCharacter(
  32376. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32377. {
  32378. back: {
  32379. height: math.unit(5 + 10/12, "feet"),
  32380. weight: math.unit(200, "lb"),
  32381. name: "Back",
  32382. image: {
  32383. source: "./media/characters/jax/back.svg",
  32384. extra: 764/739,
  32385. bottom: 25/789
  32386. }
  32387. },
  32388. },
  32389. [
  32390. {
  32391. name: "Normal",
  32392. height: math.unit(5 + 10/12, "feet"),
  32393. default: true
  32394. },
  32395. ]
  32396. ))
  32397. characterMakers.push(() => makeCharacter(
  32398. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32399. {
  32400. front: {
  32401. height: math.unit(8, "feet"),
  32402. weight: math.unit(250, "lb"),
  32403. name: "Front",
  32404. image: {
  32405. source: "./media/characters/eikthynir/front.svg",
  32406. extra: 1332/1166,
  32407. bottom: 82/1414
  32408. }
  32409. },
  32410. back: {
  32411. height: math.unit(8, "feet"),
  32412. weight: math.unit(250, "lb"),
  32413. name: "Back",
  32414. image: {
  32415. source: "./media/characters/eikthynir/back.svg",
  32416. extra: 1342/1190,
  32417. bottom: 19/1361
  32418. }
  32419. },
  32420. dick: {
  32421. height: math.unit(2.35, "feet"),
  32422. name: "Dick",
  32423. image: {
  32424. source: "./media/characters/eikthynir/dick.svg"
  32425. }
  32426. },
  32427. },
  32428. [
  32429. {
  32430. name: "Normal",
  32431. height: math.unit(8, "feet"),
  32432. default: true
  32433. },
  32434. ]
  32435. ))
  32436. characterMakers.push(() => makeCharacter(
  32437. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32438. {
  32439. front: {
  32440. height: math.unit(99, "meters"),
  32441. weight: math.unit(13000, "tons"),
  32442. name: "Front",
  32443. image: {
  32444. source: "./media/characters/zlmos/front.svg",
  32445. extra: 2202/1992,
  32446. bottom: 315/2517
  32447. }
  32448. },
  32449. },
  32450. [
  32451. {
  32452. name: "Macro",
  32453. height: math.unit(99, "meters"),
  32454. default: true
  32455. },
  32456. ]
  32457. ))
  32458. characterMakers.push(() => makeCharacter(
  32459. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32460. {
  32461. front: {
  32462. height: math.unit(6 + 5/12, "feet"),
  32463. name: "Front",
  32464. image: {
  32465. source: "./media/characters/purri/front.svg",
  32466. extra: 1698/1610,
  32467. bottom: 32/1730
  32468. }
  32469. },
  32470. frontAlt: {
  32471. height: math.unit(6 + 5/12, "feet"),
  32472. name: "Front (Alt)",
  32473. image: {
  32474. source: "./media/characters/purri/front-alt.svg",
  32475. extra: 450/420,
  32476. bottom: 26/476
  32477. }
  32478. },
  32479. boots: {
  32480. height: math.unit(5.5, "feet"),
  32481. name: "Boots",
  32482. image: {
  32483. source: "./media/characters/purri/boots.svg",
  32484. extra: 905/853,
  32485. bottom: 18/923
  32486. }
  32487. },
  32488. lying: {
  32489. height: math.unit(2, "feet"),
  32490. name: "Lying",
  32491. image: {
  32492. source: "./media/characters/purri/lying.svg",
  32493. extra: 940/843,
  32494. bottom: 146/1086
  32495. }
  32496. },
  32497. devious: {
  32498. height: math.unit(1.77, "feet"),
  32499. name: "Devious",
  32500. image: {
  32501. source: "./media/characters/purri/devious.svg",
  32502. extra: 1440/1155,
  32503. bottom: 147/1587
  32504. }
  32505. },
  32506. bean: {
  32507. height: math.unit(1.94, "feet"),
  32508. name: "Bean",
  32509. image: {
  32510. source: "./media/characters/purri/bean.svg"
  32511. }
  32512. },
  32513. },
  32514. [
  32515. {
  32516. name: "Micro",
  32517. height: math.unit(1, "mm")
  32518. },
  32519. {
  32520. name: "Normal",
  32521. height: math.unit(6 + 5/12, "feet"),
  32522. default: true
  32523. },
  32524. {
  32525. name: "Macro :3c",
  32526. height: math.unit(2, "miles")
  32527. },
  32528. ]
  32529. ))
  32530. characterMakers.push(() => makeCharacter(
  32531. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32532. {
  32533. front: {
  32534. height: math.unit(6 + 2/12, "feet"),
  32535. weight: math.unit(250, "lb"),
  32536. name: "Front",
  32537. image: {
  32538. source: "./media/characters/moonlight/front.svg",
  32539. extra: 1044/908,
  32540. bottom: 56/1100
  32541. }
  32542. },
  32543. feral: {
  32544. height: math.unit(3 + 1/12, "feet"),
  32545. weight: math.unit(50, "kg"),
  32546. name: "Feral",
  32547. image: {
  32548. source: "./media/characters/moonlight/feral.svg",
  32549. extra: 3705/2791,
  32550. bottom: 145/3850
  32551. }
  32552. },
  32553. paw: {
  32554. height: math.unit(1, "feet"),
  32555. name: "Paw",
  32556. image: {
  32557. source: "./media/characters/moonlight/paw.svg"
  32558. }
  32559. },
  32560. paws: {
  32561. height: math.unit(0.98, "feet"),
  32562. name: "Paws",
  32563. image: {
  32564. source: "./media/characters/moonlight/paws.svg",
  32565. extra: 939/939,
  32566. bottom: 50/989
  32567. }
  32568. },
  32569. mouth: {
  32570. height: math.unit(0.48, "feet"),
  32571. name: "Mouth",
  32572. image: {
  32573. source: "./media/characters/moonlight/mouth.svg"
  32574. }
  32575. },
  32576. dick: {
  32577. height: math.unit(1.46, "feet"),
  32578. name: "Dick",
  32579. image: {
  32580. source: "./media/characters/moonlight/dick.svg"
  32581. }
  32582. },
  32583. },
  32584. [
  32585. {
  32586. name: "Normal",
  32587. height: math.unit(6 + 2/12, "feet"),
  32588. default: true
  32589. },
  32590. {
  32591. name: "Macro",
  32592. height: math.unit(300, "feet")
  32593. },
  32594. {
  32595. name: "Macro+",
  32596. height: math.unit(1, "mile")
  32597. },
  32598. {
  32599. name: "Mt. Moon",
  32600. height: math.unit(5, "miles")
  32601. },
  32602. {
  32603. name: "Megamacro",
  32604. height: math.unit(15, "miles")
  32605. },
  32606. ]
  32607. ))
  32608. characterMakers.push(() => makeCharacter(
  32609. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32610. {
  32611. back: {
  32612. height: math.unit(6, "feet"),
  32613. weight: math.unit(150, "lb"),
  32614. name: "Back",
  32615. image: {
  32616. source: "./media/characters/sylen/back.svg",
  32617. extra: 1335/1273,
  32618. bottom: 107/1442
  32619. }
  32620. },
  32621. },
  32622. [
  32623. {
  32624. name: "Normal",
  32625. height: math.unit(5 + 5/12, "feet")
  32626. },
  32627. {
  32628. name: "Megamacro",
  32629. height: math.unit(3, "miles"),
  32630. default: true
  32631. },
  32632. ]
  32633. ))
  32634. characterMakers.push(() => makeCharacter(
  32635. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32636. {
  32637. front: {
  32638. height: math.unit(6, "feet"),
  32639. weight: math.unit(190, "lb"),
  32640. name: "Front",
  32641. image: {
  32642. source: "./media/characters/huttser/front.svg",
  32643. extra: 1152/1058,
  32644. bottom: 23/1175
  32645. }
  32646. },
  32647. side: {
  32648. height: math.unit(6, "feet"),
  32649. weight: math.unit(190, "lb"),
  32650. name: "Side",
  32651. image: {
  32652. source: "./media/characters/huttser/side.svg",
  32653. extra: 1174/1065,
  32654. bottom: 18/1192
  32655. }
  32656. },
  32657. back: {
  32658. height: math.unit(6, "feet"),
  32659. weight: math.unit(190, "lb"),
  32660. name: "Back",
  32661. image: {
  32662. source: "./media/characters/huttser/back.svg",
  32663. extra: 1158/1056,
  32664. bottom: 12/1170
  32665. }
  32666. },
  32667. },
  32668. [
  32669. ]
  32670. ))
  32671. characterMakers.push(() => makeCharacter(
  32672. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32673. {
  32674. side: {
  32675. height: math.unit(12 + 9/12, "feet"),
  32676. weight: math.unit(15000, "lb"),
  32677. name: "Side",
  32678. image: {
  32679. source: "./media/characters/faan/side.svg",
  32680. extra: 2747/2697,
  32681. bottom: 0/2747
  32682. }
  32683. },
  32684. front: {
  32685. height: math.unit(12 + 9/12, "feet"),
  32686. weight: math.unit(15000, "lb"),
  32687. name: "Front",
  32688. image: {
  32689. source: "./media/characters/faan/front.svg",
  32690. extra: 607/571,
  32691. bottom: 24/631
  32692. }
  32693. },
  32694. head: {
  32695. height: math.unit(2.85, "feet"),
  32696. name: "Head",
  32697. image: {
  32698. source: "./media/characters/faan/head.svg"
  32699. }
  32700. },
  32701. headAlt: {
  32702. height: math.unit(3.13, "feet"),
  32703. name: "Head-alt",
  32704. image: {
  32705. source: "./media/characters/faan/head-alt.svg"
  32706. }
  32707. },
  32708. },
  32709. [
  32710. {
  32711. name: "Normal",
  32712. height: math.unit(12 + 9/12, "feet"),
  32713. default: true
  32714. },
  32715. ]
  32716. ))
  32717. characterMakers.push(() => makeCharacter(
  32718. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32719. {
  32720. front: {
  32721. height: math.unit(6, "feet"),
  32722. weight: math.unit(300, "lb"),
  32723. name: "Front",
  32724. image: {
  32725. source: "./media/characters/tanio/front.svg",
  32726. extra: 711/673,
  32727. bottom: 25/736
  32728. }
  32729. },
  32730. },
  32731. [
  32732. {
  32733. name: "Normal",
  32734. height: math.unit(6, "feet"),
  32735. default: true
  32736. },
  32737. ]
  32738. ))
  32739. characterMakers.push(() => makeCharacter(
  32740. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32741. {
  32742. front: {
  32743. height: math.unit(3, "inches"),
  32744. name: "Front",
  32745. image: {
  32746. source: "./media/characters/noboru/front.svg",
  32747. extra: 1039/932,
  32748. bottom: 18/1057
  32749. }
  32750. },
  32751. },
  32752. [
  32753. {
  32754. name: "Micro",
  32755. height: math.unit(3, "inches"),
  32756. default: true
  32757. },
  32758. ]
  32759. ))
  32760. characterMakers.push(() => makeCharacter(
  32761. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32762. {
  32763. front: {
  32764. height: math.unit(1.85, "meters"),
  32765. weight: math.unit(80, "kg"),
  32766. name: "Front",
  32767. image: {
  32768. source: "./media/characters/daniel-barrett/front.svg",
  32769. extra: 355/337,
  32770. bottom: 9/364
  32771. }
  32772. },
  32773. },
  32774. [
  32775. {
  32776. name: "Pico",
  32777. height: math.unit(0.0433, "mm")
  32778. },
  32779. {
  32780. name: "Nano",
  32781. height: math.unit(1.5, "mm")
  32782. },
  32783. {
  32784. name: "Micro",
  32785. height: math.unit(5.3, "cm"),
  32786. default: true
  32787. },
  32788. {
  32789. name: "Normal",
  32790. height: math.unit(1.85, "meters")
  32791. },
  32792. {
  32793. name: "Macro",
  32794. height: math.unit(64.7, "meters")
  32795. },
  32796. {
  32797. name: "Megamacro",
  32798. height: math.unit(2.26, "km")
  32799. },
  32800. {
  32801. name: "Gigamacro",
  32802. height: math.unit(79, "km")
  32803. },
  32804. {
  32805. name: "Teramacro",
  32806. height: math.unit(2765, "km")
  32807. },
  32808. {
  32809. name: "Petamacro",
  32810. height: math.unit(96678, "km")
  32811. },
  32812. ]
  32813. ))
  32814. characterMakers.push(() => makeCharacter(
  32815. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32816. {
  32817. front: {
  32818. height: math.unit(30, "meters"),
  32819. weight: math.unit(400, "tons"),
  32820. name: "Front",
  32821. image: {
  32822. source: "./media/characters/zeel/front.svg",
  32823. extra: 2599/2599,
  32824. bottom: 226/2825
  32825. }
  32826. },
  32827. },
  32828. [
  32829. {
  32830. name: "Macro",
  32831. height: math.unit(30, "meters"),
  32832. default: true
  32833. },
  32834. ]
  32835. ))
  32836. characterMakers.push(() => makeCharacter(
  32837. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32838. {
  32839. front: {
  32840. height: math.unit(6 + 7/12, "feet"),
  32841. weight: math.unit(210, "lb"),
  32842. name: "Front",
  32843. image: {
  32844. source: "./media/characters/tarn/front.svg",
  32845. extra: 3517/3220,
  32846. bottom: 91/3608
  32847. }
  32848. },
  32849. back: {
  32850. height: math.unit(6 + 7/12, "feet"),
  32851. weight: math.unit(210, "lb"),
  32852. name: "Back",
  32853. image: {
  32854. source: "./media/characters/tarn/back.svg",
  32855. extra: 3566/3241,
  32856. bottom: 34/3600
  32857. }
  32858. },
  32859. dick: {
  32860. height: math.unit(1.65, "feet"),
  32861. name: "Dick",
  32862. image: {
  32863. source: "./media/characters/tarn/dick.svg"
  32864. }
  32865. },
  32866. paw: {
  32867. height: math.unit(1.80, "feet"),
  32868. name: "Paw",
  32869. image: {
  32870. source: "./media/characters/tarn/paw.svg"
  32871. }
  32872. },
  32873. tongue: {
  32874. height: math.unit(0.97, "feet"),
  32875. name: "Tongue",
  32876. image: {
  32877. source: "./media/characters/tarn/tongue.svg"
  32878. }
  32879. },
  32880. },
  32881. [
  32882. {
  32883. name: "Micro",
  32884. height: math.unit(4, "inches")
  32885. },
  32886. {
  32887. name: "Normal",
  32888. height: math.unit(6 + 7/12, "feet"),
  32889. default: true
  32890. },
  32891. {
  32892. name: "Macro",
  32893. height: math.unit(300, "feet")
  32894. },
  32895. ]
  32896. ))
  32897. characterMakers.push(() => makeCharacter(
  32898. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32899. {
  32900. front: {
  32901. height: math.unit(5 + 7/12, "feet"),
  32902. weight: math.unit(80, "kg"),
  32903. name: "Front",
  32904. image: {
  32905. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32906. extra: 3023/2865,
  32907. bottom: 33/3056
  32908. }
  32909. },
  32910. back: {
  32911. height: math.unit(5 + 7/12, "feet"),
  32912. weight: math.unit(80, "kg"),
  32913. name: "Back",
  32914. image: {
  32915. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32916. extra: 3020/2886,
  32917. bottom: 30/3050
  32918. }
  32919. },
  32920. dick: {
  32921. height: math.unit(0.98, "feet"),
  32922. name: "Dick",
  32923. image: {
  32924. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32925. }
  32926. },
  32927. anatomy: {
  32928. height: math.unit(2.86, "feet"),
  32929. name: "Anatomy",
  32930. image: {
  32931. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32932. }
  32933. },
  32934. },
  32935. [
  32936. {
  32937. name: "Really Small",
  32938. height: math.unit(2, "inches")
  32939. },
  32940. {
  32941. name: "Micro",
  32942. height: math.unit(5.583, "inches")
  32943. },
  32944. {
  32945. name: "Normal",
  32946. height: math.unit(5 + 7/12, "feet"),
  32947. default: true
  32948. },
  32949. {
  32950. name: "Macro",
  32951. height: math.unit(67, "feet")
  32952. },
  32953. {
  32954. name: "Megamacro",
  32955. height: math.unit(134, "feet")
  32956. },
  32957. ]
  32958. ))
  32959. characterMakers.push(() => makeCharacter(
  32960. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32961. {
  32962. front: {
  32963. height: math.unit(9, "feet"),
  32964. weight: math.unit(120, "lb"),
  32965. name: "Front",
  32966. image: {
  32967. source: "./media/characters/sally/front.svg",
  32968. extra: 1506/1349,
  32969. bottom: 66/1572
  32970. }
  32971. },
  32972. },
  32973. [
  32974. {
  32975. name: "Normal",
  32976. height: math.unit(9, "feet"),
  32977. default: true
  32978. },
  32979. ]
  32980. ))
  32981. characterMakers.push(() => makeCharacter(
  32982. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32983. {
  32984. front: {
  32985. height: math.unit(8, "feet"),
  32986. weight: math.unit(900, "lb"),
  32987. name: "Front",
  32988. image: {
  32989. source: "./media/characters/owen/front.svg",
  32990. extra: 1761/1657,
  32991. bottom: 74/1835
  32992. }
  32993. },
  32994. side: {
  32995. height: math.unit(8, "feet"),
  32996. weight: math.unit(900, "lb"),
  32997. name: "Side",
  32998. image: {
  32999. source: "./media/characters/owen/side.svg",
  33000. extra: 1797/1734,
  33001. bottom: 30/1827
  33002. }
  33003. },
  33004. back: {
  33005. height: math.unit(8, "feet"),
  33006. weight: math.unit(900, "lb"),
  33007. name: "Back",
  33008. image: {
  33009. source: "./media/characters/owen/back.svg",
  33010. extra: 1796/1706,
  33011. bottom: 59/1855
  33012. }
  33013. },
  33014. maw: {
  33015. height: math.unit(1.76, "feet"),
  33016. name: "Maw",
  33017. image: {
  33018. source: "./media/characters/owen/maw.svg"
  33019. }
  33020. },
  33021. },
  33022. [
  33023. {
  33024. name: "Normal",
  33025. height: math.unit(8, "feet"),
  33026. default: true
  33027. },
  33028. ]
  33029. ))
  33030. characterMakers.push(() => makeCharacter(
  33031. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33032. {
  33033. front: {
  33034. height: math.unit(4, "feet"),
  33035. weight: math.unit(400, "lb"),
  33036. name: "Front",
  33037. image: {
  33038. source: "./media/characters/ryth/front.svg",
  33039. extra: 1920/1748,
  33040. bottom: 42/1962
  33041. }
  33042. },
  33043. back: {
  33044. height: math.unit(4, "feet"),
  33045. weight: math.unit(400, "lb"),
  33046. name: "Back",
  33047. image: {
  33048. source: "./media/characters/ryth/back.svg",
  33049. extra: 1897/1690,
  33050. bottom: 89/1986
  33051. }
  33052. },
  33053. mouth: {
  33054. height: math.unit(1.39, "feet"),
  33055. name: "Mouth",
  33056. image: {
  33057. source: "./media/characters/ryth/mouth.svg"
  33058. }
  33059. },
  33060. tailmaw: {
  33061. height: math.unit(1.23, "feet"),
  33062. name: "Tailmaw",
  33063. image: {
  33064. source: "./media/characters/ryth/tailmaw.svg"
  33065. }
  33066. },
  33067. goia: {
  33068. height: math.unit(4, "meters"),
  33069. weight: math.unit(10800, "lb"),
  33070. name: "Goia",
  33071. image: {
  33072. source: "./media/characters/ryth/goia.svg",
  33073. extra: 745/640,
  33074. bottom: 107/852
  33075. }
  33076. },
  33077. goiaFront: {
  33078. height: math.unit(4, "meters"),
  33079. weight: math.unit(10800, "lb"),
  33080. name: "Goia (Front)",
  33081. image: {
  33082. source: "./media/characters/ryth/goia-front.svg",
  33083. extra: 750/586,
  33084. bottom: 114/864
  33085. }
  33086. },
  33087. goiaMaw: {
  33088. height: math.unit(5.55, "feet"),
  33089. name: "Goia Maw",
  33090. image: {
  33091. source: "./media/characters/ryth/goia-maw.svg"
  33092. }
  33093. },
  33094. goiaForepaw: {
  33095. height: math.unit(3.5, "feet"),
  33096. name: "Goia Forepaw",
  33097. image: {
  33098. source: "./media/characters/ryth/goia-forepaw.svg"
  33099. }
  33100. },
  33101. goiaHindpaw: {
  33102. height: math.unit(5.55, "feet"),
  33103. name: "Goia Hindpaw",
  33104. image: {
  33105. source: "./media/characters/ryth/goia-hindpaw.svg"
  33106. }
  33107. },
  33108. },
  33109. [
  33110. {
  33111. name: "Normal",
  33112. height: math.unit(4, "feet"),
  33113. default: true
  33114. },
  33115. ]
  33116. ))
  33117. characterMakers.push(() => makeCharacter(
  33118. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33119. {
  33120. front: {
  33121. height: math.unit(7, "feet"),
  33122. weight: math.unit(180, "lb"),
  33123. name: "Front",
  33124. image: {
  33125. source: "./media/characters/necrolance/front.svg",
  33126. extra: 1062/947,
  33127. bottom: 41/1103
  33128. }
  33129. },
  33130. back: {
  33131. height: math.unit(7, "feet"),
  33132. weight: math.unit(180, "lb"),
  33133. name: "Back",
  33134. image: {
  33135. source: "./media/characters/necrolance/back.svg",
  33136. extra: 1045/984,
  33137. bottom: 14/1059
  33138. }
  33139. },
  33140. wing: {
  33141. height: math.unit(2.67, "feet"),
  33142. name: "Wing",
  33143. image: {
  33144. source: "./media/characters/necrolance/wing.svg"
  33145. }
  33146. },
  33147. },
  33148. [
  33149. {
  33150. name: "Normal",
  33151. height: math.unit(7, "feet"),
  33152. default: true
  33153. },
  33154. ]
  33155. ))
  33156. characterMakers.push(() => makeCharacter(
  33157. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33158. {
  33159. front: {
  33160. height: math.unit(76, "meters"),
  33161. weight: math.unit(30000, "tons"),
  33162. name: "Front",
  33163. image: {
  33164. source: "./media/characters/tyler/front.svg",
  33165. extra: 1640/1640,
  33166. bottom: 114/1754
  33167. }
  33168. },
  33169. },
  33170. [
  33171. {
  33172. name: "Macro",
  33173. height: math.unit(76, "meters"),
  33174. default: true
  33175. },
  33176. ]
  33177. ))
  33178. characterMakers.push(() => makeCharacter(
  33179. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33180. {
  33181. front: {
  33182. height: math.unit(4 + 11/12, "feet"),
  33183. weight: math.unit(132, "lb"),
  33184. name: "Front",
  33185. image: {
  33186. source: "./media/characters/icey/front.svg",
  33187. extra: 2750/2550,
  33188. bottom: 33/2783
  33189. }
  33190. },
  33191. back: {
  33192. height: math.unit(4 + 11/12, "feet"),
  33193. weight: math.unit(132, "lb"),
  33194. name: "Back",
  33195. image: {
  33196. source: "./media/characters/icey/back.svg",
  33197. extra: 2624/2481,
  33198. bottom: 35/2659
  33199. }
  33200. },
  33201. },
  33202. [
  33203. {
  33204. name: "Normal",
  33205. height: math.unit(4 + 11/12, "feet"),
  33206. default: true
  33207. },
  33208. ]
  33209. ))
  33210. characterMakers.push(() => makeCharacter(
  33211. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33212. {
  33213. front: {
  33214. height: math.unit(100, "feet"),
  33215. weight: math.unit(0, "lb"),
  33216. name: "Front",
  33217. image: {
  33218. source: "./media/characters/smile/front.svg",
  33219. extra: 2983/2912,
  33220. bottom: 162/3145
  33221. }
  33222. },
  33223. back: {
  33224. height: math.unit(100, "feet"),
  33225. weight: math.unit(0, "lb"),
  33226. name: "Back",
  33227. image: {
  33228. source: "./media/characters/smile/back.svg",
  33229. extra: 3143/3031,
  33230. bottom: 91/3234
  33231. }
  33232. },
  33233. head: {
  33234. height: math.unit(26.3, "feet"),
  33235. weight: math.unit(0, "lb"),
  33236. name: "Head",
  33237. image: {
  33238. source: "./media/characters/smile/head.svg"
  33239. }
  33240. },
  33241. collar: {
  33242. height: math.unit(5.3, "feet"),
  33243. weight: math.unit(0, "lb"),
  33244. name: "Collar",
  33245. image: {
  33246. source: "./media/characters/smile/collar.svg"
  33247. }
  33248. },
  33249. },
  33250. [
  33251. {
  33252. name: "Macro",
  33253. height: math.unit(100, "feet"),
  33254. default: true
  33255. },
  33256. ]
  33257. ))
  33258. characterMakers.push(() => makeCharacter(
  33259. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33260. {
  33261. dragon: {
  33262. height: math.unit(26, "feet"),
  33263. weight: math.unit(36, "tons"),
  33264. name: "Dragon",
  33265. image: {
  33266. source: "./media/characters/arimphae/dragon.svg",
  33267. extra: 1574/983,
  33268. bottom: 357/1931
  33269. }
  33270. },
  33271. drake: {
  33272. height: math.unit(9, "feet"),
  33273. weight: math.unit(1.5, "tons"),
  33274. name: "Drake",
  33275. image: {
  33276. source: "./media/characters/arimphae/drake.svg",
  33277. extra: 1120/925,
  33278. bottom: 435/1555
  33279. }
  33280. },
  33281. },
  33282. [
  33283. {
  33284. name: "Small",
  33285. height: math.unit(26*5/9, "feet")
  33286. },
  33287. {
  33288. name: "Normal",
  33289. height: math.unit(26, "feet"),
  33290. default: true
  33291. },
  33292. ]
  33293. ))
  33294. characterMakers.push(() => makeCharacter(
  33295. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33296. {
  33297. front: {
  33298. height: math.unit(8 + 9/12, "feet"),
  33299. name: "Front",
  33300. image: {
  33301. source: "./media/characters/xander/front.svg",
  33302. extra: 1237/974,
  33303. bottom: 94/1331
  33304. }
  33305. },
  33306. },
  33307. [
  33308. {
  33309. name: "Normal",
  33310. height: math.unit(8 + 9/12, "feet"),
  33311. default: true
  33312. },
  33313. {
  33314. name: "Gaze Grabber",
  33315. height: math.unit(13 + 8/12, "feet")
  33316. },
  33317. {
  33318. name: "Jaw Dropper",
  33319. height: math.unit(27, "feet")
  33320. },
  33321. {
  33322. name: "Show Stopper",
  33323. height: math.unit(136, "feet")
  33324. },
  33325. {
  33326. name: "Superstar",
  33327. height: math.unit(1.9e6, "miles")
  33328. },
  33329. ]
  33330. ))
  33331. characterMakers.push(() => makeCharacter(
  33332. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33333. {
  33334. side: {
  33335. height: math.unit(2100, "feet"),
  33336. name: "Side",
  33337. image: {
  33338. source: "./media/characters/osiris/side.svg",
  33339. extra: 1105/939,
  33340. bottom: 167/1272
  33341. }
  33342. },
  33343. },
  33344. [
  33345. {
  33346. name: "Macro",
  33347. height: math.unit(2100, "feet"),
  33348. default: true
  33349. },
  33350. ]
  33351. ))
  33352. characterMakers.push(() => makeCharacter(
  33353. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33354. {
  33355. front: {
  33356. height: math.unit(6 + 8/12, "feet"),
  33357. weight: math.unit(225, "lb"),
  33358. name: "Front",
  33359. image: {
  33360. source: "./media/characters/rhys-londe/front.svg",
  33361. extra: 2258/2141,
  33362. bottom: 188/2446
  33363. }
  33364. },
  33365. back: {
  33366. height: math.unit(6 + 8/12, "feet"),
  33367. weight: math.unit(225, "lb"),
  33368. name: "Back",
  33369. image: {
  33370. source: "./media/characters/rhys-londe/back.svg",
  33371. extra: 2237/2137,
  33372. bottom: 63/2300
  33373. }
  33374. },
  33375. frontNsfw: {
  33376. height: math.unit(6 + 8/12, "feet"),
  33377. weight: math.unit(225, "lb"),
  33378. name: "Front (NSFW)",
  33379. image: {
  33380. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33381. extra: 2258/2141,
  33382. bottom: 188/2446
  33383. }
  33384. },
  33385. backNsfw: {
  33386. height: math.unit(6 + 8/12, "feet"),
  33387. weight: math.unit(225, "lb"),
  33388. name: "Back (NSFW)",
  33389. image: {
  33390. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33391. extra: 2237/2137,
  33392. bottom: 63/2300
  33393. }
  33394. },
  33395. dick: {
  33396. height: math.unit(30, "inches"),
  33397. name: "Dick",
  33398. image: {
  33399. source: "./media/characters/rhys-londe/dick.svg"
  33400. }
  33401. },
  33402. maw: {
  33403. height: math.unit(1.6, "feet"),
  33404. name: "Maw",
  33405. image: {
  33406. source: "./media/characters/rhys-londe/maw.svg"
  33407. }
  33408. },
  33409. },
  33410. [
  33411. {
  33412. name: "Normal",
  33413. height: math.unit(6 + 8/12, "feet"),
  33414. default: true
  33415. },
  33416. ]
  33417. ))
  33418. characterMakers.push(() => makeCharacter(
  33419. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33420. {
  33421. front: {
  33422. height: math.unit(3 + 10/12, "feet"),
  33423. weight: math.unit(90, "lb"),
  33424. name: "Front",
  33425. image: {
  33426. source: "./media/characters/taivas-ensim/front.svg",
  33427. extra: 1327/1216,
  33428. bottom: 96/1423
  33429. }
  33430. },
  33431. back: {
  33432. height: math.unit(3 + 10/12, "feet"),
  33433. weight: math.unit(90, "lb"),
  33434. name: "Back",
  33435. image: {
  33436. source: "./media/characters/taivas-ensim/back.svg",
  33437. extra: 1355/1247,
  33438. bottom: 11/1366
  33439. }
  33440. },
  33441. frontNsfw: {
  33442. height: math.unit(3 + 10/12, "feet"),
  33443. weight: math.unit(90, "lb"),
  33444. name: "Front (NSFW)",
  33445. image: {
  33446. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33447. extra: 1327/1216,
  33448. bottom: 96/1423
  33449. }
  33450. },
  33451. backNsfw: {
  33452. height: math.unit(3 + 10/12, "feet"),
  33453. weight: math.unit(90, "lb"),
  33454. name: "Back (NSFW)",
  33455. image: {
  33456. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33457. extra: 1355/1247,
  33458. bottom: 11/1366
  33459. }
  33460. },
  33461. },
  33462. [
  33463. {
  33464. name: "Normal",
  33465. height: math.unit(3 + 10/12, "feet"),
  33466. default: true
  33467. },
  33468. ]
  33469. ))
  33470. characterMakers.push(() => makeCharacter(
  33471. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33472. {
  33473. front: {
  33474. height: math.unit(9 + 6/12, "feet"),
  33475. weight: math.unit(940, "lb"),
  33476. name: "Front",
  33477. image: {
  33478. source: "./media/characters/byliss/front.svg",
  33479. extra: 1327/1290,
  33480. bottom: 82/1409
  33481. }
  33482. },
  33483. back: {
  33484. height: math.unit(9 + 6/12, "feet"),
  33485. weight: math.unit(940, "lb"),
  33486. name: "Back",
  33487. image: {
  33488. source: "./media/characters/byliss/back.svg",
  33489. extra: 1376/1349,
  33490. bottom: 9/1385
  33491. }
  33492. },
  33493. frontNsfw: {
  33494. height: math.unit(9 + 6/12, "feet"),
  33495. weight: math.unit(940, "lb"),
  33496. name: "Front (NSFW)",
  33497. image: {
  33498. source: "./media/characters/byliss/front-nsfw.svg",
  33499. extra: 1327/1290,
  33500. bottom: 82/1409
  33501. }
  33502. },
  33503. backNsfw: {
  33504. height: math.unit(9 + 6/12, "feet"),
  33505. weight: math.unit(940, "lb"),
  33506. name: "Back (NSFW)",
  33507. image: {
  33508. source: "./media/characters/byliss/back-nsfw.svg",
  33509. extra: 1376/1349,
  33510. bottom: 9/1385
  33511. }
  33512. },
  33513. },
  33514. [
  33515. {
  33516. name: "Normal",
  33517. height: math.unit(9 + 6/12, "feet"),
  33518. default: true
  33519. },
  33520. ]
  33521. ))
  33522. characterMakers.push(() => makeCharacter(
  33523. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33524. {
  33525. front: {
  33526. height: math.unit(5 + 2/12, "feet"),
  33527. weight: math.unit(200, "lb"),
  33528. name: "Front",
  33529. image: {
  33530. source: "./media/characters/noraly/front.svg",
  33531. extra: 4985/4773,
  33532. bottom: 150/5135
  33533. }
  33534. },
  33535. full: {
  33536. height: math.unit(5 + 2/12, "feet"),
  33537. weight: math.unit(164, "lb"),
  33538. name: "Full",
  33539. image: {
  33540. source: "./media/characters/noraly/full.svg",
  33541. extra: 1114/1059,
  33542. bottom: 35/1149
  33543. }
  33544. },
  33545. fuller: {
  33546. height: math.unit(5 + 2/12, "feet"),
  33547. weight: math.unit(230, "lb"),
  33548. name: "Fuller",
  33549. image: {
  33550. source: "./media/characters/noraly/fuller.svg",
  33551. extra: 1114/1059,
  33552. bottom: 35/1149
  33553. }
  33554. },
  33555. fullest: {
  33556. height: math.unit(5 + 2/12, "feet"),
  33557. weight: math.unit(300, "lb"),
  33558. name: "Fullest",
  33559. image: {
  33560. source: "./media/characters/noraly/fullest.svg",
  33561. extra: 1114/1059,
  33562. bottom: 35/1149
  33563. }
  33564. },
  33565. },
  33566. [
  33567. {
  33568. name: "Normal",
  33569. height: math.unit(5 + 2/12, "feet"),
  33570. default: true
  33571. },
  33572. ]
  33573. ))
  33574. characterMakers.push(() => makeCharacter(
  33575. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33576. {
  33577. front: {
  33578. height: math.unit(5 + 2/12, "feet"),
  33579. weight: math.unit(210, "lb"),
  33580. name: "Front",
  33581. image: {
  33582. source: "./media/characters/pera/front.svg",
  33583. extra: 1560/1531,
  33584. bottom: 165/1725
  33585. }
  33586. },
  33587. back: {
  33588. height: math.unit(5 + 2/12, "feet"),
  33589. weight: math.unit(210, "lb"),
  33590. name: "Back",
  33591. image: {
  33592. source: "./media/characters/pera/back.svg",
  33593. extra: 1523/1493,
  33594. bottom: 152/1675
  33595. }
  33596. },
  33597. dick: {
  33598. height: math.unit(2.4, "feet"),
  33599. name: "Dick",
  33600. image: {
  33601. source: "./media/characters/pera/dick.svg"
  33602. }
  33603. },
  33604. },
  33605. [
  33606. {
  33607. name: "Normal",
  33608. height: math.unit(5 + 2/12, "feet"),
  33609. default: true
  33610. },
  33611. ]
  33612. ))
  33613. characterMakers.push(() => makeCharacter(
  33614. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33615. {
  33616. front: {
  33617. height: math.unit(12, "feet"),
  33618. weight: math.unit(3200, "lb"),
  33619. name: "Front",
  33620. image: {
  33621. source: "./media/characters/julian/front.svg",
  33622. extra: 2962/2701,
  33623. bottom: 184/3146
  33624. }
  33625. },
  33626. maw: {
  33627. height: math.unit(5.35, "feet"),
  33628. name: "Maw",
  33629. image: {
  33630. source: "./media/characters/julian/maw.svg"
  33631. }
  33632. },
  33633. paw: {
  33634. height: math.unit(3.07, "feet"),
  33635. name: "Paw",
  33636. image: {
  33637. source: "./media/characters/julian/paw.svg"
  33638. }
  33639. },
  33640. },
  33641. [
  33642. {
  33643. name: "Default",
  33644. height: math.unit(12, "feet"),
  33645. default: true
  33646. },
  33647. {
  33648. name: "Big",
  33649. height: math.unit(50, "feet")
  33650. },
  33651. {
  33652. name: "Really Big",
  33653. height: math.unit(1, "mile")
  33654. },
  33655. {
  33656. name: "Extremely Big",
  33657. height: math.unit(100, "miles")
  33658. },
  33659. {
  33660. name: "Planet Hugger",
  33661. height: math.unit(200, "megameters")
  33662. },
  33663. {
  33664. name: "Unreasonably Big",
  33665. height: math.unit(1e300, "meters")
  33666. },
  33667. ]
  33668. ))
  33669. characterMakers.push(() => makeCharacter(
  33670. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33671. {
  33672. solgooleo: {
  33673. height: math.unit(4, "meters"),
  33674. weight: math.unit(6000*1.5, "kg"),
  33675. volume: math.unit(6000, "liters"),
  33676. name: "Solgooleo",
  33677. image: {
  33678. source: "./media/characters/pi/solgooleo.svg",
  33679. extra: 388/331,
  33680. bottom: 29/417
  33681. }
  33682. },
  33683. },
  33684. [
  33685. {
  33686. name: "Normal",
  33687. height: math.unit(4, "meters"),
  33688. default: true
  33689. },
  33690. ]
  33691. ))
  33692. characterMakers.push(() => makeCharacter(
  33693. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33694. {
  33695. front: {
  33696. height: math.unit(8, "feet"),
  33697. weight: math.unit(4, "tons"),
  33698. name: "Front",
  33699. image: {
  33700. source: "./media/characters/shaun/front.svg",
  33701. extra: 503/495,
  33702. bottom: 20/523
  33703. }
  33704. },
  33705. back: {
  33706. height: math.unit(8, "feet"),
  33707. weight: math.unit(4, "tons"),
  33708. name: "Back",
  33709. image: {
  33710. source: "./media/characters/shaun/back.svg",
  33711. extra: 487/480,
  33712. bottom: 20/507
  33713. }
  33714. },
  33715. },
  33716. [
  33717. {
  33718. name: "Lorg",
  33719. height: math.unit(8, "feet"),
  33720. default: true
  33721. },
  33722. ]
  33723. ))
  33724. characterMakers.push(() => makeCharacter(
  33725. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33726. {
  33727. frontAnthro: {
  33728. height: math.unit(7, "feet"),
  33729. name: "Front",
  33730. image: {
  33731. source: "./media/characters/sini/front-anthro.svg",
  33732. extra: 726/678,
  33733. bottom: 35/761
  33734. },
  33735. form: "anthro",
  33736. default: true
  33737. },
  33738. backAnthro: {
  33739. height: math.unit(7, "feet"),
  33740. name: "Back",
  33741. image: {
  33742. source: "./media/characters/sini/back-anthro.svg",
  33743. extra: 743/701,
  33744. bottom: 12/755
  33745. },
  33746. form: "anthro",
  33747. },
  33748. frontAnthroNsfw: {
  33749. height: math.unit(7, "feet"),
  33750. name: "Front (NSFW)",
  33751. image: {
  33752. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33753. extra: 726/678,
  33754. bottom: 35/761
  33755. },
  33756. form: "anthro"
  33757. },
  33758. backAnthroNsfw: {
  33759. height: math.unit(7, "feet"),
  33760. name: "Back (NSFW)",
  33761. image: {
  33762. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33763. extra: 743/701,
  33764. bottom: 12/755
  33765. },
  33766. form: "anthro",
  33767. },
  33768. mawAnthro: {
  33769. height: math.unit(2.14, "feet"),
  33770. name: "Maw",
  33771. image: {
  33772. source: "./media/characters/sini/maw-anthro.svg"
  33773. },
  33774. form: "anthro"
  33775. },
  33776. dick: {
  33777. height: math.unit(1.45, "feet"),
  33778. name: "Dick",
  33779. image: {
  33780. source: "./media/characters/sini/dick-anthro.svg"
  33781. },
  33782. form: "anthro"
  33783. },
  33784. feral: {
  33785. height: math.unit(16, "feet"),
  33786. name: "Feral",
  33787. image: {
  33788. source: "./media/characters/sini/feral.svg",
  33789. extra: 814/605,
  33790. bottom: 11/825
  33791. },
  33792. form: "feral",
  33793. default: true
  33794. },
  33795. feralNsfw: {
  33796. height: math.unit(16, "feet"),
  33797. name: "Feral (NSFW)",
  33798. image: {
  33799. source: "./media/characters/sini/feral-nsfw.svg",
  33800. extra: 814/605,
  33801. bottom: 11/825
  33802. },
  33803. form: "feral"
  33804. },
  33805. mawFeral: {
  33806. height: math.unit(5.66, "feet"),
  33807. name: "Maw",
  33808. image: {
  33809. source: "./media/characters/sini/maw-feral.svg"
  33810. },
  33811. form: "feral",
  33812. },
  33813. pawFeral: {
  33814. height: math.unit(5.17, "feet"),
  33815. name: "Paw",
  33816. image: {
  33817. source: "./media/characters/sini/paw-feral.svg"
  33818. },
  33819. form: "feral",
  33820. },
  33821. rumpFeral: {
  33822. height: math.unit(13.11, "feet"),
  33823. name: "Rump",
  33824. image: {
  33825. source: "./media/characters/sini/rump-feral.svg"
  33826. },
  33827. form: "feral",
  33828. },
  33829. dickFeral: {
  33830. height: math.unit(1, "feet"),
  33831. name: "Dick",
  33832. image: {
  33833. source: "./media/characters/sini/dick-feral.svg"
  33834. },
  33835. form: "feral",
  33836. },
  33837. eyeFeral: {
  33838. height: math.unit(1.23, "feet"),
  33839. name: "Eye",
  33840. image: {
  33841. source: "./media/characters/sini/eye-feral.svg"
  33842. },
  33843. form: "feral",
  33844. },
  33845. },
  33846. [
  33847. {
  33848. name: "Normal",
  33849. height: math.unit(7, "feet"),
  33850. default: true,
  33851. form: "anthro"
  33852. },
  33853. {
  33854. name: "Normal",
  33855. height: math.unit(16, "feet"),
  33856. default: true,
  33857. form: "feral"
  33858. },
  33859. ],
  33860. {
  33861. "anthro": {
  33862. name: "Anthro",
  33863. default: true
  33864. },
  33865. "feral": {
  33866. name: "Feral",
  33867. }
  33868. }
  33869. ))
  33870. characterMakers.push(() => makeCharacter(
  33871. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33872. {
  33873. side: {
  33874. height: math.unit(47.2, "meters"),
  33875. weight: math.unit(10000, "tons"),
  33876. name: "Side",
  33877. image: {
  33878. source: "./media/characters/raylldo/side.svg",
  33879. extra: 2363/642,
  33880. bottom: 221/2584
  33881. }
  33882. },
  33883. top: {
  33884. height: math.unit(240, "meters"),
  33885. weight: math.unit(10000, "tons"),
  33886. name: "Top",
  33887. image: {
  33888. source: "./media/characters/raylldo/top.svg"
  33889. }
  33890. },
  33891. bottom: {
  33892. height: math.unit(240, "meters"),
  33893. weight: math.unit(10000, "tons"),
  33894. name: "Bottom",
  33895. image: {
  33896. source: "./media/characters/raylldo/bottom.svg"
  33897. }
  33898. },
  33899. head: {
  33900. height: math.unit(38.6, "meters"),
  33901. name: "Head",
  33902. image: {
  33903. source: "./media/characters/raylldo/head.svg",
  33904. extra: 1335/1112,
  33905. bottom: 0/1335
  33906. }
  33907. },
  33908. maw: {
  33909. height: math.unit(16.37, "meters"),
  33910. name: "Maw",
  33911. image: {
  33912. source: "./media/characters/raylldo/maw.svg",
  33913. extra: 883/660,
  33914. bottom: 0/883
  33915. },
  33916. extraAttributes: {
  33917. preyCapacity: {
  33918. name: "Capacity",
  33919. power: 3,
  33920. type: "volume",
  33921. base: math.unit(1000, "people")
  33922. },
  33923. tongueSize: {
  33924. name: "Tongue Size",
  33925. power: 2,
  33926. type: "area",
  33927. base: math.unit(21, "m^2")
  33928. }
  33929. }
  33930. },
  33931. forepaw: {
  33932. height: math.unit(18, "meters"),
  33933. name: "Forepaw",
  33934. image: {
  33935. source: "./media/characters/raylldo/forepaw.svg"
  33936. }
  33937. },
  33938. hindpaw: {
  33939. height: math.unit(23, "meters"),
  33940. name: "Hindpaw",
  33941. image: {
  33942. source: "./media/characters/raylldo/hindpaw.svg"
  33943. }
  33944. },
  33945. genitals: {
  33946. height: math.unit(42, "meters"),
  33947. name: "Genitals",
  33948. image: {
  33949. source: "./media/characters/raylldo/genitals.svg"
  33950. }
  33951. },
  33952. },
  33953. [
  33954. {
  33955. name: "Normal",
  33956. height: math.unit(47.2, "meters"),
  33957. default: true
  33958. },
  33959. ]
  33960. ))
  33961. characterMakers.push(() => makeCharacter(
  33962. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33963. {
  33964. anthroFront: {
  33965. height: math.unit(9, "feet"),
  33966. weight: math.unit(600, "lb"),
  33967. name: "Anthro (Front)",
  33968. image: {
  33969. source: "./media/characters/glint/anthro-front.svg",
  33970. extra: 1097/1018,
  33971. bottom: 28/1125
  33972. }
  33973. },
  33974. anthroBack: {
  33975. height: math.unit(9, "feet"),
  33976. weight: math.unit(600, "lb"),
  33977. name: "Anthro (Back)",
  33978. image: {
  33979. source: "./media/characters/glint/anthro-back.svg",
  33980. extra: 1154/997,
  33981. bottom: 36/1190
  33982. }
  33983. },
  33984. feral: {
  33985. height: math.unit(11, "feet"),
  33986. weight: math.unit(50000, "lb"),
  33987. name: "Feral",
  33988. image: {
  33989. source: "./media/characters/glint/feral.svg",
  33990. extra: 3035/1585,
  33991. bottom: 1169/4204
  33992. }
  33993. },
  33994. dickAnthro: {
  33995. height: math.unit(0.7, "meters"),
  33996. name: "Dick (Anthro)",
  33997. image: {
  33998. source: "./media/characters/glint/dick-anthro.svg"
  33999. }
  34000. },
  34001. dickFeral: {
  34002. height: math.unit(2.65, "meters"),
  34003. name: "Dick (Feral)",
  34004. image: {
  34005. source: "./media/characters/glint/dick-feral.svg"
  34006. }
  34007. },
  34008. slitHidden: {
  34009. height: math.unit(5.85, "meters"),
  34010. name: "Slit (Hidden)",
  34011. image: {
  34012. source: "./media/characters/glint/slit-hidden.svg"
  34013. }
  34014. },
  34015. slitErect: {
  34016. height: math.unit(5.85, "meters"),
  34017. name: "Slit (Erect)",
  34018. image: {
  34019. source: "./media/characters/glint/slit-erect.svg"
  34020. }
  34021. },
  34022. mawAnthro: {
  34023. height: math.unit(0.63, "meters"),
  34024. name: "Maw (Anthro)",
  34025. image: {
  34026. source: "./media/characters/glint/maw.svg"
  34027. }
  34028. },
  34029. mawFeral: {
  34030. height: math.unit(2.89, "meters"),
  34031. name: "Maw (Feral)",
  34032. image: {
  34033. source: "./media/characters/glint/maw.svg"
  34034. }
  34035. },
  34036. },
  34037. [
  34038. {
  34039. name: "Normal",
  34040. height: math.unit(9, "feet"),
  34041. default: true
  34042. },
  34043. ]
  34044. ))
  34045. characterMakers.push(() => makeCharacter(
  34046. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34047. {
  34048. side: {
  34049. height: math.unit(15, "feet"),
  34050. weight: math.unit(5000, "kg"),
  34051. name: "Side",
  34052. image: {
  34053. source: "./media/characters/kairne/side.svg",
  34054. extra: 979/811,
  34055. bottom: 13/992
  34056. }
  34057. },
  34058. front: {
  34059. height: math.unit(15, "feet"),
  34060. weight: math.unit(5000, "kg"),
  34061. name: "Front",
  34062. image: {
  34063. source: "./media/characters/kairne/front.svg",
  34064. extra: 908/814,
  34065. bottom: 26/934
  34066. }
  34067. },
  34068. sideNsfw: {
  34069. height: math.unit(15, "feet"),
  34070. weight: math.unit(5000, "kg"),
  34071. name: "Side (NSFW)",
  34072. image: {
  34073. source: "./media/characters/kairne/side-nsfw.svg",
  34074. extra: 979/811,
  34075. bottom: 13/992
  34076. }
  34077. },
  34078. frontNsfw: {
  34079. height: math.unit(15, "feet"),
  34080. weight: math.unit(5000, "kg"),
  34081. name: "Front (NSFW)",
  34082. image: {
  34083. source: "./media/characters/kairne/front-nsfw.svg",
  34084. extra: 908/814,
  34085. bottom: 26/934
  34086. }
  34087. },
  34088. dickCaged: {
  34089. height: math.unit(0.65, "meters"),
  34090. name: "Dick-caged",
  34091. image: {
  34092. source: "./media/characters/kairne/dick-caged.svg"
  34093. }
  34094. },
  34095. dick: {
  34096. height: math.unit(0.79, "meters"),
  34097. name: "Dick",
  34098. image: {
  34099. source: "./media/characters/kairne/dick.svg"
  34100. }
  34101. },
  34102. genitals: {
  34103. height: math.unit(1.29, "meters"),
  34104. name: "Genitals",
  34105. image: {
  34106. source: "./media/characters/kairne/genitals.svg"
  34107. }
  34108. },
  34109. maw: {
  34110. height: math.unit(1.73, "meters"),
  34111. name: "Maw",
  34112. image: {
  34113. source: "./media/characters/kairne/maw.svg"
  34114. }
  34115. },
  34116. },
  34117. [
  34118. {
  34119. name: "Normal",
  34120. height: math.unit(15, "feet"),
  34121. default: true
  34122. },
  34123. ]
  34124. ))
  34125. characterMakers.push(() => makeCharacter(
  34126. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34127. {
  34128. front: {
  34129. height: math.unit(5 + 8/12, "feet"),
  34130. weight: math.unit(139, "lb"),
  34131. name: "Front",
  34132. image: {
  34133. source: "./media/characters/biscuit-jackal/front.svg",
  34134. extra: 2106/1961,
  34135. bottom: 58/2164
  34136. }
  34137. },
  34138. back: {
  34139. height: math.unit(5 + 8/12, "feet"),
  34140. weight: math.unit(139, "lb"),
  34141. name: "Back",
  34142. image: {
  34143. source: "./media/characters/biscuit-jackal/back.svg",
  34144. extra: 2132/1976,
  34145. bottom: 57/2189
  34146. }
  34147. },
  34148. werejackal: {
  34149. height: math.unit(6 + 3/12, "feet"),
  34150. weight: math.unit(188, "lb"),
  34151. name: "Werejackal",
  34152. image: {
  34153. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34154. extra: 2373/2178,
  34155. bottom: 53/2426
  34156. }
  34157. },
  34158. },
  34159. [
  34160. {
  34161. name: "Normal",
  34162. height: math.unit(5 + 8/12, "feet"),
  34163. default: true
  34164. },
  34165. ]
  34166. ))
  34167. characterMakers.push(() => makeCharacter(
  34168. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34169. {
  34170. front: {
  34171. height: math.unit(140, "cm"),
  34172. weight: math.unit(45, "kg"),
  34173. name: "Front",
  34174. image: {
  34175. source: "./media/characters/tayra-white/front.svg",
  34176. extra: 2229/2192,
  34177. bottom: 75/2304
  34178. }
  34179. },
  34180. },
  34181. [
  34182. {
  34183. name: "Normal",
  34184. height: math.unit(140, "cm"),
  34185. default: true
  34186. },
  34187. ]
  34188. ))
  34189. characterMakers.push(() => makeCharacter(
  34190. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34191. {
  34192. front: {
  34193. height: math.unit(4 + 5/12, "feet"),
  34194. name: "Front",
  34195. image: {
  34196. source: "./media/characters/scoop/front.svg",
  34197. extra: 1257/1136,
  34198. bottom: 69/1326
  34199. }
  34200. },
  34201. back: {
  34202. height: math.unit(4 + 5/12, "feet"),
  34203. name: "Back",
  34204. image: {
  34205. source: "./media/characters/scoop/back.svg",
  34206. extra: 1321/1152,
  34207. bottom: 32/1353
  34208. }
  34209. },
  34210. maw: {
  34211. height: math.unit(0.68, "feet"),
  34212. name: "Maw",
  34213. image: {
  34214. source: "./media/characters/scoop/maw.svg"
  34215. }
  34216. },
  34217. },
  34218. [
  34219. {
  34220. name: "Really Small",
  34221. height: math.unit(1, "mm")
  34222. },
  34223. {
  34224. name: "Micro",
  34225. height: math.unit(1, "inch")
  34226. },
  34227. {
  34228. name: "Normal",
  34229. height: math.unit(4 + 5/12, "feet"),
  34230. default: true
  34231. },
  34232. {
  34233. name: "Macro",
  34234. height: math.unit(200, "feet")
  34235. },
  34236. {
  34237. name: "Megamacro",
  34238. height: math.unit(3240, "feet")
  34239. },
  34240. {
  34241. name: "Teramacro",
  34242. height: math.unit(2500, "miles")
  34243. },
  34244. ]
  34245. ))
  34246. characterMakers.push(() => makeCharacter(
  34247. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34248. {
  34249. front: {
  34250. height: math.unit(15 + 7/12, "feet"),
  34251. weight: math.unit(1150, "tons"),
  34252. name: "Front",
  34253. image: {
  34254. source: "./media/characters/saphinara/front.svg",
  34255. extra: 1837/1643,
  34256. bottom: 84/1921
  34257. },
  34258. form: "normal",
  34259. default: true
  34260. },
  34261. side: {
  34262. height: math.unit(15 + 7/12, "feet"),
  34263. weight: math.unit(1150, "tons"),
  34264. name: "Side",
  34265. image: {
  34266. source: "./media/characters/saphinara/side.svg",
  34267. extra: 605/547,
  34268. bottom: 6/611
  34269. },
  34270. form: "normal"
  34271. },
  34272. back: {
  34273. height: math.unit(15 + 7/12, "feet"),
  34274. weight: math.unit(1150, "tons"),
  34275. name: "Back",
  34276. image: {
  34277. source: "./media/characters/saphinara/back.svg",
  34278. extra: 591/531,
  34279. bottom: 13/604
  34280. },
  34281. form: "normal"
  34282. },
  34283. frontTail: {
  34284. height: math.unit(15 + 7/12, "feet"),
  34285. weight: math.unit(1150, "tons"),
  34286. name: "Front (Full Tail)",
  34287. image: {
  34288. source: "./media/characters/saphinara/front-tail.svg",
  34289. extra: 2256/1630,
  34290. bottom: 261/2517
  34291. },
  34292. form: "normal"
  34293. },
  34294. insides: {
  34295. height: math.unit(11.92, "feet"),
  34296. name: "Insides",
  34297. image: {
  34298. source: "./media/characters/saphinara/insides.svg"
  34299. },
  34300. form: "normal"
  34301. },
  34302. head: {
  34303. height: math.unit(4.17, "feet"),
  34304. name: "Head",
  34305. image: {
  34306. source: "./media/characters/saphinara/head.svg"
  34307. },
  34308. form: "normal"
  34309. },
  34310. tongue: {
  34311. height: math.unit(4.60, "feet"),
  34312. name: "Tongue",
  34313. image: {
  34314. source: "./media/characters/saphinara/tongue.svg"
  34315. },
  34316. form: "normal"
  34317. },
  34318. headEnraged: {
  34319. height: math.unit(5.55, "feet"),
  34320. name: "Head (Enraged)",
  34321. image: {
  34322. source: "./media/characters/saphinara/head-enraged.svg"
  34323. },
  34324. form: "normal"
  34325. },
  34326. wings: {
  34327. height: math.unit(11.95, "feet"),
  34328. name: "Wings",
  34329. image: {
  34330. source: "./media/characters/saphinara/wings.svg"
  34331. },
  34332. form: "normal"
  34333. },
  34334. feathers: {
  34335. height: math.unit(8.92, "feet"),
  34336. name: "Feathers",
  34337. image: {
  34338. source: "./media/characters/saphinara/feathers.svg"
  34339. },
  34340. form: "normal"
  34341. },
  34342. shackles: {
  34343. height: math.unit(2, "feet"),
  34344. name: "Shackles",
  34345. image: {
  34346. source: "./media/characters/saphinara/shackles.svg"
  34347. },
  34348. form: "normal"
  34349. },
  34350. eyes: {
  34351. height: math.unit(1.331, "feet"),
  34352. name: "Eyes",
  34353. image: {
  34354. source: "./media/characters/saphinara/eyes.svg"
  34355. },
  34356. form: "normal"
  34357. },
  34358. eyesEnraged: {
  34359. height: math.unit(1.331, "feet"),
  34360. name: "Eyes (Enraged)",
  34361. image: {
  34362. source: "./media/characters/saphinara/eyes-enraged.svg"
  34363. },
  34364. form: "normal"
  34365. },
  34366. trueFormSide: {
  34367. height: math.unit(200, "feet"),
  34368. weight: math.unit(1e7, "tons"),
  34369. name: "Side",
  34370. image: {
  34371. source: "./media/characters/saphinara/true-form-side.svg",
  34372. extra: 1399/770,
  34373. bottom: 97/1496
  34374. },
  34375. form: "true-form",
  34376. default: true
  34377. },
  34378. trueFormMaw: {
  34379. height: math.unit(71.5, "feet"),
  34380. name: "Maw",
  34381. image: {
  34382. source: "./media/characters/saphinara/true-form-maw.svg",
  34383. extra: 2302/1453,
  34384. bottom: 0/2302
  34385. },
  34386. form: "true-form"
  34387. },
  34388. },
  34389. [
  34390. {
  34391. name: "Normal",
  34392. height: math.unit(15 + 7/12, "feet"),
  34393. default: true,
  34394. form: "normal"
  34395. },
  34396. {
  34397. name: "Angry",
  34398. height: math.unit(30 + 6/12, "feet"),
  34399. form: "normal"
  34400. },
  34401. {
  34402. name: "Enraged",
  34403. height: math.unit(102 + 1/12, "feet"),
  34404. form: "normal"
  34405. },
  34406. {
  34407. name: "True",
  34408. height: math.unit(200, "feet"),
  34409. default: true,
  34410. form: "true-form"
  34411. }
  34412. ],
  34413. {
  34414. "normal": {
  34415. name: "Normal",
  34416. default: true
  34417. },
  34418. "true-form": {
  34419. name: "True Form"
  34420. }
  34421. }
  34422. ))
  34423. characterMakers.push(() => makeCharacter(
  34424. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34425. {
  34426. front: {
  34427. height: math.unit(6 + 8/12, "feet"),
  34428. weight: math.unit(300, "lb"),
  34429. name: "Front",
  34430. image: {
  34431. source: "./media/characters/jrain/front.svg",
  34432. extra: 3039/2865,
  34433. bottom: 399/3438
  34434. }
  34435. },
  34436. back: {
  34437. height: math.unit(6 + 8/12, "feet"),
  34438. weight: math.unit(300, "lb"),
  34439. name: "Back",
  34440. image: {
  34441. source: "./media/characters/jrain/back.svg",
  34442. extra: 3089/2938,
  34443. bottom: 172/3261
  34444. }
  34445. },
  34446. head: {
  34447. height: math.unit(2.14, "feet"),
  34448. name: "Head",
  34449. image: {
  34450. source: "./media/characters/jrain/head.svg"
  34451. }
  34452. },
  34453. maw: {
  34454. height: math.unit(1.77, "feet"),
  34455. name: "Maw",
  34456. image: {
  34457. source: "./media/characters/jrain/maw.svg"
  34458. }
  34459. },
  34460. leftHand: {
  34461. height: math.unit(1.1, "feet"),
  34462. name: "Left Hand",
  34463. image: {
  34464. source: "./media/characters/jrain/left-hand.svg"
  34465. }
  34466. },
  34467. rightHand: {
  34468. height: math.unit(1.1, "feet"),
  34469. name: "Right Hand",
  34470. image: {
  34471. source: "./media/characters/jrain/right-hand.svg"
  34472. }
  34473. },
  34474. eye: {
  34475. height: math.unit(0.35, "feet"),
  34476. name: "Eye",
  34477. image: {
  34478. source: "./media/characters/jrain/eye.svg"
  34479. }
  34480. },
  34481. },
  34482. [
  34483. {
  34484. name: "Normal",
  34485. height: math.unit(6 + 8/12, "feet"),
  34486. default: true
  34487. },
  34488. {
  34489. name: "Casually Large",
  34490. height: math.unit(25, "feet")
  34491. },
  34492. {
  34493. name: "Giant",
  34494. height: math.unit(100, "feet")
  34495. },
  34496. {
  34497. name: "Kaiju",
  34498. height: math.unit(300, "feet")
  34499. },
  34500. ]
  34501. ))
  34502. characterMakers.push(() => makeCharacter(
  34503. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34504. {
  34505. dragon: {
  34506. height: math.unit(5, "meters"),
  34507. name: "Dragon",
  34508. image: {
  34509. source: "./media/characters/sabrina/dragon.svg",
  34510. extra: 3670 / 2365,
  34511. bottom: 333 / 4003
  34512. }
  34513. },
  34514. gryphon: {
  34515. height: math.unit(3, "meters"),
  34516. name: "Gryphon",
  34517. image: {
  34518. source: "./media/characters/sabrina/gryphon.svg",
  34519. extra: 1576 / 945,
  34520. bottom: 71 / 1647
  34521. }
  34522. },
  34523. snake: {
  34524. height: math.unit(12, "meters"),
  34525. name: "Snake",
  34526. image: {
  34527. source: "./media/characters/sabrina/snake.svg",
  34528. extra: 1758 / 1320,
  34529. bottom: 186 / 1944
  34530. }
  34531. },
  34532. collar: {
  34533. height: math.unit(1.86, "meters"),
  34534. name: "Collar",
  34535. image: {
  34536. source: "./media/characters/sabrina/collar.svg"
  34537. }
  34538. },
  34539. eye: {
  34540. height: math.unit(0.53, "meters"),
  34541. name: "Eye",
  34542. image: {
  34543. source: "./media/characters/sabrina/eye.svg"
  34544. }
  34545. },
  34546. foot: {
  34547. height: math.unit(1.86, "meters"),
  34548. name: "Foot",
  34549. image: {
  34550. source: "./media/characters/sabrina/foot.svg"
  34551. }
  34552. },
  34553. hand: {
  34554. height: math.unit(1.32, "meters"),
  34555. name: "Hand",
  34556. image: {
  34557. source: "./media/characters/sabrina/hand.svg"
  34558. }
  34559. },
  34560. head: {
  34561. height: math.unit(2.44, "meters"),
  34562. name: "Head",
  34563. image: {
  34564. source: "./media/characters/sabrina/head.svg"
  34565. }
  34566. },
  34567. headAngry: {
  34568. height: math.unit(2.44, "meters"),
  34569. name: "Head (Angry))",
  34570. image: {
  34571. source: "./media/characters/sabrina/head-angry.svg"
  34572. }
  34573. },
  34574. maw: {
  34575. height: math.unit(1.65, "meters"),
  34576. name: "Maw",
  34577. image: {
  34578. source: "./media/characters/sabrina/maw.svg"
  34579. }
  34580. },
  34581. spikes: {
  34582. height: math.unit(1.69, "meters"),
  34583. name: "Spikes",
  34584. image: {
  34585. source: "./media/characters/sabrina/spikes.svg"
  34586. }
  34587. },
  34588. stomach: {
  34589. height: math.unit(1.15, "meters"),
  34590. name: "Stomach",
  34591. image: {
  34592. source: "./media/characters/sabrina/stomach.svg"
  34593. }
  34594. },
  34595. tongue: {
  34596. height: math.unit(1.27, "meters"),
  34597. name: "Tongue",
  34598. image: {
  34599. source: "./media/characters/sabrina/tongue.svg"
  34600. }
  34601. },
  34602. wingDorsal: {
  34603. height: math.unit(4.85, "meters"),
  34604. name: "Wing (Dorsal)",
  34605. image: {
  34606. source: "./media/characters/sabrina/wing-dorsal.svg"
  34607. }
  34608. },
  34609. wingVentral: {
  34610. height: math.unit(4.85, "meters"),
  34611. name: "Wing (Ventral)",
  34612. image: {
  34613. source: "./media/characters/sabrina/wing-ventral.svg"
  34614. }
  34615. },
  34616. },
  34617. [
  34618. {
  34619. name: "Normal",
  34620. height: math.unit(5, "meters"),
  34621. default: true
  34622. },
  34623. ]
  34624. ))
  34625. characterMakers.push(() => makeCharacter(
  34626. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  34627. {
  34628. frontMaid: {
  34629. height: math.unit(5 + 5/12, "feet"),
  34630. weight: math.unit(130, "lb"),
  34631. name: "Front (Maid)",
  34632. image: {
  34633. source: "./media/characters/midnight-tales/front-maid.svg",
  34634. extra: 489/454,
  34635. bottom: 61/550
  34636. }
  34637. },
  34638. frontFormal: {
  34639. height: math.unit(5 + 5/12, "feet"),
  34640. weight: math.unit(130, "lb"),
  34641. name: "Front (Formal)",
  34642. image: {
  34643. source: "./media/characters/midnight-tales/front-formal.svg",
  34644. extra: 489/454,
  34645. bottom: 61/550
  34646. }
  34647. },
  34648. back: {
  34649. height: math.unit(5 + 5/12, "feet"),
  34650. weight: math.unit(130, "lb"),
  34651. name: "Back",
  34652. image: {
  34653. source: "./media/characters/midnight-tales/back.svg",
  34654. extra: 498/456,
  34655. bottom: 33/531
  34656. }
  34657. },
  34658. frontBeast: {
  34659. height: math.unit(40, "feet"),
  34660. weight: math.unit(64000, "lb"),
  34661. name: "Front (Beast)",
  34662. image: {
  34663. source: "./media/characters/midnight-tales/front-beast.svg",
  34664. extra: 927/860,
  34665. bottom: 53/980
  34666. }
  34667. },
  34668. backBeast: {
  34669. height: math.unit(40, "feet"),
  34670. weight: math.unit(64000, "lb"),
  34671. name: "Back (Beast)",
  34672. image: {
  34673. source: "./media/characters/midnight-tales/back-beast.svg",
  34674. extra: 929/855,
  34675. bottom: 16/945
  34676. }
  34677. },
  34678. footBeast: {
  34679. height: math.unit(6.7, "feet"),
  34680. name: "Foot (Beast)",
  34681. image: {
  34682. source: "./media/characters/midnight-tales/foot-beast.svg"
  34683. }
  34684. },
  34685. headBeast: {
  34686. height: math.unit(8, "feet"),
  34687. name: "Head (Beast)",
  34688. image: {
  34689. source: "./media/characters/midnight-tales/head-beast.svg"
  34690. }
  34691. },
  34692. },
  34693. [
  34694. {
  34695. name: "Normal",
  34696. height: math.unit(5 + 5 / 12, "feet"),
  34697. default: true
  34698. },
  34699. {
  34700. name: "Macro",
  34701. height: math.unit(25, "feet")
  34702. },
  34703. ]
  34704. ))
  34705. characterMakers.push(() => makeCharacter(
  34706. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  34707. {
  34708. front: {
  34709. height: math.unit(5 + 10/12, "feet"),
  34710. name: "Front",
  34711. image: {
  34712. source: "./media/characters/argon/front.svg",
  34713. extra: 2009/1935,
  34714. bottom: 118/2127
  34715. }
  34716. },
  34717. back: {
  34718. height: math.unit(5 + 10/12, "feet"),
  34719. name: "Back",
  34720. image: {
  34721. source: "./media/characters/argon/back.svg",
  34722. extra: 2047/1992,
  34723. bottom: 20/2067
  34724. }
  34725. },
  34726. frontDressed: {
  34727. height: math.unit(5 + 10/12, "feet"),
  34728. name: "Front (Dressed)",
  34729. image: {
  34730. source: "./media/characters/argon/front-dressed.svg",
  34731. extra: 2009/1935,
  34732. bottom: 118/2127
  34733. }
  34734. },
  34735. },
  34736. [
  34737. {
  34738. name: "Normal",
  34739. height: math.unit(5 + 10/12, "feet"),
  34740. default: true
  34741. },
  34742. ]
  34743. ))
  34744. characterMakers.push(() => makeCharacter(
  34745. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  34746. {
  34747. front: {
  34748. height: math.unit(8 + 6/12, "feet"),
  34749. weight: math.unit(1150, "lb"),
  34750. name: "Front",
  34751. image: {
  34752. source: "./media/characters/kichi/front.svg",
  34753. extra: 1267/1164,
  34754. bottom: 61/1328
  34755. }
  34756. },
  34757. back: {
  34758. height: math.unit(8 + 6/12, "feet"),
  34759. weight: math.unit(1150, "lb"),
  34760. name: "Back",
  34761. image: {
  34762. source: "./media/characters/kichi/back.svg",
  34763. extra: 1273/1166,
  34764. bottom: 33/1306
  34765. }
  34766. },
  34767. },
  34768. [
  34769. {
  34770. name: "Normal",
  34771. height: math.unit(8 + 6/12, "feet"),
  34772. default: true
  34773. },
  34774. ]
  34775. ))
  34776. characterMakers.push(() => makeCharacter(
  34777. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  34778. {
  34779. front: {
  34780. height: math.unit(6, "feet"),
  34781. weight: math.unit(210, "lb"),
  34782. name: "Front",
  34783. image: {
  34784. source: "./media/characters/manetel-greyscale/front.svg",
  34785. extra: 350/312,
  34786. bottom: 8/358
  34787. }
  34788. },
  34789. },
  34790. [
  34791. {
  34792. name: "Micro",
  34793. height: math.unit(2, "inches")
  34794. },
  34795. {
  34796. name: "Normal",
  34797. height: math.unit(6, "feet"),
  34798. default: true
  34799. },
  34800. {
  34801. name: "Minimacro",
  34802. height: math.unit(17, "feet")
  34803. },
  34804. {
  34805. name: "Macro",
  34806. height: math.unit(117, "feet")
  34807. },
  34808. ]
  34809. ))
  34810. characterMakers.push(() => makeCharacter(
  34811. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  34812. {
  34813. side: {
  34814. height: math.unit(5 + 1/12, "feet"),
  34815. weight: math.unit(418, "lb"),
  34816. name: "Side",
  34817. image: {
  34818. source: "./media/characters/softpurr/side.svg",
  34819. extra: 1993/1945,
  34820. bottom: 134/2127
  34821. }
  34822. },
  34823. front: {
  34824. height: math.unit(5 + 1/12, "feet"),
  34825. weight: math.unit(418, "lb"),
  34826. name: "Front",
  34827. image: {
  34828. source: "./media/characters/softpurr/front.svg",
  34829. extra: 1950/1856,
  34830. bottom: 174/2124
  34831. }
  34832. },
  34833. paw: {
  34834. height: math.unit(1, "feet"),
  34835. name: "Paw",
  34836. image: {
  34837. source: "./media/characters/softpurr/paw.svg"
  34838. }
  34839. },
  34840. },
  34841. [
  34842. {
  34843. name: "Normal",
  34844. height: math.unit(5 + 1/12, "feet"),
  34845. default: true
  34846. },
  34847. ]
  34848. ))
  34849. characterMakers.push(() => makeCharacter(
  34850. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  34851. {
  34852. front: {
  34853. height: math.unit(260, "meters"),
  34854. name: "Front",
  34855. image: {
  34856. source: "./media/characters/anahita/front.svg",
  34857. extra: 665/635,
  34858. bottom: 89/754
  34859. }
  34860. },
  34861. },
  34862. [
  34863. {
  34864. name: "Macro",
  34865. height: math.unit(260, "meters"),
  34866. default: true
  34867. },
  34868. ]
  34869. ))
  34870. characterMakers.push(() => makeCharacter(
  34871. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  34872. {
  34873. front: {
  34874. height: math.unit(4 + 10/12, "feet"),
  34875. weight: math.unit(160, "lb"),
  34876. name: "Front",
  34877. image: {
  34878. source: "./media/characters/chip-mouse/front.svg",
  34879. extra: 3528/3408,
  34880. bottom: 0/3528
  34881. }
  34882. },
  34883. frontNsfw: {
  34884. height: math.unit(4 + 10/12, "feet"),
  34885. weight: math.unit(160, "lb"),
  34886. name: "Front (NSFW)",
  34887. image: {
  34888. source: "./media/characters/chip-mouse/front-nsfw.svg",
  34889. extra: 3528/3408,
  34890. bottom: 0/3528
  34891. }
  34892. },
  34893. },
  34894. [
  34895. {
  34896. name: "Normal",
  34897. height: math.unit(4 + 10/12, "feet"),
  34898. default: true
  34899. },
  34900. ]
  34901. ))
  34902. characterMakers.push(() => makeCharacter(
  34903. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34904. {
  34905. side: {
  34906. height: math.unit(10, "feet"),
  34907. weight: math.unit(14000, "lb"),
  34908. name: "Side",
  34909. image: {
  34910. source: "./media/characters/kremm/side.svg",
  34911. extra: 1390/1053,
  34912. bottom: 90/1480
  34913. }
  34914. },
  34915. gut: {
  34916. height: math.unit(5.8, "feet"),
  34917. name: "Gut",
  34918. image: {
  34919. source: "./media/characters/kremm/gut.svg"
  34920. }
  34921. },
  34922. ass: {
  34923. height: math.unit(6.1, "feet"),
  34924. name: "Ass",
  34925. image: {
  34926. source: "./media/characters/kremm/ass.svg"
  34927. }
  34928. },
  34929. jaws: {
  34930. height: math.unit(2.2, "feet"),
  34931. name: "Jaws",
  34932. image: {
  34933. source: "./media/characters/kremm/jaws.svg"
  34934. }
  34935. },
  34936. dick: {
  34937. height: math.unit(4.26, "feet"),
  34938. name: "Dick",
  34939. image: {
  34940. source: "./media/characters/kremm/dick.svg"
  34941. }
  34942. },
  34943. },
  34944. [
  34945. {
  34946. name: "Normal",
  34947. height: math.unit(10, "feet"),
  34948. default: true
  34949. },
  34950. ]
  34951. ))
  34952. characterMakers.push(() => makeCharacter(
  34953. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  34954. {
  34955. front: {
  34956. height: math.unit(30, "stories"),
  34957. name: "Front",
  34958. image: {
  34959. source: "./media/characters/kai/front.svg",
  34960. extra: 1892/1718,
  34961. bottom: 162/2054
  34962. }
  34963. },
  34964. },
  34965. [
  34966. {
  34967. name: "Macro",
  34968. height: math.unit(30, "stories"),
  34969. default: true
  34970. },
  34971. ]
  34972. ))
  34973. characterMakers.push(() => makeCharacter(
  34974. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  34975. {
  34976. front: {
  34977. height: math.unit(6 + 4/12, "feet"),
  34978. weight: math.unit(145, "lb"),
  34979. name: "Front",
  34980. image: {
  34981. source: "./media/characters/sykes/front.svg",
  34982. extra: 1321 / 1187,
  34983. bottom: 66 / 1387
  34984. }
  34985. },
  34986. back: {
  34987. height: math.unit(6 + 4/12, "feet"),
  34988. weight: math.unit(145, "lb"),
  34989. name: "Back",
  34990. image: {
  34991. source: "./media/characters/sykes/back.svg",
  34992. extra: 1326/1181,
  34993. bottom: 31/1357
  34994. }
  34995. },
  34996. traditionalOutfit: {
  34997. height: math.unit(6 + 4/12, "feet"),
  34998. weight: math.unit(145, "lb"),
  34999. name: "Traditional Outfit",
  35000. image: {
  35001. source: "./media/characters/sykes/traditional-outfit.svg",
  35002. extra: 1321 / 1187,
  35003. bottom: 66 / 1387
  35004. }
  35005. },
  35006. adventureOutfit: {
  35007. height: math.unit(6 + 4/12, "feet"),
  35008. weight: math.unit(145, "lb"),
  35009. name: "Adventure Outfit",
  35010. image: {
  35011. source: "./media/characters/sykes/adventure-outfit.svg",
  35012. extra: 1321 / 1187,
  35013. bottom: 66 / 1387
  35014. }
  35015. },
  35016. handLeft: {
  35017. height: math.unit(0.9, "feet"),
  35018. name: "Hand (Left)",
  35019. image: {
  35020. source: "./media/characters/sykes/hand-left.svg"
  35021. }
  35022. },
  35023. handRight: {
  35024. height: math.unit(0.839, "feet"),
  35025. name: "Hand (Right)",
  35026. image: {
  35027. source: "./media/characters/sykes/hand-right.svg"
  35028. }
  35029. },
  35030. leftFoot: {
  35031. height: math.unit(1.2, "feet"),
  35032. name: "Foot (Left)",
  35033. image: {
  35034. source: "./media/characters/sykes/foot-left.svg"
  35035. }
  35036. },
  35037. rightFoot: {
  35038. height: math.unit(1.2, "feet"),
  35039. name: "Foot (Right)",
  35040. image: {
  35041. source: "./media/characters/sykes/foot-right.svg"
  35042. }
  35043. },
  35044. maw: {
  35045. height: math.unit(1.93, "feet"),
  35046. name: "Maw",
  35047. image: {
  35048. source: "./media/characters/sykes/maw.svg"
  35049. }
  35050. },
  35051. teeth: {
  35052. height: math.unit(0.51, "feet"),
  35053. name: "Teeth",
  35054. image: {
  35055. source: "./media/characters/sykes/teeth.svg"
  35056. }
  35057. },
  35058. tongue: {
  35059. height: math.unit(2.13, "feet"),
  35060. name: "Tongue",
  35061. image: {
  35062. source: "./media/characters/sykes/tongue.svg"
  35063. }
  35064. },
  35065. uvula: {
  35066. height: math.unit(0.16, "feet"),
  35067. name: "Uvula",
  35068. image: {
  35069. source: "./media/characters/sykes/uvula.svg"
  35070. }
  35071. },
  35072. collar: {
  35073. height: math.unit(0.287, "feet"),
  35074. name: "Collar",
  35075. image: {
  35076. source: "./media/characters/sykes/collar.svg"
  35077. }
  35078. },
  35079. tail: {
  35080. height: math.unit(3.8, "feet"),
  35081. name: "Tail",
  35082. image: {
  35083. source: "./media/characters/sykes/tail.svg"
  35084. }
  35085. },
  35086. },
  35087. [
  35088. {
  35089. name: "Shrunken",
  35090. height: math.unit(5, "inches")
  35091. },
  35092. {
  35093. name: "Normal",
  35094. height: math.unit(6 + 4 / 12, "feet"),
  35095. default: true
  35096. },
  35097. {
  35098. name: "Big",
  35099. height: math.unit(15, "feet")
  35100. },
  35101. ]
  35102. ))
  35103. characterMakers.push(() => makeCharacter(
  35104. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35105. {
  35106. front: {
  35107. height: math.unit(5 + 8/12, "feet"),
  35108. weight: math.unit(190, "lb"),
  35109. name: "Front",
  35110. image: {
  35111. source: "./media/characters/oven-otter/front.svg",
  35112. extra: 1809/1740,
  35113. bottom: 181/1990
  35114. }
  35115. },
  35116. back: {
  35117. height: math.unit(5 + 8/12, "feet"),
  35118. weight: math.unit(190, "lb"),
  35119. name: "Back",
  35120. image: {
  35121. source: "./media/characters/oven-otter/back.svg",
  35122. extra: 1709/1635,
  35123. bottom: 118/1827
  35124. }
  35125. },
  35126. hand: {
  35127. height: math.unit(1.07, "feet"),
  35128. name: "Hand",
  35129. image: {
  35130. source: "./media/characters/oven-otter/hand.svg"
  35131. }
  35132. },
  35133. beans: {
  35134. height: math.unit(1.74, "feet"),
  35135. name: "Beans",
  35136. image: {
  35137. source: "./media/characters/oven-otter/beans.svg"
  35138. }
  35139. },
  35140. },
  35141. [
  35142. {
  35143. name: "Micro",
  35144. height: math.unit(0.5, "inches")
  35145. },
  35146. {
  35147. name: "Normal",
  35148. height: math.unit(5 + 8/12, "feet"),
  35149. default: true
  35150. },
  35151. {
  35152. name: "Macro",
  35153. height: math.unit(250, "feet")
  35154. },
  35155. {
  35156. name: "Really High",
  35157. height: math.unit(420, "feet")
  35158. },
  35159. ]
  35160. ))
  35161. characterMakers.push(() => makeCharacter(
  35162. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35163. {
  35164. front: {
  35165. height: math.unit(5, "meters"),
  35166. weight: math.unit(292000000000000, "kg"),
  35167. name: "Front",
  35168. image: {
  35169. source: "./media/characters/devourer/front.svg",
  35170. extra: 1800/1733,
  35171. bottom: 211/2011
  35172. }
  35173. },
  35174. maw: {
  35175. height: math.unit(1.1, "meter"),
  35176. name: "Maw",
  35177. image: {
  35178. source: "./media/characters/devourer/maw.svg"
  35179. }
  35180. },
  35181. },
  35182. [
  35183. {
  35184. name: "Small",
  35185. height: math.unit(3, "meters")
  35186. },
  35187. {
  35188. name: "Large",
  35189. height: math.unit(5, "meters"),
  35190. default: true
  35191. },
  35192. ]
  35193. ))
  35194. characterMakers.push(() => makeCharacter(
  35195. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35196. {
  35197. front: {
  35198. height: math.unit(6, "feet"),
  35199. weight: math.unit(400, "lb"),
  35200. name: "Front",
  35201. image: {
  35202. source: "./media/characters/ellarby/front.svg",
  35203. extra: 1909/1763,
  35204. bottom: 80/1989
  35205. }
  35206. },
  35207. back: {
  35208. height: math.unit(6, "feet"),
  35209. weight: math.unit(400, "lb"),
  35210. name: "Back",
  35211. image: {
  35212. source: "./media/characters/ellarby/back.svg",
  35213. extra: 1914/1784,
  35214. bottom: 172/2086
  35215. }
  35216. },
  35217. },
  35218. [
  35219. {
  35220. name: "Mischief",
  35221. height: math.unit(18, "inches")
  35222. },
  35223. {
  35224. name: "Trouble",
  35225. height: math.unit(12, "feet")
  35226. },
  35227. {
  35228. name: "Havoc",
  35229. height: math.unit(200, "feet"),
  35230. default: true
  35231. },
  35232. {
  35233. name: "Pandemonium",
  35234. height: math.unit(1, "mile")
  35235. },
  35236. {
  35237. name: "Catastrophe",
  35238. height: math.unit(100, "miles")
  35239. },
  35240. ]
  35241. ))
  35242. characterMakers.push(() => makeCharacter(
  35243. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35244. {
  35245. front: {
  35246. height: math.unit(4.7, "meters"),
  35247. weight: math.unit(6500, "kg"),
  35248. name: "Front",
  35249. image: {
  35250. source: "./media/characters/vex/front.svg",
  35251. extra: 1288/1140,
  35252. bottom: 100/1388
  35253. }
  35254. },
  35255. },
  35256. [
  35257. {
  35258. name: "Normal",
  35259. height: math.unit(4.7, "meters"),
  35260. default: true
  35261. },
  35262. ]
  35263. ))
  35264. characterMakers.push(() => makeCharacter(
  35265. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35266. {
  35267. normal: {
  35268. height: math.unit(6, "feet"),
  35269. weight: math.unit(350, "lb"),
  35270. name: "Normal",
  35271. image: {
  35272. source: "./media/characters/teshy/normal.svg",
  35273. extra: 1795/1735,
  35274. bottom: 16/1811
  35275. }
  35276. },
  35277. monsterFront: {
  35278. height: math.unit(12, "feet"),
  35279. weight: math.unit(4700, "lb"),
  35280. name: "Monster (Front)",
  35281. image: {
  35282. source: "./media/characters/teshy/monster-front.svg",
  35283. extra: 2042/2034,
  35284. bottom: 128/2170
  35285. }
  35286. },
  35287. monsterSide: {
  35288. height: math.unit(12, "feet"),
  35289. weight: math.unit(4700, "lb"),
  35290. name: "Monster (Side)",
  35291. image: {
  35292. source: "./media/characters/teshy/monster-side.svg",
  35293. extra: 2067/2056,
  35294. bottom: 70/2137
  35295. }
  35296. },
  35297. monsterBack: {
  35298. height: math.unit(12, "feet"),
  35299. weight: math.unit(4700, "lb"),
  35300. name: "Monster (Back)",
  35301. image: {
  35302. source: "./media/characters/teshy/monster-back.svg",
  35303. extra: 1921/1914,
  35304. bottom: 171/2092
  35305. }
  35306. },
  35307. },
  35308. [
  35309. {
  35310. name: "Normal",
  35311. height: math.unit(6, "feet"),
  35312. default: true
  35313. },
  35314. ]
  35315. ))
  35316. characterMakers.push(() => makeCharacter(
  35317. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35318. {
  35319. front: {
  35320. height: math.unit(6, "feet"),
  35321. name: "Front",
  35322. image: {
  35323. source: "./media/characters/ramey/front.svg",
  35324. extra: 790/787,
  35325. bottom: 27/817
  35326. }
  35327. },
  35328. },
  35329. [
  35330. {
  35331. name: "Normal",
  35332. height: math.unit(6, "feet"),
  35333. default: true
  35334. },
  35335. ]
  35336. ))
  35337. characterMakers.push(() => makeCharacter(
  35338. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35339. {
  35340. front: {
  35341. height: math.unit(5 + 5/12, "feet"),
  35342. weight: math.unit(120, "lb"),
  35343. name: "Front",
  35344. image: {
  35345. source: "./media/characters/phirae/front.svg",
  35346. extra: 2491/2436,
  35347. bottom: 38/2529
  35348. }
  35349. },
  35350. },
  35351. [
  35352. {
  35353. name: "Normal",
  35354. height: math.unit(5 + 5/12, "feet"),
  35355. default: true
  35356. },
  35357. ]
  35358. ))
  35359. characterMakers.push(() => makeCharacter(
  35360. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35361. {
  35362. front: {
  35363. height: math.unit(5 + 3/12, "feet"),
  35364. name: "Front",
  35365. image: {
  35366. source: "./media/characters/stagglas/front.svg",
  35367. extra: 962/882,
  35368. bottom: 53/1015
  35369. }
  35370. },
  35371. feral: {
  35372. height: math.unit(335, "cm"),
  35373. name: "Feral",
  35374. image: {
  35375. source: "./media/characters/stagglas/feral.svg",
  35376. extra: 1732/1090,
  35377. bottom: 48/1780
  35378. }
  35379. },
  35380. },
  35381. [
  35382. {
  35383. name: "Normal",
  35384. height: math.unit(5 + 3/12, "feet"),
  35385. default: true
  35386. },
  35387. ]
  35388. ))
  35389. characterMakers.push(() => makeCharacter(
  35390. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35391. {
  35392. front: {
  35393. height: math.unit(5 + 4/12, "feet"),
  35394. weight: math.unit(145, "lb"),
  35395. name: "Front",
  35396. image: {
  35397. source: "./media/characters/starra/front.svg",
  35398. extra: 1790/1691,
  35399. bottom: 91/1881
  35400. }
  35401. },
  35402. },
  35403. [
  35404. {
  35405. name: "Normal",
  35406. height: math.unit(5 + 4/12, "feet"),
  35407. default: true
  35408. },
  35409. ]
  35410. ))
  35411. characterMakers.push(() => makeCharacter(
  35412. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35413. {
  35414. front: {
  35415. height: math.unit(2.2, "meters"),
  35416. name: "Front",
  35417. image: {
  35418. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35419. extra: 1194/1005,
  35420. bottom: 25/1219
  35421. }
  35422. },
  35423. },
  35424. [
  35425. {
  35426. name: "Normal",
  35427. height: math.unit(2.2, "meters"),
  35428. default: true
  35429. },
  35430. ]
  35431. ))
  35432. characterMakers.push(() => makeCharacter(
  35433. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35434. {
  35435. side: {
  35436. height: math.unit(8 + 2/12, "feet"),
  35437. weight: math.unit(1240, "lb"),
  35438. name: "Side",
  35439. image: {
  35440. source: "./media/characters/mika-valentine/side.svg",
  35441. extra: 2670/2501,
  35442. bottom: 250/2920
  35443. }
  35444. },
  35445. },
  35446. [
  35447. {
  35448. name: "Normal",
  35449. height: math.unit(8 + 2/12, "feet"),
  35450. default: true
  35451. },
  35452. ]
  35453. ))
  35454. characterMakers.push(() => makeCharacter(
  35455. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35456. {
  35457. front: {
  35458. height: math.unit(7 + 2/12, "feet"),
  35459. name: "Front",
  35460. image: {
  35461. source: "./media/characters/xoltol/front.svg",
  35462. extra: 2212/2124,
  35463. bottom: 84/2296
  35464. }
  35465. },
  35466. side: {
  35467. height: math.unit(7 + 2/12, "feet"),
  35468. name: "Side",
  35469. image: {
  35470. source: "./media/characters/xoltol/side.svg",
  35471. extra: 2273/2197,
  35472. bottom: 26/2299
  35473. }
  35474. },
  35475. hand: {
  35476. height: math.unit(2.5, "feet"),
  35477. name: "Hand",
  35478. image: {
  35479. source: "./media/characters/xoltol/hand.svg"
  35480. }
  35481. },
  35482. },
  35483. [
  35484. {
  35485. name: "Small-ish",
  35486. height: math.unit(5 + 11/12, "feet")
  35487. },
  35488. {
  35489. name: "Normal",
  35490. height: math.unit(7 + 2/12, "feet")
  35491. },
  35492. {
  35493. name: "\"Macro\"",
  35494. height: math.unit(14 + 9/12, "feet"),
  35495. default: true
  35496. },
  35497. {
  35498. name: "Alternate Height",
  35499. height: math.unit(20, "feet")
  35500. },
  35501. {
  35502. name: "Actually Macro",
  35503. height: math.unit(100, "feet")
  35504. },
  35505. ]
  35506. ))
  35507. characterMakers.push(() => makeCharacter(
  35508. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35509. {
  35510. front: {
  35511. height: math.unit(5 + 2/12, "feet"),
  35512. name: "Front",
  35513. image: {
  35514. source: "./media/characters/kotetsu-redwood/front.svg",
  35515. extra: 1053/942,
  35516. bottom: 60/1113
  35517. }
  35518. },
  35519. },
  35520. [
  35521. {
  35522. name: "Normal",
  35523. height: math.unit(5 + 2/12, "feet"),
  35524. default: true
  35525. },
  35526. ]
  35527. ))
  35528. characterMakers.push(() => makeCharacter(
  35529. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35530. {
  35531. front: {
  35532. height: math.unit(2.4, "meters"),
  35533. weight: math.unit(125, "kg"),
  35534. name: "Front",
  35535. image: {
  35536. source: "./media/characters/lilith/front.svg",
  35537. extra: 1590/1513,
  35538. bottom: 203/1793
  35539. }
  35540. },
  35541. },
  35542. [
  35543. {
  35544. name: "Humanoid",
  35545. height: math.unit(2.4, "meters")
  35546. },
  35547. {
  35548. name: "Normal",
  35549. height: math.unit(6, "meters"),
  35550. default: true
  35551. },
  35552. {
  35553. name: "Largest",
  35554. height: math.unit(55, "meters")
  35555. },
  35556. ]
  35557. ))
  35558. characterMakers.push(() => makeCharacter(
  35559. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35560. {
  35561. front: {
  35562. height: math.unit(8 + 4/12, "feet"),
  35563. weight: math.unit(535, "lb"),
  35564. name: "Front",
  35565. image: {
  35566. source: "./media/characters/beh'kah-bolger/front.svg",
  35567. extra: 1660/1603,
  35568. bottom: 37/1697
  35569. }
  35570. },
  35571. },
  35572. [
  35573. {
  35574. name: "Normal",
  35575. height: math.unit(8 + 4/12, "feet"),
  35576. default: true
  35577. },
  35578. {
  35579. name: "Kaiju",
  35580. height: math.unit(250, "feet")
  35581. },
  35582. {
  35583. name: "Still Growing",
  35584. height: math.unit(10, "miles")
  35585. },
  35586. {
  35587. name: "Continental",
  35588. height: math.unit(5000, "miles")
  35589. },
  35590. {
  35591. name: "Final Form",
  35592. height: math.unit(2500000, "miles")
  35593. },
  35594. ]
  35595. ))
  35596. characterMakers.push(() => makeCharacter(
  35597. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35598. {
  35599. front: {
  35600. height: math.unit(7 + 2/12, "feet"),
  35601. weight: math.unit(230, "kg"),
  35602. name: "Front",
  35603. image: {
  35604. source: "./media/characters/tatyana-milewska/front.svg",
  35605. extra: 1199/1150,
  35606. bottom: 86/1285
  35607. }
  35608. },
  35609. },
  35610. [
  35611. {
  35612. name: "Normal",
  35613. height: math.unit(7 + 2/12, "feet"),
  35614. default: true
  35615. },
  35616. {
  35617. name: "Big",
  35618. height: math.unit(12, "feet")
  35619. },
  35620. {
  35621. name: "Minimacro",
  35622. height: math.unit(20, "feet")
  35623. },
  35624. {
  35625. name: "Macro",
  35626. height: math.unit(120, "feet")
  35627. },
  35628. ]
  35629. ))
  35630. characterMakers.push(() => makeCharacter(
  35631. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  35632. {
  35633. front: {
  35634. height: math.unit(7 + 8/12, "feet"),
  35635. weight: math.unit(152, "kg"),
  35636. name: "Front",
  35637. image: {
  35638. source: "./media/characters/helen-arri/front.svg",
  35639. extra: 440/423,
  35640. bottom: 14/454
  35641. }
  35642. },
  35643. back: {
  35644. height: math.unit(7 + 8/12, "feet"),
  35645. weight: math.unit(152, "kg"),
  35646. name: "Back",
  35647. image: {
  35648. source: "./media/characters/helen-arri/back.svg",
  35649. extra: 443/426,
  35650. bottom: 8/451
  35651. }
  35652. },
  35653. },
  35654. [
  35655. {
  35656. name: "Normal",
  35657. height: math.unit(7 + 8/12, "feet"),
  35658. default: true
  35659. },
  35660. {
  35661. name: "Big",
  35662. height: math.unit(14, "feet")
  35663. },
  35664. {
  35665. name: "Minimacro",
  35666. height: math.unit(24, "feet")
  35667. },
  35668. {
  35669. name: "Macro",
  35670. height: math.unit(140, "feet")
  35671. },
  35672. ]
  35673. ))
  35674. characterMakers.push(() => makeCharacter(
  35675. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  35676. {
  35677. front: {
  35678. height: math.unit(6, "meters"),
  35679. name: "Front",
  35680. image: {
  35681. source: "./media/characters/ehanu-rehu/front.svg",
  35682. extra: 1800/1800,
  35683. bottom: 59/1859
  35684. }
  35685. },
  35686. },
  35687. [
  35688. {
  35689. name: "Normal",
  35690. height: math.unit(6, "meters"),
  35691. default: true
  35692. },
  35693. ]
  35694. ))
  35695. characterMakers.push(() => makeCharacter(
  35696. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  35697. {
  35698. front: {
  35699. height: math.unit(7 + 3/12, "feet"),
  35700. name: "Front",
  35701. image: {
  35702. source: "./media/characters/renholder/front.svg",
  35703. extra: 3096/2960,
  35704. bottom: 250/3346
  35705. }
  35706. },
  35707. },
  35708. [
  35709. {
  35710. name: "Normal Bat",
  35711. height: math.unit(7 + 3/12, "feet"),
  35712. default: true
  35713. },
  35714. {
  35715. name: "Slightly Tall Bat",
  35716. height: math.unit(100, "feet")
  35717. },
  35718. {
  35719. name: "Big Bat",
  35720. height: math.unit(1000, "feet")
  35721. },
  35722. {
  35723. name: "City-Sized Bat",
  35724. height: math.unit(200000, "feet")
  35725. },
  35726. {
  35727. name: "Bigger Bat",
  35728. height: math.unit(10000, "miles")
  35729. },
  35730. {
  35731. name: "Solar Sized Bat",
  35732. height: math.unit(100, "AU")
  35733. },
  35734. {
  35735. name: "Galactic Bat",
  35736. height: math.unit(200000, "lightyears")
  35737. },
  35738. {
  35739. name: "Universally Known Bat",
  35740. height: math.unit(1, "universe")
  35741. },
  35742. ]
  35743. ))
  35744. characterMakers.push(() => makeCharacter(
  35745. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  35746. {
  35747. front: {
  35748. height: math.unit(6 + 11/12, "feet"),
  35749. weight: math.unit(250, "lb"),
  35750. name: "Front",
  35751. image: {
  35752. source: "./media/characters/cookiecat/front.svg",
  35753. extra: 893/827,
  35754. bottom: 14/907
  35755. }
  35756. },
  35757. },
  35758. [
  35759. {
  35760. name: "Micro",
  35761. height: math.unit(3, "inches")
  35762. },
  35763. {
  35764. name: "Normal",
  35765. height: math.unit(6 + 11/12, "feet"),
  35766. default: true
  35767. },
  35768. {
  35769. name: "Macro",
  35770. height: math.unit(100, "feet")
  35771. },
  35772. {
  35773. name: "Macro+",
  35774. height: math.unit(404, "feet")
  35775. },
  35776. {
  35777. name: "Megamacro",
  35778. height: math.unit(165, "miles")
  35779. },
  35780. {
  35781. name: "Planetary",
  35782. height: math.unit(4600, "miles")
  35783. },
  35784. ]
  35785. ))
  35786. characterMakers.push(() => makeCharacter(
  35787. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  35788. {
  35789. front: {
  35790. height: math.unit(10 + 3/12, "feet"),
  35791. weight: math.unit(1500, "lb"),
  35792. name: "Front",
  35793. image: {
  35794. source: "./media/characters/tux-kusanagi/front.svg",
  35795. extra: 944/840,
  35796. bottom: 39/983
  35797. }
  35798. },
  35799. back: {
  35800. height: math.unit(10 + 3/12, "feet"),
  35801. weight: math.unit(1500, "lb"),
  35802. name: "Back",
  35803. image: {
  35804. source: "./media/characters/tux-kusanagi/back.svg",
  35805. extra: 941/842,
  35806. bottom: 28/969
  35807. }
  35808. },
  35809. rump: {
  35810. height: math.unit(5.25, "feet"),
  35811. name: "Rump",
  35812. image: {
  35813. source: "./media/characters/tux-kusanagi/rump.svg"
  35814. }
  35815. },
  35816. beak: {
  35817. height: math.unit(1.54, "feet"),
  35818. name: "Beak",
  35819. image: {
  35820. source: "./media/characters/tux-kusanagi/beak.svg"
  35821. }
  35822. },
  35823. },
  35824. [
  35825. {
  35826. name: "Normal",
  35827. height: math.unit(10 + 3/12, "feet"),
  35828. default: true
  35829. },
  35830. ]
  35831. ))
  35832. characterMakers.push(() => makeCharacter(
  35833. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  35834. {
  35835. front: {
  35836. height: math.unit(58, "feet"),
  35837. weight: math.unit(200, "tons"),
  35838. name: "Front",
  35839. image: {
  35840. source: "./media/characters/uzarmazari/front.svg",
  35841. extra: 1575/1455,
  35842. bottom: 152/1727
  35843. }
  35844. },
  35845. back: {
  35846. height: math.unit(58, "feet"),
  35847. weight: math.unit(200, "tons"),
  35848. name: "Back",
  35849. image: {
  35850. source: "./media/characters/uzarmazari/back.svg",
  35851. extra: 1585/1510,
  35852. bottom: 157/1742
  35853. }
  35854. },
  35855. head: {
  35856. height: math.unit(26, "feet"),
  35857. name: "Head",
  35858. image: {
  35859. source: "./media/characters/uzarmazari/head.svg"
  35860. }
  35861. },
  35862. },
  35863. [
  35864. {
  35865. name: "Normal",
  35866. height: math.unit(58, "feet"),
  35867. default: true
  35868. },
  35869. ]
  35870. ))
  35871. characterMakers.push(() => makeCharacter(
  35872. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  35873. {
  35874. side: {
  35875. height: math.unit(15, "feet"),
  35876. name: "Side",
  35877. image: {
  35878. source: "./media/characters/akitu/side.svg",
  35879. extra: 1421/1321,
  35880. bottom: 157/1578
  35881. }
  35882. },
  35883. front: {
  35884. height: math.unit(15, "feet"),
  35885. name: "Front",
  35886. image: {
  35887. source: "./media/characters/akitu/front.svg",
  35888. extra: 1435/1326,
  35889. bottom: 232/1667
  35890. }
  35891. },
  35892. },
  35893. [
  35894. {
  35895. name: "Normal",
  35896. height: math.unit(15, "feet"),
  35897. default: true
  35898. },
  35899. ]
  35900. ))
  35901. characterMakers.push(() => makeCharacter(
  35902. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  35903. {
  35904. front: {
  35905. height: math.unit(10 + 8/12, "feet"),
  35906. name: "Front",
  35907. image: {
  35908. source: "./media/characters/azalie-croixland/front.svg",
  35909. extra: 1972/1856,
  35910. bottom: 31/2003
  35911. }
  35912. },
  35913. },
  35914. [
  35915. {
  35916. name: "Original Height",
  35917. height: math.unit(5 + 4/12, "feet")
  35918. },
  35919. {
  35920. name: "Normal Height",
  35921. height: math.unit(10 + 8/12, "feet"),
  35922. default: true
  35923. },
  35924. ]
  35925. ))
  35926. characterMakers.push(() => makeCharacter(
  35927. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  35928. {
  35929. side: {
  35930. height: math.unit(7 + 1/12, "feet"),
  35931. weight: math.unit(245, "lb"),
  35932. name: "Side",
  35933. image: {
  35934. source: "./media/characters/kavus-kazian/side.svg",
  35935. extra: 349/342,
  35936. bottom: 15/364
  35937. }
  35938. },
  35939. },
  35940. [
  35941. {
  35942. name: "Normal",
  35943. height: math.unit(7 + 1/12, "feet"),
  35944. default: true
  35945. },
  35946. ]
  35947. ))
  35948. characterMakers.push(() => makeCharacter(
  35949. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  35950. {
  35951. normalFront: {
  35952. height: math.unit(5 + 11/12, "feet"),
  35953. name: "Front",
  35954. image: {
  35955. source: "./media/characters/moonlight-rose/normal-front.svg",
  35956. extra: 1980/1825,
  35957. bottom: 18/1998
  35958. },
  35959. form: "normal",
  35960. default: true
  35961. },
  35962. normalBack: {
  35963. height: math.unit(5 + 11/12, "feet"),
  35964. name: "Back",
  35965. image: {
  35966. source: "./media/characters/moonlight-rose/normal-back.svg",
  35967. extra: 2010/1839,
  35968. bottom: 10/2020
  35969. },
  35970. form: "normal"
  35971. },
  35972. demonFront: {
  35973. height: math.unit(1.5, "earths"),
  35974. name: "Front",
  35975. image: {
  35976. source: "./media/characters/moonlight-rose/demon.svg",
  35977. extra: 1400/1294,
  35978. bottom: 45/1445
  35979. },
  35980. form: "demon",
  35981. default: true
  35982. },
  35983. terraFront: {
  35984. height: math.unit(1.5, "earths"),
  35985. name: "Front",
  35986. image: {
  35987. source: "./media/characters/moonlight-rose/terra.svg"
  35988. },
  35989. form: "terra",
  35990. default: true
  35991. },
  35992. jupiterFront: {
  35993. height: math.unit(69911*2, "km"),
  35994. name: "Front",
  35995. image: {
  35996. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  35997. extra: 1367/1286,
  35998. bottom: 55/1422
  35999. },
  36000. form: "jupiter",
  36001. default: true
  36002. },
  36003. neptuneFront: {
  36004. height: math.unit(24622*2, "feet"),
  36005. name: "Front",
  36006. image: {
  36007. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36008. extra: 1851/1712,
  36009. bottom: 0/1851
  36010. },
  36011. form: "neptune",
  36012. default: true
  36013. },
  36014. },
  36015. [
  36016. {
  36017. name: "\"Natural\" Height",
  36018. height: math.unit(5 + 11/12, "feet"),
  36019. form: "normal"
  36020. },
  36021. {
  36022. name: "Smallest comfortable size",
  36023. height: math.unit(40, "meters"),
  36024. form: "normal"
  36025. },
  36026. {
  36027. name: "Common size",
  36028. height: math.unit(50, "km"),
  36029. form: "normal",
  36030. default: true
  36031. },
  36032. {
  36033. name: "Normal",
  36034. height: math.unit(1.5, "earths"),
  36035. form: "demon",
  36036. default: true
  36037. },
  36038. {
  36039. name: "Universal",
  36040. height: math.unit(15, "universes"),
  36041. form: "demon"
  36042. },
  36043. {
  36044. name: "Earth",
  36045. height: math.unit(1.5, "earths"),
  36046. form: "terra",
  36047. default: true
  36048. },
  36049. {
  36050. name: "Super Earth",
  36051. height: math.unit(67.5, "earths"),
  36052. form: "terra"
  36053. },
  36054. {
  36055. name: "Doesn't fit in a solar system...",
  36056. height: math.unit(1, "galaxy"),
  36057. form: "terra"
  36058. },
  36059. {
  36060. name: "Saturn",
  36061. height: math.unit(58232*2, "km"),
  36062. form: "jupiter"
  36063. },
  36064. {
  36065. name: "Jupiter",
  36066. height: math.unit(69911*2, "km"),
  36067. form: "jupiter",
  36068. default: true
  36069. },
  36070. {
  36071. name: "HD 100546 b",
  36072. height: math.unit(482938, "km"),
  36073. form: "jupiter"
  36074. },
  36075. {
  36076. name: "Enceladus",
  36077. height: math.unit(513*2, "km"),
  36078. form: "neptune"
  36079. },
  36080. {
  36081. name: "Europe",
  36082. height: math.unit(1560*2, "km"),
  36083. form: "neptune"
  36084. },
  36085. {
  36086. name: "Neptune",
  36087. height: math.unit(24622*2, "km"),
  36088. form: "neptune",
  36089. default: true
  36090. },
  36091. {
  36092. name: "CoRoT-9b",
  36093. height: math.unit(75067*2, "km"),
  36094. form: "neptune"
  36095. },
  36096. ],
  36097. {
  36098. "normal": {
  36099. name: "Normal",
  36100. default: true
  36101. },
  36102. "demon": {
  36103. name: "Demon"
  36104. },
  36105. "terra": {
  36106. name: "Terra"
  36107. },
  36108. "jupiter": {
  36109. name: "Jupiter"
  36110. },
  36111. "neptune": {
  36112. name: "Neptune"
  36113. }
  36114. }
  36115. ))
  36116. characterMakers.push(() => makeCharacter(
  36117. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36118. {
  36119. front: {
  36120. height: math.unit(16, "feet"),
  36121. weight: math.unit(610, "kg"),
  36122. name: "Front",
  36123. image: {
  36124. source: "./media/characters/huckle/front.svg",
  36125. extra: 1731/1625,
  36126. bottom: 33/1764
  36127. }
  36128. },
  36129. back: {
  36130. height: math.unit(16, "feet"),
  36131. weight: math.unit(610, "kg"),
  36132. name: "Back",
  36133. image: {
  36134. source: "./media/characters/huckle/back.svg",
  36135. extra: 1738/1651,
  36136. bottom: 37/1775
  36137. }
  36138. },
  36139. laughing: {
  36140. height: math.unit(3.75, "feet"),
  36141. name: "Laughing",
  36142. image: {
  36143. source: "./media/characters/huckle/laughing.svg"
  36144. }
  36145. },
  36146. angry: {
  36147. height: math.unit(4.15, "feet"),
  36148. name: "Angry",
  36149. image: {
  36150. source: "./media/characters/huckle/angry.svg"
  36151. }
  36152. },
  36153. },
  36154. [
  36155. {
  36156. name: "Normal",
  36157. height: math.unit(16, "feet"),
  36158. default: true
  36159. },
  36160. {
  36161. name: "Mini Macro",
  36162. height: math.unit(463, "feet")
  36163. },
  36164. {
  36165. name: "Macro",
  36166. height: math.unit(1680, "meters")
  36167. },
  36168. {
  36169. name: "Mega Macro",
  36170. height: math.unit(175, "km")
  36171. },
  36172. {
  36173. name: "Terra Macro",
  36174. height: math.unit(32, "gigameters")
  36175. },
  36176. {
  36177. name: "Multiverse+",
  36178. height: math.unit(2.56e23, "yottameters")
  36179. },
  36180. ]
  36181. ))
  36182. characterMakers.push(() => makeCharacter(
  36183. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36184. {
  36185. front: {
  36186. height: math.unit(6 + 9/12, "feet"),
  36187. weight: math.unit(280, "lb"),
  36188. name: "Front",
  36189. image: {
  36190. source: "./media/characters/candy/front.svg",
  36191. extra: 234/217,
  36192. bottom: 11/245
  36193. }
  36194. },
  36195. },
  36196. [
  36197. {
  36198. name: "Really Small",
  36199. height: math.unit(0.1, "nm")
  36200. },
  36201. {
  36202. name: "Micro",
  36203. height: math.unit(2, "inches")
  36204. },
  36205. {
  36206. name: "Normal",
  36207. height: math.unit(6 + 9/12, "feet"),
  36208. default: true
  36209. },
  36210. {
  36211. name: "Small Macro",
  36212. height: math.unit(69, "feet")
  36213. },
  36214. {
  36215. name: "Macro",
  36216. height: math.unit(160, "feet")
  36217. },
  36218. {
  36219. name: "Megamacro",
  36220. height: math.unit(22000, "miles")
  36221. },
  36222. {
  36223. name: "Gigamacro",
  36224. height: math.unit(50000, "miles")
  36225. },
  36226. ]
  36227. ))
  36228. characterMakers.push(() => makeCharacter(
  36229. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36230. {
  36231. front: {
  36232. height: math.unit(4, "feet"),
  36233. weight: math.unit(90, "lb"),
  36234. name: "Front",
  36235. image: {
  36236. source: "./media/characters/joey-mcdonald/front.svg",
  36237. extra: 1059/852,
  36238. bottom: 33/1092
  36239. }
  36240. },
  36241. back: {
  36242. height: math.unit(4, "feet"),
  36243. weight: math.unit(90, "lb"),
  36244. name: "Back",
  36245. image: {
  36246. source: "./media/characters/joey-mcdonald/back.svg",
  36247. extra: 1077/879,
  36248. bottom: 5/1082
  36249. }
  36250. },
  36251. frontKobold: {
  36252. height: math.unit(4, "feet"),
  36253. weight: math.unit(100, "lb"),
  36254. name: "Front-kobold",
  36255. image: {
  36256. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36257. extra: 1480/1367,
  36258. bottom: 0/1480
  36259. }
  36260. },
  36261. backKobold: {
  36262. height: math.unit(4, "feet"),
  36263. weight: math.unit(100, "lb"),
  36264. name: "Back-kobold",
  36265. image: {
  36266. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36267. extra: 1449/1361,
  36268. bottom: 0/1449
  36269. }
  36270. },
  36271. },
  36272. [
  36273. {
  36274. name: "Normal",
  36275. height: math.unit(4, "feet"),
  36276. default: true
  36277. },
  36278. ]
  36279. ))
  36280. characterMakers.push(() => makeCharacter(
  36281. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36282. {
  36283. front: {
  36284. height: math.unit(12 + 6/12, "feet"),
  36285. name: "Front",
  36286. image: {
  36287. source: "./media/characters/kass-lockheed/front.svg",
  36288. extra: 354/343,
  36289. bottom: 9/363
  36290. }
  36291. },
  36292. back: {
  36293. height: math.unit(12 + 6/12, "feet"),
  36294. name: "Back",
  36295. image: {
  36296. source: "./media/characters/kass-lockheed/back.svg",
  36297. extra: 364/352,
  36298. bottom: 3/367
  36299. }
  36300. },
  36301. dick: {
  36302. height: math.unit(3.12, "feet"),
  36303. name: "Dick",
  36304. image: {
  36305. source: "./media/characters/kass-lockheed/dick.svg"
  36306. }
  36307. },
  36308. head: {
  36309. height: math.unit(2.6, "feet"),
  36310. name: "Head",
  36311. image: {
  36312. source: "./media/characters/kass-lockheed/head.svg"
  36313. }
  36314. },
  36315. bleh: {
  36316. height: math.unit(2.85, "feet"),
  36317. name: "Bleh",
  36318. image: {
  36319. source: "./media/characters/kass-lockheed/bleh.svg"
  36320. }
  36321. },
  36322. smug: {
  36323. height: math.unit(2.85, "feet"),
  36324. name: "Smug",
  36325. image: {
  36326. source: "./media/characters/kass-lockheed/smug.svg"
  36327. }
  36328. },
  36329. },
  36330. [
  36331. {
  36332. name: "Normal",
  36333. height: math.unit(12 + 6/12, "feet"),
  36334. default: true
  36335. },
  36336. ]
  36337. ))
  36338. characterMakers.push(() => makeCharacter(
  36339. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36340. {
  36341. front: {
  36342. height: math.unit(6 + 2/12, "feet"),
  36343. name: "Front",
  36344. image: {
  36345. source: "./media/characters/taylor/front.svg",
  36346. extra: 639/495,
  36347. bottom: 12/651
  36348. }
  36349. },
  36350. },
  36351. [
  36352. {
  36353. name: "Normal",
  36354. height: math.unit(6 + 2/12, "feet"),
  36355. default: true
  36356. },
  36357. {
  36358. name: "Big",
  36359. height: math.unit(15, "feet")
  36360. },
  36361. {
  36362. name: "Lorg",
  36363. height: math.unit(80, "feet")
  36364. },
  36365. {
  36366. name: "Too Lorg",
  36367. height: math.unit(120, "feet")
  36368. },
  36369. ]
  36370. ))
  36371. characterMakers.push(() => makeCharacter(
  36372. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36373. {
  36374. front: {
  36375. height: math.unit(15, "feet"),
  36376. name: "Front",
  36377. image: {
  36378. source: "./media/characters/kaizer/front.svg",
  36379. extra: 1612/1436,
  36380. bottom: 43/1655
  36381. }
  36382. },
  36383. },
  36384. [
  36385. {
  36386. name: "Normal",
  36387. height: math.unit(15, "feet"),
  36388. default: true
  36389. },
  36390. ]
  36391. ))
  36392. characterMakers.push(() => makeCharacter(
  36393. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36394. {
  36395. front: {
  36396. height: math.unit(2, "feet"),
  36397. weight: math.unit(30, "lb"),
  36398. name: "Front",
  36399. image: {
  36400. source: "./media/characters/sandy/front.svg",
  36401. extra: 1439/1307,
  36402. bottom: 194/1633
  36403. }
  36404. },
  36405. },
  36406. [
  36407. {
  36408. name: "Normal",
  36409. height: math.unit(2, "feet"),
  36410. default: true
  36411. },
  36412. ]
  36413. ))
  36414. characterMakers.push(() => makeCharacter(
  36415. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36416. {
  36417. front: {
  36418. height: math.unit(3, "feet"),
  36419. name: "Front",
  36420. image: {
  36421. source: "./media/characters/mellvi/front.svg",
  36422. extra: 1831/1630,
  36423. bottom: 58/1889
  36424. }
  36425. },
  36426. },
  36427. [
  36428. {
  36429. name: "Normal",
  36430. height: math.unit(3, "feet"),
  36431. default: true
  36432. },
  36433. ]
  36434. ))
  36435. characterMakers.push(() => makeCharacter(
  36436. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36437. {
  36438. front: {
  36439. height: math.unit(5 + 11/12, "feet"),
  36440. weight: math.unit(200, "lb"),
  36441. name: "Front",
  36442. image: {
  36443. source: "./media/characters/shirou/front.svg",
  36444. extra: 2491/2383,
  36445. bottom: 189/2680
  36446. }
  36447. },
  36448. back: {
  36449. height: math.unit(5 + 11/12, "feet"),
  36450. weight: math.unit(200, "lb"),
  36451. name: "Back",
  36452. image: {
  36453. source: "./media/characters/shirou/back.svg",
  36454. extra: 2554/2450,
  36455. bottom: 76/2630
  36456. }
  36457. },
  36458. },
  36459. [
  36460. {
  36461. name: "Normal",
  36462. height: math.unit(5 + 11/12, "feet"),
  36463. default: true
  36464. },
  36465. ]
  36466. ))
  36467. characterMakers.push(() => makeCharacter(
  36468. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36469. {
  36470. front: {
  36471. height: math.unit(6 + 3/12, "feet"),
  36472. weight: math.unit(177, "lb"),
  36473. name: "Front",
  36474. image: {
  36475. source: "./media/characters/noryu/front.svg",
  36476. extra: 973/885,
  36477. bottom: 10/983
  36478. }
  36479. },
  36480. },
  36481. [
  36482. {
  36483. name: "Normal",
  36484. height: math.unit(6 + 3/12, "feet"),
  36485. default: true
  36486. },
  36487. ]
  36488. ))
  36489. characterMakers.push(() => makeCharacter(
  36490. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36491. {
  36492. front: {
  36493. height: math.unit(5 + 6/12, "feet"),
  36494. weight: math.unit(170, "lb"),
  36495. name: "Front",
  36496. image: {
  36497. source: "./media/characters/mevolas-rubenido/front.svg",
  36498. extra: 2109/1901,
  36499. bottom: 96/2205
  36500. }
  36501. },
  36502. },
  36503. [
  36504. {
  36505. name: "Normal",
  36506. height: math.unit(5 + 6/12, "feet"),
  36507. default: true
  36508. },
  36509. ]
  36510. ))
  36511. characterMakers.push(() => makeCharacter(
  36512. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36513. {
  36514. front: {
  36515. height: math.unit(100, "feet"),
  36516. name: "Front",
  36517. image: {
  36518. source: "./media/characters/dee/front.svg",
  36519. extra: 2153/2036,
  36520. bottom: 59/2212
  36521. }
  36522. },
  36523. back: {
  36524. height: math.unit(100, "feet"),
  36525. name: "Back",
  36526. image: {
  36527. source: "./media/characters/dee/back.svg",
  36528. extra: 2183/2058,
  36529. bottom: 75/2258
  36530. }
  36531. },
  36532. foot: {
  36533. height: math.unit(19.43, "feet"),
  36534. name: "Foot",
  36535. image: {
  36536. source: "./media/characters/dee/foot.svg"
  36537. }
  36538. },
  36539. hoof: {
  36540. height: math.unit(20.6, "feet"),
  36541. name: "Hoof",
  36542. image: {
  36543. source: "./media/characters/dee/hoof.svg"
  36544. }
  36545. },
  36546. },
  36547. [
  36548. {
  36549. name: "Macro",
  36550. height: math.unit(100, "feet"),
  36551. default: true
  36552. },
  36553. ]
  36554. ))
  36555. characterMakers.push(() => makeCharacter(
  36556. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36557. {
  36558. front: {
  36559. height: math.unit(5 + 6/12, "feet"),
  36560. name: "Front",
  36561. image: {
  36562. source: "./media/characters/teh/front.svg",
  36563. extra: 1002/847,
  36564. bottom: 62/1064
  36565. }
  36566. },
  36567. },
  36568. [
  36569. {
  36570. name: "Normal",
  36571. height: math.unit(5 + 6/12, "feet"),
  36572. default: true
  36573. },
  36574. ]
  36575. ))
  36576. characterMakers.push(() => makeCharacter(
  36577. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36578. {
  36579. side: {
  36580. height: math.unit(6 + 1/12, "feet"),
  36581. weight: math.unit(204, "lb"),
  36582. name: "Side",
  36583. image: {
  36584. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36585. extra: 974/775,
  36586. bottom: 169/1143
  36587. }
  36588. },
  36589. sitting: {
  36590. height: math.unit(6 + 2/12, "feet"),
  36591. weight: math.unit(204, "lb"),
  36592. name: "Sitting",
  36593. image: {
  36594. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36595. extra: 1175/964,
  36596. bottom: 378/1553
  36597. }
  36598. },
  36599. },
  36600. [
  36601. {
  36602. name: "Normal",
  36603. height: math.unit(6 + 1/12, "feet"),
  36604. default: true
  36605. },
  36606. ]
  36607. ))
  36608. characterMakers.push(() => makeCharacter(
  36609. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36610. {
  36611. front: {
  36612. height: math.unit(6, "inches"),
  36613. name: "Front",
  36614. image: {
  36615. source: "./media/characters/tululi/front.svg",
  36616. extra: 1997/1876,
  36617. bottom: 20/2017
  36618. }
  36619. },
  36620. },
  36621. [
  36622. {
  36623. name: "Normal",
  36624. height: math.unit(6, "inches"),
  36625. default: true
  36626. },
  36627. ]
  36628. ))
  36629. characterMakers.push(() => makeCharacter(
  36630. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  36631. {
  36632. front: {
  36633. height: math.unit(4 + 1/12, "feet"),
  36634. name: "Front",
  36635. image: {
  36636. source: "./media/characters/star/front.svg",
  36637. extra: 1493/1189,
  36638. bottom: 48/1541
  36639. }
  36640. },
  36641. },
  36642. [
  36643. {
  36644. name: "Normal",
  36645. height: math.unit(4 + 1/12, "feet"),
  36646. default: true
  36647. },
  36648. ]
  36649. ))
  36650. characterMakers.push(() => makeCharacter(
  36651. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  36652. {
  36653. front: {
  36654. height: math.unit(6 + 3/12, "feet"),
  36655. name: "Front",
  36656. image: {
  36657. source: "./media/characters/comet/front.svg",
  36658. extra: 1681/1462,
  36659. bottom: 26/1707
  36660. }
  36661. },
  36662. },
  36663. [
  36664. {
  36665. name: "Normal",
  36666. height: math.unit(6 + 3/12, "feet"),
  36667. default: true
  36668. },
  36669. ]
  36670. ))
  36671. characterMakers.push(() => makeCharacter(
  36672. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  36673. {
  36674. front: {
  36675. height: math.unit(950, "feet"),
  36676. name: "Front",
  36677. image: {
  36678. source: "./media/characters/vortex/front.svg",
  36679. extra: 1497/1434,
  36680. bottom: 56/1553
  36681. }
  36682. },
  36683. maw: {
  36684. height: math.unit(285, "feet"),
  36685. name: "Maw",
  36686. image: {
  36687. source: "./media/characters/vortex/maw.svg"
  36688. }
  36689. },
  36690. },
  36691. [
  36692. {
  36693. name: "Macro",
  36694. height: math.unit(950, "feet"),
  36695. default: true
  36696. },
  36697. ]
  36698. ))
  36699. characterMakers.push(() => makeCharacter(
  36700. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  36701. {
  36702. front: {
  36703. height: math.unit(600, "feet"),
  36704. weight: math.unit(0.02, "grams"),
  36705. name: "Front",
  36706. image: {
  36707. source: "./media/characters/doodle/front.svg",
  36708. extra: 1578/1413,
  36709. bottom: 37/1615
  36710. }
  36711. },
  36712. },
  36713. [
  36714. {
  36715. name: "Macro",
  36716. height: math.unit(600, "feet"),
  36717. default: true
  36718. },
  36719. ]
  36720. ))
  36721. characterMakers.push(() => makeCharacter(
  36722. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  36723. {
  36724. front: {
  36725. height: math.unit(6 + 6/12, "feet"),
  36726. name: "Front",
  36727. image: {
  36728. source: "./media/characters/jai/front.svg",
  36729. extra: 1645/1534,
  36730. bottom: 115/1760
  36731. }
  36732. },
  36733. },
  36734. [
  36735. {
  36736. name: "Normal",
  36737. height: math.unit(6 + 6/12, "feet"),
  36738. default: true
  36739. },
  36740. ]
  36741. ))
  36742. characterMakers.push(() => makeCharacter(
  36743. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  36744. {
  36745. front: {
  36746. height: math.unit(6 + 8/12, "feet"),
  36747. name: "Front",
  36748. image: {
  36749. source: "./media/characters/pixel/front.svg",
  36750. extra: 1900/1735,
  36751. bottom: 63/1963
  36752. }
  36753. },
  36754. },
  36755. [
  36756. {
  36757. name: "Normal",
  36758. height: math.unit(6 + 8/12, "feet"),
  36759. default: true
  36760. },
  36761. ]
  36762. ))
  36763. characterMakers.push(() => makeCharacter(
  36764. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  36765. {
  36766. back: {
  36767. height: math.unit(4 + 1/12, "feet"),
  36768. weight: math.unit(75, "lb"),
  36769. name: "Back",
  36770. image: {
  36771. source: "./media/characters/rhett/back.svg",
  36772. extra: 930/878,
  36773. bottom: 25/955
  36774. }
  36775. },
  36776. front: {
  36777. height: math.unit(4 + 1/12, "feet"),
  36778. weight: math.unit(75, "lb"),
  36779. name: "Front",
  36780. image: {
  36781. source: "./media/characters/rhett/front.svg",
  36782. extra: 1682/1586,
  36783. bottom: 92/1774
  36784. }
  36785. },
  36786. },
  36787. [
  36788. {
  36789. name: "Micro",
  36790. height: math.unit(8, "inches")
  36791. },
  36792. {
  36793. name: "Tiny",
  36794. height: math.unit(2, "feet")
  36795. },
  36796. {
  36797. name: "Normal",
  36798. height: math.unit(4 + 1/12, "feet"),
  36799. default: true
  36800. },
  36801. ]
  36802. ))
  36803. characterMakers.push(() => makeCharacter(
  36804. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  36805. {
  36806. front: {
  36807. height: math.unit(3 + 3/12, "feet"),
  36808. name: "Front",
  36809. image: {
  36810. source: "./media/characters/penny/front.svg",
  36811. extra: 1406/1311,
  36812. bottom: 26/1432
  36813. }
  36814. },
  36815. },
  36816. [
  36817. {
  36818. name: "Normal",
  36819. height: math.unit(3 + 3/12, "feet"),
  36820. default: true
  36821. },
  36822. ]
  36823. ))
  36824. characterMakers.push(() => makeCharacter(
  36825. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  36826. {
  36827. front: {
  36828. height: math.unit(4 + 11/12, "feet"),
  36829. name: "Front",
  36830. image: {
  36831. source: "./media/characters/monty/front.svg",
  36832. extra: 1479/1209,
  36833. bottom: 0/1479
  36834. }
  36835. },
  36836. },
  36837. [
  36838. {
  36839. name: "Normal",
  36840. height: math.unit(4 + 11/12, "feet"),
  36841. default: true
  36842. },
  36843. ]
  36844. ))
  36845. characterMakers.push(() => makeCharacter(
  36846. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  36847. {
  36848. front: {
  36849. height: math.unit(8 + 4/12, "feet"),
  36850. name: "Front",
  36851. image: {
  36852. source: "./media/characters/sterling/front.svg",
  36853. extra: 1420/1236,
  36854. bottom: 27/1447
  36855. }
  36856. },
  36857. },
  36858. [
  36859. {
  36860. name: "Normal",
  36861. height: math.unit(8 + 4/12, "feet"),
  36862. default: true
  36863. },
  36864. ]
  36865. ))
  36866. characterMakers.push(() => makeCharacter(
  36867. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  36868. {
  36869. front: {
  36870. height: math.unit(15, "feet"),
  36871. name: "Front",
  36872. image: {
  36873. source: "./media/characters/marble/front.svg",
  36874. extra: 973/937,
  36875. bottom: 32/1005
  36876. }
  36877. },
  36878. },
  36879. [
  36880. {
  36881. name: "Normal",
  36882. height: math.unit(15, "feet"),
  36883. default: true
  36884. },
  36885. ]
  36886. ))
  36887. characterMakers.push(() => makeCharacter(
  36888. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  36889. {
  36890. front: {
  36891. height: math.unit(3, "inches"),
  36892. name: "Front",
  36893. image: {
  36894. source: "./media/characters/powder/front.svg",
  36895. extra: 1504/1334,
  36896. bottom: 518/2022
  36897. }
  36898. },
  36899. },
  36900. [
  36901. {
  36902. name: "Normal",
  36903. height: math.unit(3, "inches"),
  36904. default: true
  36905. },
  36906. ]
  36907. ))
  36908. characterMakers.push(() => makeCharacter(
  36909. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  36910. {
  36911. front: {
  36912. height: math.unit(4 + 5/12, "feet"),
  36913. name: "Front",
  36914. image: {
  36915. source: "./media/characters/joey-raccoon/front.svg",
  36916. extra: 1273/1197,
  36917. bottom: 0/1273
  36918. }
  36919. },
  36920. },
  36921. [
  36922. {
  36923. name: "Normal",
  36924. height: math.unit(4 + 5/12, "feet"),
  36925. default: true
  36926. },
  36927. ]
  36928. ))
  36929. characterMakers.push(() => makeCharacter(
  36930. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  36931. {
  36932. front: {
  36933. height: math.unit(8 + 4/12, "feet"),
  36934. name: "Front",
  36935. image: {
  36936. source: "./media/characters/vick/front.svg",
  36937. extra: 2187/2118,
  36938. bottom: 47/2234
  36939. }
  36940. },
  36941. },
  36942. [
  36943. {
  36944. name: "Normal",
  36945. height: math.unit(8 + 4/12, "feet"),
  36946. default: true
  36947. },
  36948. ]
  36949. ))
  36950. characterMakers.push(() => makeCharacter(
  36951. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  36952. {
  36953. front: {
  36954. height: math.unit(5 + 5/12, "feet"),
  36955. name: "Front",
  36956. image: {
  36957. source: "./media/characters/mitsy/front.svg",
  36958. extra: 1842/1695,
  36959. bottom: 0/1842
  36960. }
  36961. },
  36962. },
  36963. [
  36964. {
  36965. name: "Normal",
  36966. height: math.unit(5 + 5/12, "feet"),
  36967. default: true
  36968. },
  36969. ]
  36970. ))
  36971. characterMakers.push(() => makeCharacter(
  36972. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  36973. {
  36974. front: {
  36975. height: math.unit(6 + 3/12, "feet"),
  36976. name: "Front",
  36977. image: {
  36978. source: "./media/characters/silvy/front.svg",
  36979. extra: 1995/1836,
  36980. bottom: 225/2220
  36981. }
  36982. },
  36983. },
  36984. [
  36985. {
  36986. name: "Normal",
  36987. height: math.unit(6 + 3/12, "feet"),
  36988. default: true
  36989. },
  36990. ]
  36991. ))
  36992. characterMakers.push(() => makeCharacter(
  36993. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  36994. {
  36995. front: {
  36996. height: math.unit(3 + 8/12, "feet"),
  36997. name: "Front",
  36998. image: {
  36999. source: "./media/characters/rodney/front.svg",
  37000. extra: 1956/1747,
  37001. bottom: 31/1987
  37002. }
  37003. },
  37004. frontDressed: {
  37005. height: math.unit(2.9, "feet"),
  37006. name: "Front (Dressed)",
  37007. image: {
  37008. source: "./media/characters/rodney/front-dressed.svg",
  37009. extra: 1382/1241,
  37010. bottom: 385/1767
  37011. }
  37012. },
  37013. },
  37014. [
  37015. {
  37016. name: "Normal",
  37017. height: math.unit(3 + 8/12, "feet"),
  37018. default: true
  37019. },
  37020. ]
  37021. ))
  37022. characterMakers.push(() => makeCharacter(
  37023. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37024. {
  37025. front: {
  37026. height: math.unit(5 + 9/12, "feet"),
  37027. weight: math.unit(194, "lbs"),
  37028. name: "Front",
  37029. image: {
  37030. source: "./media/characters/zakail-sudekai/front.svg",
  37031. extra: 2696/2533,
  37032. bottom: 248/2944
  37033. }
  37034. },
  37035. maw: {
  37036. height: math.unit(1.35, "feet"),
  37037. name: "Maw",
  37038. image: {
  37039. source: "./media/characters/zakail-sudekai/maw.svg"
  37040. }
  37041. },
  37042. },
  37043. [
  37044. {
  37045. name: "Normal",
  37046. height: math.unit(5 + 9/12, "feet"),
  37047. default: true
  37048. },
  37049. ]
  37050. ))
  37051. characterMakers.push(() => makeCharacter(
  37052. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37053. {
  37054. front: {
  37055. height: math.unit(8 + 4/12, "feet"),
  37056. weight: math.unit(1200, "lb"),
  37057. name: "Front",
  37058. image: {
  37059. source: "./media/characters/eleanor/front.svg",
  37060. extra: 1226/1192,
  37061. bottom: 52/1278
  37062. }
  37063. },
  37064. back: {
  37065. height: math.unit(8 + 4/12, "feet"),
  37066. weight: math.unit(1200, "lb"),
  37067. name: "Back",
  37068. image: {
  37069. source: "./media/characters/eleanor/back.svg",
  37070. extra: 1242/1184,
  37071. bottom: 60/1302
  37072. }
  37073. },
  37074. head: {
  37075. height: math.unit(2.62, "feet"),
  37076. name: "Head",
  37077. image: {
  37078. source: "./media/characters/eleanor/head.svg"
  37079. }
  37080. },
  37081. },
  37082. [
  37083. {
  37084. name: "Normal",
  37085. height: math.unit(8 + 4/12, "feet"),
  37086. default: true
  37087. },
  37088. ]
  37089. ))
  37090. characterMakers.push(() => makeCharacter(
  37091. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37092. {
  37093. front: {
  37094. height: math.unit(8 + 4/12, "feet"),
  37095. weight: math.unit(750, "lb"),
  37096. name: "Front",
  37097. image: {
  37098. source: "./media/characters/tanya/front.svg",
  37099. extra: 1749/1615,
  37100. bottom: 33/1782
  37101. }
  37102. },
  37103. },
  37104. [
  37105. {
  37106. name: "Normal",
  37107. height: math.unit(8 + 4/12, "feet"),
  37108. default: true
  37109. },
  37110. ]
  37111. ))
  37112. characterMakers.push(() => makeCharacter(
  37113. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37114. {
  37115. front: {
  37116. height: math.unit(5, "feet"),
  37117. weight: math.unit(225, "lb"),
  37118. name: "Front",
  37119. image: {
  37120. source: "./media/characters/cindy/front.svg",
  37121. extra: 1320/1250,
  37122. bottom: 42/1362
  37123. }
  37124. },
  37125. frontDressed: {
  37126. height: math.unit(5, "feet"),
  37127. weight: math.unit(225, "lb"),
  37128. name: "Front (Dressed)",
  37129. image: {
  37130. source: "./media/characters/cindy/front-dressed.svg",
  37131. extra: 1320/1250,
  37132. bottom: 42/1362
  37133. }
  37134. },
  37135. back: {
  37136. height: math.unit(5, "feet"),
  37137. weight: math.unit(225, "lb"),
  37138. name: "Back",
  37139. image: {
  37140. source: "./media/characters/cindy/back.svg",
  37141. extra: 1384/1346,
  37142. bottom: 14/1398
  37143. }
  37144. },
  37145. },
  37146. [
  37147. {
  37148. name: "Normal",
  37149. height: math.unit(5, "feet"),
  37150. default: true
  37151. },
  37152. ]
  37153. ))
  37154. characterMakers.push(() => makeCharacter(
  37155. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37156. {
  37157. front: {
  37158. height: math.unit(6 + 9/12, "feet"),
  37159. weight: math.unit(440, "lb"),
  37160. name: "Front",
  37161. image: {
  37162. source: "./media/characters/wilbur-owen/front.svg",
  37163. extra: 1575/1448,
  37164. bottom: 72/1647
  37165. }
  37166. },
  37167. back: {
  37168. height: math.unit(6 + 9/12, "feet"),
  37169. weight: math.unit(440, "lb"),
  37170. name: "Back",
  37171. image: {
  37172. source: "./media/characters/wilbur-owen/back.svg",
  37173. extra: 1578/1445,
  37174. bottom: 36/1614
  37175. }
  37176. },
  37177. },
  37178. [
  37179. {
  37180. name: "Normal",
  37181. height: math.unit(6 + 9/12, "feet"),
  37182. default: true
  37183. },
  37184. ]
  37185. ))
  37186. characterMakers.push(() => makeCharacter(
  37187. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37188. {
  37189. front: {
  37190. height: math.unit(6 + 5/12, "feet"),
  37191. weight: math.unit(650, "lb"),
  37192. name: "Front",
  37193. image: {
  37194. source: "./media/characters/keegan/front.svg",
  37195. extra: 2387/2198,
  37196. bottom: 33/2420
  37197. }
  37198. },
  37199. side: {
  37200. height: math.unit(6 + 5/12, "feet"),
  37201. weight: math.unit(650, "lb"),
  37202. name: "Side",
  37203. image: {
  37204. source: "./media/characters/keegan/side.svg",
  37205. extra: 2390/2202,
  37206. bottom: 47/2437
  37207. }
  37208. },
  37209. back: {
  37210. height: math.unit(6 + 5/12, "feet"),
  37211. weight: math.unit(650, "lb"),
  37212. name: "Back",
  37213. image: {
  37214. source: "./media/characters/keegan/back.svg",
  37215. extra: 2418/2268,
  37216. bottom: 15/2433
  37217. }
  37218. },
  37219. frontSfw: {
  37220. height: math.unit(6 + 5/12, "feet"),
  37221. weight: math.unit(650, "lb"),
  37222. name: "Front (SFW)",
  37223. image: {
  37224. source: "./media/characters/keegan/front-sfw.svg",
  37225. extra: 2387/2198,
  37226. bottom: 33/2420
  37227. }
  37228. },
  37229. beans: {
  37230. height: math.unit(1.85, "feet"),
  37231. name: "Beans",
  37232. image: {
  37233. source: "./media/characters/keegan/beans.svg"
  37234. }
  37235. },
  37236. },
  37237. [
  37238. {
  37239. name: "Normal",
  37240. height: math.unit(6 + 5/12, "feet"),
  37241. default: true
  37242. },
  37243. ]
  37244. ))
  37245. characterMakers.push(() => makeCharacter(
  37246. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37247. {
  37248. front: {
  37249. height: math.unit(9, "feet"),
  37250. name: "Front",
  37251. image: {
  37252. source: "./media/characters/colton/front.svg",
  37253. extra: 1589/1326,
  37254. bottom: 139/1728
  37255. }
  37256. },
  37257. },
  37258. [
  37259. {
  37260. name: "Normal",
  37261. height: math.unit(9, "feet"),
  37262. default: true
  37263. },
  37264. ]
  37265. ))
  37266. characterMakers.push(() => makeCharacter(
  37267. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37268. {
  37269. front: {
  37270. height: math.unit(2 + 9/12, "feet"),
  37271. name: "Front",
  37272. image: {
  37273. source: "./media/characters/bora/front.svg",
  37274. extra: 1265/1250,
  37275. bottom: 24/1289
  37276. }
  37277. },
  37278. },
  37279. [
  37280. {
  37281. name: "Normal",
  37282. height: math.unit(2 + 9/12, "feet"),
  37283. default: true
  37284. },
  37285. ]
  37286. ))
  37287. characterMakers.push(() => makeCharacter(
  37288. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37289. {
  37290. front: {
  37291. height: math.unit(8, "feet"),
  37292. name: "Front",
  37293. image: {
  37294. source: "./media/characters/myu-myu/front.svg",
  37295. extra: 1949/1857,
  37296. bottom: 90/2039
  37297. }
  37298. },
  37299. },
  37300. [
  37301. {
  37302. name: "Normal",
  37303. height: math.unit(8, "feet"),
  37304. default: true
  37305. },
  37306. {
  37307. name: "Big",
  37308. height: math.unit(15, "feet")
  37309. },
  37310. {
  37311. name: "BIG",
  37312. height: math.unit(25, "feet")
  37313. },
  37314. ]
  37315. ))
  37316. characterMakers.push(() => makeCharacter(
  37317. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37318. {
  37319. side: {
  37320. height: math.unit(7 + 5/12, "feet"),
  37321. weight: math.unit(2800, "lb"),
  37322. name: "Side",
  37323. image: {
  37324. source: "./media/characters/haloren/side.svg",
  37325. extra: 1793/409,
  37326. bottom: 59/1852
  37327. }
  37328. },
  37329. frontPaw: {
  37330. height: math.unit(2.36, "feet"),
  37331. name: "Front paw",
  37332. image: {
  37333. source: "./media/characters/haloren/front-paw.svg"
  37334. }
  37335. },
  37336. hindPaw: {
  37337. height: math.unit(3.18, "feet"),
  37338. name: "Hind paw",
  37339. image: {
  37340. source: "./media/characters/haloren/hind-paw.svg"
  37341. }
  37342. },
  37343. maw: {
  37344. height: math.unit(5.05, "feet"),
  37345. name: "Maw",
  37346. image: {
  37347. source: "./media/characters/haloren/maw.svg"
  37348. }
  37349. },
  37350. dick: {
  37351. height: math.unit(2.90, "feet"),
  37352. name: "Dick",
  37353. image: {
  37354. source: "./media/characters/haloren/dick.svg"
  37355. }
  37356. },
  37357. },
  37358. [
  37359. {
  37360. name: "Normal",
  37361. height: math.unit(7 + 5/12, "feet"),
  37362. default: true
  37363. },
  37364. {
  37365. name: "Enhanced",
  37366. height: math.unit(14 + 3/12, "feet")
  37367. },
  37368. ]
  37369. ))
  37370. characterMakers.push(() => makeCharacter(
  37371. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37372. {
  37373. front: {
  37374. height: math.unit(171, "cm"),
  37375. name: "Front",
  37376. image: {
  37377. source: "./media/characters/kimmy/front.svg",
  37378. extra: 1491/1435,
  37379. bottom: 53/1544
  37380. }
  37381. },
  37382. },
  37383. [
  37384. {
  37385. name: "Small",
  37386. height: math.unit(9, "cm")
  37387. },
  37388. {
  37389. name: "Normal",
  37390. height: math.unit(171, "cm"),
  37391. default: true
  37392. },
  37393. ]
  37394. ))
  37395. characterMakers.push(() => makeCharacter(
  37396. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37397. {
  37398. front: {
  37399. height: math.unit(8, "feet"),
  37400. weight: math.unit(300, "lb"),
  37401. name: "Front",
  37402. image: {
  37403. source: "./media/characters/galeboomer/front.svg",
  37404. extra: 4651/4415,
  37405. bottom: 162/4813
  37406. }
  37407. },
  37408. back: {
  37409. height: math.unit(8, "feet"),
  37410. weight: math.unit(300, "lb"),
  37411. name: "Back",
  37412. image: {
  37413. source: "./media/characters/galeboomer/back.svg",
  37414. extra: 4544/4314,
  37415. bottom: 16/4560
  37416. }
  37417. },
  37418. frontAlt: {
  37419. height: math.unit(8, "feet"),
  37420. weight: math.unit(300, "lb"),
  37421. name: "Front (Alt)",
  37422. image: {
  37423. source: "./media/characters/galeboomer/front-alt.svg",
  37424. extra: 4458/4228,
  37425. bottom: 68/4526
  37426. }
  37427. },
  37428. maw: {
  37429. height: math.unit(1.2, "feet"),
  37430. name: "Maw",
  37431. image: {
  37432. source: "./media/characters/galeboomer/maw.svg"
  37433. }
  37434. },
  37435. },
  37436. [
  37437. {
  37438. name: "Normal",
  37439. height: math.unit(8, "feet"),
  37440. default: true
  37441. },
  37442. ]
  37443. ))
  37444. characterMakers.push(() => makeCharacter(
  37445. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37446. {
  37447. front: {
  37448. height: math.unit(5 + 9/12, "feet"),
  37449. weight: math.unit(120, "lb"),
  37450. name: "Front",
  37451. image: {
  37452. source: "./media/characters/chyr/front.svg",
  37453. extra: 1323/1254,
  37454. bottom: 63/1386
  37455. }
  37456. },
  37457. back: {
  37458. height: math.unit(5 + 9/12, "feet"),
  37459. weight: math.unit(120, "lb"),
  37460. name: "Back",
  37461. image: {
  37462. source: "./media/characters/chyr/back.svg",
  37463. extra: 1323/1252,
  37464. bottom: 48/1371
  37465. }
  37466. },
  37467. },
  37468. [
  37469. {
  37470. name: "Normal",
  37471. height: math.unit(5 + 9/12, "feet"),
  37472. default: true
  37473. },
  37474. ]
  37475. ))
  37476. characterMakers.push(() => makeCharacter(
  37477. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37478. {
  37479. front: {
  37480. height: math.unit(7, "feet"),
  37481. weight: math.unit(310, "lb"),
  37482. name: "Front",
  37483. image: {
  37484. source: "./media/characters/solarus/front.svg",
  37485. extra: 2415/2021,
  37486. bottom: 103/2518
  37487. }
  37488. },
  37489. back: {
  37490. height: math.unit(7, "feet"),
  37491. weight: math.unit(310, "lb"),
  37492. name: "Back",
  37493. image: {
  37494. source: "./media/characters/solarus/back.svg",
  37495. extra: 2463/2089,
  37496. bottom: 79/2542
  37497. }
  37498. },
  37499. },
  37500. [
  37501. {
  37502. name: "Normal",
  37503. height: math.unit(7, "feet"),
  37504. default: true
  37505. },
  37506. ]
  37507. ))
  37508. characterMakers.push(() => makeCharacter(
  37509. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37510. {
  37511. front: {
  37512. height: math.unit(16, "feet"),
  37513. name: "Front",
  37514. image: {
  37515. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37516. extra: 1844/1780,
  37517. bottom: 58/1902
  37518. }
  37519. },
  37520. winterCoat: {
  37521. height: math.unit(16, "feet"),
  37522. name: "Winter Coat",
  37523. image: {
  37524. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37525. extra: 1807/1775,
  37526. bottom: 69/1876
  37527. }
  37528. },
  37529. },
  37530. [
  37531. {
  37532. name: "Normal",
  37533. height: math.unit(16, "feet"),
  37534. default: true
  37535. },
  37536. {
  37537. name: "Chicago Size",
  37538. height: math.unit(560, "feet")
  37539. },
  37540. ]
  37541. ))
  37542. characterMakers.push(() => makeCharacter(
  37543. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37544. {
  37545. front: {
  37546. height: math.unit(11 + 6/12, "feet"),
  37547. weight: math.unit(1366, "lb"),
  37548. name: "Front",
  37549. image: {
  37550. source: "./media/characters/lexor/front.svg",
  37551. extra: 1560/1481,
  37552. bottom: 211/1771
  37553. }
  37554. },
  37555. back: {
  37556. height: math.unit(11 + 6/12, "feet"),
  37557. weight: math.unit(1366, "lb"),
  37558. name: "Back",
  37559. image: {
  37560. source: "./media/characters/lexor/back.svg",
  37561. extra: 1614/1533,
  37562. bottom: 76/1690
  37563. }
  37564. },
  37565. maw: {
  37566. height: math.unit(3, "feet"),
  37567. name: "Maw",
  37568. image: {
  37569. source: "./media/characters/lexor/maw.svg"
  37570. }
  37571. },
  37572. dick: {
  37573. height: math.unit(2.59, "feet"),
  37574. name: "Dick",
  37575. image: {
  37576. source: "./media/characters/lexor/dick.svg"
  37577. }
  37578. },
  37579. },
  37580. [
  37581. {
  37582. name: "Normal",
  37583. height: math.unit(11 + 6/12, "feet"),
  37584. default: true
  37585. },
  37586. ]
  37587. ))
  37588. characterMakers.push(() => makeCharacter(
  37589. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37590. {
  37591. front: {
  37592. height: math.unit(5 + 8/12, "feet"),
  37593. name: "Front",
  37594. image: {
  37595. source: "./media/characters/magnum/front.svg",
  37596. extra: 942/855,
  37597. bottom: 26/968
  37598. }
  37599. },
  37600. },
  37601. [
  37602. {
  37603. name: "Normal",
  37604. height: math.unit(5 + 8/12, "feet"),
  37605. default: true
  37606. },
  37607. ]
  37608. ))
  37609. characterMakers.push(() => makeCharacter(
  37610. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37611. {
  37612. front: {
  37613. height: math.unit(18 + 4/12, "feet"),
  37614. weight: math.unit(1500, "kg"),
  37615. name: "Front",
  37616. image: {
  37617. source: "./media/characters/solas-sharpsman/front.svg",
  37618. extra: 1698/1589,
  37619. bottom: 0/1698
  37620. }
  37621. },
  37622. },
  37623. [
  37624. {
  37625. name: "Normal",
  37626. height: math.unit(18 + 4/12, "feet"),
  37627. default: true
  37628. },
  37629. ]
  37630. ))
  37631. characterMakers.push(() => makeCharacter(
  37632. { name: "October", species: ["tiger"], tags: ["anthro"] },
  37633. {
  37634. front: {
  37635. height: math.unit(5 + 5/12, "feet"),
  37636. weight: math.unit(180, "lb"),
  37637. name: "Front",
  37638. image: {
  37639. source: "./media/characters/october/front.svg",
  37640. extra: 1800/1650,
  37641. bottom: 0/1800
  37642. }
  37643. },
  37644. frontNsfw: {
  37645. height: math.unit(5 + 5/12, "feet"),
  37646. weight: math.unit(180, "lb"),
  37647. name: "Front (NSFW)",
  37648. image: {
  37649. source: "./media/characters/october/front-nsfw.svg",
  37650. extra: 1392/1307,
  37651. bottom: 42/1434
  37652. }
  37653. },
  37654. },
  37655. [
  37656. {
  37657. name: "Normal",
  37658. height: math.unit(5 + 5/12, "feet"),
  37659. default: true
  37660. },
  37661. ]
  37662. ))
  37663. characterMakers.push(() => makeCharacter(
  37664. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  37665. {
  37666. front: {
  37667. height: math.unit(8 + 6/12, "feet"),
  37668. name: "Front",
  37669. image: {
  37670. source: "./media/characters/essynkardi/front.svg",
  37671. extra: 1914/1846,
  37672. bottom: 22/1936
  37673. }
  37674. },
  37675. },
  37676. [
  37677. {
  37678. name: "Normal",
  37679. height: math.unit(8 + 6/12, "feet"),
  37680. default: true
  37681. },
  37682. ]
  37683. ))
  37684. characterMakers.push(() => makeCharacter(
  37685. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  37686. {
  37687. front: {
  37688. height: math.unit(6 + 6/12, "feet"),
  37689. weight: math.unit(7, "lb"),
  37690. name: "Front",
  37691. image: {
  37692. source: "./media/characters/icky/front.svg",
  37693. extra: 813/782,
  37694. bottom: 66/879
  37695. }
  37696. },
  37697. back: {
  37698. height: math.unit(6 + 6/12, "feet"),
  37699. weight: math.unit(7, "lb"),
  37700. name: "Back",
  37701. image: {
  37702. source: "./media/characters/icky/back.svg",
  37703. extra: 754/735,
  37704. bottom: 56/810
  37705. }
  37706. },
  37707. },
  37708. [
  37709. {
  37710. name: "Normal",
  37711. height: math.unit(6 + 6/12, "feet"),
  37712. default: true
  37713. },
  37714. ]
  37715. ))
  37716. characterMakers.push(() => makeCharacter(
  37717. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  37718. {
  37719. front: {
  37720. height: math.unit(15, "feet"),
  37721. name: "Front",
  37722. image: {
  37723. source: "./media/characters/rojas/front.svg",
  37724. extra: 1462/1408,
  37725. bottom: 95/1557
  37726. }
  37727. },
  37728. back: {
  37729. height: math.unit(15, "feet"),
  37730. name: "Back",
  37731. image: {
  37732. source: "./media/characters/rojas/back.svg",
  37733. extra: 1023/954,
  37734. bottom: 28/1051
  37735. }
  37736. },
  37737. },
  37738. [
  37739. {
  37740. name: "Normal",
  37741. height: math.unit(15, "feet"),
  37742. default: true
  37743. },
  37744. ]
  37745. ))
  37746. characterMakers.push(() => makeCharacter(
  37747. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  37748. {
  37749. frontHuman: {
  37750. height: math.unit(5 + 7/12, "feet"),
  37751. name: "Front (Human)",
  37752. image: {
  37753. source: "./media/characters/alek-dryagan/front-human.svg",
  37754. extra: 1687/1667,
  37755. bottom: 69/1756
  37756. }
  37757. },
  37758. backHuman: {
  37759. height: math.unit(5 + 7/12, "feet"),
  37760. name: "Back (Human)",
  37761. image: {
  37762. source: "./media/characters/alek-dryagan/back-human.svg",
  37763. extra: 1670/1649,
  37764. bottom: 65/1735
  37765. }
  37766. },
  37767. frontDemi: {
  37768. height: math.unit(65, "feet"),
  37769. name: "Front (Demi)",
  37770. image: {
  37771. source: "./media/characters/alek-dryagan/front-demi.svg",
  37772. extra: 1669/1642,
  37773. bottom: 49/1718
  37774. }
  37775. },
  37776. backDemi: {
  37777. height: math.unit(65, "feet"),
  37778. name: "Back (Demi)",
  37779. image: {
  37780. source: "./media/characters/alek-dryagan/back-demi.svg",
  37781. extra: 1658/1637,
  37782. bottom: 40/1698
  37783. }
  37784. },
  37785. mawHuman: {
  37786. height: math.unit(0.3, "feet"),
  37787. name: "Maw (Human)",
  37788. image: {
  37789. source: "./media/characters/alek-dryagan/maw-human.svg"
  37790. }
  37791. },
  37792. mawDemi: {
  37793. height: math.unit(3.8, "feet"),
  37794. name: "Maw (Demi)",
  37795. image: {
  37796. source: "./media/characters/alek-dryagan/maw-demi.svg"
  37797. }
  37798. },
  37799. },
  37800. [
  37801. {
  37802. name: "Normal",
  37803. height: math.unit(5 + 7/12, "feet"),
  37804. default: true
  37805. },
  37806. ]
  37807. ))
  37808. characterMakers.push(() => makeCharacter(
  37809. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  37810. {
  37811. frontHuman: {
  37812. height: math.unit(5 + 2/12, "feet"),
  37813. name: "Front (Human)",
  37814. image: {
  37815. source: "./media/characters/gen/front-human.svg",
  37816. extra: 1627/1538,
  37817. bottom: 71/1698
  37818. }
  37819. },
  37820. backHuman: {
  37821. height: math.unit(5 + 2/12, "feet"),
  37822. name: "Back (Human)",
  37823. image: {
  37824. source: "./media/characters/gen/back-human.svg",
  37825. extra: 1638/1548,
  37826. bottom: 69/1707
  37827. }
  37828. },
  37829. frontDemi: {
  37830. height: math.unit(5 + 2/12, "feet"),
  37831. name: "Front (Demi)",
  37832. image: {
  37833. source: "./media/characters/gen/front-demi.svg",
  37834. extra: 1627/1538,
  37835. bottom: 71/1698
  37836. }
  37837. },
  37838. backDemi: {
  37839. height: math.unit(5 + 2/12, "feet"),
  37840. name: "Back (Demi)",
  37841. image: {
  37842. source: "./media/characters/gen/back-demi.svg",
  37843. extra: 1638/1548,
  37844. bottom: 69/1707
  37845. }
  37846. },
  37847. },
  37848. [
  37849. {
  37850. name: "Normal",
  37851. height: math.unit(5 + 2/12, "feet"),
  37852. default: true
  37853. },
  37854. ]
  37855. ))
  37856. characterMakers.push(() => makeCharacter(
  37857. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  37858. {
  37859. frontImp: {
  37860. height: math.unit(1 + 11/12, "feet"),
  37861. name: "Front (Imp)",
  37862. image: {
  37863. source: "./media/characters/max-kobold/front-imp.svg",
  37864. extra: 1238/1134,
  37865. bottom: 81/1319
  37866. }
  37867. },
  37868. backImp: {
  37869. height: math.unit(1 + 11/12, "feet"),
  37870. name: "Back (Imp)",
  37871. image: {
  37872. source: "./media/characters/max-kobold/back-imp.svg",
  37873. extra: 1334/1175,
  37874. bottom: 34/1368
  37875. }
  37876. },
  37877. frontDemi: {
  37878. height: math.unit(5 + 9/12, "feet"),
  37879. name: "Front (Demi)",
  37880. image: {
  37881. source: "./media/characters/max-kobold/front-demi.svg",
  37882. extra: 1715/1685,
  37883. bottom: 54/1769
  37884. }
  37885. },
  37886. backDemi: {
  37887. height: math.unit(5 + 9/12, "feet"),
  37888. name: "Back (Demi)",
  37889. image: {
  37890. source: "./media/characters/max-kobold/back-demi.svg",
  37891. extra: 1752/1729,
  37892. bottom: 41/1793
  37893. }
  37894. },
  37895. handImp: {
  37896. height: math.unit(0.45, "feet"),
  37897. name: "Hand (Imp)",
  37898. image: {
  37899. source: "./media/characters/max-kobold/hand.svg"
  37900. }
  37901. },
  37902. pawImp: {
  37903. height: math.unit(0.46, "feet"),
  37904. name: "Paw (Imp)",
  37905. image: {
  37906. source: "./media/characters/max-kobold/paw.svg"
  37907. }
  37908. },
  37909. handDemi: {
  37910. height: math.unit(0.80, "feet"),
  37911. name: "Hand (Demi)",
  37912. image: {
  37913. source: "./media/characters/max-kobold/hand.svg"
  37914. }
  37915. },
  37916. pawDemi: {
  37917. height: math.unit(1.1, "feet"),
  37918. name: "Paw (Demi)",
  37919. image: {
  37920. source: "./media/characters/max-kobold/paw.svg"
  37921. }
  37922. },
  37923. headImp: {
  37924. height: math.unit(1.33, "feet"),
  37925. name: "Head (Imp)",
  37926. image: {
  37927. source: "./media/characters/max-kobold/head-imp.svg"
  37928. }
  37929. },
  37930. mawImp: {
  37931. height: math.unit(0.75, "feet"),
  37932. name: "Maw (Imp)",
  37933. image: {
  37934. source: "./media/characters/max-kobold/maw-imp.svg"
  37935. }
  37936. },
  37937. mawDemi: {
  37938. height: math.unit(0.42, "feet"),
  37939. name: "Maw (Demi)",
  37940. image: {
  37941. source: "./media/characters/max-kobold/maw-demi.svg"
  37942. }
  37943. },
  37944. },
  37945. [
  37946. {
  37947. name: "Normal",
  37948. height: math.unit(1 + 11/12, "feet"),
  37949. default: true
  37950. },
  37951. ]
  37952. ))
  37953. characterMakers.push(() => makeCharacter(
  37954. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  37955. {
  37956. front: {
  37957. height: math.unit(7 + 5/12, "feet"),
  37958. name: "Front",
  37959. image: {
  37960. source: "./media/characters/carbon/front.svg",
  37961. extra: 1754/1689,
  37962. bottom: 65/1819
  37963. }
  37964. },
  37965. back: {
  37966. height: math.unit(7 + 5/12, "feet"),
  37967. name: "Back",
  37968. image: {
  37969. source: "./media/characters/carbon/back.svg",
  37970. extra: 1762/1695,
  37971. bottom: 24/1786
  37972. }
  37973. },
  37974. frontGigantamax: {
  37975. height: math.unit(150, "feet"),
  37976. name: "Front (Gigantamax)",
  37977. image: {
  37978. source: "./media/characters/carbon/front-gigantamax.svg",
  37979. extra: 1826/1669,
  37980. bottom: 59/1885
  37981. }
  37982. },
  37983. backGigantamax: {
  37984. height: math.unit(150, "feet"),
  37985. name: "Back (Gigantamax)",
  37986. image: {
  37987. source: "./media/characters/carbon/back-gigantamax.svg",
  37988. extra: 1796/1653,
  37989. bottom: 53/1849
  37990. }
  37991. },
  37992. maw: {
  37993. height: math.unit(0.48, "feet"),
  37994. name: "Maw",
  37995. image: {
  37996. source: "./media/characters/carbon/maw.svg"
  37997. }
  37998. },
  37999. mawGigantamax: {
  38000. height: math.unit(7.5, "feet"),
  38001. name: "Maw (Gigantamax)",
  38002. image: {
  38003. source: "./media/characters/carbon/maw-gigantamax.svg"
  38004. }
  38005. },
  38006. },
  38007. [
  38008. {
  38009. name: "Normal",
  38010. height: math.unit(7 + 5/12, "feet"),
  38011. default: true
  38012. },
  38013. ]
  38014. ))
  38015. characterMakers.push(() => makeCharacter(
  38016. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38017. {
  38018. front: {
  38019. height: math.unit(6, "feet"),
  38020. name: "Front",
  38021. image: {
  38022. source: "./media/characters/maverick/front.svg",
  38023. extra: 1672/1661,
  38024. bottom: 85/1757
  38025. }
  38026. },
  38027. back: {
  38028. height: math.unit(6, "feet"),
  38029. name: "Back",
  38030. image: {
  38031. source: "./media/characters/maverick/back.svg",
  38032. extra: 1642/1631,
  38033. bottom: 38/1680
  38034. }
  38035. },
  38036. },
  38037. [
  38038. {
  38039. name: "Normal",
  38040. height: math.unit(6, "feet"),
  38041. default: true
  38042. },
  38043. ]
  38044. ))
  38045. characterMakers.push(() => makeCharacter(
  38046. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38047. {
  38048. front: {
  38049. height: math.unit(15, "feet"),
  38050. weight: math.unit(615, "lb"),
  38051. name: "Front",
  38052. image: {
  38053. source: "./media/characters/grockle/front.svg",
  38054. extra: 1535/1427,
  38055. bottom: 56/1591
  38056. }
  38057. },
  38058. },
  38059. [
  38060. {
  38061. name: "Normal",
  38062. height: math.unit(15, "feet"),
  38063. default: true
  38064. },
  38065. {
  38066. name: "Large",
  38067. height: math.unit(150, "feet")
  38068. },
  38069. {
  38070. name: "Macro",
  38071. height: math.unit(1876, "feet")
  38072. },
  38073. {
  38074. name: "Mega Macro",
  38075. height: math.unit(121940, "feet")
  38076. },
  38077. {
  38078. name: "Giga Macro",
  38079. height: math.unit(750, "km")
  38080. },
  38081. {
  38082. name: "Tera Macro",
  38083. height: math.unit(750000, "km")
  38084. },
  38085. {
  38086. name: "Galactic",
  38087. height: math.unit(1.4e5, "km")
  38088. },
  38089. {
  38090. name: "Godlike",
  38091. height: math.unit(9.8e280, "galaxies")
  38092. },
  38093. ]
  38094. ))
  38095. characterMakers.push(() => makeCharacter(
  38096. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38097. {
  38098. front: {
  38099. height: math.unit(11, "meters"),
  38100. weight: math.unit(20, "tonnes"),
  38101. name: "Front",
  38102. image: {
  38103. source: "./media/characters/alistair/front.svg",
  38104. extra: 1265/1009,
  38105. bottom: 93/1358
  38106. }
  38107. },
  38108. },
  38109. [
  38110. {
  38111. name: "Normal",
  38112. height: math.unit(11, "meters"),
  38113. default: true
  38114. },
  38115. ]
  38116. ))
  38117. characterMakers.push(() => makeCharacter(
  38118. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38119. {
  38120. front: {
  38121. height: math.unit(5 + 8/12, "feet"),
  38122. name: "Front",
  38123. image: {
  38124. source: "./media/characters/haruka/front.svg",
  38125. extra: 2012/1952,
  38126. bottom: 0/2012
  38127. }
  38128. },
  38129. },
  38130. [
  38131. {
  38132. name: "Normal",
  38133. height: math.unit(5 + 8/12, "feet"),
  38134. default: true
  38135. },
  38136. ]
  38137. ))
  38138. characterMakers.push(() => makeCharacter(
  38139. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38140. {
  38141. back: {
  38142. height: math.unit(9, "feet"),
  38143. name: "Back",
  38144. image: {
  38145. source: "./media/characters/vivian-sylveon/back.svg",
  38146. extra: 1853/1714,
  38147. bottom: 0/1853
  38148. }
  38149. },
  38150. },
  38151. [
  38152. {
  38153. name: "Normal",
  38154. height: math.unit(9, "feet"),
  38155. default: true
  38156. },
  38157. {
  38158. name: "Macro",
  38159. height: math.unit(500, "feet")
  38160. },
  38161. {
  38162. name: "Megamacro",
  38163. height: math.unit(600, "miles")
  38164. },
  38165. {
  38166. name: "Gigamacro",
  38167. height: math.unit(30000, "miles")
  38168. },
  38169. ]
  38170. ))
  38171. characterMakers.push(() => makeCharacter(
  38172. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38173. {
  38174. anthro: {
  38175. height: math.unit(5 + 10/12, "feet"),
  38176. weight: math.unit(100, "lb"),
  38177. name: "Anthro",
  38178. image: {
  38179. source: "./media/characters/daiki/anthro.svg",
  38180. extra: 1115/1027,
  38181. bottom: 69/1184
  38182. }
  38183. },
  38184. feral: {
  38185. height: math.unit(200, "feet"),
  38186. name: "Feral",
  38187. image: {
  38188. source: "./media/characters/daiki/feral.svg",
  38189. extra: 1256/313,
  38190. bottom: 39/1295
  38191. }
  38192. },
  38193. feralHead: {
  38194. height: math.unit(171, "feet"),
  38195. name: "Feral Head",
  38196. image: {
  38197. source: "./media/characters/daiki/feral-head.svg"
  38198. }
  38199. },
  38200. manaDragon: {
  38201. height: math.unit(170, "meters"),
  38202. name: "Mana-dragon",
  38203. image: {
  38204. source: "./media/characters/daiki/mana-dragon.svg",
  38205. extra: 763/420,
  38206. bottom: 97/860
  38207. }
  38208. },
  38209. },
  38210. [
  38211. {
  38212. name: "Normal",
  38213. height: math.unit(5 + 10/12, "feet"),
  38214. default: true
  38215. },
  38216. ]
  38217. ))
  38218. characterMakers.push(() => makeCharacter(
  38219. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38220. {
  38221. fullyEquippedFront: {
  38222. height: math.unit(3 + 1/12, "feet"),
  38223. weight: math.unit(24, "lb"),
  38224. name: "Fully Equipped (Front)",
  38225. image: {
  38226. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38227. extra: 687/605,
  38228. bottom: 18/705
  38229. }
  38230. },
  38231. fullyEquippedBack: {
  38232. height: math.unit(3 + 1/12, "feet"),
  38233. weight: math.unit(24, "lb"),
  38234. name: "Fully Equipped (Back)",
  38235. image: {
  38236. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38237. extra: 689/590,
  38238. bottom: 18/707
  38239. }
  38240. },
  38241. dailyWear: {
  38242. height: math.unit(3 + 1/12, "feet"),
  38243. weight: math.unit(24, "lb"),
  38244. name: "Daily Wear",
  38245. image: {
  38246. source: "./media/characters/tea-spot/daily-wear.svg",
  38247. extra: 701/620,
  38248. bottom: 21/722
  38249. }
  38250. },
  38251. maidWork: {
  38252. height: math.unit(3 + 1/12, "feet"),
  38253. weight: math.unit(24, "lb"),
  38254. name: "Maid Work",
  38255. image: {
  38256. source: "./media/characters/tea-spot/maid-work.svg",
  38257. extra: 693/609,
  38258. bottom: 15/708
  38259. }
  38260. },
  38261. },
  38262. [
  38263. {
  38264. name: "Normal",
  38265. height: math.unit(3 + 1/12, "feet"),
  38266. default: true
  38267. },
  38268. ]
  38269. ))
  38270. characterMakers.push(() => makeCharacter(
  38271. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38272. {
  38273. front: {
  38274. height: math.unit(175, "cm"),
  38275. weight: math.unit(75, "kg"),
  38276. name: "Front",
  38277. image: {
  38278. source: "./media/characters/chee/front.svg",
  38279. extra: 1796/1740,
  38280. bottom: 40/1836
  38281. }
  38282. },
  38283. },
  38284. [
  38285. {
  38286. name: "Micro-Micro",
  38287. height: math.unit(1, "nm")
  38288. },
  38289. {
  38290. name: "Micro-erst",
  38291. height: math.unit(1, "micrometer")
  38292. },
  38293. {
  38294. name: "Micro-er",
  38295. height: math.unit(1, "cm")
  38296. },
  38297. {
  38298. name: "Normal",
  38299. height: math.unit(175, "cm"),
  38300. default: true
  38301. },
  38302. {
  38303. name: "Macro",
  38304. height: math.unit(100, "m")
  38305. },
  38306. {
  38307. name: "Macro-er",
  38308. height: math.unit(1, "km")
  38309. },
  38310. {
  38311. name: "Macro-erst",
  38312. height: math.unit(10, "km")
  38313. },
  38314. {
  38315. name: "Macro-Macro",
  38316. height: math.unit(100, "km")
  38317. },
  38318. ]
  38319. ))
  38320. characterMakers.push(() => makeCharacter(
  38321. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38322. {
  38323. front: {
  38324. height: math.unit(11 + 9/12, "feet"),
  38325. weight: math.unit(935, "lb"),
  38326. name: "Front",
  38327. image: {
  38328. source: "./media/characters/kingsley/front.svg",
  38329. extra: 1803/1674,
  38330. bottom: 127/1930
  38331. }
  38332. },
  38333. frontNude: {
  38334. height: math.unit(11 + 9/12, "feet"),
  38335. weight: math.unit(935, "lb"),
  38336. name: "Front (Nude)",
  38337. image: {
  38338. source: "./media/characters/kingsley/front-nude.svg",
  38339. extra: 1803/1674,
  38340. bottom: 127/1930
  38341. }
  38342. },
  38343. },
  38344. [
  38345. {
  38346. name: "Normal",
  38347. height: math.unit(11 + 9/12, "feet"),
  38348. default: true
  38349. },
  38350. ]
  38351. ))
  38352. characterMakers.push(() => makeCharacter(
  38353. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38354. {
  38355. side: {
  38356. height: math.unit(9, "feet"),
  38357. name: "Side",
  38358. image: {
  38359. source: "./media/characters/rymel/side.svg",
  38360. extra: 792/469,
  38361. bottom: 121/913
  38362. }
  38363. },
  38364. maw: {
  38365. height: math.unit(2.4, "meters"),
  38366. name: "Maw",
  38367. image: {
  38368. source: "./media/characters/rymel/maw.svg"
  38369. }
  38370. },
  38371. },
  38372. [
  38373. {
  38374. name: "House Drake",
  38375. height: math.unit(2, "feet")
  38376. },
  38377. {
  38378. name: "Reduced",
  38379. height: math.unit(4.5, "feet")
  38380. },
  38381. {
  38382. name: "Normal",
  38383. height: math.unit(9, "feet"),
  38384. default: true
  38385. },
  38386. ]
  38387. ))
  38388. characterMakers.push(() => makeCharacter(
  38389. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38390. {
  38391. front: {
  38392. height: math.unit(1.74, "meters"),
  38393. weight: math.unit(55, "kg"),
  38394. name: "Front",
  38395. image: {
  38396. source: "./media/characters/rubus/front.svg",
  38397. extra: 1894/1742,
  38398. bottom: 44/1938
  38399. }
  38400. },
  38401. },
  38402. [
  38403. {
  38404. name: "Normal",
  38405. height: math.unit(1.74, "meters"),
  38406. default: true
  38407. },
  38408. ]
  38409. ))
  38410. characterMakers.push(() => makeCharacter(
  38411. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38412. {
  38413. front: {
  38414. height: math.unit(5 + 2/12, "feet"),
  38415. weight: math.unit(112, "lb"),
  38416. name: "Front",
  38417. image: {
  38418. source: "./media/characters/cassie-kingston/front.svg",
  38419. extra: 1438/1390,
  38420. bottom: 47/1485
  38421. }
  38422. },
  38423. },
  38424. [
  38425. {
  38426. name: "Normal",
  38427. height: math.unit(5 + 2/12, "feet"),
  38428. default: true
  38429. },
  38430. {
  38431. name: "Macro",
  38432. height: math.unit(128, "feet")
  38433. },
  38434. {
  38435. name: "Megamacro",
  38436. height: math.unit(2.56, "miles")
  38437. },
  38438. ]
  38439. ))
  38440. characterMakers.push(() => makeCharacter(
  38441. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38442. {
  38443. front: {
  38444. height: math.unit(7, "feet"),
  38445. name: "Front",
  38446. image: {
  38447. source: "./media/characters/fox/front.svg",
  38448. extra: 1798/1703,
  38449. bottom: 55/1853
  38450. }
  38451. },
  38452. back: {
  38453. height: math.unit(7, "feet"),
  38454. name: "Back",
  38455. image: {
  38456. source: "./media/characters/fox/back.svg",
  38457. extra: 1748/1649,
  38458. bottom: 32/1780
  38459. }
  38460. },
  38461. head: {
  38462. height: math.unit(1.95, "feet"),
  38463. name: "Head",
  38464. image: {
  38465. source: "./media/characters/fox/head.svg"
  38466. }
  38467. },
  38468. dick: {
  38469. height: math.unit(1.33, "feet"),
  38470. name: "Dick",
  38471. image: {
  38472. source: "./media/characters/fox/dick.svg"
  38473. }
  38474. },
  38475. foot: {
  38476. height: math.unit(1, "feet"),
  38477. name: "Foot",
  38478. image: {
  38479. source: "./media/characters/fox/foot.svg"
  38480. }
  38481. },
  38482. paw: {
  38483. height: math.unit(0.92, "feet"),
  38484. name: "Paw",
  38485. image: {
  38486. source: "./media/characters/fox/paw.svg"
  38487. }
  38488. },
  38489. },
  38490. [
  38491. {
  38492. name: "Small",
  38493. height: math.unit(3, "inches")
  38494. },
  38495. {
  38496. name: "\"Realistic\"",
  38497. height: math.unit(7, "feet")
  38498. },
  38499. {
  38500. name: "Normal",
  38501. height: math.unit(150, "feet"),
  38502. default: true
  38503. },
  38504. {
  38505. name: "BIG",
  38506. height: math.unit(1200, "feet")
  38507. },
  38508. {
  38509. name: "👀",
  38510. height: math.unit(5, "miles")
  38511. },
  38512. {
  38513. name: "👀👀👀",
  38514. height: math.unit(64, "miles")
  38515. },
  38516. ]
  38517. ))
  38518. characterMakers.push(() => makeCharacter(
  38519. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38520. {
  38521. front: {
  38522. height: math.unit(625, "feet"),
  38523. name: "Front",
  38524. image: {
  38525. source: "./media/characters/asonja-rossa/front.svg",
  38526. extra: 1833/1686,
  38527. bottom: 24/1857
  38528. }
  38529. },
  38530. back: {
  38531. height: math.unit(625, "feet"),
  38532. name: "Back",
  38533. image: {
  38534. source: "./media/characters/asonja-rossa/back.svg",
  38535. extra: 1852/1753,
  38536. bottom: 26/1878
  38537. }
  38538. },
  38539. },
  38540. [
  38541. {
  38542. name: "Macro",
  38543. height: math.unit(625, "feet"),
  38544. default: true
  38545. },
  38546. ]
  38547. ))
  38548. characterMakers.push(() => makeCharacter(
  38549. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38550. {
  38551. side: {
  38552. height: math.unit(8, "feet"),
  38553. name: "Side",
  38554. image: {
  38555. source: "./media/characters/rezukii/side.svg",
  38556. extra: 979/542,
  38557. bottom: 87/1066
  38558. }
  38559. },
  38560. sitting: {
  38561. height: math.unit(14.6, "feet"),
  38562. name: "Sitting",
  38563. image: {
  38564. source: "./media/characters/rezukii/sitting.svg",
  38565. extra: 1023/813,
  38566. bottom: 45/1068
  38567. }
  38568. },
  38569. },
  38570. [
  38571. {
  38572. name: "Tiny",
  38573. height: math.unit(2, "feet")
  38574. },
  38575. {
  38576. name: "Smol",
  38577. height: math.unit(4, "feet")
  38578. },
  38579. {
  38580. name: "Normal",
  38581. height: math.unit(8, "feet"),
  38582. default: true
  38583. },
  38584. {
  38585. name: "Big",
  38586. height: math.unit(12, "feet")
  38587. },
  38588. {
  38589. name: "Macro",
  38590. height: math.unit(30, "feet")
  38591. },
  38592. ]
  38593. ))
  38594. characterMakers.push(() => makeCharacter(
  38595. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38596. {
  38597. front: {
  38598. height: math.unit(14, "feet"),
  38599. weight: math.unit(9.5, "tonnes"),
  38600. name: "Front",
  38601. image: {
  38602. source: "./media/characters/dawnheart/front.svg",
  38603. extra: 2792/2675,
  38604. bottom: 64/2856
  38605. }
  38606. },
  38607. },
  38608. [
  38609. {
  38610. name: "Normal",
  38611. height: math.unit(14, "feet"),
  38612. default: true
  38613. },
  38614. ]
  38615. ))
  38616. characterMakers.push(() => makeCharacter(
  38617. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38618. {
  38619. front: {
  38620. height: math.unit(1.7, "m"),
  38621. name: "Front",
  38622. image: {
  38623. source: "./media/characters/gladi/front.svg",
  38624. extra: 1460/1362,
  38625. bottom: 19/1479
  38626. }
  38627. },
  38628. back: {
  38629. height: math.unit(1.7, "m"),
  38630. name: "Back",
  38631. image: {
  38632. source: "./media/characters/gladi/back.svg",
  38633. extra: 1459/1357,
  38634. bottom: 12/1471
  38635. }
  38636. },
  38637. feral: {
  38638. height: math.unit(2.05, "m"),
  38639. name: "Feral",
  38640. image: {
  38641. source: "./media/characters/gladi/feral.svg",
  38642. extra: 821/557,
  38643. bottom: 91/912
  38644. }
  38645. },
  38646. },
  38647. [
  38648. {
  38649. name: "Shortest",
  38650. height: math.unit(70, "cm")
  38651. },
  38652. {
  38653. name: "Normal",
  38654. height: math.unit(1.7, "m")
  38655. },
  38656. {
  38657. name: "Macro",
  38658. height: math.unit(10, "m"),
  38659. default: true
  38660. },
  38661. {
  38662. name: "Tallest",
  38663. height: math.unit(200, "m")
  38664. },
  38665. ]
  38666. ))
  38667. characterMakers.push(() => makeCharacter(
  38668. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  38669. {
  38670. front: {
  38671. height: math.unit(5 + 7/12, "feet"),
  38672. weight: math.unit(2, "tons"),
  38673. name: "Front",
  38674. image: {
  38675. source: "./media/characters/erdno/front.svg",
  38676. extra: 1234/1129,
  38677. bottom: 35/1269
  38678. }
  38679. },
  38680. angled: {
  38681. height: math.unit(5 + 7/12, "feet"),
  38682. weight: math.unit(2, "tons"),
  38683. name: "Angled",
  38684. image: {
  38685. source: "./media/characters/erdno/angled.svg",
  38686. extra: 1185/1139,
  38687. bottom: 36/1221
  38688. }
  38689. },
  38690. side: {
  38691. height: math.unit(5 + 7/12, "feet"),
  38692. weight: math.unit(2, "tons"),
  38693. name: "Side",
  38694. image: {
  38695. source: "./media/characters/erdno/side.svg",
  38696. extra: 1191/1144,
  38697. bottom: 40/1231
  38698. }
  38699. },
  38700. back: {
  38701. height: math.unit(5 + 7/12, "feet"),
  38702. weight: math.unit(2, "tons"),
  38703. name: "Back",
  38704. image: {
  38705. source: "./media/characters/erdno/back.svg",
  38706. extra: 1202/1146,
  38707. bottom: 17/1219
  38708. }
  38709. },
  38710. frontNsfw: {
  38711. height: math.unit(5 + 7/12, "feet"),
  38712. weight: math.unit(2, "tons"),
  38713. name: "Front (NSFW)",
  38714. image: {
  38715. source: "./media/characters/erdno/front-nsfw.svg",
  38716. extra: 1234/1129,
  38717. bottom: 35/1269
  38718. }
  38719. },
  38720. angledNsfw: {
  38721. height: math.unit(5 + 7/12, "feet"),
  38722. weight: math.unit(2, "tons"),
  38723. name: "Angled (NSFW)",
  38724. image: {
  38725. source: "./media/characters/erdno/angled-nsfw.svg",
  38726. extra: 1185/1139,
  38727. bottom: 36/1221
  38728. }
  38729. },
  38730. sideNsfw: {
  38731. height: math.unit(5 + 7/12, "feet"),
  38732. weight: math.unit(2, "tons"),
  38733. name: "Side (NSFW)",
  38734. image: {
  38735. source: "./media/characters/erdno/side-nsfw.svg",
  38736. extra: 1191/1144,
  38737. bottom: 40/1231
  38738. }
  38739. },
  38740. backNsfw: {
  38741. height: math.unit(5 + 7/12, "feet"),
  38742. weight: math.unit(2, "tons"),
  38743. name: "Back (NSFW)",
  38744. image: {
  38745. source: "./media/characters/erdno/back-nsfw.svg",
  38746. extra: 1202/1146,
  38747. bottom: 17/1219
  38748. }
  38749. },
  38750. frontHyper: {
  38751. height: math.unit(5 + 7/12, "feet"),
  38752. weight: math.unit(2, "tons"),
  38753. name: "Front (Hyper)",
  38754. image: {
  38755. source: "./media/characters/erdno/front-hyper.svg",
  38756. extra: 1298/1136,
  38757. bottom: 35/1333
  38758. }
  38759. },
  38760. },
  38761. [
  38762. {
  38763. name: "Normal",
  38764. height: math.unit(5 + 7/12, "feet"),
  38765. default: true
  38766. },
  38767. {
  38768. name: "Big",
  38769. height: math.unit(5.7, "meters")
  38770. },
  38771. {
  38772. name: "Macro",
  38773. height: math.unit(5.7, "kilometers")
  38774. },
  38775. {
  38776. name: "Megamacro",
  38777. height: math.unit(5.7, "earths")
  38778. },
  38779. ]
  38780. ))
  38781. characterMakers.push(() => makeCharacter(
  38782. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  38783. {
  38784. front: {
  38785. height: math.unit(5 + 10/12, "feet"),
  38786. weight: math.unit(150, "lb"),
  38787. name: "Front",
  38788. image: {
  38789. source: "./media/characters/jamie/front.svg",
  38790. extra: 1908/1768,
  38791. bottom: 19/1927
  38792. }
  38793. },
  38794. },
  38795. [
  38796. {
  38797. name: "Minimum",
  38798. height: math.unit(2, "cm")
  38799. },
  38800. {
  38801. name: "Micro",
  38802. height: math.unit(3, "inches")
  38803. },
  38804. {
  38805. name: "Normal",
  38806. height: math.unit(5 + 10/12, "feet"),
  38807. default: true
  38808. },
  38809. {
  38810. name: "Macro",
  38811. height: math.unit(150, "feet")
  38812. },
  38813. {
  38814. name: "Megamacro",
  38815. height: math.unit(10000, "m")
  38816. },
  38817. ]
  38818. ))
  38819. characterMakers.push(() => makeCharacter(
  38820. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  38821. {
  38822. front: {
  38823. height: math.unit(2, "meters"),
  38824. weight: math.unit(100, "kg"),
  38825. name: "Front",
  38826. image: {
  38827. source: "./media/characters/shiron/front.svg",
  38828. extra: 2103/1985,
  38829. bottom: 98/2201
  38830. }
  38831. },
  38832. back: {
  38833. height: math.unit(2, "meters"),
  38834. weight: math.unit(100, "kg"),
  38835. name: "Back",
  38836. image: {
  38837. source: "./media/characters/shiron/back.svg",
  38838. extra: 2110/2015,
  38839. bottom: 89/2199
  38840. }
  38841. },
  38842. hand: {
  38843. height: math.unit(0.96, "feet"),
  38844. name: "Hand",
  38845. image: {
  38846. source: "./media/characters/shiron/hand.svg"
  38847. }
  38848. },
  38849. foot: {
  38850. height: math.unit(1.464, "feet"),
  38851. name: "Foot",
  38852. image: {
  38853. source: "./media/characters/shiron/foot.svg"
  38854. }
  38855. },
  38856. },
  38857. [
  38858. {
  38859. name: "Normal",
  38860. height: math.unit(2, "meters")
  38861. },
  38862. {
  38863. name: "Macro",
  38864. height: math.unit(500, "meters"),
  38865. default: true
  38866. },
  38867. {
  38868. name: "Megamacro",
  38869. height: math.unit(20, "km")
  38870. },
  38871. ]
  38872. ))
  38873. characterMakers.push(() => makeCharacter(
  38874. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  38875. {
  38876. front: {
  38877. height: math.unit(6, "feet"),
  38878. name: "Front",
  38879. image: {
  38880. source: "./media/characters/sam/front.svg",
  38881. extra: 849/826,
  38882. bottom: 19/868
  38883. }
  38884. },
  38885. },
  38886. [
  38887. {
  38888. name: "Normal",
  38889. height: math.unit(6, "feet"),
  38890. default: true
  38891. },
  38892. ]
  38893. ))
  38894. characterMakers.push(() => makeCharacter(
  38895. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  38896. {
  38897. front: {
  38898. height: math.unit(8 + 4/12, "feet"),
  38899. weight: math.unit(122, "kg"),
  38900. name: "Front",
  38901. image: {
  38902. source: "./media/characters/namori-kurogawa/front.svg",
  38903. extra: 1894/1576,
  38904. bottom: 34/1928
  38905. }
  38906. },
  38907. },
  38908. [
  38909. {
  38910. name: "Normal",
  38911. height: math.unit(8 + 4/12, "feet"),
  38912. default: true
  38913. },
  38914. ]
  38915. ))
  38916. characterMakers.push(() => makeCharacter(
  38917. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  38918. {
  38919. front: {
  38920. height: math.unit(9, "feet"),
  38921. weight: math.unit(621, "lb"),
  38922. name: "Front",
  38923. image: {
  38924. source: "./media/characters/unmru/front.svg",
  38925. extra: 1853/1747,
  38926. bottom: 73/1926
  38927. }
  38928. },
  38929. side: {
  38930. height: math.unit(9, "feet"),
  38931. weight: math.unit(621, "lb"),
  38932. name: "Side",
  38933. image: {
  38934. source: "./media/characters/unmru/side.svg",
  38935. extra: 1781/1671,
  38936. bottom: 127/1908
  38937. }
  38938. },
  38939. back: {
  38940. height: math.unit(9, "feet"),
  38941. weight: math.unit(621, "lb"),
  38942. name: "Back",
  38943. image: {
  38944. source: "./media/characters/unmru/back.svg",
  38945. extra: 1894/1765,
  38946. bottom: 75/1969
  38947. }
  38948. },
  38949. dick: {
  38950. height: math.unit(3, "feet"),
  38951. weight: math.unit(35, "lb"),
  38952. name: "Dick",
  38953. image: {
  38954. source: "./media/characters/unmru/dick.svg"
  38955. }
  38956. },
  38957. },
  38958. [
  38959. {
  38960. name: "Normal",
  38961. height: math.unit(9, "feet")
  38962. },
  38963. {
  38964. name: "Natural",
  38965. height: math.unit(27, "feet"),
  38966. default: true
  38967. },
  38968. {
  38969. name: "Giant",
  38970. height: math.unit(90, "feet")
  38971. },
  38972. {
  38973. name: "Kaiju",
  38974. height: math.unit(270, "feet")
  38975. },
  38976. {
  38977. name: "Macro",
  38978. height: math.unit(900, "feet")
  38979. },
  38980. {
  38981. name: "Macro+",
  38982. height: math.unit(2700, "feet")
  38983. },
  38984. {
  38985. name: "Megamacro",
  38986. height: math.unit(9000, "feet")
  38987. },
  38988. {
  38989. name: "City-Crushing",
  38990. height: math.unit(27000, "feet")
  38991. },
  38992. {
  38993. name: "Mountain-Mashing",
  38994. height: math.unit(90000, "feet")
  38995. },
  38996. {
  38997. name: "Earth-Eclipsing",
  38998. height: math.unit(2.7e8, "feet")
  38999. },
  39000. {
  39001. name: "Sol-Swallowing",
  39002. height: math.unit(9e10, "feet")
  39003. },
  39004. {
  39005. name: "Majoris-Munching",
  39006. height: math.unit(2.7e13, "feet")
  39007. },
  39008. ]
  39009. ))
  39010. characterMakers.push(() => makeCharacter(
  39011. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39012. {
  39013. front: {
  39014. height: math.unit(1, "inch"),
  39015. name: "Front",
  39016. image: {
  39017. source: "./media/characters/squeaks-mouse/front.svg",
  39018. extra: 352/308,
  39019. bottom: 25/377
  39020. }
  39021. },
  39022. },
  39023. [
  39024. {
  39025. name: "Micro",
  39026. height: math.unit(1, "inch"),
  39027. default: true
  39028. },
  39029. ]
  39030. ))
  39031. characterMakers.push(() => makeCharacter(
  39032. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39033. {
  39034. side: {
  39035. height: math.unit(35, "feet"),
  39036. name: "Side",
  39037. image: {
  39038. source: "./media/characters/sayko/side.svg",
  39039. extra: 1697/1021,
  39040. bottom: 82/1779
  39041. }
  39042. },
  39043. head: {
  39044. height: math.unit(16, "feet"),
  39045. name: "Head",
  39046. image: {
  39047. source: "./media/characters/sayko/head.svg"
  39048. }
  39049. },
  39050. forepaw: {
  39051. height: math.unit(7.85, "feet"),
  39052. name: "Forepaw",
  39053. image: {
  39054. source: "./media/characters/sayko/forepaw.svg"
  39055. }
  39056. },
  39057. hindpaw: {
  39058. height: math.unit(8.8, "feet"),
  39059. name: "Hindpaw",
  39060. image: {
  39061. source: "./media/characters/sayko/hindpaw.svg"
  39062. }
  39063. },
  39064. },
  39065. [
  39066. {
  39067. name: "Normal",
  39068. height: math.unit(35, "feet"),
  39069. default: true
  39070. },
  39071. {
  39072. name: "Colossus",
  39073. height: math.unit(100, "meters")
  39074. },
  39075. {
  39076. name: "\"Small\" Deity",
  39077. height: math.unit(1, "km")
  39078. },
  39079. {
  39080. name: "\"Large\" Deity",
  39081. height: math.unit(15, "km")
  39082. },
  39083. ]
  39084. ))
  39085. characterMakers.push(() => makeCharacter(
  39086. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39087. {
  39088. front: {
  39089. height: math.unit(6, "feet"),
  39090. weight: math.unit(250, "lb"),
  39091. name: "Front",
  39092. image: {
  39093. source: "./media/characters/mukiro/front.svg",
  39094. extra: 1368/1310,
  39095. bottom: 34/1402
  39096. }
  39097. },
  39098. },
  39099. [
  39100. {
  39101. name: "Normal",
  39102. height: math.unit(6, "feet"),
  39103. default: true
  39104. },
  39105. ]
  39106. ))
  39107. characterMakers.push(() => makeCharacter(
  39108. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39109. {
  39110. front: {
  39111. height: math.unit(12 + 4/12, "feet"),
  39112. name: "Front",
  39113. image: {
  39114. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39115. extra: 1346/1311,
  39116. bottom: 65/1411
  39117. }
  39118. },
  39119. },
  39120. [
  39121. {
  39122. name: "Base",
  39123. height: math.unit(12 + 4/12, "feet"),
  39124. default: true
  39125. },
  39126. {
  39127. name: "Macro",
  39128. height: math.unit(150, "feet")
  39129. },
  39130. {
  39131. name: "Mega",
  39132. height: math.unit(2, "miles")
  39133. },
  39134. {
  39135. name: "Demi God",
  39136. height: math.unit(4, "AU")
  39137. },
  39138. {
  39139. name: "God Size",
  39140. height: math.unit(1, "universe")
  39141. },
  39142. ]
  39143. ))
  39144. characterMakers.push(() => makeCharacter(
  39145. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39146. {
  39147. front: {
  39148. height: math.unit(3 + 3/12, "feet"),
  39149. weight: math.unit(88, "lb"),
  39150. name: "Front",
  39151. image: {
  39152. source: "./media/characters/trey/front.svg",
  39153. extra: 1815/1509,
  39154. bottom: 60/1875
  39155. }
  39156. },
  39157. },
  39158. [
  39159. {
  39160. name: "Normal",
  39161. height: math.unit(3 + 3/12, "feet"),
  39162. default: true
  39163. },
  39164. ]
  39165. ))
  39166. characterMakers.push(() => makeCharacter(
  39167. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39168. {
  39169. front: {
  39170. height: math.unit(4, "meters"),
  39171. name: "Front",
  39172. image: {
  39173. source: "./media/characters/adelonda/front.svg",
  39174. extra: 1077/982,
  39175. bottom: 39/1116
  39176. }
  39177. },
  39178. back: {
  39179. height: math.unit(4, "meters"),
  39180. name: "Back",
  39181. image: {
  39182. source: "./media/characters/adelonda/back.svg",
  39183. extra: 1105/1003,
  39184. bottom: 25/1130
  39185. }
  39186. },
  39187. feral: {
  39188. height: math.unit(40/1.5, "meters"),
  39189. name: "Feral",
  39190. image: {
  39191. source: "./media/characters/adelonda/feral.svg",
  39192. extra: 597/271,
  39193. bottom: 387/984
  39194. }
  39195. },
  39196. },
  39197. [
  39198. {
  39199. name: "Normal",
  39200. height: math.unit(4, "meters"),
  39201. default: true
  39202. },
  39203. ]
  39204. ))
  39205. characterMakers.push(() => makeCharacter(
  39206. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39207. {
  39208. front: {
  39209. height: math.unit(8 + 4/12, "feet"),
  39210. weight: math.unit(670, "lb"),
  39211. name: "Front",
  39212. image: {
  39213. source: "./media/characters/acadiel/front.svg",
  39214. extra: 1901/1595,
  39215. bottom: 142/2043
  39216. }
  39217. },
  39218. },
  39219. [
  39220. {
  39221. name: "Normal",
  39222. height: math.unit(8 + 4/12, "feet"),
  39223. default: true
  39224. },
  39225. {
  39226. name: "Macro",
  39227. height: math.unit(200, "feet")
  39228. },
  39229. ]
  39230. ))
  39231. characterMakers.push(() => makeCharacter(
  39232. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39233. {
  39234. front: {
  39235. height: math.unit(6 + 2/12, "feet"),
  39236. weight: math.unit(185, "lb"),
  39237. name: "Front",
  39238. image: {
  39239. source: "./media/characters/kayne-ein/front.svg",
  39240. extra: 1780/1560,
  39241. bottom: 81/1861
  39242. }
  39243. },
  39244. },
  39245. [
  39246. {
  39247. name: "Normal",
  39248. height: math.unit(6 + 2/12, "feet"),
  39249. default: true
  39250. },
  39251. {
  39252. name: "Transformation Stage",
  39253. height: math.unit(15, "feet")
  39254. },
  39255. {
  39256. name: "Macro",
  39257. height: math.unit(150, "feet")
  39258. },
  39259. {
  39260. name: "Earth's Shadow",
  39261. height: math.unit(6200, "miles")
  39262. },
  39263. {
  39264. name: "Universal Demon",
  39265. height: math.unit(28e9, "parsecs")
  39266. },
  39267. {
  39268. name: "Multiverse God",
  39269. height: math.unit(3, "multiverses")
  39270. },
  39271. ]
  39272. ))
  39273. characterMakers.push(() => makeCharacter(
  39274. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39275. {
  39276. front: {
  39277. height: math.unit(5 + 5/12, "feet"),
  39278. name: "Front",
  39279. image: {
  39280. source: "./media/characters/fawn/front.svg",
  39281. extra: 1873/1731,
  39282. bottom: 95/1968
  39283. }
  39284. },
  39285. back: {
  39286. height: math.unit(5 + 5/12, "feet"),
  39287. name: "Back",
  39288. image: {
  39289. source: "./media/characters/fawn/back.svg",
  39290. extra: 1813/1700,
  39291. bottom: 14/1827
  39292. }
  39293. },
  39294. hoof: {
  39295. height: math.unit(1.45, "feet"),
  39296. name: "Hoof",
  39297. image: {
  39298. source: "./media/characters/fawn/hoof.svg"
  39299. }
  39300. },
  39301. },
  39302. [
  39303. {
  39304. name: "Normal",
  39305. height: math.unit(5 + 5/12, "feet"),
  39306. default: true
  39307. },
  39308. ]
  39309. ))
  39310. characterMakers.push(() => makeCharacter(
  39311. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39312. {
  39313. front: {
  39314. height: math.unit(2 + 5/12, "feet"),
  39315. name: "Front",
  39316. image: {
  39317. source: "./media/characters/orion/front.svg",
  39318. extra: 1366/1304,
  39319. bottom: 43/1409
  39320. }
  39321. },
  39322. paw: {
  39323. height: math.unit(0.52, "feet"),
  39324. name: "Paw",
  39325. image: {
  39326. source: "./media/characters/orion/paw.svg"
  39327. }
  39328. },
  39329. },
  39330. [
  39331. {
  39332. name: "Normal",
  39333. height: math.unit(2 + 5/12, "feet"),
  39334. default: true
  39335. },
  39336. ]
  39337. ))
  39338. characterMakers.push(() => makeCharacter(
  39339. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39340. {
  39341. front: {
  39342. height: math.unit(5 + 10/12, "feet"),
  39343. name: "Front",
  39344. image: {
  39345. source: "./media/characters/vera/front.svg",
  39346. extra: 1680/1575,
  39347. bottom: 49/1729
  39348. }
  39349. },
  39350. back: {
  39351. height: math.unit(5 + 10/12, "feet"),
  39352. name: "Back",
  39353. image: {
  39354. source: "./media/characters/vera/back.svg",
  39355. extra: 1700/1588,
  39356. bottom: 18/1718
  39357. }
  39358. },
  39359. arcanine: {
  39360. height: math.unit(6 + 8/12, "feet"),
  39361. name: "Arcanine",
  39362. image: {
  39363. source: "./media/characters/vera/arcanine.svg",
  39364. extra: 1590/1511,
  39365. bottom: 71/1661
  39366. }
  39367. },
  39368. maw: {
  39369. height: math.unit(0.82, "feet"),
  39370. name: "Maw",
  39371. image: {
  39372. source: "./media/characters/vera/maw.svg"
  39373. }
  39374. },
  39375. mawArcanine: {
  39376. height: math.unit(0.97, "feet"),
  39377. name: "Maw (Arcanine)",
  39378. image: {
  39379. source: "./media/characters/vera/maw-arcanine.svg"
  39380. }
  39381. },
  39382. paw: {
  39383. height: math.unit(0.75, "feet"),
  39384. name: "Paw",
  39385. image: {
  39386. source: "./media/characters/vera/paw.svg"
  39387. }
  39388. },
  39389. pawprint: {
  39390. height: math.unit(0.52, "feet"),
  39391. name: "Pawprint",
  39392. image: {
  39393. source: "./media/characters/vera/pawprint.svg"
  39394. }
  39395. },
  39396. },
  39397. [
  39398. {
  39399. name: "Normal",
  39400. height: math.unit(5 + 10/12, "feet"),
  39401. default: true
  39402. },
  39403. {
  39404. name: "Macro",
  39405. height: math.unit(75, "feet")
  39406. },
  39407. ]
  39408. ))
  39409. characterMakers.push(() => makeCharacter(
  39410. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39411. {
  39412. front: {
  39413. height: math.unit(4, "feet"),
  39414. weight: math.unit(40, "lb"),
  39415. name: "Front",
  39416. image: {
  39417. source: "./media/characters/orvan-rabbit/front.svg",
  39418. extra: 1896/1642,
  39419. bottom: 29/1925
  39420. }
  39421. },
  39422. },
  39423. [
  39424. {
  39425. name: "Normal",
  39426. height: math.unit(4, "feet"),
  39427. default: true
  39428. },
  39429. ]
  39430. ))
  39431. characterMakers.push(() => makeCharacter(
  39432. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39433. {
  39434. front: {
  39435. height: math.unit(6, "feet"),
  39436. weight: math.unit(168, "lb"),
  39437. name: "Front",
  39438. image: {
  39439. source: "./media/characters/lisa/front.svg",
  39440. extra: 2065/1867,
  39441. bottom: 46/2111
  39442. }
  39443. },
  39444. back: {
  39445. height: math.unit(6, "feet"),
  39446. weight: math.unit(168, "lb"),
  39447. name: "Back",
  39448. image: {
  39449. source: "./media/characters/lisa/back.svg",
  39450. extra: 1982/1838,
  39451. bottom: 29/2011
  39452. }
  39453. },
  39454. maw: {
  39455. height: math.unit(0.81, "feet"),
  39456. name: "Maw",
  39457. image: {
  39458. source: "./media/characters/lisa/maw.svg"
  39459. }
  39460. },
  39461. paw: {
  39462. height: math.unit(0.9, "feet"),
  39463. name: "Paw",
  39464. image: {
  39465. source: "./media/characters/lisa/paw.svg"
  39466. }
  39467. },
  39468. caribousune: {
  39469. height: math.unit(7 + 2/12, "feet"),
  39470. weight: math.unit(268, "lb"),
  39471. name: "Caribousune",
  39472. image: {
  39473. source: "./media/characters/lisa/caribousune.svg",
  39474. extra: 1843/1633,
  39475. bottom: 29/1872
  39476. }
  39477. },
  39478. frontCaribousune: {
  39479. height: math.unit(7 + 2/12, "feet"),
  39480. weight: math.unit(268, "lb"),
  39481. name: "Front (Caribousune)",
  39482. image: {
  39483. source: "./media/characters/lisa/front-caribousune.svg",
  39484. extra: 1818/1638,
  39485. bottom: 52/1870
  39486. }
  39487. },
  39488. sideCaribousune: {
  39489. height: math.unit(7 + 2/12, "feet"),
  39490. weight: math.unit(268, "lb"),
  39491. name: "Side (Caribousune)",
  39492. image: {
  39493. source: "./media/characters/lisa/side-caribousune.svg",
  39494. extra: 1851/1635,
  39495. bottom: 16/1867
  39496. }
  39497. },
  39498. backCaribousune: {
  39499. height: math.unit(7 + 2/12, "feet"),
  39500. weight: math.unit(268, "lb"),
  39501. name: "Back (Caribousune)",
  39502. image: {
  39503. source: "./media/characters/lisa/back-caribousune.svg",
  39504. extra: 1801/1604,
  39505. bottom: 44/1845
  39506. }
  39507. },
  39508. caribou: {
  39509. height: math.unit(7 + 2/12, "feet"),
  39510. weight: math.unit(268, "lb"),
  39511. name: "Caribou",
  39512. image: {
  39513. source: "./media/characters/lisa/caribou.svg",
  39514. extra: 1843/1633,
  39515. bottom: 29/1872
  39516. }
  39517. },
  39518. frontCaribou: {
  39519. height: math.unit(7 + 2/12, "feet"),
  39520. weight: math.unit(268, "lb"),
  39521. name: "Front (Caribou)",
  39522. image: {
  39523. source: "./media/characters/lisa/front-caribou.svg",
  39524. extra: 1818/1638,
  39525. bottom: 52/1870
  39526. }
  39527. },
  39528. sideCaribou: {
  39529. height: math.unit(7 + 2/12, "feet"),
  39530. weight: math.unit(268, "lb"),
  39531. name: "Side (Caribou)",
  39532. image: {
  39533. source: "./media/characters/lisa/side-caribou.svg",
  39534. extra: 1851/1635,
  39535. bottom: 16/1867
  39536. }
  39537. },
  39538. backCaribou: {
  39539. height: math.unit(7 + 2/12, "feet"),
  39540. weight: math.unit(268, "lb"),
  39541. name: "Back (Caribou)",
  39542. image: {
  39543. source: "./media/characters/lisa/back-caribou.svg",
  39544. extra: 1801/1604,
  39545. bottom: 44/1845
  39546. }
  39547. },
  39548. mawCaribou: {
  39549. height: math.unit(1.45, "feet"),
  39550. name: "Maw (Caribou)",
  39551. image: {
  39552. source: "./media/characters/lisa/maw-caribou.svg"
  39553. }
  39554. },
  39555. mawCaribousune: {
  39556. height: math.unit(1.45, "feet"),
  39557. name: "Maw (Caribousune)",
  39558. image: {
  39559. source: "./media/characters/lisa/maw-caribousune.svg"
  39560. }
  39561. },
  39562. pawCaribousune: {
  39563. height: math.unit(1.61, "feet"),
  39564. name: "Paw (Caribou)",
  39565. image: {
  39566. source: "./media/characters/lisa/paw-caribousune.svg"
  39567. }
  39568. },
  39569. },
  39570. [
  39571. {
  39572. name: "Normal",
  39573. height: math.unit(6, "feet")
  39574. },
  39575. {
  39576. name: "God Size",
  39577. height: math.unit(72, "feet"),
  39578. default: true
  39579. },
  39580. {
  39581. name: "Towering",
  39582. height: math.unit(288, "feet")
  39583. },
  39584. {
  39585. name: "City Size",
  39586. height: math.unit(48384, "feet")
  39587. },
  39588. {
  39589. name: "Continental",
  39590. height: math.unit(4200, "miles")
  39591. },
  39592. {
  39593. name: "Planet Eater",
  39594. height: math.unit(42, "earths")
  39595. },
  39596. {
  39597. name: "Star Swallower",
  39598. height: math.unit(42, "solarradii")
  39599. },
  39600. {
  39601. name: "System Swallower",
  39602. height: math.unit(84000, "AU")
  39603. },
  39604. {
  39605. name: "Galaxy Gobbler",
  39606. height: math.unit(42, "galaxies")
  39607. },
  39608. {
  39609. name: "Universe Devourer",
  39610. height: math.unit(42, "universes")
  39611. },
  39612. {
  39613. name: "Multiverse Muncher",
  39614. height: math.unit(42, "multiverses")
  39615. },
  39616. ]
  39617. ))
  39618. characterMakers.push(() => makeCharacter(
  39619. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  39620. {
  39621. front: {
  39622. height: math.unit(36, "feet"),
  39623. name: "Front",
  39624. image: {
  39625. source: "./media/characters/shadow-rat/front.svg",
  39626. extra: 1845/1758,
  39627. bottom: 83/1928
  39628. }
  39629. },
  39630. },
  39631. [
  39632. {
  39633. name: "Macro",
  39634. height: math.unit(36, "feet"),
  39635. default: true
  39636. },
  39637. ]
  39638. ))
  39639. characterMakers.push(() => makeCharacter(
  39640. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  39641. {
  39642. side: {
  39643. height: math.unit(8, "feet"),
  39644. weight: math.unit(2630, "lb"),
  39645. name: "Side",
  39646. image: {
  39647. source: "./media/characters/torallia/side.svg",
  39648. extra: 2164/2021,
  39649. bottom: 371/2535
  39650. }
  39651. },
  39652. },
  39653. [
  39654. {
  39655. name: "Mortal Interaction",
  39656. height: math.unit(8, "feet")
  39657. },
  39658. {
  39659. name: "Natural",
  39660. height: math.unit(24, "feet"),
  39661. default: true
  39662. },
  39663. {
  39664. name: "Giant",
  39665. height: math.unit(80, "feet")
  39666. },
  39667. {
  39668. name: "Kaiju",
  39669. height: math.unit(240, "feet")
  39670. },
  39671. {
  39672. name: "Macro",
  39673. height: math.unit(800, "feet")
  39674. },
  39675. {
  39676. name: "Macro+",
  39677. height: math.unit(2400, "feet")
  39678. },
  39679. {
  39680. name: "Macro++",
  39681. height: math.unit(8000, "feet")
  39682. },
  39683. {
  39684. name: "City-Crushing",
  39685. height: math.unit(24000, "feet")
  39686. },
  39687. {
  39688. name: "Mountain-Mashing",
  39689. height: math.unit(80000, "feet")
  39690. },
  39691. {
  39692. name: "District Demolisher",
  39693. height: math.unit(240000, "feet")
  39694. },
  39695. {
  39696. name: "Tri-County Terror",
  39697. height: math.unit(800000, "feet")
  39698. },
  39699. {
  39700. name: "State Smasher",
  39701. height: math.unit(2.4e6, "feet")
  39702. },
  39703. {
  39704. name: "Nation Nemesis",
  39705. height: math.unit(8e6, "feet")
  39706. },
  39707. {
  39708. name: "Continent Cracker",
  39709. height: math.unit(2.4e7, "feet")
  39710. },
  39711. {
  39712. name: "Planet-Pillaging",
  39713. height: math.unit(8e7, "feet")
  39714. },
  39715. {
  39716. name: "Earth-Eclipsing",
  39717. height: math.unit(2.4e8, "feet")
  39718. },
  39719. {
  39720. name: "Jovian-Jostling",
  39721. height: math.unit(8e8, "feet")
  39722. },
  39723. {
  39724. name: "Gas Giant Gulper",
  39725. height: math.unit(2.4e9, "feet")
  39726. },
  39727. {
  39728. name: "Astral Annihilator",
  39729. height: math.unit(8e9, "feet")
  39730. },
  39731. {
  39732. name: "Celestial Conqueror",
  39733. height: math.unit(2.4e10, "feet")
  39734. },
  39735. {
  39736. name: "Sol-Swallowing",
  39737. height: math.unit(8e10, "feet")
  39738. },
  39739. {
  39740. name: "Hunter of the Heavens",
  39741. height: math.unit(2.4e13, "feet")
  39742. },
  39743. ]
  39744. ))
  39745. characterMakers.push(() => makeCharacter(
  39746. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  39747. {
  39748. front: {
  39749. height: math.unit(6 + 8/12, "feet"),
  39750. weight: math.unit(250, "kilograms"),
  39751. volume: math.unit(28, "liters"),
  39752. name: "Front",
  39753. image: {
  39754. source: "./media/characters/rebecca-pawlson/front.svg",
  39755. extra: 1737/1596,
  39756. bottom: 107/1844
  39757. }
  39758. },
  39759. back: {
  39760. height: math.unit(6 + 8/12, "feet"),
  39761. weight: math.unit(250, "kilograms"),
  39762. volume: math.unit(28, "liters"),
  39763. name: "Back",
  39764. image: {
  39765. source: "./media/characters/rebecca-pawlson/back.svg",
  39766. extra: 1702/1523,
  39767. bottom: 86/1788
  39768. }
  39769. },
  39770. },
  39771. [
  39772. {
  39773. name: "Normal",
  39774. height: math.unit(6 + 8/12, "feet")
  39775. },
  39776. {
  39777. name: "Mini Macro",
  39778. height: math.unit(10, "feet"),
  39779. default: true
  39780. },
  39781. {
  39782. name: "Macro",
  39783. height: math.unit(100, "feet")
  39784. },
  39785. {
  39786. name: "Mega Macro",
  39787. height: math.unit(2500, "feet")
  39788. },
  39789. {
  39790. name: "Giga Macro",
  39791. height: math.unit(50, "miles")
  39792. },
  39793. ]
  39794. ))
  39795. characterMakers.push(() => makeCharacter(
  39796. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  39797. {
  39798. front: {
  39799. height: math.unit(7 + 6/12, "feet"),
  39800. weight: math.unit(600, "lb"),
  39801. name: "Front",
  39802. image: {
  39803. source: "./media/characters/moxie-nova/front.svg",
  39804. extra: 1734/1652,
  39805. bottom: 41/1775
  39806. }
  39807. },
  39808. },
  39809. [
  39810. {
  39811. name: "Normal",
  39812. height: math.unit(7 + 6/12, "feet"),
  39813. default: true
  39814. },
  39815. ]
  39816. ))
  39817. characterMakers.push(() => makeCharacter(
  39818. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  39819. {
  39820. goat: {
  39821. height: math.unit(4, "feet"),
  39822. weight: math.unit(180, "lb"),
  39823. name: "Goat",
  39824. image: {
  39825. source: "./media/characters/tiffany/goat.svg",
  39826. extra: 1845/1595,
  39827. bottom: 106/1951
  39828. }
  39829. },
  39830. front: {
  39831. height: math.unit(5, "feet"),
  39832. weight: math.unit(150, "lb"),
  39833. name: "Foxcoon",
  39834. image: {
  39835. source: "./media/characters/tiffany/foxcoon.svg",
  39836. extra: 1941/1845,
  39837. bottom: 58/1999
  39838. }
  39839. },
  39840. },
  39841. [
  39842. {
  39843. name: "Normal",
  39844. height: math.unit(5, "feet"),
  39845. default: true
  39846. },
  39847. ]
  39848. ))
  39849. characterMakers.push(() => makeCharacter(
  39850. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  39851. {
  39852. front: {
  39853. height: math.unit(8, "feet"),
  39854. weight: math.unit(300, "lb"),
  39855. name: "Front",
  39856. image: {
  39857. source: "./media/characters/raxinath/front.svg",
  39858. extra: 1407/1309,
  39859. bottom: 39/1446
  39860. }
  39861. },
  39862. back: {
  39863. height: math.unit(8, "feet"),
  39864. weight: math.unit(300, "lb"),
  39865. name: "Back",
  39866. image: {
  39867. source: "./media/characters/raxinath/back.svg",
  39868. extra: 1405/1315,
  39869. bottom: 9/1414
  39870. }
  39871. },
  39872. },
  39873. [
  39874. {
  39875. name: "Speck",
  39876. height: math.unit(0.5, "nm")
  39877. },
  39878. {
  39879. name: "Micro",
  39880. height: math.unit(3, "inches")
  39881. },
  39882. {
  39883. name: "Kobold",
  39884. height: math.unit(3, "feet")
  39885. },
  39886. {
  39887. name: "Normal",
  39888. height: math.unit(8, "feet"),
  39889. default: true
  39890. },
  39891. {
  39892. name: "Giant",
  39893. height: math.unit(50, "feet")
  39894. },
  39895. {
  39896. name: "Macro",
  39897. height: math.unit(1000, "feet")
  39898. },
  39899. {
  39900. name: "Megamacro",
  39901. height: math.unit(1, "mile")
  39902. },
  39903. ]
  39904. ))
  39905. characterMakers.push(() => makeCharacter(
  39906. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  39907. {
  39908. front: {
  39909. height: math.unit(10, "feet"),
  39910. weight: math.unit(1442, "lb"),
  39911. name: "Front",
  39912. image: {
  39913. source: "./media/characters/mal-dragon/front.svg",
  39914. extra: 1515/1444,
  39915. bottom: 113/1628
  39916. }
  39917. },
  39918. back: {
  39919. height: math.unit(10, "feet"),
  39920. weight: math.unit(1442, "lb"),
  39921. name: "Back",
  39922. image: {
  39923. source: "./media/characters/mal-dragon/back.svg",
  39924. extra: 1527/1434,
  39925. bottom: 25/1552
  39926. }
  39927. },
  39928. },
  39929. [
  39930. {
  39931. name: "Mortal Interaction",
  39932. height: math.unit(10, "feet"),
  39933. default: true
  39934. },
  39935. {
  39936. name: "Large",
  39937. height: math.unit(30, "feet")
  39938. },
  39939. {
  39940. name: "Kaiju",
  39941. height: math.unit(300, "feet")
  39942. },
  39943. {
  39944. name: "Megamacro",
  39945. height: math.unit(10000, "feet")
  39946. },
  39947. {
  39948. name: "Continent Cracker",
  39949. height: math.unit(30000000, "feet")
  39950. },
  39951. {
  39952. name: "Sol-Swallowing",
  39953. height: math.unit(1e11, "feet")
  39954. },
  39955. {
  39956. name: "Light Universal",
  39957. height: math.unit(5, "universes")
  39958. },
  39959. {
  39960. name: "Universe Atoms",
  39961. height: math.unit(1.829e9, "universes")
  39962. },
  39963. {
  39964. name: "Light Multiversal",
  39965. height: math.unit(5, "multiverses")
  39966. },
  39967. {
  39968. name: "Multiverse Atoms",
  39969. height: math.unit(1.829e9, "multiverses")
  39970. },
  39971. {
  39972. name: "Fabric of Time",
  39973. height: math.unit(1e262, "multiverses")
  39974. },
  39975. ]
  39976. ))
  39977. characterMakers.push(() => makeCharacter(
  39978. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  39979. {
  39980. front: {
  39981. height: math.unit(9, "feet"),
  39982. weight: math.unit(1050, "lb"),
  39983. name: "Front",
  39984. image: {
  39985. source: "./media/characters/tabitha/front.svg",
  39986. extra: 2083/1994,
  39987. bottom: 68/2151
  39988. }
  39989. },
  39990. },
  39991. [
  39992. {
  39993. name: "Baseline",
  39994. height: math.unit(9, "feet"),
  39995. default: true
  39996. },
  39997. {
  39998. name: "Giant",
  39999. height: math.unit(90, "feet")
  40000. },
  40001. {
  40002. name: "Macro",
  40003. height: math.unit(900, "feet")
  40004. },
  40005. {
  40006. name: "Megamacro",
  40007. height: math.unit(9000, "feet")
  40008. },
  40009. {
  40010. name: "City-Crushing",
  40011. height: math.unit(27000, "feet")
  40012. },
  40013. {
  40014. name: "Mountain-Mashing",
  40015. height: math.unit(90000, "feet")
  40016. },
  40017. {
  40018. name: "Nation Nemesis",
  40019. height: math.unit(9e6, "feet")
  40020. },
  40021. {
  40022. name: "Continent Cracker",
  40023. height: math.unit(27e6, "feet")
  40024. },
  40025. {
  40026. name: "Earth-Eclipsing",
  40027. height: math.unit(2.7e8, "feet")
  40028. },
  40029. {
  40030. name: "Gas Giant Gulper",
  40031. height: math.unit(2.7e9, "feet")
  40032. },
  40033. {
  40034. name: "Sol-Swallowing",
  40035. height: math.unit(9e10, "feet")
  40036. },
  40037. {
  40038. name: "Galaxy Gulper",
  40039. height: math.unit(9, "galaxies")
  40040. },
  40041. {
  40042. name: "Cosmos Churner",
  40043. height: math.unit(9, "universes")
  40044. },
  40045. ]
  40046. ))
  40047. characterMakers.push(() => makeCharacter(
  40048. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40049. {
  40050. front: {
  40051. height: math.unit(160, "cm"),
  40052. weight: math.unit(55, "kg"),
  40053. name: "Front",
  40054. image: {
  40055. source: "./media/characters/tow/front.svg",
  40056. extra: 1751/1722,
  40057. bottom: 74/1825
  40058. }
  40059. },
  40060. },
  40061. [
  40062. {
  40063. name: "Norm",
  40064. height: math.unit(160, "cm")
  40065. },
  40066. {
  40067. name: "Casual",
  40068. height: math.unit(3200, "m"),
  40069. default: true
  40070. },
  40071. {
  40072. name: "Show-Off",
  40073. height: math.unit(160, "km")
  40074. },
  40075. ]
  40076. ))
  40077. characterMakers.push(() => makeCharacter(
  40078. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40079. {
  40080. front: {
  40081. height: math.unit(7 + 11/12, "feet"),
  40082. weight: math.unit(342.8, "lb"),
  40083. name: "Front",
  40084. image: {
  40085. source: "./media/characters/vivian-orca-dragon/front.svg",
  40086. extra: 1890/1865,
  40087. bottom: 28/1918
  40088. }
  40089. },
  40090. },
  40091. [
  40092. {
  40093. name: "Micro",
  40094. height: math.unit(5, "inches")
  40095. },
  40096. {
  40097. name: "Normal",
  40098. height: math.unit(7 + 11/12, "feet"),
  40099. default: true
  40100. },
  40101. {
  40102. name: "Macro",
  40103. height: math.unit(395 + 7/12, "feet")
  40104. },
  40105. ]
  40106. ))
  40107. characterMakers.push(() => makeCharacter(
  40108. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40109. {
  40110. side: {
  40111. height: math.unit(10, "feet"),
  40112. weight: math.unit(1442, "lb"),
  40113. name: "Side",
  40114. image: {
  40115. source: "./media/characters/lotherakon/side.svg",
  40116. extra: 1604/1497,
  40117. bottom: 89/1693
  40118. }
  40119. },
  40120. },
  40121. [
  40122. {
  40123. name: "Mortal Interaction",
  40124. height: math.unit(10, "feet")
  40125. },
  40126. {
  40127. name: "Large",
  40128. height: math.unit(30, "feet"),
  40129. default: true
  40130. },
  40131. {
  40132. name: "Giant",
  40133. height: math.unit(100, "feet")
  40134. },
  40135. {
  40136. name: "Kaiju",
  40137. height: math.unit(300, "feet")
  40138. },
  40139. {
  40140. name: "Macro",
  40141. height: math.unit(1000, "feet")
  40142. },
  40143. {
  40144. name: "Macro+",
  40145. height: math.unit(3000, "feet")
  40146. },
  40147. {
  40148. name: "Megamacro",
  40149. height: math.unit(10000, "feet")
  40150. },
  40151. {
  40152. name: "City-Crushing",
  40153. height: math.unit(30000, "feet")
  40154. },
  40155. {
  40156. name: "Continent Cracker",
  40157. height: math.unit(30e6, "feet")
  40158. },
  40159. {
  40160. name: "Earth Eclipsing",
  40161. height: math.unit(3e8, "feet")
  40162. },
  40163. {
  40164. name: "Gas Giant Gulper",
  40165. height: math.unit(3e9, "feet")
  40166. },
  40167. {
  40168. name: "Sol-Swallowing",
  40169. height: math.unit(1e11, "feet")
  40170. },
  40171. {
  40172. name: "System Swallower",
  40173. height: math.unit(3e14, "feet")
  40174. },
  40175. {
  40176. name: "Galaxy Gulper",
  40177. height: math.unit(10, "galaxies")
  40178. },
  40179. {
  40180. name: "Light Universal",
  40181. height: math.unit(5, "universes")
  40182. },
  40183. {
  40184. name: "Universe Palm",
  40185. height: math.unit(20, "universes")
  40186. },
  40187. {
  40188. name: "Light Multiversal",
  40189. height: math.unit(5, "multiverses")
  40190. },
  40191. {
  40192. name: "Multiverse Palm",
  40193. height: math.unit(20, "multiverses")
  40194. },
  40195. {
  40196. name: "Inferno Incarnate",
  40197. height: math.unit(1e7, "multiverses")
  40198. },
  40199. ]
  40200. ))
  40201. characterMakers.push(() => makeCharacter(
  40202. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40203. {
  40204. front: {
  40205. height: math.unit(8, "feet"),
  40206. weight: math.unit(1200, "lb"),
  40207. name: "Front",
  40208. image: {
  40209. source: "./media/characters/malithee/front.svg",
  40210. extra: 1675/1640,
  40211. bottom: 162/1837
  40212. }
  40213. },
  40214. },
  40215. [
  40216. {
  40217. name: "Mortal Interaction",
  40218. height: math.unit(8, "feet"),
  40219. default: true
  40220. },
  40221. {
  40222. name: "Large",
  40223. height: math.unit(24, "feet")
  40224. },
  40225. {
  40226. name: "Kaiju",
  40227. height: math.unit(240, "feet")
  40228. },
  40229. {
  40230. name: "Megamacro",
  40231. height: math.unit(8000, "feet")
  40232. },
  40233. {
  40234. name: "Continent Cracker",
  40235. height: math.unit(24e6, "feet")
  40236. },
  40237. {
  40238. name: "Earth-Eclipsing",
  40239. height: math.unit(2.4e8, "feet")
  40240. },
  40241. {
  40242. name: "Sol-Swallowing",
  40243. height: math.unit(8e10, "feet")
  40244. },
  40245. {
  40246. name: "Galaxy Gulper",
  40247. height: math.unit(8, "galaxies")
  40248. },
  40249. {
  40250. name: "Light Universal",
  40251. height: math.unit(4, "universes")
  40252. },
  40253. {
  40254. name: "Universe Atoms",
  40255. height: math.unit(1.829e9, "universes")
  40256. },
  40257. {
  40258. name: "Light Multiversal",
  40259. height: math.unit(4, "multiverses")
  40260. },
  40261. {
  40262. name: "Multiverse Atoms",
  40263. height: math.unit(1.829e9, "multiverses")
  40264. },
  40265. {
  40266. name: "Nigh-Omnipresence",
  40267. height: math.unit(8e261, "multiverses")
  40268. },
  40269. ]
  40270. ))
  40271. characterMakers.push(() => makeCharacter(
  40272. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40273. {
  40274. front: {
  40275. height: math.unit(10, "feet"),
  40276. weight: math.unit(1500, "lb"),
  40277. name: "Front",
  40278. image: {
  40279. source: "./media/characters/miles-thestia/front.svg",
  40280. extra: 1812/1727,
  40281. bottom: 86/1898
  40282. }
  40283. },
  40284. back: {
  40285. height: math.unit(10, "feet"),
  40286. weight: math.unit(1500, "lb"),
  40287. name: "Back",
  40288. image: {
  40289. source: "./media/characters/miles-thestia/back.svg",
  40290. extra: 1799/1690,
  40291. bottom: 47/1846
  40292. }
  40293. },
  40294. frontNsfw: {
  40295. height: math.unit(10, "feet"),
  40296. weight: math.unit(1500, "lb"),
  40297. name: "Front (NSFW)",
  40298. image: {
  40299. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40300. extra: 1812/1727,
  40301. bottom: 86/1898
  40302. }
  40303. },
  40304. },
  40305. [
  40306. {
  40307. name: "Mini-Macro",
  40308. height: math.unit(10, "feet"),
  40309. default: true
  40310. },
  40311. ]
  40312. ))
  40313. characterMakers.push(() => makeCharacter(
  40314. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40315. {
  40316. front: {
  40317. height: math.unit(25, "feet"),
  40318. name: "Front",
  40319. image: {
  40320. source: "./media/characters/titan-s-wulf/front.svg",
  40321. extra: 1560/1484,
  40322. bottom: 76/1636
  40323. }
  40324. },
  40325. },
  40326. [
  40327. {
  40328. name: "Smallest",
  40329. height: math.unit(25, "feet"),
  40330. default: true
  40331. },
  40332. {
  40333. name: "Normal",
  40334. height: math.unit(200, "feet")
  40335. },
  40336. {
  40337. name: "Macro",
  40338. height: math.unit(200000, "feet")
  40339. },
  40340. {
  40341. name: "Multiversal Original",
  40342. height: math.unit(10000, "multiverses")
  40343. },
  40344. ]
  40345. ))
  40346. characterMakers.push(() => makeCharacter(
  40347. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40348. {
  40349. front: {
  40350. height: math.unit(8, "feet"),
  40351. weight: math.unit(553, "lb"),
  40352. name: "Front",
  40353. image: {
  40354. source: "./media/characters/tawendeh/front.svg",
  40355. extra: 2365/2268,
  40356. bottom: 83/2448
  40357. }
  40358. },
  40359. frontClothed: {
  40360. height: math.unit(8, "feet"),
  40361. weight: math.unit(553, "lb"),
  40362. name: "Front (Clothed)",
  40363. image: {
  40364. source: "./media/characters/tawendeh/front-clothed.svg",
  40365. extra: 2365/2268,
  40366. bottom: 83/2448
  40367. }
  40368. },
  40369. back: {
  40370. height: math.unit(8, "feet"),
  40371. weight: math.unit(553, "lb"),
  40372. name: "Back",
  40373. image: {
  40374. source: "./media/characters/tawendeh/back.svg",
  40375. extra: 2397/2294,
  40376. bottom: 42/2439
  40377. }
  40378. },
  40379. },
  40380. [
  40381. {
  40382. name: "Mortal Interaction",
  40383. height: math.unit(8, "feet"),
  40384. default: true
  40385. },
  40386. {
  40387. name: "Giant",
  40388. height: math.unit(80, "feet")
  40389. },
  40390. {
  40391. name: "Macro",
  40392. height: math.unit(800, "feet")
  40393. },
  40394. {
  40395. name: "Megamacro",
  40396. height: math.unit(8000, "feet")
  40397. },
  40398. {
  40399. name: "City-Crushing",
  40400. height: math.unit(24000, "feet")
  40401. },
  40402. {
  40403. name: "Mountain-Mashing",
  40404. height: math.unit(80000, "feet")
  40405. },
  40406. {
  40407. name: "Nation Nemesis",
  40408. height: math.unit(8e6, "feet")
  40409. },
  40410. {
  40411. name: "Continent Cracker",
  40412. height: math.unit(24e6, "feet")
  40413. },
  40414. {
  40415. name: "Earth-Eclipsing",
  40416. height: math.unit(2.4e8, "feet")
  40417. },
  40418. {
  40419. name: "Gas Giant Gulper",
  40420. height: math.unit(2.4e9, "feet")
  40421. },
  40422. {
  40423. name: "Sol-Swallowing",
  40424. height: math.unit(8e10, "feet")
  40425. },
  40426. {
  40427. name: "Galaxy Gulper",
  40428. height: math.unit(8, "galaxies")
  40429. },
  40430. {
  40431. name: "Cosmos Churner",
  40432. height: math.unit(8, "universes")
  40433. },
  40434. {
  40435. name: "Omnipotent Otter",
  40436. height: math.unit(80, "universes")
  40437. },
  40438. ]
  40439. ))
  40440. characterMakers.push(() => makeCharacter(
  40441. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40442. {
  40443. front: {
  40444. height: math.unit(2.6, "meters"),
  40445. weight: math.unit(900, "kg"),
  40446. name: "Front",
  40447. image: {
  40448. source: "./media/characters/neesha/front.svg",
  40449. extra: 1803/1653,
  40450. bottom: 128/1931
  40451. }
  40452. },
  40453. },
  40454. [
  40455. {
  40456. name: "Normal",
  40457. height: math.unit(2.6, "meters"),
  40458. default: true
  40459. },
  40460. {
  40461. name: "Macro",
  40462. height: math.unit(50, "meters")
  40463. },
  40464. ]
  40465. ))
  40466. characterMakers.push(() => makeCharacter(
  40467. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40468. {
  40469. front: {
  40470. height: math.unit(5, "feet"),
  40471. weight: math.unit(185, "lb"),
  40472. name: "Front",
  40473. image: {
  40474. source: "./media/characters/kyera/front.svg",
  40475. extra: 1875/1790,
  40476. bottom: 96/1971
  40477. }
  40478. },
  40479. },
  40480. [
  40481. {
  40482. name: "Normal",
  40483. height: math.unit(5, "feet"),
  40484. default: true
  40485. },
  40486. ]
  40487. ))
  40488. characterMakers.push(() => makeCharacter(
  40489. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40490. {
  40491. front: {
  40492. height: math.unit(7 + 6/12, "feet"),
  40493. weight: math.unit(540, "lb"),
  40494. name: "Front",
  40495. image: {
  40496. source: "./media/characters/yuko/front.svg",
  40497. extra: 1282/1222,
  40498. bottom: 101/1383
  40499. }
  40500. },
  40501. frontClothed: {
  40502. height: math.unit(7 + 6/12, "feet"),
  40503. weight: math.unit(540, "lb"),
  40504. name: "Front (Clothed)",
  40505. image: {
  40506. source: "./media/characters/yuko/front-clothed.svg",
  40507. extra: 1282/1222,
  40508. bottom: 101/1383
  40509. }
  40510. },
  40511. },
  40512. [
  40513. {
  40514. name: "Normal",
  40515. height: math.unit(7 + 6/12, "feet"),
  40516. default: true
  40517. },
  40518. {
  40519. name: "Macro",
  40520. height: math.unit(26 + 9/12, "feet")
  40521. },
  40522. {
  40523. name: "Megamacro",
  40524. height: math.unit(300, "feet")
  40525. },
  40526. {
  40527. name: "Gigamacro",
  40528. height: math.unit(5000, "feet")
  40529. },
  40530. {
  40531. name: "Planetary",
  40532. height: math.unit(10000, "miles")
  40533. },
  40534. ]
  40535. ))
  40536. characterMakers.push(() => makeCharacter(
  40537. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40538. {
  40539. front: {
  40540. height: math.unit(8 + 2/12, "feet"),
  40541. weight: math.unit(600, "lb"),
  40542. name: "Front",
  40543. image: {
  40544. source: "./media/characters/deam-nitrel/front.svg",
  40545. extra: 1308/1234,
  40546. bottom: 125/1433
  40547. }
  40548. },
  40549. },
  40550. [
  40551. {
  40552. name: "Normal",
  40553. height: math.unit(8 + 2/12, "feet"),
  40554. default: true
  40555. },
  40556. ]
  40557. ))
  40558. characterMakers.push(() => makeCharacter(
  40559. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40560. {
  40561. front: {
  40562. height: math.unit(6.1, "feet"),
  40563. weight: math.unit(180, "lb"),
  40564. name: "Front",
  40565. image: {
  40566. source: "./media/characters/skyress/front.svg",
  40567. extra: 1045/915,
  40568. bottom: 28/1073
  40569. }
  40570. },
  40571. maw: {
  40572. height: math.unit(1, "feet"),
  40573. name: "Maw",
  40574. image: {
  40575. source: "./media/characters/skyress/maw.svg"
  40576. }
  40577. },
  40578. },
  40579. [
  40580. {
  40581. name: "Normal",
  40582. height: math.unit(6.1, "feet"),
  40583. default: true
  40584. },
  40585. {
  40586. name: "Macro",
  40587. height: math.unit(200, "feet")
  40588. },
  40589. ]
  40590. ))
  40591. characterMakers.push(() => makeCharacter(
  40592. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40593. {
  40594. front: {
  40595. height: math.unit(4 + 2/12, "feet"),
  40596. weight: math.unit(40, "kg"),
  40597. name: "Front",
  40598. image: {
  40599. source: "./media/characters/amethyst-jones/front.svg",
  40600. extra: 1220/1150,
  40601. bottom: 101/1321
  40602. }
  40603. },
  40604. },
  40605. [
  40606. {
  40607. name: "Normal",
  40608. height: math.unit(4 + 2/12, "feet"),
  40609. default: true
  40610. },
  40611. ]
  40612. ))
  40613. characterMakers.push(() => makeCharacter(
  40614. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  40615. {
  40616. front: {
  40617. height: math.unit(1.7, "m"),
  40618. weight: math.unit(135, "lb"),
  40619. name: "Front",
  40620. image: {
  40621. source: "./media/characters/jade/front.svg",
  40622. extra: 1818/1767,
  40623. bottom: 32/1850
  40624. }
  40625. },
  40626. back: {
  40627. height: math.unit(1.7, "m"),
  40628. weight: math.unit(135, "lb"),
  40629. name: "Back",
  40630. image: {
  40631. source: "./media/characters/jade/back.svg",
  40632. extra: 1869/1809,
  40633. bottom: 35/1904
  40634. }
  40635. },
  40636. hand: {
  40637. height: math.unit(0.24, "m"),
  40638. name: "Hand",
  40639. image: {
  40640. source: "./media/characters/jade/hand.svg"
  40641. }
  40642. },
  40643. foot: {
  40644. height: math.unit(0.263, "m"),
  40645. name: "Foot",
  40646. image: {
  40647. source: "./media/characters/jade/foot.svg"
  40648. }
  40649. },
  40650. dick: {
  40651. height: math.unit(0.47, "m"),
  40652. name: "Dick",
  40653. image: {
  40654. source: "./media/characters/jade/dick.svg"
  40655. }
  40656. },
  40657. },
  40658. [
  40659. {
  40660. name: "Micro",
  40661. height: math.unit(22, "cm")
  40662. },
  40663. {
  40664. name: "Normal",
  40665. height: math.unit(1.7, "m"),
  40666. default: true
  40667. },
  40668. {
  40669. name: "Macro",
  40670. height: math.unit(152, "m")
  40671. },
  40672. ]
  40673. ))
  40674. characterMakers.push(() => makeCharacter(
  40675. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  40676. {
  40677. front: {
  40678. height: math.unit(100, "miles"),
  40679. weight: math.unit(20000, "tons"),
  40680. name: "Front",
  40681. image: {
  40682. source: "./media/characters/cookie/front.svg",
  40683. extra: 1125/1070,
  40684. bottom: 30/1155
  40685. }
  40686. },
  40687. },
  40688. [
  40689. {
  40690. name: "Big",
  40691. height: math.unit(50, "feet")
  40692. },
  40693. {
  40694. name: "Macro",
  40695. height: math.unit(100, "miles"),
  40696. default: true
  40697. },
  40698. {
  40699. name: "Megamacro",
  40700. height: math.unit(90000, "miles")
  40701. },
  40702. ]
  40703. ))
  40704. characterMakers.push(() => makeCharacter(
  40705. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  40706. {
  40707. front: {
  40708. height: math.unit(6, "feet"),
  40709. weight: math.unit(145, "lb"),
  40710. name: "Front",
  40711. image: {
  40712. source: "./media/characters/farzian/front.svg",
  40713. extra: 1902/1693,
  40714. bottom: 108/2010
  40715. }
  40716. },
  40717. },
  40718. [
  40719. {
  40720. name: "Macro",
  40721. height: math.unit(500, "feet"),
  40722. default: true
  40723. },
  40724. ]
  40725. ))
  40726. characterMakers.push(() => makeCharacter(
  40727. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  40728. {
  40729. front: {
  40730. height: math.unit(3 + 6/12, "feet"),
  40731. weight: math.unit(50, "lb"),
  40732. name: "Front",
  40733. image: {
  40734. source: "./media/characters/kimberly-tilson/front.svg",
  40735. extra: 1400/1322,
  40736. bottom: 36/1436
  40737. }
  40738. },
  40739. back: {
  40740. height: math.unit(3 + 6/12, "feet"),
  40741. weight: math.unit(50, "lb"),
  40742. name: "Back",
  40743. image: {
  40744. source: "./media/characters/kimberly-tilson/back.svg",
  40745. extra: 1370/1307,
  40746. bottom: 20/1390
  40747. }
  40748. },
  40749. },
  40750. [
  40751. {
  40752. name: "Normal",
  40753. height: math.unit(3 + 6/12, "feet"),
  40754. default: true
  40755. },
  40756. ]
  40757. ))
  40758. characterMakers.push(() => makeCharacter(
  40759. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  40760. {
  40761. front: {
  40762. height: math.unit(1148, "feet"),
  40763. weight: math.unit(34057, "lb"),
  40764. name: "Front",
  40765. image: {
  40766. source: "./media/characters/harthos/front.svg",
  40767. extra: 1391/1339,
  40768. bottom: 13/1404
  40769. }
  40770. },
  40771. },
  40772. [
  40773. {
  40774. name: "Macro",
  40775. height: math.unit(1148, "feet"),
  40776. default: true
  40777. },
  40778. ]
  40779. ))
  40780. characterMakers.push(() => makeCharacter(
  40781. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  40782. {
  40783. front: {
  40784. height: math.unit(15, "feet"),
  40785. name: "Front",
  40786. image: {
  40787. source: "./media/characters/hypatia/front.svg",
  40788. extra: 1653/1591,
  40789. bottom: 79/1732
  40790. }
  40791. },
  40792. },
  40793. [
  40794. {
  40795. name: "Normal",
  40796. height: math.unit(15, "feet")
  40797. },
  40798. {
  40799. name: "Small",
  40800. height: math.unit(300, "feet")
  40801. },
  40802. {
  40803. name: "Macro",
  40804. height: math.unit(2500, "feet"),
  40805. default: true
  40806. },
  40807. {
  40808. name: "Mega Macro",
  40809. height: math.unit(1500, "miles")
  40810. },
  40811. {
  40812. name: "Giga Macro",
  40813. height: math.unit(1.5e6, "miles")
  40814. },
  40815. ]
  40816. ))
  40817. characterMakers.push(() => makeCharacter(
  40818. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  40819. {
  40820. front: {
  40821. height: math.unit(6, "feet"),
  40822. weight: math.unit(200, "lb"),
  40823. name: "Front",
  40824. image: {
  40825. source: "./media/characters/wulver/front.svg",
  40826. extra: 1724/1632,
  40827. bottom: 130/1854
  40828. }
  40829. },
  40830. frontNsfw: {
  40831. height: math.unit(6, "feet"),
  40832. weight: math.unit(200, "lb"),
  40833. name: "Front (NSFW)",
  40834. image: {
  40835. source: "./media/characters/wulver/front-nsfw.svg",
  40836. extra: 1724/1632,
  40837. bottom: 130/1854
  40838. }
  40839. },
  40840. },
  40841. [
  40842. {
  40843. name: "Human-Sized",
  40844. height: math.unit(6, "feet")
  40845. },
  40846. {
  40847. name: "Normal",
  40848. height: math.unit(4, "meters"),
  40849. default: true
  40850. },
  40851. {
  40852. name: "Large",
  40853. height: math.unit(6, "m")
  40854. },
  40855. ]
  40856. ))
  40857. characterMakers.push(() => makeCharacter(
  40858. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  40859. {
  40860. front: {
  40861. height: math.unit(7, "feet"),
  40862. name: "Front",
  40863. image: {
  40864. source: "./media/characters/maru/front.svg",
  40865. extra: 1595/1570,
  40866. bottom: 0/1595
  40867. }
  40868. },
  40869. },
  40870. [
  40871. {
  40872. name: "Normal",
  40873. height: math.unit(7, "feet"),
  40874. default: true
  40875. },
  40876. {
  40877. name: "Macro",
  40878. height: math.unit(700, "feet")
  40879. },
  40880. {
  40881. name: "Mega Macro",
  40882. height: math.unit(25, "miles")
  40883. },
  40884. ]
  40885. ))
  40886. characterMakers.push(() => makeCharacter(
  40887. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  40888. {
  40889. front: {
  40890. height: math.unit(6, "feet"),
  40891. weight: math.unit(170, "lb"),
  40892. name: "Front",
  40893. image: {
  40894. source: "./media/characters/xenon/front.svg",
  40895. extra: 1376/1305,
  40896. bottom: 56/1432
  40897. }
  40898. },
  40899. back: {
  40900. height: math.unit(6, "feet"),
  40901. weight: math.unit(170, "lb"),
  40902. name: "Back",
  40903. image: {
  40904. source: "./media/characters/xenon/back.svg",
  40905. extra: 1328/1259,
  40906. bottom: 95/1423
  40907. }
  40908. },
  40909. maw: {
  40910. height: math.unit(0.52, "feet"),
  40911. name: "Maw",
  40912. image: {
  40913. source: "./media/characters/xenon/maw.svg"
  40914. }
  40915. },
  40916. hand: {
  40917. height: math.unit(0.82, "feet"),
  40918. name: "Hand",
  40919. image: {
  40920. source: "./media/characters/xenon/hand.svg"
  40921. }
  40922. },
  40923. foot: {
  40924. height: math.unit(1.13, "feet"),
  40925. name: "Foot",
  40926. image: {
  40927. source: "./media/characters/xenon/foot.svg"
  40928. }
  40929. },
  40930. },
  40931. [
  40932. {
  40933. name: "Micro",
  40934. height: math.unit(0.8, "inches")
  40935. },
  40936. {
  40937. name: "Normal",
  40938. height: math.unit(6, "feet")
  40939. },
  40940. {
  40941. name: "Macro",
  40942. height: math.unit(50, "feet"),
  40943. default: true
  40944. },
  40945. {
  40946. name: "Macro+",
  40947. height: math.unit(250, "feet")
  40948. },
  40949. {
  40950. name: "Megamacro",
  40951. height: math.unit(1500, "feet")
  40952. },
  40953. ]
  40954. ))
  40955. characterMakers.push(() => makeCharacter(
  40956. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  40957. {
  40958. front: {
  40959. height: math.unit(7 + 5/12, "feet"),
  40960. name: "Front",
  40961. image: {
  40962. source: "./media/characters/zane/front.svg",
  40963. extra: 1260/1203,
  40964. bottom: 94/1354
  40965. }
  40966. },
  40967. back: {
  40968. height: math.unit(5.05, "feet"),
  40969. name: "Back",
  40970. image: {
  40971. source: "./media/characters/zane/back.svg",
  40972. extra: 893/829,
  40973. bottom: 30/923
  40974. }
  40975. },
  40976. werewolf: {
  40977. height: math.unit(11, "feet"),
  40978. name: "Werewolf",
  40979. image: {
  40980. source: "./media/characters/zane/werewolf.svg",
  40981. extra: 1383/1323,
  40982. bottom: 89/1472
  40983. }
  40984. },
  40985. foot: {
  40986. height: math.unit(1.46, "feet"),
  40987. name: "Foot",
  40988. image: {
  40989. source: "./media/characters/zane/foot.svg"
  40990. }
  40991. },
  40992. footFront: {
  40993. height: math.unit(0.784, "feet"),
  40994. name: "Foot (Front)",
  40995. image: {
  40996. source: "./media/characters/zane/foot-front.svg"
  40997. }
  40998. },
  40999. dick: {
  41000. height: math.unit(1.95, "feet"),
  41001. name: "Dick",
  41002. image: {
  41003. source: "./media/characters/zane/dick.svg"
  41004. }
  41005. },
  41006. dickWerewolf: {
  41007. height: math.unit(3.77, "feet"),
  41008. name: "Dick (Werewolf)",
  41009. image: {
  41010. source: "./media/characters/zane/dick.svg"
  41011. }
  41012. },
  41013. },
  41014. [
  41015. {
  41016. name: "Normal",
  41017. height: math.unit(7 + 5/12, "feet"),
  41018. default: true
  41019. },
  41020. ]
  41021. ))
  41022. characterMakers.push(() => makeCharacter(
  41023. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41024. {
  41025. front: {
  41026. height: math.unit(6 + 2/12, "feet"),
  41027. weight: math.unit(284, "lb"),
  41028. name: "Front",
  41029. image: {
  41030. source: "./media/characters/benni-desparque/front.svg",
  41031. extra: 1353/1126,
  41032. bottom: 69/1422
  41033. }
  41034. },
  41035. },
  41036. [
  41037. {
  41038. name: "Civilian",
  41039. height: math.unit(6 + 2/12, "feet")
  41040. },
  41041. {
  41042. name: "Normal",
  41043. height: math.unit(98, "feet"),
  41044. default: true
  41045. },
  41046. {
  41047. name: "Kaiju Fighter",
  41048. height: math.unit(268, "feet")
  41049. },
  41050. ]
  41051. ))
  41052. characterMakers.push(() => makeCharacter(
  41053. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41054. {
  41055. front: {
  41056. height: math.unit(5, "feet"),
  41057. weight: math.unit(105, "lb"),
  41058. name: "Front",
  41059. image: {
  41060. source: "./media/characters/maxine/front.svg",
  41061. extra: 1386/1250,
  41062. bottom: 71/1457
  41063. }
  41064. },
  41065. },
  41066. [
  41067. {
  41068. name: "Normal",
  41069. height: math.unit(5, "feet"),
  41070. default: true
  41071. },
  41072. ]
  41073. ))
  41074. characterMakers.push(() => makeCharacter(
  41075. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41076. {
  41077. front: {
  41078. height: math.unit(11 + 7/12, "feet"),
  41079. weight: math.unit(9576, "lb"),
  41080. name: "Front",
  41081. image: {
  41082. source: "./media/characters/scaly/front.svg",
  41083. extra: 888/867,
  41084. bottom: 36/924
  41085. }
  41086. },
  41087. },
  41088. [
  41089. {
  41090. name: "Normal",
  41091. height: math.unit(11 + 7/12, "feet"),
  41092. default: true
  41093. },
  41094. ]
  41095. ))
  41096. characterMakers.push(() => makeCharacter(
  41097. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41098. {
  41099. front: {
  41100. height: math.unit(6 + 3/12, "feet"),
  41101. name: "Front",
  41102. image: {
  41103. source: "./media/characters/saelria/front.svg",
  41104. extra: 1243/1138,
  41105. bottom: 46/1289
  41106. }
  41107. },
  41108. },
  41109. [
  41110. {
  41111. name: "Micro",
  41112. height: math.unit(6, "inches"),
  41113. },
  41114. {
  41115. name: "Normal",
  41116. height: math.unit(6 + 3/12, "feet"),
  41117. default: true
  41118. },
  41119. {
  41120. name: "Macro",
  41121. height: math.unit(25, "feet")
  41122. },
  41123. ]
  41124. ))
  41125. characterMakers.push(() => makeCharacter(
  41126. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41127. {
  41128. front: {
  41129. height: math.unit(80, "meters"),
  41130. weight: math.unit(7000, "tonnes"),
  41131. name: "Front",
  41132. image: {
  41133. source: "./media/characters/tef/front.svg",
  41134. extra: 2036/1991,
  41135. bottom: 54/2090
  41136. }
  41137. },
  41138. back: {
  41139. height: math.unit(80, "meters"),
  41140. weight: math.unit(7000, "tonnes"),
  41141. name: "Back",
  41142. image: {
  41143. source: "./media/characters/tef/back.svg",
  41144. extra: 2036/1991,
  41145. bottom: 54/2090
  41146. }
  41147. },
  41148. },
  41149. [
  41150. {
  41151. name: "Macro",
  41152. height: math.unit(80, "meters"),
  41153. default: true
  41154. },
  41155. ]
  41156. ))
  41157. characterMakers.push(() => makeCharacter(
  41158. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41159. {
  41160. front: {
  41161. height: math.unit(13, "feet"),
  41162. weight: math.unit(6, "tons"),
  41163. name: "Front",
  41164. image: {
  41165. source: "./media/characters/rover/front.svg",
  41166. extra: 1233/1156,
  41167. bottom: 50/1283
  41168. }
  41169. },
  41170. back: {
  41171. height: math.unit(13, "feet"),
  41172. weight: math.unit(6, "tons"),
  41173. name: "Back",
  41174. image: {
  41175. source: "./media/characters/rover/back.svg",
  41176. extra: 1327/1258,
  41177. bottom: 39/1366
  41178. }
  41179. },
  41180. },
  41181. [
  41182. {
  41183. name: "Normal",
  41184. height: math.unit(13, "feet"),
  41185. default: true
  41186. },
  41187. {
  41188. name: "Macro",
  41189. height: math.unit(1300, "feet")
  41190. },
  41191. {
  41192. name: "Megamacro",
  41193. height: math.unit(1300, "miles")
  41194. },
  41195. {
  41196. name: "Gigamacro",
  41197. height: math.unit(1300000, "miles")
  41198. },
  41199. ]
  41200. ))
  41201. characterMakers.push(() => makeCharacter(
  41202. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41203. {
  41204. front: {
  41205. height: math.unit(6, "feet"),
  41206. weight: math.unit(150, "lb"),
  41207. name: "Front",
  41208. image: {
  41209. source: "./media/characters/ariz/front.svg",
  41210. extra: 1401/1346,
  41211. bottom: 5/1406
  41212. }
  41213. },
  41214. },
  41215. [
  41216. {
  41217. name: "Normal",
  41218. height: math.unit(10, "feet"),
  41219. default: true
  41220. },
  41221. ]
  41222. ))
  41223. characterMakers.push(() => makeCharacter(
  41224. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41225. {
  41226. front: {
  41227. height: math.unit(6, "feet"),
  41228. weight: math.unit(140, "lb"),
  41229. name: "Front",
  41230. image: {
  41231. source: "./media/characters/sigrun/front.svg",
  41232. extra: 1418/1359,
  41233. bottom: 27/1445
  41234. }
  41235. },
  41236. },
  41237. [
  41238. {
  41239. name: "Macro",
  41240. height: math.unit(35, "feet"),
  41241. default: true
  41242. },
  41243. ]
  41244. ))
  41245. characterMakers.push(() => makeCharacter(
  41246. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41247. {
  41248. front: {
  41249. height: math.unit(6, "feet"),
  41250. weight: math.unit(150, "lb"),
  41251. name: "Front",
  41252. image: {
  41253. source: "./media/characters/numin/front.svg",
  41254. extra: 1433/1388,
  41255. bottom: 12/1445
  41256. }
  41257. },
  41258. },
  41259. [
  41260. {
  41261. name: "Macro",
  41262. height: math.unit(21.5, "km"),
  41263. default: true
  41264. },
  41265. ]
  41266. ))
  41267. characterMakers.push(() => makeCharacter(
  41268. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41269. {
  41270. front: {
  41271. height: math.unit(6, "feet"),
  41272. weight: math.unit(463, "lb"),
  41273. name: "Front",
  41274. image: {
  41275. source: "./media/characters/melwa/front.svg",
  41276. extra: 1307/1248,
  41277. bottom: 93/1400
  41278. }
  41279. },
  41280. },
  41281. [
  41282. {
  41283. name: "Macro",
  41284. height: math.unit(50, "meters"),
  41285. default: true
  41286. },
  41287. ]
  41288. ))
  41289. characterMakers.push(() => makeCharacter(
  41290. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41291. {
  41292. front: {
  41293. height: math.unit(325, "feet"),
  41294. name: "Front",
  41295. image: {
  41296. source: "./media/characters/zorkaiju/front.svg",
  41297. extra: 1955/1814,
  41298. bottom: 40/1995
  41299. }
  41300. },
  41301. frontExtended: {
  41302. height: math.unit(325, "feet"),
  41303. name: "Front (Extended)",
  41304. image: {
  41305. source: "./media/characters/zorkaiju/front-extended.svg",
  41306. extra: 1955/1814,
  41307. bottom: 40/1995
  41308. }
  41309. },
  41310. side: {
  41311. height: math.unit(325, "feet"),
  41312. name: "Side",
  41313. image: {
  41314. source: "./media/characters/zorkaiju/side.svg",
  41315. extra: 1495/1396,
  41316. bottom: 17/1512
  41317. }
  41318. },
  41319. sideExtended: {
  41320. height: math.unit(325, "feet"),
  41321. name: "Side (Extended)",
  41322. image: {
  41323. source: "./media/characters/zorkaiju/side-extended.svg",
  41324. extra: 1495/1396,
  41325. bottom: 17/1512
  41326. }
  41327. },
  41328. back: {
  41329. height: math.unit(325, "feet"),
  41330. name: "Back",
  41331. image: {
  41332. source: "./media/characters/zorkaiju/back.svg",
  41333. extra: 1959/1821,
  41334. bottom: 31/1990
  41335. }
  41336. },
  41337. backExtended: {
  41338. height: math.unit(325, "feet"),
  41339. name: "Back (Extended)",
  41340. image: {
  41341. source: "./media/characters/zorkaiju/back-extended.svg",
  41342. extra: 1959/1821,
  41343. bottom: 31/1990
  41344. }
  41345. },
  41346. hand: {
  41347. height: math.unit(58.4, "feet"),
  41348. name: "Hand",
  41349. image: {
  41350. source: "./media/characters/zorkaiju/hand.svg"
  41351. }
  41352. },
  41353. handExtended: {
  41354. height: math.unit(61.4, "feet"),
  41355. name: "Hand (Extended)",
  41356. image: {
  41357. source: "./media/characters/zorkaiju/hand-extended.svg"
  41358. }
  41359. },
  41360. foot: {
  41361. height: math.unit(95, "feet"),
  41362. name: "Foot",
  41363. image: {
  41364. source: "./media/characters/zorkaiju/foot.svg"
  41365. }
  41366. },
  41367. leftArm: {
  41368. height: math.unit(59, "feet"),
  41369. name: "Left Arm",
  41370. image: {
  41371. source: "./media/characters/zorkaiju/left-arm.svg"
  41372. }
  41373. },
  41374. rightArm: {
  41375. height: math.unit(59, "feet"),
  41376. name: "Right Arm",
  41377. image: {
  41378. source: "./media/characters/zorkaiju/right-arm.svg"
  41379. }
  41380. },
  41381. tail: {
  41382. height: math.unit(104, "feet"),
  41383. name: "Tail",
  41384. image: {
  41385. source: "./media/characters/zorkaiju/tail.svg"
  41386. }
  41387. },
  41388. tailExtended: {
  41389. height: math.unit(104, "feet"),
  41390. name: "Tail (Extended)",
  41391. image: {
  41392. source: "./media/characters/zorkaiju/tail-extended.svg"
  41393. }
  41394. },
  41395. tailBottom: {
  41396. height: math.unit(104, "feet"),
  41397. name: "Tail Bottom",
  41398. image: {
  41399. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41400. }
  41401. },
  41402. crystal: {
  41403. height: math.unit(27.54, "feet"),
  41404. name: "Crystal",
  41405. image: {
  41406. source: "./media/characters/zorkaiju/crystal.svg"
  41407. }
  41408. },
  41409. },
  41410. [
  41411. {
  41412. name: "Kaiju",
  41413. height: math.unit(325, "feet"),
  41414. default: true
  41415. },
  41416. ]
  41417. ))
  41418. characterMakers.push(() => makeCharacter(
  41419. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41420. {
  41421. front: {
  41422. height: math.unit(6 + 1/12, "feet"),
  41423. weight: math.unit(115, "lb"),
  41424. name: "Front",
  41425. image: {
  41426. source: "./media/characters/bailey-belfry/front.svg",
  41427. extra: 1240/1121,
  41428. bottom: 101/1341
  41429. }
  41430. },
  41431. },
  41432. [
  41433. {
  41434. name: "Normal",
  41435. height: math.unit(6 + 1/12, "feet"),
  41436. default: true
  41437. },
  41438. ]
  41439. ))
  41440. characterMakers.push(() => makeCharacter(
  41441. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41442. {
  41443. side: {
  41444. height: math.unit(4, "meters"),
  41445. weight: math.unit(250, "kg"),
  41446. name: "Side",
  41447. image: {
  41448. source: "./media/characters/blacky/side.svg",
  41449. extra: 1027/919,
  41450. bottom: 43/1070
  41451. }
  41452. },
  41453. maw: {
  41454. height: math.unit(1, "meters"),
  41455. name: "Maw",
  41456. image: {
  41457. source: "./media/characters/blacky/maw.svg"
  41458. }
  41459. },
  41460. paw: {
  41461. height: math.unit(1, "meters"),
  41462. name: "Paw",
  41463. image: {
  41464. source: "./media/characters/blacky/paw.svg"
  41465. }
  41466. },
  41467. },
  41468. [
  41469. {
  41470. name: "Normal",
  41471. height: math.unit(4, "meters"),
  41472. default: true
  41473. },
  41474. ]
  41475. ))
  41476. characterMakers.push(() => makeCharacter(
  41477. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41478. {
  41479. front: {
  41480. height: math.unit(170, "cm"),
  41481. weight: math.unit(66, "kg"),
  41482. name: "Front",
  41483. image: {
  41484. source: "./media/characters/thux-ei/front.svg",
  41485. extra: 1109/1011,
  41486. bottom: 8/1117
  41487. }
  41488. },
  41489. },
  41490. [
  41491. {
  41492. name: "Normal",
  41493. height: math.unit(170, "cm"),
  41494. default: true
  41495. },
  41496. ]
  41497. ))
  41498. characterMakers.push(() => makeCharacter(
  41499. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41500. {
  41501. front: {
  41502. height: math.unit(5, "feet"),
  41503. weight: math.unit(120, "lb"),
  41504. name: "Front",
  41505. image: {
  41506. source: "./media/characters/roxanne-voltaire/front.svg",
  41507. extra: 1901/1779,
  41508. bottom: 53/1954
  41509. }
  41510. },
  41511. },
  41512. [
  41513. {
  41514. name: "Normal",
  41515. height: math.unit(5, "feet"),
  41516. default: true
  41517. },
  41518. {
  41519. name: "Giant",
  41520. height: math.unit(50, "feet")
  41521. },
  41522. {
  41523. name: "Titan",
  41524. height: math.unit(500, "feet")
  41525. },
  41526. {
  41527. name: "Macro",
  41528. height: math.unit(5000, "feet")
  41529. },
  41530. {
  41531. name: "Megamacro",
  41532. height: math.unit(50000, "feet")
  41533. },
  41534. {
  41535. name: "Gigamacro",
  41536. height: math.unit(500000, "feet")
  41537. },
  41538. {
  41539. name: "Teramacro",
  41540. height: math.unit(5e6, "feet")
  41541. },
  41542. ]
  41543. ))
  41544. characterMakers.push(() => makeCharacter(
  41545. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41546. {
  41547. front: {
  41548. height: math.unit(6 + 2/12, "feet"),
  41549. name: "Front",
  41550. image: {
  41551. source: "./media/characters/squeaks/front.svg",
  41552. extra: 1823/1768,
  41553. bottom: 138/1961
  41554. }
  41555. },
  41556. },
  41557. [
  41558. {
  41559. name: "Micro",
  41560. height: math.unit(0.5, "inches")
  41561. },
  41562. {
  41563. name: "Normal",
  41564. height: math.unit(6 + 2/12, "feet"),
  41565. default: true
  41566. },
  41567. {
  41568. name: "Macro",
  41569. height: math.unit(600, "feet")
  41570. },
  41571. ]
  41572. ))
  41573. characterMakers.push(() => makeCharacter(
  41574. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41575. {
  41576. front: {
  41577. height: math.unit(1.72, "meters"),
  41578. name: "Front",
  41579. image: {
  41580. source: "./media/characters/archinger/front.svg",
  41581. extra: 1861/1675,
  41582. bottom: 125/1986
  41583. }
  41584. },
  41585. back: {
  41586. height: math.unit(1.72, "meters"),
  41587. name: "Back",
  41588. image: {
  41589. source: "./media/characters/archinger/back.svg",
  41590. extra: 1844/1701,
  41591. bottom: 104/1948
  41592. }
  41593. },
  41594. cock: {
  41595. height: math.unit(0.59, "feet"),
  41596. name: "Cock",
  41597. image: {
  41598. source: "./media/characters/archinger/cock.svg"
  41599. }
  41600. },
  41601. },
  41602. [
  41603. {
  41604. name: "Normal",
  41605. height: math.unit(1.72, "meters"),
  41606. default: true
  41607. },
  41608. {
  41609. name: "Macro",
  41610. height: math.unit(84, "meters")
  41611. },
  41612. {
  41613. name: "Macro+",
  41614. height: math.unit(112, "meters")
  41615. },
  41616. {
  41617. name: "Macro++",
  41618. height: math.unit(960, "meters")
  41619. },
  41620. {
  41621. name: "Macro+++",
  41622. height: math.unit(4, "km")
  41623. },
  41624. {
  41625. name: "Macro++++",
  41626. height: math.unit(48, "km")
  41627. },
  41628. {
  41629. name: "Macro+++++",
  41630. height: math.unit(4500, "km")
  41631. },
  41632. ]
  41633. ))
  41634. characterMakers.push(() => makeCharacter(
  41635. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  41636. {
  41637. front: {
  41638. height: math.unit(5 + 5/12, "feet"),
  41639. name: "Front",
  41640. image: {
  41641. source: "./media/characters/alsnapz/front.svg",
  41642. extra: 1157/1065,
  41643. bottom: 42/1199
  41644. }
  41645. },
  41646. },
  41647. [
  41648. {
  41649. name: "Normal",
  41650. height: math.unit(5 + 5/12, "feet"),
  41651. default: true
  41652. },
  41653. ]
  41654. ))
  41655. characterMakers.push(() => makeCharacter(
  41656. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  41657. {
  41658. side: {
  41659. height: math.unit(3.2, "earths"),
  41660. name: "Side",
  41661. image: {
  41662. source: "./media/characters/mag/side.svg",
  41663. extra: 1331/1008,
  41664. bottom: 52/1383
  41665. }
  41666. },
  41667. wing: {
  41668. height: math.unit(1.94, "earths"),
  41669. name: "Wing",
  41670. image: {
  41671. source: "./media/characters/mag/wing.svg"
  41672. }
  41673. },
  41674. dick: {
  41675. height: math.unit(1.8, "earths"),
  41676. name: "Dick",
  41677. image: {
  41678. source: "./media/characters/mag/dick.svg"
  41679. }
  41680. },
  41681. ass: {
  41682. height: math.unit(1.33, "earths"),
  41683. name: "Ass",
  41684. image: {
  41685. source: "./media/characters/mag/ass.svg"
  41686. }
  41687. },
  41688. head: {
  41689. height: math.unit(1.1, "earths"),
  41690. name: "Head",
  41691. image: {
  41692. source: "./media/characters/mag/head.svg"
  41693. }
  41694. },
  41695. maw: {
  41696. height: math.unit(1.62, "earths"),
  41697. name: "Maw",
  41698. image: {
  41699. source: "./media/characters/mag/maw.svg"
  41700. }
  41701. },
  41702. },
  41703. [
  41704. {
  41705. name: "Small",
  41706. height: math.unit(162, "feet")
  41707. },
  41708. {
  41709. name: "Normal",
  41710. height: math.unit(3.2, "earths"),
  41711. default: true
  41712. },
  41713. ]
  41714. ))
  41715. characterMakers.push(() => makeCharacter(
  41716. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  41717. {
  41718. front: {
  41719. height: math.unit(512, "feet"),
  41720. weight: math.unit(63509, "tonnes"),
  41721. name: "Front",
  41722. image: {
  41723. source: "./media/characters/vorrel-harroc/front.svg",
  41724. extra: 1075/1063,
  41725. bottom: 62/1137
  41726. }
  41727. },
  41728. },
  41729. [
  41730. {
  41731. name: "Normal",
  41732. height: math.unit(10, "feet")
  41733. },
  41734. {
  41735. name: "Macro",
  41736. height: math.unit(512, "feet"),
  41737. default: true
  41738. },
  41739. {
  41740. name: "Megamacro",
  41741. height: math.unit(256, "miles")
  41742. },
  41743. {
  41744. name: "Gigamacro",
  41745. height: math.unit(4096, "miles")
  41746. },
  41747. ]
  41748. ))
  41749. characterMakers.push(() => makeCharacter(
  41750. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  41751. {
  41752. side: {
  41753. height: math.unit(50, "feet"),
  41754. name: "Side",
  41755. image: {
  41756. source: "./media/characters/froimar/side.svg",
  41757. extra: 855/638,
  41758. bottom: 99/954
  41759. }
  41760. },
  41761. },
  41762. [
  41763. {
  41764. name: "Macro",
  41765. height: math.unit(50, "feet"),
  41766. default: true
  41767. },
  41768. ]
  41769. ))
  41770. characterMakers.push(() => makeCharacter(
  41771. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  41772. {
  41773. front: {
  41774. height: math.unit(210, "miles"),
  41775. name: "Front",
  41776. image: {
  41777. source: "./media/characters/timothy/front.svg",
  41778. extra: 1007/943,
  41779. bottom: 62/1069
  41780. }
  41781. },
  41782. frontSkirt: {
  41783. height: math.unit(210, "miles"),
  41784. name: "Front (Skirt)",
  41785. image: {
  41786. source: "./media/characters/timothy/front-skirt.svg",
  41787. extra: 1007/943,
  41788. bottom: 62/1069
  41789. }
  41790. },
  41791. frontCoat: {
  41792. height: math.unit(210, "miles"),
  41793. name: "Front (Coat)",
  41794. image: {
  41795. source: "./media/characters/timothy/front-coat.svg",
  41796. extra: 1007/943,
  41797. bottom: 62/1069
  41798. }
  41799. },
  41800. },
  41801. [
  41802. {
  41803. name: "Macro",
  41804. height: math.unit(210, "miles"),
  41805. default: true
  41806. },
  41807. {
  41808. name: "Megamacro",
  41809. height: math.unit(210000, "miles")
  41810. },
  41811. ]
  41812. ))
  41813. characterMakers.push(() => makeCharacter(
  41814. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  41815. {
  41816. front: {
  41817. height: math.unit(188, "feet"),
  41818. name: "Front",
  41819. image: {
  41820. source: "./media/characters/pyotr/front.svg",
  41821. extra: 1912/1826,
  41822. bottom: 18/1930
  41823. }
  41824. },
  41825. },
  41826. [
  41827. {
  41828. name: "Macro",
  41829. height: math.unit(188, "feet"),
  41830. default: true
  41831. },
  41832. {
  41833. name: "Megamacro",
  41834. height: math.unit(8, "miles")
  41835. },
  41836. ]
  41837. ))
  41838. characterMakers.push(() => makeCharacter(
  41839. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  41840. {
  41841. side: {
  41842. height: math.unit(10, "feet"),
  41843. weight: math.unit(4500, "lb"),
  41844. name: "Side",
  41845. image: {
  41846. source: "./media/characters/ackart/side.svg",
  41847. extra: 1776/1668,
  41848. bottom: 116/1892
  41849. }
  41850. },
  41851. },
  41852. [
  41853. {
  41854. name: "Normal",
  41855. height: math.unit(10, "feet"),
  41856. default: true
  41857. },
  41858. ]
  41859. ))
  41860. characterMakers.push(() => makeCharacter(
  41861. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  41862. {
  41863. side: {
  41864. height: math.unit(21, "feet"),
  41865. name: "Side",
  41866. image: {
  41867. source: "./media/characters/nolow/side.svg",
  41868. extra: 1484/1434,
  41869. bottom: 85/1569
  41870. }
  41871. },
  41872. sideErect: {
  41873. height: math.unit(21, "feet"),
  41874. name: "Side-erect",
  41875. image: {
  41876. source: "./media/characters/nolow/side-erect.svg",
  41877. extra: 1484/1434,
  41878. bottom: 85/1569
  41879. }
  41880. },
  41881. },
  41882. [
  41883. {
  41884. name: "Regular",
  41885. height: math.unit(12, "feet")
  41886. },
  41887. {
  41888. name: "Big Chee",
  41889. height: math.unit(21, "feet"),
  41890. default: true
  41891. },
  41892. ]
  41893. ))
  41894. characterMakers.push(() => makeCharacter(
  41895. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  41896. {
  41897. front: {
  41898. height: math.unit(7, "feet"),
  41899. weight: math.unit(250, "lb"),
  41900. name: "Front",
  41901. image: {
  41902. source: "./media/characters/nines/front.svg",
  41903. extra: 1741/1607,
  41904. bottom: 41/1782
  41905. }
  41906. },
  41907. side: {
  41908. height: math.unit(7, "feet"),
  41909. weight: math.unit(250, "lb"),
  41910. name: "Side",
  41911. image: {
  41912. source: "./media/characters/nines/side.svg",
  41913. extra: 1854/1735,
  41914. bottom: 93/1947
  41915. }
  41916. },
  41917. back: {
  41918. height: math.unit(7, "feet"),
  41919. weight: math.unit(250, "lb"),
  41920. name: "Back",
  41921. image: {
  41922. source: "./media/characters/nines/back.svg",
  41923. extra: 1748/1615,
  41924. bottom: 20/1768
  41925. }
  41926. },
  41927. },
  41928. [
  41929. {
  41930. name: "Megamacro",
  41931. height: math.unit(99, "km"),
  41932. default: true
  41933. },
  41934. ]
  41935. ))
  41936. characterMakers.push(() => makeCharacter(
  41937. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  41938. {
  41939. front: {
  41940. height: math.unit(5 + 10/12, "feet"),
  41941. weight: math.unit(210, "lb"),
  41942. name: "Front",
  41943. image: {
  41944. source: "./media/characters/zenith/front.svg",
  41945. extra: 1531/1452,
  41946. bottom: 198/1729
  41947. }
  41948. },
  41949. back: {
  41950. height: math.unit(5 + 10/12, "feet"),
  41951. weight: math.unit(210, "lb"),
  41952. name: "Back",
  41953. image: {
  41954. source: "./media/characters/zenith/back.svg",
  41955. extra: 1571/1487,
  41956. bottom: 75/1646
  41957. }
  41958. },
  41959. },
  41960. [
  41961. {
  41962. name: "Normal",
  41963. height: math.unit(5 + 10/12, "feet"),
  41964. default: true
  41965. }
  41966. ]
  41967. ))
  41968. characterMakers.push(() => makeCharacter(
  41969. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  41970. {
  41971. front: {
  41972. height: math.unit(4, "feet"),
  41973. weight: math.unit(60, "lb"),
  41974. name: "Front",
  41975. image: {
  41976. source: "./media/characters/jasper/front.svg",
  41977. extra: 1450/1379,
  41978. bottom: 19/1469
  41979. }
  41980. },
  41981. },
  41982. [
  41983. {
  41984. name: "Normal",
  41985. height: math.unit(4, "feet"),
  41986. default: true
  41987. },
  41988. ]
  41989. ))
  41990. characterMakers.push(() => makeCharacter(
  41991. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  41992. {
  41993. front: {
  41994. height: math.unit(6 + 5/12, "feet"),
  41995. weight: math.unit(290, "lb"),
  41996. name: "Front",
  41997. image: {
  41998. source: "./media/characters/tiberius-thyben/front.svg",
  41999. extra: 757/739,
  42000. bottom: 39/796
  42001. }
  42002. },
  42003. },
  42004. [
  42005. {
  42006. name: "Micro",
  42007. height: math.unit(1.5, "inches")
  42008. },
  42009. {
  42010. name: "Normal",
  42011. height: math.unit(6 + 5/12, "feet"),
  42012. default: true
  42013. },
  42014. {
  42015. name: "Macro",
  42016. height: math.unit(300, "feet")
  42017. },
  42018. ]
  42019. ))
  42020. characterMakers.push(() => makeCharacter(
  42021. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42022. {
  42023. front: {
  42024. height: math.unit(5 + 6/12, "feet"),
  42025. weight: math.unit(60, "kg"),
  42026. name: "Front",
  42027. image: {
  42028. source: "./media/characters/sabre/front.svg",
  42029. extra: 738/671,
  42030. bottom: 27/765
  42031. }
  42032. },
  42033. },
  42034. [
  42035. {
  42036. name: "Teeny",
  42037. height: math.unit(2, "inches")
  42038. },
  42039. {
  42040. name: "Smol",
  42041. height: math.unit(8, "inches")
  42042. },
  42043. {
  42044. name: "Normal",
  42045. height: math.unit(5 + 6/12, "feet"),
  42046. default: true
  42047. },
  42048. {
  42049. name: "Mini-Macro",
  42050. height: math.unit(15, "feet")
  42051. },
  42052. {
  42053. name: "Macro",
  42054. height: math.unit(50, "feet")
  42055. },
  42056. ]
  42057. ))
  42058. characterMakers.push(() => makeCharacter(
  42059. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42060. {
  42061. front: {
  42062. height: math.unit(6 + 4/12, "feet"),
  42063. weight: math.unit(170, "lb"),
  42064. name: "Front",
  42065. image: {
  42066. source: "./media/characters/charlie/front.svg",
  42067. extra: 1348/1228,
  42068. bottom: 15/1363
  42069. }
  42070. },
  42071. },
  42072. [
  42073. {
  42074. name: "Macro",
  42075. height: math.unit(1700, "meters"),
  42076. default: true
  42077. },
  42078. {
  42079. name: "MegaMacro",
  42080. height: math.unit(20400, "meters")
  42081. },
  42082. ]
  42083. ))
  42084. characterMakers.push(() => makeCharacter(
  42085. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42086. {
  42087. front: {
  42088. height: math.unit(6 + 3/12, "feet"),
  42089. weight: math.unit(185, "lb"),
  42090. name: "Front",
  42091. image: {
  42092. source: "./media/characters/susan-grant/front.svg",
  42093. extra: 1351/1327,
  42094. bottom: 26/1377
  42095. }
  42096. },
  42097. },
  42098. [
  42099. {
  42100. name: "Normal",
  42101. height: math.unit(6 + 3/12, "feet"),
  42102. default: true
  42103. },
  42104. {
  42105. name: "Macro",
  42106. height: math.unit(225, "feet")
  42107. },
  42108. {
  42109. name: "Macro+",
  42110. height: math.unit(900, "feet")
  42111. },
  42112. {
  42113. name: "MegaMacro",
  42114. height: math.unit(14400, "feet")
  42115. },
  42116. ]
  42117. ))
  42118. characterMakers.push(() => makeCharacter(
  42119. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42120. {
  42121. front: {
  42122. height: math.unit(5 + 4/12, "feet"),
  42123. weight: math.unit(110, "lb"),
  42124. name: "Front",
  42125. image: {
  42126. source: "./media/characters/axel-isanov/front.svg",
  42127. extra: 1096/1065,
  42128. bottom: 13/1109
  42129. }
  42130. },
  42131. },
  42132. [
  42133. {
  42134. name: "Normal",
  42135. height: math.unit(5 + 4/12, "feet"),
  42136. default: true
  42137. },
  42138. ]
  42139. ))
  42140. characterMakers.push(() => makeCharacter(
  42141. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42142. {
  42143. front: {
  42144. height: math.unit(9, "feet"),
  42145. weight: math.unit(467, "lb"),
  42146. name: "Front",
  42147. image: {
  42148. source: "./media/characters/necahual/front.svg",
  42149. extra: 920/873,
  42150. bottom: 26/946
  42151. }
  42152. },
  42153. back: {
  42154. height: math.unit(9, "feet"),
  42155. weight: math.unit(467, "lb"),
  42156. name: "Back",
  42157. image: {
  42158. source: "./media/characters/necahual/back.svg",
  42159. extra: 930/884,
  42160. bottom: 16/946
  42161. }
  42162. },
  42163. frontUnderwear: {
  42164. height: math.unit(9, "feet"),
  42165. weight: math.unit(467, "lb"),
  42166. name: "Front (Underwear)",
  42167. image: {
  42168. source: "./media/characters/necahual/front-underwear.svg",
  42169. extra: 920/873,
  42170. bottom: 26/946
  42171. }
  42172. },
  42173. frontDressed: {
  42174. height: math.unit(9, "feet"),
  42175. weight: math.unit(467, "lb"),
  42176. name: "Front (Dressed)",
  42177. image: {
  42178. source: "./media/characters/necahual/front-dressed.svg",
  42179. extra: 920/873,
  42180. bottom: 26/946
  42181. }
  42182. },
  42183. },
  42184. [
  42185. {
  42186. name: "Comprsesed",
  42187. height: math.unit(9, "feet")
  42188. },
  42189. {
  42190. name: "Natural",
  42191. height: math.unit(15, "feet"),
  42192. default: true
  42193. },
  42194. {
  42195. name: "Boosted",
  42196. height: math.unit(50, "feet")
  42197. },
  42198. {
  42199. name: "Boosted+",
  42200. height: math.unit(150, "feet")
  42201. },
  42202. {
  42203. name: "Max",
  42204. height: math.unit(500, "feet")
  42205. },
  42206. ]
  42207. ))
  42208. characterMakers.push(() => makeCharacter(
  42209. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42210. {
  42211. front: {
  42212. height: math.unit(22 + 1/12, "feet"),
  42213. weight: math.unit(3200, "lb"),
  42214. name: "Front",
  42215. image: {
  42216. source: "./media/characters/theo-acacia/front.svg",
  42217. extra: 1796/1741,
  42218. bottom: 83/1879
  42219. }
  42220. },
  42221. frontUnderwear: {
  42222. height: math.unit(22 + 1/12, "feet"),
  42223. weight: math.unit(3200, "lb"),
  42224. name: "Front (Underwear)",
  42225. image: {
  42226. source: "./media/characters/theo-acacia/front-underwear.svg",
  42227. extra: 1796/1741,
  42228. bottom: 83/1879
  42229. }
  42230. },
  42231. frontNude: {
  42232. height: math.unit(22 + 1/12, "feet"),
  42233. weight: math.unit(3200, "lb"),
  42234. name: "Front (Nude)",
  42235. image: {
  42236. source: "./media/characters/theo-acacia/front-nude.svg",
  42237. extra: 1796/1741,
  42238. bottom: 83/1879
  42239. }
  42240. },
  42241. },
  42242. [
  42243. {
  42244. name: "Normal",
  42245. height: math.unit(22 + 1/12, "feet"),
  42246. default: true
  42247. },
  42248. ]
  42249. ))
  42250. characterMakers.push(() => makeCharacter(
  42251. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42252. {
  42253. front: {
  42254. height: math.unit(20, "feet"),
  42255. name: "Front",
  42256. image: {
  42257. source: "./media/characters/astra/front.svg",
  42258. extra: 1850/1714,
  42259. bottom: 106/1956
  42260. }
  42261. },
  42262. frontUndressed: {
  42263. height: math.unit(20, "feet"),
  42264. name: "Front (Undressed)",
  42265. image: {
  42266. source: "./media/characters/astra/front-undressed.svg",
  42267. extra: 1926/1749,
  42268. bottom: 0/1926
  42269. }
  42270. },
  42271. hand: {
  42272. height: math.unit(1.53, "feet"),
  42273. name: "Hand",
  42274. image: {
  42275. source: "./media/characters/astra/hand.svg"
  42276. }
  42277. },
  42278. paw: {
  42279. height: math.unit(1.53, "feet"),
  42280. name: "Paw",
  42281. image: {
  42282. source: "./media/characters/astra/paw.svg"
  42283. }
  42284. },
  42285. },
  42286. [
  42287. {
  42288. name: "Smallest",
  42289. height: math.unit(20, "feet")
  42290. },
  42291. {
  42292. name: "Normal",
  42293. height: math.unit(1e9, "miles"),
  42294. default: true
  42295. },
  42296. {
  42297. name: "Larger",
  42298. height: math.unit(5, "multiverses")
  42299. },
  42300. {
  42301. name: "Largest",
  42302. height: math.unit(1e9, "multiverses")
  42303. },
  42304. ]
  42305. ))
  42306. characterMakers.push(() => makeCharacter(
  42307. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42308. {
  42309. front: {
  42310. height: math.unit(8, "feet"),
  42311. name: "Front",
  42312. image: {
  42313. source: "./media/characters/breanna/front.svg",
  42314. extra: 1912/1632,
  42315. bottom: 33/1945
  42316. }
  42317. },
  42318. },
  42319. [
  42320. {
  42321. name: "Smallest",
  42322. height: math.unit(8, "feet")
  42323. },
  42324. {
  42325. name: "Normal",
  42326. height: math.unit(1, "mile"),
  42327. default: true
  42328. },
  42329. {
  42330. name: "Maximum",
  42331. height: math.unit(1500000000000, "lightyears")
  42332. },
  42333. ]
  42334. ))
  42335. characterMakers.push(() => makeCharacter(
  42336. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42337. {
  42338. front: {
  42339. height: math.unit(5 + 11/12, "feet"),
  42340. weight: math.unit(155, "lb"),
  42341. name: "Front",
  42342. image: {
  42343. source: "./media/characters/cai/front.svg",
  42344. extra: 1823/1702,
  42345. bottom: 32/1855
  42346. }
  42347. },
  42348. back: {
  42349. height: math.unit(5 + 11/12, "feet"),
  42350. weight: math.unit(155, "lb"),
  42351. name: "Back",
  42352. image: {
  42353. source: "./media/characters/cai/back.svg",
  42354. extra: 1809/1708,
  42355. bottom: 31/1840
  42356. }
  42357. },
  42358. },
  42359. [
  42360. {
  42361. name: "Normal",
  42362. height: math.unit(5 + 11/12, "feet"),
  42363. default: true
  42364. },
  42365. {
  42366. name: "Big",
  42367. height: math.unit(15, "feet")
  42368. },
  42369. {
  42370. name: "Macro",
  42371. height: math.unit(200, "feet")
  42372. },
  42373. ]
  42374. ))
  42375. characterMakers.push(() => makeCharacter(
  42376. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42377. {
  42378. front: {
  42379. height: math.unit(5 + 6/12, "feet"),
  42380. weight: math.unit(160, "lb"),
  42381. name: "Front",
  42382. image: {
  42383. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42384. extra: 1227/1174,
  42385. bottom: 37/1264
  42386. }
  42387. },
  42388. },
  42389. [
  42390. {
  42391. name: "Macro",
  42392. height: math.unit(444, "meters"),
  42393. default: true
  42394. },
  42395. ]
  42396. ))
  42397. characterMakers.push(() => makeCharacter(
  42398. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42399. {
  42400. front: {
  42401. height: math.unit(18 + 7/12, "feet"),
  42402. name: "Front",
  42403. image: {
  42404. source: "./media/characters/rex/front.svg",
  42405. extra: 1941/1807,
  42406. bottom: 66/2007
  42407. }
  42408. },
  42409. back: {
  42410. height: math.unit(18 + 7/12, "feet"),
  42411. name: "Back",
  42412. image: {
  42413. source: "./media/characters/rex/back.svg",
  42414. extra: 1937/1822,
  42415. bottom: 42/1979
  42416. }
  42417. },
  42418. boot: {
  42419. height: math.unit(3.45, "feet"),
  42420. name: "Boot",
  42421. image: {
  42422. source: "./media/characters/rex/boot.svg"
  42423. }
  42424. },
  42425. paw: {
  42426. height: math.unit(4.17, "feet"),
  42427. name: "Paw",
  42428. image: {
  42429. source: "./media/characters/rex/paw.svg"
  42430. }
  42431. },
  42432. head: {
  42433. height: math.unit(6.728, "feet"),
  42434. name: "Head",
  42435. image: {
  42436. source: "./media/characters/rex/head.svg"
  42437. }
  42438. },
  42439. },
  42440. [
  42441. {
  42442. name: "Nano",
  42443. height: math.unit(18 + 7/12, "feet")
  42444. },
  42445. {
  42446. name: "Micro",
  42447. height: math.unit(1.5, "megameters")
  42448. },
  42449. {
  42450. name: "Normal",
  42451. height: math.unit(440, "megameters"),
  42452. default: true
  42453. },
  42454. {
  42455. name: "Macro",
  42456. height: math.unit(2.5, "gigameters")
  42457. },
  42458. {
  42459. name: "Gigamacro",
  42460. height: math.unit(2, "galaxies")
  42461. },
  42462. ]
  42463. ))
  42464. characterMakers.push(() => makeCharacter(
  42465. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42466. {
  42467. side: {
  42468. height: math.unit(32, "feet"),
  42469. weight: math.unit(250000, "lb"),
  42470. name: "Side",
  42471. image: {
  42472. source: "./media/characters/silverwing/side.svg",
  42473. extra: 1100/1019,
  42474. bottom: 204/1304
  42475. }
  42476. },
  42477. },
  42478. [
  42479. {
  42480. name: "Normal",
  42481. height: math.unit(32, "feet"),
  42482. default: true
  42483. },
  42484. ]
  42485. ))
  42486. characterMakers.push(() => makeCharacter(
  42487. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42488. {
  42489. front: {
  42490. height: math.unit(6 + 6/12, "feet"),
  42491. weight: math.unit(350, "lb"),
  42492. name: "Front",
  42493. image: {
  42494. source: "./media/characters/tristan-hawthorne/front.svg",
  42495. extra: 1159/1124,
  42496. bottom: 37/1196
  42497. },
  42498. form: "labrador",
  42499. default: true
  42500. },
  42501. skunkFront: {
  42502. height: math.unit(4 + 6/12, "feet"),
  42503. weight: math.unit(120, "lb"),
  42504. name: "Front",
  42505. image: {
  42506. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42507. extra: 1609/1551,
  42508. bottom: 169/1778
  42509. },
  42510. form: "skunk",
  42511. default: true
  42512. },
  42513. },
  42514. [
  42515. {
  42516. name: "Normal",
  42517. height: math.unit(6 + 6/12, "feet"),
  42518. form: "labrador",
  42519. default: true
  42520. },
  42521. {
  42522. name: "Normal",
  42523. height: math.unit(4 + 6/12, "feet"),
  42524. form: "skunk",
  42525. default: true
  42526. },
  42527. ],
  42528. {
  42529. "labrador": {
  42530. name: "Labrador",
  42531. default: true
  42532. },
  42533. "skunk": {
  42534. name: "Skunk"
  42535. }
  42536. }
  42537. ))
  42538. characterMakers.push(() => makeCharacter(
  42539. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42540. {
  42541. front: {
  42542. height: math.unit(5 + 11/12, "feet"),
  42543. weight: math.unit(190, "lb"),
  42544. name: "Front",
  42545. image: {
  42546. source: "./media/characters/mizu/front.svg",
  42547. extra: 1988/1788,
  42548. bottom: 14/2002
  42549. }
  42550. },
  42551. },
  42552. [
  42553. {
  42554. name: "Normal",
  42555. height: math.unit(5 + 11/12, "feet"),
  42556. default: true
  42557. },
  42558. ]
  42559. ))
  42560. characterMakers.push(() => makeCharacter(
  42561. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42562. {
  42563. front: {
  42564. height: math.unit(1.7, "feet"),
  42565. weight: math.unit(50, "lb"),
  42566. name: "Front",
  42567. image: {
  42568. source: "./media/characters/dechroma/front.svg",
  42569. extra: 1095/859,
  42570. bottom: 64/1159
  42571. }
  42572. },
  42573. },
  42574. [
  42575. {
  42576. name: "Normal",
  42577. height: math.unit(1.7, "feet"),
  42578. default: true
  42579. },
  42580. ]
  42581. ))
  42582. characterMakers.push(() => makeCharacter(
  42583. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42584. {
  42585. side: {
  42586. height: math.unit(30, "feet"),
  42587. name: "Side",
  42588. image: {
  42589. source: "./media/characters/veluren-thanazel/side.svg",
  42590. extra: 1611/633,
  42591. bottom: 118/1729
  42592. }
  42593. },
  42594. front: {
  42595. height: math.unit(30, "feet"),
  42596. name: "Front",
  42597. image: {
  42598. source: "./media/characters/veluren-thanazel/front.svg",
  42599. extra: 1486/636,
  42600. bottom: 238/1724
  42601. }
  42602. },
  42603. head: {
  42604. height: math.unit(21.4, "feet"),
  42605. name: "Head",
  42606. image: {
  42607. source: "./media/characters/veluren-thanazel/head.svg"
  42608. }
  42609. },
  42610. genitals: {
  42611. height: math.unit(19.4, "feet"),
  42612. name: "Genitals",
  42613. image: {
  42614. source: "./media/characters/veluren-thanazel/genitals.svg"
  42615. }
  42616. },
  42617. },
  42618. [
  42619. {
  42620. name: "Social",
  42621. height: math.unit(6, "feet")
  42622. },
  42623. {
  42624. name: "Play",
  42625. height: math.unit(12, "feet")
  42626. },
  42627. {
  42628. name: "True",
  42629. height: math.unit(30, "feet"),
  42630. default: true
  42631. },
  42632. ]
  42633. ))
  42634. characterMakers.push(() => makeCharacter(
  42635. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  42636. {
  42637. front: {
  42638. height: math.unit(7 + 6/12, "feet"),
  42639. weight: math.unit(500, "kg"),
  42640. name: "Front",
  42641. image: {
  42642. source: "./media/characters/arcturas/front.svg",
  42643. extra: 1700/1500,
  42644. bottom: 145/1845
  42645. }
  42646. },
  42647. },
  42648. [
  42649. {
  42650. name: "Normal",
  42651. height: math.unit(7 + 6/12, "feet"),
  42652. default: true
  42653. },
  42654. ]
  42655. ))
  42656. characterMakers.push(() => makeCharacter(
  42657. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  42658. {
  42659. side: {
  42660. height: math.unit(6, "feet"),
  42661. weight: math.unit(2, "tons"),
  42662. name: "Side",
  42663. image: {
  42664. source: "./media/characters/vitaen/side.svg",
  42665. extra: 1157/617,
  42666. bottom: 122/1279
  42667. }
  42668. },
  42669. },
  42670. [
  42671. {
  42672. name: "Normal",
  42673. height: math.unit(6, "feet"),
  42674. default: true
  42675. },
  42676. ]
  42677. ))
  42678. characterMakers.push(() => makeCharacter(
  42679. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  42680. {
  42681. front: {
  42682. height: math.unit(19, "feet"),
  42683. name: "Front",
  42684. image: {
  42685. source: "./media/characters/fia-dreamweaver/front.svg",
  42686. extra: 1630/1504,
  42687. bottom: 25/1655
  42688. }
  42689. },
  42690. },
  42691. [
  42692. {
  42693. name: "Normal",
  42694. height: math.unit(19, "feet"),
  42695. default: true
  42696. },
  42697. ]
  42698. ))
  42699. characterMakers.push(() => makeCharacter(
  42700. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  42701. {
  42702. front: {
  42703. height: math.unit(5 + 4/12, "feet"),
  42704. name: "Front",
  42705. image: {
  42706. source: "./media/characters/artan/front.svg",
  42707. extra: 1618/1535,
  42708. bottom: 46/1664
  42709. }
  42710. },
  42711. back: {
  42712. height: math.unit(5 + 4/12, "feet"),
  42713. name: "Back",
  42714. image: {
  42715. source: "./media/characters/artan/back.svg",
  42716. extra: 1618/1543,
  42717. bottom: 31/1649
  42718. }
  42719. },
  42720. },
  42721. [
  42722. {
  42723. name: "Normal",
  42724. height: math.unit(5 + 4/12, "feet"),
  42725. default: true
  42726. },
  42727. ]
  42728. ))
  42729. characterMakers.push(() => makeCharacter(
  42730. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  42731. {
  42732. side: {
  42733. height: math.unit(182, "cm"),
  42734. weight: math.unit(1000, "lb"),
  42735. name: "Side",
  42736. image: {
  42737. source: "./media/characters/silver-dragon/side.svg",
  42738. extra: 710/287,
  42739. bottom: 88/798
  42740. }
  42741. },
  42742. },
  42743. [
  42744. {
  42745. name: "Normal",
  42746. height: math.unit(182, "cm"),
  42747. default: true
  42748. },
  42749. ]
  42750. ))
  42751. characterMakers.push(() => makeCharacter(
  42752. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  42753. {
  42754. side: {
  42755. height: math.unit(6 + 6/12, "feet"),
  42756. weight: math.unit(1.5, "tons"),
  42757. name: "Side",
  42758. image: {
  42759. source: "./media/characters/zephyr/side.svg",
  42760. extra: 1433/586,
  42761. bottom: 109/1542
  42762. }
  42763. },
  42764. },
  42765. [
  42766. {
  42767. name: "Normal",
  42768. height: math.unit(6 + 6/12, "feet"),
  42769. default: true
  42770. },
  42771. ]
  42772. ))
  42773. characterMakers.push(() => makeCharacter(
  42774. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  42775. {
  42776. side: {
  42777. height: math.unit(1, "feet"),
  42778. name: "Side",
  42779. image: {
  42780. source: "./media/characters/vixye/side.svg",
  42781. extra: 632/541,
  42782. bottom: 0/632
  42783. }
  42784. },
  42785. },
  42786. [
  42787. {
  42788. name: "Normal",
  42789. height: math.unit(1, "feet"),
  42790. default: true
  42791. },
  42792. {
  42793. name: "True",
  42794. height: math.unit(1e15, "multiverses")
  42795. },
  42796. ]
  42797. ))
  42798. characterMakers.push(() => makeCharacter(
  42799. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  42800. {
  42801. front: {
  42802. height: math.unit(8 + 2/12, "feet"),
  42803. weight: math.unit(650, "lb"),
  42804. name: "Front",
  42805. image: {
  42806. source: "./media/characters/darla-mac-lochlainn/front.svg",
  42807. extra: 1174/1137,
  42808. bottom: 82/1256
  42809. }
  42810. },
  42811. back: {
  42812. height: math.unit(8 + 2/12, "feet"),
  42813. weight: math.unit(650, "lb"),
  42814. name: "Back",
  42815. image: {
  42816. source: "./media/characters/darla-mac-lochlainn/back.svg",
  42817. extra: 1204/1157,
  42818. bottom: 46/1250
  42819. }
  42820. },
  42821. },
  42822. [
  42823. {
  42824. name: "Wildform",
  42825. height: math.unit(8 + 2/12, "feet"),
  42826. default: true
  42827. },
  42828. ]
  42829. ))
  42830. characterMakers.push(() => makeCharacter(
  42831. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  42832. {
  42833. front: {
  42834. height: math.unit(18, "feet"),
  42835. name: "Front",
  42836. image: {
  42837. source: "./media/characters/cyphin/front.svg",
  42838. extra: 970/886,
  42839. bottom: 42/1012
  42840. }
  42841. },
  42842. back: {
  42843. height: math.unit(18, "feet"),
  42844. name: "Back",
  42845. image: {
  42846. source: "./media/characters/cyphin/back.svg",
  42847. extra: 1009/894,
  42848. bottom: 24/1033
  42849. }
  42850. },
  42851. head: {
  42852. height: math.unit(5.05, "feet"),
  42853. name: "Head",
  42854. image: {
  42855. source: "./media/characters/cyphin/head.svg"
  42856. }
  42857. },
  42858. tailbud: {
  42859. height: math.unit(5, "feet"),
  42860. name: "Tailbud",
  42861. image: {
  42862. source: "./media/characters/cyphin/tailbud.svg"
  42863. }
  42864. },
  42865. },
  42866. [
  42867. ]
  42868. ))
  42869. characterMakers.push(() => makeCharacter(
  42870. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  42871. {
  42872. side: {
  42873. height: math.unit(10, "feet"),
  42874. weight: math.unit(6, "tons"),
  42875. name: "Side",
  42876. image: {
  42877. source: "./media/characters/raijin/side.svg",
  42878. extra: 1529/613,
  42879. bottom: 337/1866
  42880. }
  42881. },
  42882. },
  42883. [
  42884. {
  42885. name: "Normal",
  42886. height: math.unit(10, "feet"),
  42887. default: true
  42888. },
  42889. ]
  42890. ))
  42891. characterMakers.push(() => makeCharacter(
  42892. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  42893. {
  42894. side: {
  42895. height: math.unit(9, "feet"),
  42896. name: "Side",
  42897. image: {
  42898. source: "./media/characters/nilghais/side.svg",
  42899. extra: 1047/744,
  42900. bottom: 91/1138
  42901. }
  42902. },
  42903. head: {
  42904. height: math.unit(3.14, "feet"),
  42905. name: "Head",
  42906. image: {
  42907. source: "./media/characters/nilghais/head.svg"
  42908. }
  42909. },
  42910. mouth: {
  42911. height: math.unit(4.6, "feet"),
  42912. name: "Mouth",
  42913. image: {
  42914. source: "./media/characters/nilghais/mouth.svg"
  42915. }
  42916. },
  42917. wings: {
  42918. height: math.unit(24, "feet"),
  42919. name: "Wings",
  42920. image: {
  42921. source: "./media/characters/nilghais/wings.svg"
  42922. }
  42923. },
  42924. ass: {
  42925. height: math.unit(6.12, "feet"),
  42926. name: "Ass",
  42927. image: {
  42928. source: "./media/characters/nilghais/ass.svg"
  42929. }
  42930. },
  42931. },
  42932. [
  42933. {
  42934. name: "Normal",
  42935. height: math.unit(9, "feet"),
  42936. default: true
  42937. },
  42938. ]
  42939. ))
  42940. characterMakers.push(() => makeCharacter(
  42941. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  42942. {
  42943. regular: {
  42944. height: math.unit(16 + 2/12, "feet"),
  42945. weight: math.unit(2300, "lb"),
  42946. name: "Regular",
  42947. image: {
  42948. source: "./media/characters/zolgar/regular.svg",
  42949. extra: 1246/1004,
  42950. bottom: 124/1370
  42951. }
  42952. },
  42953. boxers: {
  42954. height: math.unit(16 + 2/12, "feet"),
  42955. weight: math.unit(2300, "lb"),
  42956. name: "Boxers",
  42957. image: {
  42958. source: "./media/characters/zolgar/boxers.svg",
  42959. extra: 1246/1004,
  42960. bottom: 124/1370
  42961. }
  42962. },
  42963. armored: {
  42964. height: math.unit(16 + 2/12, "feet"),
  42965. weight: math.unit(2300, "lb"),
  42966. name: "Armored",
  42967. image: {
  42968. source: "./media/characters/zolgar/armored.svg",
  42969. extra: 1246/1004,
  42970. bottom: 124/1370
  42971. }
  42972. },
  42973. goth: {
  42974. height: math.unit(16 + 2/12, "feet"),
  42975. weight: math.unit(2300, "lb"),
  42976. name: "Goth",
  42977. image: {
  42978. source: "./media/characters/zolgar/goth.svg",
  42979. extra: 1246/1004,
  42980. bottom: 124/1370
  42981. }
  42982. },
  42983. },
  42984. [
  42985. {
  42986. name: "Shrunken Down",
  42987. height: math.unit(9 + 2/12, "feet")
  42988. },
  42989. {
  42990. name: "Normal",
  42991. height: math.unit(16 + 2/12, "feet"),
  42992. default: true
  42993. },
  42994. ]
  42995. ))
  42996. characterMakers.push(() => makeCharacter(
  42997. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  42998. {
  42999. front: {
  43000. height: math.unit(6, "feet"),
  43001. weight: math.unit(168, "lb"),
  43002. name: "Front",
  43003. image: {
  43004. source: "./media/characters/luca/front.svg",
  43005. extra: 841/667,
  43006. bottom: 102/943
  43007. }
  43008. },
  43009. },
  43010. [
  43011. {
  43012. name: "Normal",
  43013. height: math.unit(6, "feet"),
  43014. default: true
  43015. },
  43016. ]
  43017. ))
  43018. characterMakers.push(() => makeCharacter(
  43019. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43020. {
  43021. side: {
  43022. height: math.unit(7 + 3/12, "feet"),
  43023. weight: math.unit(312, "lb"),
  43024. name: "Side",
  43025. image: {
  43026. source: "./media/characters/zezo/side.svg",
  43027. extra: 1192/1067,
  43028. bottom: 63/1255
  43029. }
  43030. },
  43031. },
  43032. [
  43033. {
  43034. name: "Normal",
  43035. height: math.unit(7 + 3/12, "feet"),
  43036. default: true
  43037. },
  43038. ]
  43039. ))
  43040. characterMakers.push(() => makeCharacter(
  43041. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43042. {
  43043. front: {
  43044. height: math.unit(5 + 5/12, "feet"),
  43045. weight: math.unit(170, "lb"),
  43046. name: "Front",
  43047. image: {
  43048. source: "./media/characters/mayso/front.svg",
  43049. extra: 1215/1108,
  43050. bottom: 16/1231
  43051. }
  43052. },
  43053. },
  43054. [
  43055. {
  43056. name: "Normal",
  43057. height: math.unit(5 + 5/12, "feet"),
  43058. default: true
  43059. },
  43060. ]
  43061. ))
  43062. characterMakers.push(() => makeCharacter(
  43063. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43064. {
  43065. front: {
  43066. height: math.unit(4 + 3/12, "feet"),
  43067. weight: math.unit(80, "lb"),
  43068. name: "Front",
  43069. image: {
  43070. source: "./media/characters/hess/front.svg",
  43071. extra: 1200/1123,
  43072. bottom: 16/1216
  43073. }
  43074. },
  43075. },
  43076. [
  43077. {
  43078. name: "Normal",
  43079. height: math.unit(4 + 3/12, "feet"),
  43080. default: true
  43081. },
  43082. ]
  43083. ))
  43084. characterMakers.push(() => makeCharacter(
  43085. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43086. {
  43087. front: {
  43088. height: math.unit(1.9, "meters"),
  43089. name: "Front",
  43090. image: {
  43091. source: "./media/characters/ashgar/front.svg",
  43092. extra: 1177/1146,
  43093. bottom: 99/1276
  43094. }
  43095. },
  43096. back: {
  43097. height: math.unit(1.9, "meters"),
  43098. name: "Back",
  43099. image: {
  43100. source: "./media/characters/ashgar/back.svg",
  43101. extra: 1201/1183,
  43102. bottom: 53/1254
  43103. }
  43104. },
  43105. feral: {
  43106. height: math.unit(1.4, "meters"),
  43107. name: "Feral",
  43108. image: {
  43109. source: "./media/characters/ashgar/feral.svg",
  43110. extra: 370/345,
  43111. bottom: 45/415
  43112. }
  43113. },
  43114. },
  43115. [
  43116. {
  43117. name: "Normal",
  43118. height: math.unit(1.9, "meters"),
  43119. default: true
  43120. },
  43121. ]
  43122. ))
  43123. characterMakers.push(() => makeCharacter(
  43124. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43125. {
  43126. regular: {
  43127. height: math.unit(6, "feet"),
  43128. weight: math.unit(220, "lb"),
  43129. name: "Regular",
  43130. image: {
  43131. source: "./media/characters/phillip/regular.svg",
  43132. extra: 1373/1277,
  43133. bottom: 75/1448
  43134. }
  43135. },
  43136. dressed: {
  43137. height: math.unit(6, "feet"),
  43138. weight: math.unit(220, "lb"),
  43139. name: "Dressed",
  43140. image: {
  43141. source: "./media/characters/phillip/dressed.svg",
  43142. extra: 1373/1277,
  43143. bottom: 75/1448
  43144. }
  43145. },
  43146. paw: {
  43147. height: math.unit(1.44, "feet"),
  43148. name: "Paw",
  43149. image: {
  43150. source: "./media/characters/phillip/paw.svg"
  43151. }
  43152. },
  43153. },
  43154. [
  43155. {
  43156. name: "Normal",
  43157. height: math.unit(6, "feet"),
  43158. default: true
  43159. },
  43160. ]
  43161. ))
  43162. characterMakers.push(() => makeCharacter(
  43163. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43164. {
  43165. side: {
  43166. height: math.unit(42, "feet"),
  43167. name: "Side",
  43168. image: {
  43169. source: "./media/characters/uvula/side.svg",
  43170. extra: 683/586,
  43171. bottom: 60/743
  43172. }
  43173. },
  43174. front: {
  43175. height: math.unit(42, "feet"),
  43176. name: "Front",
  43177. image: {
  43178. source: "./media/characters/uvula/front.svg",
  43179. extra: 705/613,
  43180. bottom: 54/759
  43181. }
  43182. },
  43183. maw: {
  43184. height: math.unit(23.5, "feet"),
  43185. name: "Maw",
  43186. image: {
  43187. source: "./media/characters/uvula/maw.svg"
  43188. }
  43189. },
  43190. },
  43191. [
  43192. {
  43193. name: "Original Size",
  43194. height: math.unit(14, "inches")
  43195. },
  43196. {
  43197. name: "Human Size",
  43198. height: math.unit(6, "feet")
  43199. },
  43200. {
  43201. name: "Big",
  43202. height: math.unit(42, "feet"),
  43203. default: true
  43204. },
  43205. {
  43206. name: "Bigger",
  43207. height: math.unit(100, "feet")
  43208. },
  43209. ]
  43210. ))
  43211. characterMakers.push(() => makeCharacter(
  43212. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43213. {
  43214. front: {
  43215. height: math.unit(5 + 11/12, "feet"),
  43216. name: "Front",
  43217. image: {
  43218. source: "./media/characters/lannah/front.svg",
  43219. extra: 1208/1113,
  43220. bottom: 97/1305
  43221. }
  43222. },
  43223. },
  43224. [
  43225. {
  43226. name: "Normal",
  43227. height: math.unit(5 + 11/12, "feet"),
  43228. default: true
  43229. },
  43230. ]
  43231. ))
  43232. characterMakers.push(() => makeCharacter(
  43233. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43234. {
  43235. front: {
  43236. height: math.unit(6 + 3/12, "feet"),
  43237. weight: math.unit(3.5, "tons"),
  43238. name: "Front",
  43239. image: {
  43240. source: "./media/characters/emberflame/front.svg",
  43241. extra: 1198/672,
  43242. bottom: 82/1280
  43243. }
  43244. },
  43245. side: {
  43246. height: math.unit(6 + 3/12, "feet"),
  43247. weight: math.unit(3.5, "tons"),
  43248. name: "Side",
  43249. image: {
  43250. source: "./media/characters/emberflame/side.svg",
  43251. extra: 938/527,
  43252. bottom: 56/994
  43253. }
  43254. },
  43255. },
  43256. [
  43257. {
  43258. name: "Normal",
  43259. height: math.unit(6 + 3/12, "feet"),
  43260. default: true
  43261. },
  43262. ]
  43263. ))
  43264. characterMakers.push(() => makeCharacter(
  43265. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43266. {
  43267. side: {
  43268. height: math.unit(17.5, "feet"),
  43269. weight: math.unit(35, "tons"),
  43270. name: "Side",
  43271. image: {
  43272. source: "./media/characters/sophie-ambrose/side.svg",
  43273. extra: 1573/1242,
  43274. bottom: 71/1644
  43275. }
  43276. },
  43277. maw: {
  43278. height: math.unit(7.4, "feet"),
  43279. name: "Maw",
  43280. image: {
  43281. source: "./media/characters/sophie-ambrose/maw.svg"
  43282. }
  43283. },
  43284. },
  43285. [
  43286. {
  43287. name: "Normal",
  43288. height: math.unit(17.5, "feet"),
  43289. default: true
  43290. },
  43291. ]
  43292. ))
  43293. characterMakers.push(() => makeCharacter(
  43294. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43295. {
  43296. front: {
  43297. height: math.unit(280, "feet"),
  43298. weight: math.unit(550, "tons"),
  43299. name: "Front",
  43300. image: {
  43301. source: "./media/characters/king-mugi/front.svg",
  43302. extra: 1102/947,
  43303. bottom: 104/1206
  43304. }
  43305. },
  43306. },
  43307. [
  43308. {
  43309. name: "King Mugi",
  43310. height: math.unit(280, "feet"),
  43311. default: true
  43312. },
  43313. ]
  43314. ))
  43315. characterMakers.push(() => makeCharacter(
  43316. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43317. {
  43318. front: {
  43319. height: math.unit(64, "meters"),
  43320. name: "Front",
  43321. image: {
  43322. source: "./media/characters/nova-fox/front.svg",
  43323. extra: 1310/1246,
  43324. bottom: 65/1375
  43325. }
  43326. },
  43327. },
  43328. [
  43329. {
  43330. name: "Macro",
  43331. height: math.unit(64, "meters"),
  43332. default: true
  43333. },
  43334. ]
  43335. ))
  43336. characterMakers.push(() => makeCharacter(
  43337. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43338. {
  43339. front: {
  43340. height: math.unit(6 + 3/12, "feet"),
  43341. weight: math.unit(170, "lb"),
  43342. name: "Front",
  43343. image: {
  43344. source: "./media/characters/sam-bat/front.svg",
  43345. extra: 1601/1411,
  43346. bottom: 125/1726
  43347. }
  43348. },
  43349. back: {
  43350. height: math.unit(6 + 3/12, "feet"),
  43351. weight: math.unit(170, "lb"),
  43352. name: "Back",
  43353. image: {
  43354. source: "./media/characters/sam-bat/back.svg",
  43355. extra: 1577/1405,
  43356. bottom: 58/1635
  43357. }
  43358. },
  43359. },
  43360. [
  43361. {
  43362. name: "Normal",
  43363. height: math.unit(6 + 3/12, "feet"),
  43364. default: true
  43365. },
  43366. ]
  43367. ))
  43368. characterMakers.push(() => makeCharacter(
  43369. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43370. {
  43371. front: {
  43372. height: math.unit(59, "feet"),
  43373. weight: math.unit(40000, "lb"),
  43374. name: "Front",
  43375. image: {
  43376. source: "./media/characters/inari/front.svg",
  43377. extra: 1884/1350,
  43378. bottom: 95/1979
  43379. }
  43380. },
  43381. },
  43382. [
  43383. {
  43384. name: "Gigantamax",
  43385. height: math.unit(59, "feet"),
  43386. default: true
  43387. },
  43388. ]
  43389. ))
  43390. characterMakers.push(() => makeCharacter(
  43391. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43392. {
  43393. front: {
  43394. height: math.unit(5 + 8/12, "feet"),
  43395. name: "Front",
  43396. image: {
  43397. source: "./media/characters/elizabeth/front.svg",
  43398. extra: 1395/1298,
  43399. bottom: 54/1449
  43400. }
  43401. },
  43402. mouth: {
  43403. height: math.unit(1.97, "feet"),
  43404. name: "Mouth",
  43405. image: {
  43406. source: "./media/characters/elizabeth/mouth.svg"
  43407. }
  43408. },
  43409. foot: {
  43410. height: math.unit(1.17, "feet"),
  43411. name: "Foot",
  43412. image: {
  43413. source: "./media/characters/elizabeth/foot.svg"
  43414. }
  43415. },
  43416. },
  43417. [
  43418. {
  43419. name: "Normal",
  43420. height: math.unit(5 + 8/12, "feet"),
  43421. default: true
  43422. },
  43423. {
  43424. name: "Minimacro",
  43425. height: math.unit(18, "feet")
  43426. },
  43427. {
  43428. name: "Macro",
  43429. height: math.unit(180, "feet")
  43430. },
  43431. ]
  43432. ))
  43433. characterMakers.push(() => makeCharacter(
  43434. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43435. {
  43436. front: {
  43437. height: math.unit(5 + 2/12, "feet"),
  43438. name: "Front",
  43439. image: {
  43440. source: "./media/characters/october-gossamer/front.svg",
  43441. extra: 505/454,
  43442. bottom: 7/512
  43443. }
  43444. },
  43445. back: {
  43446. height: math.unit(5 + 2/12, "feet"),
  43447. name: "Back",
  43448. image: {
  43449. source: "./media/characters/october-gossamer/back.svg",
  43450. extra: 501/454,
  43451. bottom: 11/512
  43452. }
  43453. },
  43454. },
  43455. [
  43456. {
  43457. name: "Normal",
  43458. height: math.unit(5 + 2/12, "feet"),
  43459. default: true
  43460. },
  43461. ]
  43462. ))
  43463. characterMakers.push(() => makeCharacter(
  43464. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43465. {
  43466. front: {
  43467. height: math.unit(5, "feet"),
  43468. name: "Front",
  43469. image: {
  43470. source: "./media/characters/epiglottis/front.svg",
  43471. extra: 923/849,
  43472. bottom: 17/940
  43473. }
  43474. },
  43475. },
  43476. [
  43477. {
  43478. name: "Original Size",
  43479. height: math.unit(10, "inches")
  43480. },
  43481. {
  43482. name: "Human Size",
  43483. height: math.unit(5, "feet"),
  43484. default: true
  43485. },
  43486. {
  43487. name: "Big",
  43488. height: math.unit(25, "feet")
  43489. },
  43490. {
  43491. name: "Bigger",
  43492. height: math.unit(50, "feet")
  43493. },
  43494. {
  43495. name: "oh lawd",
  43496. height: math.unit(75, "feet")
  43497. },
  43498. ]
  43499. ))
  43500. characterMakers.push(() => makeCharacter(
  43501. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43502. {
  43503. front: {
  43504. height: math.unit(2 + 4/12, "feet"),
  43505. weight: math.unit(60, "lb"),
  43506. name: "Front",
  43507. image: {
  43508. source: "./media/characters/lerm/front.svg",
  43509. extra: 796/790,
  43510. bottom: 79/875
  43511. }
  43512. },
  43513. },
  43514. [
  43515. {
  43516. name: "Normal",
  43517. height: math.unit(2 + 4/12, "feet"),
  43518. default: true
  43519. },
  43520. ]
  43521. ))
  43522. characterMakers.push(() => makeCharacter(
  43523. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43524. {
  43525. front: {
  43526. height: math.unit(5.5, "feet"),
  43527. weight: math.unit(130, "lb"),
  43528. name: "Front",
  43529. image: {
  43530. source: "./media/characters/xena-nebadon/front.svg",
  43531. extra: 1828/1730,
  43532. bottom: 79/1907
  43533. }
  43534. },
  43535. },
  43536. [
  43537. {
  43538. name: "Tiny Puppy",
  43539. height: math.unit(3, "inches")
  43540. },
  43541. {
  43542. name: "Normal",
  43543. height: math.unit(5.5, "feet"),
  43544. default: true
  43545. },
  43546. {
  43547. name: "Lotta Lady",
  43548. height: math.unit(12, "feet")
  43549. },
  43550. {
  43551. name: "Pretty Big",
  43552. height: math.unit(100, "feet")
  43553. },
  43554. {
  43555. name: "Big",
  43556. height: math.unit(500, "feet")
  43557. },
  43558. {
  43559. name: "Skyscraper Toys",
  43560. height: math.unit(2500, "feet")
  43561. },
  43562. {
  43563. name: "Plane Catcher",
  43564. height: math.unit(8, "miles")
  43565. },
  43566. {
  43567. name: "Planet Toys",
  43568. height: math.unit(15, "earths")
  43569. },
  43570. {
  43571. name: "Stardust",
  43572. height: math.unit(0.25, "galaxies")
  43573. },
  43574. {
  43575. name: "Snacks",
  43576. height: math.unit(70, "universes")
  43577. },
  43578. ]
  43579. ))
  43580. characterMakers.push(() => makeCharacter(
  43581. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43582. {
  43583. front: {
  43584. height: math.unit(1.6, "meters"),
  43585. weight: math.unit(60, "kg"),
  43586. name: "Front",
  43587. image: {
  43588. source: "./media/characters/bounty/front.svg",
  43589. extra: 1426/1308,
  43590. bottom: 15/1441
  43591. }
  43592. },
  43593. back: {
  43594. height: math.unit(1.6, "meters"),
  43595. weight: math.unit(60, "kg"),
  43596. name: "Back",
  43597. image: {
  43598. source: "./media/characters/bounty/back.svg",
  43599. extra: 1417/1307,
  43600. bottom: 8/1425
  43601. }
  43602. },
  43603. },
  43604. [
  43605. {
  43606. name: "Normal",
  43607. height: math.unit(1.6, "meters"),
  43608. default: true
  43609. },
  43610. {
  43611. name: "Macro",
  43612. height: math.unit(300, "meters")
  43613. },
  43614. ]
  43615. ))
  43616. characterMakers.push(() => makeCharacter(
  43617. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  43618. {
  43619. front: {
  43620. height: math.unit(2 + 8/12, "feet"),
  43621. weight: math.unit(15, "lb"),
  43622. name: "Front",
  43623. image: {
  43624. source: "./media/characters/mochi/front.svg",
  43625. extra: 1022/852,
  43626. bottom: 435/1457
  43627. }
  43628. },
  43629. back: {
  43630. height: math.unit(2 + 8/12, "feet"),
  43631. weight: math.unit(15, "lb"),
  43632. name: "Back",
  43633. image: {
  43634. source: "./media/characters/mochi/back.svg",
  43635. extra: 1335/1119,
  43636. bottom: 39/1374
  43637. }
  43638. },
  43639. bird: {
  43640. height: math.unit(2 + 8/12, "feet"),
  43641. weight: math.unit(15, "lb"),
  43642. name: "Bird",
  43643. image: {
  43644. source: "./media/characters/mochi/bird.svg",
  43645. extra: 1251/1113,
  43646. bottom: 178/1429
  43647. }
  43648. },
  43649. kaiju: {
  43650. height: math.unit(154, "feet"),
  43651. weight: math.unit(1e7, "lb"),
  43652. name: "Kaiju",
  43653. image: {
  43654. source: "./media/characters/mochi/kaiju.svg",
  43655. extra: 460/324,
  43656. bottom: 40/500
  43657. }
  43658. },
  43659. head: {
  43660. height: math.unit(1.21, "feet"),
  43661. name: "Head",
  43662. image: {
  43663. source: "./media/characters/mochi/head.svg"
  43664. }
  43665. },
  43666. alternateTail: {
  43667. height: math.unit(2 + 8/12, "feet"),
  43668. weight: math.unit(45, "lb"),
  43669. name: "Alternate Tail",
  43670. image: {
  43671. source: "./media/characters/mochi/alternate-tail.svg",
  43672. extra: 139/76,
  43673. bottom: 45/184
  43674. }
  43675. },
  43676. },
  43677. [
  43678. {
  43679. name: "Micro",
  43680. height: math.unit(2, "inches")
  43681. },
  43682. {
  43683. name: "Normal",
  43684. height: math.unit(2 + 8/12, "feet"),
  43685. default: true
  43686. },
  43687. {
  43688. name: "Macro",
  43689. height: math.unit(106, "feet")
  43690. },
  43691. ]
  43692. ))
  43693. characterMakers.push(() => makeCharacter(
  43694. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  43695. {
  43696. front: {
  43697. height: math.unit(5.67, "feet"),
  43698. weight: math.unit(135, "lb"),
  43699. name: "Front",
  43700. image: {
  43701. source: "./media/characters/sarel/front.svg",
  43702. extra: 865/788,
  43703. bottom: 97/962
  43704. }
  43705. },
  43706. back: {
  43707. height: math.unit(5.67, "feet"),
  43708. weight: math.unit(135, "lb"),
  43709. name: "Back",
  43710. image: {
  43711. source: "./media/characters/sarel/back.svg",
  43712. extra: 857/777,
  43713. bottom: 32/889
  43714. }
  43715. },
  43716. chozoan: {
  43717. height: math.unit(5.67, "feet"),
  43718. weight: math.unit(135, "lb"),
  43719. name: "Chozoan",
  43720. image: {
  43721. source: "./media/characters/sarel/chozoan.svg",
  43722. extra: 865/788,
  43723. bottom: 97/962
  43724. }
  43725. },
  43726. current: {
  43727. height: math.unit(5.67, "feet"),
  43728. weight: math.unit(135, "lb"),
  43729. name: "Current",
  43730. image: {
  43731. source: "./media/characters/sarel/current.svg",
  43732. extra: 865/788,
  43733. bottom: 97/962
  43734. }
  43735. },
  43736. head: {
  43737. height: math.unit(1.77, "feet"),
  43738. name: "Head",
  43739. image: {
  43740. source: "./media/characters/sarel/head.svg"
  43741. }
  43742. },
  43743. claws: {
  43744. height: math.unit(1.8, "feet"),
  43745. name: "Claws",
  43746. image: {
  43747. source: "./media/characters/sarel/claws.svg"
  43748. }
  43749. },
  43750. clawsAlt: {
  43751. height: math.unit(1.8, "feet"),
  43752. name: "Claws-alt",
  43753. image: {
  43754. source: "./media/characters/sarel/claws-alt.svg"
  43755. }
  43756. },
  43757. },
  43758. [
  43759. {
  43760. name: "Normal",
  43761. height: math.unit(5.67, "feet"),
  43762. default: true
  43763. },
  43764. ]
  43765. ))
  43766. characterMakers.push(() => makeCharacter(
  43767. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  43768. {
  43769. front: {
  43770. height: math.unit(5500, "feet"),
  43771. name: "Front",
  43772. image: {
  43773. source: "./media/characters/alyonia/front.svg",
  43774. extra: 1200/1135,
  43775. bottom: 29/1229
  43776. }
  43777. },
  43778. back: {
  43779. height: math.unit(5500, "feet"),
  43780. name: "Back",
  43781. image: {
  43782. source: "./media/characters/alyonia/back.svg",
  43783. extra: 1205/1138,
  43784. bottom: 10/1215
  43785. }
  43786. },
  43787. },
  43788. [
  43789. {
  43790. name: "Small",
  43791. height: math.unit(10, "feet")
  43792. },
  43793. {
  43794. name: "Macro",
  43795. height: math.unit(500, "feet")
  43796. },
  43797. {
  43798. name: "Mega Macro",
  43799. height: math.unit(5500, "feet"),
  43800. default: true
  43801. },
  43802. {
  43803. name: "Mega Macro+",
  43804. height: math.unit(500000, "feet")
  43805. },
  43806. {
  43807. name: "Giga Macro",
  43808. height: math.unit(3000, "miles")
  43809. },
  43810. {
  43811. name: "Tera Macro",
  43812. height: math.unit(2.8e6, "miles")
  43813. },
  43814. {
  43815. name: "Galactic",
  43816. height: math.unit(120000, "lightyears")
  43817. },
  43818. ]
  43819. ))
  43820. characterMakers.push(() => makeCharacter(
  43821. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  43822. {
  43823. werewolf: {
  43824. height: math.unit(8, "feet"),
  43825. weight: math.unit(425, "lb"),
  43826. name: "Werewolf",
  43827. image: {
  43828. source: "./media/characters/autumn/werewolf.svg",
  43829. extra: 2154/2031,
  43830. bottom: 160/2314
  43831. }
  43832. },
  43833. human: {
  43834. height: math.unit(5 + 8/12, "feet"),
  43835. weight: math.unit(150, "lb"),
  43836. name: "Human",
  43837. image: {
  43838. source: "./media/characters/autumn/human.svg",
  43839. extra: 1200/1149,
  43840. bottom: 30/1230
  43841. }
  43842. },
  43843. },
  43844. [
  43845. {
  43846. name: "Normal",
  43847. height: math.unit(8, "feet"),
  43848. default: true
  43849. },
  43850. ]
  43851. ))
  43852. characterMakers.push(() => makeCharacter(
  43853. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  43854. {
  43855. front: {
  43856. height: math.unit(8 + 5/12, "feet"),
  43857. weight: math.unit(825, "lb"),
  43858. name: "Front",
  43859. image: {
  43860. source: "./media/characters/cobalt-charizard/front.svg",
  43861. extra: 1268/1155,
  43862. bottom: 122/1390
  43863. }
  43864. },
  43865. side: {
  43866. height: math.unit(8 + 5/12, "feet"),
  43867. weight: math.unit(825, "lb"),
  43868. name: "Side",
  43869. image: {
  43870. source: "./media/characters/cobalt-charizard/side.svg",
  43871. extra: 1348/1257,
  43872. bottom: 58/1406
  43873. }
  43874. },
  43875. gMax: {
  43876. height: math.unit(134 + 11/12, "feet"),
  43877. name: "G-Max",
  43878. image: {
  43879. source: "./media/characters/cobalt-charizard/g-max.svg",
  43880. extra: 1835/1541,
  43881. bottom: 151/1986
  43882. }
  43883. },
  43884. },
  43885. [
  43886. {
  43887. name: "Normal",
  43888. height: math.unit(8 + 5/12, "feet"),
  43889. default: true
  43890. },
  43891. ]
  43892. ))
  43893. characterMakers.push(() => makeCharacter(
  43894. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  43895. {
  43896. front: {
  43897. height: math.unit(6 + 3/12, "feet"),
  43898. weight: math.unit(210, "lb"),
  43899. name: "Front",
  43900. image: {
  43901. source: "./media/characters/stella/front.svg",
  43902. extra: 3549/3335,
  43903. bottom: 51/3600
  43904. }
  43905. },
  43906. },
  43907. [
  43908. {
  43909. name: "Normal",
  43910. height: math.unit(6 + 3/12, "feet"),
  43911. default: true
  43912. },
  43913. ]
  43914. ))
  43915. characterMakers.push(() => makeCharacter(
  43916. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  43917. {
  43918. front: {
  43919. height: math.unit(5, "feet"),
  43920. weight: math.unit(90, "lb"),
  43921. name: "Front",
  43922. image: {
  43923. source: "./media/characters/riley-bishop/front.svg",
  43924. extra: 1450/1428,
  43925. bottom: 152/1602
  43926. }
  43927. },
  43928. },
  43929. [
  43930. {
  43931. name: "Normal",
  43932. height: math.unit(5, "feet"),
  43933. default: true
  43934. },
  43935. ]
  43936. ))
  43937. characterMakers.push(() => makeCharacter(
  43938. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  43939. {
  43940. side: {
  43941. height: math.unit(8 + 2/12, "feet"),
  43942. weight: math.unit(500, "kg"),
  43943. name: "Side",
  43944. image: {
  43945. source: "./media/characters/theo-arcanine/side.svg",
  43946. extra: 1342/1074,
  43947. bottom: 111/1453
  43948. }
  43949. },
  43950. },
  43951. [
  43952. {
  43953. name: "Normal",
  43954. height: math.unit(8 + 2/12, "feet"),
  43955. default: true
  43956. },
  43957. ]
  43958. ))
  43959. characterMakers.push(() => makeCharacter(
  43960. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  43961. {
  43962. front: {
  43963. height: math.unit(4, "feet"),
  43964. name: "Front",
  43965. image: {
  43966. source: "./media/characters/kali/front.svg",
  43967. extra: 1921/1357,
  43968. bottom: 70/1991
  43969. }
  43970. },
  43971. },
  43972. [
  43973. {
  43974. name: "Normal",
  43975. height: math.unit(4, "feet"),
  43976. default: true
  43977. },
  43978. {
  43979. name: "Macro",
  43980. height: math.unit(32, "meters")
  43981. },
  43982. {
  43983. name: "Macro+",
  43984. height: math.unit(150, "meters")
  43985. },
  43986. {
  43987. name: "Megamacro",
  43988. height: math.unit(7500, "meters")
  43989. },
  43990. {
  43991. name: "Megamacro+",
  43992. height: math.unit(80, "kilometers")
  43993. },
  43994. ]
  43995. ))
  43996. characterMakers.push(() => makeCharacter(
  43997. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  43998. {
  43999. side: {
  44000. height: math.unit(5 + 11/12, "feet"),
  44001. weight: math.unit(236, "lb"),
  44002. name: "Side",
  44003. image: {
  44004. source: "./media/characters/gapp/side.svg",
  44005. extra: 775/340,
  44006. bottom: 58/833
  44007. }
  44008. },
  44009. mouth: {
  44010. height: math.unit(2.98, "feet"),
  44011. name: "Mouth",
  44012. image: {
  44013. source: "./media/characters/gapp/mouth.svg"
  44014. }
  44015. },
  44016. },
  44017. [
  44018. {
  44019. name: "Normal",
  44020. height: math.unit(5 + 1/12, "feet"),
  44021. default: true
  44022. },
  44023. ]
  44024. ))
  44025. characterMakers.push(() => makeCharacter(
  44026. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44027. {
  44028. front: {
  44029. height: math.unit(6, "feet"),
  44030. name: "Front",
  44031. image: {
  44032. source: "./media/characters/persephone/front.svg",
  44033. extra: 1895/1717,
  44034. bottom: 96/1991
  44035. }
  44036. },
  44037. back: {
  44038. height: math.unit(6, "feet"),
  44039. name: "Back",
  44040. image: {
  44041. source: "./media/characters/persephone/back.svg",
  44042. extra: 1868/1679,
  44043. bottom: 26/1894
  44044. }
  44045. },
  44046. casual: {
  44047. height: math.unit(6, "feet"),
  44048. name: "Casual",
  44049. image: {
  44050. source: "./media/characters/persephone/casual.svg",
  44051. extra: 1713/1541,
  44052. bottom: 76/1789
  44053. }
  44054. },
  44055. },
  44056. [
  44057. {
  44058. name: "Human Size",
  44059. height: math.unit(6, "feet")
  44060. },
  44061. {
  44062. name: "Big Steppy",
  44063. height: math.unit(600, "meters"),
  44064. default: true
  44065. },
  44066. {
  44067. name: "Galaxy Brain",
  44068. height: math.unit(1, "zettameter")
  44069. },
  44070. ]
  44071. ))
  44072. characterMakers.push(() => makeCharacter(
  44073. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44074. {
  44075. front: {
  44076. height: math.unit(1.85, "meters"),
  44077. name: "Front",
  44078. image: {
  44079. source: "./media/characters/riley-foxthing/front.svg",
  44080. extra: 1495/1354,
  44081. bottom: 122/1617
  44082. }
  44083. },
  44084. frontAlt: {
  44085. height: math.unit(1.85, "meters"),
  44086. name: "Front (Alt)",
  44087. image: {
  44088. source: "./media/characters/riley-foxthing/front-alt.svg",
  44089. extra: 1572/1389,
  44090. bottom: 116/1688
  44091. }
  44092. },
  44093. },
  44094. [
  44095. {
  44096. name: "Normal Sized",
  44097. height: math.unit(1.85, "meters"),
  44098. default: true
  44099. },
  44100. {
  44101. name: "Quite Sizable",
  44102. height: math.unit(5, "meters")
  44103. },
  44104. {
  44105. name: "Rather Large",
  44106. height: math.unit(20, "meters")
  44107. },
  44108. {
  44109. name: "Macro",
  44110. height: math.unit(450, "meters")
  44111. },
  44112. {
  44113. name: "Giga",
  44114. height: math.unit(5, "km")
  44115. },
  44116. ]
  44117. ))
  44118. characterMakers.push(() => makeCharacter(
  44119. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44120. {
  44121. front: {
  44122. height: math.unit(6, "feet"),
  44123. weight: math.unit(200, "lb"),
  44124. name: "Front",
  44125. image: {
  44126. source: "./media/characters/blizzard/front.svg",
  44127. extra: 1136/990,
  44128. bottom: 136/1272
  44129. }
  44130. },
  44131. back: {
  44132. height: math.unit(6, "feet"),
  44133. weight: math.unit(200, "lb"),
  44134. name: "Back",
  44135. image: {
  44136. source: "./media/characters/blizzard/back.svg",
  44137. extra: 1175/1034,
  44138. bottom: 97/1272
  44139. }
  44140. },
  44141. sitting: {
  44142. height: math.unit(3.725, "feet"),
  44143. weight: math.unit(200, "lb"),
  44144. name: "Sitting",
  44145. image: {
  44146. source: "./media/characters/blizzard/sitting.svg",
  44147. extra: 581/485,
  44148. bottom: 90/671
  44149. }
  44150. },
  44151. frontWizard: {
  44152. height: math.unit(7.9, "feet"),
  44153. weight: math.unit(200, "lb"),
  44154. name: "Front (Wizard)",
  44155. image: {
  44156. source: "./media/characters/blizzard/front-wizard.svg"
  44157. }
  44158. },
  44159. backWizard: {
  44160. height: math.unit(7.9, "feet"),
  44161. weight: math.unit(200, "lb"),
  44162. name: "Back (Wizard)",
  44163. image: {
  44164. source: "./media/characters/blizzard/back-wizard.svg"
  44165. }
  44166. },
  44167. frontNsfw: {
  44168. height: math.unit(6, "feet"),
  44169. weight: math.unit(200, "lb"),
  44170. name: "Front (NSFW)",
  44171. image: {
  44172. source: "./media/characters/blizzard/front-nsfw.svg",
  44173. extra: 1136/990,
  44174. bottom: 136/1272
  44175. }
  44176. },
  44177. backNsfw: {
  44178. height: math.unit(6, "feet"),
  44179. weight: math.unit(200, "lb"),
  44180. name: "Back (NSFW)",
  44181. image: {
  44182. source: "./media/characters/blizzard/back-nsfw.svg",
  44183. extra: 1175/1034,
  44184. bottom: 97/1272
  44185. }
  44186. },
  44187. sittingNsfw: {
  44188. height: math.unit(3.725, "feet"),
  44189. weight: math.unit(200, "lb"),
  44190. name: "Sitting (NSFW)",
  44191. image: {
  44192. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44193. extra: 581/485,
  44194. bottom: 90/671
  44195. }
  44196. },
  44197. wizardFrontNsfw: {
  44198. height: math.unit(7.9, "feet"),
  44199. weight: math.unit(200, "lb"),
  44200. name: "Wizard (Front, NSFW)",
  44201. image: {
  44202. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44203. }
  44204. },
  44205. },
  44206. [
  44207. {
  44208. name: "Normal",
  44209. height: math.unit(6, "feet"),
  44210. default: true
  44211. },
  44212. ]
  44213. ))
  44214. characterMakers.push(() => makeCharacter(
  44215. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44216. {
  44217. front: {
  44218. height: math.unit(5 + 2/12, "feet"),
  44219. name: "Front",
  44220. image: {
  44221. source: "./media/characters/lumi/front.svg",
  44222. extra: 1328/1268,
  44223. bottom: 103/1431
  44224. }
  44225. },
  44226. back: {
  44227. height: math.unit(5 + 2/12, "feet"),
  44228. name: "Back",
  44229. image: {
  44230. source: "./media/characters/lumi/back.svg",
  44231. extra: 1381/1327,
  44232. bottom: 43/1424
  44233. }
  44234. },
  44235. },
  44236. [
  44237. {
  44238. name: "Normal",
  44239. height: math.unit(5 + 2/12, "feet"),
  44240. default: true
  44241. },
  44242. ]
  44243. ))
  44244. characterMakers.push(() => makeCharacter(
  44245. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44246. {
  44247. front: {
  44248. height: math.unit(5 + 9/12, "feet"),
  44249. name: "Front",
  44250. image: {
  44251. source: "./media/characters/aliya-cotton/front.svg",
  44252. extra: 577/564,
  44253. bottom: 29/606
  44254. }
  44255. },
  44256. },
  44257. [
  44258. {
  44259. name: "Normal",
  44260. height: math.unit(5 + 9/12, "feet"),
  44261. default: true
  44262. },
  44263. ]
  44264. ))
  44265. characterMakers.push(() => makeCharacter(
  44266. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44267. {
  44268. front: {
  44269. height: math.unit(2.7, "meters"),
  44270. weight: math.unit(25000, "lb"),
  44271. name: "Front",
  44272. image: {
  44273. source: "./media/characters/noah-luxray/front.svg",
  44274. extra: 1644/825,
  44275. bottom: 339/1983
  44276. }
  44277. },
  44278. side: {
  44279. height: math.unit(2.97, "meters"),
  44280. weight: math.unit(25000, "lb"),
  44281. name: "Side",
  44282. image: {
  44283. source: "./media/characters/noah-luxray/side.svg",
  44284. extra: 1319/650,
  44285. bottom: 163/1482
  44286. }
  44287. },
  44288. dick: {
  44289. height: math.unit(7.4, "feet"),
  44290. weight: math.unit(2500, "lb"),
  44291. name: "Dick",
  44292. image: {
  44293. source: "./media/characters/noah-luxray/dick.svg"
  44294. }
  44295. },
  44296. dickAlt: {
  44297. height: math.unit(10.83, "feet"),
  44298. weight: math.unit(2500, "lb"),
  44299. name: "Dick-alt",
  44300. image: {
  44301. source: "./media/characters/noah-luxray/dick-alt.svg"
  44302. }
  44303. },
  44304. },
  44305. [
  44306. {
  44307. name: "BIG",
  44308. height: math.unit(2.7, "meters"),
  44309. default: true
  44310. },
  44311. ]
  44312. ))
  44313. characterMakers.push(() => makeCharacter(
  44314. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44315. {
  44316. standing: {
  44317. height: math.unit(183, "cm"),
  44318. weight: math.unit(68, "kg"),
  44319. name: "Standing",
  44320. image: {
  44321. source: "./media/characters/arion/standing.svg",
  44322. extra: 1869/1807,
  44323. bottom: 93/1962
  44324. }
  44325. },
  44326. reclining: {
  44327. height: math.unit(70.5, "cm"),
  44328. weight: math.unit(68, "lb"),
  44329. name: "Reclining",
  44330. image: {
  44331. source: "./media/characters/arion/reclining.svg",
  44332. extra: 937/870,
  44333. bottom: 63/1000
  44334. }
  44335. },
  44336. },
  44337. [
  44338. {
  44339. name: "Colossus Size, Low",
  44340. height: math.unit(33, "meters"),
  44341. default: true
  44342. },
  44343. {
  44344. name: "Colossus Size, Mid",
  44345. height: math.unit(52, "meters")
  44346. },
  44347. {
  44348. name: "Colossus Size, High",
  44349. height: math.unit(60, "meters")
  44350. },
  44351. {
  44352. name: "Titan Size, Low",
  44353. height: math.unit(91, "meters"),
  44354. },
  44355. {
  44356. name: "Titan Size, Mid",
  44357. height: math.unit(122, "meters")
  44358. },
  44359. {
  44360. name: "Titan Size, High",
  44361. height: math.unit(162, "meters")
  44362. },
  44363. ]
  44364. ))
  44365. characterMakers.push(() => makeCharacter(
  44366. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44367. {
  44368. front: {
  44369. height: math.unit(53, "meters"),
  44370. name: "Front",
  44371. image: {
  44372. source: "./media/characters/stellar-marbey/front.svg",
  44373. extra: 1913/1805,
  44374. bottom: 92/2005
  44375. }
  44376. },
  44377. back: {
  44378. height: math.unit(53, "meters"),
  44379. name: "Back",
  44380. image: {
  44381. source: "./media/characters/stellar-marbey/back.svg",
  44382. extra: 1960/1851,
  44383. bottom: 28/1988
  44384. }
  44385. },
  44386. mouth: {
  44387. height: math.unit(3.5, "meters"),
  44388. name: "Mouth",
  44389. image: {
  44390. source: "./media/characters/stellar-marbey/mouth.svg"
  44391. }
  44392. },
  44393. },
  44394. [
  44395. {
  44396. name: "Macro",
  44397. height: math.unit(53, "meters"),
  44398. default: true
  44399. },
  44400. ]
  44401. ))
  44402. characterMakers.push(() => makeCharacter(
  44403. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44404. {
  44405. front: {
  44406. height: math.unit(8 + 1/12, "feet"),
  44407. weight: math.unit(233, "lb"),
  44408. name: "Front",
  44409. image: {
  44410. source: "./media/characters/matsu/front.svg",
  44411. extra: 832/772,
  44412. bottom: 40/872
  44413. }
  44414. },
  44415. back: {
  44416. height: math.unit(8 + 1/12, "feet"),
  44417. weight: math.unit(233, "lb"),
  44418. name: "Back",
  44419. image: {
  44420. source: "./media/characters/matsu/back.svg",
  44421. extra: 839/780,
  44422. bottom: 47/886
  44423. }
  44424. },
  44425. },
  44426. [
  44427. {
  44428. name: "Normal",
  44429. height: math.unit(8 + 1/12, "feet"),
  44430. default: true
  44431. },
  44432. ]
  44433. ))
  44434. characterMakers.push(() => makeCharacter(
  44435. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44436. {
  44437. front: {
  44438. height: math.unit(4, "feet"),
  44439. weight: math.unit(148, "lb"),
  44440. name: "Front",
  44441. image: {
  44442. source: "./media/characters/thiz/front.svg",
  44443. extra: 1913/1748,
  44444. bottom: 62/1975
  44445. }
  44446. },
  44447. },
  44448. [
  44449. {
  44450. name: "Normal",
  44451. height: math.unit(4, "feet"),
  44452. default: true
  44453. },
  44454. ]
  44455. ))
  44456. characterMakers.push(() => makeCharacter(
  44457. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44458. {
  44459. front: {
  44460. height: math.unit(7 + 6/12, "feet"),
  44461. weight: math.unit(267, "lb"),
  44462. name: "Front",
  44463. image: {
  44464. source: "./media/characters/marcel/front.svg",
  44465. extra: 1221/1096,
  44466. bottom: 76/1297
  44467. }
  44468. },
  44469. },
  44470. [
  44471. {
  44472. name: "Normal",
  44473. height: math.unit(7 + 6/12, "feet"),
  44474. default: true
  44475. },
  44476. ]
  44477. ))
  44478. characterMakers.push(() => makeCharacter(
  44479. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44480. {
  44481. side: {
  44482. height: math.unit(42, "meters"),
  44483. name: "Side",
  44484. image: {
  44485. source: "./media/characters/flake/side.svg",
  44486. extra: 1525/1306,
  44487. bottom: 209/1734
  44488. }
  44489. },
  44490. },
  44491. [
  44492. {
  44493. name: "Normal",
  44494. height: math.unit(42, "meters"),
  44495. default: true
  44496. },
  44497. ]
  44498. ))
  44499. characterMakers.push(() => makeCharacter(
  44500. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44501. {
  44502. dressed: {
  44503. height: math.unit(6 + 4/12, "feet"),
  44504. weight: math.unit(520, "lb"),
  44505. name: "Dressed",
  44506. image: {
  44507. source: "./media/characters/someonne/dressed.svg",
  44508. extra: 1020/1010,
  44509. bottom: 178/1198
  44510. }
  44511. },
  44512. undressed: {
  44513. height: math.unit(6 + 4/12, "feet"),
  44514. weight: math.unit(520, "lb"),
  44515. name: "Undressed",
  44516. image: {
  44517. source: "./media/characters/someonne/undressed.svg",
  44518. extra: 1019/1014,
  44519. bottom: 169/1188
  44520. }
  44521. },
  44522. },
  44523. [
  44524. {
  44525. name: "Normal",
  44526. height: math.unit(6 + 4/12, "feet"),
  44527. default: true
  44528. },
  44529. ]
  44530. ))
  44531. characterMakers.push(() => makeCharacter(
  44532. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44533. {
  44534. front: {
  44535. height: math.unit(3, "feet"),
  44536. weight: math.unit(30, "lb"),
  44537. name: "Front",
  44538. image: {
  44539. source: "./media/characters/till/front.svg",
  44540. extra: 892/823,
  44541. bottom: 55/947
  44542. }
  44543. },
  44544. },
  44545. [
  44546. {
  44547. name: "Normal",
  44548. height: math.unit(3, "feet"),
  44549. default: true
  44550. },
  44551. ]
  44552. ))
  44553. characterMakers.push(() => makeCharacter(
  44554. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44555. {
  44556. front: {
  44557. height: math.unit(9 + 8/12, "feet"),
  44558. weight: math.unit(800, "lb"),
  44559. name: "Front",
  44560. image: {
  44561. source: "./media/characters/sydney-heki/front.svg",
  44562. extra: 1360/1300,
  44563. bottom: 22/1382
  44564. }
  44565. },
  44566. back: {
  44567. height: math.unit(9 + 8/12, "feet"),
  44568. weight: math.unit(800, "lb"),
  44569. name: "Back",
  44570. image: {
  44571. source: "./media/characters/sydney-heki/back.svg",
  44572. extra: 1356/1293,
  44573. bottom: 12/1368
  44574. }
  44575. },
  44576. frontDressed: {
  44577. height: math.unit(9 + 8/12, "feet"),
  44578. weight: math.unit(800, "lb"),
  44579. name: "Front-dressed",
  44580. image: {
  44581. source: "./media/characters/sydney-heki/front-dressed.svg",
  44582. extra: 1360/1300,
  44583. bottom: 22/1382
  44584. }
  44585. },
  44586. },
  44587. [
  44588. {
  44589. name: "Normal",
  44590. height: math.unit(9 + 8/12, "feet"),
  44591. default: true
  44592. },
  44593. {
  44594. name: "Macro",
  44595. height: math.unit(500, "feet")
  44596. },
  44597. {
  44598. name: "Megamacro",
  44599. height: math.unit(3.6, "miles")
  44600. },
  44601. ]
  44602. ))
  44603. characterMakers.push(() => makeCharacter(
  44604. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  44605. {
  44606. front: {
  44607. height: math.unit(200, "cm"),
  44608. weight: math.unit(250, "lb"),
  44609. name: "Front",
  44610. image: {
  44611. source: "./media/characters/fowler-karlsson/front.svg",
  44612. extra: 897/845,
  44613. bottom: 123/1020
  44614. }
  44615. },
  44616. back: {
  44617. height: math.unit(200, "cm"),
  44618. weight: math.unit(250, "lb"),
  44619. name: "Back",
  44620. image: {
  44621. source: "./media/characters/fowler-karlsson/back.svg",
  44622. extra: 999/944,
  44623. bottom: 26/1025
  44624. }
  44625. },
  44626. dick: {
  44627. height: math.unit(1.92, "feet"),
  44628. weight: math.unit(150, "lb"),
  44629. name: "Dick",
  44630. image: {
  44631. source: "./media/characters/fowler-karlsson/dick.svg"
  44632. }
  44633. },
  44634. },
  44635. [
  44636. {
  44637. name: "Normal",
  44638. height: math.unit(200, "cm"),
  44639. default: true
  44640. },
  44641. {
  44642. name: "Smaller Macro",
  44643. height: math.unit(90, "m")
  44644. },
  44645. {
  44646. name: "Macro",
  44647. height: math.unit(150, "m")
  44648. },
  44649. {
  44650. name: "Bigger Macro",
  44651. height: math.unit(300, "m")
  44652. },
  44653. ]
  44654. ))
  44655. characterMakers.push(() => makeCharacter(
  44656. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  44657. {
  44658. side: {
  44659. height: math.unit(8 + 2/12, "feet"),
  44660. weight: math.unit(1, "tonne"),
  44661. name: "Side",
  44662. image: {
  44663. source: "./media/characters/rylide/side.svg",
  44664. extra: 1318/1034,
  44665. bottom: 106/1424
  44666. }
  44667. },
  44668. sitting: {
  44669. height: math.unit(303, "cm"),
  44670. weight: math.unit(1, "tonne"),
  44671. name: "Sitting",
  44672. image: {
  44673. source: "./media/characters/rylide/sitting.svg",
  44674. extra: 1303/1103,
  44675. bottom: 36/1339
  44676. }
  44677. },
  44678. },
  44679. [
  44680. {
  44681. name: "Normal",
  44682. height: math.unit(8 + 2/12, "feet"),
  44683. default: true
  44684. },
  44685. ]
  44686. ))
  44687. characterMakers.push(() => makeCharacter(
  44688. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  44689. {
  44690. front: {
  44691. height: math.unit(5 + 10/12, "feet"),
  44692. weight: math.unit(160, "lb"),
  44693. name: "Front",
  44694. image: {
  44695. source: "./media/characters/pudask/front.svg",
  44696. extra: 1616/1590,
  44697. bottom: 161/1777
  44698. }
  44699. },
  44700. },
  44701. [
  44702. {
  44703. name: "Ferret Height",
  44704. height: math.unit(2 + 5/12, "feet")
  44705. },
  44706. {
  44707. name: "Canon Height",
  44708. height: math.unit(5 + 10/12, "feet"),
  44709. default: true
  44710. },
  44711. ]
  44712. ))
  44713. characterMakers.push(() => makeCharacter(
  44714. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  44715. {
  44716. front: {
  44717. height: math.unit(3 + 6/12, "feet"),
  44718. weight: math.unit(60, "lb"),
  44719. name: "Front",
  44720. image: {
  44721. source: "./media/characters/ramita/front.svg",
  44722. extra: 1402/1232,
  44723. bottom: 62/1464
  44724. }
  44725. },
  44726. dressed: {
  44727. height: math.unit(3 + 6/12, "feet"),
  44728. weight: math.unit(60, "lb"),
  44729. name: "Dressed",
  44730. image: {
  44731. source: "./media/characters/ramita/dressed.svg",
  44732. extra: 1534/1249,
  44733. bottom: 50/1584
  44734. }
  44735. },
  44736. },
  44737. [
  44738. {
  44739. name: "Normal",
  44740. height: math.unit(3 + 6/12, "feet"),
  44741. default: true
  44742. },
  44743. ]
  44744. ))
  44745. characterMakers.push(() => makeCharacter(
  44746. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  44747. {
  44748. front: {
  44749. height: math.unit(8, "feet"),
  44750. name: "Front",
  44751. image: {
  44752. source: "./media/characters/ark/front.svg",
  44753. extra: 772/693,
  44754. bottom: 45/817
  44755. }
  44756. },
  44757. },
  44758. [
  44759. {
  44760. name: "Normal",
  44761. height: math.unit(8, "feet"),
  44762. default: true
  44763. },
  44764. ]
  44765. ))
  44766. characterMakers.push(() => makeCharacter(
  44767. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  44768. {
  44769. front: {
  44770. height: math.unit(6, "feet"),
  44771. weight: math.unit(250, "lb"),
  44772. volume: math.unit(5/8, "gallons"),
  44773. name: "Front",
  44774. image: {
  44775. source: "./media/characters/ludwig-horn/front.svg",
  44776. extra: 1782/1635,
  44777. bottom: 96/1878
  44778. }
  44779. },
  44780. back: {
  44781. height: math.unit(6, "feet"),
  44782. weight: math.unit(250, "lb"),
  44783. volume: math.unit(5/8, "gallons"),
  44784. name: "Back",
  44785. image: {
  44786. source: "./media/characters/ludwig-horn/back.svg",
  44787. extra: 1874/1729,
  44788. bottom: 27/1901
  44789. }
  44790. },
  44791. dick: {
  44792. height: math.unit(1.05, "feet"),
  44793. weight: math.unit(15, "lb"),
  44794. volume: math.unit(5/8, "gallons"),
  44795. name: "Dick",
  44796. image: {
  44797. source: "./media/characters/ludwig-horn/dick.svg"
  44798. }
  44799. },
  44800. },
  44801. [
  44802. {
  44803. name: "Small",
  44804. height: math.unit(6, "feet")
  44805. },
  44806. {
  44807. name: "Typical",
  44808. height: math.unit(12, "feet"),
  44809. default: true
  44810. },
  44811. {
  44812. name: "Building",
  44813. height: math.unit(80, "feet")
  44814. },
  44815. {
  44816. name: "Town",
  44817. height: math.unit(800, "feet")
  44818. },
  44819. {
  44820. name: "Kingdom",
  44821. height: math.unit(80000, "feet")
  44822. },
  44823. {
  44824. name: "Planet",
  44825. height: math.unit(8000000, "feet")
  44826. },
  44827. {
  44828. name: "Universe",
  44829. height: math.unit(8000000000, "feet")
  44830. },
  44831. {
  44832. name: "Transcended",
  44833. height: math.unit(8e27, "feet")
  44834. },
  44835. ]
  44836. ))
  44837. characterMakers.push(() => makeCharacter(
  44838. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  44839. {
  44840. front: {
  44841. height: math.unit(5, "feet"),
  44842. weight: math.unit(50, "kg"),
  44843. name: "Front",
  44844. image: {
  44845. source: "./media/characters/biot-avery/front.svg",
  44846. extra: 1295/1232,
  44847. bottom: 86/1381
  44848. }
  44849. },
  44850. },
  44851. [
  44852. {
  44853. name: "Normal",
  44854. height: math.unit(5, "feet"),
  44855. default: true
  44856. },
  44857. ]
  44858. ))
  44859. characterMakers.push(() => makeCharacter(
  44860. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  44861. {
  44862. front: {
  44863. height: math.unit(6, "feet"),
  44864. name: "Front",
  44865. image: {
  44866. source: "./media/characters/kitsune-kiro/front.svg",
  44867. extra: 1270/1158,
  44868. bottom: 42/1312
  44869. }
  44870. },
  44871. frontAlt: {
  44872. height: math.unit(6, "feet"),
  44873. name: "Front-alt",
  44874. image: {
  44875. source: "./media/characters/kitsune-kiro/front-alt.svg",
  44876. extra: 1130/1081,
  44877. bottom: 36/1166
  44878. }
  44879. },
  44880. },
  44881. [
  44882. {
  44883. name: "Smol",
  44884. height: math.unit(3, "feet")
  44885. },
  44886. {
  44887. name: "Normal",
  44888. height: math.unit(6, "feet"),
  44889. default: true
  44890. },
  44891. ]
  44892. ))
  44893. characterMakers.push(() => makeCharacter(
  44894. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  44895. {
  44896. front: {
  44897. height: math.unit(6, "feet"),
  44898. weight: math.unit(125, "lb"),
  44899. name: "Front",
  44900. image: {
  44901. source: "./media/characters/jack-thatcher/front.svg",
  44902. extra: 1474/1370,
  44903. bottom: 26/1500
  44904. }
  44905. },
  44906. back: {
  44907. height: math.unit(6, "feet"),
  44908. weight: math.unit(125, "lb"),
  44909. name: "Back",
  44910. image: {
  44911. source: "./media/characters/jack-thatcher/back.svg",
  44912. extra: 1489/1384,
  44913. bottom: 18/1507
  44914. }
  44915. },
  44916. },
  44917. [
  44918. {
  44919. name: "Normal",
  44920. height: math.unit(6, "feet"),
  44921. default: true
  44922. },
  44923. {
  44924. name: "Macro",
  44925. height: math.unit(75, "feet")
  44926. },
  44927. {
  44928. name: "Macro-er",
  44929. height: math.unit(250, "feet")
  44930. },
  44931. ]
  44932. ))
  44933. characterMakers.push(() => makeCharacter(
  44934. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  44935. {
  44936. front: {
  44937. height: math.unit(7, "feet"),
  44938. weight: math.unit(110, "kg"),
  44939. name: "Front",
  44940. image: {
  44941. source: "./media/characters/max-hyper/front.svg",
  44942. extra: 1969/1881,
  44943. bottom: 49/2018
  44944. }
  44945. },
  44946. },
  44947. [
  44948. {
  44949. name: "Normal",
  44950. height: math.unit(7, "feet"),
  44951. default: true
  44952. },
  44953. ]
  44954. ))
  44955. characterMakers.push(() => makeCharacter(
  44956. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  44957. {
  44958. front: {
  44959. height: math.unit(5 + 5/12, "feet"),
  44960. weight: math.unit(160, "lb"),
  44961. name: "Front",
  44962. image: {
  44963. source: "./media/characters/spook/front.svg",
  44964. extra: 794/791,
  44965. bottom: 54/848
  44966. }
  44967. },
  44968. back: {
  44969. height: math.unit(5 + 5/12, "feet"),
  44970. weight: math.unit(160, "lb"),
  44971. name: "Back",
  44972. image: {
  44973. source: "./media/characters/spook/back.svg",
  44974. extra: 812/798,
  44975. bottom: 32/844
  44976. }
  44977. },
  44978. },
  44979. [
  44980. {
  44981. name: "Normal",
  44982. height: math.unit(5 + 5/12, "feet"),
  44983. default: true
  44984. },
  44985. ]
  44986. ))
  44987. characterMakers.push(() => makeCharacter(
  44988. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  44989. {
  44990. front: {
  44991. height: math.unit(18, "feet"),
  44992. name: "Front",
  44993. image: {
  44994. source: "./media/characters/xeaduulix/front.svg",
  44995. extra: 1380/1166,
  44996. bottom: 110/1490
  44997. }
  44998. },
  44999. back: {
  45000. height: math.unit(18, "feet"),
  45001. name: "Back",
  45002. image: {
  45003. source: "./media/characters/xeaduulix/back.svg",
  45004. extra: 1592/1170,
  45005. bottom: 128/1720
  45006. }
  45007. },
  45008. frontNsfw: {
  45009. height: math.unit(18, "feet"),
  45010. name: "Front (NSFW)",
  45011. image: {
  45012. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45013. extra: 1380/1166,
  45014. bottom: 110/1490
  45015. }
  45016. },
  45017. backNsfw: {
  45018. height: math.unit(18, "feet"),
  45019. name: "Back (NSFW)",
  45020. image: {
  45021. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45022. extra: 1592/1170,
  45023. bottom: 128/1720
  45024. }
  45025. },
  45026. },
  45027. [
  45028. {
  45029. name: "Normal",
  45030. height: math.unit(18, "feet"),
  45031. default: true
  45032. },
  45033. ]
  45034. ))
  45035. characterMakers.push(() => makeCharacter(
  45036. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45037. {
  45038. spreadWings: {
  45039. height: math.unit(20, "feet"),
  45040. name: "Spread Wings",
  45041. image: {
  45042. source: "./media/characters/fledge/spread-wings.svg",
  45043. extra: 693/635,
  45044. bottom: 26/719
  45045. }
  45046. },
  45047. front: {
  45048. height: math.unit(20, "feet"),
  45049. name: "Front",
  45050. image: {
  45051. source: "./media/characters/fledge/front.svg",
  45052. extra: 684/637,
  45053. bottom: 18/702
  45054. }
  45055. },
  45056. frontAlt: {
  45057. height: math.unit(20, "feet"),
  45058. name: "Front (Alt)",
  45059. image: {
  45060. source: "./media/characters/fledge/front-alt.svg",
  45061. extra: 708/664,
  45062. bottom: 13/721
  45063. }
  45064. },
  45065. back: {
  45066. height: math.unit(20, "feet"),
  45067. name: "Back",
  45068. image: {
  45069. source: "./media/characters/fledge/back.svg",
  45070. extra: 718/634,
  45071. bottom: 22/740
  45072. }
  45073. },
  45074. head: {
  45075. height: math.unit(5.55, "feet"),
  45076. name: "Head",
  45077. image: {
  45078. source: "./media/characters/fledge/head.svg"
  45079. }
  45080. },
  45081. headAlt: {
  45082. height: math.unit(5.1, "feet"),
  45083. name: "Head (Alt)",
  45084. image: {
  45085. source: "./media/characters/fledge/head-alt.svg"
  45086. }
  45087. },
  45088. },
  45089. [
  45090. {
  45091. name: "Small",
  45092. height: math.unit(6 + 2/12, "feet")
  45093. },
  45094. {
  45095. name: "Big",
  45096. height: math.unit(20, "feet"),
  45097. default: true
  45098. },
  45099. {
  45100. name: "Giant",
  45101. height: math.unit(100, "feet")
  45102. },
  45103. {
  45104. name: "Macro",
  45105. height: math.unit(200, "feet")
  45106. },
  45107. ]
  45108. ))
  45109. characterMakers.push(() => makeCharacter(
  45110. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45111. {
  45112. front: {
  45113. height: math.unit(1, "meter"),
  45114. name: "Front",
  45115. image: {
  45116. source: "./media/characters/atlas-morenai/front.svg",
  45117. extra: 1275/1043,
  45118. bottom: 19/1294
  45119. }
  45120. },
  45121. back: {
  45122. height: math.unit(1, "meter"),
  45123. name: "Back",
  45124. image: {
  45125. source: "./media/characters/atlas-morenai/back.svg",
  45126. extra: 1141/1001,
  45127. bottom: 25/1166
  45128. }
  45129. },
  45130. },
  45131. [
  45132. {
  45133. name: "Normal",
  45134. height: math.unit(1, "meter"),
  45135. default: true
  45136. },
  45137. {
  45138. name: "Magic-Infused",
  45139. height: math.unit(5, "meters")
  45140. },
  45141. ]
  45142. ))
  45143. characterMakers.push(() => makeCharacter(
  45144. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45145. {
  45146. front: {
  45147. height: math.unit(5, "meters"),
  45148. name: "Front",
  45149. image: {
  45150. source: "./media/characters/cintia/front.svg",
  45151. extra: 1312/1228,
  45152. bottom: 38/1350
  45153. }
  45154. },
  45155. back: {
  45156. height: math.unit(5, "meters"),
  45157. name: "Back",
  45158. image: {
  45159. source: "./media/characters/cintia/back.svg",
  45160. extra: 1260/1166,
  45161. bottom: 98/1358
  45162. }
  45163. },
  45164. frontDick: {
  45165. height: math.unit(5, "meters"),
  45166. name: "Front (Dick)",
  45167. image: {
  45168. source: "./media/characters/cintia/front-dick.svg",
  45169. extra: 1312/1228,
  45170. bottom: 38/1350
  45171. }
  45172. },
  45173. backDick: {
  45174. height: math.unit(5, "meters"),
  45175. name: "Back (Dick)",
  45176. image: {
  45177. source: "./media/characters/cintia/back-dick.svg",
  45178. extra: 1260/1166,
  45179. bottom: 98/1358
  45180. }
  45181. },
  45182. bust: {
  45183. height: math.unit(1.97, "meters"),
  45184. name: "Bust",
  45185. image: {
  45186. source: "./media/characters/cintia/bust.svg",
  45187. extra: 617/565,
  45188. bottom: 0/617
  45189. }
  45190. },
  45191. },
  45192. [
  45193. {
  45194. name: "Normal",
  45195. height: math.unit(5, "meters"),
  45196. default: true
  45197. },
  45198. ]
  45199. ))
  45200. characterMakers.push(() => makeCharacter(
  45201. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45202. {
  45203. side: {
  45204. height: math.unit(100, "feet"),
  45205. name: "Side",
  45206. image: {
  45207. source: "./media/characters/denora/side.svg",
  45208. extra: 875/803,
  45209. bottom: 9/884
  45210. }
  45211. },
  45212. },
  45213. [
  45214. {
  45215. name: "Standard",
  45216. height: math.unit(100, "feet"),
  45217. default: true
  45218. },
  45219. {
  45220. name: "Grand",
  45221. height: math.unit(1000, "feet")
  45222. },
  45223. {
  45224. name: "Conquering",
  45225. height: math.unit(10000, "feet")
  45226. },
  45227. ]
  45228. ))
  45229. characterMakers.push(() => makeCharacter(
  45230. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45231. {
  45232. dressed: {
  45233. height: math.unit(8 + 5/12, "feet"),
  45234. weight: math.unit(700, "lb"),
  45235. name: "Dressed",
  45236. image: {
  45237. source: "./media/characters/kiva/dressed.svg",
  45238. extra: 1102/1055,
  45239. bottom: 60/1162
  45240. }
  45241. },
  45242. nude: {
  45243. height: math.unit(8 + 5/12, "feet"),
  45244. weight: math.unit(700, "lb"),
  45245. name: "Nude",
  45246. image: {
  45247. source: "./media/characters/kiva/nude.svg",
  45248. extra: 1102/1055,
  45249. bottom: 60/1162
  45250. }
  45251. },
  45252. },
  45253. [
  45254. {
  45255. name: "Base Height",
  45256. height: math.unit(8 + 5/12, "feet"),
  45257. default: true
  45258. },
  45259. {
  45260. name: "Macro",
  45261. height: math.unit(100, "feet")
  45262. },
  45263. {
  45264. name: "Max",
  45265. height: math.unit(3280, "feet")
  45266. },
  45267. ]
  45268. ))
  45269. characterMakers.push(() => makeCharacter(
  45270. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45271. {
  45272. front: {
  45273. height: math.unit(6 + 8/12, "feet"),
  45274. weight: math.unit(250, "lb"),
  45275. name: "Front",
  45276. image: {
  45277. source: "./media/characters/ztragon/front.svg",
  45278. extra: 1825/1684,
  45279. bottom: 98/1923
  45280. }
  45281. },
  45282. },
  45283. [
  45284. {
  45285. name: "Normal",
  45286. height: math.unit(6 + 8/12, "feet"),
  45287. default: true
  45288. },
  45289. {
  45290. name: "Macro",
  45291. height: math.unit(80, "feet")
  45292. },
  45293. ]
  45294. ))
  45295. characterMakers.push(() => makeCharacter(
  45296. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45297. {
  45298. front: {
  45299. height: math.unit(10.4, "feet"),
  45300. weight: math.unit(2, "tons"),
  45301. name: "Front",
  45302. image: {
  45303. source: "./media/characters/yesenia/front.svg",
  45304. extra: 1479/1474,
  45305. bottom: 233/1712
  45306. }
  45307. },
  45308. },
  45309. [
  45310. {
  45311. name: "Normal",
  45312. height: math.unit(10.4, "feet"),
  45313. default: true
  45314. },
  45315. ]
  45316. ))
  45317. characterMakers.push(() => makeCharacter(
  45318. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45319. {
  45320. normal: {
  45321. height: math.unit(6 + 1/12, "feet"),
  45322. weight: math.unit(180, "lb"),
  45323. name: "Normal",
  45324. image: {
  45325. source: "./media/characters/leanne-lycheborne/normal.svg",
  45326. extra: 1748/1660,
  45327. bottom: 98/1846
  45328. }
  45329. },
  45330. were: {
  45331. height: math.unit(12, "feet"),
  45332. weight: math.unit(1600, "lb"),
  45333. name: "Were",
  45334. image: {
  45335. source: "./media/characters/leanne-lycheborne/were.svg",
  45336. extra: 1485/1432,
  45337. bottom: 66/1551
  45338. }
  45339. },
  45340. },
  45341. [
  45342. {
  45343. name: "Normal",
  45344. height: math.unit(6 + 1/12, "feet"),
  45345. default: true
  45346. },
  45347. ]
  45348. ))
  45349. characterMakers.push(() => makeCharacter(
  45350. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45351. {
  45352. side: {
  45353. height: math.unit(13, "feet"),
  45354. name: "Side",
  45355. image: {
  45356. source: "./media/characters/kira-tyler/side.svg",
  45357. extra: 693/393,
  45358. bottom: 58/751
  45359. }
  45360. },
  45361. },
  45362. [
  45363. {
  45364. name: "Normal",
  45365. height: math.unit(13, "feet"),
  45366. default: true
  45367. },
  45368. ]
  45369. ))
  45370. characterMakers.push(() => makeCharacter(
  45371. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45372. {
  45373. front: {
  45374. height: math.unit(10.3, "feet"),
  45375. weight: math.unit(150, "lb"),
  45376. name: "Front",
  45377. image: {
  45378. source: "./media/characters/blaze/front.svg",
  45379. extra: 1378/1286,
  45380. bottom: 172/1550
  45381. }
  45382. },
  45383. },
  45384. [
  45385. {
  45386. name: "Normal",
  45387. height: math.unit(10.3, "feet"),
  45388. default: true
  45389. },
  45390. ]
  45391. ))
  45392. characterMakers.push(() => makeCharacter(
  45393. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45394. {
  45395. side: {
  45396. height: math.unit(2, "meters"),
  45397. weight: math.unit(400, "kg"),
  45398. name: "Side",
  45399. image: {
  45400. source: "./media/characters/anu/side.svg",
  45401. extra: 506/394,
  45402. bottom: 18/524
  45403. }
  45404. },
  45405. },
  45406. [
  45407. {
  45408. name: "Humanoid",
  45409. height: math.unit(2, "meters")
  45410. },
  45411. {
  45412. name: "Normal",
  45413. height: math.unit(5, "meters"),
  45414. default: true
  45415. },
  45416. ]
  45417. ))
  45418. characterMakers.push(() => makeCharacter(
  45419. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45420. {
  45421. front: {
  45422. height: math.unit(5 + 5/12, "feet"),
  45423. weight: math.unit(170, "lb"),
  45424. name: "Front",
  45425. image: {
  45426. source: "./media/characters/synx-the-lynx/front.svg",
  45427. extra: 1893/1745,
  45428. bottom: 17/1910
  45429. }
  45430. },
  45431. side: {
  45432. height: math.unit(5 + 5/12, "feet"),
  45433. weight: math.unit(170, "lb"),
  45434. name: "Side",
  45435. image: {
  45436. source: "./media/characters/synx-the-lynx/side.svg",
  45437. extra: 1884/1740,
  45438. bottom: 39/1923
  45439. }
  45440. },
  45441. back: {
  45442. height: math.unit(5 + 5/12, "feet"),
  45443. weight: math.unit(170, "lb"),
  45444. name: "Back",
  45445. image: {
  45446. source: "./media/characters/synx-the-lynx/back.svg",
  45447. extra: 1903/1755,
  45448. bottom: 14/1917
  45449. }
  45450. },
  45451. },
  45452. [
  45453. {
  45454. name: "Normal",
  45455. height: math.unit(5 + 5/12, "feet"),
  45456. default: true
  45457. },
  45458. ]
  45459. ))
  45460. characterMakers.push(() => makeCharacter(
  45461. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45462. {
  45463. back: {
  45464. height: math.unit(15, "feet"),
  45465. name: "Back",
  45466. image: {
  45467. source: "./media/characters/nadezda-fex/back.svg",
  45468. extra: 1695/1481,
  45469. bottom: 25/1720
  45470. }
  45471. },
  45472. },
  45473. [
  45474. {
  45475. name: "Normal",
  45476. height: math.unit(15, "feet"),
  45477. default: true
  45478. },
  45479. {
  45480. name: "Macro",
  45481. height: math.unit(2.5, "miles")
  45482. },
  45483. {
  45484. name: "Goddess",
  45485. height: math.unit(2, "multiverses")
  45486. },
  45487. ]
  45488. ))
  45489. characterMakers.push(() => makeCharacter(
  45490. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45491. {
  45492. front: {
  45493. height: math.unit(216, "cm"),
  45494. name: "Front",
  45495. image: {
  45496. source: "./media/characters/lev/front.svg",
  45497. extra: 1728/1670,
  45498. bottom: 82/1810
  45499. }
  45500. },
  45501. back: {
  45502. height: math.unit(216, "cm"),
  45503. name: "Back",
  45504. image: {
  45505. source: "./media/characters/lev/back.svg",
  45506. extra: 1738/1675,
  45507. bottom: 24/1762
  45508. }
  45509. },
  45510. dressed: {
  45511. height: math.unit(216, "cm"),
  45512. name: "Dressed",
  45513. image: {
  45514. source: "./media/characters/lev/dressed.svg",
  45515. extra: 1397/1351,
  45516. bottom: 73/1470
  45517. }
  45518. },
  45519. head: {
  45520. height: math.unit(0.51, "meter"),
  45521. name: "Head",
  45522. image: {
  45523. source: "./media/characters/lev/head.svg"
  45524. }
  45525. },
  45526. },
  45527. [
  45528. {
  45529. name: "Normal",
  45530. height: math.unit(216, "cm"),
  45531. default: true
  45532. },
  45533. {
  45534. name: "Relatively Macro",
  45535. height: math.unit(80, "meters")
  45536. },
  45537. {
  45538. name: "Megamacro",
  45539. height: math.unit(21600, "meters")
  45540. },
  45541. {
  45542. name: "Megamacro+",
  45543. height: math.unit(64800, "meters")
  45544. },
  45545. ]
  45546. ))
  45547. characterMakers.push(() => makeCharacter(
  45548. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45549. {
  45550. front: {
  45551. height: math.unit(2, "meters"),
  45552. weight: math.unit(80, "kg"),
  45553. name: "Front",
  45554. image: {
  45555. source: "./media/characters/moka/front.svg",
  45556. extra: 1337/1255,
  45557. bottom: 58/1395
  45558. }
  45559. },
  45560. },
  45561. [
  45562. {
  45563. name: "Micro",
  45564. height: math.unit(15, "cm")
  45565. },
  45566. {
  45567. name: "Normal",
  45568. height: math.unit(2, "meters"),
  45569. default: true
  45570. },
  45571. {
  45572. name: "Macro",
  45573. height: math.unit(20, "meters"),
  45574. },
  45575. ]
  45576. ))
  45577. characterMakers.push(() => makeCharacter(
  45578. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45579. {
  45580. front: {
  45581. height: math.unit(9, "feet"),
  45582. weight: math.unit(240, "lb"),
  45583. name: "Front",
  45584. image: {
  45585. source: "./media/characters/kuzco/front.svg",
  45586. extra: 1593/1487,
  45587. bottom: 32/1625
  45588. }
  45589. },
  45590. side: {
  45591. height: math.unit(9, "feet"),
  45592. weight: math.unit(240, "lb"),
  45593. name: "Side",
  45594. image: {
  45595. source: "./media/characters/kuzco/side.svg",
  45596. extra: 1575/1485,
  45597. bottom: 30/1605
  45598. }
  45599. },
  45600. back: {
  45601. height: math.unit(9, "feet"),
  45602. weight: math.unit(240, "lb"),
  45603. name: "Back",
  45604. image: {
  45605. source: "./media/characters/kuzco/back.svg",
  45606. extra: 1603/1514,
  45607. bottom: 14/1617
  45608. }
  45609. },
  45610. },
  45611. [
  45612. {
  45613. name: "Normal",
  45614. height: math.unit(9, "feet"),
  45615. default: true
  45616. },
  45617. ]
  45618. ))
  45619. characterMakers.push(() => makeCharacter(
  45620. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  45621. {
  45622. side: {
  45623. height: math.unit(2, "meters"),
  45624. weight: math.unit(300, "kg"),
  45625. name: "Side",
  45626. image: {
  45627. source: "./media/characters/ceruleus/side.svg",
  45628. extra: 1068/974,
  45629. bottom: 126/1194
  45630. }
  45631. },
  45632. },
  45633. [
  45634. {
  45635. name: "Normal",
  45636. height: math.unit(16, "meters"),
  45637. default: true
  45638. },
  45639. ]
  45640. ))
  45641. characterMakers.push(() => makeCharacter(
  45642. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  45643. {
  45644. front: {
  45645. height: math.unit(9, "feet"),
  45646. weight: math.unit(500, "kg"),
  45647. name: "Front",
  45648. image: {
  45649. source: "./media/characters/acouya/front.svg",
  45650. extra: 1660/1473,
  45651. bottom: 28/1688
  45652. }
  45653. },
  45654. },
  45655. [
  45656. {
  45657. name: "Normal",
  45658. height: math.unit(9, "feet"),
  45659. default: true
  45660. },
  45661. ]
  45662. ))
  45663. characterMakers.push(() => makeCharacter(
  45664. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  45665. {
  45666. front: {
  45667. height: math.unit(5 + 6/12, "feet"),
  45668. weight: math.unit(195, "lb"),
  45669. name: "Front",
  45670. image: {
  45671. source: "./media/characters/vant/front.svg",
  45672. extra: 1396/1320,
  45673. bottom: 20/1416
  45674. }
  45675. },
  45676. back: {
  45677. height: math.unit(5 + 6/12, "feet"),
  45678. weight: math.unit(195, "lb"),
  45679. name: "Back",
  45680. image: {
  45681. source: "./media/characters/vant/back.svg",
  45682. extra: 1396/1320,
  45683. bottom: 20/1416
  45684. }
  45685. },
  45686. maw: {
  45687. height: math.unit(0.75, "feet"),
  45688. name: "Maw",
  45689. image: {
  45690. source: "./media/characters/vant/maw.svg"
  45691. }
  45692. },
  45693. paw: {
  45694. height: math.unit(1.07, "feet"),
  45695. name: "Paw",
  45696. image: {
  45697. source: "./media/characters/vant/paw.svg"
  45698. }
  45699. },
  45700. },
  45701. [
  45702. {
  45703. name: "Micro",
  45704. height: math.unit(0.25, "inches")
  45705. },
  45706. {
  45707. name: "Normal",
  45708. height: math.unit(5 + 6/12, "feet"),
  45709. default: true
  45710. },
  45711. {
  45712. name: "Macro",
  45713. height: math.unit(75, "feet")
  45714. },
  45715. ]
  45716. ))
  45717. characterMakers.push(() => makeCharacter(
  45718. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  45719. {
  45720. front: {
  45721. height: math.unit(30, "meters"),
  45722. weight: math.unit(363, "tons"),
  45723. name: "Front",
  45724. image: {
  45725. source: "./media/characters/ahra/front.svg",
  45726. extra: 1914/1814,
  45727. bottom: 46/1960
  45728. }
  45729. },
  45730. },
  45731. [
  45732. {
  45733. name: "Macro",
  45734. height: math.unit(30, "meters"),
  45735. default: true
  45736. },
  45737. ]
  45738. ))
  45739. characterMakers.push(() => makeCharacter(
  45740. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  45741. {
  45742. undressed: {
  45743. height: math.unit(2, "m"),
  45744. weight: math.unit(250, "kg"),
  45745. name: "Undressed",
  45746. image: {
  45747. source: "./media/characters/coriander/undressed.svg",
  45748. extra: 1757/1606,
  45749. bottom: 107/1864
  45750. }
  45751. },
  45752. dressed: {
  45753. height: math.unit(2, "m"),
  45754. weight: math.unit(250, "kg"),
  45755. name: "Dressed",
  45756. image: {
  45757. source: "./media/characters/coriander/dressed.svg",
  45758. extra: 1757/1606,
  45759. bottom: 107/1864
  45760. }
  45761. },
  45762. },
  45763. [
  45764. {
  45765. name: "Normal",
  45766. height: math.unit(4, "meters"),
  45767. default: true
  45768. },
  45769. {
  45770. name: "XL",
  45771. height: math.unit(6, "meters")
  45772. },
  45773. {
  45774. name: "XXL",
  45775. height: math.unit(8, "meters")
  45776. },
  45777. ]
  45778. ))
  45779. characterMakers.push(() => makeCharacter(
  45780. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  45781. {
  45782. front: {
  45783. height: math.unit(6, "feet"),
  45784. name: "Front",
  45785. image: {
  45786. source: "./media/characters/syrinx/front.svg",
  45787. extra: 1557/1259,
  45788. bottom: 171/1728
  45789. }
  45790. },
  45791. },
  45792. [
  45793. {
  45794. name: "Normal",
  45795. height: math.unit(6 + 3/12, "feet"),
  45796. default: true
  45797. },
  45798. ]
  45799. ))
  45800. characterMakers.push(() => makeCharacter(
  45801. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  45802. {
  45803. front: {
  45804. height: math.unit(11 + 6/12, "feet"),
  45805. weight: math.unit(1.5, "tons"),
  45806. name: "Front",
  45807. image: {
  45808. source: "./media/characters/bor/front.svg",
  45809. extra: 1189/1109,
  45810. bottom: 170/1359
  45811. }
  45812. },
  45813. },
  45814. [
  45815. {
  45816. name: "Normal",
  45817. height: math.unit(11 + 6/12, "feet"),
  45818. default: true
  45819. },
  45820. {
  45821. name: "Macro",
  45822. height: math.unit(32 + 9/12, "feet")
  45823. },
  45824. ]
  45825. ))
  45826. characterMakers.push(() => makeCharacter(
  45827. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  45828. {
  45829. anthro: {
  45830. height: math.unit(9, "feet"),
  45831. weight: math.unit(2076, "lb"),
  45832. name: "Anthro",
  45833. image: {
  45834. source: "./media/characters/abacus/anthro.svg",
  45835. extra: 1540/1494,
  45836. bottom: 233/1773
  45837. }
  45838. },
  45839. pigeon: {
  45840. height: math.unit(1, "feet"),
  45841. name: "Pigeon",
  45842. image: {
  45843. source: "./media/characters/abacus/pigeon.svg",
  45844. extra: 528/525,
  45845. bottom: 46/574
  45846. }
  45847. },
  45848. },
  45849. [
  45850. {
  45851. name: "Normal",
  45852. height: math.unit(9, "feet"),
  45853. default: true
  45854. },
  45855. ]
  45856. ))
  45857. characterMakers.push(() => makeCharacter(
  45858. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  45859. {
  45860. side: {
  45861. height: math.unit(6, "feet"),
  45862. name: "Side",
  45863. image: {
  45864. source: "./media/characters/delkhan/side.svg",
  45865. extra: 1884/1786,
  45866. bottom: 308/2192
  45867. }
  45868. },
  45869. head: {
  45870. height: math.unit(3.38, "feet"),
  45871. name: "Head",
  45872. image: {
  45873. source: "./media/characters/delkhan/head.svg"
  45874. }
  45875. },
  45876. },
  45877. [
  45878. {
  45879. name: "Normal",
  45880. height: math.unit(72, "feet"),
  45881. default: true
  45882. },
  45883. {
  45884. name: "Giant",
  45885. height: math.unit(172, "feet")
  45886. },
  45887. ]
  45888. ))
  45889. characterMakers.push(() => makeCharacter(
  45890. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  45891. {
  45892. standing: {
  45893. height: math.unit(6, "feet"),
  45894. name: "Standing",
  45895. image: {
  45896. source: "./media/characters/euchidat/standing.svg",
  45897. extra: 1612/1553,
  45898. bottom: 116/1728
  45899. }
  45900. },
  45901. leaning: {
  45902. height: math.unit(6, "feet"),
  45903. name: "Leaning",
  45904. image: {
  45905. source: "./media/characters/euchidat/leaning.svg",
  45906. extra: 1719/1674,
  45907. bottom: 27/1746
  45908. }
  45909. },
  45910. },
  45911. [
  45912. {
  45913. name: "Normal",
  45914. height: math.unit(175, "feet"),
  45915. default: true
  45916. },
  45917. {
  45918. name: "Megamacro",
  45919. height: math.unit(190, "miles")
  45920. },
  45921. {
  45922. name: "Gigamacro",
  45923. height: math.unit(190000, "miles")
  45924. },
  45925. ]
  45926. ))
  45927. characterMakers.push(() => makeCharacter(
  45928. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  45929. {
  45930. front: {
  45931. height: math.unit(6, "feet"),
  45932. weight: math.unit(150, "lb"),
  45933. name: "Front",
  45934. image: {
  45935. source: "./media/characters/rebecca-stack/front.svg",
  45936. extra: 1256/1201,
  45937. bottom: 18/1274
  45938. }
  45939. },
  45940. },
  45941. [
  45942. {
  45943. name: "Normal",
  45944. height: math.unit(5 + 8/12, "feet"),
  45945. default: true
  45946. },
  45947. {
  45948. name: "Demolitionist",
  45949. height: math.unit(200, "feet")
  45950. },
  45951. {
  45952. name: "Out of Control",
  45953. height: math.unit(2, "miles")
  45954. },
  45955. {
  45956. name: "Giga",
  45957. height: math.unit(7200, "miles")
  45958. },
  45959. ]
  45960. ))
  45961. characterMakers.push(() => makeCharacter(
  45962. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  45963. {
  45964. front: {
  45965. height: math.unit(6, "feet"),
  45966. weight: math.unit(150, "lb"),
  45967. name: "Front",
  45968. image: {
  45969. source: "./media/characters/jenny-cartwright/front.svg",
  45970. extra: 1384/1376,
  45971. bottom: 58/1442
  45972. }
  45973. },
  45974. },
  45975. [
  45976. {
  45977. name: "Normal",
  45978. height: math.unit(6 + 7/12, "feet"),
  45979. default: true
  45980. },
  45981. {
  45982. name: "Librarian",
  45983. height: math.unit(55, "feet")
  45984. },
  45985. {
  45986. name: "Sightseer",
  45987. height: math.unit(50, "miles")
  45988. },
  45989. {
  45990. name: "Giga",
  45991. height: math.unit(30000, "miles")
  45992. },
  45993. ]
  45994. ))
  45995. characterMakers.push(() => makeCharacter(
  45996. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  45997. {
  45998. nude: {
  45999. height: math.unit(8, "feet"),
  46000. weight: math.unit(225, "lb"),
  46001. name: "Nude",
  46002. image: {
  46003. source: "./media/characters/marvy/nude.svg",
  46004. extra: 1900/1683,
  46005. bottom: 89/1989
  46006. }
  46007. },
  46008. dressed: {
  46009. height: math.unit(8, "feet"),
  46010. weight: math.unit(225, "lb"),
  46011. name: "Dressed",
  46012. image: {
  46013. source: "./media/characters/marvy/dressed.svg",
  46014. extra: 1900/1683,
  46015. bottom: 89/1989
  46016. }
  46017. },
  46018. head: {
  46019. height: math.unit(2.85, "feet"),
  46020. name: "Head",
  46021. image: {
  46022. source: "./media/characters/marvy/head.svg"
  46023. }
  46024. },
  46025. },
  46026. [
  46027. {
  46028. name: "Normal",
  46029. height: math.unit(8, "feet"),
  46030. default: true
  46031. },
  46032. ]
  46033. ))
  46034. characterMakers.push(() => makeCharacter(
  46035. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46036. {
  46037. front: {
  46038. height: math.unit(8, "feet"),
  46039. weight: math.unit(250, "lb"),
  46040. name: "Front",
  46041. image: {
  46042. source: "./media/characters/leah/front.svg",
  46043. extra: 1257/1149,
  46044. bottom: 109/1366
  46045. }
  46046. },
  46047. },
  46048. [
  46049. {
  46050. name: "Normal",
  46051. height: math.unit(8, "feet"),
  46052. default: true
  46053. },
  46054. {
  46055. name: "Minimacro",
  46056. height: math.unit(40, "feet")
  46057. },
  46058. {
  46059. name: "Macro",
  46060. height: math.unit(124, "feet")
  46061. },
  46062. {
  46063. name: "Megamacro",
  46064. height: math.unit(850, "feet")
  46065. },
  46066. ]
  46067. ))
  46068. characterMakers.push(() => makeCharacter(
  46069. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46070. {
  46071. side: {
  46072. height: math.unit(13 + 6/12, "feet"),
  46073. weight: math.unit(3200, "lb"),
  46074. name: "Side",
  46075. image: {
  46076. source: "./media/characters/alvir/side.svg",
  46077. extra: 896/589,
  46078. bottom: 26/922
  46079. }
  46080. },
  46081. },
  46082. [
  46083. {
  46084. name: "Normal",
  46085. height: math.unit(13 + 6/12, "feet"),
  46086. default: true
  46087. },
  46088. ]
  46089. ))
  46090. characterMakers.push(() => makeCharacter(
  46091. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46092. {
  46093. front: {
  46094. height: math.unit(5 + 4/12, "feet"),
  46095. weight: math.unit(236, "lb"),
  46096. name: "Front",
  46097. image: {
  46098. source: "./media/characters/zaina-khalil/front.svg",
  46099. extra: 1533/1485,
  46100. bottom: 94/1627
  46101. }
  46102. },
  46103. side: {
  46104. height: math.unit(5 + 4/12, "feet"),
  46105. weight: math.unit(236, "lb"),
  46106. name: "Side",
  46107. image: {
  46108. source: "./media/characters/zaina-khalil/side.svg",
  46109. extra: 1537/1498,
  46110. bottom: 66/1603
  46111. }
  46112. },
  46113. back: {
  46114. height: math.unit(5 + 4/12, "feet"),
  46115. weight: math.unit(236, "lb"),
  46116. name: "Back",
  46117. image: {
  46118. source: "./media/characters/zaina-khalil/back.svg",
  46119. extra: 1546/1494,
  46120. bottom: 89/1635
  46121. }
  46122. },
  46123. },
  46124. [
  46125. {
  46126. name: "Normal",
  46127. height: math.unit(5 + 4/12, "feet"),
  46128. default: true
  46129. },
  46130. ]
  46131. ))
  46132. characterMakers.push(() => makeCharacter(
  46133. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46134. {
  46135. side: {
  46136. height: math.unit(12, "feet"),
  46137. weight: math.unit(4000, "lb"),
  46138. name: "Side",
  46139. image: {
  46140. source: "./media/characters/terry/side.svg",
  46141. extra: 1518/1439,
  46142. bottom: 149/1667
  46143. }
  46144. },
  46145. },
  46146. [
  46147. {
  46148. name: "Normal",
  46149. height: math.unit(12, "feet"),
  46150. default: true
  46151. },
  46152. ]
  46153. ))
  46154. characterMakers.push(() => makeCharacter(
  46155. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46156. {
  46157. front: {
  46158. height: math.unit(12, "feet"),
  46159. weight: math.unit(1500, "lb"),
  46160. name: "Front",
  46161. image: {
  46162. source: "./media/characters/kahea/front.svg",
  46163. extra: 1722/1617,
  46164. bottom: 179/1901
  46165. }
  46166. },
  46167. },
  46168. [
  46169. {
  46170. name: "Normal",
  46171. height: math.unit(12, "feet"),
  46172. default: true
  46173. },
  46174. ]
  46175. ))
  46176. characterMakers.push(() => makeCharacter(
  46177. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46178. {
  46179. demonFront: {
  46180. height: math.unit(36, "feet"),
  46181. name: "Front",
  46182. image: {
  46183. source: "./media/characters/alex-xuria/demon-front.svg",
  46184. extra: 1705/1673,
  46185. bottom: 198/1903
  46186. },
  46187. form: "demon",
  46188. default: true
  46189. },
  46190. demonBack: {
  46191. height: math.unit(36, "feet"),
  46192. name: "Back",
  46193. image: {
  46194. source: "./media/characters/alex-xuria/demon-back.svg",
  46195. extra: 1725/1693,
  46196. bottom: 70/1795
  46197. },
  46198. form: "demon"
  46199. },
  46200. demonHead: {
  46201. height: math.unit(2.14, "meters"),
  46202. name: "Head",
  46203. image: {
  46204. source: "./media/characters/alex-xuria/demon-head.svg"
  46205. },
  46206. form: "demon"
  46207. },
  46208. demonHand: {
  46209. height: math.unit(1.61, "meters"),
  46210. name: "Hand",
  46211. image: {
  46212. source: "./media/characters/alex-xuria/demon-hand.svg"
  46213. },
  46214. form: "demon"
  46215. },
  46216. demonPaw: {
  46217. height: math.unit(1.35, "meters"),
  46218. name: "Paw",
  46219. image: {
  46220. source: "./media/characters/alex-xuria/demon-paw.svg"
  46221. },
  46222. form: "demon"
  46223. },
  46224. demonFoot: {
  46225. height: math.unit(2.2, "meters"),
  46226. name: "Foot",
  46227. image: {
  46228. source: "./media/characters/alex-xuria/demon-foot.svg"
  46229. },
  46230. form: "demon"
  46231. },
  46232. demonCock: {
  46233. height: math.unit(1.74, "meters"),
  46234. name: "Cock",
  46235. image: {
  46236. source: "./media/characters/alex-xuria/demon-cock.svg"
  46237. },
  46238. form: "demon"
  46239. },
  46240. demonTailClosed: {
  46241. height: math.unit(1.47, "meters"),
  46242. name: "Tail (Closed)",
  46243. image: {
  46244. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46245. },
  46246. form: "demon"
  46247. },
  46248. demonTailOpen: {
  46249. height: math.unit(2.85, "meters"),
  46250. name: "Tail (Open)",
  46251. image: {
  46252. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46253. },
  46254. form: "demon"
  46255. },
  46256. incubusFront: {
  46257. height: math.unit(12, "feet"),
  46258. name: "Front",
  46259. image: {
  46260. source: "./media/characters/alex-xuria/incubus-front.svg",
  46261. extra: 1754/1677,
  46262. bottom: 125/1879
  46263. },
  46264. form: "incubus",
  46265. default: true
  46266. },
  46267. incubusBack: {
  46268. height: math.unit(12, "feet"),
  46269. name: "Back",
  46270. image: {
  46271. source: "./media/characters/alex-xuria/incubus-back.svg",
  46272. extra: 1702/1647,
  46273. bottom: 30/1732
  46274. },
  46275. form: "incubus"
  46276. },
  46277. incubusHead: {
  46278. height: math.unit(3.45, "feet"),
  46279. name: "Head",
  46280. image: {
  46281. source: "./media/characters/alex-xuria/incubus-head.svg"
  46282. },
  46283. form: "incubus"
  46284. },
  46285. rabbitFront: {
  46286. height: math.unit(6, "feet"),
  46287. name: "Front",
  46288. image: {
  46289. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46290. extra: 1369/1349,
  46291. bottom: 45/1414
  46292. },
  46293. form: "rabbit",
  46294. default: true
  46295. },
  46296. rabbitSide: {
  46297. height: math.unit(6, "feet"),
  46298. name: "Side",
  46299. image: {
  46300. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46301. extra: 1370/1356,
  46302. bottom: 37/1407
  46303. },
  46304. form: "rabbit"
  46305. },
  46306. rabbitBack: {
  46307. height: math.unit(6, "feet"),
  46308. name: "Back",
  46309. image: {
  46310. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46311. extra: 1375/1358,
  46312. bottom: 43/1418
  46313. },
  46314. form: "rabbit"
  46315. },
  46316. },
  46317. [
  46318. {
  46319. name: "Normal",
  46320. height: math.unit(6, "feet"),
  46321. default: true,
  46322. form: "rabbit"
  46323. },
  46324. {
  46325. name: "Incubus",
  46326. height: math.unit(12, "feet"),
  46327. default: true,
  46328. form: "incubus"
  46329. },
  46330. {
  46331. name: "Demon",
  46332. height: math.unit(36, "feet"),
  46333. default: true,
  46334. form: "demon"
  46335. }
  46336. ],
  46337. {
  46338. "demon": {
  46339. name: "Demon",
  46340. default: true
  46341. },
  46342. "incubus": {
  46343. name: "Incubus",
  46344. },
  46345. "rabbit": {
  46346. name: "Rabbit"
  46347. }
  46348. }
  46349. ))
  46350. characterMakers.push(() => makeCharacter(
  46351. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46352. {
  46353. front: {
  46354. height: math.unit(7 + 5/12, "feet"),
  46355. weight: math.unit(510, "lb"),
  46356. name: "Front",
  46357. image: {
  46358. source: "./media/characters/syrup/front.svg",
  46359. extra: 932/916,
  46360. bottom: 26/958
  46361. }
  46362. },
  46363. },
  46364. [
  46365. {
  46366. name: "Normal",
  46367. height: math.unit(7 + 5/12, "feet"),
  46368. default: true
  46369. },
  46370. {
  46371. name: "Big",
  46372. height: math.unit(50, "feet")
  46373. },
  46374. {
  46375. name: "Macro",
  46376. height: math.unit(300, "feet")
  46377. },
  46378. {
  46379. name: "Megamacro",
  46380. height: math.unit(1, "mile")
  46381. },
  46382. ]
  46383. ))
  46384. characterMakers.push(() => makeCharacter(
  46385. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46386. {
  46387. front: {
  46388. height: math.unit(6 + 9/12, "feet"),
  46389. name: "Front",
  46390. image: {
  46391. source: "./media/characters/zeimne/front.svg",
  46392. extra: 1969/1806,
  46393. bottom: 53/2022
  46394. }
  46395. },
  46396. },
  46397. [
  46398. {
  46399. name: "Normal",
  46400. height: math.unit(6 + 9/12, "feet"),
  46401. default: true
  46402. },
  46403. {
  46404. name: "Giant",
  46405. height: math.unit(550, "feet")
  46406. },
  46407. {
  46408. name: "Mega",
  46409. height: math.unit(3, "miles")
  46410. },
  46411. {
  46412. name: "Giga",
  46413. height: math.unit(250, "miles")
  46414. },
  46415. {
  46416. name: "Tera",
  46417. height: math.unit(1, "AU")
  46418. },
  46419. ]
  46420. ))
  46421. characterMakers.push(() => makeCharacter(
  46422. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46423. {
  46424. front: {
  46425. height: math.unit(5 + 2/12, "feet"),
  46426. name: "Front",
  46427. image: {
  46428. source: "./media/characters/grar/front.svg",
  46429. extra: 1331/1119,
  46430. bottom: 60/1391
  46431. }
  46432. },
  46433. back: {
  46434. height: math.unit(5 + 2/12, "feet"),
  46435. name: "Back",
  46436. image: {
  46437. source: "./media/characters/grar/back.svg",
  46438. extra: 1385/1169,
  46439. bottom: 23/1408
  46440. }
  46441. },
  46442. },
  46443. [
  46444. {
  46445. name: "Normal",
  46446. height: math.unit(5 + 2/12, "feet"),
  46447. default: true
  46448. },
  46449. ]
  46450. ))
  46451. characterMakers.push(() => makeCharacter(
  46452. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46453. {
  46454. front: {
  46455. height: math.unit(13 + 7/12, "feet"),
  46456. weight: math.unit(2200, "lb"),
  46457. name: "Front",
  46458. image: {
  46459. source: "./media/characters/endraya/front.svg",
  46460. extra: 1289/1215,
  46461. bottom: 50/1339
  46462. }
  46463. },
  46464. nude: {
  46465. height: math.unit(13 + 7/12, "feet"),
  46466. weight: math.unit(2200, "lb"),
  46467. name: "Nude",
  46468. image: {
  46469. source: "./media/characters/endraya/nude.svg",
  46470. extra: 1247/1171,
  46471. bottom: 40/1287
  46472. }
  46473. },
  46474. head: {
  46475. height: math.unit(2.6, "feet"),
  46476. name: "Head",
  46477. image: {
  46478. source: "./media/characters/endraya/head.svg"
  46479. }
  46480. },
  46481. slit: {
  46482. height: math.unit(3.4, "feet"),
  46483. name: "Slit",
  46484. image: {
  46485. source: "./media/characters/endraya/slit.svg"
  46486. }
  46487. },
  46488. },
  46489. [
  46490. {
  46491. name: "Normal",
  46492. height: math.unit(13 + 7/12, "feet"),
  46493. default: true
  46494. },
  46495. {
  46496. name: "Macro",
  46497. height: math.unit(200, "feet")
  46498. },
  46499. ]
  46500. ))
  46501. characterMakers.push(() => makeCharacter(
  46502. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46503. {
  46504. front: {
  46505. height: math.unit(1.81, "meters"),
  46506. weight: math.unit(69, "kg"),
  46507. name: "Front",
  46508. image: {
  46509. source: "./media/characters/rodryana/front.svg",
  46510. extra: 2002/1921,
  46511. bottom: 53/2055
  46512. }
  46513. },
  46514. back: {
  46515. height: math.unit(1.81, "meters"),
  46516. weight: math.unit(69, "kg"),
  46517. name: "Back",
  46518. image: {
  46519. source: "./media/characters/rodryana/back.svg",
  46520. extra: 1993/1926,
  46521. bottom: 48/2041
  46522. }
  46523. },
  46524. maw: {
  46525. height: math.unit(0.19769417475, "meters"),
  46526. name: "Maw",
  46527. image: {
  46528. source: "./media/characters/rodryana/maw.svg"
  46529. }
  46530. },
  46531. slit: {
  46532. height: math.unit(0.31631067961, "meters"),
  46533. name: "Slit",
  46534. image: {
  46535. source: "./media/characters/rodryana/slit.svg"
  46536. }
  46537. },
  46538. },
  46539. [
  46540. {
  46541. name: "Normal",
  46542. height: math.unit(1.81, "meters")
  46543. },
  46544. {
  46545. name: "Mini Macro",
  46546. height: math.unit(181, "meters")
  46547. },
  46548. {
  46549. name: "Macro",
  46550. height: math.unit(452, "meters"),
  46551. default: true
  46552. },
  46553. {
  46554. name: "Mega Macro",
  46555. height: math.unit(1.375, "km")
  46556. },
  46557. {
  46558. name: "Giga Macro",
  46559. height: math.unit(13.575, "km")
  46560. },
  46561. ]
  46562. ))
  46563. characterMakers.push(() => makeCharacter(
  46564. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46565. {
  46566. front: {
  46567. height: math.unit(6, "feet"),
  46568. weight: math.unit(1000, "lb"),
  46569. name: "Front",
  46570. image: {
  46571. source: "./media/characters/asaya/front.svg",
  46572. extra: 1460/1200,
  46573. bottom: 71/1531
  46574. }
  46575. },
  46576. },
  46577. [
  46578. {
  46579. name: "Normal",
  46580. height: math.unit(8, "km"),
  46581. default: true
  46582. },
  46583. ]
  46584. ))
  46585. characterMakers.push(() => makeCharacter(
  46586. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46587. {
  46588. front: {
  46589. height: math.unit(3.5, "meters"),
  46590. name: "Front",
  46591. image: {
  46592. source: "./media/characters/sarzu-and-israz/front.svg",
  46593. extra: 1570/1558,
  46594. bottom: 150/1720
  46595. },
  46596. },
  46597. back: {
  46598. height: math.unit(3.5, "meters"),
  46599. name: "Back",
  46600. image: {
  46601. source: "./media/characters/sarzu-and-israz/back.svg",
  46602. extra: 1523/1509,
  46603. bottom: 132/1655
  46604. },
  46605. },
  46606. frontFemale: {
  46607. height: math.unit(3.5, "meters"),
  46608. name: "Front (Female)",
  46609. image: {
  46610. source: "./media/characters/sarzu-and-israz/front-female.svg",
  46611. extra: 1570/1558,
  46612. bottom: 150/1720
  46613. },
  46614. },
  46615. frontHerm: {
  46616. height: math.unit(3.5, "meters"),
  46617. name: "Front (Herm)",
  46618. image: {
  46619. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  46620. extra: 1570/1558,
  46621. bottom: 150/1720
  46622. },
  46623. },
  46624. },
  46625. [
  46626. {
  46627. name: "Normal",
  46628. height: math.unit(3.5, "meters"),
  46629. default: true,
  46630. },
  46631. {
  46632. name: "Macro",
  46633. height: math.unit(65.5, "meters"),
  46634. },
  46635. ],
  46636. ))
  46637. characterMakers.push(() => makeCharacter(
  46638. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  46639. {
  46640. front: {
  46641. height: math.unit(6, "feet"),
  46642. weight: math.unit(250, "lb"),
  46643. name: "Front",
  46644. image: {
  46645. source: "./media/characters/zenimma/front.svg",
  46646. extra: 1346/1320,
  46647. bottom: 58/1404
  46648. }
  46649. },
  46650. back: {
  46651. height: math.unit(6, "feet"),
  46652. weight: math.unit(250, "lb"),
  46653. name: "Back",
  46654. image: {
  46655. source: "./media/characters/zenimma/back.svg",
  46656. extra: 1324/1308,
  46657. bottom: 44/1368
  46658. }
  46659. },
  46660. dick: {
  46661. height: math.unit(1.44, "feet"),
  46662. name: "Dick",
  46663. image: {
  46664. source: "./media/characters/zenimma/dick.svg"
  46665. }
  46666. },
  46667. },
  46668. [
  46669. {
  46670. name: "Canon Height",
  46671. height: math.unit(66, "miles"),
  46672. default: true
  46673. },
  46674. ]
  46675. ))
  46676. characterMakers.push(() => makeCharacter(
  46677. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  46678. {
  46679. nude: {
  46680. height: math.unit(6, "feet"),
  46681. weight: math.unit(150, "lb"),
  46682. name: "Nude",
  46683. image: {
  46684. source: "./media/characters/shavon/nude.svg",
  46685. extra: 1242/1096,
  46686. bottom: 98/1340
  46687. }
  46688. },
  46689. dressed: {
  46690. height: math.unit(6, "feet"),
  46691. weight: math.unit(150, "lb"),
  46692. name: "Dressed",
  46693. image: {
  46694. source: "./media/characters/shavon/dressed.svg",
  46695. extra: 1242/1096,
  46696. bottom: 98/1340
  46697. }
  46698. },
  46699. },
  46700. [
  46701. {
  46702. name: "Macro",
  46703. height: math.unit(255, "feet"),
  46704. default: true
  46705. },
  46706. ]
  46707. ))
  46708. characterMakers.push(() => makeCharacter(
  46709. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  46710. {
  46711. front: {
  46712. height: math.unit(6, "feet"),
  46713. name: "Front",
  46714. image: {
  46715. source: "./media/characters/steph/front.svg",
  46716. extra: 1430/1330,
  46717. bottom: 54/1484
  46718. }
  46719. },
  46720. },
  46721. [
  46722. {
  46723. name: "Normal",
  46724. height: math.unit(6, "feet"),
  46725. default: true
  46726. },
  46727. ]
  46728. ))
  46729. characterMakers.push(() => makeCharacter(
  46730. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  46731. {
  46732. front: {
  46733. height: math.unit(9, "feet"),
  46734. weight: math.unit(400, "lb"),
  46735. name: "Front",
  46736. image: {
  46737. source: "./media/characters/kil'aman/front.svg",
  46738. extra: 1210/1159,
  46739. bottom: 109/1319
  46740. }
  46741. },
  46742. head: {
  46743. height: math.unit(2.14, "feet"),
  46744. name: "Head",
  46745. image: {
  46746. source: "./media/characters/kil'aman/head.svg"
  46747. }
  46748. },
  46749. maw: {
  46750. height: math.unit(1.21, "feet"),
  46751. name: "Maw",
  46752. image: {
  46753. source: "./media/characters/kil'aman/maw.svg"
  46754. }
  46755. },
  46756. foot: {
  46757. height: math.unit(1.7, "feet"),
  46758. name: "Foot",
  46759. image: {
  46760. source: "./media/characters/kil'aman/foot.svg"
  46761. }
  46762. },
  46763. dick: {
  46764. height: math.unit(2.1, "feet"),
  46765. name: "Dick",
  46766. image: {
  46767. source: "./media/characters/kil'aman/dick.svg"
  46768. }
  46769. },
  46770. },
  46771. [
  46772. {
  46773. name: "Normal",
  46774. height: math.unit(9, "feet")
  46775. },
  46776. {
  46777. name: "Canon Height",
  46778. height: math.unit(10, "miles"),
  46779. default: true
  46780. },
  46781. {
  46782. name: "Maximum",
  46783. height: math.unit(6e9, "miles")
  46784. },
  46785. ]
  46786. ))
  46787. characterMakers.push(() => makeCharacter(
  46788. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  46789. {
  46790. front: {
  46791. height: math.unit(90, "feet"),
  46792. weight: math.unit(675000, "lb"),
  46793. name: "Front",
  46794. image: {
  46795. source: "./media/characters/qadan/front.svg",
  46796. extra: 1012/1004,
  46797. bottom: 78/1090
  46798. }
  46799. },
  46800. back: {
  46801. height: math.unit(90, "feet"),
  46802. weight: math.unit(675000, "lb"),
  46803. name: "Back",
  46804. image: {
  46805. source: "./media/characters/qadan/back.svg",
  46806. extra: 1042/1031,
  46807. bottom: 55/1097
  46808. }
  46809. },
  46810. armored: {
  46811. height: math.unit(90, "feet"),
  46812. weight: math.unit(675000, "lb"),
  46813. name: "Armored",
  46814. image: {
  46815. source: "./media/characters/qadan/armored.svg",
  46816. extra: 1047/1037,
  46817. bottom: 48/1095
  46818. }
  46819. },
  46820. },
  46821. [
  46822. {
  46823. name: "Normal",
  46824. height: math.unit(90, "feet"),
  46825. default: true
  46826. },
  46827. ]
  46828. ))
  46829. characterMakers.push(() => makeCharacter(
  46830. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  46831. {
  46832. front: {
  46833. height: math.unit(6, "feet"),
  46834. weight: math.unit(225, "lb"),
  46835. name: "Front",
  46836. image: {
  46837. source: "./media/characters/brooke/front.svg",
  46838. extra: 1050/1010,
  46839. bottom: 66/1116
  46840. }
  46841. },
  46842. back: {
  46843. height: math.unit(6, "feet"),
  46844. weight: math.unit(225, "lb"),
  46845. name: "Back",
  46846. image: {
  46847. source: "./media/characters/brooke/back.svg",
  46848. extra: 1053/1013,
  46849. bottom: 41/1094
  46850. }
  46851. },
  46852. dressed: {
  46853. height: math.unit(6, "feet"),
  46854. weight: math.unit(225, "lb"),
  46855. name: "Dressed",
  46856. image: {
  46857. source: "./media/characters/brooke/dressed.svg",
  46858. extra: 1050/1010,
  46859. bottom: 66/1116
  46860. }
  46861. },
  46862. },
  46863. [
  46864. {
  46865. name: "Canon Height",
  46866. height: math.unit(500, "miles"),
  46867. default: true
  46868. },
  46869. ]
  46870. ))
  46871. characterMakers.push(() => makeCharacter(
  46872. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  46873. {
  46874. front: {
  46875. height: math.unit(6 + 2/12, "feet"),
  46876. weight: math.unit(210, "lb"),
  46877. name: "Front",
  46878. image: {
  46879. source: "./media/characters/wubs/front.svg",
  46880. extra: 1345/1325,
  46881. bottom: 70/1415
  46882. }
  46883. },
  46884. back: {
  46885. height: math.unit(6 + 2/12, "feet"),
  46886. weight: math.unit(210, "lb"),
  46887. name: "Back",
  46888. image: {
  46889. source: "./media/characters/wubs/back.svg",
  46890. extra: 1296/1275,
  46891. bottom: 58/1354
  46892. }
  46893. },
  46894. },
  46895. [
  46896. {
  46897. name: "Normal",
  46898. height: math.unit(6 + 2/12, "feet"),
  46899. default: true
  46900. },
  46901. {
  46902. name: "Macro",
  46903. height: math.unit(1000, "feet")
  46904. },
  46905. {
  46906. name: "Megamacro",
  46907. height: math.unit(1, "mile")
  46908. },
  46909. ]
  46910. ))
  46911. characterMakers.push(() => makeCharacter(
  46912. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  46913. {
  46914. front: {
  46915. height: math.unit(4, "feet"),
  46916. weight: math.unit(120, "lb"),
  46917. name: "Front",
  46918. image: {
  46919. source: "./media/characters/blue/front.svg",
  46920. extra: 1636/1525,
  46921. bottom: 43/1679
  46922. }
  46923. },
  46924. back: {
  46925. height: math.unit(4, "feet"),
  46926. weight: math.unit(120, "lb"),
  46927. name: "Back",
  46928. image: {
  46929. source: "./media/characters/blue/back.svg",
  46930. extra: 1660/1560,
  46931. bottom: 57/1717
  46932. }
  46933. },
  46934. paws: {
  46935. height: math.unit(0.826, "feet"),
  46936. name: "Paws",
  46937. image: {
  46938. source: "./media/characters/blue/paws.svg"
  46939. }
  46940. },
  46941. },
  46942. [
  46943. {
  46944. name: "Micro",
  46945. height: math.unit(3, "inches")
  46946. },
  46947. {
  46948. name: "Normal",
  46949. height: math.unit(4, "feet"),
  46950. default: true
  46951. },
  46952. {
  46953. name: "Femenine Form",
  46954. height: math.unit(14, "feet")
  46955. },
  46956. {
  46957. name: "Werebat Form",
  46958. height: math.unit(18, "feet")
  46959. },
  46960. ]
  46961. ))
  46962. characterMakers.push(() => makeCharacter(
  46963. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  46964. {
  46965. female: {
  46966. height: math.unit(7 + 4/12, "feet"),
  46967. weight: math.unit(243, "lb"),
  46968. name: "Female",
  46969. image: {
  46970. source: "./media/characters/kaya/female.svg",
  46971. extra: 975/898,
  46972. bottom: 34/1009
  46973. }
  46974. },
  46975. herm: {
  46976. height: math.unit(7 + 4/12, "feet"),
  46977. weight: math.unit(243, "lb"),
  46978. name: "Herm",
  46979. image: {
  46980. source: "./media/characters/kaya/herm.svg",
  46981. extra: 975/898,
  46982. bottom: 34/1009
  46983. }
  46984. },
  46985. },
  46986. [
  46987. {
  46988. name: "Normal",
  46989. height: math.unit(7 + 4/12, "feet"),
  46990. default: true
  46991. },
  46992. ]
  46993. ))
  46994. characterMakers.push(() => makeCharacter(
  46995. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  46996. {
  46997. female: {
  46998. height: math.unit(9 + 4/12, "feet"),
  46999. weight: math.unit(398, "lb"),
  47000. name: "Female",
  47001. image: {
  47002. source: "./media/characters/kassandra/female.svg",
  47003. extra: 908/839,
  47004. bottom: 61/969
  47005. }
  47006. },
  47007. intersex: {
  47008. height: math.unit(9 + 4/12, "feet"),
  47009. weight: math.unit(398, "lb"),
  47010. name: "Intersex",
  47011. image: {
  47012. source: "./media/characters/kassandra/intersex.svg",
  47013. extra: 908/839,
  47014. bottom: 61/969
  47015. }
  47016. },
  47017. },
  47018. [
  47019. {
  47020. name: "Normal",
  47021. height: math.unit(9 + 4/12, "feet"),
  47022. default: true
  47023. },
  47024. ]
  47025. ))
  47026. characterMakers.push(() => makeCharacter(
  47027. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47028. {
  47029. front: {
  47030. height: math.unit(3, "meters"),
  47031. name: "Front",
  47032. image: {
  47033. source: "./media/characters/amy/front.svg",
  47034. extra: 1380/1343,
  47035. bottom: 70/1450
  47036. }
  47037. },
  47038. back: {
  47039. height: math.unit(3, "meters"),
  47040. name: "Back",
  47041. image: {
  47042. source: "./media/characters/amy/back.svg",
  47043. extra: 1380/1347,
  47044. bottom: 66/1446
  47045. }
  47046. },
  47047. },
  47048. [
  47049. {
  47050. name: "Normal",
  47051. height: math.unit(3, "meters"),
  47052. default: true
  47053. },
  47054. ]
  47055. ))
  47056. characterMakers.push(() => makeCharacter(
  47057. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47058. {
  47059. side: {
  47060. height: math.unit(47, "cm"),
  47061. weight: math.unit(10.8, "kg"),
  47062. name: "Side",
  47063. image: {
  47064. source: "./media/characters/alphaschakal/side.svg",
  47065. extra: 1058/568,
  47066. bottom: 62/1120
  47067. }
  47068. },
  47069. back: {
  47070. height: math.unit(78, "cm"),
  47071. weight: math.unit(10.8, "kg"),
  47072. name: "Back",
  47073. image: {
  47074. source: "./media/characters/alphaschakal/back.svg",
  47075. extra: 1102/942,
  47076. bottom: 185/1287
  47077. }
  47078. },
  47079. head: {
  47080. height: math.unit(28, "cm"),
  47081. name: "Head",
  47082. image: {
  47083. source: "./media/characters/alphaschakal/head.svg",
  47084. extra: 696/508,
  47085. bottom: 0/696
  47086. }
  47087. },
  47088. paw: {
  47089. height: math.unit(16, "cm"),
  47090. name: "Paw",
  47091. image: {
  47092. source: "./media/characters/alphaschakal/paw.svg"
  47093. }
  47094. },
  47095. },
  47096. [
  47097. {
  47098. name: "Normal",
  47099. height: math.unit(47, "cm"),
  47100. default: true
  47101. },
  47102. {
  47103. name: "Macro",
  47104. height: math.unit(340, "cm")
  47105. },
  47106. ]
  47107. ))
  47108. characterMakers.push(() => makeCharacter(
  47109. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47110. {
  47111. front: {
  47112. height: math.unit(36, "earths"),
  47113. name: "Front",
  47114. image: {
  47115. source: "./media/characters/ecobyss/front.svg",
  47116. extra: 1282/1215,
  47117. bottom: 11/1293
  47118. }
  47119. },
  47120. back: {
  47121. height: math.unit(36, "earths"),
  47122. name: "Back",
  47123. image: {
  47124. source: "./media/characters/ecobyss/back.svg",
  47125. extra: 1291/1222,
  47126. bottom: 8/1299
  47127. }
  47128. },
  47129. },
  47130. [
  47131. {
  47132. name: "Normal",
  47133. height: math.unit(36, "earths"),
  47134. default: true
  47135. },
  47136. ]
  47137. ))
  47138. characterMakers.push(() => makeCharacter(
  47139. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47140. {
  47141. front: {
  47142. height: math.unit(12, "feet"),
  47143. name: "Front",
  47144. image: {
  47145. source: "./media/characters/vasuk/front.svg",
  47146. extra: 1326/1207,
  47147. bottom: 64/1390
  47148. }
  47149. },
  47150. },
  47151. [
  47152. {
  47153. name: "Normal",
  47154. height: math.unit(12, "feet"),
  47155. default: true
  47156. },
  47157. ]
  47158. ))
  47159. characterMakers.push(() => makeCharacter(
  47160. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47161. {
  47162. side: {
  47163. height: math.unit(100, "feet"),
  47164. name: "Side",
  47165. image: {
  47166. source: "./media/characters/linneaus/side.svg",
  47167. extra: 987/807,
  47168. bottom: 47/1034
  47169. }
  47170. },
  47171. },
  47172. [
  47173. {
  47174. name: "Macro",
  47175. height: math.unit(100, "feet"),
  47176. default: true
  47177. },
  47178. ]
  47179. ))
  47180. characterMakers.push(() => makeCharacter(
  47181. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47182. {
  47183. front: {
  47184. height: math.unit(8, "feet"),
  47185. weight: math.unit(1200, "lb"),
  47186. name: "Front",
  47187. image: {
  47188. source: "./media/characters/nyterious-daligdig/front.svg",
  47189. extra: 1284/1094,
  47190. bottom: 84/1368
  47191. }
  47192. },
  47193. back: {
  47194. height: math.unit(8, "feet"),
  47195. weight: math.unit(1200, "lb"),
  47196. name: "Back",
  47197. image: {
  47198. source: "./media/characters/nyterious-daligdig/back.svg",
  47199. extra: 1301/1121,
  47200. bottom: 129/1430
  47201. }
  47202. },
  47203. mouth: {
  47204. height: math.unit(1.464, "feet"),
  47205. name: "Mouth",
  47206. image: {
  47207. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47208. }
  47209. },
  47210. },
  47211. [
  47212. {
  47213. name: "Small",
  47214. height: math.unit(8, "feet"),
  47215. default: true
  47216. },
  47217. {
  47218. name: "Normal",
  47219. height: math.unit(15, "feet")
  47220. },
  47221. {
  47222. name: "Macro",
  47223. height: math.unit(90, "feet")
  47224. },
  47225. ]
  47226. ))
  47227. characterMakers.push(() => makeCharacter(
  47228. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47229. {
  47230. front: {
  47231. height: math.unit(7 + 4/12, "feet"),
  47232. weight: math.unit(252, "lb"),
  47233. name: "Front",
  47234. image: {
  47235. source: "./media/characters/bandel/front.svg",
  47236. extra: 1946/1775,
  47237. bottom: 26/1972
  47238. }
  47239. },
  47240. back: {
  47241. height: math.unit(7 + 4/12, "feet"),
  47242. weight: math.unit(252, "lb"),
  47243. name: "Back",
  47244. image: {
  47245. source: "./media/characters/bandel/back.svg",
  47246. extra: 1940/1770,
  47247. bottom: 25/1965
  47248. }
  47249. },
  47250. maw: {
  47251. height: math.unit(2.15, "feet"),
  47252. name: "Maw",
  47253. image: {
  47254. source: "./media/characters/bandel/maw.svg"
  47255. }
  47256. },
  47257. stomach: {
  47258. height: math.unit(1.95, "feet"),
  47259. name: "Stomach",
  47260. image: {
  47261. source: "./media/characters/bandel/stomach.svg"
  47262. }
  47263. },
  47264. },
  47265. [
  47266. {
  47267. name: "Normal",
  47268. height: math.unit(7 + 4/12, "feet"),
  47269. default: true
  47270. },
  47271. ]
  47272. ))
  47273. characterMakers.push(() => makeCharacter(
  47274. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47275. {
  47276. front: {
  47277. height: math.unit(10 + 5/12, "feet"),
  47278. weight: math.unit(773.5, "kg"),
  47279. name: "Front",
  47280. image: {
  47281. source: "./media/characters/zed/front.svg",
  47282. extra: 987/941,
  47283. bottom: 52/1039
  47284. }
  47285. },
  47286. },
  47287. [
  47288. {
  47289. name: "Short",
  47290. height: math.unit(5 + 4/12, "feet")
  47291. },
  47292. {
  47293. name: "Average",
  47294. height: math.unit(10 + 5/12, "feet"),
  47295. default: true
  47296. },
  47297. {
  47298. name: "Mini-Macro",
  47299. height: math.unit(24 + 9/12, "feet")
  47300. },
  47301. {
  47302. name: "Macro",
  47303. height: math.unit(249, "feet")
  47304. },
  47305. {
  47306. name: "Mega-Macro",
  47307. height: math.unit(12490, "feet")
  47308. },
  47309. {
  47310. name: "Giga-Macro",
  47311. height: math.unit(24.9, "miles")
  47312. },
  47313. {
  47314. name: "Tera-Macro",
  47315. height: math.unit(24900, "miles")
  47316. },
  47317. {
  47318. name: "Cosmic Scale",
  47319. height: math.unit(38.9, "lightyears")
  47320. },
  47321. {
  47322. name: "Universal Scale",
  47323. height: math.unit(138e12, "lightyears")
  47324. },
  47325. ]
  47326. ))
  47327. characterMakers.push(() => makeCharacter(
  47328. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47329. {
  47330. front: {
  47331. height: math.unit(1561, "inches"),
  47332. name: "Front",
  47333. image: {
  47334. source: "./media/characters/ivan/front.svg",
  47335. extra: 1126/1071,
  47336. bottom: 26/1152
  47337. }
  47338. },
  47339. back: {
  47340. height: math.unit(1561, "inches"),
  47341. name: "Back",
  47342. image: {
  47343. source: "./media/characters/ivan/back.svg",
  47344. extra: 1134/1079,
  47345. bottom: 30/1164
  47346. }
  47347. },
  47348. },
  47349. [
  47350. {
  47351. name: "Normal",
  47352. height: math.unit(1561, "inches"),
  47353. default: true
  47354. },
  47355. ]
  47356. ))
  47357. characterMakers.push(() => makeCharacter(
  47358. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47359. {
  47360. front: {
  47361. height: math.unit(5 + 7/12, "feet"),
  47362. weight: math.unit(150, "lb"),
  47363. name: "Front",
  47364. image: {
  47365. source: "./media/characters/robin-arctic-hare/front.svg",
  47366. extra: 1148/974,
  47367. bottom: 20/1168
  47368. }
  47369. },
  47370. },
  47371. [
  47372. {
  47373. name: "Normal",
  47374. height: math.unit(5 + 7/12, "feet"),
  47375. default: true
  47376. },
  47377. ]
  47378. ))
  47379. characterMakers.push(() => makeCharacter(
  47380. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47381. {
  47382. side: {
  47383. height: math.unit(5, "feet"),
  47384. name: "Side",
  47385. image: {
  47386. source: "./media/characters/birch/side.svg",
  47387. extra: 985/796,
  47388. bottom: 111/1096
  47389. }
  47390. },
  47391. },
  47392. [
  47393. {
  47394. name: "Normal",
  47395. height: math.unit(5, "feet"),
  47396. default: true
  47397. },
  47398. ]
  47399. ))
  47400. characterMakers.push(() => makeCharacter(
  47401. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47402. {
  47403. front: {
  47404. height: math.unit(4, "feet"),
  47405. name: "Front",
  47406. image: {
  47407. source: "./media/characters/rasp/front.svg",
  47408. extra: 561/478,
  47409. bottom: 74/635
  47410. }
  47411. },
  47412. },
  47413. [
  47414. {
  47415. name: "Normal",
  47416. height: math.unit(4, "feet"),
  47417. default: true
  47418. },
  47419. ]
  47420. ))
  47421. characterMakers.push(() => makeCharacter(
  47422. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47423. {
  47424. front: {
  47425. height: math.unit(4 + 6/12, "feet"),
  47426. name: "Front",
  47427. image: {
  47428. source: "./media/characters/agatha/front.svg",
  47429. extra: 947/933,
  47430. bottom: 42/989
  47431. }
  47432. },
  47433. back: {
  47434. height: math.unit(4 + 6/12, "feet"),
  47435. name: "Back",
  47436. image: {
  47437. source: "./media/characters/agatha/back.svg",
  47438. extra: 935/922,
  47439. bottom: 48/983
  47440. }
  47441. },
  47442. },
  47443. [
  47444. {
  47445. name: "Normal",
  47446. height: math.unit(4 + 6 /12, "feet"),
  47447. default: true
  47448. },
  47449. {
  47450. name: "Max Size",
  47451. height: math.unit(500, "feet")
  47452. },
  47453. ]
  47454. ))
  47455. characterMakers.push(() => makeCharacter(
  47456. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47457. {
  47458. side: {
  47459. height: math.unit(30, "feet"),
  47460. name: "Side",
  47461. image: {
  47462. source: "./media/characters/roggy/side.svg",
  47463. extra: 909/643,
  47464. bottom: 63/972
  47465. }
  47466. },
  47467. lounging: {
  47468. height: math.unit(20, "feet"),
  47469. name: "Lounging",
  47470. image: {
  47471. source: "./media/characters/roggy/lounging.svg",
  47472. extra: 643/479,
  47473. bottom: 145/788
  47474. }
  47475. },
  47476. handpaw: {
  47477. height: math.unit(13.1, "feet"),
  47478. name: "Handpaw",
  47479. image: {
  47480. source: "./media/characters/roggy/handpaw.svg"
  47481. }
  47482. },
  47483. footpaw: {
  47484. height: math.unit(15.8, "feet"),
  47485. name: "Footpaw",
  47486. image: {
  47487. source: "./media/characters/roggy/footpaw.svg"
  47488. }
  47489. },
  47490. },
  47491. [
  47492. {
  47493. name: "Menacing",
  47494. height: math.unit(30, "feet"),
  47495. default: true
  47496. },
  47497. ]
  47498. ))
  47499. characterMakers.push(() => makeCharacter(
  47500. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47501. {
  47502. front: {
  47503. height: math.unit(5 + 7/12, "feet"),
  47504. weight: math.unit(135, "lb"),
  47505. name: "Front",
  47506. image: {
  47507. source: "./media/characters/naomi/front.svg",
  47508. extra: 1209/1154,
  47509. bottom: 129/1338
  47510. }
  47511. },
  47512. back: {
  47513. height: math.unit(5 + 7/12, "feet"),
  47514. weight: math.unit(135, "lb"),
  47515. name: "Back",
  47516. image: {
  47517. source: "./media/characters/naomi/back.svg",
  47518. extra: 1252/1190,
  47519. bottom: 23/1275
  47520. }
  47521. },
  47522. },
  47523. [
  47524. {
  47525. name: "Normal",
  47526. height: math.unit(5 + 7 /12, "feet"),
  47527. default: true
  47528. },
  47529. ]
  47530. ))
  47531. characterMakers.push(() => makeCharacter(
  47532. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47533. {
  47534. side: {
  47535. height: math.unit(35, "meters"),
  47536. name: "Side",
  47537. image: {
  47538. source: "./media/characters/kimpi/side.svg",
  47539. extra: 419/382,
  47540. bottom: 63/482
  47541. }
  47542. },
  47543. hand: {
  47544. height: math.unit(8.96, "meters"),
  47545. name: "Hand",
  47546. image: {
  47547. source: "./media/characters/kimpi/hand.svg"
  47548. }
  47549. },
  47550. },
  47551. [
  47552. {
  47553. name: "Normal",
  47554. height: math.unit(35, "meters"),
  47555. default: true
  47556. },
  47557. ]
  47558. ))
  47559. characterMakers.push(() => makeCharacter(
  47560. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47561. {
  47562. front: {
  47563. height: math.unit(4 + 4/12, "feet"),
  47564. name: "Front",
  47565. image: {
  47566. source: "./media/characters/pepper-purrloin/front.svg",
  47567. extra: 1141/1024,
  47568. bottom: 21/1162
  47569. }
  47570. },
  47571. },
  47572. [
  47573. {
  47574. name: "Normal",
  47575. height: math.unit(4 + 4/12, "feet"),
  47576. default: true
  47577. },
  47578. ]
  47579. ))
  47580. characterMakers.push(() => makeCharacter(
  47581. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47582. {
  47583. front: {
  47584. height: math.unit(6 + 2/12, "feet"),
  47585. name: "Front",
  47586. image: {
  47587. source: "./media/characters/raphael/front.svg",
  47588. extra: 1101/962,
  47589. bottom: 59/1160
  47590. }
  47591. },
  47592. },
  47593. [
  47594. {
  47595. name: "Normal",
  47596. height: math.unit(6 + 2/12, "feet"),
  47597. default: true
  47598. },
  47599. ]
  47600. ))
  47601. characterMakers.push(() => makeCharacter(
  47602. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  47603. {
  47604. front: {
  47605. height: math.unit(6, "feet"),
  47606. weight: math.unit(150, "lb"),
  47607. name: "Front",
  47608. image: {
  47609. source: "./media/characters/victor-williams/front.svg",
  47610. extra: 1894/1825,
  47611. bottom: 67/1961
  47612. }
  47613. },
  47614. },
  47615. [
  47616. {
  47617. name: "Normal",
  47618. height: math.unit(6, "feet"),
  47619. default: true
  47620. },
  47621. ]
  47622. ))
  47623. characterMakers.push(() => makeCharacter(
  47624. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  47625. {
  47626. front: {
  47627. height: math.unit(5 + 8/12, "feet"),
  47628. weight: math.unit(150, "lb"),
  47629. name: "Front",
  47630. image: {
  47631. source: "./media/characters/rachel/front.svg",
  47632. extra: 1902/1787,
  47633. bottom: 46/1948
  47634. }
  47635. },
  47636. },
  47637. [
  47638. {
  47639. name: "Base Height",
  47640. height: math.unit(5 + 8/12, "feet"),
  47641. default: true
  47642. },
  47643. {
  47644. name: "Macro",
  47645. height: math.unit(200, "feet")
  47646. },
  47647. {
  47648. name: "Mega Macro",
  47649. height: math.unit(1, "mile")
  47650. },
  47651. {
  47652. name: "Giga Macro",
  47653. height: math.unit(1500, "miles")
  47654. },
  47655. {
  47656. name: "Tera Macro",
  47657. height: math.unit(8000, "miles")
  47658. },
  47659. {
  47660. name: "Tera Macro+",
  47661. height: math.unit(2e5, "miles")
  47662. },
  47663. ]
  47664. ))
  47665. characterMakers.push(() => makeCharacter(
  47666. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  47667. {
  47668. front: {
  47669. height: math.unit(6.5, "feet"),
  47670. name: "Front",
  47671. image: {
  47672. source: "./media/characters/svetlana-rozovskaya/front.svg",
  47673. extra: 860/819,
  47674. bottom: 307/1167
  47675. }
  47676. },
  47677. back: {
  47678. height: math.unit(6.5, "feet"),
  47679. name: "Back",
  47680. image: {
  47681. source: "./media/characters/svetlana-rozovskaya/back.svg",
  47682. extra: 880/837,
  47683. bottom: 395/1275
  47684. }
  47685. },
  47686. sleeping: {
  47687. height: math.unit(2.79, "feet"),
  47688. name: "Sleeping",
  47689. image: {
  47690. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  47691. extra: 465/383,
  47692. bottom: 263/728
  47693. }
  47694. },
  47695. maw: {
  47696. height: math.unit(2.52, "feet"),
  47697. name: "Maw",
  47698. image: {
  47699. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  47700. }
  47701. },
  47702. },
  47703. [
  47704. {
  47705. name: "Normal",
  47706. height: math.unit(6.5, "feet"),
  47707. default: true
  47708. },
  47709. ]
  47710. ))
  47711. characterMakers.push(() => makeCharacter(
  47712. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  47713. {
  47714. front: {
  47715. height: math.unit(5, "feet"),
  47716. name: "Front",
  47717. image: {
  47718. source: "./media/characters/nova-nerium/front.svg",
  47719. extra: 1548/1392,
  47720. bottom: 374/1922
  47721. }
  47722. },
  47723. back: {
  47724. height: math.unit(5, "feet"),
  47725. name: "Back",
  47726. image: {
  47727. source: "./media/characters/nova-nerium/back.svg",
  47728. extra: 1658/1468,
  47729. bottom: 257/1915
  47730. }
  47731. },
  47732. },
  47733. [
  47734. {
  47735. name: "Normal",
  47736. height: math.unit(5, "feet"),
  47737. default: true
  47738. },
  47739. ]
  47740. ))
  47741. characterMakers.push(() => makeCharacter(
  47742. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  47743. {
  47744. front: {
  47745. height: math.unit(5 + 4/12, "feet"),
  47746. name: "Front",
  47747. image: {
  47748. source: "./media/characters/ashe-pyriph/front.svg",
  47749. extra: 1935/1747,
  47750. bottom: 60/1995
  47751. }
  47752. },
  47753. },
  47754. [
  47755. {
  47756. name: "Normal",
  47757. height: math.unit(5 + 4/12, "feet"),
  47758. default: true
  47759. },
  47760. ]
  47761. ))
  47762. characterMakers.push(() => makeCharacter(
  47763. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  47764. {
  47765. front: {
  47766. height: math.unit(8.7, "feet"),
  47767. name: "Front",
  47768. image: {
  47769. source: "./media/characters/flicker-wisp/front.svg",
  47770. extra: 1835/1613,
  47771. bottom: 449/2284
  47772. }
  47773. },
  47774. side: {
  47775. height: math.unit(8.7, "feet"),
  47776. name: "Side",
  47777. image: {
  47778. source: "./media/characters/flicker-wisp/side.svg",
  47779. extra: 1841/1642,
  47780. bottom: 336/2177
  47781. },
  47782. default: true
  47783. },
  47784. maw: {
  47785. height: math.unit(3.35, "feet"),
  47786. name: "Maw",
  47787. image: {
  47788. source: "./media/characters/flicker-wisp/maw.svg",
  47789. extra: 2338/1506,
  47790. bottom: 0/2338
  47791. }
  47792. },
  47793. ovipositor: {
  47794. height: math.unit(4.95, "feet"),
  47795. name: "Ovipositor",
  47796. image: {
  47797. source: "./media/characters/flicker-wisp/ovipositor.svg"
  47798. }
  47799. },
  47800. egg: {
  47801. height: math.unit(0.385, "feet"),
  47802. weight: math.unit(2, "lb"),
  47803. name: "Egg",
  47804. image: {
  47805. source: "./media/characters/flicker-wisp/egg.svg"
  47806. }
  47807. },
  47808. },
  47809. [
  47810. {
  47811. name: "Normal",
  47812. height: math.unit(8.7, "feet"),
  47813. default: true
  47814. },
  47815. ]
  47816. ))
  47817. characterMakers.push(() => makeCharacter(
  47818. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  47819. {
  47820. side: {
  47821. height: math.unit(11, "feet"),
  47822. name: "Side",
  47823. image: {
  47824. source: "./media/characters/faefnul/side.svg",
  47825. extra: 1100/1007,
  47826. bottom: 0/1100
  47827. }
  47828. },
  47829. },
  47830. [
  47831. {
  47832. name: "Normal",
  47833. height: math.unit(11, "feet"),
  47834. default: true
  47835. },
  47836. ]
  47837. ))
  47838. characterMakers.push(() => makeCharacter(
  47839. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  47840. {
  47841. front: {
  47842. height: math.unit(6 + 2/12, "feet"),
  47843. name: "Front",
  47844. image: {
  47845. source: "./media/characters/shady/front.svg",
  47846. extra: 502/461,
  47847. bottom: 9/511
  47848. }
  47849. },
  47850. kneeling: {
  47851. height: math.unit(4.6, "feet"),
  47852. name: "Kneeling",
  47853. image: {
  47854. source: "./media/characters/shady/kneeling.svg",
  47855. extra: 1328/1219,
  47856. bottom: 117/1445
  47857. }
  47858. },
  47859. maw: {
  47860. height: math.unit(2, "feet"),
  47861. name: "Maw",
  47862. image: {
  47863. source: "./media/characters/shady/maw.svg"
  47864. }
  47865. },
  47866. },
  47867. [
  47868. {
  47869. name: "Nano",
  47870. height: math.unit(1, "mm")
  47871. },
  47872. {
  47873. name: "Micro",
  47874. height: math.unit(12, "mm")
  47875. },
  47876. {
  47877. name: "Tiny",
  47878. height: math.unit(3, "inches")
  47879. },
  47880. {
  47881. name: "Normal",
  47882. height: math.unit(6 + 2/12, "feet"),
  47883. default: true
  47884. },
  47885. {
  47886. name: "Big",
  47887. height: math.unit(15, "feet")
  47888. },
  47889. {
  47890. name: "Macro",
  47891. height: math.unit(150, "feet")
  47892. },
  47893. {
  47894. name: "Titanic",
  47895. height: math.unit(500, "feet")
  47896. },
  47897. ]
  47898. ))
  47899. characterMakers.push(() => makeCharacter(
  47900. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  47901. {
  47902. front: {
  47903. height: math.unit(12, "feet"),
  47904. name: "Front",
  47905. image: {
  47906. source: "./media/characters/fenrir/front.svg",
  47907. extra: 968/875,
  47908. bottom: 22/990
  47909. }
  47910. },
  47911. },
  47912. [
  47913. {
  47914. name: "Big",
  47915. height: math.unit(12, "feet"),
  47916. default: true
  47917. },
  47918. ]
  47919. ))
  47920. characterMakers.push(() => makeCharacter(
  47921. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  47922. {
  47923. front: {
  47924. height: math.unit(5 + 4/12, "feet"),
  47925. name: "Front",
  47926. image: {
  47927. source: "./media/characters/makar/front.svg",
  47928. extra: 1181/1112,
  47929. bottom: 78/1259
  47930. }
  47931. },
  47932. },
  47933. [
  47934. {
  47935. name: "Normal",
  47936. height: math.unit(5 + 4/12, "feet"),
  47937. default: true
  47938. },
  47939. ]
  47940. ))
  47941. characterMakers.push(() => makeCharacter(
  47942. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  47943. {
  47944. front: {
  47945. height: math.unit(5 + 7/12, "feet"),
  47946. name: "Front",
  47947. image: {
  47948. source: "./media/characters/callow/front.svg",
  47949. extra: 1482/1304,
  47950. bottom: 23/1505
  47951. }
  47952. },
  47953. back: {
  47954. height: math.unit(5 + 7/12, "feet"),
  47955. name: "Back",
  47956. image: {
  47957. source: "./media/characters/callow/back.svg",
  47958. extra: 1484/1296,
  47959. bottom: 25/1509
  47960. }
  47961. },
  47962. },
  47963. [
  47964. {
  47965. name: "Micro",
  47966. height: math.unit(3, "inches"),
  47967. default: true
  47968. },
  47969. {
  47970. name: "Normal",
  47971. height: math.unit(5 + 7/12, "feet")
  47972. },
  47973. ]
  47974. ))
  47975. characterMakers.push(() => makeCharacter(
  47976. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  47977. {
  47978. front: {
  47979. height: math.unit(6 + 2/12, "feet"),
  47980. name: "Front",
  47981. image: {
  47982. source: "./media/characters/natel/front.svg",
  47983. extra: 1833/1692,
  47984. bottom: 166/1999
  47985. }
  47986. },
  47987. },
  47988. [
  47989. {
  47990. name: "Normal",
  47991. height: math.unit(6 + 2/12, "feet"),
  47992. default: true
  47993. },
  47994. ]
  47995. ))
  47996. characterMakers.push(() => makeCharacter(
  47997. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  47998. {
  47999. front: {
  48000. height: math.unit(1.75, "meters"),
  48001. name: "Front",
  48002. image: {
  48003. source: "./media/characters/misu/front.svg",
  48004. extra: 1690/1558,
  48005. bottom: 234/1924
  48006. }
  48007. },
  48008. back: {
  48009. height: math.unit(1.75, "meters"),
  48010. name: "Back",
  48011. image: {
  48012. source: "./media/characters/misu/back.svg",
  48013. extra: 1762/1618,
  48014. bottom: 146/1908
  48015. }
  48016. },
  48017. frontNude: {
  48018. height: math.unit(1.75, "meters"),
  48019. name: "Front (Nude)",
  48020. image: {
  48021. source: "./media/characters/misu/front-nude.svg",
  48022. extra: 1690/1558,
  48023. bottom: 234/1924
  48024. }
  48025. },
  48026. backNude: {
  48027. height: math.unit(1.75, "meters"),
  48028. name: "Back (Nude)",
  48029. image: {
  48030. source: "./media/characters/misu/back-nude.svg",
  48031. extra: 1762/1618,
  48032. bottom: 146/1908
  48033. }
  48034. },
  48035. frontErect: {
  48036. height: math.unit(1.75, "meters"),
  48037. name: "Front (Erect)",
  48038. image: {
  48039. source: "./media/characters/misu/front-erect.svg",
  48040. extra: 1690/1558,
  48041. bottom: 234/1924
  48042. }
  48043. },
  48044. maw: {
  48045. height: math.unit(0.47, "meters"),
  48046. name: "Maw",
  48047. image: {
  48048. source: "./media/characters/misu/maw.svg"
  48049. }
  48050. },
  48051. head: {
  48052. height: math.unit(0.35, "meters"),
  48053. name: "Head",
  48054. image: {
  48055. source: "./media/characters/misu/head.svg"
  48056. }
  48057. },
  48058. rear: {
  48059. height: math.unit(0.47, "meters"),
  48060. name: "Rear",
  48061. image: {
  48062. source: "./media/characters/misu/rear.svg"
  48063. }
  48064. },
  48065. },
  48066. [
  48067. {
  48068. name: "Normal",
  48069. height: math.unit(1.75, "meters")
  48070. },
  48071. {
  48072. name: "Not good for the people",
  48073. height: math.unit(42, "meters")
  48074. },
  48075. {
  48076. name: "Not good for the neighborhood",
  48077. height: math.unit(135, "meters")
  48078. },
  48079. {
  48080. name: "Bit bigger problem",
  48081. height: math.unit(380, "meters"),
  48082. default: true
  48083. },
  48084. {
  48085. name: "Not good for the city",
  48086. height: math.unit(1.5, "km")
  48087. },
  48088. {
  48089. name: "Not good for the county",
  48090. height: math.unit(5.5, "km")
  48091. },
  48092. {
  48093. name: "Not good for the state",
  48094. height: math.unit(25, "km")
  48095. },
  48096. {
  48097. name: "Not good for the country",
  48098. height: math.unit(125, "km")
  48099. },
  48100. {
  48101. name: "Not good for the continent",
  48102. height: math.unit(2100, "km")
  48103. },
  48104. {
  48105. name: "Not good for the planet",
  48106. height: math.unit(35000, "km")
  48107. },
  48108. {
  48109. name: "Just no",
  48110. height: math.unit(8.5e18, "km")
  48111. },
  48112. ]
  48113. ))
  48114. characterMakers.push(() => makeCharacter(
  48115. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48116. {
  48117. front: {
  48118. height: math.unit(6.5, "feet"),
  48119. name: "Front",
  48120. image: {
  48121. source: "./media/characters/poppy/front.svg",
  48122. extra: 1878/1812,
  48123. bottom: 43/1921
  48124. }
  48125. },
  48126. feet: {
  48127. height: math.unit(1.06, "feet"),
  48128. name: "Feet",
  48129. image: {
  48130. source: "./media/characters/poppy/feet.svg",
  48131. extra: 1083/1083,
  48132. bottom: 87/1170
  48133. }
  48134. },
  48135. },
  48136. [
  48137. {
  48138. name: "Human",
  48139. height: math.unit(6.5, "feet")
  48140. },
  48141. {
  48142. name: "Default",
  48143. height: math.unit(300, "feet"),
  48144. default: true
  48145. },
  48146. {
  48147. name: "Huge",
  48148. height: math.unit(850, "feet")
  48149. },
  48150. {
  48151. name: "Mega",
  48152. height: math.unit(8000, "feet")
  48153. },
  48154. {
  48155. name: "Giga",
  48156. height: math.unit(300, "miles")
  48157. },
  48158. ]
  48159. ))
  48160. characterMakers.push(() => makeCharacter(
  48161. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48162. {
  48163. bipedal: {
  48164. height: math.unit(7, "feet"),
  48165. name: "Bipedal",
  48166. image: {
  48167. source: "./media/characters/zener/bipedal.svg",
  48168. extra: 874/805,
  48169. bottom: 109/983
  48170. }
  48171. },
  48172. quadrupedal: {
  48173. height: math.unit(4.64, "feet"),
  48174. name: "Quadrupedal",
  48175. image: {
  48176. source: "./media/characters/zener/quadrupedal.svg",
  48177. extra: 638/507,
  48178. bottom: 190/828
  48179. }
  48180. },
  48181. cock: {
  48182. height: math.unit(18, "inches"),
  48183. name: "Cock",
  48184. image: {
  48185. source: "./media/characters/zener/cock.svg"
  48186. }
  48187. },
  48188. },
  48189. [
  48190. {
  48191. name: "Normal",
  48192. height: math.unit(7, "feet"),
  48193. default: true
  48194. },
  48195. ]
  48196. ))
  48197. characterMakers.push(() => makeCharacter(
  48198. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48199. {
  48200. nude: {
  48201. height: math.unit(5 + 6/12, "feet"),
  48202. name: "Nude",
  48203. image: {
  48204. source: "./media/characters/charlie-dog/nude.svg",
  48205. extra: 768/734,
  48206. bottom: 26/794
  48207. }
  48208. },
  48209. dressed: {
  48210. height: math.unit(5 + 6/12, "feet"),
  48211. name: "Dressed",
  48212. image: {
  48213. source: "./media/characters/charlie-dog/dressed.svg",
  48214. extra: 768/734,
  48215. bottom: 26/794
  48216. }
  48217. },
  48218. },
  48219. [
  48220. {
  48221. name: "Normal",
  48222. height: math.unit(5 + 6/12, "feet"),
  48223. default: true
  48224. },
  48225. ]
  48226. ))
  48227. characterMakers.push(() => makeCharacter(
  48228. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48229. {
  48230. front: {
  48231. height: math.unit(6 + 4/12, "feet"),
  48232. name: "Front",
  48233. image: {
  48234. source: "./media/characters/ir'istrasz/front.svg",
  48235. extra: 1014/977,
  48236. bottom: 65/1079
  48237. }
  48238. },
  48239. back: {
  48240. height: math.unit(6 + 4/12, "feet"),
  48241. name: "Back",
  48242. image: {
  48243. source: "./media/characters/ir'istrasz/back.svg",
  48244. extra: 1024/992,
  48245. bottom: 34/1058
  48246. }
  48247. },
  48248. },
  48249. [
  48250. {
  48251. name: "Normal",
  48252. height: math.unit(6 + 4/12, "feet"),
  48253. default: true
  48254. },
  48255. ]
  48256. ))
  48257. characterMakers.push(() => makeCharacter(
  48258. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48259. {
  48260. front: {
  48261. height: math.unit(5 + 8/12, "feet"),
  48262. name: "Front",
  48263. image: {
  48264. source: "./media/characters/dee-ditto/front.svg",
  48265. extra: 1874/1785,
  48266. bottom: 68/1942
  48267. }
  48268. },
  48269. back: {
  48270. height: math.unit(5 + 8/12, "feet"),
  48271. name: "Back",
  48272. image: {
  48273. source: "./media/characters/dee-ditto/back.svg",
  48274. extra: 1870/1783,
  48275. bottom: 77/1947
  48276. }
  48277. },
  48278. },
  48279. [
  48280. {
  48281. name: "Normal",
  48282. height: math.unit(5 + 8/12, "feet"),
  48283. default: true
  48284. },
  48285. ]
  48286. ))
  48287. characterMakers.push(() => makeCharacter(
  48288. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48289. {
  48290. front: {
  48291. height: math.unit(7 + 6/12, "feet"),
  48292. name: "Front",
  48293. image: {
  48294. source: "./media/characters/fey/front.svg",
  48295. extra: 995/979,
  48296. bottom: 30/1025
  48297. }
  48298. },
  48299. back: {
  48300. height: math.unit(7 + 6/12, "feet"),
  48301. name: "Back",
  48302. image: {
  48303. source: "./media/characters/fey/back.svg",
  48304. extra: 1079/1008,
  48305. bottom: 5/1084
  48306. }
  48307. },
  48308. dressed: {
  48309. height: math.unit(7 + 6/12, "feet"),
  48310. name: "Dressed",
  48311. image: {
  48312. source: "./media/characters/fey/dressed.svg",
  48313. extra: 995/979,
  48314. bottom: 30/1025
  48315. }
  48316. },
  48317. },
  48318. [
  48319. {
  48320. name: "Normal",
  48321. height: math.unit(7 + 6/12, "feet"),
  48322. default: true
  48323. },
  48324. ]
  48325. ))
  48326. characterMakers.push(() => makeCharacter(
  48327. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48328. {
  48329. standing: {
  48330. height: math.unit(17, "feet"),
  48331. name: "Standing",
  48332. image: {
  48333. source: "./media/characters/aster/standing.svg",
  48334. extra: 1798/1598,
  48335. bottom: 117/1915
  48336. }
  48337. },
  48338. },
  48339. [
  48340. {
  48341. name: "Normal",
  48342. height: math.unit(17, "feet"),
  48343. default: true
  48344. },
  48345. {
  48346. name: "Homewrecker",
  48347. height: math.unit(95, "feet")
  48348. },
  48349. {
  48350. name: "Planet Devourer",
  48351. height: math.unit(1008000, "miles")
  48352. },
  48353. ]
  48354. ))
  48355. characterMakers.push(() => makeCharacter(
  48356. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48357. {
  48358. front: {
  48359. height: math.unit(6 + 5/12, "feet"),
  48360. weight: math.unit(265, "lb"),
  48361. name: "Front",
  48362. image: {
  48363. source: "./media/characters/devon-childs/front.svg",
  48364. extra: 1795/1721,
  48365. bottom: 41/1836
  48366. }
  48367. },
  48368. side: {
  48369. height: math.unit(6 + 5/12, "feet"),
  48370. weight: math.unit(265, "lb"),
  48371. name: "Side",
  48372. image: {
  48373. source: "./media/characters/devon-childs/side.svg",
  48374. extra: 1812/1738,
  48375. bottom: 30/1842
  48376. }
  48377. },
  48378. back: {
  48379. height: math.unit(6 + 5/12, "feet"),
  48380. weight: math.unit(265, "lb"),
  48381. name: "Back",
  48382. image: {
  48383. source: "./media/characters/devon-childs/back.svg",
  48384. extra: 1808/1735,
  48385. bottom: 23/1831
  48386. }
  48387. },
  48388. hand: {
  48389. height: math.unit(1.464, "feet"),
  48390. name: "Hand",
  48391. image: {
  48392. source: "./media/characters/devon-childs/hand.svg"
  48393. }
  48394. },
  48395. foot: {
  48396. height: math.unit(1.6, "feet"),
  48397. name: "Foot",
  48398. image: {
  48399. source: "./media/characters/devon-childs/foot.svg"
  48400. }
  48401. },
  48402. },
  48403. [
  48404. {
  48405. name: "Micro",
  48406. height: math.unit(7, "cm")
  48407. },
  48408. {
  48409. name: "Normal",
  48410. height: math.unit(6 + 5/12, "feet"),
  48411. default: true
  48412. },
  48413. {
  48414. name: "Macro",
  48415. height: math.unit(154, "feet")
  48416. },
  48417. ]
  48418. ))
  48419. characterMakers.push(() => makeCharacter(
  48420. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48421. {
  48422. front: {
  48423. height: math.unit(6, "feet"),
  48424. weight: math.unit(180, "lb"),
  48425. name: "Front",
  48426. image: {
  48427. source: "./media/characters/lydemox-vir/front.svg",
  48428. extra: 1632/1435,
  48429. bottom: 58/1690
  48430. }
  48431. },
  48432. frontSFW: {
  48433. height: math.unit(6, "feet"),
  48434. weight: math.unit(180, "lb"),
  48435. name: "Front (SFW)",
  48436. image: {
  48437. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48438. extra: 1632/1435,
  48439. bottom: 58/1690
  48440. }
  48441. },
  48442. back: {
  48443. height: math.unit(6, "feet"),
  48444. weight: math.unit(180, "lb"),
  48445. name: "Back",
  48446. image: {
  48447. source: "./media/characters/lydemox-vir/back.svg",
  48448. extra: 1593/1408,
  48449. bottom: 31/1624
  48450. }
  48451. },
  48452. paw: {
  48453. height: math.unit(1.85, "feet"),
  48454. name: "Paw",
  48455. image: {
  48456. source: "./media/characters/lydemox-vir/paw.svg"
  48457. }
  48458. },
  48459. dick: {
  48460. height: math.unit(1.8, "feet"),
  48461. name: "Dick",
  48462. image: {
  48463. source: "./media/characters/lydemox-vir/dick.svg"
  48464. }
  48465. },
  48466. },
  48467. [
  48468. {
  48469. name: "Macro",
  48470. height: math.unit(100, "feet"),
  48471. default: true
  48472. },
  48473. {
  48474. name: "Teramacro",
  48475. height: math.unit(1, "earth")
  48476. },
  48477. {
  48478. name: "Planetary",
  48479. height: math.unit(20, "earths")
  48480. },
  48481. ]
  48482. ))
  48483. characterMakers.push(() => makeCharacter(
  48484. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48485. {
  48486. front: {
  48487. height: math.unit(15 + 8/12, "feet"),
  48488. weight: math.unit(1237, "kg"),
  48489. name: "Front",
  48490. image: {
  48491. source: "./media/characters/mia/front.svg",
  48492. extra: 1573/1446,
  48493. bottom: 58/1631
  48494. }
  48495. },
  48496. },
  48497. [
  48498. {
  48499. name: "Small",
  48500. height: math.unit(9 + 5/12, "feet")
  48501. },
  48502. {
  48503. name: "Normal",
  48504. height: math.unit(15 + 8/12, "feet"),
  48505. default: true
  48506. },
  48507. ]
  48508. ))
  48509. characterMakers.push(() => makeCharacter(
  48510. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48511. {
  48512. front: {
  48513. height: math.unit(10 + 6/12, "feet"),
  48514. weight: math.unit(1.3, "tons"),
  48515. name: "Front",
  48516. image: {
  48517. source: "./media/characters/mr-graves/front.svg",
  48518. extra: 1779/1695,
  48519. bottom: 198/1977
  48520. }
  48521. },
  48522. },
  48523. [
  48524. {
  48525. name: "Normal",
  48526. height: math.unit(10 + 6 /12, "feet"),
  48527. default: true
  48528. },
  48529. ]
  48530. ))
  48531. characterMakers.push(() => makeCharacter(
  48532. { name: "Jess", species: ["human"], tags: ["anthro"] },
  48533. {
  48534. dressedFront: {
  48535. height: math.unit(5 + 8/12, "feet"),
  48536. weight: math.unit(125, "lb"),
  48537. name: "Dressed (Front)",
  48538. image: {
  48539. source: "./media/characters/jess/dressed-front.svg",
  48540. extra: 1176/1152,
  48541. bottom: 42/1218
  48542. }
  48543. },
  48544. dressedSide: {
  48545. height: math.unit(5 + 8/12, "feet"),
  48546. weight: math.unit(125, "lb"),
  48547. name: "Dressed (Side)",
  48548. image: {
  48549. source: "./media/characters/jess/dressed-side.svg",
  48550. extra: 1204/1190,
  48551. bottom: 6/1210
  48552. }
  48553. },
  48554. nudeFront: {
  48555. height: math.unit(5 + 8/12, "feet"),
  48556. weight: math.unit(125, "lb"),
  48557. name: "Nude (Front)",
  48558. image: {
  48559. source: "./media/characters/jess/nude-front.svg",
  48560. extra: 1176/1152,
  48561. bottom: 42/1218
  48562. }
  48563. },
  48564. nudeSide: {
  48565. height: math.unit(5 + 8/12, "feet"),
  48566. weight: math.unit(125, "lb"),
  48567. name: "Nude (Side)",
  48568. image: {
  48569. source: "./media/characters/jess/nude-side.svg",
  48570. extra: 1204/1190,
  48571. bottom: 6/1210
  48572. }
  48573. },
  48574. organsFront: {
  48575. height: math.unit(2.83799342105, "feet"),
  48576. name: "Organs (Front)",
  48577. image: {
  48578. source: "./media/characters/jess/organs-front.svg"
  48579. }
  48580. },
  48581. organsSide: {
  48582. height: math.unit(2.64225290474, "feet"),
  48583. name: "Organs (Side)",
  48584. image: {
  48585. source: "./media/characters/jess/organs-side.svg"
  48586. }
  48587. },
  48588. digestiveTractFront: {
  48589. height: math.unit(2.8106580871, "feet"),
  48590. name: "Digestive Tract (Front)",
  48591. image: {
  48592. source: "./media/characters/jess/digestive-tract-front.svg"
  48593. }
  48594. },
  48595. digestiveTractSide: {
  48596. height: math.unit(2.54365045014, "feet"),
  48597. name: "Digestive Tract (Side)",
  48598. image: {
  48599. source: "./media/characters/jess/digestive-tract-side.svg"
  48600. }
  48601. },
  48602. respiratorySystemFront: {
  48603. height: math.unit(1.11196233456, "feet"),
  48604. name: "Respiratory System (Front)",
  48605. image: {
  48606. source: "./media/characters/jess/respiratory-system-front.svg"
  48607. }
  48608. },
  48609. respiratorySystemSide: {
  48610. height: math.unit(0.89327966297, "feet"),
  48611. name: "Respiratory System (Side)",
  48612. image: {
  48613. source: "./media/characters/jess/respiratory-system-side.svg"
  48614. }
  48615. },
  48616. urinaryTractFront: {
  48617. height: math.unit(1.16126356186, "feet"),
  48618. name: "Urinary Tract (Front)",
  48619. image: {
  48620. source: "./media/characters/jess/urinary-tract-front.svg"
  48621. }
  48622. },
  48623. urinaryTractSide: {
  48624. height: math.unit(1.20910039627, "feet"),
  48625. name: "Urinary Tract (Side)",
  48626. image: {
  48627. source: "./media/characters/jess/urinary-tract-side.svg"
  48628. }
  48629. },
  48630. reproductiveOrgansFront: {
  48631. height: math.unit(0.48422591566, "feet"),
  48632. name: "Reproductive Organs (Front)",
  48633. image: {
  48634. source: "./media/characters/jess/reproductive-organs-front.svg"
  48635. }
  48636. },
  48637. reproductiveOrgansSide: {
  48638. height: math.unit(0.61553314481, "feet"),
  48639. name: "Reproductive Organs (Side)",
  48640. image: {
  48641. source: "./media/characters/jess/reproductive-organs-side.svg"
  48642. }
  48643. },
  48644. breastsFront: {
  48645. height: math.unit(0.47690395121, "feet"),
  48646. name: "Breasts (Front)",
  48647. image: {
  48648. source: "./media/characters/jess/breasts-front.svg"
  48649. }
  48650. },
  48651. breastsSide: {
  48652. height: math.unit(0.30556998307, "feet"),
  48653. name: "Breasts (Side)",
  48654. image: {
  48655. source: "./media/characters/jess/breasts-side.svg"
  48656. }
  48657. },
  48658. heartFront: {
  48659. height: math.unit(0.53011022622, "feet"),
  48660. name: "Heart (Front)",
  48661. image: {
  48662. source: "./media/characters/jess/heart-front.svg"
  48663. }
  48664. },
  48665. heartSide: {
  48666. height: math.unit(0.51790695213, "feet"),
  48667. name: "Heart (Side)",
  48668. image: {
  48669. source: "./media/characters/jess/heart-side.svg"
  48670. }
  48671. },
  48672. earsAndNoseFront: {
  48673. height: math.unit(0.29385483995, "feet"),
  48674. name: "Ears and Nose (Front)",
  48675. image: {
  48676. source: "./media/characters/jess/ears-and-nose-front.svg"
  48677. }
  48678. },
  48679. earsAndNoseSide: {
  48680. height: math.unit(0.18109658741, "feet"),
  48681. name: "Ears and Nose (Side)",
  48682. image: {
  48683. source: "./media/characters/jess/ears-and-nose-side.svg"
  48684. }
  48685. },
  48686. },
  48687. [
  48688. {
  48689. name: "Normal",
  48690. height: math.unit(5 + 8/12, "feet"),
  48691. default: true
  48692. },
  48693. ]
  48694. ))
  48695. characterMakers.push(() => makeCharacter(
  48696. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  48697. {
  48698. front: {
  48699. height: math.unit(6, "feet"),
  48700. weight: math.unit(6.64467e-7, "grams"),
  48701. name: "Front",
  48702. image: {
  48703. source: "./media/characters/wimpering/front.svg",
  48704. extra: 597/587,
  48705. bottom: 34/631
  48706. }
  48707. },
  48708. },
  48709. [
  48710. {
  48711. name: "Micro",
  48712. height: math.unit(0.4, "mm"),
  48713. default: true
  48714. },
  48715. ]
  48716. ))
  48717. characterMakers.push(() => makeCharacter(
  48718. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  48719. {
  48720. front: {
  48721. height: math.unit(5 + 2/12, "feet"),
  48722. weight: math.unit(110, "lb"),
  48723. name: "Front",
  48724. image: {
  48725. source: "./media/characters/keltre/front.svg",
  48726. extra: 1099/1057,
  48727. bottom: 22/1121
  48728. }
  48729. },
  48730. back: {
  48731. height: math.unit(5 + 2/12, "feet"),
  48732. weight: math.unit(110, "lb"),
  48733. name: "Back",
  48734. image: {
  48735. source: "./media/characters/keltre/back.svg",
  48736. extra: 1095/1053,
  48737. bottom: 17/1112
  48738. }
  48739. },
  48740. dressed: {
  48741. height: math.unit(5 + 2/12, "feet"),
  48742. weight: math.unit(110, "lb"),
  48743. name: "Dressed",
  48744. image: {
  48745. source: "./media/characters/keltre/dressed.svg",
  48746. extra: 1099/1057,
  48747. bottom: 22/1121
  48748. }
  48749. },
  48750. winter: {
  48751. height: math.unit(5 + 2/12, "feet"),
  48752. weight: math.unit(110, "lb"),
  48753. name: "Winter",
  48754. image: {
  48755. source: "./media/characters/keltre/winter.svg",
  48756. extra: 1099/1057,
  48757. bottom: 22/1121
  48758. }
  48759. },
  48760. head: {
  48761. height: math.unit(1.61 * 0.86, "feet"),
  48762. name: "Head",
  48763. image: {
  48764. source: "./media/characters/keltre/head.svg",
  48765. extra: 534/421,
  48766. bottom: 0/534
  48767. }
  48768. },
  48769. hand: {
  48770. height: math.unit(1.3 * 0.86, "feet"),
  48771. name: "Hand",
  48772. image: {
  48773. source: "./media/characters/keltre/hand.svg"
  48774. }
  48775. },
  48776. foot: {
  48777. height: math.unit(1.8 * 0.86, "feet"),
  48778. name: "Foot",
  48779. image: {
  48780. source: "./media/characters/keltre/foot.svg"
  48781. }
  48782. },
  48783. },
  48784. [
  48785. {
  48786. name: "Fine",
  48787. height: math.unit(1, "inch")
  48788. },
  48789. {
  48790. name: "Dimnutive",
  48791. height: math.unit(4, "inches")
  48792. },
  48793. {
  48794. name: "Tiny",
  48795. height: math.unit(1, "foot")
  48796. },
  48797. {
  48798. name: "Small",
  48799. height: math.unit(3, "feet")
  48800. },
  48801. {
  48802. name: "Normal",
  48803. height: math.unit(5 + 2/12, "feet"),
  48804. default: true
  48805. },
  48806. ]
  48807. ))
  48808. characterMakers.push(() => makeCharacter(
  48809. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  48810. {
  48811. front: {
  48812. height: math.unit(6 + 2/12, "feet"),
  48813. name: "Front",
  48814. image: {
  48815. source: "./media/characters/nox/front.svg",
  48816. extra: 1917/1830,
  48817. bottom: 74/1991
  48818. }
  48819. },
  48820. back: {
  48821. height: math.unit(6 + 2/12, "feet"),
  48822. name: "Back",
  48823. image: {
  48824. source: "./media/characters/nox/back.svg",
  48825. extra: 1896/1815,
  48826. bottom: 21/1917
  48827. }
  48828. },
  48829. head: {
  48830. height: math.unit(1.1, "feet"),
  48831. name: "Head",
  48832. image: {
  48833. source: "./media/characters/nox/head.svg",
  48834. extra: 874/704,
  48835. bottom: 0/874
  48836. }
  48837. },
  48838. tattoo: {
  48839. height: math.unit(0.729, "feet"),
  48840. name: "Tattoo",
  48841. image: {
  48842. source: "./media/characters/nox/tattoo.svg"
  48843. }
  48844. },
  48845. },
  48846. [
  48847. {
  48848. name: "Normal",
  48849. height: math.unit(6 + 2/12, "feet")
  48850. },
  48851. {
  48852. name: "Gigamacro",
  48853. height: math.unit(2, "earths"),
  48854. default: true
  48855. },
  48856. {
  48857. name: "Cosmic",
  48858. height: math.unit(867, "yottameters")
  48859. },
  48860. ]
  48861. ))
  48862. characterMakers.push(() => makeCharacter(
  48863. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  48864. {
  48865. front: {
  48866. height: math.unit(6, "feet"),
  48867. weight: math.unit(150, "lb"),
  48868. name: "Front",
  48869. image: {
  48870. source: "./media/characters/caspian/front.svg",
  48871. extra: 1443/1359,
  48872. bottom: 0/1443
  48873. }
  48874. },
  48875. back: {
  48876. height: math.unit(6, "feet"),
  48877. weight: math.unit(150, "lb"),
  48878. name: "Back",
  48879. image: {
  48880. source: "./media/characters/caspian/back.svg",
  48881. extra: 1379/1309,
  48882. bottom: 0/1379
  48883. }
  48884. },
  48885. head: {
  48886. height: math.unit(0.9, "feet"),
  48887. name: "Head",
  48888. image: {
  48889. source: "./media/characters/caspian/head.svg",
  48890. extra: 692/492,
  48891. bottom: 0/692
  48892. }
  48893. },
  48894. headAlt: {
  48895. height: math.unit(0.95, "feet"),
  48896. name: "Head (Alt)",
  48897. image: {
  48898. source: "./media/characters/caspian/head-alt.svg",
  48899. extra: 668/508,
  48900. bottom: 0/668
  48901. }
  48902. },
  48903. hand: {
  48904. height: math.unit(0.8, "feet"),
  48905. name: "Hand",
  48906. image: {
  48907. source: "./media/characters/caspian/hand.svg"
  48908. }
  48909. },
  48910. paw: {
  48911. height: math.unit(0.95, "feet"),
  48912. name: "Paw",
  48913. image: {
  48914. source: "./media/characters/caspian/paw.svg"
  48915. }
  48916. },
  48917. },
  48918. [
  48919. {
  48920. name: "Normal",
  48921. height: math.unit(162, "feet"),
  48922. default: true
  48923. },
  48924. ]
  48925. ))
  48926. characterMakers.push(() => makeCharacter(
  48927. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  48928. {
  48929. front: {
  48930. height: math.unit(6, "feet"),
  48931. name: "Front",
  48932. image: {
  48933. source: "./media/characters/myra-aisling/front.svg",
  48934. extra: 1268/1166,
  48935. bottom: 73/1341
  48936. }
  48937. },
  48938. back: {
  48939. height: math.unit(6, "feet"),
  48940. name: "Back",
  48941. image: {
  48942. source: "./media/characters/myra-aisling/back.svg",
  48943. extra: 1249/1149,
  48944. bottom: 79/1328
  48945. }
  48946. },
  48947. dressed: {
  48948. height: math.unit(6, "feet"),
  48949. name: "Dressed",
  48950. image: {
  48951. source: "./media/characters/myra-aisling/dressed.svg",
  48952. extra: 1290/1189,
  48953. bottom: 47/1337
  48954. }
  48955. },
  48956. hand: {
  48957. height: math.unit(1.1, "feet"),
  48958. name: "Hand",
  48959. image: {
  48960. source: "./media/characters/myra-aisling/hand.svg"
  48961. }
  48962. },
  48963. paw: {
  48964. height: math.unit(1.23, "feet"),
  48965. name: "Paw",
  48966. image: {
  48967. source: "./media/characters/myra-aisling/paw.svg"
  48968. }
  48969. },
  48970. },
  48971. [
  48972. {
  48973. name: "Normal",
  48974. height: math.unit(160, "feet"),
  48975. default: true
  48976. },
  48977. ]
  48978. ))
  48979. characterMakers.push(() => makeCharacter(
  48980. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  48981. {
  48982. front: {
  48983. height: math.unit(6, "feet"),
  48984. name: "Front",
  48985. image: {
  48986. source: "./media/characters/tenley-sidero/front.svg",
  48987. extra: 1365/1276,
  48988. bottom: 47/1412
  48989. }
  48990. },
  48991. back: {
  48992. height: math.unit(6, "feet"),
  48993. name: "Back",
  48994. image: {
  48995. source: "./media/characters/tenley-sidero/back.svg",
  48996. extra: 1383/1283,
  48997. bottom: 35/1418
  48998. }
  48999. },
  49000. dressed: {
  49001. height: math.unit(6, "feet"),
  49002. name: "Dressed",
  49003. image: {
  49004. source: "./media/characters/tenley-sidero/dressed.svg",
  49005. extra: 1364/1275,
  49006. bottom: 42/1406
  49007. }
  49008. },
  49009. head: {
  49010. height: math.unit(1.47, "feet"),
  49011. name: "Head",
  49012. image: {
  49013. source: "./media/characters/tenley-sidero/head.svg",
  49014. extra: 610/490,
  49015. bottom: 0/610
  49016. }
  49017. },
  49018. },
  49019. [
  49020. {
  49021. name: "Normal",
  49022. height: math.unit(154, "feet"),
  49023. default: true
  49024. },
  49025. ]
  49026. ))
  49027. characterMakers.push(() => makeCharacter(
  49028. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49029. {
  49030. front: {
  49031. height: math.unit(5, "inches"),
  49032. name: "Front",
  49033. image: {
  49034. source: "./media/characters/mallory/front.svg",
  49035. extra: 1919/1678,
  49036. bottom: 29/1948
  49037. }
  49038. },
  49039. hand: {
  49040. height: math.unit(0.73, "inches"),
  49041. name: "Hand",
  49042. image: {
  49043. source: "./media/characters/mallory/hand.svg"
  49044. }
  49045. },
  49046. paw: {
  49047. height: math.unit(0.68, "inches"),
  49048. name: "Paw",
  49049. image: {
  49050. source: "./media/characters/mallory/paw.svg"
  49051. }
  49052. },
  49053. },
  49054. [
  49055. {
  49056. name: "Small",
  49057. height: math.unit(5, "inches"),
  49058. default: true
  49059. },
  49060. ]
  49061. ))
  49062. characterMakers.push(() => makeCharacter(
  49063. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49064. {
  49065. naked: {
  49066. height: math.unit(6, "feet"),
  49067. name: "Naked",
  49068. image: {
  49069. source: "./media/characters/mab/naked.svg",
  49070. extra: 1855/1757,
  49071. bottom: 208/2063
  49072. }
  49073. },
  49074. outside: {
  49075. height: math.unit(6, "feet"),
  49076. name: "Outside",
  49077. image: {
  49078. source: "./media/characters/mab/outside.svg",
  49079. extra: 1855/1757,
  49080. bottom: 208/2063
  49081. }
  49082. },
  49083. party: {
  49084. height: math.unit(6, "feet"),
  49085. name: "Party",
  49086. image: {
  49087. source: "./media/characters/mab/party.svg",
  49088. extra: 1855/1757,
  49089. bottom: 208/2063
  49090. }
  49091. },
  49092. },
  49093. [
  49094. {
  49095. name: "Normal",
  49096. height: math.unit(165, "feet"),
  49097. default: true
  49098. },
  49099. ]
  49100. ))
  49101. characterMakers.push(() => makeCharacter(
  49102. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49103. {
  49104. front: {
  49105. height: math.unit(12, "feet"),
  49106. weight: math.unit(4000, "lb"),
  49107. name: "Front",
  49108. image: {
  49109. source: "./media/characters/winter/front.svg",
  49110. extra: 1286/943,
  49111. bottom: 112/1398
  49112. }
  49113. },
  49114. frontNsfw: {
  49115. height: math.unit(12, "feet"),
  49116. weight: math.unit(4000, "lb"),
  49117. name: "Front (NSFW)",
  49118. image: {
  49119. source: "./media/characters/winter/front-nsfw.svg",
  49120. extra: 1286/943,
  49121. bottom: 112/1398
  49122. }
  49123. },
  49124. dick: {
  49125. height: math.unit(3.79, "feet"),
  49126. name: "Dick",
  49127. image: {
  49128. source: "./media/characters/winter/dick.svg"
  49129. }
  49130. },
  49131. },
  49132. [
  49133. {
  49134. name: "Big",
  49135. height: math.unit(12, "feet"),
  49136. default: true
  49137. },
  49138. ]
  49139. ))
  49140. characterMakers.push(() => makeCharacter(
  49141. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49142. {
  49143. front: {
  49144. height: math.unit(4.1, "inches"),
  49145. name: "Front",
  49146. image: {
  49147. source: "./media/characters/alto/front.svg",
  49148. extra: 736/627,
  49149. bottom: 90/826
  49150. }
  49151. },
  49152. },
  49153. [
  49154. {
  49155. name: "Normal",
  49156. height: math.unit(4.1, "inches"),
  49157. default: true
  49158. },
  49159. ]
  49160. ))
  49161. characterMakers.push(() => makeCharacter(
  49162. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49163. {
  49164. sitting: {
  49165. height: math.unit(3, "feet"),
  49166. name: "Sitting",
  49167. image: {
  49168. source: "./media/characters/ratstrid-v/sitting.svg",
  49169. extra: 355/310,
  49170. bottom: 136/491
  49171. }
  49172. },
  49173. },
  49174. [
  49175. {
  49176. name: "Normal",
  49177. height: math.unit(3, "feet"),
  49178. default: true
  49179. },
  49180. ]
  49181. ))
  49182. characterMakers.push(() => makeCharacter(
  49183. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49184. {
  49185. back: {
  49186. height: math.unit(6, "feet"),
  49187. weight: math.unit(350, "lb"),
  49188. name: "Back",
  49189. image: {
  49190. source: "./media/characters/siz/back.svg",
  49191. extra: 1449/1274,
  49192. bottom: 13/1462
  49193. }
  49194. },
  49195. },
  49196. [
  49197. {
  49198. name: "Over-Overcompressed",
  49199. height: math.unit(8, "feet")
  49200. },
  49201. {
  49202. name: "Overcompressed",
  49203. height: math.unit(32, "feet")
  49204. },
  49205. {
  49206. name: "Compressed",
  49207. height: math.unit(128, "feet"),
  49208. default: true
  49209. },
  49210. {
  49211. name: "Half-Compressed",
  49212. height: math.unit(512, "feet")
  49213. },
  49214. {
  49215. name: "Quarter-Compressed",
  49216. height: math.unit(2048, "feet")
  49217. },
  49218. {
  49219. name: "Uncompressed?",
  49220. height: math.unit(8192, "feet")
  49221. },
  49222. ]
  49223. ))
  49224. characterMakers.push(() => makeCharacter(
  49225. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  49226. {
  49227. front: {
  49228. height: math.unit(5 + 9/12, "feet"),
  49229. weight: math.unit(150, "lb"),
  49230. name: "Front",
  49231. image: {
  49232. source: "./media/characters/ven/front.svg",
  49233. extra: 1372/1320,
  49234. bottom: 73/1445
  49235. }
  49236. },
  49237. side: {
  49238. height: math.unit(5 + 9/12, "feet"),
  49239. weight: math.unit(1150, "lb"),
  49240. name: "Side",
  49241. image: {
  49242. source: "./media/characters/ven/side.svg",
  49243. extra: 1119/1070,
  49244. bottom: 42/1161
  49245. },
  49246. default: true
  49247. },
  49248. },
  49249. [
  49250. {
  49251. name: "Normal",
  49252. height: math.unit(5 + 9/12, "feet"),
  49253. default: true
  49254. },
  49255. ]
  49256. ))
  49257. characterMakers.push(() => makeCharacter(
  49258. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  49259. {
  49260. front: {
  49261. height: math.unit(12, "feet"),
  49262. weight: math.unit(1000, "kg"),
  49263. name: "Front",
  49264. image: {
  49265. source: "./media/characters/maple/front.svg",
  49266. extra: 1193/1081,
  49267. bottom: 22/1215
  49268. }
  49269. },
  49270. },
  49271. [
  49272. {
  49273. name: "Compressed",
  49274. height: math.unit(7, "feet")
  49275. },
  49276. {
  49277. name: "Normal",
  49278. height: math.unit(12, "feet"),
  49279. default: true
  49280. },
  49281. ]
  49282. ))
  49283. characterMakers.push(() => makeCharacter(
  49284. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  49285. {
  49286. front: {
  49287. height: math.unit(9, "feet"),
  49288. weight: math.unit(1500, "lb"),
  49289. name: "Front",
  49290. image: {
  49291. source: "./media/characters/nora/front.svg",
  49292. extra: 1348/1286,
  49293. bottom: 218/1566
  49294. }
  49295. },
  49296. erect: {
  49297. height: math.unit(9, "feet"),
  49298. weight: math.unit(11500, "lb"),
  49299. name: "Erect",
  49300. image: {
  49301. source: "./media/characters/nora/erect.svg",
  49302. extra: 1488/1433,
  49303. bottom: 133/1621
  49304. }
  49305. },
  49306. },
  49307. [
  49308. {
  49309. name: "Normal",
  49310. height: math.unit(9, "feet"),
  49311. default: true
  49312. },
  49313. ]
  49314. ))
  49315. characterMakers.push(() => makeCharacter(
  49316. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  49317. {
  49318. front: {
  49319. height: math.unit(25, "feet"),
  49320. weight: math.unit(27500, "lb"),
  49321. name: "Front",
  49322. image: {
  49323. source: "./media/characters/north-caudin/front.svg",
  49324. extra: 1184/1082,
  49325. bottom: 23/1207
  49326. }
  49327. },
  49328. },
  49329. [
  49330. {
  49331. name: "Compressed",
  49332. height: math.unit(10, "feet")
  49333. },
  49334. {
  49335. name: "Normal",
  49336. height: math.unit(25, "feet"),
  49337. default: true
  49338. },
  49339. ]
  49340. ))
  49341. characterMakers.push(() => makeCharacter(
  49342. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  49343. {
  49344. front: {
  49345. height: math.unit(9, "feet"),
  49346. weight: math.unit(1250, "lb"),
  49347. name: "Front",
  49348. image: {
  49349. source: "./media/characters/merrian/front.svg",
  49350. extra: 2393/2304,
  49351. bottom: 40/2433
  49352. }
  49353. },
  49354. },
  49355. [
  49356. {
  49357. name: "Normal",
  49358. height: math.unit(9, "feet"),
  49359. default: true
  49360. },
  49361. ]
  49362. ))
  49363. characterMakers.push(() => makeCharacter(
  49364. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  49365. {
  49366. front: {
  49367. height: math.unit(9, "feet"),
  49368. weight: math.unit(1000, "lb"),
  49369. name: "Front",
  49370. image: {
  49371. source: "./media/characters/hazel/front.svg",
  49372. extra: 2351/2298,
  49373. bottom: 38/2389
  49374. }
  49375. },
  49376. },
  49377. [
  49378. {
  49379. name: "Normal",
  49380. height: math.unit(9, "feet"),
  49381. default: true
  49382. },
  49383. ]
  49384. ))
  49385. characterMakers.push(() => makeCharacter(
  49386. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  49387. {
  49388. front: {
  49389. height: math.unit(13, "feet"),
  49390. weight: math.unit(3200, "lb"),
  49391. name: "Front",
  49392. image: {
  49393. source: "./media/characters/emma/front.svg",
  49394. extra: 2263/2029,
  49395. bottom: 68/2331
  49396. }
  49397. },
  49398. },
  49399. [
  49400. {
  49401. name: "Normal",
  49402. height: math.unit(13, "feet"),
  49403. default: true
  49404. },
  49405. ]
  49406. ))
  49407. characterMakers.push(() => makeCharacter(
  49408. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  49409. {
  49410. front: {
  49411. height: math.unit(11 + 9/12, "feet"),
  49412. weight: math.unit(2500, "lb"),
  49413. name: "Front",
  49414. image: {
  49415. source: "./media/characters/ilumina/front.svg",
  49416. extra: 2248/2209,
  49417. bottom: 164/2412
  49418. }
  49419. },
  49420. },
  49421. [
  49422. {
  49423. name: "Normal",
  49424. height: math.unit(11 + 9/12, "feet"),
  49425. default: true
  49426. },
  49427. ]
  49428. ))
  49429. characterMakers.push(() => makeCharacter(
  49430. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  49431. {
  49432. front: {
  49433. height: math.unit(8 + 10/12, "feet"),
  49434. weight: math.unit(1350, "lb"),
  49435. name: "Front",
  49436. image: {
  49437. source: "./media/characters/moonshine/front.svg",
  49438. extra: 2395/2288,
  49439. bottom: 40/2435
  49440. }
  49441. },
  49442. },
  49443. [
  49444. {
  49445. name: "Normal",
  49446. height: math.unit(8 + 10/12, "feet"),
  49447. default: true
  49448. },
  49449. ]
  49450. ))
  49451. characterMakers.push(() => makeCharacter(
  49452. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  49453. {
  49454. front: {
  49455. height: math.unit(14, "feet"),
  49456. weight: math.unit(3400, "lb"),
  49457. name: "Front",
  49458. image: {
  49459. source: "./media/characters/aletia/front.svg",
  49460. extra: 1185/1052,
  49461. bottom: 21/1206
  49462. }
  49463. },
  49464. },
  49465. [
  49466. {
  49467. name: "Compressed",
  49468. height: math.unit(8, "feet")
  49469. },
  49470. {
  49471. name: "Normal",
  49472. height: math.unit(14, "feet"),
  49473. default: true
  49474. },
  49475. ]
  49476. ))
  49477. characterMakers.push(() => makeCharacter(
  49478. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  49479. {
  49480. front: {
  49481. height: math.unit(17, "feet"),
  49482. weight: math.unit(6500, "lb"),
  49483. name: "Front",
  49484. image: {
  49485. source: "./media/characters/deidra/front.svg",
  49486. extra: 1201/1081,
  49487. bottom: 16/1217
  49488. }
  49489. },
  49490. },
  49491. [
  49492. {
  49493. name: "Compressed",
  49494. height: math.unit(9 + 6/12, "feet")
  49495. },
  49496. {
  49497. name: "Normal",
  49498. height: math.unit(17, "feet"),
  49499. default: true
  49500. },
  49501. ]
  49502. ))
  49503. characterMakers.push(() => makeCharacter(
  49504. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  49505. {
  49506. front: {
  49507. height: math.unit(7 + 4/12, "feet"),
  49508. weight: math.unit(280, "lb"),
  49509. name: "Front",
  49510. image: {
  49511. source: "./media/characters/freki-yrmori/front.svg",
  49512. extra: 1286/1182,
  49513. bottom: 29/1315
  49514. }
  49515. },
  49516. maw: {
  49517. height: math.unit(0.9, "feet"),
  49518. name: "Maw",
  49519. image: {
  49520. source: "./media/characters/freki-yrmori/maw.svg"
  49521. }
  49522. },
  49523. },
  49524. [
  49525. {
  49526. name: "Normal",
  49527. height: math.unit(7 + 4/12, "feet"),
  49528. default: true
  49529. },
  49530. {
  49531. name: "Macro",
  49532. height: math.unit(38.5, "meters")
  49533. },
  49534. ]
  49535. ))
  49536. characterMakers.push(() => makeCharacter(
  49537. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  49538. {
  49539. side: {
  49540. height: math.unit(47.2, "meters"),
  49541. weight: math.unit(10000, "tons"),
  49542. name: "Side",
  49543. image: {
  49544. source: "./media/characters/aetherios/side.svg",
  49545. extra: 2363/642,
  49546. bottom: 221/2584
  49547. }
  49548. },
  49549. top: {
  49550. height: math.unit(240, "meters"),
  49551. weight: math.unit(10000, "tons"),
  49552. name: "Top",
  49553. image: {
  49554. source: "./media/characters/aetherios/top.svg"
  49555. }
  49556. },
  49557. bottom: {
  49558. height: math.unit(240, "meters"),
  49559. weight: math.unit(10000, "tons"),
  49560. name: "Bottom",
  49561. image: {
  49562. source: "./media/characters/aetherios/bottom.svg"
  49563. }
  49564. },
  49565. head: {
  49566. height: math.unit(38.6, "meters"),
  49567. name: "Head",
  49568. image: {
  49569. source: "./media/characters/aetherios/head.svg",
  49570. extra: 1335/1112,
  49571. bottom: 0/1335
  49572. }
  49573. },
  49574. front: {
  49575. height: math.unit(29, "meters"),
  49576. name: "Front",
  49577. image: {
  49578. source: "./media/characters/aetherios/front.svg",
  49579. extra: 1266/953,
  49580. bottom: 158/1424
  49581. }
  49582. },
  49583. maw: {
  49584. height: math.unit(16.37, "meters"),
  49585. name: "Maw",
  49586. image: {
  49587. source: "./media/characters/aetherios/maw.svg",
  49588. extra: 748/637,
  49589. bottom: 0/748
  49590. },
  49591. extraAttributes: {
  49592. preyCapacity: {
  49593. name: "Capacity",
  49594. power: 3,
  49595. type: "volume",
  49596. base: math.unit(1000, "people")
  49597. },
  49598. tongueSize: {
  49599. name: "Tongue Size",
  49600. power: 2,
  49601. type: "area",
  49602. base: math.unit(21, "m^2")
  49603. }
  49604. }
  49605. },
  49606. forepaw: {
  49607. height: math.unit(18, "meters"),
  49608. name: "Forepaw",
  49609. image: {
  49610. source: "./media/characters/aetherios/forepaw.svg"
  49611. }
  49612. },
  49613. hindpaw: {
  49614. height: math.unit(23, "meters"),
  49615. name: "Hindpaw",
  49616. image: {
  49617. source: "./media/characters/aetherios/hindpaw.svg"
  49618. }
  49619. },
  49620. genitals: {
  49621. height: math.unit(42, "meters"),
  49622. name: "Genitals",
  49623. image: {
  49624. source: "./media/characters/aetherios/genitals.svg"
  49625. }
  49626. },
  49627. },
  49628. [
  49629. {
  49630. name: "Normal",
  49631. height: math.unit(47.2, "meters"),
  49632. default: true
  49633. },
  49634. {
  49635. name: "Macro",
  49636. height: math.unit(160, "meters")
  49637. },
  49638. {
  49639. name: "Mega",
  49640. height: math.unit(1.87, "km")
  49641. },
  49642. {
  49643. name: "Giga",
  49644. height: math.unit(40000, "km")
  49645. },
  49646. {
  49647. name: "Stellar",
  49648. height: math.unit(158000000, "km")
  49649. },
  49650. {
  49651. name: "Cosmic",
  49652. height: math.unit(9.46e12, "km")
  49653. },
  49654. ]
  49655. ))
  49656. characterMakers.push(() => makeCharacter(
  49657. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  49658. {
  49659. front: {
  49660. height: math.unit(5 + 4/12, "feet"),
  49661. weight: math.unit(80, "lb"),
  49662. name: "Front",
  49663. image: {
  49664. source: "./media/characters/mizu-gieeg/front.svg",
  49665. extra: 850/709,
  49666. bottom: 52/902
  49667. }
  49668. },
  49669. back: {
  49670. height: math.unit(5 + 4/12, "feet"),
  49671. weight: math.unit(80, "lb"),
  49672. name: "Back",
  49673. image: {
  49674. source: "./media/characters/mizu-gieeg/back.svg",
  49675. extra: 882/745,
  49676. bottom: 25/907
  49677. }
  49678. },
  49679. },
  49680. [
  49681. {
  49682. name: "Normal",
  49683. height: math.unit(5 + 4/12, "feet"),
  49684. default: true
  49685. },
  49686. ]
  49687. ))
  49688. characterMakers.push(() => makeCharacter(
  49689. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  49690. {
  49691. front: {
  49692. height: math.unit(6, "feet"),
  49693. name: "Front",
  49694. image: {
  49695. source: "./media/characters/roselle-st-papier/front.svg",
  49696. extra: 1430/1280,
  49697. bottom: 37/1467
  49698. }
  49699. },
  49700. back: {
  49701. height: math.unit(6, "feet"),
  49702. name: "Back",
  49703. image: {
  49704. source: "./media/characters/roselle-st-papier/back.svg",
  49705. extra: 1491/1296,
  49706. bottom: 23/1514
  49707. }
  49708. },
  49709. ear: {
  49710. height: math.unit(1.26, "feet"),
  49711. name: "Ear",
  49712. image: {
  49713. source: "./media/characters/roselle-st-papier/ear.svg"
  49714. }
  49715. },
  49716. },
  49717. [
  49718. {
  49719. name: "Normal",
  49720. height: math.unit(150, "feet"),
  49721. default: true
  49722. },
  49723. ]
  49724. ))
  49725. characterMakers.push(() => makeCharacter(
  49726. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  49727. {
  49728. front: {
  49729. height: math.unit(1, "inches"),
  49730. name: "Front",
  49731. image: {
  49732. source: "./media/characters/valargent/front.svg",
  49733. extra: 1825/1694,
  49734. bottom: 62/1887
  49735. }
  49736. },
  49737. back: {
  49738. height: math.unit(1, "inches"),
  49739. name: "Back",
  49740. image: {
  49741. source: "./media/characters/valargent/back.svg",
  49742. extra: 1775/1682,
  49743. bottom: 88/1863
  49744. }
  49745. },
  49746. },
  49747. [
  49748. {
  49749. name: "Micro",
  49750. height: math.unit(1, "inch"),
  49751. default: true
  49752. },
  49753. ]
  49754. ))
  49755. characterMakers.push(() => makeCharacter(
  49756. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  49757. {
  49758. front: {
  49759. height: math.unit(3.4, "meters"),
  49760. name: "Front",
  49761. image: {
  49762. source: "./media/characters/zarina/front.svg",
  49763. extra: 1733/1425,
  49764. bottom: 93/1826
  49765. }
  49766. },
  49767. squatting: {
  49768. height: math.unit(2.14, "meters"),
  49769. name: "Squatting",
  49770. image: {
  49771. source: "./media/characters/zarina/squatting.svg",
  49772. extra: 1073/788,
  49773. bottom: 63/1136
  49774. }
  49775. },
  49776. back: {
  49777. height: math.unit(2.14, "meters"),
  49778. name: "Back",
  49779. image: {
  49780. source: "./media/characters/zarina/back.svg",
  49781. extra: 1128/885,
  49782. bottom: 0/1128
  49783. }
  49784. },
  49785. },
  49786. [
  49787. {
  49788. name: "Normal",
  49789. height: math.unit(3.4, "meters"),
  49790. default: true
  49791. },
  49792. {
  49793. name: "Big",
  49794. height: math.unit(5, "meters")
  49795. },
  49796. {
  49797. name: "Macro",
  49798. height: math.unit(110, "meters")
  49799. },
  49800. ]
  49801. ))
  49802. //characters
  49803. function makeCharacters() {
  49804. const results = [];
  49805. characterMakers.forEach(character => {
  49806. results.push(character());
  49807. });
  49808. return results;
  49809. }