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

50860 lines
1.3 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.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. }
  1951. //species
  1952. function getSpeciesInfo(speciesList) {
  1953. let result = new Set();
  1954. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1955. result.add(entry)
  1956. });
  1957. return Array.from(result);
  1958. };
  1959. function getSpeciesInfoHelper(species) {
  1960. if (!speciesData[species]) {
  1961. console.warn(species + " doesn't exist");
  1962. return [];
  1963. }
  1964. if (speciesData[species].parents) {
  1965. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1966. } else {
  1967. return [species];
  1968. }
  1969. }
  1970. characterMakers.push(() => makeCharacter(
  1971. {
  1972. name: "Fen",
  1973. species: ["crux"],
  1974. description: {
  1975. title: "Bio",
  1976. text: "Very furry. Sheds on everything."
  1977. },
  1978. tags: [
  1979. "anthro",
  1980. "goo"
  1981. ]
  1982. },
  1983. {
  1984. front: {
  1985. height: math.unit(12, "feet"),
  1986. weight: math.unit(2400, "lb"),
  1987. name: "Front",
  1988. image: {
  1989. source: "./media/characters/fen/front.svg",
  1990. extra: 1804/1562,
  1991. bottom: 205/2009
  1992. }
  1993. },
  1994. diving: {
  1995. height: math.unit(4.9, "meters"),
  1996. weight: math.unit(2400, "lb"),
  1997. name: "Diving",
  1998. image: {
  1999. source: "./media/characters/fen/diving.svg"
  2000. }
  2001. },
  2002. goo: {
  2003. height: math.unit(12, "feet"),
  2004. weight: math.unit(3600, "lb"),
  2005. volume: math.unit(1000, "liters"),
  2006. capacity: math.unit(6, "people"),
  2007. name: "Goo",
  2008. image: {
  2009. source: "./media/characters/fen/goo.svg",
  2010. extra: 1307/1071,
  2011. bottom: 134/1441
  2012. }
  2013. },
  2014. maw: {
  2015. height: math.unit(5.03, "feet"),
  2016. name: "Maw",
  2017. image: {
  2018. source: "./media/characters/fen/maw.svg"
  2019. }
  2020. },
  2021. gooCeiling: {
  2022. height: math.unit(6.6, "feet"),
  2023. weight: math.unit(3000, "lb"),
  2024. volume: math.unit(1000, "liters"),
  2025. capacity: math.unit(6, "people"),
  2026. name: "Goo (Ceiling)",
  2027. image: {
  2028. source: "./media/characters/fen/goo-ceiling.svg"
  2029. }
  2030. },
  2031. back: {
  2032. height: math.unit(12, "feet"),
  2033. weight: math.unit(2400, "lb"),
  2034. name: "Back",
  2035. image: {
  2036. source: "./media/characters/fen/back.svg",
  2037. },
  2038. info: {
  2039. description: {
  2040. mode: "append",
  2041. text: "\n\nHe is not currently looking at you."
  2042. }
  2043. }
  2044. },
  2045. full: {
  2046. height: math.unit(1.85, "meter"),
  2047. weight: math.unit(3200, "lb"),
  2048. name: "Full",
  2049. image: {
  2050. source: "./media/characters/fen/full.svg",
  2051. extra: 1133/859,
  2052. bottom: 145/1278
  2053. },
  2054. info: {
  2055. description: {
  2056. mode: "append",
  2057. text: "\n\nMunch."
  2058. }
  2059. }
  2060. },
  2061. gooLounging: {
  2062. height: math.unit(4.53, "feet"),
  2063. weight: math.unit(3000, "lb"),
  2064. capacity: math.unit(6, "people"),
  2065. name: "Goo (Lounging)",
  2066. image: {
  2067. source: "./media/characters/fen/goo-lounging.svg",
  2068. bottom: 116 / 613
  2069. }
  2070. },
  2071. lounging: {
  2072. height: math.unit(10.52, "feet"),
  2073. weight: math.unit(2400, "lb"),
  2074. name: "Lounging",
  2075. image: {
  2076. source: "./media/characters/fen/lounging.svg"
  2077. }
  2078. },
  2079. },
  2080. [
  2081. {
  2082. name: "Small",
  2083. height: math.unit(2.2428, "meter")
  2084. },
  2085. {
  2086. name: "Normal",
  2087. height: math.unit(12, "feet"),
  2088. default: true,
  2089. },
  2090. {
  2091. name: "Big",
  2092. height: math.unit(20, "feet")
  2093. },
  2094. {
  2095. name: "Minimacro",
  2096. height: math.unit(40, "feet"),
  2097. info: {
  2098. description: {
  2099. mode: "append",
  2100. text: "\n\nTOO DAMN BIG"
  2101. }
  2102. }
  2103. },
  2104. {
  2105. name: "Macro",
  2106. height: math.unit(100, "feet"),
  2107. info: {
  2108. description: {
  2109. mode: "append",
  2110. text: "\n\nTOO DAMN BIG"
  2111. }
  2112. }
  2113. },
  2114. {
  2115. name: "Megamacro",
  2116. height: math.unit(2, "miles")
  2117. },
  2118. {
  2119. name: "Gigamacro",
  2120. height: math.unit(10, "earths")
  2121. },
  2122. ]
  2123. ))
  2124. characterMakers.push(() => makeCharacter(
  2125. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2126. {
  2127. front: {
  2128. height: math.unit(183, "cm"),
  2129. weight: math.unit(80, "kg"),
  2130. name: "Front",
  2131. image: {
  2132. source: "./media/characters/sofia-fluttertail/front.svg",
  2133. bottom: 0.01,
  2134. extra: 2154 / 2081
  2135. }
  2136. },
  2137. frontAlt: {
  2138. height: math.unit(183, "cm"),
  2139. weight: math.unit(80, "kg"),
  2140. name: "Front (alt)",
  2141. image: {
  2142. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2143. }
  2144. },
  2145. back: {
  2146. height: math.unit(183, "cm"),
  2147. weight: math.unit(80, "kg"),
  2148. name: "Back",
  2149. image: {
  2150. source: "./media/characters/sofia-fluttertail/back.svg"
  2151. }
  2152. },
  2153. kneeling: {
  2154. height: math.unit(125, "cm"),
  2155. weight: math.unit(80, "kg"),
  2156. name: "Kneeling",
  2157. image: {
  2158. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2159. extra: 1033 / 977,
  2160. bottom: 23.7 / 1057
  2161. }
  2162. },
  2163. maw: {
  2164. height: math.unit(183 / 5, "cm"),
  2165. name: "Maw",
  2166. image: {
  2167. source: "./media/characters/sofia-fluttertail/maw.svg"
  2168. }
  2169. },
  2170. mawcloseup: {
  2171. height: math.unit(183 / 5 * 0.41, "cm"),
  2172. name: "Maw (Closeup)",
  2173. image: {
  2174. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2175. }
  2176. },
  2177. paws: {
  2178. height: math.unit(1.17, "feet"),
  2179. name: "Paws",
  2180. image: {
  2181. source: "./media/characters/sofia-fluttertail/paws.svg",
  2182. extra: 851 / 851,
  2183. bottom: 17 / 868
  2184. }
  2185. },
  2186. },
  2187. [
  2188. {
  2189. name: "Normal",
  2190. height: math.unit(1.83, "meter")
  2191. },
  2192. {
  2193. name: "Size Thief",
  2194. height: math.unit(18, "feet")
  2195. },
  2196. {
  2197. name: "50 Foot Collie",
  2198. height: math.unit(50, "feet")
  2199. },
  2200. {
  2201. name: "Macro",
  2202. height: math.unit(96, "feet"),
  2203. default: true
  2204. },
  2205. {
  2206. name: "Megamerger",
  2207. height: math.unit(650, "feet")
  2208. },
  2209. ]
  2210. ))
  2211. characterMakers.push(() => makeCharacter(
  2212. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2213. {
  2214. front: {
  2215. height: math.unit(7, "feet"),
  2216. weight: math.unit(100, "kg"),
  2217. name: "Front",
  2218. image: {
  2219. source: "./media/characters/march/front.svg",
  2220. extra: 1992/1851,
  2221. bottom: 39/2031
  2222. }
  2223. },
  2224. foot: {
  2225. height: math.unit(0.9, "feet"),
  2226. name: "Foot",
  2227. image: {
  2228. source: "./media/characters/march/foot.svg"
  2229. }
  2230. },
  2231. },
  2232. [
  2233. {
  2234. name: "Normal",
  2235. height: math.unit(7.9, "feet")
  2236. },
  2237. {
  2238. name: "Macro",
  2239. height: math.unit(220, "meters")
  2240. },
  2241. {
  2242. name: "Megamacro",
  2243. height: math.unit(2.98, "km"),
  2244. default: true
  2245. },
  2246. {
  2247. name: "Gigamacro",
  2248. height: math.unit(15963, "km")
  2249. },
  2250. {
  2251. name: "Teramacro",
  2252. height: math.unit(2980000000, "km")
  2253. },
  2254. {
  2255. name: "Examacro",
  2256. height: math.unit(250, "parsecs")
  2257. },
  2258. ]
  2259. ))
  2260. characterMakers.push(() => makeCharacter(
  2261. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2262. {
  2263. front: {
  2264. height: math.unit(6, "feet"),
  2265. weight: math.unit(60, "kg"),
  2266. name: "Front",
  2267. image: {
  2268. source: "./media/characters/noir/front.svg",
  2269. extra: 1,
  2270. bottom: 0.032
  2271. }
  2272. },
  2273. },
  2274. [
  2275. {
  2276. name: "Normal",
  2277. height: math.unit(6.6, "feet")
  2278. },
  2279. {
  2280. name: "Macro",
  2281. height: math.unit(500, "feet")
  2282. },
  2283. {
  2284. name: "Megamacro",
  2285. height: math.unit(2.5, "km"),
  2286. default: true
  2287. },
  2288. {
  2289. name: "Gigamacro",
  2290. height: math.unit(22500, "km")
  2291. },
  2292. {
  2293. name: "Teramacro",
  2294. height: math.unit(2500000000, "km")
  2295. },
  2296. {
  2297. name: "Examacro",
  2298. height: math.unit(200, "parsecs")
  2299. },
  2300. ]
  2301. ))
  2302. characterMakers.push(() => makeCharacter(
  2303. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2304. {
  2305. front: {
  2306. height: math.unit(7, "feet"),
  2307. weight: math.unit(100, "kg"),
  2308. name: "Front",
  2309. image: {
  2310. source: "./media/characters/okuri/front.svg",
  2311. extra: 739/665,
  2312. bottom: 39/778
  2313. }
  2314. },
  2315. back: {
  2316. height: math.unit(7, "feet"),
  2317. weight: math.unit(100, "kg"),
  2318. name: "Back",
  2319. image: {
  2320. source: "./media/characters/okuri/back.svg",
  2321. extra: 734/653,
  2322. bottom: 13/747
  2323. }
  2324. },
  2325. sitting: {
  2326. height: math.unit(2.95, "feet"),
  2327. weight: math.unit(100, "kg"),
  2328. name: "Sitting",
  2329. image: {
  2330. source: "./media/characters/okuri/sitting.svg",
  2331. extra: 370/318,
  2332. bottom: 99/469
  2333. }
  2334. },
  2335. },
  2336. [
  2337. {
  2338. name: "Smallest",
  2339. height: math.unit(5 + 2/12, "feet")
  2340. },
  2341. {
  2342. name: "Smaller",
  2343. height: math.unit(300, "feet")
  2344. },
  2345. {
  2346. name: "Small",
  2347. height: math.unit(1000, "feet")
  2348. },
  2349. {
  2350. name: "Macro",
  2351. height: math.unit(1, "mile")
  2352. },
  2353. {
  2354. name: "Mega Macro (Small)",
  2355. height: math.unit(20, "km")
  2356. },
  2357. {
  2358. name: "Mega Macro (Large)",
  2359. height: math.unit(600, "km")
  2360. },
  2361. {
  2362. name: "Giga Macro",
  2363. height: math.unit(10000, "km")
  2364. },
  2365. {
  2366. name: "Normal",
  2367. height: math.unit(577560, "km"),
  2368. default: true
  2369. },
  2370. {
  2371. name: "Large",
  2372. height: math.unit(4, "galaxies")
  2373. },
  2374. {
  2375. name: "Largest",
  2376. height: math.unit(15, "multiverses")
  2377. },
  2378. ]
  2379. ))
  2380. characterMakers.push(() => makeCharacter(
  2381. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2382. {
  2383. front: {
  2384. height: math.unit(7, "feet"),
  2385. weight: math.unit(100, "kg"),
  2386. name: "Front",
  2387. image: {
  2388. source: "./media/characters/manny/front.svg",
  2389. extra: 1,
  2390. bottom: 0.06
  2391. }
  2392. },
  2393. back: {
  2394. height: math.unit(7, "feet"),
  2395. weight: math.unit(100, "kg"),
  2396. name: "Back",
  2397. image: {
  2398. source: "./media/characters/manny/back.svg",
  2399. extra: 1,
  2400. bottom: 0.014
  2401. }
  2402. },
  2403. },
  2404. [
  2405. {
  2406. name: "Normal",
  2407. height: math.unit(7, "feet"),
  2408. },
  2409. {
  2410. name: "Macro",
  2411. height: math.unit(78, "feet"),
  2412. default: true
  2413. },
  2414. {
  2415. name: "Macro+",
  2416. height: math.unit(300, "meters")
  2417. },
  2418. {
  2419. name: "Macro++",
  2420. height: math.unit(2400, "meters")
  2421. },
  2422. {
  2423. name: "Megamacro",
  2424. height: math.unit(5167, "meters")
  2425. },
  2426. {
  2427. name: "Gigamacro",
  2428. height: math.unit(41769, "miles")
  2429. },
  2430. ]
  2431. ))
  2432. characterMakers.push(() => makeCharacter(
  2433. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2434. {
  2435. front: {
  2436. height: math.unit(7, "feet"),
  2437. weight: math.unit(100, "kg"),
  2438. name: "Front",
  2439. image: {
  2440. source: "./media/characters/adake/front-1.svg"
  2441. }
  2442. },
  2443. frontAlt: {
  2444. height: math.unit(7, "feet"),
  2445. weight: math.unit(100, "kg"),
  2446. name: "Front (Alt)",
  2447. image: {
  2448. source: "./media/characters/adake/front-2.svg",
  2449. extra: 1,
  2450. bottom: 0.01
  2451. }
  2452. },
  2453. back: {
  2454. height: math.unit(7, "feet"),
  2455. weight: math.unit(100, "kg"),
  2456. name: "Back",
  2457. image: {
  2458. source: "./media/characters/adake/back.svg",
  2459. }
  2460. },
  2461. kneel: {
  2462. height: math.unit(5.385, "feet"),
  2463. weight: math.unit(100, "kg"),
  2464. name: "Kneeling",
  2465. image: {
  2466. source: "./media/characters/adake/kneel.svg",
  2467. bottom: 0.052
  2468. }
  2469. },
  2470. },
  2471. [
  2472. {
  2473. name: "Normal",
  2474. height: math.unit(7, "feet"),
  2475. },
  2476. {
  2477. name: "Macro",
  2478. height: math.unit(78, "feet"),
  2479. default: true
  2480. },
  2481. {
  2482. name: "Macro+",
  2483. height: math.unit(300, "meters")
  2484. },
  2485. {
  2486. name: "Macro++",
  2487. height: math.unit(2400, "meters")
  2488. },
  2489. {
  2490. name: "Megamacro",
  2491. height: math.unit(5167, "meters")
  2492. },
  2493. {
  2494. name: "Gigamacro",
  2495. height: math.unit(41769, "miles")
  2496. },
  2497. ]
  2498. ))
  2499. characterMakers.push(() => makeCharacter(
  2500. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2501. {
  2502. front: {
  2503. height: math.unit(1.65, "meters"),
  2504. weight: math.unit(50, "kg"),
  2505. name: "Front",
  2506. image: {
  2507. source: "./media/characters/elijah/front.svg",
  2508. extra: 858 / 830,
  2509. bottom: 95.5 / 953.8559
  2510. }
  2511. },
  2512. back: {
  2513. height: math.unit(1.65, "meters"),
  2514. weight: math.unit(50, "kg"),
  2515. name: "Back",
  2516. image: {
  2517. source: "./media/characters/elijah/back.svg",
  2518. extra: 895 / 850,
  2519. bottom: 5.3 / 897.956
  2520. }
  2521. },
  2522. frontNsfw: {
  2523. height: math.unit(1.65, "meters"),
  2524. weight: math.unit(50, "kg"),
  2525. name: "Front (NSFW)",
  2526. image: {
  2527. source: "./media/characters/elijah/front-nsfw.svg",
  2528. extra: 858 / 830,
  2529. bottom: 95.5 / 953.8559
  2530. }
  2531. },
  2532. backNsfw: {
  2533. height: math.unit(1.65, "meters"),
  2534. weight: math.unit(50, "kg"),
  2535. name: "Back (NSFW)",
  2536. image: {
  2537. source: "./media/characters/elijah/back-nsfw.svg",
  2538. extra: 895 / 850,
  2539. bottom: 5.3 / 897.956
  2540. }
  2541. },
  2542. dick: {
  2543. height: math.unit(1, "feet"),
  2544. name: "Dick",
  2545. image: {
  2546. source: "./media/characters/elijah/dick.svg"
  2547. }
  2548. },
  2549. beakOpen: {
  2550. height: math.unit(1.25, "feet"),
  2551. name: "Beak (Open)",
  2552. image: {
  2553. source: "./media/characters/elijah/beak-open.svg"
  2554. }
  2555. },
  2556. beakShut: {
  2557. height: math.unit(1.25, "feet"),
  2558. name: "Beak (Shut)",
  2559. image: {
  2560. source: "./media/characters/elijah/beak-shut.svg"
  2561. }
  2562. },
  2563. footFlexing: {
  2564. height: math.unit(1.61, "feet"),
  2565. name: "Foot (Flexing)",
  2566. image: {
  2567. source: "./media/characters/elijah/foot-flexing.svg"
  2568. }
  2569. },
  2570. footStepping: {
  2571. height: math.unit(1.44, "feet"),
  2572. name: "Foot (Stepping)",
  2573. image: {
  2574. source: "./media/characters/elijah/foot-stepping.svg"
  2575. }
  2576. },
  2577. plantigradeLeg: {
  2578. height: math.unit(2.34, "feet"),
  2579. name: "Plantigrade Leg",
  2580. image: {
  2581. source: "./media/characters/elijah/plantigrade-leg.svg"
  2582. }
  2583. },
  2584. plantigradeFootLeft: {
  2585. height: math.unit(0.9, "feet"),
  2586. name: "Plantigrade Foot (Left)",
  2587. image: {
  2588. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2589. }
  2590. },
  2591. plantigradeFootRight: {
  2592. height: math.unit(0.9, "feet"),
  2593. name: "Plantigrade Foot (Right)",
  2594. image: {
  2595. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2596. }
  2597. },
  2598. },
  2599. [
  2600. {
  2601. name: "Normal",
  2602. height: math.unit(1.65, "meters")
  2603. },
  2604. {
  2605. name: "Macro",
  2606. height: math.unit(55, "meters"),
  2607. default: true
  2608. },
  2609. {
  2610. name: "Macro+",
  2611. height: math.unit(105, "meters")
  2612. },
  2613. ]
  2614. ))
  2615. characterMakers.push(() => makeCharacter(
  2616. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2617. {
  2618. front: {
  2619. height: math.unit(7 + 2/12, "feet"),
  2620. weight: math.unit(320, "kg"),
  2621. name: "Front",
  2622. image: {
  2623. source: "./media/characters/rai/front.svg",
  2624. extra: 1802/1696,
  2625. bottom: 68/1870
  2626. }
  2627. },
  2628. frontDressed: {
  2629. height: math.unit(7 + 2/12, "feet"),
  2630. weight: math.unit(320, "kg"),
  2631. name: "Front (Dressed)",
  2632. image: {
  2633. source: "./media/characters/rai/front-dressed.svg",
  2634. extra: 1802/1696,
  2635. bottom: 68/1870
  2636. }
  2637. },
  2638. side: {
  2639. height: math.unit(7 + 2/12, "feet"),
  2640. weight: math.unit(320, "kg"),
  2641. name: "Side",
  2642. image: {
  2643. source: "./media/characters/rai/side.svg",
  2644. extra: 1789/1710,
  2645. bottom: 115/1904
  2646. }
  2647. },
  2648. back: {
  2649. height: math.unit(7 + 2/12, "feet"),
  2650. weight: math.unit(320, "kg"),
  2651. name: "Back",
  2652. image: {
  2653. source: "./media/characters/rai/back.svg",
  2654. extra: 1770/1707,
  2655. bottom: 28/1798
  2656. }
  2657. },
  2658. feral: {
  2659. height: math.unit(9.5, "feet"),
  2660. weight: math.unit(640, "kg"),
  2661. name: "Feral",
  2662. image: {
  2663. source: "./media/characters/rai/feral.svg",
  2664. extra: 945/553,
  2665. bottom: 176/1121
  2666. }
  2667. },
  2668. dragon: {
  2669. height: math.unit(23, "feet"),
  2670. weight: math.unit(50000, "lb"),
  2671. name: "Dragon",
  2672. image: {
  2673. source: "./media/characters/rai/dragon.svg",
  2674. extra: 2498 / 2030,
  2675. bottom: 85.2 / 2584
  2676. }
  2677. },
  2678. maw: {
  2679. height: math.unit(1.69, "feet"),
  2680. name: "Maw",
  2681. image: {
  2682. source: "./media/characters/rai/maw.svg"
  2683. }
  2684. },
  2685. },
  2686. [
  2687. {
  2688. name: "Normal",
  2689. height: math.unit(7 + 2/12, "feet")
  2690. },
  2691. {
  2692. name: "Big",
  2693. height: math.unit(11, "feet")
  2694. },
  2695. {
  2696. name: "Macro",
  2697. height: math.unit(302, "feet"),
  2698. default: true
  2699. },
  2700. ]
  2701. ))
  2702. characterMakers.push(() => makeCharacter(
  2703. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2704. {
  2705. frontDressed: {
  2706. height: math.unit(216, "feet"),
  2707. weight: math.unit(7000000, "lb"),
  2708. name: "Front (Dressed)",
  2709. image: {
  2710. source: "./media/characters/jazzy/front-dressed.svg",
  2711. extra: 2738 / 2651,
  2712. bottom: 41.8 / 2786
  2713. }
  2714. },
  2715. backDressed: {
  2716. height: math.unit(216, "feet"),
  2717. weight: math.unit(7000000, "lb"),
  2718. name: "Back (Dressed)",
  2719. image: {
  2720. source: "./media/characters/jazzy/back-dressed.svg",
  2721. extra: 2775 / 2673,
  2722. bottom: 36.8 / 2817
  2723. }
  2724. },
  2725. front: {
  2726. height: math.unit(216, "feet"),
  2727. weight: math.unit(7000000, "lb"),
  2728. name: "Front",
  2729. image: {
  2730. source: "./media/characters/jazzy/front.svg",
  2731. extra: 2738 / 2651,
  2732. bottom: 41.8 / 2786
  2733. }
  2734. },
  2735. back: {
  2736. height: math.unit(216, "feet"),
  2737. weight: math.unit(7000000, "lb"),
  2738. name: "Back",
  2739. image: {
  2740. source: "./media/characters/jazzy/back.svg",
  2741. extra: 2775 / 2673,
  2742. bottom: 36.8 / 2817
  2743. }
  2744. },
  2745. maw: {
  2746. height: math.unit(20, "feet"),
  2747. name: "Maw",
  2748. image: {
  2749. source: "./media/characters/jazzy/maw.svg"
  2750. }
  2751. },
  2752. paws: {
  2753. height: math.unit(27.5, "feet"),
  2754. name: "Paws",
  2755. image: {
  2756. source: "./media/characters/jazzy/paws.svg"
  2757. }
  2758. },
  2759. eye: {
  2760. height: math.unit(4.4, "feet"),
  2761. name: "Eye",
  2762. image: {
  2763. source: "./media/characters/jazzy/eye.svg"
  2764. }
  2765. },
  2766. droneOffense: {
  2767. height: math.unit(9.5, "inches"),
  2768. name: "Drone (Offense)",
  2769. image: {
  2770. source: "./media/characters/jazzy/drone-offense.svg"
  2771. }
  2772. },
  2773. droneRecon: {
  2774. height: math.unit(9.5, "inches"),
  2775. name: "Drone (Recon)",
  2776. image: {
  2777. source: "./media/characters/jazzy/drone-recon.svg"
  2778. }
  2779. },
  2780. droneDefense: {
  2781. height: math.unit(9.5, "inches"),
  2782. name: "Drone (Defense)",
  2783. image: {
  2784. source: "./media/characters/jazzy/drone-defense.svg"
  2785. }
  2786. },
  2787. },
  2788. [
  2789. {
  2790. name: "Macro",
  2791. height: math.unit(216, "feet"),
  2792. default: true
  2793. },
  2794. ]
  2795. ))
  2796. characterMakers.push(() => makeCharacter(
  2797. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2798. {
  2799. front: {
  2800. height: math.unit(9 + 6/12, "feet"),
  2801. weight: math.unit(700, "lb"),
  2802. name: "Front",
  2803. image: {
  2804. source: "./media/characters/flamm/front.svg",
  2805. extra: 1751/1632,
  2806. bottom: 46/1797
  2807. }
  2808. },
  2809. buff: {
  2810. height: math.unit(9 + 6/12, "feet"),
  2811. weight: math.unit(950, "lb"),
  2812. name: "Buff",
  2813. image: {
  2814. source: "./media/characters/flamm/buff.svg",
  2815. extra: 3018/2874,
  2816. bottom: 221/3239
  2817. }
  2818. },
  2819. },
  2820. [
  2821. {
  2822. name: "Normal",
  2823. height: math.unit(9.5, "feet")
  2824. },
  2825. {
  2826. name: "Macro",
  2827. height: math.unit(200, "feet"),
  2828. default: true
  2829. },
  2830. ]
  2831. ))
  2832. characterMakers.push(() => makeCharacter(
  2833. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2834. {
  2835. front: {
  2836. height: math.unit(5 + 3/12, "feet"),
  2837. weight: math.unit(60, "kg"),
  2838. name: "Front",
  2839. image: {
  2840. source: "./media/characters/zephiro/front.svg",
  2841. extra: 2309 / 2162,
  2842. bottom: 0.069
  2843. }
  2844. },
  2845. side: {
  2846. height: math.unit(5 + 3/12, "feet"),
  2847. weight: math.unit(60, "kg"),
  2848. name: "Side",
  2849. image: {
  2850. source: "./media/characters/zephiro/side.svg",
  2851. extra: 2403 / 2279,
  2852. bottom: 0.015
  2853. }
  2854. },
  2855. back: {
  2856. height: math.unit(5 + 3/12, "feet"),
  2857. weight: math.unit(60, "kg"),
  2858. name: "Back",
  2859. image: {
  2860. source: "./media/characters/zephiro/back.svg",
  2861. extra: 2373 / 2244,
  2862. bottom: 0.013
  2863. }
  2864. },
  2865. hand: {
  2866. height: math.unit(0.68, "feet"),
  2867. name: "Hand",
  2868. image: {
  2869. source: "./media/characters/zephiro/hand.svg"
  2870. }
  2871. },
  2872. paw: {
  2873. height: math.unit(1, "feet"),
  2874. name: "Paw",
  2875. image: {
  2876. source: "./media/characters/zephiro/paw.svg"
  2877. }
  2878. },
  2879. beans: {
  2880. height: math.unit(0.93, "feet"),
  2881. name: "Beans",
  2882. image: {
  2883. source: "./media/characters/zephiro/beans.svg"
  2884. }
  2885. },
  2886. },
  2887. [
  2888. {
  2889. name: "Micro",
  2890. height: math.unit(3, "inches")
  2891. },
  2892. {
  2893. name: "Normal",
  2894. height: math.unit(5 + 3 / 12, "feet"),
  2895. default: true
  2896. },
  2897. {
  2898. name: "Macro",
  2899. height: math.unit(118, "feet")
  2900. },
  2901. ]
  2902. ))
  2903. characterMakers.push(() => makeCharacter(
  2904. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2905. {
  2906. front: {
  2907. height: math.unit(5, "feet"),
  2908. weight: math.unit(90, "kg"),
  2909. name: "Front",
  2910. image: {
  2911. source: "./media/characters/fory/front.svg",
  2912. extra: 2862 / 2674,
  2913. bottom: 180 / 3043.8
  2914. }
  2915. },
  2916. back: {
  2917. height: math.unit(5, "feet"),
  2918. weight: math.unit(90, "kg"),
  2919. name: "Back",
  2920. image: {
  2921. source: "./media/characters/fory/back.svg",
  2922. extra: 2962 / 2791,
  2923. bottom: 106 / 3071.8
  2924. }
  2925. },
  2926. foot: {
  2927. height: math.unit(2.14, "feet"),
  2928. name: "Foot",
  2929. image: {
  2930. source: "./media/characters/fory/foot.svg"
  2931. }
  2932. },
  2933. },
  2934. [
  2935. {
  2936. name: "Normal",
  2937. height: math.unit(5, "feet")
  2938. },
  2939. {
  2940. name: "Macro",
  2941. height: math.unit(50, "feet"),
  2942. default: true
  2943. },
  2944. {
  2945. name: "Megamacro",
  2946. height: math.unit(10, "miles")
  2947. },
  2948. {
  2949. name: "Gigamacro",
  2950. height: math.unit(5, "earths")
  2951. },
  2952. ]
  2953. ))
  2954. characterMakers.push(() => makeCharacter(
  2955. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2956. {
  2957. front: {
  2958. height: math.unit(7, "feet"),
  2959. weight: math.unit(90, "kg"),
  2960. name: "Front",
  2961. image: {
  2962. source: "./media/characters/kurrikage/front.svg",
  2963. extra: 1845/1733,
  2964. bottom: 119/1964
  2965. }
  2966. },
  2967. back: {
  2968. height: math.unit(7, "feet"),
  2969. weight: math.unit(90, "kg"),
  2970. name: "Back",
  2971. image: {
  2972. source: "./media/characters/kurrikage/back.svg",
  2973. extra: 1790/1677,
  2974. bottom: 61/1851
  2975. }
  2976. },
  2977. dressed: {
  2978. height: math.unit(7, "feet"),
  2979. weight: math.unit(90, "kg"),
  2980. name: "Dressed",
  2981. image: {
  2982. source: "./media/characters/kurrikage/dressed.svg",
  2983. extra: 1845/1733,
  2984. bottom: 119/1964
  2985. }
  2986. },
  2987. foot: {
  2988. height: math.unit(1.5, "feet"),
  2989. name: "Foot",
  2990. image: {
  2991. source: "./media/characters/kurrikage/foot.svg"
  2992. }
  2993. },
  2994. staff: {
  2995. height: math.unit(6.7, "feet"),
  2996. name: "Staff",
  2997. image: {
  2998. source: "./media/characters/kurrikage/staff.svg"
  2999. }
  3000. },
  3001. peek: {
  3002. height: math.unit(1.05, "feet"),
  3003. name: "Peeking",
  3004. image: {
  3005. source: "./media/characters/kurrikage/peek.svg",
  3006. bottom: 0.08
  3007. }
  3008. },
  3009. },
  3010. [
  3011. {
  3012. name: "Normal",
  3013. height: math.unit(12, "feet"),
  3014. default: true
  3015. },
  3016. {
  3017. name: "Big",
  3018. height: math.unit(20, "feet")
  3019. },
  3020. {
  3021. name: "Macro",
  3022. height: math.unit(500, "feet")
  3023. },
  3024. {
  3025. name: "Megamacro",
  3026. height: math.unit(20, "miles")
  3027. },
  3028. ]
  3029. ))
  3030. characterMakers.push(() => makeCharacter(
  3031. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3032. {
  3033. front: {
  3034. height: math.unit(6, "feet"),
  3035. weight: math.unit(75, "kg"),
  3036. name: "Front",
  3037. image: {
  3038. source: "./media/characters/shingo/front.svg",
  3039. extra: 1900/1825,
  3040. bottom: 82/1982
  3041. }
  3042. },
  3043. side: {
  3044. height: math.unit(6, "feet"),
  3045. weight: math.unit(75, "kg"),
  3046. name: "Side",
  3047. image: {
  3048. source: "./media/characters/shingo/side.svg",
  3049. extra: 1930/1865,
  3050. bottom: 16/1946
  3051. }
  3052. },
  3053. back: {
  3054. height: math.unit(6, "feet"),
  3055. weight: math.unit(75, "kg"),
  3056. name: "Back",
  3057. image: {
  3058. source: "./media/characters/shingo/back.svg",
  3059. extra: 1922/1852,
  3060. bottom: 16/1938
  3061. }
  3062. },
  3063. frontDressed: {
  3064. height: math.unit(6, "feet"),
  3065. weight: math.unit(150, "lb"),
  3066. name: "Front-dressed",
  3067. image: {
  3068. source: "./media/characters/shingo/front-dressed.svg",
  3069. extra: 1900/1825,
  3070. bottom: 82/1982
  3071. }
  3072. },
  3073. paw: {
  3074. height: math.unit(1.29, "feet"),
  3075. name: "Paw",
  3076. image: {
  3077. source: "./media/characters/shingo/paw.svg"
  3078. }
  3079. },
  3080. hand: {
  3081. height: math.unit(1.07, "feet"),
  3082. name: "Hand",
  3083. image: {
  3084. source: "./media/characters/shingo/hand.svg"
  3085. }
  3086. },
  3087. frontAlt: {
  3088. height: math.unit(6, "feet"),
  3089. weight: math.unit(75, "kg"),
  3090. name: "Front (Alt)",
  3091. image: {
  3092. source: "./media/characters/shingo/front-alt.svg",
  3093. extra: 3511 / 3338,
  3094. bottom: 0.005
  3095. }
  3096. },
  3097. frontAlt2: {
  3098. height: math.unit(6, "feet"),
  3099. weight: math.unit(75, "kg"),
  3100. name: "Front (Alt 2)",
  3101. image: {
  3102. source: "./media/characters/shingo/front-alt-2.svg",
  3103. extra: 706/681,
  3104. bottom: 11/717
  3105. }
  3106. },
  3107. pawAlt: {
  3108. height: math.unit(1, "feet"),
  3109. name: "Paw (Alt)",
  3110. image: {
  3111. source: "./media/characters/shingo/paw-alt.svg"
  3112. }
  3113. },
  3114. },
  3115. [
  3116. {
  3117. name: "Micro",
  3118. height: math.unit(4, "inches")
  3119. },
  3120. {
  3121. name: "Normal",
  3122. height: math.unit(6, "feet"),
  3123. default: true
  3124. },
  3125. {
  3126. name: "Macro",
  3127. height: math.unit(108, "feet")
  3128. },
  3129. {
  3130. name: "Macro+",
  3131. height: math.unit(1500, "feet")
  3132. },
  3133. ]
  3134. ))
  3135. characterMakers.push(() => makeCharacter(
  3136. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3137. {
  3138. side: {
  3139. height: math.unit(6, "feet"),
  3140. weight: math.unit(75, "kg"),
  3141. name: "Side",
  3142. image: {
  3143. source: "./media/characters/aigey/side.svg"
  3144. }
  3145. },
  3146. },
  3147. [
  3148. {
  3149. name: "Macro",
  3150. height: math.unit(200, "feet"),
  3151. default: true
  3152. },
  3153. {
  3154. name: "Megamacro",
  3155. height: math.unit(100, "miles")
  3156. },
  3157. ]
  3158. )
  3159. )
  3160. characterMakers.push(() => makeCharacter(
  3161. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3162. {
  3163. front: {
  3164. height: math.unit(5 + 5 / 12, "feet"),
  3165. weight: math.unit(75, "kg"),
  3166. name: "Front",
  3167. image: {
  3168. source: "./media/characters/natasha/front.svg",
  3169. extra: 859 / 824,
  3170. bottom: 23 / 879.6
  3171. }
  3172. },
  3173. frontNsfw: {
  3174. height: math.unit(5 + 5 / 12, "feet"),
  3175. weight: math.unit(75, "kg"),
  3176. name: "Front (NSFW)",
  3177. image: {
  3178. source: "./media/characters/natasha/front-nsfw.svg",
  3179. extra: 859 / 824,
  3180. bottom: 23 / 879.6
  3181. }
  3182. },
  3183. frontErect: {
  3184. height: math.unit(5 + 5 / 12, "feet"),
  3185. weight: math.unit(75, "kg"),
  3186. name: "Front (Erect)",
  3187. image: {
  3188. source: "./media/characters/natasha/front-erect.svg",
  3189. extra: 859 / 824,
  3190. bottom: 23 / 879.6
  3191. }
  3192. },
  3193. back: {
  3194. height: math.unit(5 + 5 / 12, "feet"),
  3195. weight: math.unit(75, "kg"),
  3196. name: "Back",
  3197. image: {
  3198. source: "./media/characters/natasha/back.svg",
  3199. extra: 887.9 / 852.6,
  3200. bottom: 9.7 / 896.4
  3201. }
  3202. },
  3203. backAlt: {
  3204. height: math.unit(5 + 5 / 12, "feet"),
  3205. weight: math.unit(75, "kg"),
  3206. name: "Back (Alt)",
  3207. image: {
  3208. source: "./media/characters/natasha/back-alt.svg",
  3209. extra: 1236.7 / 1192,
  3210. bottom: 22.3 / 1258.2
  3211. }
  3212. },
  3213. dick: {
  3214. height: math.unit(1.772, "feet"),
  3215. name: "Dick",
  3216. image: {
  3217. source: "./media/characters/natasha/dick.svg"
  3218. }
  3219. },
  3220. paw: {
  3221. height: math.unit(0.250, "meters"),
  3222. name: "Paw",
  3223. image: {
  3224. source: "./media/characters/natasha/paw.svg"
  3225. }
  3226. },
  3227. },
  3228. [
  3229. {
  3230. name: "Normal",
  3231. height: math.unit(5 + 5 / 12, "feet")
  3232. },
  3233. {
  3234. name: "Large",
  3235. height: math.unit(12, "feet")
  3236. },
  3237. {
  3238. name: "Macro",
  3239. height: math.unit(100, "feet"),
  3240. default: true
  3241. },
  3242. {
  3243. name: "Macro+",
  3244. height: math.unit(260, "feet")
  3245. },
  3246. {
  3247. name: "Macro++",
  3248. height: math.unit(1, "mile")
  3249. },
  3250. ]
  3251. ))
  3252. characterMakers.push(() => makeCharacter(
  3253. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3254. {
  3255. front: {
  3256. height: math.unit(6, "feet"),
  3257. weight: math.unit(75, "kg"),
  3258. name: "Front",
  3259. image: {
  3260. source: "./media/characters/malik/front.svg"
  3261. }
  3262. },
  3263. side: {
  3264. height: math.unit(6, "feet"),
  3265. weight: math.unit(75, "kg"),
  3266. name: "Side",
  3267. image: {
  3268. source: "./media/characters/malik/side.svg",
  3269. extra: 1.1539
  3270. }
  3271. },
  3272. back: {
  3273. height: math.unit(6, "feet"),
  3274. weight: math.unit(75, "kg"),
  3275. name: "Back",
  3276. image: {
  3277. source: "./media/characters/malik/back.svg"
  3278. }
  3279. },
  3280. },
  3281. [
  3282. {
  3283. name: "Macro",
  3284. height: math.unit(156, "feet"),
  3285. default: true
  3286. },
  3287. {
  3288. name: "Macro+",
  3289. height: math.unit(1188, "feet")
  3290. },
  3291. ]
  3292. ))
  3293. characterMakers.push(() => makeCharacter(
  3294. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3295. {
  3296. front: {
  3297. height: math.unit(6, "feet"),
  3298. weight: math.unit(75, "kg"),
  3299. name: "Front",
  3300. image: {
  3301. source: "./media/characters/sefer/front.svg",
  3302. extra: 848 / 659,
  3303. bottom: 28.3 / 876.442
  3304. }
  3305. },
  3306. back: {
  3307. height: math.unit(6, "feet"),
  3308. weight: math.unit(75, "kg"),
  3309. name: "Back",
  3310. image: {
  3311. source: "./media/characters/sefer/back.svg",
  3312. extra: 864 / 695,
  3313. bottom: 10 / 871
  3314. }
  3315. },
  3316. frontDressed: {
  3317. height: math.unit(6, "feet"),
  3318. weight: math.unit(75, "kg"),
  3319. name: "Front (Dressed)",
  3320. image: {
  3321. source: "./media/characters/sefer/front-dressed.svg",
  3322. extra: 839 / 653,
  3323. bottom: 37.6 / 878
  3324. }
  3325. },
  3326. },
  3327. [
  3328. {
  3329. name: "Normal",
  3330. height: math.unit(6, "feet"),
  3331. default: true
  3332. },
  3333. ]
  3334. ))
  3335. characterMakers.push(() => makeCharacter(
  3336. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3337. {
  3338. body: {
  3339. height: math.unit(2.2428, "meter"),
  3340. weight: math.unit(124.738, "kg"),
  3341. name: "Body",
  3342. image: {
  3343. extra: 1225 / 1050,
  3344. source: "./media/characters/north/front.svg"
  3345. }
  3346. }
  3347. },
  3348. [
  3349. {
  3350. name: "Micro",
  3351. height: math.unit(4, "inches")
  3352. },
  3353. {
  3354. name: "Macro",
  3355. height: math.unit(63, "meters")
  3356. },
  3357. {
  3358. name: "Megamacro",
  3359. height: math.unit(101, "miles"),
  3360. default: true
  3361. }
  3362. ]
  3363. ))
  3364. characterMakers.push(() => makeCharacter(
  3365. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3366. {
  3367. angled: {
  3368. height: math.unit(4, "meter"),
  3369. weight: math.unit(150, "kg"),
  3370. name: "Angled",
  3371. image: {
  3372. source: "./media/characters/talan/angled-sfw.svg",
  3373. bottom: 29 / 3734
  3374. }
  3375. },
  3376. angledNsfw: {
  3377. height: math.unit(4, "meter"),
  3378. weight: math.unit(150, "kg"),
  3379. name: "Angled (NSFW)",
  3380. image: {
  3381. source: "./media/characters/talan/angled-nsfw.svg",
  3382. bottom: 29 / 3734
  3383. }
  3384. },
  3385. frontNsfw: {
  3386. height: math.unit(4, "meter"),
  3387. weight: math.unit(150, "kg"),
  3388. name: "Front (NSFW)",
  3389. image: {
  3390. source: "./media/characters/talan/front-nsfw.svg",
  3391. bottom: 29 / 3734
  3392. }
  3393. },
  3394. sideNsfw: {
  3395. height: math.unit(4, "meter"),
  3396. weight: math.unit(150, "kg"),
  3397. name: "Side (NSFW)",
  3398. image: {
  3399. source: "./media/characters/talan/side-nsfw.svg",
  3400. bottom: 29 / 3734
  3401. }
  3402. },
  3403. back: {
  3404. height: math.unit(4, "meter"),
  3405. weight: math.unit(150, "kg"),
  3406. name: "Back",
  3407. image: {
  3408. source: "./media/characters/talan/back.svg"
  3409. }
  3410. },
  3411. dickBottom: {
  3412. height: math.unit(0.621, "meter"),
  3413. name: "Dick (Bottom)",
  3414. image: {
  3415. source: "./media/characters/talan/dick-bottom.svg"
  3416. }
  3417. },
  3418. dickTop: {
  3419. height: math.unit(0.621, "meter"),
  3420. name: "Dick (Top)",
  3421. image: {
  3422. source: "./media/characters/talan/dick-top.svg"
  3423. }
  3424. },
  3425. dickSide: {
  3426. height: math.unit(0.305, "meter"),
  3427. name: "Dick (Side)",
  3428. image: {
  3429. source: "./media/characters/talan/dick-side.svg"
  3430. }
  3431. },
  3432. dickFront: {
  3433. height: math.unit(0.305, "meter"),
  3434. name: "Dick (Front)",
  3435. image: {
  3436. source: "./media/characters/talan/dick-front.svg"
  3437. }
  3438. },
  3439. },
  3440. [
  3441. {
  3442. name: "Normal",
  3443. height: math.unit(4, "meters")
  3444. },
  3445. {
  3446. name: "Macro",
  3447. height: math.unit(100, "meters")
  3448. },
  3449. {
  3450. name: "Megamacro",
  3451. height: math.unit(2, "miles"),
  3452. default: true
  3453. },
  3454. {
  3455. name: "Gigamacro",
  3456. height: math.unit(5000, "miles")
  3457. },
  3458. {
  3459. name: "Teramacro",
  3460. height: math.unit(100, "parsecs")
  3461. }
  3462. ]
  3463. ))
  3464. characterMakers.push(() => makeCharacter(
  3465. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3466. {
  3467. front: {
  3468. height: math.unit(2, "meter"),
  3469. weight: math.unit(90, "kg"),
  3470. name: "Front",
  3471. image: {
  3472. source: "./media/characters/gael'rathus/front.svg"
  3473. }
  3474. },
  3475. frontAlt: {
  3476. height: math.unit(2, "meter"),
  3477. weight: math.unit(90, "kg"),
  3478. name: "Front (alt)",
  3479. image: {
  3480. source: "./media/characters/gael'rathus/front-alt.svg"
  3481. }
  3482. },
  3483. frontAlt2: {
  3484. height: math.unit(2, "meter"),
  3485. weight: math.unit(90, "kg"),
  3486. name: "Front (alt 2)",
  3487. image: {
  3488. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3489. }
  3490. }
  3491. },
  3492. [
  3493. {
  3494. name: "Normal",
  3495. height: math.unit(9, "feet"),
  3496. default: true
  3497. },
  3498. {
  3499. name: "Large",
  3500. height: math.unit(25, "feet")
  3501. },
  3502. {
  3503. name: "Macro",
  3504. height: math.unit(0.25, "miles")
  3505. },
  3506. {
  3507. name: "Megamacro",
  3508. height: math.unit(10, "miles")
  3509. }
  3510. ]
  3511. ))
  3512. characterMakers.push(() => makeCharacter(
  3513. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3514. {
  3515. side: {
  3516. height: math.unit(2, "meter"),
  3517. weight: math.unit(140, "kg"),
  3518. name: "Side",
  3519. image: {
  3520. source: "./media/characters/sosha/side.svg",
  3521. bottom: 0.042
  3522. }
  3523. },
  3524. },
  3525. [
  3526. {
  3527. name: "Normal",
  3528. height: math.unit(12, "feet"),
  3529. default: true
  3530. }
  3531. ]
  3532. ))
  3533. characterMakers.push(() => makeCharacter(
  3534. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3535. {
  3536. side: {
  3537. height: math.unit(5 + 5 / 12, "feet"),
  3538. weight: math.unit(170, "kg"),
  3539. name: "Side",
  3540. image: {
  3541. source: "./media/characters/runnola/side.svg",
  3542. extra: 741 / 448,
  3543. bottom: 0.05
  3544. }
  3545. },
  3546. },
  3547. [
  3548. {
  3549. name: "Small",
  3550. height: math.unit(3, "feet")
  3551. },
  3552. {
  3553. name: "Normal",
  3554. height: math.unit(5 + 5 / 12, "feet"),
  3555. default: true
  3556. },
  3557. {
  3558. name: "Big",
  3559. height: math.unit(10, "feet")
  3560. },
  3561. ]
  3562. ))
  3563. characterMakers.push(() => makeCharacter(
  3564. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3565. {
  3566. front: {
  3567. height: math.unit(2, "meter"),
  3568. weight: math.unit(50, "kg"),
  3569. name: "Front",
  3570. image: {
  3571. source: "./media/characters/kurribird/front.svg",
  3572. bottom: 0.015
  3573. }
  3574. },
  3575. frontAlt: {
  3576. height: math.unit(1.5, "meter"),
  3577. weight: math.unit(50, "kg"),
  3578. name: "Front (Alt)",
  3579. image: {
  3580. source: "./media/characters/kurribird/front-alt.svg",
  3581. extra: 1.45
  3582. }
  3583. },
  3584. },
  3585. [
  3586. {
  3587. name: "Normal",
  3588. height: math.unit(7, "feet")
  3589. },
  3590. {
  3591. name: "Big",
  3592. height: math.unit(12, "feet"),
  3593. default: true
  3594. },
  3595. {
  3596. name: "Macro",
  3597. height: math.unit(1500, "feet")
  3598. },
  3599. {
  3600. name: "Megamacro",
  3601. height: math.unit(2, "miles")
  3602. }
  3603. ]
  3604. ))
  3605. characterMakers.push(() => makeCharacter(
  3606. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3607. {
  3608. front: {
  3609. height: math.unit(2, "meter"),
  3610. weight: math.unit(80, "kg"),
  3611. name: "Front",
  3612. image: {
  3613. source: "./media/characters/elbial/front.svg",
  3614. extra: 1643 / 1556,
  3615. bottom: 60.2 / 1696
  3616. }
  3617. },
  3618. side: {
  3619. height: math.unit(2, "meter"),
  3620. weight: math.unit(80, "kg"),
  3621. name: "Side",
  3622. image: {
  3623. source: "./media/characters/elbial/side.svg",
  3624. extra: 1601/1528,
  3625. bottom: 97/1698
  3626. }
  3627. },
  3628. back: {
  3629. height: math.unit(2, "meter"),
  3630. weight: math.unit(80, "kg"),
  3631. name: "Back",
  3632. image: {
  3633. source: "./media/characters/elbial/back.svg",
  3634. extra: 1653/1569,
  3635. bottom: 20/1673
  3636. }
  3637. },
  3638. frontDressed: {
  3639. height: math.unit(2, "meter"),
  3640. weight: math.unit(80, "kg"),
  3641. name: "Front (Dressed)",
  3642. image: {
  3643. source: "./media/characters/elbial/front-dressed.svg",
  3644. extra: 1638/1569,
  3645. bottom: 70/1708
  3646. }
  3647. },
  3648. genitals: {
  3649. height: math.unit(2 / 3.367, "meter"),
  3650. name: "Genitals",
  3651. image: {
  3652. source: "./media/characters/elbial/genitals.svg"
  3653. }
  3654. },
  3655. },
  3656. [
  3657. {
  3658. name: "Large",
  3659. height: math.unit(100, "feet")
  3660. },
  3661. {
  3662. name: "Macro",
  3663. height: math.unit(500, "feet"),
  3664. default: true
  3665. },
  3666. {
  3667. name: "Megamacro",
  3668. height: math.unit(10, "miles")
  3669. },
  3670. {
  3671. name: "Gigamacro",
  3672. height: math.unit(25000, "miles")
  3673. },
  3674. {
  3675. name: "Full-Size",
  3676. height: math.unit(8000000, "gigaparsecs")
  3677. }
  3678. ]
  3679. ))
  3680. characterMakers.push(() => makeCharacter(
  3681. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3682. {
  3683. front: {
  3684. height: math.unit(2, "meter"),
  3685. weight: math.unit(60, "kg"),
  3686. name: "Front",
  3687. image: {
  3688. source: "./media/characters/noah/front.svg"
  3689. }
  3690. },
  3691. talons: {
  3692. height: math.unit(0.315, "meter"),
  3693. name: "Talons",
  3694. image: {
  3695. source: "./media/characters/noah/talons.svg"
  3696. }
  3697. }
  3698. },
  3699. [
  3700. {
  3701. name: "Large",
  3702. height: math.unit(50, "feet")
  3703. },
  3704. {
  3705. name: "Macro",
  3706. height: math.unit(750, "feet"),
  3707. default: true
  3708. },
  3709. {
  3710. name: "Megamacro",
  3711. height: math.unit(50, "miles")
  3712. },
  3713. {
  3714. name: "Gigamacro",
  3715. height: math.unit(100000, "miles")
  3716. },
  3717. {
  3718. name: "Full-Size",
  3719. height: math.unit(3000000000, "miles")
  3720. }
  3721. ]
  3722. ))
  3723. characterMakers.push(() => makeCharacter(
  3724. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3725. {
  3726. front: {
  3727. height: math.unit(2, "meter"),
  3728. weight: math.unit(80, "kg"),
  3729. name: "Front",
  3730. image: {
  3731. source: "./media/characters/natalya/front.svg"
  3732. }
  3733. },
  3734. back: {
  3735. height: math.unit(2, "meter"),
  3736. weight: math.unit(80, "kg"),
  3737. name: "Back",
  3738. image: {
  3739. source: "./media/characters/natalya/back.svg"
  3740. }
  3741. }
  3742. },
  3743. [
  3744. {
  3745. name: "Normal",
  3746. height: math.unit(150, "feet"),
  3747. default: true
  3748. },
  3749. {
  3750. name: "Megamacro",
  3751. height: math.unit(5, "miles")
  3752. },
  3753. {
  3754. name: "Full-Size",
  3755. height: math.unit(600, "kiloparsecs")
  3756. }
  3757. ]
  3758. ))
  3759. characterMakers.push(() => makeCharacter(
  3760. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3761. {
  3762. front: {
  3763. height: math.unit(2, "meter"),
  3764. weight: math.unit(50, "kg"),
  3765. name: "Front",
  3766. image: {
  3767. source: "./media/characters/erestrebah/front.svg",
  3768. extra: 1262/1162,
  3769. bottom: 96/1358
  3770. }
  3771. },
  3772. back: {
  3773. height: math.unit(2, "meter"),
  3774. weight: math.unit(50, "kg"),
  3775. name: "Back",
  3776. image: {
  3777. source: "./media/characters/erestrebah/back.svg",
  3778. extra: 1257/1139,
  3779. bottom: 13/1270
  3780. }
  3781. },
  3782. wing: {
  3783. height: math.unit(2, "meter"),
  3784. weight: math.unit(50, "kg"),
  3785. name: "Wing",
  3786. image: {
  3787. source: "./media/characters/erestrebah/wing.svg",
  3788. extra: 1262/1162,
  3789. bottom: 96/1358
  3790. }
  3791. },
  3792. mouth: {
  3793. height: math.unit(0.39, "feet"),
  3794. name: "Mouth",
  3795. image: {
  3796. source: "./media/characters/erestrebah/mouth.svg"
  3797. }
  3798. }
  3799. },
  3800. [
  3801. {
  3802. name: "Normal",
  3803. height: math.unit(10, "feet")
  3804. },
  3805. {
  3806. name: "Large",
  3807. height: math.unit(50, "feet"),
  3808. default: true
  3809. },
  3810. {
  3811. name: "Macro",
  3812. height: math.unit(300, "feet")
  3813. },
  3814. {
  3815. name: "Macro+",
  3816. height: math.unit(750, "feet")
  3817. },
  3818. {
  3819. name: "Megamacro",
  3820. height: math.unit(3, "miles")
  3821. }
  3822. ]
  3823. ))
  3824. characterMakers.push(() => makeCharacter(
  3825. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3826. {
  3827. front: {
  3828. height: math.unit(2, "meter"),
  3829. weight: math.unit(80, "kg"),
  3830. name: "Front",
  3831. image: {
  3832. source: "./media/characters/jennifer/front.svg",
  3833. bottom: 0.11,
  3834. extra: 1.16
  3835. }
  3836. },
  3837. frontAlt: {
  3838. height: math.unit(2, "meter"),
  3839. weight: math.unit(80, "kg"),
  3840. name: "Front (Alt)",
  3841. image: {
  3842. source: "./media/characters/jennifer/front-alt.svg"
  3843. }
  3844. }
  3845. },
  3846. [
  3847. {
  3848. name: "Canon Height",
  3849. height: math.unit(120, "feet"),
  3850. default: true
  3851. },
  3852. {
  3853. name: "Macro+",
  3854. height: math.unit(300, "feet")
  3855. },
  3856. {
  3857. name: "Megamacro",
  3858. height: math.unit(20000, "feet")
  3859. }
  3860. ]
  3861. ))
  3862. characterMakers.push(() => makeCharacter(
  3863. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3864. {
  3865. front: {
  3866. height: math.unit(2, "meter"),
  3867. weight: math.unit(50, "kg"),
  3868. name: "Front",
  3869. image: {
  3870. source: "./media/characters/kalista/front.svg",
  3871. extra: 1314/1145,
  3872. bottom: 101/1415
  3873. }
  3874. },
  3875. back: {
  3876. height: math.unit(2, "meter"),
  3877. weight: math.unit(50, "kg"),
  3878. name: "Back",
  3879. image: {
  3880. source: "./media/characters/kalista/back.svg",
  3881. extra: 1366 / 1156,
  3882. bottom: 33.9 / 1362.78
  3883. }
  3884. }
  3885. },
  3886. [
  3887. {
  3888. name: "Uncomfortably Small",
  3889. height: math.unit(10, "feet")
  3890. },
  3891. {
  3892. name: "Small",
  3893. height: math.unit(30, "feet")
  3894. },
  3895. {
  3896. name: "Macro",
  3897. height: math.unit(100, "feet"),
  3898. default: true
  3899. },
  3900. {
  3901. name: "Macro+",
  3902. height: math.unit(2000, "feet")
  3903. },
  3904. {
  3905. name: "True Form",
  3906. height: math.unit(8924, "miles")
  3907. }
  3908. ]
  3909. ))
  3910. characterMakers.push(() => makeCharacter(
  3911. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3912. {
  3913. front: {
  3914. height: math.unit(2, "meter"),
  3915. weight: math.unit(120, "kg"),
  3916. name: "Front",
  3917. image: {
  3918. source: "./media/characters/ggv/front.svg"
  3919. }
  3920. },
  3921. side: {
  3922. height: math.unit(2, "meter"),
  3923. weight: math.unit(120, "kg"),
  3924. name: "Side",
  3925. image: {
  3926. source: "./media/characters/ggv/side.svg"
  3927. }
  3928. }
  3929. },
  3930. [
  3931. {
  3932. name: "Extremely Puny",
  3933. height: math.unit(9 + 5 / 12, "feet")
  3934. },
  3935. {
  3936. name: "Horribly Small",
  3937. height: math.unit(47.7, "miles"),
  3938. default: true
  3939. },
  3940. {
  3941. name: "Reasonably Sized",
  3942. height: math.unit(25000, "parsecs")
  3943. },
  3944. {
  3945. name: "Slightly Uncompressed",
  3946. height: math.unit(7.77e31, "parsecs")
  3947. },
  3948. {
  3949. name: "Omniversal",
  3950. height: math.unit(1e300, "meters")
  3951. },
  3952. ]
  3953. ))
  3954. characterMakers.push(() => makeCharacter(
  3955. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3956. {
  3957. front: {
  3958. height: math.unit(2, "meter"),
  3959. weight: math.unit(75, "lb"),
  3960. name: "Front",
  3961. image: {
  3962. source: "./media/characters/napalm/front.svg"
  3963. }
  3964. },
  3965. back: {
  3966. height: math.unit(2, "meter"),
  3967. weight: math.unit(75, "lb"),
  3968. name: "Back",
  3969. image: {
  3970. source: "./media/characters/napalm/back.svg"
  3971. }
  3972. }
  3973. },
  3974. [
  3975. {
  3976. name: "Standard",
  3977. height: math.unit(55, "feet"),
  3978. default: true
  3979. }
  3980. ]
  3981. ))
  3982. characterMakers.push(() => makeCharacter(
  3983. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3984. {
  3985. front: {
  3986. height: math.unit(7 + 5 / 6, "feet"),
  3987. weight: math.unit(325, "lb"),
  3988. name: "Front",
  3989. image: {
  3990. source: "./media/characters/asana/front.svg",
  3991. extra: 1133 / 1060,
  3992. bottom: 15.2 / 1148.6
  3993. }
  3994. },
  3995. back: {
  3996. height: math.unit(7 + 5 / 6, "feet"),
  3997. weight: math.unit(325, "lb"),
  3998. name: "Back",
  3999. image: {
  4000. source: "./media/characters/asana/back.svg",
  4001. extra: 1114 / 1043,
  4002. bottom: 5 / 1120
  4003. }
  4004. },
  4005. dressedDark: {
  4006. height: math.unit(7 + 5 / 6, "feet"),
  4007. weight: math.unit(325, "lb"),
  4008. name: "Dressed (Dark)",
  4009. image: {
  4010. source: "./media/characters/asana/dressed-dark.svg",
  4011. extra: 1133 / 1060,
  4012. bottom: 15.2 / 1148.6
  4013. }
  4014. },
  4015. dressedLight: {
  4016. height: math.unit(7 + 5 / 6, "feet"),
  4017. weight: math.unit(325, "lb"),
  4018. name: "Dressed (Light)",
  4019. image: {
  4020. source: "./media/characters/asana/dressed-light.svg",
  4021. extra: 1133 / 1060,
  4022. bottom: 15.2 / 1148.6
  4023. }
  4024. },
  4025. },
  4026. [
  4027. {
  4028. name: "Standard",
  4029. height: math.unit(7 + 5 / 6, "feet"),
  4030. default: true
  4031. },
  4032. {
  4033. name: "Large",
  4034. height: math.unit(10, "meters")
  4035. },
  4036. {
  4037. name: "Macro",
  4038. height: math.unit(2500, "meters")
  4039. },
  4040. {
  4041. name: "Megamacro",
  4042. height: math.unit(5e6, "meters")
  4043. },
  4044. {
  4045. name: "Examacro",
  4046. height: math.unit(5e12, "lightyears")
  4047. },
  4048. {
  4049. name: "Max Size",
  4050. height: math.unit(1e31, "lightyears")
  4051. }
  4052. ]
  4053. ))
  4054. characterMakers.push(() => makeCharacter(
  4055. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4056. {
  4057. front: {
  4058. height: math.unit(2, "meter"),
  4059. weight: math.unit(60, "kg"),
  4060. name: "Front",
  4061. image: {
  4062. source: "./media/characters/ebony/front.svg",
  4063. bottom: 0.03,
  4064. extra: 1045 / 810 + 0.03
  4065. }
  4066. },
  4067. side: {
  4068. height: math.unit(2, "meter"),
  4069. weight: math.unit(60, "kg"),
  4070. name: "Side",
  4071. image: {
  4072. source: "./media/characters/ebony/side.svg",
  4073. bottom: 0.03,
  4074. extra: 1045 / 810 + 0.03
  4075. }
  4076. },
  4077. back: {
  4078. height: math.unit(2, "meter"),
  4079. weight: math.unit(60, "kg"),
  4080. name: "Back",
  4081. image: {
  4082. source: "./media/characters/ebony/back.svg",
  4083. bottom: 0.01,
  4084. extra: 1045 / 810 + 0.01
  4085. }
  4086. },
  4087. },
  4088. [
  4089. // TODO check why I did this lol
  4090. {
  4091. name: "Standard",
  4092. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4093. default: true
  4094. },
  4095. {
  4096. name: "Macro",
  4097. height: math.unit(200, "feet")
  4098. },
  4099. {
  4100. name: "Gigamacro",
  4101. height: math.unit(13000, "km")
  4102. }
  4103. ]
  4104. ))
  4105. characterMakers.push(() => makeCharacter(
  4106. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4107. {
  4108. front: {
  4109. height: math.unit(6, "feet"),
  4110. weight: math.unit(175, "lb"),
  4111. name: "Front",
  4112. image: {
  4113. source: "./media/characters/mountain/front.svg",
  4114. extra: 972 / 955,
  4115. bottom: 64 / 1036.6
  4116. }
  4117. },
  4118. back: {
  4119. height: math.unit(6, "feet"),
  4120. weight: math.unit(175, "lb"),
  4121. name: "Back",
  4122. image: {
  4123. source: "./media/characters/mountain/back.svg",
  4124. extra: 970 / 950,
  4125. bottom: 28.25 / 999
  4126. }
  4127. },
  4128. },
  4129. [
  4130. {
  4131. name: "Large",
  4132. height: math.unit(20, "meters")
  4133. },
  4134. {
  4135. name: "Macro",
  4136. height: math.unit(300, "meters")
  4137. },
  4138. {
  4139. name: "Gigamacro",
  4140. height: math.unit(10000, "km"),
  4141. default: true
  4142. },
  4143. {
  4144. name: "Examacro",
  4145. height: math.unit(10e9, "lightyears")
  4146. }
  4147. ]
  4148. ))
  4149. characterMakers.push(() => makeCharacter(
  4150. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4151. {
  4152. front: {
  4153. height: math.unit(8, "feet"),
  4154. weight: math.unit(500, "lb"),
  4155. name: "Front",
  4156. image: {
  4157. source: "./media/characters/rick/front.svg"
  4158. }
  4159. }
  4160. },
  4161. [
  4162. {
  4163. name: "Normal",
  4164. height: math.unit(8, "feet"),
  4165. default: true
  4166. },
  4167. {
  4168. name: "Macro",
  4169. height: math.unit(5, "km")
  4170. }
  4171. ]
  4172. ))
  4173. characterMakers.push(() => makeCharacter(
  4174. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4175. {
  4176. front: {
  4177. height: math.unit(8, "feet"),
  4178. weight: math.unit(120, "lb"),
  4179. name: "Front",
  4180. image: {
  4181. source: "./media/characters/ona/front.svg"
  4182. }
  4183. },
  4184. frontAlt: {
  4185. height: math.unit(8, "feet"),
  4186. weight: math.unit(120, "lb"),
  4187. name: "Front (Alt)",
  4188. image: {
  4189. source: "./media/characters/ona/front-alt.svg"
  4190. }
  4191. },
  4192. back: {
  4193. height: math.unit(8, "feet"),
  4194. weight: math.unit(120, "lb"),
  4195. name: "Back",
  4196. image: {
  4197. source: "./media/characters/ona/back.svg"
  4198. }
  4199. },
  4200. foot: {
  4201. height: math.unit(1.1, "feet"),
  4202. name: "Foot",
  4203. image: {
  4204. source: "./media/characters/ona/foot.svg"
  4205. }
  4206. }
  4207. },
  4208. [
  4209. {
  4210. name: "Megamacro",
  4211. height: math.unit(70, "km"),
  4212. default: true
  4213. },
  4214. {
  4215. name: "Gigamacro",
  4216. height: math.unit(681818, "miles")
  4217. },
  4218. {
  4219. name: "Examacro",
  4220. height: math.unit(3800000, "lightyears")
  4221. },
  4222. ]
  4223. ))
  4224. characterMakers.push(() => makeCharacter(
  4225. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4226. {
  4227. front: {
  4228. height: math.unit(12, "feet"),
  4229. weight: math.unit(3000, "lb"),
  4230. name: "Front",
  4231. image: {
  4232. source: "./media/characters/mech/front.svg",
  4233. extra: 2900 / 2770,
  4234. bottom: 110 / 3010
  4235. }
  4236. },
  4237. back: {
  4238. height: math.unit(12, "feet"),
  4239. weight: math.unit(3000, "lb"),
  4240. name: "Back",
  4241. image: {
  4242. source: "./media/characters/mech/back.svg",
  4243. extra: 3011 / 2890,
  4244. bottom: 94 / 3105
  4245. }
  4246. },
  4247. maw: {
  4248. height: math.unit(3.07, "feet"),
  4249. name: "Maw",
  4250. image: {
  4251. source: "./media/characters/mech/maw.svg"
  4252. }
  4253. },
  4254. head: {
  4255. height: math.unit(2.82, "feet"),
  4256. name: "Head",
  4257. image: {
  4258. source: "./media/characters/mech/head.svg"
  4259. }
  4260. },
  4261. dick: {
  4262. height: math.unit(1.43, "feet"),
  4263. name: "Dick",
  4264. image: {
  4265. source: "./media/characters/mech/dick.svg"
  4266. }
  4267. },
  4268. },
  4269. [
  4270. {
  4271. name: "Normal",
  4272. height: math.unit(12, "feet")
  4273. },
  4274. {
  4275. name: "Macro",
  4276. height: math.unit(300, "feet"),
  4277. default: true
  4278. },
  4279. {
  4280. name: "Macro+",
  4281. height: math.unit(1500, "feet")
  4282. },
  4283. ]
  4284. ))
  4285. characterMakers.push(() => makeCharacter(
  4286. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4287. {
  4288. front: {
  4289. height: math.unit(1.3, "meter"),
  4290. weight: math.unit(30, "kg"),
  4291. name: "Front",
  4292. image: {
  4293. source: "./media/characters/gregory/front.svg",
  4294. }
  4295. }
  4296. },
  4297. [
  4298. {
  4299. name: "Normal",
  4300. height: math.unit(1.3, "meter"),
  4301. default: true
  4302. },
  4303. {
  4304. name: "Macro",
  4305. height: math.unit(20, "meter")
  4306. }
  4307. ]
  4308. ))
  4309. characterMakers.push(() => makeCharacter(
  4310. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4311. {
  4312. front: {
  4313. height: math.unit(2.8, "meter"),
  4314. weight: math.unit(200, "kg"),
  4315. name: "Front",
  4316. image: {
  4317. source: "./media/characters/elory/front.svg",
  4318. }
  4319. }
  4320. },
  4321. [
  4322. {
  4323. name: "Normal",
  4324. height: math.unit(2.8, "meter"),
  4325. default: true
  4326. },
  4327. {
  4328. name: "Macro",
  4329. height: math.unit(38, "meter")
  4330. }
  4331. ]
  4332. ))
  4333. characterMakers.push(() => makeCharacter(
  4334. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4335. {
  4336. front: {
  4337. height: math.unit(470, "feet"),
  4338. weight: math.unit(924, "tons"),
  4339. name: "Front",
  4340. image: {
  4341. source: "./media/characters/angelpatamon/front.svg",
  4342. }
  4343. }
  4344. },
  4345. [
  4346. {
  4347. name: "Normal",
  4348. height: math.unit(470, "feet"),
  4349. default: true
  4350. },
  4351. {
  4352. name: "Deity Size I",
  4353. height: math.unit(28651.2, "km")
  4354. },
  4355. {
  4356. name: "Deity Size II",
  4357. height: math.unit(171907.2, "km")
  4358. }
  4359. ]
  4360. ))
  4361. characterMakers.push(() => makeCharacter(
  4362. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4363. {
  4364. side: {
  4365. height: math.unit(7.2, "meter"),
  4366. weight: math.unit(8.2, "tons"),
  4367. name: "Side",
  4368. image: {
  4369. source: "./media/characters/cryae/side.svg",
  4370. extra: 3500 / 1500
  4371. }
  4372. }
  4373. },
  4374. [
  4375. {
  4376. name: "Normal",
  4377. height: math.unit(7.2, "meter"),
  4378. default: true
  4379. }
  4380. ]
  4381. ))
  4382. characterMakers.push(() => makeCharacter(
  4383. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4384. {
  4385. front: {
  4386. height: math.unit(6, "feet"),
  4387. weight: math.unit(175, "lb"),
  4388. name: "Front",
  4389. image: {
  4390. source: "./media/characters/xera/front.svg",
  4391. extra: 2377 / 1972,
  4392. bottom: 75.5 / 2452
  4393. }
  4394. },
  4395. side: {
  4396. height: math.unit(6, "feet"),
  4397. weight: math.unit(175, "lb"),
  4398. name: "Side",
  4399. image: {
  4400. source: "./media/characters/xera/side.svg",
  4401. extra: 2345 / 2019,
  4402. bottom: 39.7 / 2384
  4403. }
  4404. },
  4405. back: {
  4406. height: math.unit(6, "feet"),
  4407. weight: math.unit(175, "lb"),
  4408. name: "Back",
  4409. image: {
  4410. source: "./media/characters/xera/back.svg",
  4411. extra: 2095 / 1984,
  4412. bottom: 67 / 2166
  4413. }
  4414. },
  4415. },
  4416. [
  4417. {
  4418. name: "Small",
  4419. height: math.unit(10, "feet")
  4420. },
  4421. {
  4422. name: "Macro",
  4423. height: math.unit(500, "meters"),
  4424. default: true
  4425. },
  4426. {
  4427. name: "Macro+",
  4428. height: math.unit(10, "km")
  4429. },
  4430. {
  4431. name: "Gigamacro",
  4432. height: math.unit(25000, "km")
  4433. },
  4434. {
  4435. name: "Teramacro",
  4436. height: math.unit(3e6, "km")
  4437. }
  4438. ]
  4439. ))
  4440. characterMakers.push(() => makeCharacter(
  4441. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4442. {
  4443. front: {
  4444. height: math.unit(6, "feet"),
  4445. weight: math.unit(175, "lb"),
  4446. name: "Front",
  4447. image: {
  4448. source: "./media/characters/nebula/front.svg",
  4449. extra: 2566 / 2362,
  4450. bottom: 81 / 2644
  4451. }
  4452. }
  4453. },
  4454. [
  4455. {
  4456. name: "Small",
  4457. height: math.unit(4.5, "meters")
  4458. },
  4459. {
  4460. name: "Macro",
  4461. height: math.unit(1500, "meters"),
  4462. default: true
  4463. },
  4464. {
  4465. name: "Megamacro",
  4466. height: math.unit(150, "km")
  4467. },
  4468. {
  4469. name: "Gigamacro",
  4470. height: math.unit(27000, "km")
  4471. }
  4472. ]
  4473. ))
  4474. characterMakers.push(() => makeCharacter(
  4475. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4476. {
  4477. front: {
  4478. height: math.unit(6, "feet"),
  4479. weight: math.unit(225, "lb"),
  4480. name: "Front",
  4481. image: {
  4482. source: "./media/characters/abysgar/front.svg"
  4483. }
  4484. }
  4485. },
  4486. [
  4487. {
  4488. name: "Small",
  4489. height: math.unit(4.5, "meters")
  4490. },
  4491. {
  4492. name: "Macro",
  4493. height: math.unit(1250, "meters"),
  4494. default: true
  4495. },
  4496. {
  4497. name: "Megamacro",
  4498. height: math.unit(125, "km")
  4499. },
  4500. {
  4501. name: "Gigamacro",
  4502. height: math.unit(26000, "km")
  4503. }
  4504. ]
  4505. ))
  4506. characterMakers.push(() => makeCharacter(
  4507. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4508. {
  4509. front: {
  4510. height: math.unit(6, "feet"),
  4511. weight: math.unit(180, "lb"),
  4512. name: "Front",
  4513. image: {
  4514. source: "./media/characters/yakuz/front.svg"
  4515. }
  4516. }
  4517. },
  4518. [
  4519. {
  4520. name: "Small",
  4521. height: math.unit(5, "meters")
  4522. },
  4523. {
  4524. name: "Macro",
  4525. height: math.unit(1500, "meters"),
  4526. default: true
  4527. },
  4528. {
  4529. name: "Megamacro",
  4530. height: math.unit(200, "km")
  4531. },
  4532. {
  4533. name: "Gigamacro",
  4534. height: math.unit(100000, "km")
  4535. }
  4536. ]
  4537. ))
  4538. characterMakers.push(() => makeCharacter(
  4539. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4540. {
  4541. front: {
  4542. height: math.unit(6, "feet"),
  4543. weight: math.unit(175, "lb"),
  4544. name: "Front",
  4545. image: {
  4546. source: "./media/characters/mirova/front.svg",
  4547. extra: 3334 / 3071,
  4548. bottom: 42 / 3375.6
  4549. }
  4550. }
  4551. },
  4552. [
  4553. {
  4554. name: "Small",
  4555. height: math.unit(5, "meters")
  4556. },
  4557. {
  4558. name: "Macro",
  4559. height: math.unit(900, "meters"),
  4560. default: true
  4561. },
  4562. {
  4563. name: "Megamacro",
  4564. height: math.unit(135, "km")
  4565. },
  4566. {
  4567. name: "Gigamacro",
  4568. height: math.unit(20000, "km")
  4569. }
  4570. ]
  4571. ))
  4572. characterMakers.push(() => makeCharacter(
  4573. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4574. {
  4575. side: {
  4576. height: math.unit(28.35, "feet"),
  4577. weight: math.unit(99.75, "tons"),
  4578. name: "Side",
  4579. image: {
  4580. source: "./media/characters/asana-mech/side.svg",
  4581. extra: 923 / 699,
  4582. bottom: 50 / 975
  4583. }
  4584. },
  4585. chaingun: {
  4586. height: math.unit(7, "feet"),
  4587. weight: math.unit(2400, "lb"),
  4588. name: "Chaingun",
  4589. image: {
  4590. source: "./media/characters/asana-mech/chaingun.svg"
  4591. }
  4592. },
  4593. laser: {
  4594. height: math.unit(7.12, "feet"),
  4595. weight: math.unit(2000, "lb"),
  4596. name: "Laser",
  4597. image: {
  4598. source: "./media/characters/asana-mech/laser.svg"
  4599. }
  4600. },
  4601. },
  4602. [
  4603. {
  4604. name: "Normal",
  4605. height: math.unit(28.35, "feet"),
  4606. default: true
  4607. },
  4608. {
  4609. name: "Macro",
  4610. height: math.unit(2500, "feet")
  4611. },
  4612. {
  4613. name: "Megamacro",
  4614. height: math.unit(25, "miles")
  4615. },
  4616. {
  4617. name: "Examacro",
  4618. height: math.unit(6e8, "lightyears")
  4619. },
  4620. ]
  4621. ))
  4622. characterMakers.push(() => makeCharacter(
  4623. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4624. {
  4625. front: {
  4626. height: math.unit(5, "meters"),
  4627. weight: math.unit(1000, "kg"),
  4628. name: "Front",
  4629. image: {
  4630. source: "./media/characters/asche/front.svg",
  4631. extra: 1258 / 1190,
  4632. bottom: 47 / 1305
  4633. }
  4634. },
  4635. frontUnderwear: {
  4636. height: math.unit(5, "meters"),
  4637. weight: math.unit(1000, "kg"),
  4638. name: "Front (Underwear)",
  4639. image: {
  4640. source: "./media/characters/asche/front-underwear.svg",
  4641. extra: 1258 / 1190,
  4642. bottom: 47 / 1305
  4643. }
  4644. },
  4645. frontDressed: {
  4646. height: math.unit(5, "meters"),
  4647. weight: math.unit(1000, "kg"),
  4648. name: "Front (Dressed)",
  4649. image: {
  4650. source: "./media/characters/asche/front-dressed.svg",
  4651. extra: 1258 / 1190,
  4652. bottom: 47 / 1305
  4653. }
  4654. },
  4655. frontArmor: {
  4656. height: math.unit(5, "meters"),
  4657. weight: math.unit(1000, "kg"),
  4658. name: "Front (Armored)",
  4659. image: {
  4660. source: "./media/characters/asche/front-armored.svg",
  4661. extra: 1374 / 1308,
  4662. bottom: 23 / 1397
  4663. }
  4664. },
  4665. mp724: {
  4666. height: math.unit(0.96, "meters"),
  4667. weight: math.unit(38, "kg"),
  4668. name: "H&K MP724",
  4669. image: {
  4670. source: "./media/characters/asche/h&k-mp724.svg"
  4671. }
  4672. },
  4673. side: {
  4674. height: math.unit(5, "meters"),
  4675. weight: math.unit(1000, "kg"),
  4676. name: "Side",
  4677. image: {
  4678. source: "./media/characters/asche/side.svg",
  4679. extra: 1717 / 1609,
  4680. bottom: 0.005
  4681. }
  4682. },
  4683. back: {
  4684. height: math.unit(5, "meters"),
  4685. weight: math.unit(1000, "kg"),
  4686. name: "Back",
  4687. image: {
  4688. source: "./media/characters/asche/back.svg",
  4689. extra: 1570 / 1501
  4690. }
  4691. },
  4692. },
  4693. [
  4694. {
  4695. name: "DEFCON 5",
  4696. height: math.unit(5, "meters")
  4697. },
  4698. {
  4699. name: "DEFCON 4",
  4700. height: math.unit(500, "meters"),
  4701. default: true
  4702. },
  4703. {
  4704. name: "DEFCON 3",
  4705. height: math.unit(5, "km")
  4706. },
  4707. {
  4708. name: "DEFCON 2",
  4709. height: math.unit(500, "km")
  4710. },
  4711. {
  4712. name: "DEFCON 1",
  4713. height: math.unit(500000, "km")
  4714. },
  4715. {
  4716. name: "DEFCON 0",
  4717. height: math.unit(3, "gigaparsecs")
  4718. },
  4719. ]
  4720. ))
  4721. characterMakers.push(() => makeCharacter(
  4722. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4723. {
  4724. front: {
  4725. height: math.unit(2, "meters"),
  4726. weight: math.unit(76, "kg"),
  4727. name: "Front",
  4728. image: {
  4729. source: "./media/characters/gale/front.svg"
  4730. }
  4731. },
  4732. frontAlt1: {
  4733. height: math.unit(2, "meters"),
  4734. weight: math.unit(76, "kg"),
  4735. name: "Front (Alt 1)",
  4736. image: {
  4737. source: "./media/characters/gale/front-alt-1.svg"
  4738. }
  4739. },
  4740. frontAlt2: {
  4741. height: math.unit(2, "meters"),
  4742. weight: math.unit(76, "kg"),
  4743. name: "Front (Alt 2)",
  4744. image: {
  4745. source: "./media/characters/gale/front-alt-2.svg"
  4746. }
  4747. },
  4748. },
  4749. [
  4750. {
  4751. name: "Normal",
  4752. height: math.unit(7, "feet")
  4753. },
  4754. {
  4755. name: "Macro",
  4756. height: math.unit(150, "feet"),
  4757. default: true
  4758. },
  4759. {
  4760. name: "Macro+",
  4761. height: math.unit(300, "feet")
  4762. },
  4763. ]
  4764. ))
  4765. characterMakers.push(() => makeCharacter(
  4766. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4767. {
  4768. front: {
  4769. height: math.unit(5 + 10/12, "feet"),
  4770. weight: math.unit(67, "kg"),
  4771. name: "Front",
  4772. image: {
  4773. source: "./media/characters/draylen/front.svg",
  4774. extra: 832/777,
  4775. bottom: 85/917
  4776. }
  4777. }
  4778. },
  4779. [
  4780. {
  4781. name: "Normal",
  4782. height: math.unit(5 + 10/12, "feet")
  4783. },
  4784. {
  4785. name: "Macro",
  4786. height: math.unit(150, "feet"),
  4787. default: true
  4788. }
  4789. ]
  4790. ))
  4791. characterMakers.push(() => makeCharacter(
  4792. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4793. {
  4794. front: {
  4795. height: math.unit(7 + 9 / 12, "feet"),
  4796. weight: math.unit(379, "lbs"),
  4797. name: "Front",
  4798. image: {
  4799. source: "./media/characters/chez/front.svg"
  4800. }
  4801. },
  4802. side: {
  4803. height: math.unit(7 + 9 / 12, "feet"),
  4804. weight: math.unit(379, "lbs"),
  4805. name: "Side",
  4806. image: {
  4807. source: "./media/characters/chez/side.svg"
  4808. }
  4809. }
  4810. },
  4811. [
  4812. {
  4813. name: "Normal",
  4814. height: math.unit(7 + 9 / 12, "feet"),
  4815. default: true
  4816. },
  4817. {
  4818. name: "God King",
  4819. height: math.unit(9750000, "meters")
  4820. }
  4821. ]
  4822. ))
  4823. characterMakers.push(() => makeCharacter(
  4824. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4825. {
  4826. front: {
  4827. height: math.unit(6, "feet"),
  4828. weight: math.unit(275, "lbs"),
  4829. name: "Front",
  4830. image: {
  4831. source: "./media/characters/kaylum/front.svg",
  4832. bottom: 0.01,
  4833. extra: 1166 / 1031
  4834. }
  4835. },
  4836. frontWingless: {
  4837. height: math.unit(6, "feet"),
  4838. weight: math.unit(275, "lbs"),
  4839. name: "Front (Wingless)",
  4840. image: {
  4841. source: "./media/characters/kaylum/front-wingless.svg",
  4842. bottom: 0.01,
  4843. extra: 1117 / 1031
  4844. }
  4845. }
  4846. },
  4847. [
  4848. {
  4849. name: "Normal",
  4850. height: math.unit(3.05, "meters")
  4851. },
  4852. {
  4853. name: "Master",
  4854. height: math.unit(5.5, "meters")
  4855. },
  4856. {
  4857. name: "Rampage",
  4858. height: math.unit(19, "meters")
  4859. },
  4860. {
  4861. name: "Macro Lite",
  4862. height: math.unit(37, "meters")
  4863. },
  4864. {
  4865. name: "Hyper Predator",
  4866. height: math.unit(61, "meters")
  4867. },
  4868. {
  4869. name: "Macro",
  4870. height: math.unit(138, "meters"),
  4871. default: true
  4872. }
  4873. ]
  4874. ))
  4875. characterMakers.push(() => makeCharacter(
  4876. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4877. {
  4878. front: {
  4879. height: math.unit(5 + 5 / 12, "feet"),
  4880. weight: math.unit(120, "lbs"),
  4881. name: "Front",
  4882. image: {
  4883. source: "./media/characters/geta/front.svg",
  4884. extra: 1003/933,
  4885. bottom: 21/1024
  4886. }
  4887. },
  4888. paw: {
  4889. height: math.unit(0.35, "feet"),
  4890. name: "Paw",
  4891. image: {
  4892. source: "./media/characters/geta/paw.svg"
  4893. }
  4894. },
  4895. },
  4896. [
  4897. {
  4898. name: "Micro",
  4899. height: math.unit(3, "inches"),
  4900. default: true
  4901. },
  4902. {
  4903. name: "Normal",
  4904. height: math.unit(5 + 5 / 12, "feet")
  4905. }
  4906. ]
  4907. ))
  4908. characterMakers.push(() => makeCharacter(
  4909. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4910. {
  4911. front: {
  4912. height: math.unit(6, "feet"),
  4913. weight: math.unit(300, "lbs"),
  4914. name: "Front",
  4915. image: {
  4916. source: "./media/characters/tyrnn/front.svg"
  4917. }
  4918. }
  4919. },
  4920. [
  4921. {
  4922. name: "Main Height",
  4923. height: math.unit(355, "feet"),
  4924. default: true
  4925. },
  4926. {
  4927. name: "Fave. Height",
  4928. height: math.unit(2400, "feet")
  4929. }
  4930. ]
  4931. ))
  4932. characterMakers.push(() => makeCharacter(
  4933. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4934. {
  4935. front: {
  4936. height: math.unit(6, "feet"),
  4937. weight: math.unit(300, "lbs"),
  4938. name: "Front",
  4939. image: {
  4940. source: "./media/characters/appledectomy/front.svg"
  4941. }
  4942. }
  4943. },
  4944. [
  4945. {
  4946. name: "Macro",
  4947. height: math.unit(2500, "feet")
  4948. },
  4949. {
  4950. name: "Megamacro",
  4951. height: math.unit(50, "miles"),
  4952. default: true
  4953. },
  4954. {
  4955. name: "Gigamacro",
  4956. height: math.unit(5000, "miles")
  4957. },
  4958. {
  4959. name: "Teramacro",
  4960. height: math.unit(250000, "miles")
  4961. },
  4962. ]
  4963. ))
  4964. characterMakers.push(() => makeCharacter(
  4965. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4966. {
  4967. front: {
  4968. height: math.unit(6, "feet"),
  4969. weight: math.unit(200, "lbs"),
  4970. name: "Front",
  4971. image: {
  4972. source: "./media/characters/vulpes/front.svg",
  4973. extra: 573 / 543,
  4974. bottom: 0.033
  4975. }
  4976. },
  4977. side: {
  4978. height: math.unit(6, "feet"),
  4979. weight: math.unit(200, "lbs"),
  4980. name: "Side",
  4981. image: {
  4982. source: "./media/characters/vulpes/side.svg",
  4983. extra: 577 / 549,
  4984. bottom: 11 / 588
  4985. }
  4986. },
  4987. back: {
  4988. height: math.unit(6, "feet"),
  4989. weight: math.unit(200, "lbs"),
  4990. name: "Back",
  4991. image: {
  4992. source: "./media/characters/vulpes/back.svg",
  4993. extra: 573 / 549,
  4994. bottom: 20 / 593
  4995. }
  4996. },
  4997. feet: {
  4998. height: math.unit(1.276, "feet"),
  4999. name: "Feet",
  5000. image: {
  5001. source: "./media/characters/vulpes/feet.svg"
  5002. }
  5003. },
  5004. maw: {
  5005. height: math.unit(1.18, "feet"),
  5006. name: "Maw",
  5007. image: {
  5008. source: "./media/characters/vulpes/maw.svg"
  5009. }
  5010. },
  5011. },
  5012. [
  5013. {
  5014. name: "Micro",
  5015. height: math.unit(2, "inches")
  5016. },
  5017. {
  5018. name: "Normal",
  5019. height: math.unit(6.3, "feet")
  5020. },
  5021. {
  5022. name: "Macro",
  5023. height: math.unit(850, "feet")
  5024. },
  5025. {
  5026. name: "Megamacro",
  5027. height: math.unit(7500, "feet"),
  5028. default: true
  5029. },
  5030. {
  5031. name: "Gigamacro",
  5032. height: math.unit(570000, "miles")
  5033. }
  5034. ]
  5035. ))
  5036. characterMakers.push(() => makeCharacter(
  5037. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5038. {
  5039. front: {
  5040. height: math.unit(6, "feet"),
  5041. weight: math.unit(210, "lbs"),
  5042. name: "Front",
  5043. image: {
  5044. source: "./media/characters/rain-fallen/front.svg"
  5045. }
  5046. },
  5047. side: {
  5048. height: math.unit(6, "feet"),
  5049. weight: math.unit(210, "lbs"),
  5050. name: "Side",
  5051. image: {
  5052. source: "./media/characters/rain-fallen/side.svg"
  5053. }
  5054. },
  5055. back: {
  5056. height: math.unit(6, "feet"),
  5057. weight: math.unit(210, "lbs"),
  5058. name: "Back",
  5059. image: {
  5060. source: "./media/characters/rain-fallen/back.svg"
  5061. }
  5062. },
  5063. feral: {
  5064. height: math.unit(9, "feet"),
  5065. weight: math.unit(700, "lbs"),
  5066. name: "Feral",
  5067. image: {
  5068. source: "./media/characters/rain-fallen/feral.svg"
  5069. }
  5070. },
  5071. },
  5072. [
  5073. {
  5074. name: "Meddling with Mortals",
  5075. height: math.unit(8 + 8/12, "feet")
  5076. },
  5077. {
  5078. name: "Normal",
  5079. height: math.unit(5, "meter")
  5080. },
  5081. {
  5082. name: "Macro",
  5083. height: math.unit(150, "meter"),
  5084. default: true
  5085. },
  5086. {
  5087. name: "Megamacro",
  5088. height: math.unit(278e6, "meter")
  5089. },
  5090. {
  5091. name: "Gigamacro",
  5092. height: math.unit(2e9, "meter")
  5093. },
  5094. {
  5095. name: "Teramacro",
  5096. height: math.unit(8e12, "meter")
  5097. },
  5098. {
  5099. name: "Devourer",
  5100. height: math.unit(14, "zettameters")
  5101. },
  5102. {
  5103. name: "Scarlet King",
  5104. height: math.unit(18, "yottameters")
  5105. },
  5106. {
  5107. name: "Void",
  5108. height: math.unit(1e88, "yottameters")
  5109. }
  5110. ]
  5111. ))
  5112. characterMakers.push(() => makeCharacter(
  5113. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5114. {
  5115. standing: {
  5116. height: math.unit(6, "feet"),
  5117. weight: math.unit(180, "lbs"),
  5118. name: "Standing",
  5119. image: {
  5120. source: "./media/characters/zaakira/standing.svg",
  5121. extra: 1599/1504,
  5122. bottom: 39/1638
  5123. }
  5124. },
  5125. laying: {
  5126. height: math.unit(3, "feet"),
  5127. weight: math.unit(180, "lbs"),
  5128. name: "Laying",
  5129. image: {
  5130. source: "./media/characters/zaakira/laying.svg"
  5131. }
  5132. },
  5133. },
  5134. [
  5135. {
  5136. name: "Normal",
  5137. height: math.unit(12, "feet")
  5138. },
  5139. {
  5140. name: "Macro",
  5141. height: math.unit(279, "feet"),
  5142. default: true
  5143. }
  5144. ]
  5145. ))
  5146. characterMakers.push(() => makeCharacter(
  5147. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5148. {
  5149. femSfw: {
  5150. height: math.unit(8, "feet"),
  5151. weight: math.unit(350, "lb"),
  5152. name: "Fem",
  5153. image: {
  5154. source: "./media/characters/sigvald/fem-sfw.svg",
  5155. extra: 182 / 164,
  5156. bottom: 8.7 / 190.5
  5157. }
  5158. },
  5159. femNsfw: {
  5160. height: math.unit(8, "feet"),
  5161. weight: math.unit(350, "lb"),
  5162. name: "Fem (NSFW)",
  5163. image: {
  5164. source: "./media/characters/sigvald/fem-nsfw.svg",
  5165. extra: 182 / 164,
  5166. bottom: 8.7 / 190.5
  5167. }
  5168. },
  5169. maleNsfw: {
  5170. height: math.unit(8, "feet"),
  5171. weight: math.unit(350, "lb"),
  5172. name: "Male (NSFW)",
  5173. image: {
  5174. source: "./media/characters/sigvald/male-nsfw.svg",
  5175. extra: 182 / 164,
  5176. bottom: 8.7 / 190.5
  5177. }
  5178. },
  5179. hermNsfw: {
  5180. height: math.unit(8, "feet"),
  5181. weight: math.unit(350, "lb"),
  5182. name: "Herm (NSFW)",
  5183. image: {
  5184. source: "./media/characters/sigvald/herm-nsfw.svg",
  5185. extra: 182 / 164,
  5186. bottom: 8.7 / 190.5
  5187. }
  5188. },
  5189. dick: {
  5190. height: math.unit(2.36, "feet"),
  5191. name: "Dick",
  5192. image: {
  5193. source: "./media/characters/sigvald/dick.svg"
  5194. }
  5195. },
  5196. eye: {
  5197. height: math.unit(0.31, "feet"),
  5198. name: "Eye",
  5199. image: {
  5200. source: "./media/characters/sigvald/eye.svg"
  5201. }
  5202. },
  5203. mouth: {
  5204. height: math.unit(0.92, "feet"),
  5205. name: "Mouth",
  5206. image: {
  5207. source: "./media/characters/sigvald/mouth.svg"
  5208. }
  5209. },
  5210. paws: {
  5211. height: math.unit(2.2, "feet"),
  5212. name: "Paws",
  5213. image: {
  5214. source: "./media/characters/sigvald/paws.svg"
  5215. }
  5216. }
  5217. },
  5218. [
  5219. {
  5220. name: "Normal",
  5221. height: math.unit(8, "feet")
  5222. },
  5223. {
  5224. name: "Large",
  5225. height: math.unit(12, "feet")
  5226. },
  5227. {
  5228. name: "Larger",
  5229. height: math.unit(20, "feet")
  5230. },
  5231. {
  5232. name: "Macro",
  5233. height: math.unit(150, "feet")
  5234. },
  5235. {
  5236. name: "Macro+",
  5237. height: math.unit(200, "feet"),
  5238. default: true
  5239. },
  5240. ]
  5241. ))
  5242. characterMakers.push(() => makeCharacter(
  5243. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5244. {
  5245. side: {
  5246. height: math.unit(12, "feet"),
  5247. weight: math.unit(2000, "kg"),
  5248. name: "Side",
  5249. image: {
  5250. source: "./media/characters/scott/side.svg",
  5251. extra: 754 / 724,
  5252. bottom: 0.069
  5253. }
  5254. },
  5255. upright: {
  5256. height: math.unit(12, "feet"),
  5257. weight: math.unit(2000, "kg"),
  5258. name: "Upright",
  5259. image: {
  5260. source: "./media/characters/scott/upright.svg",
  5261. extra: 3881 / 3722,
  5262. bottom: 0.05
  5263. }
  5264. },
  5265. },
  5266. [
  5267. {
  5268. name: "Normal",
  5269. height: math.unit(12, "feet"),
  5270. default: true
  5271. },
  5272. ]
  5273. ))
  5274. characterMakers.push(() => makeCharacter(
  5275. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5276. {
  5277. side: {
  5278. height: math.unit(8, "meters"),
  5279. weight: math.unit(84755, "lbs"),
  5280. name: "Side",
  5281. image: {
  5282. source: "./media/characters/tobias/side.svg",
  5283. extra: 1474 / 1096,
  5284. bottom: 38.9 / 1513.1235
  5285. }
  5286. },
  5287. },
  5288. [
  5289. {
  5290. name: "Normal",
  5291. height: math.unit(8, "meters"),
  5292. default: true
  5293. },
  5294. ]
  5295. ))
  5296. characterMakers.push(() => makeCharacter(
  5297. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5298. {
  5299. front: {
  5300. height: math.unit(5.5, "feet"),
  5301. weight: math.unit(400, "lbs"),
  5302. name: "Front",
  5303. image: {
  5304. source: "./media/characters/kieran/front.svg",
  5305. extra: 2694 / 2364,
  5306. bottom: 217 / 2908
  5307. }
  5308. },
  5309. side: {
  5310. height: math.unit(5.5, "feet"),
  5311. weight: math.unit(400, "lbs"),
  5312. name: "Side",
  5313. image: {
  5314. source: "./media/characters/kieran/side.svg",
  5315. extra: 875 / 777,
  5316. bottom: 84.6 / 959
  5317. }
  5318. },
  5319. },
  5320. [
  5321. {
  5322. name: "Normal",
  5323. height: math.unit(5.5, "feet"),
  5324. default: true
  5325. },
  5326. ]
  5327. ))
  5328. characterMakers.push(() => makeCharacter(
  5329. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5330. {
  5331. side: {
  5332. height: math.unit(2, "meters"),
  5333. weight: math.unit(70, "kg"),
  5334. name: "Side",
  5335. image: {
  5336. source: "./media/characters/sanya/side.svg",
  5337. bottom: 0.02,
  5338. extra: 1.02
  5339. }
  5340. },
  5341. },
  5342. [
  5343. {
  5344. name: "Small",
  5345. height: math.unit(2, "meters")
  5346. },
  5347. {
  5348. name: "Normal",
  5349. height: math.unit(3, "meters")
  5350. },
  5351. {
  5352. name: "Macro",
  5353. height: math.unit(16, "meters"),
  5354. default: true
  5355. },
  5356. ]
  5357. ))
  5358. characterMakers.push(() => makeCharacter(
  5359. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5360. {
  5361. front: {
  5362. height: math.unit(2, "meters"),
  5363. weight: math.unit(120, "kg"),
  5364. name: "Front",
  5365. image: {
  5366. source: "./media/characters/miranda/front.svg",
  5367. extra: 195 / 185,
  5368. bottom: 10.9 / 206.5
  5369. }
  5370. },
  5371. back: {
  5372. height: math.unit(2, "meters"),
  5373. weight: math.unit(120, "kg"),
  5374. name: "Back",
  5375. image: {
  5376. source: "./media/characters/miranda/back.svg",
  5377. extra: 201 / 193,
  5378. bottom: 2.3 / 203.7
  5379. }
  5380. },
  5381. },
  5382. [
  5383. {
  5384. name: "Normal",
  5385. height: math.unit(10, "feet"),
  5386. default: true
  5387. }
  5388. ]
  5389. ))
  5390. characterMakers.push(() => makeCharacter(
  5391. { name: "James", species: ["deer"], tags: ["anthro"] },
  5392. {
  5393. side: {
  5394. height: math.unit(2, "meters"),
  5395. weight: math.unit(100, "kg"),
  5396. name: "Front",
  5397. image: {
  5398. source: "./media/characters/james/front.svg",
  5399. extra: 10 / 8.5
  5400. }
  5401. },
  5402. },
  5403. [
  5404. {
  5405. name: "Normal",
  5406. height: math.unit(8.5, "feet"),
  5407. default: true
  5408. }
  5409. ]
  5410. ))
  5411. characterMakers.push(() => makeCharacter(
  5412. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5413. {
  5414. side: {
  5415. height: math.unit(9.5, "feet"),
  5416. weight: math.unit(2500, "lbs"),
  5417. name: "Side",
  5418. image: {
  5419. source: "./media/characters/heather/side.svg"
  5420. }
  5421. },
  5422. },
  5423. [
  5424. {
  5425. name: "Normal",
  5426. height: math.unit(9.5, "feet"),
  5427. default: true
  5428. }
  5429. ]
  5430. ))
  5431. characterMakers.push(() => makeCharacter(
  5432. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5433. {
  5434. side: {
  5435. height: math.unit(6.5, "feet"),
  5436. weight: math.unit(400, "lbs"),
  5437. name: "Side",
  5438. image: {
  5439. source: "./media/characters/lukas/side.svg",
  5440. extra: 7.25 / 6.5
  5441. }
  5442. },
  5443. },
  5444. [
  5445. {
  5446. name: "Normal",
  5447. height: math.unit(6.5, "feet"),
  5448. default: true
  5449. }
  5450. ]
  5451. ))
  5452. characterMakers.push(() => makeCharacter(
  5453. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5454. {
  5455. side: {
  5456. height: math.unit(5, "feet"),
  5457. weight: math.unit(3000, "lbs"),
  5458. name: "Side",
  5459. image: {
  5460. source: "./media/characters/louise/side.svg"
  5461. }
  5462. },
  5463. },
  5464. [
  5465. {
  5466. name: "Normal",
  5467. height: math.unit(5, "feet"),
  5468. default: true
  5469. }
  5470. ]
  5471. ))
  5472. characterMakers.push(() => makeCharacter(
  5473. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5474. {
  5475. side: {
  5476. height: math.unit(6, "feet"),
  5477. weight: math.unit(150, "lbs"),
  5478. name: "Side",
  5479. image: {
  5480. source: "./media/characters/ramona/side.svg",
  5481. extra: 871/854,
  5482. bottom: 41/912
  5483. }
  5484. },
  5485. },
  5486. [
  5487. {
  5488. name: "Normal",
  5489. height: math.unit(5.3, "meters"),
  5490. default: true
  5491. },
  5492. {
  5493. name: "Macro",
  5494. height: math.unit(20, "stories")
  5495. },
  5496. {
  5497. name: "Macro+",
  5498. height: math.unit(50, "stories")
  5499. },
  5500. ]
  5501. ))
  5502. characterMakers.push(() => makeCharacter(
  5503. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5504. {
  5505. standing: {
  5506. height: math.unit(5.75, "feet"),
  5507. weight: math.unit(160, "lbs"),
  5508. name: "Standing",
  5509. image: {
  5510. source: "./media/characters/deerpuff/standing.svg",
  5511. extra: 682 / 624
  5512. }
  5513. },
  5514. sitting: {
  5515. height: math.unit(5.75 / 1.79, "feet"),
  5516. weight: math.unit(160, "lbs"),
  5517. name: "Sitting",
  5518. image: {
  5519. source: "./media/characters/deerpuff/sitting.svg",
  5520. bottom: 44 / 400,
  5521. extra: 1
  5522. }
  5523. },
  5524. taurLaying: {
  5525. height: math.unit(6, "feet"),
  5526. weight: math.unit(400, "lbs"),
  5527. name: "Taur (Laying)",
  5528. image: {
  5529. source: "./media/characters/deerpuff/taur-laying.svg"
  5530. }
  5531. },
  5532. },
  5533. [
  5534. {
  5535. name: "Puffball",
  5536. height: math.unit(6, "inches")
  5537. },
  5538. {
  5539. name: "Normalpuff",
  5540. height: math.unit(5.75, "feet")
  5541. },
  5542. {
  5543. name: "Macropuff",
  5544. height: math.unit(1500, "feet"),
  5545. default: true
  5546. },
  5547. {
  5548. name: "Megapuff",
  5549. height: math.unit(500, "miles")
  5550. },
  5551. {
  5552. name: "Gigapuff",
  5553. height: math.unit(250000, "miles")
  5554. },
  5555. {
  5556. name: "Omegapuff",
  5557. height: math.unit(1000, "lightyears")
  5558. },
  5559. ]
  5560. ))
  5561. characterMakers.push(() => makeCharacter(
  5562. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5563. {
  5564. stomping: {
  5565. height: math.unit(6, "feet"),
  5566. weight: math.unit(170, "lbs"),
  5567. name: "Stomping",
  5568. image: {
  5569. source: "./media/characters/vivian/stomping.svg"
  5570. }
  5571. },
  5572. sitting: {
  5573. height: math.unit(6 / 1.75, "feet"),
  5574. weight: math.unit(170, "lbs"),
  5575. name: "Sitting",
  5576. image: {
  5577. source: "./media/characters/vivian/sitting.svg",
  5578. bottom: 1 / 6.4,
  5579. extra: 1,
  5580. }
  5581. },
  5582. },
  5583. [
  5584. {
  5585. name: "Normal",
  5586. height: math.unit(7, "feet"),
  5587. default: true
  5588. },
  5589. {
  5590. name: "Macro",
  5591. height: math.unit(10, "stories")
  5592. },
  5593. {
  5594. name: "Macro+",
  5595. height: math.unit(30, "stories")
  5596. },
  5597. {
  5598. name: "Megamacro",
  5599. height: math.unit(10, "miles")
  5600. },
  5601. {
  5602. name: "Megamacro+",
  5603. height: math.unit(2750000, "meters")
  5604. },
  5605. ]
  5606. ))
  5607. characterMakers.push(() => makeCharacter(
  5608. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5609. {
  5610. front: {
  5611. height: math.unit(6, "feet"),
  5612. weight: math.unit(160, "lbs"),
  5613. name: "Front",
  5614. image: {
  5615. source: "./media/characters/prince/front.svg",
  5616. extra: 3400 / 3000
  5617. }
  5618. },
  5619. jumping: {
  5620. height: math.unit(6, "feet"),
  5621. weight: math.unit(160, "lbs"),
  5622. name: "Jumping",
  5623. image: {
  5624. source: "./media/characters/prince/jump.svg",
  5625. extra: 2555 / 2134
  5626. }
  5627. },
  5628. },
  5629. [
  5630. {
  5631. name: "Normal",
  5632. height: math.unit(7.75, "feet"),
  5633. default: true
  5634. },
  5635. {
  5636. name: "Not cute",
  5637. height: math.unit(17, "feet")
  5638. },
  5639. {
  5640. name: "I said NOT",
  5641. height: math.unit(91, "feet")
  5642. },
  5643. {
  5644. name: "Please stop",
  5645. height: math.unit(560, "feet")
  5646. },
  5647. {
  5648. name: "What have you done",
  5649. height: math.unit(2200, "feet")
  5650. },
  5651. {
  5652. name: "Deer God",
  5653. height: math.unit(3.6, "miles")
  5654. },
  5655. ]
  5656. ))
  5657. characterMakers.push(() => makeCharacter(
  5658. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5659. {
  5660. standing: {
  5661. height: math.unit(6, "feet"),
  5662. weight: math.unit(300, "lbs"),
  5663. name: "Standing",
  5664. image: {
  5665. source: "./media/characters/psymon/standing.svg",
  5666. extra: 1888 / 1810,
  5667. bottom: 0.05
  5668. }
  5669. },
  5670. slithering: {
  5671. height: math.unit(6, "feet"),
  5672. weight: math.unit(300, "lbs"),
  5673. name: "Slithering",
  5674. image: {
  5675. source: "./media/characters/psymon/slithering.svg",
  5676. extra: 1330 / 1224
  5677. }
  5678. },
  5679. slitheringAlt: {
  5680. height: math.unit(6, "feet"),
  5681. weight: math.unit(300, "lbs"),
  5682. name: "Slithering (Alt)",
  5683. image: {
  5684. source: "./media/characters/psymon/slithering-alt.svg",
  5685. extra: 1330 / 1224
  5686. }
  5687. },
  5688. },
  5689. [
  5690. {
  5691. name: "Normal",
  5692. height: math.unit(11.25, "feet"),
  5693. default: true
  5694. },
  5695. {
  5696. name: "Large",
  5697. height: math.unit(27, "feet")
  5698. },
  5699. {
  5700. name: "Giant",
  5701. height: math.unit(87, "feet")
  5702. },
  5703. {
  5704. name: "Macro",
  5705. height: math.unit(365, "feet")
  5706. },
  5707. {
  5708. name: "Megamacro",
  5709. height: math.unit(3, "miles")
  5710. },
  5711. {
  5712. name: "World Serpent",
  5713. height: math.unit(8000, "miles")
  5714. },
  5715. ]
  5716. ))
  5717. characterMakers.push(() => makeCharacter(
  5718. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5719. {
  5720. front: {
  5721. height: math.unit(6, "feet"),
  5722. weight: math.unit(180, "lbs"),
  5723. name: "Front",
  5724. image: {
  5725. source: "./media/characters/daimos/front.svg",
  5726. extra: 4160 / 3897,
  5727. bottom: 0.021
  5728. }
  5729. }
  5730. },
  5731. [
  5732. {
  5733. name: "Normal",
  5734. height: math.unit(8, "feet"),
  5735. default: true
  5736. },
  5737. {
  5738. name: "Big Dog",
  5739. height: math.unit(22, "feet")
  5740. },
  5741. {
  5742. name: "Macro",
  5743. height: math.unit(127, "feet")
  5744. },
  5745. {
  5746. name: "Megamacro",
  5747. height: math.unit(3600, "feet")
  5748. },
  5749. ]
  5750. ))
  5751. characterMakers.push(() => makeCharacter(
  5752. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5753. {
  5754. side: {
  5755. height: math.unit(6, "feet"),
  5756. weight: math.unit(180, "lbs"),
  5757. name: "Side",
  5758. image: {
  5759. source: "./media/characters/blake/side.svg",
  5760. extra: 1212 / 1120,
  5761. bottom: 0.05
  5762. }
  5763. },
  5764. crouched: {
  5765. height: math.unit(6 * 0.57, "feet"),
  5766. weight: math.unit(180, "lbs"),
  5767. name: "Crouched",
  5768. image: {
  5769. source: "./media/characters/blake/crouched.svg",
  5770. extra: 840 / 587,
  5771. bottom: 0.04
  5772. }
  5773. },
  5774. bent: {
  5775. height: math.unit(6 * 0.75, "feet"),
  5776. weight: math.unit(180, "lbs"),
  5777. name: "Bent",
  5778. image: {
  5779. source: "./media/characters/blake/bent.svg",
  5780. extra: 592 / 544,
  5781. bottom: 0.035
  5782. }
  5783. },
  5784. },
  5785. [
  5786. {
  5787. name: "Normal",
  5788. height: math.unit(8 + 1 / 6, "feet"),
  5789. default: true
  5790. },
  5791. {
  5792. name: "Big Backside",
  5793. height: math.unit(37, "feet")
  5794. },
  5795. {
  5796. name: "Subway Shredder",
  5797. height: math.unit(72, "feet")
  5798. },
  5799. {
  5800. name: "City Carver",
  5801. height: math.unit(1675, "feet")
  5802. },
  5803. {
  5804. name: "Tectonic Tweaker",
  5805. height: math.unit(2300, "miles")
  5806. },
  5807. ]
  5808. ))
  5809. characterMakers.push(() => makeCharacter(
  5810. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5811. {
  5812. front: {
  5813. height: math.unit(6, "feet"),
  5814. weight: math.unit(180, "lbs"),
  5815. name: "Front",
  5816. image: {
  5817. source: "./media/characters/guisetto/front.svg",
  5818. extra: 856 / 817,
  5819. bottom: 0.06
  5820. }
  5821. },
  5822. airborne: {
  5823. height: math.unit(6, "feet"),
  5824. weight: math.unit(180, "lbs"),
  5825. name: "Airborne",
  5826. image: {
  5827. source: "./media/characters/guisetto/airborne.svg",
  5828. extra: 584 / 525
  5829. }
  5830. },
  5831. },
  5832. [
  5833. {
  5834. name: "Normal",
  5835. height: math.unit(10 + 11 / 12, "feet"),
  5836. default: true
  5837. },
  5838. {
  5839. name: "Large",
  5840. height: math.unit(35, "feet")
  5841. },
  5842. {
  5843. name: "Macro",
  5844. height: math.unit(475, "feet")
  5845. },
  5846. ]
  5847. ))
  5848. characterMakers.push(() => makeCharacter(
  5849. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5850. {
  5851. front: {
  5852. height: math.unit(6, "feet"),
  5853. weight: math.unit(180, "lbs"),
  5854. name: "Front",
  5855. image: {
  5856. source: "./media/characters/luxor/front.svg",
  5857. extra: 2940 / 2152
  5858. }
  5859. },
  5860. back: {
  5861. height: math.unit(6, "feet"),
  5862. weight: math.unit(180, "lbs"),
  5863. name: "Back",
  5864. image: {
  5865. source: "./media/characters/luxor/back.svg",
  5866. extra: 1083 / 960
  5867. }
  5868. },
  5869. },
  5870. [
  5871. {
  5872. name: "Normal",
  5873. height: math.unit(5 + 5 / 6, "feet"),
  5874. default: true
  5875. },
  5876. {
  5877. name: "Lamp",
  5878. height: math.unit(50, "feet")
  5879. },
  5880. {
  5881. name: "Lämp",
  5882. height: math.unit(300, "feet")
  5883. },
  5884. {
  5885. name: "The sun is a lamp",
  5886. height: math.unit(250000, "miles")
  5887. },
  5888. ]
  5889. ))
  5890. characterMakers.push(() => makeCharacter(
  5891. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5892. {
  5893. front: {
  5894. height: math.unit(6, "feet"),
  5895. weight: math.unit(50, "lbs"),
  5896. name: "Front",
  5897. image: {
  5898. source: "./media/characters/huoyan/front.svg"
  5899. }
  5900. },
  5901. side: {
  5902. height: math.unit(6, "feet"),
  5903. weight: math.unit(180, "lbs"),
  5904. name: "Side",
  5905. image: {
  5906. source: "./media/characters/huoyan/side.svg"
  5907. }
  5908. },
  5909. },
  5910. [
  5911. {
  5912. name: "Chef",
  5913. height: math.unit(9, "feet")
  5914. },
  5915. {
  5916. name: "Normal",
  5917. height: math.unit(65, "feet"),
  5918. default: true
  5919. },
  5920. {
  5921. name: "Macro",
  5922. height: math.unit(780, "feet")
  5923. },
  5924. {
  5925. name: "Flaming Mountain",
  5926. height: math.unit(4.8, "miles")
  5927. },
  5928. {
  5929. name: "Celestial",
  5930. height: math.unit(765000, "miles")
  5931. },
  5932. ]
  5933. ))
  5934. characterMakers.push(() => makeCharacter(
  5935. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5936. {
  5937. front: {
  5938. height: math.unit(5 + 3 / 4, "feet"),
  5939. weight: math.unit(120, "lbs"),
  5940. name: "Front",
  5941. image: {
  5942. source: "./media/characters/tails/front.svg"
  5943. }
  5944. }
  5945. },
  5946. [
  5947. {
  5948. name: "Normal",
  5949. height: math.unit(5 + 3 / 4, "feet"),
  5950. default: true
  5951. }
  5952. ]
  5953. ))
  5954. characterMakers.push(() => makeCharacter(
  5955. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5956. {
  5957. front: {
  5958. height: math.unit(4, "feet"),
  5959. weight: math.unit(50, "lbs"),
  5960. name: "Front",
  5961. image: {
  5962. source: "./media/characters/rainy/front.svg"
  5963. }
  5964. }
  5965. },
  5966. [
  5967. {
  5968. name: "Macro",
  5969. height: math.unit(800, "feet"),
  5970. default: true
  5971. }
  5972. ]
  5973. ))
  5974. characterMakers.push(() => makeCharacter(
  5975. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5976. {
  5977. front: {
  5978. height: math.unit(6, "feet"),
  5979. weight: math.unit(150, "lbs"),
  5980. name: "Front",
  5981. image: {
  5982. source: "./media/characters/rainier/front.svg"
  5983. }
  5984. }
  5985. },
  5986. [
  5987. {
  5988. name: "Micro",
  5989. height: math.unit(2, "mm"),
  5990. default: true
  5991. }
  5992. ]
  5993. ))
  5994. characterMakers.push(() => makeCharacter(
  5995. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5996. {
  5997. front: {
  5998. height: math.unit(8 + 4/12, "feet"),
  5999. weight: math.unit(450, "kilograms"),
  6000. volume: math.unit(5, "cups"),
  6001. name: "Front",
  6002. image: {
  6003. source: "./media/characters/andy-renard/front.svg",
  6004. extra: 1839/1726,
  6005. bottom: 134/1973
  6006. }
  6007. },
  6008. back: {
  6009. height: math.unit(8 + 4/12, "feet"),
  6010. weight: math.unit(450, "kilograms"),
  6011. volume: math.unit(5, "cups"),
  6012. name: "Back",
  6013. image: {
  6014. source: "./media/characters/andy-renard/back.svg",
  6015. extra: 1838/1710,
  6016. bottom: 105/1943
  6017. }
  6018. },
  6019. },
  6020. [
  6021. {
  6022. name: "Tall",
  6023. height: math.unit(8 + 4/12, "feet")
  6024. },
  6025. {
  6026. name: "Mini Macro",
  6027. height: math.unit(15, "feet"),
  6028. default: true
  6029. },
  6030. {
  6031. name: "Macro",
  6032. height: math.unit(100, "feet")
  6033. },
  6034. {
  6035. name: "Mega Macro",
  6036. height: math.unit(1000, "feet")
  6037. },
  6038. {
  6039. name: "Giga Macro",
  6040. height: math.unit(10, "miles")
  6041. },
  6042. {
  6043. name: "God Macro",
  6044. height: math.unit(1, "multiverse")
  6045. },
  6046. ]
  6047. ))
  6048. characterMakers.push(() => makeCharacter(
  6049. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6050. {
  6051. front: {
  6052. height: math.unit(6, "feet"),
  6053. weight: math.unit(210, "lbs"),
  6054. name: "Front",
  6055. image: {
  6056. source: "./media/characters/cimmaron/front-sfw.svg",
  6057. extra: 701 / 676,
  6058. bottom: 0.046
  6059. }
  6060. },
  6061. back: {
  6062. height: math.unit(6, "feet"),
  6063. weight: math.unit(210, "lbs"),
  6064. name: "Back",
  6065. image: {
  6066. source: "./media/characters/cimmaron/back-sfw.svg",
  6067. extra: 701 / 676,
  6068. bottom: 0.046
  6069. }
  6070. },
  6071. frontNsfw: {
  6072. height: math.unit(6, "feet"),
  6073. weight: math.unit(210, "lbs"),
  6074. name: "Front (NSFW)",
  6075. image: {
  6076. source: "./media/characters/cimmaron/front-nsfw.svg",
  6077. extra: 701 / 676,
  6078. bottom: 0.046
  6079. }
  6080. },
  6081. backNsfw: {
  6082. height: math.unit(6, "feet"),
  6083. weight: math.unit(210, "lbs"),
  6084. name: "Back (NSFW)",
  6085. image: {
  6086. source: "./media/characters/cimmaron/back-nsfw.svg",
  6087. extra: 701 / 676,
  6088. bottom: 0.046
  6089. }
  6090. },
  6091. dick: {
  6092. height: math.unit(1.714, "feet"),
  6093. name: "Dick",
  6094. image: {
  6095. source: "./media/characters/cimmaron/dick.svg"
  6096. }
  6097. },
  6098. },
  6099. [
  6100. {
  6101. name: "Normal",
  6102. height: math.unit(6, "feet"),
  6103. default: true
  6104. },
  6105. {
  6106. name: "Macro Mayor",
  6107. height: math.unit(350, "meters")
  6108. },
  6109. ]
  6110. ))
  6111. characterMakers.push(() => makeCharacter(
  6112. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6113. {
  6114. front: {
  6115. height: math.unit(6, "feet"),
  6116. weight: math.unit(200, "lbs"),
  6117. name: "Front",
  6118. image: {
  6119. source: "./media/characters/akari/front.svg",
  6120. extra: 962 / 901,
  6121. bottom: 0.04
  6122. }
  6123. }
  6124. },
  6125. [
  6126. {
  6127. name: "Micro",
  6128. height: math.unit(5, "inches"),
  6129. default: true
  6130. },
  6131. {
  6132. name: "Normal",
  6133. height: math.unit(7, "feet")
  6134. },
  6135. ]
  6136. ))
  6137. characterMakers.push(() => makeCharacter(
  6138. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6139. {
  6140. front: {
  6141. height: math.unit(6, "feet"),
  6142. weight: math.unit(140, "lbs"),
  6143. name: "Front",
  6144. image: {
  6145. source: "./media/characters/cynosura/front.svg",
  6146. extra: 896 / 847
  6147. }
  6148. },
  6149. back: {
  6150. height: math.unit(6, "feet"),
  6151. weight: math.unit(140, "lbs"),
  6152. name: "Back",
  6153. image: {
  6154. source: "./media/characters/cynosura/back.svg",
  6155. extra: 1365 / 1250
  6156. }
  6157. },
  6158. },
  6159. [
  6160. {
  6161. name: "Micro",
  6162. height: math.unit(4, "inches")
  6163. },
  6164. {
  6165. name: "Normal",
  6166. height: math.unit(5.75, "feet"),
  6167. default: true
  6168. },
  6169. {
  6170. name: "Tall",
  6171. height: math.unit(10, "feet")
  6172. },
  6173. {
  6174. name: "Big",
  6175. height: math.unit(20, "feet")
  6176. },
  6177. {
  6178. name: "Macro",
  6179. height: math.unit(50, "feet")
  6180. },
  6181. ]
  6182. ))
  6183. characterMakers.push(() => makeCharacter(
  6184. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6185. {
  6186. front: {
  6187. height: math.unit(13 + 2/12, "feet"),
  6188. weight: math.unit(800, "kg"),
  6189. name: "Front",
  6190. image: {
  6191. source: "./media/characters/gin/front.svg",
  6192. extra: 1312/1191,
  6193. bottom: 45/1357
  6194. }
  6195. },
  6196. mouth: {
  6197. height: math.unit(2.39 * 1.8, "feet"),
  6198. name: "Mouth",
  6199. image: {
  6200. source: "./media/characters/gin/mouth.svg"
  6201. }
  6202. },
  6203. hand: {
  6204. height: math.unit(1.57 * 2.19, "feet"),
  6205. name: "Hand",
  6206. image: {
  6207. source: "./media/characters/gin/hand.svg"
  6208. }
  6209. },
  6210. foot: {
  6211. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6212. name: "Foot",
  6213. image: {
  6214. source: "./media/characters/gin/foot.svg"
  6215. }
  6216. },
  6217. sole: {
  6218. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6219. name: "Sole",
  6220. image: {
  6221. source: "./media/characters/gin/sole.svg"
  6222. }
  6223. },
  6224. },
  6225. [
  6226. {
  6227. name: "Very Small",
  6228. height: math.unit(13 + 2 / 12, "feet")
  6229. },
  6230. {
  6231. name: "Micro",
  6232. height: math.unit(600, "miles")
  6233. },
  6234. {
  6235. name: "Regular",
  6236. height: math.unit(20, "earths"),
  6237. default: true
  6238. },
  6239. {
  6240. name: "Macro",
  6241. height: math.unit(2.2, "solarradii")
  6242. },
  6243. {
  6244. name: "Teramacro",
  6245. height: math.unit(1.2, "galaxies")
  6246. },
  6247. {
  6248. name: "Omegamacro",
  6249. height: math.unit(200, "universes")
  6250. },
  6251. ]
  6252. ))
  6253. characterMakers.push(() => makeCharacter(
  6254. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6255. {
  6256. front: {
  6257. height: math.unit(6 + 1 / 6, "feet"),
  6258. weight: math.unit(178, "lbs"),
  6259. name: "Front",
  6260. image: {
  6261. source: "./media/characters/guy/front.svg"
  6262. }
  6263. }
  6264. },
  6265. [
  6266. {
  6267. name: "Normal",
  6268. height: math.unit(6 + 1 / 6, "feet"),
  6269. default: true
  6270. },
  6271. {
  6272. name: "Large",
  6273. height: math.unit(25 + 7 / 12, "feet")
  6274. },
  6275. {
  6276. name: "Macro",
  6277. height: math.unit(60 + 9 / 12, "feet")
  6278. },
  6279. {
  6280. name: "Macro+",
  6281. height: math.unit(246, "feet")
  6282. },
  6283. {
  6284. name: "Macro++",
  6285. height: math.unit(878, "feet")
  6286. }
  6287. ]
  6288. ))
  6289. characterMakers.push(() => makeCharacter(
  6290. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6291. {
  6292. front: {
  6293. height: math.unit(9, "feet"),
  6294. weight: math.unit(800, "lbs"),
  6295. name: "Front",
  6296. image: {
  6297. source: "./media/characters/tiberius/front.svg",
  6298. extra: 2295 / 2071
  6299. }
  6300. },
  6301. back: {
  6302. height: math.unit(9, "feet"),
  6303. weight: math.unit(800, "lbs"),
  6304. name: "Back",
  6305. image: {
  6306. source: "./media/characters/tiberius/back.svg",
  6307. extra: 2373 / 2160
  6308. }
  6309. },
  6310. },
  6311. [
  6312. {
  6313. name: "Normal",
  6314. height: math.unit(9, "feet"),
  6315. default: true
  6316. }
  6317. ]
  6318. ))
  6319. characterMakers.push(() => makeCharacter(
  6320. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6321. {
  6322. front: {
  6323. height: math.unit(6, "feet"),
  6324. weight: math.unit(600, "lbs"),
  6325. name: "Front",
  6326. image: {
  6327. source: "./media/characters/surgo/front.svg",
  6328. extra: 3591 / 2227
  6329. }
  6330. },
  6331. back: {
  6332. height: math.unit(6, "feet"),
  6333. weight: math.unit(600, "lbs"),
  6334. name: "Back",
  6335. image: {
  6336. source: "./media/characters/surgo/back.svg",
  6337. extra: 3557 / 2228
  6338. }
  6339. },
  6340. laying: {
  6341. height: math.unit(6 * 0.85, "feet"),
  6342. weight: math.unit(600, "lbs"),
  6343. name: "Laying",
  6344. image: {
  6345. source: "./media/characters/surgo/laying.svg"
  6346. }
  6347. },
  6348. },
  6349. [
  6350. {
  6351. name: "Normal",
  6352. height: math.unit(6, "feet"),
  6353. default: true
  6354. }
  6355. ]
  6356. ))
  6357. characterMakers.push(() => makeCharacter(
  6358. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6359. {
  6360. side: {
  6361. height: math.unit(6, "feet"),
  6362. weight: math.unit(150, "lbs"),
  6363. name: "Side",
  6364. image: {
  6365. source: "./media/characters/cibus/side.svg",
  6366. extra: 800 / 400
  6367. }
  6368. },
  6369. },
  6370. [
  6371. {
  6372. name: "Normal",
  6373. height: math.unit(6, "feet"),
  6374. default: true
  6375. }
  6376. ]
  6377. ))
  6378. characterMakers.push(() => makeCharacter(
  6379. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6380. {
  6381. front: {
  6382. height: math.unit(6, "feet"),
  6383. weight: math.unit(240, "lbs"),
  6384. name: "Front",
  6385. image: {
  6386. source: "./media/characters/nibbles/front.svg"
  6387. }
  6388. },
  6389. side: {
  6390. height: math.unit(6, "feet"),
  6391. weight: math.unit(240, "lbs"),
  6392. name: "Side",
  6393. image: {
  6394. source: "./media/characters/nibbles/side.svg"
  6395. }
  6396. },
  6397. },
  6398. [
  6399. {
  6400. name: "Normal",
  6401. height: math.unit(9, "feet"),
  6402. default: true
  6403. }
  6404. ]
  6405. ))
  6406. characterMakers.push(() => makeCharacter(
  6407. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6408. {
  6409. side: {
  6410. height: math.unit(5 + 1 / 6, "feet"),
  6411. weight: math.unit(130, "lbs"),
  6412. name: "Side",
  6413. image: {
  6414. source: "./media/characters/rikky/side.svg",
  6415. extra: 851 / 801
  6416. }
  6417. },
  6418. },
  6419. [
  6420. {
  6421. name: "Normal",
  6422. height: math.unit(5 + 1 / 6, "feet")
  6423. },
  6424. {
  6425. name: "Macro",
  6426. height: math.unit(152, "feet"),
  6427. default: true
  6428. },
  6429. {
  6430. name: "Megamacro",
  6431. height: math.unit(7, "miles")
  6432. }
  6433. ]
  6434. ))
  6435. characterMakers.push(() => makeCharacter(
  6436. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6437. {
  6438. side: {
  6439. height: math.unit(370, "cm"),
  6440. weight: math.unit(350, "lbs"),
  6441. name: "Side",
  6442. image: {
  6443. source: "./media/characters/malfressa/side.svg"
  6444. }
  6445. },
  6446. walking: {
  6447. height: math.unit(370, "cm"),
  6448. weight: math.unit(350, "lbs"),
  6449. name: "Walking",
  6450. image: {
  6451. source: "./media/characters/malfressa/walking.svg"
  6452. }
  6453. },
  6454. feral: {
  6455. height: math.unit(2500, "cm"),
  6456. weight: math.unit(100000, "lbs"),
  6457. name: "Feral",
  6458. image: {
  6459. source: "./media/characters/malfressa/feral.svg",
  6460. extra: 2108 / 837,
  6461. bottom: 0.02
  6462. }
  6463. },
  6464. },
  6465. [
  6466. {
  6467. name: "Normal",
  6468. height: math.unit(370, "cm")
  6469. },
  6470. {
  6471. name: "Macro",
  6472. height: math.unit(300, "meters"),
  6473. default: true
  6474. }
  6475. ]
  6476. ))
  6477. characterMakers.push(() => makeCharacter(
  6478. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6479. {
  6480. front: {
  6481. height: math.unit(6, "feet"),
  6482. weight: math.unit(60, "kg"),
  6483. name: "Front",
  6484. image: {
  6485. source: "./media/characters/jaro/front.svg",
  6486. extra: 845/817,
  6487. bottom: 45/890
  6488. }
  6489. },
  6490. back: {
  6491. height: math.unit(6, "feet"),
  6492. weight: math.unit(60, "kg"),
  6493. name: "Back",
  6494. image: {
  6495. source: "./media/characters/jaro/back.svg",
  6496. extra: 847/817,
  6497. bottom: 34/881
  6498. }
  6499. },
  6500. },
  6501. [
  6502. {
  6503. name: "Micro",
  6504. height: math.unit(7, "inches")
  6505. },
  6506. {
  6507. name: "Normal",
  6508. height: math.unit(5.5, "feet"),
  6509. default: true
  6510. },
  6511. {
  6512. name: "Minimacro",
  6513. height: math.unit(20, "feet")
  6514. },
  6515. {
  6516. name: "Macro",
  6517. height: math.unit(200, "meters")
  6518. }
  6519. ]
  6520. ))
  6521. characterMakers.push(() => makeCharacter(
  6522. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6523. {
  6524. front: {
  6525. height: math.unit(6, "feet"),
  6526. weight: math.unit(195, "lb"),
  6527. name: "Front",
  6528. image: {
  6529. source: "./media/characters/rogue/front.svg"
  6530. }
  6531. },
  6532. },
  6533. [
  6534. {
  6535. name: "Macro",
  6536. height: math.unit(90, "feet"),
  6537. default: true
  6538. },
  6539. ]
  6540. ))
  6541. characterMakers.push(() => makeCharacter(
  6542. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6543. {
  6544. standing: {
  6545. height: math.unit(5 + 8 / 12, "feet"),
  6546. weight: math.unit(140, "lb"),
  6547. name: "Standing",
  6548. image: {
  6549. source: "./media/characters/piper/standing.svg",
  6550. extra: 1440/1284,
  6551. bottom: 66/1506
  6552. }
  6553. },
  6554. running: {
  6555. height: math.unit(5 + 8 / 12, "feet"),
  6556. weight: math.unit(140, "lb"),
  6557. name: "Running",
  6558. image: {
  6559. source: "./media/characters/piper/running.svg",
  6560. extra: 3948/3655,
  6561. bottom: 0/3948
  6562. }
  6563. },
  6564. sole: {
  6565. height: math.unit(0.81, "feet"),
  6566. weight: math.unit(2, "kg"),
  6567. name: "Sole",
  6568. image: {
  6569. source: "./media/characters/piper/sole.svg"
  6570. }
  6571. },
  6572. nipple: {
  6573. height: math.unit(0.25, "feet"),
  6574. weight: math.unit(1.5, "lb"),
  6575. name: "Nipple",
  6576. image: {
  6577. source: "./media/characters/piper/nipple.svg"
  6578. }
  6579. },
  6580. head: {
  6581. height: math.unit(1.1, "feet"),
  6582. name: "Head",
  6583. image: {
  6584. source: "./media/characters/piper/head.svg"
  6585. }
  6586. },
  6587. },
  6588. [
  6589. {
  6590. name: "Micro",
  6591. height: math.unit(2, "inches")
  6592. },
  6593. {
  6594. name: "Normal",
  6595. height: math.unit(5 + 8 / 12, "feet")
  6596. },
  6597. {
  6598. name: "Macro",
  6599. height: math.unit(250, "feet"),
  6600. default: true
  6601. },
  6602. {
  6603. name: "Megamacro",
  6604. height: math.unit(7, "miles")
  6605. },
  6606. ]
  6607. ))
  6608. characterMakers.push(() => makeCharacter(
  6609. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6610. {
  6611. front: {
  6612. height: math.unit(6, "feet"),
  6613. weight: math.unit(220, "lb"),
  6614. name: "Front",
  6615. image: {
  6616. source: "./media/characters/gemini/front.svg"
  6617. }
  6618. },
  6619. back: {
  6620. height: math.unit(6, "feet"),
  6621. weight: math.unit(220, "lb"),
  6622. name: "Back",
  6623. image: {
  6624. source: "./media/characters/gemini/back.svg"
  6625. }
  6626. },
  6627. kneeling: {
  6628. height: math.unit(6 / 1.5, "feet"),
  6629. weight: math.unit(220, "lb"),
  6630. name: "Kneeling",
  6631. image: {
  6632. source: "./media/characters/gemini/kneeling.svg",
  6633. bottom: 0.02
  6634. }
  6635. },
  6636. },
  6637. [
  6638. {
  6639. name: "Macro",
  6640. height: math.unit(300, "meters"),
  6641. default: true
  6642. },
  6643. {
  6644. name: "Megamacro",
  6645. height: math.unit(6900, "meters")
  6646. },
  6647. ]
  6648. ))
  6649. characterMakers.push(() => makeCharacter(
  6650. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6651. {
  6652. anthro: {
  6653. height: math.unit(2.35, "meters"),
  6654. weight: math.unit(73, "kg"),
  6655. name: "Anthro",
  6656. image: {
  6657. source: "./media/characters/alicia/anthro.svg",
  6658. extra: 2571 / 2385,
  6659. bottom: 75 / 2648
  6660. }
  6661. },
  6662. paw: {
  6663. height: math.unit(1.32, "feet"),
  6664. name: "Paw",
  6665. image: {
  6666. source: "./media/characters/alicia/paw.svg"
  6667. }
  6668. },
  6669. feral: {
  6670. height: math.unit(1.69, "meters"),
  6671. weight: math.unit(73, "kg"),
  6672. name: "Feral",
  6673. image: {
  6674. source: "./media/characters/alicia/feral.svg",
  6675. extra: 2123 / 1715,
  6676. bottom: 222 / 2349
  6677. }
  6678. },
  6679. },
  6680. [
  6681. {
  6682. name: "Normal",
  6683. height: math.unit(2.35, "meters")
  6684. },
  6685. {
  6686. name: "Macro",
  6687. height: math.unit(60, "meters"),
  6688. default: true
  6689. },
  6690. {
  6691. name: "Megamacro",
  6692. height: math.unit(10000, "kilometers")
  6693. },
  6694. ]
  6695. ))
  6696. characterMakers.push(() => makeCharacter(
  6697. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6698. {
  6699. front: {
  6700. height: math.unit(7, "feet"),
  6701. weight: math.unit(250, "lbs"),
  6702. name: "Front",
  6703. image: {
  6704. source: "./media/characters/archy/front.svg"
  6705. }
  6706. }
  6707. },
  6708. [
  6709. {
  6710. name: "Micro",
  6711. height: math.unit(1, "inch")
  6712. },
  6713. {
  6714. name: "Shorty",
  6715. height: math.unit(5, "feet")
  6716. },
  6717. {
  6718. name: "Normal",
  6719. height: math.unit(7, "feet")
  6720. },
  6721. {
  6722. name: "Macro",
  6723. height: math.unit(600, "meters"),
  6724. default: true
  6725. },
  6726. {
  6727. name: "Megamacro",
  6728. height: math.unit(1, "mile")
  6729. },
  6730. ]
  6731. ))
  6732. characterMakers.push(() => makeCharacter(
  6733. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6734. {
  6735. front: {
  6736. height: math.unit(1.65, "meters"),
  6737. weight: math.unit(74, "kg"),
  6738. name: "Front",
  6739. image: {
  6740. source: "./media/characters/berri/front.svg",
  6741. extra: 857 / 837,
  6742. bottom: 18 / 877
  6743. }
  6744. },
  6745. bum: {
  6746. height: math.unit(1.46, "feet"),
  6747. name: "Bum",
  6748. image: {
  6749. source: "./media/characters/berri/bum.svg"
  6750. }
  6751. },
  6752. mouth: {
  6753. height: math.unit(0.44, "feet"),
  6754. name: "Mouth",
  6755. image: {
  6756. source: "./media/characters/berri/mouth.svg"
  6757. }
  6758. },
  6759. paw: {
  6760. height: math.unit(0.826, "feet"),
  6761. name: "Paw",
  6762. image: {
  6763. source: "./media/characters/berri/paw.svg"
  6764. }
  6765. },
  6766. },
  6767. [
  6768. {
  6769. name: "Normal",
  6770. height: math.unit(1.65, "meters")
  6771. },
  6772. {
  6773. name: "Macro",
  6774. height: math.unit(60, "m"),
  6775. default: true
  6776. },
  6777. {
  6778. name: "Megamacro",
  6779. height: math.unit(9.213, "km")
  6780. },
  6781. {
  6782. name: "Planet Eater",
  6783. height: math.unit(489, "megameters")
  6784. },
  6785. {
  6786. name: "Teramacro",
  6787. height: math.unit(2471635000000, "meters")
  6788. },
  6789. {
  6790. name: "Examacro",
  6791. height: math.unit(8.0624e+26, "meters")
  6792. }
  6793. ]
  6794. ))
  6795. characterMakers.push(() => makeCharacter(
  6796. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6797. {
  6798. front: {
  6799. height: math.unit(1.72, "meters"),
  6800. weight: math.unit(68, "kg"),
  6801. name: "Front",
  6802. image: {
  6803. source: "./media/characters/lexi/front.svg"
  6804. }
  6805. }
  6806. },
  6807. [
  6808. {
  6809. name: "Very Smol",
  6810. height: math.unit(10, "mm")
  6811. },
  6812. {
  6813. name: "Micro",
  6814. height: math.unit(6.8, "cm"),
  6815. default: true
  6816. },
  6817. {
  6818. name: "Normal",
  6819. height: math.unit(1.72, "m")
  6820. }
  6821. ]
  6822. ))
  6823. characterMakers.push(() => makeCharacter(
  6824. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6825. {
  6826. front: {
  6827. height: math.unit(1.69, "meters"),
  6828. weight: math.unit(68, "kg"),
  6829. name: "Front",
  6830. image: {
  6831. source: "./media/characters/martin/front.svg",
  6832. extra: 596 / 581
  6833. }
  6834. }
  6835. },
  6836. [
  6837. {
  6838. name: "Micro",
  6839. height: math.unit(6.85, "cm"),
  6840. default: true
  6841. },
  6842. {
  6843. name: "Normal",
  6844. height: math.unit(1.69, "m")
  6845. }
  6846. ]
  6847. ))
  6848. characterMakers.push(() => makeCharacter(
  6849. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6850. {
  6851. front: {
  6852. height: math.unit(1.69, "meters"),
  6853. weight: math.unit(68, "kg"),
  6854. name: "Front",
  6855. image: {
  6856. source: "./media/characters/juno/front.svg"
  6857. }
  6858. }
  6859. },
  6860. [
  6861. {
  6862. name: "Micro",
  6863. height: math.unit(7, "cm")
  6864. },
  6865. {
  6866. name: "Normal",
  6867. height: math.unit(1.89, "m")
  6868. },
  6869. {
  6870. name: "Macro",
  6871. height: math.unit(353, "meters"),
  6872. default: true
  6873. }
  6874. ]
  6875. ))
  6876. characterMakers.push(() => makeCharacter(
  6877. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6878. {
  6879. front: {
  6880. height: math.unit(1.93, "meters"),
  6881. weight: math.unit(83, "kg"),
  6882. name: "Front",
  6883. image: {
  6884. source: "./media/characters/samantha/front.svg"
  6885. }
  6886. },
  6887. frontClothed: {
  6888. height: math.unit(1.93, "meters"),
  6889. weight: math.unit(83, "kg"),
  6890. name: "Front (Clothed)",
  6891. image: {
  6892. source: "./media/characters/samantha/front-clothed.svg"
  6893. }
  6894. },
  6895. back: {
  6896. height: math.unit(1.93, "meters"),
  6897. weight: math.unit(83, "kg"),
  6898. name: "Back",
  6899. image: {
  6900. source: "./media/characters/samantha/back.svg"
  6901. }
  6902. },
  6903. },
  6904. [
  6905. {
  6906. name: "Normal",
  6907. height: math.unit(1.93, "m")
  6908. },
  6909. {
  6910. name: "Macro",
  6911. height: math.unit(74, "meters"),
  6912. default: true
  6913. },
  6914. {
  6915. name: "Macro+",
  6916. height: math.unit(223, "meters"),
  6917. },
  6918. {
  6919. name: "Megamacro",
  6920. height: math.unit(8381, "meters"),
  6921. },
  6922. {
  6923. name: "Megamacro+",
  6924. height: math.unit(12000, "kilometers")
  6925. },
  6926. ]
  6927. ))
  6928. characterMakers.push(() => makeCharacter(
  6929. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6930. {
  6931. front: {
  6932. height: math.unit(1.92, "meters"),
  6933. weight: math.unit(80, "kg"),
  6934. name: "Front",
  6935. image: {
  6936. source: "./media/characters/dr-clay/front.svg"
  6937. }
  6938. },
  6939. frontClothed: {
  6940. height: math.unit(1.92, "meters"),
  6941. weight: math.unit(80, "kg"),
  6942. name: "Front (Clothed)",
  6943. image: {
  6944. source: "./media/characters/dr-clay/front-clothed.svg"
  6945. }
  6946. }
  6947. },
  6948. [
  6949. {
  6950. name: "Normal",
  6951. height: math.unit(1.92, "m")
  6952. },
  6953. {
  6954. name: "Macro",
  6955. height: math.unit(214, "meters"),
  6956. default: true
  6957. },
  6958. {
  6959. name: "Macro+",
  6960. height: math.unit(12.237, "meters"),
  6961. },
  6962. {
  6963. name: "Megamacro",
  6964. height: math.unit(557, "megameters"),
  6965. },
  6966. {
  6967. name: "Unimaginable",
  6968. height: math.unit(120e9, "lightyears")
  6969. },
  6970. ]
  6971. ))
  6972. characterMakers.push(() => makeCharacter(
  6973. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6974. {
  6975. front: {
  6976. height: math.unit(2, "meters"),
  6977. weight: math.unit(80, "kg"),
  6978. name: "Front",
  6979. image: {
  6980. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6981. }
  6982. }
  6983. },
  6984. [
  6985. {
  6986. name: "Teramacro",
  6987. height: math.unit(500000, "lightyears"),
  6988. default: true
  6989. },
  6990. ]
  6991. ))
  6992. characterMakers.push(() => makeCharacter(
  6993. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6994. {
  6995. crux: {
  6996. height: math.unit(2, "meters"),
  6997. weight: math.unit(150, "kg"),
  6998. name: "Crux",
  6999. image: {
  7000. source: "./media/characters/vemus/crux.svg",
  7001. extra: 1074/936,
  7002. bottom: 23/1097
  7003. }
  7004. },
  7005. skunkTanuki: {
  7006. height: math.unit(2, "meters"),
  7007. weight: math.unit(150, "kg"),
  7008. name: "Skunk-Tanuki",
  7009. image: {
  7010. source: "./media/characters/vemus/skunk-tanuki.svg",
  7011. extra: 926/893,
  7012. bottom: 20/946
  7013. }
  7014. },
  7015. },
  7016. [
  7017. {
  7018. name: "Normal",
  7019. height: math.unit(3.75, "meters"),
  7020. default: true
  7021. },
  7022. {
  7023. name: "Big",
  7024. height: math.unit(8, "meters")
  7025. },
  7026. {
  7027. name: "Macro",
  7028. height: math.unit(100, "meters")
  7029. },
  7030. {
  7031. name: "Macro+",
  7032. height: math.unit(1500, "meters")
  7033. },
  7034. {
  7035. name: "Stellar",
  7036. height: math.unit(14e8, "meters")
  7037. },
  7038. ]
  7039. ))
  7040. characterMakers.push(() => makeCharacter(
  7041. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7042. {
  7043. front: {
  7044. height: math.unit(2, "meters"),
  7045. weight: math.unit(70, "kg"),
  7046. name: "Front",
  7047. image: {
  7048. source: "./media/characters/beherit/front.svg",
  7049. extra: 1234/1109,
  7050. bottom: 55/1289
  7051. }
  7052. }
  7053. },
  7054. [
  7055. {
  7056. name: "Normal",
  7057. height: math.unit(6, "feet")
  7058. },
  7059. {
  7060. name: "Lorg",
  7061. height: math.unit(25, "feet"),
  7062. default: true
  7063. },
  7064. {
  7065. name: "Lorger",
  7066. height: math.unit(75, "feet")
  7067. },
  7068. {
  7069. name: "Macro",
  7070. height: math.unit(200, "meters")
  7071. },
  7072. ]
  7073. ))
  7074. characterMakers.push(() => makeCharacter(
  7075. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7076. {
  7077. front: {
  7078. height: math.unit(2, "meters"),
  7079. weight: math.unit(150, "kg"),
  7080. name: "Front",
  7081. image: {
  7082. source: "./media/characters/everett/front.svg",
  7083. extra: 1017/866,
  7084. bottom: 86/1103
  7085. }
  7086. },
  7087. paw: {
  7088. height: math.unit(2 / 3.6, "meters"),
  7089. name: "Paw",
  7090. image: {
  7091. source: "./media/characters/everett/paw.svg"
  7092. }
  7093. },
  7094. },
  7095. [
  7096. {
  7097. name: "Normal",
  7098. height: math.unit(15, "feet"),
  7099. default: true
  7100. },
  7101. {
  7102. name: "Lorg",
  7103. height: math.unit(70, "feet"),
  7104. default: true
  7105. },
  7106. {
  7107. name: "Lorger",
  7108. height: math.unit(250, "feet")
  7109. },
  7110. {
  7111. name: "Macro",
  7112. height: math.unit(500, "meters")
  7113. },
  7114. ]
  7115. ))
  7116. characterMakers.push(() => makeCharacter(
  7117. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7118. {
  7119. front: {
  7120. height: math.unit(2, "meters"),
  7121. weight: math.unit(86, "kg"),
  7122. name: "Front",
  7123. image: {
  7124. source: "./media/characters/rose/front.svg",
  7125. extra: 1785/1636,
  7126. bottom: 30/1815
  7127. },
  7128. form: "liom",
  7129. default: true
  7130. },
  7131. frontSporty: {
  7132. height: math.unit(2, "meters"),
  7133. weight: math.unit(86, "kg"),
  7134. name: "Front (Sporty)",
  7135. image: {
  7136. source: "./media/characters/rose/front-sporty.svg",
  7137. extra: 350/335,
  7138. bottom: 10/360
  7139. },
  7140. form: "liom"
  7141. },
  7142. frontAlt: {
  7143. height: math.unit(1.6, "meters"),
  7144. weight: math.unit(86, "kg"),
  7145. name: "Front (Alt)",
  7146. image: {
  7147. source: "./media/characters/rose/front-alt.svg",
  7148. extra: 299/283,
  7149. bottom: 3/302
  7150. },
  7151. form: "liom"
  7152. },
  7153. plush: {
  7154. height: math.unit(2, "meters"),
  7155. weight: math.unit(86/3, "kg"),
  7156. name: "Plush",
  7157. image: {
  7158. source: "./media/characters/rose/plush.svg",
  7159. extra: 361/337,
  7160. bottom: 11/372
  7161. },
  7162. form: "plush",
  7163. default: true
  7164. },
  7165. faeStanding: {
  7166. height: math.unit(10, "cm"),
  7167. weight: math.unit(10, "grams"),
  7168. name: "Standing",
  7169. image: {
  7170. source: "./media/characters/rose/fae-standing.svg",
  7171. extra: 1189/1060,
  7172. bottom: 27/1216
  7173. },
  7174. form: "fae",
  7175. default: true
  7176. },
  7177. faeSitting: {
  7178. height: math.unit(5, "cm"),
  7179. weight: math.unit(10, "grams"),
  7180. name: "Sitting",
  7181. image: {
  7182. source: "./media/characters/rose/fae-sitting.svg",
  7183. extra: 737/577,
  7184. bottom: 356/1093
  7185. },
  7186. form: "fae"
  7187. },
  7188. faePaw: {
  7189. height: math.unit(1.35, "cm"),
  7190. name: "Paw",
  7191. image: {
  7192. source: "./media/characters/rose/fae-paw.svg"
  7193. },
  7194. form: "fae"
  7195. },
  7196. },
  7197. [
  7198. {
  7199. name: "True Micro",
  7200. height: math.unit(9, "cm"),
  7201. form: "liom"
  7202. },
  7203. {
  7204. name: "Micro",
  7205. height: math.unit(16, "cm"),
  7206. form: "liom"
  7207. },
  7208. {
  7209. name: "Normal",
  7210. height: math.unit(1.85, "meters"),
  7211. default: true,
  7212. form: "liom"
  7213. },
  7214. {
  7215. name: "Mini-Macro",
  7216. height: math.unit(5, "meters"),
  7217. form: "liom"
  7218. },
  7219. {
  7220. name: "Macro",
  7221. height: math.unit(15, "meters"),
  7222. form: "liom"
  7223. },
  7224. {
  7225. name: "True Macro",
  7226. height: math.unit(40, "meters"),
  7227. form: "liom"
  7228. },
  7229. {
  7230. name: "City Scale",
  7231. height: math.unit(1, "km"),
  7232. form: "liom"
  7233. },
  7234. {
  7235. name: "Plushie",
  7236. height: math.unit(9, "cm"),
  7237. form: "plush",
  7238. default: true
  7239. },
  7240. {
  7241. name: "Fae",
  7242. height: math.unit(10, "cm"),
  7243. form: "fae",
  7244. default: true
  7245. },
  7246. ],
  7247. {
  7248. "liom": {
  7249. name: "Liom"
  7250. },
  7251. "plush": {
  7252. name: "Plush"
  7253. },
  7254. "fae": {
  7255. name: "Fae Fox",
  7256. default: true
  7257. }
  7258. }
  7259. ))
  7260. characterMakers.push(() => makeCharacter(
  7261. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7262. {
  7263. front: {
  7264. height: math.unit(2, "meters"),
  7265. weight: math.unit(350, "lbs"),
  7266. name: "Front",
  7267. image: {
  7268. source: "./media/characters/regal/front.svg"
  7269. }
  7270. },
  7271. back: {
  7272. height: math.unit(2, "meters"),
  7273. weight: math.unit(350, "lbs"),
  7274. name: "Back",
  7275. image: {
  7276. source: "./media/characters/regal/back.svg"
  7277. }
  7278. },
  7279. },
  7280. [
  7281. {
  7282. name: "Macro",
  7283. height: math.unit(350, "feet"),
  7284. default: true
  7285. }
  7286. ]
  7287. ))
  7288. characterMakers.push(() => makeCharacter(
  7289. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7290. {
  7291. front: {
  7292. height: math.unit(4 + 11 / 12, "feet"),
  7293. weight: math.unit(100, "lbs"),
  7294. name: "Front",
  7295. image: {
  7296. source: "./media/characters/opal/front.svg"
  7297. }
  7298. },
  7299. frontAlt: {
  7300. height: math.unit(4 + 11 / 12, "feet"),
  7301. weight: math.unit(100, "lbs"),
  7302. name: "Front (Alt)",
  7303. image: {
  7304. source: "./media/characters/opal/front-alt.svg"
  7305. }
  7306. },
  7307. },
  7308. [
  7309. {
  7310. name: "Small",
  7311. height: math.unit(4 + 11 / 12, "feet")
  7312. },
  7313. {
  7314. name: "Normal",
  7315. height: math.unit(20, "feet"),
  7316. default: true
  7317. },
  7318. {
  7319. name: "Macro",
  7320. height: math.unit(120, "feet")
  7321. },
  7322. {
  7323. name: "Megamacro",
  7324. height: math.unit(80, "miles")
  7325. },
  7326. {
  7327. name: "True Size",
  7328. height: math.unit(100000, "lightyears")
  7329. },
  7330. ]
  7331. ))
  7332. characterMakers.push(() => makeCharacter(
  7333. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7334. {
  7335. front: {
  7336. height: math.unit(6, "feet"),
  7337. weight: math.unit(200, "lbs"),
  7338. name: "Front",
  7339. image: {
  7340. source: "./media/characters/vector-wuff/front.svg"
  7341. }
  7342. }
  7343. },
  7344. [
  7345. {
  7346. name: "Normal",
  7347. height: math.unit(2.8, "meters")
  7348. },
  7349. {
  7350. name: "Macro",
  7351. height: math.unit(450, "meters"),
  7352. default: true
  7353. },
  7354. {
  7355. name: "Megamacro",
  7356. height: math.unit(15, "kilometers")
  7357. }
  7358. ]
  7359. ))
  7360. characterMakers.push(() => makeCharacter(
  7361. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7362. {
  7363. front: {
  7364. height: math.unit(6, "feet"),
  7365. weight: math.unit(256, "lbs"),
  7366. name: "Front",
  7367. image: {
  7368. source: "./media/characters/dannik/front.svg"
  7369. }
  7370. }
  7371. },
  7372. [
  7373. {
  7374. name: "Macro",
  7375. height: math.unit(69.57, "meters"),
  7376. default: true
  7377. },
  7378. ]
  7379. ))
  7380. characterMakers.push(() => makeCharacter(
  7381. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7382. {
  7383. front: {
  7384. height: math.unit(6, "feet"),
  7385. weight: math.unit(120, "lbs"),
  7386. name: "Front",
  7387. image: {
  7388. source: "./media/characters/azura-saharah/front.svg"
  7389. }
  7390. },
  7391. back: {
  7392. height: math.unit(6, "feet"),
  7393. weight: math.unit(120, "lbs"),
  7394. name: "Back",
  7395. image: {
  7396. source: "./media/characters/azura-saharah/back.svg"
  7397. }
  7398. },
  7399. },
  7400. [
  7401. {
  7402. name: "Macro",
  7403. height: math.unit(100, "feet"),
  7404. default: true
  7405. },
  7406. ]
  7407. ))
  7408. characterMakers.push(() => makeCharacter(
  7409. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7410. {
  7411. side: {
  7412. height: math.unit(5 + 4 / 12, "feet"),
  7413. weight: math.unit(163, "lbs"),
  7414. name: "Side",
  7415. image: {
  7416. source: "./media/characters/kennedy/side.svg"
  7417. }
  7418. }
  7419. },
  7420. [
  7421. {
  7422. name: "Standard Doggo",
  7423. height: math.unit(5 + 4 / 12, "feet")
  7424. },
  7425. {
  7426. name: "Big Doggo",
  7427. height: math.unit(25 + 3 / 12, "feet"),
  7428. default: true
  7429. },
  7430. ]
  7431. ))
  7432. characterMakers.push(() => makeCharacter(
  7433. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7434. {
  7435. front: {
  7436. height: math.unit(5 + 5/12, "feet"),
  7437. weight: math.unit(100, "lbs"),
  7438. name: "Front",
  7439. image: {
  7440. source: "./media/characters/odios-de-lunar/front.svg",
  7441. extra: 1468/1323,
  7442. bottom: 22/1490
  7443. }
  7444. }
  7445. },
  7446. [
  7447. {
  7448. name: "Micro",
  7449. height: math.unit(3, "inches")
  7450. },
  7451. {
  7452. name: "Normal",
  7453. height: math.unit(5.5, "feet"),
  7454. default: true
  7455. },
  7456. {
  7457. name: "Macro",
  7458. height: math.unit(100, "feet")
  7459. },
  7460. ]
  7461. ))
  7462. characterMakers.push(() => makeCharacter(
  7463. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7464. {
  7465. back: {
  7466. height: math.unit(6, "feet"),
  7467. weight: math.unit(220, "lbs"),
  7468. name: "Back",
  7469. image: {
  7470. source: "./media/characters/mandake/back.svg"
  7471. }
  7472. }
  7473. },
  7474. [
  7475. {
  7476. name: "Normal",
  7477. height: math.unit(7, "feet"),
  7478. default: true
  7479. },
  7480. {
  7481. name: "Macro",
  7482. height: math.unit(78, "feet")
  7483. },
  7484. {
  7485. name: "Macro+",
  7486. height: math.unit(300, "meters")
  7487. },
  7488. {
  7489. name: "Macro++",
  7490. height: math.unit(2400, "feet")
  7491. },
  7492. {
  7493. name: "Megamacro",
  7494. height: math.unit(5167, "meters")
  7495. },
  7496. {
  7497. name: "Gigamacro",
  7498. height: math.unit(41769, "miles")
  7499. },
  7500. ]
  7501. ))
  7502. characterMakers.push(() => makeCharacter(
  7503. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7504. {
  7505. front: {
  7506. height: math.unit(6, "feet"),
  7507. weight: math.unit(120, "lbs"),
  7508. name: "Front",
  7509. image: {
  7510. source: "./media/characters/yozey/front.svg"
  7511. }
  7512. },
  7513. frontAlt: {
  7514. height: math.unit(6, "feet"),
  7515. weight: math.unit(120, "lbs"),
  7516. name: "Front (Alt)",
  7517. image: {
  7518. source: "./media/characters/yozey/front-alt.svg"
  7519. }
  7520. },
  7521. side: {
  7522. height: math.unit(6, "feet"),
  7523. weight: math.unit(120, "lbs"),
  7524. name: "Side",
  7525. image: {
  7526. source: "./media/characters/yozey/side.svg"
  7527. }
  7528. },
  7529. },
  7530. [
  7531. {
  7532. name: "Micro",
  7533. height: math.unit(3, "inches"),
  7534. default: true
  7535. },
  7536. {
  7537. name: "Normal",
  7538. height: math.unit(6, "feet")
  7539. }
  7540. ]
  7541. ))
  7542. characterMakers.push(() => makeCharacter(
  7543. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7544. {
  7545. front: {
  7546. height: math.unit(6, "feet"),
  7547. weight: math.unit(103, "lbs"),
  7548. name: "Front",
  7549. image: {
  7550. source: "./media/characters/valeska-voss/front.svg"
  7551. }
  7552. }
  7553. },
  7554. [
  7555. {
  7556. name: "Mini-Sized Sub",
  7557. height: math.unit(3.1, "inches")
  7558. },
  7559. {
  7560. name: "Mid-Sized Sub",
  7561. height: math.unit(6.2, "inches")
  7562. },
  7563. {
  7564. name: "Full-Sized Sub",
  7565. height: math.unit(9.3, "inches")
  7566. },
  7567. {
  7568. name: "Normal",
  7569. height: math.unit(5 + 2 / 12, "foot"),
  7570. default: true
  7571. },
  7572. ]
  7573. ))
  7574. characterMakers.push(() => makeCharacter(
  7575. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7576. {
  7577. front: {
  7578. height: math.unit(6, "feet"),
  7579. weight: math.unit(160, "lbs"),
  7580. name: "Front",
  7581. image: {
  7582. source: "./media/characters/gene-zeta/front.svg",
  7583. extra: 3006 / 2826,
  7584. bottom: 182 / 3188
  7585. }
  7586. }
  7587. },
  7588. [
  7589. {
  7590. name: "Micro",
  7591. height: math.unit(6, "inches")
  7592. },
  7593. {
  7594. name: "Normal",
  7595. height: math.unit(5 + 11 / 12, "foot"),
  7596. default: true
  7597. },
  7598. {
  7599. name: "Macro",
  7600. height: math.unit(140, "feet")
  7601. },
  7602. {
  7603. name: "Supercharged",
  7604. height: math.unit(2500, "feet")
  7605. },
  7606. ]
  7607. ))
  7608. characterMakers.push(() => makeCharacter(
  7609. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7610. {
  7611. front: {
  7612. height: math.unit(6, "feet"),
  7613. weight: math.unit(350, "lbs"),
  7614. name: "Front",
  7615. image: {
  7616. source: "./media/characters/razinox/front.svg",
  7617. extra: 1686 / 1548,
  7618. bottom: 28.2 / 1868
  7619. }
  7620. },
  7621. back: {
  7622. height: math.unit(6, "feet"),
  7623. weight: math.unit(350, "lbs"),
  7624. name: "Back",
  7625. image: {
  7626. source: "./media/characters/razinox/back.svg",
  7627. extra: 1660 / 1590,
  7628. bottom: 15 / 1665
  7629. }
  7630. },
  7631. },
  7632. [
  7633. {
  7634. name: "Normal",
  7635. height: math.unit(10 + 8 / 12, "foot")
  7636. },
  7637. {
  7638. name: "Minimacro",
  7639. height: math.unit(15, "foot")
  7640. },
  7641. {
  7642. name: "Macro",
  7643. height: math.unit(60, "foot"),
  7644. default: true
  7645. },
  7646. {
  7647. name: "Megamacro",
  7648. height: math.unit(5, "miles")
  7649. },
  7650. {
  7651. name: "Gigamacro",
  7652. height: math.unit(6000, "miles")
  7653. },
  7654. ]
  7655. ))
  7656. characterMakers.push(() => makeCharacter(
  7657. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7658. {
  7659. front: {
  7660. height: math.unit(6, "feet"),
  7661. weight: math.unit(150, "lbs"),
  7662. name: "Front",
  7663. image: {
  7664. source: "./media/characters/cobalt/front.svg"
  7665. }
  7666. }
  7667. },
  7668. [
  7669. {
  7670. name: "Normal",
  7671. height: math.unit(8 + 1 / 12, "foot")
  7672. },
  7673. {
  7674. name: "Macro",
  7675. height: math.unit(111, "foot"),
  7676. default: true
  7677. },
  7678. {
  7679. name: "Supracosmic",
  7680. height: math.unit(1e42, "feet")
  7681. },
  7682. ]
  7683. ))
  7684. characterMakers.push(() => makeCharacter(
  7685. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7686. {
  7687. front: {
  7688. height: math.unit(5, "inches"),
  7689. name: "Front",
  7690. image: {
  7691. source: "./media/characters/amanda/front.svg",
  7692. extra: 926/791,
  7693. bottom: 38/964
  7694. }
  7695. },
  7696. back: {
  7697. height: math.unit(5, "inches"),
  7698. name: "Back",
  7699. image: {
  7700. source: "./media/characters/amanda/back.svg",
  7701. extra: 909/805,
  7702. bottom: 43/952
  7703. }
  7704. },
  7705. },
  7706. [
  7707. {
  7708. name: "Micro",
  7709. height: math.unit(5, "inches"),
  7710. default: true
  7711. },
  7712. ]
  7713. ))
  7714. characterMakers.push(() => makeCharacter(
  7715. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7716. {
  7717. front: {
  7718. height: math.unit(2.75, "meters"),
  7719. weight: math.unit(1200, "lb"),
  7720. name: "Front",
  7721. image: {
  7722. source: "./media/characters/teal/front.svg",
  7723. extra: 2463 / 2320,
  7724. bottom: 166 / 2629
  7725. }
  7726. },
  7727. back: {
  7728. height: math.unit(2.75, "meters"),
  7729. weight: math.unit(1200, "lb"),
  7730. name: "Back",
  7731. image: {
  7732. source: "./media/characters/teal/back.svg",
  7733. extra: 2580 / 2489,
  7734. bottom: 151 / 2731
  7735. }
  7736. },
  7737. sitting: {
  7738. height: math.unit(1.9, "meters"),
  7739. weight: math.unit(1200, "lb"),
  7740. name: "Sitting",
  7741. image: {
  7742. source: "./media/characters/teal/sitting.svg",
  7743. extra: 623 / 590,
  7744. bottom: 121 / 744
  7745. }
  7746. },
  7747. standing: {
  7748. height: math.unit(2.75, "meters"),
  7749. weight: math.unit(1200, "lb"),
  7750. name: "Standing",
  7751. image: {
  7752. source: "./media/characters/teal/standing.svg",
  7753. extra: 923 / 893,
  7754. bottom: 60 / 983
  7755. }
  7756. },
  7757. stretching: {
  7758. height: math.unit(3.65, "meters"),
  7759. weight: math.unit(1200, "lb"),
  7760. name: "Stretching",
  7761. image: {
  7762. source: "./media/characters/teal/stretching.svg",
  7763. extra: 1276 / 1244,
  7764. bottom: 0 / 1276
  7765. }
  7766. },
  7767. legged: {
  7768. height: math.unit(1.3, "meters"),
  7769. weight: math.unit(100, "lb"),
  7770. name: "Legged",
  7771. image: {
  7772. source: "./media/characters/teal/legged.svg",
  7773. extra: 462 / 437,
  7774. bottom: 24 / 486
  7775. }
  7776. },
  7777. naga: {
  7778. height: math.unit(5.4, "meters"),
  7779. weight: math.unit(4000, "lb"),
  7780. name: "Naga",
  7781. image: {
  7782. source: "./media/characters/teal/naga.svg",
  7783. extra: 1902 / 1858,
  7784. bottom: 0 / 1902
  7785. }
  7786. },
  7787. hand: {
  7788. height: math.unit(0.52, "meters"),
  7789. name: "Hand",
  7790. image: {
  7791. source: "./media/characters/teal/hand.svg"
  7792. }
  7793. },
  7794. maw: {
  7795. height: math.unit(0.43, "meters"),
  7796. name: "Maw",
  7797. image: {
  7798. source: "./media/characters/teal/maw.svg"
  7799. }
  7800. },
  7801. slit: {
  7802. height: math.unit(0.25, "meters"),
  7803. name: "Slit",
  7804. image: {
  7805. source: "./media/characters/teal/slit.svg"
  7806. }
  7807. },
  7808. },
  7809. [
  7810. {
  7811. name: "Normal",
  7812. height: math.unit(2.75, "meters"),
  7813. default: true
  7814. },
  7815. {
  7816. name: "Macro",
  7817. height: math.unit(300, "feet")
  7818. },
  7819. {
  7820. name: "Macro+",
  7821. height: math.unit(2000, "feet")
  7822. },
  7823. ]
  7824. ))
  7825. characterMakers.push(() => makeCharacter(
  7826. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7827. {
  7828. frontCat: {
  7829. height: math.unit(6, "feet"),
  7830. weight: math.unit(180, "lbs"),
  7831. name: "Front (Cat)",
  7832. image: {
  7833. source: "./media/characters/ravin-amulet/front-cat.svg"
  7834. }
  7835. },
  7836. frontCatAlt: {
  7837. height: math.unit(6, "feet"),
  7838. weight: math.unit(180, "lbs"),
  7839. name: "Front (Alt, Cat)",
  7840. image: {
  7841. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7842. }
  7843. },
  7844. frontWerewolf: {
  7845. height: math.unit(6 * 1.2, "feet"),
  7846. weight: math.unit(225, "lbs"),
  7847. name: "Front (Werewolf)",
  7848. image: {
  7849. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7850. }
  7851. },
  7852. backWerewolf: {
  7853. height: math.unit(6 * 1.2, "feet"),
  7854. weight: math.unit(225, "lbs"),
  7855. name: "Back (Werewolf)",
  7856. image: {
  7857. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7858. }
  7859. },
  7860. },
  7861. [
  7862. {
  7863. name: "Nano",
  7864. height: math.unit(1, "micrometer")
  7865. },
  7866. {
  7867. name: "Micro",
  7868. height: math.unit(1, "inch")
  7869. },
  7870. {
  7871. name: "Normal",
  7872. height: math.unit(6, "feet"),
  7873. default: true
  7874. },
  7875. {
  7876. name: "Macro",
  7877. height: math.unit(60, "feet")
  7878. }
  7879. ]
  7880. ))
  7881. characterMakers.push(() => makeCharacter(
  7882. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7883. {
  7884. front: {
  7885. height: math.unit(6, "feet"),
  7886. weight: math.unit(165, "lbs"),
  7887. name: "Front",
  7888. image: {
  7889. source: "./media/characters/fluoresce/front.svg"
  7890. }
  7891. }
  7892. },
  7893. [
  7894. {
  7895. name: "Micro",
  7896. height: math.unit(6, "cm")
  7897. },
  7898. {
  7899. name: "Normal",
  7900. height: math.unit(5 + 7 / 12, "feet"),
  7901. default: true
  7902. },
  7903. {
  7904. name: "Macro",
  7905. height: math.unit(56, "feet")
  7906. },
  7907. {
  7908. name: "Megamacro",
  7909. height: math.unit(1.9, "miles")
  7910. },
  7911. ]
  7912. ))
  7913. characterMakers.push(() => makeCharacter(
  7914. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7915. {
  7916. front: {
  7917. height: math.unit(9 + 6 / 12, "feet"),
  7918. weight: math.unit(523, "lbs"),
  7919. name: "Side",
  7920. image: {
  7921. source: "./media/characters/aurora/side.svg"
  7922. }
  7923. }
  7924. },
  7925. [
  7926. {
  7927. name: "Normal",
  7928. height: math.unit(9 + 6 / 12, "feet")
  7929. },
  7930. {
  7931. name: "Macro",
  7932. height: math.unit(96, "feet"),
  7933. default: true
  7934. },
  7935. {
  7936. name: "Macro+",
  7937. height: math.unit(243, "feet")
  7938. },
  7939. ]
  7940. ))
  7941. characterMakers.push(() => makeCharacter(
  7942. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7943. {
  7944. front: {
  7945. height: math.unit(194, "cm"),
  7946. weight: math.unit(90, "kg"),
  7947. name: "Front",
  7948. image: {
  7949. source: "./media/characters/ranek/front.svg",
  7950. extra: 1862/1791,
  7951. bottom: 80/1942
  7952. }
  7953. },
  7954. back: {
  7955. height: math.unit(194, "cm"),
  7956. weight: math.unit(90, "kg"),
  7957. name: "Back",
  7958. image: {
  7959. source: "./media/characters/ranek/back.svg",
  7960. extra: 1853/1787,
  7961. bottom: 74/1927
  7962. }
  7963. },
  7964. feral: {
  7965. height: math.unit(30, "cm"),
  7966. weight: math.unit(1.6, "lbs"),
  7967. name: "Feral",
  7968. image: {
  7969. source: "./media/characters/ranek/feral.svg",
  7970. extra: 990/631,
  7971. bottom: 29/1019
  7972. }
  7973. },
  7974. },
  7975. [
  7976. {
  7977. name: "Normal",
  7978. height: math.unit(194, "cm"),
  7979. default: true
  7980. },
  7981. {
  7982. name: "Macro",
  7983. height: math.unit(100, "meters")
  7984. },
  7985. ]
  7986. ))
  7987. characterMakers.push(() => makeCharacter(
  7988. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7989. {
  7990. front: {
  7991. height: math.unit(5 + 6 / 12, "feet"),
  7992. weight: math.unit(153, "lbs"),
  7993. name: "Front",
  7994. image: {
  7995. source: "./media/characters/andrew-cooper/front.svg"
  7996. }
  7997. },
  7998. },
  7999. [
  8000. {
  8001. name: "Nano",
  8002. height: math.unit(1, "mm")
  8003. },
  8004. {
  8005. name: "Micro",
  8006. height: math.unit(2, "inches")
  8007. },
  8008. {
  8009. name: "Normal",
  8010. height: math.unit(5 + 6 / 12, "feet"),
  8011. default: true
  8012. }
  8013. ]
  8014. ))
  8015. characterMakers.push(() => makeCharacter(
  8016. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8017. {
  8018. front: {
  8019. height: math.unit(6, "feet"),
  8020. weight: math.unit(180, "lbs"),
  8021. name: "Front",
  8022. image: {
  8023. source: "./media/characters/akane-sato/front.svg",
  8024. extra: 1219 / 1140
  8025. }
  8026. },
  8027. back: {
  8028. height: math.unit(6, "feet"),
  8029. weight: math.unit(180, "lbs"),
  8030. name: "Back",
  8031. image: {
  8032. source: "./media/characters/akane-sato/back.svg",
  8033. extra: 1219 / 1170
  8034. }
  8035. },
  8036. },
  8037. [
  8038. {
  8039. name: "Normal",
  8040. height: math.unit(2.5, "meters")
  8041. },
  8042. {
  8043. name: "Macro",
  8044. height: math.unit(250, "meters"),
  8045. default: true
  8046. },
  8047. {
  8048. name: "Megamacro",
  8049. height: math.unit(25, "km")
  8050. },
  8051. ]
  8052. ))
  8053. characterMakers.push(() => makeCharacter(
  8054. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8055. {
  8056. front: {
  8057. height: math.unit(6, "feet"),
  8058. weight: math.unit(65, "kg"),
  8059. name: "Front",
  8060. image: {
  8061. source: "./media/characters/rook/front.svg",
  8062. extra: 960 / 950
  8063. }
  8064. }
  8065. },
  8066. [
  8067. {
  8068. name: "Normal",
  8069. height: math.unit(8.8, "feet")
  8070. },
  8071. {
  8072. name: "Macro",
  8073. height: math.unit(88, "feet"),
  8074. default: true
  8075. },
  8076. {
  8077. name: "Megamacro",
  8078. height: math.unit(8, "miles")
  8079. },
  8080. ]
  8081. ))
  8082. characterMakers.push(() => makeCharacter(
  8083. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8084. {
  8085. front: {
  8086. height: math.unit(12 + 2 / 12, "feet"),
  8087. weight: math.unit(808, "lbs"),
  8088. name: "Front",
  8089. image: {
  8090. source: "./media/characters/prodigy/front.svg"
  8091. }
  8092. }
  8093. },
  8094. [
  8095. {
  8096. name: "Normal",
  8097. height: math.unit(12 + 2 / 12, "feet"),
  8098. default: true
  8099. },
  8100. {
  8101. name: "Macro",
  8102. height: math.unit(143, "feet")
  8103. },
  8104. {
  8105. name: "Macro+",
  8106. height: math.unit(400, "feet")
  8107. },
  8108. ]
  8109. ))
  8110. characterMakers.push(() => makeCharacter(
  8111. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8112. {
  8113. front: {
  8114. height: math.unit(6, "feet"),
  8115. weight: math.unit(225, "lbs"),
  8116. name: "Front",
  8117. image: {
  8118. source: "./media/characters/daniel/front.svg"
  8119. }
  8120. },
  8121. leaning: {
  8122. height: math.unit(6, "feet"),
  8123. weight: math.unit(225, "lbs"),
  8124. name: "Leaning",
  8125. image: {
  8126. source: "./media/characters/daniel/leaning.svg"
  8127. }
  8128. },
  8129. },
  8130. [
  8131. {
  8132. name: "Macro",
  8133. height: math.unit(1000, "feet"),
  8134. default: true
  8135. },
  8136. ]
  8137. ))
  8138. characterMakers.push(() => makeCharacter(
  8139. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8140. {
  8141. front: {
  8142. height: math.unit(6, "feet"),
  8143. weight: math.unit(88, "lbs"),
  8144. name: "Front",
  8145. image: {
  8146. source: "./media/characters/chiros/front.svg",
  8147. extra: 306 / 226
  8148. }
  8149. },
  8150. side: {
  8151. height: math.unit(6, "feet"),
  8152. weight: math.unit(88, "lbs"),
  8153. name: "Side",
  8154. image: {
  8155. source: "./media/characters/chiros/side.svg",
  8156. extra: 306 / 226
  8157. }
  8158. },
  8159. },
  8160. [
  8161. {
  8162. name: "Normal",
  8163. height: math.unit(6, "cm"),
  8164. default: true
  8165. },
  8166. ]
  8167. ))
  8168. characterMakers.push(() => makeCharacter(
  8169. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8170. {
  8171. front: {
  8172. height: math.unit(6, "feet"),
  8173. weight: math.unit(100, "lbs"),
  8174. name: "Front",
  8175. image: {
  8176. source: "./media/characters/selka/front.svg",
  8177. extra: 947 / 887
  8178. }
  8179. }
  8180. },
  8181. [
  8182. {
  8183. name: "Normal",
  8184. height: math.unit(5, "cm"),
  8185. default: true
  8186. },
  8187. ]
  8188. ))
  8189. characterMakers.push(() => makeCharacter(
  8190. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8191. {
  8192. front: {
  8193. height: math.unit(8 + 3 / 12, "feet"),
  8194. weight: math.unit(424, "lbs"),
  8195. name: "Front",
  8196. image: {
  8197. source: "./media/characters/verin/front.svg",
  8198. extra: 1845 / 1550
  8199. }
  8200. },
  8201. frontArmored: {
  8202. height: math.unit(8 + 3 / 12, "feet"),
  8203. weight: math.unit(424, "lbs"),
  8204. name: "Front (Armored)",
  8205. image: {
  8206. source: "./media/characters/verin/front-armor.svg",
  8207. extra: 1845 / 1550,
  8208. bottom: 0.01
  8209. }
  8210. },
  8211. back: {
  8212. height: math.unit(8 + 3 / 12, "feet"),
  8213. weight: math.unit(424, "lbs"),
  8214. name: "Back",
  8215. image: {
  8216. source: "./media/characters/verin/back.svg",
  8217. bottom: 0.1,
  8218. extra: 1
  8219. }
  8220. },
  8221. foot: {
  8222. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8223. name: "Foot",
  8224. image: {
  8225. source: "./media/characters/verin/foot.svg"
  8226. }
  8227. },
  8228. },
  8229. [
  8230. {
  8231. name: "Normal",
  8232. height: math.unit(8 + 3 / 12, "feet")
  8233. },
  8234. {
  8235. name: "Minimacro",
  8236. height: math.unit(21, "feet"),
  8237. default: true
  8238. },
  8239. {
  8240. name: "Macro",
  8241. height: math.unit(626, "feet")
  8242. },
  8243. ]
  8244. ))
  8245. characterMakers.push(() => makeCharacter(
  8246. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8247. {
  8248. front: {
  8249. height: math.unit(2.718, "meters"),
  8250. weight: math.unit(150, "lbs"),
  8251. name: "Front",
  8252. image: {
  8253. source: "./media/characters/sovrim-terraquian/front.svg",
  8254. extra: 1752/1689,
  8255. bottom: 36/1788
  8256. }
  8257. },
  8258. back: {
  8259. height: math.unit(2.718, "meters"),
  8260. weight: math.unit(150, "lbs"),
  8261. name: "Back",
  8262. image: {
  8263. source: "./media/characters/sovrim-terraquian/back.svg",
  8264. extra: 1698/1657,
  8265. bottom: 58/1756
  8266. }
  8267. },
  8268. tongue: {
  8269. height: math.unit(2.865, "feet"),
  8270. name: "Tongue",
  8271. image: {
  8272. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8273. }
  8274. },
  8275. hand: {
  8276. height: math.unit(1.61, "feet"),
  8277. name: "Hand",
  8278. image: {
  8279. source: "./media/characters/sovrim-terraquian/hand.svg"
  8280. }
  8281. },
  8282. foot: {
  8283. height: math.unit(1.05, "feet"),
  8284. name: "Foot",
  8285. image: {
  8286. source: "./media/characters/sovrim-terraquian/foot.svg"
  8287. }
  8288. },
  8289. footAlt: {
  8290. height: math.unit(0.88, "feet"),
  8291. name: "Foot (Alt)",
  8292. image: {
  8293. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8294. }
  8295. },
  8296. },
  8297. [
  8298. {
  8299. name: "Micro",
  8300. height: math.unit(2, "inches")
  8301. },
  8302. {
  8303. name: "Small",
  8304. height: math.unit(1, "meter")
  8305. },
  8306. {
  8307. name: "Normal",
  8308. height: math.unit(Math.E, "meters"),
  8309. default: true
  8310. },
  8311. {
  8312. name: "Macro",
  8313. height: math.unit(20, "meters")
  8314. },
  8315. {
  8316. name: "Macro+",
  8317. height: math.unit(400, "meters")
  8318. },
  8319. ]
  8320. ))
  8321. characterMakers.push(() => makeCharacter(
  8322. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8323. {
  8324. front: {
  8325. height: math.unit(7, "feet"),
  8326. weight: math.unit(489, "lbs"),
  8327. name: "Front",
  8328. image: {
  8329. source: "./media/characters/reece-silvermane/front.svg",
  8330. bottom: 0.02,
  8331. extra: 1
  8332. }
  8333. },
  8334. },
  8335. [
  8336. {
  8337. name: "Macro",
  8338. height: math.unit(1.5, "miles"),
  8339. default: true
  8340. },
  8341. ]
  8342. ))
  8343. characterMakers.push(() => makeCharacter(
  8344. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8345. {
  8346. front: {
  8347. height: math.unit(6, "feet"),
  8348. weight: math.unit(78, "kg"),
  8349. name: "Front",
  8350. image: {
  8351. source: "./media/characters/kane/front.svg",
  8352. extra: 978 / 899
  8353. }
  8354. },
  8355. },
  8356. [
  8357. {
  8358. name: "Normal",
  8359. height: math.unit(2.1, "m"),
  8360. },
  8361. {
  8362. name: "Macro",
  8363. height: math.unit(1, "km"),
  8364. default: true
  8365. },
  8366. ]
  8367. ))
  8368. characterMakers.push(() => makeCharacter(
  8369. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8370. {
  8371. front: {
  8372. height: math.unit(6, "feet"),
  8373. weight: math.unit(200, "kg"),
  8374. name: "Front",
  8375. image: {
  8376. source: "./media/characters/tegon/front.svg",
  8377. bottom: 0.01,
  8378. extra: 1
  8379. }
  8380. },
  8381. },
  8382. [
  8383. {
  8384. name: "Micro",
  8385. height: math.unit(1, "inch")
  8386. },
  8387. {
  8388. name: "Normal",
  8389. height: math.unit(6 + 3 / 12, "feet"),
  8390. default: true
  8391. },
  8392. {
  8393. name: "Macro",
  8394. height: math.unit(300, "feet")
  8395. },
  8396. {
  8397. name: "Megamacro",
  8398. height: math.unit(69, "miles")
  8399. },
  8400. ]
  8401. ))
  8402. characterMakers.push(() => makeCharacter(
  8403. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8404. {
  8405. side: {
  8406. height: math.unit(6, "feet"),
  8407. weight: math.unit(2304, "lbs"),
  8408. name: "Side",
  8409. image: {
  8410. source: "./media/characters/arcturax/side.svg",
  8411. extra: 790 / 376,
  8412. bottom: 0.01
  8413. }
  8414. },
  8415. },
  8416. [
  8417. {
  8418. name: "Micro",
  8419. height: math.unit(2, "inch")
  8420. },
  8421. {
  8422. name: "Normal",
  8423. height: math.unit(6, "feet")
  8424. },
  8425. {
  8426. name: "Macro",
  8427. height: math.unit(39, "feet"),
  8428. default: true
  8429. },
  8430. {
  8431. name: "Megamacro",
  8432. height: math.unit(7, "miles")
  8433. },
  8434. ]
  8435. ))
  8436. characterMakers.push(() => makeCharacter(
  8437. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8438. {
  8439. front: {
  8440. height: math.unit(6, "feet"),
  8441. weight: math.unit(50, "lbs"),
  8442. name: "Front",
  8443. image: {
  8444. source: "./media/characters/sentri/front.svg",
  8445. extra: 1750 / 1570,
  8446. bottom: 0.025
  8447. }
  8448. },
  8449. frontAlt: {
  8450. height: math.unit(6, "feet"),
  8451. weight: math.unit(50, "lbs"),
  8452. name: "Front (Alt)",
  8453. image: {
  8454. source: "./media/characters/sentri/front-alt.svg",
  8455. extra: 1750 / 1570,
  8456. bottom: 0.025
  8457. }
  8458. },
  8459. },
  8460. [
  8461. {
  8462. name: "Normal",
  8463. height: math.unit(15, "feet"),
  8464. default: true
  8465. },
  8466. {
  8467. name: "Macro",
  8468. height: math.unit(2500, "feet")
  8469. }
  8470. ]
  8471. ))
  8472. characterMakers.push(() => makeCharacter(
  8473. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8474. {
  8475. front: {
  8476. height: math.unit(5 + 8 / 12, "feet"),
  8477. weight: math.unit(130, "lbs"),
  8478. name: "Front",
  8479. image: {
  8480. source: "./media/characters/corvin/front.svg",
  8481. extra: 1803 / 1629
  8482. }
  8483. },
  8484. frontShirt: {
  8485. height: math.unit(5 + 8 / 12, "feet"),
  8486. weight: math.unit(130, "lbs"),
  8487. name: "Front (Shirt)",
  8488. image: {
  8489. source: "./media/characters/corvin/front-shirt.svg",
  8490. extra: 1803 / 1629
  8491. }
  8492. },
  8493. frontPoncho: {
  8494. height: math.unit(5 + 8 / 12, "feet"),
  8495. weight: math.unit(130, "lbs"),
  8496. name: "Front (Poncho)",
  8497. image: {
  8498. source: "./media/characters/corvin/front-poncho.svg",
  8499. extra: 1803 / 1629
  8500. }
  8501. },
  8502. side: {
  8503. height: math.unit(5 + 8 / 12, "feet"),
  8504. weight: math.unit(130, "lbs"),
  8505. name: "Side",
  8506. image: {
  8507. source: "./media/characters/corvin/side.svg",
  8508. extra: 1012 / 945
  8509. }
  8510. },
  8511. back: {
  8512. height: math.unit(5 + 8 / 12, "feet"),
  8513. weight: math.unit(130, "lbs"),
  8514. name: "Back",
  8515. image: {
  8516. source: "./media/characters/corvin/back.svg",
  8517. extra: 1803 / 1629
  8518. }
  8519. },
  8520. },
  8521. [
  8522. {
  8523. name: "Micro",
  8524. height: math.unit(3, "inches")
  8525. },
  8526. {
  8527. name: "Normal",
  8528. height: math.unit(5 + 8 / 12, "feet")
  8529. },
  8530. {
  8531. name: "Macro",
  8532. height: math.unit(300, "feet"),
  8533. default: true
  8534. },
  8535. {
  8536. name: "Megamacro",
  8537. height: math.unit(500, "miles")
  8538. }
  8539. ]
  8540. ))
  8541. characterMakers.push(() => makeCharacter(
  8542. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8543. {
  8544. front: {
  8545. height: math.unit(6, "feet"),
  8546. weight: math.unit(135, "lbs"),
  8547. name: "Front",
  8548. image: {
  8549. source: "./media/characters/q/front.svg",
  8550. extra: 854 / 752,
  8551. bottom: 0.005
  8552. }
  8553. },
  8554. back: {
  8555. height: math.unit(6, "feet"),
  8556. weight: math.unit(130, "lbs"),
  8557. name: "Back",
  8558. image: {
  8559. source: "./media/characters/q/back.svg",
  8560. extra: 854 / 752
  8561. }
  8562. },
  8563. },
  8564. [
  8565. {
  8566. name: "Macro",
  8567. height: math.unit(90, "feet"),
  8568. default: true
  8569. },
  8570. {
  8571. name: "Extra Macro",
  8572. height: math.unit(300, "feet"),
  8573. },
  8574. {
  8575. name: "BIG WALF",
  8576. height: math.unit(750, "feet"),
  8577. },
  8578. ]
  8579. ))
  8580. characterMakers.push(() => makeCharacter(
  8581. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8582. {
  8583. front: {
  8584. height: math.unit(6, "feet"),
  8585. weight: math.unit(150, "lbs"),
  8586. name: "Front",
  8587. image: {
  8588. source: "./media/characters/carley/front.svg",
  8589. extra: 3927 / 3540,
  8590. bottom: 29.2 / 735
  8591. }
  8592. }
  8593. },
  8594. [
  8595. {
  8596. name: "Normal",
  8597. height: math.unit(6 + 3 / 12, "feet")
  8598. },
  8599. {
  8600. name: "Macro",
  8601. height: math.unit(185, "feet"),
  8602. default: true
  8603. },
  8604. {
  8605. name: "Megamacro",
  8606. height: math.unit(8, "miles"),
  8607. },
  8608. ]
  8609. ))
  8610. characterMakers.push(() => makeCharacter(
  8611. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8612. {
  8613. front: {
  8614. height: math.unit(3, "feet"),
  8615. weight: math.unit(28, "lbs"),
  8616. name: "Front",
  8617. image: {
  8618. source: "./media/characters/citrine/front.svg"
  8619. }
  8620. }
  8621. },
  8622. [
  8623. {
  8624. name: "Normal",
  8625. height: math.unit(3, "feet"),
  8626. default: true
  8627. }
  8628. ]
  8629. ))
  8630. characterMakers.push(() => makeCharacter(
  8631. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8632. {
  8633. front: {
  8634. height: math.unit(14, "feet"),
  8635. weight: math.unit(1450, "kg"),
  8636. capacity: math.unit(15, "people"),
  8637. name: "Front",
  8638. image: {
  8639. source: "./media/characters/aura-starwind/front.svg",
  8640. extra: 1440/1327,
  8641. bottom: 11/1451
  8642. }
  8643. },
  8644. side: {
  8645. height: math.unit(14, "feet"),
  8646. weight: math.unit(1450, "kg"),
  8647. capacity: math.unit(15, "people"),
  8648. name: "Side",
  8649. image: {
  8650. source: "./media/characters/aura-starwind/side.svg",
  8651. extra: 1654 / 1497
  8652. }
  8653. },
  8654. taur: {
  8655. height: math.unit(18, "feet"),
  8656. weight: math.unit(5500, "kg"),
  8657. capacity: math.unit(50, "people"),
  8658. name: "Taur",
  8659. image: {
  8660. source: "./media/characters/aura-starwind/taur.svg",
  8661. extra: 1760 / 1650
  8662. }
  8663. },
  8664. feral: {
  8665. height: math.unit(46, "feet"),
  8666. weight: math.unit(25000, "kg"),
  8667. capacity: math.unit(120, "people"),
  8668. name: "Feral",
  8669. image: {
  8670. source: "./media/characters/aura-starwind/feral.svg"
  8671. }
  8672. },
  8673. },
  8674. [
  8675. {
  8676. name: "Normal",
  8677. height: math.unit(14, "feet"),
  8678. default: true
  8679. },
  8680. {
  8681. name: "Macro",
  8682. height: math.unit(50, "meters")
  8683. },
  8684. {
  8685. name: "Megamacro",
  8686. height: math.unit(5000, "meters")
  8687. },
  8688. {
  8689. name: "Gigamacro",
  8690. height: math.unit(100000, "kilometers")
  8691. },
  8692. ]
  8693. ))
  8694. characterMakers.push(() => makeCharacter(
  8695. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8696. {
  8697. front: {
  8698. height: math.unit(2 + 7 / 12, "feet"),
  8699. weight: math.unit(32, "lbs"),
  8700. name: "Front",
  8701. image: {
  8702. source: "./media/characters/rivet/front.svg",
  8703. extra: 1716 / 1658,
  8704. bottom: 0.03
  8705. }
  8706. },
  8707. foot: {
  8708. height: math.unit(0.551, "feet"),
  8709. name: "Rivet's Foot",
  8710. image: {
  8711. source: "./media/characters/rivet/foot.svg"
  8712. },
  8713. rename: true
  8714. }
  8715. },
  8716. [
  8717. {
  8718. name: "Micro",
  8719. height: math.unit(1.5, "inches"),
  8720. },
  8721. {
  8722. name: "Normal",
  8723. height: math.unit(2 + 7 / 12, "feet"),
  8724. default: true
  8725. },
  8726. {
  8727. name: "Macro",
  8728. height: math.unit(85, "feet")
  8729. },
  8730. {
  8731. name: "Megamacro",
  8732. height: math.unit(2.2, "km")
  8733. }
  8734. ]
  8735. ))
  8736. characterMakers.push(() => makeCharacter(
  8737. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8738. {
  8739. front: {
  8740. height: math.unit(5 + 9 / 12, "feet"),
  8741. weight: math.unit(150, "lbs"),
  8742. name: "Front",
  8743. image: {
  8744. source: "./media/characters/coffee/front.svg",
  8745. extra: 3666 / 3032,
  8746. bottom: 0.04
  8747. }
  8748. },
  8749. foot: {
  8750. height: math.unit(1.29, "feet"),
  8751. name: "Foot",
  8752. image: {
  8753. source: "./media/characters/coffee/foot.svg"
  8754. }
  8755. },
  8756. },
  8757. [
  8758. {
  8759. name: "Micro",
  8760. height: math.unit(2, "inches"),
  8761. },
  8762. {
  8763. name: "Normal",
  8764. height: math.unit(5 + 9 / 12, "feet"),
  8765. default: true
  8766. },
  8767. {
  8768. name: "Macro",
  8769. height: math.unit(800, "feet")
  8770. },
  8771. {
  8772. name: "Megamacro",
  8773. height: math.unit(25, "miles")
  8774. }
  8775. ]
  8776. ))
  8777. characterMakers.push(() => makeCharacter(
  8778. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8779. {
  8780. front: {
  8781. height: math.unit(6, "feet"),
  8782. weight: math.unit(200, "lbs"),
  8783. name: "Front",
  8784. image: {
  8785. source: "./media/characters/chari-gal/front.svg",
  8786. extra: 1568 / 1385,
  8787. bottom: 0.047
  8788. }
  8789. },
  8790. gigantamax: {
  8791. height: math.unit(6 * 16, "feet"),
  8792. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8793. name: "Gigantamax",
  8794. image: {
  8795. source: "./media/characters/chari-gal/gigantamax.svg",
  8796. extra: 1124 / 888,
  8797. bottom: 0.03
  8798. }
  8799. },
  8800. },
  8801. [
  8802. {
  8803. name: "Normal",
  8804. height: math.unit(5 + 7 / 12, "feet")
  8805. },
  8806. {
  8807. name: "Macro",
  8808. height: math.unit(200, "feet"),
  8809. default: true
  8810. }
  8811. ]
  8812. ))
  8813. characterMakers.push(() => makeCharacter(
  8814. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8815. {
  8816. front: {
  8817. height: math.unit(6, "feet"),
  8818. weight: math.unit(150, "lbs"),
  8819. name: "Front",
  8820. image: {
  8821. source: "./media/characters/nova/front.svg",
  8822. extra: 5000 / 4722,
  8823. bottom: 0.02
  8824. }
  8825. }
  8826. },
  8827. [
  8828. {
  8829. name: "Micro-",
  8830. height: math.unit(0.8, "inches")
  8831. },
  8832. {
  8833. name: "Micro",
  8834. height: math.unit(2, "inches"),
  8835. default: true
  8836. },
  8837. ]
  8838. ))
  8839. characterMakers.push(() => makeCharacter(
  8840. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8841. {
  8842. front: {
  8843. height: math.unit(3 + 1 / 12, "feet"),
  8844. weight: math.unit(21.7, "lbs"),
  8845. name: "Front",
  8846. image: {
  8847. source: "./media/characters/argent/front.svg",
  8848. extra: 1471 / 1331,
  8849. bottom: 100.8 / 1575.5
  8850. }
  8851. }
  8852. },
  8853. [
  8854. {
  8855. name: "Micro",
  8856. height: math.unit(2, "inches")
  8857. },
  8858. {
  8859. name: "Normal",
  8860. height: math.unit(3 + 1 / 12, "feet"),
  8861. default: true
  8862. },
  8863. {
  8864. name: "Macro",
  8865. height: math.unit(120, "feet")
  8866. },
  8867. ]
  8868. ))
  8869. characterMakers.push(() => makeCharacter(
  8870. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8871. {
  8872. lamp: {
  8873. height: math.unit(7 * 1559 / 989, "feet"),
  8874. name: "Magic Lamp",
  8875. image: {
  8876. source: "./media/characters/mira-al-cul/lamp.svg",
  8877. extra: 1617 / 1559
  8878. }
  8879. },
  8880. front: {
  8881. height: math.unit(7, "feet"),
  8882. name: "Front",
  8883. image: {
  8884. source: "./media/characters/mira-al-cul/front.svg",
  8885. extra: 1044 / 990
  8886. }
  8887. },
  8888. },
  8889. [
  8890. {
  8891. name: "Heavily Restricted",
  8892. height: math.unit(7 * 1559 / 989, "feet")
  8893. },
  8894. {
  8895. name: "Freshly Freed",
  8896. height: math.unit(50 * 1559 / 989, "feet")
  8897. },
  8898. {
  8899. name: "World Encompassing",
  8900. height: math.unit(10000 * 1559 / 989, "miles")
  8901. },
  8902. {
  8903. name: "Galactic",
  8904. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8905. },
  8906. {
  8907. name: "Palmed Universe",
  8908. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8909. default: true
  8910. },
  8911. {
  8912. name: "Multiversal Matriarch",
  8913. height: math.unit(8.87e10, "yottameters")
  8914. },
  8915. {
  8916. name: "Void Mother",
  8917. height: math.unit(3.14e110, "yottaparsecs")
  8918. },
  8919. {
  8920. name: "Toying with Transcendence",
  8921. height: math.unit(1e307, "meters")
  8922. },
  8923. ]
  8924. ))
  8925. characterMakers.push(() => makeCharacter(
  8926. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8927. {
  8928. front: {
  8929. height: math.unit(17 + 1 / 12, "feet"),
  8930. weight: math.unit(476.2 * 5, "lbs"),
  8931. name: "Front",
  8932. image: {
  8933. source: "./media/characters/kuro-shi-uchū/front.svg",
  8934. extra: 2329 / 1835,
  8935. bottom: 0.02
  8936. }
  8937. },
  8938. },
  8939. [
  8940. {
  8941. name: "Micro",
  8942. height: math.unit(2, "inches")
  8943. },
  8944. {
  8945. name: "Normal",
  8946. height: math.unit(12, "meters")
  8947. },
  8948. {
  8949. name: "Planetary",
  8950. height: math.unit(0.00929, "AU"),
  8951. default: true
  8952. },
  8953. {
  8954. name: "Universal",
  8955. height: math.unit(20, "gigaparsecs")
  8956. },
  8957. ]
  8958. ))
  8959. characterMakers.push(() => makeCharacter(
  8960. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8961. {
  8962. front: {
  8963. height: math.unit(5 + 2 / 12, "feet"),
  8964. weight: math.unit(120, "lbs"),
  8965. name: "Front",
  8966. image: {
  8967. source: "./media/characters/katherine/front.svg",
  8968. extra: 2075 / 1969
  8969. }
  8970. },
  8971. dress: {
  8972. height: math.unit(5 + 2 / 12, "feet"),
  8973. weight: math.unit(120, "lbs"),
  8974. name: "Dress",
  8975. image: {
  8976. source: "./media/characters/katherine/dress.svg",
  8977. extra: 2258 / 2064
  8978. }
  8979. },
  8980. },
  8981. [
  8982. {
  8983. name: "Micro",
  8984. height: math.unit(1, "inches"),
  8985. default: true
  8986. },
  8987. {
  8988. name: "Normal",
  8989. height: math.unit(5 + 2 / 12, "feet")
  8990. },
  8991. {
  8992. name: "Macro",
  8993. height: math.unit(100, "meters")
  8994. },
  8995. {
  8996. name: "Megamacro",
  8997. height: math.unit(80, "miles")
  8998. },
  8999. ]
  9000. ))
  9001. characterMakers.push(() => makeCharacter(
  9002. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9003. {
  9004. front: {
  9005. height: math.unit(7 + 8 / 12, "feet"),
  9006. weight: math.unit(250, "lbs"),
  9007. name: "Front",
  9008. image: {
  9009. source: "./media/characters/yevis/front.svg",
  9010. extra: 1938 / 1755
  9011. }
  9012. }
  9013. },
  9014. [
  9015. {
  9016. name: "Mortal",
  9017. height: math.unit(7 + 8 / 12, "feet")
  9018. },
  9019. {
  9020. name: "Battle",
  9021. height: math.unit(25 + 11 / 12, "feet")
  9022. },
  9023. {
  9024. name: "Wrath",
  9025. height: math.unit(1654 + 11 / 12, "feet")
  9026. },
  9027. {
  9028. name: "Planet Destroyer",
  9029. height: math.unit(12000, "miles")
  9030. },
  9031. {
  9032. name: "Galaxy Conqueror",
  9033. height: math.unit(1.45, "zettameters"),
  9034. default: true
  9035. },
  9036. {
  9037. name: "Universal War",
  9038. height: math.unit(184, "gigaparsecs")
  9039. },
  9040. {
  9041. name: "Eternity War",
  9042. height: math.unit(1.98e55, "yottaparsecs")
  9043. },
  9044. ]
  9045. ))
  9046. characterMakers.push(() => makeCharacter(
  9047. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9048. {
  9049. front: {
  9050. height: math.unit(5 + 8 / 12, "feet"),
  9051. weight: math.unit(63, "kg"),
  9052. name: "Front",
  9053. image: {
  9054. source: "./media/characters/xavier/front.svg",
  9055. extra: 944 / 883
  9056. }
  9057. },
  9058. frontStretch: {
  9059. height: math.unit(5 + 8 / 12, "feet"),
  9060. weight: math.unit(63, "kg"),
  9061. name: "Stretching",
  9062. image: {
  9063. source: "./media/characters/xavier/front-stretch.svg",
  9064. extra: 962 / 820
  9065. }
  9066. },
  9067. },
  9068. [
  9069. {
  9070. name: "Normal",
  9071. height: math.unit(5 + 8 / 12, "feet")
  9072. },
  9073. {
  9074. name: "Macro",
  9075. height: math.unit(100, "meters"),
  9076. default: true
  9077. },
  9078. {
  9079. name: "McLargeHuge",
  9080. height: math.unit(10, "miles")
  9081. },
  9082. ]
  9083. ))
  9084. characterMakers.push(() => makeCharacter(
  9085. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9086. {
  9087. front: {
  9088. height: math.unit(5 + 5 / 12, "feet"),
  9089. weight: math.unit(150, "lb"),
  9090. name: "Front",
  9091. image: {
  9092. source: "./media/characters/joshii/front.svg",
  9093. extra: 765 / 653,
  9094. bottom: 51 / 816
  9095. }
  9096. },
  9097. foot: {
  9098. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9099. name: "Foot",
  9100. image: {
  9101. source: "./media/characters/joshii/foot.svg"
  9102. }
  9103. },
  9104. },
  9105. [
  9106. {
  9107. name: "Micro",
  9108. height: math.unit(2, "inches"),
  9109. default: true
  9110. },
  9111. {
  9112. name: "Normal",
  9113. height: math.unit(5 + 5 / 12, "feet")
  9114. },
  9115. {
  9116. name: "Macro",
  9117. height: math.unit(785, "feet")
  9118. },
  9119. {
  9120. name: "Megamacro",
  9121. height: math.unit(24.5, "miles")
  9122. },
  9123. ]
  9124. ))
  9125. characterMakers.push(() => makeCharacter(
  9126. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9127. {
  9128. front: {
  9129. height: math.unit(6, "feet"),
  9130. weight: math.unit(150, "lb"),
  9131. name: "Front",
  9132. image: {
  9133. source: "./media/characters/goddess-elizabeth/front.svg",
  9134. extra: 1800 / 1525,
  9135. bottom: 0.005
  9136. }
  9137. },
  9138. foot: {
  9139. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9140. name: "Foot",
  9141. image: {
  9142. source: "./media/characters/goddess-elizabeth/foot.svg"
  9143. }
  9144. },
  9145. mouth: {
  9146. height: math.unit(6, "feet"),
  9147. name: "Mouth",
  9148. image: {
  9149. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9150. }
  9151. },
  9152. },
  9153. [
  9154. {
  9155. name: "Micro",
  9156. height: math.unit(12, "feet")
  9157. },
  9158. {
  9159. name: "Normal",
  9160. height: math.unit(80, "miles"),
  9161. default: true
  9162. },
  9163. {
  9164. name: "Macro",
  9165. height: math.unit(15000, "parsecs")
  9166. },
  9167. ]
  9168. ))
  9169. characterMakers.push(() => makeCharacter(
  9170. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9171. {
  9172. front: {
  9173. height: math.unit(5 + 9 / 12, "feet"),
  9174. weight: math.unit(144, "lb"),
  9175. name: "Front",
  9176. image: {
  9177. source: "./media/characters/kara/front.svg"
  9178. }
  9179. },
  9180. feet: {
  9181. height: math.unit(6 / 6.765, "feet"),
  9182. name: "Kara's Feet",
  9183. rename: true,
  9184. image: {
  9185. source: "./media/characters/kara/feet.svg"
  9186. }
  9187. },
  9188. },
  9189. [
  9190. {
  9191. name: "Normal",
  9192. height: math.unit(5 + 9 / 12, "feet")
  9193. },
  9194. {
  9195. name: "Macro",
  9196. height: math.unit(174, "feet"),
  9197. default: true
  9198. },
  9199. ]
  9200. ))
  9201. characterMakers.push(() => makeCharacter(
  9202. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9203. {
  9204. front: {
  9205. height: math.unit(18, "feet"),
  9206. weight: math.unit(4050, "lb"),
  9207. name: "Front",
  9208. image: {
  9209. source: "./media/characters/tyrone/front.svg",
  9210. extra: 2405 / 2270,
  9211. bottom: 182 / 2587
  9212. }
  9213. },
  9214. },
  9215. [
  9216. {
  9217. name: "Normal",
  9218. height: math.unit(18, "feet"),
  9219. default: true
  9220. },
  9221. {
  9222. name: "Macro",
  9223. height: math.unit(300, "feet")
  9224. },
  9225. {
  9226. name: "Megamacro",
  9227. height: math.unit(15, "km")
  9228. },
  9229. {
  9230. name: "Gigamacro",
  9231. height: math.unit(500, "km")
  9232. },
  9233. {
  9234. name: "Teramacro",
  9235. height: math.unit(0.5, "gigameters")
  9236. },
  9237. {
  9238. name: "Omnimacro",
  9239. height: math.unit(1e252, "yottauniverse")
  9240. },
  9241. ]
  9242. ))
  9243. characterMakers.push(() => makeCharacter(
  9244. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9245. {
  9246. front: {
  9247. height: math.unit(7 + 8 / 12, "feet"),
  9248. weight: math.unit(120, "lb"),
  9249. name: "Front",
  9250. image: {
  9251. source: "./media/characters/danny/front.svg",
  9252. extra: 1490 / 1350
  9253. }
  9254. },
  9255. back: {
  9256. height: math.unit(7 + 8 / 12, "feet"),
  9257. weight: math.unit(120, "lb"),
  9258. name: "Back",
  9259. image: {
  9260. source: "./media/characters/danny/back.svg",
  9261. extra: 1490 / 1350
  9262. }
  9263. },
  9264. },
  9265. [
  9266. {
  9267. name: "Normal",
  9268. height: math.unit(7 + 8 / 12, "feet"),
  9269. default: true
  9270. },
  9271. ]
  9272. ))
  9273. characterMakers.push(() => makeCharacter(
  9274. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9275. {
  9276. front: {
  9277. height: math.unit(3.5, "inches"),
  9278. weight: math.unit(19, "grams"),
  9279. name: "Front",
  9280. image: {
  9281. source: "./media/characters/mallow/front.svg",
  9282. extra: 471 / 431
  9283. }
  9284. },
  9285. back: {
  9286. height: math.unit(3.5, "inches"),
  9287. weight: math.unit(19, "grams"),
  9288. name: "Back",
  9289. image: {
  9290. source: "./media/characters/mallow/back.svg",
  9291. extra: 471 / 431
  9292. }
  9293. },
  9294. },
  9295. [
  9296. {
  9297. name: "Normal",
  9298. height: math.unit(3.5, "inches"),
  9299. default: true
  9300. },
  9301. ]
  9302. ))
  9303. characterMakers.push(() => makeCharacter(
  9304. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9305. {
  9306. front: {
  9307. height: math.unit(9, "feet"),
  9308. weight: math.unit(230, "kg"),
  9309. name: "Front",
  9310. image: {
  9311. source: "./media/characters/starry-aqua/front.svg"
  9312. }
  9313. },
  9314. back: {
  9315. height: math.unit(9, "feet"),
  9316. weight: math.unit(230, "kg"),
  9317. name: "Back",
  9318. image: {
  9319. source: "./media/characters/starry-aqua/back.svg"
  9320. }
  9321. },
  9322. hand: {
  9323. height: math.unit(9 * 0.1168, "feet"),
  9324. name: "Hand",
  9325. image: {
  9326. source: "./media/characters/starry-aqua/hand.svg"
  9327. }
  9328. },
  9329. foot: {
  9330. height: math.unit(9 * 0.18, "feet"),
  9331. name: "Foot",
  9332. image: {
  9333. source: "./media/characters/starry-aqua/foot.svg"
  9334. }
  9335. }
  9336. },
  9337. [
  9338. {
  9339. name: "Micro",
  9340. height: math.unit(3, "inches")
  9341. },
  9342. {
  9343. name: "Normal",
  9344. height: math.unit(9, "feet")
  9345. },
  9346. {
  9347. name: "Macro",
  9348. height: math.unit(300, "feet"),
  9349. default: true
  9350. },
  9351. {
  9352. name: "Megamacro",
  9353. height: math.unit(3200, "feet")
  9354. }
  9355. ]
  9356. ))
  9357. characterMakers.push(() => makeCharacter(
  9358. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9359. {
  9360. front: {
  9361. height: math.unit(15, "feet"),
  9362. weight: math.unit(5026, "lb"),
  9363. name: "Front",
  9364. image: {
  9365. source: "./media/characters/luka-towers/front.svg",
  9366. extra: 1269/1133,
  9367. bottom: 51/1320
  9368. }
  9369. },
  9370. },
  9371. [
  9372. {
  9373. name: "Normal",
  9374. height: math.unit(15, "feet"),
  9375. default: true
  9376. },
  9377. {
  9378. name: "Minimacro",
  9379. height: math.unit(25, "feet")
  9380. },
  9381. {
  9382. name: "Macro",
  9383. height: math.unit(320, "feet")
  9384. },
  9385. {
  9386. name: "Megamacro",
  9387. height: math.unit(35000, "feet")
  9388. },
  9389. {
  9390. name: "Gigamacro",
  9391. height: math.unit(4000, "miles")
  9392. },
  9393. {
  9394. name: "Teramacro",
  9395. height: math.unit(15000, "miles")
  9396. },
  9397. ]
  9398. ))
  9399. characterMakers.push(() => makeCharacter(
  9400. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9401. {
  9402. front: {
  9403. height: math.unit(6, "feet"),
  9404. weight: math.unit(150, "lb"),
  9405. name: "Front",
  9406. image: {
  9407. source: "./media/characters/natalie-nightring/front.svg",
  9408. extra: 1,
  9409. bottom: 0.06
  9410. }
  9411. },
  9412. },
  9413. [
  9414. {
  9415. name: "Uh Oh",
  9416. height: math.unit(0.1, "mm")
  9417. },
  9418. {
  9419. name: "Small",
  9420. height: math.unit(3, "inches")
  9421. },
  9422. {
  9423. name: "Human Scale",
  9424. height: math.unit(6, "feet")
  9425. },
  9426. {
  9427. name: "Librarian",
  9428. height: math.unit(50, "feet"),
  9429. default: true
  9430. },
  9431. {
  9432. name: "Immense",
  9433. height: math.unit(200, "miles")
  9434. },
  9435. ]
  9436. ))
  9437. characterMakers.push(() => makeCharacter(
  9438. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9439. {
  9440. front: {
  9441. height: math.unit(6, "feet"),
  9442. weight: math.unit(180, "lbs"),
  9443. name: "Front",
  9444. image: {
  9445. source: "./media/characters/danni-rosie/front.svg",
  9446. extra: 1260 / 1128,
  9447. bottom: 0.022
  9448. }
  9449. },
  9450. },
  9451. [
  9452. {
  9453. name: "Micro",
  9454. height: math.unit(2, "inches"),
  9455. default: true
  9456. },
  9457. ]
  9458. ))
  9459. characterMakers.push(() => makeCharacter(
  9460. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9461. {
  9462. front: {
  9463. height: math.unit(5 + 9 / 12, "feet"),
  9464. weight: math.unit(220, "lb"),
  9465. name: "Front",
  9466. image: {
  9467. source: "./media/characters/samantha-kruse/front.svg",
  9468. extra: (985 / 935),
  9469. bottom: 0.03
  9470. }
  9471. },
  9472. frontUndressed: {
  9473. height: math.unit(5 + 9 / 12, "feet"),
  9474. weight: math.unit(220, "lb"),
  9475. name: "Front (Undressed)",
  9476. image: {
  9477. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9478. extra: (973 / 923),
  9479. bottom: 0.025
  9480. }
  9481. },
  9482. fat: {
  9483. height: math.unit(5 + 9 / 12, "feet"),
  9484. weight: math.unit(900, "lb"),
  9485. name: "Front (Fat)",
  9486. image: {
  9487. source: "./media/characters/samantha-kruse/fat.svg",
  9488. extra: 2688 / 2561
  9489. }
  9490. },
  9491. },
  9492. [
  9493. {
  9494. name: "Normal",
  9495. height: math.unit(5 + 9 / 12, "feet"),
  9496. default: true
  9497. }
  9498. ]
  9499. ))
  9500. characterMakers.push(() => makeCharacter(
  9501. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9502. {
  9503. back: {
  9504. height: math.unit(5 + 4 / 12, "feet"),
  9505. weight: math.unit(4963, "lb"),
  9506. name: "Back",
  9507. image: {
  9508. source: "./media/characters/amelia-rosie/back.svg",
  9509. extra: 1113 / 963,
  9510. bottom: 0.01
  9511. }
  9512. },
  9513. },
  9514. [
  9515. {
  9516. name: "Level 0",
  9517. height: math.unit(5 + 4 / 12, "feet")
  9518. },
  9519. {
  9520. name: "Level 1",
  9521. height: math.unit(164597, "feet"),
  9522. default: true
  9523. },
  9524. {
  9525. name: "Level 2",
  9526. height: math.unit(956243, "miles")
  9527. },
  9528. {
  9529. name: "Level 3",
  9530. height: math.unit(29421709423, "miles")
  9531. },
  9532. {
  9533. name: "Level 4",
  9534. height: math.unit(154, "lightyears")
  9535. },
  9536. {
  9537. name: "Level 5",
  9538. height: math.unit(4738272, "lightyears")
  9539. },
  9540. {
  9541. name: "Level 6",
  9542. height: math.unit(145787152896, "lightyears")
  9543. },
  9544. ]
  9545. ))
  9546. characterMakers.push(() => makeCharacter(
  9547. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9548. {
  9549. front: {
  9550. height: math.unit(5 + 11 / 12, "feet"),
  9551. weight: math.unit(65, "kg"),
  9552. name: "Front",
  9553. image: {
  9554. source: "./media/characters/rook-kitara/front.svg",
  9555. extra: 1347 / 1274,
  9556. bottom: 0.005
  9557. }
  9558. },
  9559. },
  9560. [
  9561. {
  9562. name: "Totally Unfair",
  9563. height: math.unit(1.8, "mm")
  9564. },
  9565. {
  9566. name: "Lap Rookie",
  9567. height: math.unit(1.4, "feet")
  9568. },
  9569. {
  9570. name: "Normal",
  9571. height: math.unit(5 + 11 / 12, "feet"),
  9572. default: true
  9573. },
  9574. {
  9575. name: "How Did This Happen",
  9576. height: math.unit(80, "miles")
  9577. }
  9578. ]
  9579. ))
  9580. characterMakers.push(() => makeCharacter(
  9581. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9582. {
  9583. front: {
  9584. height: math.unit(7, "feet"),
  9585. weight: math.unit(300, "lb"),
  9586. name: "Front",
  9587. image: {
  9588. source: "./media/characters/pisces/front.svg",
  9589. extra: 2255 / 2115,
  9590. bottom: 0.03
  9591. }
  9592. },
  9593. back: {
  9594. height: math.unit(7, "feet"),
  9595. weight: math.unit(300, "lb"),
  9596. name: "Back",
  9597. image: {
  9598. source: "./media/characters/pisces/back.svg",
  9599. extra: 2146 / 2055,
  9600. bottom: 0.04
  9601. }
  9602. },
  9603. },
  9604. [
  9605. {
  9606. name: "Normal",
  9607. height: math.unit(7, "feet"),
  9608. default: true
  9609. },
  9610. {
  9611. name: "Swimming Pool",
  9612. height: math.unit(12.2, "meters")
  9613. },
  9614. {
  9615. name: "Olympic Swimming Pool",
  9616. height: math.unit(56.3, "meters")
  9617. },
  9618. {
  9619. name: "Lake Superior",
  9620. height: math.unit(93900, "meters")
  9621. },
  9622. {
  9623. name: "Mediterranean Sea",
  9624. height: math.unit(644457, "meters")
  9625. },
  9626. {
  9627. name: "World's Oceans",
  9628. height: math.unit(4567491, "meters")
  9629. },
  9630. ]
  9631. ))
  9632. characterMakers.push(() => makeCharacter(
  9633. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9634. {
  9635. front: {
  9636. height: math.unit(2.3, "meters"),
  9637. weight: math.unit(120, "kg"),
  9638. name: "Front",
  9639. image: {
  9640. source: "./media/characters/zelas/front.svg"
  9641. }
  9642. },
  9643. side: {
  9644. height: math.unit(2.3, "meters"),
  9645. weight: math.unit(120, "kg"),
  9646. name: "Side",
  9647. image: {
  9648. source: "./media/characters/zelas/side.svg"
  9649. }
  9650. },
  9651. back: {
  9652. height: math.unit(2.3, "meters"),
  9653. weight: math.unit(120, "kg"),
  9654. name: "Back",
  9655. image: {
  9656. source: "./media/characters/zelas/back.svg"
  9657. }
  9658. },
  9659. foot: {
  9660. height: math.unit(1.116, "feet"),
  9661. name: "Foot",
  9662. image: {
  9663. source: "./media/characters/zelas/foot.svg"
  9664. }
  9665. },
  9666. },
  9667. [
  9668. {
  9669. name: "Normal",
  9670. height: math.unit(2.3, "meters")
  9671. },
  9672. {
  9673. name: "Macro",
  9674. height: math.unit(30, "meters"),
  9675. default: true
  9676. },
  9677. ]
  9678. ))
  9679. characterMakers.push(() => makeCharacter(
  9680. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9681. {
  9682. front: {
  9683. height: math.unit(1, "inch"),
  9684. weight: math.unit(0.21, "grams"),
  9685. name: "Front",
  9686. image: {
  9687. source: "./media/characters/talbot/front.svg",
  9688. extra: 594 / 544
  9689. }
  9690. },
  9691. },
  9692. [
  9693. {
  9694. name: "Micro",
  9695. height: math.unit(1, "inch"),
  9696. default: true
  9697. },
  9698. ]
  9699. ))
  9700. characterMakers.push(() => makeCharacter(
  9701. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9702. {
  9703. front: {
  9704. height: math.unit(3 + 3 / 12, "feet"),
  9705. weight: math.unit(51.8, "lb"),
  9706. name: "Front",
  9707. image: {
  9708. source: "./media/characters/fliss/front.svg",
  9709. extra: 840 / 640
  9710. }
  9711. },
  9712. },
  9713. [
  9714. {
  9715. name: "Teeny Tiny",
  9716. height: math.unit(1, "mm")
  9717. },
  9718. {
  9719. name: "Small",
  9720. height: math.unit(1, "inch"),
  9721. default: true
  9722. },
  9723. {
  9724. name: "Standard Sylveon",
  9725. height: math.unit(3 + 3 / 12, "feet")
  9726. },
  9727. {
  9728. name: "Large Nuisance",
  9729. height: math.unit(33, "feet")
  9730. },
  9731. {
  9732. name: "City Filler",
  9733. height: math.unit(3000, "feet")
  9734. },
  9735. {
  9736. name: "New Horizon",
  9737. height: math.unit(6000, "miles")
  9738. },
  9739. ]
  9740. ))
  9741. characterMakers.push(() => makeCharacter(
  9742. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9743. {
  9744. front: {
  9745. height: math.unit(5, "cm"),
  9746. weight: math.unit(1.94, "g"),
  9747. name: "Front",
  9748. image: {
  9749. source: "./media/characters/fleta/front.svg",
  9750. extra: 835 / 803
  9751. }
  9752. },
  9753. back: {
  9754. height: math.unit(5, "cm"),
  9755. weight: math.unit(1.94, "g"),
  9756. name: "Back",
  9757. image: {
  9758. source: "./media/characters/fleta/back.svg",
  9759. extra: 835 / 803
  9760. }
  9761. },
  9762. },
  9763. [
  9764. {
  9765. name: "Micro",
  9766. height: math.unit(5, "cm"),
  9767. default: true
  9768. },
  9769. ]
  9770. ))
  9771. characterMakers.push(() => makeCharacter(
  9772. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9773. {
  9774. front: {
  9775. height: math.unit(6, "feet"),
  9776. weight: math.unit(225, "lb"),
  9777. name: "Front",
  9778. image: {
  9779. source: "./media/characters/dominic/front.svg",
  9780. extra: 1770 / 1620,
  9781. bottom: 0.025
  9782. }
  9783. },
  9784. back: {
  9785. height: math.unit(6, "feet"),
  9786. weight: math.unit(225, "lb"),
  9787. name: "Back",
  9788. image: {
  9789. source: "./media/characters/dominic/back.svg",
  9790. extra: 1745 / 1620,
  9791. bottom: 0.065
  9792. }
  9793. },
  9794. },
  9795. [
  9796. {
  9797. name: "Nano",
  9798. height: math.unit(0.1, "mm")
  9799. },
  9800. {
  9801. name: "Micro-",
  9802. height: math.unit(1, "mm")
  9803. },
  9804. {
  9805. name: "Micro",
  9806. height: math.unit(4, "inches")
  9807. },
  9808. {
  9809. name: "Normal",
  9810. height: math.unit(6 + 4 / 12, "feet"),
  9811. default: true
  9812. },
  9813. {
  9814. name: "Macro",
  9815. height: math.unit(115, "feet")
  9816. },
  9817. {
  9818. name: "Macro+",
  9819. height: math.unit(955, "feet")
  9820. },
  9821. {
  9822. name: "Megamacro",
  9823. height: math.unit(8990, "feet")
  9824. },
  9825. {
  9826. name: "Gigmacro",
  9827. height: math.unit(9310, "miles")
  9828. },
  9829. {
  9830. name: "Teramacro",
  9831. height: math.unit(1567005010, "miles")
  9832. },
  9833. {
  9834. name: "Examacro",
  9835. height: math.unit(1425, "parsecs")
  9836. },
  9837. ]
  9838. ))
  9839. characterMakers.push(() => makeCharacter(
  9840. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9841. {
  9842. front: {
  9843. height: math.unit(400, "feet"),
  9844. weight: math.unit(44444444, "lb"),
  9845. name: "Front",
  9846. image: {
  9847. source: "./media/characters/major-colonel/front.svg"
  9848. }
  9849. },
  9850. back: {
  9851. height: math.unit(400, "feet"),
  9852. weight: math.unit(44444444, "lb"),
  9853. name: "Back",
  9854. image: {
  9855. source: "./media/characters/major-colonel/back.svg"
  9856. }
  9857. },
  9858. },
  9859. [
  9860. {
  9861. name: "Macro",
  9862. height: math.unit(400, "feet"),
  9863. default: true
  9864. },
  9865. ]
  9866. ))
  9867. characterMakers.push(() => makeCharacter(
  9868. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9869. {
  9870. catFront: {
  9871. height: math.unit(6, "feet"),
  9872. weight: math.unit(120, "lb"),
  9873. name: "Front (Cat Side)",
  9874. image: {
  9875. source: "./media/characters/axel-lycan/cat-front.svg",
  9876. extra: 430 / 402,
  9877. bottom: 43 / 472.35
  9878. }
  9879. },
  9880. catBack: {
  9881. height: math.unit(6, "feet"),
  9882. weight: math.unit(120, "lb"),
  9883. name: "Back (Cat Side)",
  9884. image: {
  9885. source: "./media/characters/axel-lycan/cat-back.svg",
  9886. extra: 447 / 419,
  9887. bottom: 23.3 / 469
  9888. }
  9889. },
  9890. wolfFront: {
  9891. height: math.unit(6, "feet"),
  9892. weight: math.unit(120, "lb"),
  9893. name: "Front (Wolf Side)",
  9894. image: {
  9895. source: "./media/characters/axel-lycan/wolf-front.svg",
  9896. extra: 485 / 456,
  9897. bottom: 19 / 504
  9898. }
  9899. },
  9900. wolfBack: {
  9901. height: math.unit(6, "feet"),
  9902. weight: math.unit(120, "lb"),
  9903. name: "Back (Wolf Side)",
  9904. image: {
  9905. source: "./media/characters/axel-lycan/wolf-back.svg",
  9906. extra: 475 / 438,
  9907. bottom: 39.2 / 514
  9908. }
  9909. },
  9910. },
  9911. [
  9912. {
  9913. name: "Macro",
  9914. height: math.unit(1, "km"),
  9915. default: true
  9916. },
  9917. ]
  9918. ))
  9919. characterMakers.push(() => makeCharacter(
  9920. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9921. {
  9922. front: {
  9923. height: math.unit(5 + 9 / 12, "feet"),
  9924. weight: math.unit(175, "lb"),
  9925. name: "Front",
  9926. image: {
  9927. source: "./media/characters/vanrel-hyena/front.svg",
  9928. extra: 1086 / 1010,
  9929. bottom: 0.04
  9930. }
  9931. },
  9932. },
  9933. [
  9934. {
  9935. name: "Normal",
  9936. height: math.unit(5 + 9 / 12, "feet"),
  9937. default: true
  9938. },
  9939. ]
  9940. ))
  9941. characterMakers.push(() => makeCharacter(
  9942. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9943. {
  9944. front: {
  9945. height: math.unit(6, "feet"),
  9946. weight: math.unit(103, "lb"),
  9947. name: "Front",
  9948. image: {
  9949. source: "./media/characters/abbott-absol/front.svg",
  9950. extra: 2010 / 1842
  9951. }
  9952. },
  9953. },
  9954. [
  9955. {
  9956. name: "Megamicro",
  9957. height: math.unit(0.1, "mm")
  9958. },
  9959. {
  9960. name: "Micro",
  9961. height: math.unit(1, "inch")
  9962. },
  9963. {
  9964. name: "Normal",
  9965. height: math.unit(6, "feet"),
  9966. default: true
  9967. },
  9968. ]
  9969. ))
  9970. characterMakers.push(() => makeCharacter(
  9971. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9972. {
  9973. front: {
  9974. height: math.unit(6, "feet"),
  9975. weight: math.unit(264, "lb"),
  9976. name: "Front",
  9977. image: {
  9978. source: "./media/characters/hector/front.svg",
  9979. extra: 2280 / 2130,
  9980. bottom: 0.07
  9981. }
  9982. },
  9983. },
  9984. [
  9985. {
  9986. name: "Normal",
  9987. height: math.unit(12.25, "foot"),
  9988. default: true
  9989. },
  9990. {
  9991. name: "Macro",
  9992. height: math.unit(160, "feet")
  9993. },
  9994. ]
  9995. ))
  9996. characterMakers.push(() => makeCharacter(
  9997. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9998. {
  9999. front: {
  10000. height: math.unit(6, "feet"),
  10001. weight: math.unit(150, "lb"),
  10002. name: "Front",
  10003. image: {
  10004. source: "./media/characters/sal/front.svg",
  10005. extra: 1846 / 1699,
  10006. bottom: 0.04
  10007. }
  10008. },
  10009. },
  10010. [
  10011. {
  10012. name: "Megamacro",
  10013. height: math.unit(10, "miles"),
  10014. default: true
  10015. },
  10016. ]
  10017. ))
  10018. characterMakers.push(() => makeCharacter(
  10019. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10020. {
  10021. front: {
  10022. height: math.unit(3, "meters"),
  10023. weight: math.unit(450, "kg"),
  10024. name: "front",
  10025. image: {
  10026. source: "./media/characters/ranger/front.svg",
  10027. extra: 2401 / 2243,
  10028. bottom: 0.05
  10029. }
  10030. },
  10031. },
  10032. [
  10033. {
  10034. name: "Normal",
  10035. height: math.unit(3, "meters"),
  10036. default: true
  10037. },
  10038. ]
  10039. ))
  10040. characterMakers.push(() => makeCharacter(
  10041. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10042. {
  10043. front: {
  10044. height: math.unit(14, "feet"),
  10045. weight: math.unit(800, "kg"),
  10046. name: "Front",
  10047. image: {
  10048. source: "./media/characters/theresa/front.svg",
  10049. extra: 3575 / 3346,
  10050. bottom: 0.03
  10051. }
  10052. },
  10053. },
  10054. [
  10055. {
  10056. name: "Normal",
  10057. height: math.unit(14, "feet"),
  10058. default: true
  10059. },
  10060. ]
  10061. ))
  10062. characterMakers.push(() => makeCharacter(
  10063. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10064. {
  10065. front: {
  10066. height: math.unit(6, "feet"),
  10067. weight: math.unit(3, "kg"),
  10068. name: "Front",
  10069. image: {
  10070. source: "./media/characters/ine/front.svg",
  10071. extra: 678 / 539,
  10072. bottom: 0.023
  10073. }
  10074. },
  10075. },
  10076. [
  10077. {
  10078. name: "Normal",
  10079. height: math.unit(2.265, "feet"),
  10080. default: true
  10081. },
  10082. ]
  10083. ))
  10084. characterMakers.push(() => makeCharacter(
  10085. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10086. {
  10087. front: {
  10088. height: math.unit(5, "feet"),
  10089. weight: math.unit(30, "kg"),
  10090. name: "Front",
  10091. image: {
  10092. source: "./media/characters/vial/front.svg",
  10093. extra: 1365 / 1277,
  10094. bottom: 0.04
  10095. }
  10096. },
  10097. },
  10098. [
  10099. {
  10100. name: "Normal",
  10101. height: math.unit(5, "feet"),
  10102. default: true
  10103. },
  10104. ]
  10105. ))
  10106. characterMakers.push(() => makeCharacter(
  10107. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10108. {
  10109. side: {
  10110. height: math.unit(3.4, "meters"),
  10111. weight: math.unit(1000, "lb"),
  10112. name: "Side",
  10113. image: {
  10114. source: "./media/characters/rovoska/side.svg",
  10115. extra: 4403 / 1515
  10116. }
  10117. },
  10118. },
  10119. [
  10120. {
  10121. name: "Normal",
  10122. height: math.unit(3.4, "meters"),
  10123. default: true
  10124. },
  10125. ]
  10126. ))
  10127. characterMakers.push(() => makeCharacter(
  10128. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10129. {
  10130. front: {
  10131. height: math.unit(8, "feet"),
  10132. weight: math.unit(315, "lb"),
  10133. name: "Front",
  10134. image: {
  10135. source: "./media/characters/gunner-rotthbauer/front.svg"
  10136. }
  10137. },
  10138. back: {
  10139. height: math.unit(8, "feet"),
  10140. weight: math.unit(315, "lb"),
  10141. name: "Back",
  10142. image: {
  10143. source: "./media/characters/gunner-rotthbauer/back.svg"
  10144. }
  10145. },
  10146. },
  10147. [
  10148. {
  10149. name: "Micro",
  10150. height: math.unit(3.5, "inches")
  10151. },
  10152. {
  10153. name: "Normal",
  10154. height: math.unit(8, "feet"),
  10155. default: true
  10156. },
  10157. {
  10158. name: "Macro",
  10159. height: math.unit(250, "feet")
  10160. },
  10161. {
  10162. name: "Megamacro",
  10163. height: math.unit(1, "AU")
  10164. },
  10165. ]
  10166. ))
  10167. characterMakers.push(() => makeCharacter(
  10168. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10169. {
  10170. front: {
  10171. height: math.unit(5 + 5 / 12, "feet"),
  10172. weight: math.unit(140, "lb"),
  10173. name: "Front",
  10174. image: {
  10175. source: "./media/characters/allatia/front.svg",
  10176. extra: 1227 / 1180,
  10177. bottom: 0.027
  10178. }
  10179. },
  10180. },
  10181. [
  10182. {
  10183. name: "Normal",
  10184. height: math.unit(5 + 5 / 12, "feet")
  10185. },
  10186. {
  10187. name: "Macro",
  10188. height: math.unit(250, "feet"),
  10189. default: true
  10190. },
  10191. {
  10192. name: "Megamacro",
  10193. height: math.unit(8, "miles")
  10194. }
  10195. ]
  10196. ))
  10197. characterMakers.push(() => makeCharacter(
  10198. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10199. {
  10200. front: {
  10201. height: math.unit(6, "feet"),
  10202. weight: math.unit(120, "lb"),
  10203. name: "Front",
  10204. image: {
  10205. source: "./media/characters/tene/front.svg",
  10206. extra: 814/750,
  10207. bottom: 36/850
  10208. }
  10209. },
  10210. stomping: {
  10211. height: math.unit(2.025, "meters"),
  10212. weight: math.unit(120, "lb"),
  10213. name: "Stomping",
  10214. image: {
  10215. source: "./media/characters/tene/stomping.svg",
  10216. extra: 885/821,
  10217. bottom: 15/900
  10218. }
  10219. },
  10220. sitting: {
  10221. height: math.unit(1, "meter"),
  10222. weight: math.unit(120, "lb"),
  10223. name: "Sitting",
  10224. image: {
  10225. source: "./media/characters/tene/sitting.svg",
  10226. extra: 396/366,
  10227. bottom: 79/475
  10228. }
  10229. },
  10230. smiling: {
  10231. height: math.unit(1.2, "feet"),
  10232. name: "Smiling",
  10233. image: {
  10234. source: "./media/characters/tene/smiling.svg",
  10235. extra: 1364/1071,
  10236. bottom: 0/1364
  10237. }
  10238. },
  10239. smug: {
  10240. height: math.unit(1.3, "feet"),
  10241. name: "Smug",
  10242. image: {
  10243. source: "./media/characters/tene/smug.svg",
  10244. extra: 1323/1082,
  10245. bottom: 0/1323
  10246. }
  10247. },
  10248. feral: {
  10249. height: math.unit(3.9, "feet"),
  10250. weight: math.unit(250, "lb"),
  10251. name: "Feral",
  10252. image: {
  10253. source: "./media/characters/tene/feral.svg",
  10254. extra: 717 / 458,
  10255. bottom: 0.179
  10256. }
  10257. },
  10258. },
  10259. [
  10260. {
  10261. name: "Normal",
  10262. height: math.unit(6, "feet")
  10263. },
  10264. {
  10265. name: "Macro",
  10266. height: math.unit(300, "feet"),
  10267. default: true
  10268. },
  10269. {
  10270. name: "Megamacro",
  10271. height: math.unit(5, "miles")
  10272. },
  10273. ]
  10274. ))
  10275. characterMakers.push(() => makeCharacter(
  10276. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10277. {
  10278. side: {
  10279. height: math.unit(6, "feet"),
  10280. name: "Side",
  10281. image: {
  10282. source: "./media/characters/evander/side.svg",
  10283. extra: 877 / 477
  10284. }
  10285. },
  10286. },
  10287. [
  10288. {
  10289. name: "Normal",
  10290. height: math.unit(0.83, "meters"),
  10291. default: true
  10292. },
  10293. ]
  10294. ))
  10295. characterMakers.push(() => makeCharacter(
  10296. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10297. {
  10298. front: {
  10299. height: math.unit(12, "feet"),
  10300. weight: math.unit(1000, "lb"),
  10301. name: "Front",
  10302. image: {
  10303. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10304. extra: 1762 / 1611
  10305. }
  10306. },
  10307. back: {
  10308. height: math.unit(12, "feet"),
  10309. weight: math.unit(1000, "lb"),
  10310. name: "Back",
  10311. image: {
  10312. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10313. extra: 1762 / 1611
  10314. }
  10315. },
  10316. },
  10317. [
  10318. {
  10319. name: "Normal",
  10320. height: math.unit(12, "feet"),
  10321. default: true
  10322. },
  10323. {
  10324. name: "Kaiju",
  10325. height: math.unit(150, "feet")
  10326. },
  10327. ]
  10328. ))
  10329. characterMakers.push(() => makeCharacter(
  10330. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10331. {
  10332. front: {
  10333. height: math.unit(6, "feet"),
  10334. weight: math.unit(150, "lb"),
  10335. name: "Front",
  10336. image: {
  10337. source: "./media/characters/zero-alurus/front.svg"
  10338. }
  10339. },
  10340. back: {
  10341. height: math.unit(6, "feet"),
  10342. weight: math.unit(150, "lb"),
  10343. name: "Back",
  10344. image: {
  10345. source: "./media/characters/zero-alurus/back.svg"
  10346. }
  10347. },
  10348. },
  10349. [
  10350. {
  10351. name: "Normal",
  10352. height: math.unit(5 + 10 / 12, "feet")
  10353. },
  10354. {
  10355. name: "Macro",
  10356. height: math.unit(60, "feet"),
  10357. default: true
  10358. },
  10359. {
  10360. name: "Macro+",
  10361. height: math.unit(450, "feet")
  10362. },
  10363. ]
  10364. ))
  10365. characterMakers.push(() => makeCharacter(
  10366. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10367. {
  10368. front: {
  10369. height: math.unit(6, "feet"),
  10370. weight: math.unit(200, "lb"),
  10371. name: "Front",
  10372. image: {
  10373. source: "./media/characters/mega-shi/front.svg",
  10374. extra: 1279 / 1250,
  10375. bottom: 0.02
  10376. }
  10377. },
  10378. back: {
  10379. height: math.unit(6, "feet"),
  10380. weight: math.unit(200, "lb"),
  10381. name: "Back",
  10382. image: {
  10383. source: "./media/characters/mega-shi/back.svg",
  10384. extra: 1279 / 1250,
  10385. bottom: 0.02
  10386. }
  10387. },
  10388. },
  10389. [
  10390. {
  10391. name: "Micro",
  10392. height: math.unit(16 + 6 / 12, "feet")
  10393. },
  10394. {
  10395. name: "Third Dimension",
  10396. height: math.unit(40, "meters")
  10397. },
  10398. {
  10399. name: "Normal",
  10400. height: math.unit(660, "feet"),
  10401. default: true
  10402. },
  10403. {
  10404. name: "Megamacro",
  10405. height: math.unit(10, "miles")
  10406. },
  10407. {
  10408. name: "Planetary Launch",
  10409. height: math.unit(500, "miles")
  10410. },
  10411. {
  10412. name: "Interstellar",
  10413. height: math.unit(1e9, "miles")
  10414. },
  10415. {
  10416. name: "Leaving the Universe",
  10417. height: math.unit(1, "gigaparsec")
  10418. },
  10419. {
  10420. name: "Travelling Universes",
  10421. height: math.unit(30e15, "parsecs")
  10422. },
  10423. ]
  10424. ))
  10425. characterMakers.push(() => makeCharacter(
  10426. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10427. {
  10428. front: {
  10429. height: math.unit(5 + 4/12, "feet"),
  10430. weight: math.unit(120, "lb"),
  10431. name: "Front",
  10432. image: {
  10433. source: "./media/characters/odyssey/front.svg",
  10434. extra: 1747/1571,
  10435. bottom: 47/1794
  10436. }
  10437. },
  10438. side: {
  10439. height: math.unit(5.1, "feet"),
  10440. weight: math.unit(120, "lb"),
  10441. name: "Side",
  10442. image: {
  10443. source: "./media/characters/odyssey/side.svg",
  10444. extra: 1847/1619,
  10445. bottom: 47/1894
  10446. }
  10447. },
  10448. lounging: {
  10449. height: math.unit(1.464, "feet"),
  10450. weight: math.unit(120, "lb"),
  10451. name: "Lounging",
  10452. image: {
  10453. source: "./media/characters/odyssey/lounging.svg",
  10454. extra: 1235/837,
  10455. bottom: 551/1786
  10456. }
  10457. },
  10458. },
  10459. [
  10460. {
  10461. name: "Normal",
  10462. height: math.unit(5 + 4 / 12, "feet")
  10463. },
  10464. {
  10465. name: "Macro",
  10466. height: math.unit(1, "km")
  10467. },
  10468. {
  10469. name: "Megamacro",
  10470. height: math.unit(3000, "km")
  10471. },
  10472. {
  10473. name: "Gigamacro",
  10474. height: math.unit(1, "AU"),
  10475. default: true
  10476. },
  10477. {
  10478. name: "Omniversal",
  10479. height: math.unit(100e14, "lightyears")
  10480. },
  10481. ]
  10482. ))
  10483. characterMakers.push(() => makeCharacter(
  10484. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10485. {
  10486. front: {
  10487. height: math.unit(6, "feet"),
  10488. weight: math.unit(300, "lb"),
  10489. name: "Front",
  10490. image: {
  10491. source: "./media/characters/mekuto/front.svg",
  10492. extra: 921 / 832,
  10493. bottom: 0.03
  10494. }
  10495. },
  10496. hand: {
  10497. height: math.unit(6 / 10.24, "feet"),
  10498. name: "Hand",
  10499. image: {
  10500. source: "./media/characters/mekuto/hand.svg"
  10501. }
  10502. },
  10503. foot: {
  10504. height: math.unit(6 / 5.05, "feet"),
  10505. name: "Foot",
  10506. image: {
  10507. source: "./media/characters/mekuto/foot.svg"
  10508. }
  10509. },
  10510. },
  10511. [
  10512. {
  10513. name: "Minimicro",
  10514. height: math.unit(0.2, "inches")
  10515. },
  10516. {
  10517. name: "Micro",
  10518. height: math.unit(1.5, "inches")
  10519. },
  10520. {
  10521. name: "Normal",
  10522. height: math.unit(5 + 11 / 12, "feet"),
  10523. default: true
  10524. },
  10525. {
  10526. name: "Minimacro",
  10527. height: math.unit(17 + 9 / 12, "feet")
  10528. },
  10529. {
  10530. name: "Macro",
  10531. height: math.unit(177.5, "feet")
  10532. },
  10533. {
  10534. name: "Megamacro",
  10535. height: math.unit(152, "miles")
  10536. },
  10537. ]
  10538. ))
  10539. characterMakers.push(() => makeCharacter(
  10540. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10541. {
  10542. front: {
  10543. height: math.unit(6.5, "inches"),
  10544. weight: math.unit(13, "oz"),
  10545. name: "Front",
  10546. image: {
  10547. source: "./media/characters/dafydd-tomos/front.svg",
  10548. extra: 2990 / 2603,
  10549. bottom: 0.03
  10550. }
  10551. },
  10552. },
  10553. [
  10554. {
  10555. name: "Micro",
  10556. height: math.unit(6.5, "inches"),
  10557. default: true
  10558. },
  10559. ]
  10560. ))
  10561. characterMakers.push(() => makeCharacter(
  10562. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10563. {
  10564. front: {
  10565. height: math.unit(6, "feet"),
  10566. weight: math.unit(150, "lb"),
  10567. name: "Front",
  10568. image: {
  10569. source: "./media/characters/splinter/front.svg",
  10570. extra: 2990 / 2882,
  10571. bottom: 0.04
  10572. }
  10573. },
  10574. back: {
  10575. height: math.unit(6, "feet"),
  10576. weight: math.unit(150, "lb"),
  10577. name: "Back",
  10578. image: {
  10579. source: "./media/characters/splinter/back.svg",
  10580. extra: 2990 / 2882,
  10581. bottom: 0.04
  10582. }
  10583. },
  10584. },
  10585. [
  10586. {
  10587. name: "Normal",
  10588. height: math.unit(6, "feet")
  10589. },
  10590. {
  10591. name: "Macro",
  10592. height: math.unit(230, "meters"),
  10593. default: true
  10594. },
  10595. ]
  10596. ))
  10597. characterMakers.push(() => makeCharacter(
  10598. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10599. {
  10600. front: {
  10601. height: math.unit(4 + 10 / 12, "feet"),
  10602. weight: math.unit(480, "lb"),
  10603. name: "Front",
  10604. image: {
  10605. source: "./media/characters/snow-gabumon/front.svg",
  10606. extra: 1140 / 963,
  10607. bottom: 0.058
  10608. }
  10609. },
  10610. back: {
  10611. height: math.unit(4 + 10 / 12, "feet"),
  10612. weight: math.unit(480, "lb"),
  10613. name: "Back",
  10614. image: {
  10615. source: "./media/characters/snow-gabumon/back.svg",
  10616. extra: 1115 / 962,
  10617. bottom: 0.041
  10618. }
  10619. },
  10620. frontUndresed: {
  10621. height: math.unit(4 + 10 / 12, "feet"),
  10622. weight: math.unit(480, "lb"),
  10623. name: "Front (Undressed)",
  10624. image: {
  10625. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10626. extra: 1061 / 960,
  10627. bottom: 0.045
  10628. }
  10629. },
  10630. },
  10631. [
  10632. {
  10633. name: "Micro",
  10634. height: math.unit(1, "inch")
  10635. },
  10636. {
  10637. name: "Normal",
  10638. height: math.unit(4 + 10 / 12, "feet"),
  10639. default: true
  10640. },
  10641. {
  10642. name: "Macro",
  10643. height: math.unit(200, "feet")
  10644. },
  10645. {
  10646. name: "Megamacro",
  10647. height: math.unit(120, "miles")
  10648. },
  10649. {
  10650. name: "Gigamacro",
  10651. height: math.unit(9800, "miles")
  10652. },
  10653. ]
  10654. ))
  10655. characterMakers.push(() => makeCharacter(
  10656. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10657. {
  10658. front: {
  10659. height: math.unit(1.7, "meters"),
  10660. weight: math.unit(140, "lb"),
  10661. name: "Front",
  10662. image: {
  10663. source: "./media/characters/moody/front.svg",
  10664. extra: 3226 / 3007,
  10665. bottom: 0.087
  10666. }
  10667. },
  10668. },
  10669. [
  10670. {
  10671. name: "Micro",
  10672. height: math.unit(1, "mm")
  10673. },
  10674. {
  10675. name: "Normal",
  10676. height: math.unit(1.7, "meters"),
  10677. default: true
  10678. },
  10679. {
  10680. name: "Macro",
  10681. height: math.unit(80, "meters")
  10682. },
  10683. {
  10684. name: "Macro+",
  10685. height: math.unit(500, "meters")
  10686. },
  10687. ]
  10688. ))
  10689. characterMakers.push(() => makeCharacter(
  10690. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10691. {
  10692. front: {
  10693. height: math.unit(6, "feet"),
  10694. weight: math.unit(150, "lb"),
  10695. name: "Front",
  10696. image: {
  10697. source: "./media/characters/zyas/front.svg",
  10698. extra: 1180 / 1120,
  10699. bottom: 0.045
  10700. }
  10701. },
  10702. },
  10703. [
  10704. {
  10705. name: "Normal",
  10706. height: math.unit(10, "feet"),
  10707. default: true
  10708. },
  10709. {
  10710. name: "Macro",
  10711. height: math.unit(500, "feet")
  10712. },
  10713. {
  10714. name: "Megamacro",
  10715. height: math.unit(5, "miles")
  10716. },
  10717. {
  10718. name: "Teramacro",
  10719. height: math.unit(150000, "miles")
  10720. },
  10721. ]
  10722. ))
  10723. characterMakers.push(() => makeCharacter(
  10724. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10725. {
  10726. front: {
  10727. height: math.unit(6, "feet"),
  10728. weight: math.unit(150, "lb"),
  10729. name: "Front",
  10730. image: {
  10731. source: "./media/characters/cuon/front.svg",
  10732. extra: 1390 / 1320,
  10733. bottom: 0.008
  10734. }
  10735. },
  10736. },
  10737. [
  10738. {
  10739. name: "Micro",
  10740. height: math.unit(3, "inches")
  10741. },
  10742. {
  10743. name: "Normal",
  10744. height: math.unit(18 + 9 / 12, "feet"),
  10745. default: true
  10746. },
  10747. {
  10748. name: "Macro",
  10749. height: math.unit(360, "feet")
  10750. },
  10751. {
  10752. name: "Megamacro",
  10753. height: math.unit(360, "miles")
  10754. },
  10755. ]
  10756. ))
  10757. characterMakers.push(() => makeCharacter(
  10758. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10759. {
  10760. front: {
  10761. height: math.unit(2.4, "meters"),
  10762. weight: math.unit(70, "kg"),
  10763. name: "Front",
  10764. image: {
  10765. source: "./media/characters/nyanuxk/front.svg",
  10766. extra: 1172 / 1084,
  10767. bottom: 0.065
  10768. }
  10769. },
  10770. side: {
  10771. height: math.unit(2.4, "meters"),
  10772. weight: math.unit(70, "kg"),
  10773. name: "Side",
  10774. image: {
  10775. source: "./media/characters/nyanuxk/side.svg",
  10776. extra: 1190 / 1132,
  10777. bottom: 0.007
  10778. }
  10779. },
  10780. back: {
  10781. height: math.unit(2.4, "meters"),
  10782. weight: math.unit(70, "kg"),
  10783. name: "Back",
  10784. image: {
  10785. source: "./media/characters/nyanuxk/back.svg",
  10786. extra: 1200 / 1141,
  10787. bottom: 0.015
  10788. }
  10789. },
  10790. foot: {
  10791. height: math.unit(0.52, "meters"),
  10792. name: "Foot",
  10793. image: {
  10794. source: "./media/characters/nyanuxk/foot.svg"
  10795. }
  10796. },
  10797. },
  10798. [
  10799. {
  10800. name: "Micro",
  10801. height: math.unit(2, "cm")
  10802. },
  10803. {
  10804. name: "Normal",
  10805. height: math.unit(2.4, "meters"),
  10806. default: true
  10807. },
  10808. {
  10809. name: "Smaller Macro",
  10810. height: math.unit(120, "meters")
  10811. },
  10812. {
  10813. name: "Bigger Macro",
  10814. height: math.unit(1.2, "km")
  10815. },
  10816. {
  10817. name: "Megamacro",
  10818. height: math.unit(15, "kilometers")
  10819. },
  10820. {
  10821. name: "Gigamacro",
  10822. height: math.unit(2000, "km")
  10823. },
  10824. {
  10825. name: "Teramacro",
  10826. height: math.unit(500000, "km")
  10827. },
  10828. ]
  10829. ))
  10830. characterMakers.push(() => makeCharacter(
  10831. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10832. {
  10833. side: {
  10834. height: math.unit(6, "feet"),
  10835. name: "Side",
  10836. image: {
  10837. source: "./media/characters/ailbhe/side.svg",
  10838. extra: 757 / 464,
  10839. bottom: 0.041
  10840. }
  10841. },
  10842. },
  10843. [
  10844. {
  10845. name: "Normal",
  10846. height: math.unit(1.07, "meters"),
  10847. default: true
  10848. },
  10849. ]
  10850. ))
  10851. characterMakers.push(() => makeCharacter(
  10852. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10853. {
  10854. front: {
  10855. height: math.unit(6, "feet"),
  10856. weight: math.unit(120, "kg"),
  10857. name: "Front",
  10858. image: {
  10859. source: "./media/characters/zevulfius/front.svg",
  10860. extra: 965 / 903
  10861. }
  10862. },
  10863. side: {
  10864. height: math.unit(6, "feet"),
  10865. weight: math.unit(120, "kg"),
  10866. name: "Side",
  10867. image: {
  10868. source: "./media/characters/zevulfius/side.svg",
  10869. extra: 939 / 900
  10870. }
  10871. },
  10872. back: {
  10873. height: math.unit(6, "feet"),
  10874. weight: math.unit(120, "kg"),
  10875. name: "Back",
  10876. image: {
  10877. source: "./media/characters/zevulfius/back.svg",
  10878. extra: 918 / 854,
  10879. bottom: 0.005
  10880. }
  10881. },
  10882. foot: {
  10883. height: math.unit(6 / 3.72, "feet"),
  10884. name: "Foot",
  10885. image: {
  10886. source: "./media/characters/zevulfius/foot.svg"
  10887. }
  10888. },
  10889. },
  10890. [
  10891. {
  10892. name: "Macro",
  10893. height: math.unit(750, "meters")
  10894. },
  10895. {
  10896. name: "Megamacro",
  10897. height: math.unit(20, "km"),
  10898. default: true
  10899. },
  10900. {
  10901. name: "Gigamacro",
  10902. height: math.unit(2000, "km")
  10903. },
  10904. {
  10905. name: "Teramacro",
  10906. height: math.unit(250000, "km")
  10907. },
  10908. ]
  10909. ))
  10910. characterMakers.push(() => makeCharacter(
  10911. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10912. {
  10913. front: {
  10914. height: math.unit(100, "feet"),
  10915. weight: math.unit(350, "kg"),
  10916. name: "Front",
  10917. image: {
  10918. source: "./media/characters/rikes/front.svg",
  10919. extra: 1565 / 1483,
  10920. bottom: 0.017
  10921. }
  10922. },
  10923. },
  10924. [
  10925. {
  10926. name: "Macro",
  10927. height: math.unit(100, "feet"),
  10928. default: true
  10929. },
  10930. ]
  10931. ))
  10932. characterMakers.push(() => makeCharacter(
  10933. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10934. {
  10935. front: {
  10936. height: math.unit(8, "feet"),
  10937. weight: math.unit(356, "lb"),
  10938. name: "Front",
  10939. image: {
  10940. source: "./media/characters/adam-silver-mane/front.svg",
  10941. extra: 1036/937,
  10942. bottom: 63/1099
  10943. }
  10944. },
  10945. side: {
  10946. height: math.unit(8, "feet"),
  10947. weight: math.unit(356, "lb"),
  10948. name: "Side",
  10949. image: {
  10950. source: "./media/characters/adam-silver-mane/side.svg",
  10951. extra: 997/901,
  10952. bottom: 59/1056
  10953. }
  10954. },
  10955. frontNsfw: {
  10956. height: math.unit(8, "feet"),
  10957. weight: math.unit(356, "lb"),
  10958. name: "Front (NSFW)",
  10959. image: {
  10960. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10961. extra: 1036/937,
  10962. bottom: 63/1099
  10963. }
  10964. },
  10965. sideNsfw: {
  10966. height: math.unit(8, "feet"),
  10967. weight: math.unit(356, "lb"),
  10968. name: "Side (NSFW)",
  10969. image: {
  10970. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10971. extra: 997/901,
  10972. bottom: 59/1056
  10973. }
  10974. },
  10975. dick: {
  10976. height: math.unit(2.1, "feet"),
  10977. name: "Dick",
  10978. image: {
  10979. source: "./media/characters/adam-silver-mane/dick.svg"
  10980. }
  10981. },
  10982. taur: {
  10983. height: math.unit(16, "feet"),
  10984. weight: math.unit(1500, "kg"),
  10985. name: "Taur",
  10986. image: {
  10987. source: "./media/characters/adam-silver-mane/taur.svg",
  10988. extra: 1713 / 1571,
  10989. bottom: 0.01
  10990. }
  10991. },
  10992. },
  10993. [
  10994. {
  10995. name: "Normal",
  10996. height: math.unit(8, "feet")
  10997. },
  10998. {
  10999. name: "Minimacro",
  11000. height: math.unit(80, "feet")
  11001. },
  11002. {
  11003. name: "MDA",
  11004. height: math.unit(80, "meters")
  11005. },
  11006. {
  11007. name: "Macro",
  11008. height: math.unit(800, "feet"),
  11009. default: true
  11010. },
  11011. {
  11012. name: "Megamacro",
  11013. height: math.unit(8000, "feet")
  11014. },
  11015. {
  11016. name: "Gigamacro",
  11017. height: math.unit(800, "miles")
  11018. },
  11019. {
  11020. name: "Teramacro",
  11021. height: math.unit(80000, "miles")
  11022. },
  11023. {
  11024. name: "Celestial",
  11025. height: math.unit(8e6, "miles")
  11026. },
  11027. {
  11028. name: "Star Dragon",
  11029. height: math.unit(800000, "parsecs")
  11030. },
  11031. {
  11032. name: "Godly",
  11033. height: math.unit(800, "teraparsecs")
  11034. },
  11035. ]
  11036. ))
  11037. characterMakers.push(() => makeCharacter(
  11038. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11039. {
  11040. front: {
  11041. height: math.unit(6, "feet"),
  11042. weight: math.unit(150, "lb"),
  11043. name: "Front",
  11044. image: {
  11045. source: "./media/characters/ky'owin/front.svg",
  11046. extra: 3888 / 3068,
  11047. bottom: 0.015
  11048. }
  11049. },
  11050. },
  11051. [
  11052. {
  11053. name: "Normal",
  11054. height: math.unit(6 + 8 / 12, "feet")
  11055. },
  11056. {
  11057. name: "Large",
  11058. height: math.unit(68, "feet")
  11059. },
  11060. {
  11061. name: "Macro",
  11062. height: math.unit(132, "feet")
  11063. },
  11064. {
  11065. name: "Macro+",
  11066. height: math.unit(340, "feet")
  11067. },
  11068. {
  11069. name: "Macro++",
  11070. height: math.unit(680, "feet"),
  11071. default: true
  11072. },
  11073. {
  11074. name: "Megamacro",
  11075. height: math.unit(1, "mile")
  11076. },
  11077. {
  11078. name: "Megamacro+",
  11079. height: math.unit(10, "miles")
  11080. },
  11081. ]
  11082. ))
  11083. characterMakers.push(() => makeCharacter(
  11084. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11085. {
  11086. front: {
  11087. height: math.unit(4, "feet"),
  11088. weight: math.unit(50, "lb"),
  11089. name: "Front",
  11090. image: {
  11091. source: "./media/characters/mal/front.svg",
  11092. extra: 785 / 724,
  11093. bottom: 0.07
  11094. }
  11095. },
  11096. },
  11097. [
  11098. {
  11099. name: "Micro",
  11100. height: math.unit(4, "inches")
  11101. },
  11102. {
  11103. name: "Normal",
  11104. height: math.unit(4, "feet"),
  11105. default: true
  11106. },
  11107. {
  11108. name: "Macro",
  11109. height: math.unit(200, "feet")
  11110. },
  11111. ]
  11112. ))
  11113. characterMakers.push(() => makeCharacter(
  11114. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11115. {
  11116. front: {
  11117. height: math.unit(6, "feet"),
  11118. weight: math.unit(150, "lb"),
  11119. name: "Front",
  11120. image: {
  11121. source: "./media/characters/jordan-deware/front.svg",
  11122. extra: 1191 / 1012
  11123. }
  11124. },
  11125. },
  11126. [
  11127. {
  11128. name: "Nano",
  11129. height: math.unit(0.01, "mm")
  11130. },
  11131. {
  11132. name: "Minimicro",
  11133. height: math.unit(1, "mm")
  11134. },
  11135. {
  11136. name: "Micro",
  11137. height: math.unit(0.5, "inches")
  11138. },
  11139. {
  11140. name: "Normal",
  11141. height: math.unit(4, "feet"),
  11142. default: true
  11143. },
  11144. {
  11145. name: "Minimacro",
  11146. height: math.unit(40, "meters")
  11147. },
  11148. {
  11149. name: "Small Macro",
  11150. height: math.unit(400, "meters")
  11151. },
  11152. {
  11153. name: "Macro",
  11154. height: math.unit(4, "miles")
  11155. },
  11156. {
  11157. name: "Megamacro",
  11158. height: math.unit(40, "miles")
  11159. },
  11160. {
  11161. name: "Megamacro+",
  11162. height: math.unit(400, "miles")
  11163. },
  11164. {
  11165. name: "Gigamacro",
  11166. height: math.unit(400000, "miles")
  11167. },
  11168. ]
  11169. ))
  11170. characterMakers.push(() => makeCharacter(
  11171. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11172. {
  11173. side: {
  11174. height: math.unit(6, "feet"),
  11175. weight: math.unit(150, "lb"),
  11176. name: "Side",
  11177. image: {
  11178. source: "./media/characters/kimiko/side.svg",
  11179. extra: 600 / 358
  11180. }
  11181. },
  11182. },
  11183. [
  11184. {
  11185. name: "Normal",
  11186. height: math.unit(15, "feet"),
  11187. default: true
  11188. },
  11189. {
  11190. name: "Macro",
  11191. height: math.unit(220, "feet")
  11192. },
  11193. {
  11194. name: "Macro+",
  11195. height: math.unit(1450, "feet")
  11196. },
  11197. {
  11198. name: "Megamacro",
  11199. height: math.unit(11500, "feet")
  11200. },
  11201. {
  11202. name: "Gigamacro",
  11203. height: math.unit(9500, "miles")
  11204. },
  11205. {
  11206. name: "Teramacro",
  11207. height: math.unit(2208005005, "miles")
  11208. },
  11209. {
  11210. name: "Examacro",
  11211. height: math.unit(2750, "parsecs")
  11212. },
  11213. {
  11214. name: "Zettamacro",
  11215. height: math.unit(101500, "parsecs")
  11216. },
  11217. ]
  11218. ))
  11219. characterMakers.push(() => makeCharacter(
  11220. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11221. {
  11222. front: {
  11223. height: math.unit(6, "feet"),
  11224. weight: math.unit(70, "kg"),
  11225. name: "Front",
  11226. image: {
  11227. source: "./media/characters/andrew-sleepy/front.svg"
  11228. }
  11229. },
  11230. side: {
  11231. height: math.unit(6, "feet"),
  11232. weight: math.unit(70, "kg"),
  11233. name: "Side",
  11234. image: {
  11235. source: "./media/characters/andrew-sleepy/side.svg"
  11236. }
  11237. },
  11238. },
  11239. [
  11240. {
  11241. name: "Micro",
  11242. height: math.unit(1, "mm"),
  11243. default: true
  11244. },
  11245. ]
  11246. ))
  11247. characterMakers.push(() => makeCharacter(
  11248. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11249. {
  11250. front: {
  11251. height: math.unit(6, "feet"),
  11252. weight: math.unit(150, "lb"),
  11253. name: "Front",
  11254. image: {
  11255. source: "./media/characters/judio/front.svg",
  11256. extra: 1258 / 1110
  11257. }
  11258. },
  11259. },
  11260. [
  11261. {
  11262. name: "Normal",
  11263. height: math.unit(5 + 6 / 12, "feet")
  11264. },
  11265. {
  11266. name: "Macro",
  11267. height: math.unit(1000, "feet"),
  11268. default: true
  11269. },
  11270. {
  11271. name: "Megamacro",
  11272. height: math.unit(10, "miles")
  11273. },
  11274. ]
  11275. ))
  11276. characterMakers.push(() => makeCharacter(
  11277. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11278. {
  11279. frontDressed: {
  11280. height: math.unit(6, "feet"),
  11281. weight: math.unit(68, "kg"),
  11282. name: "Front (Dressed)",
  11283. image: {
  11284. source: "./media/characters/nomaxice/front-dressed.svg",
  11285. extra: 1137/824,
  11286. bottom: 74/1211
  11287. }
  11288. },
  11289. frontShorts: {
  11290. height: math.unit(6, "feet"),
  11291. weight: math.unit(68, "kg"),
  11292. name: "Front (Shorts)",
  11293. image: {
  11294. source: "./media/characters/nomaxice/front-shorts.svg",
  11295. extra: 1137/824,
  11296. bottom: 74/1211
  11297. }
  11298. },
  11299. back: {
  11300. height: math.unit(6, "feet"),
  11301. weight: math.unit(68, "kg"),
  11302. name: "Back",
  11303. image: {
  11304. source: "./media/characters/nomaxice/back.svg",
  11305. extra: 822/786,
  11306. bottom: 39/861
  11307. }
  11308. },
  11309. hand: {
  11310. height: math.unit(0.565, "feet"),
  11311. name: "Hand",
  11312. image: {
  11313. source: "./media/characters/nomaxice/hand.svg"
  11314. }
  11315. },
  11316. foot: {
  11317. height: math.unit(1, "feet"),
  11318. name: "Foot",
  11319. image: {
  11320. source: "./media/characters/nomaxice/foot.svg"
  11321. }
  11322. },
  11323. },
  11324. [
  11325. {
  11326. name: "Micro",
  11327. height: math.unit(8, "cm")
  11328. },
  11329. {
  11330. name: "Norm",
  11331. height: math.unit(1.82, "m")
  11332. },
  11333. {
  11334. name: "Norm+",
  11335. height: math.unit(8.8, "feet"),
  11336. default: true
  11337. },
  11338. {
  11339. name: "Big",
  11340. height: math.unit(8, "meters")
  11341. },
  11342. {
  11343. name: "Macro",
  11344. height: math.unit(18, "meters")
  11345. },
  11346. {
  11347. name: "Macro+",
  11348. height: math.unit(88, "meters")
  11349. },
  11350. ]
  11351. ))
  11352. characterMakers.push(() => makeCharacter(
  11353. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11354. {
  11355. front: {
  11356. height: math.unit(12, "feet"),
  11357. weight: math.unit(1.5, "tons"),
  11358. name: "Front",
  11359. image: {
  11360. source: "./media/characters/dydros/front.svg",
  11361. extra: 863 / 800,
  11362. bottom: 0.015
  11363. }
  11364. },
  11365. back: {
  11366. height: math.unit(12, "feet"),
  11367. weight: math.unit(1.5, "tons"),
  11368. name: "Back",
  11369. image: {
  11370. source: "./media/characters/dydros/back.svg",
  11371. extra: 900 / 843,
  11372. bottom: 0.005
  11373. }
  11374. },
  11375. },
  11376. [
  11377. {
  11378. name: "Normal",
  11379. height: math.unit(12, "feet"),
  11380. default: true
  11381. },
  11382. ]
  11383. ))
  11384. characterMakers.push(() => makeCharacter(
  11385. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11386. {
  11387. front: {
  11388. height: math.unit(6, "feet"),
  11389. weight: math.unit(100, "kg"),
  11390. name: "Front",
  11391. image: {
  11392. source: "./media/characters/riggi/front.svg",
  11393. extra: 5787 / 5303
  11394. }
  11395. },
  11396. hyper: {
  11397. height: math.unit(6 * 5 / 3, "feet"),
  11398. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11399. name: "Hyper",
  11400. image: {
  11401. source: "./media/characters/riggi/hyper.svg",
  11402. extra: 3595 / 3485
  11403. }
  11404. },
  11405. },
  11406. [
  11407. {
  11408. name: "Small Macro",
  11409. height: math.unit(50, "feet")
  11410. },
  11411. {
  11412. name: "Default",
  11413. height: math.unit(200, "feet"),
  11414. default: true
  11415. },
  11416. {
  11417. name: "Loom",
  11418. height: math.unit(10000, "feet")
  11419. },
  11420. {
  11421. name: "Cruising Altitude",
  11422. height: math.unit(30000, "feet")
  11423. },
  11424. {
  11425. name: "Megamacro",
  11426. height: math.unit(100, "miles")
  11427. },
  11428. {
  11429. name: "Continent Sized",
  11430. height: math.unit(2800, "miles")
  11431. },
  11432. {
  11433. name: "Earth Sized",
  11434. height: math.unit(8000, "miles")
  11435. },
  11436. ]
  11437. ))
  11438. characterMakers.push(() => makeCharacter(
  11439. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11440. {
  11441. front: {
  11442. height: math.unit(6, "feet"),
  11443. weight: math.unit(250, "lb"),
  11444. name: "Front",
  11445. image: {
  11446. source: "./media/characters/alexi/front.svg",
  11447. extra: 3483 / 3291,
  11448. bottom: 0.04
  11449. }
  11450. },
  11451. back: {
  11452. height: math.unit(6, "feet"),
  11453. weight: math.unit(250, "lb"),
  11454. name: "Back",
  11455. image: {
  11456. source: "./media/characters/alexi/back.svg",
  11457. extra: 3533 / 3356,
  11458. bottom: 0.021
  11459. }
  11460. },
  11461. frontTransforming: {
  11462. height: math.unit(8.58, "feet"),
  11463. weight: math.unit(1300, "lb"),
  11464. name: "Transforming",
  11465. image: {
  11466. source: "./media/characters/alexi/front-transforming.svg",
  11467. extra: 437 / 409,
  11468. bottom: 19 / 458.66
  11469. }
  11470. },
  11471. frontTransformed: {
  11472. height: math.unit(12.5, "feet"),
  11473. weight: math.unit(4000, "lb"),
  11474. name: "Transformed",
  11475. image: {
  11476. source: "./media/characters/alexi/front-transformed.svg",
  11477. extra: 639 / 614,
  11478. bottom: 30.55 / 671
  11479. }
  11480. },
  11481. },
  11482. [
  11483. {
  11484. name: "Normal",
  11485. height: math.unit(14, "feet"),
  11486. default: true
  11487. },
  11488. {
  11489. name: "Minimacro",
  11490. height: math.unit(30, "meters")
  11491. },
  11492. {
  11493. name: "Macro",
  11494. height: math.unit(500, "meters")
  11495. },
  11496. {
  11497. name: "Megamacro",
  11498. height: math.unit(9000, "km")
  11499. },
  11500. {
  11501. name: "Teramacro",
  11502. height: math.unit(384000, "km")
  11503. },
  11504. ]
  11505. ))
  11506. characterMakers.push(() => makeCharacter(
  11507. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11508. {
  11509. front: {
  11510. height: math.unit(6, "feet"),
  11511. weight: math.unit(150, "lb"),
  11512. name: "Front",
  11513. image: {
  11514. source: "./media/characters/kayroo/front.svg",
  11515. extra: 1153 / 1038,
  11516. bottom: 0.06
  11517. }
  11518. },
  11519. foot: {
  11520. height: math.unit(6, "feet"),
  11521. weight: math.unit(150, "lb"),
  11522. name: "Foot",
  11523. image: {
  11524. source: "./media/characters/kayroo/foot.svg"
  11525. }
  11526. },
  11527. },
  11528. [
  11529. {
  11530. name: "Normal",
  11531. height: math.unit(8, "feet"),
  11532. default: true
  11533. },
  11534. {
  11535. name: "Minimacro",
  11536. height: math.unit(250, "feet")
  11537. },
  11538. {
  11539. name: "Macro",
  11540. height: math.unit(2800, "feet")
  11541. },
  11542. {
  11543. name: "Megamacro",
  11544. height: math.unit(5200, "feet")
  11545. },
  11546. {
  11547. name: "Gigamacro",
  11548. height: math.unit(27000, "feet")
  11549. },
  11550. {
  11551. name: "Omega",
  11552. height: math.unit(45000, "feet")
  11553. },
  11554. ]
  11555. ))
  11556. characterMakers.push(() => makeCharacter(
  11557. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11558. {
  11559. front: {
  11560. height: math.unit(18, "feet"),
  11561. weight: math.unit(5800, "lb"),
  11562. name: "Front",
  11563. image: {
  11564. source: "./media/characters/rhys/front.svg",
  11565. extra: 3386 / 3090,
  11566. bottom: 0.07
  11567. }
  11568. },
  11569. },
  11570. [
  11571. {
  11572. name: "Normal",
  11573. height: math.unit(18, "feet"),
  11574. default: true
  11575. },
  11576. {
  11577. name: "Working Size",
  11578. height: math.unit(200, "feet")
  11579. },
  11580. {
  11581. name: "Demolition Size",
  11582. height: math.unit(2000, "feet")
  11583. },
  11584. {
  11585. name: "Maximum Licensed Size",
  11586. height: math.unit(5, "miles")
  11587. },
  11588. {
  11589. name: "Maximum Observed Size",
  11590. height: math.unit(10, "yottameters")
  11591. },
  11592. ]
  11593. ))
  11594. characterMakers.push(() => makeCharacter(
  11595. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11596. {
  11597. front: {
  11598. height: math.unit(6, "feet"),
  11599. weight: math.unit(250, "lb"),
  11600. name: "Front",
  11601. image: {
  11602. source: "./media/characters/toto/front.svg",
  11603. extra: 527 / 479,
  11604. bottom: 0.05
  11605. }
  11606. },
  11607. },
  11608. [
  11609. {
  11610. name: "Micro",
  11611. height: math.unit(3, "feet")
  11612. },
  11613. {
  11614. name: "Normal",
  11615. height: math.unit(10, "feet")
  11616. },
  11617. {
  11618. name: "Macro",
  11619. height: math.unit(150, "feet"),
  11620. default: true
  11621. },
  11622. {
  11623. name: "Megamacro",
  11624. height: math.unit(1200, "feet")
  11625. },
  11626. ]
  11627. ))
  11628. characterMakers.push(() => makeCharacter(
  11629. { name: "King", species: ["lion"], tags: ["anthro"] },
  11630. {
  11631. back: {
  11632. height: math.unit(6, "feet"),
  11633. weight: math.unit(150, "lb"),
  11634. name: "Back",
  11635. image: {
  11636. source: "./media/characters/king/back.svg"
  11637. }
  11638. },
  11639. },
  11640. [
  11641. {
  11642. name: "Micro",
  11643. height: math.unit(2, "inches")
  11644. },
  11645. {
  11646. name: "Normal",
  11647. height: math.unit(8, "feet")
  11648. },
  11649. {
  11650. name: "Macro",
  11651. height: math.unit(200, "feet"),
  11652. default: true
  11653. },
  11654. {
  11655. name: "Megamacro",
  11656. height: math.unit(50, "miles")
  11657. },
  11658. ]
  11659. ))
  11660. characterMakers.push(() => makeCharacter(
  11661. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11662. {
  11663. front: {
  11664. height: math.unit(11, "feet"),
  11665. weight: math.unit(1400, "lb"),
  11666. name: "Front",
  11667. image: {
  11668. source: "./media/characters/cordite/front.svg",
  11669. extra: 1919/1827,
  11670. bottom: 40/1959
  11671. }
  11672. },
  11673. side: {
  11674. height: math.unit(11, "feet"),
  11675. weight: math.unit(1400, "lb"),
  11676. name: "Side",
  11677. image: {
  11678. source: "./media/characters/cordite/side.svg",
  11679. extra: 1908/1793,
  11680. bottom: 38/1946
  11681. }
  11682. },
  11683. back: {
  11684. height: math.unit(11, "feet"),
  11685. weight: math.unit(1400, "lb"),
  11686. name: "Back",
  11687. image: {
  11688. source: "./media/characters/cordite/back.svg",
  11689. extra: 1938/1837,
  11690. bottom: 10/1948
  11691. }
  11692. },
  11693. feral: {
  11694. height: math.unit(2, "feet"),
  11695. weight: math.unit(90, "lb"),
  11696. name: "Feral",
  11697. image: {
  11698. source: "./media/characters/cordite/feral.svg",
  11699. extra: 1260 / 755,
  11700. bottom: 0.05
  11701. }
  11702. },
  11703. },
  11704. [
  11705. {
  11706. name: "Normal",
  11707. height: math.unit(11, "feet"),
  11708. default: true
  11709. },
  11710. ]
  11711. ))
  11712. characterMakers.push(() => makeCharacter(
  11713. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11714. {
  11715. front: {
  11716. height: math.unit(6, "feet"),
  11717. weight: math.unit(150, "lb"),
  11718. name: "Front",
  11719. image: {
  11720. source: "./media/characters/pianostrong/front.svg",
  11721. extra: 6577 / 6254,
  11722. bottom: 0.02
  11723. }
  11724. },
  11725. side: {
  11726. height: math.unit(6, "feet"),
  11727. weight: math.unit(150, "lb"),
  11728. name: "Side",
  11729. image: {
  11730. source: "./media/characters/pianostrong/side.svg",
  11731. extra: 6106 / 5730
  11732. }
  11733. },
  11734. back: {
  11735. height: math.unit(6, "feet"),
  11736. weight: math.unit(150, "lb"),
  11737. name: "Back",
  11738. image: {
  11739. source: "./media/characters/pianostrong/back.svg",
  11740. extra: 6085 / 5733,
  11741. bottom: 0.01
  11742. }
  11743. },
  11744. },
  11745. [
  11746. {
  11747. name: "Macro",
  11748. height: math.unit(100, "feet")
  11749. },
  11750. {
  11751. name: "Macro+",
  11752. height: math.unit(300, "feet"),
  11753. default: true
  11754. },
  11755. {
  11756. name: "Macro++",
  11757. height: math.unit(1000, "feet")
  11758. },
  11759. ]
  11760. ))
  11761. characterMakers.push(() => makeCharacter(
  11762. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11763. {
  11764. front: {
  11765. height: math.unit(6, "feet"),
  11766. weight: math.unit(150, "lb"),
  11767. name: "Front",
  11768. image: {
  11769. source: "./media/characters/kona/front.svg",
  11770. extra: 2960 / 2629,
  11771. bottom: 0.005
  11772. }
  11773. },
  11774. },
  11775. [
  11776. {
  11777. name: "Normal",
  11778. height: math.unit(11 + 8 / 12, "feet")
  11779. },
  11780. {
  11781. name: "Macro",
  11782. height: math.unit(850, "feet"),
  11783. default: true
  11784. },
  11785. {
  11786. name: "Macro+",
  11787. height: math.unit(1.5, "km"),
  11788. default: true
  11789. },
  11790. {
  11791. name: "Megamacro",
  11792. height: math.unit(80, "miles")
  11793. },
  11794. {
  11795. name: "Gigamacro",
  11796. height: math.unit(3500, "miles")
  11797. },
  11798. ]
  11799. ))
  11800. characterMakers.push(() => makeCharacter(
  11801. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11802. {
  11803. side: {
  11804. height: math.unit(1.9, "meters"),
  11805. weight: math.unit(326, "kg"),
  11806. name: "Side",
  11807. image: {
  11808. source: "./media/characters/levi/side.svg",
  11809. extra: 1704 / 1334,
  11810. bottom: 0.02
  11811. }
  11812. },
  11813. },
  11814. [
  11815. {
  11816. name: "Normal",
  11817. height: math.unit(1.9, "meters"),
  11818. default: true
  11819. },
  11820. {
  11821. name: "Macro",
  11822. height: math.unit(20, "meters")
  11823. },
  11824. {
  11825. name: "Macro+",
  11826. height: math.unit(200, "meters")
  11827. },
  11828. {
  11829. name: "Megamacro",
  11830. height: math.unit(2, "km")
  11831. },
  11832. {
  11833. name: "Megamacro+",
  11834. height: math.unit(20, "km")
  11835. },
  11836. {
  11837. name: "Gigamacro",
  11838. height: math.unit(2500, "km")
  11839. },
  11840. {
  11841. name: "Gigamacro+",
  11842. height: math.unit(120000, "km")
  11843. },
  11844. {
  11845. name: "Teramacro",
  11846. height: math.unit(7.77e6, "km")
  11847. },
  11848. ]
  11849. ))
  11850. characterMakers.push(() => makeCharacter(
  11851. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11852. {
  11853. front: {
  11854. height: math.unit(6 + 4/12, "feet"),
  11855. weight: math.unit(190, "lb"),
  11856. name: "Front",
  11857. image: {
  11858. source: "./media/characters/bmc/front.svg",
  11859. extra: 1626/1472,
  11860. bottom: 79/1705
  11861. }
  11862. },
  11863. back: {
  11864. height: math.unit(6 + 4/12, "feet"),
  11865. weight: math.unit(190, "lb"),
  11866. name: "Back",
  11867. image: {
  11868. source: "./media/characters/bmc/back.svg",
  11869. extra: 1640/1479,
  11870. bottom: 45/1685
  11871. }
  11872. },
  11873. frontArmor: {
  11874. height: math.unit(6 + 4/12, "feet"),
  11875. weight: math.unit(190, "lb"),
  11876. name: "Front-armor",
  11877. image: {
  11878. source: "./media/characters/bmc/front-armor.svg",
  11879. extra: 1538/1468,
  11880. bottom: 79/1617
  11881. }
  11882. },
  11883. },
  11884. [
  11885. {
  11886. name: "Human-sized",
  11887. height: math.unit(6 + 4 / 12, "feet")
  11888. },
  11889. {
  11890. name: "Interactive Size",
  11891. height: math.unit(25, "feet")
  11892. },
  11893. {
  11894. name: "Small",
  11895. height: math.unit(250, "feet")
  11896. },
  11897. {
  11898. name: "Normal",
  11899. height: math.unit(1250, "feet"),
  11900. default: true
  11901. },
  11902. {
  11903. name: "Good Day",
  11904. height: math.unit(88, "miles")
  11905. },
  11906. {
  11907. name: "Largest Measured Size",
  11908. height: math.unit(105.960, "galaxies")
  11909. },
  11910. ]
  11911. ))
  11912. characterMakers.push(() => makeCharacter(
  11913. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11914. {
  11915. front: {
  11916. height: math.unit(20, "feet"),
  11917. weight: math.unit(2016, "kg"),
  11918. name: "Front",
  11919. image: {
  11920. source: "./media/characters/sven-the-kaiju/front.svg",
  11921. extra: 1277/1250,
  11922. bottom: 35/1312
  11923. }
  11924. },
  11925. mouth: {
  11926. height: math.unit(1.85, "feet"),
  11927. name: "Mouth",
  11928. image: {
  11929. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11930. }
  11931. },
  11932. },
  11933. [
  11934. {
  11935. name: "Fairy",
  11936. height: math.unit(6, "inches")
  11937. },
  11938. {
  11939. name: "Normal",
  11940. height: math.unit(20, "feet"),
  11941. default: true
  11942. },
  11943. {
  11944. name: "Rampage",
  11945. height: math.unit(200, "feet")
  11946. },
  11947. {
  11948. name: "Archfey Forest Guardian",
  11949. height: math.unit(1, "mile")
  11950. },
  11951. ]
  11952. ))
  11953. characterMakers.push(() => makeCharacter(
  11954. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11955. {
  11956. front: {
  11957. height: math.unit(4, "meters"),
  11958. weight: math.unit(2, "tons"),
  11959. name: "Front",
  11960. image: {
  11961. source: "./media/characters/marik/front.svg",
  11962. extra: 1057 / 1003,
  11963. bottom: 0.08
  11964. }
  11965. },
  11966. },
  11967. [
  11968. {
  11969. name: "Normal",
  11970. height: math.unit(4, "meters"),
  11971. default: true
  11972. },
  11973. {
  11974. name: "Macro",
  11975. height: math.unit(20, "meters")
  11976. },
  11977. {
  11978. name: "Megamacro",
  11979. height: math.unit(50, "km")
  11980. },
  11981. {
  11982. name: "Gigamacro",
  11983. height: math.unit(100, "km")
  11984. },
  11985. {
  11986. name: "Alpha Macro",
  11987. height: math.unit(7.88e7, "yottameters")
  11988. },
  11989. ]
  11990. ))
  11991. characterMakers.push(() => makeCharacter(
  11992. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11993. {
  11994. front: {
  11995. height: math.unit(6, "feet"),
  11996. weight: math.unit(110, "lb"),
  11997. name: "Front",
  11998. image: {
  11999. source: "./media/characters/mel/front.svg",
  12000. extra: 736 / 617,
  12001. bottom: 0.017
  12002. }
  12003. },
  12004. },
  12005. [
  12006. {
  12007. name: "Pico",
  12008. height: math.unit(3, "pm")
  12009. },
  12010. {
  12011. name: "Nano",
  12012. height: math.unit(3, "nm")
  12013. },
  12014. {
  12015. name: "Micro",
  12016. height: math.unit(0.3, "mm"),
  12017. default: true
  12018. },
  12019. {
  12020. name: "Micro+",
  12021. height: math.unit(3, "mm")
  12022. },
  12023. {
  12024. name: "Normal",
  12025. height: math.unit(5 + 10.5 / 12, "feet")
  12026. },
  12027. ]
  12028. ))
  12029. characterMakers.push(() => makeCharacter(
  12030. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12031. {
  12032. kaiju: {
  12033. height: math.unit(1.75, "meters"),
  12034. weight: math.unit(55, "kg"),
  12035. name: "Kaiju",
  12036. image: {
  12037. source: "./media/characters/lykonous/kaiju.svg",
  12038. extra: 1055 / 946,
  12039. bottom: 0.135
  12040. }
  12041. },
  12042. },
  12043. [
  12044. {
  12045. name: "Normal",
  12046. height: math.unit(2.5, "meters"),
  12047. default: true
  12048. },
  12049. {
  12050. name: "Kaiju Dragon",
  12051. height: math.unit(60, "meters")
  12052. },
  12053. {
  12054. name: "Mega Kaiju",
  12055. height: math.unit(120, "km")
  12056. },
  12057. {
  12058. name: "Giga Kaiju",
  12059. height: math.unit(200, "megameters")
  12060. },
  12061. {
  12062. name: "Terra Kaiju",
  12063. height: math.unit(400, "gigameters")
  12064. },
  12065. {
  12066. name: "Kaiju Dragon God",
  12067. height: math.unit(13000, "exaparsecs")
  12068. },
  12069. ]
  12070. ))
  12071. characterMakers.push(() => makeCharacter(
  12072. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12073. {
  12074. front: {
  12075. height: math.unit(6, "feet"),
  12076. weight: math.unit(150, "lb"),
  12077. name: "Front",
  12078. image: {
  12079. source: "./media/characters/blü/front.svg",
  12080. extra: 1883 / 1564,
  12081. bottom: 0.031
  12082. }
  12083. },
  12084. },
  12085. [
  12086. {
  12087. name: "Normal",
  12088. height: math.unit(13, "feet"),
  12089. default: true
  12090. },
  12091. {
  12092. name: "Big Boi",
  12093. height: math.unit(150, "meters")
  12094. },
  12095. {
  12096. name: "Mini Stomper",
  12097. height: math.unit(300, "meters")
  12098. },
  12099. {
  12100. name: "Macro",
  12101. height: math.unit(1000, "meters")
  12102. },
  12103. {
  12104. name: "Megamacro",
  12105. height: math.unit(11000, "meters")
  12106. },
  12107. {
  12108. name: "Gigamacro",
  12109. height: math.unit(11000, "km")
  12110. },
  12111. {
  12112. name: "Teramacro",
  12113. height: math.unit(420000, "km")
  12114. },
  12115. {
  12116. name: "Examacro",
  12117. height: math.unit(120, "parsecs")
  12118. },
  12119. {
  12120. name: "God Tho",
  12121. height: math.unit(98000000000, "parsecs")
  12122. },
  12123. ]
  12124. ))
  12125. characterMakers.push(() => makeCharacter(
  12126. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12127. {
  12128. taurFront: {
  12129. height: math.unit(6, "feet"),
  12130. weight: math.unit(200, "lb"),
  12131. name: "Taur (Front)",
  12132. image: {
  12133. source: "./media/characters/scales/taur-front.svg",
  12134. extra: 1,
  12135. bottom: 0.05
  12136. }
  12137. },
  12138. taurBack: {
  12139. height: math.unit(6, "feet"),
  12140. weight: math.unit(200, "lb"),
  12141. name: "Taur (Back)",
  12142. image: {
  12143. source: "./media/characters/scales/taur-back.svg",
  12144. extra: 1,
  12145. bottom: 0.08
  12146. }
  12147. },
  12148. anthro: {
  12149. height: math.unit(6 * 7 / 12, "feet"),
  12150. weight: math.unit(100, "lb"),
  12151. name: "Anthro",
  12152. image: {
  12153. source: "./media/characters/scales/anthro.svg",
  12154. extra: 1,
  12155. bottom: 0.06
  12156. }
  12157. },
  12158. },
  12159. [
  12160. {
  12161. name: "Normal",
  12162. height: math.unit(12, "feet"),
  12163. default: true
  12164. },
  12165. ]
  12166. ))
  12167. characterMakers.push(() => makeCharacter(
  12168. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12169. {
  12170. front: {
  12171. height: math.unit(6, "feet"),
  12172. weight: math.unit(150, "lb"),
  12173. name: "Front",
  12174. image: {
  12175. source: "./media/characters/koragos/front.svg",
  12176. extra: 841 / 794,
  12177. bottom: 0.035
  12178. }
  12179. },
  12180. back: {
  12181. height: math.unit(6, "feet"),
  12182. weight: math.unit(150, "lb"),
  12183. name: "Back",
  12184. image: {
  12185. source: "./media/characters/koragos/back.svg",
  12186. extra: 841 / 810,
  12187. bottom: 0.022
  12188. }
  12189. },
  12190. },
  12191. [
  12192. {
  12193. name: "Normal",
  12194. height: math.unit(6 + 11 / 12, "feet"),
  12195. default: true
  12196. },
  12197. {
  12198. name: "Macro",
  12199. height: math.unit(490, "feet")
  12200. },
  12201. {
  12202. name: "Megamacro",
  12203. height: math.unit(10, "miles")
  12204. },
  12205. {
  12206. name: "Gigamacro",
  12207. height: math.unit(50, "miles")
  12208. },
  12209. ]
  12210. ))
  12211. characterMakers.push(() => makeCharacter(
  12212. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12213. {
  12214. front: {
  12215. height: math.unit(6, "feet"),
  12216. weight: math.unit(250, "lb"),
  12217. name: "Front",
  12218. image: {
  12219. source: "./media/characters/xylrem/front.svg",
  12220. extra: 3323 / 3050,
  12221. bottom: 0.065
  12222. }
  12223. },
  12224. },
  12225. [
  12226. {
  12227. name: "Micro",
  12228. height: math.unit(4, "feet")
  12229. },
  12230. {
  12231. name: "Normal",
  12232. height: math.unit(16, "feet"),
  12233. default: true
  12234. },
  12235. {
  12236. name: "Macro",
  12237. height: math.unit(2720, "feet")
  12238. },
  12239. {
  12240. name: "Megamacro",
  12241. height: math.unit(25000, "miles")
  12242. },
  12243. ]
  12244. ))
  12245. characterMakers.push(() => makeCharacter(
  12246. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12247. {
  12248. front: {
  12249. height: math.unit(8, "feet"),
  12250. weight: math.unit(250, "kg"),
  12251. name: "Front",
  12252. image: {
  12253. source: "./media/characters/ikideru/front.svg",
  12254. extra: 930 / 870,
  12255. bottom: 0.087
  12256. }
  12257. },
  12258. back: {
  12259. height: math.unit(8, "feet"),
  12260. weight: math.unit(250, "kg"),
  12261. name: "Back",
  12262. image: {
  12263. source: "./media/characters/ikideru/back.svg",
  12264. extra: 919 / 852,
  12265. bottom: 0.055
  12266. }
  12267. },
  12268. },
  12269. [
  12270. {
  12271. name: "Rare",
  12272. height: math.unit(8, "feet"),
  12273. default: true
  12274. },
  12275. {
  12276. name: "Playful Loom",
  12277. height: math.unit(80, "feet")
  12278. },
  12279. {
  12280. name: "City Leaner",
  12281. height: math.unit(230, "feet")
  12282. },
  12283. {
  12284. name: "Megamacro",
  12285. height: math.unit(2500, "feet")
  12286. },
  12287. {
  12288. name: "Gigamacro",
  12289. height: math.unit(26400, "feet")
  12290. },
  12291. {
  12292. name: "Tectonic Shifter",
  12293. height: math.unit(1.7, "megameters")
  12294. },
  12295. {
  12296. name: "Planet Carer",
  12297. height: math.unit(21, "megameters")
  12298. },
  12299. {
  12300. name: "God",
  12301. height: math.unit(11157.22, "parsecs")
  12302. },
  12303. ]
  12304. ))
  12305. characterMakers.push(() => makeCharacter(
  12306. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12307. {
  12308. front: {
  12309. height: math.unit(6, "feet"),
  12310. weight: math.unit(120, "lb"),
  12311. name: "Front",
  12312. image: {
  12313. source: "./media/characters/neo/front.svg"
  12314. }
  12315. },
  12316. },
  12317. [
  12318. {
  12319. name: "Micro",
  12320. height: math.unit(2, "inches"),
  12321. default: true
  12322. },
  12323. {
  12324. name: "Human Size",
  12325. height: math.unit(5 + 8 / 12, "feet")
  12326. },
  12327. ]
  12328. ))
  12329. characterMakers.push(() => makeCharacter(
  12330. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12331. {
  12332. front: {
  12333. height: math.unit(13 + 10 / 12, "feet"),
  12334. weight: math.unit(5320, "lb"),
  12335. name: "Front",
  12336. image: {
  12337. source: "./media/characters/chauncey-chantz/front.svg",
  12338. extra: 1587 / 1435,
  12339. bottom: 0.02
  12340. }
  12341. },
  12342. },
  12343. [
  12344. {
  12345. name: "Normal",
  12346. height: math.unit(13 + 10 / 12, "feet"),
  12347. default: true
  12348. },
  12349. {
  12350. name: "Macro",
  12351. height: math.unit(45, "feet")
  12352. },
  12353. {
  12354. name: "Megamacro",
  12355. height: math.unit(250, "miles")
  12356. },
  12357. {
  12358. name: "Planetary",
  12359. height: math.unit(10000, "miles")
  12360. },
  12361. {
  12362. name: "Galactic",
  12363. height: math.unit(40000, "parsecs")
  12364. },
  12365. {
  12366. name: "Universal",
  12367. height: math.unit(1, "yottameter")
  12368. },
  12369. ]
  12370. ))
  12371. characterMakers.push(() => makeCharacter(
  12372. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12373. {
  12374. front: {
  12375. height: math.unit(6, "feet"),
  12376. weight: math.unit(150, "lb"),
  12377. name: "Front",
  12378. image: {
  12379. source: "./media/characters/epifox/front.svg",
  12380. extra: 1,
  12381. bottom: 0.075
  12382. }
  12383. },
  12384. },
  12385. [
  12386. {
  12387. name: "Micro",
  12388. height: math.unit(6, "inches")
  12389. },
  12390. {
  12391. name: "Normal",
  12392. height: math.unit(12, "feet"),
  12393. default: true
  12394. },
  12395. {
  12396. name: "Macro",
  12397. height: math.unit(3810, "feet")
  12398. },
  12399. {
  12400. name: "Megamacro",
  12401. height: math.unit(500, "miles")
  12402. },
  12403. ]
  12404. ))
  12405. characterMakers.push(() => makeCharacter(
  12406. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12407. {
  12408. front: {
  12409. height: math.unit(1.8796, "m"),
  12410. weight: math.unit(230, "lb"),
  12411. name: "Front",
  12412. image: {
  12413. source: "./media/characters/colin-t/front.svg",
  12414. extra: 1272 / 1193,
  12415. bottom: 0.07
  12416. }
  12417. },
  12418. },
  12419. [
  12420. {
  12421. name: "Micro",
  12422. height: math.unit(0.571, "meters")
  12423. },
  12424. {
  12425. name: "Normal",
  12426. height: math.unit(1.8796, "meters"),
  12427. default: true
  12428. },
  12429. {
  12430. name: "Tall",
  12431. height: math.unit(4, "meters")
  12432. },
  12433. {
  12434. name: "Macro",
  12435. height: math.unit(67.241, "meters")
  12436. },
  12437. {
  12438. name: "Megamacro",
  12439. height: math.unit(371.856, "meters")
  12440. },
  12441. {
  12442. name: "Planetary",
  12443. height: math.unit(12631.5689, "km")
  12444. },
  12445. ]
  12446. ))
  12447. characterMakers.push(() => makeCharacter(
  12448. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12449. {
  12450. front: {
  12451. height: math.unit(1.85, "meters"),
  12452. weight: math.unit(80, "kg"),
  12453. name: "Front",
  12454. image: {
  12455. source: "./media/characters/matvei/front.svg",
  12456. extra: 614 / 594,
  12457. bottom: 0.01
  12458. }
  12459. },
  12460. },
  12461. [
  12462. {
  12463. name: "Normal",
  12464. height: math.unit(1.85, "meters"),
  12465. default: true
  12466. },
  12467. ]
  12468. ))
  12469. characterMakers.push(() => makeCharacter(
  12470. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12471. {
  12472. front: {
  12473. height: math.unit(5 + 9 / 12, "feet"),
  12474. weight: math.unit(70, "lb"),
  12475. name: "Front",
  12476. image: {
  12477. source: "./media/characters/quincy/front.svg",
  12478. extra: 3041 / 2751
  12479. }
  12480. },
  12481. back: {
  12482. height: math.unit(5 + 9 / 12, "feet"),
  12483. weight: math.unit(70, "lb"),
  12484. name: "Back",
  12485. image: {
  12486. source: "./media/characters/quincy/back.svg",
  12487. extra: 3041 / 2751
  12488. }
  12489. },
  12490. flying: {
  12491. height: math.unit(5 + 4 / 12, "feet"),
  12492. weight: math.unit(70, "lb"),
  12493. name: "Flying",
  12494. image: {
  12495. source: "./media/characters/quincy/flying.svg",
  12496. extra: 1044 / 930
  12497. }
  12498. },
  12499. },
  12500. [
  12501. {
  12502. name: "Micro",
  12503. height: math.unit(3, "cm")
  12504. },
  12505. {
  12506. name: "Normal",
  12507. height: math.unit(5 + 9 / 12, "feet")
  12508. },
  12509. {
  12510. name: "Macro",
  12511. height: math.unit(200, "meters"),
  12512. default: true
  12513. },
  12514. {
  12515. name: "Megamacro",
  12516. height: math.unit(1000, "meters")
  12517. },
  12518. ]
  12519. ))
  12520. characterMakers.push(() => makeCharacter(
  12521. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12522. {
  12523. front: {
  12524. height: math.unit(3 + 11/12, "feet"),
  12525. weight: math.unit(50, "lb"),
  12526. name: "Front",
  12527. image: {
  12528. source: "./media/characters/vanrel/front.svg",
  12529. extra: 1104/949,
  12530. bottom: 52/1156
  12531. }
  12532. },
  12533. back: {
  12534. height: math.unit(3 + 11/12, "feet"),
  12535. weight: math.unit(50, "lb"),
  12536. name: "Back",
  12537. image: {
  12538. source: "./media/characters/vanrel/back.svg",
  12539. extra: 1119/976,
  12540. bottom: 37/1156
  12541. }
  12542. },
  12543. tome: {
  12544. height: math.unit(1.35, "feet"),
  12545. weight: math.unit(10, "lb"),
  12546. name: "Vanrel's Tome",
  12547. rename: true,
  12548. image: {
  12549. source: "./media/characters/vanrel/tome.svg"
  12550. }
  12551. },
  12552. beans: {
  12553. height: math.unit(0.89, "feet"),
  12554. name: "Beans",
  12555. image: {
  12556. source: "./media/characters/vanrel/beans.svg"
  12557. }
  12558. },
  12559. },
  12560. [
  12561. {
  12562. name: "Normal",
  12563. height: math.unit(3 + 11/12, "feet"),
  12564. default: true
  12565. },
  12566. ]
  12567. ))
  12568. characterMakers.push(() => makeCharacter(
  12569. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12570. {
  12571. front: {
  12572. height: math.unit(7 + 5 / 12, "feet"),
  12573. name: "Front",
  12574. image: {
  12575. source: "./media/characters/kuiper-vanrel/front.svg",
  12576. extra: 1219/1169,
  12577. bottom: 69/1288
  12578. }
  12579. },
  12580. back: {
  12581. height: math.unit(7 + 5 / 12, "feet"),
  12582. name: "Back",
  12583. image: {
  12584. source: "./media/characters/kuiper-vanrel/back.svg",
  12585. extra: 1236/1193,
  12586. bottom: 27/1263
  12587. }
  12588. },
  12589. foot: {
  12590. height: math.unit(0.55, "meters"),
  12591. name: "Foot",
  12592. image: {
  12593. source: "./media/characters/kuiper-vanrel/foot.svg",
  12594. }
  12595. },
  12596. battle: {
  12597. height: math.unit(6.824, "feet"),
  12598. name: "Battle",
  12599. image: {
  12600. source: "./media/characters/kuiper-vanrel/battle.svg",
  12601. extra: 1466 / 1327,
  12602. bottom: 29 / 1492.5
  12603. }
  12604. },
  12605. meerkui: {
  12606. height: math.unit(18, "inches"),
  12607. name: "Meerkui",
  12608. image: {
  12609. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12610. extra: 1354/1289,
  12611. bottom: 69/1423
  12612. }
  12613. },
  12614. },
  12615. [
  12616. {
  12617. name: "Normal",
  12618. height: math.unit(7 + 5 / 12, "feet"),
  12619. default: true
  12620. },
  12621. ]
  12622. ))
  12623. characterMakers.push(() => makeCharacter(
  12624. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12625. {
  12626. front: {
  12627. height: math.unit(8 + 5 / 12, "feet"),
  12628. name: "Front",
  12629. image: {
  12630. source: "./media/characters/keset-vanrel/front.svg",
  12631. extra: 1231/1148,
  12632. bottom: 82/1313
  12633. }
  12634. },
  12635. back: {
  12636. height: math.unit(8 + 5 / 12, "feet"),
  12637. name: "Back",
  12638. image: {
  12639. source: "./media/characters/keset-vanrel/back.svg",
  12640. extra: 1240/1174,
  12641. bottom: 33/1273
  12642. }
  12643. },
  12644. hand: {
  12645. height: math.unit(0.6, "meters"),
  12646. name: "Hand",
  12647. image: {
  12648. source: "./media/characters/keset-vanrel/hand.svg"
  12649. }
  12650. },
  12651. foot: {
  12652. height: math.unit(0.94978, "meters"),
  12653. name: "Foot",
  12654. image: {
  12655. source: "./media/characters/keset-vanrel/foot.svg"
  12656. }
  12657. },
  12658. battle: {
  12659. height: math.unit(7.408, "feet"),
  12660. name: "Battle",
  12661. image: {
  12662. source: "./media/characters/keset-vanrel/battle.svg",
  12663. extra: 1890 / 1386,
  12664. bottom: 73.28 / 1970
  12665. }
  12666. },
  12667. },
  12668. [
  12669. {
  12670. name: "Normal",
  12671. height: math.unit(8 + 5 / 12, "feet"),
  12672. default: true
  12673. },
  12674. ]
  12675. ))
  12676. characterMakers.push(() => makeCharacter(
  12677. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12678. {
  12679. front: {
  12680. height: math.unit(6, "feet"),
  12681. weight: math.unit(150, "lb"),
  12682. name: "Front",
  12683. image: {
  12684. source: "./media/characters/neos/front.svg",
  12685. extra: 1696 / 992,
  12686. bottom: 0.14
  12687. }
  12688. },
  12689. },
  12690. [
  12691. {
  12692. name: "Normal",
  12693. height: math.unit(54, "cm"),
  12694. default: true
  12695. },
  12696. {
  12697. name: "Macro",
  12698. height: math.unit(100, "m")
  12699. },
  12700. {
  12701. name: "Megamacro",
  12702. height: math.unit(10, "km")
  12703. },
  12704. {
  12705. name: "Megamacro+",
  12706. height: math.unit(100, "km")
  12707. },
  12708. {
  12709. name: "Gigamacro",
  12710. height: math.unit(100, "Mm")
  12711. },
  12712. {
  12713. name: "Teramacro",
  12714. height: math.unit(100, "Gm")
  12715. },
  12716. {
  12717. name: "Examacro",
  12718. height: math.unit(100, "Em")
  12719. },
  12720. {
  12721. name: "Godly",
  12722. height: math.unit(10000, "Ym")
  12723. },
  12724. {
  12725. name: "Beyond Godly",
  12726. height: math.unit(25, "multiverses")
  12727. },
  12728. ]
  12729. ))
  12730. characterMakers.push(() => makeCharacter(
  12731. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12732. {
  12733. feminine: {
  12734. height: math.unit(5, "feet"),
  12735. weight: math.unit(100, "lb"),
  12736. name: "Feminine",
  12737. image: {
  12738. source: "./media/characters/sammy-mouse/feminine.svg",
  12739. extra: 2526 / 2425,
  12740. bottom: 0.123
  12741. }
  12742. },
  12743. masculine: {
  12744. height: math.unit(5, "feet"),
  12745. weight: math.unit(100, "lb"),
  12746. name: "Masculine",
  12747. image: {
  12748. source: "./media/characters/sammy-mouse/masculine.svg",
  12749. extra: 2526 / 2425,
  12750. bottom: 0.123
  12751. }
  12752. },
  12753. },
  12754. [
  12755. {
  12756. name: "Micro",
  12757. height: math.unit(5, "inches")
  12758. },
  12759. {
  12760. name: "Normal",
  12761. height: math.unit(5, "feet"),
  12762. default: true
  12763. },
  12764. {
  12765. name: "Macro",
  12766. height: math.unit(60, "feet")
  12767. },
  12768. ]
  12769. ))
  12770. characterMakers.push(() => makeCharacter(
  12771. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12772. {
  12773. front: {
  12774. height: math.unit(4, "feet"),
  12775. weight: math.unit(50, "lb"),
  12776. name: "Front",
  12777. image: {
  12778. source: "./media/characters/kole/front.svg",
  12779. extra: 1423 / 1303,
  12780. bottom: 0.025
  12781. }
  12782. },
  12783. back: {
  12784. height: math.unit(4, "feet"),
  12785. weight: math.unit(50, "lb"),
  12786. name: "Back",
  12787. image: {
  12788. source: "./media/characters/kole/back.svg",
  12789. extra: 1426 / 1280,
  12790. bottom: 0.02
  12791. }
  12792. },
  12793. },
  12794. [
  12795. {
  12796. name: "Normal",
  12797. height: math.unit(4, "feet"),
  12798. default: true
  12799. },
  12800. ]
  12801. ))
  12802. characterMakers.push(() => makeCharacter(
  12803. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12804. {
  12805. front: {
  12806. height: math.unit(2.5, "feet"),
  12807. weight: math.unit(32, "lb"),
  12808. name: "Front",
  12809. image: {
  12810. source: "./media/characters/rufran/front.svg",
  12811. extra: 1313/885,
  12812. bottom: 94/1407
  12813. }
  12814. },
  12815. side: {
  12816. height: math.unit(2.5, "feet"),
  12817. weight: math.unit(32, "lb"),
  12818. name: "Side",
  12819. image: {
  12820. source: "./media/characters/rufran/side.svg",
  12821. extra: 1109/852,
  12822. bottom: 118/1227
  12823. }
  12824. },
  12825. back: {
  12826. height: math.unit(2.5, "feet"),
  12827. weight: math.unit(32, "lb"),
  12828. name: "Back",
  12829. image: {
  12830. source: "./media/characters/rufran/back.svg",
  12831. extra: 1280/878,
  12832. bottom: 131/1411
  12833. }
  12834. },
  12835. mouth: {
  12836. height: math.unit(1.13, "feet"),
  12837. name: "Mouth",
  12838. image: {
  12839. source: "./media/characters/rufran/mouth.svg"
  12840. }
  12841. },
  12842. foot: {
  12843. height: math.unit(1.33, "feet"),
  12844. name: "Foot",
  12845. image: {
  12846. source: "./media/characters/rufran/foot.svg"
  12847. }
  12848. },
  12849. koboldFront: {
  12850. height: math.unit(2 + 6 / 12, "feet"),
  12851. weight: math.unit(20, "lb"),
  12852. name: "Front (Kobold)",
  12853. image: {
  12854. source: "./media/characters/rufran/kobold-front.svg",
  12855. extra: 2041 / 1839,
  12856. bottom: 0.055
  12857. }
  12858. },
  12859. koboldBack: {
  12860. height: math.unit(2 + 6 / 12, "feet"),
  12861. weight: math.unit(20, "lb"),
  12862. name: "Back (Kobold)",
  12863. image: {
  12864. source: "./media/characters/rufran/kobold-back.svg",
  12865. extra: 2054 / 1839,
  12866. bottom: 0.01
  12867. }
  12868. },
  12869. koboldHand: {
  12870. height: math.unit(0.2166, "meters"),
  12871. name: "Hand (Kobold)",
  12872. image: {
  12873. source: "./media/characters/rufran/kobold-hand.svg"
  12874. }
  12875. },
  12876. koboldFoot: {
  12877. height: math.unit(0.185, "meters"),
  12878. name: "Foot (Kobold)",
  12879. image: {
  12880. source: "./media/characters/rufran/kobold-foot.svg"
  12881. }
  12882. },
  12883. },
  12884. [
  12885. {
  12886. name: "Micro",
  12887. height: math.unit(1, "inch")
  12888. },
  12889. {
  12890. name: "Normal",
  12891. height: math.unit(2 + 6 / 12, "feet"),
  12892. default: true
  12893. },
  12894. {
  12895. name: "Big",
  12896. height: math.unit(60, "feet")
  12897. },
  12898. {
  12899. name: "Macro",
  12900. height: math.unit(325, "feet")
  12901. },
  12902. ]
  12903. ))
  12904. characterMakers.push(() => makeCharacter(
  12905. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12906. {
  12907. front: {
  12908. height: math.unit(0.3, "meters"),
  12909. weight: math.unit(3.5, "kg"),
  12910. name: "Front",
  12911. image: {
  12912. source: "./media/characters/chip/front.svg",
  12913. extra: 748 / 674
  12914. }
  12915. },
  12916. },
  12917. [
  12918. {
  12919. name: "Micro",
  12920. height: math.unit(1, "inch"),
  12921. default: true
  12922. },
  12923. ]
  12924. ))
  12925. characterMakers.push(() => makeCharacter(
  12926. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12927. {
  12928. side: {
  12929. height: math.unit(2.3, "meters"),
  12930. weight: math.unit(3500, "lb"),
  12931. name: "Side",
  12932. image: {
  12933. source: "./media/characters/torvid/side.svg",
  12934. extra: 1972 / 722,
  12935. bottom: 0.035
  12936. }
  12937. },
  12938. },
  12939. [
  12940. {
  12941. name: "Normal",
  12942. height: math.unit(2.3, "meters"),
  12943. default: true
  12944. },
  12945. ]
  12946. ))
  12947. characterMakers.push(() => makeCharacter(
  12948. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12949. {
  12950. front: {
  12951. height: math.unit(2, "meters"),
  12952. weight: math.unit(150.5, "kg"),
  12953. name: "Front",
  12954. image: {
  12955. source: "./media/characters/susan/front.svg",
  12956. extra: 693 / 635,
  12957. bottom: 0.05
  12958. }
  12959. },
  12960. },
  12961. [
  12962. {
  12963. name: "Megamacro",
  12964. height: math.unit(505, "miles"),
  12965. default: true
  12966. },
  12967. ]
  12968. ))
  12969. characterMakers.push(() => makeCharacter(
  12970. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12971. {
  12972. front: {
  12973. height: math.unit(6, "feet"),
  12974. weight: math.unit(150, "lb"),
  12975. name: "Front",
  12976. image: {
  12977. source: "./media/characters/raindrops/front.svg",
  12978. extra: 2655 / 2461,
  12979. bottom: 49 / 2705
  12980. }
  12981. },
  12982. back: {
  12983. height: math.unit(6, "feet"),
  12984. weight: math.unit(150, "lb"),
  12985. name: "Back",
  12986. image: {
  12987. source: "./media/characters/raindrops/back.svg",
  12988. extra: 2574 / 2400,
  12989. bottom: 65 / 2634
  12990. }
  12991. },
  12992. },
  12993. [
  12994. {
  12995. name: "Micro",
  12996. height: math.unit(6, "inches")
  12997. },
  12998. {
  12999. name: "Normal",
  13000. height: math.unit(6 + 2 / 12, "feet")
  13001. },
  13002. {
  13003. name: "Macro",
  13004. height: math.unit(131, "feet"),
  13005. default: true
  13006. },
  13007. {
  13008. name: "Megamacro",
  13009. height: math.unit(15, "miles")
  13010. },
  13011. {
  13012. name: "Gigamacro",
  13013. height: math.unit(4000, "miles")
  13014. },
  13015. {
  13016. name: "Teramacro",
  13017. height: math.unit(315000, "miles")
  13018. },
  13019. ]
  13020. ))
  13021. characterMakers.push(() => makeCharacter(
  13022. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13023. {
  13024. front: {
  13025. height: math.unit(2.794, "meters"),
  13026. weight: math.unit(325, "kg"),
  13027. name: "Front",
  13028. image: {
  13029. source: "./media/characters/tezwa/front.svg",
  13030. extra: 2083 / 1906,
  13031. bottom: 0.031
  13032. }
  13033. },
  13034. foot: {
  13035. height: math.unit(0.687, "meters"),
  13036. name: "Foot",
  13037. image: {
  13038. source: "./media/characters/tezwa/foot.svg"
  13039. }
  13040. },
  13041. },
  13042. [
  13043. {
  13044. name: "Normal",
  13045. height: math.unit(9 + 2 / 12, "feet"),
  13046. default: true
  13047. },
  13048. ]
  13049. ))
  13050. characterMakers.push(() => makeCharacter(
  13051. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13052. {
  13053. front: {
  13054. height: math.unit(58, "feet"),
  13055. weight: math.unit(89000, "lb"),
  13056. name: "Front",
  13057. image: {
  13058. source: "./media/characters/typhus/front.svg",
  13059. extra: 816 / 800,
  13060. bottom: 0.065
  13061. }
  13062. },
  13063. },
  13064. [
  13065. {
  13066. name: "Macro",
  13067. height: math.unit(58, "feet"),
  13068. default: true
  13069. },
  13070. ]
  13071. ))
  13072. characterMakers.push(() => makeCharacter(
  13073. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13074. {
  13075. front: {
  13076. height: math.unit(12, "feet"),
  13077. weight: math.unit(6, "tonnes"),
  13078. name: "Front",
  13079. image: {
  13080. source: "./media/characters/lyra-von-wulf/front.svg",
  13081. extra: 1,
  13082. bottom: 0.10
  13083. }
  13084. },
  13085. frontMecha: {
  13086. height: math.unit(12, "feet"),
  13087. weight: math.unit(12, "tonnes"),
  13088. name: "Front (Mecha)",
  13089. image: {
  13090. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13091. extra: 1,
  13092. bottom: 0.042
  13093. }
  13094. },
  13095. maw: {
  13096. height: math.unit(2.2, "feet"),
  13097. name: "Maw",
  13098. image: {
  13099. source: "./media/characters/lyra-von-wulf/maw.svg"
  13100. }
  13101. },
  13102. },
  13103. [
  13104. {
  13105. name: "Normal",
  13106. height: math.unit(12, "feet"),
  13107. default: true
  13108. },
  13109. {
  13110. name: "Classic",
  13111. height: math.unit(50, "feet")
  13112. },
  13113. {
  13114. name: "Macro",
  13115. height: math.unit(500, "feet")
  13116. },
  13117. {
  13118. name: "Megamacro",
  13119. height: math.unit(1, "mile")
  13120. },
  13121. {
  13122. name: "Gigamacro",
  13123. height: math.unit(400, "miles")
  13124. },
  13125. {
  13126. name: "Teramacro",
  13127. height: math.unit(22000, "miles")
  13128. },
  13129. {
  13130. name: "Solarmacro",
  13131. height: math.unit(8600000, "miles")
  13132. },
  13133. {
  13134. name: "Galactic",
  13135. height: math.unit(1057000, "lightyears")
  13136. },
  13137. ]
  13138. ))
  13139. characterMakers.push(() => makeCharacter(
  13140. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13141. {
  13142. front: {
  13143. height: math.unit(6 + 10 / 12, "feet"),
  13144. weight: math.unit(150, "lb"),
  13145. name: "Front",
  13146. image: {
  13147. source: "./media/characters/dixon/front.svg",
  13148. extra: 3361 / 3209,
  13149. bottom: 0.01
  13150. }
  13151. },
  13152. },
  13153. [
  13154. {
  13155. name: "Normal",
  13156. height: math.unit(6 + 10 / 12, "feet"),
  13157. default: true
  13158. },
  13159. {
  13160. name: "Big",
  13161. height: math.unit(12, "meters")
  13162. },
  13163. {
  13164. name: "Macro",
  13165. height: math.unit(500, "meters")
  13166. },
  13167. {
  13168. name: "Megamacro",
  13169. height: math.unit(2, "km")
  13170. },
  13171. ]
  13172. ))
  13173. characterMakers.push(() => makeCharacter(
  13174. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13175. {
  13176. front: {
  13177. height: math.unit(185, "cm"),
  13178. weight: math.unit(68, "kg"),
  13179. name: "Front",
  13180. image: {
  13181. source: "./media/characters/kauko/front.svg",
  13182. extra: 1455 / 1421,
  13183. bottom: 0.03
  13184. }
  13185. },
  13186. back: {
  13187. height: math.unit(185, "cm"),
  13188. weight: math.unit(68, "kg"),
  13189. name: "Back",
  13190. image: {
  13191. source: "./media/characters/kauko/back.svg",
  13192. extra: 1455 / 1421,
  13193. bottom: 0.004
  13194. }
  13195. },
  13196. },
  13197. [
  13198. {
  13199. name: "Normal",
  13200. height: math.unit(185, "cm"),
  13201. default: true
  13202. },
  13203. ]
  13204. ))
  13205. characterMakers.push(() => makeCharacter(
  13206. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13207. {
  13208. front: {
  13209. height: math.unit(6, "feet"),
  13210. weight: math.unit(150, "kg"),
  13211. name: "Front",
  13212. image: {
  13213. source: "./media/characters/varg/front.svg",
  13214. extra: 1108 / 1018,
  13215. bottom: 0.0375
  13216. }
  13217. },
  13218. },
  13219. [
  13220. {
  13221. name: "Normal",
  13222. height: math.unit(5, "meters")
  13223. },
  13224. {
  13225. name: "Macro",
  13226. height: math.unit(200, "meters")
  13227. },
  13228. {
  13229. name: "Megamacro",
  13230. height: math.unit(20, "kilometers")
  13231. },
  13232. {
  13233. name: "True Size",
  13234. height: math.unit(211, "km"),
  13235. default: true
  13236. },
  13237. {
  13238. name: "Gigamacro",
  13239. height: math.unit(1000, "km")
  13240. },
  13241. {
  13242. name: "Gigamacro+",
  13243. height: math.unit(8000, "km")
  13244. },
  13245. {
  13246. name: "Teramacro",
  13247. height: math.unit(1000000, "km")
  13248. },
  13249. ]
  13250. ))
  13251. characterMakers.push(() => makeCharacter(
  13252. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13253. {
  13254. front: {
  13255. height: math.unit(7 + 7 / 12, "feet"),
  13256. weight: math.unit(267, "lb"),
  13257. name: "Front",
  13258. image: {
  13259. source: "./media/characters/dayza/front.svg",
  13260. extra: 1262 / 1200,
  13261. bottom: 0.035
  13262. }
  13263. },
  13264. side: {
  13265. height: math.unit(7 + 7 / 12, "feet"),
  13266. weight: math.unit(267, "lb"),
  13267. name: "Side",
  13268. image: {
  13269. source: "./media/characters/dayza/side.svg",
  13270. extra: 1295 / 1245,
  13271. bottom: 0.05
  13272. }
  13273. },
  13274. back: {
  13275. height: math.unit(7 + 7 / 12, "feet"),
  13276. weight: math.unit(267, "lb"),
  13277. name: "Back",
  13278. image: {
  13279. source: "./media/characters/dayza/back.svg",
  13280. extra: 1241 / 1170
  13281. }
  13282. },
  13283. },
  13284. [
  13285. {
  13286. name: "Normal",
  13287. height: math.unit(7 + 7 / 12, "feet"),
  13288. default: true
  13289. },
  13290. {
  13291. name: "Macro",
  13292. height: math.unit(155, "feet")
  13293. },
  13294. ]
  13295. ))
  13296. characterMakers.push(() => makeCharacter(
  13297. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13298. {
  13299. front: {
  13300. height: math.unit(6 + 5 / 12, "feet"),
  13301. weight: math.unit(160, "lb"),
  13302. name: "Front",
  13303. image: {
  13304. source: "./media/characters/xanthos/front.svg",
  13305. extra: 1,
  13306. bottom: 0.04
  13307. }
  13308. },
  13309. back: {
  13310. height: math.unit(6 + 5 / 12, "feet"),
  13311. weight: math.unit(160, "lb"),
  13312. name: "Back",
  13313. image: {
  13314. source: "./media/characters/xanthos/back.svg",
  13315. extra: 1,
  13316. bottom: 0.03
  13317. }
  13318. },
  13319. hand: {
  13320. height: math.unit(0.928, "feet"),
  13321. name: "Hand",
  13322. image: {
  13323. source: "./media/characters/xanthos/hand.svg"
  13324. }
  13325. },
  13326. foot: {
  13327. height: math.unit(1.286, "feet"),
  13328. name: "Foot",
  13329. image: {
  13330. source: "./media/characters/xanthos/foot.svg"
  13331. }
  13332. },
  13333. },
  13334. [
  13335. {
  13336. name: "Normal",
  13337. height: math.unit(6 + 5 / 12, "feet"),
  13338. default: true
  13339. },
  13340. {
  13341. name: "Normal+",
  13342. height: math.unit(6, "meters")
  13343. },
  13344. {
  13345. name: "Macro",
  13346. height: math.unit(40, "feet")
  13347. },
  13348. {
  13349. name: "Macro+",
  13350. height: math.unit(200, "meters")
  13351. },
  13352. {
  13353. name: "Megamacro",
  13354. height: math.unit(20, "km")
  13355. },
  13356. {
  13357. name: "Megamacro+",
  13358. height: math.unit(100, "km")
  13359. },
  13360. {
  13361. name: "Gigamacro",
  13362. height: math.unit(200, "megameters")
  13363. },
  13364. {
  13365. name: "Gigamacro+",
  13366. height: math.unit(1.5, "gigameters")
  13367. },
  13368. ]
  13369. ))
  13370. characterMakers.push(() => makeCharacter(
  13371. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13372. {
  13373. front: {
  13374. height: math.unit(6 + 3 / 12, "feet"),
  13375. weight: math.unit(215, "lb"),
  13376. name: "Front",
  13377. image: {
  13378. source: "./media/characters/grynn/front.svg",
  13379. extra: 4627 / 4209,
  13380. bottom: 0.047
  13381. }
  13382. },
  13383. },
  13384. [
  13385. {
  13386. name: "Micro",
  13387. height: math.unit(6, "inches")
  13388. },
  13389. {
  13390. name: "Normal",
  13391. height: math.unit(6 + 3 / 12, "feet"),
  13392. default: true
  13393. },
  13394. {
  13395. name: "Big",
  13396. height: math.unit(104, "feet")
  13397. },
  13398. {
  13399. name: "Macro",
  13400. height: math.unit(944, "feet")
  13401. },
  13402. {
  13403. name: "Macro+",
  13404. height: math.unit(9480, "feet")
  13405. },
  13406. {
  13407. name: "Megamacro",
  13408. height: math.unit(78752, "feet")
  13409. },
  13410. {
  13411. name: "Megamacro+",
  13412. height: math.unit(630128, "feet")
  13413. },
  13414. {
  13415. name: "Megamacro++",
  13416. height: math.unit(3150695, "feet")
  13417. },
  13418. ]
  13419. ))
  13420. characterMakers.push(() => makeCharacter(
  13421. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13422. {
  13423. front: {
  13424. height: math.unit(7 + 5 / 12, "feet"),
  13425. weight: math.unit(450, "lb"),
  13426. name: "Front",
  13427. image: {
  13428. source: "./media/characters/mocha-aura/front.svg",
  13429. extra: 1907 / 1817,
  13430. bottom: 0.04
  13431. }
  13432. },
  13433. back: {
  13434. height: math.unit(7 + 5 / 12, "feet"),
  13435. weight: math.unit(450, "lb"),
  13436. name: "Back",
  13437. image: {
  13438. source: "./media/characters/mocha-aura/back.svg",
  13439. extra: 1900 / 1825,
  13440. bottom: 0.045
  13441. }
  13442. },
  13443. },
  13444. [
  13445. {
  13446. name: "Nano",
  13447. height: math.unit(1, "nm")
  13448. },
  13449. {
  13450. name: "Megamicro",
  13451. height: math.unit(1, "mm")
  13452. },
  13453. {
  13454. name: "Micro",
  13455. height: math.unit(3, "inches")
  13456. },
  13457. {
  13458. name: "Normal",
  13459. height: math.unit(7 + 5 / 12, "feet"),
  13460. default: true
  13461. },
  13462. {
  13463. name: "Macro",
  13464. height: math.unit(30, "feet")
  13465. },
  13466. {
  13467. name: "Megamacro",
  13468. height: math.unit(3500, "feet")
  13469. },
  13470. {
  13471. name: "Teramacro",
  13472. height: math.unit(500000, "miles")
  13473. },
  13474. {
  13475. name: "Petamacro",
  13476. height: math.unit(50000000000000000, "parsecs")
  13477. },
  13478. ]
  13479. ))
  13480. characterMakers.push(() => makeCharacter(
  13481. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13482. {
  13483. front: {
  13484. height: math.unit(6, "feet"),
  13485. weight: math.unit(150, "lb"),
  13486. name: "Front",
  13487. image: {
  13488. source: "./media/characters/ilisha-devya/front.svg",
  13489. extra: 1053/1049,
  13490. bottom: 270/1323
  13491. }
  13492. },
  13493. back: {
  13494. height: math.unit(6, "feet"),
  13495. weight: math.unit(150, "lb"),
  13496. name: "Back",
  13497. image: {
  13498. source: "./media/characters/ilisha-devya/back.svg",
  13499. extra: 1131/1128,
  13500. bottom: 39/1170
  13501. }
  13502. },
  13503. },
  13504. [
  13505. {
  13506. name: "Macro",
  13507. height: math.unit(500, "feet"),
  13508. default: true
  13509. },
  13510. {
  13511. name: "Megamacro",
  13512. height: math.unit(10, "miles")
  13513. },
  13514. {
  13515. name: "Gigamacro",
  13516. height: math.unit(100000, "miles")
  13517. },
  13518. {
  13519. name: "Examacro",
  13520. height: math.unit(1e9, "lightyears")
  13521. },
  13522. {
  13523. name: "Omniversal",
  13524. height: math.unit(1e33, "lightyears")
  13525. },
  13526. {
  13527. name: "Beyond Infinite",
  13528. height: math.unit(1e100, "lightyears")
  13529. },
  13530. ]
  13531. ))
  13532. characterMakers.push(() => makeCharacter(
  13533. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13534. {
  13535. Side: {
  13536. height: math.unit(6, "feet"),
  13537. weight: math.unit(150, "lb"),
  13538. name: "Side",
  13539. image: {
  13540. source: "./media/characters/mira/side.svg",
  13541. extra: 900 / 799,
  13542. bottom: 0.02
  13543. }
  13544. },
  13545. },
  13546. [
  13547. {
  13548. name: "Human Size",
  13549. height: math.unit(6, "feet")
  13550. },
  13551. {
  13552. name: "Macro",
  13553. height: math.unit(100, "feet"),
  13554. default: true
  13555. },
  13556. {
  13557. name: "Megamacro",
  13558. height: math.unit(10, "miles")
  13559. },
  13560. {
  13561. name: "Gigamacro",
  13562. height: math.unit(25000, "miles")
  13563. },
  13564. {
  13565. name: "Teramacro",
  13566. height: math.unit(300, "AU")
  13567. },
  13568. {
  13569. name: "Full Size",
  13570. height: math.unit(4.5e10, "lightyears")
  13571. },
  13572. ]
  13573. ))
  13574. characterMakers.push(() => makeCharacter(
  13575. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13576. {
  13577. front: {
  13578. height: math.unit(6, "feet"),
  13579. weight: math.unit(150, "lb"),
  13580. name: "Front",
  13581. image: {
  13582. source: "./media/characters/holly/front.svg",
  13583. extra: 639 / 606
  13584. }
  13585. },
  13586. back: {
  13587. height: math.unit(6, "feet"),
  13588. weight: math.unit(150, "lb"),
  13589. name: "Back",
  13590. image: {
  13591. source: "./media/characters/holly/back.svg",
  13592. extra: 623 / 598
  13593. }
  13594. },
  13595. frontWorking: {
  13596. height: math.unit(6, "feet"),
  13597. weight: math.unit(150, "lb"),
  13598. name: "Front (Working)",
  13599. image: {
  13600. source: "./media/characters/holly/front-working.svg",
  13601. extra: 607 / 577,
  13602. bottom: 0.048
  13603. }
  13604. },
  13605. },
  13606. [
  13607. {
  13608. name: "Normal",
  13609. height: math.unit(12 + 3 / 12, "feet"),
  13610. default: true
  13611. },
  13612. ]
  13613. ))
  13614. characterMakers.push(() => makeCharacter(
  13615. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13616. {
  13617. front: {
  13618. height: math.unit(6, "feet"),
  13619. weight: math.unit(150, "lb"),
  13620. name: "Front",
  13621. image: {
  13622. source: "./media/characters/porter/front.svg",
  13623. extra: 1,
  13624. bottom: 0.01
  13625. }
  13626. },
  13627. frontRobes: {
  13628. height: math.unit(6, "feet"),
  13629. weight: math.unit(150, "lb"),
  13630. name: "Front (Robes)",
  13631. image: {
  13632. source: "./media/characters/porter/front-robes.svg",
  13633. extra: 1.01,
  13634. bottom: 0.01
  13635. }
  13636. },
  13637. },
  13638. [
  13639. {
  13640. name: "Normal",
  13641. height: math.unit(11 + 9 / 12, "feet"),
  13642. default: true
  13643. },
  13644. ]
  13645. ))
  13646. characterMakers.push(() => makeCharacter(
  13647. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13648. {
  13649. legendary: {
  13650. height: math.unit(6, "feet"),
  13651. weight: math.unit(150, "lb"),
  13652. name: "Legendary",
  13653. image: {
  13654. source: "./media/characters/lucy/legendary.svg",
  13655. extra: 1355 / 1100,
  13656. bottom: 0.045
  13657. }
  13658. },
  13659. },
  13660. [
  13661. {
  13662. name: "Legendary",
  13663. height: math.unit(86882 * 2, "miles"),
  13664. default: true
  13665. },
  13666. ]
  13667. ))
  13668. characterMakers.push(() => makeCharacter(
  13669. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13670. {
  13671. front: {
  13672. height: math.unit(6, "feet"),
  13673. weight: math.unit(150, "lb"),
  13674. name: "Front",
  13675. image: {
  13676. source: "./media/characters/drusilla/front.svg",
  13677. extra: 678 / 635,
  13678. bottom: 0.03
  13679. }
  13680. },
  13681. back: {
  13682. height: math.unit(6, "feet"),
  13683. weight: math.unit(150, "lb"),
  13684. name: "Back",
  13685. image: {
  13686. source: "./media/characters/drusilla/back.svg",
  13687. extra: 678 / 635,
  13688. bottom: 0.005
  13689. }
  13690. },
  13691. },
  13692. [
  13693. {
  13694. name: "Macro",
  13695. height: math.unit(100, "feet")
  13696. },
  13697. {
  13698. name: "Canon Height",
  13699. height: math.unit(2000, "feet"),
  13700. default: true
  13701. },
  13702. ]
  13703. ))
  13704. characterMakers.push(() => makeCharacter(
  13705. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13706. {
  13707. front: {
  13708. height: math.unit(6, "feet"),
  13709. weight: math.unit(180, "lb"),
  13710. name: "Front",
  13711. image: {
  13712. source: "./media/characters/renard-thatch/front.svg",
  13713. extra: 2411 / 2275,
  13714. bottom: 0.01
  13715. }
  13716. },
  13717. frontPosing: {
  13718. height: math.unit(6, "feet"),
  13719. weight: math.unit(180, "lb"),
  13720. name: "Front (Posing)",
  13721. image: {
  13722. source: "./media/characters/renard-thatch/front-posing.svg",
  13723. extra: 2381 / 2261,
  13724. bottom: 0.01
  13725. }
  13726. },
  13727. back: {
  13728. height: math.unit(6, "feet"),
  13729. weight: math.unit(180, "lb"),
  13730. name: "Back",
  13731. image: {
  13732. source: "./media/characters/renard-thatch/back.svg",
  13733. extra: 2428 / 2288
  13734. }
  13735. },
  13736. },
  13737. [
  13738. {
  13739. name: "Micro",
  13740. height: math.unit(3, "inches")
  13741. },
  13742. {
  13743. name: "Default",
  13744. height: math.unit(6, "feet"),
  13745. default: true
  13746. },
  13747. {
  13748. name: "Macro",
  13749. height: math.unit(75, "feet")
  13750. },
  13751. ]
  13752. ))
  13753. characterMakers.push(() => makeCharacter(
  13754. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13755. {
  13756. front: {
  13757. height: math.unit(1450, "feet"),
  13758. weight: math.unit(1.21e6, "tons"),
  13759. name: "Front",
  13760. image: {
  13761. source: "./media/characters/sekvra/front.svg",
  13762. extra: 1193/1190,
  13763. bottom: 78/1271
  13764. }
  13765. },
  13766. side: {
  13767. height: math.unit(1450, "feet"),
  13768. weight: math.unit(1.21e6, "tons"),
  13769. name: "Side",
  13770. image: {
  13771. source: "./media/characters/sekvra/side.svg",
  13772. extra: 1193/1190,
  13773. bottom: 52/1245
  13774. }
  13775. },
  13776. back: {
  13777. height: math.unit(1450, "feet"),
  13778. weight: math.unit(1.21e6, "tons"),
  13779. name: "Back",
  13780. image: {
  13781. source: "./media/characters/sekvra/back.svg",
  13782. extra: 1219/1216,
  13783. bottom: 21/1240
  13784. }
  13785. },
  13786. frontClothed: {
  13787. height: math.unit(1450, "feet"),
  13788. weight: math.unit(1.21e6, "tons"),
  13789. name: "Front (Clothed)",
  13790. image: {
  13791. source: "./media/characters/sekvra/front-clothed.svg",
  13792. extra: 1192/1189,
  13793. bottom: 79/1271
  13794. }
  13795. },
  13796. },
  13797. [
  13798. {
  13799. name: "Macro",
  13800. height: math.unit(1450, "feet"),
  13801. default: true
  13802. },
  13803. {
  13804. name: "Megamacro",
  13805. height: math.unit(15000, "feet")
  13806. },
  13807. ]
  13808. ))
  13809. characterMakers.push(() => makeCharacter(
  13810. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13811. {
  13812. front: {
  13813. height: math.unit(6, "feet"),
  13814. weight: math.unit(150, "lb"),
  13815. name: "Front",
  13816. image: {
  13817. source: "./media/characters/carmine/front.svg",
  13818. extra: 1,
  13819. bottom: 0.035
  13820. }
  13821. },
  13822. frontArmor: {
  13823. height: math.unit(6, "feet"),
  13824. weight: math.unit(150, "lb"),
  13825. name: "Front (Armor)",
  13826. image: {
  13827. source: "./media/characters/carmine/front-armor.svg",
  13828. extra: 1,
  13829. bottom: 0.035
  13830. }
  13831. },
  13832. },
  13833. [
  13834. {
  13835. name: "Large",
  13836. height: math.unit(1, "mile")
  13837. },
  13838. {
  13839. name: "Huge",
  13840. height: math.unit(40, "miles"),
  13841. default: true
  13842. },
  13843. {
  13844. name: "Colossal",
  13845. height: math.unit(2500, "miles")
  13846. },
  13847. ]
  13848. ))
  13849. characterMakers.push(() => makeCharacter(
  13850. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13851. {
  13852. front: {
  13853. height: math.unit(6, "feet"),
  13854. weight: math.unit(150, "lb"),
  13855. name: "Front",
  13856. image: {
  13857. source: "./media/characters/elyssia/front.svg",
  13858. extra: 2201 / 2035,
  13859. bottom: 0.05
  13860. }
  13861. },
  13862. frontClothed: {
  13863. height: math.unit(6, "feet"),
  13864. weight: math.unit(150, "lb"),
  13865. name: "Front (Clothed)",
  13866. image: {
  13867. source: "./media/characters/elyssia/front-clothed.svg",
  13868. extra: 2201 / 2035,
  13869. bottom: 0.05
  13870. }
  13871. },
  13872. back: {
  13873. height: math.unit(6, "feet"),
  13874. weight: math.unit(150, "lb"),
  13875. name: "Back",
  13876. image: {
  13877. source: "./media/characters/elyssia/back.svg",
  13878. extra: 2201 / 2035,
  13879. bottom: 0.013
  13880. }
  13881. },
  13882. },
  13883. [
  13884. {
  13885. name: "Smaller",
  13886. height: math.unit(150, "feet")
  13887. },
  13888. {
  13889. name: "Standard",
  13890. height: math.unit(1400, "feet"),
  13891. default: true
  13892. },
  13893. {
  13894. name: "Distracted",
  13895. height: math.unit(15000, "feet")
  13896. },
  13897. ]
  13898. ))
  13899. characterMakers.push(() => makeCharacter(
  13900. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13901. {
  13902. front: {
  13903. height: math.unit(7 + 4/12, "feet"),
  13904. weight: math.unit(690, "lb"),
  13905. name: "Front",
  13906. image: {
  13907. source: "./media/characters/geno-maxwell/front.svg",
  13908. extra: 984/856,
  13909. bottom: 87/1071
  13910. }
  13911. },
  13912. back: {
  13913. height: math.unit(7 + 4/12, "feet"),
  13914. weight: math.unit(690, "lb"),
  13915. name: "Back",
  13916. image: {
  13917. source: "./media/characters/geno-maxwell/back.svg",
  13918. extra: 981/854,
  13919. bottom: 57/1038
  13920. }
  13921. },
  13922. frontCostume: {
  13923. height: math.unit(7 + 4/12, "feet"),
  13924. weight: math.unit(690, "lb"),
  13925. name: "Front (Costume)",
  13926. image: {
  13927. source: "./media/characters/geno-maxwell/front-costume.svg",
  13928. extra: 984/856,
  13929. bottom: 87/1071
  13930. }
  13931. },
  13932. backcostume: {
  13933. height: math.unit(7 + 4/12, "feet"),
  13934. weight: math.unit(690, "lb"),
  13935. name: "Back (Costume)",
  13936. image: {
  13937. source: "./media/characters/geno-maxwell/back-costume.svg",
  13938. extra: 981/854,
  13939. bottom: 57/1038
  13940. }
  13941. },
  13942. },
  13943. [
  13944. {
  13945. name: "Micro",
  13946. height: math.unit(3, "inches")
  13947. },
  13948. {
  13949. name: "Normal",
  13950. height: math.unit(7 + 4 / 12, "feet"),
  13951. default: true
  13952. },
  13953. {
  13954. name: "Macro",
  13955. height: math.unit(220, "feet")
  13956. },
  13957. {
  13958. name: "Megamacro",
  13959. height: math.unit(11, "miles")
  13960. },
  13961. ]
  13962. ))
  13963. characterMakers.push(() => makeCharacter(
  13964. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13965. {
  13966. front: {
  13967. height: math.unit(7 + 4/12, "feet"),
  13968. weight: math.unit(750, "lb"),
  13969. name: "Front",
  13970. image: {
  13971. source: "./media/characters/regena-maxwell/front.svg",
  13972. extra: 984/856,
  13973. bottom: 87/1071
  13974. }
  13975. },
  13976. back: {
  13977. height: math.unit(7 + 4/12, "feet"),
  13978. weight: math.unit(750, "lb"),
  13979. name: "Back",
  13980. image: {
  13981. source: "./media/characters/regena-maxwell/back.svg",
  13982. extra: 981/854,
  13983. bottom: 57/1038
  13984. }
  13985. },
  13986. frontCostume: {
  13987. height: math.unit(7 + 4/12, "feet"),
  13988. weight: math.unit(750, "lb"),
  13989. name: "Front (Costume)",
  13990. image: {
  13991. source: "./media/characters/regena-maxwell/front-costume.svg",
  13992. extra: 984/856,
  13993. bottom: 87/1071
  13994. }
  13995. },
  13996. backcostume: {
  13997. height: math.unit(7 + 4/12, "feet"),
  13998. weight: math.unit(750, "lb"),
  13999. name: "Back (Costume)",
  14000. image: {
  14001. source: "./media/characters/regena-maxwell/back-costume.svg",
  14002. extra: 981/854,
  14003. bottom: 57/1038
  14004. }
  14005. },
  14006. },
  14007. [
  14008. {
  14009. name: "Normal",
  14010. height: math.unit(7 + 4 / 12, "feet"),
  14011. default: true
  14012. },
  14013. {
  14014. name: "Macro",
  14015. height: math.unit(220, "feet")
  14016. },
  14017. {
  14018. name: "Megamacro",
  14019. height: math.unit(11, "miles")
  14020. },
  14021. ]
  14022. ))
  14023. characterMakers.push(() => makeCharacter(
  14024. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14025. {
  14026. front: {
  14027. height: math.unit(6, "feet"),
  14028. weight: math.unit(150, "lb"),
  14029. name: "Front",
  14030. image: {
  14031. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14032. extra: 860 / 690,
  14033. bottom: 0.03
  14034. }
  14035. },
  14036. },
  14037. [
  14038. {
  14039. name: "Normal",
  14040. height: math.unit(1.7, "meters"),
  14041. default: true
  14042. },
  14043. ]
  14044. ))
  14045. characterMakers.push(() => makeCharacter(
  14046. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14047. {
  14048. front: {
  14049. height: math.unit(6, "feet"),
  14050. weight: math.unit(150, "lb"),
  14051. name: "Front",
  14052. image: {
  14053. source: "./media/characters/quilly/front.svg",
  14054. extra: 890 / 776
  14055. }
  14056. },
  14057. },
  14058. [
  14059. {
  14060. name: "Gigamacro",
  14061. height: math.unit(404090, "miles"),
  14062. default: true
  14063. },
  14064. ]
  14065. ))
  14066. characterMakers.push(() => makeCharacter(
  14067. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14068. {
  14069. front: {
  14070. height: math.unit(7 + 8 / 12, "feet"),
  14071. weight: math.unit(350, "lb"),
  14072. name: "Front",
  14073. image: {
  14074. source: "./media/characters/tempest/front.svg",
  14075. extra: 1175 / 1086,
  14076. bottom: 0.02
  14077. }
  14078. },
  14079. },
  14080. [
  14081. {
  14082. name: "Normal",
  14083. height: math.unit(7 + 8 / 12, "feet"),
  14084. default: true
  14085. },
  14086. ]
  14087. ))
  14088. characterMakers.push(() => makeCharacter(
  14089. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14090. {
  14091. side: {
  14092. height: math.unit(4 + 5 / 12, "feet"),
  14093. weight: math.unit(80, "lb"),
  14094. name: "Side",
  14095. image: {
  14096. source: "./media/characters/rodger/side.svg",
  14097. extra: 1235 / 1118
  14098. }
  14099. },
  14100. },
  14101. [
  14102. {
  14103. name: "Micro",
  14104. height: math.unit(1, "inch")
  14105. },
  14106. {
  14107. name: "Normal",
  14108. height: math.unit(4 + 5 / 12, "feet"),
  14109. default: true
  14110. },
  14111. {
  14112. name: "Macro",
  14113. height: math.unit(120, "feet")
  14114. },
  14115. ]
  14116. ))
  14117. characterMakers.push(() => makeCharacter(
  14118. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14119. {
  14120. front: {
  14121. height: math.unit(6, "feet"),
  14122. weight: math.unit(150, "lb"),
  14123. name: "Front",
  14124. image: {
  14125. source: "./media/characters/danyel/front.svg",
  14126. extra: 1185 / 1123,
  14127. bottom: 0.05
  14128. }
  14129. },
  14130. },
  14131. [
  14132. {
  14133. name: "Shrunken",
  14134. height: math.unit(0.5, "mm")
  14135. },
  14136. {
  14137. name: "Micro",
  14138. height: math.unit(1, "mm"),
  14139. default: true
  14140. },
  14141. {
  14142. name: "Upsized",
  14143. height: math.unit(5 + 5 / 12, "feet")
  14144. },
  14145. ]
  14146. ))
  14147. characterMakers.push(() => makeCharacter(
  14148. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14149. {
  14150. front: {
  14151. height: math.unit(5 + 6 / 12, "feet"),
  14152. weight: math.unit(200, "lb"),
  14153. name: "Front",
  14154. image: {
  14155. source: "./media/characters/vivian-bijoux/front.svg",
  14156. extra: 1217/1209,
  14157. bottom: 76/1293
  14158. }
  14159. },
  14160. back: {
  14161. height: math.unit(5 + 6 / 12, "feet"),
  14162. weight: math.unit(200, "lb"),
  14163. name: "Back",
  14164. image: {
  14165. source: "./media/characters/vivian-bijoux/back.svg",
  14166. extra: 1214/1208,
  14167. bottom: 51/1265
  14168. }
  14169. },
  14170. dressed: {
  14171. height: math.unit(5 + 6 / 12, "feet"),
  14172. weight: math.unit(200, "lb"),
  14173. name: "Dressed",
  14174. image: {
  14175. source: "./media/characters/vivian-bijoux/dressed.svg",
  14176. extra: 1217/1209,
  14177. bottom: 76/1293
  14178. }
  14179. },
  14180. },
  14181. [
  14182. {
  14183. name: "Normal",
  14184. height: math.unit(5 + 6 / 12, "feet"),
  14185. default: true
  14186. },
  14187. {
  14188. name: "Bad Dream",
  14189. height: math.unit(500, "feet")
  14190. },
  14191. {
  14192. name: "Nightmare",
  14193. height: math.unit(500, "miles")
  14194. },
  14195. ]
  14196. ))
  14197. characterMakers.push(() => makeCharacter(
  14198. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14199. {
  14200. front: {
  14201. height: math.unit(6 + 1 / 12, "feet"),
  14202. weight: math.unit(260, "lb"),
  14203. name: "Front",
  14204. image: {
  14205. source: "./media/characters/zeta/front.svg",
  14206. extra: 1968 / 1889,
  14207. bottom: 0.06
  14208. }
  14209. },
  14210. back: {
  14211. height: math.unit(6 + 1 / 12, "feet"),
  14212. weight: math.unit(260, "lb"),
  14213. name: "Back",
  14214. image: {
  14215. source: "./media/characters/zeta/back.svg",
  14216. extra: 1944 / 1858,
  14217. bottom: 0.03
  14218. }
  14219. },
  14220. hand: {
  14221. height: math.unit(1.112, "feet"),
  14222. name: "Hand",
  14223. image: {
  14224. source: "./media/characters/zeta/hand.svg"
  14225. }
  14226. },
  14227. foot: {
  14228. height: math.unit(1.48, "feet"),
  14229. name: "Foot",
  14230. image: {
  14231. source: "./media/characters/zeta/foot.svg"
  14232. }
  14233. },
  14234. },
  14235. [
  14236. {
  14237. name: "Micro",
  14238. height: math.unit(6, "inches")
  14239. },
  14240. {
  14241. name: "Normal",
  14242. height: math.unit(6 + 1 / 12, "feet"),
  14243. default: true
  14244. },
  14245. {
  14246. name: "Macro",
  14247. height: math.unit(20, "feet")
  14248. },
  14249. ]
  14250. ))
  14251. characterMakers.push(() => makeCharacter(
  14252. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14253. {
  14254. front: {
  14255. height: math.unit(6, "feet"),
  14256. weight: math.unit(150, "lb"),
  14257. name: "Front",
  14258. image: {
  14259. source: "./media/characters/jamie-larsen/front.svg",
  14260. extra: 962 / 933,
  14261. bottom: 0.02
  14262. }
  14263. },
  14264. back: {
  14265. height: math.unit(6, "feet"),
  14266. weight: math.unit(150, "lb"),
  14267. name: "Back",
  14268. image: {
  14269. source: "./media/characters/jamie-larsen/back.svg",
  14270. extra: 997 / 946
  14271. }
  14272. },
  14273. },
  14274. [
  14275. {
  14276. name: "Macro",
  14277. height: math.unit(28 + 7 / 12, "feet"),
  14278. default: true
  14279. },
  14280. {
  14281. name: "Macro+",
  14282. height: math.unit(180, "feet")
  14283. },
  14284. {
  14285. name: "Megamacro",
  14286. height: math.unit(10, "miles")
  14287. },
  14288. {
  14289. name: "Gigamacro",
  14290. height: math.unit(200000, "miles")
  14291. },
  14292. ]
  14293. ))
  14294. characterMakers.push(() => makeCharacter(
  14295. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14296. {
  14297. front: {
  14298. height: math.unit(6, "feet"),
  14299. weight: math.unit(120, "lb"),
  14300. name: "Front",
  14301. image: {
  14302. source: "./media/characters/vance/front.svg",
  14303. extra: 1980 / 1890,
  14304. bottom: 0.09
  14305. }
  14306. },
  14307. back: {
  14308. height: math.unit(6, "feet"),
  14309. weight: math.unit(120, "lb"),
  14310. name: "Back",
  14311. image: {
  14312. source: "./media/characters/vance/back.svg",
  14313. extra: 2081 / 1994,
  14314. bottom: 0.014
  14315. }
  14316. },
  14317. hand: {
  14318. height: math.unit(0.88, "feet"),
  14319. name: "Hand",
  14320. image: {
  14321. source: "./media/characters/vance/hand.svg"
  14322. }
  14323. },
  14324. foot: {
  14325. height: math.unit(0.64, "feet"),
  14326. name: "Foot",
  14327. image: {
  14328. source: "./media/characters/vance/foot.svg"
  14329. }
  14330. },
  14331. },
  14332. [
  14333. {
  14334. name: "Small",
  14335. height: math.unit(90, "feet"),
  14336. default: true
  14337. },
  14338. {
  14339. name: "Macro",
  14340. height: math.unit(100, "meters")
  14341. },
  14342. {
  14343. name: "Megamacro",
  14344. height: math.unit(15, "miles")
  14345. },
  14346. ]
  14347. ))
  14348. characterMakers.push(() => makeCharacter(
  14349. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14350. {
  14351. front: {
  14352. height: math.unit(6, "feet"),
  14353. weight: math.unit(180, "lb"),
  14354. name: "Front",
  14355. image: {
  14356. source: "./media/characters/xochitl/front.svg",
  14357. extra: 2297 / 2261,
  14358. bottom: 0.065
  14359. }
  14360. },
  14361. back: {
  14362. height: math.unit(6, "feet"),
  14363. weight: math.unit(180, "lb"),
  14364. name: "Back",
  14365. image: {
  14366. source: "./media/characters/xochitl/back.svg",
  14367. extra: 2386 / 2354,
  14368. bottom: 0.01
  14369. }
  14370. },
  14371. foot: {
  14372. height: math.unit(6 / 5 * 1.15, "feet"),
  14373. weight: math.unit(150, "lb"),
  14374. name: "Foot",
  14375. image: {
  14376. source: "./media/characters/xochitl/foot.svg"
  14377. }
  14378. },
  14379. },
  14380. [
  14381. {
  14382. name: "Macro",
  14383. height: math.unit(80, "feet")
  14384. },
  14385. {
  14386. name: "Macro+",
  14387. height: math.unit(400, "feet"),
  14388. default: true
  14389. },
  14390. {
  14391. name: "Gigamacro",
  14392. height: math.unit(80000, "miles")
  14393. },
  14394. {
  14395. name: "Gigamacro+",
  14396. height: math.unit(400000, "miles")
  14397. },
  14398. {
  14399. name: "Teramacro",
  14400. height: math.unit(300, "AU")
  14401. },
  14402. ]
  14403. ))
  14404. characterMakers.push(() => makeCharacter(
  14405. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14406. {
  14407. front: {
  14408. height: math.unit(6, "feet"),
  14409. weight: math.unit(150, "lb"),
  14410. name: "Front",
  14411. image: {
  14412. source: "./media/characters/vincent/front.svg",
  14413. extra: 1130 / 1080,
  14414. bottom: 0.055
  14415. }
  14416. },
  14417. beak: {
  14418. height: math.unit(6 * 0.1, "feet"),
  14419. name: "Beak",
  14420. image: {
  14421. source: "./media/characters/vincent/beak.svg"
  14422. }
  14423. },
  14424. hand: {
  14425. height: math.unit(6 * 0.85, "feet"),
  14426. weight: math.unit(150, "lb"),
  14427. name: "Hand",
  14428. image: {
  14429. source: "./media/characters/vincent/hand.svg"
  14430. }
  14431. },
  14432. foot: {
  14433. height: math.unit(6 * 0.19, "feet"),
  14434. weight: math.unit(150, "lb"),
  14435. name: "Foot",
  14436. image: {
  14437. source: "./media/characters/vincent/foot.svg"
  14438. }
  14439. },
  14440. },
  14441. [
  14442. {
  14443. name: "Base",
  14444. height: math.unit(6 + 5 / 12, "feet"),
  14445. default: true
  14446. },
  14447. {
  14448. name: "Macro",
  14449. height: math.unit(300, "feet")
  14450. },
  14451. {
  14452. name: "Megamacro",
  14453. height: math.unit(2, "miles")
  14454. },
  14455. {
  14456. name: "Gigamacro",
  14457. height: math.unit(1000, "miles")
  14458. },
  14459. ]
  14460. ))
  14461. characterMakers.push(() => makeCharacter(
  14462. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14463. {
  14464. front: {
  14465. height: math.unit(2, "meters"),
  14466. weight: math.unit(500, "kg"),
  14467. name: "Front",
  14468. image: {
  14469. source: "./media/characters/coatl/front.svg",
  14470. extra: 3948 / 3500,
  14471. bottom: 0.082
  14472. }
  14473. },
  14474. },
  14475. [
  14476. {
  14477. name: "Normal",
  14478. height: math.unit(4, "meters")
  14479. },
  14480. {
  14481. name: "Macro",
  14482. height: math.unit(100, "meters"),
  14483. default: true
  14484. },
  14485. {
  14486. name: "Macro+",
  14487. height: math.unit(300, "meters")
  14488. },
  14489. {
  14490. name: "Megamacro",
  14491. height: math.unit(3, "gigameters")
  14492. },
  14493. {
  14494. name: "Megamacro+",
  14495. height: math.unit(300, "terameters")
  14496. },
  14497. {
  14498. name: "Megamacro++",
  14499. height: math.unit(3, "lightyears")
  14500. },
  14501. ]
  14502. ))
  14503. characterMakers.push(() => makeCharacter(
  14504. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14505. {
  14506. front: {
  14507. height: math.unit(6, "feet"),
  14508. weight: math.unit(50, "kg"),
  14509. name: "front",
  14510. image: {
  14511. source: "./media/characters/shiroryu/front.svg",
  14512. extra: 1990 / 1935
  14513. }
  14514. },
  14515. },
  14516. [
  14517. {
  14518. name: "Mortal Mingling",
  14519. height: math.unit(3, "meters")
  14520. },
  14521. {
  14522. name: "Kaiju-ish",
  14523. height: math.unit(250, "meters")
  14524. },
  14525. {
  14526. name: "Somewhat Godly",
  14527. height: math.unit(400, "km"),
  14528. default: true
  14529. },
  14530. {
  14531. name: "Planetary",
  14532. height: math.unit(300, "megameters")
  14533. },
  14534. {
  14535. name: "Galaxy-dwarfing",
  14536. height: math.unit(450, "kiloparsecs")
  14537. },
  14538. {
  14539. name: "Universe Eater",
  14540. height: math.unit(150, "gigaparsecs")
  14541. },
  14542. {
  14543. name: "Almost Immeasurable",
  14544. height: math.unit(1.3e266, "yottaparsecs")
  14545. },
  14546. ]
  14547. ))
  14548. characterMakers.push(() => makeCharacter(
  14549. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14550. {
  14551. front: {
  14552. height: math.unit(6, "feet"),
  14553. weight: math.unit(150, "lb"),
  14554. name: "Front",
  14555. image: {
  14556. source: "./media/characters/umeko/front.svg",
  14557. extra: 1,
  14558. bottom: 0.019
  14559. }
  14560. },
  14561. frontArmored: {
  14562. height: math.unit(6, "feet"),
  14563. weight: math.unit(150, "lb"),
  14564. name: "Front (Armored)",
  14565. image: {
  14566. source: "./media/characters/umeko/front-armored.svg",
  14567. extra: 1,
  14568. bottom: 0.021
  14569. }
  14570. },
  14571. },
  14572. [
  14573. {
  14574. name: "Macro",
  14575. height: math.unit(220, "feet"),
  14576. default: true
  14577. },
  14578. {
  14579. name: "Guardian Dragon",
  14580. height: math.unit(50, "miles")
  14581. },
  14582. {
  14583. name: "Cosmic",
  14584. height: math.unit(800000, "miles")
  14585. },
  14586. ]
  14587. ))
  14588. characterMakers.push(() => makeCharacter(
  14589. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14590. {
  14591. front: {
  14592. height: math.unit(6, "feet"),
  14593. weight: math.unit(150, "lb"),
  14594. name: "Front",
  14595. image: {
  14596. source: "./media/characters/cassidy/front.svg",
  14597. extra: 810/808,
  14598. bottom: 41/851
  14599. }
  14600. },
  14601. },
  14602. [
  14603. {
  14604. name: "Canon Height",
  14605. height: math.unit(120, "feet"),
  14606. default: true
  14607. },
  14608. {
  14609. name: "Macro+",
  14610. height: math.unit(400, "feet")
  14611. },
  14612. {
  14613. name: "Macro++",
  14614. height: math.unit(4000, "feet")
  14615. },
  14616. {
  14617. name: "Megamacro",
  14618. height: math.unit(3, "miles")
  14619. },
  14620. ]
  14621. ))
  14622. characterMakers.push(() => makeCharacter(
  14623. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14624. {
  14625. front: {
  14626. height: math.unit(6, "feet"),
  14627. weight: math.unit(150, "lb"),
  14628. name: "Front",
  14629. image: {
  14630. source: "./media/characters/isaac/front.svg",
  14631. extra: 896 / 815,
  14632. bottom: 0.11
  14633. }
  14634. },
  14635. },
  14636. [
  14637. {
  14638. name: "Human Size",
  14639. height: math.unit(8, "feet"),
  14640. default: true
  14641. },
  14642. {
  14643. name: "Macro",
  14644. height: math.unit(400, "feet")
  14645. },
  14646. {
  14647. name: "Megamacro",
  14648. height: math.unit(50, "miles")
  14649. },
  14650. {
  14651. name: "Canon Height",
  14652. height: math.unit(200, "AU")
  14653. },
  14654. ]
  14655. ))
  14656. characterMakers.push(() => makeCharacter(
  14657. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14658. {
  14659. front: {
  14660. height: math.unit(6, "feet"),
  14661. weight: math.unit(72, "kg"),
  14662. name: "Front",
  14663. image: {
  14664. source: "./media/characters/sleekit/front.svg",
  14665. extra: 4693 / 4487,
  14666. bottom: 0.012
  14667. }
  14668. },
  14669. },
  14670. [
  14671. {
  14672. name: "Minimum Height",
  14673. height: math.unit(10, "meters")
  14674. },
  14675. {
  14676. name: "Smaller",
  14677. height: math.unit(25, "meters")
  14678. },
  14679. {
  14680. name: "Larger",
  14681. height: math.unit(38, "meters"),
  14682. default: true
  14683. },
  14684. {
  14685. name: "Maximum height",
  14686. height: math.unit(100, "meters")
  14687. },
  14688. ]
  14689. ))
  14690. characterMakers.push(() => makeCharacter(
  14691. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14692. {
  14693. front: {
  14694. height: math.unit(6, "feet"),
  14695. weight: math.unit(150, "lb"),
  14696. name: "Front",
  14697. image: {
  14698. source: "./media/characters/nillia/front.svg",
  14699. extra: 2195 / 2037,
  14700. bottom: 0.005
  14701. }
  14702. },
  14703. back: {
  14704. height: math.unit(6, "feet"),
  14705. weight: math.unit(150, "lb"),
  14706. name: "Back",
  14707. image: {
  14708. source: "./media/characters/nillia/back.svg",
  14709. extra: 2195 / 2037,
  14710. bottom: 0.005
  14711. }
  14712. },
  14713. },
  14714. [
  14715. {
  14716. name: "Canon Height",
  14717. height: math.unit(489, "feet"),
  14718. default: true
  14719. }
  14720. ]
  14721. ))
  14722. characterMakers.push(() => makeCharacter(
  14723. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14724. {
  14725. front: {
  14726. height: math.unit(6, "feet"),
  14727. weight: math.unit(150, "lb"),
  14728. name: "Front",
  14729. image: {
  14730. source: "./media/characters/mesmyriza/front.svg",
  14731. extra: 2067 / 1784,
  14732. bottom: 0.035
  14733. }
  14734. },
  14735. foot: {
  14736. height: math.unit(6 / (250 / 35), "feet"),
  14737. name: "Foot",
  14738. image: {
  14739. source: "./media/characters/mesmyriza/foot.svg"
  14740. }
  14741. },
  14742. },
  14743. [
  14744. {
  14745. name: "Macro",
  14746. height: math.unit(457, "meters"),
  14747. default: true
  14748. },
  14749. {
  14750. name: "Megamacro",
  14751. height: math.unit(8, "megameters")
  14752. },
  14753. ]
  14754. ))
  14755. characterMakers.push(() => makeCharacter(
  14756. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14757. {
  14758. front: {
  14759. height: math.unit(6, "feet"),
  14760. weight: math.unit(250, "lb"),
  14761. name: "Front",
  14762. image: {
  14763. source: "./media/characters/saudade/front.svg",
  14764. extra: 1172 / 1139,
  14765. bottom: 0.035
  14766. }
  14767. },
  14768. },
  14769. [
  14770. {
  14771. name: "Micro",
  14772. height: math.unit(3, "inches")
  14773. },
  14774. {
  14775. name: "Normal",
  14776. height: math.unit(6, "feet"),
  14777. default: true
  14778. },
  14779. {
  14780. name: "Macro",
  14781. height: math.unit(50, "feet")
  14782. },
  14783. {
  14784. name: "Megamacro",
  14785. height: math.unit(2800, "feet")
  14786. },
  14787. ]
  14788. ))
  14789. characterMakers.push(() => makeCharacter(
  14790. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14791. {
  14792. front: {
  14793. height: math.unit(5 + 4 / 12, "feet"),
  14794. weight: math.unit(100, "lb"),
  14795. name: "Front",
  14796. image: {
  14797. source: "./media/characters/keireer/front.svg",
  14798. extra: 716 / 666,
  14799. bottom: 0.05
  14800. }
  14801. },
  14802. },
  14803. [
  14804. {
  14805. name: "Normal",
  14806. height: math.unit(5 + 4 / 12, "feet"),
  14807. default: true
  14808. },
  14809. ]
  14810. ))
  14811. characterMakers.push(() => makeCharacter(
  14812. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14813. {
  14814. front: {
  14815. height: math.unit(6, "feet"),
  14816. weight: math.unit(90, "kg"),
  14817. name: "Front",
  14818. image: {
  14819. source: "./media/characters/mirja/front.svg",
  14820. extra: 1789 / 1683,
  14821. bottom: 0.05
  14822. }
  14823. },
  14824. frontDressed: {
  14825. height: math.unit(6, "feet"),
  14826. weight: math.unit(90, "lb"),
  14827. name: "Front (Dressed)",
  14828. image: {
  14829. source: "./media/characters/mirja/front-dressed.svg",
  14830. extra: 1789 / 1683,
  14831. bottom: 0.05
  14832. }
  14833. },
  14834. back: {
  14835. height: math.unit(6, "feet"),
  14836. weight: math.unit(90, "lb"),
  14837. name: "Back",
  14838. image: {
  14839. source: "./media/characters/mirja/back.svg",
  14840. extra: 953 / 917,
  14841. bottom: 0.017
  14842. }
  14843. },
  14844. },
  14845. [
  14846. {
  14847. name: "\"Incognito\"",
  14848. height: math.unit(3, "meters")
  14849. },
  14850. {
  14851. name: "Strolling Size",
  14852. height: math.unit(15, "km")
  14853. },
  14854. {
  14855. name: "Larger Strolling Size",
  14856. height: math.unit(400, "km")
  14857. },
  14858. {
  14859. name: "Preferred Size",
  14860. height: math.unit(5000, "km")
  14861. },
  14862. {
  14863. name: "True Size",
  14864. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14865. default: true
  14866. },
  14867. ]
  14868. ))
  14869. characterMakers.push(() => makeCharacter(
  14870. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14871. {
  14872. front: {
  14873. height: math.unit(15, "feet"),
  14874. weight: math.unit(880, "kg"),
  14875. name: "Front",
  14876. image: {
  14877. source: "./media/characters/nightraver/front.svg",
  14878. extra: 2444 / 2160,
  14879. bottom: 0.027
  14880. }
  14881. },
  14882. back: {
  14883. height: math.unit(15, "feet"),
  14884. weight: math.unit(880, "kg"),
  14885. name: "Back",
  14886. image: {
  14887. source: "./media/characters/nightraver/back.svg",
  14888. extra: 2309 / 2180,
  14889. bottom: 0.005
  14890. }
  14891. },
  14892. sole: {
  14893. height: math.unit(2.878, "feet"),
  14894. name: "Sole",
  14895. image: {
  14896. source: "./media/characters/nightraver/sole.svg"
  14897. }
  14898. },
  14899. foot: {
  14900. height: math.unit(2.285, "feet"),
  14901. name: "Foot",
  14902. image: {
  14903. source: "./media/characters/nightraver/foot.svg"
  14904. }
  14905. },
  14906. maw: {
  14907. height: math.unit(2.67, "feet"),
  14908. name: "Maw",
  14909. image: {
  14910. source: "./media/characters/nightraver/maw.svg"
  14911. }
  14912. },
  14913. },
  14914. [
  14915. {
  14916. name: "Micro",
  14917. height: math.unit(1, "cm")
  14918. },
  14919. {
  14920. name: "Normal",
  14921. height: math.unit(15, "feet"),
  14922. default: true
  14923. },
  14924. {
  14925. name: "Macro",
  14926. height: math.unit(300, "feet")
  14927. },
  14928. {
  14929. name: "Megamacro",
  14930. height: math.unit(300, "miles")
  14931. },
  14932. {
  14933. name: "Gigamacro",
  14934. height: math.unit(10000, "miles")
  14935. },
  14936. ]
  14937. ))
  14938. characterMakers.push(() => makeCharacter(
  14939. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14940. {
  14941. side: {
  14942. height: math.unit(2, "inches"),
  14943. weight: math.unit(5, "grams"),
  14944. name: "Side",
  14945. image: {
  14946. source: "./media/characters/arc/side.svg"
  14947. }
  14948. },
  14949. },
  14950. [
  14951. {
  14952. name: "Micro",
  14953. height: math.unit(2, "inches"),
  14954. default: true
  14955. },
  14956. ]
  14957. ))
  14958. characterMakers.push(() => makeCharacter(
  14959. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14960. {
  14961. front: {
  14962. height: math.unit(1.1938, "meters"),
  14963. weight: math.unit(54, "kg"),
  14964. name: "Front",
  14965. image: {
  14966. source: "./media/characters/nebula-shahar/front.svg",
  14967. extra: 1642 / 1436,
  14968. bottom: 0.06
  14969. }
  14970. },
  14971. },
  14972. [
  14973. {
  14974. name: "Megamicro",
  14975. height: math.unit(0.3, "mm")
  14976. },
  14977. {
  14978. name: "Micro",
  14979. height: math.unit(3, "cm")
  14980. },
  14981. {
  14982. name: "Normal",
  14983. height: math.unit(138, "cm"),
  14984. default: true
  14985. },
  14986. {
  14987. name: "Macro",
  14988. height: math.unit(30, "m")
  14989. },
  14990. ]
  14991. ))
  14992. characterMakers.push(() => makeCharacter(
  14993. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14994. {
  14995. front: {
  14996. height: math.unit(5.24, "feet"),
  14997. weight: math.unit(150, "lb"),
  14998. name: "Front",
  14999. image: {
  15000. source: "./media/characters/shayla/front.svg",
  15001. extra: 1512 / 1414,
  15002. bottom: 0.01
  15003. }
  15004. },
  15005. back: {
  15006. height: math.unit(5.24, "feet"),
  15007. weight: math.unit(150, "lb"),
  15008. name: "Back",
  15009. image: {
  15010. source: "./media/characters/shayla/back.svg",
  15011. extra: 1512 / 1414
  15012. }
  15013. },
  15014. hand: {
  15015. height: math.unit(0.7781496062992126, "feet"),
  15016. name: "Hand",
  15017. image: {
  15018. source: "./media/characters/shayla/hand.svg"
  15019. }
  15020. },
  15021. foot: {
  15022. height: math.unit(1.4206036745406823, "feet"),
  15023. name: "Foot",
  15024. image: {
  15025. source: "./media/characters/shayla/foot.svg"
  15026. }
  15027. },
  15028. },
  15029. [
  15030. {
  15031. name: "Micro",
  15032. height: math.unit(0.32, "feet")
  15033. },
  15034. {
  15035. name: "Normal",
  15036. height: math.unit(5.24, "feet"),
  15037. default: true
  15038. },
  15039. {
  15040. name: "Macro",
  15041. height: math.unit(492.12, "feet")
  15042. },
  15043. {
  15044. name: "Megamacro",
  15045. height: math.unit(186.41, "miles")
  15046. },
  15047. ]
  15048. ))
  15049. characterMakers.push(() => makeCharacter(
  15050. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15051. {
  15052. front: {
  15053. height: math.unit(2.2, "m"),
  15054. weight: math.unit(120, "kg"),
  15055. name: "Front",
  15056. image: {
  15057. source: "./media/characters/pia-jr/front.svg",
  15058. extra: 1000 / 970,
  15059. bottom: 0.035
  15060. }
  15061. },
  15062. hand: {
  15063. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15064. name: "Hand",
  15065. image: {
  15066. source: "./media/characters/pia-jr/hand.svg"
  15067. }
  15068. },
  15069. paw: {
  15070. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15071. name: "Paw",
  15072. image: {
  15073. source: "./media/characters/pia-jr/paw.svg"
  15074. }
  15075. },
  15076. },
  15077. [
  15078. {
  15079. name: "Micro",
  15080. height: math.unit(1.2, "cm")
  15081. },
  15082. {
  15083. name: "Normal",
  15084. height: math.unit(2.2, "m"),
  15085. default: true
  15086. },
  15087. {
  15088. name: "Macro",
  15089. height: math.unit(180, "m")
  15090. },
  15091. {
  15092. name: "Megamacro",
  15093. height: math.unit(420, "km")
  15094. },
  15095. ]
  15096. ))
  15097. characterMakers.push(() => makeCharacter(
  15098. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15099. {
  15100. front: {
  15101. height: math.unit(2, "m"),
  15102. weight: math.unit(115, "kg"),
  15103. name: "Front",
  15104. image: {
  15105. source: "./media/characters/pia-sr/front.svg",
  15106. extra: 760 / 730,
  15107. bottom: 0.015
  15108. }
  15109. },
  15110. back: {
  15111. height: math.unit(2, "m"),
  15112. weight: math.unit(115, "kg"),
  15113. name: "Back",
  15114. image: {
  15115. source: "./media/characters/pia-sr/back.svg",
  15116. extra: 760 / 730,
  15117. bottom: 0.01
  15118. }
  15119. },
  15120. hand: {
  15121. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15122. name: "Hand",
  15123. image: {
  15124. source: "./media/characters/pia-sr/hand.svg"
  15125. }
  15126. },
  15127. foot: {
  15128. height: math.unit(1.83, "feet"),
  15129. name: "Foot",
  15130. image: {
  15131. source: "./media/characters/pia-sr/foot.svg"
  15132. }
  15133. },
  15134. },
  15135. [
  15136. {
  15137. name: "Micro",
  15138. height: math.unit(88, "mm")
  15139. },
  15140. {
  15141. name: "Normal",
  15142. height: math.unit(2, "m"),
  15143. default: true
  15144. },
  15145. {
  15146. name: "Macro",
  15147. height: math.unit(200, "m")
  15148. },
  15149. {
  15150. name: "Megamacro",
  15151. height: math.unit(420, "km")
  15152. },
  15153. ]
  15154. ))
  15155. characterMakers.push(() => makeCharacter(
  15156. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15157. {
  15158. front: {
  15159. height: math.unit(8 + 2 / 12, "feet"),
  15160. weight: math.unit(300, "lb"),
  15161. name: "Front",
  15162. image: {
  15163. source: "./media/characters/kibibyte/front.svg",
  15164. extra: 2221 / 2098,
  15165. bottom: 0.04
  15166. }
  15167. },
  15168. },
  15169. [
  15170. {
  15171. name: "Normal",
  15172. height: math.unit(8 + 2 / 12, "feet"),
  15173. default: true
  15174. },
  15175. {
  15176. name: "Socialable Macro",
  15177. height: math.unit(50, "feet")
  15178. },
  15179. {
  15180. name: "Macro",
  15181. height: math.unit(300, "feet")
  15182. },
  15183. {
  15184. name: "Megamacro",
  15185. height: math.unit(500, "miles")
  15186. },
  15187. ]
  15188. ))
  15189. characterMakers.push(() => makeCharacter(
  15190. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15191. {
  15192. front: {
  15193. height: math.unit(6, "feet"),
  15194. weight: math.unit(150, "lb"),
  15195. name: "Front",
  15196. image: {
  15197. source: "./media/characters/felix/front.svg",
  15198. extra: 762 / 722,
  15199. bottom: 0.02
  15200. }
  15201. },
  15202. frontClothed: {
  15203. height: math.unit(6, "feet"),
  15204. weight: math.unit(150, "lb"),
  15205. name: "Front (Clothed)",
  15206. image: {
  15207. source: "./media/characters/felix/front-clothed.svg",
  15208. extra: 762 / 722,
  15209. bottom: 0.02
  15210. }
  15211. },
  15212. },
  15213. [
  15214. {
  15215. name: "Normal",
  15216. height: math.unit(6 + 8 / 12, "feet"),
  15217. default: true
  15218. },
  15219. {
  15220. name: "Macro",
  15221. height: math.unit(2600, "feet")
  15222. },
  15223. {
  15224. name: "Megamacro",
  15225. height: math.unit(450, "miles")
  15226. },
  15227. ]
  15228. ))
  15229. characterMakers.push(() => makeCharacter(
  15230. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15231. {
  15232. front: {
  15233. height: math.unit(6 + 1 / 12, "feet"),
  15234. weight: math.unit(250, "lb"),
  15235. name: "Front",
  15236. image: {
  15237. source: "./media/characters/tobo/front.svg",
  15238. extra: 608 / 586,
  15239. bottom: 0.023
  15240. }
  15241. },
  15242. back: {
  15243. height: math.unit(6 + 1 / 12, "feet"),
  15244. weight: math.unit(250, "lb"),
  15245. name: "Back",
  15246. image: {
  15247. source: "./media/characters/tobo/back.svg",
  15248. extra: 608 / 586
  15249. }
  15250. },
  15251. },
  15252. [
  15253. {
  15254. name: "Nano",
  15255. height: math.unit(2, "nm")
  15256. },
  15257. {
  15258. name: "Megamicro",
  15259. height: math.unit(0.1, "mm")
  15260. },
  15261. {
  15262. name: "Micro",
  15263. height: math.unit(1, "inch"),
  15264. default: true
  15265. },
  15266. {
  15267. name: "Human-sized",
  15268. height: math.unit(6 + 1 / 12, "feet")
  15269. },
  15270. {
  15271. name: "Macro",
  15272. height: math.unit(250, "feet")
  15273. },
  15274. {
  15275. name: "Megamacro",
  15276. height: math.unit(75, "miles")
  15277. },
  15278. {
  15279. name: "Texas-sized",
  15280. height: math.unit(750, "miles")
  15281. },
  15282. {
  15283. name: "Teramacro",
  15284. height: math.unit(50000, "miles")
  15285. },
  15286. ]
  15287. ))
  15288. characterMakers.push(() => makeCharacter(
  15289. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15290. {
  15291. front: {
  15292. height: math.unit(6, "feet"),
  15293. weight: math.unit(269, "lb"),
  15294. name: "Front",
  15295. image: {
  15296. source: "./media/characters/danny-kapowsky/front.svg",
  15297. extra: 766 / 736,
  15298. bottom: 0.044
  15299. }
  15300. },
  15301. back: {
  15302. height: math.unit(6, "feet"),
  15303. weight: math.unit(269, "lb"),
  15304. name: "Back",
  15305. image: {
  15306. source: "./media/characters/danny-kapowsky/back.svg",
  15307. extra: 797 / 760,
  15308. bottom: 0.025
  15309. }
  15310. },
  15311. },
  15312. [
  15313. {
  15314. name: "Macro",
  15315. height: math.unit(150, "feet"),
  15316. default: true
  15317. },
  15318. {
  15319. name: "Macro+",
  15320. height: math.unit(200, "feet")
  15321. },
  15322. {
  15323. name: "Macro++",
  15324. height: math.unit(300, "feet")
  15325. },
  15326. {
  15327. name: "Macro+++",
  15328. height: math.unit(400, "feet")
  15329. },
  15330. ]
  15331. ))
  15332. characterMakers.push(() => makeCharacter(
  15333. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15334. {
  15335. side: {
  15336. height: math.unit(6, "feet"),
  15337. weight: math.unit(170, "lb"),
  15338. name: "Side",
  15339. image: {
  15340. source: "./media/characters/finn/side.svg",
  15341. extra: 1953 / 1807,
  15342. bottom: 0.057
  15343. }
  15344. },
  15345. },
  15346. [
  15347. {
  15348. name: "Megamacro",
  15349. height: math.unit(14445, "feet"),
  15350. default: true
  15351. },
  15352. ]
  15353. ))
  15354. characterMakers.push(() => makeCharacter(
  15355. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15356. {
  15357. front: {
  15358. height: math.unit(5 + 6 / 12, "feet"),
  15359. weight: math.unit(125, "lb"),
  15360. name: "Front",
  15361. image: {
  15362. source: "./media/characters/roy/front.svg",
  15363. extra: 1,
  15364. bottom: 0.11
  15365. }
  15366. },
  15367. },
  15368. [
  15369. {
  15370. name: "Micro",
  15371. height: math.unit(3, "inches"),
  15372. default: true
  15373. },
  15374. {
  15375. name: "Normal",
  15376. height: math.unit(5 + 6 / 12, "feet")
  15377. },
  15378. {
  15379. name: "Lesser Macro",
  15380. height: math.unit(60, "feet")
  15381. },
  15382. {
  15383. name: "Greater Macro",
  15384. height: math.unit(120, "feet")
  15385. },
  15386. ]
  15387. ))
  15388. characterMakers.push(() => makeCharacter(
  15389. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15390. {
  15391. front: {
  15392. height: math.unit(6, "feet"),
  15393. weight: math.unit(100, "lb"),
  15394. name: "Front",
  15395. image: {
  15396. source: "./media/characters/aevsivs/front.svg",
  15397. extra: 1,
  15398. bottom: 0.03
  15399. }
  15400. },
  15401. back: {
  15402. height: math.unit(6, "feet"),
  15403. weight: math.unit(100, "lb"),
  15404. name: "Back",
  15405. image: {
  15406. source: "./media/characters/aevsivs/back.svg"
  15407. }
  15408. },
  15409. },
  15410. [
  15411. {
  15412. name: "Micro",
  15413. height: math.unit(2, "inches"),
  15414. default: true
  15415. },
  15416. {
  15417. name: "Normal",
  15418. height: math.unit(5, "feet")
  15419. },
  15420. ]
  15421. ))
  15422. characterMakers.push(() => makeCharacter(
  15423. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15424. {
  15425. front: {
  15426. height: math.unit(5 + 7 / 12, "feet"),
  15427. weight: math.unit(159, "lb"),
  15428. name: "Front",
  15429. image: {
  15430. source: "./media/characters/hildegard/front.svg",
  15431. extra: 289 / 269,
  15432. bottom: 7.63 / 297.8
  15433. }
  15434. },
  15435. back: {
  15436. height: math.unit(5 + 7 / 12, "feet"),
  15437. weight: math.unit(159, "lb"),
  15438. name: "Back",
  15439. image: {
  15440. source: "./media/characters/hildegard/back.svg",
  15441. extra: 280 / 260,
  15442. bottom: 2.3 / 282
  15443. }
  15444. },
  15445. },
  15446. [
  15447. {
  15448. name: "Normal",
  15449. height: math.unit(5 + 7 / 12, "feet"),
  15450. default: true
  15451. },
  15452. ]
  15453. ))
  15454. characterMakers.push(() => makeCharacter(
  15455. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15456. {
  15457. bernard: {
  15458. height: math.unit(2 + 7 / 12, "feet"),
  15459. weight: math.unit(66, "lb"),
  15460. name: "Bernard",
  15461. rename: true,
  15462. image: {
  15463. source: "./media/characters/bernard-wilder/bernard.svg",
  15464. extra: 192 / 128,
  15465. bottom: 0.05
  15466. }
  15467. },
  15468. wilder: {
  15469. height: math.unit(5 + 8 / 12, "feet"),
  15470. weight: math.unit(143, "lb"),
  15471. name: "Wilder",
  15472. rename: true,
  15473. image: {
  15474. source: "./media/characters/bernard-wilder/wilder.svg",
  15475. extra: 361 / 312,
  15476. bottom: 0.02
  15477. }
  15478. },
  15479. },
  15480. [
  15481. {
  15482. name: "Normal",
  15483. height: math.unit(2 + 7 / 12, "feet"),
  15484. default: true
  15485. },
  15486. ]
  15487. ))
  15488. characterMakers.push(() => makeCharacter(
  15489. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15490. {
  15491. anthro: {
  15492. height: math.unit(6 + 1 / 12, "feet"),
  15493. weight: math.unit(155, "lb"),
  15494. name: "Anthro",
  15495. image: {
  15496. source: "./media/characters/hearth/anthro.svg",
  15497. extra: 1178/1136,
  15498. bottom: 28/1206
  15499. }
  15500. },
  15501. feral: {
  15502. height: math.unit(3.78, "feet"),
  15503. weight: math.unit(35, "kg"),
  15504. name: "Feral",
  15505. image: {
  15506. source: "./media/characters/hearth/feral.svg",
  15507. extra: 153 / 135,
  15508. bottom: 0.03
  15509. }
  15510. },
  15511. },
  15512. [
  15513. {
  15514. name: "Normal",
  15515. height: math.unit(6 + 1 / 12, "feet"),
  15516. default: true
  15517. },
  15518. ]
  15519. ))
  15520. characterMakers.push(() => makeCharacter(
  15521. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15522. {
  15523. front: {
  15524. height: math.unit(6, "feet"),
  15525. weight: math.unit(182, "lb"),
  15526. name: "Front",
  15527. image: {
  15528. source: "./media/characters/ingrid/front.svg",
  15529. extra: 294 / 268,
  15530. bottom: 0.027
  15531. }
  15532. },
  15533. },
  15534. [
  15535. {
  15536. name: "Normal",
  15537. height: math.unit(6, "feet"),
  15538. default: true
  15539. },
  15540. ]
  15541. ))
  15542. characterMakers.push(() => makeCharacter(
  15543. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15544. {
  15545. eevee: {
  15546. height: math.unit(2 + 10 / 12, "feet"),
  15547. weight: math.unit(86, "lb"),
  15548. name: "Malgam",
  15549. image: {
  15550. source: "./media/characters/malgam/eevee.svg",
  15551. extra: 952/784,
  15552. bottom: 38/990
  15553. }
  15554. },
  15555. sylveon: {
  15556. height: math.unit(4, "feet"),
  15557. weight: math.unit(101, "lb"),
  15558. name: "Future Malgam",
  15559. rename: true,
  15560. image: {
  15561. source: "./media/characters/malgam/sylveon.svg",
  15562. extra: 371 / 325,
  15563. bottom: 0.015
  15564. }
  15565. },
  15566. gigantamax: {
  15567. height: math.unit(50, "feet"),
  15568. name: "Gigantamax Malgam",
  15569. rename: true,
  15570. image: {
  15571. source: "./media/characters/malgam/gigantamax.svg"
  15572. }
  15573. },
  15574. },
  15575. [
  15576. {
  15577. name: "Normal",
  15578. height: math.unit(2 + 10 / 12, "feet"),
  15579. default: true
  15580. },
  15581. ]
  15582. ))
  15583. characterMakers.push(() => makeCharacter(
  15584. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15585. {
  15586. front: {
  15587. height: math.unit(5 + 11 / 12, "feet"),
  15588. weight: math.unit(188, "lb"),
  15589. name: "Front",
  15590. image: {
  15591. source: "./media/characters/fleur/front.svg",
  15592. extra: 309 / 283,
  15593. bottom: 0.007
  15594. }
  15595. },
  15596. },
  15597. [
  15598. {
  15599. name: "Normal",
  15600. height: math.unit(5 + 11 / 12, "feet"),
  15601. default: true
  15602. },
  15603. ]
  15604. ))
  15605. characterMakers.push(() => makeCharacter(
  15606. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15607. {
  15608. front: {
  15609. height: math.unit(5 + 4 / 12, "feet"),
  15610. weight: math.unit(122, "lb"),
  15611. name: "Front",
  15612. image: {
  15613. source: "./media/characters/jude/front.svg",
  15614. extra: 288 / 273,
  15615. bottom: 0.03
  15616. }
  15617. },
  15618. },
  15619. [
  15620. {
  15621. name: "Normal",
  15622. height: math.unit(5 + 4 / 12, "feet"),
  15623. default: true
  15624. },
  15625. ]
  15626. ))
  15627. characterMakers.push(() => makeCharacter(
  15628. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15629. {
  15630. front: {
  15631. height: math.unit(5 + 11 / 12, "feet"),
  15632. weight: math.unit(190, "lb"),
  15633. name: "Front",
  15634. image: {
  15635. source: "./media/characters/seara/front.svg",
  15636. extra: 1,
  15637. bottom: 0.05
  15638. }
  15639. },
  15640. },
  15641. [
  15642. {
  15643. name: "Normal",
  15644. height: math.unit(5 + 11 / 12, "feet"),
  15645. default: true
  15646. },
  15647. ]
  15648. ))
  15649. characterMakers.push(() => makeCharacter(
  15650. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  15651. {
  15652. front: {
  15653. height: math.unit(16 + 5 / 12, "feet"),
  15654. weight: math.unit(524, "lb"),
  15655. name: "Front",
  15656. image: {
  15657. source: "./media/characters/caspian-lugia/front.svg",
  15658. extra: 1,
  15659. bottom: 0.04
  15660. }
  15661. },
  15662. },
  15663. [
  15664. {
  15665. name: "Normal",
  15666. height: math.unit(16 + 5 / 12, "feet"),
  15667. default: true
  15668. },
  15669. ]
  15670. ))
  15671. characterMakers.push(() => makeCharacter(
  15672. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15673. {
  15674. front: {
  15675. height: math.unit(5 + 7 / 12, "feet"),
  15676. weight: math.unit(170, "lb"),
  15677. name: "Front",
  15678. image: {
  15679. source: "./media/characters/mika/front.svg",
  15680. extra: 1,
  15681. bottom: 0.016
  15682. }
  15683. },
  15684. },
  15685. [
  15686. {
  15687. name: "Normal",
  15688. height: math.unit(5 + 7 / 12, "feet"),
  15689. default: true
  15690. },
  15691. ]
  15692. ))
  15693. characterMakers.push(() => makeCharacter(
  15694. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15695. {
  15696. front: {
  15697. height: math.unit(6 + 2 / 12, "feet"),
  15698. weight: math.unit(268, "lb"),
  15699. name: "Front",
  15700. image: {
  15701. source: "./media/characters/sol/front.svg",
  15702. extra: 247 / 231,
  15703. bottom: 0.05
  15704. }
  15705. },
  15706. },
  15707. [
  15708. {
  15709. name: "Normal",
  15710. height: math.unit(6 + 2 / 12, "feet"),
  15711. default: true
  15712. },
  15713. ]
  15714. ))
  15715. characterMakers.push(() => makeCharacter(
  15716. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15717. {
  15718. buizel: {
  15719. height: math.unit(2 + 5 / 12, "feet"),
  15720. weight: math.unit(87, "lb"),
  15721. name: "Front",
  15722. image: {
  15723. source: "./media/characters/umiko/buizel.svg",
  15724. extra: 172 / 157,
  15725. bottom: 0.01
  15726. },
  15727. form: "buizel",
  15728. default: true
  15729. },
  15730. floatzel: {
  15731. height: math.unit(5 + 9 / 12, "feet"),
  15732. weight: math.unit(250, "lb"),
  15733. name: "Front",
  15734. image: {
  15735. source: "./media/characters/umiko/floatzel.svg",
  15736. extra: 1076/1006,
  15737. bottom: 15/1091
  15738. },
  15739. form: "floatzel",
  15740. default: true
  15741. },
  15742. },
  15743. [
  15744. {
  15745. name: "Normal",
  15746. height: math.unit(2 + 5 / 12, "feet"),
  15747. form: "buizel",
  15748. default: true
  15749. },
  15750. {
  15751. name: "Normal",
  15752. height: math.unit(5 + 9 / 12, "feet"),
  15753. form: "floatzel",
  15754. default: true
  15755. },
  15756. ],
  15757. {
  15758. "buizel": {
  15759. name: "Buizel"
  15760. },
  15761. "floatzel": {
  15762. name: "Floatzel",
  15763. default: true
  15764. }
  15765. }
  15766. ))
  15767. characterMakers.push(() => makeCharacter(
  15768. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15769. {
  15770. front: {
  15771. height: math.unit(6 + 2 / 12, "feet"),
  15772. weight: math.unit(146, "lb"),
  15773. name: "Front",
  15774. image: {
  15775. source: "./media/characters/iliac/front.svg",
  15776. extra: 389 / 365,
  15777. bottom: 0.035
  15778. }
  15779. },
  15780. },
  15781. [
  15782. {
  15783. name: "Normal",
  15784. height: math.unit(6 + 2 / 12, "feet"),
  15785. default: true
  15786. },
  15787. ]
  15788. ))
  15789. characterMakers.push(() => makeCharacter(
  15790. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15791. {
  15792. front: {
  15793. height: math.unit(6, "feet"),
  15794. weight: math.unit(170, "lb"),
  15795. name: "Front",
  15796. image: {
  15797. source: "./media/characters/topaz/front.svg",
  15798. extra: 317 / 303,
  15799. bottom: 0.055
  15800. }
  15801. },
  15802. },
  15803. [
  15804. {
  15805. name: "Normal",
  15806. height: math.unit(6, "feet"),
  15807. default: true
  15808. },
  15809. ]
  15810. ))
  15811. characterMakers.push(() => makeCharacter(
  15812. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15813. {
  15814. front: {
  15815. height: math.unit(5 + 11 / 12, "feet"),
  15816. weight: math.unit(144, "lb"),
  15817. name: "Front",
  15818. image: {
  15819. source: "./media/characters/gabriel/front.svg",
  15820. extra: 285 / 262,
  15821. bottom: 0.004
  15822. }
  15823. },
  15824. },
  15825. [
  15826. {
  15827. name: "Normal",
  15828. height: math.unit(5 + 11 / 12, "feet"),
  15829. default: true
  15830. },
  15831. ]
  15832. ))
  15833. characterMakers.push(() => makeCharacter(
  15834. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15835. {
  15836. side: {
  15837. height: math.unit(6 + 5 / 12, "feet"),
  15838. weight: math.unit(300, "lb"),
  15839. name: "Side",
  15840. image: {
  15841. source: "./media/characters/tempest-suicune/side.svg",
  15842. extra: 195 / 154,
  15843. bottom: 0.04
  15844. }
  15845. },
  15846. },
  15847. [
  15848. {
  15849. name: "Normal",
  15850. height: math.unit(6 + 5 / 12, "feet"),
  15851. default: true
  15852. },
  15853. ]
  15854. ))
  15855. characterMakers.push(() => makeCharacter(
  15856. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15857. {
  15858. front: {
  15859. height: math.unit(7 + 2 / 12, "feet"),
  15860. weight: math.unit(322, "lb"),
  15861. name: "Front",
  15862. image: {
  15863. source: "./media/characters/vulcan/front.svg",
  15864. extra: 154 / 147,
  15865. bottom: 0.04
  15866. }
  15867. },
  15868. },
  15869. [
  15870. {
  15871. name: "Normal",
  15872. height: math.unit(7 + 2 / 12, "feet"),
  15873. default: true
  15874. },
  15875. ]
  15876. ))
  15877. characterMakers.push(() => makeCharacter(
  15878. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15879. {
  15880. front: {
  15881. height: math.unit(5 + 10 / 12, "feet"),
  15882. weight: math.unit(264, "lb"),
  15883. name: "Front",
  15884. image: {
  15885. source: "./media/characters/gault/front.svg",
  15886. extra: 161 / 140,
  15887. bottom: 0.028
  15888. }
  15889. },
  15890. },
  15891. [
  15892. {
  15893. name: "Normal",
  15894. height: math.unit(5 + 10 / 12, "feet"),
  15895. default: true
  15896. },
  15897. ]
  15898. ))
  15899. characterMakers.push(() => makeCharacter(
  15900. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15901. {
  15902. front: {
  15903. height: math.unit(6, "feet"),
  15904. weight: math.unit(150, "lb"),
  15905. name: "Front",
  15906. image: {
  15907. source: "./media/characters/shard/front.svg",
  15908. extra: 273 / 238,
  15909. bottom: 0.02
  15910. }
  15911. },
  15912. },
  15913. [
  15914. {
  15915. name: "Normal",
  15916. height: math.unit(3 + 6 / 12, "feet"),
  15917. default: true
  15918. },
  15919. ]
  15920. ))
  15921. characterMakers.push(() => makeCharacter(
  15922. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15923. {
  15924. front: {
  15925. height: math.unit(5 + 11 / 12, "feet"),
  15926. weight: math.unit(146, "lb"),
  15927. name: "Front",
  15928. image: {
  15929. source: "./media/characters/ashe/front.svg",
  15930. extra: 400 / 373,
  15931. bottom: 0.01
  15932. }
  15933. },
  15934. },
  15935. [
  15936. {
  15937. name: "Normal",
  15938. height: math.unit(5 + 11 / 12, "feet"),
  15939. default: true
  15940. },
  15941. ]
  15942. ))
  15943. characterMakers.push(() => makeCharacter(
  15944. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15945. {
  15946. front: {
  15947. height: math.unit(5 + 5 / 12, "feet"),
  15948. weight: math.unit(135, "lb"),
  15949. name: "Front",
  15950. image: {
  15951. source: "./media/characters/beatrix/front.svg",
  15952. extra: 392 / 379,
  15953. bottom: 0.01
  15954. }
  15955. },
  15956. },
  15957. [
  15958. {
  15959. name: "Normal",
  15960. height: math.unit(6, "feet"),
  15961. default: true
  15962. },
  15963. ]
  15964. ))
  15965. characterMakers.push(() => makeCharacter(
  15966. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15967. {
  15968. front: {
  15969. height: math.unit(6 + 2/12, "feet"),
  15970. weight: math.unit(135, "lb"),
  15971. name: "Front",
  15972. image: {
  15973. source: "./media/characters/ignatius/front.svg",
  15974. extra: 1380/1259,
  15975. bottom: 27/1407
  15976. }
  15977. },
  15978. },
  15979. [
  15980. {
  15981. name: "Normal",
  15982. height: math.unit(6 + 2/12, "feet"),
  15983. default: true
  15984. },
  15985. ]
  15986. ))
  15987. characterMakers.push(() => makeCharacter(
  15988. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15989. {
  15990. front: {
  15991. height: math.unit(6 + 2 / 12, "feet"),
  15992. weight: math.unit(138, "lb"),
  15993. name: "Front",
  15994. image: {
  15995. source: "./media/characters/mei-li/front.svg",
  15996. extra: 237 / 229,
  15997. bottom: 0.03
  15998. }
  15999. },
  16000. },
  16001. [
  16002. {
  16003. name: "Normal",
  16004. height: math.unit(6 + 2 / 12, "feet"),
  16005. default: true
  16006. },
  16007. ]
  16008. ))
  16009. characterMakers.push(() => makeCharacter(
  16010. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16011. {
  16012. front: {
  16013. height: math.unit(2 + 4 / 12, "feet"),
  16014. weight: math.unit(62, "lb"),
  16015. name: "Front",
  16016. image: {
  16017. source: "./media/characters/puru/front.svg",
  16018. extra: 206 / 149,
  16019. bottom: 0.06
  16020. }
  16021. },
  16022. },
  16023. [
  16024. {
  16025. name: "Normal",
  16026. height: math.unit(2 + 4 / 12, "feet"),
  16027. default: true
  16028. },
  16029. ]
  16030. ))
  16031. characterMakers.push(() => makeCharacter(
  16032. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16033. {
  16034. anthro: {
  16035. height: math.unit(5 + 8/12, "feet"),
  16036. weight: math.unit(200, "lb"),
  16037. energyNeed: math.unit(2000, "kcal"),
  16038. name: "Anthro",
  16039. image: {
  16040. source: "./media/characters/kee/anthro.svg",
  16041. extra: 3251/3184,
  16042. bottom: 250/3501
  16043. }
  16044. },
  16045. taur: {
  16046. height: math.unit(11, "feet"),
  16047. weight: math.unit(500, "lb"),
  16048. energyNeed: math.unit(5000, "kcal"),
  16049. name: "Taur",
  16050. image: {
  16051. source: "./media/characters/kee/taur.svg",
  16052. extra: 1362/1320,
  16053. bottom: 83/1445
  16054. }
  16055. },
  16056. },
  16057. [
  16058. {
  16059. name: "Normal",
  16060. height: math.unit(5 + 8/12, "feet"),
  16061. default: true
  16062. },
  16063. {
  16064. name: "Macro",
  16065. height: math.unit(35, "feet")
  16066. },
  16067. ]
  16068. ))
  16069. characterMakers.push(() => makeCharacter(
  16070. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16071. {
  16072. anthro: {
  16073. height: math.unit(7, "feet"),
  16074. weight: math.unit(190, "lb"),
  16075. name: "Anthro",
  16076. image: {
  16077. source: "./media/characters/cobalt-dracha/anthro.svg",
  16078. extra: 231 / 225,
  16079. bottom: 0.04
  16080. }
  16081. },
  16082. feral: {
  16083. height: math.unit(9 + 7 / 12, "feet"),
  16084. weight: math.unit(294, "lb"),
  16085. name: "Feral",
  16086. image: {
  16087. source: "./media/characters/cobalt-dracha/feral.svg",
  16088. extra: 692 / 633,
  16089. bottom: 0.05
  16090. }
  16091. },
  16092. },
  16093. [
  16094. {
  16095. name: "Normal",
  16096. height: math.unit(7, "feet"),
  16097. default: true
  16098. },
  16099. ]
  16100. ))
  16101. characterMakers.push(() => makeCharacter(
  16102. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16103. {
  16104. fallen: {
  16105. height: math.unit(11 + 8 / 12, "feet"),
  16106. weight: math.unit(485, "lb"),
  16107. name: "Java (Fallen)",
  16108. rename: true,
  16109. image: {
  16110. source: "./media/characters/java/fallen.svg",
  16111. extra: 226 / 208,
  16112. bottom: 0.005
  16113. }
  16114. },
  16115. godkin: {
  16116. height: math.unit(10 + 6 / 12, "feet"),
  16117. weight: math.unit(328, "lb"),
  16118. name: "Java (Godkin)",
  16119. rename: true,
  16120. image: {
  16121. source: "./media/characters/java/godkin.svg",
  16122. extra: 1104/1068,
  16123. bottom: 36/1140
  16124. }
  16125. },
  16126. },
  16127. [
  16128. {
  16129. name: "Normal",
  16130. height: math.unit(11 + 8 / 12, "feet"),
  16131. default: true
  16132. },
  16133. ]
  16134. ))
  16135. characterMakers.push(() => makeCharacter(
  16136. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16137. {
  16138. front: {
  16139. height: math.unit(5 + 9 / 12, "feet"),
  16140. weight: math.unit(170, "lb"),
  16141. name: "Front",
  16142. image: {
  16143. source: "./media/characters/purna/front.svg",
  16144. extra: 239 / 229,
  16145. bottom: 0.01
  16146. }
  16147. },
  16148. },
  16149. [
  16150. {
  16151. name: "Normal",
  16152. height: math.unit(5 + 9 / 12, "feet"),
  16153. default: true
  16154. },
  16155. ]
  16156. ))
  16157. characterMakers.push(() => makeCharacter(
  16158. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16159. {
  16160. front: {
  16161. height: math.unit(5 + 9 / 12, "feet"),
  16162. weight: math.unit(142, "lb"),
  16163. name: "Front",
  16164. image: {
  16165. source: "./media/characters/kuva/front.svg",
  16166. extra: 281 / 271,
  16167. bottom: 0.006
  16168. }
  16169. },
  16170. },
  16171. [
  16172. {
  16173. name: "Normal",
  16174. height: math.unit(5 + 9 / 12, "feet"),
  16175. default: true
  16176. },
  16177. ]
  16178. ))
  16179. characterMakers.push(() => makeCharacter(
  16180. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16181. {
  16182. anthro: {
  16183. height: math.unit(9 + 2 / 12, "feet"),
  16184. weight: math.unit(270, "lb"),
  16185. name: "Anthro",
  16186. image: {
  16187. source: "./media/characters/embra/anthro.svg",
  16188. extra: 200 / 187,
  16189. bottom: 0.02
  16190. }
  16191. },
  16192. feral: {
  16193. height: math.unit(18 + 8 / 12, "feet"),
  16194. weight: math.unit(576, "lb"),
  16195. name: "Feral",
  16196. image: {
  16197. source: "./media/characters/embra/feral.svg",
  16198. extra: 152 / 137,
  16199. bottom: 0.037
  16200. }
  16201. },
  16202. },
  16203. [
  16204. {
  16205. name: "Normal",
  16206. height: math.unit(9 + 2 / 12, "feet"),
  16207. default: true
  16208. },
  16209. ]
  16210. ))
  16211. characterMakers.push(() => makeCharacter(
  16212. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16213. {
  16214. anthro: {
  16215. height: math.unit(10 + 9 / 12, "feet"),
  16216. weight: math.unit(224, "lb"),
  16217. name: "Anthro",
  16218. image: {
  16219. source: "./media/characters/grottos/anthro.svg",
  16220. extra: 350 / 332,
  16221. bottom: 0.045
  16222. }
  16223. },
  16224. feral: {
  16225. height: math.unit(20 + 7 / 12, "feet"),
  16226. weight: math.unit(629, "lb"),
  16227. name: "Feral",
  16228. image: {
  16229. source: "./media/characters/grottos/feral.svg",
  16230. extra: 207 / 190,
  16231. bottom: 0.05
  16232. }
  16233. },
  16234. },
  16235. [
  16236. {
  16237. name: "Normal",
  16238. height: math.unit(10 + 9 / 12, "feet"),
  16239. default: true
  16240. },
  16241. ]
  16242. ))
  16243. characterMakers.push(() => makeCharacter(
  16244. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16245. {
  16246. anthro: {
  16247. height: math.unit(9 + 6 / 12, "feet"),
  16248. weight: math.unit(298, "lb"),
  16249. name: "Anthro",
  16250. image: {
  16251. source: "./media/characters/frifna/anthro.svg",
  16252. extra: 282 / 269,
  16253. bottom: 0.015
  16254. }
  16255. },
  16256. feral: {
  16257. height: math.unit(16 + 2 / 12, "feet"),
  16258. weight: math.unit(624, "lb"),
  16259. name: "Feral",
  16260. image: {
  16261. source: "./media/characters/frifna/feral.svg"
  16262. }
  16263. },
  16264. },
  16265. [
  16266. {
  16267. name: "Normal",
  16268. height: math.unit(9 + 6 / 12, "feet"),
  16269. default: true
  16270. },
  16271. ]
  16272. ))
  16273. characterMakers.push(() => makeCharacter(
  16274. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16275. {
  16276. front: {
  16277. height: math.unit(6 + 2 / 12, "feet"),
  16278. weight: math.unit(168, "lb"),
  16279. name: "Front",
  16280. image: {
  16281. source: "./media/characters/elise/front.svg",
  16282. extra: 276 / 271
  16283. }
  16284. },
  16285. },
  16286. [
  16287. {
  16288. name: "Normal",
  16289. height: math.unit(6 + 2 / 12, "feet"),
  16290. default: true
  16291. },
  16292. ]
  16293. ))
  16294. characterMakers.push(() => makeCharacter(
  16295. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16296. {
  16297. front: {
  16298. height: math.unit(5 + 10 / 12, "feet"),
  16299. weight: math.unit(210, "lb"),
  16300. name: "Front",
  16301. image: {
  16302. source: "./media/characters/glade/front.svg",
  16303. extra: 258 / 247,
  16304. bottom: 0.008
  16305. }
  16306. },
  16307. },
  16308. [
  16309. {
  16310. name: "Normal",
  16311. height: math.unit(5 + 10 / 12, "feet"),
  16312. default: true
  16313. },
  16314. ]
  16315. ))
  16316. characterMakers.push(() => makeCharacter(
  16317. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16318. {
  16319. front: {
  16320. height: math.unit(5 + 10 / 12, "feet"),
  16321. weight: math.unit(129, "lb"),
  16322. name: "Front",
  16323. image: {
  16324. source: "./media/characters/rina/front.svg",
  16325. extra: 266 / 255,
  16326. bottom: 0.005
  16327. }
  16328. },
  16329. },
  16330. [
  16331. {
  16332. name: "Normal",
  16333. height: math.unit(5 + 10 / 12, "feet"),
  16334. default: true
  16335. },
  16336. ]
  16337. ))
  16338. characterMakers.push(() => makeCharacter(
  16339. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16340. {
  16341. front: {
  16342. height: math.unit(6 + 1 / 12, "feet"),
  16343. weight: math.unit(192, "lb"),
  16344. name: "Front",
  16345. image: {
  16346. source: "./media/characters/veronica/front.svg",
  16347. extra: 319 / 309,
  16348. bottom: 0.005
  16349. }
  16350. },
  16351. },
  16352. [
  16353. {
  16354. name: "Normal",
  16355. height: math.unit(6 + 1 / 12, "feet"),
  16356. default: true
  16357. },
  16358. ]
  16359. ))
  16360. characterMakers.push(() => makeCharacter(
  16361. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16362. {
  16363. front: {
  16364. height: math.unit(9 + 3 / 12, "feet"),
  16365. weight: math.unit(1100, "lb"),
  16366. name: "Front",
  16367. image: {
  16368. source: "./media/characters/braxton/front.svg",
  16369. extra: 1057 / 984,
  16370. bottom: 0.05
  16371. }
  16372. },
  16373. },
  16374. [
  16375. {
  16376. name: "Normal",
  16377. height: math.unit(9 + 3 / 12, "feet")
  16378. },
  16379. {
  16380. name: "Giant",
  16381. height: math.unit(300, "feet"),
  16382. default: true
  16383. },
  16384. {
  16385. name: "Macro",
  16386. height: math.unit(700, "feet")
  16387. },
  16388. {
  16389. name: "Megamacro",
  16390. height: math.unit(6000, "feet")
  16391. },
  16392. ]
  16393. ))
  16394. characterMakers.push(() => makeCharacter(
  16395. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16396. {
  16397. front: {
  16398. height: math.unit(6 + 7 / 12, "feet"),
  16399. weight: math.unit(150, "lb"),
  16400. name: "Front",
  16401. image: {
  16402. source: "./media/characters/blue-feyonics/front.svg",
  16403. extra: 1403 / 1306,
  16404. bottom: 0.047
  16405. }
  16406. },
  16407. },
  16408. [
  16409. {
  16410. name: "Normal",
  16411. height: math.unit(6 + 7 / 12, "feet"),
  16412. default: true
  16413. },
  16414. ]
  16415. ))
  16416. characterMakers.push(() => makeCharacter(
  16417. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16418. {
  16419. front: {
  16420. height: math.unit(1.8, "meters"),
  16421. weight: math.unit(60, "kg"),
  16422. name: "Front",
  16423. image: {
  16424. source: "./media/characters/maxwell/front.svg",
  16425. extra: 2060 / 1873
  16426. }
  16427. },
  16428. },
  16429. [
  16430. {
  16431. name: "Micro",
  16432. height: math.unit(1, "mm")
  16433. },
  16434. {
  16435. name: "Normal",
  16436. height: math.unit(1.8, "meter"),
  16437. default: true
  16438. },
  16439. {
  16440. name: "Macro",
  16441. height: math.unit(30, "meters")
  16442. },
  16443. {
  16444. name: "Megamacro",
  16445. height: math.unit(10, "km")
  16446. },
  16447. ]
  16448. ))
  16449. characterMakers.push(() => makeCharacter(
  16450. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16451. {
  16452. front: {
  16453. height: math.unit(6, "feet"),
  16454. weight: math.unit(150, "lb"),
  16455. name: "Front",
  16456. image: {
  16457. source: "./media/characters/jack/front.svg",
  16458. extra: 1754 / 1640,
  16459. bottom: 0.01
  16460. }
  16461. },
  16462. },
  16463. [
  16464. {
  16465. name: "Normal",
  16466. height: math.unit(80000, "feet"),
  16467. default: true
  16468. },
  16469. {
  16470. name: "Max size",
  16471. height: math.unit(10, "lightyears")
  16472. },
  16473. ]
  16474. ))
  16475. characterMakers.push(() => makeCharacter(
  16476. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16477. {
  16478. urban: {
  16479. height: math.unit(5, "feet"),
  16480. weight: math.unit(240, "lb"),
  16481. name: "Urban",
  16482. image: {
  16483. source: "./media/characters/cafat/urban.svg",
  16484. extra: 1223/1126,
  16485. bottom: 205/1428
  16486. }
  16487. },
  16488. summer: {
  16489. height: math.unit(5, "feet"),
  16490. weight: math.unit(240, "lb"),
  16491. name: "Summer",
  16492. image: {
  16493. source: "./media/characters/cafat/summer.svg",
  16494. extra: 1223/1126,
  16495. bottom: 205/1428
  16496. }
  16497. },
  16498. winter: {
  16499. height: math.unit(5, "feet"),
  16500. weight: math.unit(240, "lb"),
  16501. name: "Winter",
  16502. image: {
  16503. source: "./media/characters/cafat/winter.svg",
  16504. extra: 1223/1126,
  16505. bottom: 205/1428
  16506. }
  16507. },
  16508. lingerie: {
  16509. height: math.unit(5, "feet"),
  16510. weight: math.unit(240, "lb"),
  16511. name: "Lingerie",
  16512. image: {
  16513. source: "./media/characters/cafat/lingerie.svg",
  16514. extra: 1223/1126,
  16515. bottom: 205/1428
  16516. }
  16517. },
  16518. upright: {
  16519. height: math.unit(6.3, "feet"),
  16520. weight: math.unit(240, "lb"),
  16521. name: "Upright",
  16522. image: {
  16523. source: "./media/characters/cafat/upright.svg",
  16524. bottom: 0.01
  16525. }
  16526. },
  16527. uprightFull: {
  16528. height: math.unit(6.3, "feet"),
  16529. weight: math.unit(240, "lb"),
  16530. name: "Upright (Full)",
  16531. image: {
  16532. source: "./media/characters/cafat/upright-full.svg",
  16533. bottom: 0.01
  16534. }
  16535. },
  16536. },
  16537. [
  16538. {
  16539. name: "Small",
  16540. height: math.unit(5, "feet"),
  16541. default: true
  16542. },
  16543. {
  16544. name: "Large",
  16545. height: math.unit(13, "feet")
  16546. },
  16547. ]
  16548. ))
  16549. characterMakers.push(() => makeCharacter(
  16550. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16551. {
  16552. front: {
  16553. height: math.unit(6, "feet"),
  16554. weight: math.unit(150, "lb"),
  16555. name: "Front",
  16556. image: {
  16557. source: "./media/characters/verin-raharra/front.svg",
  16558. extra: 5019 / 4835,
  16559. bottom: 0.023
  16560. }
  16561. },
  16562. },
  16563. [
  16564. {
  16565. name: "Normal",
  16566. height: math.unit(7 + 5 / 12, "feet"),
  16567. default: true
  16568. },
  16569. {
  16570. name: "Upsized",
  16571. height: math.unit(20, "feet")
  16572. },
  16573. ]
  16574. ))
  16575. characterMakers.push(() => makeCharacter(
  16576. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16577. {
  16578. front: {
  16579. height: math.unit(7, "feet"),
  16580. weight: math.unit(230, "lb"),
  16581. name: "Front",
  16582. image: {
  16583. source: "./media/characters/nakata/front.svg",
  16584. extra: 1.005,
  16585. bottom: 0.01
  16586. }
  16587. },
  16588. },
  16589. [
  16590. {
  16591. name: "Normal",
  16592. height: math.unit(7, "feet"),
  16593. default: true
  16594. },
  16595. {
  16596. name: "Big",
  16597. height: math.unit(14, "feet")
  16598. },
  16599. {
  16600. name: "Macro",
  16601. height: math.unit(400, "feet")
  16602. },
  16603. ]
  16604. ))
  16605. characterMakers.push(() => makeCharacter(
  16606. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16607. {
  16608. front: {
  16609. height: math.unit(4.91, "feet"),
  16610. weight: math.unit(100, "lb"),
  16611. name: "Front",
  16612. image: {
  16613. source: "./media/characters/lily/front.svg",
  16614. extra: 1585 / 1415,
  16615. bottom: 0.02
  16616. }
  16617. },
  16618. },
  16619. [
  16620. {
  16621. name: "Normal",
  16622. height: math.unit(4.91, "feet"),
  16623. default: true
  16624. },
  16625. ]
  16626. ))
  16627. characterMakers.push(() => makeCharacter(
  16628. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16629. {
  16630. laying: {
  16631. height: math.unit(4 + 4 / 12, "feet"),
  16632. weight: math.unit(600, "lb"),
  16633. name: "Laying",
  16634. image: {
  16635. source: "./media/characters/sheila/laying.svg",
  16636. extra: 1333 / 1265,
  16637. bottom: 0.16
  16638. }
  16639. },
  16640. },
  16641. [
  16642. {
  16643. name: "Normal",
  16644. height: math.unit(4 + 4 / 12, "feet"),
  16645. default: true
  16646. },
  16647. ]
  16648. ))
  16649. characterMakers.push(() => makeCharacter(
  16650. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16651. {
  16652. front: {
  16653. height: math.unit(6, "feet"),
  16654. weight: math.unit(190, "lb"),
  16655. name: "Front",
  16656. image: {
  16657. source: "./media/characters/sax/front.svg",
  16658. extra: 1187 / 973,
  16659. bottom: 0.042
  16660. }
  16661. },
  16662. },
  16663. [
  16664. {
  16665. name: "Micro",
  16666. height: math.unit(4, "inches"),
  16667. default: true
  16668. },
  16669. ]
  16670. ))
  16671. characterMakers.push(() => makeCharacter(
  16672. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16673. {
  16674. front: {
  16675. height: math.unit(6, "feet"),
  16676. weight: math.unit(150, "lb"),
  16677. name: "Front",
  16678. image: {
  16679. source: "./media/characters/pandora/front.svg",
  16680. extra: 2720 / 2556,
  16681. bottom: 0.015
  16682. }
  16683. },
  16684. back: {
  16685. height: math.unit(6, "feet"),
  16686. weight: math.unit(150, "lb"),
  16687. name: "Back",
  16688. image: {
  16689. source: "./media/characters/pandora/back.svg",
  16690. extra: 2720 / 2556,
  16691. bottom: 0.01
  16692. }
  16693. },
  16694. beans: {
  16695. height: math.unit(6 / 8, "feet"),
  16696. name: "Beans",
  16697. image: {
  16698. source: "./media/characters/pandora/beans.svg"
  16699. }
  16700. },
  16701. collar: {
  16702. height: math.unit(0.31, "feet"),
  16703. name: "Collar",
  16704. image: {
  16705. source: "./media/characters/pandora/collar.svg"
  16706. }
  16707. },
  16708. skirt: {
  16709. height: math.unit(6, "feet"),
  16710. weight: math.unit(150, "lb"),
  16711. name: "Skirt",
  16712. image: {
  16713. source: "./media/characters/pandora/skirt.svg",
  16714. extra: 1622 / 1525,
  16715. bottom: 0.015
  16716. }
  16717. },
  16718. hoodie: {
  16719. height: math.unit(6, "feet"),
  16720. weight: math.unit(150, "lb"),
  16721. name: "Hoodie",
  16722. image: {
  16723. source: "./media/characters/pandora/hoodie.svg",
  16724. extra: 1622 / 1525,
  16725. bottom: 0.015
  16726. }
  16727. },
  16728. casual: {
  16729. height: math.unit(6, "feet"),
  16730. weight: math.unit(150, "lb"),
  16731. name: "Casual",
  16732. image: {
  16733. source: "./media/characters/pandora/casual.svg",
  16734. extra: 1622 / 1525,
  16735. bottom: 0.015
  16736. }
  16737. },
  16738. },
  16739. [
  16740. {
  16741. name: "Normal",
  16742. height: math.unit(6, "feet")
  16743. },
  16744. {
  16745. name: "Big Steppy",
  16746. height: math.unit(1, "km"),
  16747. default: true
  16748. },
  16749. {
  16750. name: "Galactic Steppy",
  16751. height: math.unit(2, "gigameters")
  16752. },
  16753. ]
  16754. ))
  16755. characterMakers.push(() => makeCharacter(
  16756. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16757. {
  16758. side: {
  16759. height: math.unit(10, "feet"),
  16760. weight: math.unit(800, "kg"),
  16761. name: "Side",
  16762. image: {
  16763. source: "./media/characters/venio-darcony/side.svg",
  16764. extra: 1373 / 1003,
  16765. bottom: 0.037
  16766. }
  16767. },
  16768. front: {
  16769. height: math.unit(19, "feet"),
  16770. weight: math.unit(800, "kg"),
  16771. name: "Front",
  16772. image: {
  16773. source: "./media/characters/venio-darcony/front.svg"
  16774. }
  16775. },
  16776. back: {
  16777. height: math.unit(19, "feet"),
  16778. weight: math.unit(800, "kg"),
  16779. name: "Back",
  16780. image: {
  16781. source: "./media/characters/venio-darcony/back.svg"
  16782. }
  16783. },
  16784. sideNsfw: {
  16785. height: math.unit(10, "feet"),
  16786. weight: math.unit(800, "kg"),
  16787. name: "Side (NSFW)",
  16788. image: {
  16789. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16790. extra: 1373 / 1003,
  16791. bottom: 0.037
  16792. }
  16793. },
  16794. frontNsfw: {
  16795. height: math.unit(19, "feet"),
  16796. weight: math.unit(800, "kg"),
  16797. name: "Front (NSFW)",
  16798. image: {
  16799. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16800. }
  16801. },
  16802. backNsfw: {
  16803. height: math.unit(19, "feet"),
  16804. weight: math.unit(800, "kg"),
  16805. name: "Back (NSFW)",
  16806. image: {
  16807. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16808. }
  16809. },
  16810. sideArmored: {
  16811. height: math.unit(10, "feet"),
  16812. weight: math.unit(800, "kg"),
  16813. name: "Side (Armored)",
  16814. image: {
  16815. source: "./media/characters/venio-darcony/side-armored.svg",
  16816. extra: 1373 / 1003,
  16817. bottom: 0.037
  16818. }
  16819. },
  16820. frontArmored: {
  16821. height: math.unit(19, "feet"),
  16822. weight: math.unit(900, "kg"),
  16823. name: "Front (Armored)",
  16824. image: {
  16825. source: "./media/characters/venio-darcony/front-armored.svg"
  16826. }
  16827. },
  16828. backArmored: {
  16829. height: math.unit(19, "feet"),
  16830. weight: math.unit(900, "kg"),
  16831. name: "Back (Armored)",
  16832. image: {
  16833. source: "./media/characters/venio-darcony/back-armored.svg"
  16834. }
  16835. },
  16836. sword: {
  16837. height: math.unit(10, "feet"),
  16838. weight: math.unit(50, "lb"),
  16839. name: "Sword",
  16840. image: {
  16841. source: "./media/characters/venio-darcony/sword.svg"
  16842. }
  16843. },
  16844. },
  16845. [
  16846. {
  16847. name: "Normal",
  16848. height: math.unit(10, "feet")
  16849. },
  16850. {
  16851. name: "Macro",
  16852. height: math.unit(130, "feet"),
  16853. default: true
  16854. },
  16855. {
  16856. name: "Macro+",
  16857. height: math.unit(240, "feet")
  16858. },
  16859. ]
  16860. ))
  16861. characterMakers.push(() => makeCharacter(
  16862. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16863. {
  16864. front: {
  16865. height: math.unit(6, "feet"),
  16866. weight: math.unit(150, "lb"),
  16867. name: "Front",
  16868. image: {
  16869. source: "./media/characters/veski/front.svg",
  16870. extra: 1299 / 1225,
  16871. bottom: 0.04
  16872. }
  16873. },
  16874. back: {
  16875. height: math.unit(6, "feet"),
  16876. weight: math.unit(150, "lb"),
  16877. name: "Back",
  16878. image: {
  16879. source: "./media/characters/veski/back.svg",
  16880. extra: 1299 / 1225,
  16881. bottom: 0.008
  16882. }
  16883. },
  16884. maw: {
  16885. height: math.unit(1.5 * 1.21, "feet"),
  16886. name: "Maw",
  16887. image: {
  16888. source: "./media/characters/veski/maw.svg"
  16889. }
  16890. },
  16891. },
  16892. [
  16893. {
  16894. name: "Macro",
  16895. height: math.unit(2, "km"),
  16896. default: true
  16897. },
  16898. ]
  16899. ))
  16900. characterMakers.push(() => makeCharacter(
  16901. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16902. {
  16903. front: {
  16904. height: math.unit(5 + 7 / 12, "feet"),
  16905. name: "Front",
  16906. image: {
  16907. source: "./media/characters/isabelle/front.svg",
  16908. extra: 2130 / 1976,
  16909. bottom: 0.05
  16910. }
  16911. },
  16912. },
  16913. [
  16914. {
  16915. name: "Supermicro",
  16916. height: math.unit(10, "micrometers")
  16917. },
  16918. {
  16919. name: "Micro",
  16920. height: math.unit(1, "inch")
  16921. },
  16922. {
  16923. name: "Tiny",
  16924. height: math.unit(5, "inches")
  16925. },
  16926. {
  16927. name: "Standard",
  16928. height: math.unit(5 + 7 / 12, "inches")
  16929. },
  16930. {
  16931. name: "Macro",
  16932. height: math.unit(80, "meters"),
  16933. default: true
  16934. },
  16935. {
  16936. name: "Megamacro",
  16937. height: math.unit(250, "meters")
  16938. },
  16939. {
  16940. name: "Gigamacro",
  16941. height: math.unit(5, "km")
  16942. },
  16943. {
  16944. name: "Cosmic",
  16945. height: math.unit(2.5e6, "miles")
  16946. },
  16947. ]
  16948. ))
  16949. characterMakers.push(() => makeCharacter(
  16950. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16951. {
  16952. front: {
  16953. height: math.unit(6, "feet"),
  16954. weight: math.unit(150, "lb"),
  16955. name: "Front",
  16956. image: {
  16957. source: "./media/characters/hanzo/front.svg",
  16958. extra: 374 / 344,
  16959. bottom: 0.02
  16960. }
  16961. },
  16962. },
  16963. [
  16964. {
  16965. name: "Normal",
  16966. height: math.unit(8, "feet"),
  16967. default: true
  16968. },
  16969. ]
  16970. ))
  16971. characterMakers.push(() => makeCharacter(
  16972. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16973. {
  16974. front: {
  16975. height: math.unit(7, "feet"),
  16976. weight: math.unit(130, "lb"),
  16977. name: "Front",
  16978. image: {
  16979. source: "./media/characters/anna/front.svg",
  16980. extra: 169 / 145,
  16981. bottom: 0.06
  16982. }
  16983. },
  16984. full: {
  16985. height: math.unit(4.96, "feet"),
  16986. weight: math.unit(220, "lb"),
  16987. name: "Full",
  16988. image: {
  16989. source: "./media/characters/anna/full.svg",
  16990. extra: 138 / 114,
  16991. bottom: 0.15
  16992. }
  16993. },
  16994. tongue: {
  16995. height: math.unit(2.53, "feet"),
  16996. name: "Tongue",
  16997. image: {
  16998. source: "./media/characters/anna/tongue.svg"
  16999. }
  17000. },
  17001. },
  17002. [
  17003. {
  17004. name: "Normal",
  17005. height: math.unit(7, "feet"),
  17006. default: true
  17007. },
  17008. ]
  17009. ))
  17010. characterMakers.push(() => makeCharacter(
  17011. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17012. {
  17013. front: {
  17014. height: math.unit(7, "feet"),
  17015. weight: math.unit(150, "lb"),
  17016. name: "Front",
  17017. image: {
  17018. source: "./media/characters/ian-corvid/front.svg",
  17019. extra: 150 / 142,
  17020. bottom: 0.02
  17021. }
  17022. },
  17023. back: {
  17024. height: math.unit(7, "feet"),
  17025. weight: math.unit(150, "lb"),
  17026. name: "Back",
  17027. image: {
  17028. source: "./media/characters/ian-corvid/back.svg",
  17029. extra: 150 / 143,
  17030. bottom: 0.01
  17031. }
  17032. },
  17033. stomping: {
  17034. height: math.unit(7, "feet"),
  17035. weight: math.unit(150, "lb"),
  17036. name: "Stomping",
  17037. image: {
  17038. source: "./media/characters/ian-corvid/stomping.svg",
  17039. extra: 76 / 72
  17040. }
  17041. },
  17042. sitting: {
  17043. height: math.unit(7 / 1.8, "feet"),
  17044. weight: math.unit(150, "lb"),
  17045. name: "Sitting",
  17046. image: {
  17047. source: "./media/characters/ian-corvid/sitting.svg",
  17048. extra: 1400 / 1269,
  17049. bottom: 0.15
  17050. }
  17051. },
  17052. },
  17053. [
  17054. {
  17055. name: "Tiny Microw",
  17056. height: math.unit(1, "inch")
  17057. },
  17058. {
  17059. name: "Microw",
  17060. height: math.unit(6, "inches")
  17061. },
  17062. {
  17063. name: "Crow",
  17064. height: math.unit(7 + 1 / 12, "feet"),
  17065. default: true
  17066. },
  17067. {
  17068. name: "Macrow",
  17069. height: math.unit(176, "feet")
  17070. },
  17071. ]
  17072. ))
  17073. characterMakers.push(() => makeCharacter(
  17074. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17075. {
  17076. front: {
  17077. height: math.unit(5 + 7 / 12, "feet"),
  17078. weight: math.unit(147, "lb"),
  17079. name: "Front",
  17080. image: {
  17081. source: "./media/characters/natalie-kellon/front.svg",
  17082. extra: 1214 / 1141,
  17083. bottom: 0.02
  17084. }
  17085. },
  17086. },
  17087. [
  17088. {
  17089. name: "Micro",
  17090. height: math.unit(1 / 16, "inch")
  17091. },
  17092. {
  17093. name: "Tiny",
  17094. height: math.unit(4, "inches")
  17095. },
  17096. {
  17097. name: "Normal",
  17098. height: math.unit(5 + 7 / 12, "feet"),
  17099. default: true
  17100. },
  17101. {
  17102. name: "Amazon",
  17103. height: math.unit(12, "feet")
  17104. },
  17105. {
  17106. name: "Giantess",
  17107. height: math.unit(160, "meters")
  17108. },
  17109. {
  17110. name: "Titaness",
  17111. height: math.unit(800, "meters")
  17112. },
  17113. ]
  17114. ))
  17115. characterMakers.push(() => makeCharacter(
  17116. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17117. {
  17118. front: {
  17119. height: math.unit(6, "feet"),
  17120. weight: math.unit(150, "lb"),
  17121. name: "Front",
  17122. image: {
  17123. source: "./media/characters/alluria/front.svg",
  17124. extra: 806 / 738,
  17125. bottom: 0.01
  17126. }
  17127. },
  17128. side: {
  17129. height: math.unit(6, "feet"),
  17130. weight: math.unit(150, "lb"),
  17131. name: "Side",
  17132. image: {
  17133. source: "./media/characters/alluria/side.svg",
  17134. extra: 800 / 750,
  17135. }
  17136. },
  17137. back: {
  17138. height: math.unit(6, "feet"),
  17139. weight: math.unit(150, "lb"),
  17140. name: "Back",
  17141. image: {
  17142. source: "./media/characters/alluria/back.svg",
  17143. extra: 806 / 738,
  17144. }
  17145. },
  17146. frontMaid: {
  17147. height: math.unit(6, "feet"),
  17148. weight: math.unit(150, "lb"),
  17149. name: "Front (Maid)",
  17150. image: {
  17151. source: "./media/characters/alluria/front-maid.svg",
  17152. extra: 806 / 738,
  17153. bottom: 0.01
  17154. }
  17155. },
  17156. sideMaid: {
  17157. height: math.unit(6, "feet"),
  17158. weight: math.unit(150, "lb"),
  17159. name: "Side (Maid)",
  17160. image: {
  17161. source: "./media/characters/alluria/side-maid.svg",
  17162. extra: 800 / 750,
  17163. bottom: 0.005
  17164. }
  17165. },
  17166. backMaid: {
  17167. height: math.unit(6, "feet"),
  17168. weight: math.unit(150, "lb"),
  17169. name: "Back (Maid)",
  17170. image: {
  17171. source: "./media/characters/alluria/back-maid.svg",
  17172. extra: 806 / 738,
  17173. }
  17174. },
  17175. },
  17176. [
  17177. {
  17178. name: "Micro",
  17179. height: math.unit(6, "inches"),
  17180. default: true
  17181. },
  17182. ]
  17183. ))
  17184. characterMakers.push(() => makeCharacter(
  17185. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17186. {
  17187. front: {
  17188. height: math.unit(6, "feet"),
  17189. weight: math.unit(150, "lb"),
  17190. name: "Front",
  17191. image: {
  17192. source: "./media/characters/kyle/front.svg",
  17193. extra: 1069 / 962,
  17194. bottom: 77.228 / 1727.45
  17195. }
  17196. },
  17197. },
  17198. [
  17199. {
  17200. name: "Macro",
  17201. height: math.unit(150, "feet"),
  17202. default: true
  17203. },
  17204. ]
  17205. ))
  17206. characterMakers.push(() => makeCharacter(
  17207. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17208. {
  17209. front: {
  17210. height: math.unit(6, "feet"),
  17211. weight: math.unit(300, "lb"),
  17212. name: "Front",
  17213. image: {
  17214. source: "./media/characters/duncan/front.svg",
  17215. extra: 1650 / 1482,
  17216. bottom: 0.05
  17217. }
  17218. },
  17219. },
  17220. [
  17221. {
  17222. name: "Macro",
  17223. height: math.unit(100, "feet"),
  17224. default: true
  17225. },
  17226. ]
  17227. ))
  17228. characterMakers.push(() => makeCharacter(
  17229. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17230. {
  17231. front: {
  17232. height: math.unit(5 + 4 / 12, "feet"),
  17233. weight: math.unit(220, "lb"),
  17234. name: "Front",
  17235. image: {
  17236. source: "./media/characters/memory/front.svg",
  17237. extra: 3641 / 3545,
  17238. bottom: 0.03
  17239. }
  17240. },
  17241. back: {
  17242. height: math.unit(5 + 4 / 12, "feet"),
  17243. weight: math.unit(220, "lb"),
  17244. name: "Back",
  17245. image: {
  17246. source: "./media/characters/memory/back.svg",
  17247. extra: 3641 / 3545,
  17248. bottom: 0.025
  17249. }
  17250. },
  17251. frontSkirt: {
  17252. height: math.unit(5 + 4 / 12, "feet"),
  17253. weight: math.unit(220, "lb"),
  17254. name: "Front (Skirt)",
  17255. image: {
  17256. source: "./media/characters/memory/front-skirt.svg",
  17257. extra: 3641 / 3545,
  17258. bottom: 0.03
  17259. }
  17260. },
  17261. frontDress: {
  17262. height: math.unit(5 + 4 / 12, "feet"),
  17263. weight: math.unit(220, "lb"),
  17264. name: "Front (Dress)",
  17265. image: {
  17266. source: "./media/characters/memory/front-dress.svg",
  17267. extra: 3641 / 3545,
  17268. bottom: 0.03
  17269. }
  17270. },
  17271. },
  17272. [
  17273. {
  17274. name: "Micro",
  17275. height: math.unit(6, "inches"),
  17276. default: true
  17277. },
  17278. {
  17279. name: "Normal",
  17280. height: math.unit(5 + 4 / 12, "feet")
  17281. },
  17282. ]
  17283. ))
  17284. characterMakers.push(() => makeCharacter(
  17285. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17286. {
  17287. front: {
  17288. height: math.unit(4 + 11 / 12, "feet"),
  17289. weight: math.unit(100, "lb"),
  17290. name: "Front",
  17291. image: {
  17292. source: "./media/characters/luno/front.svg",
  17293. extra: 1535 / 1487,
  17294. bottom: 0.03
  17295. }
  17296. },
  17297. },
  17298. [
  17299. {
  17300. name: "Micro",
  17301. height: math.unit(3, "inches")
  17302. },
  17303. {
  17304. name: "Normal",
  17305. height: math.unit(4 + 11 / 12, "feet"),
  17306. default: true
  17307. },
  17308. {
  17309. name: "Macro",
  17310. height: math.unit(300, "feet")
  17311. },
  17312. {
  17313. name: "Megamacro",
  17314. height: math.unit(700, "miles")
  17315. },
  17316. ]
  17317. ))
  17318. characterMakers.push(() => makeCharacter(
  17319. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17320. {
  17321. front: {
  17322. height: math.unit(6 + 2 / 12, "feet"),
  17323. weight: math.unit(170, "lb"),
  17324. name: "Front",
  17325. image: {
  17326. source: "./media/characters/jamesy/front.svg",
  17327. extra: 440 / 382,
  17328. bottom: 0.005
  17329. }
  17330. },
  17331. },
  17332. [
  17333. {
  17334. name: "Micro",
  17335. height: math.unit(3, "inches")
  17336. },
  17337. {
  17338. name: "Normal",
  17339. height: math.unit(6 + 2 / 12, "feet"),
  17340. default: true
  17341. },
  17342. {
  17343. name: "Macro",
  17344. height: math.unit(300, "feet")
  17345. },
  17346. {
  17347. name: "Megamacro",
  17348. height: math.unit(700, "miles")
  17349. },
  17350. ]
  17351. ))
  17352. characterMakers.push(() => makeCharacter(
  17353. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17354. {
  17355. front: {
  17356. height: math.unit(6, "feet"),
  17357. weight: math.unit(160, "lb"),
  17358. name: "Front",
  17359. image: {
  17360. source: "./media/characters/mark/front.svg",
  17361. extra: 3300 / 3100,
  17362. bottom: 136.42 / 3440.47
  17363. }
  17364. },
  17365. },
  17366. [
  17367. {
  17368. name: "Macro",
  17369. height: math.unit(120, "meters")
  17370. },
  17371. {
  17372. name: "Bigger Macro",
  17373. height: math.unit(350, "meters")
  17374. },
  17375. {
  17376. name: "Megamacro",
  17377. height: math.unit(8, "km"),
  17378. default: true
  17379. },
  17380. {
  17381. name: "Continental",
  17382. height: math.unit(4550, "km")
  17383. },
  17384. {
  17385. name: "Planetary",
  17386. height: math.unit(65000, "km")
  17387. },
  17388. ]
  17389. ))
  17390. characterMakers.push(() => makeCharacter(
  17391. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17392. {
  17393. front: {
  17394. height: math.unit(6, "feet"),
  17395. weight: math.unit(400, "lb"),
  17396. name: "Front",
  17397. image: {
  17398. source: "./media/characters/mac/front.svg",
  17399. extra: 1048 / 987.7,
  17400. bottom: 60 / 1107.6,
  17401. }
  17402. },
  17403. },
  17404. [
  17405. {
  17406. name: "Macro",
  17407. height: math.unit(500, "feet"),
  17408. default: true
  17409. },
  17410. ]
  17411. ))
  17412. characterMakers.push(() => makeCharacter(
  17413. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17414. {
  17415. front: {
  17416. height: math.unit(5 + 2 / 12, "feet"),
  17417. weight: math.unit(190, "lb"),
  17418. name: "Front",
  17419. image: {
  17420. source: "./media/characters/bari/front.svg",
  17421. extra: 3156 / 2880,
  17422. bottom: 0.03
  17423. }
  17424. },
  17425. back: {
  17426. height: math.unit(5 + 2 / 12, "feet"),
  17427. weight: math.unit(190, "lb"),
  17428. name: "Back",
  17429. image: {
  17430. source: "./media/characters/bari/back.svg",
  17431. extra: 3260 / 2834,
  17432. bottom: 0.025
  17433. }
  17434. },
  17435. frontPlush: {
  17436. height: math.unit(5 + 2 / 12, "feet"),
  17437. weight: math.unit(190, "lb"),
  17438. name: "Front (Plush)",
  17439. image: {
  17440. source: "./media/characters/bari/front-plush.svg",
  17441. extra: 1112 / 1061,
  17442. bottom: 0.002
  17443. }
  17444. },
  17445. },
  17446. [
  17447. {
  17448. name: "Micro",
  17449. height: math.unit(3, "inches")
  17450. },
  17451. {
  17452. name: "Normal",
  17453. height: math.unit(5 + 2 / 12, "feet"),
  17454. default: true
  17455. },
  17456. {
  17457. name: "Macro",
  17458. height: math.unit(20, "feet")
  17459. },
  17460. ]
  17461. ))
  17462. characterMakers.push(() => makeCharacter(
  17463. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17464. {
  17465. front: {
  17466. height: math.unit(6 + 1 / 12, "feet"),
  17467. weight: math.unit(275, "lb"),
  17468. name: "Front",
  17469. image: {
  17470. source: "./media/characters/hunter-misha-raven/front.svg"
  17471. }
  17472. },
  17473. },
  17474. [
  17475. {
  17476. name: "Mortal",
  17477. height: math.unit(6 + 1 / 12, "feet")
  17478. },
  17479. {
  17480. name: "Divine",
  17481. height: math.unit(1.12134e34, "parsecs"),
  17482. default: true
  17483. },
  17484. ]
  17485. ))
  17486. characterMakers.push(() => makeCharacter(
  17487. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17488. {
  17489. front: {
  17490. height: math.unit(6 + 3 / 12, "feet"),
  17491. weight: math.unit(220, "lb"),
  17492. name: "Front",
  17493. image: {
  17494. source: "./media/characters/max-calore/front.svg",
  17495. extra: 1700 / 1648,
  17496. bottom: 0.01
  17497. }
  17498. },
  17499. back: {
  17500. height: math.unit(6 + 3 / 12, "feet"),
  17501. weight: math.unit(220, "lb"),
  17502. name: "Back",
  17503. image: {
  17504. source: "./media/characters/max-calore/back.svg",
  17505. extra: 1700 / 1648,
  17506. bottom: 0.01
  17507. }
  17508. },
  17509. },
  17510. [
  17511. {
  17512. name: "Normal",
  17513. height: math.unit(6 + 3 / 12, "feet"),
  17514. default: true
  17515. },
  17516. ]
  17517. ))
  17518. characterMakers.push(() => makeCharacter(
  17519. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17520. {
  17521. side: {
  17522. height: math.unit(2 + 8 / 12, "feet"),
  17523. weight: math.unit(99, "lb"),
  17524. name: "Side",
  17525. image: {
  17526. source: "./media/characters/aspen/side.svg",
  17527. extra: 152 / 138,
  17528. bottom: 0.032
  17529. }
  17530. },
  17531. },
  17532. [
  17533. {
  17534. name: "Normal",
  17535. height: math.unit(2 + 8 / 12, "feet"),
  17536. default: true
  17537. },
  17538. ]
  17539. ))
  17540. characterMakers.push(() => makeCharacter(
  17541. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17542. {
  17543. side: {
  17544. height: math.unit(3 + 2 / 12, "feet"),
  17545. weight: math.unit(224, "lb"),
  17546. name: "Side",
  17547. image: {
  17548. source: "./media/characters/sheila-feral-wolf/side.svg",
  17549. extra: 179 / 166,
  17550. bottom: 0.03
  17551. }
  17552. },
  17553. },
  17554. [
  17555. {
  17556. name: "Normal",
  17557. height: math.unit(3 + 2 / 12, "feet"),
  17558. default: true
  17559. },
  17560. ]
  17561. ))
  17562. characterMakers.push(() => makeCharacter(
  17563. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17564. {
  17565. side: {
  17566. height: math.unit(1 + 9 / 12, "feet"),
  17567. weight: math.unit(38, "lb"),
  17568. name: "Side",
  17569. image: {
  17570. source: "./media/characters/michelle/side.svg",
  17571. extra: 147 / 136.7,
  17572. bottom: 0.03
  17573. }
  17574. },
  17575. },
  17576. [
  17577. {
  17578. name: "Normal",
  17579. height: math.unit(1 + 9 / 12, "feet"),
  17580. default: true
  17581. },
  17582. ]
  17583. ))
  17584. characterMakers.push(() => makeCharacter(
  17585. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17586. {
  17587. front: {
  17588. height: math.unit(1.54, "feet"),
  17589. weight: math.unit(50, "lb"),
  17590. name: "Front",
  17591. image: {
  17592. source: "./media/characters/nino/front.svg"
  17593. }
  17594. },
  17595. },
  17596. [
  17597. {
  17598. name: "Normal",
  17599. height: math.unit(1.54, "feet"),
  17600. default: true
  17601. },
  17602. ]
  17603. ))
  17604. characterMakers.push(() => makeCharacter(
  17605. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17606. {
  17607. front: {
  17608. height: math.unit(1.49, "feet"),
  17609. weight: math.unit(45, "lb"),
  17610. name: "Front",
  17611. image: {
  17612. source: "./media/characters/viola/front.svg"
  17613. }
  17614. },
  17615. },
  17616. [
  17617. {
  17618. name: "Normal",
  17619. height: math.unit(1.49, "feet"),
  17620. default: true
  17621. },
  17622. ]
  17623. ))
  17624. characterMakers.push(() => makeCharacter(
  17625. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17626. {
  17627. front: {
  17628. height: math.unit(6 + 5 / 12, "feet"),
  17629. weight: math.unit(580, "lb"),
  17630. name: "Front",
  17631. image: {
  17632. source: "./media/characters/atlas/front.svg",
  17633. extra: 298.5 / 290,
  17634. bottom: 0.015
  17635. }
  17636. },
  17637. },
  17638. [
  17639. {
  17640. name: "Normal",
  17641. height: math.unit(6 + 5 / 12, "feet"),
  17642. default: true
  17643. },
  17644. ]
  17645. ))
  17646. characterMakers.push(() => makeCharacter(
  17647. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17648. {
  17649. side: {
  17650. height: math.unit(15.6, "inches"),
  17651. weight: math.unit(10, "lb"),
  17652. name: "Side",
  17653. image: {
  17654. source: "./media/characters/davy/side.svg",
  17655. extra: 200 / 170,
  17656. bottom: 0.01
  17657. }
  17658. },
  17659. },
  17660. [
  17661. {
  17662. name: "Normal",
  17663. height: math.unit(15.6, "inches"),
  17664. default: true
  17665. },
  17666. ]
  17667. ))
  17668. characterMakers.push(() => makeCharacter(
  17669. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17670. {
  17671. side: {
  17672. height: math.unit(4 + 8 / 12, "feet"),
  17673. weight: math.unit(166, "lb"),
  17674. name: "Side",
  17675. image: {
  17676. source: "./media/characters/fiona/side.svg",
  17677. extra: 232 / 220,
  17678. bottom: 0.03
  17679. }
  17680. },
  17681. },
  17682. [
  17683. {
  17684. name: "Normal",
  17685. height: math.unit(4 + 8 / 12, "feet"),
  17686. default: true
  17687. },
  17688. ]
  17689. ))
  17690. characterMakers.push(() => makeCharacter(
  17691. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17692. {
  17693. front: {
  17694. height: math.unit(26, "inches"),
  17695. weight: math.unit(35, "lb"),
  17696. name: "Front",
  17697. image: {
  17698. source: "./media/characters/lyla/front.svg",
  17699. bottom: 0.1
  17700. }
  17701. },
  17702. },
  17703. [
  17704. {
  17705. name: "Normal",
  17706. height: math.unit(3, "feet"),
  17707. default: true
  17708. },
  17709. ]
  17710. ))
  17711. characterMakers.push(() => makeCharacter(
  17712. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17713. {
  17714. side: {
  17715. height: math.unit(1.8, "feet"),
  17716. weight: math.unit(44, "lb"),
  17717. name: "Side",
  17718. image: {
  17719. source: "./media/characters/perseus/side.svg",
  17720. bottom: 0.21
  17721. }
  17722. },
  17723. },
  17724. [
  17725. {
  17726. name: "Normal",
  17727. height: math.unit(1.8, "feet"),
  17728. default: true
  17729. },
  17730. ]
  17731. ))
  17732. characterMakers.push(() => makeCharacter(
  17733. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17734. {
  17735. side: {
  17736. height: math.unit(4 + 2 / 12, "feet"),
  17737. weight: math.unit(20, "lb"),
  17738. name: "Side",
  17739. image: {
  17740. source: "./media/characters/remus/side.svg"
  17741. }
  17742. },
  17743. },
  17744. [
  17745. {
  17746. name: "Normal",
  17747. height: math.unit(4 + 2 / 12, "feet"),
  17748. default: true
  17749. },
  17750. ]
  17751. ))
  17752. characterMakers.push(() => makeCharacter(
  17753. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17754. {
  17755. front: {
  17756. height: math.unit(4 + 11 / 12, "feet"),
  17757. weight: math.unit(114, "lb"),
  17758. name: "Front",
  17759. image: {
  17760. source: "./media/characters/raf/front.svg",
  17761. extra: 1504/1339,
  17762. bottom: 26/1530
  17763. }
  17764. },
  17765. side: {
  17766. height: math.unit(4 + 11 / 12, "feet"),
  17767. weight: math.unit(114, "lb"),
  17768. name: "Side",
  17769. image: {
  17770. source: "./media/characters/raf/side.svg",
  17771. extra: 1466/1316,
  17772. bottom: 29/1495
  17773. }
  17774. },
  17775. },
  17776. [
  17777. {
  17778. name: "Micro",
  17779. height: math.unit(2, "inches")
  17780. },
  17781. {
  17782. name: "Normal",
  17783. height: math.unit(4 + 11 / 12, "feet"),
  17784. default: true
  17785. },
  17786. {
  17787. name: "Macro",
  17788. height: math.unit(70, "feet")
  17789. },
  17790. ]
  17791. ))
  17792. characterMakers.push(() => makeCharacter(
  17793. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17794. {
  17795. front: {
  17796. height: math.unit(1.5, "meters"),
  17797. weight: math.unit(68, "kg"),
  17798. name: "Front",
  17799. image: {
  17800. source: "./media/characters/liam-einarr/front.svg",
  17801. extra: 2822 / 2666
  17802. }
  17803. },
  17804. back: {
  17805. height: math.unit(1.5, "meters"),
  17806. weight: math.unit(68, "kg"),
  17807. name: "Back",
  17808. image: {
  17809. source: "./media/characters/liam-einarr/back.svg",
  17810. extra: 2822 / 2666,
  17811. bottom: 0.015
  17812. }
  17813. },
  17814. },
  17815. [
  17816. {
  17817. name: "Normal",
  17818. height: math.unit(1.5, "meters"),
  17819. default: true
  17820. },
  17821. {
  17822. name: "Macro",
  17823. height: math.unit(150, "meters")
  17824. },
  17825. {
  17826. name: "Megamacro",
  17827. height: math.unit(35, "km")
  17828. },
  17829. ]
  17830. ))
  17831. characterMakers.push(() => makeCharacter(
  17832. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17833. {
  17834. front: {
  17835. height: math.unit(6, "feet"),
  17836. weight: math.unit(75, "kg"),
  17837. name: "Front",
  17838. image: {
  17839. source: "./media/characters/linda/front.svg",
  17840. extra: 930 / 874,
  17841. bottom: 0.004
  17842. }
  17843. },
  17844. },
  17845. [
  17846. {
  17847. name: "Normal",
  17848. height: math.unit(6, "feet"),
  17849. default: true
  17850. },
  17851. ]
  17852. ))
  17853. characterMakers.push(() => makeCharacter(
  17854. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17855. {
  17856. front: {
  17857. height: math.unit(6 + 8 / 12, "feet"),
  17858. weight: math.unit(220, "lb"),
  17859. name: "Front",
  17860. image: {
  17861. source: "./media/characters/caylex/front.svg",
  17862. extra: 821 / 772,
  17863. bottom: 0.07
  17864. }
  17865. },
  17866. back: {
  17867. height: math.unit(6 + 8 / 12, "feet"),
  17868. weight: math.unit(220, "lb"),
  17869. name: "Back",
  17870. image: {
  17871. source: "./media/characters/caylex/back.svg",
  17872. extra: 821 / 772,
  17873. bottom: 0.022
  17874. }
  17875. },
  17876. hand: {
  17877. height: math.unit(1.25, "feet"),
  17878. name: "Hand",
  17879. image: {
  17880. source: "./media/characters/caylex/hand.svg"
  17881. }
  17882. },
  17883. foot: {
  17884. height: math.unit(1.6, "feet"),
  17885. name: "Foot",
  17886. image: {
  17887. source: "./media/characters/caylex/foot.svg"
  17888. }
  17889. },
  17890. armored: {
  17891. height: math.unit(6 + 8 / 12, "feet"),
  17892. weight: math.unit(250, "lb"),
  17893. name: "Armored",
  17894. image: {
  17895. source: "./media/characters/caylex/armored.svg",
  17896. extra: 1420 / 1310,
  17897. bottom: 0.045
  17898. }
  17899. },
  17900. },
  17901. [
  17902. {
  17903. name: "Normal",
  17904. height: math.unit(6 + 8 / 12, "feet"),
  17905. default: true
  17906. },
  17907. {
  17908. name: "Normal+",
  17909. height: math.unit(12, "feet")
  17910. },
  17911. ]
  17912. ))
  17913. characterMakers.push(() => makeCharacter(
  17914. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17915. {
  17916. front: {
  17917. height: math.unit(7 + 6 / 12, "feet"),
  17918. weight: math.unit(288, "lb"),
  17919. name: "Front",
  17920. image: {
  17921. source: "./media/characters/alana/front.svg",
  17922. extra: 679 / 653,
  17923. bottom: 22.5 / 701
  17924. }
  17925. },
  17926. },
  17927. [
  17928. {
  17929. name: "Normal",
  17930. height: math.unit(7 + 6 / 12, "feet")
  17931. },
  17932. {
  17933. name: "Large",
  17934. height: math.unit(50, "feet")
  17935. },
  17936. {
  17937. name: "Macro",
  17938. height: math.unit(100, "feet"),
  17939. default: true
  17940. },
  17941. {
  17942. name: "Macro+",
  17943. height: math.unit(200, "feet")
  17944. },
  17945. ]
  17946. ))
  17947. characterMakers.push(() => makeCharacter(
  17948. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17949. {
  17950. front: {
  17951. height: math.unit(6 + 1 / 12, "feet"),
  17952. weight: math.unit(210, "lb"),
  17953. name: "Front",
  17954. image: {
  17955. source: "./media/characters/hasani/front.svg",
  17956. extra: 244 / 232,
  17957. bottom: 0.01
  17958. }
  17959. },
  17960. back: {
  17961. height: math.unit(6 + 1 / 12, "feet"),
  17962. weight: math.unit(210, "lb"),
  17963. name: "Back",
  17964. image: {
  17965. source: "./media/characters/hasani/back.svg",
  17966. extra: 244 / 232,
  17967. bottom: 0.01
  17968. }
  17969. },
  17970. },
  17971. [
  17972. {
  17973. name: "Normal",
  17974. height: math.unit(6 + 1 / 12, "feet")
  17975. },
  17976. {
  17977. name: "Macro",
  17978. height: math.unit(175, "feet"),
  17979. default: true
  17980. },
  17981. ]
  17982. ))
  17983. characterMakers.push(() => makeCharacter(
  17984. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17985. {
  17986. front: {
  17987. height: math.unit(1.82, "meters"),
  17988. weight: math.unit(140, "lb"),
  17989. name: "Front",
  17990. image: {
  17991. source: "./media/characters/nita/front.svg",
  17992. extra: 2473 / 2363,
  17993. bottom: 0.01
  17994. }
  17995. },
  17996. },
  17997. [
  17998. {
  17999. name: "Normal",
  18000. height: math.unit(1.82, "m")
  18001. },
  18002. {
  18003. name: "Macro",
  18004. height: math.unit(300, "m")
  18005. },
  18006. {
  18007. name: "Mistake Canon",
  18008. height: math.unit(0.5, "miles"),
  18009. default: true
  18010. },
  18011. {
  18012. name: "Big Mistake",
  18013. height: math.unit(13, "miles")
  18014. },
  18015. {
  18016. name: "Playing God",
  18017. height: math.unit(2450, "miles")
  18018. },
  18019. ]
  18020. ))
  18021. characterMakers.push(() => makeCharacter(
  18022. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18023. {
  18024. front: {
  18025. height: math.unit(4, "feet"),
  18026. weight: math.unit(120, "lb"),
  18027. name: "Front",
  18028. image: {
  18029. source: "./media/characters/shiriko/front.svg",
  18030. extra: 970/934,
  18031. bottom: 5/975
  18032. }
  18033. },
  18034. },
  18035. [
  18036. {
  18037. name: "Normal",
  18038. height: math.unit(4, "feet"),
  18039. default: true
  18040. },
  18041. ]
  18042. ))
  18043. characterMakers.push(() => makeCharacter(
  18044. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18045. {
  18046. front: {
  18047. height: math.unit(6, "feet"),
  18048. name: "front",
  18049. image: {
  18050. source: "./media/characters/deja/front.svg",
  18051. extra: 926 / 840,
  18052. bottom: 0.07
  18053. }
  18054. },
  18055. },
  18056. [
  18057. {
  18058. name: "Planck Length",
  18059. height: math.unit(1.6e-35, "meters")
  18060. },
  18061. {
  18062. name: "Normal",
  18063. height: math.unit(30.48, "meters"),
  18064. default: true
  18065. },
  18066. {
  18067. name: "Universal",
  18068. height: math.unit(8.8e26, "meters")
  18069. },
  18070. ]
  18071. ))
  18072. characterMakers.push(() => makeCharacter(
  18073. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18074. {
  18075. side: {
  18076. height: math.unit(8, "feet"),
  18077. weight: math.unit(6300, "lb"),
  18078. name: "Side",
  18079. image: {
  18080. source: "./media/characters/anima/side.svg",
  18081. bottom: 0.035
  18082. }
  18083. },
  18084. },
  18085. [
  18086. {
  18087. name: "Normal",
  18088. height: math.unit(8, "feet"),
  18089. default: true
  18090. },
  18091. ]
  18092. ))
  18093. characterMakers.push(() => makeCharacter(
  18094. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18095. {
  18096. front: {
  18097. height: math.unit(8, "feet"),
  18098. weight: math.unit(350, "lb"),
  18099. name: "Front",
  18100. image: {
  18101. source: "./media/characters/bianca/front.svg",
  18102. extra: 234 / 225,
  18103. bottom: 0.03
  18104. }
  18105. },
  18106. },
  18107. [
  18108. {
  18109. name: "Normal",
  18110. height: math.unit(8, "feet"),
  18111. default: true
  18112. },
  18113. ]
  18114. ))
  18115. characterMakers.push(() => makeCharacter(
  18116. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18117. {
  18118. front: {
  18119. height: math.unit(6, "feet"),
  18120. weight: math.unit(150, "lb"),
  18121. name: "Front",
  18122. image: {
  18123. source: "./media/characters/adinia/front.svg",
  18124. extra: 1845 / 1672,
  18125. bottom: 0.02
  18126. }
  18127. },
  18128. back: {
  18129. height: math.unit(6, "feet"),
  18130. weight: math.unit(150, "lb"),
  18131. name: "Back",
  18132. image: {
  18133. source: "./media/characters/adinia/back.svg",
  18134. extra: 1845 / 1672,
  18135. bottom: 0.002
  18136. }
  18137. },
  18138. },
  18139. [
  18140. {
  18141. name: "Normal",
  18142. height: math.unit(11 + 5 / 12, "feet"),
  18143. default: true
  18144. },
  18145. ]
  18146. ))
  18147. characterMakers.push(() => makeCharacter(
  18148. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18149. {
  18150. front: {
  18151. height: math.unit(3, "meters"),
  18152. weight: math.unit(200, "kg"),
  18153. name: "Front",
  18154. image: {
  18155. source: "./media/characters/lykasa/front.svg",
  18156. extra: 1076 / 976,
  18157. bottom: 0.06
  18158. }
  18159. },
  18160. },
  18161. [
  18162. {
  18163. name: "Normal",
  18164. height: math.unit(3, "meters")
  18165. },
  18166. {
  18167. name: "Kaiju",
  18168. height: math.unit(120, "meters"),
  18169. default: true
  18170. },
  18171. {
  18172. name: "Mega Kaiju",
  18173. height: math.unit(240, "km")
  18174. },
  18175. {
  18176. name: "Giga Kaiju",
  18177. height: math.unit(400, "megameters")
  18178. },
  18179. {
  18180. name: "Tera Kaiju",
  18181. height: math.unit(800, "gigameters")
  18182. },
  18183. {
  18184. name: "Kaiju Dragon Goddess",
  18185. height: math.unit(26, "zettaparsecs")
  18186. },
  18187. ]
  18188. ))
  18189. characterMakers.push(() => makeCharacter(
  18190. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18191. {
  18192. side: {
  18193. height: math.unit(283 / 124 * 6, "feet"),
  18194. weight: math.unit(35000, "lb"),
  18195. name: "Side",
  18196. image: {
  18197. source: "./media/characters/malfaren/side.svg",
  18198. extra: 1310/529,
  18199. bottom: 24/1334
  18200. }
  18201. },
  18202. front: {
  18203. height: math.unit(22.36, "feet"),
  18204. weight: math.unit(35000, "lb"),
  18205. name: "Front",
  18206. image: {
  18207. source: "./media/characters/malfaren/front.svg",
  18208. extra: 1237/1115,
  18209. bottom: 32/1269
  18210. }
  18211. },
  18212. maw: {
  18213. height: math.unit(6.9, "feet"),
  18214. name: "Maw",
  18215. image: {
  18216. source: "./media/characters/malfaren/maw.svg"
  18217. }
  18218. },
  18219. dick: {
  18220. height: math.unit(6.19, "feet"),
  18221. name: "Dick",
  18222. image: {
  18223. source: "./media/characters/malfaren/dick.svg"
  18224. }
  18225. },
  18226. eye: {
  18227. height: math.unit(0.69, "feet"),
  18228. name: "Eye",
  18229. image: {
  18230. source: "./media/characters/malfaren/eye.svg"
  18231. }
  18232. },
  18233. },
  18234. [
  18235. {
  18236. name: "Big",
  18237. height: math.unit(283 / 162 * 6, "feet"),
  18238. },
  18239. {
  18240. name: "Bigger",
  18241. height: math.unit(283 / 124 * 6, "feet")
  18242. },
  18243. {
  18244. name: "Massive",
  18245. height: math.unit(283 / 92 * 6, "feet"),
  18246. default: true
  18247. },
  18248. {
  18249. name: "👀💦",
  18250. height: math.unit(283 / 73 * 6, "feet"),
  18251. },
  18252. ]
  18253. ))
  18254. characterMakers.push(() => makeCharacter(
  18255. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18256. {
  18257. front: {
  18258. height: math.unit(1.7, "m"),
  18259. weight: math.unit(70, "kg"),
  18260. name: "Front",
  18261. image: {
  18262. source: "./media/characters/kernel/front.svg",
  18263. extra: 222 / 210,
  18264. bottom: 0.007
  18265. }
  18266. },
  18267. },
  18268. [
  18269. {
  18270. name: "Nano",
  18271. height: math.unit(17, "micrometers")
  18272. },
  18273. {
  18274. name: "Micro",
  18275. height: math.unit(1.7, "mm")
  18276. },
  18277. {
  18278. name: "Small",
  18279. height: math.unit(1.7, "cm")
  18280. },
  18281. {
  18282. name: "Normal",
  18283. height: math.unit(1.7, "m"),
  18284. default: true
  18285. },
  18286. ]
  18287. ))
  18288. characterMakers.push(() => makeCharacter(
  18289. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18290. {
  18291. front: {
  18292. height: math.unit(1.75, "meters"),
  18293. weight: math.unit(65, "kg"),
  18294. name: "Front",
  18295. image: {
  18296. source: "./media/characters/jayne-folest/front.svg",
  18297. extra: 2115 / 2007,
  18298. bottom: 0.02
  18299. }
  18300. },
  18301. back: {
  18302. height: math.unit(1.75, "meters"),
  18303. weight: math.unit(65, "kg"),
  18304. name: "Back",
  18305. image: {
  18306. source: "./media/characters/jayne-folest/back.svg",
  18307. extra: 2115 / 2007,
  18308. bottom: 0.005
  18309. }
  18310. },
  18311. frontClothed: {
  18312. height: math.unit(1.75, "meters"),
  18313. weight: math.unit(65, "kg"),
  18314. name: "Front (Clothed)",
  18315. image: {
  18316. source: "./media/characters/jayne-folest/front-clothed.svg",
  18317. extra: 2115 / 2007,
  18318. bottom: 0.035
  18319. }
  18320. },
  18321. hand: {
  18322. height: math.unit(1 / 1.260, "feet"),
  18323. name: "Hand",
  18324. image: {
  18325. source: "./media/characters/jayne-folest/hand.svg"
  18326. }
  18327. },
  18328. foot: {
  18329. height: math.unit(1 / 0.918, "feet"),
  18330. name: "Foot",
  18331. image: {
  18332. source: "./media/characters/jayne-folest/foot.svg"
  18333. }
  18334. },
  18335. },
  18336. [
  18337. {
  18338. name: "Micro",
  18339. height: math.unit(4, "cm")
  18340. },
  18341. {
  18342. name: "Normal",
  18343. height: math.unit(1.75, "meters")
  18344. },
  18345. {
  18346. name: "Macro",
  18347. height: math.unit(47.5, "meters"),
  18348. default: true
  18349. },
  18350. ]
  18351. ))
  18352. characterMakers.push(() => makeCharacter(
  18353. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18354. {
  18355. front: {
  18356. height: math.unit(180, "cm"),
  18357. weight: math.unit(70, "kg"),
  18358. name: "Front",
  18359. image: {
  18360. source: "./media/characters/algier/front.svg",
  18361. extra: 596 / 572,
  18362. bottom: 0.04
  18363. }
  18364. },
  18365. back: {
  18366. height: math.unit(180, "cm"),
  18367. weight: math.unit(70, "kg"),
  18368. name: "Back",
  18369. image: {
  18370. source: "./media/characters/algier/back.svg",
  18371. extra: 596 / 572,
  18372. bottom: 0.025
  18373. }
  18374. },
  18375. frontdressed: {
  18376. height: math.unit(180, "cm"),
  18377. weight: math.unit(150, "kg"),
  18378. name: "Front-dressed",
  18379. image: {
  18380. source: "./media/characters/algier/front-dressed.svg",
  18381. extra: 596 / 572,
  18382. bottom: 0.038
  18383. }
  18384. },
  18385. },
  18386. [
  18387. {
  18388. name: "Micro",
  18389. height: math.unit(5, "cm")
  18390. },
  18391. {
  18392. name: "Normal",
  18393. height: math.unit(180, "cm"),
  18394. default: true
  18395. },
  18396. {
  18397. name: "Macro",
  18398. height: math.unit(64, "m")
  18399. },
  18400. ]
  18401. ))
  18402. characterMakers.push(() => makeCharacter(
  18403. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18404. {
  18405. upright: {
  18406. height: math.unit(7, "feet"),
  18407. weight: math.unit(300, "lb"),
  18408. name: "Upright",
  18409. image: {
  18410. source: "./media/characters/pretzel/upright.svg",
  18411. extra: 534 / 522,
  18412. bottom: 0.065
  18413. }
  18414. },
  18415. sprawling: {
  18416. height: math.unit(3.75, "feet"),
  18417. weight: math.unit(300, "lb"),
  18418. name: "Sprawling",
  18419. image: {
  18420. source: "./media/characters/pretzel/sprawling.svg",
  18421. extra: 314 / 281,
  18422. bottom: 0.1
  18423. }
  18424. },
  18425. tongue: {
  18426. height: math.unit(2, "feet"),
  18427. name: "Tongue",
  18428. image: {
  18429. source: "./media/characters/pretzel/tongue.svg"
  18430. }
  18431. },
  18432. },
  18433. [
  18434. {
  18435. name: "Normal",
  18436. height: math.unit(7, "feet"),
  18437. default: true
  18438. },
  18439. {
  18440. name: "Oversized",
  18441. height: math.unit(15, "feet")
  18442. },
  18443. {
  18444. name: "Huge",
  18445. height: math.unit(30, "feet")
  18446. },
  18447. {
  18448. name: "Macro",
  18449. height: math.unit(250, "feet")
  18450. },
  18451. ]
  18452. ))
  18453. characterMakers.push(() => makeCharacter(
  18454. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18455. {
  18456. sideFront: {
  18457. height: math.unit(5 + 2 / 12, "feet"),
  18458. weight: math.unit(120, "lb"),
  18459. name: "Front Side",
  18460. image: {
  18461. source: "./media/characters/roxi/side-front.svg",
  18462. extra: 2924 / 2717,
  18463. bottom: 0.08
  18464. }
  18465. },
  18466. sideBack: {
  18467. height: math.unit(5 + 2 / 12, "feet"),
  18468. weight: math.unit(120, "lb"),
  18469. name: "Back Side",
  18470. image: {
  18471. source: "./media/characters/roxi/side-back.svg",
  18472. extra: 2904 / 2693,
  18473. bottom: 0.06
  18474. }
  18475. },
  18476. front: {
  18477. height: math.unit(5 + 2 / 12, "feet"),
  18478. weight: math.unit(120, "lb"),
  18479. name: "Front",
  18480. image: {
  18481. source: "./media/characters/roxi/front.svg",
  18482. extra: 2028 / 1907,
  18483. bottom: 0.01
  18484. }
  18485. },
  18486. frontAlt: {
  18487. height: math.unit(5 + 2 / 12, "feet"),
  18488. weight: math.unit(120, "lb"),
  18489. name: "Front (Alt)",
  18490. image: {
  18491. source: "./media/characters/roxi/front-alt.svg",
  18492. extra: 1828 / 1798,
  18493. bottom: 0.01
  18494. }
  18495. },
  18496. sitting: {
  18497. height: math.unit(2.8, "feet"),
  18498. weight: math.unit(120, "lb"),
  18499. name: "Sitting",
  18500. image: {
  18501. source: "./media/characters/roxi/sitting.svg",
  18502. extra: 2660 / 2462,
  18503. bottom: 0.1
  18504. }
  18505. },
  18506. },
  18507. [
  18508. {
  18509. name: "Normal",
  18510. height: math.unit(5 + 2 / 12, "feet"),
  18511. default: true
  18512. },
  18513. ]
  18514. ))
  18515. characterMakers.push(() => makeCharacter(
  18516. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18517. {
  18518. side: {
  18519. height: math.unit(55, "feet"),
  18520. weight: math.unit(153, "tons"),
  18521. name: "Side",
  18522. image: {
  18523. source: "./media/characters/shadow/side.svg",
  18524. extra: 701 / 628,
  18525. bottom: 0.02
  18526. }
  18527. },
  18528. flying: {
  18529. height: math.unit(145, "feet"),
  18530. weight: math.unit(153, "tons"),
  18531. name: "Flying",
  18532. image: {
  18533. source: "./media/characters/shadow/flying.svg"
  18534. }
  18535. },
  18536. },
  18537. [
  18538. {
  18539. name: "Normal",
  18540. height: math.unit(55, "feet"),
  18541. default: true
  18542. },
  18543. ]
  18544. ))
  18545. characterMakers.push(() => makeCharacter(
  18546. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18547. {
  18548. front: {
  18549. height: math.unit(6, "feet"),
  18550. weight: math.unit(200, "lb"),
  18551. name: "Front",
  18552. image: {
  18553. source: "./media/characters/marcie/front.svg",
  18554. extra: 960 / 876,
  18555. bottom: 58 / 1017.87
  18556. }
  18557. },
  18558. },
  18559. [
  18560. {
  18561. name: "Macro",
  18562. height: math.unit(1, "mile"),
  18563. default: true
  18564. },
  18565. ]
  18566. ))
  18567. characterMakers.push(() => makeCharacter(
  18568. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18569. {
  18570. front: {
  18571. height: math.unit(7, "feet"),
  18572. weight: math.unit(200, "lb"),
  18573. name: "Front",
  18574. image: {
  18575. source: "./media/characters/kachina/front.svg",
  18576. extra: 1290.68 / 1119,
  18577. bottom: 36.5 / 1327.18
  18578. }
  18579. },
  18580. },
  18581. [
  18582. {
  18583. name: "Normal",
  18584. height: math.unit(7, "feet"),
  18585. default: true
  18586. },
  18587. ]
  18588. ))
  18589. characterMakers.push(() => makeCharacter(
  18590. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18591. {
  18592. looking: {
  18593. height: math.unit(2, "meters"),
  18594. weight: math.unit(300, "kg"),
  18595. name: "Looking",
  18596. image: {
  18597. source: "./media/characters/kash/looking.svg",
  18598. extra: 474 / 344,
  18599. bottom: 0.03
  18600. }
  18601. },
  18602. side: {
  18603. height: math.unit(2, "meters"),
  18604. weight: math.unit(300, "kg"),
  18605. name: "Side",
  18606. image: {
  18607. source: "./media/characters/kash/side.svg",
  18608. extra: 302 / 251,
  18609. bottom: 0.03
  18610. }
  18611. },
  18612. front: {
  18613. height: math.unit(2, "meters"),
  18614. weight: math.unit(300, "kg"),
  18615. name: "Front",
  18616. image: {
  18617. source: "./media/characters/kash/front.svg",
  18618. extra: 495 / 360,
  18619. bottom: 0.015
  18620. }
  18621. },
  18622. },
  18623. [
  18624. {
  18625. name: "Normal",
  18626. height: math.unit(2, "meters"),
  18627. default: true
  18628. },
  18629. {
  18630. name: "Big",
  18631. height: math.unit(3, "meters")
  18632. },
  18633. {
  18634. name: "Large",
  18635. height: math.unit(5, "meters")
  18636. },
  18637. ]
  18638. ))
  18639. characterMakers.push(() => makeCharacter(
  18640. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18641. {
  18642. feeding: {
  18643. height: math.unit(6.7, "feet"),
  18644. weight: math.unit(350, "lb"),
  18645. name: "Feeding",
  18646. image: {
  18647. source: "./media/characters/lalim/feeding.svg",
  18648. }
  18649. },
  18650. },
  18651. [
  18652. {
  18653. name: "Normal",
  18654. height: math.unit(6.7, "feet"),
  18655. default: true
  18656. },
  18657. ]
  18658. ))
  18659. characterMakers.push(() => makeCharacter(
  18660. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18661. {
  18662. front: {
  18663. height: math.unit(9.5, "feet"),
  18664. weight: math.unit(600, "lb"),
  18665. name: "Front",
  18666. image: {
  18667. source: "./media/characters/de'vout/front.svg",
  18668. extra: 1443 / 1328,
  18669. bottom: 0.025
  18670. }
  18671. },
  18672. back: {
  18673. height: math.unit(9.5, "feet"),
  18674. weight: math.unit(600, "lb"),
  18675. name: "Back",
  18676. image: {
  18677. source: "./media/characters/de'vout/back.svg",
  18678. extra: 1443 / 1328
  18679. }
  18680. },
  18681. frontDressed: {
  18682. height: math.unit(9.5, "feet"),
  18683. weight: math.unit(600, "lb"),
  18684. name: "Front (Dressed",
  18685. image: {
  18686. source: "./media/characters/de'vout/front-dressed.svg",
  18687. extra: 1443 / 1328,
  18688. bottom: 0.025
  18689. }
  18690. },
  18691. backDressed: {
  18692. height: math.unit(9.5, "feet"),
  18693. weight: math.unit(600, "lb"),
  18694. name: "Back (Dressed",
  18695. image: {
  18696. source: "./media/characters/de'vout/back-dressed.svg",
  18697. extra: 1443 / 1328
  18698. }
  18699. },
  18700. },
  18701. [
  18702. {
  18703. name: "Normal",
  18704. height: math.unit(9.5, "feet"),
  18705. default: true
  18706. },
  18707. ]
  18708. ))
  18709. characterMakers.push(() => makeCharacter(
  18710. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18711. {
  18712. front: {
  18713. height: math.unit(8, "feet"),
  18714. weight: math.unit(225, "lb"),
  18715. name: "Front",
  18716. image: {
  18717. source: "./media/characters/talana/front.svg",
  18718. extra: 1410 / 1300,
  18719. bottom: 0.015
  18720. }
  18721. },
  18722. frontDressed: {
  18723. height: math.unit(8, "feet"),
  18724. weight: math.unit(225, "lb"),
  18725. name: "Front (Dressed",
  18726. image: {
  18727. source: "./media/characters/talana/front-dressed.svg",
  18728. extra: 1410 / 1300,
  18729. bottom: 0.015
  18730. }
  18731. },
  18732. },
  18733. [
  18734. {
  18735. name: "Normal",
  18736. height: math.unit(8, "feet"),
  18737. default: true
  18738. },
  18739. ]
  18740. ))
  18741. characterMakers.push(() => makeCharacter(
  18742. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18743. {
  18744. side: {
  18745. height: math.unit(7.2, "feet"),
  18746. weight: math.unit(150, "lb"),
  18747. name: "Side",
  18748. image: {
  18749. source: "./media/characters/xeauvok/side.svg",
  18750. extra: 1975 / 1523,
  18751. bottom: 0.07
  18752. }
  18753. },
  18754. },
  18755. [
  18756. {
  18757. name: "Normal",
  18758. height: math.unit(7.2, "feet"),
  18759. default: true
  18760. },
  18761. ]
  18762. ))
  18763. characterMakers.push(() => makeCharacter(
  18764. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18765. {
  18766. side: {
  18767. height: math.unit(10, "feet"),
  18768. weight: math.unit(900, "kg"),
  18769. name: "Side",
  18770. image: {
  18771. source: "./media/characters/zara/side.svg",
  18772. extra: 504 / 498
  18773. }
  18774. },
  18775. },
  18776. [
  18777. {
  18778. name: "Normal",
  18779. height: math.unit(10, "feet"),
  18780. default: true
  18781. },
  18782. ]
  18783. ))
  18784. characterMakers.push(() => makeCharacter(
  18785. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18786. {
  18787. side: {
  18788. height: math.unit(6, "feet"),
  18789. weight: math.unit(150, "lb"),
  18790. name: "Side",
  18791. image: {
  18792. source: "./media/characters/richard-dragon/side.svg",
  18793. extra: 845 / 340,
  18794. bottom: 0.017
  18795. }
  18796. },
  18797. maw: {
  18798. height: math.unit(2.97, "feet"),
  18799. name: "Maw",
  18800. image: {
  18801. source: "./media/characters/richard-dragon/maw.svg"
  18802. }
  18803. },
  18804. },
  18805. [
  18806. ]
  18807. ))
  18808. characterMakers.push(() => makeCharacter(
  18809. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18810. {
  18811. front: {
  18812. height: math.unit(4, "feet"),
  18813. weight: math.unit(100, "lb"),
  18814. name: "Front",
  18815. image: {
  18816. source: "./media/characters/richard-smeargle/front.svg",
  18817. extra: 2952 / 2820,
  18818. bottom: 0.028
  18819. }
  18820. },
  18821. },
  18822. [
  18823. {
  18824. name: "Normal",
  18825. height: math.unit(4, "feet"),
  18826. default: true
  18827. },
  18828. {
  18829. name: "Dynamax",
  18830. height: math.unit(20, "meters")
  18831. },
  18832. ]
  18833. ))
  18834. characterMakers.push(() => makeCharacter(
  18835. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18836. {
  18837. front: {
  18838. height: math.unit(6, "feet"),
  18839. weight: math.unit(110, "lb"),
  18840. name: "Front",
  18841. image: {
  18842. source: "./media/characters/klay/front.svg",
  18843. extra: 962 / 883,
  18844. bottom: 0.04
  18845. }
  18846. },
  18847. back: {
  18848. height: math.unit(6, "feet"),
  18849. weight: math.unit(110, "lb"),
  18850. name: "Back",
  18851. image: {
  18852. source: "./media/characters/klay/back.svg",
  18853. extra: 962 / 883
  18854. }
  18855. },
  18856. beans: {
  18857. height: math.unit(1.15, "feet"),
  18858. name: "Beans",
  18859. image: {
  18860. source: "./media/characters/klay/beans.svg"
  18861. }
  18862. },
  18863. },
  18864. [
  18865. {
  18866. name: "Micro",
  18867. height: math.unit(6, "inches")
  18868. },
  18869. {
  18870. name: "Mini",
  18871. height: math.unit(3, "feet")
  18872. },
  18873. {
  18874. name: "Normal",
  18875. height: math.unit(6, "feet"),
  18876. default: true
  18877. },
  18878. {
  18879. name: "Big",
  18880. height: math.unit(25, "feet")
  18881. },
  18882. {
  18883. name: "Macro",
  18884. height: math.unit(100, "feet")
  18885. },
  18886. {
  18887. name: "Megamacro",
  18888. height: math.unit(400, "feet")
  18889. },
  18890. ]
  18891. ))
  18892. characterMakers.push(() => makeCharacter(
  18893. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18894. {
  18895. front: {
  18896. height: math.unit(6, "feet"),
  18897. weight: math.unit(160, "lb"),
  18898. name: "Front",
  18899. image: {
  18900. source: "./media/characters/marcus/front.svg",
  18901. extra: 734 / 676,
  18902. bottom: 0.03
  18903. }
  18904. },
  18905. },
  18906. [
  18907. {
  18908. name: "Little",
  18909. height: math.unit(6, "feet")
  18910. },
  18911. {
  18912. name: "Normal",
  18913. height: math.unit(110, "feet"),
  18914. default: true
  18915. },
  18916. {
  18917. name: "Macro",
  18918. height: math.unit(250, "feet")
  18919. },
  18920. {
  18921. name: "Megamacro",
  18922. height: math.unit(1000, "feet")
  18923. },
  18924. ]
  18925. ))
  18926. characterMakers.push(() => makeCharacter(
  18927. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18928. {
  18929. front: {
  18930. height: math.unit(7, "feet"),
  18931. weight: math.unit(275, "lb"),
  18932. name: "Front",
  18933. image: {
  18934. source: "./media/characters/claude-delroute/front.svg",
  18935. extra: 902/827,
  18936. bottom: 26/928
  18937. }
  18938. },
  18939. side: {
  18940. height: math.unit(7, "feet"),
  18941. weight: math.unit(275, "lb"),
  18942. name: "Side",
  18943. image: {
  18944. source: "./media/characters/claude-delroute/side.svg",
  18945. extra: 908/853,
  18946. bottom: 16/924
  18947. }
  18948. },
  18949. back: {
  18950. height: math.unit(7, "feet"),
  18951. weight: math.unit(275, "lb"),
  18952. name: "Back",
  18953. image: {
  18954. source: "./media/characters/claude-delroute/back.svg",
  18955. extra: 911/829,
  18956. bottom: 18/929
  18957. }
  18958. },
  18959. maw: {
  18960. height: math.unit(0.6407, "meters"),
  18961. name: "Maw",
  18962. image: {
  18963. source: "./media/characters/claude-delroute/maw.svg"
  18964. }
  18965. },
  18966. },
  18967. [
  18968. {
  18969. name: "Normal",
  18970. height: math.unit(7, "feet"),
  18971. default: true
  18972. },
  18973. {
  18974. name: "Lorge",
  18975. height: math.unit(20, "feet")
  18976. },
  18977. ]
  18978. ))
  18979. characterMakers.push(() => makeCharacter(
  18980. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18981. {
  18982. front: {
  18983. height: math.unit(8 + 4 / 12, "feet"),
  18984. weight: math.unit(600, "lb"),
  18985. name: "Front",
  18986. image: {
  18987. source: "./media/characters/dragonien/front.svg",
  18988. extra: 100 / 94,
  18989. bottom: 3.3 / 103.3445
  18990. }
  18991. },
  18992. back: {
  18993. height: math.unit(8 + 4 / 12, "feet"),
  18994. weight: math.unit(600, "lb"),
  18995. name: "Back",
  18996. image: {
  18997. source: "./media/characters/dragonien/back.svg",
  18998. extra: 776 / 746,
  18999. bottom: 6.4 / 782.0616
  19000. }
  19001. },
  19002. foot: {
  19003. height: math.unit(1.54, "feet"),
  19004. name: "Foot",
  19005. image: {
  19006. source: "./media/characters/dragonien/foot.svg",
  19007. }
  19008. },
  19009. },
  19010. [
  19011. {
  19012. name: "Normal",
  19013. height: math.unit(8 + 4 / 12, "feet"),
  19014. default: true
  19015. },
  19016. {
  19017. name: "Macro",
  19018. height: math.unit(200, "feet")
  19019. },
  19020. {
  19021. name: "Megamacro",
  19022. height: math.unit(1, "mile")
  19023. },
  19024. {
  19025. name: "Gigamacro",
  19026. height: math.unit(1000, "miles")
  19027. },
  19028. ]
  19029. ))
  19030. characterMakers.push(() => makeCharacter(
  19031. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19032. {
  19033. front: {
  19034. height: math.unit(5 + 2 / 12, "feet"),
  19035. weight: math.unit(110, "lb"),
  19036. name: "Front",
  19037. image: {
  19038. source: "./media/characters/desta/front.svg",
  19039. extra: 767 / 726,
  19040. bottom: 11.7 / 779
  19041. }
  19042. },
  19043. back: {
  19044. height: math.unit(5 + 2 / 12, "feet"),
  19045. weight: math.unit(110, "lb"),
  19046. name: "Back",
  19047. image: {
  19048. source: "./media/characters/desta/back.svg",
  19049. extra: 777 / 728,
  19050. bottom: 6 / 784
  19051. }
  19052. },
  19053. frontAlt: {
  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-alt.svg",
  19059. extra: 1482 / 1417
  19060. }
  19061. },
  19062. side: {
  19063. height: math.unit(5 + 2 / 12, "feet"),
  19064. weight: math.unit(110, "lb"),
  19065. name: "Side",
  19066. image: {
  19067. source: "./media/characters/desta/side.svg",
  19068. extra: 2579 / 2491,
  19069. bottom: 0.053
  19070. }
  19071. },
  19072. },
  19073. [
  19074. {
  19075. name: "Micro",
  19076. height: math.unit(6, "inches")
  19077. },
  19078. {
  19079. name: "Normal",
  19080. height: math.unit(5 + 2 / 12, "feet"),
  19081. default: true
  19082. },
  19083. {
  19084. name: "Macro",
  19085. height: math.unit(62, "feet")
  19086. },
  19087. {
  19088. name: "Megamacro",
  19089. height: math.unit(1800, "feet")
  19090. },
  19091. ]
  19092. ))
  19093. characterMakers.push(() => makeCharacter(
  19094. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19095. {
  19096. front: {
  19097. height: math.unit(10, "feet"),
  19098. weight: math.unit(700, "lb"),
  19099. name: "Front",
  19100. image: {
  19101. source: "./media/characters/storm-alystar/front.svg",
  19102. extra: 2112 / 1898,
  19103. bottom: 0.034
  19104. }
  19105. },
  19106. },
  19107. [
  19108. {
  19109. name: "Micro",
  19110. height: math.unit(3.5, "inches")
  19111. },
  19112. {
  19113. name: "Normal",
  19114. height: math.unit(10, "feet"),
  19115. default: true
  19116. },
  19117. {
  19118. name: "Macro",
  19119. height: math.unit(400, "feet")
  19120. },
  19121. {
  19122. name: "Deific",
  19123. height: math.unit(60, "miles")
  19124. },
  19125. ]
  19126. ))
  19127. characterMakers.push(() => makeCharacter(
  19128. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19129. {
  19130. front: {
  19131. height: math.unit(2.35, "meters"),
  19132. weight: math.unit(119, "kg"),
  19133. name: "Front",
  19134. image: {
  19135. source: "./media/characters/ilia/front.svg",
  19136. extra: 1285 / 1255,
  19137. bottom: 0.06
  19138. }
  19139. },
  19140. },
  19141. [
  19142. {
  19143. name: "Normal",
  19144. height: math.unit(2.35, "meters")
  19145. },
  19146. {
  19147. name: "Macro",
  19148. height: math.unit(140, "meters"),
  19149. default: true
  19150. },
  19151. {
  19152. name: "Megamacro",
  19153. height: math.unit(100, "miles")
  19154. },
  19155. ]
  19156. ))
  19157. characterMakers.push(() => makeCharacter(
  19158. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19159. {
  19160. front: {
  19161. height: math.unit(6 + 5 / 12, "feet"),
  19162. weight: math.unit(190, "lb"),
  19163. name: "Front",
  19164. image: {
  19165. source: "./media/characters/kingdead/front.svg",
  19166. extra: 1228 / 1177
  19167. }
  19168. },
  19169. },
  19170. [
  19171. {
  19172. name: "Micro",
  19173. height: math.unit(7, "inches")
  19174. },
  19175. {
  19176. name: "Normal",
  19177. height: math.unit(6 + 5 / 12, "feet")
  19178. },
  19179. {
  19180. name: "Macro",
  19181. height: math.unit(150, "feet"),
  19182. default: true
  19183. },
  19184. {
  19185. name: "Megamacro",
  19186. height: math.unit(200, "miles")
  19187. },
  19188. ]
  19189. ))
  19190. characterMakers.push(() => makeCharacter(
  19191. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19192. {
  19193. front: {
  19194. height: math.unit(8, "feet"),
  19195. weight: math.unit(600, "lb"),
  19196. name: "Front",
  19197. image: {
  19198. source: "./media/characters/kyrehx/front.svg",
  19199. extra: 1195 / 1095,
  19200. bottom: 0.034
  19201. }
  19202. },
  19203. },
  19204. [
  19205. {
  19206. name: "Micro",
  19207. height: math.unit(2, "inches")
  19208. },
  19209. {
  19210. name: "Normal",
  19211. height: math.unit(8, "feet"),
  19212. default: true
  19213. },
  19214. {
  19215. name: "Macro",
  19216. height: math.unit(255, "feet")
  19217. },
  19218. ]
  19219. ))
  19220. characterMakers.push(() => makeCharacter(
  19221. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19222. {
  19223. front: {
  19224. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19225. weight: math.unit(184, "lb"),
  19226. name: "Front",
  19227. image: {
  19228. source: "./media/characters/xang/front.svg",
  19229. extra: 845 / 755
  19230. }
  19231. },
  19232. },
  19233. [
  19234. {
  19235. name: "Normal",
  19236. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19237. default: true
  19238. },
  19239. {
  19240. name: "Macro",
  19241. height: math.unit(0.935 * 146, "feet")
  19242. },
  19243. {
  19244. name: "Megamacro",
  19245. height: math.unit(0.935 * 3, "miles")
  19246. },
  19247. ]
  19248. ))
  19249. characterMakers.push(() => makeCharacter(
  19250. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19251. {
  19252. frontDressed: {
  19253. height: math.unit(5 + 7 / 12, "feet"),
  19254. weight: math.unit(140, "lb"),
  19255. name: "Front (Dressed)",
  19256. image: {
  19257. source: "./media/characters/doc-weardno/front-dressed.svg",
  19258. extra: 263 / 234
  19259. }
  19260. },
  19261. backDressed: {
  19262. height: math.unit(5 + 7 / 12, "feet"),
  19263. weight: math.unit(140, "lb"),
  19264. name: "Back (Dressed)",
  19265. image: {
  19266. source: "./media/characters/doc-weardno/back-dressed.svg",
  19267. extra: 266 / 238
  19268. }
  19269. },
  19270. front: {
  19271. height: math.unit(5 + 7 / 12, "feet"),
  19272. weight: math.unit(140, "lb"),
  19273. name: "Front",
  19274. image: {
  19275. source: "./media/characters/doc-weardno/front.svg",
  19276. extra: 254 / 233
  19277. }
  19278. },
  19279. },
  19280. [
  19281. {
  19282. name: "Micro",
  19283. height: math.unit(3, "inches")
  19284. },
  19285. {
  19286. name: "Normal",
  19287. height: math.unit(5 + 7 / 12, "feet"),
  19288. default: true
  19289. },
  19290. {
  19291. name: "Macro",
  19292. height: math.unit(25, "feet")
  19293. },
  19294. {
  19295. name: "Megamacro",
  19296. height: math.unit(2, "miles")
  19297. },
  19298. ]
  19299. ))
  19300. characterMakers.push(() => makeCharacter(
  19301. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19302. {
  19303. front: {
  19304. height: math.unit(6 + 2 / 12, "feet"),
  19305. weight: math.unit(153, "lb"),
  19306. name: "Front",
  19307. image: {
  19308. source: "./media/characters/seth-whilst/front.svg",
  19309. bottom: 0.07
  19310. }
  19311. },
  19312. },
  19313. [
  19314. {
  19315. name: "Micro",
  19316. height: math.unit(5, "inches")
  19317. },
  19318. {
  19319. name: "Normal",
  19320. height: math.unit(6 + 2 / 12, "feet"),
  19321. default: true
  19322. },
  19323. ]
  19324. ))
  19325. characterMakers.push(() => makeCharacter(
  19326. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19327. {
  19328. front: {
  19329. height: math.unit(3, "inches"),
  19330. weight: math.unit(8, "grams"),
  19331. name: "Front",
  19332. image: {
  19333. source: "./media/characters/pocket-jabari/front.svg",
  19334. extra: 1024 / 974,
  19335. bottom: 0.039
  19336. }
  19337. },
  19338. },
  19339. [
  19340. {
  19341. name: "Minimicro",
  19342. height: math.unit(8, "mm")
  19343. },
  19344. {
  19345. name: "Micro",
  19346. height: math.unit(3, "inches"),
  19347. default: true
  19348. },
  19349. {
  19350. name: "Normal",
  19351. height: math.unit(3, "feet")
  19352. },
  19353. ]
  19354. ))
  19355. characterMakers.push(() => makeCharacter(
  19356. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19357. {
  19358. frontDressed: {
  19359. height: math.unit(15, "feet"),
  19360. weight: math.unit(3280, "lb"),
  19361. name: "Front (Dressed)",
  19362. image: {
  19363. source: "./media/characters/sapphy/front-dressed.svg",
  19364. extra: 1951/1654,
  19365. bottom: 194/2145
  19366. },
  19367. form: "anthro",
  19368. default: true
  19369. },
  19370. backDressed: {
  19371. height: math.unit(15, "feet"),
  19372. weight: math.unit(3280, "lb"),
  19373. name: "Back (Dressed)",
  19374. image: {
  19375. source: "./media/characters/sapphy/back-dressed.svg",
  19376. extra: 2058/1918,
  19377. bottom: 125/2183
  19378. },
  19379. form: "anthro"
  19380. },
  19381. frontNude: {
  19382. height: math.unit(15, "feet"),
  19383. weight: math.unit(3280, "lb"),
  19384. name: "Front (Nude)",
  19385. image: {
  19386. source: "./media/characters/sapphy/front-nude.svg",
  19387. extra: 1951/1654,
  19388. bottom: 194/2145
  19389. },
  19390. form: "anthro"
  19391. },
  19392. backNude: {
  19393. height: math.unit(15, "feet"),
  19394. weight: math.unit(3280, "lb"),
  19395. name: "Back (Nude)",
  19396. image: {
  19397. source: "./media/characters/sapphy/back-nude.svg",
  19398. extra: 2058/1918,
  19399. bottom: 125/2183
  19400. },
  19401. form: "anthro"
  19402. },
  19403. full: {
  19404. height: math.unit(15, "feet"),
  19405. weight: math.unit(3280, "lb"),
  19406. name: "Full",
  19407. image: {
  19408. source: "./media/characters/sapphy/full.svg",
  19409. extra: 1396/1317,
  19410. bottom: 44/1440
  19411. },
  19412. form: "anthro"
  19413. },
  19414. dick: {
  19415. height: math.unit(3.8, "feet"),
  19416. name: "Dick",
  19417. image: {
  19418. source: "./media/characters/sapphy/dick.svg"
  19419. },
  19420. form: "anthro"
  19421. },
  19422. feral: {
  19423. height: math.unit(35, "feet"),
  19424. weight: math.unit(160, "tons"),
  19425. name: "Feral",
  19426. image: {
  19427. source: "./media/characters/sapphy/feral.svg",
  19428. extra: 1050/573,
  19429. bottom: 60/1110
  19430. },
  19431. form: "feral",
  19432. default: true
  19433. },
  19434. },
  19435. [
  19436. {
  19437. name: "Normal",
  19438. height: math.unit(15, "feet"),
  19439. form: "anthro"
  19440. },
  19441. {
  19442. name: "Casual Macro",
  19443. height: math.unit(120, "feet"),
  19444. form: "anthro"
  19445. },
  19446. {
  19447. name: "Macro",
  19448. height: math.unit(2150, "feet"),
  19449. default: true,
  19450. form: "anthro"
  19451. },
  19452. {
  19453. name: "Megamacro",
  19454. height: math.unit(8, "miles"),
  19455. form: "anthro"
  19456. },
  19457. {
  19458. name: "Galaxy Mom",
  19459. height: math.unit(6, "megalightyears"),
  19460. form: "anthro"
  19461. },
  19462. {
  19463. name: "Normal",
  19464. height: math.unit(35, "feet"),
  19465. form: "feral",
  19466. default: true
  19467. },
  19468. {
  19469. name: "Macro",
  19470. height: math.unit(300, "feet"),
  19471. form: "feral"
  19472. },
  19473. {
  19474. name: "Galaxy Mom",
  19475. height: math.unit(10, "megalightyears"),
  19476. form: "feral"
  19477. },
  19478. ],
  19479. {
  19480. "anthro": {
  19481. name: "Anthro",
  19482. default: true
  19483. },
  19484. "feral": {
  19485. name: "Feral"
  19486. }
  19487. }
  19488. ))
  19489. characterMakers.push(() => makeCharacter(
  19490. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19491. {
  19492. front: {
  19493. height: math.unit(6, "feet"),
  19494. weight: math.unit(170, "lb"),
  19495. name: "Front",
  19496. image: {
  19497. source: "./media/characters/kiro/front.svg",
  19498. extra: 1064 / 1012,
  19499. bottom: 0.052
  19500. }
  19501. },
  19502. },
  19503. [
  19504. {
  19505. name: "Micro",
  19506. height: math.unit(6, "inches")
  19507. },
  19508. {
  19509. name: "Normal",
  19510. height: math.unit(6, "feet"),
  19511. default: true
  19512. },
  19513. {
  19514. name: "Macro",
  19515. height: math.unit(72, "feet")
  19516. },
  19517. ]
  19518. ))
  19519. characterMakers.push(() => makeCharacter(
  19520. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19521. {
  19522. front: {
  19523. height: math.unit(5 + 9 / 12, "feet"),
  19524. weight: math.unit(175, "lb"),
  19525. name: "Front",
  19526. image: {
  19527. source: "./media/characters/irishfox/front.svg",
  19528. extra: 1912 / 1680,
  19529. bottom: 0.02
  19530. }
  19531. },
  19532. },
  19533. [
  19534. {
  19535. name: "Nano",
  19536. height: math.unit(1, "mm")
  19537. },
  19538. {
  19539. name: "Micro",
  19540. height: math.unit(2, "inches")
  19541. },
  19542. {
  19543. name: "Normal",
  19544. height: math.unit(5 + 9 / 12, "feet"),
  19545. default: true
  19546. },
  19547. {
  19548. name: "Macro",
  19549. height: math.unit(45, "feet")
  19550. },
  19551. ]
  19552. ))
  19553. characterMakers.push(() => makeCharacter(
  19554. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19555. {
  19556. front: {
  19557. height: math.unit(6 + 1 / 12, "feet"),
  19558. weight: math.unit(75, "lb"),
  19559. name: "Front",
  19560. image: {
  19561. source: "./media/characters/aronai-sieyes/front.svg",
  19562. extra: 1532/1450,
  19563. bottom: 42/1574
  19564. }
  19565. },
  19566. side: {
  19567. height: math.unit(6 + 1 / 12, "feet"),
  19568. weight: math.unit(75, "lb"),
  19569. name: "Side",
  19570. image: {
  19571. source: "./media/characters/aronai-sieyes/side.svg",
  19572. extra: 1422/1365,
  19573. bottom: 148/1570
  19574. }
  19575. },
  19576. back: {
  19577. height: math.unit(6 + 1 / 12, "feet"),
  19578. weight: math.unit(75, "lb"),
  19579. name: "Back",
  19580. image: {
  19581. source: "./media/characters/aronai-sieyes/back.svg",
  19582. extra: 1526/1464,
  19583. bottom: 51/1577
  19584. }
  19585. },
  19586. dressed: {
  19587. height: math.unit(6 + 1 / 12, "feet"),
  19588. weight: math.unit(75, "lb"),
  19589. name: "Dressed",
  19590. image: {
  19591. source: "./media/characters/aronai-sieyes/dressed.svg",
  19592. extra: 1559/1483,
  19593. bottom: 39/1598
  19594. }
  19595. },
  19596. slit: {
  19597. height: math.unit(1.3, "feet"),
  19598. name: "Slit",
  19599. image: {
  19600. source: "./media/characters/aronai-sieyes/slit.svg"
  19601. }
  19602. },
  19603. slitSpread: {
  19604. height: math.unit(0.9, "feet"),
  19605. name: "Slit (Spread)",
  19606. image: {
  19607. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19608. }
  19609. },
  19610. rump: {
  19611. height: math.unit(1.3, "feet"),
  19612. name: "Rump",
  19613. image: {
  19614. source: "./media/characters/aronai-sieyes/rump.svg"
  19615. }
  19616. },
  19617. maw: {
  19618. height: math.unit(1.25, "feet"),
  19619. name: "Maw",
  19620. image: {
  19621. source: "./media/characters/aronai-sieyes/maw.svg"
  19622. }
  19623. },
  19624. feral: {
  19625. height: math.unit(18, "feet"),
  19626. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19627. name: "Feral",
  19628. image: {
  19629. source: "./media/characters/aronai-sieyes/feral.svg",
  19630. extra: 1530 / 1240,
  19631. bottom: 0.035
  19632. }
  19633. },
  19634. },
  19635. [
  19636. {
  19637. name: "Micro",
  19638. height: math.unit(2, "inches")
  19639. },
  19640. {
  19641. name: "Normal",
  19642. height: math.unit(6 + 1 / 12, "feet"),
  19643. default: true
  19644. }
  19645. ]
  19646. ))
  19647. characterMakers.push(() => makeCharacter(
  19648. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19649. {
  19650. front: {
  19651. height: math.unit(12, "feet"),
  19652. weight: math.unit(410, "kg"),
  19653. name: "Front",
  19654. image: {
  19655. source: "./media/characters/xuna/front.svg",
  19656. extra: 2184 / 1980
  19657. }
  19658. },
  19659. side: {
  19660. height: math.unit(12, "feet"),
  19661. weight: math.unit(410, "kg"),
  19662. name: "Side",
  19663. image: {
  19664. source: "./media/characters/xuna/side.svg",
  19665. extra: 2184 / 1980
  19666. }
  19667. },
  19668. back: {
  19669. height: math.unit(12, "feet"),
  19670. weight: math.unit(410, "kg"),
  19671. name: "Back",
  19672. image: {
  19673. source: "./media/characters/xuna/back.svg",
  19674. extra: 2184 / 1980
  19675. }
  19676. },
  19677. },
  19678. [
  19679. {
  19680. name: "Nano glow",
  19681. height: math.unit(10, "nm")
  19682. },
  19683. {
  19684. name: "Micro floof",
  19685. height: math.unit(0.3, "m")
  19686. },
  19687. {
  19688. name: "Huggable softy boi",
  19689. height: math.unit(3.6576, "m"),
  19690. default: true
  19691. },
  19692. {
  19693. name: "Admirable floof",
  19694. height: math.unit(80, "meters")
  19695. },
  19696. {
  19697. name: "Gentle macro",
  19698. height: math.unit(300, "meters")
  19699. },
  19700. {
  19701. name: "Very careful floof",
  19702. height: math.unit(3200, "meters")
  19703. },
  19704. {
  19705. name: "The mega floof",
  19706. height: math.unit(36000, "meters")
  19707. },
  19708. {
  19709. name: "Giga-fur-Wicker",
  19710. height: math.unit(4800000, "meters")
  19711. },
  19712. {
  19713. name: "Licky world",
  19714. height: math.unit(20000000, "meters")
  19715. },
  19716. {
  19717. name: "Floofy cyan sun",
  19718. height: math.unit(1500000000, "meters")
  19719. },
  19720. {
  19721. name: "Milky Wicker",
  19722. height: math.unit(1000000000000000000000, "meters")
  19723. },
  19724. {
  19725. name: "The observing Wicker",
  19726. height: math.unit(999999999999999999999999999, "meters")
  19727. },
  19728. ]
  19729. ))
  19730. characterMakers.push(() => makeCharacter(
  19731. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19732. {
  19733. front: {
  19734. height: math.unit(5 + 9 / 12, "feet"),
  19735. weight: math.unit(150, "lb"),
  19736. name: "Front",
  19737. image: {
  19738. source: "./media/characters/arokha-sieyes/front.svg",
  19739. extra: 1425 / 1284,
  19740. bottom: 0.05
  19741. }
  19742. },
  19743. },
  19744. [
  19745. {
  19746. name: "Normal",
  19747. height: math.unit(5 + 9 / 12, "feet")
  19748. },
  19749. {
  19750. name: "Macro",
  19751. height: math.unit(30, "meters"),
  19752. default: true
  19753. },
  19754. ]
  19755. ))
  19756. characterMakers.push(() => makeCharacter(
  19757. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19758. {
  19759. front: {
  19760. height: math.unit(6, "feet"),
  19761. weight: math.unit(180, "lb"),
  19762. name: "Front",
  19763. image: {
  19764. source: "./media/characters/arokh-sieyes/front.svg",
  19765. extra: 1830 / 1769,
  19766. bottom: 0.01
  19767. }
  19768. },
  19769. },
  19770. [
  19771. {
  19772. name: "Normal",
  19773. height: math.unit(6, "feet")
  19774. },
  19775. {
  19776. name: "Macro",
  19777. height: math.unit(30, "meters"),
  19778. default: true
  19779. },
  19780. ]
  19781. ))
  19782. characterMakers.push(() => makeCharacter(
  19783. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19784. {
  19785. side: {
  19786. height: math.unit(13 + 1 / 12, "feet"),
  19787. weight: math.unit(8.5, "tonnes"),
  19788. name: "Side",
  19789. image: {
  19790. source: "./media/characters/goldeneye/side.svg",
  19791. extra: 1182 / 778,
  19792. bottom: 0.067
  19793. }
  19794. },
  19795. paw: {
  19796. height: math.unit(3.4, "feet"),
  19797. name: "Paw",
  19798. image: {
  19799. source: "./media/characters/goldeneye/paw.svg"
  19800. }
  19801. },
  19802. },
  19803. [
  19804. {
  19805. name: "Normal",
  19806. height: math.unit(13 + 1 / 12, "feet"),
  19807. default: true
  19808. },
  19809. ]
  19810. ))
  19811. characterMakers.push(() => makeCharacter(
  19812. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19813. {
  19814. front: {
  19815. height: math.unit(6 + 1 / 12, "feet"),
  19816. weight: math.unit(210, "lb"),
  19817. name: "Front",
  19818. image: {
  19819. source: "./media/characters/leonardo-lycheborne/front.svg",
  19820. extra: 776/723,
  19821. bottom: 34/810
  19822. }
  19823. },
  19824. side: {
  19825. height: math.unit(6 + 1 / 12, "feet"),
  19826. weight: math.unit(210, "lb"),
  19827. name: "Side",
  19828. image: {
  19829. source: "./media/characters/leonardo-lycheborne/side.svg",
  19830. extra: 780/728,
  19831. bottom: 12/792
  19832. }
  19833. },
  19834. back: {
  19835. height: math.unit(6 + 1 / 12, "feet"),
  19836. weight: math.unit(210, "lb"),
  19837. name: "Back",
  19838. image: {
  19839. source: "./media/characters/leonardo-lycheborne/back.svg",
  19840. extra: 775/721,
  19841. bottom: 17/792
  19842. }
  19843. },
  19844. hand: {
  19845. height: math.unit(1.08, "feet"),
  19846. name: "Hand",
  19847. image: {
  19848. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19849. }
  19850. },
  19851. foot: {
  19852. height: math.unit(1.32, "feet"),
  19853. name: "Foot",
  19854. image: {
  19855. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19856. }
  19857. },
  19858. maw: {
  19859. height: math.unit(1, "feet"),
  19860. name: "Maw",
  19861. image: {
  19862. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19863. }
  19864. },
  19865. were: {
  19866. height: math.unit(20, "feet"),
  19867. weight: math.unit(7800, "lb"),
  19868. name: "Were",
  19869. image: {
  19870. source: "./media/characters/leonardo-lycheborne/were.svg",
  19871. extra: 1224/1165,
  19872. bottom: 72/1296
  19873. }
  19874. },
  19875. feral: {
  19876. height: math.unit(7.5, "feet"),
  19877. weight: math.unit(600, "lb"),
  19878. name: "Feral",
  19879. image: {
  19880. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19881. extra: 797/702,
  19882. bottom: 139/936
  19883. }
  19884. },
  19885. taur: {
  19886. height: math.unit(11, "feet"),
  19887. weight: math.unit(3300, "lb"),
  19888. name: "Taur",
  19889. image: {
  19890. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19891. extra: 1271/1197,
  19892. bottom: 47/1318
  19893. }
  19894. },
  19895. barghest: {
  19896. height: math.unit(11, "feet"),
  19897. weight: math.unit(1300, "lb"),
  19898. name: "Barghest",
  19899. image: {
  19900. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19901. extra: 1291/1204,
  19902. bottom: 37/1328
  19903. }
  19904. },
  19905. dick: {
  19906. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19907. name: "Dick",
  19908. image: {
  19909. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19910. }
  19911. },
  19912. dickWere: {
  19913. height: math.unit((20) / 3.8, "feet"),
  19914. name: "Dick (Were)",
  19915. image: {
  19916. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19917. }
  19918. },
  19919. },
  19920. [
  19921. {
  19922. name: "Normal",
  19923. height: math.unit(6 + 1 / 12, "feet"),
  19924. default: true
  19925. },
  19926. ]
  19927. ))
  19928. characterMakers.push(() => makeCharacter(
  19929. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19930. {
  19931. front: {
  19932. height: math.unit(10, "feet"),
  19933. weight: math.unit(350, "lb"),
  19934. name: "Front",
  19935. image: {
  19936. source: "./media/characters/jet/front.svg",
  19937. extra: 2050 / 1980,
  19938. bottom: 0.013
  19939. }
  19940. },
  19941. back: {
  19942. height: math.unit(10, "feet"),
  19943. weight: math.unit(350, "lb"),
  19944. name: "Back",
  19945. image: {
  19946. source: "./media/characters/jet/back.svg",
  19947. extra: 2050 / 1980,
  19948. bottom: 0.013
  19949. }
  19950. },
  19951. },
  19952. [
  19953. {
  19954. name: "Micro",
  19955. height: math.unit(6, "inches")
  19956. },
  19957. {
  19958. name: "Normal",
  19959. height: math.unit(10, "feet"),
  19960. default: true
  19961. },
  19962. {
  19963. name: "Macro",
  19964. height: math.unit(100, "feet")
  19965. },
  19966. ]
  19967. ))
  19968. characterMakers.push(() => makeCharacter(
  19969. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19970. {
  19971. front: {
  19972. height: math.unit(15, "feet"),
  19973. weight: math.unit(2800, "lb"),
  19974. name: "Front",
  19975. image: {
  19976. source: "./media/characters/tanarath/front.svg",
  19977. extra: 2392 / 2220,
  19978. bottom: 0.03
  19979. }
  19980. },
  19981. back: {
  19982. height: math.unit(15, "feet"),
  19983. weight: math.unit(2800, "lb"),
  19984. name: "Back",
  19985. image: {
  19986. source: "./media/characters/tanarath/back.svg",
  19987. extra: 2392 / 2220,
  19988. bottom: 0.03
  19989. }
  19990. },
  19991. },
  19992. [
  19993. {
  19994. name: "Normal",
  19995. height: math.unit(15, "feet"),
  19996. default: true
  19997. },
  19998. ]
  19999. ))
  20000. characterMakers.push(() => makeCharacter(
  20001. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20002. {
  20003. front: {
  20004. height: math.unit(7 + 1 / 12, "feet"),
  20005. weight: math.unit(175, "lb"),
  20006. name: "Front",
  20007. image: {
  20008. source: "./media/characters/patty-cattybatty/front.svg",
  20009. extra: 908 / 874,
  20010. bottom: 0.025
  20011. }
  20012. },
  20013. },
  20014. [
  20015. {
  20016. name: "Micro",
  20017. height: math.unit(1, "inch")
  20018. },
  20019. {
  20020. name: "Normal",
  20021. height: math.unit(7 + 1 / 12, "feet")
  20022. },
  20023. {
  20024. name: "Mini Macro",
  20025. height: math.unit(155, "feet")
  20026. },
  20027. {
  20028. name: "Macro",
  20029. height: math.unit(1077, "feet")
  20030. },
  20031. {
  20032. name: "Mega Macro",
  20033. height: math.unit(47650, "feet"),
  20034. default: true
  20035. },
  20036. {
  20037. name: "Giga Macro",
  20038. height: math.unit(440, "miles")
  20039. },
  20040. {
  20041. name: "Tera Macro",
  20042. height: math.unit(8700, "miles")
  20043. },
  20044. {
  20045. name: "Planetary Macro",
  20046. height: math.unit(32700, "miles")
  20047. },
  20048. {
  20049. name: "Solar Macro",
  20050. height: math.unit(550000, "miles")
  20051. },
  20052. {
  20053. name: "Celestial Macro",
  20054. height: math.unit(2.5, "AU")
  20055. },
  20056. ]
  20057. ))
  20058. characterMakers.push(() => makeCharacter(
  20059. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20060. {
  20061. front: {
  20062. height: math.unit(4 + 5 / 12, "feet"),
  20063. weight: math.unit(90, "lb"),
  20064. name: "Front",
  20065. image: {
  20066. source: "./media/characters/cappu/front.svg",
  20067. extra: 1247 / 1152,
  20068. bottom: 0.012
  20069. }
  20070. },
  20071. },
  20072. [
  20073. {
  20074. name: "Normal",
  20075. height: math.unit(4 + 5 / 12, "feet"),
  20076. default: true
  20077. },
  20078. ]
  20079. ))
  20080. characterMakers.push(() => makeCharacter(
  20081. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20082. {
  20083. frontDressed: {
  20084. height: math.unit(70, "cm"),
  20085. weight: math.unit(6, "kg"),
  20086. name: "Front (Dressed)",
  20087. image: {
  20088. source: "./media/characters/sebi/front-dressed.svg",
  20089. extra: 713.5 / 686.5,
  20090. bottom: 0.003
  20091. }
  20092. },
  20093. front: {
  20094. height: math.unit(70, "cm"),
  20095. weight: math.unit(5, "kg"),
  20096. name: "Front",
  20097. image: {
  20098. source: "./media/characters/sebi/front.svg",
  20099. extra: 713.5 / 686.5,
  20100. bottom: 0.003
  20101. }
  20102. }
  20103. },
  20104. [
  20105. {
  20106. name: "Normal",
  20107. height: math.unit(70, "cm"),
  20108. default: true
  20109. },
  20110. {
  20111. name: "Macro",
  20112. height: math.unit(8, "meters")
  20113. },
  20114. ]
  20115. ))
  20116. characterMakers.push(() => makeCharacter(
  20117. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20118. {
  20119. front: {
  20120. height: math.unit(6, "feet"),
  20121. weight: math.unit(150, "lb"),
  20122. name: "Front",
  20123. image: {
  20124. source: "./media/characters/typhek/front.svg",
  20125. extra: 1948 / 1929,
  20126. bottom: 0.025
  20127. }
  20128. },
  20129. side: {
  20130. height: math.unit(6, "feet"),
  20131. weight: math.unit(150, "lb"),
  20132. name: "Side",
  20133. image: {
  20134. source: "./media/characters/typhek/side.svg",
  20135. extra: 2034 / 2010,
  20136. bottom: 0.003
  20137. }
  20138. },
  20139. back: {
  20140. height: math.unit(6, "feet"),
  20141. weight: math.unit(150, "lb"),
  20142. name: "Back",
  20143. image: {
  20144. source: "./media/characters/typhek/back.svg",
  20145. extra: 2005 / 1978,
  20146. bottom: 0.004
  20147. }
  20148. },
  20149. palm: {
  20150. height: math.unit(1.2, "feet"),
  20151. name: "Palm",
  20152. image: {
  20153. source: "./media/characters/typhek/palm.svg"
  20154. }
  20155. },
  20156. fist: {
  20157. height: math.unit(1.1, "feet"),
  20158. name: "Fist",
  20159. image: {
  20160. source: "./media/characters/typhek/fist.svg"
  20161. }
  20162. },
  20163. foot: {
  20164. height: math.unit(1.57, "feet"),
  20165. name: "Foot",
  20166. image: {
  20167. source: "./media/characters/typhek/foot.svg"
  20168. }
  20169. },
  20170. sole: {
  20171. height: math.unit(2.05, "feet"),
  20172. name: "Sole",
  20173. image: {
  20174. source: "./media/characters/typhek/sole.svg"
  20175. }
  20176. },
  20177. },
  20178. [
  20179. {
  20180. name: "Macro",
  20181. height: math.unit(40, "stories"),
  20182. default: true
  20183. },
  20184. {
  20185. name: "Megamacro",
  20186. height: math.unit(1, "mile")
  20187. },
  20188. {
  20189. name: "Gigamacro",
  20190. height: math.unit(4000, "solarradii")
  20191. },
  20192. {
  20193. name: "Universal",
  20194. height: math.unit(1.1, "universes")
  20195. }
  20196. ]
  20197. ))
  20198. characterMakers.push(() => makeCharacter(
  20199. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20200. {
  20201. side: {
  20202. height: math.unit(5 + 7 / 12, "feet"),
  20203. weight: math.unit(150, "lb"),
  20204. name: "Side",
  20205. image: {
  20206. source: "./media/characters/kassy/side.svg",
  20207. extra: 1280 / 1225,
  20208. bottom: 0.002
  20209. }
  20210. },
  20211. front: {
  20212. height: math.unit(5 + 7 / 12, "feet"),
  20213. weight: math.unit(150, "lb"),
  20214. name: "Front",
  20215. image: {
  20216. source: "./media/characters/kassy/front.svg",
  20217. extra: 1280 / 1225,
  20218. bottom: 0.025
  20219. }
  20220. },
  20221. back: {
  20222. height: math.unit(5 + 7 / 12, "feet"),
  20223. weight: math.unit(150, "lb"),
  20224. name: "Back",
  20225. image: {
  20226. source: "./media/characters/kassy/back.svg",
  20227. extra: 1280 / 1225,
  20228. bottom: 0.002
  20229. }
  20230. },
  20231. foot: {
  20232. height: math.unit(1.266, "feet"),
  20233. name: "Foot",
  20234. image: {
  20235. source: "./media/characters/kassy/foot.svg"
  20236. }
  20237. },
  20238. },
  20239. [
  20240. {
  20241. name: "Normal",
  20242. height: math.unit(5 + 7 / 12, "feet")
  20243. },
  20244. {
  20245. name: "Macro",
  20246. height: math.unit(137, "feet"),
  20247. default: true
  20248. },
  20249. {
  20250. name: "Megamacro",
  20251. height: math.unit(1, "mile")
  20252. },
  20253. ]
  20254. ))
  20255. characterMakers.push(() => makeCharacter(
  20256. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20257. {
  20258. front: {
  20259. height: math.unit(6 + 1 / 12, "feet"),
  20260. weight: math.unit(200, "lb"),
  20261. name: "Front",
  20262. image: {
  20263. source: "./media/characters/neil/front.svg",
  20264. extra: 1326 / 1250,
  20265. bottom: 0.023
  20266. }
  20267. },
  20268. },
  20269. [
  20270. {
  20271. name: "Normal",
  20272. height: math.unit(6 + 1 / 12, "feet"),
  20273. default: true
  20274. },
  20275. {
  20276. name: "Macro",
  20277. height: math.unit(200, "feet")
  20278. },
  20279. ]
  20280. ))
  20281. characterMakers.push(() => makeCharacter(
  20282. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20283. {
  20284. front: {
  20285. height: math.unit(5 + 9 / 12, "feet"),
  20286. weight: math.unit(190, "lb"),
  20287. name: "Front",
  20288. image: {
  20289. source: "./media/characters/atticus/front.svg",
  20290. extra: 2934 / 2785,
  20291. bottom: 0.025
  20292. }
  20293. },
  20294. },
  20295. [
  20296. {
  20297. name: "Normal",
  20298. height: math.unit(5 + 9 / 12, "feet"),
  20299. default: true
  20300. },
  20301. {
  20302. name: "Macro",
  20303. height: math.unit(180, "feet")
  20304. },
  20305. ]
  20306. ))
  20307. characterMakers.push(() => makeCharacter(
  20308. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20309. {
  20310. side: {
  20311. height: math.unit(9, "feet"),
  20312. weight: math.unit(650, "lb"),
  20313. name: "Side",
  20314. image: {
  20315. source: "./media/characters/milo/side.svg",
  20316. extra: 2644 / 2310,
  20317. bottom: 0.032
  20318. }
  20319. },
  20320. },
  20321. [
  20322. {
  20323. name: "Normal",
  20324. height: math.unit(9, "feet"),
  20325. default: true
  20326. },
  20327. {
  20328. name: "Macro",
  20329. height: math.unit(300, "feet")
  20330. },
  20331. ]
  20332. ))
  20333. characterMakers.push(() => makeCharacter(
  20334. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20335. {
  20336. side: {
  20337. height: math.unit(8, "meters"),
  20338. weight: math.unit(90000, "kg"),
  20339. name: "Side",
  20340. image: {
  20341. source: "./media/characters/ijzer/side.svg",
  20342. extra: 2756 / 1600,
  20343. bottom: 0.01
  20344. }
  20345. },
  20346. },
  20347. [
  20348. {
  20349. name: "Small",
  20350. height: math.unit(3, "meters")
  20351. },
  20352. {
  20353. name: "Normal",
  20354. height: math.unit(8, "meters"),
  20355. default: true
  20356. },
  20357. {
  20358. name: "Normal+",
  20359. height: math.unit(10, "meters")
  20360. },
  20361. {
  20362. name: "Bigger",
  20363. height: math.unit(24, "meters")
  20364. },
  20365. {
  20366. name: "Huge",
  20367. height: math.unit(80, "meters")
  20368. },
  20369. ]
  20370. ))
  20371. characterMakers.push(() => makeCharacter(
  20372. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20373. {
  20374. front: {
  20375. height: math.unit(6 + 2 / 12, "feet"),
  20376. weight: math.unit(153, "lb"),
  20377. name: "Front",
  20378. image: {
  20379. source: "./media/characters/luca-cervicum/front.svg",
  20380. extra: 370 / 327,
  20381. bottom: 0.015
  20382. }
  20383. },
  20384. back: {
  20385. height: math.unit(6 + 2 / 12, "feet"),
  20386. weight: math.unit(153, "lb"),
  20387. name: "Back",
  20388. image: {
  20389. source: "./media/characters/luca-cervicum/back.svg",
  20390. extra: 367 / 333,
  20391. bottom: 0.005
  20392. }
  20393. },
  20394. frontGear: {
  20395. height: math.unit(6 + 2 / 12, "feet"),
  20396. weight: math.unit(173, "lb"),
  20397. name: "Front (Gear)",
  20398. image: {
  20399. source: "./media/characters/luca-cervicum/front-gear.svg",
  20400. extra: 377 / 333,
  20401. bottom: 0.006
  20402. }
  20403. },
  20404. },
  20405. [
  20406. {
  20407. name: "Normal",
  20408. height: math.unit(6 + 2 / 12, "feet"),
  20409. default: true
  20410. },
  20411. ]
  20412. ))
  20413. characterMakers.push(() => makeCharacter(
  20414. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20415. {
  20416. front: {
  20417. height: math.unit(6 + 1 / 12, "feet"),
  20418. weight: math.unit(304, "lb"),
  20419. name: "Front",
  20420. image: {
  20421. source: "./media/characters/oliver/front.svg",
  20422. extra: 157 / 143,
  20423. bottom: 0.08
  20424. }
  20425. },
  20426. },
  20427. [
  20428. {
  20429. name: "Normal",
  20430. height: math.unit(6 + 1 / 12, "feet"),
  20431. default: true
  20432. },
  20433. ]
  20434. ))
  20435. characterMakers.push(() => makeCharacter(
  20436. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20437. {
  20438. front: {
  20439. height: math.unit(5 + 7 / 12, "feet"),
  20440. weight: math.unit(140, "lb"),
  20441. name: "Front",
  20442. image: {
  20443. source: "./media/characters/shane/front.svg",
  20444. extra: 304 / 289,
  20445. bottom: 0.005
  20446. }
  20447. },
  20448. },
  20449. [
  20450. {
  20451. name: "Normal",
  20452. height: math.unit(5 + 7 / 12, "feet"),
  20453. default: true
  20454. },
  20455. ]
  20456. ))
  20457. characterMakers.push(() => makeCharacter(
  20458. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20459. {
  20460. front: {
  20461. height: math.unit(5 + 9 / 12, "feet"),
  20462. weight: math.unit(178, "lb"),
  20463. name: "Front",
  20464. image: {
  20465. source: "./media/characters/shin/front.svg",
  20466. extra: 159 / 151,
  20467. bottom: 0.015
  20468. }
  20469. },
  20470. },
  20471. [
  20472. {
  20473. name: "Normal",
  20474. height: math.unit(5 + 9 / 12, "feet"),
  20475. default: true
  20476. },
  20477. ]
  20478. ))
  20479. characterMakers.push(() => makeCharacter(
  20480. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20481. {
  20482. front: {
  20483. height: math.unit(5 + 10 / 12, "feet"),
  20484. weight: math.unit(168, "lb"),
  20485. name: "Front",
  20486. image: {
  20487. source: "./media/characters/xerxes/front.svg",
  20488. extra: 282 / 260,
  20489. bottom: 0.045
  20490. }
  20491. },
  20492. },
  20493. [
  20494. {
  20495. name: "Normal",
  20496. height: math.unit(5 + 10 / 12, "feet"),
  20497. default: true
  20498. },
  20499. ]
  20500. ))
  20501. characterMakers.push(() => makeCharacter(
  20502. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20503. {
  20504. front: {
  20505. height: math.unit(6 + 7 / 12, "feet"),
  20506. weight: math.unit(208, "lb"),
  20507. name: "Front",
  20508. image: {
  20509. source: "./media/characters/chaska/front.svg",
  20510. extra: 332 / 319,
  20511. bottom: 0.015
  20512. }
  20513. },
  20514. },
  20515. [
  20516. {
  20517. name: "Normal",
  20518. height: math.unit(6 + 7 / 12, "feet"),
  20519. default: true
  20520. },
  20521. ]
  20522. ))
  20523. characterMakers.push(() => makeCharacter(
  20524. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20525. {
  20526. front: {
  20527. height: math.unit(5 + 8 / 12, "feet"),
  20528. weight: math.unit(208, "lb"),
  20529. name: "Front",
  20530. image: {
  20531. source: "./media/characters/enuk/front.svg",
  20532. extra: 437 / 406,
  20533. bottom: 0.02
  20534. }
  20535. },
  20536. },
  20537. [
  20538. {
  20539. name: "Normal",
  20540. height: math.unit(5 + 8 / 12, "feet"),
  20541. default: true
  20542. },
  20543. ]
  20544. ))
  20545. characterMakers.push(() => makeCharacter(
  20546. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20547. {
  20548. front: {
  20549. height: math.unit(5 + 10 / 12, "feet"),
  20550. weight: math.unit(252, "lb"),
  20551. name: "Front",
  20552. image: {
  20553. source: "./media/characters/bruun/front.svg",
  20554. extra: 197 / 187,
  20555. bottom: 0.012
  20556. }
  20557. },
  20558. },
  20559. [
  20560. {
  20561. name: "Normal",
  20562. height: math.unit(5 + 10 / 12, "feet"),
  20563. default: true
  20564. },
  20565. ]
  20566. ))
  20567. characterMakers.push(() => makeCharacter(
  20568. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20569. {
  20570. front: {
  20571. height: math.unit(6 + 10 / 12, "feet"),
  20572. weight: math.unit(255, "lb"),
  20573. name: "Front",
  20574. image: {
  20575. source: "./media/characters/alexeev/front.svg",
  20576. extra: 213 / 200,
  20577. bottom: 0.05
  20578. }
  20579. },
  20580. },
  20581. [
  20582. {
  20583. name: "Normal",
  20584. height: math.unit(6 + 10 / 12, "feet"),
  20585. default: true
  20586. },
  20587. ]
  20588. ))
  20589. characterMakers.push(() => makeCharacter(
  20590. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20591. {
  20592. front: {
  20593. height: math.unit(2 + 8 / 12, "feet"),
  20594. weight: math.unit(22, "lb"),
  20595. name: "Front",
  20596. image: {
  20597. source: "./media/characters/evelyn/front.svg",
  20598. extra: 208 / 180
  20599. }
  20600. },
  20601. },
  20602. [
  20603. {
  20604. name: "Normal",
  20605. height: math.unit(2 + 8 / 12, "feet"),
  20606. default: true
  20607. },
  20608. ]
  20609. ))
  20610. characterMakers.push(() => makeCharacter(
  20611. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20612. {
  20613. front: {
  20614. height: math.unit(5 + 9 / 12, "feet"),
  20615. weight: math.unit(139, "lb"),
  20616. name: "Front",
  20617. image: {
  20618. source: "./media/characters/inca/front.svg",
  20619. extra: 294 / 291,
  20620. bottom: 0.03
  20621. }
  20622. },
  20623. },
  20624. [
  20625. {
  20626. name: "Normal",
  20627. height: math.unit(5 + 9 / 12, "feet"),
  20628. default: true
  20629. },
  20630. ]
  20631. ))
  20632. characterMakers.push(() => makeCharacter(
  20633. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20634. {
  20635. front: {
  20636. height: math.unit(6 + 3 / 12, "feet"),
  20637. weight: math.unit(185, "lb"),
  20638. name: "Front",
  20639. image: {
  20640. source: "./media/characters/mera/front.svg",
  20641. extra: 291 / 277,
  20642. bottom: 0.03
  20643. }
  20644. },
  20645. },
  20646. [
  20647. {
  20648. name: "Normal",
  20649. height: math.unit(6 + 3 / 12, "feet"),
  20650. default: true
  20651. },
  20652. ]
  20653. ))
  20654. characterMakers.push(() => makeCharacter(
  20655. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20656. {
  20657. front: {
  20658. height: math.unit(6 + 7 / 12, "feet"),
  20659. weight: math.unit(160, "lb"),
  20660. name: "Front",
  20661. image: {
  20662. source: "./media/characters/ceres/front.svg",
  20663. extra: 1023 / 950,
  20664. bottom: 0.027
  20665. }
  20666. },
  20667. back: {
  20668. height: math.unit(6 + 7 / 12, "feet"),
  20669. weight: math.unit(160, "lb"),
  20670. name: "Back",
  20671. image: {
  20672. source: "./media/characters/ceres/back.svg",
  20673. extra: 1023 / 950
  20674. }
  20675. },
  20676. },
  20677. [
  20678. {
  20679. name: "Normal",
  20680. height: math.unit(6 + 7 / 12, "feet"),
  20681. default: true
  20682. },
  20683. ]
  20684. ))
  20685. characterMakers.push(() => makeCharacter(
  20686. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20687. {
  20688. front: {
  20689. height: math.unit(5 + 10 / 12, "feet"),
  20690. weight: math.unit(150, "lb"),
  20691. name: "Front",
  20692. image: {
  20693. source: "./media/characters/kris/front.svg",
  20694. extra: 885 / 803,
  20695. bottom: 0.03
  20696. }
  20697. },
  20698. },
  20699. [
  20700. {
  20701. name: "Normal",
  20702. height: math.unit(5 + 10 / 12, "feet"),
  20703. default: true
  20704. },
  20705. ]
  20706. ))
  20707. characterMakers.push(() => makeCharacter(
  20708. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20709. {
  20710. front: {
  20711. height: math.unit(7, "feet"),
  20712. weight: math.unit(120, "kg"),
  20713. name: "Front",
  20714. image: {
  20715. source: "./media/characters/taluthus/front.svg",
  20716. extra: 903 / 833,
  20717. bottom: 0.015
  20718. }
  20719. },
  20720. },
  20721. [
  20722. {
  20723. name: "Normal",
  20724. height: math.unit(7, "feet"),
  20725. default: true
  20726. },
  20727. {
  20728. name: "Macro",
  20729. height: math.unit(300, "feet")
  20730. },
  20731. ]
  20732. ))
  20733. characterMakers.push(() => makeCharacter(
  20734. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20735. {
  20736. front: {
  20737. height: math.unit(5 + 9 / 12, "feet"),
  20738. weight: math.unit(145, "lb"),
  20739. name: "Front",
  20740. image: {
  20741. source: "./media/characters/dawn/front.svg",
  20742. extra: 2094 / 2016,
  20743. bottom: 0.025
  20744. }
  20745. },
  20746. back: {
  20747. height: math.unit(5 + 9 / 12, "feet"),
  20748. weight: math.unit(160, "lb"),
  20749. name: "Back",
  20750. image: {
  20751. source: "./media/characters/dawn/back.svg",
  20752. extra: 2112 / 2080,
  20753. bottom: 0.005
  20754. }
  20755. },
  20756. },
  20757. [
  20758. {
  20759. name: "Normal",
  20760. height: math.unit(6 + 7 / 12, "feet"),
  20761. default: true
  20762. },
  20763. ]
  20764. ))
  20765. characterMakers.push(() => makeCharacter(
  20766. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20767. {
  20768. anthro: {
  20769. height: math.unit(8 + 3 / 12, "feet"),
  20770. weight: math.unit(450, "lb"),
  20771. name: "Anthro",
  20772. image: {
  20773. source: "./media/characters/arador/anthro.svg",
  20774. extra: 1835 / 1718,
  20775. bottom: 0.025
  20776. }
  20777. },
  20778. feral: {
  20779. height: math.unit(4, "feet"),
  20780. weight: math.unit(200, "lb"),
  20781. name: "Feral",
  20782. image: {
  20783. source: "./media/characters/arador/feral.svg",
  20784. extra: 1683 / 1514,
  20785. bottom: 0.07
  20786. }
  20787. },
  20788. },
  20789. [
  20790. {
  20791. name: "Normal",
  20792. height: math.unit(8 + 3 / 12, "feet")
  20793. },
  20794. {
  20795. name: "Macro",
  20796. height: math.unit(82.5, "feet"),
  20797. default: true
  20798. },
  20799. ]
  20800. ))
  20801. characterMakers.push(() => makeCharacter(
  20802. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20803. {
  20804. front: {
  20805. height: math.unit(5 + 10 / 12, "feet"),
  20806. weight: math.unit(125, "lb"),
  20807. name: "Front",
  20808. image: {
  20809. source: "./media/characters/dharsi/front.svg",
  20810. extra: 716 / 630,
  20811. bottom: 0.035
  20812. }
  20813. },
  20814. },
  20815. [
  20816. {
  20817. name: "Nano",
  20818. height: math.unit(100, "nm")
  20819. },
  20820. {
  20821. name: "Micro",
  20822. height: math.unit(2, "inches")
  20823. },
  20824. {
  20825. name: "Normal",
  20826. height: math.unit(5 + 10 / 12, "feet"),
  20827. default: true
  20828. },
  20829. {
  20830. name: "Macro",
  20831. height: math.unit(1000, "feet")
  20832. },
  20833. {
  20834. name: "Megamacro",
  20835. height: math.unit(10, "miles")
  20836. },
  20837. {
  20838. name: "Gigamacro",
  20839. height: math.unit(3000, "miles")
  20840. },
  20841. {
  20842. name: "Teramacro",
  20843. height: math.unit(500000, "miles")
  20844. },
  20845. {
  20846. name: "Teramacro+",
  20847. height: math.unit(30, "galaxies")
  20848. },
  20849. ]
  20850. ))
  20851. characterMakers.push(() => makeCharacter(
  20852. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20853. {
  20854. front: {
  20855. height: math.unit(6, "feet"),
  20856. weight: math.unit(150, "lb"),
  20857. name: "Front",
  20858. image: {
  20859. source: "./media/characters/deathy/front.svg",
  20860. extra: 1552 / 1463,
  20861. bottom: 0.025
  20862. }
  20863. },
  20864. side: {
  20865. height: math.unit(6, "feet"),
  20866. weight: math.unit(150, "lb"),
  20867. name: "Side",
  20868. image: {
  20869. source: "./media/characters/deathy/side.svg",
  20870. extra: 1604 / 1455,
  20871. bottom: 0.025
  20872. }
  20873. },
  20874. back: {
  20875. height: math.unit(6, "feet"),
  20876. weight: math.unit(150, "lb"),
  20877. name: "Back",
  20878. image: {
  20879. source: "./media/characters/deathy/back.svg",
  20880. extra: 1580 / 1463,
  20881. bottom: 0.005
  20882. }
  20883. },
  20884. },
  20885. [
  20886. {
  20887. name: "Micro",
  20888. height: math.unit(5, "millimeters")
  20889. },
  20890. {
  20891. name: "Normal",
  20892. height: math.unit(6 + 5 / 12, "feet"),
  20893. default: true
  20894. },
  20895. ]
  20896. ))
  20897. characterMakers.push(() => makeCharacter(
  20898. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20899. {
  20900. front: {
  20901. height: math.unit(16, "feet"),
  20902. weight: math.unit(4000, "lb"),
  20903. name: "Front",
  20904. image: {
  20905. source: "./media/characters/juniper/front.svg",
  20906. bottom: 0.04
  20907. }
  20908. },
  20909. },
  20910. [
  20911. {
  20912. name: "Normal",
  20913. height: math.unit(16, "feet"),
  20914. default: true
  20915. },
  20916. ]
  20917. ))
  20918. characterMakers.push(() => makeCharacter(
  20919. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20920. {
  20921. front: {
  20922. height: math.unit(6, "feet"),
  20923. weight: math.unit(150, "lb"),
  20924. name: "Front",
  20925. image: {
  20926. source: "./media/characters/hipster/front.svg",
  20927. extra: 1312 / 1209,
  20928. bottom: 0.025
  20929. }
  20930. },
  20931. back: {
  20932. height: math.unit(6, "feet"),
  20933. weight: math.unit(150, "lb"),
  20934. name: "Back",
  20935. image: {
  20936. source: "./media/characters/hipster/back.svg",
  20937. extra: 1281 / 1196,
  20938. bottom: 0.01
  20939. }
  20940. },
  20941. },
  20942. [
  20943. {
  20944. name: "Micro",
  20945. height: math.unit(1, "mm")
  20946. },
  20947. {
  20948. name: "Normal",
  20949. height: math.unit(4, "inches"),
  20950. default: true
  20951. },
  20952. {
  20953. name: "Macro",
  20954. height: math.unit(500, "feet")
  20955. },
  20956. {
  20957. name: "Megamacro",
  20958. height: math.unit(1000, "miles")
  20959. },
  20960. ]
  20961. ))
  20962. characterMakers.push(() => makeCharacter(
  20963. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20964. {
  20965. front: {
  20966. height: math.unit(6, "feet"),
  20967. weight: math.unit(150, "lb"),
  20968. name: "Front",
  20969. image: {
  20970. source: "./media/characters/tendirmuldr/front.svg",
  20971. extra: 1878 / 1772,
  20972. bottom: 0.015
  20973. }
  20974. },
  20975. },
  20976. [
  20977. {
  20978. name: "Megamacro",
  20979. height: math.unit(1500, "miles"),
  20980. default: true
  20981. },
  20982. ]
  20983. ))
  20984. characterMakers.push(() => makeCharacter(
  20985. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20986. {
  20987. front: {
  20988. height: math.unit(14, "feet"),
  20989. weight: math.unit(12000, "lb"),
  20990. name: "Front",
  20991. image: {
  20992. source: "./media/characters/mort/front.svg",
  20993. extra: 365 / 318,
  20994. bottom: 0.01
  20995. }
  20996. },
  20997. side: {
  20998. height: math.unit(14, "feet"),
  20999. weight: math.unit(12000, "lb"),
  21000. name: "Side",
  21001. image: {
  21002. source: "./media/characters/mort/side.svg",
  21003. extra: 365 / 318,
  21004. bottom: 0.052
  21005. },
  21006. default: true
  21007. },
  21008. back: {
  21009. height: math.unit(14, "feet"),
  21010. weight: math.unit(12000, "lb"),
  21011. name: "Back",
  21012. image: {
  21013. source: "./media/characters/mort/back.svg",
  21014. extra: 371 / 332,
  21015. bottom: 0.18
  21016. }
  21017. },
  21018. },
  21019. [
  21020. {
  21021. name: "Normal",
  21022. height: math.unit(14, "feet"),
  21023. default: true
  21024. },
  21025. ]
  21026. ))
  21027. characterMakers.push(() => makeCharacter(
  21028. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21029. {
  21030. front: {
  21031. height: math.unit(8, "feet"),
  21032. weight: math.unit(1, "ton"),
  21033. name: "Front",
  21034. image: {
  21035. source: "./media/characters/lycoa/front.svg",
  21036. extra: 1836/1728,
  21037. bottom: 81/1917
  21038. }
  21039. },
  21040. back: {
  21041. height: math.unit(8, "feet"),
  21042. weight: math.unit(1, "ton"),
  21043. name: "Back",
  21044. image: {
  21045. source: "./media/characters/lycoa/back.svg",
  21046. extra: 1785/1720,
  21047. bottom: 91/1876
  21048. }
  21049. },
  21050. head: {
  21051. height: math.unit(1.6243, "feet"),
  21052. name: "Head",
  21053. image: {
  21054. source: "./media/characters/lycoa/head.svg",
  21055. extra: 1011/782,
  21056. bottom: 0/1011
  21057. }
  21058. },
  21059. tailmaw: {
  21060. height: math.unit(1.9, "feet"),
  21061. name: "Tailmaw",
  21062. image: {
  21063. source: "./media/characters/lycoa/tailmaw.svg"
  21064. }
  21065. },
  21066. tentacles: {
  21067. height: math.unit(2.1, "feet"),
  21068. name: "Tentacles",
  21069. image: {
  21070. source: "./media/characters/lycoa/tentacles.svg"
  21071. }
  21072. },
  21073. dick: {
  21074. height: math.unit(1.73, "feet"),
  21075. name: "Dick",
  21076. image: {
  21077. source: "./media/characters/lycoa/dick.svg"
  21078. }
  21079. },
  21080. },
  21081. [
  21082. {
  21083. name: "Normal",
  21084. height: math.unit(8, "feet"),
  21085. default: true
  21086. },
  21087. {
  21088. name: "Macro",
  21089. height: math.unit(30, "feet")
  21090. },
  21091. ]
  21092. ))
  21093. characterMakers.push(() => makeCharacter(
  21094. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21095. {
  21096. front: {
  21097. height: math.unit(4 + 2 / 12, "feet"),
  21098. weight: math.unit(70, "lb"),
  21099. name: "Front",
  21100. image: {
  21101. source: "./media/characters/naldara/front.svg",
  21102. extra: 1664/1387,
  21103. bottom: 81/1745
  21104. },
  21105. form: "anthro",
  21106. default: true
  21107. },
  21108. naga: {
  21109. height: math.unit(20, "feet"),
  21110. weight: math.unit(15000, "kg"),
  21111. name: "Front",
  21112. image: {
  21113. source: "./media/characters/naldara/naga.svg",
  21114. extra: 1590/1396,
  21115. bottom: 285/1875
  21116. },
  21117. form: "naga",
  21118. default: true
  21119. },
  21120. },
  21121. [
  21122. {
  21123. name: "Normal",
  21124. height: math.unit(4 + 2 / 12, "feet"),
  21125. form: "anthro",
  21126. default: true
  21127. },
  21128. {
  21129. name: "Normal",
  21130. height: math.unit(20, "feet"),
  21131. form: "naga",
  21132. default: true
  21133. },
  21134. ],
  21135. {
  21136. "anthro": {
  21137. name: "Anthro",
  21138. default: true
  21139. },
  21140. "naga": {
  21141. name: "Naga"
  21142. }
  21143. }
  21144. ))
  21145. characterMakers.push(() => makeCharacter(
  21146. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21147. {
  21148. front: {
  21149. height: math.unit(13 + 7 / 12, "feet"),
  21150. weight: math.unit(1500, "lb"),
  21151. name: "Front",
  21152. image: {
  21153. source: "./media/characters/briar/front.svg",
  21154. extra: 1223/1157,
  21155. bottom: 123/1346
  21156. }
  21157. },
  21158. },
  21159. [
  21160. {
  21161. name: "Normal",
  21162. height: math.unit(13 + 7 / 12, "feet"),
  21163. default: true
  21164. },
  21165. ]
  21166. ))
  21167. characterMakers.push(() => makeCharacter(
  21168. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21169. {
  21170. side: {
  21171. height: math.unit(16, "feet"),
  21172. weight: math.unit(500, "lb"),
  21173. name: "Side",
  21174. image: {
  21175. source: "./media/characters/vanguard/side.svg",
  21176. extra: 1022/914,
  21177. bottom: 30/1052
  21178. }
  21179. },
  21180. sideAlt: {
  21181. height: math.unit(10, "feet"),
  21182. weight: math.unit(500, "lb"),
  21183. name: "Side (Alt)",
  21184. image: {
  21185. source: "./media/characters/vanguard/side-alt.svg",
  21186. extra: 502 / 425,
  21187. bottom: 0.087
  21188. }
  21189. },
  21190. },
  21191. [
  21192. {
  21193. name: "Normal",
  21194. height: math.unit(17.71, "feet"),
  21195. default: true
  21196. },
  21197. ]
  21198. ))
  21199. characterMakers.push(() => makeCharacter(
  21200. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21201. {
  21202. front: {
  21203. height: math.unit(7.5, "feet"),
  21204. weight: math.unit(2, "lb"),
  21205. name: "Front",
  21206. image: {
  21207. source: "./media/characters/artemis/work-safe-front.svg",
  21208. extra: 1192 / 1075,
  21209. bottom: 0.07
  21210. },
  21211. form: "work-safe",
  21212. default: true
  21213. },
  21214. frontNsfw: {
  21215. height: math.unit(7.5, "feet"),
  21216. weight: math.unit(2, "lb"),
  21217. name: "Front",
  21218. image: {
  21219. source: "./media/characters/artemis/calibrating-front.svg",
  21220. extra: 1192 / 1075,
  21221. bottom: 0.07
  21222. },
  21223. form: "calibrating",
  21224. default: true
  21225. },
  21226. frontNsfwer: {
  21227. height: math.unit(7.5, "feet"),
  21228. weight: math.unit(2, "lb"),
  21229. name: "Front",
  21230. image: {
  21231. source: "./media/characters/artemis/oversize-load-front.svg",
  21232. extra: 1192 / 1075,
  21233. bottom: 0.07
  21234. },
  21235. form: "oversize-load",
  21236. default: true
  21237. },
  21238. side: {
  21239. height: math.unit(7.5, "feet"),
  21240. weight: math.unit(2, "lb"),
  21241. name: "Side",
  21242. image: {
  21243. source: "./media/characters/artemis/work-safe-side.svg",
  21244. extra: 1192 / 1075,
  21245. bottom: 0.07
  21246. },
  21247. form: "work-safe"
  21248. },
  21249. sideNsfw: {
  21250. height: math.unit(7.5, "feet"),
  21251. weight: math.unit(2, "lb"),
  21252. name: "Side",
  21253. image: {
  21254. source: "./media/characters/artemis/calibrating-side.svg",
  21255. extra: 1192 / 1075,
  21256. bottom: 0.07
  21257. },
  21258. form: "calibrating"
  21259. },
  21260. sideNsfwer: {
  21261. height: math.unit(7.5, "feet"),
  21262. weight: math.unit(2, "lb"),
  21263. name: "Side",
  21264. image: {
  21265. source: "./media/characters/artemis/oversize-load-side.svg",
  21266. extra: 1192 / 1075,
  21267. bottom: 0.07
  21268. },
  21269. form: "oversize-load"
  21270. },
  21271. maw: {
  21272. height: math.unit(1.1, "feet"),
  21273. name: "Maw",
  21274. image: {
  21275. source: "./media/characters/artemis/maw.svg"
  21276. },
  21277. form: "work-safe"
  21278. },
  21279. stomach: {
  21280. height: math.unit(0.95, "feet"),
  21281. name: "Stomach",
  21282. image: {
  21283. source: "./media/characters/artemis/stomach.svg"
  21284. },
  21285. form: "work-safe"
  21286. },
  21287. dickCanine: {
  21288. height: math.unit(1, "feet"),
  21289. name: "Dick (Canine)",
  21290. image: {
  21291. source: "./media/characters/artemis/dick-canine.svg"
  21292. },
  21293. form: "calibrating"
  21294. },
  21295. dickEquine: {
  21296. height: math.unit(0.85, "feet"),
  21297. name: "Dick (Equine)",
  21298. image: {
  21299. source: "./media/characters/artemis/dick-equine.svg"
  21300. },
  21301. form: "calibrating"
  21302. },
  21303. dickExotic: {
  21304. height: math.unit(0.85, "feet"),
  21305. name: "Dick (Exotic)",
  21306. image: {
  21307. source: "./media/characters/artemis/dick-exotic.svg"
  21308. },
  21309. form: "calibrating"
  21310. },
  21311. dickCanineBigger: {
  21312. height: math.unit(1 * 1.33, "feet"),
  21313. name: "Dick (Canine)",
  21314. image: {
  21315. source: "./media/characters/artemis/dick-canine.svg"
  21316. },
  21317. form: "oversize-load"
  21318. },
  21319. dickEquineBigger: {
  21320. height: math.unit(0.85 * 1.33, "feet"),
  21321. name: "Dick (Equine)",
  21322. image: {
  21323. source: "./media/characters/artemis/dick-equine.svg"
  21324. },
  21325. form: "oversize-load"
  21326. },
  21327. dickExoticBigger: {
  21328. height: math.unit(0.85 * 1.33, "feet"),
  21329. name: "Dick (Exotic)",
  21330. image: {
  21331. source: "./media/characters/artemis/dick-exotic.svg"
  21332. },
  21333. form: "oversize-load"
  21334. },
  21335. },
  21336. [
  21337. {
  21338. name: "Normal",
  21339. height: math.unit(7.5, "feet"),
  21340. form: "work-safe",
  21341. default: true
  21342. },
  21343. {
  21344. name: "Normal",
  21345. height: math.unit(7.5, "feet"),
  21346. form: "calibrating",
  21347. default: true
  21348. },
  21349. {
  21350. name: "Normal",
  21351. height: math.unit(7.5, "feet"),
  21352. form: "oversize-load",
  21353. default: true
  21354. },
  21355. {
  21356. name: "Enlarged",
  21357. height: math.unit(12, "feet"),
  21358. form: "work-safe",
  21359. },
  21360. {
  21361. name: "Enlarged",
  21362. height: math.unit(12, "feet"),
  21363. form: "calibrating",
  21364. },
  21365. {
  21366. name: "Enlarged",
  21367. height: math.unit(12, "feet"),
  21368. form: "oversize-load",
  21369. },
  21370. ],
  21371. {
  21372. "work-safe": {
  21373. name: "Work-Safe",
  21374. default: true
  21375. },
  21376. "calibrating": {
  21377. name: "Calibrating"
  21378. },
  21379. "oversize-load": {
  21380. name: "Oversize Load"
  21381. }
  21382. }
  21383. ))
  21384. characterMakers.push(() => makeCharacter(
  21385. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21386. {
  21387. front: {
  21388. height: math.unit(5 + 3 / 12, "feet"),
  21389. weight: math.unit(160, "lb"),
  21390. name: "Front",
  21391. image: {
  21392. source: "./media/characters/kira/front.svg",
  21393. extra: 906 / 786,
  21394. bottom: 0.01
  21395. }
  21396. },
  21397. back: {
  21398. height: math.unit(5 + 3 / 12, "feet"),
  21399. weight: math.unit(160, "lb"),
  21400. name: "Back",
  21401. image: {
  21402. source: "./media/characters/kira/back.svg",
  21403. extra: 882 / 757,
  21404. bottom: 0.005
  21405. }
  21406. },
  21407. frontDressed: {
  21408. height: math.unit(5 + 3 / 12, "feet"),
  21409. weight: math.unit(160, "lb"),
  21410. name: "Front (Dressed)",
  21411. image: {
  21412. source: "./media/characters/kira/front-dressed.svg",
  21413. extra: 906 / 786,
  21414. bottom: 0.01
  21415. }
  21416. },
  21417. beans: {
  21418. height: math.unit(0.92, "feet"),
  21419. name: "Beans",
  21420. image: {
  21421. source: "./media/characters/kira/beans.svg"
  21422. }
  21423. },
  21424. },
  21425. [
  21426. {
  21427. name: "Normal",
  21428. height: math.unit(5 + 3 / 12, "feet"),
  21429. default: true
  21430. },
  21431. ]
  21432. ))
  21433. characterMakers.push(() => makeCharacter(
  21434. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21435. {
  21436. front: {
  21437. height: math.unit(5 + 4 / 12, "feet"),
  21438. weight: math.unit(145, "lb"),
  21439. name: "Front",
  21440. image: {
  21441. source: "./media/characters/scramble/front.svg",
  21442. extra: 763 / 727,
  21443. bottom: 0.05
  21444. }
  21445. },
  21446. back: {
  21447. height: math.unit(5 + 4 / 12, "feet"),
  21448. weight: math.unit(145, "lb"),
  21449. name: "Back",
  21450. image: {
  21451. source: "./media/characters/scramble/back.svg",
  21452. extra: 826 / 737,
  21453. bottom: 0.002
  21454. }
  21455. },
  21456. },
  21457. [
  21458. {
  21459. name: "Normal",
  21460. height: math.unit(5 + 4 / 12, "feet"),
  21461. default: true
  21462. },
  21463. ]
  21464. ))
  21465. characterMakers.push(() => makeCharacter(
  21466. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21467. {
  21468. side: {
  21469. height: math.unit(6 + 2 / 12, "feet"),
  21470. weight: math.unit(190, "lb"),
  21471. name: "Side",
  21472. image: {
  21473. source: "./media/characters/biscuit/side.svg",
  21474. extra: 858 / 791,
  21475. bottom: 0.044
  21476. }
  21477. },
  21478. },
  21479. [
  21480. {
  21481. name: "Normal",
  21482. height: math.unit(6 + 2 / 12, "feet"),
  21483. default: true
  21484. },
  21485. ]
  21486. ))
  21487. characterMakers.push(() => makeCharacter(
  21488. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21489. {
  21490. front: {
  21491. height: math.unit(5 + 2 / 12, "feet"),
  21492. weight: math.unit(120, "lb"),
  21493. name: "Front",
  21494. image: {
  21495. source: "./media/characters/poffin/front.svg",
  21496. extra: 786 / 680,
  21497. bottom: 0.005
  21498. }
  21499. },
  21500. },
  21501. [
  21502. {
  21503. name: "Normal",
  21504. height: math.unit(5 + 2 / 12, "feet"),
  21505. default: true
  21506. },
  21507. ]
  21508. ))
  21509. characterMakers.push(() => makeCharacter(
  21510. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21511. {
  21512. front: {
  21513. height: math.unit(6 + 3 / 12, "feet"),
  21514. weight: math.unit(519, "lb"),
  21515. name: "Front",
  21516. image: {
  21517. source: "./media/characters/dhari/front.svg",
  21518. extra: 1048 / 946,
  21519. bottom: 0.015
  21520. }
  21521. },
  21522. back: {
  21523. height: math.unit(6 + 3 / 12, "feet"),
  21524. weight: math.unit(519, "lb"),
  21525. name: "Back",
  21526. image: {
  21527. source: "./media/characters/dhari/back.svg",
  21528. extra: 1048 / 931,
  21529. bottom: 0.005
  21530. }
  21531. },
  21532. frontDressed: {
  21533. height: math.unit(6 + 3 / 12, "feet"),
  21534. weight: math.unit(519, "lb"),
  21535. name: "Front (Dressed)",
  21536. image: {
  21537. source: "./media/characters/dhari/front-dressed.svg",
  21538. extra: 1713 / 1546,
  21539. bottom: 0.02
  21540. }
  21541. },
  21542. backDressed: {
  21543. height: math.unit(6 + 3 / 12, "feet"),
  21544. weight: math.unit(519, "lb"),
  21545. name: "Back (Dressed)",
  21546. image: {
  21547. source: "./media/characters/dhari/back-dressed.svg",
  21548. extra: 1699 / 1537,
  21549. bottom: 0.01
  21550. }
  21551. },
  21552. maw: {
  21553. height: math.unit(0.95, "feet"),
  21554. name: "Maw",
  21555. image: {
  21556. source: "./media/characters/dhari/maw.svg"
  21557. }
  21558. },
  21559. wereFront: {
  21560. height: math.unit(12 + 8 / 12, "feet"),
  21561. weight: math.unit(4000, "lb"),
  21562. name: "Front (Were)",
  21563. image: {
  21564. source: "./media/characters/dhari/were-front.svg",
  21565. extra: 1065 / 969,
  21566. bottom: 0.015
  21567. }
  21568. },
  21569. wereBack: {
  21570. height: math.unit(12 + 8 / 12, "feet"),
  21571. weight: math.unit(4000, "lb"),
  21572. name: "Back (Were)",
  21573. image: {
  21574. source: "./media/characters/dhari/were-back.svg",
  21575. extra: 1065 / 969,
  21576. bottom: 0.012
  21577. }
  21578. },
  21579. wereMaw: {
  21580. height: math.unit(0.625, "meters"),
  21581. name: "Maw (Were)",
  21582. image: {
  21583. source: "./media/characters/dhari/were-maw.svg"
  21584. }
  21585. },
  21586. },
  21587. [
  21588. {
  21589. name: "Normal",
  21590. height: math.unit(6 + 3 / 12, "feet"),
  21591. default: true
  21592. },
  21593. ]
  21594. ))
  21595. characterMakers.push(() => makeCharacter(
  21596. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21597. {
  21598. anthro: {
  21599. height: math.unit(5 + 7 / 12, "feet"),
  21600. weight: math.unit(175, "lb"),
  21601. name: "Anthro",
  21602. image: {
  21603. source: "./media/characters/rena-dyne/anthro.svg",
  21604. extra: 1849 / 1785,
  21605. bottom: 0.005
  21606. }
  21607. },
  21608. taur: {
  21609. height: math.unit(15 + 6 / 12, "feet"),
  21610. weight: math.unit(8000, "lb"),
  21611. name: "Taur",
  21612. image: {
  21613. source: "./media/characters/rena-dyne/taur.svg",
  21614. extra: 2315 / 2234,
  21615. bottom: 0.033
  21616. }
  21617. },
  21618. },
  21619. [
  21620. {
  21621. name: "Normal",
  21622. height: math.unit(5 + 7 / 12, "feet"),
  21623. default: true
  21624. },
  21625. ]
  21626. ))
  21627. characterMakers.push(() => makeCharacter(
  21628. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21629. {
  21630. front: {
  21631. height: math.unit(8, "feet"),
  21632. weight: math.unit(600, "lb"),
  21633. name: "Front",
  21634. image: {
  21635. source: "./media/characters/weremeep/front.svg",
  21636. extra: 967 / 862,
  21637. bottom: 0.01
  21638. }
  21639. },
  21640. },
  21641. [
  21642. {
  21643. name: "Normal",
  21644. height: math.unit(8, "feet"),
  21645. default: true
  21646. },
  21647. {
  21648. name: "Lorg",
  21649. height: math.unit(12, "feet")
  21650. },
  21651. {
  21652. name: "Oh Lawd She Comin'",
  21653. height: math.unit(20, "feet")
  21654. },
  21655. ]
  21656. ))
  21657. characterMakers.push(() => makeCharacter(
  21658. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21659. {
  21660. front: {
  21661. height: math.unit(4, "feet"),
  21662. weight: math.unit(90, "lb"),
  21663. name: "Front",
  21664. image: {
  21665. source: "./media/characters/reza/front.svg",
  21666. extra: 1183 / 1111,
  21667. bottom: 0.017
  21668. }
  21669. },
  21670. back: {
  21671. height: math.unit(4, "feet"),
  21672. weight: math.unit(90, "lb"),
  21673. name: "Back",
  21674. image: {
  21675. source: "./media/characters/reza/back.svg",
  21676. extra: 1183 / 1111,
  21677. bottom: 0.01
  21678. }
  21679. },
  21680. drake: {
  21681. height: math.unit(30, "feet"),
  21682. weight: math.unit(246960, "lb"),
  21683. name: "Drake",
  21684. image: {
  21685. source: "./media/characters/reza/drake.svg",
  21686. extra: 2350 / 2024,
  21687. bottom: 60.7 / 2403
  21688. }
  21689. },
  21690. },
  21691. [
  21692. {
  21693. name: "Normal",
  21694. height: math.unit(4, "feet"),
  21695. default: true
  21696. },
  21697. ]
  21698. ))
  21699. characterMakers.push(() => makeCharacter(
  21700. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21701. {
  21702. side: {
  21703. height: math.unit(15, "feet"),
  21704. weight: math.unit(14, "tons"),
  21705. name: "Side",
  21706. image: {
  21707. source: "./media/characters/athea/side.svg",
  21708. extra: 960 / 540,
  21709. bottom: 0.003
  21710. }
  21711. },
  21712. sitting: {
  21713. height: math.unit(6 * 2.85, "feet"),
  21714. weight: math.unit(14, "tons"),
  21715. name: "Sitting",
  21716. image: {
  21717. source: "./media/characters/athea/sitting.svg",
  21718. extra: 621 / 581,
  21719. bottom: 0.075
  21720. }
  21721. },
  21722. maw: {
  21723. height: math.unit(7.59498031496063, "feet"),
  21724. name: "Maw",
  21725. image: {
  21726. source: "./media/characters/athea/maw.svg"
  21727. }
  21728. },
  21729. },
  21730. [
  21731. {
  21732. name: "Lap Cat",
  21733. height: math.unit(2.5, "feet")
  21734. },
  21735. {
  21736. name: "Minimacro",
  21737. height: math.unit(15, "feet"),
  21738. default: true
  21739. },
  21740. {
  21741. name: "Macro",
  21742. height: math.unit(120, "feet")
  21743. },
  21744. {
  21745. name: "Macro+",
  21746. height: math.unit(640, "feet")
  21747. },
  21748. {
  21749. name: "Colossus",
  21750. height: math.unit(2.2, "miles")
  21751. },
  21752. ]
  21753. ))
  21754. characterMakers.push(() => makeCharacter(
  21755. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21756. {
  21757. front: {
  21758. height: math.unit(8 + 8 / 12, "feet"),
  21759. weight: math.unit(130, "kg"),
  21760. name: "Front",
  21761. image: {
  21762. source: "./media/characters/seroko/front.svg",
  21763. extra: 1385 / 1280,
  21764. bottom: 0.025
  21765. }
  21766. },
  21767. back: {
  21768. height: math.unit(8 + 8 / 12, "feet"),
  21769. weight: math.unit(130, "kg"),
  21770. name: "Back",
  21771. image: {
  21772. source: "./media/characters/seroko/back.svg",
  21773. extra: 1369 / 1238,
  21774. bottom: 0.018
  21775. }
  21776. },
  21777. frontDressed: {
  21778. height: math.unit(8 + 8 / 12, "feet"),
  21779. weight: math.unit(130, "kg"),
  21780. name: "Front (Dressed)",
  21781. image: {
  21782. source: "./media/characters/seroko/front-dressed.svg",
  21783. extra: 1366 / 1275,
  21784. bottom: 0.03
  21785. }
  21786. },
  21787. },
  21788. [
  21789. {
  21790. name: "Normal",
  21791. height: math.unit(8 + 8 / 12, "feet"),
  21792. default: true
  21793. },
  21794. ]
  21795. ))
  21796. characterMakers.push(() => makeCharacter(
  21797. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21798. {
  21799. front: {
  21800. height: math.unit(5.5, "feet"),
  21801. weight: math.unit(160, "lb"),
  21802. name: "Front",
  21803. image: {
  21804. source: "./media/characters/quatzi/front.svg",
  21805. extra: 2346 / 2242,
  21806. bottom: 0.015
  21807. }
  21808. },
  21809. },
  21810. [
  21811. {
  21812. name: "Normal",
  21813. height: math.unit(5.5, "feet"),
  21814. default: true
  21815. },
  21816. {
  21817. name: "Big",
  21818. height: math.unit(7.7, "feet")
  21819. },
  21820. ]
  21821. ))
  21822. characterMakers.push(() => makeCharacter(
  21823. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21824. {
  21825. front: {
  21826. height: math.unit(5 + 11 / 12, "feet"),
  21827. weight: math.unit(180, "lb"),
  21828. name: "Front",
  21829. image: {
  21830. source: "./media/characters/sen/front.svg",
  21831. extra: 1321 / 1254,
  21832. bottom: 0.015
  21833. }
  21834. },
  21835. side: {
  21836. height: math.unit(5 + 11 / 12, "feet"),
  21837. weight: math.unit(180, "lb"),
  21838. name: "Side",
  21839. image: {
  21840. source: "./media/characters/sen/side.svg",
  21841. extra: 1321 / 1254,
  21842. bottom: 0.007
  21843. }
  21844. },
  21845. back: {
  21846. height: math.unit(5 + 11 / 12, "feet"),
  21847. weight: math.unit(180, "lb"),
  21848. name: "Back",
  21849. image: {
  21850. source: "./media/characters/sen/back.svg",
  21851. extra: 1321 / 1254
  21852. }
  21853. },
  21854. },
  21855. [
  21856. {
  21857. name: "Normal",
  21858. height: math.unit(5 + 11 / 12, "feet"),
  21859. default: true
  21860. },
  21861. ]
  21862. ))
  21863. characterMakers.push(() => makeCharacter(
  21864. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21865. {
  21866. front: {
  21867. height: math.unit(166.6, "cm"),
  21868. weight: math.unit(66.6, "kg"),
  21869. name: "Front",
  21870. image: {
  21871. source: "./media/characters/fruity/front.svg",
  21872. extra: 1510 / 1386,
  21873. bottom: 0.04
  21874. }
  21875. },
  21876. back: {
  21877. height: math.unit(166.6, "cm"),
  21878. weight: math.unit(66.6, "lb"),
  21879. name: "Back",
  21880. image: {
  21881. source: "./media/characters/fruity/back.svg",
  21882. extra: 1563 / 1435,
  21883. bottom: 0.005
  21884. }
  21885. },
  21886. },
  21887. [
  21888. {
  21889. name: "Normal",
  21890. height: math.unit(166.6, "cm"),
  21891. default: true
  21892. },
  21893. {
  21894. name: "Demonic",
  21895. height: math.unit(166.6, "feet")
  21896. },
  21897. ]
  21898. ))
  21899. characterMakers.push(() => makeCharacter(
  21900. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21901. {
  21902. side: {
  21903. height: math.unit(10, "feet"),
  21904. weight: math.unit(500, "lb"),
  21905. name: "Side",
  21906. image: {
  21907. source: "./media/characters/zost/side.svg",
  21908. extra: 2870/2533,
  21909. bottom: 252/3122
  21910. }
  21911. },
  21912. mawFront: {
  21913. height: math.unit(1.08, "meters"),
  21914. name: "Maw (Front)",
  21915. image: {
  21916. source: "./media/characters/zost/maw-front.svg"
  21917. }
  21918. },
  21919. mawSide: {
  21920. height: math.unit(2.66, "feet"),
  21921. name: "Maw (Side)",
  21922. image: {
  21923. source: "./media/characters/zost/maw-side.svg"
  21924. }
  21925. },
  21926. wingspan: {
  21927. height: math.unit(7.4, "feet"),
  21928. name: "Wingspan",
  21929. image: {
  21930. source: "./media/characters/zost/wingspan.svg"
  21931. }
  21932. },
  21933. },
  21934. [
  21935. {
  21936. name: "Normal",
  21937. height: math.unit(10, "feet"),
  21938. default: true
  21939. },
  21940. ]
  21941. ))
  21942. characterMakers.push(() => makeCharacter(
  21943. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21944. {
  21945. front: {
  21946. height: math.unit(5 + 4 / 12, "feet"),
  21947. weight: math.unit(120, "lb"),
  21948. name: "Front",
  21949. image: {
  21950. source: "./media/characters/luci/front.svg",
  21951. extra: 1985 / 1884,
  21952. bottom: 0.04
  21953. }
  21954. },
  21955. back: {
  21956. height: math.unit(5 + 4 / 12, "feet"),
  21957. weight: math.unit(120, "lb"),
  21958. name: "Back",
  21959. image: {
  21960. source: "./media/characters/luci/back.svg",
  21961. extra: 1892 / 1791,
  21962. bottom: 0.002
  21963. }
  21964. },
  21965. },
  21966. [
  21967. {
  21968. name: "Normal",
  21969. height: math.unit(5 + 4 / 12, "feet"),
  21970. default: true
  21971. },
  21972. ]
  21973. ))
  21974. characterMakers.push(() => makeCharacter(
  21975. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21976. {
  21977. front: {
  21978. height: math.unit(1500, "feet"),
  21979. weight: math.unit(3.8e6, "tons"),
  21980. name: "Front",
  21981. image: {
  21982. source: "./media/characters/2th/front.svg",
  21983. extra: 3489 / 3350,
  21984. bottom: 0.1
  21985. }
  21986. },
  21987. foot: {
  21988. height: math.unit(461, "feet"),
  21989. name: "Foot",
  21990. image: {
  21991. source: "./media/characters/2th/foot.svg"
  21992. }
  21993. },
  21994. },
  21995. [
  21996. {
  21997. name: "\"Micro\"",
  21998. height: math.unit(15 + 7 / 12, "feet")
  21999. },
  22000. {
  22001. name: "Normal",
  22002. height: math.unit(1500, "feet"),
  22003. default: true
  22004. },
  22005. {
  22006. name: "Macro",
  22007. height: math.unit(5000, "feet")
  22008. },
  22009. {
  22010. name: "Megamacro",
  22011. height: math.unit(15, "miles")
  22012. },
  22013. {
  22014. name: "Gigamacro",
  22015. height: math.unit(4000, "miles")
  22016. },
  22017. {
  22018. name: "Galactic",
  22019. height: math.unit(50, "AU")
  22020. },
  22021. ]
  22022. ))
  22023. characterMakers.push(() => makeCharacter(
  22024. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22025. {
  22026. front: {
  22027. height: math.unit(5 + 6 / 12, "feet"),
  22028. weight: math.unit(220, "lb"),
  22029. name: "Front",
  22030. image: {
  22031. source: "./media/characters/amethyst/front.svg",
  22032. extra: 2078 / 2040,
  22033. bottom: 0.045
  22034. }
  22035. },
  22036. back: {
  22037. height: math.unit(5 + 6 / 12, "feet"),
  22038. weight: math.unit(220, "lb"),
  22039. name: "Back",
  22040. image: {
  22041. source: "./media/characters/amethyst/back.svg",
  22042. extra: 2021 / 1989,
  22043. bottom: 0.02
  22044. }
  22045. },
  22046. },
  22047. [
  22048. {
  22049. name: "Normal",
  22050. height: math.unit(5 + 6 / 12, "feet"),
  22051. default: true
  22052. },
  22053. ]
  22054. ))
  22055. characterMakers.push(() => makeCharacter(
  22056. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22057. {
  22058. front: {
  22059. height: math.unit(4 + 11 / 12, "feet"),
  22060. weight: math.unit(120, "lb"),
  22061. name: "Front",
  22062. image: {
  22063. source: "./media/characters/yumi-akiyama/front.svg",
  22064. extra: 1327 / 1235,
  22065. bottom: 0.02
  22066. }
  22067. },
  22068. back: {
  22069. height: math.unit(4 + 11 / 12, "feet"),
  22070. weight: math.unit(120, "lb"),
  22071. name: "Back",
  22072. image: {
  22073. source: "./media/characters/yumi-akiyama/back.svg",
  22074. extra: 1287 / 1245,
  22075. bottom: 0.002
  22076. }
  22077. },
  22078. },
  22079. [
  22080. {
  22081. name: "Galactic",
  22082. height: math.unit(50, "galaxies"),
  22083. default: true
  22084. },
  22085. {
  22086. name: "Universal",
  22087. height: math.unit(100, "universes")
  22088. },
  22089. ]
  22090. ))
  22091. characterMakers.push(() => makeCharacter(
  22092. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22093. {
  22094. front: {
  22095. height: math.unit(8, "feet"),
  22096. weight: math.unit(500, "lb"),
  22097. name: "Front",
  22098. image: {
  22099. source: "./media/characters/rifter-yrmori/front.svg",
  22100. extra: 1180 / 1125,
  22101. bottom: 0.02
  22102. }
  22103. },
  22104. back: {
  22105. height: math.unit(8, "feet"),
  22106. weight: math.unit(500, "lb"),
  22107. name: "Back",
  22108. image: {
  22109. source: "./media/characters/rifter-yrmori/back.svg",
  22110. extra: 1190 / 1145,
  22111. bottom: 0.001
  22112. }
  22113. },
  22114. wings: {
  22115. height: math.unit(7.75, "feet"),
  22116. weight: math.unit(500, "lb"),
  22117. name: "Wings",
  22118. image: {
  22119. source: "./media/characters/rifter-yrmori/wings.svg",
  22120. extra: 1357 / 1285
  22121. }
  22122. },
  22123. maw: {
  22124. height: math.unit(0.8, "feet"),
  22125. name: "Maw",
  22126. image: {
  22127. source: "./media/characters/rifter-yrmori/maw.svg"
  22128. }
  22129. },
  22130. mawfront: {
  22131. height: math.unit(1.45, "feet"),
  22132. name: "Maw (Front)",
  22133. image: {
  22134. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22135. }
  22136. },
  22137. },
  22138. [
  22139. {
  22140. name: "Normal",
  22141. height: math.unit(8, "feet"),
  22142. default: true
  22143. },
  22144. {
  22145. name: "Macro",
  22146. height: math.unit(42, "meters")
  22147. },
  22148. ]
  22149. ))
  22150. characterMakers.push(() => makeCharacter(
  22151. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22152. {
  22153. were: {
  22154. height: math.unit(25 + 6 / 12, "feet"),
  22155. weight: math.unit(10000, "lb"),
  22156. name: "Were",
  22157. image: {
  22158. source: "./media/characters/tahajin/were.svg",
  22159. extra: 801 / 770,
  22160. bottom: 0.042
  22161. }
  22162. },
  22163. aquatic: {
  22164. height: math.unit(6 + 4 / 12, "feet"),
  22165. weight: math.unit(160, "lb"),
  22166. name: "Aquatic",
  22167. image: {
  22168. source: "./media/characters/tahajin/aquatic.svg",
  22169. extra: 572 / 542,
  22170. bottom: 0.04
  22171. }
  22172. },
  22173. chow: {
  22174. height: math.unit(8 + 11 / 12, "feet"),
  22175. weight: math.unit(450, "lb"),
  22176. name: "Chow",
  22177. image: {
  22178. source: "./media/characters/tahajin/chow.svg",
  22179. extra: 660 / 640,
  22180. bottom: 0.015
  22181. }
  22182. },
  22183. demiNaga: {
  22184. height: math.unit(6 + 8 / 12, "feet"),
  22185. weight: math.unit(300, "lb"),
  22186. name: "Demi Naga",
  22187. image: {
  22188. source: "./media/characters/tahajin/demi-naga.svg",
  22189. extra: 643 / 615,
  22190. bottom: 0.1
  22191. }
  22192. },
  22193. data: {
  22194. height: math.unit(5, "inches"),
  22195. weight: math.unit(0.1, "lb"),
  22196. name: "Data",
  22197. image: {
  22198. source: "./media/characters/tahajin/data.svg"
  22199. }
  22200. },
  22201. fluu: {
  22202. height: math.unit(5 + 7 / 12, "feet"),
  22203. weight: math.unit(140, "lb"),
  22204. name: "Fluu",
  22205. image: {
  22206. source: "./media/characters/tahajin/fluu.svg",
  22207. extra: 628 / 592,
  22208. bottom: 0.02
  22209. }
  22210. },
  22211. starWarrior: {
  22212. height: math.unit(4 + 5 / 12, "feet"),
  22213. weight: math.unit(50, "lb"),
  22214. name: "Star Warrior",
  22215. image: {
  22216. source: "./media/characters/tahajin/star-warrior.svg"
  22217. }
  22218. },
  22219. },
  22220. [
  22221. {
  22222. name: "Normal",
  22223. height: math.unit(25 + 6 / 12, "feet"),
  22224. default: true
  22225. },
  22226. ]
  22227. ))
  22228. characterMakers.push(() => makeCharacter(
  22229. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22230. {
  22231. front: {
  22232. height: math.unit(8, "feet"),
  22233. weight: math.unit(350, "lb"),
  22234. name: "Front",
  22235. image: {
  22236. source: "./media/characters/gabira/front.svg",
  22237. extra: 608 / 580,
  22238. bottom: 0.03
  22239. }
  22240. },
  22241. back: {
  22242. height: math.unit(8, "feet"),
  22243. weight: math.unit(350, "lb"),
  22244. name: "Back",
  22245. image: {
  22246. source: "./media/characters/gabira/back.svg",
  22247. extra: 608 / 580,
  22248. bottom: 0.03
  22249. }
  22250. },
  22251. },
  22252. [
  22253. {
  22254. name: "Normal",
  22255. height: math.unit(8, "feet"),
  22256. default: true
  22257. },
  22258. ]
  22259. ))
  22260. characterMakers.push(() => makeCharacter(
  22261. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22262. {
  22263. front: {
  22264. height: math.unit(5 + 3 / 12, "feet"),
  22265. weight: math.unit(137, "lb"),
  22266. name: "Front",
  22267. image: {
  22268. source: "./media/characters/sasha-katraine/front.svg",
  22269. extra: 1745/1694,
  22270. bottom: 37/1782
  22271. }
  22272. },
  22273. back: {
  22274. height: math.unit(5 + 3 / 12, "feet"),
  22275. weight: math.unit(137, "lb"),
  22276. name: "Back",
  22277. image: {
  22278. source: "./media/characters/sasha-katraine/back.svg",
  22279. extra: 1776/1699,
  22280. bottom: 26/1802
  22281. }
  22282. },
  22283. },
  22284. [
  22285. {
  22286. name: "Micro",
  22287. height: math.unit(5, "inches")
  22288. },
  22289. {
  22290. name: "Normal",
  22291. height: math.unit(5 + 3 / 12, "feet"),
  22292. default: true
  22293. },
  22294. ]
  22295. ))
  22296. characterMakers.push(() => makeCharacter(
  22297. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22298. {
  22299. side: {
  22300. height: math.unit(4, "inches"),
  22301. weight: math.unit(200, "grams"),
  22302. name: "Side",
  22303. image: {
  22304. source: "./media/characters/der/side.svg",
  22305. extra: 719 / 400,
  22306. bottom: 30.6 / 749.9187
  22307. }
  22308. },
  22309. },
  22310. [
  22311. {
  22312. name: "Micro",
  22313. height: math.unit(4, "inches"),
  22314. default: true
  22315. },
  22316. ]
  22317. ))
  22318. characterMakers.push(() => makeCharacter(
  22319. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22320. {
  22321. side: {
  22322. height: math.unit(30, "meters"),
  22323. weight: math.unit(700, "tonnes"),
  22324. name: "Side",
  22325. image: {
  22326. source: "./media/characters/fixerdragon/side.svg",
  22327. extra: (1293.0514 - 116.03) / 1106.86,
  22328. bottom: 116.03 / 1293.0514
  22329. }
  22330. },
  22331. },
  22332. [
  22333. {
  22334. name: "Planck",
  22335. height: math.unit(1.6e-35, "meters")
  22336. },
  22337. {
  22338. name: "Micro",
  22339. height: math.unit(0.4, "meters")
  22340. },
  22341. {
  22342. name: "Normal",
  22343. height: math.unit(30, "meters"),
  22344. default: true
  22345. },
  22346. {
  22347. name: "Megamacro",
  22348. height: math.unit(1.2, "megameters")
  22349. },
  22350. {
  22351. name: "Teramacro",
  22352. height: math.unit(130, "terameters")
  22353. },
  22354. {
  22355. name: "Yottamacro",
  22356. height: math.unit(6200, "yottameters")
  22357. },
  22358. ]
  22359. ));
  22360. characterMakers.push(() => makeCharacter(
  22361. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22362. {
  22363. front: {
  22364. height: math.unit(8, "feet"),
  22365. weight: math.unit(250, "lb"),
  22366. name: "Front",
  22367. image: {
  22368. source: "./media/characters/kite/front.svg",
  22369. extra: 2796 / 2659,
  22370. bottom: 0.002
  22371. }
  22372. },
  22373. },
  22374. [
  22375. {
  22376. name: "Normal",
  22377. height: math.unit(8, "feet"),
  22378. default: true
  22379. },
  22380. {
  22381. name: "Macro",
  22382. height: math.unit(360, "feet")
  22383. },
  22384. {
  22385. name: "Megamacro",
  22386. height: math.unit(1500, "feet")
  22387. },
  22388. ]
  22389. ))
  22390. characterMakers.push(() => makeCharacter(
  22391. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22392. {
  22393. front: {
  22394. height: math.unit(5 + 11/12, "feet"),
  22395. weight: math.unit(170, "lb"),
  22396. name: "Front",
  22397. image: {
  22398. source: "./media/characters/poojawa-vynar/front.svg",
  22399. extra: 1735/1585,
  22400. bottom: 96/1831
  22401. }
  22402. },
  22403. back: {
  22404. height: math.unit(5 + 11/12, "feet"),
  22405. weight: math.unit(170, "lb"),
  22406. name: "Back",
  22407. image: {
  22408. source: "./media/characters/poojawa-vynar/back.svg",
  22409. extra: 1749/1607,
  22410. bottom: 28/1777
  22411. }
  22412. },
  22413. male: {
  22414. height: math.unit(5 + 11/12, "feet"),
  22415. weight: math.unit(170, "lb"),
  22416. name: "Male",
  22417. image: {
  22418. source: "./media/characters/poojawa-vynar/male.svg",
  22419. extra: 1855/1713,
  22420. bottom: 63/1918
  22421. }
  22422. },
  22423. taur: {
  22424. height: math.unit(5 + 11/12, "feet"),
  22425. weight: math.unit(170, "lb"),
  22426. name: "Taur",
  22427. image: {
  22428. source: "./media/characters/poojawa-vynar/taur.svg",
  22429. extra: 1151/1059,
  22430. bottom: 356/1507
  22431. }
  22432. },
  22433. frontDressed: {
  22434. height: math.unit(5 + 11/12, "feet"),
  22435. weight: math.unit(170, "lb"),
  22436. name: "Front (Dressed)",
  22437. image: {
  22438. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22439. extra: 1735/1585,
  22440. bottom: 96/1831
  22441. }
  22442. },
  22443. backDressed: {
  22444. height: math.unit(5 + 11/12, "feet"),
  22445. weight: math.unit(170, "lb"),
  22446. name: "Back (Dressed)",
  22447. image: {
  22448. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22449. extra: 1749/1607,
  22450. bottom: 28/1777
  22451. }
  22452. },
  22453. maleDressed: {
  22454. height: math.unit(5 + 11/12, "feet"),
  22455. weight: math.unit(170, "lb"),
  22456. name: "Male (Dressed)",
  22457. image: {
  22458. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22459. extra: 1855/1713,
  22460. bottom: 63/1918
  22461. }
  22462. },
  22463. taurDressed: {
  22464. height: math.unit(5 + 11/12, "feet"),
  22465. weight: math.unit(170, "lb"),
  22466. name: "Taur (Dressed)",
  22467. image: {
  22468. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22469. extra: 1151/1059,
  22470. bottom: 356/1507
  22471. }
  22472. },
  22473. maw: {
  22474. height: math.unit(1.46, "feet"),
  22475. name: "Maw",
  22476. image: {
  22477. source: "./media/characters/poojawa-vynar/maw.svg"
  22478. }
  22479. },
  22480. head: {
  22481. height: math.unit(2.34, "feet"),
  22482. name: "Head",
  22483. image: {
  22484. source: "./media/characters/poojawa-vynar/head.svg"
  22485. }
  22486. },
  22487. paw: {
  22488. height: math.unit(1.61, "feet"),
  22489. name: "Paw",
  22490. image: {
  22491. source: "./media/characters/poojawa-vynar/paw.svg"
  22492. }
  22493. },
  22494. pawToering: {
  22495. height: math.unit(1.72, "feet"),
  22496. name: "Paw (Toering)",
  22497. image: {
  22498. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22499. }
  22500. },
  22501. toering: {
  22502. height: math.unit(2.9, "inches"),
  22503. name: "Toering",
  22504. image: {
  22505. source: "./media/characters/poojawa-vynar/toering.svg"
  22506. }
  22507. },
  22508. shaft: {
  22509. height: math.unit(0.625, "feet"),
  22510. name: "Shaft",
  22511. image: {
  22512. source: "./media/characters/poojawa-vynar/shaft.svg"
  22513. }
  22514. },
  22515. spade: {
  22516. height: math.unit(0.42, "feet"),
  22517. name: "Spade",
  22518. image: {
  22519. source: "./media/characters/poojawa-vynar/spade.svg"
  22520. }
  22521. },
  22522. },
  22523. [
  22524. {
  22525. name: "Shortstack",
  22526. height: math.unit(4, "feet")
  22527. },
  22528. {
  22529. name: "Normal",
  22530. height: math.unit(5 + 11 / 12, "feet"),
  22531. default: true
  22532. },
  22533. {
  22534. name: "Tauric",
  22535. height: math.unit(4, "meters")
  22536. },
  22537. ]
  22538. ))
  22539. characterMakers.push(() => makeCharacter(
  22540. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22541. {
  22542. front: {
  22543. height: math.unit(293, "meters"),
  22544. weight: math.unit(70400, "tons"),
  22545. name: "Front",
  22546. image: {
  22547. source: "./media/characters/violette/front.svg",
  22548. extra: 1227 / 1180,
  22549. bottom: 0.005
  22550. }
  22551. },
  22552. back: {
  22553. height: math.unit(293, "meters"),
  22554. weight: math.unit(70400, "tons"),
  22555. name: "Back",
  22556. image: {
  22557. source: "./media/characters/violette/back.svg",
  22558. extra: 1227 / 1180,
  22559. bottom: 0.005
  22560. }
  22561. },
  22562. },
  22563. [
  22564. {
  22565. name: "Macro",
  22566. height: math.unit(293, "meters"),
  22567. default: true
  22568. },
  22569. ]
  22570. ))
  22571. characterMakers.push(() => makeCharacter(
  22572. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22573. {
  22574. front: {
  22575. height: math.unit(1050, "feet"),
  22576. weight: math.unit(200000, "tons"),
  22577. name: "Front",
  22578. image: {
  22579. source: "./media/characters/alessandra/front.svg",
  22580. extra: 960 / 912,
  22581. bottom: 0.06
  22582. }
  22583. },
  22584. },
  22585. [
  22586. {
  22587. name: "Macro",
  22588. height: math.unit(1050, "feet")
  22589. },
  22590. {
  22591. name: "Macro+",
  22592. height: math.unit(900, "meters"),
  22593. default: true
  22594. },
  22595. ]
  22596. ))
  22597. characterMakers.push(() => makeCharacter(
  22598. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22599. {
  22600. front: {
  22601. height: math.unit(5, "feet"),
  22602. weight: math.unit(187, "lb"),
  22603. name: "Front",
  22604. image: {
  22605. source: "./media/characters/person/front.svg",
  22606. extra: 3087 / 2945,
  22607. bottom: 91 / 3181
  22608. }
  22609. },
  22610. },
  22611. [
  22612. {
  22613. name: "Micro",
  22614. height: math.unit(3, "inches")
  22615. },
  22616. {
  22617. name: "Normal",
  22618. height: math.unit(5, "feet"),
  22619. default: true
  22620. },
  22621. {
  22622. name: "Macro",
  22623. height: math.unit(90, "feet")
  22624. },
  22625. {
  22626. name: "Max Size",
  22627. height: math.unit(280, "feet")
  22628. },
  22629. ]
  22630. ))
  22631. characterMakers.push(() => makeCharacter(
  22632. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22633. {
  22634. front: {
  22635. height: math.unit(4.5, "meters"),
  22636. weight: math.unit(3200, "lb"),
  22637. name: "Front",
  22638. image: {
  22639. source: "./media/characters/ty/front.svg",
  22640. extra: 1038 / 960,
  22641. bottom: 31.156 / 1068
  22642. }
  22643. },
  22644. back: {
  22645. height: math.unit(4.5, "meters"),
  22646. weight: math.unit(3200, "lb"),
  22647. name: "Back",
  22648. image: {
  22649. source: "./media/characters/ty/back.svg",
  22650. extra: 1044 / 966,
  22651. bottom: 7.48 / 1049
  22652. }
  22653. },
  22654. },
  22655. [
  22656. {
  22657. name: "Normal",
  22658. height: math.unit(4.5, "meters"),
  22659. default: true
  22660. },
  22661. ]
  22662. ))
  22663. characterMakers.push(() => makeCharacter(
  22664. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22665. {
  22666. front: {
  22667. height: math.unit(5 + 4 / 12, "feet"),
  22668. weight: math.unit(115, "lb"),
  22669. name: "Front",
  22670. image: {
  22671. source: "./media/characters/rocky/front.svg",
  22672. extra: 1012 / 975,
  22673. bottom: 54 / 1066
  22674. }
  22675. },
  22676. },
  22677. [
  22678. {
  22679. name: "Normal",
  22680. height: math.unit(5 + 4 / 12, "feet"),
  22681. default: true
  22682. },
  22683. ]
  22684. ))
  22685. characterMakers.push(() => makeCharacter(
  22686. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22687. {
  22688. upright: {
  22689. height: math.unit(6, "meters"),
  22690. weight: math.unit(4000, "kg"),
  22691. name: "Upright",
  22692. image: {
  22693. source: "./media/characters/ruin/upright.svg",
  22694. extra: 668 / 661,
  22695. bottom: 42 / 799.8396
  22696. }
  22697. },
  22698. },
  22699. [
  22700. {
  22701. name: "Normal",
  22702. height: math.unit(6, "meters"),
  22703. default: true
  22704. },
  22705. ]
  22706. ))
  22707. characterMakers.push(() => makeCharacter(
  22708. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22709. {
  22710. front: {
  22711. height: math.unit(5, "feet"),
  22712. weight: math.unit(106, "lb"),
  22713. name: "Front",
  22714. image: {
  22715. source: "./media/characters/robin/front.svg",
  22716. extra: 862 / 799,
  22717. bottom: 42.4 / 914.8856
  22718. }
  22719. },
  22720. },
  22721. [
  22722. {
  22723. name: "Normal",
  22724. height: math.unit(5, "feet"),
  22725. default: true
  22726. },
  22727. ]
  22728. ))
  22729. characterMakers.push(() => makeCharacter(
  22730. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22731. {
  22732. side: {
  22733. height: math.unit(3, "feet"),
  22734. weight: math.unit(225, "lb"),
  22735. name: "Side",
  22736. image: {
  22737. source: "./media/characters/saian/side.svg",
  22738. extra: 566 / 356,
  22739. bottom: 79.7 / 643
  22740. }
  22741. },
  22742. maw: {
  22743. height: math.unit(2.85, "feet"),
  22744. name: "Maw",
  22745. image: {
  22746. source: "./media/characters/saian/maw.svg"
  22747. }
  22748. },
  22749. },
  22750. [
  22751. {
  22752. name: "Normal",
  22753. height: math.unit(3, "feet"),
  22754. default: true
  22755. },
  22756. ]
  22757. ))
  22758. characterMakers.push(() => makeCharacter(
  22759. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22760. {
  22761. side: {
  22762. height: math.unit(8, "feet"),
  22763. weight: math.unit(300, "lb"),
  22764. name: "Side",
  22765. image: {
  22766. source: "./media/characters/equus-silvermane/side.svg",
  22767. extra: 2176 / 2050,
  22768. bottom: 65.7 / 2245
  22769. }
  22770. },
  22771. front: {
  22772. height: math.unit(8, "feet"),
  22773. weight: math.unit(300, "lb"),
  22774. name: "Front",
  22775. image: {
  22776. source: "./media/characters/equus-silvermane/front.svg",
  22777. extra: 4633 / 4400,
  22778. bottom: 71.3 / 4706.915
  22779. }
  22780. },
  22781. sideStepping: {
  22782. height: math.unit(8, "feet"),
  22783. weight: math.unit(300, "lb"),
  22784. name: "Side (Stepping)",
  22785. image: {
  22786. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22787. extra: 1968 / 1860,
  22788. bottom: 16.4 / 1989
  22789. }
  22790. },
  22791. },
  22792. [
  22793. {
  22794. name: "Normal",
  22795. height: math.unit(8, "feet")
  22796. },
  22797. {
  22798. name: "Minimacro",
  22799. height: math.unit(75, "feet"),
  22800. default: true
  22801. },
  22802. {
  22803. name: "Macro",
  22804. height: math.unit(150, "feet")
  22805. },
  22806. {
  22807. name: "Macro+",
  22808. height: math.unit(1000, "feet")
  22809. },
  22810. {
  22811. name: "Megamacro",
  22812. height: math.unit(1, "mile")
  22813. },
  22814. ]
  22815. ))
  22816. characterMakers.push(() => makeCharacter(
  22817. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22818. {
  22819. side: {
  22820. height: math.unit(20, "feet"),
  22821. weight: math.unit(30000, "kg"),
  22822. name: "Side",
  22823. image: {
  22824. source: "./media/characters/windar/side.svg",
  22825. extra: 1491 / 1248,
  22826. bottom: 82.56 / 1568
  22827. }
  22828. },
  22829. },
  22830. [
  22831. {
  22832. name: "Normal",
  22833. height: math.unit(20, "feet"),
  22834. default: true
  22835. },
  22836. ]
  22837. ))
  22838. characterMakers.push(() => makeCharacter(
  22839. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22840. {
  22841. side: {
  22842. height: math.unit(15.66, "feet"),
  22843. weight: math.unit(150, "lb"),
  22844. name: "Side",
  22845. image: {
  22846. source: "./media/characters/melody/side.svg",
  22847. extra: 1097 / 944,
  22848. bottom: 11.8 / 1109
  22849. }
  22850. },
  22851. sideOutfit: {
  22852. height: math.unit(15.66, "feet"),
  22853. weight: math.unit(150, "lb"),
  22854. name: "Side (Outfit)",
  22855. image: {
  22856. source: "./media/characters/melody/side-outfit.svg",
  22857. extra: 1097 / 944,
  22858. bottom: 11.8 / 1109
  22859. }
  22860. },
  22861. },
  22862. [
  22863. {
  22864. name: "Normal",
  22865. height: math.unit(15.66, "feet"),
  22866. default: true
  22867. },
  22868. ]
  22869. ))
  22870. characterMakers.push(() => makeCharacter(
  22871. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22872. {
  22873. front: {
  22874. height: math.unit(8, "feet"),
  22875. weight: math.unit(325, "lb"),
  22876. name: "Front",
  22877. image: {
  22878. source: "./media/characters/windera/front.svg",
  22879. extra: 3180 / 2845,
  22880. bottom: 178 / 3365
  22881. }
  22882. },
  22883. },
  22884. [
  22885. {
  22886. name: "Normal",
  22887. height: math.unit(8, "feet"),
  22888. default: true
  22889. },
  22890. ]
  22891. ))
  22892. characterMakers.push(() => makeCharacter(
  22893. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22894. {
  22895. front: {
  22896. height: math.unit(28.75, "feet"),
  22897. weight: math.unit(2000, "kg"),
  22898. name: "Front",
  22899. image: {
  22900. source: "./media/characters/sonear/front.svg",
  22901. extra: 1041.1 / 964.9,
  22902. bottom: 53.7 / 1096.6
  22903. }
  22904. },
  22905. },
  22906. [
  22907. {
  22908. name: "Normal",
  22909. height: math.unit(28.75, "feet"),
  22910. default: true
  22911. },
  22912. ]
  22913. ))
  22914. characterMakers.push(() => makeCharacter(
  22915. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22916. {
  22917. side: {
  22918. height: math.unit(25.5, "feet"),
  22919. weight: math.unit(23000, "kg"),
  22920. name: "Side",
  22921. image: {
  22922. source: "./media/characters/kanara/side.svg"
  22923. }
  22924. },
  22925. },
  22926. [
  22927. {
  22928. name: "Normal",
  22929. height: math.unit(25.5, "feet"),
  22930. default: true
  22931. },
  22932. ]
  22933. ))
  22934. characterMakers.push(() => makeCharacter(
  22935. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22936. {
  22937. side: {
  22938. height: math.unit(10, "feet"),
  22939. weight: math.unit(1000, "kg"),
  22940. name: "Side",
  22941. image: {
  22942. source: "./media/characters/ereus/side.svg",
  22943. extra: 1157 / 959,
  22944. bottom: 153 / 1312.5
  22945. }
  22946. },
  22947. },
  22948. [
  22949. {
  22950. name: "Normal",
  22951. height: math.unit(10, "feet"),
  22952. default: true
  22953. },
  22954. ]
  22955. ))
  22956. characterMakers.push(() => makeCharacter(
  22957. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22958. {
  22959. side: {
  22960. height: math.unit(4.5, "feet"),
  22961. weight: math.unit(500, "lb"),
  22962. name: "Side",
  22963. image: {
  22964. source: "./media/characters/e-ter/side.svg",
  22965. extra: 1550 / 1248,
  22966. bottom: 146 / 1694
  22967. }
  22968. },
  22969. },
  22970. [
  22971. {
  22972. name: "Normal",
  22973. height: math.unit(4.5, "feet"),
  22974. default: true
  22975. },
  22976. ]
  22977. ))
  22978. characterMakers.push(() => makeCharacter(
  22979. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22980. {
  22981. side: {
  22982. height: math.unit(9.7, "feet"),
  22983. weight: math.unit(4000, "kg"),
  22984. name: "Side",
  22985. image: {
  22986. source: "./media/characters/yamie/side.svg"
  22987. }
  22988. },
  22989. },
  22990. [
  22991. {
  22992. name: "Normal",
  22993. height: math.unit(9.7, "feet"),
  22994. default: true
  22995. },
  22996. ]
  22997. ))
  22998. characterMakers.push(() => makeCharacter(
  22999. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23000. {
  23001. front: {
  23002. height: math.unit(50, "feet"),
  23003. weight: math.unit(50000, "kg"),
  23004. name: "Front",
  23005. image: {
  23006. source: "./media/characters/anders/front.svg",
  23007. extra: 570 / 539,
  23008. bottom: 14.7 / 586.7
  23009. }
  23010. },
  23011. },
  23012. [
  23013. {
  23014. name: "Large",
  23015. height: math.unit(50, "feet")
  23016. },
  23017. {
  23018. name: "Macro",
  23019. height: math.unit(2000, "feet"),
  23020. default: true
  23021. },
  23022. {
  23023. name: "Megamacro",
  23024. height: math.unit(12, "miles")
  23025. },
  23026. ]
  23027. ))
  23028. characterMakers.push(() => makeCharacter(
  23029. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23030. {
  23031. front: {
  23032. height: math.unit(7 + 2 / 12, "feet"),
  23033. weight: math.unit(300, "lb"),
  23034. name: "Front",
  23035. image: {
  23036. source: "./media/characters/reban/front.svg",
  23037. extra: 1287/1212,
  23038. bottom: 148/1435
  23039. }
  23040. },
  23041. head: {
  23042. height: math.unit(1.95, "feet"),
  23043. name: "Head",
  23044. image: {
  23045. source: "./media/characters/reban/head.svg"
  23046. }
  23047. },
  23048. maw: {
  23049. height: math.unit(0.95, "feet"),
  23050. name: "Maw",
  23051. image: {
  23052. source: "./media/characters/reban/maw.svg"
  23053. }
  23054. },
  23055. foot: {
  23056. height: math.unit(1.65, "feet"),
  23057. name: "Foot",
  23058. image: {
  23059. source: "./media/characters/reban/foot.svg"
  23060. }
  23061. },
  23062. dick: {
  23063. height: math.unit(7 / 5, "feet"),
  23064. name: "Dick",
  23065. image: {
  23066. source: "./media/characters/reban/dick.svg"
  23067. }
  23068. },
  23069. },
  23070. [
  23071. {
  23072. name: "Natural Height",
  23073. height: math.unit(7 + 2 / 12, "feet")
  23074. },
  23075. {
  23076. name: "Macro",
  23077. height: math.unit(500, "feet"),
  23078. default: true
  23079. },
  23080. {
  23081. name: "Canon Height",
  23082. height: math.unit(50, "AU")
  23083. },
  23084. ]
  23085. ))
  23086. characterMakers.push(() => makeCharacter(
  23087. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23088. {
  23089. front: {
  23090. height: math.unit(6, "feet"),
  23091. weight: math.unit(150, "lb"),
  23092. name: "Front",
  23093. image: {
  23094. source: "./media/characters/terrance-keayes/front.svg",
  23095. extra: 1.005,
  23096. bottom: 151 / 1615
  23097. }
  23098. },
  23099. side: {
  23100. height: math.unit(6, "feet"),
  23101. weight: math.unit(150, "lb"),
  23102. name: "Side",
  23103. image: {
  23104. source: "./media/characters/terrance-keayes/side.svg",
  23105. extra: 1.005,
  23106. bottom: 129.4 / 1544
  23107. }
  23108. },
  23109. back: {
  23110. height: math.unit(6, "feet"),
  23111. weight: math.unit(150, "lb"),
  23112. name: "Back",
  23113. image: {
  23114. source: "./media/characters/terrance-keayes/back.svg",
  23115. extra: 1.005,
  23116. bottom: 58.4 / 1557.3
  23117. }
  23118. },
  23119. dick: {
  23120. height: math.unit(6 * 0.208, "feet"),
  23121. name: "Dick",
  23122. image: {
  23123. source: "./media/characters/terrance-keayes/dick.svg"
  23124. }
  23125. },
  23126. },
  23127. [
  23128. {
  23129. name: "Canon Height",
  23130. height: math.unit(35, "miles"),
  23131. default: true
  23132. },
  23133. ]
  23134. ))
  23135. characterMakers.push(() => makeCharacter(
  23136. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23137. {
  23138. front: {
  23139. height: math.unit(6, "feet"),
  23140. weight: math.unit(150, "lb"),
  23141. name: "Front",
  23142. image: {
  23143. source: "./media/characters/ofelia/front.svg",
  23144. extra: 1130/1117,
  23145. bottom: 91/1221
  23146. }
  23147. },
  23148. back: {
  23149. height: math.unit(6, "feet"),
  23150. weight: math.unit(150, "lb"),
  23151. name: "Back",
  23152. image: {
  23153. source: "./media/characters/ofelia/back.svg",
  23154. extra: 1172/1159,
  23155. bottom: 28/1200
  23156. }
  23157. },
  23158. maw: {
  23159. height: math.unit(1, "feet"),
  23160. name: "Maw",
  23161. image: {
  23162. source: "./media/characters/ofelia/maw.svg"
  23163. }
  23164. },
  23165. foot: {
  23166. height: math.unit(1.949, "feet"),
  23167. name: "Foot",
  23168. image: {
  23169. source: "./media/characters/ofelia/foot.svg"
  23170. }
  23171. },
  23172. },
  23173. [
  23174. {
  23175. name: "Canon Height",
  23176. height: math.unit(2000, "miles"),
  23177. default: true
  23178. },
  23179. ]
  23180. ))
  23181. characterMakers.push(() => makeCharacter(
  23182. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23183. {
  23184. front: {
  23185. height: math.unit(6, "feet"),
  23186. weight: math.unit(150, "lb"),
  23187. name: "Front",
  23188. image: {
  23189. source: "./media/characters/samuel/front.svg",
  23190. extra: 265 / 258,
  23191. bottom: 2 / 266.1566
  23192. }
  23193. },
  23194. },
  23195. [
  23196. {
  23197. name: "Macro",
  23198. height: math.unit(100, "feet"),
  23199. default: true
  23200. },
  23201. {
  23202. name: "Full Size",
  23203. height: math.unit(1000, "miles")
  23204. },
  23205. ]
  23206. ))
  23207. characterMakers.push(() => makeCharacter(
  23208. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23209. {
  23210. front: {
  23211. height: math.unit(6, "feet"),
  23212. weight: math.unit(300, "lb"),
  23213. name: "Front",
  23214. image: {
  23215. source: "./media/characters/beishir-kiel/front.svg",
  23216. extra: 569 / 547,
  23217. bottom: 41.9 / 609
  23218. }
  23219. },
  23220. maw: {
  23221. height: math.unit(6 * 0.202, "feet"),
  23222. name: "Maw",
  23223. image: {
  23224. source: "./media/characters/beishir-kiel/maw.svg"
  23225. }
  23226. },
  23227. },
  23228. [
  23229. {
  23230. name: "Macro",
  23231. height: math.unit(300, "feet"),
  23232. default: true
  23233. },
  23234. ]
  23235. ))
  23236. characterMakers.push(() => makeCharacter(
  23237. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23238. {
  23239. front: {
  23240. height: math.unit(5 + 7/12, "feet"),
  23241. weight: math.unit(120, "lb"),
  23242. name: "Front",
  23243. image: {
  23244. source: "./media/characters/logan-grey/front.svg",
  23245. extra: 1836/1738,
  23246. bottom: 108/1944
  23247. }
  23248. },
  23249. back: {
  23250. height: math.unit(5 + 7/12, "feet"),
  23251. weight: math.unit(120, "lb"),
  23252. name: "Back",
  23253. image: {
  23254. source: "./media/characters/logan-grey/back.svg",
  23255. extra: 1880/1794,
  23256. bottom: 24/1904
  23257. }
  23258. },
  23259. frontSfw: {
  23260. height: math.unit(5 + 7/12, "feet"),
  23261. weight: math.unit(120, "lb"),
  23262. name: "Front (SFW)",
  23263. image: {
  23264. source: "./media/characters/logan-grey/front-sfw.svg",
  23265. extra: 1836/1738,
  23266. bottom: 108/1944
  23267. }
  23268. },
  23269. backSfw: {
  23270. height: math.unit(5 + 7/12, "feet"),
  23271. weight: math.unit(120, "lb"),
  23272. name: "Back (SFW)",
  23273. image: {
  23274. source: "./media/characters/logan-grey/back-sfw.svg",
  23275. extra: 1880/1794,
  23276. bottom: 24/1904
  23277. }
  23278. },
  23279. hands: {
  23280. height: math.unit(0.84, "feet"),
  23281. name: "Hands",
  23282. image: {
  23283. source: "./media/characters/logan-grey/hands.svg"
  23284. }
  23285. },
  23286. paws: {
  23287. height: math.unit(0.72, "feet"),
  23288. name: "Paws",
  23289. image: {
  23290. source: "./media/characters/logan-grey/paws.svg"
  23291. }
  23292. },
  23293. cock: {
  23294. height: math.unit(1.45, "feet"),
  23295. name: "Cock",
  23296. image: {
  23297. source: "./media/characters/logan-grey/cock.svg"
  23298. }
  23299. },
  23300. cockAlt: {
  23301. height: math.unit(1.437, "feet"),
  23302. name: "Cock (alt)",
  23303. image: {
  23304. source: "./media/characters/logan-grey/cock-alt.svg"
  23305. }
  23306. },
  23307. },
  23308. [
  23309. {
  23310. name: "Normal",
  23311. height: math.unit(5 + 8 / 12, "feet")
  23312. },
  23313. {
  23314. name: "The 500 Foot Femboy",
  23315. height: math.unit(500, "feet"),
  23316. default: true
  23317. },
  23318. {
  23319. name: "Megmacro",
  23320. height: math.unit(20, "miles")
  23321. },
  23322. ]
  23323. ))
  23324. characterMakers.push(() => makeCharacter(
  23325. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23326. {
  23327. front: {
  23328. height: math.unit(8 + 2 / 12, "feet"),
  23329. weight: math.unit(275, "lb"),
  23330. name: "Front",
  23331. image: {
  23332. source: "./media/characters/draganta/front.svg",
  23333. extra: 1177 / 1135,
  23334. bottom: 33.46 / 1212.1
  23335. }
  23336. },
  23337. },
  23338. [
  23339. {
  23340. name: "Normal",
  23341. height: math.unit(8 + 6 / 12, "feet"),
  23342. default: true
  23343. },
  23344. {
  23345. name: "Macro",
  23346. height: math.unit(150, "feet")
  23347. },
  23348. {
  23349. name: "Megamacro",
  23350. height: math.unit(1000, "miles")
  23351. },
  23352. ]
  23353. ))
  23354. characterMakers.push(() => makeCharacter(
  23355. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23356. {
  23357. front: {
  23358. height: math.unit(1.72, "m"),
  23359. weight: math.unit(80, "lb"),
  23360. name: "Front",
  23361. image: {
  23362. source: "./media/characters/voski/front.svg",
  23363. extra: 2076.22 / 2022.4,
  23364. bottom: 102.7 / 2177.3866
  23365. }
  23366. },
  23367. frontFlaccid: {
  23368. height: math.unit(1.72, "m"),
  23369. weight: math.unit(80, "lb"),
  23370. name: "Front (Flaccid)",
  23371. image: {
  23372. source: "./media/characters/voski/front-flaccid.svg",
  23373. extra: 2076.22 / 2022.4,
  23374. bottom: 102.7 / 2177.3866
  23375. }
  23376. },
  23377. frontErect: {
  23378. height: math.unit(1.72, "m"),
  23379. weight: math.unit(80, "lb"),
  23380. name: "Front (Erect)",
  23381. image: {
  23382. source: "./media/characters/voski/front-erect.svg",
  23383. extra: 2076.22 / 2022.4,
  23384. bottom: 102.7 / 2177.3866
  23385. }
  23386. },
  23387. back: {
  23388. height: math.unit(1.72, "m"),
  23389. weight: math.unit(80, "lb"),
  23390. name: "Back",
  23391. image: {
  23392. source: "./media/characters/voski/back.svg",
  23393. extra: 2104 / 2051,
  23394. bottom: 10.45 / 2113.63
  23395. }
  23396. },
  23397. },
  23398. [
  23399. {
  23400. name: "Normal",
  23401. height: math.unit(1.72, "m")
  23402. },
  23403. {
  23404. name: "Macro",
  23405. height: math.unit(55, "m"),
  23406. default: true
  23407. },
  23408. {
  23409. name: "Macro+",
  23410. height: math.unit(300, "m")
  23411. },
  23412. {
  23413. name: "Macro++",
  23414. height: math.unit(700, "m")
  23415. },
  23416. {
  23417. name: "Macro+++",
  23418. height: math.unit(4500, "m")
  23419. },
  23420. {
  23421. name: "Macro++++",
  23422. height: math.unit(45, "km")
  23423. },
  23424. {
  23425. name: "Macro+++++",
  23426. height: math.unit(1220, "km")
  23427. },
  23428. ]
  23429. ))
  23430. characterMakers.push(() => makeCharacter(
  23431. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23432. {
  23433. front: {
  23434. height: math.unit(2.3, "m"),
  23435. weight: math.unit(304, "kg"),
  23436. name: "Front",
  23437. image: {
  23438. source: "./media/characters/icowom-lee/front.svg",
  23439. extra: 985 / 955,
  23440. bottom: 25.4 / 1012
  23441. }
  23442. },
  23443. fronttentacles: {
  23444. height: math.unit(2.3, "m"),
  23445. weight: math.unit(304, "kg"),
  23446. name: "Front-tentacles",
  23447. image: {
  23448. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23449. extra: 985 / 955,
  23450. bottom: 25.4 / 1012
  23451. }
  23452. },
  23453. back: {
  23454. height: math.unit(2.3, "m"),
  23455. weight: math.unit(304, "kg"),
  23456. name: "Back",
  23457. image: {
  23458. source: "./media/characters/icowom-lee/back.svg",
  23459. extra: 975 / 954,
  23460. bottom: 9.5 / 985
  23461. }
  23462. },
  23463. backtentacles: {
  23464. height: math.unit(2.3, "m"),
  23465. weight: math.unit(304, "kg"),
  23466. name: "Back-tentacles",
  23467. image: {
  23468. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23469. extra: 975 / 954,
  23470. bottom: 9.5 / 985
  23471. }
  23472. },
  23473. frontDressed: {
  23474. height: math.unit(2.3, "m"),
  23475. weight: math.unit(304, "kg"),
  23476. name: "Front (Dressed)",
  23477. image: {
  23478. source: "./media/characters/icowom-lee/front-dressed.svg",
  23479. extra: 3076 / 2933,
  23480. bottom: 51.4 / 3125.1889
  23481. }
  23482. },
  23483. rump: {
  23484. height: math.unit(0.776, "meters"),
  23485. name: "Rump",
  23486. image: {
  23487. source: "./media/characters/icowom-lee/rump.svg"
  23488. }
  23489. },
  23490. genitals: {
  23491. height: math.unit(0.78, "meters"),
  23492. name: "Genitals",
  23493. image: {
  23494. source: "./media/characters/icowom-lee/genitals.svg"
  23495. }
  23496. },
  23497. },
  23498. [
  23499. {
  23500. name: "Normal",
  23501. height: math.unit(2.3, "meters"),
  23502. default: true
  23503. },
  23504. {
  23505. name: "Macro",
  23506. height: math.unit(94, "meters"),
  23507. default: true
  23508. },
  23509. ]
  23510. ))
  23511. characterMakers.push(() => makeCharacter(
  23512. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23513. {
  23514. front: {
  23515. height: math.unit(22, "meters"),
  23516. weight: math.unit(21000, "kg"),
  23517. name: "Front",
  23518. image: {
  23519. source: "./media/characters/shock-diamond/front.svg",
  23520. extra: 2204 / 2053,
  23521. bottom: 65 / 2239.47
  23522. }
  23523. },
  23524. frontNude: {
  23525. height: math.unit(22, "meters"),
  23526. weight: math.unit(21000, "kg"),
  23527. name: "Front (Nude)",
  23528. image: {
  23529. source: "./media/characters/shock-diamond/front-nude.svg",
  23530. extra: 2514 / 2285,
  23531. bottom: 13 / 2527.56
  23532. }
  23533. },
  23534. },
  23535. [
  23536. {
  23537. name: "Normal",
  23538. height: math.unit(3, "meters")
  23539. },
  23540. {
  23541. name: "Macro",
  23542. height: math.unit(22, "meters"),
  23543. default: true
  23544. },
  23545. ]
  23546. ))
  23547. characterMakers.push(() => makeCharacter(
  23548. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23549. {
  23550. front: {
  23551. height: math.unit(5 + 4 / 12, "feet"),
  23552. weight: math.unit(120, "lb"),
  23553. name: "Front",
  23554. image: {
  23555. source: "./media/characters/rory/front.svg",
  23556. extra: 1318/1241,
  23557. bottom: 42/1360
  23558. }
  23559. },
  23560. back: {
  23561. height: math.unit(5 + 4 / 12, "feet"),
  23562. weight: math.unit(120, "lb"),
  23563. name: "Back",
  23564. image: {
  23565. source: "./media/characters/rory/back.svg",
  23566. extra: 1318/1241,
  23567. bottom: 42/1360
  23568. }
  23569. },
  23570. butt: {
  23571. height: math.unit(1.74, "feet"),
  23572. name: "Butt",
  23573. image: {
  23574. source: "./media/characters/rory/butt.svg"
  23575. }
  23576. },
  23577. dick: {
  23578. height: math.unit(1.02, "feet"),
  23579. name: "Dick",
  23580. image: {
  23581. source: "./media/characters/rory/dick.svg"
  23582. }
  23583. },
  23584. paws: {
  23585. height: math.unit(1, "feet"),
  23586. name: "Paws",
  23587. image: {
  23588. source: "./media/characters/rory/paws.svg"
  23589. }
  23590. },
  23591. frontAlt: {
  23592. height: math.unit(5 + 4 / 12, "feet"),
  23593. weight: math.unit(120, "lb"),
  23594. name: "Front (Alt)",
  23595. image: {
  23596. source: "./media/characters/rory/front-alt.svg",
  23597. extra: 589 / 556,
  23598. bottom: 45.7 / 635.76
  23599. }
  23600. },
  23601. frontAltNude: {
  23602. height: math.unit(5 + 4 / 12, "feet"),
  23603. weight: math.unit(120, "lb"),
  23604. name: "Front (Alt, Nude)",
  23605. image: {
  23606. source: "./media/characters/rory/front-alt-nude.svg",
  23607. extra: 589 / 556,
  23608. bottom: 45.7 / 635.76
  23609. }
  23610. },
  23611. side: {
  23612. height: math.unit(5 + 4 / 12, "feet"),
  23613. weight: math.unit(120, "lb"),
  23614. name: "Side",
  23615. image: {
  23616. source: "./media/characters/rory/side.svg",
  23617. extra: 597 / 564,
  23618. bottom: 55 / 653
  23619. }
  23620. },
  23621. backAlt: {
  23622. height: math.unit(5 + 4 / 12, "feet"),
  23623. weight: math.unit(120, "lb"),
  23624. name: "Back (Alt)",
  23625. image: {
  23626. source: "./media/characters/rory/back-alt.svg",
  23627. extra: 620 / 585,
  23628. bottom: 8.86 / 630.43
  23629. }
  23630. },
  23631. dickAlt: {
  23632. height: math.unit(0.86, "feet"),
  23633. name: "Dick (Alt)",
  23634. image: {
  23635. source: "./media/characters/rory/dick-alt.svg"
  23636. }
  23637. },
  23638. },
  23639. [
  23640. {
  23641. name: "Normal",
  23642. height: math.unit(5 + 4 / 12, "feet"),
  23643. default: true
  23644. },
  23645. {
  23646. name: "Macro",
  23647. height: math.unit(100, "feet")
  23648. },
  23649. {
  23650. name: "Macro+",
  23651. height: math.unit(140, "feet")
  23652. },
  23653. {
  23654. name: "Macro++",
  23655. height: math.unit(300, "feet")
  23656. },
  23657. ]
  23658. ))
  23659. characterMakers.push(() => makeCharacter(
  23660. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23661. {
  23662. front: {
  23663. height: math.unit(5 + 9 / 12, "feet"),
  23664. weight: math.unit(190, "lb"),
  23665. name: "Front",
  23666. image: {
  23667. source: "./media/characters/sprisk/front.svg",
  23668. extra: 1225 / 1180,
  23669. bottom: 42.7 / 1266.4
  23670. }
  23671. },
  23672. frontNsfw: {
  23673. height: math.unit(5 + 9 / 12, "feet"),
  23674. weight: math.unit(190, "lb"),
  23675. name: "Front (NSFW)",
  23676. image: {
  23677. source: "./media/characters/sprisk/front-nsfw.svg",
  23678. extra: 1225 / 1180,
  23679. bottom: 42.7 / 1266.4
  23680. }
  23681. },
  23682. back: {
  23683. height: math.unit(5 + 9 / 12, "feet"),
  23684. weight: math.unit(190, "lb"),
  23685. name: "Back",
  23686. image: {
  23687. source: "./media/characters/sprisk/back.svg",
  23688. extra: 1247 / 1200,
  23689. bottom: 5.6 / 1253.04
  23690. }
  23691. },
  23692. },
  23693. [
  23694. {
  23695. name: "Tiny",
  23696. height: math.unit(2, "inches")
  23697. },
  23698. {
  23699. name: "Normal",
  23700. height: math.unit(5 + 9 / 12, "feet"),
  23701. default: true
  23702. },
  23703. {
  23704. name: "Mini Macro",
  23705. height: math.unit(18, "feet")
  23706. },
  23707. {
  23708. name: "Macro",
  23709. height: math.unit(100, "feet")
  23710. },
  23711. {
  23712. name: "MACRO",
  23713. height: math.unit(50, "miles")
  23714. },
  23715. {
  23716. name: "M A C R O",
  23717. height: math.unit(300, "miles")
  23718. },
  23719. ]
  23720. ))
  23721. characterMakers.push(() => makeCharacter(
  23722. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23723. {
  23724. side: {
  23725. height: math.unit(15.6, "meters"),
  23726. weight: math.unit(700000, "kg"),
  23727. name: "Side",
  23728. image: {
  23729. source: "./media/characters/bunsen/side.svg",
  23730. extra: 1644 / 358
  23731. }
  23732. },
  23733. foot: {
  23734. height: math.unit(1.611 * 1644 / 358, "meter"),
  23735. name: "Foot",
  23736. image: {
  23737. source: "./media/characters/bunsen/foot.svg"
  23738. }
  23739. },
  23740. },
  23741. [
  23742. {
  23743. name: "Small",
  23744. height: math.unit(10, "feet")
  23745. },
  23746. {
  23747. name: "Normal",
  23748. height: math.unit(15.6, "meters"),
  23749. default: true
  23750. },
  23751. ]
  23752. ))
  23753. characterMakers.push(() => makeCharacter(
  23754. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23755. {
  23756. front: {
  23757. height: math.unit(4 + 11 / 12, "feet"),
  23758. weight: math.unit(140, "lb"),
  23759. name: "Front",
  23760. image: {
  23761. source: "./media/characters/sesh/front.svg",
  23762. extra: 3420 / 3231,
  23763. bottom: 72 / 3949.5
  23764. }
  23765. },
  23766. },
  23767. [
  23768. {
  23769. name: "Normal",
  23770. height: math.unit(4 + 11 / 12, "feet")
  23771. },
  23772. {
  23773. name: "Grown",
  23774. height: math.unit(15, "feet"),
  23775. default: true
  23776. },
  23777. {
  23778. name: "Macro",
  23779. height: math.unit(1500, "feet")
  23780. },
  23781. {
  23782. name: "Megamacro",
  23783. height: math.unit(30, "miles")
  23784. },
  23785. {
  23786. name: "Continental",
  23787. height: math.unit(3000, "miles")
  23788. },
  23789. {
  23790. name: "Gravity Mass",
  23791. height: math.unit(300000, "miles")
  23792. },
  23793. {
  23794. name: "Planet Buster",
  23795. height: math.unit(30000000, "miles")
  23796. },
  23797. {
  23798. name: "Big",
  23799. height: math.unit(3000000000, "miles")
  23800. },
  23801. ]
  23802. ))
  23803. characterMakers.push(() => makeCharacter(
  23804. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23805. {
  23806. front: {
  23807. height: math.unit(9, "feet"),
  23808. weight: math.unit(350, "lb"),
  23809. name: "Front",
  23810. image: {
  23811. source: "./media/characters/pepper/front.svg",
  23812. extra: 1448 / 1312,
  23813. bottom: 9.4 / 1457.88
  23814. }
  23815. },
  23816. back: {
  23817. height: math.unit(9, "feet"),
  23818. weight: math.unit(350, "lb"),
  23819. name: "Back",
  23820. image: {
  23821. source: "./media/characters/pepper/back.svg",
  23822. extra: 1423 / 1300,
  23823. bottom: 4.6 / 1429
  23824. }
  23825. },
  23826. maw: {
  23827. height: math.unit(0.932, "feet"),
  23828. name: "Maw",
  23829. image: {
  23830. source: "./media/characters/pepper/maw.svg"
  23831. }
  23832. },
  23833. },
  23834. [
  23835. {
  23836. name: "Normal",
  23837. height: math.unit(9, "feet"),
  23838. default: true
  23839. },
  23840. ]
  23841. ))
  23842. characterMakers.push(() => makeCharacter(
  23843. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23844. {
  23845. front: {
  23846. height: math.unit(6, "feet"),
  23847. weight: math.unit(150, "lb"),
  23848. name: "Front",
  23849. image: {
  23850. source: "./media/characters/maelstrom/front.svg",
  23851. extra: 2100 / 1883,
  23852. bottom: 94 / 2196.7
  23853. }
  23854. },
  23855. },
  23856. [
  23857. {
  23858. name: "Less Kaiju",
  23859. height: math.unit(200, "feet")
  23860. },
  23861. {
  23862. name: "Kaiju",
  23863. height: math.unit(400, "feet"),
  23864. default: true
  23865. },
  23866. {
  23867. name: "Kaiju-er",
  23868. height: math.unit(600, "feet")
  23869. },
  23870. ]
  23871. ))
  23872. characterMakers.push(() => makeCharacter(
  23873. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23874. {
  23875. front: {
  23876. height: math.unit(6 + 5 / 12, "feet"),
  23877. weight: math.unit(180, "lb"),
  23878. name: "Front",
  23879. image: {
  23880. source: "./media/characters/lexir/front.svg",
  23881. extra: 180 / 172,
  23882. bottom: 12 / 192
  23883. }
  23884. },
  23885. back: {
  23886. height: math.unit(6 + 5 / 12, "feet"),
  23887. weight: math.unit(180, "lb"),
  23888. name: "Back",
  23889. image: {
  23890. source: "./media/characters/lexir/back.svg",
  23891. extra: 1273/1201,
  23892. bottom: 39/1312
  23893. }
  23894. },
  23895. },
  23896. [
  23897. {
  23898. name: "Very Smal",
  23899. height: math.unit(1, "nm")
  23900. },
  23901. {
  23902. name: "Normal",
  23903. height: math.unit(6 + 5 / 12, "feet"),
  23904. default: true
  23905. },
  23906. {
  23907. name: "Macro",
  23908. height: math.unit(1, "mile")
  23909. },
  23910. {
  23911. name: "Megamacro",
  23912. height: math.unit(50, "miles")
  23913. },
  23914. ]
  23915. ))
  23916. characterMakers.push(() => makeCharacter(
  23917. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23918. {
  23919. front: {
  23920. height: math.unit(1.5, "meters"),
  23921. weight: math.unit(100, "lb"),
  23922. name: "Front",
  23923. image: {
  23924. source: "./media/characters/maksio/front.svg",
  23925. extra: 1549 / 1531,
  23926. bottom: 123.7 / 1674.5429
  23927. }
  23928. },
  23929. back: {
  23930. height: math.unit(1.5, "meters"),
  23931. weight: math.unit(100, "lb"),
  23932. name: "Back",
  23933. image: {
  23934. source: "./media/characters/maksio/back.svg",
  23935. extra: 1541 / 1509,
  23936. bottom: 97 / 1639
  23937. }
  23938. },
  23939. hand: {
  23940. height: math.unit(0.621, "feet"),
  23941. name: "Hand",
  23942. image: {
  23943. source: "./media/characters/maksio/hand.svg"
  23944. }
  23945. },
  23946. foot: {
  23947. height: math.unit(1.611, "feet"),
  23948. name: "Foot",
  23949. image: {
  23950. source: "./media/characters/maksio/foot.svg"
  23951. }
  23952. },
  23953. },
  23954. [
  23955. {
  23956. name: "Shrunken",
  23957. height: math.unit(10, "cm")
  23958. },
  23959. {
  23960. name: "Normal",
  23961. height: math.unit(150, "cm"),
  23962. default: true
  23963. },
  23964. ]
  23965. ))
  23966. characterMakers.push(() => makeCharacter(
  23967. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23968. {
  23969. front: {
  23970. height: math.unit(100, "feet"),
  23971. name: "Front",
  23972. image: {
  23973. source: "./media/characters/erza-bear/front.svg",
  23974. extra: 2449 / 2390,
  23975. bottom: 46 / 2494
  23976. }
  23977. },
  23978. back: {
  23979. height: math.unit(100, "feet"),
  23980. name: "Back",
  23981. image: {
  23982. source: "./media/characters/erza-bear/back.svg",
  23983. extra: 2489 / 2430,
  23984. bottom: 85.4 / 2480
  23985. }
  23986. },
  23987. tail: {
  23988. height: math.unit(42, "feet"),
  23989. name: "Tail",
  23990. image: {
  23991. source: "./media/characters/erza-bear/tail.svg"
  23992. }
  23993. },
  23994. tongue: {
  23995. height: math.unit(8, "feet"),
  23996. name: "Tongue",
  23997. image: {
  23998. source: "./media/characters/erza-bear/tongue.svg"
  23999. }
  24000. },
  24001. dick: {
  24002. height: math.unit(10.5, "feet"),
  24003. name: "Dick",
  24004. image: {
  24005. source: "./media/characters/erza-bear/dick.svg"
  24006. }
  24007. },
  24008. dickVertical: {
  24009. height: math.unit(16.9, "feet"),
  24010. name: "Dick (Vertical)",
  24011. image: {
  24012. source: "./media/characters/erza-bear/dick-vertical.svg"
  24013. }
  24014. },
  24015. },
  24016. [
  24017. {
  24018. name: "Macro",
  24019. height: math.unit(100, "feet"),
  24020. default: true
  24021. },
  24022. ]
  24023. ))
  24024. characterMakers.push(() => makeCharacter(
  24025. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24026. {
  24027. front: {
  24028. height: math.unit(172, "cm"),
  24029. weight: math.unit(73, "kg"),
  24030. name: "Front",
  24031. image: {
  24032. source: "./media/characters/violet-flor/front.svg",
  24033. extra: 1530 / 1442,
  24034. bottom: 61.9 / 1588.8
  24035. }
  24036. },
  24037. back: {
  24038. height: math.unit(180, "cm"),
  24039. weight: math.unit(73, "kg"),
  24040. name: "Back",
  24041. image: {
  24042. source: "./media/characters/violet-flor/back.svg",
  24043. extra: 1692 / 1630,
  24044. bottom: 20 / 1712
  24045. }
  24046. },
  24047. },
  24048. [
  24049. {
  24050. name: "Normal",
  24051. height: math.unit(172, "cm"),
  24052. default: true
  24053. },
  24054. ]
  24055. ))
  24056. characterMakers.push(() => makeCharacter(
  24057. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24058. {
  24059. front: {
  24060. height: math.unit(6, "feet"),
  24061. weight: math.unit(220, "lb"),
  24062. name: "Front",
  24063. image: {
  24064. source: "./media/characters/lynn-rhea/front.svg",
  24065. extra: 310 / 273
  24066. }
  24067. },
  24068. back: {
  24069. height: math.unit(6, "feet"),
  24070. weight: math.unit(220, "lb"),
  24071. name: "Back",
  24072. image: {
  24073. source: "./media/characters/lynn-rhea/back.svg",
  24074. extra: 310 / 273
  24075. }
  24076. },
  24077. dicks: {
  24078. height: math.unit(0.9, "feet"),
  24079. name: "Dicks",
  24080. image: {
  24081. source: "./media/characters/lynn-rhea/dicks.svg"
  24082. }
  24083. },
  24084. slit: {
  24085. height: math.unit(0.4, "feet"),
  24086. name: "Slit",
  24087. image: {
  24088. source: "./media/characters/lynn-rhea/slit.svg"
  24089. }
  24090. },
  24091. },
  24092. [
  24093. {
  24094. name: "Micro",
  24095. height: math.unit(1, "inch")
  24096. },
  24097. {
  24098. name: "Macro",
  24099. height: math.unit(60, "feet"),
  24100. default: true
  24101. },
  24102. {
  24103. name: "Megamacro",
  24104. height: math.unit(2, "miles")
  24105. },
  24106. {
  24107. name: "Gigamacro",
  24108. height: math.unit(3, "earths")
  24109. },
  24110. {
  24111. name: "Galactic",
  24112. height: math.unit(0.8, "galaxies")
  24113. },
  24114. ]
  24115. ))
  24116. characterMakers.push(() => makeCharacter(
  24117. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24118. {
  24119. front: {
  24120. height: math.unit(1600, "feet"),
  24121. weight: math.unit(85758785169, "kg"),
  24122. name: "Front",
  24123. image: {
  24124. source: "./media/characters/valathos/front.svg",
  24125. extra: 1451 / 1339
  24126. }
  24127. },
  24128. },
  24129. [
  24130. {
  24131. name: "Macro",
  24132. height: math.unit(1600, "feet"),
  24133. default: true
  24134. },
  24135. ]
  24136. ))
  24137. characterMakers.push(() => makeCharacter(
  24138. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24139. {
  24140. front: {
  24141. height: math.unit(7 + 5 / 12, "feet"),
  24142. weight: math.unit(300, "lb"),
  24143. name: "Front",
  24144. image: {
  24145. source: "./media/characters/azula/front.svg",
  24146. extra: 3208 / 2880,
  24147. bottom: 80.2 / 3277
  24148. }
  24149. },
  24150. back: {
  24151. height: math.unit(7 + 5 / 12, "feet"),
  24152. weight: math.unit(300, "lb"),
  24153. name: "Back",
  24154. image: {
  24155. source: "./media/characters/azula/back.svg",
  24156. extra: 3169 / 2822,
  24157. bottom: 150.6 / 3321
  24158. }
  24159. },
  24160. },
  24161. [
  24162. {
  24163. name: "Normal",
  24164. height: math.unit(7 + 5 / 12, "feet"),
  24165. default: true
  24166. },
  24167. {
  24168. name: "Big",
  24169. height: math.unit(20, "feet")
  24170. },
  24171. ]
  24172. ))
  24173. characterMakers.push(() => makeCharacter(
  24174. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24175. {
  24176. front: {
  24177. height: math.unit(5 + 1 / 12, "feet"),
  24178. weight: math.unit(110, "lb"),
  24179. name: "Front",
  24180. image: {
  24181. source: "./media/characters/rupert/front.svg",
  24182. extra: 1549 / 1495,
  24183. bottom: 54.2 / 1604.4
  24184. }
  24185. },
  24186. },
  24187. [
  24188. {
  24189. name: "Normal",
  24190. height: math.unit(5 + 1 / 12, "feet"),
  24191. default: true
  24192. },
  24193. ]
  24194. ))
  24195. characterMakers.push(() => makeCharacter(
  24196. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24197. {
  24198. front: {
  24199. height: math.unit(8 + 4 / 12, "feet"),
  24200. weight: math.unit(350, "lb"),
  24201. name: "Front",
  24202. image: {
  24203. source: "./media/characters/sheera-castellar/front.svg",
  24204. extra: 1957 / 1894,
  24205. bottom: 26.97 / 1975.017
  24206. }
  24207. },
  24208. side: {
  24209. height: math.unit(8 + 4 / 12, "feet"),
  24210. weight: math.unit(350, "lb"),
  24211. name: "Side",
  24212. image: {
  24213. source: "./media/characters/sheera-castellar/side.svg",
  24214. extra: 1957 / 1894
  24215. }
  24216. },
  24217. back: {
  24218. height: math.unit(8 + 4 / 12, "feet"),
  24219. weight: math.unit(350, "lb"),
  24220. name: "Back",
  24221. image: {
  24222. source: "./media/characters/sheera-castellar/back.svg",
  24223. extra: 1957 / 1894
  24224. }
  24225. },
  24226. angled: {
  24227. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24228. weight: math.unit(350, "lb"),
  24229. name: "Angled",
  24230. image: {
  24231. source: "./media/characters/sheera-castellar/angled.svg",
  24232. extra: 1807 / 1707,
  24233. bottom: 68 / 1875
  24234. }
  24235. },
  24236. genitals: {
  24237. height: math.unit(2.2, "feet"),
  24238. name: "Genitals",
  24239. image: {
  24240. source: "./media/characters/sheera-castellar/genitals.svg"
  24241. }
  24242. },
  24243. taur: {
  24244. height: math.unit(10 + 6/12, "feet"),
  24245. name: "Taur",
  24246. image: {
  24247. source: "./media/characters/sheera-castellar/taur.svg",
  24248. extra: 2017/1909,
  24249. bottom: 185/2202
  24250. }
  24251. },
  24252. },
  24253. [
  24254. {
  24255. name: "Normal",
  24256. height: math.unit(8 + 4 / 12, "feet")
  24257. },
  24258. {
  24259. name: "Macro",
  24260. height: math.unit(150, "feet"),
  24261. default: true
  24262. },
  24263. {
  24264. name: "Macro+",
  24265. height: math.unit(800, "feet")
  24266. },
  24267. ]
  24268. ))
  24269. characterMakers.push(() => makeCharacter(
  24270. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24271. {
  24272. front: {
  24273. height: math.unit(6, "feet"),
  24274. weight: math.unit(150, "lb"),
  24275. name: "Front",
  24276. image: {
  24277. source: "./media/characters/jaipur/front.svg",
  24278. extra: 3860 / 3731,
  24279. bottom: 287 / 4140
  24280. }
  24281. },
  24282. back: {
  24283. height: math.unit(6, "feet"),
  24284. weight: math.unit(150, "lb"),
  24285. name: "Back",
  24286. image: {
  24287. source: "./media/characters/jaipur/back.svg",
  24288. extra: 1637/1561,
  24289. bottom: 154/1791
  24290. }
  24291. },
  24292. },
  24293. [
  24294. {
  24295. name: "Normal",
  24296. height: math.unit(1.85, "meters"),
  24297. default: true
  24298. },
  24299. {
  24300. name: "Macro",
  24301. height: math.unit(150, "meters")
  24302. },
  24303. {
  24304. name: "Macro+",
  24305. height: math.unit(0.5, "miles")
  24306. },
  24307. {
  24308. name: "Macro++",
  24309. height: math.unit(2.5, "miles")
  24310. },
  24311. {
  24312. name: "Macro+++",
  24313. height: math.unit(12, "miles")
  24314. },
  24315. {
  24316. name: "Macro++++",
  24317. height: math.unit(120, "miles")
  24318. },
  24319. {
  24320. name: "Macro+++++",
  24321. height: math.unit(1200, "miles")
  24322. },
  24323. ]
  24324. ))
  24325. characterMakers.push(() => makeCharacter(
  24326. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24327. {
  24328. front: {
  24329. height: math.unit(6, "feet"),
  24330. weight: math.unit(150, "lb"),
  24331. name: "Front",
  24332. image: {
  24333. source: "./media/characters/sheila-wolf/front.svg",
  24334. extra: 1931 / 1808,
  24335. bottom: 29.5 / 1960
  24336. }
  24337. },
  24338. dick: {
  24339. height: math.unit(1.464, "feet"),
  24340. name: "Dick",
  24341. image: {
  24342. source: "./media/characters/sheila-wolf/dick.svg"
  24343. }
  24344. },
  24345. muzzle: {
  24346. height: math.unit(0.513, "feet"),
  24347. name: "Muzzle",
  24348. image: {
  24349. source: "./media/characters/sheila-wolf/muzzle.svg"
  24350. }
  24351. },
  24352. },
  24353. [
  24354. {
  24355. name: "Macro",
  24356. height: math.unit(70, "feet"),
  24357. default: true
  24358. },
  24359. ]
  24360. ))
  24361. characterMakers.push(() => makeCharacter(
  24362. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24363. {
  24364. front: {
  24365. height: math.unit(32, "meters"),
  24366. weight: math.unit(300000, "kg"),
  24367. name: "Front",
  24368. image: {
  24369. source: "./media/characters/almor/front.svg",
  24370. extra: 1408 / 1322,
  24371. bottom: 94.6 / 1506.5
  24372. }
  24373. },
  24374. },
  24375. [
  24376. {
  24377. name: "Macro",
  24378. height: math.unit(32, "meters"),
  24379. default: true
  24380. },
  24381. ]
  24382. ))
  24383. characterMakers.push(() => makeCharacter(
  24384. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24385. {
  24386. front: {
  24387. height: math.unit(7, "feet"),
  24388. weight: math.unit(200, "lb"),
  24389. name: "Front",
  24390. image: {
  24391. source: "./media/characters/silver/front.svg",
  24392. extra: 472.1 / 450.5,
  24393. bottom: 26.5 / 499.424
  24394. }
  24395. },
  24396. },
  24397. [
  24398. {
  24399. name: "Normal",
  24400. height: math.unit(7, "feet"),
  24401. default: true
  24402. },
  24403. {
  24404. name: "Macro",
  24405. height: math.unit(800, "feet")
  24406. },
  24407. {
  24408. name: "Megamacro",
  24409. height: math.unit(250, "miles")
  24410. },
  24411. ]
  24412. ))
  24413. characterMakers.push(() => makeCharacter(
  24414. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24415. {
  24416. front: {
  24417. height: math.unit(6, "feet"),
  24418. weight: math.unit(150, "lb"),
  24419. name: "Front",
  24420. image: {
  24421. source: "./media/characters/pliskin/front.svg",
  24422. extra: 1469 / 1359,
  24423. bottom: 70 / 1540
  24424. }
  24425. },
  24426. },
  24427. [
  24428. {
  24429. name: "Micro",
  24430. height: math.unit(3, "inches")
  24431. },
  24432. {
  24433. name: "Normal",
  24434. height: math.unit(5 + 11 / 12, "feet"),
  24435. default: true
  24436. },
  24437. {
  24438. name: "Macro",
  24439. height: math.unit(120, "feet")
  24440. },
  24441. ]
  24442. ))
  24443. characterMakers.push(() => makeCharacter(
  24444. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24445. {
  24446. front: {
  24447. height: math.unit(6, "feet"),
  24448. weight: math.unit(150, "lb"),
  24449. name: "Front",
  24450. image: {
  24451. source: "./media/characters/sammy/front.svg",
  24452. extra: 1193 / 1089,
  24453. bottom: 30.5 / 1226
  24454. }
  24455. },
  24456. },
  24457. [
  24458. {
  24459. name: "Macro",
  24460. height: math.unit(1700, "feet"),
  24461. default: true
  24462. },
  24463. {
  24464. name: "Examacro",
  24465. height: math.unit(2.5e9, "lightyears")
  24466. },
  24467. ]
  24468. ))
  24469. characterMakers.push(() => makeCharacter(
  24470. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24471. {
  24472. front: {
  24473. height: math.unit(21, "meters"),
  24474. weight: math.unit(12, "tonnes"),
  24475. name: "Front",
  24476. image: {
  24477. source: "./media/characters/kuru/front.svg",
  24478. extra: 4301 / 3785,
  24479. bottom: 371.3 / 4691
  24480. }
  24481. },
  24482. },
  24483. [
  24484. {
  24485. name: "Macro",
  24486. height: math.unit(21, "meters"),
  24487. default: true
  24488. },
  24489. ]
  24490. ))
  24491. characterMakers.push(() => makeCharacter(
  24492. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24493. {
  24494. front: {
  24495. height: math.unit(23, "meters"),
  24496. weight: math.unit(12.2, "tonnes"),
  24497. name: "Front",
  24498. image: {
  24499. source: "./media/characters/rakka/front.svg",
  24500. extra: 4670 / 4169,
  24501. bottom: 301 / 4968.7
  24502. }
  24503. },
  24504. },
  24505. [
  24506. {
  24507. name: "Macro",
  24508. height: math.unit(23, "meters"),
  24509. default: true
  24510. },
  24511. ]
  24512. ))
  24513. characterMakers.push(() => makeCharacter(
  24514. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24515. {
  24516. front: {
  24517. height: math.unit(6, "feet"),
  24518. weight: math.unit(150, "lb"),
  24519. name: "Front",
  24520. image: {
  24521. source: "./media/characters/rhys-feline/front.svg",
  24522. extra: 2488 / 2308,
  24523. bottom: 35.67 / 2519.19
  24524. }
  24525. },
  24526. },
  24527. [
  24528. {
  24529. name: "Really Small",
  24530. height: math.unit(1, "nm")
  24531. },
  24532. {
  24533. name: "Micro",
  24534. height: math.unit(4, "inches")
  24535. },
  24536. {
  24537. name: "Normal",
  24538. height: math.unit(4 + 10 / 12, "feet"),
  24539. default: true
  24540. },
  24541. {
  24542. name: "Macro",
  24543. height: math.unit(100, "feet")
  24544. },
  24545. {
  24546. name: "Megamacto",
  24547. height: math.unit(50, "miles")
  24548. },
  24549. ]
  24550. ))
  24551. characterMakers.push(() => makeCharacter(
  24552. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24553. {
  24554. side: {
  24555. height: math.unit(30, "feet"),
  24556. weight: math.unit(35000, "kg"),
  24557. name: "Side",
  24558. image: {
  24559. source: "./media/characters/alydar/side.svg",
  24560. extra: 234 / 222,
  24561. bottom: 6.5 / 241
  24562. }
  24563. },
  24564. front: {
  24565. height: math.unit(30, "feet"),
  24566. weight: math.unit(35000, "kg"),
  24567. name: "Front",
  24568. image: {
  24569. source: "./media/characters/alydar/front.svg",
  24570. extra: 223.37 / 210.2,
  24571. bottom: 22.3 / 246.76
  24572. }
  24573. },
  24574. top: {
  24575. height: math.unit(64.54, "feet"),
  24576. weight: math.unit(35000, "kg"),
  24577. name: "Top",
  24578. image: {
  24579. source: "./media/characters/alydar/top.svg"
  24580. }
  24581. },
  24582. anthro: {
  24583. height: math.unit(30, "feet"),
  24584. weight: math.unit(9000, "kg"),
  24585. name: "Anthro",
  24586. image: {
  24587. source: "./media/characters/alydar/anthro.svg",
  24588. extra: 432 / 421,
  24589. bottom: 7.18 / 440
  24590. }
  24591. },
  24592. maw: {
  24593. height: math.unit(11.693, "feet"),
  24594. name: "Maw",
  24595. image: {
  24596. source: "./media/characters/alydar/maw.svg"
  24597. }
  24598. },
  24599. head: {
  24600. height: math.unit(11.693, "feet"),
  24601. name: "Head",
  24602. image: {
  24603. source: "./media/characters/alydar/head.svg"
  24604. }
  24605. },
  24606. headAlt: {
  24607. height: math.unit(12.861, "feet"),
  24608. name: "Head (Alt)",
  24609. image: {
  24610. source: "./media/characters/alydar/head-alt.svg"
  24611. }
  24612. },
  24613. wing: {
  24614. height: math.unit(20.712, "feet"),
  24615. name: "Wing",
  24616. image: {
  24617. source: "./media/characters/alydar/wing.svg"
  24618. }
  24619. },
  24620. wingFeather: {
  24621. height: math.unit(9.662, "feet"),
  24622. name: "Wing Feather",
  24623. image: {
  24624. source: "./media/characters/alydar/wing-feather.svg"
  24625. }
  24626. },
  24627. countourFeather: {
  24628. height: math.unit(4.154, "feet"),
  24629. name: "Contour Feather",
  24630. image: {
  24631. source: "./media/characters/alydar/contour-feather.svg"
  24632. }
  24633. },
  24634. },
  24635. [
  24636. {
  24637. name: "Diplomatic",
  24638. height: math.unit(13, "feet"),
  24639. default: true
  24640. },
  24641. {
  24642. name: "Small",
  24643. height: math.unit(30, "feet")
  24644. },
  24645. {
  24646. name: "Normal",
  24647. height: math.unit(95, "feet"),
  24648. default: true
  24649. },
  24650. {
  24651. name: "Large",
  24652. height: math.unit(285, "feet")
  24653. },
  24654. {
  24655. name: "Incomprehensible",
  24656. height: math.unit(450, "megameters")
  24657. },
  24658. ]
  24659. ))
  24660. characterMakers.push(() => makeCharacter(
  24661. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24662. {
  24663. side: {
  24664. height: math.unit(11, "feet"),
  24665. weight: math.unit(1750, "kg"),
  24666. name: "Side",
  24667. image: {
  24668. source: "./media/characters/selicia/side.svg",
  24669. extra: 440 / 396,
  24670. bottom: 24.8 / 465.979
  24671. }
  24672. },
  24673. maw: {
  24674. height: math.unit(4.665, "feet"),
  24675. name: "Maw",
  24676. image: {
  24677. source: "./media/characters/selicia/maw.svg"
  24678. }
  24679. },
  24680. },
  24681. [
  24682. {
  24683. name: "Normal",
  24684. height: math.unit(11, "feet"),
  24685. default: true
  24686. },
  24687. ]
  24688. ))
  24689. characterMakers.push(() => makeCharacter(
  24690. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24691. {
  24692. side: {
  24693. height: math.unit(2 + 6 / 12, "feet"),
  24694. weight: math.unit(30, "lb"),
  24695. name: "Side",
  24696. image: {
  24697. source: "./media/characters/layla/side.svg",
  24698. extra: 244 / 188,
  24699. bottom: 18.2 / 262.1
  24700. }
  24701. },
  24702. back: {
  24703. height: math.unit(2 + 6 / 12, "feet"),
  24704. weight: math.unit(30, "lb"),
  24705. name: "Back",
  24706. image: {
  24707. source: "./media/characters/layla/back.svg",
  24708. extra: 308 / 241.5,
  24709. bottom: 8.9 / 316.8
  24710. }
  24711. },
  24712. cumming: {
  24713. height: math.unit(2 + 6 / 12, "feet"),
  24714. weight: math.unit(30, "lb"),
  24715. name: "Cumming",
  24716. image: {
  24717. source: "./media/characters/layla/cumming.svg",
  24718. extra: 342 / 279,
  24719. bottom: 595 / 938
  24720. }
  24721. },
  24722. dickFlaccid: {
  24723. height: math.unit(2.595, "feet"),
  24724. name: "Flaccid Genitals",
  24725. image: {
  24726. source: "./media/characters/layla/dick-flaccid.svg"
  24727. }
  24728. },
  24729. dickErect: {
  24730. height: math.unit(2.359, "feet"),
  24731. name: "Erect Genitals",
  24732. image: {
  24733. source: "./media/characters/layla/dick-erect.svg"
  24734. }
  24735. },
  24736. dragon: {
  24737. height: math.unit(40, "feet"),
  24738. name: "Dragon",
  24739. image: {
  24740. source: "./media/characters/layla/dragon.svg",
  24741. extra: 610/535,
  24742. bottom: 367/977
  24743. }
  24744. },
  24745. taur: {
  24746. height: math.unit(30, "feet"),
  24747. name: "Taur",
  24748. image: {
  24749. source: "./media/characters/layla/taur.svg",
  24750. extra: 1268/1199,
  24751. bottom: 112/1380
  24752. }
  24753. },
  24754. },
  24755. [
  24756. {
  24757. name: "Micro",
  24758. height: math.unit(1, "inch")
  24759. },
  24760. {
  24761. name: "Small",
  24762. height: math.unit(1, "foot")
  24763. },
  24764. {
  24765. name: "Normal",
  24766. height: math.unit(2 + 6 / 12, "feet"),
  24767. default: true
  24768. },
  24769. {
  24770. name: "Macro",
  24771. height: math.unit(200, "feet")
  24772. },
  24773. {
  24774. name: "Megamacro",
  24775. height: math.unit(1000, "miles")
  24776. },
  24777. {
  24778. name: "Planetary",
  24779. height: math.unit(8000, "miles")
  24780. },
  24781. {
  24782. name: "True Layla",
  24783. height: math.unit(200000 * 7, "multiverses")
  24784. },
  24785. ]
  24786. ))
  24787. characterMakers.push(() => makeCharacter(
  24788. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24789. {
  24790. back: {
  24791. height: math.unit(10.5, "feet"),
  24792. weight: math.unit(800, "lb"),
  24793. name: "Back",
  24794. image: {
  24795. source: "./media/characters/knox/back.svg",
  24796. extra: 1486 / 1089,
  24797. bottom: 107 / 1601.4
  24798. }
  24799. },
  24800. side: {
  24801. height: math.unit(10.5, "feet"),
  24802. weight: math.unit(800, "lb"),
  24803. name: "Side",
  24804. image: {
  24805. source: "./media/characters/knox/side.svg",
  24806. extra: 244 / 218,
  24807. bottom: 14 / 260
  24808. }
  24809. },
  24810. },
  24811. [
  24812. {
  24813. name: "Compact",
  24814. height: math.unit(10.5, "feet"),
  24815. default: true
  24816. },
  24817. {
  24818. name: "Dynamax",
  24819. height: math.unit(210, "feet")
  24820. },
  24821. {
  24822. name: "Full Macro",
  24823. height: math.unit(850, "feet")
  24824. },
  24825. ]
  24826. ))
  24827. characterMakers.push(() => makeCharacter(
  24828. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24829. {
  24830. front: {
  24831. height: math.unit(28, "feet"),
  24832. weight: math.unit(10500, "lb"),
  24833. name: "Front",
  24834. image: {
  24835. source: "./media/characters/kayda/front.svg",
  24836. extra: 1536 / 1428,
  24837. bottom: 68.7 / 1603
  24838. }
  24839. },
  24840. back: {
  24841. height: math.unit(28, "feet"),
  24842. weight: math.unit(10500, "lb"),
  24843. name: "Back",
  24844. image: {
  24845. source: "./media/characters/kayda/back.svg",
  24846. extra: 1557 / 1464,
  24847. bottom: 39.5 / 1597.49
  24848. }
  24849. },
  24850. dick: {
  24851. height: math.unit(3.858, "feet"),
  24852. name: "Dick",
  24853. image: {
  24854. source: "./media/characters/kayda/dick.svg"
  24855. }
  24856. },
  24857. },
  24858. [
  24859. {
  24860. name: "Macro",
  24861. height: math.unit(28, "feet"),
  24862. default: true
  24863. },
  24864. ]
  24865. ))
  24866. characterMakers.push(() => makeCharacter(
  24867. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24868. {
  24869. front: {
  24870. height: math.unit(10 + 11 / 12, "feet"),
  24871. weight: math.unit(1400, "lb"),
  24872. name: "Front",
  24873. image: {
  24874. source: "./media/characters/brian/front.svg",
  24875. extra: 737 / 692,
  24876. bottom: 55.4 / 785
  24877. }
  24878. },
  24879. },
  24880. [
  24881. {
  24882. name: "Normal",
  24883. height: math.unit(10 + 11 / 12, "feet"),
  24884. default: true
  24885. },
  24886. ]
  24887. ))
  24888. characterMakers.push(() => makeCharacter(
  24889. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24890. {
  24891. front: {
  24892. height: math.unit(5 + 8 / 12, "feet"),
  24893. weight: math.unit(140, "lb"),
  24894. name: "Front",
  24895. image: {
  24896. source: "./media/characters/khemri/front.svg",
  24897. extra: 4780 / 4059,
  24898. bottom: 80.1 / 4859.25
  24899. }
  24900. },
  24901. },
  24902. [
  24903. {
  24904. name: "Micro",
  24905. height: math.unit(6, "inches")
  24906. },
  24907. {
  24908. name: "Normal",
  24909. height: math.unit(5 + 8 / 12, "feet"),
  24910. default: true
  24911. },
  24912. ]
  24913. ))
  24914. characterMakers.push(() => makeCharacter(
  24915. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24916. {
  24917. front: {
  24918. height: math.unit(13, "feet"),
  24919. weight: math.unit(1700, "lb"),
  24920. name: "Front",
  24921. image: {
  24922. source: "./media/characters/felix-braveheart/front.svg",
  24923. extra: 1222 / 1157,
  24924. bottom: 53.2 / 1280
  24925. }
  24926. },
  24927. back: {
  24928. height: math.unit(13, "feet"),
  24929. weight: math.unit(1700, "lb"),
  24930. name: "Back",
  24931. image: {
  24932. source: "./media/characters/felix-braveheart/back.svg",
  24933. extra: 1277 / 1203,
  24934. bottom: 50.2 / 1327
  24935. }
  24936. },
  24937. feral: {
  24938. height: math.unit(6, "feet"),
  24939. weight: math.unit(400, "lb"),
  24940. name: "Feral",
  24941. image: {
  24942. source: "./media/characters/felix-braveheart/feral.svg",
  24943. extra: 682 / 625,
  24944. bottom: 6.9 / 688
  24945. }
  24946. },
  24947. },
  24948. [
  24949. {
  24950. name: "Normal",
  24951. height: math.unit(13, "feet"),
  24952. default: true
  24953. },
  24954. ]
  24955. ))
  24956. characterMakers.push(() => makeCharacter(
  24957. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24958. {
  24959. side: {
  24960. height: math.unit(5 + 11 / 12, "feet"),
  24961. weight: math.unit(1400, "lb"),
  24962. name: "Side",
  24963. image: {
  24964. source: "./media/characters/shadow-blade/side.svg",
  24965. extra: 1726 / 1267,
  24966. bottom: 58.4 / 1785
  24967. }
  24968. },
  24969. },
  24970. [
  24971. {
  24972. name: "Normal",
  24973. height: math.unit(5 + 11 / 12, "feet"),
  24974. default: true
  24975. },
  24976. ]
  24977. ))
  24978. characterMakers.push(() => makeCharacter(
  24979. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24980. {
  24981. front: {
  24982. height: math.unit(1 + 6 / 12, "feet"),
  24983. weight: math.unit(25, "lb"),
  24984. name: "Front",
  24985. image: {
  24986. source: "./media/characters/karla-halldor/front.svg",
  24987. extra: 1459 / 1383,
  24988. bottom: 12 / 1472
  24989. }
  24990. },
  24991. },
  24992. [
  24993. {
  24994. name: "Normal",
  24995. height: math.unit(1 + 6 / 12, "feet"),
  24996. default: true
  24997. },
  24998. ]
  24999. ))
  25000. characterMakers.push(() => makeCharacter(
  25001. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25002. {
  25003. front: {
  25004. height: math.unit(6 + 2 / 12, "feet"),
  25005. weight: math.unit(160, "lb"),
  25006. name: "Front",
  25007. image: {
  25008. source: "./media/characters/ariam/front.svg",
  25009. extra: 1073/976,
  25010. bottom: 52/1125
  25011. }
  25012. },
  25013. back: {
  25014. height: math.unit(6 + 2/12, "feet"),
  25015. weight: math.unit(160, "lb"),
  25016. name: "Back",
  25017. image: {
  25018. source: "./media/characters/ariam/back.svg",
  25019. extra: 1103/1023,
  25020. bottom: 9/1112
  25021. }
  25022. },
  25023. dressed: {
  25024. height: math.unit(6 + 2/12, "feet"),
  25025. weight: math.unit(160, "lb"),
  25026. name: "Dressed",
  25027. image: {
  25028. source: "./media/characters/ariam/dressed.svg",
  25029. extra: 1099/1009,
  25030. bottom: 25/1124
  25031. }
  25032. },
  25033. squatting: {
  25034. height: math.unit(4.1, "feet"),
  25035. weight: math.unit(160, "lb"),
  25036. name: "Squatting",
  25037. image: {
  25038. source: "./media/characters/ariam/squatting.svg",
  25039. extra: 2617 / 2112,
  25040. bottom: 61.2 / 2681,
  25041. }
  25042. },
  25043. },
  25044. [
  25045. {
  25046. name: "Normal",
  25047. height: math.unit(6 + 2 / 12, "feet"),
  25048. default: true
  25049. },
  25050. {
  25051. name: "Normal+",
  25052. height: math.unit(4, "meters")
  25053. },
  25054. {
  25055. name: "Macro",
  25056. height: math.unit(50, "meters")
  25057. },
  25058. {
  25059. name: "Macro+",
  25060. height: math.unit(100, "meters")
  25061. },
  25062. {
  25063. name: "Megamacro",
  25064. height: math.unit(20, "km")
  25065. },
  25066. {
  25067. name: "Caretaker",
  25068. height: math.unit(444, "megameters")
  25069. },
  25070. ]
  25071. ))
  25072. characterMakers.push(() => makeCharacter(
  25073. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25074. {
  25075. front: {
  25076. height: math.unit(1.67, "meters"),
  25077. weight: math.unit(140, "lb"),
  25078. name: "Front",
  25079. image: {
  25080. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25081. extra: 438 / 410,
  25082. bottom: 0.75 / 439
  25083. }
  25084. },
  25085. },
  25086. [
  25087. {
  25088. name: "Shrunken",
  25089. height: math.unit(7.6, "cm")
  25090. },
  25091. {
  25092. name: "Human Scale",
  25093. height: math.unit(1.67, "meters")
  25094. },
  25095. {
  25096. name: "Wolxi Scale",
  25097. height: math.unit(36.7, "meters"),
  25098. default: true
  25099. },
  25100. ]
  25101. ))
  25102. characterMakers.push(() => makeCharacter(
  25103. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25104. {
  25105. front: {
  25106. height: math.unit(1.73, "meters"),
  25107. weight: math.unit(240, "lb"),
  25108. name: "Front",
  25109. image: {
  25110. source: "./media/characters/izue-two-mothers/front.svg",
  25111. extra: 469 / 437,
  25112. bottom: 1.24 / 470.6
  25113. }
  25114. },
  25115. },
  25116. [
  25117. {
  25118. name: "Shrunken",
  25119. height: math.unit(7.86, "cm")
  25120. },
  25121. {
  25122. name: "Human Scale",
  25123. height: math.unit(1.73, "meters")
  25124. },
  25125. {
  25126. name: "Wolxi Scale",
  25127. height: math.unit(38, "meters"),
  25128. default: true
  25129. },
  25130. ]
  25131. ))
  25132. characterMakers.push(() => makeCharacter(
  25133. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25134. {
  25135. front: {
  25136. height: math.unit(1.55, "meters"),
  25137. weight: math.unit(120, "lb"),
  25138. name: "Front",
  25139. image: {
  25140. source: "./media/characters/teeku-love-shack/front.svg",
  25141. extra: 387 / 362,
  25142. bottom: 1.51 / 388
  25143. }
  25144. },
  25145. },
  25146. [
  25147. {
  25148. name: "Shrunken",
  25149. height: math.unit(7, "cm")
  25150. },
  25151. {
  25152. name: "Human Scale",
  25153. height: math.unit(1.55, "meters")
  25154. },
  25155. {
  25156. name: "Wolxi Scale",
  25157. height: math.unit(34.1, "meters"),
  25158. default: true
  25159. },
  25160. ]
  25161. ))
  25162. characterMakers.push(() => makeCharacter(
  25163. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25164. {
  25165. front: {
  25166. height: math.unit(1.83, "meters"),
  25167. weight: math.unit(135, "lb"),
  25168. name: "Front",
  25169. image: {
  25170. source: "./media/characters/dejma-the-red/front.svg",
  25171. extra: 480 / 458,
  25172. bottom: 1.8 / 482
  25173. }
  25174. },
  25175. },
  25176. [
  25177. {
  25178. name: "Shrunken",
  25179. height: math.unit(8.3, "cm")
  25180. },
  25181. {
  25182. name: "Human Scale",
  25183. height: math.unit(1.83, "meters")
  25184. },
  25185. {
  25186. name: "Wolxi Scale",
  25187. height: math.unit(40, "meters"),
  25188. default: true
  25189. },
  25190. ]
  25191. ))
  25192. characterMakers.push(() => makeCharacter(
  25193. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25194. {
  25195. front: {
  25196. height: math.unit(1.78, "meters"),
  25197. weight: math.unit(65, "kg"),
  25198. name: "Front",
  25199. image: {
  25200. source: "./media/characters/aki/front.svg",
  25201. extra: 452 / 415
  25202. }
  25203. },
  25204. frontNsfw: {
  25205. height: math.unit(1.78, "meters"),
  25206. weight: math.unit(65, "kg"),
  25207. name: "Front (NSFW)",
  25208. image: {
  25209. source: "./media/characters/aki/front-nsfw.svg",
  25210. extra: 452 / 415
  25211. }
  25212. },
  25213. back: {
  25214. height: math.unit(1.78, "meters"),
  25215. weight: math.unit(65, "kg"),
  25216. name: "Back",
  25217. image: {
  25218. source: "./media/characters/aki/back.svg",
  25219. extra: 452 / 415
  25220. }
  25221. },
  25222. rump: {
  25223. height: math.unit(2.05, "feet"),
  25224. name: "Rump",
  25225. image: {
  25226. source: "./media/characters/aki/rump.svg"
  25227. }
  25228. },
  25229. dick: {
  25230. height: math.unit(0.95, "feet"),
  25231. name: "Dick",
  25232. image: {
  25233. source: "./media/characters/aki/dick.svg"
  25234. }
  25235. },
  25236. },
  25237. [
  25238. {
  25239. name: "Micro",
  25240. height: math.unit(15, "cm")
  25241. },
  25242. {
  25243. name: "Normal",
  25244. height: math.unit(178, "cm"),
  25245. default: true
  25246. },
  25247. {
  25248. name: "Macro",
  25249. height: math.unit(214, "m")
  25250. },
  25251. {
  25252. name: "Macro+",
  25253. height: math.unit(534, "m")
  25254. },
  25255. ]
  25256. ))
  25257. characterMakers.push(() => makeCharacter(
  25258. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25259. {
  25260. front: {
  25261. height: math.unit(5 + 5 / 12, "feet"),
  25262. weight: math.unit(120, "lb"),
  25263. name: "Front",
  25264. image: {
  25265. source: "./media/characters/ari/front.svg",
  25266. extra: 1550/1471,
  25267. bottom: 39/1589
  25268. }
  25269. },
  25270. },
  25271. [
  25272. {
  25273. name: "Normal",
  25274. height: math.unit(5 + 5 / 12, "feet")
  25275. },
  25276. {
  25277. name: "Macro",
  25278. height: math.unit(100, "feet"),
  25279. default: true
  25280. },
  25281. {
  25282. name: "Megamacro",
  25283. height: math.unit(100, "miles")
  25284. },
  25285. {
  25286. name: "Gigamacro",
  25287. height: math.unit(80000, "miles")
  25288. },
  25289. ]
  25290. ))
  25291. characterMakers.push(() => makeCharacter(
  25292. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25293. {
  25294. side: {
  25295. height: math.unit(9, "feet"),
  25296. weight: math.unit(400, "kg"),
  25297. name: "Side",
  25298. image: {
  25299. source: "./media/characters/bolt/side.svg",
  25300. extra: 1126 / 896,
  25301. bottom: 60 / 1187.3,
  25302. }
  25303. },
  25304. },
  25305. [
  25306. {
  25307. name: "Micro",
  25308. height: math.unit(5, "inches")
  25309. },
  25310. {
  25311. name: "Normal",
  25312. height: math.unit(9, "feet"),
  25313. default: true
  25314. },
  25315. {
  25316. name: "Macro",
  25317. height: math.unit(700, "feet")
  25318. },
  25319. {
  25320. name: "Max Size",
  25321. height: math.unit(1.52e22, "yottameters")
  25322. },
  25323. ]
  25324. ))
  25325. characterMakers.push(() => makeCharacter(
  25326. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25327. {
  25328. front: {
  25329. height: math.unit(4.3, "meters"),
  25330. weight: math.unit(3, "tons"),
  25331. name: "Front",
  25332. image: {
  25333. source: "./media/characters/draekon-sylviar/front.svg",
  25334. extra: 2072/1512,
  25335. bottom: 74/2146
  25336. }
  25337. },
  25338. back: {
  25339. height: math.unit(4.3, "meters"),
  25340. weight: math.unit(3, "tons"),
  25341. name: "Back",
  25342. image: {
  25343. source: "./media/characters/draekon-sylviar/back.svg",
  25344. extra: 1639/1483,
  25345. bottom: 41/1680
  25346. }
  25347. },
  25348. feral: {
  25349. height: math.unit(1.15, "meters"),
  25350. weight: math.unit(3, "tons"),
  25351. name: "Feral",
  25352. image: {
  25353. source: "./media/characters/draekon-sylviar/feral.svg",
  25354. extra: 1033/395,
  25355. bottom: 130/1163
  25356. }
  25357. },
  25358. maw: {
  25359. height: math.unit(1.3, "meters"),
  25360. name: "Maw",
  25361. image: {
  25362. source: "./media/characters/draekon-sylviar/maw.svg"
  25363. }
  25364. },
  25365. mawSeparated: {
  25366. height: math.unit(1.53, "meters"),
  25367. name: "Separated Maw",
  25368. image: {
  25369. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25370. }
  25371. },
  25372. tail: {
  25373. height: math.unit(1.15, "meters"),
  25374. name: "Tail",
  25375. image: {
  25376. source: "./media/characters/draekon-sylviar/tail.svg"
  25377. }
  25378. },
  25379. tailDick: {
  25380. height: math.unit(1.15, "meters"),
  25381. name: "Tail (Dick)",
  25382. image: {
  25383. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25384. }
  25385. },
  25386. tailDickSeparated: {
  25387. height: math.unit(1.19, "meters"),
  25388. name: "Tail (Separated Dick)",
  25389. image: {
  25390. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25391. }
  25392. },
  25393. slit: {
  25394. height: math.unit(1, "meters"),
  25395. name: "Slit",
  25396. image: {
  25397. source: "./media/characters/draekon-sylviar/slit.svg"
  25398. }
  25399. },
  25400. dick: {
  25401. height: math.unit(1.15, "meters"),
  25402. name: "Dick",
  25403. image: {
  25404. source: "./media/characters/draekon-sylviar/dick.svg"
  25405. }
  25406. },
  25407. dickSeparated: {
  25408. height: math.unit(1.1, "meters"),
  25409. name: "Separated Dick",
  25410. image: {
  25411. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25412. }
  25413. },
  25414. sheath: {
  25415. height: math.unit(1.15, "meters"),
  25416. name: "Sheath",
  25417. image: {
  25418. source: "./media/characters/draekon-sylviar/sheath.svg"
  25419. }
  25420. },
  25421. },
  25422. [
  25423. {
  25424. name: "Small",
  25425. height: math.unit(4.53 / 2, "meters"),
  25426. default: true
  25427. },
  25428. {
  25429. name: "Normal",
  25430. height: math.unit(4.53, "meters"),
  25431. default: true
  25432. },
  25433. {
  25434. name: "Large",
  25435. height: math.unit(4.53 * 2, "meters"),
  25436. },
  25437. ]
  25438. ))
  25439. characterMakers.push(() => makeCharacter(
  25440. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25441. {
  25442. front: {
  25443. height: math.unit(6 + 2 / 12, "feet"),
  25444. weight: math.unit(180, "lb"),
  25445. name: "Front",
  25446. image: {
  25447. source: "./media/characters/brawler/front.svg",
  25448. extra: 3301 / 3027,
  25449. bottom: 138 / 3439
  25450. }
  25451. },
  25452. },
  25453. [
  25454. {
  25455. name: "Normal",
  25456. height: math.unit(6 + 2 / 12, "feet"),
  25457. default: true
  25458. },
  25459. ]
  25460. ))
  25461. characterMakers.push(() => makeCharacter(
  25462. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25463. {
  25464. front: {
  25465. height: math.unit(11, "feet"),
  25466. weight: math.unit(1000, "lb"),
  25467. name: "Front",
  25468. image: {
  25469. source: "./media/characters/alex/front.svg",
  25470. bottom: 44.5 / 620
  25471. }
  25472. },
  25473. },
  25474. [
  25475. {
  25476. name: "Micro",
  25477. height: math.unit(5, "inches")
  25478. },
  25479. {
  25480. name: "Normal",
  25481. height: math.unit(11, "feet"),
  25482. default: true
  25483. },
  25484. {
  25485. name: "Macro",
  25486. height: math.unit(9.5e9, "feet")
  25487. },
  25488. {
  25489. name: "Max Size",
  25490. height: math.unit(1.4e283, "yottameters")
  25491. },
  25492. ]
  25493. ))
  25494. characterMakers.push(() => makeCharacter(
  25495. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25496. {
  25497. female: {
  25498. height: math.unit(29.9, "m"),
  25499. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25500. name: "Female",
  25501. image: {
  25502. source: "./media/characters/zenari/female.svg",
  25503. extra: 3281.6 / 3217,
  25504. bottom: 72.2 / 3353
  25505. }
  25506. },
  25507. male: {
  25508. height: math.unit(27.7, "m"),
  25509. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25510. name: "Male",
  25511. image: {
  25512. source: "./media/characters/zenari/male.svg",
  25513. extra: 3008 / 2991,
  25514. bottom: 54.6 / 3069
  25515. }
  25516. },
  25517. },
  25518. [
  25519. {
  25520. name: "Macro",
  25521. height: math.unit(29.7, "meters"),
  25522. default: true
  25523. },
  25524. ]
  25525. ))
  25526. characterMakers.push(() => makeCharacter(
  25527. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25528. {
  25529. female: {
  25530. height: math.unit(23.8, "m"),
  25531. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25532. name: "Female",
  25533. image: {
  25534. source: "./media/characters/mactarian/female.svg",
  25535. extra: 2662 / 2569,
  25536. bottom: 73 / 2736
  25537. }
  25538. },
  25539. male: {
  25540. height: math.unit(23.8, "m"),
  25541. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25542. name: "Male",
  25543. image: {
  25544. source: "./media/characters/mactarian/male.svg",
  25545. extra: 2673 / 2600,
  25546. bottom: 76 / 2750
  25547. }
  25548. },
  25549. },
  25550. [
  25551. {
  25552. name: "Macro",
  25553. height: math.unit(23.8, "meters"),
  25554. default: true
  25555. },
  25556. ]
  25557. ))
  25558. characterMakers.push(() => makeCharacter(
  25559. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25560. {
  25561. female: {
  25562. height: math.unit(19.3, "m"),
  25563. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25564. name: "Female",
  25565. image: {
  25566. source: "./media/characters/umok/female.svg",
  25567. extra: 2186 / 2078,
  25568. bottom: 87 / 2277
  25569. }
  25570. },
  25571. male: {
  25572. height: math.unit(19.5, "m"),
  25573. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25574. name: "Male",
  25575. image: {
  25576. source: "./media/characters/umok/male.svg",
  25577. extra: 2233 / 2140,
  25578. bottom: 24.4 / 2258
  25579. }
  25580. },
  25581. },
  25582. [
  25583. {
  25584. name: "Macro",
  25585. height: math.unit(19.3, "meters"),
  25586. default: true
  25587. },
  25588. ]
  25589. ))
  25590. characterMakers.push(() => makeCharacter(
  25591. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25592. {
  25593. female: {
  25594. height: math.unit(26.15, "m"),
  25595. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25596. name: "Female",
  25597. image: {
  25598. source: "./media/characters/joraxian/female.svg",
  25599. extra: 2912 / 2824,
  25600. bottom: 36 / 2956
  25601. }
  25602. },
  25603. male: {
  25604. height: math.unit(25.4, "m"),
  25605. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25606. name: "Male",
  25607. image: {
  25608. source: "./media/characters/joraxian/male.svg",
  25609. extra: 2877 / 2721,
  25610. bottom: 82 / 2967
  25611. }
  25612. },
  25613. },
  25614. [
  25615. {
  25616. name: "Macro",
  25617. height: math.unit(26.15, "meters"),
  25618. default: true
  25619. },
  25620. ]
  25621. ))
  25622. characterMakers.push(() => makeCharacter(
  25623. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25624. {
  25625. female: {
  25626. height: math.unit(21.6, "m"),
  25627. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25628. name: "Female",
  25629. image: {
  25630. source: "./media/characters/sthara/female.svg",
  25631. extra: 2516 / 2347,
  25632. bottom: 21.5 / 2537
  25633. }
  25634. },
  25635. male: {
  25636. height: math.unit(24, "m"),
  25637. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25638. name: "Male",
  25639. image: {
  25640. source: "./media/characters/sthara/male.svg",
  25641. extra: 2732 / 2607,
  25642. bottom: 23 / 2732
  25643. }
  25644. },
  25645. },
  25646. [
  25647. {
  25648. name: "Macro",
  25649. height: math.unit(21.6, "meters"),
  25650. default: true
  25651. },
  25652. ]
  25653. ))
  25654. characterMakers.push(() => makeCharacter(
  25655. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25656. {
  25657. front: {
  25658. height: math.unit(6 + 4 / 12, "feet"),
  25659. weight: math.unit(175, "lb"),
  25660. name: "Front",
  25661. image: {
  25662. source: "./media/characters/luka-bryzant/front.svg",
  25663. extra: 311 / 289,
  25664. bottom: 4 / 315
  25665. }
  25666. },
  25667. back: {
  25668. height: math.unit(6 + 4 / 12, "feet"),
  25669. weight: math.unit(175, "lb"),
  25670. name: "Back",
  25671. image: {
  25672. source: "./media/characters/luka-bryzant/back.svg",
  25673. extra: 311 / 289,
  25674. bottom: 3.8 / 313.7
  25675. }
  25676. },
  25677. },
  25678. [
  25679. {
  25680. name: "Micro",
  25681. height: math.unit(10, "inches")
  25682. },
  25683. {
  25684. name: "Normal",
  25685. height: math.unit(6 + 4 / 12, "feet"),
  25686. default: true
  25687. },
  25688. {
  25689. name: "Large",
  25690. height: math.unit(12, "feet")
  25691. },
  25692. ]
  25693. ))
  25694. characterMakers.push(() => makeCharacter(
  25695. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25696. {
  25697. front: {
  25698. height: math.unit(5 + 7 / 12, "feet"),
  25699. weight: math.unit(185, "lb"),
  25700. name: "Front",
  25701. image: {
  25702. source: "./media/characters/aman-aquila/front.svg",
  25703. extra: 1013 / 976,
  25704. bottom: 45.6 / 1057
  25705. }
  25706. },
  25707. side: {
  25708. height: math.unit(5 + 7 / 12, "feet"),
  25709. weight: math.unit(185, "lb"),
  25710. name: "Side",
  25711. image: {
  25712. source: "./media/characters/aman-aquila/side.svg",
  25713. extra: 1054 / 1011,
  25714. bottom: 15 / 1070
  25715. }
  25716. },
  25717. back: {
  25718. height: math.unit(5 + 7 / 12, "feet"),
  25719. weight: math.unit(185, "lb"),
  25720. name: "Back",
  25721. image: {
  25722. source: "./media/characters/aman-aquila/back.svg",
  25723. extra: 1026 / 970,
  25724. bottom: 12 / 1039
  25725. }
  25726. },
  25727. head: {
  25728. height: math.unit(1.211, "feet"),
  25729. name: "Head",
  25730. image: {
  25731. source: "./media/characters/aman-aquila/head.svg",
  25732. }
  25733. },
  25734. },
  25735. [
  25736. {
  25737. name: "Minimicro",
  25738. height: math.unit(0.057, "inches")
  25739. },
  25740. {
  25741. name: "Micro",
  25742. height: math.unit(7, "inches")
  25743. },
  25744. {
  25745. name: "Mini",
  25746. height: math.unit(3 + 7 / 12, "feet")
  25747. },
  25748. {
  25749. name: "Normal",
  25750. height: math.unit(5 + 7 / 12, "feet"),
  25751. default: true
  25752. },
  25753. {
  25754. name: "Macro",
  25755. height: math.unit(157 + 7 / 12, "feet")
  25756. },
  25757. {
  25758. name: "Megamacro",
  25759. height: math.unit(1557 + 7 / 12, "feet")
  25760. },
  25761. {
  25762. name: "Gigamacro",
  25763. height: math.unit(15557 + 7 / 12, "feet")
  25764. },
  25765. ]
  25766. ))
  25767. characterMakers.push(() => makeCharacter(
  25768. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25769. {
  25770. front: {
  25771. height: math.unit(3 + 2 / 12, "inches"),
  25772. weight: math.unit(0.3, "ounces"),
  25773. name: "Front",
  25774. image: {
  25775. source: "./media/characters/hiphae/front.svg",
  25776. extra: 1931 / 1683,
  25777. bottom: 24 / 1955
  25778. }
  25779. },
  25780. },
  25781. [
  25782. {
  25783. name: "Normal",
  25784. height: math.unit(3 + 1 / 2, "inches"),
  25785. default: true
  25786. },
  25787. ]
  25788. ))
  25789. characterMakers.push(() => makeCharacter(
  25790. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25791. {
  25792. front: {
  25793. height: math.unit(5 + 10 / 12, "feet"),
  25794. weight: math.unit(165, "lb"),
  25795. name: "Front",
  25796. image: {
  25797. source: "./media/characters/nicky/front.svg",
  25798. extra: 3144 / 2886,
  25799. bottom: 45.6 / 3192
  25800. }
  25801. },
  25802. back: {
  25803. height: math.unit(5 + 10 / 12, "feet"),
  25804. weight: math.unit(165, "lb"),
  25805. name: "Back",
  25806. image: {
  25807. source: "./media/characters/nicky/back.svg",
  25808. extra: 3055 / 2804,
  25809. bottom: 28.4 / 3087
  25810. }
  25811. },
  25812. frontclothed: {
  25813. height: math.unit(5 + 10 / 12, "feet"),
  25814. weight: math.unit(165, "lb"),
  25815. name: "Front-clothed",
  25816. image: {
  25817. source: "./media/characters/nicky/front-clothed.svg",
  25818. extra: 3184.9 / 2926.9,
  25819. bottom: 86.5 / 3239.9
  25820. }
  25821. },
  25822. foot: {
  25823. height: math.unit(1.16, "feet"),
  25824. name: "Foot",
  25825. image: {
  25826. source: "./media/characters/nicky/foot.svg"
  25827. }
  25828. },
  25829. feet: {
  25830. height: math.unit(1.34, "feet"),
  25831. name: "Feet",
  25832. image: {
  25833. source: "./media/characters/nicky/feet.svg"
  25834. }
  25835. },
  25836. maw: {
  25837. height: math.unit(0.9, "feet"),
  25838. name: "Maw",
  25839. image: {
  25840. source: "./media/characters/nicky/maw.svg"
  25841. }
  25842. },
  25843. },
  25844. [
  25845. {
  25846. name: "Normal",
  25847. height: math.unit(5 + 10 / 12, "feet"),
  25848. default: true
  25849. },
  25850. {
  25851. name: "Macro",
  25852. height: math.unit(60, "feet")
  25853. },
  25854. {
  25855. name: "Megamacro",
  25856. height: math.unit(1, "mile")
  25857. },
  25858. ]
  25859. ))
  25860. characterMakers.push(() => makeCharacter(
  25861. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25862. {
  25863. side: {
  25864. height: math.unit(10, "feet"),
  25865. weight: math.unit(600, "lb"),
  25866. name: "Side",
  25867. image: {
  25868. source: "./media/characters/blair/side.svg",
  25869. bottom: 16.6 / 475,
  25870. extra: 458 / 431
  25871. }
  25872. },
  25873. },
  25874. [
  25875. {
  25876. name: "Micro",
  25877. height: math.unit(8, "inches")
  25878. },
  25879. {
  25880. name: "Normal",
  25881. height: math.unit(10, "feet"),
  25882. default: true
  25883. },
  25884. {
  25885. name: "Macro",
  25886. height: math.unit(180, "feet")
  25887. },
  25888. ]
  25889. ))
  25890. characterMakers.push(() => makeCharacter(
  25891. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25892. {
  25893. front: {
  25894. height: math.unit(5 + 4 / 12, "feet"),
  25895. weight: math.unit(125, "lb"),
  25896. name: "Front",
  25897. image: {
  25898. source: "./media/characters/fisher/front.svg",
  25899. extra: 444 / 390,
  25900. bottom: 2 / 444.8
  25901. }
  25902. },
  25903. },
  25904. [
  25905. {
  25906. name: "Micro",
  25907. height: math.unit(4, "inches")
  25908. },
  25909. {
  25910. name: "Normal",
  25911. height: math.unit(5 + 4 / 12, "feet"),
  25912. default: true
  25913. },
  25914. {
  25915. name: "Macro",
  25916. height: math.unit(100, "feet")
  25917. },
  25918. ]
  25919. ))
  25920. characterMakers.push(() => makeCharacter(
  25921. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25922. {
  25923. front: {
  25924. height: math.unit(6.71, "feet"),
  25925. weight: math.unit(200, "lb"),
  25926. capacity: math.unit(1000000, "people"),
  25927. name: "Front",
  25928. image: {
  25929. source: "./media/characters/gliss/front.svg",
  25930. extra: 2347 / 2231,
  25931. bottom: 113 / 2462
  25932. }
  25933. },
  25934. hammerspaceSize: {
  25935. height: math.unit(6.71 * 717, "feet"),
  25936. weight: math.unit(200, "lb"),
  25937. capacity: math.unit(1000000, "people"),
  25938. name: "Hammerspace Size",
  25939. image: {
  25940. source: "./media/characters/gliss/front.svg",
  25941. extra: 2347 / 2231,
  25942. bottom: 113 / 2462
  25943. }
  25944. },
  25945. },
  25946. [
  25947. {
  25948. name: "Normal",
  25949. height: math.unit(6.71, "feet"),
  25950. default: true
  25951. },
  25952. ]
  25953. ))
  25954. characterMakers.push(() => makeCharacter(
  25955. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25956. {
  25957. side: {
  25958. height: math.unit(1.44, "m"),
  25959. weight: math.unit(80, "kg"),
  25960. name: "Side",
  25961. image: {
  25962. source: "./media/characters/dune-anderson/side.svg",
  25963. bottom: 49 / 1426
  25964. }
  25965. },
  25966. },
  25967. [
  25968. {
  25969. name: "Wolf-sized",
  25970. height: math.unit(1.44, "meters")
  25971. },
  25972. {
  25973. name: "Normal",
  25974. height: math.unit(5.05, "meters"),
  25975. default: true
  25976. },
  25977. {
  25978. name: "Big",
  25979. height: math.unit(14.4, "meters")
  25980. },
  25981. {
  25982. name: "Huge",
  25983. height: math.unit(144, "meters")
  25984. },
  25985. ]
  25986. ))
  25987. characterMakers.push(() => makeCharacter(
  25988. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25989. {
  25990. front: {
  25991. height: math.unit(7, "feet"),
  25992. weight: math.unit(425, "lb"),
  25993. name: "Front",
  25994. image: {
  25995. source: "./media/characters/hind/front.svg",
  25996. extra: 2091 / 1860,
  25997. bottom: 129 / 2220
  25998. }
  25999. },
  26000. back: {
  26001. height: math.unit(7, "feet"),
  26002. weight: math.unit(425, "lb"),
  26003. name: "Back",
  26004. image: {
  26005. source: "./media/characters/hind/back.svg",
  26006. extra: 2091 / 1860,
  26007. bottom: 24.6 / 2309
  26008. }
  26009. },
  26010. tail: {
  26011. height: math.unit(2.8, "feet"),
  26012. name: "Tail",
  26013. image: {
  26014. source: "./media/characters/hind/tail.svg"
  26015. }
  26016. },
  26017. head: {
  26018. height: math.unit(2.55, "feet"),
  26019. name: "Head",
  26020. image: {
  26021. source: "./media/characters/hind/head.svg"
  26022. }
  26023. },
  26024. },
  26025. [
  26026. {
  26027. name: "XS",
  26028. height: math.unit(0.7, "feet")
  26029. },
  26030. {
  26031. name: "Normal",
  26032. height: math.unit(7, "feet"),
  26033. default: true
  26034. },
  26035. {
  26036. name: "XL",
  26037. height: math.unit(70, "feet")
  26038. },
  26039. ]
  26040. ))
  26041. characterMakers.push(() => makeCharacter(
  26042. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26043. {
  26044. front: {
  26045. height: math.unit(2.1, "meters"),
  26046. weight: math.unit(150, "lb"),
  26047. name: "Front",
  26048. image: {
  26049. source: "./media/characters/tharquench-sizestealer/front.svg",
  26050. extra: 1605/1470,
  26051. bottom: 36/1641
  26052. }
  26053. },
  26054. frontAlt: {
  26055. height: math.unit(2.1, "meters"),
  26056. weight: math.unit(150, "lb"),
  26057. name: "Front (Alt)",
  26058. image: {
  26059. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26060. extra: 2318 / 2063,
  26061. bottom: 93.4 / 2410
  26062. }
  26063. },
  26064. },
  26065. [
  26066. {
  26067. name: "Nano",
  26068. height: math.unit(1, "mm")
  26069. },
  26070. {
  26071. name: "Micro",
  26072. height: math.unit(1, "cm")
  26073. },
  26074. {
  26075. name: "Normal",
  26076. height: math.unit(2.1, "meters"),
  26077. default: true
  26078. },
  26079. ]
  26080. ))
  26081. characterMakers.push(() => makeCharacter(
  26082. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26083. {
  26084. front: {
  26085. height: math.unit(7 + 5 / 12, "feet"),
  26086. weight: math.unit(357, "lb"),
  26087. name: "Front",
  26088. image: {
  26089. source: "./media/characters/solex-draconov/front.svg",
  26090. extra: 1993 / 1865,
  26091. bottom: 117 / 2111
  26092. }
  26093. },
  26094. },
  26095. [
  26096. {
  26097. name: "Natural Height",
  26098. height: math.unit(7 + 5 / 12, "feet"),
  26099. default: true
  26100. },
  26101. {
  26102. name: "Macro",
  26103. height: math.unit(350, "feet")
  26104. },
  26105. {
  26106. name: "Macro+",
  26107. height: math.unit(1000, "feet")
  26108. },
  26109. {
  26110. name: "Megamacro",
  26111. height: math.unit(20, "km")
  26112. },
  26113. {
  26114. name: "Megamacro+",
  26115. height: math.unit(1000, "km")
  26116. },
  26117. {
  26118. name: "Gigamacro",
  26119. height: math.unit(2.5, "Gm")
  26120. },
  26121. {
  26122. name: "Teramacro",
  26123. height: math.unit(15, "Tm")
  26124. },
  26125. {
  26126. name: "Galactic",
  26127. height: math.unit(30, "Zm")
  26128. },
  26129. {
  26130. name: "Universal",
  26131. height: math.unit(21000, "Ym")
  26132. },
  26133. {
  26134. name: "Omniversal",
  26135. height: math.unit(9.861e50, "Ym")
  26136. },
  26137. {
  26138. name: "Existential",
  26139. height: math.unit(1e300, "meters")
  26140. },
  26141. ]
  26142. ))
  26143. characterMakers.push(() => makeCharacter(
  26144. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26145. {
  26146. side: {
  26147. height: math.unit(25, "feet"),
  26148. weight: math.unit(90000, "lb"),
  26149. name: "Side",
  26150. image: {
  26151. source: "./media/characters/mandarax/side.svg",
  26152. extra: 614 / 332,
  26153. bottom: 55 / 630
  26154. }
  26155. },
  26156. lounging: {
  26157. height: math.unit(15.4, "feet"),
  26158. weight: math.unit(90000, "lb"),
  26159. name: "Lounging",
  26160. image: {
  26161. source: "./media/characters/mandarax/lounging.svg",
  26162. extra: 817/609,
  26163. bottom: 685/1502
  26164. }
  26165. },
  26166. head: {
  26167. height: math.unit(11.4, "feet"),
  26168. name: "Head",
  26169. image: {
  26170. source: "./media/characters/mandarax/head.svg"
  26171. }
  26172. },
  26173. belly: {
  26174. height: math.unit(33, "feet"),
  26175. name: "Belly",
  26176. capacity: math.unit(500, "people"),
  26177. image: {
  26178. source: "./media/characters/mandarax/belly.svg"
  26179. }
  26180. },
  26181. dick: {
  26182. height: math.unit(8.46, "feet"),
  26183. name: "Dick",
  26184. image: {
  26185. source: "./media/characters/mandarax/dick.svg"
  26186. }
  26187. },
  26188. top: {
  26189. height: math.unit(28, "meters"),
  26190. name: "Top",
  26191. image: {
  26192. source: "./media/characters/mandarax/top.svg"
  26193. }
  26194. },
  26195. },
  26196. [
  26197. {
  26198. name: "Normal",
  26199. height: math.unit(25, "feet"),
  26200. default: true
  26201. },
  26202. ]
  26203. ))
  26204. characterMakers.push(() => makeCharacter(
  26205. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26206. {
  26207. front: {
  26208. height: math.unit(5, "feet"),
  26209. weight: math.unit(90, "lb"),
  26210. name: "Front",
  26211. image: {
  26212. source: "./media/characters/pixil/front.svg",
  26213. extra: 2000 / 1618,
  26214. bottom: 12.3 / 2011
  26215. }
  26216. },
  26217. },
  26218. [
  26219. {
  26220. name: "Normal",
  26221. height: math.unit(5, "feet"),
  26222. default: true
  26223. },
  26224. {
  26225. name: "Megamacro",
  26226. height: math.unit(10, "miles"),
  26227. },
  26228. ]
  26229. ))
  26230. characterMakers.push(() => makeCharacter(
  26231. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26232. {
  26233. front: {
  26234. height: math.unit(7 + 2 / 12, "feet"),
  26235. weight: math.unit(200, "lb"),
  26236. name: "Front",
  26237. image: {
  26238. source: "./media/characters/angel/front.svg",
  26239. extra: 1830 / 1737,
  26240. bottom: 22.6 / 1854,
  26241. }
  26242. },
  26243. },
  26244. [
  26245. {
  26246. name: "Normal",
  26247. height: math.unit(7 + 2 / 12, "feet"),
  26248. default: true
  26249. },
  26250. {
  26251. name: "Macro",
  26252. height: math.unit(1000, "feet")
  26253. },
  26254. {
  26255. name: "Megamacro",
  26256. height: math.unit(2, "miles")
  26257. },
  26258. {
  26259. name: "Gigamacro",
  26260. height: math.unit(20, "earths")
  26261. },
  26262. ]
  26263. ))
  26264. characterMakers.push(() => makeCharacter(
  26265. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26266. {
  26267. front: {
  26268. height: math.unit(5, "feet"),
  26269. weight: math.unit(180, "lb"),
  26270. name: "Front",
  26271. image: {
  26272. source: "./media/characters/mekana/front.svg",
  26273. extra: 1671 / 1605,
  26274. bottom: 3.5 / 1691
  26275. }
  26276. },
  26277. side: {
  26278. height: math.unit(5, "feet"),
  26279. weight: math.unit(180, "lb"),
  26280. name: "Side",
  26281. image: {
  26282. source: "./media/characters/mekana/side.svg",
  26283. extra: 1671 / 1605,
  26284. bottom: 3.5 / 1691
  26285. }
  26286. },
  26287. back: {
  26288. height: math.unit(5, "feet"),
  26289. weight: math.unit(180, "lb"),
  26290. name: "Back",
  26291. image: {
  26292. source: "./media/characters/mekana/back.svg",
  26293. extra: 1671 / 1605,
  26294. bottom: 3.5 / 1691
  26295. }
  26296. },
  26297. },
  26298. [
  26299. {
  26300. name: "Normal",
  26301. height: math.unit(5, "feet"),
  26302. default: true
  26303. },
  26304. ]
  26305. ))
  26306. characterMakers.push(() => makeCharacter(
  26307. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26308. {
  26309. front: {
  26310. height: math.unit(4 + 6 / 12, "feet"),
  26311. weight: math.unit(80, "lb"),
  26312. name: "Front",
  26313. image: {
  26314. source: "./media/characters/pixie/front.svg",
  26315. extra: 1924 / 1825,
  26316. bottom: 22.4 / 1946
  26317. }
  26318. },
  26319. },
  26320. [
  26321. {
  26322. name: "Normal",
  26323. height: math.unit(4 + 6 / 12, "feet"),
  26324. default: true
  26325. },
  26326. {
  26327. name: "Macro",
  26328. height: math.unit(40, "feet")
  26329. },
  26330. ]
  26331. ))
  26332. characterMakers.push(() => makeCharacter(
  26333. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26334. {
  26335. front: {
  26336. height: math.unit(2.1, "meters"),
  26337. weight: math.unit(200, "lb"),
  26338. name: "Front",
  26339. image: {
  26340. source: "./media/characters/the-lascivious/front.svg",
  26341. extra: 1 / 0.893,
  26342. bottom: 3.5 / 573.7
  26343. }
  26344. },
  26345. },
  26346. [
  26347. {
  26348. name: "Human Scale",
  26349. height: math.unit(2.1, "meters")
  26350. },
  26351. {
  26352. name: "Wolxi Scale",
  26353. height: math.unit(46.2, "m"),
  26354. default: true
  26355. },
  26356. {
  26357. name: "Boinker of Buildings",
  26358. height: math.unit(10, "km")
  26359. },
  26360. {
  26361. name: "Shagger of Skyscrapers",
  26362. height: math.unit(40, "km")
  26363. },
  26364. {
  26365. name: "Banger of Boroughs",
  26366. height: math.unit(4000, "km")
  26367. },
  26368. {
  26369. name: "Screwer of States",
  26370. height: math.unit(100000, "km")
  26371. },
  26372. {
  26373. name: "Pounder of Planets",
  26374. height: math.unit(2000000, "km")
  26375. },
  26376. ]
  26377. ))
  26378. characterMakers.push(() => makeCharacter(
  26379. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26380. {
  26381. front: {
  26382. height: math.unit(6, "feet"),
  26383. weight: math.unit(150, "lb"),
  26384. name: "Front",
  26385. image: {
  26386. source: "./media/characters/aj/front.svg",
  26387. extra: 2039 / 1562,
  26388. bottom: 40 / 2079
  26389. }
  26390. },
  26391. },
  26392. [
  26393. {
  26394. name: "Normal",
  26395. height: math.unit(11 + 6 / 12, "feet"),
  26396. default: true
  26397. },
  26398. {
  26399. name: "Megamacro",
  26400. height: math.unit(60, "megameters")
  26401. },
  26402. ]
  26403. ))
  26404. characterMakers.push(() => makeCharacter(
  26405. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26406. {
  26407. side: {
  26408. height: math.unit(31 + 8 / 12, "feet"),
  26409. weight: math.unit(75000, "kg"),
  26410. name: "Side",
  26411. image: {
  26412. source: "./media/characters/koros/side.svg",
  26413. extra: 1442 / 1297,
  26414. bottom: 122.7 / 1562
  26415. }
  26416. },
  26417. dicksKingsCrown: {
  26418. height: math.unit(6, "feet"),
  26419. name: "Dicks (King's Crown)",
  26420. image: {
  26421. source: "./media/characters/koros/dicks-kings-crown.svg"
  26422. }
  26423. },
  26424. dicksTailSet: {
  26425. height: math.unit(3, "feet"),
  26426. name: "Dicks (Tail Set)",
  26427. image: {
  26428. source: "./media/characters/koros/dicks-tail-set.svg"
  26429. }
  26430. },
  26431. dickCumming: {
  26432. height: math.unit(7.98, "feet"),
  26433. name: "Dick (Cumming)",
  26434. image: {
  26435. source: "./media/characters/koros/dick-cumming.svg"
  26436. }
  26437. },
  26438. dicksBack: {
  26439. height: math.unit(5.9, "feet"),
  26440. name: "Dicks (Back)",
  26441. image: {
  26442. source: "./media/characters/koros/dicks-back.svg"
  26443. }
  26444. },
  26445. dicksFront: {
  26446. height: math.unit(3.72, "feet"),
  26447. name: "Dicks (Front)",
  26448. image: {
  26449. source: "./media/characters/koros/dicks-front.svg"
  26450. }
  26451. },
  26452. dicksPeeking: {
  26453. height: math.unit(3.0, "feet"),
  26454. name: "Dicks (Peeking)",
  26455. image: {
  26456. source: "./media/characters/koros/dicks-peeking.svg"
  26457. }
  26458. },
  26459. eye: {
  26460. height: math.unit(1.7, "feet"),
  26461. name: "Eye",
  26462. image: {
  26463. source: "./media/characters/koros/eye.svg"
  26464. }
  26465. },
  26466. headFront: {
  26467. height: math.unit(11.69, "feet"),
  26468. name: "Head (Front)",
  26469. image: {
  26470. source: "./media/characters/koros/head-front.svg"
  26471. }
  26472. },
  26473. headSide: {
  26474. height: math.unit(14, "feet"),
  26475. name: "Head (Side)",
  26476. image: {
  26477. source: "./media/characters/koros/head-side.svg"
  26478. }
  26479. },
  26480. leg: {
  26481. height: math.unit(17, "feet"),
  26482. name: "Leg",
  26483. image: {
  26484. source: "./media/characters/koros/leg.svg"
  26485. }
  26486. },
  26487. mawSide: {
  26488. height: math.unit(12.8, "feet"),
  26489. name: "Maw (Side)",
  26490. image: {
  26491. source: "./media/characters/koros/maw-side.svg"
  26492. }
  26493. },
  26494. mawSpitting: {
  26495. height: math.unit(17, "feet"),
  26496. name: "Maw (Spitting)",
  26497. image: {
  26498. source: "./media/characters/koros/maw-spitting.svg"
  26499. }
  26500. },
  26501. slit: {
  26502. height: math.unit(2.8, "feet"),
  26503. name: "Slit",
  26504. image: {
  26505. source: "./media/characters/koros/slit.svg"
  26506. }
  26507. },
  26508. stomach: {
  26509. height: math.unit(6.8, "feet"),
  26510. capacity: math.unit(20, "people"),
  26511. name: "Stomach",
  26512. image: {
  26513. source: "./media/characters/koros/stomach.svg"
  26514. }
  26515. },
  26516. wingspanBottom: {
  26517. height: math.unit(114, "feet"),
  26518. name: "Wingspan (Bottom)",
  26519. image: {
  26520. source: "./media/characters/koros/wingspan-bottom.svg"
  26521. }
  26522. },
  26523. wingspanTop: {
  26524. height: math.unit(104, "feet"),
  26525. name: "Wingspan (Top)",
  26526. image: {
  26527. source: "./media/characters/koros/wingspan-top.svg"
  26528. }
  26529. },
  26530. },
  26531. [
  26532. {
  26533. name: "Normal",
  26534. height: math.unit(31 + 8 / 12, "feet"),
  26535. default: true
  26536. },
  26537. ]
  26538. ))
  26539. characterMakers.push(() => makeCharacter(
  26540. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26541. {
  26542. front: {
  26543. height: math.unit(18 + 5 / 12, "feet"),
  26544. weight: math.unit(3750, "kg"),
  26545. name: "Front",
  26546. image: {
  26547. source: "./media/characters/vexx/front.svg",
  26548. extra: 426 / 396,
  26549. bottom: 31.5 / 458
  26550. }
  26551. },
  26552. maw: {
  26553. height: math.unit(6, "feet"),
  26554. name: "Maw",
  26555. image: {
  26556. source: "./media/characters/vexx/maw.svg"
  26557. }
  26558. },
  26559. },
  26560. [
  26561. {
  26562. name: "Normal",
  26563. height: math.unit(18 + 5 / 12, "feet"),
  26564. default: true
  26565. },
  26566. ]
  26567. ))
  26568. characterMakers.push(() => makeCharacter(
  26569. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26570. {
  26571. front: {
  26572. height: math.unit(17 + 6 / 12, "feet"),
  26573. weight: math.unit(150, "lb"),
  26574. name: "Front",
  26575. image: {
  26576. source: "./media/characters/baadra/front.svg",
  26577. extra: 1694/1553,
  26578. bottom: 179/1873
  26579. }
  26580. },
  26581. frontAlt: {
  26582. height: math.unit(17 + 6 / 12, "feet"),
  26583. weight: math.unit(150, "lb"),
  26584. name: "Front (Alt)",
  26585. image: {
  26586. source: "./media/characters/baadra/front-alt.svg",
  26587. extra: 3137 / 2890,
  26588. bottom: 168.4 / 3305
  26589. }
  26590. },
  26591. back: {
  26592. height: math.unit(17 + 6 / 12, "feet"),
  26593. weight: math.unit(150, "lb"),
  26594. name: "Back",
  26595. image: {
  26596. source: "./media/characters/baadra/back.svg",
  26597. extra: 3142 / 2890,
  26598. bottom: 220 / 3371
  26599. }
  26600. },
  26601. head: {
  26602. height: math.unit(5.45, "feet"),
  26603. name: "Head",
  26604. image: {
  26605. source: "./media/characters/baadra/head.svg"
  26606. }
  26607. },
  26608. headAngry: {
  26609. height: math.unit(4.95, "feet"),
  26610. name: "Head (Angry)",
  26611. image: {
  26612. source: "./media/characters/baadra/head-angry.svg"
  26613. }
  26614. },
  26615. headOpen: {
  26616. height: math.unit(6, "feet"),
  26617. name: "Head (Open)",
  26618. image: {
  26619. source: "./media/characters/baadra/head-open.svg"
  26620. }
  26621. },
  26622. },
  26623. [
  26624. {
  26625. name: "Normal",
  26626. height: math.unit(17 + 6 / 12, "feet"),
  26627. default: true
  26628. },
  26629. ]
  26630. ))
  26631. characterMakers.push(() => makeCharacter(
  26632. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26633. {
  26634. front: {
  26635. height: math.unit(7 + 3 / 12, "feet"),
  26636. weight: math.unit(180, "lb"),
  26637. name: "Front",
  26638. image: {
  26639. source: "./media/characters/juri/front.svg",
  26640. extra: 1401 / 1237,
  26641. bottom: 18.5 / 1418
  26642. }
  26643. },
  26644. side: {
  26645. height: math.unit(7 + 3 / 12, "feet"),
  26646. weight: math.unit(180, "lb"),
  26647. name: "Side",
  26648. image: {
  26649. source: "./media/characters/juri/side.svg",
  26650. extra: 1424 / 1242,
  26651. bottom: 18.5 / 1447
  26652. }
  26653. },
  26654. sitting: {
  26655. height: math.unit(6, "feet"),
  26656. weight: math.unit(180, "lb"),
  26657. name: "Sitting",
  26658. image: {
  26659. source: "./media/characters/juri/sitting.svg",
  26660. extra: 1270 / 1143,
  26661. bottom: 100 / 1343
  26662. }
  26663. },
  26664. back: {
  26665. height: math.unit(7 + 3 / 12, "feet"),
  26666. weight: math.unit(180, "lb"),
  26667. name: "Back",
  26668. image: {
  26669. source: "./media/characters/juri/back.svg",
  26670. extra: 1377 / 1240,
  26671. bottom: 23.7 / 1405
  26672. }
  26673. },
  26674. maw: {
  26675. height: math.unit(2.8, "feet"),
  26676. name: "Maw",
  26677. image: {
  26678. source: "./media/characters/juri/maw.svg"
  26679. }
  26680. },
  26681. stomach: {
  26682. height: math.unit(0.89, "feet"),
  26683. capacity: math.unit(4, "liters"),
  26684. name: "Stomach",
  26685. image: {
  26686. source: "./media/characters/juri/stomach.svg"
  26687. }
  26688. },
  26689. },
  26690. [
  26691. {
  26692. name: "Normal",
  26693. height: math.unit(7 + 3 / 12, "feet"),
  26694. default: true
  26695. },
  26696. ]
  26697. ))
  26698. characterMakers.push(() => makeCharacter(
  26699. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26700. {
  26701. fox: {
  26702. height: math.unit(5 + 6 / 12, "feet"),
  26703. weight: math.unit(140, "lb"),
  26704. name: "Fox",
  26705. image: {
  26706. source: "./media/characters/maxene-sita/fox.svg",
  26707. extra: 146 / 138,
  26708. bottom: 2.1 / 148.19
  26709. }
  26710. },
  26711. foxLaying: {
  26712. height: math.unit(1.70, "feet"),
  26713. weight: math.unit(140, "lb"),
  26714. name: "Fox (Laying)",
  26715. image: {
  26716. source: "./media/characters/maxene-sita/fox-laying.svg",
  26717. extra: 910 / 572,
  26718. bottom: 71 / 981
  26719. }
  26720. },
  26721. kitsune: {
  26722. height: math.unit(10, "feet"),
  26723. weight: math.unit(800, "lb"),
  26724. name: "Kitsune",
  26725. image: {
  26726. source: "./media/characters/maxene-sita/kitsune.svg",
  26727. extra: 185 / 176,
  26728. bottom: 4.7 / 189.9
  26729. }
  26730. },
  26731. hellhound: {
  26732. height: math.unit(10, "feet"),
  26733. weight: math.unit(700, "lb"),
  26734. name: "Hellhound",
  26735. image: {
  26736. source: "./media/characters/maxene-sita/hellhound.svg",
  26737. extra: 1600 / 1545,
  26738. bottom: 81 / 1681
  26739. }
  26740. },
  26741. },
  26742. [
  26743. {
  26744. name: "Normal",
  26745. height: math.unit(5 + 6 / 12, "feet"),
  26746. default: true
  26747. },
  26748. ]
  26749. ))
  26750. characterMakers.push(() => makeCharacter(
  26751. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26752. {
  26753. front: {
  26754. height: math.unit(3 + 4 / 12, "feet"),
  26755. weight: math.unit(70, "lb"),
  26756. name: "Front",
  26757. image: {
  26758. source: "./media/characters/maia/front.svg",
  26759. extra: 227 / 219.5,
  26760. bottom: 40 / 267
  26761. }
  26762. },
  26763. back: {
  26764. height: math.unit(3 + 4 / 12, "feet"),
  26765. weight: math.unit(70, "lb"),
  26766. name: "Back",
  26767. image: {
  26768. source: "./media/characters/maia/back.svg",
  26769. extra: 237 / 225
  26770. }
  26771. },
  26772. },
  26773. [
  26774. {
  26775. name: "Normal",
  26776. height: math.unit(3 + 4 / 12, "feet"),
  26777. default: true
  26778. },
  26779. ]
  26780. ))
  26781. characterMakers.push(() => makeCharacter(
  26782. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26783. {
  26784. front: {
  26785. height: math.unit(5 + 10 / 12, "feet"),
  26786. weight: math.unit(197, "lb"),
  26787. name: "Front",
  26788. image: {
  26789. source: "./media/characters/jabaro/front.svg",
  26790. extra: 225 / 216,
  26791. bottom: 5.06 / 230
  26792. }
  26793. },
  26794. back: {
  26795. height: math.unit(5 + 10 / 12, "feet"),
  26796. weight: math.unit(197, "lb"),
  26797. name: "Back",
  26798. image: {
  26799. source: "./media/characters/jabaro/back.svg",
  26800. extra: 225 / 219,
  26801. bottom: 1.9 / 227
  26802. }
  26803. },
  26804. },
  26805. [
  26806. {
  26807. name: "Normal",
  26808. height: math.unit(5 + 10 / 12, "feet"),
  26809. default: true
  26810. },
  26811. ]
  26812. ))
  26813. characterMakers.push(() => makeCharacter(
  26814. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26815. {
  26816. front: {
  26817. height: math.unit(5 + 8 / 12, "feet"),
  26818. weight: math.unit(139, "lb"),
  26819. name: "Front",
  26820. image: {
  26821. source: "./media/characters/risa/front.svg",
  26822. extra: 270 / 260,
  26823. bottom: 11.2 / 282
  26824. }
  26825. },
  26826. back: {
  26827. height: math.unit(5 + 8 / 12, "feet"),
  26828. weight: math.unit(139, "lb"),
  26829. name: "Back",
  26830. image: {
  26831. source: "./media/characters/risa/back.svg",
  26832. extra: 264 / 255,
  26833. bottom: 4 / 268
  26834. }
  26835. },
  26836. },
  26837. [
  26838. {
  26839. name: "Normal",
  26840. height: math.unit(5 + 8 / 12, "feet"),
  26841. default: true
  26842. },
  26843. ]
  26844. ))
  26845. characterMakers.push(() => makeCharacter(
  26846. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26847. {
  26848. front: {
  26849. height: math.unit(2 + 11 / 12, "feet"),
  26850. weight: math.unit(30, "lb"),
  26851. name: "Front",
  26852. image: {
  26853. source: "./media/characters/weatley/front.svg",
  26854. bottom: 10.7 / 414,
  26855. extra: 403.5 / 362
  26856. }
  26857. },
  26858. back: {
  26859. height: math.unit(2 + 11 / 12, "feet"),
  26860. weight: math.unit(30, "lb"),
  26861. name: "Back",
  26862. image: {
  26863. source: "./media/characters/weatley/back.svg",
  26864. bottom: 10.7 / 414,
  26865. extra: 403.5 / 362
  26866. }
  26867. },
  26868. },
  26869. [
  26870. {
  26871. name: "Normal",
  26872. height: math.unit(2 + 11 / 12, "feet"),
  26873. default: true
  26874. },
  26875. ]
  26876. ))
  26877. characterMakers.push(() => makeCharacter(
  26878. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26879. {
  26880. front: {
  26881. height: math.unit(5 + 2 / 12, "feet"),
  26882. weight: math.unit(50, "kg"),
  26883. name: "Front",
  26884. image: {
  26885. source: "./media/characters/mercury-crescent/front.svg",
  26886. extra: 1088 / 1033,
  26887. bottom: 18.9 / 1109
  26888. }
  26889. },
  26890. },
  26891. [
  26892. {
  26893. name: "Normal",
  26894. height: math.unit(5 + 2 / 12, "feet"),
  26895. default: true
  26896. },
  26897. ]
  26898. ))
  26899. characterMakers.push(() => makeCharacter(
  26900. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26901. {
  26902. front: {
  26903. height: math.unit(2, "feet"),
  26904. weight: math.unit(15, "kg"),
  26905. name: "Front",
  26906. image: {
  26907. source: "./media/characters/diamond-jones/front.svg",
  26908. extra: 727/723,
  26909. bottom: 46/773
  26910. }
  26911. },
  26912. },
  26913. [
  26914. {
  26915. name: "Normal",
  26916. height: math.unit(2, "feet"),
  26917. default: true
  26918. },
  26919. ]
  26920. ))
  26921. characterMakers.push(() => makeCharacter(
  26922. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26923. {
  26924. front: {
  26925. height: math.unit(3, "feet"),
  26926. weight: math.unit(30, "kg"),
  26927. name: "Front",
  26928. image: {
  26929. source: "./media/characters/sweet-bit/front.svg",
  26930. extra: 675 / 567,
  26931. bottom: 27.7 / 703
  26932. }
  26933. },
  26934. },
  26935. [
  26936. {
  26937. name: "Normal",
  26938. height: math.unit(3, "feet"),
  26939. default: true
  26940. },
  26941. ]
  26942. ))
  26943. characterMakers.push(() => makeCharacter(
  26944. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26945. {
  26946. side: {
  26947. height: math.unit(9.178, "feet"),
  26948. weight: math.unit(500, "lb"),
  26949. name: "Side",
  26950. image: {
  26951. source: "./media/characters/umbrazen/side.svg",
  26952. extra: 1730 / 1473,
  26953. bottom: 34.6 / 1765
  26954. }
  26955. },
  26956. },
  26957. [
  26958. {
  26959. name: "Normal",
  26960. height: math.unit(9.178, "feet"),
  26961. default: true
  26962. },
  26963. ]
  26964. ))
  26965. characterMakers.push(() => makeCharacter(
  26966. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26967. {
  26968. front: {
  26969. height: math.unit(10, "feet"),
  26970. weight: math.unit(750, "lb"),
  26971. name: "Front",
  26972. image: {
  26973. source: "./media/characters/arlist/front.svg",
  26974. extra: 961 / 778,
  26975. bottom: 6.2 / 986
  26976. }
  26977. },
  26978. },
  26979. [
  26980. {
  26981. name: "Normal",
  26982. height: math.unit(10, "feet"),
  26983. default: true
  26984. },
  26985. ]
  26986. ))
  26987. characterMakers.push(() => makeCharacter(
  26988. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26989. {
  26990. front: {
  26991. height: math.unit(5 + 1 / 12, "feet"),
  26992. weight: math.unit(110, "lb"),
  26993. name: "Front",
  26994. image: {
  26995. source: "./media/characters/aradel/front.svg",
  26996. extra: 324 / 303,
  26997. bottom: 3.6 / 329.4
  26998. }
  26999. },
  27000. },
  27001. [
  27002. {
  27003. name: "Normal",
  27004. height: math.unit(5 + 1 / 12, "feet"),
  27005. default: true
  27006. },
  27007. ]
  27008. ))
  27009. characterMakers.push(() => makeCharacter(
  27010. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27011. {
  27012. dressed: {
  27013. height: math.unit(3 + 8 / 12, "feet"),
  27014. weight: math.unit(50, "lb"),
  27015. name: "Dressed",
  27016. image: {
  27017. source: "./media/characters/serryn/dressed.svg",
  27018. extra: 1792 / 1656,
  27019. bottom: 43.5 / 1840
  27020. }
  27021. },
  27022. nude: {
  27023. height: math.unit(3 + 8 / 12, "feet"),
  27024. weight: math.unit(50, "lb"),
  27025. name: "Nude",
  27026. image: {
  27027. source: "./media/characters/serryn/nude.svg",
  27028. extra: 1792 / 1656,
  27029. bottom: 43.5 / 1840
  27030. }
  27031. },
  27032. },
  27033. [
  27034. {
  27035. name: "Normal",
  27036. height: math.unit(3 + 8 / 12, "feet"),
  27037. default: true
  27038. },
  27039. ]
  27040. ))
  27041. characterMakers.push(() => makeCharacter(
  27042. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27043. {
  27044. front: {
  27045. height: math.unit(7 + 10 / 12, "feet"),
  27046. weight: math.unit(255, "lb"),
  27047. name: "Front",
  27048. image: {
  27049. source: "./media/characters/xavier-thyme/front.svg",
  27050. extra: 3733 / 3642,
  27051. bottom: 131 / 3869
  27052. }
  27053. },
  27054. frontRaven: {
  27055. height: math.unit(7 + 10 / 12, "feet"),
  27056. weight: math.unit(255, "lb"),
  27057. name: "Front (Raven)",
  27058. image: {
  27059. source: "./media/characters/xavier-thyme/front-raven.svg",
  27060. extra: 4385 / 3642,
  27061. bottom: 131 / 4517
  27062. }
  27063. },
  27064. },
  27065. [
  27066. {
  27067. name: "Normal",
  27068. height: math.unit(7 + 10 / 12, "feet"),
  27069. default: true
  27070. },
  27071. ]
  27072. ))
  27073. characterMakers.push(() => makeCharacter(
  27074. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27075. {
  27076. front: {
  27077. height: math.unit(1.6, "m"),
  27078. weight: math.unit(50, "kg"),
  27079. name: "Front",
  27080. image: {
  27081. source: "./media/characters/kiki/front.svg",
  27082. extra: 4682 / 3610,
  27083. bottom: 115 / 4777
  27084. }
  27085. },
  27086. },
  27087. [
  27088. {
  27089. name: "Normal",
  27090. height: math.unit(1.6, "meters"),
  27091. default: true
  27092. },
  27093. ]
  27094. ))
  27095. characterMakers.push(() => makeCharacter(
  27096. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27097. {
  27098. front: {
  27099. height: math.unit(50, "m"),
  27100. weight: math.unit(500, "tonnes"),
  27101. name: "Front",
  27102. image: {
  27103. source: "./media/characters/ryoko/front.svg",
  27104. extra: 4632 / 3926,
  27105. bottom: 193 / 4823
  27106. }
  27107. },
  27108. },
  27109. [
  27110. {
  27111. name: "Normal",
  27112. height: math.unit(50, "meters"),
  27113. default: true
  27114. },
  27115. ]
  27116. ))
  27117. characterMakers.push(() => makeCharacter(
  27118. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27119. {
  27120. front: {
  27121. height: math.unit(30, "m"),
  27122. weight: math.unit(22, "tonnes"),
  27123. name: "Front",
  27124. image: {
  27125. source: "./media/characters/elio/front.svg",
  27126. extra: 4582 / 3720,
  27127. bottom: 236 / 4828
  27128. }
  27129. },
  27130. },
  27131. [
  27132. {
  27133. name: "Normal",
  27134. height: math.unit(30, "meters"),
  27135. default: true
  27136. },
  27137. ]
  27138. ))
  27139. characterMakers.push(() => makeCharacter(
  27140. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27141. {
  27142. front: {
  27143. height: math.unit(6 + 3 / 12, "feet"),
  27144. weight: math.unit(120, "lb"),
  27145. name: "Front",
  27146. image: {
  27147. source: "./media/characters/azura/front.svg",
  27148. extra: 1149 / 1135,
  27149. bottom: 45 / 1194
  27150. }
  27151. },
  27152. frontClothed: {
  27153. height: math.unit(6 + 3 / 12, "feet"),
  27154. weight: math.unit(120, "lb"),
  27155. name: "Front (Clothed)",
  27156. image: {
  27157. source: "./media/characters/azura/front-clothed.svg",
  27158. extra: 1149 / 1135,
  27159. bottom: 45 / 1194
  27160. }
  27161. },
  27162. },
  27163. [
  27164. {
  27165. name: "Normal",
  27166. height: math.unit(6 + 3 / 12, "feet"),
  27167. default: true
  27168. },
  27169. {
  27170. name: "Macro",
  27171. height: math.unit(20 + 6 / 12, "feet")
  27172. },
  27173. {
  27174. name: "Megamacro",
  27175. height: math.unit(12, "miles")
  27176. },
  27177. {
  27178. name: "Gigamacro",
  27179. height: math.unit(10000, "miles")
  27180. },
  27181. {
  27182. name: "Teramacro",
  27183. height: math.unit(900000, "miles")
  27184. },
  27185. ]
  27186. ))
  27187. characterMakers.push(() => makeCharacter(
  27188. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27189. {
  27190. front: {
  27191. height: math.unit(12, "feet"),
  27192. weight: math.unit(1, "ton"),
  27193. capacity: math.unit(660000, "gallons"),
  27194. name: "Front",
  27195. image: {
  27196. source: "./media/characters/zeus/front.svg",
  27197. extra: 5005 / 4717,
  27198. bottom: 363 / 5388
  27199. }
  27200. },
  27201. },
  27202. [
  27203. {
  27204. name: "Normal",
  27205. height: math.unit(12, "feet")
  27206. },
  27207. {
  27208. name: "Preferred Size",
  27209. height: math.unit(0.5, "miles"),
  27210. default: true
  27211. },
  27212. {
  27213. name: "Giga Horse",
  27214. height: math.unit(300, "miles")
  27215. },
  27216. {
  27217. name: "Riding Planets",
  27218. height: math.unit(30, "megameters")
  27219. },
  27220. {
  27221. name: "Cosmic Giant",
  27222. height: math.unit(3, "zettameters")
  27223. },
  27224. {
  27225. name: "Breeding God",
  27226. height: math.unit(9.92e22, "yottameters")
  27227. },
  27228. ]
  27229. ))
  27230. characterMakers.push(() => makeCharacter(
  27231. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27232. {
  27233. side: {
  27234. height: math.unit(9, "feet"),
  27235. weight: math.unit(1500, "kg"),
  27236. name: "Side",
  27237. image: {
  27238. source: "./media/characters/fang/side.svg",
  27239. extra: 924 / 866,
  27240. bottom: 47.5 / 972.3
  27241. }
  27242. },
  27243. },
  27244. [
  27245. {
  27246. name: "Normal",
  27247. height: math.unit(9, "feet"),
  27248. default: true
  27249. },
  27250. {
  27251. name: "Macro",
  27252. height: math.unit(75 + 6 / 12, "feet")
  27253. },
  27254. {
  27255. name: "Teramacro",
  27256. height: math.unit(50000, "miles")
  27257. },
  27258. ]
  27259. ))
  27260. characterMakers.push(() => makeCharacter(
  27261. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27262. {
  27263. front: {
  27264. height: math.unit(10, "feet"),
  27265. weight: math.unit(2, "tons"),
  27266. name: "Front",
  27267. image: {
  27268. source: "./media/characters/rekhit/front.svg",
  27269. extra: 2796 / 2590,
  27270. bottom: 225 / 3022
  27271. }
  27272. },
  27273. },
  27274. [
  27275. {
  27276. name: "Normal",
  27277. height: math.unit(10, "feet"),
  27278. default: true
  27279. },
  27280. {
  27281. name: "Macro",
  27282. height: math.unit(500, "feet")
  27283. },
  27284. ]
  27285. ))
  27286. characterMakers.push(() => makeCharacter(
  27287. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27288. {
  27289. front: {
  27290. height: math.unit(7 + 6.451 / 12, "feet"),
  27291. weight: math.unit(310, "lb"),
  27292. name: "Front",
  27293. image: {
  27294. source: "./media/characters/dahlia-verrick/front.svg",
  27295. extra: 1488 / 1365,
  27296. bottom: 6.2 / 1495
  27297. }
  27298. },
  27299. back: {
  27300. height: math.unit(7 + 6.451 / 12, "feet"),
  27301. weight: math.unit(310, "lb"),
  27302. name: "Back",
  27303. image: {
  27304. source: "./media/characters/dahlia-verrick/back.svg",
  27305. extra: 1472 / 1351,
  27306. bottom: 5.28 / 1477
  27307. }
  27308. },
  27309. frontBusiness: {
  27310. height: math.unit(7 + 6.451 / 12, "feet"),
  27311. weight: math.unit(200, "lb"),
  27312. name: "Front (Business)",
  27313. image: {
  27314. source: "./media/characters/dahlia-verrick/front-business.svg",
  27315. extra: 1478 / 1381,
  27316. bottom: 5.5 / 1484
  27317. }
  27318. },
  27319. frontCasual: {
  27320. height: math.unit(7 + 6.451 / 12, "feet"),
  27321. weight: math.unit(200, "lb"),
  27322. name: "Front (Casual)",
  27323. image: {
  27324. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27325. extra: 1478 / 1381,
  27326. bottom: 5.5 / 1484
  27327. }
  27328. },
  27329. },
  27330. [
  27331. {
  27332. name: "Travel-Sized",
  27333. height: math.unit(7.45, "inches")
  27334. },
  27335. {
  27336. name: "Normal",
  27337. height: math.unit(7 + 6.451 / 12, "feet"),
  27338. default: true
  27339. },
  27340. {
  27341. name: "Hitting the Town",
  27342. height: math.unit(37 + 8 / 12, "feet")
  27343. },
  27344. {
  27345. name: "Stomp in the Suburbs",
  27346. height: math.unit(964 + 9.728 / 12, "feet")
  27347. },
  27348. {
  27349. name: "Sit on the City",
  27350. height: math.unit(61747 + 10.592 / 12, "feet")
  27351. },
  27352. {
  27353. name: "Glomp the Globe",
  27354. height: math.unit(252919327 + 4.832 / 12, "feet")
  27355. },
  27356. ]
  27357. ))
  27358. characterMakers.push(() => makeCharacter(
  27359. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27360. {
  27361. front: {
  27362. height: math.unit(6 + 4 / 12, "feet"),
  27363. weight: math.unit(320, "lb"),
  27364. name: "Front",
  27365. image: {
  27366. source: "./media/characters/balina-mahigan/front.svg",
  27367. extra: 447 / 428,
  27368. bottom: 18 / 466
  27369. }
  27370. },
  27371. back: {
  27372. height: math.unit(6 + 4 / 12, "feet"),
  27373. weight: math.unit(320, "lb"),
  27374. name: "Back",
  27375. image: {
  27376. source: "./media/characters/balina-mahigan/back.svg",
  27377. extra: 445 / 428,
  27378. bottom: 4.07 / 448
  27379. }
  27380. },
  27381. arm: {
  27382. height: math.unit(1.88, "feet"),
  27383. name: "Arm",
  27384. image: {
  27385. source: "./media/characters/balina-mahigan/arm.svg"
  27386. }
  27387. },
  27388. backPort: {
  27389. height: math.unit(0.685, "feet"),
  27390. name: "Back Port",
  27391. image: {
  27392. source: "./media/characters/balina-mahigan/back-port.svg"
  27393. }
  27394. },
  27395. hoofpaw: {
  27396. height: math.unit(1.41, "feet"),
  27397. name: "Hoofpaw",
  27398. image: {
  27399. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27400. }
  27401. },
  27402. leftHandBack: {
  27403. height: math.unit(0.938, "feet"),
  27404. name: "Left Hand (Back)",
  27405. image: {
  27406. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27407. }
  27408. },
  27409. leftHandFront: {
  27410. height: math.unit(0.938, "feet"),
  27411. name: "Left Hand (Front)",
  27412. image: {
  27413. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27414. }
  27415. },
  27416. rightHandBack: {
  27417. height: math.unit(0.95, "feet"),
  27418. name: "Right Hand (Back)",
  27419. image: {
  27420. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27421. }
  27422. },
  27423. rightHandFront: {
  27424. height: math.unit(0.95, "feet"),
  27425. name: "Right Hand (Front)",
  27426. image: {
  27427. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27428. }
  27429. },
  27430. },
  27431. [
  27432. {
  27433. name: "Normal",
  27434. height: math.unit(6 + 4 / 12, "feet"),
  27435. default: true
  27436. },
  27437. ]
  27438. ))
  27439. characterMakers.push(() => makeCharacter(
  27440. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27441. {
  27442. front: {
  27443. height: math.unit(6, "feet"),
  27444. weight: math.unit(320, "lb"),
  27445. name: "Front",
  27446. image: {
  27447. source: "./media/characters/balina-mejeri/front.svg",
  27448. extra: 517 / 488,
  27449. bottom: 44.2 / 561
  27450. }
  27451. },
  27452. },
  27453. [
  27454. {
  27455. name: "Normal",
  27456. height: math.unit(6 + 4 / 12, "feet")
  27457. },
  27458. {
  27459. name: "Business",
  27460. height: math.unit(155, "feet"),
  27461. default: true
  27462. },
  27463. ]
  27464. ))
  27465. characterMakers.push(() => makeCharacter(
  27466. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27467. {
  27468. kneeling: {
  27469. height: math.unit(6 + 4 / 12, "feet"),
  27470. weight: math.unit(300 * 20, "lb"),
  27471. name: "Kneeling",
  27472. image: {
  27473. source: "./media/characters/balbarian/kneeling.svg",
  27474. extra: 922 / 862,
  27475. bottom: 42.4 / 965
  27476. }
  27477. },
  27478. },
  27479. [
  27480. {
  27481. name: "Normal",
  27482. height: math.unit(6 + 4 / 12, "feet")
  27483. },
  27484. {
  27485. name: "Treasured",
  27486. height: math.unit(18 + 9 / 12, "feet"),
  27487. default: true
  27488. },
  27489. {
  27490. name: "Macro",
  27491. height: math.unit(900, "feet")
  27492. },
  27493. ]
  27494. ))
  27495. characterMakers.push(() => makeCharacter(
  27496. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27497. {
  27498. front: {
  27499. height: math.unit(6 + 4 / 12, "feet"),
  27500. weight: math.unit(325, "lb"),
  27501. name: "Front",
  27502. image: {
  27503. source: "./media/characters/balina-amarini/front.svg",
  27504. extra: 415 / 403,
  27505. bottom: 19 / 433.4
  27506. }
  27507. },
  27508. back: {
  27509. height: math.unit(6 + 4 / 12, "feet"),
  27510. weight: math.unit(325, "lb"),
  27511. name: "Back",
  27512. image: {
  27513. source: "./media/characters/balina-amarini/back.svg",
  27514. extra: 415 / 403,
  27515. bottom: 13.5 / 432
  27516. }
  27517. },
  27518. overdrive: {
  27519. height: math.unit(6 + 4 / 12, "feet"),
  27520. weight: math.unit(400, "lb"),
  27521. name: "Overdrive",
  27522. image: {
  27523. source: "./media/characters/balina-amarini/overdrive.svg",
  27524. extra: 269 / 259,
  27525. bottom: 12 / 282
  27526. }
  27527. },
  27528. },
  27529. [
  27530. {
  27531. name: "Boom",
  27532. height: math.unit(9 + 10 / 12, "feet"),
  27533. default: true
  27534. },
  27535. {
  27536. name: "Macro",
  27537. height: math.unit(280, "feet")
  27538. },
  27539. ]
  27540. ))
  27541. characterMakers.push(() => makeCharacter(
  27542. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27543. {
  27544. goddess: {
  27545. height: math.unit(600, "feet"),
  27546. weight: math.unit(2000000, "tons"),
  27547. name: "Goddess",
  27548. image: {
  27549. source: "./media/characters/lady-kubwa/goddess.svg",
  27550. extra: 1240.5 / 1223,
  27551. bottom: 22 / 1263
  27552. }
  27553. },
  27554. goddesser: {
  27555. height: math.unit(900, "feet"),
  27556. weight: math.unit(20000000, "lb"),
  27557. name: "Goddess-er",
  27558. image: {
  27559. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27560. extra: 899 / 888,
  27561. bottom: 12.6 / 912
  27562. }
  27563. },
  27564. },
  27565. [
  27566. {
  27567. name: "Macro",
  27568. height: math.unit(600, "feet"),
  27569. default: true
  27570. },
  27571. {
  27572. name: "Megamacro",
  27573. height: math.unit(250, "miles")
  27574. },
  27575. ]
  27576. ))
  27577. characterMakers.push(() => makeCharacter(
  27578. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27579. {
  27580. front: {
  27581. height: math.unit(7 + 7 / 12, "feet"),
  27582. weight: math.unit(250, "lb"),
  27583. name: "Front",
  27584. image: {
  27585. source: "./media/characters/tala-grovehorn/front.svg",
  27586. extra: 2636 / 2525,
  27587. bottom: 147 / 2781
  27588. }
  27589. },
  27590. back: {
  27591. height: math.unit(7 + 7 / 12, "feet"),
  27592. weight: math.unit(250, "lb"),
  27593. name: "Back",
  27594. image: {
  27595. source: "./media/characters/tala-grovehorn/back.svg",
  27596. extra: 2635 / 2539,
  27597. bottom: 100 / 2732.8
  27598. }
  27599. },
  27600. mouth: {
  27601. height: math.unit(1.15, "feet"),
  27602. name: "Mouth",
  27603. image: {
  27604. source: "./media/characters/tala-grovehorn/mouth.svg"
  27605. }
  27606. },
  27607. dick: {
  27608. height: math.unit(2.36, "feet"),
  27609. name: "Dick",
  27610. image: {
  27611. source: "./media/characters/tala-grovehorn/dick.svg"
  27612. }
  27613. },
  27614. slit: {
  27615. height: math.unit(0.61, "feet"),
  27616. name: "Slit",
  27617. image: {
  27618. source: "./media/characters/tala-grovehorn/slit.svg"
  27619. }
  27620. },
  27621. },
  27622. [
  27623. ]
  27624. ))
  27625. characterMakers.push(() => makeCharacter(
  27626. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27627. {
  27628. front: {
  27629. height: math.unit(7 + 7 / 12, "feet"),
  27630. weight: math.unit(225, "lb"),
  27631. name: "Front",
  27632. image: {
  27633. source: "./media/characters/epona/front.svg",
  27634. extra: 2445 / 2290,
  27635. bottom: 251 / 2696
  27636. }
  27637. },
  27638. back: {
  27639. height: math.unit(7 + 7 / 12, "feet"),
  27640. weight: math.unit(225, "lb"),
  27641. name: "Back",
  27642. image: {
  27643. source: "./media/characters/epona/back.svg",
  27644. extra: 2546 / 2408,
  27645. bottom: 44 / 2589
  27646. }
  27647. },
  27648. genitals: {
  27649. height: math.unit(1.5, "feet"),
  27650. name: "Genitals",
  27651. image: {
  27652. source: "./media/characters/epona/genitals.svg"
  27653. }
  27654. },
  27655. },
  27656. [
  27657. {
  27658. name: "Normal",
  27659. height: math.unit(7 + 7 / 12, "feet"),
  27660. default: true
  27661. },
  27662. ]
  27663. ))
  27664. characterMakers.push(() => makeCharacter(
  27665. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27666. {
  27667. front: {
  27668. height: math.unit(7, "feet"),
  27669. weight: math.unit(518, "lb"),
  27670. name: "Front",
  27671. image: {
  27672. source: "./media/characters/avia-bloodbourn/front.svg",
  27673. extra: 1466 / 1350,
  27674. bottom: 65 / 1527
  27675. }
  27676. },
  27677. },
  27678. [
  27679. ]
  27680. ))
  27681. characterMakers.push(() => makeCharacter(
  27682. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27683. {
  27684. front: {
  27685. height: math.unit(9.35, "feet"),
  27686. weight: math.unit(600, "lb"),
  27687. name: "Front",
  27688. image: {
  27689. source: "./media/characters/amera/front.svg",
  27690. extra: 891 / 818,
  27691. bottom: 30 / 922.7
  27692. }
  27693. },
  27694. back: {
  27695. height: math.unit(9.35, "feet"),
  27696. weight: math.unit(600, "lb"),
  27697. name: "Back",
  27698. image: {
  27699. source: "./media/characters/amera/back.svg",
  27700. extra: 876 / 824,
  27701. bottom: 6.8 / 884
  27702. }
  27703. },
  27704. dick: {
  27705. height: math.unit(2.14, "feet"),
  27706. name: "Dick",
  27707. image: {
  27708. source: "./media/characters/amera/dick.svg"
  27709. }
  27710. },
  27711. },
  27712. [
  27713. {
  27714. name: "Normal",
  27715. height: math.unit(9.35, "feet"),
  27716. default: true
  27717. },
  27718. ]
  27719. ))
  27720. characterMakers.push(() => makeCharacter(
  27721. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27722. {
  27723. kneeling: {
  27724. height: math.unit(3 + 4 / 12, "feet"),
  27725. weight: math.unit(90, "lb"),
  27726. name: "Kneeling",
  27727. image: {
  27728. source: "./media/characters/rosewen/kneeling.svg",
  27729. extra: 1835 / 1571,
  27730. bottom: 27.7 / 1862
  27731. }
  27732. },
  27733. },
  27734. [
  27735. {
  27736. name: "Normal",
  27737. height: math.unit(3 + 4 / 12, "feet"),
  27738. default: true
  27739. },
  27740. ]
  27741. ))
  27742. characterMakers.push(() => makeCharacter(
  27743. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27744. {
  27745. front: {
  27746. height: math.unit(5 + 10 / 12, "feet"),
  27747. weight: math.unit(200, "lb"),
  27748. name: "Front",
  27749. image: {
  27750. source: "./media/characters/sabah/front.svg",
  27751. extra: 849 / 763,
  27752. bottom: 33.9 / 881
  27753. }
  27754. },
  27755. },
  27756. [
  27757. {
  27758. name: "Normal",
  27759. height: math.unit(5 + 10 / 12, "feet"),
  27760. default: true
  27761. },
  27762. ]
  27763. ))
  27764. characterMakers.push(() => makeCharacter(
  27765. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27766. {
  27767. front: {
  27768. height: math.unit(3 + 5 / 12, "feet"),
  27769. weight: math.unit(40, "kg"),
  27770. name: "Front",
  27771. image: {
  27772. source: "./media/characters/purple-flame/front.svg",
  27773. extra: 1577 / 1412,
  27774. bottom: 97 / 1694
  27775. }
  27776. },
  27777. frontDressed: {
  27778. height: math.unit(3 + 5 / 12, "feet"),
  27779. weight: math.unit(40, "kg"),
  27780. name: "Front (Dressed)",
  27781. image: {
  27782. source: "./media/characters/purple-flame/front-dressed.svg",
  27783. extra: 1577 / 1412,
  27784. bottom: 97 / 1694
  27785. }
  27786. },
  27787. headphones: {
  27788. height: math.unit(0.85, "feet"),
  27789. name: "Headphones",
  27790. image: {
  27791. source: "./media/characters/purple-flame/headphones.svg"
  27792. }
  27793. },
  27794. },
  27795. [
  27796. {
  27797. name: "Really Small",
  27798. height: math.unit(5, "cm")
  27799. },
  27800. {
  27801. name: "Micro",
  27802. height: math.unit(1 + 5 / 12, "feet")
  27803. },
  27804. {
  27805. name: "Normal",
  27806. height: math.unit(3 + 5 / 12, "feet"),
  27807. default: true
  27808. },
  27809. {
  27810. name: "Minimacro",
  27811. height: math.unit(125, "feet")
  27812. },
  27813. {
  27814. name: "Macro",
  27815. height: math.unit(0.5, "miles")
  27816. },
  27817. {
  27818. name: "Megamacro",
  27819. height: math.unit(50, "miles")
  27820. },
  27821. {
  27822. name: "Gigantic",
  27823. height: math.unit(750, "miles")
  27824. },
  27825. {
  27826. name: "Planetary",
  27827. height: math.unit(15000, "miles")
  27828. },
  27829. ]
  27830. ))
  27831. characterMakers.push(() => makeCharacter(
  27832. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27833. {
  27834. front: {
  27835. height: math.unit(14, "feet"),
  27836. weight: math.unit(959, "lb"),
  27837. name: "Front",
  27838. image: {
  27839. source: "./media/characters/arsenal/front.svg",
  27840. extra: 2357 / 2157,
  27841. bottom: 93 / 2458
  27842. }
  27843. },
  27844. },
  27845. [
  27846. {
  27847. name: "Normal",
  27848. height: math.unit(14, "feet"),
  27849. default: true
  27850. },
  27851. ]
  27852. ))
  27853. characterMakers.push(() => makeCharacter(
  27854. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27855. {
  27856. front: {
  27857. height: math.unit(6, "feet"),
  27858. weight: math.unit(150, "lb"),
  27859. name: "Front",
  27860. image: {
  27861. source: "./media/characters/adira/front.svg",
  27862. extra: 1078 / 1029,
  27863. bottom: 87 / 1166
  27864. }
  27865. },
  27866. },
  27867. [
  27868. {
  27869. name: "Micro",
  27870. height: math.unit(4, "inches"),
  27871. default: true
  27872. },
  27873. {
  27874. name: "Macro",
  27875. height: math.unit(50, "feet")
  27876. },
  27877. ]
  27878. ))
  27879. characterMakers.push(() => makeCharacter(
  27880. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27881. {
  27882. front: {
  27883. height: math.unit(16, "feet"),
  27884. weight: math.unit(1000, "lb"),
  27885. name: "Front",
  27886. image: {
  27887. source: "./media/characters/grim/front.svg",
  27888. extra: 622 / 614,
  27889. bottom: 18.1 / 642
  27890. }
  27891. },
  27892. back: {
  27893. height: math.unit(16, "feet"),
  27894. weight: math.unit(1000, "lb"),
  27895. name: "Back",
  27896. image: {
  27897. source: "./media/characters/grim/back.svg",
  27898. extra: 610.6 / 602,
  27899. bottom: 40.8 / 652
  27900. }
  27901. },
  27902. hunched: {
  27903. height: math.unit(9.75, "feet"),
  27904. weight: math.unit(1000, "lb"),
  27905. name: "Hunched",
  27906. image: {
  27907. source: "./media/characters/grim/hunched.svg",
  27908. extra: 304 / 297,
  27909. bottom: 35.4 / 394
  27910. }
  27911. },
  27912. },
  27913. [
  27914. {
  27915. name: "Normal",
  27916. height: math.unit(16, "feet"),
  27917. default: true
  27918. },
  27919. ]
  27920. ))
  27921. characterMakers.push(() => makeCharacter(
  27922. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27923. {
  27924. front: {
  27925. height: math.unit(2.3, "meters"),
  27926. weight: math.unit(300, "lb"),
  27927. name: "Front",
  27928. image: {
  27929. source: "./media/characters/sinja/front-sfw.svg",
  27930. extra: 1393 / 1294,
  27931. bottom: 70 / 1463
  27932. }
  27933. },
  27934. frontNsfw: {
  27935. height: math.unit(2.3, "meters"),
  27936. weight: math.unit(300, "lb"),
  27937. name: "Front (NSFW)",
  27938. image: {
  27939. source: "./media/characters/sinja/front-nsfw.svg",
  27940. extra: 1393 / 1294,
  27941. bottom: 70 / 1463
  27942. }
  27943. },
  27944. back: {
  27945. height: math.unit(2.3, "meters"),
  27946. weight: math.unit(300, "lb"),
  27947. name: "Back",
  27948. image: {
  27949. source: "./media/characters/sinja/back.svg",
  27950. extra: 1393 / 1294,
  27951. bottom: 70 / 1463
  27952. }
  27953. },
  27954. head: {
  27955. height: math.unit(1.771, "feet"),
  27956. name: "Head",
  27957. image: {
  27958. source: "./media/characters/sinja/head.svg"
  27959. }
  27960. },
  27961. slit: {
  27962. height: math.unit(0.8, "feet"),
  27963. name: "Slit",
  27964. image: {
  27965. source: "./media/characters/sinja/slit.svg"
  27966. }
  27967. },
  27968. },
  27969. [
  27970. {
  27971. name: "Normal",
  27972. height: math.unit(2.3, "meters")
  27973. },
  27974. {
  27975. name: "Macro",
  27976. height: math.unit(91, "meters"),
  27977. default: true
  27978. },
  27979. {
  27980. name: "Megamacro",
  27981. height: math.unit(91440, "meters")
  27982. },
  27983. {
  27984. name: "Gigamacro",
  27985. height: math.unit(60960000, "meters")
  27986. },
  27987. {
  27988. name: "Teramacro",
  27989. height: math.unit(9144000000, "meters")
  27990. },
  27991. ]
  27992. ))
  27993. characterMakers.push(() => makeCharacter(
  27994. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27995. {
  27996. front: {
  27997. height: math.unit(1.7, "meters"),
  27998. weight: math.unit(130, "lb"),
  27999. name: "Front",
  28000. image: {
  28001. source: "./media/characters/kyu/front.svg",
  28002. extra: 415 / 395,
  28003. bottom: 5 / 420
  28004. }
  28005. },
  28006. head: {
  28007. height: math.unit(1.75, "feet"),
  28008. name: "Head",
  28009. image: {
  28010. source: "./media/characters/kyu/head.svg"
  28011. }
  28012. },
  28013. foot: {
  28014. height: math.unit(0.81, "feet"),
  28015. name: "Foot",
  28016. image: {
  28017. source: "./media/characters/kyu/foot.svg"
  28018. }
  28019. },
  28020. },
  28021. [
  28022. {
  28023. name: "Normal",
  28024. height: math.unit(1.7, "meters")
  28025. },
  28026. {
  28027. name: "Macro",
  28028. height: math.unit(131, "feet"),
  28029. default: true
  28030. },
  28031. {
  28032. name: "Megamacro",
  28033. height: math.unit(91440, "meters")
  28034. },
  28035. {
  28036. name: "Gigamacro",
  28037. height: math.unit(60960000, "meters")
  28038. },
  28039. {
  28040. name: "Teramacro",
  28041. height: math.unit(9144000000, "meters")
  28042. },
  28043. ]
  28044. ))
  28045. characterMakers.push(() => makeCharacter(
  28046. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28047. {
  28048. front: {
  28049. height: math.unit(7 + 1 / 12, "feet"),
  28050. weight: math.unit(250, "lb"),
  28051. name: "Front",
  28052. image: {
  28053. source: "./media/characters/joey/front.svg",
  28054. extra: 1791 / 1537,
  28055. bottom: 28 / 1816
  28056. }
  28057. },
  28058. },
  28059. [
  28060. {
  28061. name: "Micro",
  28062. height: math.unit(3, "inches")
  28063. },
  28064. {
  28065. name: "Normal",
  28066. height: math.unit(7 + 1 / 12, "feet"),
  28067. default: true
  28068. },
  28069. ]
  28070. ))
  28071. characterMakers.push(() => makeCharacter(
  28072. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28073. {
  28074. front: {
  28075. height: math.unit(165, "cm"),
  28076. weight: math.unit(140, "lb"),
  28077. name: "Front",
  28078. image: {
  28079. source: "./media/characters/sam-evans/front.svg",
  28080. extra: 3417 / 3230,
  28081. bottom: 41.3 / 3417
  28082. }
  28083. },
  28084. frontSixTails: {
  28085. height: math.unit(165, "cm"),
  28086. weight: math.unit(140, "lb"),
  28087. name: "Front-six-tails",
  28088. image: {
  28089. source: "./media/characters/sam-evans/front-six-tails.svg",
  28090. extra: 3417 / 3230,
  28091. bottom: 41.3 / 3417
  28092. }
  28093. },
  28094. back: {
  28095. height: math.unit(165, "cm"),
  28096. weight: math.unit(140, "lb"),
  28097. name: "Back",
  28098. image: {
  28099. source: "./media/characters/sam-evans/back.svg",
  28100. extra: 3227 / 3032,
  28101. bottom: 6.8 / 3234
  28102. }
  28103. },
  28104. face: {
  28105. height: math.unit(0.68, "feet"),
  28106. name: "Face",
  28107. image: {
  28108. source: "./media/characters/sam-evans/face.svg"
  28109. }
  28110. },
  28111. },
  28112. [
  28113. {
  28114. name: "Normal",
  28115. height: math.unit(165, "cm"),
  28116. default: true
  28117. },
  28118. {
  28119. name: "Macro",
  28120. height: math.unit(100, "meters")
  28121. },
  28122. {
  28123. name: "Macro+",
  28124. height: math.unit(800, "meters")
  28125. },
  28126. {
  28127. name: "Macro++",
  28128. height: math.unit(3, "km")
  28129. },
  28130. {
  28131. name: "Macro+++",
  28132. height: math.unit(30, "km")
  28133. },
  28134. ]
  28135. ))
  28136. characterMakers.push(() => makeCharacter(
  28137. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28138. {
  28139. front: {
  28140. height: math.unit(10, "feet"),
  28141. weight: math.unit(750, "lb"),
  28142. name: "Front",
  28143. image: {
  28144. source: "./media/characters/juliet-a/front.svg",
  28145. extra: 1766 / 1720,
  28146. bottom: 43 / 1809
  28147. }
  28148. },
  28149. back: {
  28150. height: math.unit(10, "feet"),
  28151. weight: math.unit(750, "lb"),
  28152. name: "Back",
  28153. image: {
  28154. source: "./media/characters/juliet-a/back.svg",
  28155. extra: 1781 / 1734,
  28156. bottom: 35 / 1810,
  28157. }
  28158. },
  28159. },
  28160. [
  28161. {
  28162. name: "Normal",
  28163. height: math.unit(10, "feet"),
  28164. default: true
  28165. },
  28166. {
  28167. name: "Dragon Form",
  28168. height: math.unit(250, "feet")
  28169. },
  28170. {
  28171. name: "Macro",
  28172. height: math.unit(1000, "feet")
  28173. },
  28174. {
  28175. name: "Megamacro",
  28176. height: math.unit(10000, "feet")
  28177. }
  28178. ]
  28179. ))
  28180. characterMakers.push(() => makeCharacter(
  28181. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28182. {
  28183. regular: {
  28184. height: math.unit(7 + 3 / 12, "feet"),
  28185. weight: math.unit(260, "lb"),
  28186. name: "Regular",
  28187. image: {
  28188. source: "./media/characters/wild/regular.svg",
  28189. extra: 97.45 / 92,
  28190. bottom: 6.8 / 104.3
  28191. }
  28192. },
  28193. biggums: {
  28194. height: math.unit(8 + 6 / 12, "feet"),
  28195. weight: math.unit(425, "lb"),
  28196. name: "Biggums",
  28197. image: {
  28198. source: "./media/characters/wild/biggums.svg",
  28199. extra: 97.45 / 92,
  28200. bottom: 7.5 / 132.34
  28201. }
  28202. },
  28203. mawRegular: {
  28204. height: math.unit(1.24, "feet"),
  28205. name: "Maw (Regular)",
  28206. image: {
  28207. source: "./media/characters/wild/maw.svg"
  28208. }
  28209. },
  28210. mawBiggums: {
  28211. height: math.unit(1.47, "feet"),
  28212. name: "Maw (Biggums)",
  28213. image: {
  28214. source: "./media/characters/wild/maw.svg"
  28215. }
  28216. },
  28217. },
  28218. [
  28219. {
  28220. name: "Normal",
  28221. height: math.unit(7 + 3 / 12, "feet"),
  28222. default: true
  28223. },
  28224. ]
  28225. ))
  28226. characterMakers.push(() => makeCharacter(
  28227. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28228. {
  28229. front: {
  28230. height: math.unit(2.5, "meters"),
  28231. weight: math.unit(200, "kg"),
  28232. name: "Front",
  28233. image: {
  28234. source: "./media/characters/vidar/front.svg",
  28235. extra: 2994 / 2795,
  28236. bottom: 56 / 3061
  28237. }
  28238. },
  28239. back: {
  28240. height: math.unit(2.5, "meters"),
  28241. weight: math.unit(200, "kg"),
  28242. name: "Back",
  28243. image: {
  28244. source: "./media/characters/vidar/back.svg",
  28245. extra: 3131 / 2928,
  28246. bottom: 13.5 / 3141.5
  28247. }
  28248. },
  28249. feral: {
  28250. height: math.unit(2.5, "meters"),
  28251. weight: math.unit(2000, "kg"),
  28252. name: "Feral",
  28253. image: {
  28254. source: "./media/characters/vidar/feral.svg",
  28255. extra: 2790 / 1765,
  28256. bottom: 6 / 2796
  28257. }
  28258. },
  28259. },
  28260. [
  28261. {
  28262. name: "Normal",
  28263. height: math.unit(2.5, "meters"),
  28264. default: true
  28265. },
  28266. {
  28267. name: "Macro",
  28268. height: math.unit(100, "meters")
  28269. },
  28270. ]
  28271. ))
  28272. characterMakers.push(() => makeCharacter(
  28273. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28274. {
  28275. front: {
  28276. height: math.unit(5 + 9 / 12, "feet"),
  28277. weight: math.unit(120, "lb"),
  28278. name: "Front",
  28279. image: {
  28280. source: "./media/characters/ash/front.svg",
  28281. extra: 2189 / 1961,
  28282. bottom: 5.2 / 2194
  28283. }
  28284. },
  28285. },
  28286. [
  28287. {
  28288. name: "Normal",
  28289. height: math.unit(5 + 9 / 12, "feet"),
  28290. default: true
  28291. },
  28292. ]
  28293. ))
  28294. characterMakers.push(() => makeCharacter(
  28295. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28296. {
  28297. front: {
  28298. height: math.unit(9, "feet"),
  28299. weight: math.unit(10000, "lb"),
  28300. name: "Front",
  28301. image: {
  28302. source: "./media/characters/gygabite/front.svg",
  28303. bottom: 31.7 / 537.8,
  28304. extra: 505 / 370
  28305. }
  28306. },
  28307. },
  28308. [
  28309. {
  28310. name: "Normal",
  28311. height: math.unit(9, "feet"),
  28312. default: true
  28313. },
  28314. ]
  28315. ))
  28316. characterMakers.push(() => makeCharacter(
  28317. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  28318. {
  28319. front: {
  28320. height: math.unit(12, "feet"),
  28321. weight: math.unit(35000, "lb"),
  28322. name: "Front",
  28323. image: {
  28324. source: "./media/characters/p0tat0/front.svg",
  28325. extra: 1065 / 921,
  28326. bottom: 55.7 / 1121.25
  28327. }
  28328. },
  28329. },
  28330. [
  28331. {
  28332. name: "Normal",
  28333. height: math.unit(12, "feet"),
  28334. default: true
  28335. },
  28336. ]
  28337. ))
  28338. characterMakers.push(() => makeCharacter(
  28339. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28340. {
  28341. side: {
  28342. height: math.unit(6.5, "feet"),
  28343. weight: math.unit(800, "lb"),
  28344. name: "Side",
  28345. image: {
  28346. source: "./media/characters/dusk/side.svg",
  28347. extra: 615 / 373,
  28348. bottom: 53 / 664
  28349. }
  28350. },
  28351. sitting: {
  28352. height: math.unit(7, "feet"),
  28353. weight: math.unit(800, "lb"),
  28354. name: "Sitting",
  28355. image: {
  28356. source: "./media/characters/dusk/sitting.svg",
  28357. extra: 753 / 425,
  28358. bottom: 33 / 774
  28359. }
  28360. },
  28361. head: {
  28362. height: math.unit(6.1, "feet"),
  28363. name: "Head",
  28364. image: {
  28365. source: "./media/characters/dusk/head.svg"
  28366. }
  28367. },
  28368. },
  28369. [
  28370. {
  28371. name: "Normal",
  28372. height: math.unit(7, "feet"),
  28373. default: true
  28374. },
  28375. ]
  28376. ))
  28377. characterMakers.push(() => makeCharacter(
  28378. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28379. {
  28380. front: {
  28381. height: math.unit(15, "feet"),
  28382. weight: math.unit(7000, "lb"),
  28383. name: "Front",
  28384. image: {
  28385. source: "./media/characters/jay-direwolf/front.svg",
  28386. extra: 1810 / 1732,
  28387. bottom: 66 / 1892
  28388. }
  28389. },
  28390. },
  28391. [
  28392. {
  28393. name: "Normal",
  28394. height: math.unit(15, "feet"),
  28395. default: true
  28396. },
  28397. ]
  28398. ))
  28399. characterMakers.push(() => makeCharacter(
  28400. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28401. {
  28402. front: {
  28403. height: math.unit(4 + 9 / 12, "feet"),
  28404. weight: math.unit(130, "lb"),
  28405. name: "Front",
  28406. image: {
  28407. source: "./media/characters/anchovie/front.svg",
  28408. extra: 382 / 350,
  28409. bottom: 25 / 409
  28410. }
  28411. },
  28412. back: {
  28413. height: math.unit(4 + 9 / 12, "feet"),
  28414. weight: math.unit(130, "lb"),
  28415. name: "Back",
  28416. image: {
  28417. source: "./media/characters/anchovie/back.svg",
  28418. extra: 385 / 352,
  28419. bottom: 16.6 / 402
  28420. }
  28421. },
  28422. frontDressed: {
  28423. height: math.unit(4 + 9 / 12, "feet"),
  28424. weight: math.unit(130, "lb"),
  28425. name: "Front (Dressed)",
  28426. image: {
  28427. source: "./media/characters/anchovie/front-dressed.svg",
  28428. extra: 382 / 350,
  28429. bottom: 25 / 409
  28430. }
  28431. },
  28432. backDressed: {
  28433. height: math.unit(4 + 9 / 12, "feet"),
  28434. weight: math.unit(130, "lb"),
  28435. name: "Back (Dressed)",
  28436. image: {
  28437. source: "./media/characters/anchovie/back-dressed.svg",
  28438. extra: 385 / 352,
  28439. bottom: 16.6 / 402
  28440. }
  28441. },
  28442. },
  28443. [
  28444. {
  28445. name: "Micro",
  28446. height: math.unit(6.4, "inches")
  28447. },
  28448. {
  28449. name: "Normal",
  28450. height: math.unit(4 + 9 / 12, "feet"),
  28451. default: true
  28452. },
  28453. ]
  28454. ))
  28455. characterMakers.push(() => makeCharacter(
  28456. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28457. {
  28458. front: {
  28459. height: math.unit(2, "meters"),
  28460. weight: math.unit(180, "lb"),
  28461. name: "Front",
  28462. image: {
  28463. source: "./media/characters/acidrenamon/front.svg",
  28464. extra: 987 / 890,
  28465. bottom: 22.8 / 1009
  28466. }
  28467. },
  28468. back: {
  28469. height: math.unit(2, "meters"),
  28470. weight: math.unit(180, "lb"),
  28471. name: "Back",
  28472. image: {
  28473. source: "./media/characters/acidrenamon/back.svg",
  28474. extra: 983 / 891,
  28475. bottom: 8.4 / 992
  28476. }
  28477. },
  28478. head: {
  28479. height: math.unit(1.92, "feet"),
  28480. name: "Head",
  28481. image: {
  28482. source: "./media/characters/acidrenamon/head.svg"
  28483. }
  28484. },
  28485. rump: {
  28486. height: math.unit(1.72, "feet"),
  28487. name: "Rump",
  28488. image: {
  28489. source: "./media/characters/acidrenamon/rump.svg"
  28490. }
  28491. },
  28492. tail: {
  28493. height: math.unit(4.2, "feet"),
  28494. name: "Tail",
  28495. image: {
  28496. source: "./media/characters/acidrenamon/tail.svg"
  28497. }
  28498. },
  28499. },
  28500. [
  28501. {
  28502. name: "Normal",
  28503. height: math.unit(2, "meters"),
  28504. default: true
  28505. },
  28506. {
  28507. name: "Minimacro",
  28508. height: math.unit(7, "meters")
  28509. },
  28510. {
  28511. name: "Macro",
  28512. height: math.unit(200, "meters")
  28513. },
  28514. {
  28515. name: "Gigamacro",
  28516. height: math.unit(0.2, "earths")
  28517. },
  28518. ]
  28519. ))
  28520. characterMakers.push(() => makeCharacter(
  28521. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28522. {
  28523. front: {
  28524. height: math.unit(152, "feet"),
  28525. name: "Front",
  28526. image: {
  28527. source: "./media/characters/kenzie-lee/front.svg",
  28528. extra: 1869/1774,
  28529. bottom: 128/1997
  28530. }
  28531. },
  28532. side: {
  28533. height: math.unit(86, "feet"),
  28534. name: "Side",
  28535. image: {
  28536. source: "./media/characters/kenzie-lee/side.svg",
  28537. extra: 930/815,
  28538. bottom: 177/1107
  28539. }
  28540. },
  28541. paw: {
  28542. height: math.unit(15, "feet"),
  28543. name: "Paw",
  28544. image: {
  28545. source: "./media/characters/kenzie-lee/paw.svg"
  28546. }
  28547. },
  28548. },
  28549. [
  28550. {
  28551. name: "Kenzie Flea",
  28552. height: math.unit(2, "mm"),
  28553. default: true
  28554. },
  28555. {
  28556. name: "Micro",
  28557. height: math.unit(2, "inches")
  28558. },
  28559. {
  28560. name: "Normal",
  28561. height: math.unit(152, "feet")
  28562. },
  28563. {
  28564. name: "Megamacro",
  28565. height: math.unit(7, "miles")
  28566. },
  28567. {
  28568. name: "Gigamacro",
  28569. height: math.unit(8000, "miles")
  28570. },
  28571. ]
  28572. ))
  28573. characterMakers.push(() => makeCharacter(
  28574. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28575. {
  28576. front: {
  28577. height: math.unit(6, "feet"),
  28578. name: "Front",
  28579. image: {
  28580. source: "./media/characters/withers/front.svg",
  28581. extra: 1935/1760,
  28582. bottom: 72/2007
  28583. }
  28584. },
  28585. back: {
  28586. height: math.unit(6, "feet"),
  28587. name: "Back",
  28588. image: {
  28589. source: "./media/characters/withers/back.svg",
  28590. extra: 1944/1792,
  28591. bottom: 12/1956
  28592. }
  28593. },
  28594. dressed: {
  28595. height: math.unit(6, "feet"),
  28596. name: "Dressed",
  28597. image: {
  28598. source: "./media/characters/withers/dressed.svg",
  28599. extra: 1937/1765,
  28600. bottom: 73/2010
  28601. }
  28602. },
  28603. phase1: {
  28604. height: math.unit(1.1, "feet"),
  28605. name: "Phase 1",
  28606. image: {
  28607. source: "./media/characters/withers/phase-1.svg",
  28608. extra: 1885/1232,
  28609. bottom: 0/1885
  28610. }
  28611. },
  28612. phase2: {
  28613. height: math.unit(1.05, "feet"),
  28614. name: "Phase 2",
  28615. image: {
  28616. source: "./media/characters/withers/phase-2.svg",
  28617. extra: 1792/1090,
  28618. bottom: 0/1792
  28619. }
  28620. },
  28621. partyWipe: {
  28622. height: math.unit(1.1, "feet"),
  28623. name: "Party Wipe",
  28624. image: {
  28625. source: "./media/characters/withers/party-wipe.svg",
  28626. extra: 1864/1207,
  28627. bottom: 0/1864
  28628. }
  28629. },
  28630. },
  28631. [
  28632. {
  28633. name: "Macro",
  28634. height: math.unit(167, "feet"),
  28635. default: true
  28636. },
  28637. {
  28638. name: "Megamacro",
  28639. height: math.unit(15, "miles")
  28640. }
  28641. ]
  28642. ))
  28643. characterMakers.push(() => makeCharacter(
  28644. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28645. {
  28646. front: {
  28647. height: math.unit(6 + 7 / 12, "feet"),
  28648. weight: math.unit(250, "lb"),
  28649. name: "Front",
  28650. image: {
  28651. source: "./media/characters/nemoskii/front.svg",
  28652. extra: 2270 / 1734,
  28653. bottom: 86 / 2354
  28654. }
  28655. },
  28656. back: {
  28657. height: math.unit(6 + 7 / 12, "feet"),
  28658. weight: math.unit(250, "lb"),
  28659. name: "Back",
  28660. image: {
  28661. source: "./media/characters/nemoskii/back.svg",
  28662. extra: 1845 / 1788,
  28663. bottom: 10.5 / 1852
  28664. }
  28665. },
  28666. head: {
  28667. height: math.unit(1.31, "feet"),
  28668. name: "Head",
  28669. image: {
  28670. source: "./media/characters/nemoskii/head.svg"
  28671. }
  28672. },
  28673. },
  28674. [
  28675. {
  28676. name: "Micro",
  28677. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28678. },
  28679. {
  28680. name: "Normal",
  28681. height: math.unit(6 + 7 / 12, "feet"),
  28682. default: true
  28683. },
  28684. {
  28685. name: "Macro",
  28686. height: math.unit((6 + 7 / 12) * 150, "feet")
  28687. },
  28688. {
  28689. name: "Macro+",
  28690. height: math.unit((6 + 7 / 12) * 500, "feet")
  28691. },
  28692. {
  28693. name: "Megamacro",
  28694. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28695. },
  28696. ]
  28697. ))
  28698. characterMakers.push(() => makeCharacter(
  28699. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28700. {
  28701. front: {
  28702. height: math.unit(1, "mile"),
  28703. weight: math.unit(265261.9, "lb"),
  28704. name: "Front",
  28705. image: {
  28706. source: "./media/characters/shui/front.svg",
  28707. extra: 1633 / 1564,
  28708. bottom: 91.5 / 1726
  28709. }
  28710. },
  28711. },
  28712. [
  28713. {
  28714. name: "Macro",
  28715. height: math.unit(1, "mile"),
  28716. default: true
  28717. },
  28718. ]
  28719. ))
  28720. characterMakers.push(() => makeCharacter(
  28721. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28722. {
  28723. front: {
  28724. height: math.unit(12 + 6 / 12, "feet"),
  28725. weight: math.unit(1342, "lb"),
  28726. name: "Front",
  28727. image: {
  28728. source: "./media/characters/arokh-takakura/front.svg",
  28729. extra: 1089 / 1043,
  28730. bottom: 77.4 / 1176.7
  28731. }
  28732. },
  28733. back: {
  28734. height: math.unit(12 + 6 / 12, "feet"),
  28735. weight: math.unit(1342, "lb"),
  28736. name: "Back",
  28737. image: {
  28738. source: "./media/characters/arokh-takakura/back.svg",
  28739. extra: 1046 / 1019,
  28740. bottom: 102 / 1150
  28741. }
  28742. },
  28743. },
  28744. [
  28745. {
  28746. name: "Big",
  28747. height: math.unit(12 + 6 / 12, "feet"),
  28748. default: true
  28749. },
  28750. ]
  28751. ))
  28752. characterMakers.push(() => makeCharacter(
  28753. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28754. {
  28755. front: {
  28756. height: math.unit(5 + 6 / 12, "feet"),
  28757. weight: math.unit(150, "lb"),
  28758. name: "Front",
  28759. image: {
  28760. source: "./media/characters/theo/front.svg",
  28761. extra: 1184 / 1131,
  28762. bottom: 7.4 / 1191
  28763. }
  28764. },
  28765. },
  28766. [
  28767. {
  28768. name: "Micro",
  28769. height: math.unit(5, "inches")
  28770. },
  28771. {
  28772. name: "Normal",
  28773. height: math.unit(5 + 6 / 12, "feet"),
  28774. default: true
  28775. },
  28776. ]
  28777. ))
  28778. characterMakers.push(() => makeCharacter(
  28779. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28780. {
  28781. front: {
  28782. height: math.unit(5 + 9 / 12, "feet"),
  28783. weight: math.unit(130, "lb"),
  28784. name: "Front",
  28785. image: {
  28786. source: "./media/characters/cecelia-swift/front.svg",
  28787. extra: 502 / 484,
  28788. bottom: 23 / 523
  28789. }
  28790. },
  28791. back: {
  28792. height: math.unit(5 + 9 / 12, "feet"),
  28793. weight: math.unit(130, "lb"),
  28794. name: "Back",
  28795. image: {
  28796. source: "./media/characters/cecelia-swift/back.svg",
  28797. extra: 499 / 485,
  28798. bottom: 12 / 511
  28799. }
  28800. },
  28801. head: {
  28802. height: math.unit(0.90, "feet"),
  28803. name: "Head",
  28804. image: {
  28805. source: "./media/characters/cecelia-swift/head.svg"
  28806. }
  28807. },
  28808. rump: {
  28809. height: math.unit(1.75, "feet"),
  28810. name: "Rump",
  28811. image: {
  28812. source: "./media/characters/cecelia-swift/rump.svg"
  28813. }
  28814. },
  28815. },
  28816. [
  28817. {
  28818. name: "Normal",
  28819. height: math.unit(5 + 9 / 12, "feet"),
  28820. default: true
  28821. },
  28822. {
  28823. name: "Big",
  28824. height: math.unit(50, "feet")
  28825. },
  28826. {
  28827. name: "Macro",
  28828. height: math.unit(100, "feet")
  28829. },
  28830. {
  28831. name: "Macro+",
  28832. height: math.unit(500, "feet")
  28833. },
  28834. {
  28835. name: "Macro++",
  28836. height: math.unit(1000, "feet")
  28837. },
  28838. ]
  28839. ))
  28840. characterMakers.push(() => makeCharacter(
  28841. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28842. {
  28843. front: {
  28844. height: math.unit(6, "feet"),
  28845. weight: math.unit(150, "lb"),
  28846. name: "Front",
  28847. image: {
  28848. source: "./media/characters/kaunan/front.svg",
  28849. extra: 2890 / 2523,
  28850. bottom: 49 / 2939
  28851. }
  28852. },
  28853. },
  28854. [
  28855. {
  28856. name: "Macro",
  28857. height: math.unit(150, "feet"),
  28858. default: true
  28859. },
  28860. ]
  28861. ))
  28862. characterMakers.push(() => makeCharacter(
  28863. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28864. {
  28865. front: {
  28866. height: math.unit(175, "cm"),
  28867. weight: math.unit(60, "kg"),
  28868. name: "Front",
  28869. image: {
  28870. source: "./media/characters/fei/front.svg",
  28871. extra: 1873/1723,
  28872. bottom: 53/1926
  28873. }
  28874. },
  28875. },
  28876. [
  28877. {
  28878. name: "Mortal",
  28879. height: math.unit(175, "cm")
  28880. },
  28881. {
  28882. name: "Normal",
  28883. height: math.unit(3500, "m"),
  28884. default: true
  28885. },
  28886. {
  28887. name: "Stroll",
  28888. height: math.unit(17.5, "km")
  28889. },
  28890. {
  28891. name: "Showoff",
  28892. height: math.unit(175, "km")
  28893. },
  28894. ]
  28895. ))
  28896. characterMakers.push(() => makeCharacter(
  28897. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28898. {
  28899. front: {
  28900. height: math.unit(7, "feet"),
  28901. weight: math.unit(1000, "kg"),
  28902. name: "Front",
  28903. image: {
  28904. source: "./media/characters/edrax/front.svg",
  28905. extra: 2838 / 2550,
  28906. bottom: 130 / 2968
  28907. }
  28908. },
  28909. },
  28910. [
  28911. {
  28912. name: "Small",
  28913. height: math.unit(7, "feet")
  28914. },
  28915. {
  28916. name: "Normal",
  28917. height: math.unit(1500, "meters")
  28918. },
  28919. {
  28920. name: "Mega",
  28921. height: math.unit(12000000, "km"),
  28922. default: true
  28923. },
  28924. {
  28925. name: "Megamacro",
  28926. height: math.unit(10600000, "lightyears")
  28927. },
  28928. {
  28929. name: "Hypermacro",
  28930. height: math.unit(256, "yottameters")
  28931. },
  28932. ]
  28933. ))
  28934. characterMakers.push(() => makeCharacter(
  28935. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28936. {
  28937. front: {
  28938. height: math.unit(10, "feet"),
  28939. weight: math.unit(750, "lb"),
  28940. name: "Front",
  28941. image: {
  28942. source: "./media/characters/clove/front.svg",
  28943. extra: 1918/1751,
  28944. bottom: 52/1970
  28945. }
  28946. },
  28947. back: {
  28948. height: math.unit(10, "feet"),
  28949. weight: math.unit(750, "lb"),
  28950. name: "Back",
  28951. image: {
  28952. source: "./media/characters/clove/back.svg",
  28953. extra: 1912/1747,
  28954. bottom: 50/1962
  28955. }
  28956. },
  28957. },
  28958. [
  28959. {
  28960. name: "Normal",
  28961. height: math.unit(10, "feet"),
  28962. default: true
  28963. },
  28964. ]
  28965. ))
  28966. characterMakers.push(() => makeCharacter(
  28967. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28968. {
  28969. front: {
  28970. height: math.unit(4, "feet"),
  28971. weight: math.unit(50, "lb"),
  28972. name: "Front",
  28973. image: {
  28974. source: "./media/characters/alex-rabbit/front.svg",
  28975. extra: 507 / 458,
  28976. bottom: 18.5 / 527
  28977. }
  28978. },
  28979. back: {
  28980. height: math.unit(4, "feet"),
  28981. weight: math.unit(50, "lb"),
  28982. name: "Back",
  28983. image: {
  28984. source: "./media/characters/alex-rabbit/back.svg",
  28985. extra: 502 / 460,
  28986. bottom: 18.9 / 521
  28987. }
  28988. },
  28989. },
  28990. [
  28991. {
  28992. name: "Normal",
  28993. height: math.unit(4, "feet"),
  28994. default: true
  28995. },
  28996. ]
  28997. ))
  28998. characterMakers.push(() => makeCharacter(
  28999. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29000. {
  29001. front: {
  29002. height: math.unit(1 + 3 / 12, "feet"),
  29003. weight: math.unit(80, "lb"),
  29004. name: "Front",
  29005. image: {
  29006. source: "./media/characters/zander-rose/front.svg",
  29007. extra: 916 / 797,
  29008. bottom: 17 / 933
  29009. }
  29010. },
  29011. back: {
  29012. height: math.unit(1 + 3 / 12, "feet"),
  29013. weight: math.unit(80, "lb"),
  29014. name: "Back",
  29015. image: {
  29016. source: "./media/characters/zander-rose/back.svg",
  29017. extra: 903 / 779,
  29018. bottom: 31 / 934
  29019. }
  29020. },
  29021. },
  29022. [
  29023. {
  29024. name: "Normal",
  29025. height: math.unit(1 + 3 / 12, "feet"),
  29026. default: true
  29027. },
  29028. ]
  29029. ))
  29030. characterMakers.push(() => makeCharacter(
  29031. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29032. {
  29033. anthro: {
  29034. height: math.unit(6, "feet"),
  29035. weight: math.unit(150, "lb"),
  29036. name: "Anthro",
  29037. image: {
  29038. source: "./media/characters/razz/anthro.svg",
  29039. extra: 1437 / 1343,
  29040. bottom: 48 / 1485
  29041. }
  29042. },
  29043. feral: {
  29044. height: math.unit(6, "feet"),
  29045. weight: math.unit(150, "lb"),
  29046. name: "Feral",
  29047. image: {
  29048. source: "./media/characters/razz/feral.svg",
  29049. extra: 2569 / 1385,
  29050. bottom: 95 / 2664
  29051. }
  29052. },
  29053. },
  29054. [
  29055. {
  29056. name: "Normal",
  29057. height: math.unit(6, "feet"),
  29058. default: true
  29059. },
  29060. ]
  29061. ))
  29062. characterMakers.push(() => makeCharacter(
  29063. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29064. {
  29065. front: {
  29066. height: math.unit(9 + 4 / 12, "feet"),
  29067. weight: math.unit(500, "lb"),
  29068. name: "Front",
  29069. image: {
  29070. source: "./media/characters/morrigan/front.svg",
  29071. extra: 2707 / 2579,
  29072. bottom: 156 / 2863
  29073. }
  29074. },
  29075. },
  29076. [
  29077. {
  29078. name: "Normal",
  29079. height: math.unit(9 + 4 / 12, "feet"),
  29080. default: true
  29081. },
  29082. ]
  29083. ))
  29084. characterMakers.push(() => makeCharacter(
  29085. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29086. {
  29087. front: {
  29088. height: math.unit(5, "stories"),
  29089. weight: math.unit(4000, "lb"),
  29090. name: "Front",
  29091. image: {
  29092. source: "./media/characters/jenene/front.svg",
  29093. extra: 1780 / 1710,
  29094. bottom: 57 / 1837
  29095. }
  29096. },
  29097. },
  29098. [
  29099. {
  29100. name: "Normal",
  29101. height: math.unit(5, "stories"),
  29102. default: true
  29103. },
  29104. ]
  29105. ))
  29106. characterMakers.push(() => makeCharacter(
  29107. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29108. {
  29109. taurSfw: {
  29110. height: math.unit(10, "meters"),
  29111. weight: math.unit(17500, "kg"),
  29112. name: "Taur",
  29113. image: {
  29114. source: "./media/characters/faey/taur-sfw.svg",
  29115. extra: 1200 / 968,
  29116. bottom: 41 / 1241
  29117. }
  29118. },
  29119. chestmaw: {
  29120. height: math.unit(2.01, "meters"),
  29121. name: "Chestmaw",
  29122. image: {
  29123. source: "./media/characters/faey/chestmaw.svg"
  29124. }
  29125. },
  29126. foot: {
  29127. height: math.unit(2.43, "meters"),
  29128. name: "Foot",
  29129. image: {
  29130. source: "./media/characters/faey/foot.svg"
  29131. }
  29132. },
  29133. jaws: {
  29134. height: math.unit(1.66, "meters"),
  29135. name: "Jaws",
  29136. image: {
  29137. source: "./media/characters/faey/jaws.svg"
  29138. }
  29139. },
  29140. tongues: {
  29141. height: math.unit(2.01, "meters"),
  29142. name: "Tongues",
  29143. image: {
  29144. source: "./media/characters/faey/tongues.svg"
  29145. }
  29146. },
  29147. },
  29148. [
  29149. {
  29150. name: "Small",
  29151. height: math.unit(10, "meters"),
  29152. default: true
  29153. },
  29154. {
  29155. name: "Big",
  29156. height: math.unit(500000, "km")
  29157. },
  29158. ]
  29159. ))
  29160. characterMakers.push(() => makeCharacter(
  29161. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29162. {
  29163. front: {
  29164. height: math.unit(7, "feet"),
  29165. weight: math.unit(275, "lb"),
  29166. name: "Front",
  29167. image: {
  29168. source: "./media/characters/roku/front.svg",
  29169. extra: 903 / 878,
  29170. bottom: 37 / 940
  29171. }
  29172. },
  29173. },
  29174. [
  29175. {
  29176. name: "Normal",
  29177. height: math.unit(7, "feet"),
  29178. default: true
  29179. },
  29180. {
  29181. name: "Macro",
  29182. height: math.unit(500, "feet")
  29183. },
  29184. {
  29185. name: "Megamacro",
  29186. height: math.unit(200, "miles")
  29187. },
  29188. ]
  29189. ))
  29190. characterMakers.push(() => makeCharacter(
  29191. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29192. {
  29193. front: {
  29194. height: math.unit(6 + 2 / 12, "feet"),
  29195. weight: math.unit(150, "lb"),
  29196. name: "Front",
  29197. image: {
  29198. source: "./media/characters/lira/front.svg",
  29199. extra: 1727 / 1605,
  29200. bottom: 26 / 1753
  29201. }
  29202. },
  29203. back: {
  29204. height: math.unit(6 + 2 / 12, "feet"),
  29205. weight: math.unit(150, "lb"),
  29206. name: "Back",
  29207. image: {
  29208. source: "./media/characters/lira/back.svg",
  29209. extra: 1713/1621,
  29210. bottom: 20/1733
  29211. }
  29212. },
  29213. hand: {
  29214. height: math.unit(0.75, "feet"),
  29215. name: "Hand",
  29216. image: {
  29217. source: "./media/characters/lira/hand.svg"
  29218. }
  29219. },
  29220. maw: {
  29221. height: math.unit(0.65, "feet"),
  29222. name: "Maw",
  29223. image: {
  29224. source: "./media/characters/lira/maw.svg"
  29225. }
  29226. },
  29227. pawDigi: {
  29228. height: math.unit(1.6, "feet"),
  29229. name: "Paw Digi",
  29230. image: {
  29231. source: "./media/characters/lira/paw-digi.svg"
  29232. }
  29233. },
  29234. pawPlanti: {
  29235. height: math.unit(1.4, "feet"),
  29236. name: "Paw Planti",
  29237. image: {
  29238. source: "./media/characters/lira/paw-planti.svg"
  29239. }
  29240. },
  29241. },
  29242. [
  29243. {
  29244. name: "Normal",
  29245. height: math.unit(6 + 2 / 12, "feet"),
  29246. default: true
  29247. },
  29248. {
  29249. name: "Macro",
  29250. height: math.unit(100, "feet")
  29251. },
  29252. {
  29253. name: "Macro²",
  29254. height: math.unit(1600, "feet")
  29255. },
  29256. {
  29257. name: "Planetary",
  29258. height: math.unit(20, "earths")
  29259. },
  29260. ]
  29261. ))
  29262. characterMakers.push(() => makeCharacter(
  29263. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29264. {
  29265. front: {
  29266. height: math.unit(6, "feet"),
  29267. weight: math.unit(150, "lb"),
  29268. name: "Front",
  29269. image: {
  29270. source: "./media/characters/hadjet/front.svg",
  29271. extra: 1480 / 1346,
  29272. bottom: 26 / 1506
  29273. }
  29274. },
  29275. frontNsfw: {
  29276. height: math.unit(6, "feet"),
  29277. weight: math.unit(150, "lb"),
  29278. name: "Front (NSFW)",
  29279. image: {
  29280. source: "./media/characters/hadjet/front-nsfw.svg",
  29281. extra: 1440 / 1358,
  29282. bottom: 52 / 1492
  29283. }
  29284. },
  29285. },
  29286. [
  29287. {
  29288. name: "Macro",
  29289. height: math.unit(10, "stories"),
  29290. default: true
  29291. },
  29292. {
  29293. name: "Megamacro",
  29294. height: math.unit(1.5, "miles")
  29295. },
  29296. {
  29297. name: "Megamacro+",
  29298. height: math.unit(5, "miles")
  29299. },
  29300. ]
  29301. ))
  29302. characterMakers.push(() => makeCharacter(
  29303. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29304. {
  29305. side: {
  29306. height: math.unit(106, "feet"),
  29307. weight: math.unit(500, "tonnes"),
  29308. name: "Side",
  29309. image: {
  29310. source: "./media/characters/kodran/side.svg",
  29311. extra: 553 / 480,
  29312. bottom: 33 / 586
  29313. }
  29314. },
  29315. front: {
  29316. height: math.unit(132, "feet"),
  29317. weight: math.unit(500, "tonnes"),
  29318. name: "Front",
  29319. image: {
  29320. source: "./media/characters/kodran/front.svg",
  29321. extra: 667 / 643,
  29322. bottom: 42 / 709
  29323. }
  29324. },
  29325. flying: {
  29326. height: math.unit(350, "feet"),
  29327. weight: math.unit(500, "tonnes"),
  29328. name: "Flying",
  29329. image: {
  29330. source: "./media/characters/kodran/flying.svg"
  29331. }
  29332. },
  29333. foot: {
  29334. height: math.unit(33, "feet"),
  29335. name: "Foot",
  29336. image: {
  29337. source: "./media/characters/kodran/foot.svg"
  29338. }
  29339. },
  29340. footFront: {
  29341. height: math.unit(19, "feet"),
  29342. name: "Foot (Front)",
  29343. image: {
  29344. source: "./media/characters/kodran/foot-front.svg",
  29345. extra: 261 / 261,
  29346. bottom: 91 / 352
  29347. }
  29348. },
  29349. headFront: {
  29350. height: math.unit(53, "feet"),
  29351. name: "Head (Front)",
  29352. image: {
  29353. source: "./media/characters/kodran/head-front.svg"
  29354. }
  29355. },
  29356. headSide: {
  29357. height: math.unit(65, "feet"),
  29358. name: "Head (Side)",
  29359. image: {
  29360. source: "./media/characters/kodran/head-side.svg"
  29361. }
  29362. },
  29363. throat: {
  29364. height: math.unit(79, "feet"),
  29365. name: "Throat",
  29366. image: {
  29367. source: "./media/characters/kodran/throat.svg"
  29368. }
  29369. },
  29370. },
  29371. [
  29372. {
  29373. name: "Large",
  29374. height: math.unit(106, "feet"),
  29375. default: true
  29376. },
  29377. ]
  29378. ))
  29379. characterMakers.push(() => makeCharacter(
  29380. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29381. {
  29382. side: {
  29383. height: math.unit(11, "feet"),
  29384. weight: math.unit(150, "lb"),
  29385. name: "Side",
  29386. image: {
  29387. source: "./media/characters/pyxaron/side.svg",
  29388. extra: 305 / 195,
  29389. bottom: 17 / 322
  29390. }
  29391. },
  29392. },
  29393. [
  29394. {
  29395. name: "Normal",
  29396. height: math.unit(11, "feet"),
  29397. default: true
  29398. },
  29399. ]
  29400. ))
  29401. characterMakers.push(() => makeCharacter(
  29402. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29403. {
  29404. front: {
  29405. height: math.unit(6, "feet"),
  29406. weight: math.unit(150, "lb"),
  29407. name: "Front",
  29408. image: {
  29409. source: "./media/characters/meep/front.svg",
  29410. extra: 88 / 80,
  29411. bottom: 6 / 94
  29412. }
  29413. },
  29414. },
  29415. [
  29416. {
  29417. name: "Fun Sized",
  29418. height: math.unit(2, "inches"),
  29419. default: true
  29420. },
  29421. {
  29422. name: "Friend Sized",
  29423. height: math.unit(8, "inches")
  29424. },
  29425. ]
  29426. ))
  29427. characterMakers.push(() => makeCharacter(
  29428. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29429. {
  29430. front: {
  29431. height: math.unit(15, "feet"),
  29432. weight: math.unit(2500, "lb"),
  29433. name: "Front",
  29434. image: {
  29435. source: "./media/characters/holly-rabbit/front.svg",
  29436. extra: 1433 / 1233,
  29437. bottom: 125 / 1558
  29438. }
  29439. },
  29440. dick: {
  29441. height: math.unit(4.6, "feet"),
  29442. name: "Dick",
  29443. image: {
  29444. source: "./media/characters/holly-rabbit/dick.svg"
  29445. }
  29446. },
  29447. },
  29448. [
  29449. {
  29450. name: "Normal",
  29451. height: math.unit(15, "feet"),
  29452. default: true
  29453. },
  29454. {
  29455. name: "Macro",
  29456. height: math.unit(250, "feet")
  29457. },
  29458. {
  29459. name: "Macro+",
  29460. height: math.unit(2500, "feet")
  29461. },
  29462. ]
  29463. ))
  29464. characterMakers.push(() => makeCharacter(
  29465. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29466. {
  29467. front: {
  29468. height: math.unit(3.02, "meters"),
  29469. weight: math.unit(500, "kg"),
  29470. name: "Front",
  29471. image: {
  29472. source: "./media/characters/drena/front.svg",
  29473. extra: 282 / 243,
  29474. bottom: 8 / 290
  29475. }
  29476. },
  29477. side: {
  29478. height: math.unit(3.02, "meters"),
  29479. weight: math.unit(500, "kg"),
  29480. name: "Side",
  29481. image: {
  29482. source: "./media/characters/drena/side.svg",
  29483. extra: 280 / 245,
  29484. bottom: 10 / 290
  29485. }
  29486. },
  29487. back: {
  29488. height: math.unit(3.02, "meters"),
  29489. weight: math.unit(500, "kg"),
  29490. name: "Back",
  29491. image: {
  29492. source: "./media/characters/drena/back.svg",
  29493. extra: 278 / 243,
  29494. bottom: 2 / 280
  29495. }
  29496. },
  29497. foot: {
  29498. height: math.unit(0.75, "meters"),
  29499. name: "Foot",
  29500. image: {
  29501. source: "./media/characters/drena/foot.svg"
  29502. }
  29503. },
  29504. maw: {
  29505. height: math.unit(0.82, "meters"),
  29506. name: "Maw",
  29507. image: {
  29508. source: "./media/characters/drena/maw.svg"
  29509. }
  29510. },
  29511. eating: {
  29512. height: math.unit(0.75, "meters"),
  29513. name: "Eating",
  29514. image: {
  29515. source: "./media/characters/drena/eating.svg"
  29516. }
  29517. },
  29518. rump: {
  29519. height: math.unit(0.93, "meters"),
  29520. name: "Rump",
  29521. image: {
  29522. source: "./media/characters/drena/rump.svg"
  29523. }
  29524. },
  29525. },
  29526. [
  29527. {
  29528. name: "Normal",
  29529. height: math.unit(3.02, "meters"),
  29530. default: true
  29531. },
  29532. ]
  29533. ))
  29534. characterMakers.push(() => makeCharacter(
  29535. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29536. {
  29537. front: {
  29538. height: math.unit(6 + 4 / 12, "feet"),
  29539. weight: math.unit(250, "lb"),
  29540. name: "Front",
  29541. image: {
  29542. source: "./media/characters/remmyzilla/front.svg",
  29543. extra: 4033 / 3588,
  29544. bottom: 123 / 4156
  29545. }
  29546. },
  29547. back: {
  29548. height: math.unit(6 + 4 / 12, "feet"),
  29549. weight: math.unit(250, "lb"),
  29550. name: "Back",
  29551. image: {
  29552. source: "./media/characters/remmyzilla/back.svg",
  29553. extra: 2687 / 2555,
  29554. bottom: 48 / 2735
  29555. }
  29556. },
  29557. paw: {
  29558. height: math.unit(1.73, "feet"),
  29559. name: "Paw",
  29560. image: {
  29561. source: "./media/characters/remmyzilla/paw.svg"
  29562. }
  29563. },
  29564. maw: {
  29565. height: math.unit(1.73, "feet"),
  29566. name: "Maw",
  29567. image: {
  29568. source: "./media/characters/remmyzilla/maw.svg"
  29569. }
  29570. },
  29571. },
  29572. [
  29573. {
  29574. name: "Normal",
  29575. height: math.unit(6 + 4 / 12, "feet")
  29576. },
  29577. {
  29578. name: "Minimacro",
  29579. height: math.unit(12 + 8 / 12, "feet")
  29580. },
  29581. {
  29582. name: "Normal",
  29583. height: math.unit(640, "feet"),
  29584. default: true
  29585. },
  29586. {
  29587. name: "Megamacro",
  29588. height: math.unit(6400, "feet")
  29589. },
  29590. {
  29591. name: "Gigamacro",
  29592. height: math.unit(64000, "miles")
  29593. },
  29594. ]
  29595. ))
  29596. characterMakers.push(() => makeCharacter(
  29597. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29598. {
  29599. front: {
  29600. height: math.unit(2.5, "meters"),
  29601. weight: math.unit(300, "lb"),
  29602. name: "Front",
  29603. image: {
  29604. source: "./media/characters/lawrence/front.svg",
  29605. extra: 357 / 335,
  29606. bottom: 30 / 387
  29607. }
  29608. },
  29609. back: {
  29610. height: math.unit(2.5, "meters"),
  29611. weight: math.unit(300, "lb"),
  29612. name: "Back",
  29613. image: {
  29614. source: "./media/characters/lawrence/back.svg",
  29615. extra: 357 / 338,
  29616. bottom: 16 / 373
  29617. }
  29618. },
  29619. head: {
  29620. height: math.unit(0.9, "meter"),
  29621. name: "Head",
  29622. image: {
  29623. source: "./media/characters/lawrence/head.svg"
  29624. }
  29625. },
  29626. maw: {
  29627. height: math.unit(0.7, "meter"),
  29628. name: "Maw",
  29629. image: {
  29630. source: "./media/characters/lawrence/maw.svg"
  29631. }
  29632. },
  29633. footBottom: {
  29634. height: math.unit(0.5, "meter"),
  29635. name: "Foot (Bottom)",
  29636. image: {
  29637. source: "./media/characters/lawrence/foot-bottom.svg"
  29638. }
  29639. },
  29640. footTop: {
  29641. height: math.unit(0.5, "meter"),
  29642. name: "Foot (Top)",
  29643. image: {
  29644. source: "./media/characters/lawrence/foot-top.svg"
  29645. }
  29646. },
  29647. },
  29648. [
  29649. {
  29650. name: "Normal",
  29651. height: math.unit(2.5, "meters"),
  29652. default: true
  29653. },
  29654. {
  29655. name: "Macro",
  29656. height: math.unit(95, "meters")
  29657. },
  29658. {
  29659. name: "Megamacro",
  29660. height: math.unit(150, "km")
  29661. },
  29662. ]
  29663. ))
  29664. characterMakers.push(() => makeCharacter(
  29665. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29666. {
  29667. front: {
  29668. height: math.unit(4.2, "meters"),
  29669. name: "Front",
  29670. image: {
  29671. source: "./media/characters/sydney/front.svg",
  29672. extra: 1323 / 1277,
  29673. bottom: 111 / 1434
  29674. }
  29675. },
  29676. },
  29677. [
  29678. {
  29679. name: "Normal",
  29680. height: math.unit(4.2, "meters"),
  29681. default: true
  29682. },
  29683. ]
  29684. ))
  29685. characterMakers.push(() => makeCharacter(
  29686. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29687. {
  29688. back: {
  29689. height: math.unit(201, "feet"),
  29690. name: "Back",
  29691. image: {
  29692. source: "./media/characters/jessica/back.svg",
  29693. extra: 273 / 259,
  29694. bottom: 7 / 280
  29695. }
  29696. },
  29697. },
  29698. [
  29699. {
  29700. name: "Normal",
  29701. height: math.unit(201, "feet"),
  29702. default: true
  29703. },
  29704. {
  29705. name: "Megamacro",
  29706. height: math.unit(8, "miles")
  29707. },
  29708. ]
  29709. ))
  29710. characterMakers.push(() => makeCharacter(
  29711. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29712. {
  29713. side: {
  29714. height: math.unit(5.6, "m"),
  29715. weight: math.unit(8000, "kg"),
  29716. name: "Side",
  29717. image: {
  29718. source: "./media/characters/victoria/side.svg",
  29719. extra: 1542/1229,
  29720. bottom: 124/1666
  29721. }
  29722. },
  29723. maw: {
  29724. height: math.unit(7.14, "feet"),
  29725. name: "Maw",
  29726. image: {
  29727. source: "./media/characters/victoria/maw.svg"
  29728. }
  29729. },
  29730. },
  29731. [
  29732. {
  29733. name: "Normal",
  29734. height: math.unit(5.6, "m"),
  29735. default: true
  29736. },
  29737. ]
  29738. ))
  29739. characterMakers.push(() => makeCharacter(
  29740. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29741. {
  29742. front: {
  29743. height: math.unit(5 + 6 / 12, "feet"),
  29744. name: "Front",
  29745. image: {
  29746. source: "./media/characters/cat/front.svg",
  29747. extra: 1449/1295,
  29748. bottom: 34/1483
  29749. },
  29750. form: "cat",
  29751. default: true
  29752. },
  29753. back: {
  29754. height: math.unit(5 + 6 / 12, "feet"),
  29755. name: "Back",
  29756. image: {
  29757. source: "./media/characters/cat/back.svg",
  29758. extra: 1466/1301,
  29759. bottom: 19/1485
  29760. },
  29761. form: "cat"
  29762. },
  29763. taur: {
  29764. height: math.unit(7, "feet"),
  29765. name: "Taur",
  29766. image: {
  29767. source: "./media/characters/cat/taur.svg",
  29768. extra: 1389/1233,
  29769. bottom: 83/1472
  29770. },
  29771. form: "taur",
  29772. default: true
  29773. },
  29774. lucarioFront: {
  29775. height: math.unit(4, "feet"),
  29776. name: "Lucario (Front)",
  29777. image: {
  29778. source: "./media/characters/cat/lucario-front.svg",
  29779. extra: 1149/1019,
  29780. bottom: 84/1233
  29781. },
  29782. form: "lucario",
  29783. default: true
  29784. },
  29785. lucarioBack: {
  29786. height: math.unit(4, "feet"),
  29787. name: "Lucario (Back)",
  29788. image: {
  29789. source: "./media/characters/cat/lucario-back.svg",
  29790. extra: 1190/1059,
  29791. bottom: 33/1223
  29792. },
  29793. form: "lucario"
  29794. },
  29795. megaLucario: {
  29796. height: math.unit(4, "feet"),
  29797. name: "Mega Lucario",
  29798. image: {
  29799. source: "./media/characters/cat/mega-lucario.svg",
  29800. extra: 1515 / 1319,
  29801. bottom: 63 / 1578
  29802. },
  29803. form: "lucario"
  29804. },
  29805. nickit: {
  29806. height: math.unit(2, "feet"),
  29807. name: "Nickit",
  29808. image: {
  29809. source: "./media/characters/cat/nickit.svg",
  29810. extra: 1980 / 1585,
  29811. bottom: 102 / 2082
  29812. },
  29813. form: "nickit",
  29814. default: true
  29815. },
  29816. lopunnyFront: {
  29817. height: math.unit(5, "feet"),
  29818. name: "Lopunny (Front)",
  29819. image: {
  29820. source: "./media/characters/cat/lopunny-front.svg",
  29821. extra: 1782 / 1469,
  29822. bottom: 38 / 1820
  29823. },
  29824. form: "lopunny",
  29825. default: true
  29826. },
  29827. lopunnyBack: {
  29828. height: math.unit(5, "feet"),
  29829. name: "Lopunny (Back)",
  29830. image: {
  29831. source: "./media/characters/cat/lopunny-back.svg",
  29832. extra: 1660 / 1490,
  29833. bottom: 25 / 1685
  29834. },
  29835. form: "lopunny"
  29836. },
  29837. },
  29838. [
  29839. {
  29840. name: "Really small",
  29841. height: math.unit(1, "nm")
  29842. },
  29843. {
  29844. name: "Micro",
  29845. height: math.unit(5, "inches")
  29846. },
  29847. {
  29848. name: "Normal",
  29849. height: math.unit(5 + 6 / 12, "feet"),
  29850. default: true
  29851. },
  29852. {
  29853. name: "Macro",
  29854. height: math.unit(50, "feet")
  29855. },
  29856. {
  29857. name: "Macro+",
  29858. height: math.unit(150, "feet")
  29859. },
  29860. {
  29861. name: "Megamacro",
  29862. height: math.unit(100, "miles")
  29863. },
  29864. ]
  29865. ))
  29866. characterMakers.push(() => makeCharacter(
  29867. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29868. {
  29869. front: {
  29870. height: math.unit(63.4, "meters"),
  29871. weight: math.unit(3.28349e+6, "kilograms"),
  29872. name: "Front",
  29873. image: {
  29874. source: "./media/characters/kirina-violet/front.svg",
  29875. extra: 2812 / 2725,
  29876. bottom: 0 / 2812
  29877. }
  29878. },
  29879. back: {
  29880. height: math.unit(63.4, "meters"),
  29881. weight: math.unit(3.28349e+6, "kilograms"),
  29882. name: "Back",
  29883. image: {
  29884. source: "./media/characters/kirina-violet/back.svg",
  29885. extra: 2812 / 2725,
  29886. bottom: 0 / 2812
  29887. }
  29888. },
  29889. mouth: {
  29890. height: math.unit(4.35, "meters"),
  29891. name: "Mouth",
  29892. image: {
  29893. source: "./media/characters/kirina-violet/mouth.svg"
  29894. }
  29895. },
  29896. paw: {
  29897. height: math.unit(5.6, "meters"),
  29898. name: "Paw",
  29899. image: {
  29900. source: "./media/characters/kirina-violet/paw.svg"
  29901. }
  29902. },
  29903. tail: {
  29904. height: math.unit(18, "meters"),
  29905. name: "Tail",
  29906. image: {
  29907. source: "./media/characters/kirina-violet/tail.svg"
  29908. }
  29909. },
  29910. },
  29911. [
  29912. {
  29913. name: "Macro",
  29914. height: math.unit(63.4, "meters"),
  29915. default: true
  29916. },
  29917. ]
  29918. ))
  29919. characterMakers.push(() => makeCharacter(
  29920. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29921. {
  29922. front: {
  29923. height: math.unit(75, "feet"),
  29924. name: "Front",
  29925. image: {
  29926. source: "./media/characters/cat-gigachu/front.svg",
  29927. extra: 1239/1027,
  29928. bottom: 32/1271
  29929. }
  29930. },
  29931. back: {
  29932. height: math.unit(75, "feet"),
  29933. name: "Back",
  29934. image: {
  29935. source: "./media/characters/cat-gigachu/back.svg",
  29936. extra: 1229/1030,
  29937. bottom: 9/1238
  29938. }
  29939. },
  29940. },
  29941. [
  29942. {
  29943. name: "Dynamax",
  29944. height: math.unit(75, "feet"),
  29945. default: true
  29946. },
  29947. ]
  29948. ))
  29949. characterMakers.push(() => makeCharacter(
  29950. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29951. {
  29952. front: {
  29953. height: math.unit(6, "feet"),
  29954. weight: math.unit(150, "lb"),
  29955. name: "Front",
  29956. image: {
  29957. source: "./media/characters/sfaiyan/front.svg",
  29958. extra: 999 / 978,
  29959. bottom: 5 / 1004
  29960. }
  29961. },
  29962. },
  29963. [
  29964. {
  29965. name: "Normal",
  29966. height: math.unit(1.82, "meters")
  29967. },
  29968. {
  29969. name: "Giant",
  29970. height: math.unit(2.27, "km"),
  29971. default: true
  29972. },
  29973. ]
  29974. ))
  29975. characterMakers.push(() => makeCharacter(
  29976. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29977. {
  29978. front: {
  29979. height: math.unit(179, "cm"),
  29980. weight: math.unit(100, "kg"),
  29981. name: "Front",
  29982. image: {
  29983. source: "./media/characters/raunehkeli/front.svg",
  29984. extra: 1934 / 1926,
  29985. bottom: 0 / 1934
  29986. }
  29987. },
  29988. },
  29989. [
  29990. {
  29991. name: "Normal",
  29992. height: math.unit(179, "cm")
  29993. },
  29994. {
  29995. name: "Maximum",
  29996. height: math.unit(575, "meters"),
  29997. default: true
  29998. },
  29999. ]
  30000. ))
  30001. characterMakers.push(() => makeCharacter(
  30002. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30003. {
  30004. front: {
  30005. height: math.unit(6, "feet"),
  30006. weight: math.unit(150, "lb"),
  30007. name: "Front",
  30008. image: {
  30009. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30010. extra: 2625 / 2518,
  30011. bottom: 60 / 2685
  30012. }
  30013. },
  30014. },
  30015. [
  30016. {
  30017. name: "Normal",
  30018. height: math.unit(6 + 2 / 12, "feet")
  30019. },
  30020. {
  30021. name: "Macro",
  30022. height: math.unit(1180, "feet"),
  30023. default: true
  30024. },
  30025. ]
  30026. ))
  30027. characterMakers.push(() => makeCharacter(
  30028. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30029. {
  30030. front: {
  30031. height: math.unit(5 + 6 / 12, "feet"),
  30032. weight: math.unit(108, "lb"),
  30033. name: "Front",
  30034. image: {
  30035. source: "./media/characters/lilith-zott/front.svg",
  30036. extra: 2510 / 2238,
  30037. bottom: 100 / 2610
  30038. }
  30039. },
  30040. frontDressed: {
  30041. height: math.unit(5 + 6 / 12, "feet"),
  30042. weight: math.unit(108, "lb"),
  30043. name: "Front (Dressed)",
  30044. image: {
  30045. source: "./media/characters/lilith-zott/front-dressed.svg",
  30046. extra: 2510 / 2238,
  30047. bottom: 100 / 2610
  30048. }
  30049. },
  30050. },
  30051. [
  30052. {
  30053. name: "Normal",
  30054. height: math.unit(5 + 6 / 12, "feet")
  30055. },
  30056. {
  30057. name: "Macro",
  30058. height: math.unit(1030, "feet"),
  30059. default: true
  30060. },
  30061. ]
  30062. ))
  30063. characterMakers.push(() => makeCharacter(
  30064. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30065. {
  30066. front: {
  30067. height: math.unit(6, "feet"),
  30068. weight: math.unit(150, "lb"),
  30069. name: "Front",
  30070. image: {
  30071. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30072. extra: 2567 / 2435,
  30073. bottom: 39 / 2606
  30074. }
  30075. },
  30076. frontSuper: {
  30077. height: math.unit(6, "feet"),
  30078. name: "Front (Super)",
  30079. image: {
  30080. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30081. extra: 2567 / 2435,
  30082. bottom: 39 / 2606
  30083. }
  30084. },
  30085. },
  30086. [
  30087. {
  30088. name: "Normal",
  30089. height: math.unit(5 + 10 / 12, "feet")
  30090. },
  30091. {
  30092. name: "Macro",
  30093. height: math.unit(1100, "feet"),
  30094. default: true
  30095. },
  30096. ]
  30097. ))
  30098. characterMakers.push(() => makeCharacter(
  30099. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30100. {
  30101. front: {
  30102. height: math.unit(100, "miles"),
  30103. name: "Front",
  30104. image: {
  30105. source: "./media/characters/sona/front.svg",
  30106. extra: 2433 / 2201,
  30107. bottom: 53 / 2486
  30108. }
  30109. },
  30110. foot: {
  30111. height: math.unit(16.1, "miles"),
  30112. name: "Foot",
  30113. image: {
  30114. source: "./media/characters/sona/foot.svg"
  30115. }
  30116. },
  30117. },
  30118. [
  30119. {
  30120. name: "Macro",
  30121. height: math.unit(100, "miles"),
  30122. default: true
  30123. },
  30124. ]
  30125. ))
  30126. characterMakers.push(() => makeCharacter(
  30127. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30128. {
  30129. front: {
  30130. height: math.unit(6, "feet"),
  30131. weight: math.unit(150, "lb"),
  30132. name: "Front",
  30133. image: {
  30134. source: "./media/characters/bailey/front.svg",
  30135. extra: 1778 / 1724,
  30136. bottom: 30 / 1808
  30137. }
  30138. },
  30139. },
  30140. [
  30141. {
  30142. name: "Micro",
  30143. height: math.unit(4, "inches")
  30144. },
  30145. {
  30146. name: "Normal",
  30147. height: math.unit(5 + 5 / 12, "feet"),
  30148. default: true
  30149. },
  30150. {
  30151. name: "Macro",
  30152. height: math.unit(250, "feet")
  30153. },
  30154. {
  30155. name: "Megamacro",
  30156. height: math.unit(100, "miles")
  30157. },
  30158. ]
  30159. ))
  30160. characterMakers.push(() => makeCharacter(
  30161. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30162. {
  30163. front: {
  30164. height: math.unit(5 + 2 / 12, "feet"),
  30165. weight: math.unit(120, "lb"),
  30166. name: "Front",
  30167. image: {
  30168. source: "./media/characters/snaps/front.svg",
  30169. extra: 2370 / 2177,
  30170. bottom: 48 / 2418
  30171. }
  30172. },
  30173. back: {
  30174. height: math.unit(5 + 2 / 12, "feet"),
  30175. weight: math.unit(120, "lb"),
  30176. name: "Back",
  30177. image: {
  30178. source: "./media/characters/snaps/back.svg",
  30179. extra: 2408 / 2258,
  30180. bottom: 15 / 2423
  30181. }
  30182. },
  30183. },
  30184. [
  30185. {
  30186. name: "Micro",
  30187. height: math.unit(9, "inches")
  30188. },
  30189. {
  30190. name: "Normal",
  30191. height: math.unit(5 + 2 / 12, "feet"),
  30192. default: true
  30193. },
  30194. {
  30195. name: "Mini Macro",
  30196. height: math.unit(10, "feet")
  30197. },
  30198. ]
  30199. ))
  30200. characterMakers.push(() => makeCharacter(
  30201. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30202. {
  30203. front: {
  30204. height: math.unit(1.8, "meters"),
  30205. weight: math.unit(85, "kg"),
  30206. name: "Front",
  30207. image: {
  30208. source: "./media/characters/azteck/front.svg",
  30209. extra: 2815 / 2625,
  30210. bottom: 89 / 2904
  30211. }
  30212. },
  30213. back: {
  30214. height: math.unit(1.8, "meters"),
  30215. weight: math.unit(85, "kg"),
  30216. name: "Back",
  30217. image: {
  30218. source: "./media/characters/azteck/back.svg",
  30219. extra: 2856 / 2648,
  30220. bottom: 85 / 2941
  30221. }
  30222. },
  30223. frontDressed: {
  30224. height: math.unit(1.8, "meters"),
  30225. weight: math.unit(85, "kg"),
  30226. name: "Front (Dressed)",
  30227. image: {
  30228. source: "./media/characters/azteck/front-dressed.svg",
  30229. extra: 2147 / 2003,
  30230. bottom: 68 / 2215
  30231. }
  30232. },
  30233. head: {
  30234. height: math.unit(0.47, "meters"),
  30235. weight: math.unit(85, "kg"),
  30236. name: "Head",
  30237. image: {
  30238. source: "./media/characters/azteck/head.svg"
  30239. }
  30240. },
  30241. },
  30242. [
  30243. {
  30244. name: "Bite sized",
  30245. height: math.unit(16, "cm")
  30246. },
  30247. {
  30248. name: "Normal",
  30249. height: math.unit(1.8, "meters"),
  30250. default: true
  30251. },
  30252. ]
  30253. ))
  30254. characterMakers.push(() => makeCharacter(
  30255. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30256. {
  30257. front: {
  30258. height: math.unit(6, "feet"),
  30259. weight: math.unit(150, "lb"),
  30260. name: "Front",
  30261. image: {
  30262. source: "./media/characters/pidge/front.svg",
  30263. extra: 1936/1820,
  30264. bottom: 0/1936
  30265. }
  30266. },
  30267. back: {
  30268. height: math.unit(6, "feet"),
  30269. weight: math.unit(150, "lb"),
  30270. name: "Back",
  30271. image: {
  30272. source: "./media/characters/pidge/back.svg",
  30273. extra: 1938/1843,
  30274. bottom: 0/1938
  30275. }
  30276. },
  30277. casual: {
  30278. height: math.unit(6, "feet"),
  30279. weight: math.unit(150, "lb"),
  30280. name: "Casual",
  30281. image: {
  30282. source: "./media/characters/pidge/casual.svg",
  30283. extra: 1936/1820,
  30284. bottom: 0/1936
  30285. }
  30286. },
  30287. tech: {
  30288. height: math.unit(6, "feet"),
  30289. weight: math.unit(150, "lb"),
  30290. name: "Tech",
  30291. image: {
  30292. source: "./media/characters/pidge/tech.svg",
  30293. extra: 1802/1682,
  30294. bottom: 0/1802
  30295. }
  30296. },
  30297. head: {
  30298. height: math.unit(1.61, "feet"),
  30299. name: "Head",
  30300. image: {
  30301. source: "./media/characters/pidge/head.svg"
  30302. }
  30303. },
  30304. collar: {
  30305. height: math.unit(0.82, "feet"),
  30306. name: "Collar",
  30307. image: {
  30308. source: "./media/characters/pidge/collar.svg"
  30309. }
  30310. },
  30311. },
  30312. [
  30313. {
  30314. name: "Macro",
  30315. height: math.unit(2, "mile"),
  30316. default: true
  30317. },
  30318. {
  30319. name: "PUPPY",
  30320. height: math.unit(20, "miles")
  30321. },
  30322. ]
  30323. ))
  30324. characterMakers.push(() => makeCharacter(
  30325. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30326. {
  30327. front: {
  30328. height: math.unit(6, "feet"),
  30329. weight: math.unit(150, "lb"),
  30330. name: "Front",
  30331. image: {
  30332. source: "./media/characters/en/front.svg",
  30333. extra: 1697 / 1563,
  30334. bottom: 103 / 1800
  30335. }
  30336. },
  30337. back: {
  30338. height: math.unit(6, "feet"),
  30339. weight: math.unit(150, "lb"),
  30340. name: "Back",
  30341. image: {
  30342. source: "./media/characters/en/back.svg",
  30343. extra: 1700 / 1570,
  30344. bottom: 51 / 1751
  30345. }
  30346. },
  30347. frontDressed: {
  30348. height: math.unit(6, "feet"),
  30349. weight: math.unit(150, "lb"),
  30350. name: "Front (Dressed)",
  30351. image: {
  30352. source: "./media/characters/en/front-dressed.svg",
  30353. extra: 1697 / 1563,
  30354. bottom: 103 / 1800
  30355. }
  30356. },
  30357. backDressed: {
  30358. height: math.unit(6, "feet"),
  30359. weight: math.unit(150, "lb"),
  30360. name: "Back (Dressed)",
  30361. image: {
  30362. source: "./media/characters/en/back-dressed.svg",
  30363. extra: 1700 / 1570,
  30364. bottom: 51 / 1751
  30365. }
  30366. },
  30367. },
  30368. [
  30369. {
  30370. name: "Macro",
  30371. height: math.unit(210, "feet"),
  30372. default: true
  30373. },
  30374. ]
  30375. ))
  30376. characterMakers.push(() => makeCharacter(
  30377. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30378. {
  30379. front: {
  30380. height: math.unit(6, "feet"),
  30381. weight: math.unit(150, "lb"),
  30382. name: "Front",
  30383. image: {
  30384. source: "./media/characters/haze-orris/front.svg",
  30385. extra: 3975 / 3525,
  30386. bottom: 137 / 4112
  30387. }
  30388. },
  30389. },
  30390. [
  30391. {
  30392. name: "Micro",
  30393. height: math.unit(150, "mm"),
  30394. default: true
  30395. },
  30396. ]
  30397. ))
  30398. characterMakers.push(() => makeCharacter(
  30399. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30400. {
  30401. front: {
  30402. height: math.unit(6, "feet"),
  30403. weight: math.unit(150, "lb"),
  30404. name: "Front",
  30405. image: {
  30406. source: "./media/characters/casselene-yaro/front.svg",
  30407. extra: 4721 / 4541,
  30408. bottom: 82 / 4803
  30409. }
  30410. },
  30411. back: {
  30412. height: math.unit(6, "feet"),
  30413. weight: math.unit(150, "lb"),
  30414. name: "Back",
  30415. image: {
  30416. source: "./media/characters/casselene-yaro/back.svg",
  30417. extra: 4569 / 4377,
  30418. bottom: 69 / 4638
  30419. }
  30420. },
  30421. dressed: {
  30422. height: math.unit(6, "feet"),
  30423. weight: math.unit(150, "lb"),
  30424. name: "Dressed",
  30425. image: {
  30426. source: "./media/characters/casselene-yaro/dressed.svg",
  30427. extra: 4721 / 4541,
  30428. bottom: 82 / 4803
  30429. }
  30430. },
  30431. maw: {
  30432. height: math.unit(1, "feet"),
  30433. name: "Maw",
  30434. image: {
  30435. source: "./media/characters/casselene-yaro/maw.svg"
  30436. }
  30437. },
  30438. },
  30439. [
  30440. {
  30441. name: "Macro",
  30442. height: math.unit(190, "feet"),
  30443. default: true
  30444. },
  30445. ]
  30446. ))
  30447. characterMakers.push(() => makeCharacter(
  30448. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  30449. {
  30450. front: {
  30451. height: math.unit(10, "feet"),
  30452. weight: math.unit(15015, "lb"),
  30453. name: "Front",
  30454. image: {
  30455. source: "./media/characters/platine/front.svg",
  30456. extra: 1428/1353,
  30457. bottom: 31/1459
  30458. }
  30459. },
  30460. },
  30461. [
  30462. {
  30463. name: "Normal",
  30464. height: math.unit(10, "feet"),
  30465. default: true
  30466. },
  30467. {
  30468. name: "Macro",
  30469. height: math.unit(100, "feet")
  30470. },
  30471. {
  30472. name: "Megamacro",
  30473. height: math.unit(1000, "feet")
  30474. },
  30475. ]
  30476. ))
  30477. characterMakers.push(() => makeCharacter(
  30478. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30479. {
  30480. front: {
  30481. height: math.unit(15 + 5 / 12, "feet"),
  30482. weight: math.unit(4600, "lb"),
  30483. name: "Front",
  30484. image: {
  30485. source: "./media/characters/neapolitan-ananassa/front.svg",
  30486. extra: 2903 / 2736,
  30487. bottom: 0 / 2903
  30488. }
  30489. },
  30490. side: {
  30491. height: math.unit(15 + 5 / 12, "feet"),
  30492. weight: math.unit(4600, "lb"),
  30493. name: "Side",
  30494. image: {
  30495. source: "./media/characters/neapolitan-ananassa/side.svg",
  30496. extra: 2925 / 2719,
  30497. bottom: 0 / 2925
  30498. }
  30499. },
  30500. back: {
  30501. height: math.unit(15 + 5 / 12, "feet"),
  30502. weight: math.unit(4600, "lb"),
  30503. name: "Back",
  30504. image: {
  30505. source: "./media/characters/neapolitan-ananassa/back.svg",
  30506. extra: 2903 / 2736,
  30507. bottom: 0 / 2903
  30508. }
  30509. },
  30510. },
  30511. [
  30512. {
  30513. name: "Normal",
  30514. height: math.unit(15 + 5 / 12, "feet"),
  30515. default: true
  30516. },
  30517. {
  30518. name: "Post-Millenium",
  30519. height: math.unit(35 + 5 / 12, "feet")
  30520. },
  30521. {
  30522. name: "Post-Era",
  30523. height: math.unit(450 + 5 / 12, "feet")
  30524. },
  30525. ]
  30526. ))
  30527. characterMakers.push(() => makeCharacter(
  30528. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30529. {
  30530. front: {
  30531. height: math.unit(300, "meters"),
  30532. weight: math.unit(125000, "tonnes"),
  30533. name: "Front",
  30534. image: {
  30535. source: "./media/characters/pazuzu/front.svg",
  30536. extra: 877 / 794,
  30537. bottom: 47 / 924
  30538. }
  30539. },
  30540. },
  30541. [
  30542. {
  30543. name: "Macro",
  30544. height: math.unit(300, "meters"),
  30545. default: true
  30546. },
  30547. ]
  30548. ))
  30549. characterMakers.push(() => makeCharacter(
  30550. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30551. {
  30552. side: {
  30553. height: math.unit(10 + 7 / 12, "feet"),
  30554. weight: math.unit(2.5, "tons"),
  30555. name: "Side",
  30556. image: {
  30557. source: "./media/characters/aasha/side.svg",
  30558. extra: 1345 / 1245,
  30559. bottom: 111 / 1456
  30560. }
  30561. },
  30562. back: {
  30563. height: math.unit(10 + 7 / 12, "feet"),
  30564. weight: math.unit(2.5, "tons"),
  30565. name: "Back",
  30566. image: {
  30567. source: "./media/characters/aasha/back.svg",
  30568. extra: 1133 / 1057,
  30569. bottom: 257 / 1390
  30570. }
  30571. },
  30572. },
  30573. [
  30574. {
  30575. name: "Normal",
  30576. height: math.unit(10 + 7 / 12, "feet"),
  30577. default: true
  30578. },
  30579. ]
  30580. ))
  30581. characterMakers.push(() => makeCharacter(
  30582. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30583. {
  30584. front: {
  30585. height: math.unit(6 + 3 / 12, "feet"),
  30586. name: "Front",
  30587. image: {
  30588. source: "./media/characters/nevan/front.svg",
  30589. extra: 704 / 704,
  30590. bottom: 28 / 732
  30591. }
  30592. },
  30593. back: {
  30594. height: math.unit(6 + 3 / 12, "feet"),
  30595. name: "Back",
  30596. image: {
  30597. source: "./media/characters/nevan/back.svg",
  30598. extra: 714 / 714,
  30599. bottom: 21 / 735
  30600. }
  30601. },
  30602. frontFlaccid: {
  30603. height: math.unit(6 + 3 / 12, "feet"),
  30604. name: "Front (Flaccid)",
  30605. image: {
  30606. source: "./media/characters/nevan/front-flaccid.svg",
  30607. extra: 704 / 704,
  30608. bottom: 28 / 732
  30609. }
  30610. },
  30611. frontErect: {
  30612. height: math.unit(6 + 3 / 12, "feet"),
  30613. name: "Front (Erect)",
  30614. image: {
  30615. source: "./media/characters/nevan/front-erect.svg",
  30616. extra: 704 / 704,
  30617. bottom: 28 / 732
  30618. }
  30619. },
  30620. backFlaccid: {
  30621. height: math.unit(6 + 3 / 12, "feet"),
  30622. name: "Back (Flaccid)",
  30623. image: {
  30624. source: "./media/characters/nevan/back-flaccid.svg",
  30625. extra: 714 / 714,
  30626. bottom: 21 / 735
  30627. }
  30628. },
  30629. },
  30630. [
  30631. {
  30632. name: "Normal",
  30633. height: math.unit(6 + 3 / 12, "feet"),
  30634. default: true
  30635. },
  30636. ]
  30637. ))
  30638. characterMakers.push(() => makeCharacter(
  30639. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30640. {
  30641. front: {
  30642. height: math.unit(4, "feet"),
  30643. name: "Front",
  30644. image: {
  30645. source: "./media/characters/arhan/front.svg",
  30646. extra: 3368 / 3133,
  30647. bottom: 0 / 3368
  30648. }
  30649. },
  30650. side: {
  30651. height: math.unit(4, "feet"),
  30652. name: "Side",
  30653. image: {
  30654. source: "./media/characters/arhan/side.svg",
  30655. extra: 3347 / 3105,
  30656. bottom: 0 / 3347
  30657. }
  30658. },
  30659. tongue: {
  30660. height: math.unit(1.42, "feet"),
  30661. name: "Tongue",
  30662. image: {
  30663. source: "./media/characters/arhan/tongue.svg"
  30664. }
  30665. },
  30666. head: {
  30667. height: math.unit(0.85, "feet"),
  30668. name: "Head",
  30669. image: {
  30670. source: "./media/characters/arhan/head.svg"
  30671. }
  30672. },
  30673. },
  30674. [
  30675. {
  30676. name: "Normal",
  30677. height: math.unit(4, "feet"),
  30678. default: true
  30679. },
  30680. ]
  30681. ))
  30682. characterMakers.push(() => makeCharacter(
  30683. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30684. {
  30685. front: {
  30686. height: math.unit(5 + 7.5 / 12, "feet"),
  30687. weight: math.unit(120, "lb"),
  30688. name: "Front",
  30689. image: {
  30690. source: "./media/characters/digi-duncan/front.svg",
  30691. extra: 330 / 326,
  30692. bottom: 16 / 346
  30693. }
  30694. },
  30695. side: {
  30696. height: math.unit(5 + 7.5 / 12, "feet"),
  30697. weight: math.unit(120, "lb"),
  30698. name: "Side",
  30699. image: {
  30700. source: "./media/characters/digi-duncan/side.svg",
  30701. extra: 341 / 337,
  30702. bottom: 1 / 342
  30703. }
  30704. },
  30705. back: {
  30706. height: math.unit(5 + 7.5 / 12, "feet"),
  30707. weight: math.unit(120, "lb"),
  30708. name: "Back",
  30709. image: {
  30710. source: "./media/characters/digi-duncan/back.svg",
  30711. extra: 330 / 326,
  30712. bottom: 12 / 342
  30713. }
  30714. },
  30715. },
  30716. [
  30717. {
  30718. name: "Speck",
  30719. height: math.unit(0.25, "mm")
  30720. },
  30721. {
  30722. name: "Micro",
  30723. height: math.unit(5, "mm")
  30724. },
  30725. {
  30726. name: "Tiny",
  30727. height: math.unit(0.5, "inches"),
  30728. default: true
  30729. },
  30730. {
  30731. name: "Human",
  30732. height: math.unit(5 + 7.5 / 12, "feet")
  30733. },
  30734. {
  30735. name: "Minigiant",
  30736. height: math.unit(8 + 5.25, "feet")
  30737. },
  30738. {
  30739. name: "Giant",
  30740. height: math.unit(2000, "feet")
  30741. },
  30742. {
  30743. name: "Mega",
  30744. height: math.unit(371.1, "miles")
  30745. },
  30746. ]
  30747. ))
  30748. characterMakers.push(() => makeCharacter(
  30749. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30750. {
  30751. front: {
  30752. height: math.unit(2, "meters"),
  30753. weight: math.unit(350, "kg"),
  30754. name: "Front",
  30755. image: {
  30756. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30757. extra: 898 / 838,
  30758. bottom: 9 / 907
  30759. }
  30760. },
  30761. },
  30762. [
  30763. {
  30764. name: "Micro",
  30765. height: math.unit(8, "meters")
  30766. },
  30767. {
  30768. name: "Normal",
  30769. height: math.unit(50, "meters"),
  30770. default: true
  30771. },
  30772. {
  30773. name: "Macro",
  30774. height: math.unit(500, "meters")
  30775. },
  30776. ]
  30777. ))
  30778. characterMakers.push(() => makeCharacter(
  30779. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30780. {
  30781. front: {
  30782. height: math.unit(6 + 6 / 12, "feet"),
  30783. name: "Front",
  30784. image: {
  30785. source: "./media/characters/khardesh/front.svg",
  30786. extra: 1788/1596,
  30787. bottom: 66/1854
  30788. }
  30789. },
  30790. back: {
  30791. height: math.unit(6 + 6 / 12, "feet"),
  30792. name: "Back",
  30793. image: {
  30794. source: "./media/characters/khardesh/back.svg",
  30795. extra: 1781/1584,
  30796. bottom: 68/1849
  30797. }
  30798. },
  30799. },
  30800. [
  30801. {
  30802. name: "Normal",
  30803. height: math.unit(6 + 6 / 12, "feet"),
  30804. default: true
  30805. },
  30806. {
  30807. name: "Normal+",
  30808. height: math.unit(4, "meters")
  30809. },
  30810. {
  30811. name: "Macro",
  30812. height: math.unit(50, "meters")
  30813. },
  30814. {
  30815. name: "Macro+",
  30816. height: math.unit(100, "meters")
  30817. },
  30818. {
  30819. name: "Megamacro",
  30820. height: math.unit(20, "km")
  30821. },
  30822. ]
  30823. ))
  30824. characterMakers.push(() => makeCharacter(
  30825. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30826. {
  30827. front: {
  30828. height: math.unit(6, "feet"),
  30829. weight: math.unit(150, "lb"),
  30830. name: "Front",
  30831. image: {
  30832. source: "./media/characters/kosho/front.svg",
  30833. extra: 1847 / 1847,
  30834. bottom: 86 / 1933
  30835. }
  30836. },
  30837. },
  30838. [
  30839. {
  30840. name: "Second-stage micro",
  30841. height: math.unit(0.5, "inches")
  30842. },
  30843. {
  30844. name: "First-stage micro",
  30845. height: math.unit(6, "inches")
  30846. },
  30847. {
  30848. name: "Normal",
  30849. height: math.unit(6, "feet"),
  30850. default: true
  30851. },
  30852. {
  30853. name: "First-stage macro",
  30854. height: math.unit(72, "feet")
  30855. },
  30856. {
  30857. name: "Second-stage macro",
  30858. height: math.unit(864, "feet")
  30859. },
  30860. ]
  30861. ))
  30862. characterMakers.push(() => makeCharacter(
  30863. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30864. {
  30865. normal: {
  30866. height: math.unit(4 + 6 / 12, "feet"),
  30867. name: "Normal",
  30868. image: {
  30869. source: "./media/characters/hydra/normal.svg",
  30870. extra: 2833 / 2634,
  30871. bottom: 68 / 2901
  30872. }
  30873. },
  30874. smol: {
  30875. height: math.unit(0.705, "inches"),
  30876. name: "Smol",
  30877. image: {
  30878. source: "./media/characters/hydra/smol.svg",
  30879. extra: 2715 / 2540,
  30880. bottom: 0 / 2715
  30881. }
  30882. },
  30883. },
  30884. [
  30885. {
  30886. name: "Normal",
  30887. height: math.unit(4 + 6 / 12, "feet"),
  30888. default: true
  30889. }
  30890. ]
  30891. ))
  30892. characterMakers.push(() => makeCharacter(
  30893. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30894. {
  30895. front: {
  30896. height: math.unit(0.6, "cm"),
  30897. name: "Front",
  30898. image: {
  30899. source: "./media/characters/daz/front.svg",
  30900. extra: 1682 / 1164,
  30901. bottom: 42 / 1724
  30902. }
  30903. },
  30904. },
  30905. [
  30906. {
  30907. name: "Normal",
  30908. height: math.unit(0.6, "cm"),
  30909. default: true
  30910. },
  30911. ]
  30912. ))
  30913. characterMakers.push(() => makeCharacter(
  30914. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30915. {
  30916. front: {
  30917. height: math.unit(6, "feet"),
  30918. weight: math.unit(235, "lb"),
  30919. name: "Front",
  30920. image: {
  30921. source: "./media/characters/theo-pangolin/front.svg",
  30922. extra: 1996 / 1969,
  30923. bottom: 115 / 2111
  30924. }
  30925. },
  30926. back: {
  30927. height: math.unit(6, "feet"),
  30928. weight: math.unit(235, "lb"),
  30929. name: "Back",
  30930. image: {
  30931. source: "./media/characters/theo-pangolin/back.svg",
  30932. extra: 1979 / 1979,
  30933. bottom: 40 / 2019
  30934. }
  30935. },
  30936. feral: {
  30937. height: math.unit(2, "feet"),
  30938. weight: math.unit(30, "lb"),
  30939. name: "Feral",
  30940. image: {
  30941. source: "./media/characters/theo-pangolin/feral.svg",
  30942. extra: 803 / 791,
  30943. bottom: 181 / 984
  30944. }
  30945. },
  30946. footFive: {
  30947. height: math.unit(1.43, "feet"),
  30948. name: "Foot (Five Toes)",
  30949. image: {
  30950. source: "./media/characters/theo-pangolin/foot-five.svg"
  30951. }
  30952. },
  30953. footFour: {
  30954. height: math.unit(1.43, "feet"),
  30955. name: "Foot (Four Toes)",
  30956. image: {
  30957. source: "./media/characters/theo-pangolin/foot-four.svg"
  30958. }
  30959. },
  30960. handFour: {
  30961. height: math.unit(0.81, "feet"),
  30962. name: "Hand (Four Fingers)",
  30963. image: {
  30964. source: "./media/characters/theo-pangolin/hand-four.svg"
  30965. }
  30966. },
  30967. handThree: {
  30968. height: math.unit(0.81, "feet"),
  30969. name: "Hand (Three Fingers)",
  30970. image: {
  30971. source: "./media/characters/theo-pangolin/hand-three.svg"
  30972. }
  30973. },
  30974. headFront: {
  30975. height: math.unit(1.37, "feet"),
  30976. name: "Head (Front)",
  30977. image: {
  30978. source: "./media/characters/theo-pangolin/head-front.svg"
  30979. }
  30980. },
  30981. headSide: {
  30982. height: math.unit(1.43, "feet"),
  30983. name: "Head (Side)",
  30984. image: {
  30985. source: "./media/characters/theo-pangolin/head-side.svg"
  30986. }
  30987. },
  30988. tongue: {
  30989. height: math.unit(2.29, "feet"),
  30990. name: "Tongue",
  30991. image: {
  30992. source: "./media/characters/theo-pangolin/tongue.svg"
  30993. }
  30994. },
  30995. },
  30996. [
  30997. {
  30998. name: "Normal",
  30999. height: math.unit(6, "feet")
  31000. },
  31001. {
  31002. name: "Macro",
  31003. height: math.unit(400, "feet"),
  31004. default: true
  31005. },
  31006. ]
  31007. ))
  31008. characterMakers.push(() => makeCharacter(
  31009. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31010. {
  31011. front: {
  31012. height: math.unit(6, "inches"),
  31013. weight: math.unit(0.036, "kg"),
  31014. name: "Front",
  31015. image: {
  31016. source: "./media/characters/renée/front.svg",
  31017. extra: 900 / 886,
  31018. bottom: 8 / 908
  31019. }
  31020. },
  31021. },
  31022. [
  31023. {
  31024. name: "Nano",
  31025. height: math.unit(1, "nm")
  31026. },
  31027. {
  31028. name: "Micro",
  31029. height: math.unit(1, "mm")
  31030. },
  31031. {
  31032. name: "Normal",
  31033. height: math.unit(6, "inches")
  31034. },
  31035. {
  31036. name: "Macro",
  31037. height: math.unit(2000, "feet"),
  31038. default: true
  31039. },
  31040. {
  31041. name: "Megamacro",
  31042. height: math.unit(2, "km")
  31043. },
  31044. {
  31045. name: "Gigamacro",
  31046. height: math.unit(2000, "km")
  31047. },
  31048. {
  31049. name: "Teramacro",
  31050. height: math.unit(250000, "km")
  31051. },
  31052. ]
  31053. ))
  31054. characterMakers.push(() => makeCharacter(
  31055. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31056. {
  31057. front: {
  31058. height: math.unit(4, "meters"),
  31059. weight: math.unit(150, "kg"),
  31060. name: "Front",
  31061. image: {
  31062. source: "./media/characters/caledvwlch/front.svg",
  31063. extra: 1760 / 1551,
  31064. bottom: 28 / 1788
  31065. }
  31066. },
  31067. side: {
  31068. height: math.unit(4, "meters"),
  31069. weight: math.unit(150, "kg"),
  31070. name: "Side",
  31071. image: {
  31072. source: "./media/characters/caledvwlch/side.svg",
  31073. extra: 1605 / 1536,
  31074. bottom: 31 / 1636
  31075. }
  31076. },
  31077. back: {
  31078. height: math.unit(4, "meters"),
  31079. weight: math.unit(150, "kg"),
  31080. name: "Back",
  31081. image: {
  31082. source: "./media/characters/caledvwlch/back.svg",
  31083. extra: 1635 / 1565,
  31084. bottom: 27 / 1662
  31085. }
  31086. },
  31087. },
  31088. [
  31089. {
  31090. name: "\"Incognito\"",
  31091. height: math.unit(4, "meters")
  31092. },
  31093. {
  31094. name: "Small rampage",
  31095. height: math.unit(600, "meters")
  31096. },
  31097. {
  31098. name: "Mega",
  31099. height: math.unit(30, "km")
  31100. },
  31101. {
  31102. name: "Home-size",
  31103. height: math.unit(50, "km"),
  31104. default: true
  31105. },
  31106. {
  31107. name: "Giga",
  31108. height: math.unit(300, "km")
  31109. },
  31110. {
  31111. name: "Lounging",
  31112. height: math.unit(11000, "km")
  31113. },
  31114. {
  31115. name: "Planet snacking",
  31116. height: math.unit(2000000, "km")
  31117. },
  31118. ]
  31119. ))
  31120. characterMakers.push(() => makeCharacter(
  31121. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31122. {
  31123. front: {
  31124. height: math.unit(6, "feet"),
  31125. weight: math.unit(215, "lb"),
  31126. name: "Front",
  31127. image: {
  31128. source: "./media/characters/sapphire-svell/front.svg",
  31129. extra: 495 / 455,
  31130. bottom: 20 / 515
  31131. }
  31132. },
  31133. back: {
  31134. height: math.unit(6, "feet"),
  31135. weight: math.unit(216, "lb"),
  31136. name: "Back",
  31137. image: {
  31138. source: "./media/characters/sapphire-svell/back.svg",
  31139. extra: 497 / 477,
  31140. bottom: 7 / 504
  31141. }
  31142. },
  31143. maw: {
  31144. height: math.unit(1.57, "feet"),
  31145. name: "Maw",
  31146. image: {
  31147. source: "./media/characters/sapphire-svell/maw.svg"
  31148. }
  31149. },
  31150. foot: {
  31151. height: math.unit(1.07, "feet"),
  31152. name: "Foot",
  31153. image: {
  31154. source: "./media/characters/sapphire-svell/foot.svg"
  31155. }
  31156. },
  31157. toering: {
  31158. height: math.unit(1.7, "inch"),
  31159. name: "Toering",
  31160. image: {
  31161. source: "./media/characters/sapphire-svell/toering.svg"
  31162. }
  31163. },
  31164. },
  31165. [
  31166. {
  31167. name: "Normal",
  31168. height: math.unit(300, "feet"),
  31169. default: true
  31170. },
  31171. {
  31172. name: "Augmented",
  31173. height: math.unit(1250, "feet")
  31174. },
  31175. {
  31176. name: "Unleashed",
  31177. height: math.unit(3000, "feet")
  31178. },
  31179. ]
  31180. ))
  31181. characterMakers.push(() => makeCharacter(
  31182. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31183. {
  31184. side: {
  31185. height: math.unit(2 + 3 / 12, "feet"),
  31186. weight: math.unit(110, "lb"),
  31187. name: "Side",
  31188. image: {
  31189. source: "./media/characters/glitch-flux/side.svg",
  31190. extra: 997 / 805,
  31191. bottom: 20 / 1017
  31192. }
  31193. },
  31194. },
  31195. [
  31196. {
  31197. name: "Normal",
  31198. height: math.unit(2 + 3 / 12, "feet"),
  31199. default: true
  31200. },
  31201. ]
  31202. ))
  31203. characterMakers.push(() => makeCharacter(
  31204. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31205. {
  31206. front: {
  31207. height: math.unit(4, "meters"),
  31208. name: "Front",
  31209. image: {
  31210. source: "./media/characters/mid/front.svg",
  31211. extra: 507 / 476,
  31212. bottom: 17 / 524
  31213. }
  31214. },
  31215. back: {
  31216. height: math.unit(4, "meters"),
  31217. name: "Back",
  31218. image: {
  31219. source: "./media/characters/mid/back.svg",
  31220. extra: 519 / 487,
  31221. bottom: 7 / 526
  31222. }
  31223. },
  31224. stuck: {
  31225. height: math.unit(2.2, "meters"),
  31226. name: "Stuck",
  31227. image: {
  31228. source: "./media/characters/mid/stuck.svg",
  31229. extra: 1951 / 1869,
  31230. bottom: 88 / 2039
  31231. }
  31232. }
  31233. },
  31234. [
  31235. {
  31236. name: "Normal",
  31237. height: math.unit(4, "meters"),
  31238. default: true
  31239. },
  31240. {
  31241. name: "Big",
  31242. height: math.unit(10, "meters")
  31243. },
  31244. {
  31245. name: "Macro",
  31246. height: math.unit(800, "meters")
  31247. },
  31248. {
  31249. name: "Megamacro",
  31250. height: math.unit(100, "km")
  31251. },
  31252. {
  31253. name: "Overgrown",
  31254. height: math.unit(1, "parsec")
  31255. },
  31256. ]
  31257. ))
  31258. characterMakers.push(() => makeCharacter(
  31259. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31260. {
  31261. front: {
  31262. height: math.unit(2.5, "meters"),
  31263. weight: math.unit(225, "kg"),
  31264. name: "Front",
  31265. image: {
  31266. source: "./media/characters/iris/front.svg",
  31267. extra: 3348 / 3251,
  31268. bottom: 205 / 3553
  31269. }
  31270. },
  31271. maw: {
  31272. height: math.unit(0.56, "meter"),
  31273. name: "Maw",
  31274. image: {
  31275. source: "./media/characters/iris/maw.svg"
  31276. }
  31277. },
  31278. },
  31279. [
  31280. {
  31281. name: "Mewter cat",
  31282. height: math.unit(1.2, "meters")
  31283. },
  31284. {
  31285. name: "Minimacro",
  31286. height: math.unit(2.5, "meters"),
  31287. default: true
  31288. },
  31289. {
  31290. name: "Macro",
  31291. height: math.unit(180, "meters")
  31292. },
  31293. {
  31294. name: "Megamacro",
  31295. height: math.unit(2746, "meters")
  31296. },
  31297. ]
  31298. ))
  31299. characterMakers.push(() => makeCharacter(
  31300. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31301. {
  31302. front: {
  31303. height: math.unit(6, "feet"),
  31304. weight: math.unit(135, "lb"),
  31305. name: "Front",
  31306. image: {
  31307. source: "./media/characters/axel/front.svg",
  31308. extra: 908 / 908,
  31309. bottom: 58 / 966
  31310. }
  31311. },
  31312. side: {
  31313. height: math.unit(6, "feet"),
  31314. weight: math.unit(135, "lb"),
  31315. name: "Side",
  31316. image: {
  31317. source: "./media/characters/axel/side.svg",
  31318. extra: 958 / 958,
  31319. bottom: 11 / 969
  31320. }
  31321. },
  31322. back: {
  31323. height: math.unit(6, "feet"),
  31324. weight: math.unit(135, "lb"),
  31325. name: "Back",
  31326. image: {
  31327. source: "./media/characters/axel/back.svg",
  31328. extra: 887 / 887,
  31329. bottom: 34 / 921
  31330. }
  31331. },
  31332. head: {
  31333. height: math.unit(1.07, "feet"),
  31334. name: "Head",
  31335. image: {
  31336. source: "./media/characters/axel/head.svg"
  31337. }
  31338. },
  31339. beak: {
  31340. height: math.unit(1.4, "feet"),
  31341. name: "Beak",
  31342. image: {
  31343. source: "./media/characters/axel/beak.svg"
  31344. }
  31345. },
  31346. beakSide: {
  31347. height: math.unit(1.4, "feet"),
  31348. name: "Beak Side",
  31349. image: {
  31350. source: "./media/characters/axel/beak-side.svg"
  31351. }
  31352. },
  31353. sheath: {
  31354. height: math.unit(0.5, "feet"),
  31355. name: "Sheath",
  31356. image: {
  31357. source: "./media/characters/axel/sheath.svg"
  31358. }
  31359. },
  31360. dick: {
  31361. height: math.unit(0.98, "feet"),
  31362. name: "Dick",
  31363. image: {
  31364. source: "./media/characters/axel/dick.svg"
  31365. }
  31366. },
  31367. },
  31368. [
  31369. {
  31370. name: "Macro",
  31371. height: math.unit(68, "meters"),
  31372. default: true
  31373. },
  31374. ]
  31375. ))
  31376. characterMakers.push(() => makeCharacter(
  31377. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31378. {
  31379. front: {
  31380. height: math.unit(3.5, "meters"),
  31381. weight: math.unit(1200, "kg"),
  31382. name: "Front",
  31383. image: {
  31384. source: "./media/characters/joanna/front.svg",
  31385. extra: 1596 / 1488,
  31386. bottom: 29 / 1625
  31387. }
  31388. },
  31389. back: {
  31390. height: math.unit(3.5, "meters"),
  31391. weight: math.unit(1200, "kg"),
  31392. name: "Back",
  31393. image: {
  31394. source: "./media/characters/joanna/back.svg",
  31395. extra: 1594 / 1495,
  31396. bottom: 26 / 1620
  31397. }
  31398. },
  31399. frontShorts: {
  31400. height: math.unit(3.5, "meters"),
  31401. weight: math.unit(1200, "kg"),
  31402. name: "Front (Shorts)",
  31403. image: {
  31404. source: "./media/characters/joanna/front-shorts.svg",
  31405. extra: 1596 / 1488,
  31406. bottom: 29 / 1625
  31407. }
  31408. },
  31409. frontBiker: {
  31410. height: math.unit(3.5, "meters"),
  31411. weight: math.unit(1200, "kg"),
  31412. name: "Front (Biker)",
  31413. image: {
  31414. source: "./media/characters/joanna/front-biker.svg",
  31415. extra: 1596 / 1488,
  31416. bottom: 29 / 1625
  31417. }
  31418. },
  31419. backBiker: {
  31420. height: math.unit(3.5, "meters"),
  31421. weight: math.unit(1200, "kg"),
  31422. name: "Back (Biker)",
  31423. image: {
  31424. source: "./media/characters/joanna/back-biker.svg",
  31425. extra: 1594 / 1495,
  31426. bottom: 88 / 1682
  31427. }
  31428. },
  31429. bikeLeft: {
  31430. height: math.unit(2.4, "meters"),
  31431. weight: math.unit(1600, "kg"),
  31432. name: "Bike (Left)",
  31433. image: {
  31434. source: "./media/characters/joanna/bike-left.svg",
  31435. extra: 720 / 720,
  31436. bottom: 8 / 728
  31437. }
  31438. },
  31439. bikeRight: {
  31440. height: math.unit(2.4, "meters"),
  31441. weight: math.unit(1600, "kg"),
  31442. name: "Bike (Right)",
  31443. image: {
  31444. source: "./media/characters/joanna/bike-right.svg",
  31445. extra: 720 / 720,
  31446. bottom: 8 / 728
  31447. }
  31448. },
  31449. },
  31450. [
  31451. {
  31452. name: "Incognito",
  31453. height: math.unit(3.5, "meters")
  31454. },
  31455. {
  31456. name: "Casual Big",
  31457. height: math.unit(200, "meters")
  31458. },
  31459. {
  31460. name: "Macro",
  31461. height: math.unit(600, "meters")
  31462. },
  31463. {
  31464. name: "Original",
  31465. height: math.unit(20, "km"),
  31466. default: true
  31467. },
  31468. {
  31469. name: "Giga",
  31470. height: math.unit(400, "km")
  31471. },
  31472. {
  31473. name: "Lounging",
  31474. height: math.unit(1500, "km")
  31475. },
  31476. {
  31477. name: "Planetary",
  31478. height: math.unit(200000, "km")
  31479. },
  31480. ]
  31481. ))
  31482. characterMakers.push(() => makeCharacter(
  31483. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31484. {
  31485. front: {
  31486. height: math.unit(6, "feet"),
  31487. weight: math.unit(150, "lb"),
  31488. name: "Front",
  31489. image: {
  31490. source: "./media/characters/hugo-sigil/front.svg",
  31491. extra: 522 / 500,
  31492. bottom: 2 / 524
  31493. }
  31494. },
  31495. back: {
  31496. height: math.unit(6, "feet"),
  31497. weight: math.unit(150, "lb"),
  31498. name: "Back",
  31499. image: {
  31500. source: "./media/characters/hugo-sigil/back.svg",
  31501. extra: 519 / 495,
  31502. bottom: 5 / 524
  31503. }
  31504. },
  31505. maw: {
  31506. height: math.unit(1.4, "feet"),
  31507. weight: math.unit(150, "lb"),
  31508. name: "Maw",
  31509. image: {
  31510. source: "./media/characters/hugo-sigil/maw.svg"
  31511. }
  31512. },
  31513. feet: {
  31514. height: math.unit(1.56, "feet"),
  31515. weight: math.unit(150, "lb"),
  31516. name: "Feet",
  31517. image: {
  31518. source: "./media/characters/hugo-sigil/feet.svg",
  31519. extra: 177 / 177,
  31520. bottom: 12 / 189
  31521. }
  31522. },
  31523. },
  31524. [
  31525. {
  31526. name: "Normal",
  31527. height: math.unit(6, "feet")
  31528. },
  31529. {
  31530. name: "Macro",
  31531. height: math.unit(200, "feet"),
  31532. default: true
  31533. },
  31534. ]
  31535. ))
  31536. characterMakers.push(() => makeCharacter(
  31537. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31538. {
  31539. front: {
  31540. height: math.unit(6, "feet"),
  31541. weight: math.unit(150, "lb"),
  31542. name: "Front",
  31543. image: {
  31544. source: "./media/characters/peri/front.svg",
  31545. extra: 2354 / 2233,
  31546. bottom: 49 / 2403
  31547. }
  31548. },
  31549. },
  31550. [
  31551. {
  31552. name: "Really Small",
  31553. height: math.unit(1, "nm")
  31554. },
  31555. {
  31556. name: "Micro",
  31557. height: math.unit(4, "inches")
  31558. },
  31559. {
  31560. name: "Normal",
  31561. height: math.unit(7, "inches"),
  31562. default: true
  31563. },
  31564. {
  31565. name: "Macro",
  31566. height: math.unit(400, "feet")
  31567. },
  31568. {
  31569. name: "Megamacro",
  31570. height: math.unit(100, "miles")
  31571. },
  31572. ]
  31573. ))
  31574. characterMakers.push(() => makeCharacter(
  31575. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31576. {
  31577. frontSlim: {
  31578. height: math.unit(7, "feet"),
  31579. name: "Front (Slim)",
  31580. image: {
  31581. source: "./media/characters/issilora/front-slim.svg",
  31582. extra: 529 / 449,
  31583. bottom: 53 / 582
  31584. }
  31585. },
  31586. sideSlim: {
  31587. height: math.unit(7, "feet"),
  31588. name: "Side (Slim)",
  31589. image: {
  31590. source: "./media/characters/issilora/side-slim.svg",
  31591. extra: 570 / 480,
  31592. bottom: 30 / 600
  31593. }
  31594. },
  31595. backSlim: {
  31596. height: math.unit(7, "feet"),
  31597. name: "Back (Slim)",
  31598. image: {
  31599. source: "./media/characters/issilora/back-slim.svg",
  31600. extra: 537 / 455,
  31601. bottom: 46 / 583
  31602. }
  31603. },
  31604. frontBuff: {
  31605. height: math.unit(7, "feet"),
  31606. name: "Front (Buff)",
  31607. image: {
  31608. source: "./media/characters/issilora/front-buff.svg",
  31609. extra: 2310 / 2035,
  31610. bottom: 335 / 2645
  31611. }
  31612. },
  31613. head: {
  31614. height: math.unit(1.94, "feet"),
  31615. name: "Head",
  31616. image: {
  31617. source: "./media/characters/issilora/head.svg"
  31618. }
  31619. },
  31620. },
  31621. [
  31622. {
  31623. name: "Minimum",
  31624. height: math.unit(7, "feet")
  31625. },
  31626. {
  31627. name: "Comfortable",
  31628. height: math.unit(17, "feet")
  31629. },
  31630. {
  31631. name: "Fun Size",
  31632. height: math.unit(47, "feet")
  31633. },
  31634. {
  31635. name: "Natural Macro",
  31636. height: math.unit(137, "feet"),
  31637. default: true
  31638. },
  31639. {
  31640. name: "Maximum Kaiju",
  31641. height: math.unit(397, "feet")
  31642. },
  31643. ]
  31644. ))
  31645. characterMakers.push(() => makeCharacter(
  31646. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31647. {
  31648. front: {
  31649. height: math.unit(50 + 9/12, "feet"),
  31650. weight: math.unit(32.8, "tons"),
  31651. name: "Front",
  31652. image: {
  31653. source: "./media/characters/irb'iiritaahn/front.svg",
  31654. extra: 1878/1826,
  31655. bottom: 326/2204
  31656. }
  31657. },
  31658. back: {
  31659. height: math.unit(50 + 9/12, "feet"),
  31660. weight: math.unit(32.8, "tons"),
  31661. name: "Back",
  31662. image: {
  31663. source: "./media/characters/irb'iiritaahn/back.svg",
  31664. extra: 2052/2018,
  31665. bottom: 152/2204
  31666. }
  31667. },
  31668. head: {
  31669. height: math.unit(12.86, "feet"),
  31670. name: "Head",
  31671. image: {
  31672. source: "./media/characters/irb'iiritaahn/head.svg"
  31673. }
  31674. },
  31675. maw: {
  31676. height: math.unit(9.66, "feet"),
  31677. name: "Maw",
  31678. image: {
  31679. source: "./media/characters/irb'iiritaahn/maw.svg"
  31680. }
  31681. },
  31682. frontDick: {
  31683. height: math.unit(8.78461, "feet"),
  31684. name: "Front Dick",
  31685. image: {
  31686. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31687. }
  31688. },
  31689. rearDick: {
  31690. height: math.unit(8.78461, "feet"),
  31691. name: "Rear Dick",
  31692. image: {
  31693. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31694. }
  31695. },
  31696. rearDickUnfolded: {
  31697. height: math.unit(8.78, "feet"),
  31698. name: "Rear Dick (Unfolded)",
  31699. image: {
  31700. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31701. }
  31702. },
  31703. wings: {
  31704. height: math.unit(43, "feet"),
  31705. name: "Wings",
  31706. image: {
  31707. source: "./media/characters/irb'iiritaahn/wings.svg"
  31708. }
  31709. },
  31710. },
  31711. [
  31712. {
  31713. name: "Macro",
  31714. height: math.unit(50 + 9/12, "feet"),
  31715. default: true
  31716. },
  31717. ]
  31718. ))
  31719. characterMakers.push(() => makeCharacter(
  31720. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31721. {
  31722. front: {
  31723. height: math.unit(205, "cm"),
  31724. weight: math.unit(102, "kg"),
  31725. name: "Front",
  31726. image: {
  31727. source: "./media/characters/irbisgreif/front.svg",
  31728. extra: 785/706,
  31729. bottom: 13/798
  31730. }
  31731. },
  31732. back: {
  31733. height: math.unit(205, "cm"),
  31734. weight: math.unit(102, "kg"),
  31735. name: "Back",
  31736. image: {
  31737. source: "./media/characters/irbisgreif/back.svg",
  31738. extra: 713/701,
  31739. bottom: 26/739
  31740. }
  31741. },
  31742. frontDressed: {
  31743. height: math.unit(216, "cm"),
  31744. weight: math.unit(102, "kg"),
  31745. name: "Front-dressed",
  31746. image: {
  31747. source: "./media/characters/irbisgreif/front-dressed.svg",
  31748. extra: 902/776,
  31749. bottom: 14/916
  31750. }
  31751. },
  31752. sideDressed: {
  31753. height: math.unit(195, "cm"),
  31754. weight: math.unit(102, "kg"),
  31755. name: "Side-dressed",
  31756. image: {
  31757. source: "./media/characters/irbisgreif/side-dressed.svg",
  31758. extra: 788/688,
  31759. bottom: 21/809
  31760. }
  31761. },
  31762. backDressed: {
  31763. height: math.unit(216, "cm"),
  31764. weight: math.unit(102, "kg"),
  31765. name: "Back-dressed",
  31766. image: {
  31767. source: "./media/characters/irbisgreif/back-dressed.svg",
  31768. extra: 901/783,
  31769. bottom: 10/911
  31770. }
  31771. },
  31772. dick: {
  31773. height: math.unit(0.49, "feet"),
  31774. name: "Dick",
  31775. image: {
  31776. source: "./media/characters/irbisgreif/dick.svg"
  31777. }
  31778. },
  31779. wingTop: {
  31780. height: math.unit(1.93 , "feet"),
  31781. name: "Wing-top",
  31782. image: {
  31783. source: "./media/characters/irbisgreif/wing-top.svg"
  31784. }
  31785. },
  31786. wingBottom: {
  31787. height: math.unit(1.93 , "feet"),
  31788. name: "Wing-bottom",
  31789. image: {
  31790. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31791. }
  31792. },
  31793. },
  31794. [
  31795. {
  31796. name: "Normal",
  31797. height: math.unit(216, "cm"),
  31798. default: true
  31799. },
  31800. ]
  31801. ))
  31802. characterMakers.push(() => makeCharacter(
  31803. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31804. {
  31805. front: {
  31806. height: math.unit(6, "feet"),
  31807. weight: math.unit(150, "lb"),
  31808. name: "Front",
  31809. image: {
  31810. source: "./media/characters/pride/front.svg",
  31811. extra: 1299/1230,
  31812. bottom: 18/1317
  31813. }
  31814. },
  31815. },
  31816. [
  31817. {
  31818. name: "Normal",
  31819. height: math.unit(7, "feet")
  31820. },
  31821. {
  31822. name: "Mini-macro",
  31823. height: math.unit(11, "feet")
  31824. },
  31825. {
  31826. name: "Macro",
  31827. height: math.unit(15, "meters"),
  31828. default: true
  31829. },
  31830. {
  31831. name: "Macro+",
  31832. height: math.unit(40, "meters")
  31833. },
  31834. ]
  31835. ))
  31836. characterMakers.push(() => makeCharacter(
  31837. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31838. {
  31839. front: {
  31840. height: math.unit(4 + 2 / 12, "feet"),
  31841. weight: math.unit(95, "lb"),
  31842. name: "Front",
  31843. image: {
  31844. source: "./media/characters/vaelophis-nyx/front.svg",
  31845. extra: 2532/2330,
  31846. bottom: 0/2532
  31847. }
  31848. },
  31849. back: {
  31850. height: math.unit(4 + 2 / 12, "feet"),
  31851. weight: math.unit(95, "lb"),
  31852. name: "Back",
  31853. image: {
  31854. source: "./media/characters/vaelophis-nyx/back.svg",
  31855. extra: 2484/2361,
  31856. bottom: 0/2484
  31857. }
  31858. },
  31859. feralSide: {
  31860. height: math.unit(2 + 1/12, "feet"),
  31861. weight: math.unit(20, "lb"),
  31862. name: "Feral (Side)",
  31863. image: {
  31864. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31865. extra: 1721/1581,
  31866. bottom: 70/1791
  31867. }
  31868. },
  31869. feralLazing: {
  31870. height: math.unit(1.08, "feet"),
  31871. weight: math.unit(20, "lb"),
  31872. name: "Feral (Lazing)",
  31873. image: {
  31874. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31875. extra: 822/822,
  31876. bottom: 248/1070
  31877. }
  31878. },
  31879. ear: {
  31880. height: math.unit(0.416, "feet"),
  31881. name: "Ear",
  31882. image: {
  31883. source: "./media/characters/vaelophis-nyx/ear.svg"
  31884. }
  31885. },
  31886. eye: {
  31887. height: math.unit(0.0748, "feet"),
  31888. name: "Eye",
  31889. image: {
  31890. source: "./media/characters/vaelophis-nyx/eye.svg"
  31891. }
  31892. },
  31893. mouth: {
  31894. height: math.unit(0.378, "feet"),
  31895. name: "Mouth",
  31896. image: {
  31897. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31898. }
  31899. },
  31900. spade: {
  31901. height: math.unit(0.55, "feet"),
  31902. name: "Spade",
  31903. image: {
  31904. source: "./media/characters/vaelophis-nyx/spade.svg"
  31905. }
  31906. },
  31907. },
  31908. [
  31909. {
  31910. name: "Normal",
  31911. height: math.unit(4 + 2/12, "feet"),
  31912. default: true
  31913. },
  31914. ]
  31915. ))
  31916. characterMakers.push(() => makeCharacter(
  31917. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31918. {
  31919. front: {
  31920. height: math.unit(7, "feet"),
  31921. weight: math.unit(231, "lb"),
  31922. name: "Front",
  31923. image: {
  31924. source: "./media/characters/flux/front.svg",
  31925. extra: 919/871,
  31926. bottom: 0/919
  31927. }
  31928. },
  31929. back: {
  31930. height: math.unit(7, "feet"),
  31931. weight: math.unit(231, "lb"),
  31932. name: "Back",
  31933. image: {
  31934. source: "./media/characters/flux/back.svg",
  31935. extra: 1040/992,
  31936. bottom: 0/1040
  31937. }
  31938. },
  31939. frontDressed: {
  31940. height: math.unit(7, "feet"),
  31941. weight: math.unit(231, "lb"),
  31942. name: "Front (Dressed)",
  31943. image: {
  31944. source: "./media/characters/flux/front-dressed.svg",
  31945. extra: 919/871,
  31946. bottom: 0/919
  31947. }
  31948. },
  31949. feralSide: {
  31950. height: math.unit(5, "feet"),
  31951. weight: math.unit(150, "lb"),
  31952. name: "Feral (Side)",
  31953. image: {
  31954. source: "./media/characters/flux/feral-side.svg",
  31955. extra: 598/528,
  31956. bottom: 28/626
  31957. }
  31958. },
  31959. head: {
  31960. height: math.unit(1.585, "feet"),
  31961. name: "Head",
  31962. image: {
  31963. source: "./media/characters/flux/head.svg"
  31964. }
  31965. },
  31966. headSide: {
  31967. height: math.unit(1.74, "feet"),
  31968. name: "Head (Side)",
  31969. image: {
  31970. source: "./media/characters/flux/head-side.svg"
  31971. }
  31972. },
  31973. headSideFire: {
  31974. height: math.unit(1.76, "feet"),
  31975. name: "Head (Side, Fire)",
  31976. image: {
  31977. source: "./media/characters/flux/head-side-fire.svg"
  31978. }
  31979. },
  31980. },
  31981. [
  31982. {
  31983. name: "Normal",
  31984. height: math.unit(7, "feet"),
  31985. default: true
  31986. },
  31987. ]
  31988. ))
  31989. characterMakers.push(() => makeCharacter(
  31990. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31991. {
  31992. front: {
  31993. height: math.unit(9, "feet"),
  31994. weight: math.unit(1012, "lb"),
  31995. name: "Front",
  31996. image: {
  31997. source: "./media/characters/ulfra-lupae/front.svg",
  31998. extra: 1083/1011,
  31999. bottom: 67/1150
  32000. }
  32001. },
  32002. },
  32003. [
  32004. {
  32005. name: "Micro",
  32006. height: math.unit(6, "inches")
  32007. },
  32008. {
  32009. name: "Socializing",
  32010. height: math.unit(6 + 5/12, "feet")
  32011. },
  32012. {
  32013. name: "Normal",
  32014. height: math.unit(9, "feet"),
  32015. default: true
  32016. },
  32017. {
  32018. name: "Macro",
  32019. height: math.unit(150, "feet")
  32020. },
  32021. ]
  32022. ))
  32023. characterMakers.push(() => makeCharacter(
  32024. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32025. {
  32026. front: {
  32027. height: math.unit(5 + 2/12, "feet"),
  32028. weight: math.unit(120, "lb"),
  32029. name: "Front",
  32030. image: {
  32031. source: "./media/characters/timber/front.svg",
  32032. extra: 2814/2705,
  32033. bottom: 181/2995
  32034. }
  32035. },
  32036. },
  32037. [
  32038. {
  32039. name: "Normal",
  32040. height: math.unit(5 + 2/12, "feet"),
  32041. default: true
  32042. },
  32043. ]
  32044. ))
  32045. characterMakers.push(() => makeCharacter(
  32046. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32047. {
  32048. front: {
  32049. height: math.unit(9, "feet"),
  32050. name: "Front",
  32051. image: {
  32052. source: "./media/characters/nicki/front.svg",
  32053. extra: 1240/990,
  32054. bottom: 45/1285
  32055. },
  32056. form: "anthro",
  32057. default: true
  32058. },
  32059. side: {
  32060. height: math.unit(9, "feet"),
  32061. name: "Side",
  32062. image: {
  32063. source: "./media/characters/nicki/side.svg",
  32064. extra: 1047/973,
  32065. bottom: 61/1108
  32066. },
  32067. form: "anthro"
  32068. },
  32069. back: {
  32070. height: math.unit(9, "feet"),
  32071. name: "Back",
  32072. image: {
  32073. source: "./media/characters/nicki/back.svg",
  32074. extra: 1006/965,
  32075. bottom: 39/1045
  32076. },
  32077. form: "anthro"
  32078. },
  32079. taur: {
  32080. height: math.unit(15, "feet"),
  32081. name: "Taur",
  32082. image: {
  32083. source: "./media/characters/nicki/taur.svg",
  32084. extra: 1592/1347,
  32085. bottom: 0/1592
  32086. },
  32087. form: "taur",
  32088. default: true
  32089. },
  32090. },
  32091. [
  32092. {
  32093. name: "Normal",
  32094. height: math.unit(9, "feet"),
  32095. form: "anthro",
  32096. default: true
  32097. },
  32098. {
  32099. name: "Normal",
  32100. height: math.unit(15, "feet"),
  32101. form: "taur",
  32102. default: true
  32103. }
  32104. ],
  32105. {
  32106. "anthro": {
  32107. name: "Anthro",
  32108. default: true
  32109. },
  32110. "taur": {
  32111. name: "Taur"
  32112. }
  32113. }
  32114. ))
  32115. characterMakers.push(() => makeCharacter(
  32116. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32117. {
  32118. front: {
  32119. height: math.unit(7 + 10/12, "feet"),
  32120. weight: math.unit(3.5, "tons"),
  32121. name: "Front",
  32122. image: {
  32123. source: "./media/characters/lee/front.svg",
  32124. extra: 1773/1615,
  32125. bottom: 86/1859
  32126. }
  32127. },
  32128. hand: {
  32129. height: math.unit(1.78, "feet"),
  32130. name: "Hand",
  32131. image: {
  32132. source: "./media/characters/lee/hand.svg"
  32133. }
  32134. },
  32135. maw: {
  32136. height: math.unit(1.18, "feet"),
  32137. name: "Maw",
  32138. image: {
  32139. source: "./media/characters/lee/maw.svg"
  32140. }
  32141. },
  32142. },
  32143. [
  32144. {
  32145. name: "Normal",
  32146. height: math.unit(7 + 10/12, "feet"),
  32147. default: true
  32148. },
  32149. ]
  32150. ))
  32151. characterMakers.push(() => makeCharacter(
  32152. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32153. {
  32154. front: {
  32155. height: math.unit(9, "feet"),
  32156. name: "Front",
  32157. image: {
  32158. source: "./media/characters/guti/front.svg",
  32159. extra: 4551/4355,
  32160. bottom: 123/4674
  32161. }
  32162. },
  32163. tongue: {
  32164. height: math.unit(1, "feet"),
  32165. name: "Tongue",
  32166. image: {
  32167. source: "./media/characters/guti/tongue.svg"
  32168. }
  32169. },
  32170. paw: {
  32171. height: math.unit(1.18, "feet"),
  32172. name: "Paw",
  32173. image: {
  32174. source: "./media/characters/guti/paw.svg"
  32175. }
  32176. },
  32177. },
  32178. [
  32179. {
  32180. name: "Normal",
  32181. height: math.unit(9, "feet"),
  32182. default: true
  32183. },
  32184. ]
  32185. ))
  32186. characterMakers.push(() => makeCharacter(
  32187. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32188. {
  32189. side: {
  32190. height: math.unit(5, "meters"),
  32191. name: "Side",
  32192. image: {
  32193. source: "./media/characters/vesper/side.svg",
  32194. extra: 1605/1518,
  32195. bottom: 0/1605
  32196. }
  32197. },
  32198. },
  32199. [
  32200. {
  32201. name: "Small",
  32202. height: math.unit(5, "meters")
  32203. },
  32204. {
  32205. name: "Sage",
  32206. height: math.unit(100, "meters"),
  32207. default: true
  32208. },
  32209. {
  32210. name: "Fun Size",
  32211. height: math.unit(600, "meters")
  32212. },
  32213. {
  32214. name: "Goddess",
  32215. height: math.unit(20000, "km")
  32216. },
  32217. {
  32218. name: "Maximum",
  32219. height: math.unit(5, "galaxies")
  32220. },
  32221. ]
  32222. ))
  32223. characterMakers.push(() => makeCharacter(
  32224. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32225. {
  32226. front: {
  32227. height: math.unit(6 + 3/12, "feet"),
  32228. weight: math.unit(190, "lb"),
  32229. name: "Front",
  32230. image: {
  32231. source: "./media/characters/gawain/front.svg",
  32232. extra: 2222/2139,
  32233. bottom: 90/2312
  32234. }
  32235. },
  32236. back: {
  32237. height: math.unit(6 + 3/12, "feet"),
  32238. weight: math.unit(190, "lb"),
  32239. name: "Back",
  32240. image: {
  32241. source: "./media/characters/gawain/back.svg",
  32242. extra: 2199/2111,
  32243. bottom: 73/2272
  32244. }
  32245. },
  32246. },
  32247. [
  32248. {
  32249. name: "Normal",
  32250. height: math.unit(6 + 3/12, "feet"),
  32251. default: true
  32252. },
  32253. ]
  32254. ))
  32255. characterMakers.push(() => makeCharacter(
  32256. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32257. {
  32258. side: {
  32259. height: math.unit(3.5, "meters"),
  32260. weight: math.unit(16000, "lb"),
  32261. name: "Side",
  32262. image: {
  32263. source: "./media/characters/dascalti/side.svg",
  32264. extra: 392/273,
  32265. bottom: 47/439
  32266. }
  32267. },
  32268. breath: {
  32269. height: math.unit(7.4, "feet"),
  32270. name: "Breath",
  32271. image: {
  32272. source: "./media/characters/dascalti/breath.svg"
  32273. }
  32274. },
  32275. fed: {
  32276. height: math.unit(3.6, "meters"),
  32277. weight: math.unit(16000, "lb"),
  32278. name: "Fed",
  32279. image: {
  32280. source: "./media/characters/dascalti/fed.svg",
  32281. extra: 1419/820,
  32282. bottom: 95/1514
  32283. }
  32284. },
  32285. },
  32286. [
  32287. {
  32288. name: "Normal",
  32289. height: math.unit(3.5, "meters"),
  32290. default: true
  32291. },
  32292. ]
  32293. ))
  32294. characterMakers.push(() => makeCharacter(
  32295. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32296. {
  32297. front: {
  32298. height: math.unit(3 + 5/12, "feet"),
  32299. name: "Front",
  32300. image: {
  32301. source: "./media/characters/mauve/front.svg",
  32302. extra: 1126/1033,
  32303. bottom: 65/1191
  32304. }
  32305. },
  32306. side: {
  32307. height: math.unit(3 + 5/12, "feet"),
  32308. name: "Side",
  32309. image: {
  32310. source: "./media/characters/mauve/side.svg",
  32311. extra: 1089/1001,
  32312. bottom: 29/1118
  32313. }
  32314. },
  32315. back: {
  32316. height: math.unit(3 + 5/12, "feet"),
  32317. name: "Back",
  32318. image: {
  32319. source: "./media/characters/mauve/back.svg",
  32320. extra: 1173/1053,
  32321. bottom: 109/1282
  32322. }
  32323. },
  32324. },
  32325. [
  32326. {
  32327. name: "Normal",
  32328. height: math.unit(3 + 5/12, "feet"),
  32329. default: true
  32330. },
  32331. ]
  32332. ))
  32333. characterMakers.push(() => makeCharacter(
  32334. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32335. {
  32336. front: {
  32337. height: math.unit(6 + 3/12, "feet"),
  32338. weight: math.unit(430, "lb"),
  32339. name: "Front",
  32340. image: {
  32341. source: "./media/characters/carlos/front.svg",
  32342. extra: 1964/1913,
  32343. bottom: 70/2034
  32344. }
  32345. },
  32346. },
  32347. [
  32348. {
  32349. name: "Normal",
  32350. height: math.unit(6 + 3/12, "feet"),
  32351. default: true
  32352. },
  32353. ]
  32354. ))
  32355. characterMakers.push(() => makeCharacter(
  32356. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32357. {
  32358. back: {
  32359. height: math.unit(5 + 10/12, "feet"),
  32360. weight: math.unit(200, "lb"),
  32361. name: "Back",
  32362. image: {
  32363. source: "./media/characters/jax/back.svg",
  32364. extra: 764/739,
  32365. bottom: 25/789
  32366. }
  32367. },
  32368. },
  32369. [
  32370. {
  32371. name: "Normal",
  32372. height: math.unit(5 + 10/12, "feet"),
  32373. default: true
  32374. },
  32375. ]
  32376. ))
  32377. characterMakers.push(() => makeCharacter(
  32378. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32379. {
  32380. front: {
  32381. height: math.unit(8, "feet"),
  32382. weight: math.unit(250, "lb"),
  32383. name: "Front",
  32384. image: {
  32385. source: "./media/characters/eikthynir/front.svg",
  32386. extra: 1332/1166,
  32387. bottom: 82/1414
  32388. }
  32389. },
  32390. back: {
  32391. height: math.unit(8, "feet"),
  32392. weight: math.unit(250, "lb"),
  32393. name: "Back",
  32394. image: {
  32395. source: "./media/characters/eikthynir/back.svg",
  32396. extra: 1342/1190,
  32397. bottom: 19/1361
  32398. }
  32399. },
  32400. dick: {
  32401. height: math.unit(2.35, "feet"),
  32402. name: "Dick",
  32403. image: {
  32404. source: "./media/characters/eikthynir/dick.svg"
  32405. }
  32406. },
  32407. },
  32408. [
  32409. {
  32410. name: "Normal",
  32411. height: math.unit(8, "feet"),
  32412. default: true
  32413. },
  32414. ]
  32415. ))
  32416. characterMakers.push(() => makeCharacter(
  32417. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32418. {
  32419. front: {
  32420. height: math.unit(99, "meters"),
  32421. weight: math.unit(13000, "tons"),
  32422. name: "Front",
  32423. image: {
  32424. source: "./media/characters/zlmos/front.svg",
  32425. extra: 2202/1992,
  32426. bottom: 315/2517
  32427. }
  32428. },
  32429. },
  32430. [
  32431. {
  32432. name: "Macro",
  32433. height: math.unit(99, "meters"),
  32434. default: true
  32435. },
  32436. ]
  32437. ))
  32438. characterMakers.push(() => makeCharacter(
  32439. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32440. {
  32441. front: {
  32442. height: math.unit(6 + 5/12, "feet"),
  32443. name: "Front",
  32444. image: {
  32445. source: "./media/characters/purri/front.svg",
  32446. extra: 1698/1610,
  32447. bottom: 32/1730
  32448. }
  32449. },
  32450. frontAlt: {
  32451. height: math.unit(6 + 5/12, "feet"),
  32452. name: "Front (Alt)",
  32453. image: {
  32454. source: "./media/characters/purri/front-alt.svg",
  32455. extra: 450/420,
  32456. bottom: 26/476
  32457. }
  32458. },
  32459. boots: {
  32460. height: math.unit(5.5, "feet"),
  32461. name: "Boots",
  32462. image: {
  32463. source: "./media/characters/purri/boots.svg",
  32464. extra: 905/853,
  32465. bottom: 18/923
  32466. }
  32467. },
  32468. lying: {
  32469. height: math.unit(2, "feet"),
  32470. name: "Lying",
  32471. image: {
  32472. source: "./media/characters/purri/lying.svg",
  32473. extra: 940/843,
  32474. bottom: 146/1086
  32475. }
  32476. },
  32477. devious: {
  32478. height: math.unit(1.77, "feet"),
  32479. name: "Devious",
  32480. image: {
  32481. source: "./media/characters/purri/devious.svg",
  32482. extra: 1440/1155,
  32483. bottom: 147/1587
  32484. }
  32485. },
  32486. bean: {
  32487. height: math.unit(1.94, "feet"),
  32488. name: "Bean",
  32489. image: {
  32490. source: "./media/characters/purri/bean.svg"
  32491. }
  32492. },
  32493. },
  32494. [
  32495. {
  32496. name: "Micro",
  32497. height: math.unit(1, "mm")
  32498. },
  32499. {
  32500. name: "Normal",
  32501. height: math.unit(6 + 5/12, "feet"),
  32502. default: true
  32503. },
  32504. {
  32505. name: "Macro :3c",
  32506. height: math.unit(2, "miles")
  32507. },
  32508. ]
  32509. ))
  32510. characterMakers.push(() => makeCharacter(
  32511. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32512. {
  32513. front: {
  32514. height: math.unit(6 + 2/12, "feet"),
  32515. weight: math.unit(250, "lb"),
  32516. name: "Front",
  32517. image: {
  32518. source: "./media/characters/moonlight/front.svg",
  32519. extra: 1044/908,
  32520. bottom: 56/1100
  32521. }
  32522. },
  32523. feral: {
  32524. height: math.unit(3 + 1/12, "feet"),
  32525. weight: math.unit(50, "kg"),
  32526. name: "Feral",
  32527. image: {
  32528. source: "./media/characters/moonlight/feral.svg",
  32529. extra: 3705/2791,
  32530. bottom: 145/3850
  32531. }
  32532. },
  32533. paw: {
  32534. height: math.unit(1, "feet"),
  32535. name: "Paw",
  32536. image: {
  32537. source: "./media/characters/moonlight/paw.svg"
  32538. }
  32539. },
  32540. paws: {
  32541. height: math.unit(0.98, "feet"),
  32542. name: "Paws",
  32543. image: {
  32544. source: "./media/characters/moonlight/paws.svg",
  32545. extra: 939/939,
  32546. bottom: 50/989
  32547. }
  32548. },
  32549. mouth: {
  32550. height: math.unit(0.48, "feet"),
  32551. name: "Mouth",
  32552. image: {
  32553. source: "./media/characters/moonlight/mouth.svg"
  32554. }
  32555. },
  32556. dick: {
  32557. height: math.unit(1.46, "feet"),
  32558. name: "Dick",
  32559. image: {
  32560. source: "./media/characters/moonlight/dick.svg"
  32561. }
  32562. },
  32563. },
  32564. [
  32565. {
  32566. name: "Normal",
  32567. height: math.unit(6 + 2/12, "feet"),
  32568. default: true
  32569. },
  32570. {
  32571. name: "Macro",
  32572. height: math.unit(300, "feet")
  32573. },
  32574. {
  32575. name: "Macro+",
  32576. height: math.unit(1, "mile")
  32577. },
  32578. {
  32579. name: "Mt. Moon",
  32580. height: math.unit(5, "miles")
  32581. },
  32582. {
  32583. name: "Megamacro",
  32584. height: math.unit(15, "miles")
  32585. },
  32586. ]
  32587. ))
  32588. characterMakers.push(() => makeCharacter(
  32589. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32590. {
  32591. back: {
  32592. height: math.unit(6, "feet"),
  32593. weight: math.unit(150, "lb"),
  32594. name: "Back",
  32595. image: {
  32596. source: "./media/characters/sylen/back.svg",
  32597. extra: 1335/1273,
  32598. bottom: 107/1442
  32599. }
  32600. },
  32601. },
  32602. [
  32603. {
  32604. name: "Normal",
  32605. height: math.unit(5 + 5/12, "feet")
  32606. },
  32607. {
  32608. name: "Megamacro",
  32609. height: math.unit(3, "miles"),
  32610. default: true
  32611. },
  32612. ]
  32613. ))
  32614. characterMakers.push(() => makeCharacter(
  32615. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32616. {
  32617. front: {
  32618. height: math.unit(6, "feet"),
  32619. weight: math.unit(190, "lb"),
  32620. name: "Front",
  32621. image: {
  32622. source: "./media/characters/huttser/front.svg",
  32623. extra: 1152/1058,
  32624. bottom: 23/1175
  32625. }
  32626. },
  32627. side: {
  32628. height: math.unit(6, "feet"),
  32629. weight: math.unit(190, "lb"),
  32630. name: "Side",
  32631. image: {
  32632. source: "./media/characters/huttser/side.svg",
  32633. extra: 1174/1065,
  32634. bottom: 18/1192
  32635. }
  32636. },
  32637. back: {
  32638. height: math.unit(6, "feet"),
  32639. weight: math.unit(190, "lb"),
  32640. name: "Back",
  32641. image: {
  32642. source: "./media/characters/huttser/back.svg",
  32643. extra: 1158/1056,
  32644. bottom: 12/1170
  32645. }
  32646. },
  32647. },
  32648. [
  32649. ]
  32650. ))
  32651. characterMakers.push(() => makeCharacter(
  32652. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32653. {
  32654. side: {
  32655. height: math.unit(12 + 9/12, "feet"),
  32656. weight: math.unit(15000, "lb"),
  32657. name: "Side",
  32658. image: {
  32659. source: "./media/characters/faan/side.svg",
  32660. extra: 2747/2697,
  32661. bottom: 0/2747
  32662. }
  32663. },
  32664. front: {
  32665. height: math.unit(12 + 9/12, "feet"),
  32666. weight: math.unit(15000, "lb"),
  32667. name: "Front",
  32668. image: {
  32669. source: "./media/characters/faan/front.svg",
  32670. extra: 607/571,
  32671. bottom: 24/631
  32672. }
  32673. },
  32674. head: {
  32675. height: math.unit(2.85, "feet"),
  32676. name: "Head",
  32677. image: {
  32678. source: "./media/characters/faan/head.svg"
  32679. }
  32680. },
  32681. headAlt: {
  32682. height: math.unit(3.13, "feet"),
  32683. name: "Head-alt",
  32684. image: {
  32685. source: "./media/characters/faan/head-alt.svg"
  32686. }
  32687. },
  32688. },
  32689. [
  32690. {
  32691. name: "Normal",
  32692. height: math.unit(12 + 9/12, "feet"),
  32693. default: true
  32694. },
  32695. ]
  32696. ))
  32697. characterMakers.push(() => makeCharacter(
  32698. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32699. {
  32700. front: {
  32701. height: math.unit(6, "feet"),
  32702. weight: math.unit(300, "lb"),
  32703. name: "Front",
  32704. image: {
  32705. source: "./media/characters/tanio/front.svg",
  32706. extra: 711/673,
  32707. bottom: 25/736
  32708. }
  32709. },
  32710. },
  32711. [
  32712. {
  32713. name: "Normal",
  32714. height: math.unit(6, "feet"),
  32715. default: true
  32716. },
  32717. ]
  32718. ))
  32719. characterMakers.push(() => makeCharacter(
  32720. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32721. {
  32722. front: {
  32723. height: math.unit(3, "inches"),
  32724. name: "Front",
  32725. image: {
  32726. source: "./media/characters/noboru/front.svg",
  32727. extra: 1039/932,
  32728. bottom: 18/1057
  32729. }
  32730. },
  32731. },
  32732. [
  32733. {
  32734. name: "Micro",
  32735. height: math.unit(3, "inches"),
  32736. default: true
  32737. },
  32738. ]
  32739. ))
  32740. characterMakers.push(() => makeCharacter(
  32741. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32742. {
  32743. front: {
  32744. height: math.unit(1.85, "meters"),
  32745. weight: math.unit(80, "kg"),
  32746. name: "Front",
  32747. image: {
  32748. source: "./media/characters/daniel-barrett/front.svg",
  32749. extra: 355/337,
  32750. bottom: 9/364
  32751. }
  32752. },
  32753. },
  32754. [
  32755. {
  32756. name: "Pico",
  32757. height: math.unit(0.0433, "mm")
  32758. },
  32759. {
  32760. name: "Nano",
  32761. height: math.unit(1.5, "mm")
  32762. },
  32763. {
  32764. name: "Micro",
  32765. height: math.unit(5.3, "cm"),
  32766. default: true
  32767. },
  32768. {
  32769. name: "Normal",
  32770. height: math.unit(1.85, "meters")
  32771. },
  32772. {
  32773. name: "Macro",
  32774. height: math.unit(64.7, "meters")
  32775. },
  32776. {
  32777. name: "Megamacro",
  32778. height: math.unit(2.26, "km")
  32779. },
  32780. {
  32781. name: "Gigamacro",
  32782. height: math.unit(79, "km")
  32783. },
  32784. {
  32785. name: "Teramacro",
  32786. height: math.unit(2765, "km")
  32787. },
  32788. {
  32789. name: "Petamacro",
  32790. height: math.unit(96678, "km")
  32791. },
  32792. ]
  32793. ))
  32794. characterMakers.push(() => makeCharacter(
  32795. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32796. {
  32797. front: {
  32798. height: math.unit(30, "meters"),
  32799. weight: math.unit(400, "tons"),
  32800. name: "Front",
  32801. image: {
  32802. source: "./media/characters/zeel/front.svg",
  32803. extra: 2599/2599,
  32804. bottom: 226/2825
  32805. }
  32806. },
  32807. },
  32808. [
  32809. {
  32810. name: "Macro",
  32811. height: math.unit(30, "meters"),
  32812. default: true
  32813. },
  32814. ]
  32815. ))
  32816. characterMakers.push(() => makeCharacter(
  32817. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32818. {
  32819. front: {
  32820. height: math.unit(6 + 7/12, "feet"),
  32821. weight: math.unit(210, "lb"),
  32822. name: "Front",
  32823. image: {
  32824. source: "./media/characters/tarn/front.svg",
  32825. extra: 3517/3220,
  32826. bottom: 91/3608
  32827. }
  32828. },
  32829. back: {
  32830. height: math.unit(6 + 7/12, "feet"),
  32831. weight: math.unit(210, "lb"),
  32832. name: "Back",
  32833. image: {
  32834. source: "./media/characters/tarn/back.svg",
  32835. extra: 3566/3241,
  32836. bottom: 34/3600
  32837. }
  32838. },
  32839. dick: {
  32840. height: math.unit(1.65, "feet"),
  32841. name: "Dick",
  32842. image: {
  32843. source: "./media/characters/tarn/dick.svg"
  32844. }
  32845. },
  32846. paw: {
  32847. height: math.unit(1.80, "feet"),
  32848. name: "Paw",
  32849. image: {
  32850. source: "./media/characters/tarn/paw.svg"
  32851. }
  32852. },
  32853. tongue: {
  32854. height: math.unit(0.97, "feet"),
  32855. name: "Tongue",
  32856. image: {
  32857. source: "./media/characters/tarn/tongue.svg"
  32858. }
  32859. },
  32860. },
  32861. [
  32862. {
  32863. name: "Micro",
  32864. height: math.unit(4, "inches")
  32865. },
  32866. {
  32867. name: "Normal",
  32868. height: math.unit(6 + 7/12, "feet"),
  32869. default: true
  32870. },
  32871. {
  32872. name: "Macro",
  32873. height: math.unit(300, "feet")
  32874. },
  32875. ]
  32876. ))
  32877. characterMakers.push(() => makeCharacter(
  32878. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32879. {
  32880. front: {
  32881. height: math.unit(5 + 7/12, "feet"),
  32882. weight: math.unit(80, "kg"),
  32883. name: "Front",
  32884. image: {
  32885. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32886. extra: 3023/2865,
  32887. bottom: 33/3056
  32888. }
  32889. },
  32890. back: {
  32891. height: math.unit(5 + 7/12, "feet"),
  32892. weight: math.unit(80, "kg"),
  32893. name: "Back",
  32894. image: {
  32895. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32896. extra: 3020/2886,
  32897. bottom: 30/3050
  32898. }
  32899. },
  32900. dick: {
  32901. height: math.unit(0.98, "feet"),
  32902. name: "Dick",
  32903. image: {
  32904. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32905. }
  32906. },
  32907. anatomy: {
  32908. height: math.unit(2.86, "feet"),
  32909. name: "Anatomy",
  32910. image: {
  32911. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32912. }
  32913. },
  32914. },
  32915. [
  32916. {
  32917. name: "Really Small",
  32918. height: math.unit(2, "inches")
  32919. },
  32920. {
  32921. name: "Micro",
  32922. height: math.unit(5.583, "inches")
  32923. },
  32924. {
  32925. name: "Normal",
  32926. height: math.unit(5 + 7/12, "feet"),
  32927. default: true
  32928. },
  32929. {
  32930. name: "Macro",
  32931. height: math.unit(67, "feet")
  32932. },
  32933. {
  32934. name: "Megamacro",
  32935. height: math.unit(134, "feet")
  32936. },
  32937. ]
  32938. ))
  32939. characterMakers.push(() => makeCharacter(
  32940. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32941. {
  32942. front: {
  32943. height: math.unit(9, "feet"),
  32944. weight: math.unit(120, "lb"),
  32945. name: "Front",
  32946. image: {
  32947. source: "./media/characters/sally/front.svg",
  32948. extra: 1506/1349,
  32949. bottom: 66/1572
  32950. }
  32951. },
  32952. },
  32953. [
  32954. {
  32955. name: "Normal",
  32956. height: math.unit(9, "feet"),
  32957. default: true
  32958. },
  32959. ]
  32960. ))
  32961. characterMakers.push(() => makeCharacter(
  32962. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32963. {
  32964. front: {
  32965. height: math.unit(8, "feet"),
  32966. weight: math.unit(900, "lb"),
  32967. name: "Front",
  32968. image: {
  32969. source: "./media/characters/owen/front.svg",
  32970. extra: 1761/1657,
  32971. bottom: 74/1835
  32972. }
  32973. },
  32974. side: {
  32975. height: math.unit(8, "feet"),
  32976. weight: math.unit(900, "lb"),
  32977. name: "Side",
  32978. image: {
  32979. source: "./media/characters/owen/side.svg",
  32980. extra: 1797/1734,
  32981. bottom: 30/1827
  32982. }
  32983. },
  32984. back: {
  32985. height: math.unit(8, "feet"),
  32986. weight: math.unit(900, "lb"),
  32987. name: "Back",
  32988. image: {
  32989. source: "./media/characters/owen/back.svg",
  32990. extra: 1796/1706,
  32991. bottom: 59/1855
  32992. }
  32993. },
  32994. maw: {
  32995. height: math.unit(1.76, "feet"),
  32996. name: "Maw",
  32997. image: {
  32998. source: "./media/characters/owen/maw.svg"
  32999. }
  33000. },
  33001. },
  33002. [
  33003. {
  33004. name: "Normal",
  33005. height: math.unit(8, "feet"),
  33006. default: true
  33007. },
  33008. ]
  33009. ))
  33010. characterMakers.push(() => makeCharacter(
  33011. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33012. {
  33013. front: {
  33014. height: math.unit(4, "feet"),
  33015. weight: math.unit(400, "lb"),
  33016. name: "Front",
  33017. image: {
  33018. source: "./media/characters/ryth/front.svg",
  33019. extra: 1920/1748,
  33020. bottom: 42/1962
  33021. }
  33022. },
  33023. back: {
  33024. height: math.unit(4, "feet"),
  33025. weight: math.unit(400, "lb"),
  33026. name: "Back",
  33027. image: {
  33028. source: "./media/characters/ryth/back.svg",
  33029. extra: 1897/1690,
  33030. bottom: 89/1986
  33031. }
  33032. },
  33033. mouth: {
  33034. height: math.unit(1.39, "feet"),
  33035. name: "Mouth",
  33036. image: {
  33037. source: "./media/characters/ryth/mouth.svg"
  33038. }
  33039. },
  33040. tailmaw: {
  33041. height: math.unit(1.23, "feet"),
  33042. name: "Tailmaw",
  33043. image: {
  33044. source: "./media/characters/ryth/tailmaw.svg"
  33045. }
  33046. },
  33047. goia: {
  33048. height: math.unit(4, "meters"),
  33049. weight: math.unit(10800, "lb"),
  33050. name: "Goia",
  33051. image: {
  33052. source: "./media/characters/ryth/goia.svg",
  33053. extra: 745/640,
  33054. bottom: 107/852
  33055. }
  33056. },
  33057. goiaFront: {
  33058. height: math.unit(4, "meters"),
  33059. weight: math.unit(10800, "lb"),
  33060. name: "Goia (Front)",
  33061. image: {
  33062. source: "./media/characters/ryth/goia-front.svg",
  33063. extra: 750/586,
  33064. bottom: 114/864
  33065. }
  33066. },
  33067. goiaMaw: {
  33068. height: math.unit(5.55, "feet"),
  33069. name: "Goia Maw",
  33070. image: {
  33071. source: "./media/characters/ryth/goia-maw.svg"
  33072. }
  33073. },
  33074. goiaForepaw: {
  33075. height: math.unit(3.5, "feet"),
  33076. name: "Goia Forepaw",
  33077. image: {
  33078. source: "./media/characters/ryth/goia-forepaw.svg"
  33079. }
  33080. },
  33081. goiaHindpaw: {
  33082. height: math.unit(5.55, "feet"),
  33083. name: "Goia Hindpaw",
  33084. image: {
  33085. source: "./media/characters/ryth/goia-hindpaw.svg"
  33086. }
  33087. },
  33088. },
  33089. [
  33090. {
  33091. name: "Normal",
  33092. height: math.unit(4, "feet"),
  33093. default: true
  33094. },
  33095. ]
  33096. ))
  33097. characterMakers.push(() => makeCharacter(
  33098. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33099. {
  33100. front: {
  33101. height: math.unit(7, "feet"),
  33102. weight: math.unit(180, "lb"),
  33103. name: "Front",
  33104. image: {
  33105. source: "./media/characters/necrolance/front.svg",
  33106. extra: 1062/947,
  33107. bottom: 41/1103
  33108. }
  33109. },
  33110. back: {
  33111. height: math.unit(7, "feet"),
  33112. weight: math.unit(180, "lb"),
  33113. name: "Back",
  33114. image: {
  33115. source: "./media/characters/necrolance/back.svg",
  33116. extra: 1045/984,
  33117. bottom: 14/1059
  33118. }
  33119. },
  33120. wing: {
  33121. height: math.unit(2.67, "feet"),
  33122. name: "Wing",
  33123. image: {
  33124. source: "./media/characters/necrolance/wing.svg"
  33125. }
  33126. },
  33127. },
  33128. [
  33129. {
  33130. name: "Normal",
  33131. height: math.unit(7, "feet"),
  33132. default: true
  33133. },
  33134. ]
  33135. ))
  33136. characterMakers.push(() => makeCharacter(
  33137. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33138. {
  33139. front: {
  33140. height: math.unit(76, "meters"),
  33141. weight: math.unit(30000, "tons"),
  33142. name: "Front",
  33143. image: {
  33144. source: "./media/characters/tyler/front.svg",
  33145. extra: 1640/1640,
  33146. bottom: 114/1754
  33147. }
  33148. },
  33149. },
  33150. [
  33151. {
  33152. name: "Macro",
  33153. height: math.unit(76, "meters"),
  33154. default: true
  33155. },
  33156. ]
  33157. ))
  33158. characterMakers.push(() => makeCharacter(
  33159. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33160. {
  33161. front: {
  33162. height: math.unit(4 + 11/12, "feet"),
  33163. weight: math.unit(132, "lb"),
  33164. name: "Front",
  33165. image: {
  33166. source: "./media/characters/icey/front.svg",
  33167. extra: 2750/2550,
  33168. bottom: 33/2783
  33169. }
  33170. },
  33171. back: {
  33172. height: math.unit(4 + 11/12, "feet"),
  33173. weight: math.unit(132, "lb"),
  33174. name: "Back",
  33175. image: {
  33176. source: "./media/characters/icey/back.svg",
  33177. extra: 2624/2481,
  33178. bottom: 35/2659
  33179. }
  33180. },
  33181. },
  33182. [
  33183. {
  33184. name: "Normal",
  33185. height: math.unit(4 + 11/12, "feet"),
  33186. default: true
  33187. },
  33188. ]
  33189. ))
  33190. characterMakers.push(() => makeCharacter(
  33191. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33192. {
  33193. front: {
  33194. height: math.unit(100, "feet"),
  33195. weight: math.unit(0, "lb"),
  33196. name: "Front",
  33197. image: {
  33198. source: "./media/characters/smile/front.svg",
  33199. extra: 2983/2912,
  33200. bottom: 162/3145
  33201. }
  33202. },
  33203. back: {
  33204. height: math.unit(100, "feet"),
  33205. weight: math.unit(0, "lb"),
  33206. name: "Back",
  33207. image: {
  33208. source: "./media/characters/smile/back.svg",
  33209. extra: 3143/3031,
  33210. bottom: 91/3234
  33211. }
  33212. },
  33213. head: {
  33214. height: math.unit(26.3, "feet"),
  33215. weight: math.unit(0, "lb"),
  33216. name: "Head",
  33217. image: {
  33218. source: "./media/characters/smile/head.svg"
  33219. }
  33220. },
  33221. collar: {
  33222. height: math.unit(5.3, "feet"),
  33223. weight: math.unit(0, "lb"),
  33224. name: "Collar",
  33225. image: {
  33226. source: "./media/characters/smile/collar.svg"
  33227. }
  33228. },
  33229. },
  33230. [
  33231. {
  33232. name: "Macro",
  33233. height: math.unit(100, "feet"),
  33234. default: true
  33235. },
  33236. ]
  33237. ))
  33238. characterMakers.push(() => makeCharacter(
  33239. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33240. {
  33241. dragon: {
  33242. height: math.unit(26, "feet"),
  33243. weight: math.unit(36, "tons"),
  33244. name: "Dragon",
  33245. image: {
  33246. source: "./media/characters/arimphae/dragon.svg",
  33247. extra: 1574/983,
  33248. bottom: 357/1931
  33249. }
  33250. },
  33251. drake: {
  33252. height: math.unit(9, "feet"),
  33253. weight: math.unit(1.5, "tons"),
  33254. name: "Drake",
  33255. image: {
  33256. source: "./media/characters/arimphae/drake.svg",
  33257. extra: 1120/925,
  33258. bottom: 435/1555
  33259. }
  33260. },
  33261. },
  33262. [
  33263. {
  33264. name: "Small",
  33265. height: math.unit(26*5/9, "feet")
  33266. },
  33267. {
  33268. name: "Normal",
  33269. height: math.unit(26, "feet"),
  33270. default: true
  33271. },
  33272. ]
  33273. ))
  33274. characterMakers.push(() => makeCharacter(
  33275. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33276. {
  33277. front: {
  33278. height: math.unit(8 + 9/12, "feet"),
  33279. name: "Front",
  33280. image: {
  33281. source: "./media/characters/xander/front.svg",
  33282. extra: 1237/974,
  33283. bottom: 94/1331
  33284. }
  33285. },
  33286. },
  33287. [
  33288. {
  33289. name: "Normal",
  33290. height: math.unit(8 + 9/12, "feet"),
  33291. default: true
  33292. },
  33293. {
  33294. name: "Gaze Grabber",
  33295. height: math.unit(13 + 8/12, "feet")
  33296. },
  33297. {
  33298. name: "Jaw Dropper",
  33299. height: math.unit(27, "feet")
  33300. },
  33301. {
  33302. name: "Show Stopper",
  33303. height: math.unit(136, "feet")
  33304. },
  33305. {
  33306. name: "Superstar",
  33307. height: math.unit(1.9e6, "miles")
  33308. },
  33309. ]
  33310. ))
  33311. characterMakers.push(() => makeCharacter(
  33312. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33313. {
  33314. side: {
  33315. height: math.unit(2100, "feet"),
  33316. name: "Side",
  33317. image: {
  33318. source: "./media/characters/osiris/side.svg",
  33319. extra: 1105/939,
  33320. bottom: 167/1272
  33321. }
  33322. },
  33323. },
  33324. [
  33325. {
  33326. name: "Macro",
  33327. height: math.unit(2100, "feet"),
  33328. default: true
  33329. },
  33330. ]
  33331. ))
  33332. characterMakers.push(() => makeCharacter(
  33333. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33334. {
  33335. front: {
  33336. height: math.unit(6 + 8/12, "feet"),
  33337. weight: math.unit(225, "lb"),
  33338. name: "Front",
  33339. image: {
  33340. source: "./media/characters/rhys-londe/front.svg",
  33341. extra: 2258/2141,
  33342. bottom: 188/2446
  33343. }
  33344. },
  33345. back: {
  33346. height: math.unit(6 + 8/12, "feet"),
  33347. weight: math.unit(225, "lb"),
  33348. name: "Back",
  33349. image: {
  33350. source: "./media/characters/rhys-londe/back.svg",
  33351. extra: 2237/2137,
  33352. bottom: 63/2300
  33353. }
  33354. },
  33355. frontNsfw: {
  33356. height: math.unit(6 + 8/12, "feet"),
  33357. weight: math.unit(225, "lb"),
  33358. name: "Front (NSFW)",
  33359. image: {
  33360. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33361. extra: 2258/2141,
  33362. bottom: 188/2446
  33363. }
  33364. },
  33365. backNsfw: {
  33366. height: math.unit(6 + 8/12, "feet"),
  33367. weight: math.unit(225, "lb"),
  33368. name: "Back (NSFW)",
  33369. image: {
  33370. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33371. extra: 2237/2137,
  33372. bottom: 63/2300
  33373. }
  33374. },
  33375. dick: {
  33376. height: math.unit(30, "inches"),
  33377. name: "Dick",
  33378. image: {
  33379. source: "./media/characters/rhys-londe/dick.svg"
  33380. }
  33381. },
  33382. maw: {
  33383. height: math.unit(1.6, "feet"),
  33384. name: "Maw",
  33385. image: {
  33386. source: "./media/characters/rhys-londe/maw.svg"
  33387. }
  33388. },
  33389. },
  33390. [
  33391. {
  33392. name: "Normal",
  33393. height: math.unit(6 + 8/12, "feet"),
  33394. default: true
  33395. },
  33396. ]
  33397. ))
  33398. characterMakers.push(() => makeCharacter(
  33399. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33400. {
  33401. front: {
  33402. height: math.unit(3 + 10/12, "feet"),
  33403. weight: math.unit(90, "lb"),
  33404. name: "Front",
  33405. image: {
  33406. source: "./media/characters/taivas-ensim/front.svg",
  33407. extra: 1327/1216,
  33408. bottom: 96/1423
  33409. }
  33410. },
  33411. back: {
  33412. height: math.unit(3 + 10/12, "feet"),
  33413. weight: math.unit(90, "lb"),
  33414. name: "Back",
  33415. image: {
  33416. source: "./media/characters/taivas-ensim/back.svg",
  33417. extra: 1355/1247,
  33418. bottom: 11/1366
  33419. }
  33420. },
  33421. frontNsfw: {
  33422. height: math.unit(3 + 10/12, "feet"),
  33423. weight: math.unit(90, "lb"),
  33424. name: "Front (NSFW)",
  33425. image: {
  33426. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33427. extra: 1327/1216,
  33428. bottom: 96/1423
  33429. }
  33430. },
  33431. backNsfw: {
  33432. height: math.unit(3 + 10/12, "feet"),
  33433. weight: math.unit(90, "lb"),
  33434. name: "Back (NSFW)",
  33435. image: {
  33436. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33437. extra: 1355/1247,
  33438. bottom: 11/1366
  33439. }
  33440. },
  33441. },
  33442. [
  33443. {
  33444. name: "Normal",
  33445. height: math.unit(3 + 10/12, "feet"),
  33446. default: true
  33447. },
  33448. ]
  33449. ))
  33450. characterMakers.push(() => makeCharacter(
  33451. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33452. {
  33453. front: {
  33454. height: math.unit(9 + 6/12, "feet"),
  33455. weight: math.unit(940, "lb"),
  33456. name: "Front",
  33457. image: {
  33458. source: "./media/characters/byliss/front.svg",
  33459. extra: 1327/1290,
  33460. bottom: 82/1409
  33461. }
  33462. },
  33463. back: {
  33464. height: math.unit(9 + 6/12, "feet"),
  33465. weight: math.unit(940, "lb"),
  33466. name: "Back",
  33467. image: {
  33468. source: "./media/characters/byliss/back.svg",
  33469. extra: 1376/1349,
  33470. bottom: 9/1385
  33471. }
  33472. },
  33473. frontNsfw: {
  33474. height: math.unit(9 + 6/12, "feet"),
  33475. weight: math.unit(940, "lb"),
  33476. name: "Front (NSFW)",
  33477. image: {
  33478. source: "./media/characters/byliss/front-nsfw.svg",
  33479. extra: 1327/1290,
  33480. bottom: 82/1409
  33481. }
  33482. },
  33483. backNsfw: {
  33484. height: math.unit(9 + 6/12, "feet"),
  33485. weight: math.unit(940, "lb"),
  33486. name: "Back (NSFW)",
  33487. image: {
  33488. source: "./media/characters/byliss/back-nsfw.svg",
  33489. extra: 1376/1349,
  33490. bottom: 9/1385
  33491. }
  33492. },
  33493. },
  33494. [
  33495. {
  33496. name: "Normal",
  33497. height: math.unit(9 + 6/12, "feet"),
  33498. default: true
  33499. },
  33500. ]
  33501. ))
  33502. characterMakers.push(() => makeCharacter(
  33503. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33504. {
  33505. front: {
  33506. height: math.unit(5 + 2/12, "feet"),
  33507. weight: math.unit(200, "lb"),
  33508. name: "Front",
  33509. image: {
  33510. source: "./media/characters/noraly/front.svg",
  33511. extra: 4985/4773,
  33512. bottom: 150/5135
  33513. }
  33514. },
  33515. full: {
  33516. height: math.unit(5 + 2/12, "feet"),
  33517. weight: math.unit(164, "lb"),
  33518. name: "Full",
  33519. image: {
  33520. source: "./media/characters/noraly/full.svg",
  33521. extra: 1114/1059,
  33522. bottom: 35/1149
  33523. }
  33524. },
  33525. fuller: {
  33526. height: math.unit(5 + 2/12, "feet"),
  33527. weight: math.unit(230, "lb"),
  33528. name: "Fuller",
  33529. image: {
  33530. source: "./media/characters/noraly/fuller.svg",
  33531. extra: 1114/1059,
  33532. bottom: 35/1149
  33533. }
  33534. },
  33535. fullest: {
  33536. height: math.unit(5 + 2/12, "feet"),
  33537. weight: math.unit(300, "lb"),
  33538. name: "Fullest",
  33539. image: {
  33540. source: "./media/characters/noraly/fullest.svg",
  33541. extra: 1114/1059,
  33542. bottom: 35/1149
  33543. }
  33544. },
  33545. },
  33546. [
  33547. {
  33548. name: "Normal",
  33549. height: math.unit(5 + 2/12, "feet"),
  33550. default: true
  33551. },
  33552. ]
  33553. ))
  33554. characterMakers.push(() => makeCharacter(
  33555. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33556. {
  33557. front: {
  33558. height: math.unit(5 + 2/12, "feet"),
  33559. weight: math.unit(210, "lb"),
  33560. name: "Front",
  33561. image: {
  33562. source: "./media/characters/pera/front.svg",
  33563. extra: 1560/1531,
  33564. bottom: 165/1725
  33565. }
  33566. },
  33567. back: {
  33568. height: math.unit(5 + 2/12, "feet"),
  33569. weight: math.unit(210, "lb"),
  33570. name: "Back",
  33571. image: {
  33572. source: "./media/characters/pera/back.svg",
  33573. extra: 1523/1493,
  33574. bottom: 152/1675
  33575. }
  33576. },
  33577. dick: {
  33578. height: math.unit(2.4, "feet"),
  33579. name: "Dick",
  33580. image: {
  33581. source: "./media/characters/pera/dick.svg"
  33582. }
  33583. },
  33584. },
  33585. [
  33586. {
  33587. name: "Normal",
  33588. height: math.unit(5 + 2/12, "feet"),
  33589. default: true
  33590. },
  33591. ]
  33592. ))
  33593. characterMakers.push(() => makeCharacter(
  33594. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33595. {
  33596. front: {
  33597. height: math.unit(12, "feet"),
  33598. weight: math.unit(3200, "lb"),
  33599. name: "Front",
  33600. image: {
  33601. source: "./media/characters/julian/front.svg",
  33602. extra: 2962/2701,
  33603. bottom: 184/3146
  33604. }
  33605. },
  33606. maw: {
  33607. height: math.unit(5.35, "feet"),
  33608. name: "Maw",
  33609. image: {
  33610. source: "./media/characters/julian/maw.svg"
  33611. }
  33612. },
  33613. paw: {
  33614. height: math.unit(3.07, "feet"),
  33615. name: "Paw",
  33616. image: {
  33617. source: "./media/characters/julian/paw.svg"
  33618. }
  33619. },
  33620. },
  33621. [
  33622. {
  33623. name: "Default",
  33624. height: math.unit(12, "feet"),
  33625. default: true
  33626. },
  33627. {
  33628. name: "Big",
  33629. height: math.unit(50, "feet")
  33630. },
  33631. {
  33632. name: "Really Big",
  33633. height: math.unit(1, "mile")
  33634. },
  33635. {
  33636. name: "Extremely Big",
  33637. height: math.unit(100, "miles")
  33638. },
  33639. {
  33640. name: "Planet Hugger",
  33641. height: math.unit(200, "megameters")
  33642. },
  33643. {
  33644. name: "Unreasonably Big",
  33645. height: math.unit(1e300, "meters")
  33646. },
  33647. ]
  33648. ))
  33649. characterMakers.push(() => makeCharacter(
  33650. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33651. {
  33652. solgooleo: {
  33653. height: math.unit(4, "meters"),
  33654. weight: math.unit(6000*1.5, "kg"),
  33655. volume: math.unit(6000, "liters"),
  33656. name: "Solgooleo",
  33657. image: {
  33658. source: "./media/characters/pi/solgooleo.svg",
  33659. extra: 388/331,
  33660. bottom: 29/417
  33661. }
  33662. },
  33663. },
  33664. [
  33665. {
  33666. name: "Normal",
  33667. height: math.unit(4, "meters"),
  33668. default: true
  33669. },
  33670. ]
  33671. ))
  33672. characterMakers.push(() => makeCharacter(
  33673. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33674. {
  33675. front: {
  33676. height: math.unit(8, "feet"),
  33677. weight: math.unit(4, "tons"),
  33678. name: "Front",
  33679. image: {
  33680. source: "./media/characters/shaun/front.svg",
  33681. extra: 503/495,
  33682. bottom: 20/523
  33683. }
  33684. },
  33685. back: {
  33686. height: math.unit(8, "feet"),
  33687. weight: math.unit(4, "tons"),
  33688. name: "Back",
  33689. image: {
  33690. source: "./media/characters/shaun/back.svg",
  33691. extra: 487/480,
  33692. bottom: 20/507
  33693. }
  33694. },
  33695. },
  33696. [
  33697. {
  33698. name: "Lorg",
  33699. height: math.unit(8, "feet"),
  33700. default: true
  33701. },
  33702. ]
  33703. ))
  33704. characterMakers.push(() => makeCharacter(
  33705. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33706. {
  33707. frontAnthro: {
  33708. height: math.unit(7, "feet"),
  33709. name: "Front",
  33710. image: {
  33711. source: "./media/characters/sini/front-anthro.svg",
  33712. extra: 726/678,
  33713. bottom: 35/761
  33714. },
  33715. form: "anthro",
  33716. default: true
  33717. },
  33718. backAnthro: {
  33719. height: math.unit(7, "feet"),
  33720. name: "Back",
  33721. image: {
  33722. source: "./media/characters/sini/back-anthro.svg",
  33723. extra: 743/701,
  33724. bottom: 12/755
  33725. },
  33726. form: "anthro",
  33727. },
  33728. frontAnthroNsfw: {
  33729. height: math.unit(7, "feet"),
  33730. name: "Front (NSFW)",
  33731. image: {
  33732. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33733. extra: 726/678,
  33734. bottom: 35/761
  33735. },
  33736. form: "anthro"
  33737. },
  33738. backAnthroNsfw: {
  33739. height: math.unit(7, "feet"),
  33740. name: "Back (NSFW)",
  33741. image: {
  33742. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33743. extra: 743/701,
  33744. bottom: 12/755
  33745. },
  33746. form: "anthro",
  33747. },
  33748. mawAnthro: {
  33749. height: math.unit(2.14, "feet"),
  33750. name: "Maw",
  33751. image: {
  33752. source: "./media/characters/sini/maw-anthro.svg"
  33753. },
  33754. form: "anthro"
  33755. },
  33756. dick: {
  33757. height: math.unit(1.45, "feet"),
  33758. name: "Dick",
  33759. image: {
  33760. source: "./media/characters/sini/dick-anthro.svg"
  33761. },
  33762. form: "anthro"
  33763. },
  33764. feral: {
  33765. height: math.unit(16, "feet"),
  33766. name: "Feral",
  33767. image: {
  33768. source: "./media/characters/sini/feral.svg",
  33769. extra: 814/605,
  33770. bottom: 11/825
  33771. },
  33772. form: "feral",
  33773. default: true
  33774. },
  33775. feralNsfw: {
  33776. height: math.unit(16, "feet"),
  33777. name: "Feral (NSFW)",
  33778. image: {
  33779. source: "./media/characters/sini/feral-nsfw.svg",
  33780. extra: 814/605,
  33781. bottom: 11/825
  33782. },
  33783. form: "feral"
  33784. },
  33785. mawFeral: {
  33786. height: math.unit(5.66, "feet"),
  33787. name: "Maw",
  33788. image: {
  33789. source: "./media/characters/sini/maw-feral.svg"
  33790. },
  33791. form: "feral",
  33792. },
  33793. pawFeral: {
  33794. height: math.unit(5.17, "feet"),
  33795. name: "Paw",
  33796. image: {
  33797. source: "./media/characters/sini/paw-feral.svg"
  33798. },
  33799. form: "feral",
  33800. },
  33801. rumpFeral: {
  33802. height: math.unit(13.11, "feet"),
  33803. name: "Rump",
  33804. image: {
  33805. source: "./media/characters/sini/rump-feral.svg"
  33806. },
  33807. form: "feral",
  33808. },
  33809. dickFeral: {
  33810. height: math.unit(1, "feet"),
  33811. name: "Dick",
  33812. image: {
  33813. source: "./media/characters/sini/dick-feral.svg"
  33814. },
  33815. form: "feral",
  33816. },
  33817. eyeFeral: {
  33818. height: math.unit(1.23, "feet"),
  33819. name: "Eye",
  33820. image: {
  33821. source: "./media/characters/sini/eye-feral.svg"
  33822. },
  33823. form: "feral",
  33824. },
  33825. },
  33826. [
  33827. {
  33828. name: "Normal",
  33829. height: math.unit(7, "feet"),
  33830. default: true,
  33831. form: "anthro"
  33832. },
  33833. {
  33834. name: "Normal",
  33835. height: math.unit(16, "feet"),
  33836. default: true,
  33837. form: "feral"
  33838. },
  33839. ],
  33840. {
  33841. "anthro": {
  33842. name: "Anthro",
  33843. default: true
  33844. },
  33845. "feral": {
  33846. name: "Feral",
  33847. }
  33848. }
  33849. ))
  33850. characterMakers.push(() => makeCharacter(
  33851. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33852. {
  33853. side: {
  33854. height: math.unit(47.2, "meters"),
  33855. weight: math.unit(10000, "tons"),
  33856. name: "Side",
  33857. image: {
  33858. source: "./media/characters/raylldo/side.svg",
  33859. extra: 2363/642,
  33860. bottom: 221/2584
  33861. }
  33862. },
  33863. top: {
  33864. height: math.unit(240, "meters"),
  33865. weight: math.unit(10000, "tons"),
  33866. name: "Top",
  33867. image: {
  33868. source: "./media/characters/raylldo/top.svg"
  33869. }
  33870. },
  33871. bottom: {
  33872. height: math.unit(240, "meters"),
  33873. weight: math.unit(10000, "tons"),
  33874. name: "Bottom",
  33875. image: {
  33876. source: "./media/characters/raylldo/bottom.svg"
  33877. }
  33878. },
  33879. head: {
  33880. height: math.unit(38.6, "meters"),
  33881. name: "Head",
  33882. image: {
  33883. source: "./media/characters/raylldo/head.svg",
  33884. extra: 1335/1112,
  33885. bottom: 0/1335
  33886. }
  33887. },
  33888. maw: {
  33889. height: math.unit(16.37, "meters"),
  33890. name: "Maw",
  33891. image: {
  33892. source: "./media/characters/raylldo/maw.svg",
  33893. extra: 883/660,
  33894. bottom: 0/883
  33895. },
  33896. extraAttributes: {
  33897. preyCapacity: {
  33898. name: "Capacity",
  33899. power: 3,
  33900. type: "volume",
  33901. base: math.unit(1000, "people")
  33902. },
  33903. tongueSize: {
  33904. name: "Tongue Size",
  33905. power: 2,
  33906. type: "area",
  33907. base: math.unit(21, "m^2")
  33908. }
  33909. }
  33910. },
  33911. forepaw: {
  33912. height: math.unit(18, "meters"),
  33913. name: "Forepaw",
  33914. image: {
  33915. source: "./media/characters/raylldo/forepaw.svg"
  33916. }
  33917. },
  33918. hindpaw: {
  33919. height: math.unit(23, "meters"),
  33920. name: "Hindpaw",
  33921. image: {
  33922. source: "./media/characters/raylldo/hindpaw.svg"
  33923. }
  33924. },
  33925. genitals: {
  33926. height: math.unit(42, "meters"),
  33927. name: "Genitals",
  33928. image: {
  33929. source: "./media/characters/raylldo/genitals.svg"
  33930. }
  33931. },
  33932. },
  33933. [
  33934. {
  33935. name: "Normal",
  33936. height: math.unit(47.2, "meters"),
  33937. default: true
  33938. },
  33939. ]
  33940. ))
  33941. characterMakers.push(() => makeCharacter(
  33942. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33943. {
  33944. anthroFront: {
  33945. height: math.unit(9, "feet"),
  33946. weight: math.unit(600, "lb"),
  33947. name: "Anthro (Front)",
  33948. image: {
  33949. source: "./media/characters/glint/anthro-front.svg",
  33950. extra: 1097/1018,
  33951. bottom: 28/1125
  33952. }
  33953. },
  33954. anthroBack: {
  33955. height: math.unit(9, "feet"),
  33956. weight: math.unit(600, "lb"),
  33957. name: "Anthro (Back)",
  33958. image: {
  33959. source: "./media/characters/glint/anthro-back.svg",
  33960. extra: 1154/997,
  33961. bottom: 36/1190
  33962. }
  33963. },
  33964. feral: {
  33965. height: math.unit(11, "feet"),
  33966. weight: math.unit(50000, "lb"),
  33967. name: "Feral",
  33968. image: {
  33969. source: "./media/characters/glint/feral.svg",
  33970. extra: 3035/1585,
  33971. bottom: 1169/4204
  33972. }
  33973. },
  33974. dickAnthro: {
  33975. height: math.unit(0.7, "meters"),
  33976. name: "Dick (Anthro)",
  33977. image: {
  33978. source: "./media/characters/glint/dick-anthro.svg"
  33979. }
  33980. },
  33981. dickFeral: {
  33982. height: math.unit(2.65, "meters"),
  33983. name: "Dick (Feral)",
  33984. image: {
  33985. source: "./media/characters/glint/dick-feral.svg"
  33986. }
  33987. },
  33988. slitHidden: {
  33989. height: math.unit(5.85, "meters"),
  33990. name: "Slit (Hidden)",
  33991. image: {
  33992. source: "./media/characters/glint/slit-hidden.svg"
  33993. }
  33994. },
  33995. slitErect: {
  33996. height: math.unit(5.85, "meters"),
  33997. name: "Slit (Erect)",
  33998. image: {
  33999. source: "./media/characters/glint/slit-erect.svg"
  34000. }
  34001. },
  34002. mawAnthro: {
  34003. height: math.unit(0.63, "meters"),
  34004. name: "Maw (Anthro)",
  34005. image: {
  34006. source: "./media/characters/glint/maw.svg"
  34007. }
  34008. },
  34009. mawFeral: {
  34010. height: math.unit(2.89, "meters"),
  34011. name: "Maw (Feral)",
  34012. image: {
  34013. source: "./media/characters/glint/maw.svg"
  34014. }
  34015. },
  34016. },
  34017. [
  34018. {
  34019. name: "Normal",
  34020. height: math.unit(9, "feet"),
  34021. default: true
  34022. },
  34023. ]
  34024. ))
  34025. characterMakers.push(() => makeCharacter(
  34026. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34027. {
  34028. side: {
  34029. height: math.unit(15, "feet"),
  34030. weight: math.unit(5000, "kg"),
  34031. name: "Side",
  34032. image: {
  34033. source: "./media/characters/kairne/side.svg",
  34034. extra: 979/811,
  34035. bottom: 13/992
  34036. }
  34037. },
  34038. front: {
  34039. height: math.unit(15, "feet"),
  34040. weight: math.unit(5000, "kg"),
  34041. name: "Front",
  34042. image: {
  34043. source: "./media/characters/kairne/front.svg",
  34044. extra: 908/814,
  34045. bottom: 26/934
  34046. }
  34047. },
  34048. sideNsfw: {
  34049. height: math.unit(15, "feet"),
  34050. weight: math.unit(5000, "kg"),
  34051. name: "Side (NSFW)",
  34052. image: {
  34053. source: "./media/characters/kairne/side-nsfw.svg",
  34054. extra: 979/811,
  34055. bottom: 13/992
  34056. }
  34057. },
  34058. frontNsfw: {
  34059. height: math.unit(15, "feet"),
  34060. weight: math.unit(5000, "kg"),
  34061. name: "Front (NSFW)",
  34062. image: {
  34063. source: "./media/characters/kairne/front-nsfw.svg",
  34064. extra: 908/814,
  34065. bottom: 26/934
  34066. }
  34067. },
  34068. dickCaged: {
  34069. height: math.unit(0.65, "meters"),
  34070. name: "Dick-caged",
  34071. image: {
  34072. source: "./media/characters/kairne/dick-caged.svg"
  34073. }
  34074. },
  34075. dick: {
  34076. height: math.unit(0.79, "meters"),
  34077. name: "Dick",
  34078. image: {
  34079. source: "./media/characters/kairne/dick.svg"
  34080. }
  34081. },
  34082. genitals: {
  34083. height: math.unit(1.29, "meters"),
  34084. name: "Genitals",
  34085. image: {
  34086. source: "./media/characters/kairne/genitals.svg"
  34087. }
  34088. },
  34089. maw: {
  34090. height: math.unit(1.73, "meters"),
  34091. name: "Maw",
  34092. image: {
  34093. source: "./media/characters/kairne/maw.svg"
  34094. }
  34095. },
  34096. },
  34097. [
  34098. {
  34099. name: "Normal",
  34100. height: math.unit(15, "feet"),
  34101. default: true
  34102. },
  34103. ]
  34104. ))
  34105. characterMakers.push(() => makeCharacter(
  34106. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34107. {
  34108. front: {
  34109. height: math.unit(5 + 8/12, "feet"),
  34110. weight: math.unit(139, "lb"),
  34111. name: "Front",
  34112. image: {
  34113. source: "./media/characters/biscuit-jackal/front.svg",
  34114. extra: 2106/1961,
  34115. bottom: 58/2164
  34116. }
  34117. },
  34118. back: {
  34119. height: math.unit(5 + 8/12, "feet"),
  34120. weight: math.unit(139, "lb"),
  34121. name: "Back",
  34122. image: {
  34123. source: "./media/characters/biscuit-jackal/back.svg",
  34124. extra: 2132/1976,
  34125. bottom: 57/2189
  34126. }
  34127. },
  34128. werejackal: {
  34129. height: math.unit(6 + 3/12, "feet"),
  34130. weight: math.unit(188, "lb"),
  34131. name: "Werejackal",
  34132. image: {
  34133. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34134. extra: 2373/2178,
  34135. bottom: 53/2426
  34136. }
  34137. },
  34138. },
  34139. [
  34140. {
  34141. name: "Normal",
  34142. height: math.unit(5 + 8/12, "feet"),
  34143. default: true
  34144. },
  34145. ]
  34146. ))
  34147. characterMakers.push(() => makeCharacter(
  34148. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34149. {
  34150. front: {
  34151. height: math.unit(140, "cm"),
  34152. weight: math.unit(45, "kg"),
  34153. name: "Front",
  34154. image: {
  34155. source: "./media/characters/tayra-white/front.svg",
  34156. extra: 2229/2192,
  34157. bottom: 75/2304
  34158. }
  34159. },
  34160. },
  34161. [
  34162. {
  34163. name: "Normal",
  34164. height: math.unit(140, "cm"),
  34165. default: true
  34166. },
  34167. ]
  34168. ))
  34169. characterMakers.push(() => makeCharacter(
  34170. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34171. {
  34172. front: {
  34173. height: math.unit(4 + 5/12, "feet"),
  34174. name: "Front",
  34175. image: {
  34176. source: "./media/characters/scoop/front.svg",
  34177. extra: 1257/1136,
  34178. bottom: 69/1326
  34179. }
  34180. },
  34181. back: {
  34182. height: math.unit(4 + 5/12, "feet"),
  34183. name: "Back",
  34184. image: {
  34185. source: "./media/characters/scoop/back.svg",
  34186. extra: 1321/1152,
  34187. bottom: 32/1353
  34188. }
  34189. },
  34190. maw: {
  34191. height: math.unit(0.68, "feet"),
  34192. name: "Maw",
  34193. image: {
  34194. source: "./media/characters/scoop/maw.svg"
  34195. }
  34196. },
  34197. },
  34198. [
  34199. {
  34200. name: "Really Small",
  34201. height: math.unit(1, "mm")
  34202. },
  34203. {
  34204. name: "Micro",
  34205. height: math.unit(1, "inch")
  34206. },
  34207. {
  34208. name: "Normal",
  34209. height: math.unit(4 + 5/12, "feet"),
  34210. default: true
  34211. },
  34212. {
  34213. name: "Macro",
  34214. height: math.unit(200, "feet")
  34215. },
  34216. {
  34217. name: "Megamacro",
  34218. height: math.unit(3240, "feet")
  34219. },
  34220. {
  34221. name: "Teramacro",
  34222. height: math.unit(2500, "miles")
  34223. },
  34224. ]
  34225. ))
  34226. characterMakers.push(() => makeCharacter(
  34227. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34228. {
  34229. front: {
  34230. height: math.unit(15 + 7/12, "feet"),
  34231. weight: math.unit(1150, "tons"),
  34232. name: "Front",
  34233. image: {
  34234. source: "./media/characters/saphinara/front.svg",
  34235. extra: 1837/1643,
  34236. bottom: 84/1921
  34237. },
  34238. form: "normal",
  34239. default: true
  34240. },
  34241. side: {
  34242. height: math.unit(15 + 7/12, "feet"),
  34243. weight: math.unit(1150, "tons"),
  34244. name: "Side",
  34245. image: {
  34246. source: "./media/characters/saphinara/side.svg",
  34247. extra: 605/547,
  34248. bottom: 6/611
  34249. },
  34250. form: "normal"
  34251. },
  34252. back: {
  34253. height: math.unit(15 + 7/12, "feet"),
  34254. weight: math.unit(1150, "tons"),
  34255. name: "Back",
  34256. image: {
  34257. source: "./media/characters/saphinara/back.svg",
  34258. extra: 591/531,
  34259. bottom: 13/604
  34260. },
  34261. form: "normal"
  34262. },
  34263. frontTail: {
  34264. height: math.unit(15 + 7/12, "feet"),
  34265. weight: math.unit(1150, "tons"),
  34266. name: "Front (Full Tail)",
  34267. image: {
  34268. source: "./media/characters/saphinara/front-tail.svg",
  34269. extra: 2256/1630,
  34270. bottom: 261/2517
  34271. },
  34272. form: "normal"
  34273. },
  34274. insides: {
  34275. height: math.unit(11.92, "feet"),
  34276. name: "Insides",
  34277. image: {
  34278. source: "./media/characters/saphinara/insides.svg"
  34279. },
  34280. form: "normal"
  34281. },
  34282. head: {
  34283. height: math.unit(4.17, "feet"),
  34284. name: "Head",
  34285. image: {
  34286. source: "./media/characters/saphinara/head.svg"
  34287. },
  34288. form: "normal"
  34289. },
  34290. tongue: {
  34291. height: math.unit(4.60, "feet"),
  34292. name: "Tongue",
  34293. image: {
  34294. source: "./media/characters/saphinara/tongue.svg"
  34295. },
  34296. form: "normal"
  34297. },
  34298. headEnraged: {
  34299. height: math.unit(5.55, "feet"),
  34300. name: "Head (Enraged)",
  34301. image: {
  34302. source: "./media/characters/saphinara/head-enraged.svg"
  34303. },
  34304. form: "normal"
  34305. },
  34306. wings: {
  34307. height: math.unit(11.95, "feet"),
  34308. name: "Wings",
  34309. image: {
  34310. source: "./media/characters/saphinara/wings.svg"
  34311. },
  34312. form: "normal"
  34313. },
  34314. feathers: {
  34315. height: math.unit(8.92, "feet"),
  34316. name: "Feathers",
  34317. image: {
  34318. source: "./media/characters/saphinara/feathers.svg"
  34319. },
  34320. form: "normal"
  34321. },
  34322. shackles: {
  34323. height: math.unit(2, "feet"),
  34324. name: "Shackles",
  34325. image: {
  34326. source: "./media/characters/saphinara/shackles.svg"
  34327. },
  34328. form: "normal"
  34329. },
  34330. eyes: {
  34331. height: math.unit(1.331, "feet"),
  34332. name: "Eyes",
  34333. image: {
  34334. source: "./media/characters/saphinara/eyes.svg"
  34335. },
  34336. form: "normal"
  34337. },
  34338. eyesEnraged: {
  34339. height: math.unit(1.331, "feet"),
  34340. name: "Eyes (Enraged)",
  34341. image: {
  34342. source: "./media/characters/saphinara/eyes-enraged.svg"
  34343. },
  34344. form: "normal"
  34345. },
  34346. trueFormSide: {
  34347. height: math.unit(200, "feet"),
  34348. weight: math.unit(1e7, "tons"),
  34349. name: "Side",
  34350. image: {
  34351. source: "./media/characters/saphinara/true-form-side.svg",
  34352. extra: 1399/770,
  34353. bottom: 97/1496
  34354. },
  34355. form: "true-form",
  34356. default: true
  34357. },
  34358. trueFormMaw: {
  34359. height: math.unit(71.5, "feet"),
  34360. name: "Maw",
  34361. image: {
  34362. source: "./media/characters/saphinara/true-form-maw.svg",
  34363. extra: 2302/1453,
  34364. bottom: 0/2302
  34365. },
  34366. form: "true-form"
  34367. },
  34368. },
  34369. [
  34370. {
  34371. name: "Normal",
  34372. height: math.unit(15 + 7/12, "feet"),
  34373. default: true,
  34374. form: "normal"
  34375. },
  34376. {
  34377. name: "Angry",
  34378. height: math.unit(30 + 6/12, "feet"),
  34379. form: "normal"
  34380. },
  34381. {
  34382. name: "Enraged",
  34383. height: math.unit(102 + 1/12, "feet"),
  34384. form: "normal"
  34385. },
  34386. {
  34387. name: "True",
  34388. height: math.unit(200, "feet"),
  34389. default: true,
  34390. form: "true-form"
  34391. }
  34392. ],
  34393. {
  34394. "normal": {
  34395. name: "Normal",
  34396. default: true
  34397. },
  34398. "true-form": {
  34399. name: "True Form"
  34400. }
  34401. }
  34402. ))
  34403. characterMakers.push(() => makeCharacter(
  34404. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34405. {
  34406. front: {
  34407. height: math.unit(6 + 8/12, "feet"),
  34408. weight: math.unit(300, "lb"),
  34409. name: "Front",
  34410. image: {
  34411. source: "./media/characters/jrain/front.svg",
  34412. extra: 3039/2865,
  34413. bottom: 399/3438
  34414. }
  34415. },
  34416. back: {
  34417. height: math.unit(6 + 8/12, "feet"),
  34418. weight: math.unit(300, "lb"),
  34419. name: "Back",
  34420. image: {
  34421. source: "./media/characters/jrain/back.svg",
  34422. extra: 3089/2938,
  34423. bottom: 172/3261
  34424. }
  34425. },
  34426. head: {
  34427. height: math.unit(2.14, "feet"),
  34428. name: "Head",
  34429. image: {
  34430. source: "./media/characters/jrain/head.svg"
  34431. }
  34432. },
  34433. maw: {
  34434. height: math.unit(1.77, "feet"),
  34435. name: "Maw",
  34436. image: {
  34437. source: "./media/characters/jrain/maw.svg"
  34438. }
  34439. },
  34440. leftHand: {
  34441. height: math.unit(1.1, "feet"),
  34442. name: "Left Hand",
  34443. image: {
  34444. source: "./media/characters/jrain/left-hand.svg"
  34445. }
  34446. },
  34447. rightHand: {
  34448. height: math.unit(1.1, "feet"),
  34449. name: "Right Hand",
  34450. image: {
  34451. source: "./media/characters/jrain/right-hand.svg"
  34452. }
  34453. },
  34454. eye: {
  34455. height: math.unit(0.35, "feet"),
  34456. name: "Eye",
  34457. image: {
  34458. source: "./media/characters/jrain/eye.svg"
  34459. }
  34460. },
  34461. },
  34462. [
  34463. {
  34464. name: "Normal",
  34465. height: math.unit(6 + 8/12, "feet"),
  34466. default: true
  34467. },
  34468. {
  34469. name: "Casually Large",
  34470. height: math.unit(25, "feet")
  34471. },
  34472. {
  34473. name: "Giant",
  34474. height: math.unit(100, "feet")
  34475. },
  34476. {
  34477. name: "Kaiju",
  34478. height: math.unit(300, "feet")
  34479. },
  34480. ]
  34481. ))
  34482. characterMakers.push(() => makeCharacter(
  34483. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34484. {
  34485. dragon: {
  34486. height: math.unit(5, "meters"),
  34487. name: "Dragon",
  34488. image: {
  34489. source: "./media/characters/sabrina/dragon.svg",
  34490. extra: 3670 / 2365,
  34491. bottom: 333 / 4003
  34492. }
  34493. },
  34494. gryphon: {
  34495. height: math.unit(3, "meters"),
  34496. name: "Gryphon",
  34497. image: {
  34498. source: "./media/characters/sabrina/gryphon.svg",
  34499. extra: 1576 / 945,
  34500. bottom: 71 / 1647
  34501. }
  34502. },
  34503. snake: {
  34504. height: math.unit(12, "meters"),
  34505. name: "Snake",
  34506. image: {
  34507. source: "./media/characters/sabrina/snake.svg",
  34508. extra: 1758 / 1320,
  34509. bottom: 186 / 1944
  34510. }
  34511. },
  34512. collar: {
  34513. height: math.unit(1.86, "meters"),
  34514. name: "Collar",
  34515. image: {
  34516. source: "./media/characters/sabrina/collar.svg"
  34517. }
  34518. },
  34519. eye: {
  34520. height: math.unit(0.53, "meters"),
  34521. name: "Eye",
  34522. image: {
  34523. source: "./media/characters/sabrina/eye.svg"
  34524. }
  34525. },
  34526. foot: {
  34527. height: math.unit(1.86, "meters"),
  34528. name: "Foot",
  34529. image: {
  34530. source: "./media/characters/sabrina/foot.svg"
  34531. }
  34532. },
  34533. hand: {
  34534. height: math.unit(1.32, "meters"),
  34535. name: "Hand",
  34536. image: {
  34537. source: "./media/characters/sabrina/hand.svg"
  34538. }
  34539. },
  34540. head: {
  34541. height: math.unit(2.44, "meters"),
  34542. name: "Head",
  34543. image: {
  34544. source: "./media/characters/sabrina/head.svg"
  34545. }
  34546. },
  34547. headAngry: {
  34548. height: math.unit(2.44, "meters"),
  34549. name: "Head (Angry))",
  34550. image: {
  34551. source: "./media/characters/sabrina/head-angry.svg"
  34552. }
  34553. },
  34554. maw: {
  34555. height: math.unit(1.65, "meters"),
  34556. name: "Maw",
  34557. image: {
  34558. source: "./media/characters/sabrina/maw.svg"
  34559. }
  34560. },
  34561. spikes: {
  34562. height: math.unit(1.69, "meters"),
  34563. name: "Spikes",
  34564. image: {
  34565. source: "./media/characters/sabrina/spikes.svg"
  34566. }
  34567. },
  34568. stomach: {
  34569. height: math.unit(1.15, "meters"),
  34570. name: "Stomach",
  34571. image: {
  34572. source: "./media/characters/sabrina/stomach.svg"
  34573. }
  34574. },
  34575. tongue: {
  34576. height: math.unit(1.27, "meters"),
  34577. name: "Tongue",
  34578. image: {
  34579. source: "./media/characters/sabrina/tongue.svg"
  34580. }
  34581. },
  34582. wingDorsal: {
  34583. height: math.unit(4.85, "meters"),
  34584. name: "Wing (Dorsal)",
  34585. image: {
  34586. source: "./media/characters/sabrina/wing-dorsal.svg"
  34587. }
  34588. },
  34589. wingVentral: {
  34590. height: math.unit(4.85, "meters"),
  34591. name: "Wing (Ventral)",
  34592. image: {
  34593. source: "./media/characters/sabrina/wing-ventral.svg"
  34594. }
  34595. },
  34596. },
  34597. [
  34598. {
  34599. name: "Normal",
  34600. height: math.unit(5, "meters"),
  34601. default: true
  34602. },
  34603. ]
  34604. ))
  34605. characterMakers.push(() => makeCharacter(
  34606. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  34607. {
  34608. frontMaid: {
  34609. height: math.unit(5 + 5/12, "feet"),
  34610. weight: math.unit(130, "lb"),
  34611. name: "Front (Maid)",
  34612. image: {
  34613. source: "./media/characters/midnight-tales/front-maid.svg",
  34614. extra: 489/454,
  34615. bottom: 61/550
  34616. }
  34617. },
  34618. frontFormal: {
  34619. height: math.unit(5 + 5/12, "feet"),
  34620. weight: math.unit(130, "lb"),
  34621. name: "Front (Formal)",
  34622. image: {
  34623. source: "./media/characters/midnight-tales/front-formal.svg",
  34624. extra: 489/454,
  34625. bottom: 61/550
  34626. }
  34627. },
  34628. back: {
  34629. height: math.unit(5 + 5/12, "feet"),
  34630. weight: math.unit(130, "lb"),
  34631. name: "Back",
  34632. image: {
  34633. source: "./media/characters/midnight-tales/back.svg",
  34634. extra: 498/456,
  34635. bottom: 33/531
  34636. }
  34637. },
  34638. frontBeast: {
  34639. height: math.unit(40, "feet"),
  34640. weight: math.unit(64000, "lb"),
  34641. name: "Front (Beast)",
  34642. image: {
  34643. source: "./media/characters/midnight-tales/front-beast.svg",
  34644. extra: 927/860,
  34645. bottom: 53/980
  34646. }
  34647. },
  34648. backBeast: {
  34649. height: math.unit(40, "feet"),
  34650. weight: math.unit(64000, "lb"),
  34651. name: "Back (Beast)",
  34652. image: {
  34653. source: "./media/characters/midnight-tales/back-beast.svg",
  34654. extra: 929/855,
  34655. bottom: 16/945
  34656. }
  34657. },
  34658. footBeast: {
  34659. height: math.unit(6.7, "feet"),
  34660. name: "Foot (Beast)",
  34661. image: {
  34662. source: "./media/characters/midnight-tales/foot-beast.svg"
  34663. }
  34664. },
  34665. headBeast: {
  34666. height: math.unit(8, "feet"),
  34667. name: "Head (Beast)",
  34668. image: {
  34669. source: "./media/characters/midnight-tales/head-beast.svg"
  34670. }
  34671. },
  34672. },
  34673. [
  34674. {
  34675. name: "Normal",
  34676. height: math.unit(5 + 5 / 12, "feet"),
  34677. default: true
  34678. },
  34679. {
  34680. name: "Macro",
  34681. height: math.unit(25, "feet")
  34682. },
  34683. ]
  34684. ))
  34685. characterMakers.push(() => makeCharacter(
  34686. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  34687. {
  34688. front: {
  34689. height: math.unit(5 + 10/12, "feet"),
  34690. name: "Front",
  34691. image: {
  34692. source: "./media/characters/argon/front.svg",
  34693. extra: 2009/1935,
  34694. bottom: 118/2127
  34695. }
  34696. },
  34697. back: {
  34698. height: math.unit(5 + 10/12, "feet"),
  34699. name: "Back",
  34700. image: {
  34701. source: "./media/characters/argon/back.svg",
  34702. extra: 2047/1992,
  34703. bottom: 20/2067
  34704. }
  34705. },
  34706. frontDressed: {
  34707. height: math.unit(5 + 10/12, "feet"),
  34708. name: "Front (Dressed)",
  34709. image: {
  34710. source: "./media/characters/argon/front-dressed.svg",
  34711. extra: 2009/1935,
  34712. bottom: 118/2127
  34713. }
  34714. },
  34715. },
  34716. [
  34717. {
  34718. name: "Normal",
  34719. height: math.unit(5 + 10/12, "feet"),
  34720. default: true
  34721. },
  34722. ]
  34723. ))
  34724. characterMakers.push(() => makeCharacter(
  34725. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  34726. {
  34727. front: {
  34728. height: math.unit(8 + 6/12, "feet"),
  34729. weight: math.unit(1150, "lb"),
  34730. name: "Front",
  34731. image: {
  34732. source: "./media/characters/kichi/front.svg",
  34733. extra: 1267/1164,
  34734. bottom: 61/1328
  34735. }
  34736. },
  34737. back: {
  34738. height: math.unit(8 + 6/12, "feet"),
  34739. weight: math.unit(1150, "lb"),
  34740. name: "Back",
  34741. image: {
  34742. source: "./media/characters/kichi/back.svg",
  34743. extra: 1273/1166,
  34744. bottom: 33/1306
  34745. }
  34746. },
  34747. },
  34748. [
  34749. {
  34750. name: "Normal",
  34751. height: math.unit(8 + 6/12, "feet"),
  34752. default: true
  34753. },
  34754. ]
  34755. ))
  34756. characterMakers.push(() => makeCharacter(
  34757. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  34758. {
  34759. front: {
  34760. height: math.unit(6, "feet"),
  34761. weight: math.unit(210, "lb"),
  34762. name: "Front",
  34763. image: {
  34764. source: "./media/characters/manetel-greyscale/front.svg",
  34765. extra: 350/312,
  34766. bottom: 8/358
  34767. }
  34768. },
  34769. },
  34770. [
  34771. {
  34772. name: "Micro",
  34773. height: math.unit(2, "inches")
  34774. },
  34775. {
  34776. name: "Normal",
  34777. height: math.unit(6, "feet"),
  34778. default: true
  34779. },
  34780. {
  34781. name: "Minimacro",
  34782. height: math.unit(17, "feet")
  34783. },
  34784. {
  34785. name: "Macro",
  34786. height: math.unit(117, "feet")
  34787. },
  34788. ]
  34789. ))
  34790. characterMakers.push(() => makeCharacter(
  34791. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  34792. {
  34793. side: {
  34794. height: math.unit(5 + 1/12, "feet"),
  34795. weight: math.unit(418, "lb"),
  34796. name: "Side",
  34797. image: {
  34798. source: "./media/characters/softpurr/side.svg",
  34799. extra: 1993/1945,
  34800. bottom: 134/2127
  34801. }
  34802. },
  34803. front: {
  34804. height: math.unit(5 + 1/12, "feet"),
  34805. weight: math.unit(418, "lb"),
  34806. name: "Front",
  34807. image: {
  34808. source: "./media/characters/softpurr/front.svg",
  34809. extra: 1950/1856,
  34810. bottom: 174/2124
  34811. }
  34812. },
  34813. paw: {
  34814. height: math.unit(1, "feet"),
  34815. name: "Paw",
  34816. image: {
  34817. source: "./media/characters/softpurr/paw.svg"
  34818. }
  34819. },
  34820. },
  34821. [
  34822. {
  34823. name: "Normal",
  34824. height: math.unit(5 + 1/12, "feet"),
  34825. default: true
  34826. },
  34827. ]
  34828. ))
  34829. characterMakers.push(() => makeCharacter(
  34830. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  34831. {
  34832. front: {
  34833. height: math.unit(260, "meters"),
  34834. name: "Front",
  34835. image: {
  34836. source: "./media/characters/anahita/front.svg",
  34837. extra: 665/635,
  34838. bottom: 89/754
  34839. }
  34840. },
  34841. },
  34842. [
  34843. {
  34844. name: "Macro",
  34845. height: math.unit(260, "meters"),
  34846. default: true
  34847. },
  34848. ]
  34849. ))
  34850. characterMakers.push(() => makeCharacter(
  34851. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  34852. {
  34853. front: {
  34854. height: math.unit(4 + 10/12, "feet"),
  34855. weight: math.unit(160, "lb"),
  34856. name: "Front",
  34857. image: {
  34858. source: "./media/characters/chip-mouse/front.svg",
  34859. extra: 3528/3408,
  34860. bottom: 0/3528
  34861. }
  34862. },
  34863. frontNsfw: {
  34864. height: math.unit(4 + 10/12, "feet"),
  34865. weight: math.unit(160, "lb"),
  34866. name: "Front (NSFW)",
  34867. image: {
  34868. source: "./media/characters/chip-mouse/front-nsfw.svg",
  34869. extra: 3528/3408,
  34870. bottom: 0/3528
  34871. }
  34872. },
  34873. },
  34874. [
  34875. {
  34876. name: "Normal",
  34877. height: math.unit(4 + 10/12, "feet"),
  34878. default: true
  34879. },
  34880. ]
  34881. ))
  34882. characterMakers.push(() => makeCharacter(
  34883. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34884. {
  34885. side: {
  34886. height: math.unit(10, "feet"),
  34887. weight: math.unit(14000, "lb"),
  34888. name: "Side",
  34889. image: {
  34890. source: "./media/characters/kremm/side.svg",
  34891. extra: 1390/1053,
  34892. bottom: 90/1480
  34893. }
  34894. },
  34895. gut: {
  34896. height: math.unit(5.8, "feet"),
  34897. name: "Gut",
  34898. image: {
  34899. source: "./media/characters/kremm/gut.svg"
  34900. }
  34901. },
  34902. ass: {
  34903. height: math.unit(6.1, "feet"),
  34904. name: "Ass",
  34905. image: {
  34906. source: "./media/characters/kremm/ass.svg"
  34907. }
  34908. },
  34909. jaws: {
  34910. height: math.unit(2.2, "feet"),
  34911. name: "Jaws",
  34912. image: {
  34913. source: "./media/characters/kremm/jaws.svg"
  34914. }
  34915. },
  34916. dick: {
  34917. height: math.unit(4.26, "feet"),
  34918. name: "Dick",
  34919. image: {
  34920. source: "./media/characters/kremm/dick.svg"
  34921. }
  34922. },
  34923. },
  34924. [
  34925. {
  34926. name: "Normal",
  34927. height: math.unit(10, "feet"),
  34928. default: true
  34929. },
  34930. ]
  34931. ))
  34932. characterMakers.push(() => makeCharacter(
  34933. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  34934. {
  34935. front: {
  34936. height: math.unit(30, "stories"),
  34937. name: "Front",
  34938. image: {
  34939. source: "./media/characters/kai/front.svg",
  34940. extra: 1892/1718,
  34941. bottom: 162/2054
  34942. }
  34943. },
  34944. },
  34945. [
  34946. {
  34947. name: "Macro",
  34948. height: math.unit(30, "stories"),
  34949. default: true
  34950. },
  34951. ]
  34952. ))
  34953. characterMakers.push(() => makeCharacter(
  34954. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  34955. {
  34956. front: {
  34957. height: math.unit(6 + 4/12, "feet"),
  34958. weight: math.unit(145, "lb"),
  34959. name: "Front",
  34960. image: {
  34961. source: "./media/characters/sykes/front.svg",
  34962. extra: 1321 / 1187,
  34963. bottom: 66 / 1387
  34964. }
  34965. },
  34966. back: {
  34967. height: math.unit(6 + 4/12, "feet"),
  34968. weight: math.unit(145, "lb"),
  34969. name: "Back",
  34970. image: {
  34971. source: "./media/characters/sykes/back.svg",
  34972. extra: 1326/1181,
  34973. bottom: 31/1357
  34974. }
  34975. },
  34976. traditionalOutfit: {
  34977. height: math.unit(6 + 4/12, "feet"),
  34978. weight: math.unit(145, "lb"),
  34979. name: "Traditional Outfit",
  34980. image: {
  34981. source: "./media/characters/sykes/traditional-outfit.svg",
  34982. extra: 1321 / 1187,
  34983. bottom: 66 / 1387
  34984. }
  34985. },
  34986. adventureOutfit: {
  34987. height: math.unit(6 + 4/12, "feet"),
  34988. weight: math.unit(145, "lb"),
  34989. name: "Adventure Outfit",
  34990. image: {
  34991. source: "./media/characters/sykes/adventure-outfit.svg",
  34992. extra: 1321 / 1187,
  34993. bottom: 66 / 1387
  34994. }
  34995. },
  34996. handLeft: {
  34997. height: math.unit(0.9, "feet"),
  34998. name: "Hand (Left)",
  34999. image: {
  35000. source: "./media/characters/sykes/hand-left.svg"
  35001. }
  35002. },
  35003. handRight: {
  35004. height: math.unit(0.839, "feet"),
  35005. name: "Hand (Right)",
  35006. image: {
  35007. source: "./media/characters/sykes/hand-right.svg"
  35008. }
  35009. },
  35010. leftFoot: {
  35011. height: math.unit(1.2, "feet"),
  35012. name: "Foot (Left)",
  35013. image: {
  35014. source: "./media/characters/sykes/foot-left.svg"
  35015. }
  35016. },
  35017. rightFoot: {
  35018. height: math.unit(1.2, "feet"),
  35019. name: "Foot (Right)",
  35020. image: {
  35021. source: "./media/characters/sykes/foot-right.svg"
  35022. }
  35023. },
  35024. maw: {
  35025. height: math.unit(1.93, "feet"),
  35026. name: "Maw",
  35027. image: {
  35028. source: "./media/characters/sykes/maw.svg"
  35029. }
  35030. },
  35031. teeth: {
  35032. height: math.unit(0.51, "feet"),
  35033. name: "Teeth",
  35034. image: {
  35035. source: "./media/characters/sykes/teeth.svg"
  35036. }
  35037. },
  35038. tongue: {
  35039. height: math.unit(2.13, "feet"),
  35040. name: "Tongue",
  35041. image: {
  35042. source: "./media/characters/sykes/tongue.svg"
  35043. }
  35044. },
  35045. uvula: {
  35046. height: math.unit(0.16, "feet"),
  35047. name: "Uvula",
  35048. image: {
  35049. source: "./media/characters/sykes/uvula.svg"
  35050. }
  35051. },
  35052. collar: {
  35053. height: math.unit(0.287, "feet"),
  35054. name: "Collar",
  35055. image: {
  35056. source: "./media/characters/sykes/collar.svg"
  35057. }
  35058. },
  35059. tail: {
  35060. height: math.unit(3.8, "feet"),
  35061. name: "Tail",
  35062. image: {
  35063. source: "./media/characters/sykes/tail.svg"
  35064. }
  35065. },
  35066. },
  35067. [
  35068. {
  35069. name: "Shrunken",
  35070. height: math.unit(5, "inches")
  35071. },
  35072. {
  35073. name: "Normal",
  35074. height: math.unit(6 + 4 / 12, "feet"),
  35075. default: true
  35076. },
  35077. {
  35078. name: "Big",
  35079. height: math.unit(15, "feet")
  35080. },
  35081. ]
  35082. ))
  35083. characterMakers.push(() => makeCharacter(
  35084. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35085. {
  35086. front: {
  35087. height: math.unit(5 + 8/12, "feet"),
  35088. weight: math.unit(190, "lb"),
  35089. name: "Front",
  35090. image: {
  35091. source: "./media/characters/oven-otter/front.svg",
  35092. extra: 1809/1740,
  35093. bottom: 181/1990
  35094. }
  35095. },
  35096. back: {
  35097. height: math.unit(5 + 8/12, "feet"),
  35098. weight: math.unit(190, "lb"),
  35099. name: "Back",
  35100. image: {
  35101. source: "./media/characters/oven-otter/back.svg",
  35102. extra: 1709/1635,
  35103. bottom: 118/1827
  35104. }
  35105. },
  35106. hand: {
  35107. height: math.unit(1.07, "feet"),
  35108. name: "Hand",
  35109. image: {
  35110. source: "./media/characters/oven-otter/hand.svg"
  35111. }
  35112. },
  35113. beans: {
  35114. height: math.unit(1.74, "feet"),
  35115. name: "Beans",
  35116. image: {
  35117. source: "./media/characters/oven-otter/beans.svg"
  35118. }
  35119. },
  35120. },
  35121. [
  35122. {
  35123. name: "Micro",
  35124. height: math.unit(0.5, "inches")
  35125. },
  35126. {
  35127. name: "Normal",
  35128. height: math.unit(5 + 8/12, "feet"),
  35129. default: true
  35130. },
  35131. {
  35132. name: "Macro",
  35133. height: math.unit(250, "feet")
  35134. },
  35135. {
  35136. name: "Really High",
  35137. height: math.unit(420, "feet")
  35138. },
  35139. ]
  35140. ))
  35141. characterMakers.push(() => makeCharacter(
  35142. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35143. {
  35144. front: {
  35145. height: math.unit(5, "meters"),
  35146. weight: math.unit(292000000000000, "kg"),
  35147. name: "Front",
  35148. image: {
  35149. source: "./media/characters/devourer/front.svg",
  35150. extra: 1800/1733,
  35151. bottom: 211/2011
  35152. }
  35153. },
  35154. maw: {
  35155. height: math.unit(1.1, "meter"),
  35156. name: "Maw",
  35157. image: {
  35158. source: "./media/characters/devourer/maw.svg"
  35159. }
  35160. },
  35161. },
  35162. [
  35163. {
  35164. name: "Small",
  35165. height: math.unit(3, "meters")
  35166. },
  35167. {
  35168. name: "Large",
  35169. height: math.unit(5, "meters"),
  35170. default: true
  35171. },
  35172. ]
  35173. ))
  35174. characterMakers.push(() => makeCharacter(
  35175. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35176. {
  35177. front: {
  35178. height: math.unit(6, "feet"),
  35179. weight: math.unit(400, "lb"),
  35180. name: "Front",
  35181. image: {
  35182. source: "./media/characters/ellarby/front.svg",
  35183. extra: 1909/1763,
  35184. bottom: 80/1989
  35185. }
  35186. },
  35187. back: {
  35188. height: math.unit(6, "feet"),
  35189. weight: math.unit(400, "lb"),
  35190. name: "Back",
  35191. image: {
  35192. source: "./media/characters/ellarby/back.svg",
  35193. extra: 1914/1784,
  35194. bottom: 172/2086
  35195. }
  35196. },
  35197. },
  35198. [
  35199. {
  35200. name: "Mischief",
  35201. height: math.unit(18, "inches")
  35202. },
  35203. {
  35204. name: "Trouble",
  35205. height: math.unit(12, "feet")
  35206. },
  35207. {
  35208. name: "Havoc",
  35209. height: math.unit(200, "feet"),
  35210. default: true
  35211. },
  35212. {
  35213. name: "Pandemonium",
  35214. height: math.unit(1, "mile")
  35215. },
  35216. {
  35217. name: "Catastrophe",
  35218. height: math.unit(100, "miles")
  35219. },
  35220. ]
  35221. ))
  35222. characterMakers.push(() => makeCharacter(
  35223. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35224. {
  35225. front: {
  35226. height: math.unit(4.7, "meters"),
  35227. weight: math.unit(6500, "kg"),
  35228. name: "Front",
  35229. image: {
  35230. source: "./media/characters/vex/front.svg",
  35231. extra: 1288/1140,
  35232. bottom: 100/1388
  35233. }
  35234. },
  35235. },
  35236. [
  35237. {
  35238. name: "Normal",
  35239. height: math.unit(4.7, "meters"),
  35240. default: true
  35241. },
  35242. ]
  35243. ))
  35244. characterMakers.push(() => makeCharacter(
  35245. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35246. {
  35247. normal: {
  35248. height: math.unit(6, "feet"),
  35249. weight: math.unit(350, "lb"),
  35250. name: "Normal",
  35251. image: {
  35252. source: "./media/characters/teshy/normal.svg",
  35253. extra: 1795/1735,
  35254. bottom: 16/1811
  35255. }
  35256. },
  35257. monsterFront: {
  35258. height: math.unit(12, "feet"),
  35259. weight: math.unit(4700, "lb"),
  35260. name: "Monster (Front)",
  35261. image: {
  35262. source: "./media/characters/teshy/monster-front.svg",
  35263. extra: 2042/2034,
  35264. bottom: 128/2170
  35265. }
  35266. },
  35267. monsterSide: {
  35268. height: math.unit(12, "feet"),
  35269. weight: math.unit(4700, "lb"),
  35270. name: "Monster (Side)",
  35271. image: {
  35272. source: "./media/characters/teshy/monster-side.svg",
  35273. extra: 2067/2056,
  35274. bottom: 70/2137
  35275. }
  35276. },
  35277. monsterBack: {
  35278. height: math.unit(12, "feet"),
  35279. weight: math.unit(4700, "lb"),
  35280. name: "Monster (Back)",
  35281. image: {
  35282. source: "./media/characters/teshy/monster-back.svg",
  35283. extra: 1921/1914,
  35284. bottom: 171/2092
  35285. }
  35286. },
  35287. },
  35288. [
  35289. {
  35290. name: "Normal",
  35291. height: math.unit(6, "feet"),
  35292. default: true
  35293. },
  35294. ]
  35295. ))
  35296. characterMakers.push(() => makeCharacter(
  35297. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35298. {
  35299. front: {
  35300. height: math.unit(6, "feet"),
  35301. name: "Front",
  35302. image: {
  35303. source: "./media/characters/ramey/front.svg",
  35304. extra: 790/787,
  35305. bottom: 27/817
  35306. }
  35307. },
  35308. },
  35309. [
  35310. {
  35311. name: "Normal",
  35312. height: math.unit(6, "feet"),
  35313. default: true
  35314. },
  35315. ]
  35316. ))
  35317. characterMakers.push(() => makeCharacter(
  35318. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35319. {
  35320. front: {
  35321. height: math.unit(5 + 5/12, "feet"),
  35322. weight: math.unit(120, "lb"),
  35323. name: "Front",
  35324. image: {
  35325. source: "./media/characters/phirae/front.svg",
  35326. extra: 2491/2436,
  35327. bottom: 38/2529
  35328. }
  35329. },
  35330. },
  35331. [
  35332. {
  35333. name: "Normal",
  35334. height: math.unit(5 + 5/12, "feet"),
  35335. default: true
  35336. },
  35337. ]
  35338. ))
  35339. characterMakers.push(() => makeCharacter(
  35340. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35341. {
  35342. front: {
  35343. height: math.unit(5 + 3/12, "feet"),
  35344. name: "Front",
  35345. image: {
  35346. source: "./media/characters/stagglas/front.svg",
  35347. extra: 962/882,
  35348. bottom: 53/1015
  35349. }
  35350. },
  35351. feral: {
  35352. height: math.unit(335, "cm"),
  35353. name: "Feral",
  35354. image: {
  35355. source: "./media/characters/stagglas/feral.svg",
  35356. extra: 1732/1090,
  35357. bottom: 48/1780
  35358. }
  35359. },
  35360. },
  35361. [
  35362. {
  35363. name: "Normal",
  35364. height: math.unit(5 + 3/12, "feet"),
  35365. default: true
  35366. },
  35367. ]
  35368. ))
  35369. characterMakers.push(() => makeCharacter(
  35370. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35371. {
  35372. front: {
  35373. height: math.unit(5 + 4/12, "feet"),
  35374. weight: math.unit(145, "lb"),
  35375. name: "Front",
  35376. image: {
  35377. source: "./media/characters/starra/front.svg",
  35378. extra: 1790/1691,
  35379. bottom: 91/1881
  35380. }
  35381. },
  35382. },
  35383. [
  35384. {
  35385. name: "Normal",
  35386. height: math.unit(5 + 4/12, "feet"),
  35387. default: true
  35388. },
  35389. ]
  35390. ))
  35391. characterMakers.push(() => makeCharacter(
  35392. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35393. {
  35394. front: {
  35395. height: math.unit(2.2, "meters"),
  35396. name: "Front",
  35397. image: {
  35398. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35399. extra: 1194/1005,
  35400. bottom: 25/1219
  35401. }
  35402. },
  35403. },
  35404. [
  35405. {
  35406. name: "Normal",
  35407. height: math.unit(2.2, "meters"),
  35408. default: true
  35409. },
  35410. ]
  35411. ))
  35412. characterMakers.push(() => makeCharacter(
  35413. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35414. {
  35415. side: {
  35416. height: math.unit(8 + 2/12, "feet"),
  35417. weight: math.unit(1240, "lb"),
  35418. name: "Side",
  35419. image: {
  35420. source: "./media/characters/mika-valentine/side.svg",
  35421. extra: 2670/2501,
  35422. bottom: 250/2920
  35423. }
  35424. },
  35425. },
  35426. [
  35427. {
  35428. name: "Normal",
  35429. height: math.unit(8 + 2/12, "feet"),
  35430. default: true
  35431. },
  35432. ]
  35433. ))
  35434. characterMakers.push(() => makeCharacter(
  35435. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35436. {
  35437. front: {
  35438. height: math.unit(7 + 2/12, "feet"),
  35439. name: "Front",
  35440. image: {
  35441. source: "./media/characters/xoltol/front.svg",
  35442. extra: 2212/2124,
  35443. bottom: 84/2296
  35444. }
  35445. },
  35446. side: {
  35447. height: math.unit(7 + 2/12, "feet"),
  35448. name: "Side",
  35449. image: {
  35450. source: "./media/characters/xoltol/side.svg",
  35451. extra: 2273/2197,
  35452. bottom: 26/2299
  35453. }
  35454. },
  35455. hand: {
  35456. height: math.unit(2.5, "feet"),
  35457. name: "Hand",
  35458. image: {
  35459. source: "./media/characters/xoltol/hand.svg"
  35460. }
  35461. },
  35462. },
  35463. [
  35464. {
  35465. name: "Small-ish",
  35466. height: math.unit(5 + 11/12, "feet")
  35467. },
  35468. {
  35469. name: "Normal",
  35470. height: math.unit(7 + 2/12, "feet")
  35471. },
  35472. {
  35473. name: "\"Macro\"",
  35474. height: math.unit(14 + 9/12, "feet"),
  35475. default: true
  35476. },
  35477. {
  35478. name: "Alternate Height",
  35479. height: math.unit(20, "feet")
  35480. },
  35481. {
  35482. name: "Actually Macro",
  35483. height: math.unit(100, "feet")
  35484. },
  35485. ]
  35486. ))
  35487. characterMakers.push(() => makeCharacter(
  35488. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35489. {
  35490. front: {
  35491. height: math.unit(5 + 2/12, "feet"),
  35492. name: "Front",
  35493. image: {
  35494. source: "./media/characters/kotetsu-redwood/front.svg",
  35495. extra: 1053/942,
  35496. bottom: 60/1113
  35497. }
  35498. },
  35499. },
  35500. [
  35501. {
  35502. name: "Normal",
  35503. height: math.unit(5 + 2/12, "feet"),
  35504. default: true
  35505. },
  35506. ]
  35507. ))
  35508. characterMakers.push(() => makeCharacter(
  35509. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35510. {
  35511. front: {
  35512. height: math.unit(2.4, "meters"),
  35513. weight: math.unit(125, "kg"),
  35514. name: "Front",
  35515. image: {
  35516. source: "./media/characters/lilith/front.svg",
  35517. extra: 1590/1513,
  35518. bottom: 203/1793
  35519. }
  35520. },
  35521. },
  35522. [
  35523. {
  35524. name: "Humanoid",
  35525. height: math.unit(2.4, "meters")
  35526. },
  35527. {
  35528. name: "Normal",
  35529. height: math.unit(6, "meters"),
  35530. default: true
  35531. },
  35532. {
  35533. name: "Largest",
  35534. height: math.unit(55, "meters")
  35535. },
  35536. ]
  35537. ))
  35538. characterMakers.push(() => makeCharacter(
  35539. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35540. {
  35541. front: {
  35542. height: math.unit(8 + 4/12, "feet"),
  35543. weight: math.unit(535, "lb"),
  35544. name: "Front",
  35545. image: {
  35546. source: "./media/characters/beh'kah-bolger/front.svg",
  35547. extra: 1660/1603,
  35548. bottom: 37/1697
  35549. }
  35550. },
  35551. },
  35552. [
  35553. {
  35554. name: "Normal",
  35555. height: math.unit(8 + 4/12, "feet"),
  35556. default: true
  35557. },
  35558. {
  35559. name: "Kaiju",
  35560. height: math.unit(250, "feet")
  35561. },
  35562. {
  35563. name: "Still Growing",
  35564. height: math.unit(10, "miles")
  35565. },
  35566. {
  35567. name: "Continental",
  35568. height: math.unit(5000, "miles")
  35569. },
  35570. {
  35571. name: "Final Form",
  35572. height: math.unit(2500000, "miles")
  35573. },
  35574. ]
  35575. ))
  35576. characterMakers.push(() => makeCharacter(
  35577. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35578. {
  35579. front: {
  35580. height: math.unit(7 + 2/12, "feet"),
  35581. weight: math.unit(230, "kg"),
  35582. name: "Front",
  35583. image: {
  35584. source: "./media/characters/tatyana-milewska/front.svg",
  35585. extra: 1199/1150,
  35586. bottom: 86/1285
  35587. }
  35588. },
  35589. },
  35590. [
  35591. {
  35592. name: "Normal",
  35593. height: math.unit(7 + 2/12, "feet"),
  35594. default: true
  35595. },
  35596. {
  35597. name: "Big",
  35598. height: math.unit(12, "feet")
  35599. },
  35600. {
  35601. name: "Minimacro",
  35602. height: math.unit(20, "feet")
  35603. },
  35604. {
  35605. name: "Macro",
  35606. height: math.unit(120, "feet")
  35607. },
  35608. ]
  35609. ))
  35610. characterMakers.push(() => makeCharacter(
  35611. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  35612. {
  35613. front: {
  35614. height: math.unit(7 + 8/12, "feet"),
  35615. weight: math.unit(152, "kg"),
  35616. name: "Front",
  35617. image: {
  35618. source: "./media/characters/helen-arri/front.svg",
  35619. extra: 440/423,
  35620. bottom: 14/454
  35621. }
  35622. },
  35623. back: {
  35624. height: math.unit(7 + 8/12, "feet"),
  35625. weight: math.unit(152, "kg"),
  35626. name: "Back",
  35627. image: {
  35628. source: "./media/characters/helen-arri/back.svg",
  35629. extra: 443/426,
  35630. bottom: 8/451
  35631. }
  35632. },
  35633. },
  35634. [
  35635. {
  35636. name: "Normal",
  35637. height: math.unit(7 + 8/12, "feet"),
  35638. default: true
  35639. },
  35640. {
  35641. name: "Big",
  35642. height: math.unit(14, "feet")
  35643. },
  35644. {
  35645. name: "Minimacro",
  35646. height: math.unit(24, "feet")
  35647. },
  35648. {
  35649. name: "Macro",
  35650. height: math.unit(140, "feet")
  35651. },
  35652. ]
  35653. ))
  35654. characterMakers.push(() => makeCharacter(
  35655. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  35656. {
  35657. front: {
  35658. height: math.unit(6, "meters"),
  35659. name: "Front",
  35660. image: {
  35661. source: "./media/characters/ehanu-rehu/front.svg",
  35662. extra: 1800/1800,
  35663. bottom: 59/1859
  35664. }
  35665. },
  35666. },
  35667. [
  35668. {
  35669. name: "Normal",
  35670. height: math.unit(6, "meters"),
  35671. default: true
  35672. },
  35673. ]
  35674. ))
  35675. characterMakers.push(() => makeCharacter(
  35676. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  35677. {
  35678. front: {
  35679. height: math.unit(7 + 3/12, "feet"),
  35680. name: "Front",
  35681. image: {
  35682. source: "./media/characters/renholder/front.svg",
  35683. extra: 3096/2960,
  35684. bottom: 250/3346
  35685. }
  35686. },
  35687. },
  35688. [
  35689. {
  35690. name: "Normal Bat",
  35691. height: math.unit(7 + 3/12, "feet"),
  35692. default: true
  35693. },
  35694. {
  35695. name: "Slightly Tall Bat",
  35696. height: math.unit(100, "feet")
  35697. },
  35698. {
  35699. name: "Big Bat",
  35700. height: math.unit(1000, "feet")
  35701. },
  35702. {
  35703. name: "City-Sized Bat",
  35704. height: math.unit(200000, "feet")
  35705. },
  35706. {
  35707. name: "Bigger Bat",
  35708. height: math.unit(10000, "miles")
  35709. },
  35710. {
  35711. name: "Solar Sized Bat",
  35712. height: math.unit(100, "AU")
  35713. },
  35714. {
  35715. name: "Galactic Bat",
  35716. height: math.unit(200000, "lightyears")
  35717. },
  35718. {
  35719. name: "Universally Known Bat",
  35720. height: math.unit(1, "universe")
  35721. },
  35722. ]
  35723. ))
  35724. characterMakers.push(() => makeCharacter(
  35725. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  35726. {
  35727. front: {
  35728. height: math.unit(6 + 11/12, "feet"),
  35729. weight: math.unit(250, "lb"),
  35730. name: "Front",
  35731. image: {
  35732. source: "./media/characters/cookiecat/front.svg",
  35733. extra: 893/827,
  35734. bottom: 14/907
  35735. }
  35736. },
  35737. },
  35738. [
  35739. {
  35740. name: "Micro",
  35741. height: math.unit(3, "inches")
  35742. },
  35743. {
  35744. name: "Normal",
  35745. height: math.unit(6 + 11/12, "feet"),
  35746. default: true
  35747. },
  35748. {
  35749. name: "Macro",
  35750. height: math.unit(100, "feet")
  35751. },
  35752. {
  35753. name: "Macro+",
  35754. height: math.unit(404, "feet")
  35755. },
  35756. {
  35757. name: "Megamacro",
  35758. height: math.unit(165, "miles")
  35759. },
  35760. {
  35761. name: "Planetary",
  35762. height: math.unit(4600, "miles")
  35763. },
  35764. ]
  35765. ))
  35766. characterMakers.push(() => makeCharacter(
  35767. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  35768. {
  35769. front: {
  35770. height: math.unit(10 + 3/12, "feet"),
  35771. weight: math.unit(1500, "lb"),
  35772. name: "Front",
  35773. image: {
  35774. source: "./media/characters/tux-kusanagi/front.svg",
  35775. extra: 944/840,
  35776. bottom: 39/983
  35777. }
  35778. },
  35779. back: {
  35780. height: math.unit(10 + 3/12, "feet"),
  35781. weight: math.unit(1500, "lb"),
  35782. name: "Back",
  35783. image: {
  35784. source: "./media/characters/tux-kusanagi/back.svg",
  35785. extra: 941/842,
  35786. bottom: 28/969
  35787. }
  35788. },
  35789. rump: {
  35790. height: math.unit(5.25, "feet"),
  35791. name: "Rump",
  35792. image: {
  35793. source: "./media/characters/tux-kusanagi/rump.svg"
  35794. }
  35795. },
  35796. beak: {
  35797. height: math.unit(1.54, "feet"),
  35798. name: "Beak",
  35799. image: {
  35800. source: "./media/characters/tux-kusanagi/beak.svg"
  35801. }
  35802. },
  35803. },
  35804. [
  35805. {
  35806. name: "Normal",
  35807. height: math.unit(10 + 3/12, "feet"),
  35808. default: true
  35809. },
  35810. ]
  35811. ))
  35812. characterMakers.push(() => makeCharacter(
  35813. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  35814. {
  35815. front: {
  35816. height: math.unit(58, "feet"),
  35817. weight: math.unit(200, "tons"),
  35818. name: "Front",
  35819. image: {
  35820. source: "./media/characters/uzarmazari/front.svg",
  35821. extra: 1575/1455,
  35822. bottom: 152/1727
  35823. }
  35824. },
  35825. back: {
  35826. height: math.unit(58, "feet"),
  35827. weight: math.unit(200, "tons"),
  35828. name: "Back",
  35829. image: {
  35830. source: "./media/characters/uzarmazari/back.svg",
  35831. extra: 1585/1510,
  35832. bottom: 157/1742
  35833. }
  35834. },
  35835. head: {
  35836. height: math.unit(26, "feet"),
  35837. name: "Head",
  35838. image: {
  35839. source: "./media/characters/uzarmazari/head.svg"
  35840. }
  35841. },
  35842. },
  35843. [
  35844. {
  35845. name: "Normal",
  35846. height: math.unit(58, "feet"),
  35847. default: true
  35848. },
  35849. ]
  35850. ))
  35851. characterMakers.push(() => makeCharacter(
  35852. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  35853. {
  35854. side: {
  35855. height: math.unit(15, "feet"),
  35856. name: "Side",
  35857. image: {
  35858. source: "./media/characters/akitu/side.svg",
  35859. extra: 1421/1321,
  35860. bottom: 157/1578
  35861. }
  35862. },
  35863. front: {
  35864. height: math.unit(15, "feet"),
  35865. name: "Front",
  35866. image: {
  35867. source: "./media/characters/akitu/front.svg",
  35868. extra: 1435/1326,
  35869. bottom: 232/1667
  35870. }
  35871. },
  35872. },
  35873. [
  35874. {
  35875. name: "Normal",
  35876. height: math.unit(15, "feet"),
  35877. default: true
  35878. },
  35879. ]
  35880. ))
  35881. characterMakers.push(() => makeCharacter(
  35882. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  35883. {
  35884. front: {
  35885. height: math.unit(10 + 8/12, "feet"),
  35886. name: "Front",
  35887. image: {
  35888. source: "./media/characters/azalie-croixland/front.svg",
  35889. extra: 1972/1856,
  35890. bottom: 31/2003
  35891. }
  35892. },
  35893. },
  35894. [
  35895. {
  35896. name: "Original Height",
  35897. height: math.unit(5 + 4/12, "feet")
  35898. },
  35899. {
  35900. name: "Normal Height",
  35901. height: math.unit(10 + 8/12, "feet"),
  35902. default: true
  35903. },
  35904. ]
  35905. ))
  35906. characterMakers.push(() => makeCharacter(
  35907. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  35908. {
  35909. side: {
  35910. height: math.unit(7 + 1/12, "feet"),
  35911. weight: math.unit(245, "lb"),
  35912. name: "Side",
  35913. image: {
  35914. source: "./media/characters/kavus-kazian/side.svg",
  35915. extra: 349/342,
  35916. bottom: 15/364
  35917. }
  35918. },
  35919. },
  35920. [
  35921. {
  35922. name: "Normal",
  35923. height: math.unit(7 + 1/12, "feet"),
  35924. default: true
  35925. },
  35926. ]
  35927. ))
  35928. characterMakers.push(() => makeCharacter(
  35929. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  35930. {
  35931. normalFront: {
  35932. height: math.unit(5 + 11/12, "feet"),
  35933. name: "Front",
  35934. image: {
  35935. source: "./media/characters/moonlight-rose/normal-front.svg",
  35936. extra: 1980/1825,
  35937. bottom: 18/1998
  35938. },
  35939. form: "normal",
  35940. default: true
  35941. },
  35942. normalBack: {
  35943. height: math.unit(5 + 11/12, "feet"),
  35944. name: "Back",
  35945. image: {
  35946. source: "./media/characters/moonlight-rose/normal-back.svg",
  35947. extra: 2010/1839,
  35948. bottom: 10/2020
  35949. },
  35950. form: "normal"
  35951. },
  35952. demonFront: {
  35953. height: math.unit(1.5, "earths"),
  35954. name: "Front",
  35955. image: {
  35956. source: "./media/characters/moonlight-rose/demon.svg",
  35957. extra: 1400/1294,
  35958. bottom: 45/1445
  35959. },
  35960. form: "demon",
  35961. default: true
  35962. },
  35963. terraFront: {
  35964. height: math.unit(1.5, "earths"),
  35965. name: "Front",
  35966. image: {
  35967. source: "./media/characters/moonlight-rose/terra.svg"
  35968. },
  35969. form: "terra",
  35970. default: true
  35971. },
  35972. jupiterFront: {
  35973. height: math.unit(69911*2, "km"),
  35974. name: "Front",
  35975. image: {
  35976. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  35977. extra: 1367/1286,
  35978. bottom: 55/1422
  35979. },
  35980. form: "jupiter",
  35981. default: true
  35982. },
  35983. neptuneFront: {
  35984. height: math.unit(24622*2, "feet"),
  35985. name: "Front",
  35986. image: {
  35987. source: "./media/characters/moonlight-rose/neptune-front.svg",
  35988. extra: 1851/1712,
  35989. bottom: 0/1851
  35990. },
  35991. form: "neptune",
  35992. default: true
  35993. },
  35994. },
  35995. [
  35996. {
  35997. name: "\"Natural\" Height",
  35998. height: math.unit(5 + 11/12, "feet"),
  35999. form: "normal"
  36000. },
  36001. {
  36002. name: "Smallest comfortable size",
  36003. height: math.unit(40, "meters"),
  36004. form: "normal"
  36005. },
  36006. {
  36007. name: "Common size",
  36008. height: math.unit(50, "km"),
  36009. form: "normal",
  36010. default: true
  36011. },
  36012. {
  36013. name: "Normal",
  36014. height: math.unit(1.5, "earths"),
  36015. form: "demon",
  36016. default: true
  36017. },
  36018. {
  36019. name: "Universal",
  36020. height: math.unit(15, "universes"),
  36021. form: "demon"
  36022. },
  36023. {
  36024. name: "Earth",
  36025. height: math.unit(1.5, "earths"),
  36026. form: "terra",
  36027. default: true
  36028. },
  36029. {
  36030. name: "Super Earth",
  36031. height: math.unit(67.5, "earths"),
  36032. form: "terra"
  36033. },
  36034. {
  36035. name: "Doesn't fit in a solar system...",
  36036. height: math.unit(1, "galaxy"),
  36037. form: "terra"
  36038. },
  36039. {
  36040. name: "Saturn",
  36041. height: math.unit(58232*2, "km"),
  36042. form: "jupiter"
  36043. },
  36044. {
  36045. name: "Jupiter",
  36046. height: math.unit(69911*2, "km"),
  36047. form: "jupiter",
  36048. default: true
  36049. },
  36050. {
  36051. name: "HD 100546 b",
  36052. height: math.unit(482938, "km"),
  36053. form: "jupiter"
  36054. },
  36055. {
  36056. name: "Enceladus",
  36057. height: math.unit(513*2, "km"),
  36058. form: "neptune"
  36059. },
  36060. {
  36061. name: "Europe",
  36062. height: math.unit(1560*2, "km"),
  36063. form: "neptune"
  36064. },
  36065. {
  36066. name: "Neptune",
  36067. height: math.unit(24622*2, "km"),
  36068. form: "neptune",
  36069. default: true
  36070. },
  36071. {
  36072. name: "CoRoT-9b",
  36073. height: math.unit(75067*2, "km"),
  36074. form: "neptune"
  36075. },
  36076. ],
  36077. {
  36078. "normal": {
  36079. name: "Normal",
  36080. default: true
  36081. },
  36082. "demon": {
  36083. name: "Demon"
  36084. },
  36085. "terra": {
  36086. name: "Terra"
  36087. },
  36088. "jupiter": {
  36089. name: "Jupiter"
  36090. },
  36091. "neptune": {
  36092. name: "Neptune"
  36093. }
  36094. }
  36095. ))
  36096. characterMakers.push(() => makeCharacter(
  36097. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36098. {
  36099. front: {
  36100. height: math.unit(16, "feet"),
  36101. weight: math.unit(610, "kg"),
  36102. name: "Front",
  36103. image: {
  36104. source: "./media/characters/huckle/front.svg",
  36105. extra: 1731/1625,
  36106. bottom: 33/1764
  36107. }
  36108. },
  36109. back: {
  36110. height: math.unit(16, "feet"),
  36111. weight: math.unit(610, "kg"),
  36112. name: "Back",
  36113. image: {
  36114. source: "./media/characters/huckle/back.svg",
  36115. extra: 1738/1651,
  36116. bottom: 37/1775
  36117. }
  36118. },
  36119. laughing: {
  36120. height: math.unit(3.75, "feet"),
  36121. name: "Laughing",
  36122. image: {
  36123. source: "./media/characters/huckle/laughing.svg"
  36124. }
  36125. },
  36126. angry: {
  36127. height: math.unit(4.15, "feet"),
  36128. name: "Angry",
  36129. image: {
  36130. source: "./media/characters/huckle/angry.svg"
  36131. }
  36132. },
  36133. },
  36134. [
  36135. {
  36136. name: "Normal",
  36137. height: math.unit(16, "feet"),
  36138. default: true
  36139. },
  36140. {
  36141. name: "Mini Macro",
  36142. height: math.unit(463, "feet")
  36143. },
  36144. {
  36145. name: "Macro",
  36146. height: math.unit(1680, "meters")
  36147. },
  36148. {
  36149. name: "Mega Macro",
  36150. height: math.unit(175, "km")
  36151. },
  36152. {
  36153. name: "Terra Macro",
  36154. height: math.unit(32, "gigameters")
  36155. },
  36156. {
  36157. name: "Multiverse+",
  36158. height: math.unit(2.56e23, "yottameters")
  36159. },
  36160. ]
  36161. ))
  36162. characterMakers.push(() => makeCharacter(
  36163. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36164. {
  36165. front: {
  36166. height: math.unit(6 + 9/12, "feet"),
  36167. weight: math.unit(280, "lb"),
  36168. name: "Front",
  36169. image: {
  36170. source: "./media/characters/candy/front.svg",
  36171. extra: 234/217,
  36172. bottom: 11/245
  36173. }
  36174. },
  36175. },
  36176. [
  36177. {
  36178. name: "Really Small",
  36179. height: math.unit(0.1, "nm")
  36180. },
  36181. {
  36182. name: "Micro",
  36183. height: math.unit(2, "inches")
  36184. },
  36185. {
  36186. name: "Normal",
  36187. height: math.unit(6 + 9/12, "feet"),
  36188. default: true
  36189. },
  36190. {
  36191. name: "Small Macro",
  36192. height: math.unit(69, "feet")
  36193. },
  36194. {
  36195. name: "Macro",
  36196. height: math.unit(160, "feet")
  36197. },
  36198. {
  36199. name: "Megamacro",
  36200. height: math.unit(22000, "miles")
  36201. },
  36202. {
  36203. name: "Gigamacro",
  36204. height: math.unit(50000, "miles")
  36205. },
  36206. ]
  36207. ))
  36208. characterMakers.push(() => makeCharacter(
  36209. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36210. {
  36211. front: {
  36212. height: math.unit(4, "feet"),
  36213. weight: math.unit(90, "lb"),
  36214. name: "Front",
  36215. image: {
  36216. source: "./media/characters/joey-mcdonald/front.svg",
  36217. extra: 1059/852,
  36218. bottom: 33/1092
  36219. }
  36220. },
  36221. back: {
  36222. height: math.unit(4, "feet"),
  36223. weight: math.unit(90, "lb"),
  36224. name: "Back",
  36225. image: {
  36226. source: "./media/characters/joey-mcdonald/back.svg",
  36227. extra: 1077/879,
  36228. bottom: 5/1082
  36229. }
  36230. },
  36231. frontKobold: {
  36232. height: math.unit(4, "feet"),
  36233. weight: math.unit(100, "lb"),
  36234. name: "Front-kobold",
  36235. image: {
  36236. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36237. extra: 1480/1367,
  36238. bottom: 0/1480
  36239. }
  36240. },
  36241. backKobold: {
  36242. height: math.unit(4, "feet"),
  36243. weight: math.unit(100, "lb"),
  36244. name: "Back-kobold",
  36245. image: {
  36246. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36247. extra: 1449/1361,
  36248. bottom: 0/1449
  36249. }
  36250. },
  36251. },
  36252. [
  36253. {
  36254. name: "Normal",
  36255. height: math.unit(4, "feet"),
  36256. default: true
  36257. },
  36258. ]
  36259. ))
  36260. characterMakers.push(() => makeCharacter(
  36261. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36262. {
  36263. front: {
  36264. height: math.unit(12 + 6/12, "feet"),
  36265. name: "Front",
  36266. image: {
  36267. source: "./media/characters/kass-lockheed/front.svg",
  36268. extra: 354/343,
  36269. bottom: 9/363
  36270. }
  36271. },
  36272. back: {
  36273. height: math.unit(12 + 6/12, "feet"),
  36274. name: "Back",
  36275. image: {
  36276. source: "./media/characters/kass-lockheed/back.svg",
  36277. extra: 364/352,
  36278. bottom: 3/367
  36279. }
  36280. },
  36281. dick: {
  36282. height: math.unit(3.12, "feet"),
  36283. name: "Dick",
  36284. image: {
  36285. source: "./media/characters/kass-lockheed/dick.svg"
  36286. }
  36287. },
  36288. head: {
  36289. height: math.unit(2.6, "feet"),
  36290. name: "Head",
  36291. image: {
  36292. source: "./media/characters/kass-lockheed/head.svg"
  36293. }
  36294. },
  36295. bleh: {
  36296. height: math.unit(2.85, "feet"),
  36297. name: "Bleh",
  36298. image: {
  36299. source: "./media/characters/kass-lockheed/bleh.svg"
  36300. }
  36301. },
  36302. smug: {
  36303. height: math.unit(2.85, "feet"),
  36304. name: "Smug",
  36305. image: {
  36306. source: "./media/characters/kass-lockheed/smug.svg"
  36307. }
  36308. },
  36309. },
  36310. [
  36311. {
  36312. name: "Normal",
  36313. height: math.unit(12 + 6/12, "feet"),
  36314. default: true
  36315. },
  36316. ]
  36317. ))
  36318. characterMakers.push(() => makeCharacter(
  36319. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36320. {
  36321. front: {
  36322. height: math.unit(6 + 2/12, "feet"),
  36323. name: "Front",
  36324. image: {
  36325. source: "./media/characters/taylor/front.svg",
  36326. extra: 639/495,
  36327. bottom: 12/651
  36328. }
  36329. },
  36330. },
  36331. [
  36332. {
  36333. name: "Normal",
  36334. height: math.unit(6 + 2/12, "feet"),
  36335. default: true
  36336. },
  36337. {
  36338. name: "Big",
  36339. height: math.unit(15, "feet")
  36340. },
  36341. {
  36342. name: "Lorg",
  36343. height: math.unit(80, "feet")
  36344. },
  36345. {
  36346. name: "Too Lorg",
  36347. height: math.unit(120, "feet")
  36348. },
  36349. ]
  36350. ))
  36351. characterMakers.push(() => makeCharacter(
  36352. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36353. {
  36354. front: {
  36355. height: math.unit(15, "feet"),
  36356. name: "Front",
  36357. image: {
  36358. source: "./media/characters/kaizer/front.svg",
  36359. extra: 1612/1436,
  36360. bottom: 43/1655
  36361. }
  36362. },
  36363. },
  36364. [
  36365. {
  36366. name: "Normal",
  36367. height: math.unit(15, "feet"),
  36368. default: true
  36369. },
  36370. ]
  36371. ))
  36372. characterMakers.push(() => makeCharacter(
  36373. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36374. {
  36375. front: {
  36376. height: math.unit(2, "feet"),
  36377. weight: math.unit(30, "lb"),
  36378. name: "Front",
  36379. image: {
  36380. source: "./media/characters/sandy/front.svg",
  36381. extra: 1439/1307,
  36382. bottom: 194/1633
  36383. }
  36384. },
  36385. },
  36386. [
  36387. {
  36388. name: "Normal",
  36389. height: math.unit(2, "feet"),
  36390. default: true
  36391. },
  36392. ]
  36393. ))
  36394. characterMakers.push(() => makeCharacter(
  36395. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36396. {
  36397. front: {
  36398. height: math.unit(3, "feet"),
  36399. name: "Front",
  36400. image: {
  36401. source: "./media/characters/mellvi/front.svg",
  36402. extra: 1831/1630,
  36403. bottom: 58/1889
  36404. }
  36405. },
  36406. },
  36407. [
  36408. {
  36409. name: "Normal",
  36410. height: math.unit(3, "feet"),
  36411. default: true
  36412. },
  36413. ]
  36414. ))
  36415. characterMakers.push(() => makeCharacter(
  36416. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36417. {
  36418. front: {
  36419. height: math.unit(5 + 11/12, "feet"),
  36420. weight: math.unit(200, "lb"),
  36421. name: "Front",
  36422. image: {
  36423. source: "./media/characters/shirou/front.svg",
  36424. extra: 2491/2383,
  36425. bottom: 189/2680
  36426. }
  36427. },
  36428. back: {
  36429. height: math.unit(5 + 11/12, "feet"),
  36430. weight: math.unit(200, "lb"),
  36431. name: "Back",
  36432. image: {
  36433. source: "./media/characters/shirou/back.svg",
  36434. extra: 2554/2450,
  36435. bottom: 76/2630
  36436. }
  36437. },
  36438. },
  36439. [
  36440. {
  36441. name: "Normal",
  36442. height: math.unit(5 + 11/12, "feet"),
  36443. default: true
  36444. },
  36445. ]
  36446. ))
  36447. characterMakers.push(() => makeCharacter(
  36448. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36449. {
  36450. front: {
  36451. height: math.unit(6 + 3/12, "feet"),
  36452. weight: math.unit(177, "lb"),
  36453. name: "Front",
  36454. image: {
  36455. source: "./media/characters/noryu/front.svg",
  36456. extra: 973/885,
  36457. bottom: 10/983
  36458. }
  36459. },
  36460. },
  36461. [
  36462. {
  36463. name: "Normal",
  36464. height: math.unit(6 + 3/12, "feet"),
  36465. default: true
  36466. },
  36467. ]
  36468. ))
  36469. characterMakers.push(() => makeCharacter(
  36470. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36471. {
  36472. front: {
  36473. height: math.unit(5 + 6/12, "feet"),
  36474. weight: math.unit(170, "lb"),
  36475. name: "Front",
  36476. image: {
  36477. source: "./media/characters/mevolas-rubenido/front.svg",
  36478. extra: 2109/1901,
  36479. bottom: 96/2205
  36480. }
  36481. },
  36482. },
  36483. [
  36484. {
  36485. name: "Normal",
  36486. height: math.unit(5 + 6/12, "feet"),
  36487. default: true
  36488. },
  36489. ]
  36490. ))
  36491. characterMakers.push(() => makeCharacter(
  36492. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36493. {
  36494. front: {
  36495. height: math.unit(100, "feet"),
  36496. name: "Front",
  36497. image: {
  36498. source: "./media/characters/dee/front.svg",
  36499. extra: 2153/2036,
  36500. bottom: 59/2212
  36501. }
  36502. },
  36503. back: {
  36504. height: math.unit(100, "feet"),
  36505. name: "Back",
  36506. image: {
  36507. source: "./media/characters/dee/back.svg",
  36508. extra: 2183/2058,
  36509. bottom: 75/2258
  36510. }
  36511. },
  36512. foot: {
  36513. height: math.unit(19.43, "feet"),
  36514. name: "Foot",
  36515. image: {
  36516. source: "./media/characters/dee/foot.svg"
  36517. }
  36518. },
  36519. hoof: {
  36520. height: math.unit(20.6, "feet"),
  36521. name: "Hoof",
  36522. image: {
  36523. source: "./media/characters/dee/hoof.svg"
  36524. }
  36525. },
  36526. },
  36527. [
  36528. {
  36529. name: "Macro",
  36530. height: math.unit(100, "feet"),
  36531. default: true
  36532. },
  36533. ]
  36534. ))
  36535. characterMakers.push(() => makeCharacter(
  36536. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36537. {
  36538. front: {
  36539. height: math.unit(5 + 6/12, "feet"),
  36540. name: "Front",
  36541. image: {
  36542. source: "./media/characters/teh/front.svg",
  36543. extra: 1002/847,
  36544. bottom: 62/1064
  36545. }
  36546. },
  36547. },
  36548. [
  36549. {
  36550. name: "Normal",
  36551. height: math.unit(5 + 6/12, "feet"),
  36552. default: true
  36553. },
  36554. ]
  36555. ))
  36556. characterMakers.push(() => makeCharacter(
  36557. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36558. {
  36559. side: {
  36560. height: math.unit(6 + 1/12, "feet"),
  36561. weight: math.unit(204, "lb"),
  36562. name: "Side",
  36563. image: {
  36564. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36565. extra: 974/775,
  36566. bottom: 169/1143
  36567. }
  36568. },
  36569. sitting: {
  36570. height: math.unit(6 + 2/12, "feet"),
  36571. weight: math.unit(204, "lb"),
  36572. name: "Sitting",
  36573. image: {
  36574. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36575. extra: 1175/964,
  36576. bottom: 378/1553
  36577. }
  36578. },
  36579. },
  36580. [
  36581. {
  36582. name: "Normal",
  36583. height: math.unit(6 + 1/12, "feet"),
  36584. default: true
  36585. },
  36586. ]
  36587. ))
  36588. characterMakers.push(() => makeCharacter(
  36589. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36590. {
  36591. front: {
  36592. height: math.unit(6, "inches"),
  36593. name: "Front",
  36594. image: {
  36595. source: "./media/characters/tululi/front.svg",
  36596. extra: 1997/1876,
  36597. bottom: 20/2017
  36598. }
  36599. },
  36600. },
  36601. [
  36602. {
  36603. name: "Normal",
  36604. height: math.unit(6, "inches"),
  36605. default: true
  36606. },
  36607. ]
  36608. ))
  36609. characterMakers.push(() => makeCharacter(
  36610. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  36611. {
  36612. front: {
  36613. height: math.unit(4 + 1/12, "feet"),
  36614. name: "Front",
  36615. image: {
  36616. source: "./media/characters/star/front.svg",
  36617. extra: 1493/1189,
  36618. bottom: 48/1541
  36619. }
  36620. },
  36621. },
  36622. [
  36623. {
  36624. name: "Normal",
  36625. height: math.unit(4 + 1/12, "feet"),
  36626. default: true
  36627. },
  36628. ]
  36629. ))
  36630. characterMakers.push(() => makeCharacter(
  36631. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  36632. {
  36633. front: {
  36634. height: math.unit(6 + 3/12, "feet"),
  36635. name: "Front",
  36636. image: {
  36637. source: "./media/characters/comet/front.svg",
  36638. extra: 1681/1462,
  36639. bottom: 26/1707
  36640. }
  36641. },
  36642. },
  36643. [
  36644. {
  36645. name: "Normal",
  36646. height: math.unit(6 + 3/12, "feet"),
  36647. default: true
  36648. },
  36649. ]
  36650. ))
  36651. characterMakers.push(() => makeCharacter(
  36652. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  36653. {
  36654. front: {
  36655. height: math.unit(950, "feet"),
  36656. name: "Front",
  36657. image: {
  36658. source: "./media/characters/vortex/front.svg",
  36659. extra: 1497/1434,
  36660. bottom: 56/1553
  36661. }
  36662. },
  36663. maw: {
  36664. height: math.unit(285, "feet"),
  36665. name: "Maw",
  36666. image: {
  36667. source: "./media/characters/vortex/maw.svg"
  36668. }
  36669. },
  36670. },
  36671. [
  36672. {
  36673. name: "Macro",
  36674. height: math.unit(950, "feet"),
  36675. default: true
  36676. },
  36677. ]
  36678. ))
  36679. characterMakers.push(() => makeCharacter(
  36680. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  36681. {
  36682. front: {
  36683. height: math.unit(600, "feet"),
  36684. weight: math.unit(0.02, "grams"),
  36685. name: "Front",
  36686. image: {
  36687. source: "./media/characters/doodle/front.svg",
  36688. extra: 1578/1413,
  36689. bottom: 37/1615
  36690. }
  36691. },
  36692. },
  36693. [
  36694. {
  36695. name: "Macro",
  36696. height: math.unit(600, "feet"),
  36697. default: true
  36698. },
  36699. ]
  36700. ))
  36701. characterMakers.push(() => makeCharacter(
  36702. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  36703. {
  36704. front: {
  36705. height: math.unit(6 + 6/12, "feet"),
  36706. name: "Front",
  36707. image: {
  36708. source: "./media/characters/jai/front.svg",
  36709. extra: 1645/1534,
  36710. bottom: 115/1760
  36711. }
  36712. },
  36713. },
  36714. [
  36715. {
  36716. name: "Normal",
  36717. height: math.unit(6 + 6/12, "feet"),
  36718. default: true
  36719. },
  36720. ]
  36721. ))
  36722. characterMakers.push(() => makeCharacter(
  36723. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  36724. {
  36725. front: {
  36726. height: math.unit(6 + 8/12, "feet"),
  36727. name: "Front",
  36728. image: {
  36729. source: "./media/characters/pixel/front.svg",
  36730. extra: 1900/1735,
  36731. bottom: 63/1963
  36732. }
  36733. },
  36734. },
  36735. [
  36736. {
  36737. name: "Normal",
  36738. height: math.unit(6 + 8/12, "feet"),
  36739. default: true
  36740. },
  36741. ]
  36742. ))
  36743. characterMakers.push(() => makeCharacter(
  36744. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  36745. {
  36746. back: {
  36747. height: math.unit(4 + 1/12, "feet"),
  36748. weight: math.unit(75, "lb"),
  36749. name: "Back",
  36750. image: {
  36751. source: "./media/characters/rhett/back.svg",
  36752. extra: 930/878,
  36753. bottom: 25/955
  36754. }
  36755. },
  36756. front: {
  36757. height: math.unit(4 + 1/12, "feet"),
  36758. weight: math.unit(75, "lb"),
  36759. name: "Front",
  36760. image: {
  36761. source: "./media/characters/rhett/front.svg",
  36762. extra: 1682/1586,
  36763. bottom: 92/1774
  36764. }
  36765. },
  36766. },
  36767. [
  36768. {
  36769. name: "Micro",
  36770. height: math.unit(8, "inches")
  36771. },
  36772. {
  36773. name: "Tiny",
  36774. height: math.unit(2, "feet")
  36775. },
  36776. {
  36777. name: "Normal",
  36778. height: math.unit(4 + 1/12, "feet"),
  36779. default: true
  36780. },
  36781. ]
  36782. ))
  36783. characterMakers.push(() => makeCharacter(
  36784. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  36785. {
  36786. front: {
  36787. height: math.unit(3 + 3/12, "feet"),
  36788. name: "Front",
  36789. image: {
  36790. source: "./media/characters/penny/front.svg",
  36791. extra: 1406/1311,
  36792. bottom: 26/1432
  36793. }
  36794. },
  36795. },
  36796. [
  36797. {
  36798. name: "Normal",
  36799. height: math.unit(3 + 3/12, "feet"),
  36800. default: true
  36801. },
  36802. ]
  36803. ))
  36804. characterMakers.push(() => makeCharacter(
  36805. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  36806. {
  36807. front: {
  36808. height: math.unit(4 + 11/12, "feet"),
  36809. name: "Front",
  36810. image: {
  36811. source: "./media/characters/monty/front.svg",
  36812. extra: 1479/1209,
  36813. bottom: 0/1479
  36814. }
  36815. },
  36816. },
  36817. [
  36818. {
  36819. name: "Normal",
  36820. height: math.unit(4 + 11/12, "feet"),
  36821. default: true
  36822. },
  36823. ]
  36824. ))
  36825. characterMakers.push(() => makeCharacter(
  36826. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  36827. {
  36828. front: {
  36829. height: math.unit(8 + 4/12, "feet"),
  36830. name: "Front",
  36831. image: {
  36832. source: "./media/characters/sterling/front.svg",
  36833. extra: 1420/1236,
  36834. bottom: 27/1447
  36835. }
  36836. },
  36837. },
  36838. [
  36839. {
  36840. name: "Normal",
  36841. height: math.unit(8 + 4/12, "feet"),
  36842. default: true
  36843. },
  36844. ]
  36845. ))
  36846. characterMakers.push(() => makeCharacter(
  36847. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  36848. {
  36849. front: {
  36850. height: math.unit(15, "feet"),
  36851. name: "Front",
  36852. image: {
  36853. source: "./media/characters/marble/front.svg",
  36854. extra: 973/937,
  36855. bottom: 32/1005
  36856. }
  36857. },
  36858. },
  36859. [
  36860. {
  36861. name: "Normal",
  36862. height: math.unit(15, "feet"),
  36863. default: true
  36864. },
  36865. ]
  36866. ))
  36867. characterMakers.push(() => makeCharacter(
  36868. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  36869. {
  36870. front: {
  36871. height: math.unit(3, "inches"),
  36872. name: "Front",
  36873. image: {
  36874. source: "./media/characters/powder/front.svg",
  36875. extra: 1504/1334,
  36876. bottom: 518/2022
  36877. }
  36878. },
  36879. },
  36880. [
  36881. {
  36882. name: "Normal",
  36883. height: math.unit(3, "inches"),
  36884. default: true
  36885. },
  36886. ]
  36887. ))
  36888. characterMakers.push(() => makeCharacter(
  36889. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  36890. {
  36891. front: {
  36892. height: math.unit(4 + 5/12, "feet"),
  36893. name: "Front",
  36894. image: {
  36895. source: "./media/characters/joey-raccoon/front.svg",
  36896. extra: 1273/1197,
  36897. bottom: 0/1273
  36898. }
  36899. },
  36900. },
  36901. [
  36902. {
  36903. name: "Normal",
  36904. height: math.unit(4 + 5/12, "feet"),
  36905. default: true
  36906. },
  36907. ]
  36908. ))
  36909. characterMakers.push(() => makeCharacter(
  36910. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  36911. {
  36912. front: {
  36913. height: math.unit(8 + 4/12, "feet"),
  36914. name: "Front",
  36915. image: {
  36916. source: "./media/characters/vick/front.svg",
  36917. extra: 2187/2118,
  36918. bottom: 47/2234
  36919. }
  36920. },
  36921. },
  36922. [
  36923. {
  36924. name: "Normal",
  36925. height: math.unit(8 + 4/12, "feet"),
  36926. default: true
  36927. },
  36928. ]
  36929. ))
  36930. characterMakers.push(() => makeCharacter(
  36931. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  36932. {
  36933. front: {
  36934. height: math.unit(5 + 5/12, "feet"),
  36935. name: "Front",
  36936. image: {
  36937. source: "./media/characters/mitsy/front.svg",
  36938. extra: 1842/1695,
  36939. bottom: 0/1842
  36940. }
  36941. },
  36942. },
  36943. [
  36944. {
  36945. name: "Normal",
  36946. height: math.unit(5 + 5/12, "feet"),
  36947. default: true
  36948. },
  36949. ]
  36950. ))
  36951. characterMakers.push(() => makeCharacter(
  36952. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  36953. {
  36954. front: {
  36955. height: math.unit(6 + 3/12, "feet"),
  36956. name: "Front",
  36957. image: {
  36958. source: "./media/characters/silvy/front.svg",
  36959. extra: 1995/1836,
  36960. bottom: 225/2220
  36961. }
  36962. },
  36963. },
  36964. [
  36965. {
  36966. name: "Normal",
  36967. height: math.unit(6 + 3/12, "feet"),
  36968. default: true
  36969. },
  36970. ]
  36971. ))
  36972. characterMakers.push(() => makeCharacter(
  36973. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  36974. {
  36975. front: {
  36976. height: math.unit(3 + 8/12, "feet"),
  36977. name: "Front",
  36978. image: {
  36979. source: "./media/characters/rodney/front.svg",
  36980. extra: 1956/1747,
  36981. bottom: 31/1987
  36982. }
  36983. },
  36984. frontDressed: {
  36985. height: math.unit(2.9, "feet"),
  36986. name: "Front (Dressed)",
  36987. image: {
  36988. source: "./media/characters/rodney/front-dressed.svg",
  36989. extra: 1382/1241,
  36990. bottom: 385/1767
  36991. }
  36992. },
  36993. },
  36994. [
  36995. {
  36996. name: "Normal",
  36997. height: math.unit(3 + 8/12, "feet"),
  36998. default: true
  36999. },
  37000. ]
  37001. ))
  37002. characterMakers.push(() => makeCharacter(
  37003. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37004. {
  37005. front: {
  37006. height: math.unit(5 + 9/12, "feet"),
  37007. weight: math.unit(194, "lbs"),
  37008. name: "Front",
  37009. image: {
  37010. source: "./media/characters/zakail-sudekai/front.svg",
  37011. extra: 2696/2533,
  37012. bottom: 248/2944
  37013. }
  37014. },
  37015. maw: {
  37016. height: math.unit(1.35, "feet"),
  37017. name: "Maw",
  37018. image: {
  37019. source: "./media/characters/zakail-sudekai/maw.svg"
  37020. }
  37021. },
  37022. },
  37023. [
  37024. {
  37025. name: "Normal",
  37026. height: math.unit(5 + 9/12, "feet"),
  37027. default: true
  37028. },
  37029. ]
  37030. ))
  37031. characterMakers.push(() => makeCharacter(
  37032. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37033. {
  37034. front: {
  37035. height: math.unit(8 + 4/12, "feet"),
  37036. weight: math.unit(1200, "lb"),
  37037. name: "Front",
  37038. image: {
  37039. source: "./media/characters/eleanor/front.svg",
  37040. extra: 1226/1192,
  37041. bottom: 52/1278
  37042. }
  37043. },
  37044. back: {
  37045. height: math.unit(8 + 4/12, "feet"),
  37046. weight: math.unit(1200, "lb"),
  37047. name: "Back",
  37048. image: {
  37049. source: "./media/characters/eleanor/back.svg",
  37050. extra: 1242/1184,
  37051. bottom: 60/1302
  37052. }
  37053. },
  37054. head: {
  37055. height: math.unit(2.62, "feet"),
  37056. name: "Head",
  37057. image: {
  37058. source: "./media/characters/eleanor/head.svg"
  37059. }
  37060. },
  37061. },
  37062. [
  37063. {
  37064. name: "Normal",
  37065. height: math.unit(8 + 4/12, "feet"),
  37066. default: true
  37067. },
  37068. ]
  37069. ))
  37070. characterMakers.push(() => makeCharacter(
  37071. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37072. {
  37073. front: {
  37074. height: math.unit(8 + 4/12, "feet"),
  37075. weight: math.unit(750, "lb"),
  37076. name: "Front",
  37077. image: {
  37078. source: "./media/characters/tanya/front.svg",
  37079. extra: 1749/1615,
  37080. bottom: 33/1782
  37081. }
  37082. },
  37083. },
  37084. [
  37085. {
  37086. name: "Normal",
  37087. height: math.unit(8 + 4/12, "feet"),
  37088. default: true
  37089. },
  37090. ]
  37091. ))
  37092. characterMakers.push(() => makeCharacter(
  37093. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37094. {
  37095. front: {
  37096. height: math.unit(5, "feet"),
  37097. weight: math.unit(225, "lb"),
  37098. name: "Front",
  37099. image: {
  37100. source: "./media/characters/cindy/front.svg",
  37101. extra: 1320/1250,
  37102. bottom: 42/1362
  37103. }
  37104. },
  37105. frontDressed: {
  37106. height: math.unit(5, "feet"),
  37107. weight: math.unit(225, "lb"),
  37108. name: "Front (Dressed)",
  37109. image: {
  37110. source: "./media/characters/cindy/front-dressed.svg",
  37111. extra: 1320/1250,
  37112. bottom: 42/1362
  37113. }
  37114. },
  37115. back: {
  37116. height: math.unit(5, "feet"),
  37117. weight: math.unit(225, "lb"),
  37118. name: "Back",
  37119. image: {
  37120. source: "./media/characters/cindy/back.svg",
  37121. extra: 1384/1346,
  37122. bottom: 14/1398
  37123. }
  37124. },
  37125. },
  37126. [
  37127. {
  37128. name: "Normal",
  37129. height: math.unit(5, "feet"),
  37130. default: true
  37131. },
  37132. ]
  37133. ))
  37134. characterMakers.push(() => makeCharacter(
  37135. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37136. {
  37137. front: {
  37138. height: math.unit(6 + 9/12, "feet"),
  37139. weight: math.unit(440, "lb"),
  37140. name: "Front",
  37141. image: {
  37142. source: "./media/characters/wilbur-owen/front.svg",
  37143. extra: 1575/1448,
  37144. bottom: 72/1647
  37145. }
  37146. },
  37147. back: {
  37148. height: math.unit(6 + 9/12, "feet"),
  37149. weight: math.unit(440, "lb"),
  37150. name: "Back",
  37151. image: {
  37152. source: "./media/characters/wilbur-owen/back.svg",
  37153. extra: 1578/1445,
  37154. bottom: 36/1614
  37155. }
  37156. },
  37157. },
  37158. [
  37159. {
  37160. name: "Normal",
  37161. height: math.unit(6 + 9/12, "feet"),
  37162. default: true
  37163. },
  37164. ]
  37165. ))
  37166. characterMakers.push(() => makeCharacter(
  37167. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37168. {
  37169. front: {
  37170. height: math.unit(6 + 5/12, "feet"),
  37171. weight: math.unit(650, "lb"),
  37172. name: "Front",
  37173. image: {
  37174. source: "./media/characters/keegan/front.svg",
  37175. extra: 2387/2198,
  37176. bottom: 33/2420
  37177. }
  37178. },
  37179. side: {
  37180. height: math.unit(6 + 5/12, "feet"),
  37181. weight: math.unit(650, "lb"),
  37182. name: "Side",
  37183. image: {
  37184. source: "./media/characters/keegan/side.svg",
  37185. extra: 2390/2202,
  37186. bottom: 47/2437
  37187. }
  37188. },
  37189. back: {
  37190. height: math.unit(6 + 5/12, "feet"),
  37191. weight: math.unit(650, "lb"),
  37192. name: "Back",
  37193. image: {
  37194. source: "./media/characters/keegan/back.svg",
  37195. extra: 2418/2268,
  37196. bottom: 15/2433
  37197. }
  37198. },
  37199. frontSfw: {
  37200. height: math.unit(6 + 5/12, "feet"),
  37201. weight: math.unit(650, "lb"),
  37202. name: "Front (SFW)",
  37203. image: {
  37204. source: "./media/characters/keegan/front-sfw.svg",
  37205. extra: 2387/2198,
  37206. bottom: 33/2420
  37207. }
  37208. },
  37209. beans: {
  37210. height: math.unit(1.85, "feet"),
  37211. name: "Beans",
  37212. image: {
  37213. source: "./media/characters/keegan/beans.svg"
  37214. }
  37215. },
  37216. },
  37217. [
  37218. {
  37219. name: "Normal",
  37220. height: math.unit(6 + 5/12, "feet"),
  37221. default: true
  37222. },
  37223. ]
  37224. ))
  37225. characterMakers.push(() => makeCharacter(
  37226. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37227. {
  37228. front: {
  37229. height: math.unit(9, "feet"),
  37230. name: "Front",
  37231. image: {
  37232. source: "./media/characters/colton/front.svg",
  37233. extra: 1589/1326,
  37234. bottom: 139/1728
  37235. }
  37236. },
  37237. },
  37238. [
  37239. {
  37240. name: "Normal",
  37241. height: math.unit(9, "feet"),
  37242. default: true
  37243. },
  37244. ]
  37245. ))
  37246. characterMakers.push(() => makeCharacter(
  37247. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37248. {
  37249. front: {
  37250. height: math.unit(2 + 9/12, "feet"),
  37251. name: "Front",
  37252. image: {
  37253. source: "./media/characters/bora/front.svg",
  37254. extra: 1265/1250,
  37255. bottom: 24/1289
  37256. }
  37257. },
  37258. },
  37259. [
  37260. {
  37261. name: "Normal",
  37262. height: math.unit(2 + 9/12, "feet"),
  37263. default: true
  37264. },
  37265. ]
  37266. ))
  37267. characterMakers.push(() => makeCharacter(
  37268. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37269. {
  37270. front: {
  37271. height: math.unit(8, "feet"),
  37272. name: "Front",
  37273. image: {
  37274. source: "./media/characters/myu-myu/front.svg",
  37275. extra: 1949/1857,
  37276. bottom: 90/2039
  37277. }
  37278. },
  37279. },
  37280. [
  37281. {
  37282. name: "Normal",
  37283. height: math.unit(8, "feet"),
  37284. default: true
  37285. },
  37286. {
  37287. name: "Big",
  37288. height: math.unit(15, "feet")
  37289. },
  37290. {
  37291. name: "BIG",
  37292. height: math.unit(25, "feet")
  37293. },
  37294. ]
  37295. ))
  37296. characterMakers.push(() => makeCharacter(
  37297. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37298. {
  37299. side: {
  37300. height: math.unit(7 + 5/12, "feet"),
  37301. weight: math.unit(2800, "lb"),
  37302. name: "Side",
  37303. image: {
  37304. source: "./media/characters/haloren/side.svg",
  37305. extra: 1793/409,
  37306. bottom: 59/1852
  37307. }
  37308. },
  37309. frontPaw: {
  37310. height: math.unit(2.36, "feet"),
  37311. name: "Front paw",
  37312. image: {
  37313. source: "./media/characters/haloren/front-paw.svg"
  37314. }
  37315. },
  37316. hindPaw: {
  37317. height: math.unit(3.18, "feet"),
  37318. name: "Hind paw",
  37319. image: {
  37320. source: "./media/characters/haloren/hind-paw.svg"
  37321. }
  37322. },
  37323. maw: {
  37324. height: math.unit(5.05, "feet"),
  37325. name: "Maw",
  37326. image: {
  37327. source: "./media/characters/haloren/maw.svg"
  37328. }
  37329. },
  37330. dick: {
  37331. height: math.unit(2.90, "feet"),
  37332. name: "Dick",
  37333. image: {
  37334. source: "./media/characters/haloren/dick.svg"
  37335. }
  37336. },
  37337. },
  37338. [
  37339. {
  37340. name: "Normal",
  37341. height: math.unit(7 + 5/12, "feet"),
  37342. default: true
  37343. },
  37344. {
  37345. name: "Enhanced",
  37346. height: math.unit(14 + 3/12, "feet")
  37347. },
  37348. ]
  37349. ))
  37350. characterMakers.push(() => makeCharacter(
  37351. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37352. {
  37353. front: {
  37354. height: math.unit(171, "cm"),
  37355. name: "Front",
  37356. image: {
  37357. source: "./media/characters/kimmy/front.svg",
  37358. extra: 1491/1435,
  37359. bottom: 53/1544
  37360. }
  37361. },
  37362. },
  37363. [
  37364. {
  37365. name: "Small",
  37366. height: math.unit(9, "cm")
  37367. },
  37368. {
  37369. name: "Normal",
  37370. height: math.unit(171, "cm"),
  37371. default: true
  37372. },
  37373. ]
  37374. ))
  37375. characterMakers.push(() => makeCharacter(
  37376. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37377. {
  37378. front: {
  37379. height: math.unit(8, "feet"),
  37380. weight: math.unit(300, "lb"),
  37381. name: "Front",
  37382. image: {
  37383. source: "./media/characters/galeboomer/front.svg",
  37384. extra: 4651/4415,
  37385. bottom: 162/4813
  37386. }
  37387. },
  37388. back: {
  37389. height: math.unit(8, "feet"),
  37390. weight: math.unit(300, "lb"),
  37391. name: "Back",
  37392. image: {
  37393. source: "./media/characters/galeboomer/back.svg",
  37394. extra: 4544/4314,
  37395. bottom: 16/4560
  37396. }
  37397. },
  37398. frontAlt: {
  37399. height: math.unit(8, "feet"),
  37400. weight: math.unit(300, "lb"),
  37401. name: "Front (Alt)",
  37402. image: {
  37403. source: "./media/characters/galeboomer/front-alt.svg",
  37404. extra: 4458/4228,
  37405. bottom: 68/4526
  37406. }
  37407. },
  37408. maw: {
  37409. height: math.unit(1.2, "feet"),
  37410. name: "Maw",
  37411. image: {
  37412. source: "./media/characters/galeboomer/maw.svg"
  37413. }
  37414. },
  37415. },
  37416. [
  37417. {
  37418. name: "Normal",
  37419. height: math.unit(8, "feet"),
  37420. default: true
  37421. },
  37422. ]
  37423. ))
  37424. characterMakers.push(() => makeCharacter(
  37425. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37426. {
  37427. front: {
  37428. height: math.unit(5 + 9/12, "feet"),
  37429. weight: math.unit(120, "lb"),
  37430. name: "Front",
  37431. image: {
  37432. source: "./media/characters/chyr/front.svg",
  37433. extra: 1323/1254,
  37434. bottom: 63/1386
  37435. }
  37436. },
  37437. back: {
  37438. height: math.unit(5 + 9/12, "feet"),
  37439. weight: math.unit(120, "lb"),
  37440. name: "Back",
  37441. image: {
  37442. source: "./media/characters/chyr/back.svg",
  37443. extra: 1323/1252,
  37444. bottom: 48/1371
  37445. }
  37446. },
  37447. },
  37448. [
  37449. {
  37450. name: "Normal",
  37451. height: math.unit(5 + 9/12, "feet"),
  37452. default: true
  37453. },
  37454. ]
  37455. ))
  37456. characterMakers.push(() => makeCharacter(
  37457. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37458. {
  37459. front: {
  37460. height: math.unit(7, "feet"),
  37461. weight: math.unit(310, "lb"),
  37462. name: "Front",
  37463. image: {
  37464. source: "./media/characters/solarus/front.svg",
  37465. extra: 2415/2021,
  37466. bottom: 103/2518
  37467. }
  37468. },
  37469. back: {
  37470. height: math.unit(7, "feet"),
  37471. weight: math.unit(310, "lb"),
  37472. name: "Back",
  37473. image: {
  37474. source: "./media/characters/solarus/back.svg",
  37475. extra: 2463/2089,
  37476. bottom: 79/2542
  37477. }
  37478. },
  37479. },
  37480. [
  37481. {
  37482. name: "Normal",
  37483. height: math.unit(7, "feet"),
  37484. default: true
  37485. },
  37486. ]
  37487. ))
  37488. characterMakers.push(() => makeCharacter(
  37489. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37490. {
  37491. front: {
  37492. height: math.unit(16, "feet"),
  37493. name: "Front",
  37494. image: {
  37495. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37496. extra: 1844/1780,
  37497. bottom: 58/1902
  37498. }
  37499. },
  37500. winterCoat: {
  37501. height: math.unit(16, "feet"),
  37502. name: "Winter Coat",
  37503. image: {
  37504. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37505. extra: 1807/1775,
  37506. bottom: 69/1876
  37507. }
  37508. },
  37509. },
  37510. [
  37511. {
  37512. name: "Normal",
  37513. height: math.unit(16, "feet"),
  37514. default: true
  37515. },
  37516. {
  37517. name: "Chicago Size",
  37518. height: math.unit(560, "feet")
  37519. },
  37520. ]
  37521. ))
  37522. characterMakers.push(() => makeCharacter(
  37523. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37524. {
  37525. front: {
  37526. height: math.unit(11 + 6/12, "feet"),
  37527. weight: math.unit(1366, "lb"),
  37528. name: "Front",
  37529. image: {
  37530. source: "./media/characters/lexor/front.svg",
  37531. extra: 1560/1481,
  37532. bottom: 211/1771
  37533. }
  37534. },
  37535. back: {
  37536. height: math.unit(11 + 6/12, "feet"),
  37537. weight: math.unit(1366, "lb"),
  37538. name: "Back",
  37539. image: {
  37540. source: "./media/characters/lexor/back.svg",
  37541. extra: 1614/1533,
  37542. bottom: 76/1690
  37543. }
  37544. },
  37545. maw: {
  37546. height: math.unit(3, "feet"),
  37547. name: "Maw",
  37548. image: {
  37549. source: "./media/characters/lexor/maw.svg"
  37550. }
  37551. },
  37552. dick: {
  37553. height: math.unit(2.59, "feet"),
  37554. name: "Dick",
  37555. image: {
  37556. source: "./media/characters/lexor/dick.svg"
  37557. }
  37558. },
  37559. },
  37560. [
  37561. {
  37562. name: "Normal",
  37563. height: math.unit(11 + 6/12, "feet"),
  37564. default: true
  37565. },
  37566. ]
  37567. ))
  37568. characterMakers.push(() => makeCharacter(
  37569. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37570. {
  37571. front: {
  37572. height: math.unit(5 + 8/12, "feet"),
  37573. name: "Front",
  37574. image: {
  37575. source: "./media/characters/magnum/front.svg",
  37576. extra: 942/855,
  37577. bottom: 26/968
  37578. }
  37579. },
  37580. },
  37581. [
  37582. {
  37583. name: "Normal",
  37584. height: math.unit(5 + 8/12, "feet"),
  37585. default: true
  37586. },
  37587. ]
  37588. ))
  37589. characterMakers.push(() => makeCharacter(
  37590. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37591. {
  37592. front: {
  37593. height: math.unit(18 + 4/12, "feet"),
  37594. weight: math.unit(1500, "kg"),
  37595. name: "Front",
  37596. image: {
  37597. source: "./media/characters/solas-sharpsman/front.svg",
  37598. extra: 1698/1589,
  37599. bottom: 0/1698
  37600. }
  37601. },
  37602. },
  37603. [
  37604. {
  37605. name: "Normal",
  37606. height: math.unit(18 + 4/12, "feet"),
  37607. default: true
  37608. },
  37609. ]
  37610. ))
  37611. characterMakers.push(() => makeCharacter(
  37612. { name: "October", species: ["tiger"], tags: ["anthro"] },
  37613. {
  37614. front: {
  37615. height: math.unit(5 + 5/12, "feet"),
  37616. weight: math.unit(180, "lb"),
  37617. name: "Front",
  37618. image: {
  37619. source: "./media/characters/october/front.svg",
  37620. extra: 1800/1650,
  37621. bottom: 0/1800
  37622. }
  37623. },
  37624. frontNsfw: {
  37625. height: math.unit(5 + 5/12, "feet"),
  37626. weight: math.unit(180, "lb"),
  37627. name: "Front (NSFW)",
  37628. image: {
  37629. source: "./media/characters/october/front-nsfw.svg",
  37630. extra: 1392/1307,
  37631. bottom: 42/1434
  37632. }
  37633. },
  37634. },
  37635. [
  37636. {
  37637. name: "Normal",
  37638. height: math.unit(5 + 5/12, "feet"),
  37639. default: true
  37640. },
  37641. ]
  37642. ))
  37643. characterMakers.push(() => makeCharacter(
  37644. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  37645. {
  37646. front: {
  37647. height: math.unit(8 + 6/12, "feet"),
  37648. name: "Front",
  37649. image: {
  37650. source: "./media/characters/essynkardi/front.svg",
  37651. extra: 1914/1846,
  37652. bottom: 22/1936
  37653. }
  37654. },
  37655. },
  37656. [
  37657. {
  37658. name: "Normal",
  37659. height: math.unit(8 + 6/12, "feet"),
  37660. default: true
  37661. },
  37662. ]
  37663. ))
  37664. characterMakers.push(() => makeCharacter(
  37665. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  37666. {
  37667. front: {
  37668. height: math.unit(6 + 6/12, "feet"),
  37669. weight: math.unit(7, "lb"),
  37670. name: "Front",
  37671. image: {
  37672. source: "./media/characters/icky/front.svg",
  37673. extra: 813/782,
  37674. bottom: 66/879
  37675. }
  37676. },
  37677. back: {
  37678. height: math.unit(6 + 6/12, "feet"),
  37679. weight: math.unit(7, "lb"),
  37680. name: "Back",
  37681. image: {
  37682. source: "./media/characters/icky/back.svg",
  37683. extra: 754/735,
  37684. bottom: 56/810
  37685. }
  37686. },
  37687. },
  37688. [
  37689. {
  37690. name: "Normal",
  37691. height: math.unit(6 + 6/12, "feet"),
  37692. default: true
  37693. },
  37694. ]
  37695. ))
  37696. characterMakers.push(() => makeCharacter(
  37697. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  37698. {
  37699. front: {
  37700. height: math.unit(15, "feet"),
  37701. name: "Front",
  37702. image: {
  37703. source: "./media/characters/rojas/front.svg",
  37704. extra: 1462/1408,
  37705. bottom: 95/1557
  37706. }
  37707. },
  37708. back: {
  37709. height: math.unit(15, "feet"),
  37710. name: "Back",
  37711. image: {
  37712. source: "./media/characters/rojas/back.svg",
  37713. extra: 1023/954,
  37714. bottom: 28/1051
  37715. }
  37716. },
  37717. },
  37718. [
  37719. {
  37720. name: "Normal",
  37721. height: math.unit(15, "feet"),
  37722. default: true
  37723. },
  37724. ]
  37725. ))
  37726. characterMakers.push(() => makeCharacter(
  37727. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  37728. {
  37729. frontHuman: {
  37730. height: math.unit(5 + 7/12, "feet"),
  37731. name: "Front (Human)",
  37732. image: {
  37733. source: "./media/characters/alek-dryagan/front-human.svg",
  37734. extra: 1687/1667,
  37735. bottom: 69/1756
  37736. }
  37737. },
  37738. backHuman: {
  37739. height: math.unit(5 + 7/12, "feet"),
  37740. name: "Back (Human)",
  37741. image: {
  37742. source: "./media/characters/alek-dryagan/back-human.svg",
  37743. extra: 1670/1649,
  37744. bottom: 65/1735
  37745. }
  37746. },
  37747. frontDemi: {
  37748. height: math.unit(65, "feet"),
  37749. name: "Front (Demi)",
  37750. image: {
  37751. source: "./media/characters/alek-dryagan/front-demi.svg",
  37752. extra: 1669/1642,
  37753. bottom: 49/1718
  37754. }
  37755. },
  37756. backDemi: {
  37757. height: math.unit(65, "feet"),
  37758. name: "Back (Demi)",
  37759. image: {
  37760. source: "./media/characters/alek-dryagan/back-demi.svg",
  37761. extra: 1658/1637,
  37762. bottom: 40/1698
  37763. }
  37764. },
  37765. mawHuman: {
  37766. height: math.unit(0.3, "feet"),
  37767. name: "Maw (Human)",
  37768. image: {
  37769. source: "./media/characters/alek-dryagan/maw-human.svg"
  37770. }
  37771. },
  37772. mawDemi: {
  37773. height: math.unit(3.8, "feet"),
  37774. name: "Maw (Demi)",
  37775. image: {
  37776. source: "./media/characters/alek-dryagan/maw-demi.svg"
  37777. }
  37778. },
  37779. },
  37780. [
  37781. {
  37782. name: "Normal",
  37783. height: math.unit(5 + 7/12, "feet"),
  37784. default: true
  37785. },
  37786. ]
  37787. ))
  37788. characterMakers.push(() => makeCharacter(
  37789. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  37790. {
  37791. frontHuman: {
  37792. height: math.unit(5 + 2/12, "feet"),
  37793. name: "Front (Human)",
  37794. image: {
  37795. source: "./media/characters/gen/front-human.svg",
  37796. extra: 1627/1538,
  37797. bottom: 71/1698
  37798. }
  37799. },
  37800. backHuman: {
  37801. height: math.unit(5 + 2/12, "feet"),
  37802. name: "Back (Human)",
  37803. image: {
  37804. source: "./media/characters/gen/back-human.svg",
  37805. extra: 1638/1548,
  37806. bottom: 69/1707
  37807. }
  37808. },
  37809. frontDemi: {
  37810. height: math.unit(5 + 2/12, "feet"),
  37811. name: "Front (Demi)",
  37812. image: {
  37813. source: "./media/characters/gen/front-demi.svg",
  37814. extra: 1627/1538,
  37815. bottom: 71/1698
  37816. }
  37817. },
  37818. backDemi: {
  37819. height: math.unit(5 + 2/12, "feet"),
  37820. name: "Back (Demi)",
  37821. image: {
  37822. source: "./media/characters/gen/back-demi.svg",
  37823. extra: 1638/1548,
  37824. bottom: 69/1707
  37825. }
  37826. },
  37827. },
  37828. [
  37829. {
  37830. name: "Normal",
  37831. height: math.unit(5 + 2/12, "feet"),
  37832. default: true
  37833. },
  37834. ]
  37835. ))
  37836. characterMakers.push(() => makeCharacter(
  37837. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  37838. {
  37839. frontImp: {
  37840. height: math.unit(1 + 11/12, "feet"),
  37841. name: "Front (Imp)",
  37842. image: {
  37843. source: "./media/characters/max-kobold/front-imp.svg",
  37844. extra: 1238/1134,
  37845. bottom: 81/1319
  37846. }
  37847. },
  37848. backImp: {
  37849. height: math.unit(1 + 11/12, "feet"),
  37850. name: "Back (Imp)",
  37851. image: {
  37852. source: "./media/characters/max-kobold/back-imp.svg",
  37853. extra: 1334/1175,
  37854. bottom: 34/1368
  37855. }
  37856. },
  37857. frontDemi: {
  37858. height: math.unit(5 + 9/12, "feet"),
  37859. name: "Front (Demi)",
  37860. image: {
  37861. source: "./media/characters/max-kobold/front-demi.svg",
  37862. extra: 1715/1685,
  37863. bottom: 54/1769
  37864. }
  37865. },
  37866. backDemi: {
  37867. height: math.unit(5 + 9/12, "feet"),
  37868. name: "Back (Demi)",
  37869. image: {
  37870. source: "./media/characters/max-kobold/back-demi.svg",
  37871. extra: 1752/1729,
  37872. bottom: 41/1793
  37873. }
  37874. },
  37875. handImp: {
  37876. height: math.unit(0.45, "feet"),
  37877. name: "Hand (Imp)",
  37878. image: {
  37879. source: "./media/characters/max-kobold/hand.svg"
  37880. }
  37881. },
  37882. pawImp: {
  37883. height: math.unit(0.46, "feet"),
  37884. name: "Paw (Imp)",
  37885. image: {
  37886. source: "./media/characters/max-kobold/paw.svg"
  37887. }
  37888. },
  37889. handDemi: {
  37890. height: math.unit(0.80, "feet"),
  37891. name: "Hand (Demi)",
  37892. image: {
  37893. source: "./media/characters/max-kobold/hand.svg"
  37894. }
  37895. },
  37896. pawDemi: {
  37897. height: math.unit(1.1, "feet"),
  37898. name: "Paw (Demi)",
  37899. image: {
  37900. source: "./media/characters/max-kobold/paw.svg"
  37901. }
  37902. },
  37903. headImp: {
  37904. height: math.unit(1.33, "feet"),
  37905. name: "Head (Imp)",
  37906. image: {
  37907. source: "./media/characters/max-kobold/head-imp.svg"
  37908. }
  37909. },
  37910. mawImp: {
  37911. height: math.unit(0.75, "feet"),
  37912. name: "Maw (Imp)",
  37913. image: {
  37914. source: "./media/characters/max-kobold/maw-imp.svg"
  37915. }
  37916. },
  37917. mawDemi: {
  37918. height: math.unit(0.42, "feet"),
  37919. name: "Maw (Demi)",
  37920. image: {
  37921. source: "./media/characters/max-kobold/maw-demi.svg"
  37922. }
  37923. },
  37924. },
  37925. [
  37926. {
  37927. name: "Normal",
  37928. height: math.unit(1 + 11/12, "feet"),
  37929. default: true
  37930. },
  37931. ]
  37932. ))
  37933. characterMakers.push(() => makeCharacter(
  37934. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  37935. {
  37936. front: {
  37937. height: math.unit(7 + 5/12, "feet"),
  37938. name: "Front",
  37939. image: {
  37940. source: "./media/characters/carbon/front.svg",
  37941. extra: 1754/1689,
  37942. bottom: 65/1819
  37943. }
  37944. },
  37945. back: {
  37946. height: math.unit(7 + 5/12, "feet"),
  37947. name: "Back",
  37948. image: {
  37949. source: "./media/characters/carbon/back.svg",
  37950. extra: 1762/1695,
  37951. bottom: 24/1786
  37952. }
  37953. },
  37954. frontGigantamax: {
  37955. height: math.unit(150, "feet"),
  37956. name: "Front (Gigantamax)",
  37957. image: {
  37958. source: "./media/characters/carbon/front-gigantamax.svg",
  37959. extra: 1826/1669,
  37960. bottom: 59/1885
  37961. }
  37962. },
  37963. backGigantamax: {
  37964. height: math.unit(150, "feet"),
  37965. name: "Back (Gigantamax)",
  37966. image: {
  37967. source: "./media/characters/carbon/back-gigantamax.svg",
  37968. extra: 1796/1653,
  37969. bottom: 53/1849
  37970. }
  37971. },
  37972. maw: {
  37973. height: math.unit(0.48, "feet"),
  37974. name: "Maw",
  37975. image: {
  37976. source: "./media/characters/carbon/maw.svg"
  37977. }
  37978. },
  37979. mawGigantamax: {
  37980. height: math.unit(7.5, "feet"),
  37981. name: "Maw (Gigantamax)",
  37982. image: {
  37983. source: "./media/characters/carbon/maw-gigantamax.svg"
  37984. }
  37985. },
  37986. },
  37987. [
  37988. {
  37989. name: "Normal",
  37990. height: math.unit(7 + 5/12, "feet"),
  37991. default: true
  37992. },
  37993. ]
  37994. ))
  37995. characterMakers.push(() => makeCharacter(
  37996. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  37997. {
  37998. front: {
  37999. height: math.unit(6, "feet"),
  38000. name: "Front",
  38001. image: {
  38002. source: "./media/characters/maverick/front.svg",
  38003. extra: 1672/1661,
  38004. bottom: 85/1757
  38005. }
  38006. },
  38007. back: {
  38008. height: math.unit(6, "feet"),
  38009. name: "Back",
  38010. image: {
  38011. source: "./media/characters/maverick/back.svg",
  38012. extra: 1642/1631,
  38013. bottom: 38/1680
  38014. }
  38015. },
  38016. },
  38017. [
  38018. {
  38019. name: "Normal",
  38020. height: math.unit(6, "feet"),
  38021. default: true
  38022. },
  38023. ]
  38024. ))
  38025. characterMakers.push(() => makeCharacter(
  38026. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38027. {
  38028. front: {
  38029. height: math.unit(15, "feet"),
  38030. weight: math.unit(615, "lb"),
  38031. name: "Front",
  38032. image: {
  38033. source: "./media/characters/grockle/front.svg",
  38034. extra: 1535/1427,
  38035. bottom: 56/1591
  38036. }
  38037. },
  38038. },
  38039. [
  38040. {
  38041. name: "Normal",
  38042. height: math.unit(15, "feet"),
  38043. default: true
  38044. },
  38045. {
  38046. name: "Large",
  38047. height: math.unit(150, "feet")
  38048. },
  38049. {
  38050. name: "Macro",
  38051. height: math.unit(1876, "feet")
  38052. },
  38053. {
  38054. name: "Mega Macro",
  38055. height: math.unit(121940, "feet")
  38056. },
  38057. {
  38058. name: "Giga Macro",
  38059. height: math.unit(750, "km")
  38060. },
  38061. {
  38062. name: "Tera Macro",
  38063. height: math.unit(750000, "km")
  38064. },
  38065. {
  38066. name: "Galactic",
  38067. height: math.unit(1.4e5, "km")
  38068. },
  38069. {
  38070. name: "Godlike",
  38071. height: math.unit(9.8e280, "galaxies")
  38072. },
  38073. ]
  38074. ))
  38075. characterMakers.push(() => makeCharacter(
  38076. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38077. {
  38078. front: {
  38079. height: math.unit(11, "meters"),
  38080. weight: math.unit(20, "tonnes"),
  38081. name: "Front",
  38082. image: {
  38083. source: "./media/characters/alistair/front.svg",
  38084. extra: 1265/1009,
  38085. bottom: 93/1358
  38086. }
  38087. },
  38088. },
  38089. [
  38090. {
  38091. name: "Normal",
  38092. height: math.unit(11, "meters"),
  38093. default: true
  38094. },
  38095. ]
  38096. ))
  38097. characterMakers.push(() => makeCharacter(
  38098. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38099. {
  38100. front: {
  38101. height: math.unit(5 + 8/12, "feet"),
  38102. name: "Front",
  38103. image: {
  38104. source: "./media/characters/haruka/front.svg",
  38105. extra: 2012/1952,
  38106. bottom: 0/2012
  38107. }
  38108. },
  38109. },
  38110. [
  38111. {
  38112. name: "Normal",
  38113. height: math.unit(5 + 8/12, "feet"),
  38114. default: true
  38115. },
  38116. ]
  38117. ))
  38118. characterMakers.push(() => makeCharacter(
  38119. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38120. {
  38121. back: {
  38122. height: math.unit(9, "feet"),
  38123. name: "Back",
  38124. image: {
  38125. source: "./media/characters/vivian-sylveon/back.svg",
  38126. extra: 1853/1714,
  38127. bottom: 0/1853
  38128. }
  38129. },
  38130. },
  38131. [
  38132. {
  38133. name: "Normal",
  38134. height: math.unit(9, "feet"),
  38135. default: true
  38136. },
  38137. {
  38138. name: "Macro",
  38139. height: math.unit(500, "feet")
  38140. },
  38141. {
  38142. name: "Megamacro",
  38143. height: math.unit(600, "miles")
  38144. },
  38145. {
  38146. name: "Gigamacro",
  38147. height: math.unit(30000, "miles")
  38148. },
  38149. ]
  38150. ))
  38151. characterMakers.push(() => makeCharacter(
  38152. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38153. {
  38154. anthro: {
  38155. height: math.unit(5 + 10/12, "feet"),
  38156. weight: math.unit(100, "lb"),
  38157. name: "Anthro",
  38158. image: {
  38159. source: "./media/characters/daiki/anthro.svg",
  38160. extra: 1115/1027,
  38161. bottom: 69/1184
  38162. }
  38163. },
  38164. feral: {
  38165. height: math.unit(200, "feet"),
  38166. name: "Feral",
  38167. image: {
  38168. source: "./media/characters/daiki/feral.svg",
  38169. extra: 1256/313,
  38170. bottom: 39/1295
  38171. }
  38172. },
  38173. feralHead: {
  38174. height: math.unit(171, "feet"),
  38175. name: "Feral Head",
  38176. image: {
  38177. source: "./media/characters/daiki/feral-head.svg"
  38178. }
  38179. },
  38180. manaDragon: {
  38181. height: math.unit(170, "meters"),
  38182. name: "Mana-dragon",
  38183. image: {
  38184. source: "./media/characters/daiki/mana-dragon.svg",
  38185. extra: 763/420,
  38186. bottom: 97/860
  38187. }
  38188. },
  38189. },
  38190. [
  38191. {
  38192. name: "Normal",
  38193. height: math.unit(5 + 10/12, "feet"),
  38194. default: true
  38195. },
  38196. ]
  38197. ))
  38198. characterMakers.push(() => makeCharacter(
  38199. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38200. {
  38201. fullyEquippedFront: {
  38202. height: math.unit(3 + 1/12, "feet"),
  38203. weight: math.unit(24, "lb"),
  38204. name: "Fully Equipped (Front)",
  38205. image: {
  38206. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38207. extra: 687/605,
  38208. bottom: 18/705
  38209. }
  38210. },
  38211. fullyEquippedBack: {
  38212. height: math.unit(3 + 1/12, "feet"),
  38213. weight: math.unit(24, "lb"),
  38214. name: "Fully Equipped (Back)",
  38215. image: {
  38216. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38217. extra: 689/590,
  38218. bottom: 18/707
  38219. }
  38220. },
  38221. dailyWear: {
  38222. height: math.unit(3 + 1/12, "feet"),
  38223. weight: math.unit(24, "lb"),
  38224. name: "Daily Wear",
  38225. image: {
  38226. source: "./media/characters/tea-spot/daily-wear.svg",
  38227. extra: 701/620,
  38228. bottom: 21/722
  38229. }
  38230. },
  38231. maidWork: {
  38232. height: math.unit(3 + 1/12, "feet"),
  38233. weight: math.unit(24, "lb"),
  38234. name: "Maid Work",
  38235. image: {
  38236. source: "./media/characters/tea-spot/maid-work.svg",
  38237. extra: 693/609,
  38238. bottom: 15/708
  38239. }
  38240. },
  38241. },
  38242. [
  38243. {
  38244. name: "Normal",
  38245. height: math.unit(3 + 1/12, "feet"),
  38246. default: true
  38247. },
  38248. ]
  38249. ))
  38250. characterMakers.push(() => makeCharacter(
  38251. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38252. {
  38253. front: {
  38254. height: math.unit(175, "cm"),
  38255. weight: math.unit(75, "kg"),
  38256. name: "Front",
  38257. image: {
  38258. source: "./media/characters/chee/front.svg",
  38259. extra: 1796/1740,
  38260. bottom: 40/1836
  38261. }
  38262. },
  38263. },
  38264. [
  38265. {
  38266. name: "Micro-Micro",
  38267. height: math.unit(1, "nm")
  38268. },
  38269. {
  38270. name: "Micro-erst",
  38271. height: math.unit(1, "micrometer")
  38272. },
  38273. {
  38274. name: "Micro-er",
  38275. height: math.unit(1, "cm")
  38276. },
  38277. {
  38278. name: "Normal",
  38279. height: math.unit(175, "cm"),
  38280. default: true
  38281. },
  38282. {
  38283. name: "Macro",
  38284. height: math.unit(100, "m")
  38285. },
  38286. {
  38287. name: "Macro-er",
  38288. height: math.unit(1, "km")
  38289. },
  38290. {
  38291. name: "Macro-erst",
  38292. height: math.unit(10, "km")
  38293. },
  38294. {
  38295. name: "Macro-Macro",
  38296. height: math.unit(100, "km")
  38297. },
  38298. ]
  38299. ))
  38300. characterMakers.push(() => makeCharacter(
  38301. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38302. {
  38303. front: {
  38304. height: math.unit(11 + 9/12, "feet"),
  38305. weight: math.unit(935, "lb"),
  38306. name: "Front",
  38307. image: {
  38308. source: "./media/characters/kingsley/front.svg",
  38309. extra: 1803/1674,
  38310. bottom: 127/1930
  38311. }
  38312. },
  38313. frontNude: {
  38314. height: math.unit(11 + 9/12, "feet"),
  38315. weight: math.unit(935, "lb"),
  38316. name: "Front (Nude)",
  38317. image: {
  38318. source: "./media/characters/kingsley/front-nude.svg",
  38319. extra: 1803/1674,
  38320. bottom: 127/1930
  38321. }
  38322. },
  38323. },
  38324. [
  38325. {
  38326. name: "Normal",
  38327. height: math.unit(11 + 9/12, "feet"),
  38328. default: true
  38329. },
  38330. ]
  38331. ))
  38332. characterMakers.push(() => makeCharacter(
  38333. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38334. {
  38335. side: {
  38336. height: math.unit(9, "feet"),
  38337. name: "Side",
  38338. image: {
  38339. source: "./media/characters/rymel/side.svg",
  38340. extra: 792/469,
  38341. bottom: 121/913
  38342. }
  38343. },
  38344. maw: {
  38345. height: math.unit(2.4, "meters"),
  38346. name: "Maw",
  38347. image: {
  38348. source: "./media/characters/rymel/maw.svg"
  38349. }
  38350. },
  38351. },
  38352. [
  38353. {
  38354. name: "House Drake",
  38355. height: math.unit(2, "feet")
  38356. },
  38357. {
  38358. name: "Reduced",
  38359. height: math.unit(4.5, "feet")
  38360. },
  38361. {
  38362. name: "Normal",
  38363. height: math.unit(9, "feet"),
  38364. default: true
  38365. },
  38366. ]
  38367. ))
  38368. characterMakers.push(() => makeCharacter(
  38369. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38370. {
  38371. front: {
  38372. height: math.unit(1.74, "meters"),
  38373. weight: math.unit(55, "kg"),
  38374. name: "Front",
  38375. image: {
  38376. source: "./media/characters/rubus/front.svg",
  38377. extra: 1894/1742,
  38378. bottom: 44/1938
  38379. }
  38380. },
  38381. },
  38382. [
  38383. {
  38384. name: "Normal",
  38385. height: math.unit(1.74, "meters"),
  38386. default: true
  38387. },
  38388. ]
  38389. ))
  38390. characterMakers.push(() => makeCharacter(
  38391. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38392. {
  38393. front: {
  38394. height: math.unit(5 + 2/12, "feet"),
  38395. weight: math.unit(112, "lb"),
  38396. name: "Front",
  38397. image: {
  38398. source: "./media/characters/cassie-kingston/front.svg",
  38399. extra: 1438/1390,
  38400. bottom: 47/1485
  38401. }
  38402. },
  38403. },
  38404. [
  38405. {
  38406. name: "Normal",
  38407. height: math.unit(5 + 2/12, "feet"),
  38408. default: true
  38409. },
  38410. {
  38411. name: "Macro",
  38412. height: math.unit(128, "feet")
  38413. },
  38414. {
  38415. name: "Megamacro",
  38416. height: math.unit(2.56, "miles")
  38417. },
  38418. ]
  38419. ))
  38420. characterMakers.push(() => makeCharacter(
  38421. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38422. {
  38423. front: {
  38424. height: math.unit(7, "feet"),
  38425. name: "Front",
  38426. image: {
  38427. source: "./media/characters/fox/front.svg",
  38428. extra: 1798/1703,
  38429. bottom: 55/1853
  38430. }
  38431. },
  38432. back: {
  38433. height: math.unit(7, "feet"),
  38434. name: "Back",
  38435. image: {
  38436. source: "./media/characters/fox/back.svg",
  38437. extra: 1748/1649,
  38438. bottom: 32/1780
  38439. }
  38440. },
  38441. head: {
  38442. height: math.unit(1.95, "feet"),
  38443. name: "Head",
  38444. image: {
  38445. source: "./media/characters/fox/head.svg"
  38446. }
  38447. },
  38448. dick: {
  38449. height: math.unit(1.33, "feet"),
  38450. name: "Dick",
  38451. image: {
  38452. source: "./media/characters/fox/dick.svg"
  38453. }
  38454. },
  38455. foot: {
  38456. height: math.unit(1, "feet"),
  38457. name: "Foot",
  38458. image: {
  38459. source: "./media/characters/fox/foot.svg"
  38460. }
  38461. },
  38462. paw: {
  38463. height: math.unit(0.92, "feet"),
  38464. name: "Paw",
  38465. image: {
  38466. source: "./media/characters/fox/paw.svg"
  38467. }
  38468. },
  38469. },
  38470. [
  38471. {
  38472. name: "Small",
  38473. height: math.unit(3, "inches")
  38474. },
  38475. {
  38476. name: "\"Realistic\"",
  38477. height: math.unit(7, "feet")
  38478. },
  38479. {
  38480. name: "Normal",
  38481. height: math.unit(150, "feet"),
  38482. default: true
  38483. },
  38484. {
  38485. name: "BIG",
  38486. height: math.unit(1200, "feet")
  38487. },
  38488. {
  38489. name: "👀",
  38490. height: math.unit(5, "miles")
  38491. },
  38492. {
  38493. name: "👀👀👀",
  38494. height: math.unit(64, "miles")
  38495. },
  38496. ]
  38497. ))
  38498. characterMakers.push(() => makeCharacter(
  38499. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38500. {
  38501. front: {
  38502. height: math.unit(625, "feet"),
  38503. name: "Front",
  38504. image: {
  38505. source: "./media/characters/asonja-rossa/front.svg",
  38506. extra: 1833/1686,
  38507. bottom: 24/1857
  38508. }
  38509. },
  38510. back: {
  38511. height: math.unit(625, "feet"),
  38512. name: "Back",
  38513. image: {
  38514. source: "./media/characters/asonja-rossa/back.svg",
  38515. extra: 1852/1753,
  38516. bottom: 26/1878
  38517. }
  38518. },
  38519. },
  38520. [
  38521. {
  38522. name: "Macro",
  38523. height: math.unit(625, "feet"),
  38524. default: true
  38525. },
  38526. ]
  38527. ))
  38528. characterMakers.push(() => makeCharacter(
  38529. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38530. {
  38531. side: {
  38532. height: math.unit(8, "feet"),
  38533. name: "Side",
  38534. image: {
  38535. source: "./media/characters/rezukii/side.svg",
  38536. extra: 979/542,
  38537. bottom: 87/1066
  38538. }
  38539. },
  38540. sitting: {
  38541. height: math.unit(14.6, "feet"),
  38542. name: "Sitting",
  38543. image: {
  38544. source: "./media/characters/rezukii/sitting.svg",
  38545. extra: 1023/813,
  38546. bottom: 45/1068
  38547. }
  38548. },
  38549. },
  38550. [
  38551. {
  38552. name: "Tiny",
  38553. height: math.unit(2, "feet")
  38554. },
  38555. {
  38556. name: "Smol",
  38557. height: math.unit(4, "feet")
  38558. },
  38559. {
  38560. name: "Normal",
  38561. height: math.unit(8, "feet"),
  38562. default: true
  38563. },
  38564. {
  38565. name: "Big",
  38566. height: math.unit(12, "feet")
  38567. },
  38568. {
  38569. name: "Macro",
  38570. height: math.unit(30, "feet")
  38571. },
  38572. ]
  38573. ))
  38574. characterMakers.push(() => makeCharacter(
  38575. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38576. {
  38577. front: {
  38578. height: math.unit(14, "feet"),
  38579. weight: math.unit(9.5, "tonnes"),
  38580. name: "Front",
  38581. image: {
  38582. source: "./media/characters/dawnheart/front.svg",
  38583. extra: 2792/2675,
  38584. bottom: 64/2856
  38585. }
  38586. },
  38587. },
  38588. [
  38589. {
  38590. name: "Normal",
  38591. height: math.unit(14, "feet"),
  38592. default: true
  38593. },
  38594. ]
  38595. ))
  38596. characterMakers.push(() => makeCharacter(
  38597. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38598. {
  38599. front: {
  38600. height: math.unit(1.7, "m"),
  38601. name: "Front",
  38602. image: {
  38603. source: "./media/characters/gladi/front.svg",
  38604. extra: 1460/1362,
  38605. bottom: 19/1479
  38606. }
  38607. },
  38608. back: {
  38609. height: math.unit(1.7, "m"),
  38610. name: "Back",
  38611. image: {
  38612. source: "./media/characters/gladi/back.svg",
  38613. extra: 1459/1357,
  38614. bottom: 12/1471
  38615. }
  38616. },
  38617. feral: {
  38618. height: math.unit(2.05, "m"),
  38619. name: "Feral",
  38620. image: {
  38621. source: "./media/characters/gladi/feral.svg",
  38622. extra: 821/557,
  38623. bottom: 91/912
  38624. }
  38625. },
  38626. },
  38627. [
  38628. {
  38629. name: "Shortest",
  38630. height: math.unit(70, "cm")
  38631. },
  38632. {
  38633. name: "Normal",
  38634. height: math.unit(1.7, "m")
  38635. },
  38636. {
  38637. name: "Macro",
  38638. height: math.unit(10, "m"),
  38639. default: true
  38640. },
  38641. {
  38642. name: "Tallest",
  38643. height: math.unit(200, "m")
  38644. },
  38645. ]
  38646. ))
  38647. characterMakers.push(() => makeCharacter(
  38648. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  38649. {
  38650. front: {
  38651. height: math.unit(5 + 7/12, "feet"),
  38652. weight: math.unit(2, "tons"),
  38653. name: "Front",
  38654. image: {
  38655. source: "./media/characters/erdno/front.svg",
  38656. extra: 1234/1129,
  38657. bottom: 35/1269
  38658. }
  38659. },
  38660. angled: {
  38661. height: math.unit(5 + 7/12, "feet"),
  38662. weight: math.unit(2, "tons"),
  38663. name: "Angled",
  38664. image: {
  38665. source: "./media/characters/erdno/angled.svg",
  38666. extra: 1185/1139,
  38667. bottom: 36/1221
  38668. }
  38669. },
  38670. side: {
  38671. height: math.unit(5 + 7/12, "feet"),
  38672. weight: math.unit(2, "tons"),
  38673. name: "Side",
  38674. image: {
  38675. source: "./media/characters/erdno/side.svg",
  38676. extra: 1191/1144,
  38677. bottom: 40/1231
  38678. }
  38679. },
  38680. back: {
  38681. height: math.unit(5 + 7/12, "feet"),
  38682. weight: math.unit(2, "tons"),
  38683. name: "Back",
  38684. image: {
  38685. source: "./media/characters/erdno/back.svg",
  38686. extra: 1202/1146,
  38687. bottom: 17/1219
  38688. }
  38689. },
  38690. frontNsfw: {
  38691. height: math.unit(5 + 7/12, "feet"),
  38692. weight: math.unit(2, "tons"),
  38693. name: "Front (NSFW)",
  38694. image: {
  38695. source: "./media/characters/erdno/front-nsfw.svg",
  38696. extra: 1234/1129,
  38697. bottom: 35/1269
  38698. }
  38699. },
  38700. angledNsfw: {
  38701. height: math.unit(5 + 7/12, "feet"),
  38702. weight: math.unit(2, "tons"),
  38703. name: "Angled (NSFW)",
  38704. image: {
  38705. source: "./media/characters/erdno/angled-nsfw.svg",
  38706. extra: 1185/1139,
  38707. bottom: 36/1221
  38708. }
  38709. },
  38710. sideNsfw: {
  38711. height: math.unit(5 + 7/12, "feet"),
  38712. weight: math.unit(2, "tons"),
  38713. name: "Side (NSFW)",
  38714. image: {
  38715. source: "./media/characters/erdno/side-nsfw.svg",
  38716. extra: 1191/1144,
  38717. bottom: 40/1231
  38718. }
  38719. },
  38720. backNsfw: {
  38721. height: math.unit(5 + 7/12, "feet"),
  38722. weight: math.unit(2, "tons"),
  38723. name: "Back (NSFW)",
  38724. image: {
  38725. source: "./media/characters/erdno/back-nsfw.svg",
  38726. extra: 1202/1146,
  38727. bottom: 17/1219
  38728. }
  38729. },
  38730. frontHyper: {
  38731. height: math.unit(5 + 7/12, "feet"),
  38732. weight: math.unit(2, "tons"),
  38733. name: "Front (Hyper)",
  38734. image: {
  38735. source: "./media/characters/erdno/front-hyper.svg",
  38736. extra: 1298/1136,
  38737. bottom: 35/1333
  38738. }
  38739. },
  38740. },
  38741. [
  38742. {
  38743. name: "Normal",
  38744. height: math.unit(5 + 7/12, "feet"),
  38745. default: true
  38746. },
  38747. {
  38748. name: "Big",
  38749. height: math.unit(5.7, "meters")
  38750. },
  38751. {
  38752. name: "Macro",
  38753. height: math.unit(5.7, "kilometers")
  38754. },
  38755. {
  38756. name: "Megamacro",
  38757. height: math.unit(5.7, "earths")
  38758. },
  38759. ]
  38760. ))
  38761. characterMakers.push(() => makeCharacter(
  38762. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  38763. {
  38764. front: {
  38765. height: math.unit(5 + 10/12, "feet"),
  38766. weight: math.unit(150, "lb"),
  38767. name: "Front",
  38768. image: {
  38769. source: "./media/characters/jamie/front.svg",
  38770. extra: 1908/1768,
  38771. bottom: 19/1927
  38772. }
  38773. },
  38774. },
  38775. [
  38776. {
  38777. name: "Minimum",
  38778. height: math.unit(2, "cm")
  38779. },
  38780. {
  38781. name: "Micro",
  38782. height: math.unit(3, "inches")
  38783. },
  38784. {
  38785. name: "Normal",
  38786. height: math.unit(5 + 10/12, "feet"),
  38787. default: true
  38788. },
  38789. {
  38790. name: "Macro",
  38791. height: math.unit(150, "feet")
  38792. },
  38793. {
  38794. name: "Megamacro",
  38795. height: math.unit(10000, "m")
  38796. },
  38797. ]
  38798. ))
  38799. characterMakers.push(() => makeCharacter(
  38800. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  38801. {
  38802. front: {
  38803. height: math.unit(2, "meters"),
  38804. weight: math.unit(100, "kg"),
  38805. name: "Front",
  38806. image: {
  38807. source: "./media/characters/shiron/front.svg",
  38808. extra: 2103/1985,
  38809. bottom: 98/2201
  38810. }
  38811. },
  38812. back: {
  38813. height: math.unit(2, "meters"),
  38814. weight: math.unit(100, "kg"),
  38815. name: "Back",
  38816. image: {
  38817. source: "./media/characters/shiron/back.svg",
  38818. extra: 2110/2015,
  38819. bottom: 89/2199
  38820. }
  38821. },
  38822. hand: {
  38823. height: math.unit(0.96, "feet"),
  38824. name: "Hand",
  38825. image: {
  38826. source: "./media/characters/shiron/hand.svg"
  38827. }
  38828. },
  38829. foot: {
  38830. height: math.unit(1.464, "feet"),
  38831. name: "Foot",
  38832. image: {
  38833. source: "./media/characters/shiron/foot.svg"
  38834. }
  38835. },
  38836. },
  38837. [
  38838. {
  38839. name: "Normal",
  38840. height: math.unit(2, "meters")
  38841. },
  38842. {
  38843. name: "Macro",
  38844. height: math.unit(500, "meters"),
  38845. default: true
  38846. },
  38847. {
  38848. name: "Megamacro",
  38849. height: math.unit(20, "km")
  38850. },
  38851. ]
  38852. ))
  38853. characterMakers.push(() => makeCharacter(
  38854. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  38855. {
  38856. front: {
  38857. height: math.unit(6, "feet"),
  38858. name: "Front",
  38859. image: {
  38860. source: "./media/characters/sam/front.svg",
  38861. extra: 849/826,
  38862. bottom: 19/868
  38863. }
  38864. },
  38865. },
  38866. [
  38867. {
  38868. name: "Normal",
  38869. height: math.unit(6, "feet"),
  38870. default: true
  38871. },
  38872. ]
  38873. ))
  38874. characterMakers.push(() => makeCharacter(
  38875. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  38876. {
  38877. front: {
  38878. height: math.unit(8 + 4/12, "feet"),
  38879. weight: math.unit(122, "kg"),
  38880. name: "Front",
  38881. image: {
  38882. source: "./media/characters/namori-kurogawa/front.svg",
  38883. extra: 1894/1576,
  38884. bottom: 34/1928
  38885. }
  38886. },
  38887. },
  38888. [
  38889. {
  38890. name: "Normal",
  38891. height: math.unit(8 + 4/12, "feet"),
  38892. default: true
  38893. },
  38894. ]
  38895. ))
  38896. characterMakers.push(() => makeCharacter(
  38897. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  38898. {
  38899. front: {
  38900. height: math.unit(9, "feet"),
  38901. weight: math.unit(621, "lb"),
  38902. name: "Front",
  38903. image: {
  38904. source: "./media/characters/unmru/front.svg",
  38905. extra: 1853/1747,
  38906. bottom: 73/1926
  38907. }
  38908. },
  38909. side: {
  38910. height: math.unit(9, "feet"),
  38911. weight: math.unit(621, "lb"),
  38912. name: "Side",
  38913. image: {
  38914. source: "./media/characters/unmru/side.svg",
  38915. extra: 1781/1671,
  38916. bottom: 127/1908
  38917. }
  38918. },
  38919. back: {
  38920. height: math.unit(9, "feet"),
  38921. weight: math.unit(621, "lb"),
  38922. name: "Back",
  38923. image: {
  38924. source: "./media/characters/unmru/back.svg",
  38925. extra: 1894/1765,
  38926. bottom: 75/1969
  38927. }
  38928. },
  38929. dick: {
  38930. height: math.unit(3, "feet"),
  38931. weight: math.unit(35, "lb"),
  38932. name: "Dick",
  38933. image: {
  38934. source: "./media/characters/unmru/dick.svg"
  38935. }
  38936. },
  38937. },
  38938. [
  38939. {
  38940. name: "Normal",
  38941. height: math.unit(9, "feet")
  38942. },
  38943. {
  38944. name: "Natural",
  38945. height: math.unit(27, "feet"),
  38946. default: true
  38947. },
  38948. {
  38949. name: "Giant",
  38950. height: math.unit(90, "feet")
  38951. },
  38952. {
  38953. name: "Kaiju",
  38954. height: math.unit(270, "feet")
  38955. },
  38956. {
  38957. name: "Macro",
  38958. height: math.unit(900, "feet")
  38959. },
  38960. {
  38961. name: "Macro+",
  38962. height: math.unit(2700, "feet")
  38963. },
  38964. {
  38965. name: "Megamacro",
  38966. height: math.unit(9000, "feet")
  38967. },
  38968. {
  38969. name: "City-Crushing",
  38970. height: math.unit(27000, "feet")
  38971. },
  38972. {
  38973. name: "Mountain-Mashing",
  38974. height: math.unit(90000, "feet")
  38975. },
  38976. {
  38977. name: "Earth-Eclipsing",
  38978. height: math.unit(2.7e8, "feet")
  38979. },
  38980. {
  38981. name: "Sol-Swallowing",
  38982. height: math.unit(9e10, "feet")
  38983. },
  38984. {
  38985. name: "Majoris-Munching",
  38986. height: math.unit(2.7e13, "feet")
  38987. },
  38988. ]
  38989. ))
  38990. characterMakers.push(() => makeCharacter(
  38991. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  38992. {
  38993. front: {
  38994. height: math.unit(1, "inch"),
  38995. name: "Front",
  38996. image: {
  38997. source: "./media/characters/squeaks-mouse/front.svg",
  38998. extra: 352/308,
  38999. bottom: 25/377
  39000. }
  39001. },
  39002. },
  39003. [
  39004. {
  39005. name: "Micro",
  39006. height: math.unit(1, "inch"),
  39007. default: true
  39008. },
  39009. ]
  39010. ))
  39011. characterMakers.push(() => makeCharacter(
  39012. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39013. {
  39014. side: {
  39015. height: math.unit(35, "feet"),
  39016. name: "Side",
  39017. image: {
  39018. source: "./media/characters/sayko/side.svg",
  39019. extra: 1697/1021,
  39020. bottom: 82/1779
  39021. }
  39022. },
  39023. head: {
  39024. height: math.unit(16, "feet"),
  39025. name: "Head",
  39026. image: {
  39027. source: "./media/characters/sayko/head.svg"
  39028. }
  39029. },
  39030. forepaw: {
  39031. height: math.unit(7.85, "feet"),
  39032. name: "Forepaw",
  39033. image: {
  39034. source: "./media/characters/sayko/forepaw.svg"
  39035. }
  39036. },
  39037. hindpaw: {
  39038. height: math.unit(8.8, "feet"),
  39039. name: "Hindpaw",
  39040. image: {
  39041. source: "./media/characters/sayko/hindpaw.svg"
  39042. }
  39043. },
  39044. },
  39045. [
  39046. {
  39047. name: "Normal",
  39048. height: math.unit(35, "feet"),
  39049. default: true
  39050. },
  39051. {
  39052. name: "Colossus",
  39053. height: math.unit(100, "meters")
  39054. },
  39055. {
  39056. name: "\"Small\" Deity",
  39057. height: math.unit(1, "km")
  39058. },
  39059. {
  39060. name: "\"Large\" Deity",
  39061. height: math.unit(15, "km")
  39062. },
  39063. ]
  39064. ))
  39065. characterMakers.push(() => makeCharacter(
  39066. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39067. {
  39068. front: {
  39069. height: math.unit(6, "feet"),
  39070. weight: math.unit(250, "lb"),
  39071. name: "Front",
  39072. image: {
  39073. source: "./media/characters/mukiro/front.svg",
  39074. extra: 1368/1310,
  39075. bottom: 34/1402
  39076. }
  39077. },
  39078. },
  39079. [
  39080. {
  39081. name: "Normal",
  39082. height: math.unit(6, "feet"),
  39083. default: true
  39084. },
  39085. ]
  39086. ))
  39087. characterMakers.push(() => makeCharacter(
  39088. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39089. {
  39090. front: {
  39091. height: math.unit(12 + 4/12, "feet"),
  39092. name: "Front",
  39093. image: {
  39094. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39095. extra: 1346/1311,
  39096. bottom: 65/1411
  39097. }
  39098. },
  39099. },
  39100. [
  39101. {
  39102. name: "Base",
  39103. height: math.unit(12 + 4/12, "feet"),
  39104. default: true
  39105. },
  39106. {
  39107. name: "Macro",
  39108. height: math.unit(150, "feet")
  39109. },
  39110. {
  39111. name: "Mega",
  39112. height: math.unit(2, "miles")
  39113. },
  39114. {
  39115. name: "Demi God",
  39116. height: math.unit(4, "AU")
  39117. },
  39118. {
  39119. name: "God Size",
  39120. height: math.unit(1, "universe")
  39121. },
  39122. ]
  39123. ))
  39124. characterMakers.push(() => makeCharacter(
  39125. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39126. {
  39127. front: {
  39128. height: math.unit(3 + 3/12, "feet"),
  39129. weight: math.unit(88, "lb"),
  39130. name: "Front",
  39131. image: {
  39132. source: "./media/characters/trey/front.svg",
  39133. extra: 1815/1509,
  39134. bottom: 60/1875
  39135. }
  39136. },
  39137. },
  39138. [
  39139. {
  39140. name: "Normal",
  39141. height: math.unit(3 + 3/12, "feet"),
  39142. default: true
  39143. },
  39144. ]
  39145. ))
  39146. characterMakers.push(() => makeCharacter(
  39147. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39148. {
  39149. front: {
  39150. height: math.unit(4, "meters"),
  39151. name: "Front",
  39152. image: {
  39153. source: "./media/characters/adelonda/front.svg",
  39154. extra: 1077/982,
  39155. bottom: 39/1116
  39156. }
  39157. },
  39158. back: {
  39159. height: math.unit(4, "meters"),
  39160. name: "Back",
  39161. image: {
  39162. source: "./media/characters/adelonda/back.svg",
  39163. extra: 1105/1003,
  39164. bottom: 25/1130
  39165. }
  39166. },
  39167. feral: {
  39168. height: math.unit(40/1.5, "meters"),
  39169. name: "Feral",
  39170. image: {
  39171. source: "./media/characters/adelonda/feral.svg",
  39172. extra: 597/271,
  39173. bottom: 387/984
  39174. }
  39175. },
  39176. },
  39177. [
  39178. {
  39179. name: "Normal",
  39180. height: math.unit(4, "meters"),
  39181. default: true
  39182. },
  39183. ]
  39184. ))
  39185. characterMakers.push(() => makeCharacter(
  39186. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39187. {
  39188. front: {
  39189. height: math.unit(8 + 4/12, "feet"),
  39190. weight: math.unit(670, "lb"),
  39191. name: "Front",
  39192. image: {
  39193. source: "./media/characters/acadiel/front.svg",
  39194. extra: 1901/1595,
  39195. bottom: 142/2043
  39196. }
  39197. },
  39198. },
  39199. [
  39200. {
  39201. name: "Normal",
  39202. height: math.unit(8 + 4/12, "feet"),
  39203. default: true
  39204. },
  39205. {
  39206. name: "Macro",
  39207. height: math.unit(200, "feet")
  39208. },
  39209. ]
  39210. ))
  39211. characterMakers.push(() => makeCharacter(
  39212. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39213. {
  39214. front: {
  39215. height: math.unit(6 + 2/12, "feet"),
  39216. weight: math.unit(185, "lb"),
  39217. name: "Front",
  39218. image: {
  39219. source: "./media/characters/kayne-ein/front.svg",
  39220. extra: 1780/1560,
  39221. bottom: 81/1861
  39222. }
  39223. },
  39224. },
  39225. [
  39226. {
  39227. name: "Normal",
  39228. height: math.unit(6 + 2/12, "feet"),
  39229. default: true
  39230. },
  39231. {
  39232. name: "Transformation Stage",
  39233. height: math.unit(15, "feet")
  39234. },
  39235. {
  39236. name: "Macro",
  39237. height: math.unit(150, "feet")
  39238. },
  39239. {
  39240. name: "Earth's Shadow",
  39241. height: math.unit(6200, "miles")
  39242. },
  39243. {
  39244. name: "Universal Demon",
  39245. height: math.unit(28e9, "parsecs")
  39246. },
  39247. {
  39248. name: "Multiverse God",
  39249. height: math.unit(3, "multiverses")
  39250. },
  39251. ]
  39252. ))
  39253. characterMakers.push(() => makeCharacter(
  39254. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39255. {
  39256. front: {
  39257. height: math.unit(5 + 5/12, "feet"),
  39258. name: "Front",
  39259. image: {
  39260. source: "./media/characters/fawn/front.svg",
  39261. extra: 1873/1731,
  39262. bottom: 95/1968
  39263. }
  39264. },
  39265. back: {
  39266. height: math.unit(5 + 5/12, "feet"),
  39267. name: "Back",
  39268. image: {
  39269. source: "./media/characters/fawn/back.svg",
  39270. extra: 1813/1700,
  39271. bottom: 14/1827
  39272. }
  39273. },
  39274. hoof: {
  39275. height: math.unit(1.45, "feet"),
  39276. name: "Hoof",
  39277. image: {
  39278. source: "./media/characters/fawn/hoof.svg"
  39279. }
  39280. },
  39281. },
  39282. [
  39283. {
  39284. name: "Normal",
  39285. height: math.unit(5 + 5/12, "feet"),
  39286. default: true
  39287. },
  39288. ]
  39289. ))
  39290. characterMakers.push(() => makeCharacter(
  39291. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39292. {
  39293. front: {
  39294. height: math.unit(2 + 5/12, "feet"),
  39295. name: "Front",
  39296. image: {
  39297. source: "./media/characters/orion/front.svg",
  39298. extra: 1366/1304,
  39299. bottom: 43/1409
  39300. }
  39301. },
  39302. paw: {
  39303. height: math.unit(0.52, "feet"),
  39304. name: "Paw",
  39305. image: {
  39306. source: "./media/characters/orion/paw.svg"
  39307. }
  39308. },
  39309. },
  39310. [
  39311. {
  39312. name: "Normal",
  39313. height: math.unit(2 + 5/12, "feet"),
  39314. default: true
  39315. },
  39316. ]
  39317. ))
  39318. characterMakers.push(() => makeCharacter(
  39319. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39320. {
  39321. front: {
  39322. height: math.unit(5 + 10/12, "feet"),
  39323. name: "Front",
  39324. image: {
  39325. source: "./media/characters/vera/front.svg",
  39326. extra: 1680/1575,
  39327. bottom: 49/1729
  39328. }
  39329. },
  39330. back: {
  39331. height: math.unit(5 + 10/12, "feet"),
  39332. name: "Back",
  39333. image: {
  39334. source: "./media/characters/vera/back.svg",
  39335. extra: 1700/1588,
  39336. bottom: 18/1718
  39337. }
  39338. },
  39339. arcanine: {
  39340. height: math.unit(6 + 8/12, "feet"),
  39341. name: "Arcanine",
  39342. image: {
  39343. source: "./media/characters/vera/arcanine.svg",
  39344. extra: 1590/1511,
  39345. bottom: 71/1661
  39346. }
  39347. },
  39348. maw: {
  39349. height: math.unit(0.82, "feet"),
  39350. name: "Maw",
  39351. image: {
  39352. source: "./media/characters/vera/maw.svg"
  39353. }
  39354. },
  39355. mawArcanine: {
  39356. height: math.unit(0.97, "feet"),
  39357. name: "Maw (Arcanine)",
  39358. image: {
  39359. source: "./media/characters/vera/maw-arcanine.svg"
  39360. }
  39361. },
  39362. paw: {
  39363. height: math.unit(0.75, "feet"),
  39364. name: "Paw",
  39365. image: {
  39366. source: "./media/characters/vera/paw.svg"
  39367. }
  39368. },
  39369. pawprint: {
  39370. height: math.unit(0.52, "feet"),
  39371. name: "Pawprint",
  39372. image: {
  39373. source: "./media/characters/vera/pawprint.svg"
  39374. }
  39375. },
  39376. },
  39377. [
  39378. {
  39379. name: "Normal",
  39380. height: math.unit(5 + 10/12, "feet"),
  39381. default: true
  39382. },
  39383. {
  39384. name: "Macro",
  39385. height: math.unit(75, "feet")
  39386. },
  39387. ]
  39388. ))
  39389. characterMakers.push(() => makeCharacter(
  39390. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39391. {
  39392. front: {
  39393. height: math.unit(4, "feet"),
  39394. weight: math.unit(40, "lb"),
  39395. name: "Front",
  39396. image: {
  39397. source: "./media/characters/orvan-rabbit/front.svg",
  39398. extra: 1896/1642,
  39399. bottom: 29/1925
  39400. }
  39401. },
  39402. },
  39403. [
  39404. {
  39405. name: "Normal",
  39406. height: math.unit(4, "feet"),
  39407. default: true
  39408. },
  39409. ]
  39410. ))
  39411. characterMakers.push(() => makeCharacter(
  39412. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39413. {
  39414. front: {
  39415. height: math.unit(6, "feet"),
  39416. weight: math.unit(168, "lb"),
  39417. name: "Front",
  39418. image: {
  39419. source: "./media/characters/lisa/front.svg",
  39420. extra: 2065/1867,
  39421. bottom: 46/2111
  39422. }
  39423. },
  39424. back: {
  39425. height: math.unit(6, "feet"),
  39426. weight: math.unit(168, "lb"),
  39427. name: "Back",
  39428. image: {
  39429. source: "./media/characters/lisa/back.svg",
  39430. extra: 1982/1838,
  39431. bottom: 29/2011
  39432. }
  39433. },
  39434. maw: {
  39435. height: math.unit(0.81, "feet"),
  39436. name: "Maw",
  39437. image: {
  39438. source: "./media/characters/lisa/maw.svg"
  39439. }
  39440. },
  39441. paw: {
  39442. height: math.unit(0.9, "feet"),
  39443. name: "Paw",
  39444. image: {
  39445. source: "./media/characters/lisa/paw.svg"
  39446. }
  39447. },
  39448. caribousune: {
  39449. height: math.unit(7 + 2/12, "feet"),
  39450. weight: math.unit(268, "lb"),
  39451. name: "Caribousune",
  39452. image: {
  39453. source: "./media/characters/lisa/caribousune.svg",
  39454. extra: 1843/1633,
  39455. bottom: 29/1872
  39456. }
  39457. },
  39458. frontCaribousune: {
  39459. height: math.unit(7 + 2/12, "feet"),
  39460. weight: math.unit(268, "lb"),
  39461. name: "Front (Caribousune)",
  39462. image: {
  39463. source: "./media/characters/lisa/front-caribousune.svg",
  39464. extra: 1818/1638,
  39465. bottom: 52/1870
  39466. }
  39467. },
  39468. sideCaribousune: {
  39469. height: math.unit(7 + 2/12, "feet"),
  39470. weight: math.unit(268, "lb"),
  39471. name: "Side (Caribousune)",
  39472. image: {
  39473. source: "./media/characters/lisa/side-caribousune.svg",
  39474. extra: 1851/1635,
  39475. bottom: 16/1867
  39476. }
  39477. },
  39478. backCaribousune: {
  39479. height: math.unit(7 + 2/12, "feet"),
  39480. weight: math.unit(268, "lb"),
  39481. name: "Back (Caribousune)",
  39482. image: {
  39483. source: "./media/characters/lisa/back-caribousune.svg",
  39484. extra: 1801/1604,
  39485. bottom: 44/1845
  39486. }
  39487. },
  39488. caribou: {
  39489. height: math.unit(7 + 2/12, "feet"),
  39490. weight: math.unit(268, "lb"),
  39491. name: "Caribou",
  39492. image: {
  39493. source: "./media/characters/lisa/caribou.svg",
  39494. extra: 1843/1633,
  39495. bottom: 29/1872
  39496. }
  39497. },
  39498. frontCaribou: {
  39499. height: math.unit(7 + 2/12, "feet"),
  39500. weight: math.unit(268, "lb"),
  39501. name: "Front (Caribou)",
  39502. image: {
  39503. source: "./media/characters/lisa/front-caribou.svg",
  39504. extra: 1818/1638,
  39505. bottom: 52/1870
  39506. }
  39507. },
  39508. sideCaribou: {
  39509. height: math.unit(7 + 2/12, "feet"),
  39510. weight: math.unit(268, "lb"),
  39511. name: "Side (Caribou)",
  39512. image: {
  39513. source: "./media/characters/lisa/side-caribou.svg",
  39514. extra: 1851/1635,
  39515. bottom: 16/1867
  39516. }
  39517. },
  39518. backCaribou: {
  39519. height: math.unit(7 + 2/12, "feet"),
  39520. weight: math.unit(268, "lb"),
  39521. name: "Back (Caribou)",
  39522. image: {
  39523. source: "./media/characters/lisa/back-caribou.svg",
  39524. extra: 1801/1604,
  39525. bottom: 44/1845
  39526. }
  39527. },
  39528. mawCaribou: {
  39529. height: math.unit(1.45, "feet"),
  39530. name: "Maw (Caribou)",
  39531. image: {
  39532. source: "./media/characters/lisa/maw-caribou.svg"
  39533. }
  39534. },
  39535. mawCaribousune: {
  39536. height: math.unit(1.45, "feet"),
  39537. name: "Maw (Caribousune)",
  39538. image: {
  39539. source: "./media/characters/lisa/maw-caribousune.svg"
  39540. }
  39541. },
  39542. pawCaribousune: {
  39543. height: math.unit(1.61, "feet"),
  39544. name: "Paw (Caribou)",
  39545. image: {
  39546. source: "./media/characters/lisa/paw-caribousune.svg"
  39547. }
  39548. },
  39549. },
  39550. [
  39551. {
  39552. name: "Normal",
  39553. height: math.unit(6, "feet")
  39554. },
  39555. {
  39556. name: "God Size",
  39557. height: math.unit(72, "feet"),
  39558. default: true
  39559. },
  39560. {
  39561. name: "Towering",
  39562. height: math.unit(288, "feet")
  39563. },
  39564. {
  39565. name: "City Size",
  39566. height: math.unit(48384, "feet")
  39567. },
  39568. {
  39569. name: "Continental",
  39570. height: math.unit(4200, "miles")
  39571. },
  39572. {
  39573. name: "Planet Eater",
  39574. height: math.unit(42, "earths")
  39575. },
  39576. {
  39577. name: "Star Swallower",
  39578. height: math.unit(42, "solarradii")
  39579. },
  39580. {
  39581. name: "System Swallower",
  39582. height: math.unit(84000, "AU")
  39583. },
  39584. {
  39585. name: "Galaxy Gobbler",
  39586. height: math.unit(42, "galaxies")
  39587. },
  39588. {
  39589. name: "Universe Devourer",
  39590. height: math.unit(42, "universes")
  39591. },
  39592. {
  39593. name: "Multiverse Muncher",
  39594. height: math.unit(42, "multiverses")
  39595. },
  39596. ]
  39597. ))
  39598. characterMakers.push(() => makeCharacter(
  39599. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  39600. {
  39601. front: {
  39602. height: math.unit(36, "feet"),
  39603. name: "Front",
  39604. image: {
  39605. source: "./media/characters/shadow-rat/front.svg",
  39606. extra: 1845/1758,
  39607. bottom: 83/1928
  39608. }
  39609. },
  39610. },
  39611. [
  39612. {
  39613. name: "Macro",
  39614. height: math.unit(36, "feet"),
  39615. default: true
  39616. },
  39617. ]
  39618. ))
  39619. characterMakers.push(() => makeCharacter(
  39620. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  39621. {
  39622. side: {
  39623. height: math.unit(8, "feet"),
  39624. weight: math.unit(2630, "lb"),
  39625. name: "Side",
  39626. image: {
  39627. source: "./media/characters/torallia/side.svg",
  39628. extra: 2164/2021,
  39629. bottom: 371/2535
  39630. }
  39631. },
  39632. },
  39633. [
  39634. {
  39635. name: "Mortal Interaction",
  39636. height: math.unit(8, "feet")
  39637. },
  39638. {
  39639. name: "Natural",
  39640. height: math.unit(24, "feet"),
  39641. default: true
  39642. },
  39643. {
  39644. name: "Giant",
  39645. height: math.unit(80, "feet")
  39646. },
  39647. {
  39648. name: "Kaiju",
  39649. height: math.unit(240, "feet")
  39650. },
  39651. {
  39652. name: "Macro",
  39653. height: math.unit(800, "feet")
  39654. },
  39655. {
  39656. name: "Macro+",
  39657. height: math.unit(2400, "feet")
  39658. },
  39659. {
  39660. name: "Macro++",
  39661. height: math.unit(8000, "feet")
  39662. },
  39663. {
  39664. name: "City-Crushing",
  39665. height: math.unit(24000, "feet")
  39666. },
  39667. {
  39668. name: "Mountain-Mashing",
  39669. height: math.unit(80000, "feet")
  39670. },
  39671. {
  39672. name: "District Demolisher",
  39673. height: math.unit(240000, "feet")
  39674. },
  39675. {
  39676. name: "Tri-County Terror",
  39677. height: math.unit(800000, "feet")
  39678. },
  39679. {
  39680. name: "State Smasher",
  39681. height: math.unit(2.4e6, "feet")
  39682. },
  39683. {
  39684. name: "Nation Nemesis",
  39685. height: math.unit(8e6, "feet")
  39686. },
  39687. {
  39688. name: "Continent Cracker",
  39689. height: math.unit(2.4e7, "feet")
  39690. },
  39691. {
  39692. name: "Planet-Pillaging",
  39693. height: math.unit(8e7, "feet")
  39694. },
  39695. {
  39696. name: "Earth-Eclipsing",
  39697. height: math.unit(2.4e8, "feet")
  39698. },
  39699. {
  39700. name: "Jovian-Jostling",
  39701. height: math.unit(8e8, "feet")
  39702. },
  39703. {
  39704. name: "Gas Giant Gulper",
  39705. height: math.unit(2.4e9, "feet")
  39706. },
  39707. {
  39708. name: "Astral Annihilator",
  39709. height: math.unit(8e9, "feet")
  39710. },
  39711. {
  39712. name: "Celestial Conqueror",
  39713. height: math.unit(2.4e10, "feet")
  39714. },
  39715. {
  39716. name: "Sol-Swallowing",
  39717. height: math.unit(8e10, "feet")
  39718. },
  39719. {
  39720. name: "Hunter of the Heavens",
  39721. height: math.unit(2.4e13, "feet")
  39722. },
  39723. ]
  39724. ))
  39725. characterMakers.push(() => makeCharacter(
  39726. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  39727. {
  39728. front: {
  39729. height: math.unit(6 + 8/12, "feet"),
  39730. weight: math.unit(250, "kilograms"),
  39731. volume: math.unit(28, "liters"),
  39732. name: "Front",
  39733. image: {
  39734. source: "./media/characters/rebecca-pawlson/front.svg",
  39735. extra: 1737/1596,
  39736. bottom: 107/1844
  39737. }
  39738. },
  39739. back: {
  39740. height: math.unit(6 + 8/12, "feet"),
  39741. weight: math.unit(250, "kilograms"),
  39742. volume: math.unit(28, "liters"),
  39743. name: "Back",
  39744. image: {
  39745. source: "./media/characters/rebecca-pawlson/back.svg",
  39746. extra: 1702/1523,
  39747. bottom: 86/1788
  39748. }
  39749. },
  39750. },
  39751. [
  39752. {
  39753. name: "Normal",
  39754. height: math.unit(6 + 8/12, "feet")
  39755. },
  39756. {
  39757. name: "Mini Macro",
  39758. height: math.unit(10, "feet"),
  39759. default: true
  39760. },
  39761. {
  39762. name: "Macro",
  39763. height: math.unit(100, "feet")
  39764. },
  39765. {
  39766. name: "Mega Macro",
  39767. height: math.unit(2500, "feet")
  39768. },
  39769. {
  39770. name: "Giga Macro",
  39771. height: math.unit(50, "miles")
  39772. },
  39773. ]
  39774. ))
  39775. characterMakers.push(() => makeCharacter(
  39776. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  39777. {
  39778. front: {
  39779. height: math.unit(7 + 6/12, "feet"),
  39780. weight: math.unit(600, "lb"),
  39781. name: "Front",
  39782. image: {
  39783. source: "./media/characters/moxie-nova/front.svg",
  39784. extra: 1734/1652,
  39785. bottom: 41/1775
  39786. }
  39787. },
  39788. },
  39789. [
  39790. {
  39791. name: "Normal",
  39792. height: math.unit(7 + 6/12, "feet"),
  39793. default: true
  39794. },
  39795. ]
  39796. ))
  39797. characterMakers.push(() => makeCharacter(
  39798. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  39799. {
  39800. goat: {
  39801. height: math.unit(4, "feet"),
  39802. weight: math.unit(180, "lb"),
  39803. name: "Goat",
  39804. image: {
  39805. source: "./media/characters/tiffany/goat.svg",
  39806. extra: 1845/1595,
  39807. bottom: 106/1951
  39808. }
  39809. },
  39810. front: {
  39811. height: math.unit(5, "feet"),
  39812. weight: math.unit(150, "lb"),
  39813. name: "Foxcoon",
  39814. image: {
  39815. source: "./media/characters/tiffany/foxcoon.svg",
  39816. extra: 1941/1845,
  39817. bottom: 58/1999
  39818. }
  39819. },
  39820. },
  39821. [
  39822. {
  39823. name: "Normal",
  39824. height: math.unit(5, "feet"),
  39825. default: true
  39826. },
  39827. ]
  39828. ))
  39829. characterMakers.push(() => makeCharacter(
  39830. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  39831. {
  39832. front: {
  39833. height: math.unit(8, "feet"),
  39834. weight: math.unit(300, "lb"),
  39835. name: "Front",
  39836. image: {
  39837. source: "./media/characters/raxinath/front.svg",
  39838. extra: 1407/1309,
  39839. bottom: 39/1446
  39840. }
  39841. },
  39842. back: {
  39843. height: math.unit(8, "feet"),
  39844. weight: math.unit(300, "lb"),
  39845. name: "Back",
  39846. image: {
  39847. source: "./media/characters/raxinath/back.svg",
  39848. extra: 1405/1315,
  39849. bottom: 9/1414
  39850. }
  39851. },
  39852. },
  39853. [
  39854. {
  39855. name: "Speck",
  39856. height: math.unit(0.5, "nm")
  39857. },
  39858. {
  39859. name: "Micro",
  39860. height: math.unit(3, "inches")
  39861. },
  39862. {
  39863. name: "Kobold",
  39864. height: math.unit(3, "feet")
  39865. },
  39866. {
  39867. name: "Normal",
  39868. height: math.unit(8, "feet"),
  39869. default: true
  39870. },
  39871. {
  39872. name: "Giant",
  39873. height: math.unit(50, "feet")
  39874. },
  39875. {
  39876. name: "Macro",
  39877. height: math.unit(1000, "feet")
  39878. },
  39879. {
  39880. name: "Megamacro",
  39881. height: math.unit(1, "mile")
  39882. },
  39883. ]
  39884. ))
  39885. characterMakers.push(() => makeCharacter(
  39886. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  39887. {
  39888. front: {
  39889. height: math.unit(10, "feet"),
  39890. weight: math.unit(1442, "lb"),
  39891. name: "Front",
  39892. image: {
  39893. source: "./media/characters/mal-dragon/front.svg",
  39894. extra: 1515/1444,
  39895. bottom: 113/1628
  39896. }
  39897. },
  39898. back: {
  39899. height: math.unit(10, "feet"),
  39900. weight: math.unit(1442, "lb"),
  39901. name: "Back",
  39902. image: {
  39903. source: "./media/characters/mal-dragon/back.svg",
  39904. extra: 1527/1434,
  39905. bottom: 25/1552
  39906. }
  39907. },
  39908. },
  39909. [
  39910. {
  39911. name: "Mortal Interaction",
  39912. height: math.unit(10, "feet"),
  39913. default: true
  39914. },
  39915. {
  39916. name: "Large",
  39917. height: math.unit(30, "feet")
  39918. },
  39919. {
  39920. name: "Kaiju",
  39921. height: math.unit(300, "feet")
  39922. },
  39923. {
  39924. name: "Megamacro",
  39925. height: math.unit(10000, "feet")
  39926. },
  39927. {
  39928. name: "Continent Cracker",
  39929. height: math.unit(30000000, "feet")
  39930. },
  39931. {
  39932. name: "Sol-Swallowing",
  39933. height: math.unit(1e11, "feet")
  39934. },
  39935. {
  39936. name: "Light Universal",
  39937. height: math.unit(5, "universes")
  39938. },
  39939. {
  39940. name: "Universe Atoms",
  39941. height: math.unit(1.829e9, "universes")
  39942. },
  39943. {
  39944. name: "Light Multiversal",
  39945. height: math.unit(5, "multiverses")
  39946. },
  39947. {
  39948. name: "Multiverse Atoms",
  39949. height: math.unit(1.829e9, "multiverses")
  39950. },
  39951. {
  39952. name: "Fabric of Time",
  39953. height: math.unit(1e262, "multiverses")
  39954. },
  39955. ]
  39956. ))
  39957. characterMakers.push(() => makeCharacter(
  39958. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  39959. {
  39960. front: {
  39961. height: math.unit(9, "feet"),
  39962. weight: math.unit(1050, "lb"),
  39963. name: "Front",
  39964. image: {
  39965. source: "./media/characters/tabitha/front.svg",
  39966. extra: 2083/1994,
  39967. bottom: 68/2151
  39968. }
  39969. },
  39970. },
  39971. [
  39972. {
  39973. name: "Baseline",
  39974. height: math.unit(9, "feet"),
  39975. default: true
  39976. },
  39977. {
  39978. name: "Giant",
  39979. height: math.unit(90, "feet")
  39980. },
  39981. {
  39982. name: "Macro",
  39983. height: math.unit(900, "feet")
  39984. },
  39985. {
  39986. name: "Megamacro",
  39987. height: math.unit(9000, "feet")
  39988. },
  39989. {
  39990. name: "City-Crushing",
  39991. height: math.unit(27000, "feet")
  39992. },
  39993. {
  39994. name: "Mountain-Mashing",
  39995. height: math.unit(90000, "feet")
  39996. },
  39997. {
  39998. name: "Nation Nemesis",
  39999. height: math.unit(9e6, "feet")
  40000. },
  40001. {
  40002. name: "Continent Cracker",
  40003. height: math.unit(27e6, "feet")
  40004. },
  40005. {
  40006. name: "Earth-Eclipsing",
  40007. height: math.unit(2.7e8, "feet")
  40008. },
  40009. {
  40010. name: "Gas Giant Gulper",
  40011. height: math.unit(2.7e9, "feet")
  40012. },
  40013. {
  40014. name: "Sol-Swallowing",
  40015. height: math.unit(9e10, "feet")
  40016. },
  40017. {
  40018. name: "Galaxy Gulper",
  40019. height: math.unit(9, "galaxies")
  40020. },
  40021. {
  40022. name: "Cosmos Churner",
  40023. height: math.unit(9, "universes")
  40024. },
  40025. ]
  40026. ))
  40027. characterMakers.push(() => makeCharacter(
  40028. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40029. {
  40030. front: {
  40031. height: math.unit(160, "cm"),
  40032. weight: math.unit(55, "kg"),
  40033. name: "Front",
  40034. image: {
  40035. source: "./media/characters/tow/front.svg",
  40036. extra: 1751/1722,
  40037. bottom: 74/1825
  40038. }
  40039. },
  40040. },
  40041. [
  40042. {
  40043. name: "Norm",
  40044. height: math.unit(160, "cm")
  40045. },
  40046. {
  40047. name: "Casual",
  40048. height: math.unit(3200, "m"),
  40049. default: true
  40050. },
  40051. {
  40052. name: "Show-Off",
  40053. height: math.unit(160, "km")
  40054. },
  40055. ]
  40056. ))
  40057. characterMakers.push(() => makeCharacter(
  40058. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40059. {
  40060. front: {
  40061. height: math.unit(7 + 11/12, "feet"),
  40062. weight: math.unit(342.8, "lb"),
  40063. name: "Front",
  40064. image: {
  40065. source: "./media/characters/vivian-orca-dragon/front.svg",
  40066. extra: 1890/1865,
  40067. bottom: 28/1918
  40068. }
  40069. },
  40070. },
  40071. [
  40072. {
  40073. name: "Micro",
  40074. height: math.unit(5, "inches")
  40075. },
  40076. {
  40077. name: "Normal",
  40078. height: math.unit(7 + 11/12, "feet"),
  40079. default: true
  40080. },
  40081. {
  40082. name: "Macro",
  40083. height: math.unit(395 + 7/12, "feet")
  40084. },
  40085. ]
  40086. ))
  40087. characterMakers.push(() => makeCharacter(
  40088. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40089. {
  40090. side: {
  40091. height: math.unit(10, "feet"),
  40092. weight: math.unit(1442, "lb"),
  40093. name: "Side",
  40094. image: {
  40095. source: "./media/characters/lotherakon/side.svg",
  40096. extra: 1604/1497,
  40097. bottom: 89/1693
  40098. }
  40099. },
  40100. },
  40101. [
  40102. {
  40103. name: "Mortal Interaction",
  40104. height: math.unit(10, "feet")
  40105. },
  40106. {
  40107. name: "Large",
  40108. height: math.unit(30, "feet"),
  40109. default: true
  40110. },
  40111. {
  40112. name: "Giant",
  40113. height: math.unit(100, "feet")
  40114. },
  40115. {
  40116. name: "Kaiju",
  40117. height: math.unit(300, "feet")
  40118. },
  40119. {
  40120. name: "Macro",
  40121. height: math.unit(1000, "feet")
  40122. },
  40123. {
  40124. name: "Macro+",
  40125. height: math.unit(3000, "feet")
  40126. },
  40127. {
  40128. name: "Megamacro",
  40129. height: math.unit(10000, "feet")
  40130. },
  40131. {
  40132. name: "City-Crushing",
  40133. height: math.unit(30000, "feet")
  40134. },
  40135. {
  40136. name: "Continent Cracker",
  40137. height: math.unit(30e6, "feet")
  40138. },
  40139. {
  40140. name: "Earth Eclipsing",
  40141. height: math.unit(3e8, "feet")
  40142. },
  40143. {
  40144. name: "Gas Giant Gulper",
  40145. height: math.unit(3e9, "feet")
  40146. },
  40147. {
  40148. name: "Sol-Swallowing",
  40149. height: math.unit(1e11, "feet")
  40150. },
  40151. {
  40152. name: "System Swallower",
  40153. height: math.unit(3e14, "feet")
  40154. },
  40155. {
  40156. name: "Galaxy Gulper",
  40157. height: math.unit(10, "galaxies")
  40158. },
  40159. {
  40160. name: "Light Universal",
  40161. height: math.unit(5, "universes")
  40162. },
  40163. {
  40164. name: "Universe Palm",
  40165. height: math.unit(20, "universes")
  40166. },
  40167. {
  40168. name: "Light Multiversal",
  40169. height: math.unit(5, "multiverses")
  40170. },
  40171. {
  40172. name: "Multiverse Palm",
  40173. height: math.unit(20, "multiverses")
  40174. },
  40175. {
  40176. name: "Inferno Incarnate",
  40177. height: math.unit(1e7, "multiverses")
  40178. },
  40179. ]
  40180. ))
  40181. characterMakers.push(() => makeCharacter(
  40182. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40183. {
  40184. front: {
  40185. height: math.unit(8, "feet"),
  40186. weight: math.unit(1200, "lb"),
  40187. name: "Front",
  40188. image: {
  40189. source: "./media/characters/malithee/front.svg",
  40190. extra: 1675/1640,
  40191. bottom: 162/1837
  40192. }
  40193. },
  40194. },
  40195. [
  40196. {
  40197. name: "Mortal Interaction",
  40198. height: math.unit(8, "feet"),
  40199. default: true
  40200. },
  40201. {
  40202. name: "Large",
  40203. height: math.unit(24, "feet")
  40204. },
  40205. {
  40206. name: "Kaiju",
  40207. height: math.unit(240, "feet")
  40208. },
  40209. {
  40210. name: "Megamacro",
  40211. height: math.unit(8000, "feet")
  40212. },
  40213. {
  40214. name: "Continent Cracker",
  40215. height: math.unit(24e6, "feet")
  40216. },
  40217. {
  40218. name: "Earth-Eclipsing",
  40219. height: math.unit(2.4e8, "feet")
  40220. },
  40221. {
  40222. name: "Sol-Swallowing",
  40223. height: math.unit(8e10, "feet")
  40224. },
  40225. {
  40226. name: "Galaxy Gulper",
  40227. height: math.unit(8, "galaxies")
  40228. },
  40229. {
  40230. name: "Light Universal",
  40231. height: math.unit(4, "universes")
  40232. },
  40233. {
  40234. name: "Universe Atoms",
  40235. height: math.unit(1.829e9, "universes")
  40236. },
  40237. {
  40238. name: "Light Multiversal",
  40239. height: math.unit(4, "multiverses")
  40240. },
  40241. {
  40242. name: "Multiverse Atoms",
  40243. height: math.unit(1.829e9, "multiverses")
  40244. },
  40245. {
  40246. name: "Nigh-Omnipresence",
  40247. height: math.unit(8e261, "multiverses")
  40248. },
  40249. ]
  40250. ))
  40251. characterMakers.push(() => makeCharacter(
  40252. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40253. {
  40254. front: {
  40255. height: math.unit(10, "feet"),
  40256. weight: math.unit(1500, "lb"),
  40257. name: "Front",
  40258. image: {
  40259. source: "./media/characters/miles-thestia/front.svg",
  40260. extra: 1812/1727,
  40261. bottom: 86/1898
  40262. }
  40263. },
  40264. back: {
  40265. height: math.unit(10, "feet"),
  40266. weight: math.unit(1500, "lb"),
  40267. name: "Back",
  40268. image: {
  40269. source: "./media/characters/miles-thestia/back.svg",
  40270. extra: 1799/1690,
  40271. bottom: 47/1846
  40272. }
  40273. },
  40274. frontNsfw: {
  40275. height: math.unit(10, "feet"),
  40276. weight: math.unit(1500, "lb"),
  40277. name: "Front (NSFW)",
  40278. image: {
  40279. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40280. extra: 1812/1727,
  40281. bottom: 86/1898
  40282. }
  40283. },
  40284. },
  40285. [
  40286. {
  40287. name: "Mini-Macro",
  40288. height: math.unit(10, "feet"),
  40289. default: true
  40290. },
  40291. ]
  40292. ))
  40293. characterMakers.push(() => makeCharacter(
  40294. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40295. {
  40296. front: {
  40297. height: math.unit(25, "feet"),
  40298. name: "Front",
  40299. image: {
  40300. source: "./media/characters/titan-s-wulf/front.svg",
  40301. extra: 1560/1484,
  40302. bottom: 76/1636
  40303. }
  40304. },
  40305. },
  40306. [
  40307. {
  40308. name: "Smallest",
  40309. height: math.unit(25, "feet"),
  40310. default: true
  40311. },
  40312. {
  40313. name: "Normal",
  40314. height: math.unit(200, "feet")
  40315. },
  40316. {
  40317. name: "Macro",
  40318. height: math.unit(200000, "feet")
  40319. },
  40320. {
  40321. name: "Multiversal Original",
  40322. height: math.unit(10000, "multiverses")
  40323. },
  40324. ]
  40325. ))
  40326. characterMakers.push(() => makeCharacter(
  40327. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40328. {
  40329. front: {
  40330. height: math.unit(8, "feet"),
  40331. weight: math.unit(553, "lb"),
  40332. name: "Front",
  40333. image: {
  40334. source: "./media/characters/tawendeh/front.svg",
  40335. extra: 2365/2268,
  40336. bottom: 83/2448
  40337. }
  40338. },
  40339. frontClothed: {
  40340. height: math.unit(8, "feet"),
  40341. weight: math.unit(553, "lb"),
  40342. name: "Front (Clothed)",
  40343. image: {
  40344. source: "./media/characters/tawendeh/front-clothed.svg",
  40345. extra: 2365/2268,
  40346. bottom: 83/2448
  40347. }
  40348. },
  40349. back: {
  40350. height: math.unit(8, "feet"),
  40351. weight: math.unit(553, "lb"),
  40352. name: "Back",
  40353. image: {
  40354. source: "./media/characters/tawendeh/back.svg",
  40355. extra: 2397/2294,
  40356. bottom: 42/2439
  40357. }
  40358. },
  40359. },
  40360. [
  40361. {
  40362. name: "Mortal Interaction",
  40363. height: math.unit(8, "feet"),
  40364. default: true
  40365. },
  40366. {
  40367. name: "Giant",
  40368. height: math.unit(80, "feet")
  40369. },
  40370. {
  40371. name: "Macro",
  40372. height: math.unit(800, "feet")
  40373. },
  40374. {
  40375. name: "Megamacro",
  40376. height: math.unit(8000, "feet")
  40377. },
  40378. {
  40379. name: "City-Crushing",
  40380. height: math.unit(24000, "feet")
  40381. },
  40382. {
  40383. name: "Mountain-Mashing",
  40384. height: math.unit(80000, "feet")
  40385. },
  40386. {
  40387. name: "Nation Nemesis",
  40388. height: math.unit(8e6, "feet")
  40389. },
  40390. {
  40391. name: "Continent Cracker",
  40392. height: math.unit(24e6, "feet")
  40393. },
  40394. {
  40395. name: "Earth-Eclipsing",
  40396. height: math.unit(2.4e8, "feet")
  40397. },
  40398. {
  40399. name: "Gas Giant Gulper",
  40400. height: math.unit(2.4e9, "feet")
  40401. },
  40402. {
  40403. name: "Sol-Swallowing",
  40404. height: math.unit(8e10, "feet")
  40405. },
  40406. {
  40407. name: "Galaxy Gulper",
  40408. height: math.unit(8, "galaxies")
  40409. },
  40410. {
  40411. name: "Cosmos Churner",
  40412. height: math.unit(8, "universes")
  40413. },
  40414. {
  40415. name: "Omnipotent Otter",
  40416. height: math.unit(80, "universes")
  40417. },
  40418. ]
  40419. ))
  40420. characterMakers.push(() => makeCharacter(
  40421. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40422. {
  40423. front: {
  40424. height: math.unit(2.6, "meters"),
  40425. weight: math.unit(900, "kg"),
  40426. name: "Front",
  40427. image: {
  40428. source: "./media/characters/neesha/front.svg",
  40429. extra: 1803/1653,
  40430. bottom: 128/1931
  40431. }
  40432. },
  40433. },
  40434. [
  40435. {
  40436. name: "Normal",
  40437. height: math.unit(2.6, "meters"),
  40438. default: true
  40439. },
  40440. {
  40441. name: "Macro",
  40442. height: math.unit(50, "meters")
  40443. },
  40444. ]
  40445. ))
  40446. characterMakers.push(() => makeCharacter(
  40447. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40448. {
  40449. front: {
  40450. height: math.unit(5, "feet"),
  40451. weight: math.unit(185, "lb"),
  40452. name: "Front",
  40453. image: {
  40454. source: "./media/characters/kyera/front.svg",
  40455. extra: 1875/1790,
  40456. bottom: 96/1971
  40457. }
  40458. },
  40459. },
  40460. [
  40461. {
  40462. name: "Normal",
  40463. height: math.unit(5, "feet"),
  40464. default: true
  40465. },
  40466. ]
  40467. ))
  40468. characterMakers.push(() => makeCharacter(
  40469. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40470. {
  40471. front: {
  40472. height: math.unit(7 + 6/12, "feet"),
  40473. weight: math.unit(540, "lb"),
  40474. name: "Front",
  40475. image: {
  40476. source: "./media/characters/yuko/front.svg",
  40477. extra: 1282/1222,
  40478. bottom: 101/1383
  40479. }
  40480. },
  40481. frontClothed: {
  40482. height: math.unit(7 + 6/12, "feet"),
  40483. weight: math.unit(540, "lb"),
  40484. name: "Front (Clothed)",
  40485. image: {
  40486. source: "./media/characters/yuko/front-clothed.svg",
  40487. extra: 1282/1222,
  40488. bottom: 101/1383
  40489. }
  40490. },
  40491. },
  40492. [
  40493. {
  40494. name: "Normal",
  40495. height: math.unit(7 + 6/12, "feet"),
  40496. default: true
  40497. },
  40498. {
  40499. name: "Macro",
  40500. height: math.unit(26 + 9/12, "feet")
  40501. },
  40502. {
  40503. name: "Megamacro",
  40504. height: math.unit(300, "feet")
  40505. },
  40506. {
  40507. name: "Gigamacro",
  40508. height: math.unit(5000, "feet")
  40509. },
  40510. {
  40511. name: "Planetary",
  40512. height: math.unit(10000, "miles")
  40513. },
  40514. ]
  40515. ))
  40516. characterMakers.push(() => makeCharacter(
  40517. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40518. {
  40519. front: {
  40520. height: math.unit(8 + 2/12, "feet"),
  40521. weight: math.unit(600, "lb"),
  40522. name: "Front",
  40523. image: {
  40524. source: "./media/characters/deam-nitrel/front.svg",
  40525. extra: 1308/1234,
  40526. bottom: 125/1433
  40527. }
  40528. },
  40529. },
  40530. [
  40531. {
  40532. name: "Normal",
  40533. height: math.unit(8 + 2/12, "feet"),
  40534. default: true
  40535. },
  40536. ]
  40537. ))
  40538. characterMakers.push(() => makeCharacter(
  40539. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40540. {
  40541. front: {
  40542. height: math.unit(6.1, "feet"),
  40543. weight: math.unit(180, "lb"),
  40544. name: "Front",
  40545. image: {
  40546. source: "./media/characters/skyress/front.svg",
  40547. extra: 1045/915,
  40548. bottom: 28/1073
  40549. }
  40550. },
  40551. maw: {
  40552. height: math.unit(1, "feet"),
  40553. name: "Maw",
  40554. image: {
  40555. source: "./media/characters/skyress/maw.svg"
  40556. }
  40557. },
  40558. },
  40559. [
  40560. {
  40561. name: "Normal",
  40562. height: math.unit(6.1, "feet"),
  40563. default: true
  40564. },
  40565. {
  40566. name: "Macro",
  40567. height: math.unit(200, "feet")
  40568. },
  40569. ]
  40570. ))
  40571. characterMakers.push(() => makeCharacter(
  40572. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40573. {
  40574. front: {
  40575. height: math.unit(4 + 2/12, "feet"),
  40576. weight: math.unit(40, "kg"),
  40577. name: "Front",
  40578. image: {
  40579. source: "./media/characters/amethyst-jones/front.svg",
  40580. extra: 1220/1150,
  40581. bottom: 101/1321
  40582. }
  40583. },
  40584. },
  40585. [
  40586. {
  40587. name: "Normal",
  40588. height: math.unit(4 + 2/12, "feet"),
  40589. default: true
  40590. },
  40591. ]
  40592. ))
  40593. characterMakers.push(() => makeCharacter(
  40594. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  40595. {
  40596. front: {
  40597. height: math.unit(1.7, "m"),
  40598. weight: math.unit(135, "lb"),
  40599. name: "Front",
  40600. image: {
  40601. source: "./media/characters/jade/front.svg",
  40602. extra: 1818/1767,
  40603. bottom: 32/1850
  40604. }
  40605. },
  40606. back: {
  40607. height: math.unit(1.7, "m"),
  40608. weight: math.unit(135, "lb"),
  40609. name: "Back",
  40610. image: {
  40611. source: "./media/characters/jade/back.svg",
  40612. extra: 1869/1809,
  40613. bottom: 35/1904
  40614. }
  40615. },
  40616. hand: {
  40617. height: math.unit(0.24, "m"),
  40618. name: "Hand",
  40619. image: {
  40620. source: "./media/characters/jade/hand.svg"
  40621. }
  40622. },
  40623. foot: {
  40624. height: math.unit(0.263, "m"),
  40625. name: "Foot",
  40626. image: {
  40627. source: "./media/characters/jade/foot.svg"
  40628. }
  40629. },
  40630. dick: {
  40631. height: math.unit(0.47, "m"),
  40632. name: "Dick",
  40633. image: {
  40634. source: "./media/characters/jade/dick.svg"
  40635. }
  40636. },
  40637. },
  40638. [
  40639. {
  40640. name: "Micro",
  40641. height: math.unit(22, "cm")
  40642. },
  40643. {
  40644. name: "Normal",
  40645. height: math.unit(1.7, "m"),
  40646. default: true
  40647. },
  40648. {
  40649. name: "Macro",
  40650. height: math.unit(152, "m")
  40651. },
  40652. ]
  40653. ))
  40654. characterMakers.push(() => makeCharacter(
  40655. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  40656. {
  40657. front: {
  40658. height: math.unit(100, "miles"),
  40659. weight: math.unit(20000, "tons"),
  40660. name: "Front",
  40661. image: {
  40662. source: "./media/characters/cookie/front.svg",
  40663. extra: 1125/1070,
  40664. bottom: 30/1155
  40665. }
  40666. },
  40667. },
  40668. [
  40669. {
  40670. name: "Big",
  40671. height: math.unit(50, "feet")
  40672. },
  40673. {
  40674. name: "Macro",
  40675. height: math.unit(100, "miles"),
  40676. default: true
  40677. },
  40678. {
  40679. name: "Megamacro",
  40680. height: math.unit(90000, "miles")
  40681. },
  40682. ]
  40683. ))
  40684. characterMakers.push(() => makeCharacter(
  40685. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  40686. {
  40687. front: {
  40688. height: math.unit(6, "feet"),
  40689. weight: math.unit(145, "lb"),
  40690. name: "Front",
  40691. image: {
  40692. source: "./media/characters/farzian/front.svg",
  40693. extra: 1902/1693,
  40694. bottom: 108/2010
  40695. }
  40696. },
  40697. },
  40698. [
  40699. {
  40700. name: "Macro",
  40701. height: math.unit(500, "feet"),
  40702. default: true
  40703. },
  40704. ]
  40705. ))
  40706. characterMakers.push(() => makeCharacter(
  40707. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  40708. {
  40709. front: {
  40710. height: math.unit(3 + 6/12, "feet"),
  40711. weight: math.unit(50, "lb"),
  40712. name: "Front",
  40713. image: {
  40714. source: "./media/characters/kimberly-tilson/front.svg",
  40715. extra: 1400/1322,
  40716. bottom: 36/1436
  40717. }
  40718. },
  40719. back: {
  40720. height: math.unit(3 + 6/12, "feet"),
  40721. weight: math.unit(50, "lb"),
  40722. name: "Back",
  40723. image: {
  40724. source: "./media/characters/kimberly-tilson/back.svg",
  40725. extra: 1370/1307,
  40726. bottom: 20/1390
  40727. }
  40728. },
  40729. },
  40730. [
  40731. {
  40732. name: "Normal",
  40733. height: math.unit(3 + 6/12, "feet"),
  40734. default: true
  40735. },
  40736. ]
  40737. ))
  40738. characterMakers.push(() => makeCharacter(
  40739. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  40740. {
  40741. front: {
  40742. height: math.unit(1148, "feet"),
  40743. weight: math.unit(34057, "lb"),
  40744. name: "Front",
  40745. image: {
  40746. source: "./media/characters/harthos/front.svg",
  40747. extra: 1391/1339,
  40748. bottom: 13/1404
  40749. }
  40750. },
  40751. },
  40752. [
  40753. {
  40754. name: "Macro",
  40755. height: math.unit(1148, "feet"),
  40756. default: true
  40757. },
  40758. ]
  40759. ))
  40760. characterMakers.push(() => makeCharacter(
  40761. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  40762. {
  40763. front: {
  40764. height: math.unit(15, "feet"),
  40765. name: "Front",
  40766. image: {
  40767. source: "./media/characters/hypatia/front.svg",
  40768. extra: 1653/1591,
  40769. bottom: 79/1732
  40770. }
  40771. },
  40772. },
  40773. [
  40774. {
  40775. name: "Normal",
  40776. height: math.unit(15, "feet")
  40777. },
  40778. {
  40779. name: "Small",
  40780. height: math.unit(300, "feet")
  40781. },
  40782. {
  40783. name: "Macro",
  40784. height: math.unit(2500, "feet"),
  40785. default: true
  40786. },
  40787. {
  40788. name: "Mega Macro",
  40789. height: math.unit(1500, "miles")
  40790. },
  40791. {
  40792. name: "Giga Macro",
  40793. height: math.unit(1.5e6, "miles")
  40794. },
  40795. ]
  40796. ))
  40797. characterMakers.push(() => makeCharacter(
  40798. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  40799. {
  40800. front: {
  40801. height: math.unit(6, "feet"),
  40802. weight: math.unit(200, "lb"),
  40803. name: "Front",
  40804. image: {
  40805. source: "./media/characters/wulver/front.svg",
  40806. extra: 1724/1632,
  40807. bottom: 130/1854
  40808. }
  40809. },
  40810. frontNsfw: {
  40811. height: math.unit(6, "feet"),
  40812. weight: math.unit(200, "lb"),
  40813. name: "Front (NSFW)",
  40814. image: {
  40815. source: "./media/characters/wulver/front-nsfw.svg",
  40816. extra: 1724/1632,
  40817. bottom: 130/1854
  40818. }
  40819. },
  40820. },
  40821. [
  40822. {
  40823. name: "Human-Sized",
  40824. height: math.unit(6, "feet")
  40825. },
  40826. {
  40827. name: "Normal",
  40828. height: math.unit(4, "meters"),
  40829. default: true
  40830. },
  40831. {
  40832. name: "Large",
  40833. height: math.unit(6, "m")
  40834. },
  40835. ]
  40836. ))
  40837. characterMakers.push(() => makeCharacter(
  40838. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  40839. {
  40840. front: {
  40841. height: math.unit(7, "feet"),
  40842. name: "Front",
  40843. image: {
  40844. source: "./media/characters/maru/front.svg",
  40845. extra: 1595/1570,
  40846. bottom: 0/1595
  40847. }
  40848. },
  40849. },
  40850. [
  40851. {
  40852. name: "Normal",
  40853. height: math.unit(7, "feet"),
  40854. default: true
  40855. },
  40856. {
  40857. name: "Macro",
  40858. height: math.unit(700, "feet")
  40859. },
  40860. {
  40861. name: "Mega Macro",
  40862. height: math.unit(25, "miles")
  40863. },
  40864. ]
  40865. ))
  40866. characterMakers.push(() => makeCharacter(
  40867. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  40868. {
  40869. front: {
  40870. height: math.unit(6, "feet"),
  40871. weight: math.unit(170, "lb"),
  40872. name: "Front",
  40873. image: {
  40874. source: "./media/characters/xenon/front.svg",
  40875. extra: 1376/1305,
  40876. bottom: 56/1432
  40877. }
  40878. },
  40879. back: {
  40880. height: math.unit(6, "feet"),
  40881. weight: math.unit(170, "lb"),
  40882. name: "Back",
  40883. image: {
  40884. source: "./media/characters/xenon/back.svg",
  40885. extra: 1328/1259,
  40886. bottom: 95/1423
  40887. }
  40888. },
  40889. maw: {
  40890. height: math.unit(0.52, "feet"),
  40891. name: "Maw",
  40892. image: {
  40893. source: "./media/characters/xenon/maw.svg"
  40894. }
  40895. },
  40896. hand: {
  40897. height: math.unit(0.82, "feet"),
  40898. name: "Hand",
  40899. image: {
  40900. source: "./media/characters/xenon/hand.svg"
  40901. }
  40902. },
  40903. foot: {
  40904. height: math.unit(1.13, "feet"),
  40905. name: "Foot",
  40906. image: {
  40907. source: "./media/characters/xenon/foot.svg"
  40908. }
  40909. },
  40910. },
  40911. [
  40912. {
  40913. name: "Micro",
  40914. height: math.unit(0.8, "inches")
  40915. },
  40916. {
  40917. name: "Normal",
  40918. height: math.unit(6, "feet")
  40919. },
  40920. {
  40921. name: "Macro",
  40922. height: math.unit(50, "feet"),
  40923. default: true
  40924. },
  40925. {
  40926. name: "Macro+",
  40927. height: math.unit(250, "feet")
  40928. },
  40929. {
  40930. name: "Megamacro",
  40931. height: math.unit(1500, "feet")
  40932. },
  40933. ]
  40934. ))
  40935. characterMakers.push(() => makeCharacter(
  40936. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  40937. {
  40938. front: {
  40939. height: math.unit(7 + 5/12, "feet"),
  40940. name: "Front",
  40941. image: {
  40942. source: "./media/characters/zane/front.svg",
  40943. extra: 1260/1203,
  40944. bottom: 94/1354
  40945. }
  40946. },
  40947. back: {
  40948. height: math.unit(5.05, "feet"),
  40949. name: "Back",
  40950. image: {
  40951. source: "./media/characters/zane/back.svg",
  40952. extra: 893/829,
  40953. bottom: 30/923
  40954. }
  40955. },
  40956. werewolf: {
  40957. height: math.unit(11, "feet"),
  40958. name: "Werewolf",
  40959. image: {
  40960. source: "./media/characters/zane/werewolf.svg",
  40961. extra: 1383/1323,
  40962. bottom: 89/1472
  40963. }
  40964. },
  40965. foot: {
  40966. height: math.unit(1.46, "feet"),
  40967. name: "Foot",
  40968. image: {
  40969. source: "./media/characters/zane/foot.svg"
  40970. }
  40971. },
  40972. footFront: {
  40973. height: math.unit(0.784, "feet"),
  40974. name: "Foot (Front)",
  40975. image: {
  40976. source: "./media/characters/zane/foot-front.svg"
  40977. }
  40978. },
  40979. dick: {
  40980. height: math.unit(1.95, "feet"),
  40981. name: "Dick",
  40982. image: {
  40983. source: "./media/characters/zane/dick.svg"
  40984. }
  40985. },
  40986. dickWerewolf: {
  40987. height: math.unit(3.77, "feet"),
  40988. name: "Dick (Werewolf)",
  40989. image: {
  40990. source: "./media/characters/zane/dick.svg"
  40991. }
  40992. },
  40993. },
  40994. [
  40995. {
  40996. name: "Normal",
  40997. height: math.unit(7 + 5/12, "feet"),
  40998. default: true
  40999. },
  41000. ]
  41001. ))
  41002. characterMakers.push(() => makeCharacter(
  41003. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41004. {
  41005. front: {
  41006. height: math.unit(6 + 2/12, "feet"),
  41007. weight: math.unit(284, "lb"),
  41008. name: "Front",
  41009. image: {
  41010. source: "./media/characters/benni-desparque/front.svg",
  41011. extra: 1353/1126,
  41012. bottom: 69/1422
  41013. }
  41014. },
  41015. },
  41016. [
  41017. {
  41018. name: "Civilian",
  41019. height: math.unit(6 + 2/12, "feet")
  41020. },
  41021. {
  41022. name: "Normal",
  41023. height: math.unit(98, "feet"),
  41024. default: true
  41025. },
  41026. {
  41027. name: "Kaiju Fighter",
  41028. height: math.unit(268, "feet")
  41029. },
  41030. ]
  41031. ))
  41032. characterMakers.push(() => makeCharacter(
  41033. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41034. {
  41035. front: {
  41036. height: math.unit(5, "feet"),
  41037. weight: math.unit(105, "lb"),
  41038. name: "Front",
  41039. image: {
  41040. source: "./media/characters/maxine/front.svg",
  41041. extra: 1386/1250,
  41042. bottom: 71/1457
  41043. }
  41044. },
  41045. },
  41046. [
  41047. {
  41048. name: "Normal",
  41049. height: math.unit(5, "feet"),
  41050. default: true
  41051. },
  41052. ]
  41053. ))
  41054. characterMakers.push(() => makeCharacter(
  41055. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41056. {
  41057. front: {
  41058. height: math.unit(11 + 7/12, "feet"),
  41059. weight: math.unit(9576, "lb"),
  41060. name: "Front",
  41061. image: {
  41062. source: "./media/characters/scaly/front.svg",
  41063. extra: 888/867,
  41064. bottom: 36/924
  41065. }
  41066. },
  41067. },
  41068. [
  41069. {
  41070. name: "Normal",
  41071. height: math.unit(11 + 7/12, "feet"),
  41072. default: true
  41073. },
  41074. ]
  41075. ))
  41076. characterMakers.push(() => makeCharacter(
  41077. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41078. {
  41079. front: {
  41080. height: math.unit(6 + 3/12, "feet"),
  41081. name: "Front",
  41082. image: {
  41083. source: "./media/characters/saelria/front.svg",
  41084. extra: 1243/1138,
  41085. bottom: 46/1289
  41086. }
  41087. },
  41088. },
  41089. [
  41090. {
  41091. name: "Micro",
  41092. height: math.unit(6, "inches"),
  41093. },
  41094. {
  41095. name: "Normal",
  41096. height: math.unit(6 + 3/12, "feet"),
  41097. default: true
  41098. },
  41099. {
  41100. name: "Macro",
  41101. height: math.unit(25, "feet")
  41102. },
  41103. ]
  41104. ))
  41105. characterMakers.push(() => makeCharacter(
  41106. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41107. {
  41108. front: {
  41109. height: math.unit(80, "meters"),
  41110. weight: math.unit(7000, "tonnes"),
  41111. name: "Front",
  41112. image: {
  41113. source: "./media/characters/tef/front.svg",
  41114. extra: 2036/1991,
  41115. bottom: 54/2090
  41116. }
  41117. },
  41118. back: {
  41119. height: math.unit(80, "meters"),
  41120. weight: math.unit(7000, "tonnes"),
  41121. name: "Back",
  41122. image: {
  41123. source: "./media/characters/tef/back.svg",
  41124. extra: 2036/1991,
  41125. bottom: 54/2090
  41126. }
  41127. },
  41128. },
  41129. [
  41130. {
  41131. name: "Macro",
  41132. height: math.unit(80, "meters"),
  41133. default: true
  41134. },
  41135. ]
  41136. ))
  41137. characterMakers.push(() => makeCharacter(
  41138. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41139. {
  41140. front: {
  41141. height: math.unit(13, "feet"),
  41142. weight: math.unit(6, "tons"),
  41143. name: "Front",
  41144. image: {
  41145. source: "./media/characters/rover/front.svg",
  41146. extra: 1233/1156,
  41147. bottom: 50/1283
  41148. }
  41149. },
  41150. back: {
  41151. height: math.unit(13, "feet"),
  41152. weight: math.unit(6, "tons"),
  41153. name: "Back",
  41154. image: {
  41155. source: "./media/characters/rover/back.svg",
  41156. extra: 1327/1258,
  41157. bottom: 39/1366
  41158. }
  41159. },
  41160. },
  41161. [
  41162. {
  41163. name: "Normal",
  41164. height: math.unit(13, "feet"),
  41165. default: true
  41166. },
  41167. {
  41168. name: "Macro",
  41169. height: math.unit(1300, "feet")
  41170. },
  41171. {
  41172. name: "Megamacro",
  41173. height: math.unit(1300, "miles")
  41174. },
  41175. {
  41176. name: "Gigamacro",
  41177. height: math.unit(1300000, "miles")
  41178. },
  41179. ]
  41180. ))
  41181. characterMakers.push(() => makeCharacter(
  41182. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41183. {
  41184. front: {
  41185. height: math.unit(6, "feet"),
  41186. weight: math.unit(150, "lb"),
  41187. name: "Front",
  41188. image: {
  41189. source: "./media/characters/ariz/front.svg",
  41190. extra: 1401/1346,
  41191. bottom: 5/1406
  41192. }
  41193. },
  41194. },
  41195. [
  41196. {
  41197. name: "Normal",
  41198. height: math.unit(10, "feet"),
  41199. default: true
  41200. },
  41201. ]
  41202. ))
  41203. characterMakers.push(() => makeCharacter(
  41204. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41205. {
  41206. front: {
  41207. height: math.unit(6, "feet"),
  41208. weight: math.unit(140, "lb"),
  41209. name: "Front",
  41210. image: {
  41211. source: "./media/characters/sigrun/front.svg",
  41212. extra: 1418/1359,
  41213. bottom: 27/1445
  41214. }
  41215. },
  41216. },
  41217. [
  41218. {
  41219. name: "Macro",
  41220. height: math.unit(35, "feet"),
  41221. default: true
  41222. },
  41223. ]
  41224. ))
  41225. characterMakers.push(() => makeCharacter(
  41226. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41227. {
  41228. front: {
  41229. height: math.unit(6, "feet"),
  41230. weight: math.unit(150, "lb"),
  41231. name: "Front",
  41232. image: {
  41233. source: "./media/characters/numin/front.svg",
  41234. extra: 1433/1388,
  41235. bottom: 12/1445
  41236. }
  41237. },
  41238. },
  41239. [
  41240. {
  41241. name: "Macro",
  41242. height: math.unit(21.5, "km"),
  41243. default: true
  41244. },
  41245. ]
  41246. ))
  41247. characterMakers.push(() => makeCharacter(
  41248. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41249. {
  41250. front: {
  41251. height: math.unit(6, "feet"),
  41252. weight: math.unit(463, "lb"),
  41253. name: "Front",
  41254. image: {
  41255. source: "./media/characters/melwa/front.svg",
  41256. extra: 1307/1248,
  41257. bottom: 93/1400
  41258. }
  41259. },
  41260. },
  41261. [
  41262. {
  41263. name: "Macro",
  41264. height: math.unit(50, "meters"),
  41265. default: true
  41266. },
  41267. ]
  41268. ))
  41269. characterMakers.push(() => makeCharacter(
  41270. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41271. {
  41272. front: {
  41273. height: math.unit(325, "feet"),
  41274. name: "Front",
  41275. image: {
  41276. source: "./media/characters/zorkaiju/front.svg",
  41277. extra: 1955/1814,
  41278. bottom: 40/1995
  41279. }
  41280. },
  41281. frontExtended: {
  41282. height: math.unit(325, "feet"),
  41283. name: "Front (Extended)",
  41284. image: {
  41285. source: "./media/characters/zorkaiju/front-extended.svg",
  41286. extra: 1955/1814,
  41287. bottom: 40/1995
  41288. }
  41289. },
  41290. side: {
  41291. height: math.unit(325, "feet"),
  41292. name: "Side",
  41293. image: {
  41294. source: "./media/characters/zorkaiju/side.svg",
  41295. extra: 1495/1396,
  41296. bottom: 17/1512
  41297. }
  41298. },
  41299. sideExtended: {
  41300. height: math.unit(325, "feet"),
  41301. name: "Side (Extended)",
  41302. image: {
  41303. source: "./media/characters/zorkaiju/side-extended.svg",
  41304. extra: 1495/1396,
  41305. bottom: 17/1512
  41306. }
  41307. },
  41308. back: {
  41309. height: math.unit(325, "feet"),
  41310. name: "Back",
  41311. image: {
  41312. source: "./media/characters/zorkaiju/back.svg",
  41313. extra: 1959/1821,
  41314. bottom: 31/1990
  41315. }
  41316. },
  41317. backExtended: {
  41318. height: math.unit(325, "feet"),
  41319. name: "Back (Extended)",
  41320. image: {
  41321. source: "./media/characters/zorkaiju/back-extended.svg",
  41322. extra: 1959/1821,
  41323. bottom: 31/1990
  41324. }
  41325. },
  41326. hand: {
  41327. height: math.unit(58.4, "feet"),
  41328. name: "Hand",
  41329. image: {
  41330. source: "./media/characters/zorkaiju/hand.svg"
  41331. }
  41332. },
  41333. handExtended: {
  41334. height: math.unit(61.4, "feet"),
  41335. name: "Hand (Extended)",
  41336. image: {
  41337. source: "./media/characters/zorkaiju/hand-extended.svg"
  41338. }
  41339. },
  41340. foot: {
  41341. height: math.unit(95, "feet"),
  41342. name: "Foot",
  41343. image: {
  41344. source: "./media/characters/zorkaiju/foot.svg"
  41345. }
  41346. },
  41347. leftArm: {
  41348. height: math.unit(59, "feet"),
  41349. name: "Left Arm",
  41350. image: {
  41351. source: "./media/characters/zorkaiju/left-arm.svg"
  41352. }
  41353. },
  41354. rightArm: {
  41355. height: math.unit(59, "feet"),
  41356. name: "Right Arm",
  41357. image: {
  41358. source: "./media/characters/zorkaiju/right-arm.svg"
  41359. }
  41360. },
  41361. tail: {
  41362. height: math.unit(104, "feet"),
  41363. name: "Tail",
  41364. image: {
  41365. source: "./media/characters/zorkaiju/tail.svg"
  41366. }
  41367. },
  41368. tailExtended: {
  41369. height: math.unit(104, "feet"),
  41370. name: "Tail (Extended)",
  41371. image: {
  41372. source: "./media/characters/zorkaiju/tail-extended.svg"
  41373. }
  41374. },
  41375. tailBottom: {
  41376. height: math.unit(104, "feet"),
  41377. name: "Tail Bottom",
  41378. image: {
  41379. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41380. }
  41381. },
  41382. crystal: {
  41383. height: math.unit(27.54, "feet"),
  41384. name: "Crystal",
  41385. image: {
  41386. source: "./media/characters/zorkaiju/crystal.svg"
  41387. }
  41388. },
  41389. },
  41390. [
  41391. {
  41392. name: "Kaiju",
  41393. height: math.unit(325, "feet"),
  41394. default: true
  41395. },
  41396. ]
  41397. ))
  41398. characterMakers.push(() => makeCharacter(
  41399. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41400. {
  41401. front: {
  41402. height: math.unit(6 + 1/12, "feet"),
  41403. weight: math.unit(115, "lb"),
  41404. name: "Front",
  41405. image: {
  41406. source: "./media/characters/bailey-belfry/front.svg",
  41407. extra: 1240/1121,
  41408. bottom: 101/1341
  41409. }
  41410. },
  41411. },
  41412. [
  41413. {
  41414. name: "Normal",
  41415. height: math.unit(6 + 1/12, "feet"),
  41416. default: true
  41417. },
  41418. ]
  41419. ))
  41420. characterMakers.push(() => makeCharacter(
  41421. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41422. {
  41423. side: {
  41424. height: math.unit(4, "meters"),
  41425. weight: math.unit(250, "kg"),
  41426. name: "Side",
  41427. image: {
  41428. source: "./media/characters/blacky/side.svg",
  41429. extra: 1027/919,
  41430. bottom: 43/1070
  41431. }
  41432. },
  41433. maw: {
  41434. height: math.unit(1, "meters"),
  41435. name: "Maw",
  41436. image: {
  41437. source: "./media/characters/blacky/maw.svg"
  41438. }
  41439. },
  41440. paw: {
  41441. height: math.unit(1, "meters"),
  41442. name: "Paw",
  41443. image: {
  41444. source: "./media/characters/blacky/paw.svg"
  41445. }
  41446. },
  41447. },
  41448. [
  41449. {
  41450. name: "Normal",
  41451. height: math.unit(4, "meters"),
  41452. default: true
  41453. },
  41454. ]
  41455. ))
  41456. characterMakers.push(() => makeCharacter(
  41457. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41458. {
  41459. front: {
  41460. height: math.unit(170, "cm"),
  41461. weight: math.unit(66, "kg"),
  41462. name: "Front",
  41463. image: {
  41464. source: "./media/characters/thux-ei/front.svg",
  41465. extra: 1109/1011,
  41466. bottom: 8/1117
  41467. }
  41468. },
  41469. },
  41470. [
  41471. {
  41472. name: "Normal",
  41473. height: math.unit(170, "cm"),
  41474. default: true
  41475. },
  41476. ]
  41477. ))
  41478. characterMakers.push(() => makeCharacter(
  41479. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41480. {
  41481. front: {
  41482. height: math.unit(5, "feet"),
  41483. weight: math.unit(120, "lb"),
  41484. name: "Front",
  41485. image: {
  41486. source: "./media/characters/roxanne-voltaire/front.svg",
  41487. extra: 1901/1779,
  41488. bottom: 53/1954
  41489. }
  41490. },
  41491. },
  41492. [
  41493. {
  41494. name: "Normal",
  41495. height: math.unit(5, "feet"),
  41496. default: true
  41497. },
  41498. {
  41499. name: "Giant",
  41500. height: math.unit(50, "feet")
  41501. },
  41502. {
  41503. name: "Titan",
  41504. height: math.unit(500, "feet")
  41505. },
  41506. {
  41507. name: "Macro",
  41508. height: math.unit(5000, "feet")
  41509. },
  41510. {
  41511. name: "Megamacro",
  41512. height: math.unit(50000, "feet")
  41513. },
  41514. {
  41515. name: "Gigamacro",
  41516. height: math.unit(500000, "feet")
  41517. },
  41518. {
  41519. name: "Teramacro",
  41520. height: math.unit(5e6, "feet")
  41521. },
  41522. ]
  41523. ))
  41524. characterMakers.push(() => makeCharacter(
  41525. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41526. {
  41527. front: {
  41528. height: math.unit(6 + 2/12, "feet"),
  41529. name: "Front",
  41530. image: {
  41531. source: "./media/characters/squeaks/front.svg",
  41532. extra: 1823/1768,
  41533. bottom: 138/1961
  41534. }
  41535. },
  41536. },
  41537. [
  41538. {
  41539. name: "Micro",
  41540. height: math.unit(0.5, "inches")
  41541. },
  41542. {
  41543. name: "Normal",
  41544. height: math.unit(6 + 2/12, "feet"),
  41545. default: true
  41546. },
  41547. {
  41548. name: "Macro",
  41549. height: math.unit(600, "feet")
  41550. },
  41551. ]
  41552. ))
  41553. characterMakers.push(() => makeCharacter(
  41554. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41555. {
  41556. front: {
  41557. height: math.unit(1.72, "meters"),
  41558. name: "Front",
  41559. image: {
  41560. source: "./media/characters/archinger/front.svg",
  41561. extra: 1861/1675,
  41562. bottom: 125/1986
  41563. }
  41564. },
  41565. back: {
  41566. height: math.unit(1.72, "meters"),
  41567. name: "Back",
  41568. image: {
  41569. source: "./media/characters/archinger/back.svg",
  41570. extra: 1844/1701,
  41571. bottom: 104/1948
  41572. }
  41573. },
  41574. cock: {
  41575. height: math.unit(0.59, "feet"),
  41576. name: "Cock",
  41577. image: {
  41578. source: "./media/characters/archinger/cock.svg"
  41579. }
  41580. },
  41581. },
  41582. [
  41583. {
  41584. name: "Normal",
  41585. height: math.unit(1.72, "meters"),
  41586. default: true
  41587. },
  41588. {
  41589. name: "Macro",
  41590. height: math.unit(84, "meters")
  41591. },
  41592. {
  41593. name: "Macro+",
  41594. height: math.unit(112, "meters")
  41595. },
  41596. {
  41597. name: "Macro++",
  41598. height: math.unit(960, "meters")
  41599. },
  41600. {
  41601. name: "Macro+++",
  41602. height: math.unit(4, "km")
  41603. },
  41604. {
  41605. name: "Macro++++",
  41606. height: math.unit(48, "km")
  41607. },
  41608. {
  41609. name: "Macro+++++",
  41610. height: math.unit(4500, "km")
  41611. },
  41612. ]
  41613. ))
  41614. characterMakers.push(() => makeCharacter(
  41615. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  41616. {
  41617. front: {
  41618. height: math.unit(5 + 5/12, "feet"),
  41619. name: "Front",
  41620. image: {
  41621. source: "./media/characters/alsnapz/front.svg",
  41622. extra: 1157/1065,
  41623. bottom: 42/1199
  41624. }
  41625. },
  41626. },
  41627. [
  41628. {
  41629. name: "Normal",
  41630. height: math.unit(5 + 5/12, "feet"),
  41631. default: true
  41632. },
  41633. ]
  41634. ))
  41635. characterMakers.push(() => makeCharacter(
  41636. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  41637. {
  41638. side: {
  41639. height: math.unit(3.2, "earths"),
  41640. name: "Side",
  41641. image: {
  41642. source: "./media/characters/mag/side.svg",
  41643. extra: 1331/1008,
  41644. bottom: 52/1383
  41645. }
  41646. },
  41647. wing: {
  41648. height: math.unit(1.94, "earths"),
  41649. name: "Wing",
  41650. image: {
  41651. source: "./media/characters/mag/wing.svg"
  41652. }
  41653. },
  41654. dick: {
  41655. height: math.unit(1.8, "earths"),
  41656. name: "Dick",
  41657. image: {
  41658. source: "./media/characters/mag/dick.svg"
  41659. }
  41660. },
  41661. ass: {
  41662. height: math.unit(1.33, "earths"),
  41663. name: "Ass",
  41664. image: {
  41665. source: "./media/characters/mag/ass.svg"
  41666. }
  41667. },
  41668. head: {
  41669. height: math.unit(1.1, "earths"),
  41670. name: "Head",
  41671. image: {
  41672. source: "./media/characters/mag/head.svg"
  41673. }
  41674. },
  41675. maw: {
  41676. height: math.unit(1.62, "earths"),
  41677. name: "Maw",
  41678. image: {
  41679. source: "./media/characters/mag/maw.svg"
  41680. }
  41681. },
  41682. },
  41683. [
  41684. {
  41685. name: "Small",
  41686. height: math.unit(162, "feet")
  41687. },
  41688. {
  41689. name: "Normal",
  41690. height: math.unit(3.2, "earths"),
  41691. default: true
  41692. },
  41693. ]
  41694. ))
  41695. characterMakers.push(() => makeCharacter(
  41696. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  41697. {
  41698. front: {
  41699. height: math.unit(512, "feet"),
  41700. weight: math.unit(63509, "tonnes"),
  41701. name: "Front",
  41702. image: {
  41703. source: "./media/characters/vorrel-harroc/front.svg",
  41704. extra: 1075/1063,
  41705. bottom: 62/1137
  41706. }
  41707. },
  41708. },
  41709. [
  41710. {
  41711. name: "Normal",
  41712. height: math.unit(10, "feet")
  41713. },
  41714. {
  41715. name: "Macro",
  41716. height: math.unit(512, "feet"),
  41717. default: true
  41718. },
  41719. {
  41720. name: "Megamacro",
  41721. height: math.unit(256, "miles")
  41722. },
  41723. {
  41724. name: "Gigamacro",
  41725. height: math.unit(4096, "miles")
  41726. },
  41727. ]
  41728. ))
  41729. characterMakers.push(() => makeCharacter(
  41730. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  41731. {
  41732. side: {
  41733. height: math.unit(50, "feet"),
  41734. name: "Side",
  41735. image: {
  41736. source: "./media/characters/froimar/side.svg",
  41737. extra: 855/638,
  41738. bottom: 99/954
  41739. }
  41740. },
  41741. },
  41742. [
  41743. {
  41744. name: "Macro",
  41745. height: math.unit(50, "feet"),
  41746. default: true
  41747. },
  41748. ]
  41749. ))
  41750. characterMakers.push(() => makeCharacter(
  41751. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  41752. {
  41753. front: {
  41754. height: math.unit(210, "miles"),
  41755. name: "Front",
  41756. image: {
  41757. source: "./media/characters/timothy/front.svg",
  41758. extra: 1007/943,
  41759. bottom: 62/1069
  41760. }
  41761. },
  41762. frontSkirt: {
  41763. height: math.unit(210, "miles"),
  41764. name: "Front (Skirt)",
  41765. image: {
  41766. source: "./media/characters/timothy/front-skirt.svg",
  41767. extra: 1007/943,
  41768. bottom: 62/1069
  41769. }
  41770. },
  41771. frontCoat: {
  41772. height: math.unit(210, "miles"),
  41773. name: "Front (Coat)",
  41774. image: {
  41775. source: "./media/characters/timothy/front-coat.svg",
  41776. extra: 1007/943,
  41777. bottom: 62/1069
  41778. }
  41779. },
  41780. },
  41781. [
  41782. {
  41783. name: "Macro",
  41784. height: math.unit(210, "miles"),
  41785. default: true
  41786. },
  41787. {
  41788. name: "Megamacro",
  41789. height: math.unit(210000, "miles")
  41790. },
  41791. ]
  41792. ))
  41793. characterMakers.push(() => makeCharacter(
  41794. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  41795. {
  41796. front: {
  41797. height: math.unit(188, "feet"),
  41798. name: "Front",
  41799. image: {
  41800. source: "./media/characters/pyotr/front.svg",
  41801. extra: 1912/1826,
  41802. bottom: 18/1930
  41803. }
  41804. },
  41805. },
  41806. [
  41807. {
  41808. name: "Macro",
  41809. height: math.unit(188, "feet"),
  41810. default: true
  41811. },
  41812. {
  41813. name: "Megamacro",
  41814. height: math.unit(8, "miles")
  41815. },
  41816. ]
  41817. ))
  41818. characterMakers.push(() => makeCharacter(
  41819. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  41820. {
  41821. side: {
  41822. height: math.unit(10, "feet"),
  41823. weight: math.unit(4500, "lb"),
  41824. name: "Side",
  41825. image: {
  41826. source: "./media/characters/ackart/side.svg",
  41827. extra: 1776/1668,
  41828. bottom: 116/1892
  41829. }
  41830. },
  41831. },
  41832. [
  41833. {
  41834. name: "Normal",
  41835. height: math.unit(10, "feet"),
  41836. default: true
  41837. },
  41838. ]
  41839. ))
  41840. characterMakers.push(() => makeCharacter(
  41841. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  41842. {
  41843. side: {
  41844. height: math.unit(21, "feet"),
  41845. name: "Side",
  41846. image: {
  41847. source: "./media/characters/nolow/side.svg",
  41848. extra: 1484/1434,
  41849. bottom: 85/1569
  41850. }
  41851. },
  41852. sideErect: {
  41853. height: math.unit(21, "feet"),
  41854. name: "Side-erect",
  41855. image: {
  41856. source: "./media/characters/nolow/side-erect.svg",
  41857. extra: 1484/1434,
  41858. bottom: 85/1569
  41859. }
  41860. },
  41861. },
  41862. [
  41863. {
  41864. name: "Regular",
  41865. height: math.unit(12, "feet")
  41866. },
  41867. {
  41868. name: "Big Chee",
  41869. height: math.unit(21, "feet"),
  41870. default: true
  41871. },
  41872. ]
  41873. ))
  41874. characterMakers.push(() => makeCharacter(
  41875. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  41876. {
  41877. front: {
  41878. height: math.unit(7, "feet"),
  41879. weight: math.unit(250, "lb"),
  41880. name: "Front",
  41881. image: {
  41882. source: "./media/characters/nines/front.svg",
  41883. extra: 1741/1607,
  41884. bottom: 41/1782
  41885. }
  41886. },
  41887. side: {
  41888. height: math.unit(7, "feet"),
  41889. weight: math.unit(250, "lb"),
  41890. name: "Side",
  41891. image: {
  41892. source: "./media/characters/nines/side.svg",
  41893. extra: 1854/1735,
  41894. bottom: 93/1947
  41895. }
  41896. },
  41897. back: {
  41898. height: math.unit(7, "feet"),
  41899. weight: math.unit(250, "lb"),
  41900. name: "Back",
  41901. image: {
  41902. source: "./media/characters/nines/back.svg",
  41903. extra: 1748/1615,
  41904. bottom: 20/1768
  41905. }
  41906. },
  41907. },
  41908. [
  41909. {
  41910. name: "Megamacro",
  41911. height: math.unit(99, "km"),
  41912. default: true
  41913. },
  41914. ]
  41915. ))
  41916. characterMakers.push(() => makeCharacter(
  41917. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  41918. {
  41919. front: {
  41920. height: math.unit(5 + 10/12, "feet"),
  41921. weight: math.unit(210, "lb"),
  41922. name: "Front",
  41923. image: {
  41924. source: "./media/characters/zenith/front.svg",
  41925. extra: 1531/1452,
  41926. bottom: 198/1729
  41927. }
  41928. },
  41929. back: {
  41930. height: math.unit(5 + 10/12, "feet"),
  41931. weight: math.unit(210, "lb"),
  41932. name: "Back",
  41933. image: {
  41934. source: "./media/characters/zenith/back.svg",
  41935. extra: 1571/1487,
  41936. bottom: 75/1646
  41937. }
  41938. },
  41939. },
  41940. [
  41941. {
  41942. name: "Normal",
  41943. height: math.unit(5 + 10/12, "feet"),
  41944. default: true
  41945. }
  41946. ]
  41947. ))
  41948. characterMakers.push(() => makeCharacter(
  41949. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  41950. {
  41951. front: {
  41952. height: math.unit(4, "feet"),
  41953. weight: math.unit(60, "lb"),
  41954. name: "Front",
  41955. image: {
  41956. source: "./media/characters/jasper/front.svg",
  41957. extra: 1450/1379,
  41958. bottom: 19/1469
  41959. }
  41960. },
  41961. },
  41962. [
  41963. {
  41964. name: "Normal",
  41965. height: math.unit(4, "feet"),
  41966. default: true
  41967. },
  41968. ]
  41969. ))
  41970. characterMakers.push(() => makeCharacter(
  41971. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  41972. {
  41973. front: {
  41974. height: math.unit(6 + 5/12, "feet"),
  41975. weight: math.unit(290, "lb"),
  41976. name: "Front",
  41977. image: {
  41978. source: "./media/characters/tiberius-thyben/front.svg",
  41979. extra: 757/739,
  41980. bottom: 39/796
  41981. }
  41982. },
  41983. },
  41984. [
  41985. {
  41986. name: "Micro",
  41987. height: math.unit(1.5, "inches")
  41988. },
  41989. {
  41990. name: "Normal",
  41991. height: math.unit(6 + 5/12, "feet"),
  41992. default: true
  41993. },
  41994. {
  41995. name: "Macro",
  41996. height: math.unit(300, "feet")
  41997. },
  41998. ]
  41999. ))
  42000. characterMakers.push(() => makeCharacter(
  42001. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42002. {
  42003. front: {
  42004. height: math.unit(5 + 6/12, "feet"),
  42005. weight: math.unit(60, "kg"),
  42006. name: "Front",
  42007. image: {
  42008. source: "./media/characters/sabre/front.svg",
  42009. extra: 738/671,
  42010. bottom: 27/765
  42011. }
  42012. },
  42013. },
  42014. [
  42015. {
  42016. name: "Teeny",
  42017. height: math.unit(2, "inches")
  42018. },
  42019. {
  42020. name: "Smol",
  42021. height: math.unit(8, "inches")
  42022. },
  42023. {
  42024. name: "Normal",
  42025. height: math.unit(5 + 6/12, "feet"),
  42026. default: true
  42027. },
  42028. {
  42029. name: "Mini-Macro",
  42030. height: math.unit(15, "feet")
  42031. },
  42032. {
  42033. name: "Macro",
  42034. height: math.unit(50, "feet")
  42035. },
  42036. ]
  42037. ))
  42038. characterMakers.push(() => makeCharacter(
  42039. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42040. {
  42041. front: {
  42042. height: math.unit(6 + 4/12, "feet"),
  42043. weight: math.unit(170, "lb"),
  42044. name: "Front",
  42045. image: {
  42046. source: "./media/characters/charlie/front.svg",
  42047. extra: 1348/1228,
  42048. bottom: 15/1363
  42049. }
  42050. },
  42051. },
  42052. [
  42053. {
  42054. name: "Macro",
  42055. height: math.unit(1700, "meters"),
  42056. default: true
  42057. },
  42058. {
  42059. name: "MegaMacro",
  42060. height: math.unit(20400, "meters")
  42061. },
  42062. ]
  42063. ))
  42064. characterMakers.push(() => makeCharacter(
  42065. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42066. {
  42067. front: {
  42068. height: math.unit(6 + 3/12, "feet"),
  42069. weight: math.unit(185, "lb"),
  42070. name: "Front",
  42071. image: {
  42072. source: "./media/characters/susan-grant/front.svg",
  42073. extra: 1351/1327,
  42074. bottom: 26/1377
  42075. }
  42076. },
  42077. },
  42078. [
  42079. {
  42080. name: "Normal",
  42081. height: math.unit(6 + 3/12, "feet"),
  42082. default: true
  42083. },
  42084. {
  42085. name: "Macro",
  42086. height: math.unit(225, "feet")
  42087. },
  42088. {
  42089. name: "Macro+",
  42090. height: math.unit(900, "feet")
  42091. },
  42092. {
  42093. name: "MegaMacro",
  42094. height: math.unit(14400, "feet")
  42095. },
  42096. ]
  42097. ))
  42098. characterMakers.push(() => makeCharacter(
  42099. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42100. {
  42101. front: {
  42102. height: math.unit(5 + 4/12, "feet"),
  42103. weight: math.unit(110, "lb"),
  42104. name: "Front",
  42105. image: {
  42106. source: "./media/characters/axel-isanov/front.svg",
  42107. extra: 1096/1065,
  42108. bottom: 13/1109
  42109. }
  42110. },
  42111. },
  42112. [
  42113. {
  42114. name: "Normal",
  42115. height: math.unit(5 + 4/12, "feet"),
  42116. default: true
  42117. },
  42118. ]
  42119. ))
  42120. characterMakers.push(() => makeCharacter(
  42121. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42122. {
  42123. front: {
  42124. height: math.unit(9, "feet"),
  42125. weight: math.unit(467, "lb"),
  42126. name: "Front",
  42127. image: {
  42128. source: "./media/characters/necahual/front.svg",
  42129. extra: 920/873,
  42130. bottom: 26/946
  42131. }
  42132. },
  42133. back: {
  42134. height: math.unit(9, "feet"),
  42135. weight: math.unit(467, "lb"),
  42136. name: "Back",
  42137. image: {
  42138. source: "./media/characters/necahual/back.svg",
  42139. extra: 930/884,
  42140. bottom: 16/946
  42141. }
  42142. },
  42143. frontUnderwear: {
  42144. height: math.unit(9, "feet"),
  42145. weight: math.unit(467, "lb"),
  42146. name: "Front (Underwear)",
  42147. image: {
  42148. source: "./media/characters/necahual/front-underwear.svg",
  42149. extra: 920/873,
  42150. bottom: 26/946
  42151. }
  42152. },
  42153. frontDressed: {
  42154. height: math.unit(9, "feet"),
  42155. weight: math.unit(467, "lb"),
  42156. name: "Front (Dressed)",
  42157. image: {
  42158. source: "./media/characters/necahual/front-dressed.svg",
  42159. extra: 920/873,
  42160. bottom: 26/946
  42161. }
  42162. },
  42163. },
  42164. [
  42165. {
  42166. name: "Comprsesed",
  42167. height: math.unit(9, "feet")
  42168. },
  42169. {
  42170. name: "Natural",
  42171. height: math.unit(15, "feet"),
  42172. default: true
  42173. },
  42174. {
  42175. name: "Boosted",
  42176. height: math.unit(50, "feet")
  42177. },
  42178. {
  42179. name: "Boosted+",
  42180. height: math.unit(150, "feet")
  42181. },
  42182. {
  42183. name: "Max",
  42184. height: math.unit(500, "feet")
  42185. },
  42186. ]
  42187. ))
  42188. characterMakers.push(() => makeCharacter(
  42189. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42190. {
  42191. front: {
  42192. height: math.unit(22 + 1/12, "feet"),
  42193. weight: math.unit(3200, "lb"),
  42194. name: "Front",
  42195. image: {
  42196. source: "./media/characters/theo-acacia/front.svg",
  42197. extra: 1796/1741,
  42198. bottom: 83/1879
  42199. }
  42200. },
  42201. frontUnderwear: {
  42202. height: math.unit(22 + 1/12, "feet"),
  42203. weight: math.unit(3200, "lb"),
  42204. name: "Front (Underwear)",
  42205. image: {
  42206. source: "./media/characters/theo-acacia/front-underwear.svg",
  42207. extra: 1796/1741,
  42208. bottom: 83/1879
  42209. }
  42210. },
  42211. frontNude: {
  42212. height: math.unit(22 + 1/12, "feet"),
  42213. weight: math.unit(3200, "lb"),
  42214. name: "Front (Nude)",
  42215. image: {
  42216. source: "./media/characters/theo-acacia/front-nude.svg",
  42217. extra: 1796/1741,
  42218. bottom: 83/1879
  42219. }
  42220. },
  42221. },
  42222. [
  42223. {
  42224. name: "Normal",
  42225. height: math.unit(22 + 1/12, "feet"),
  42226. default: true
  42227. },
  42228. ]
  42229. ))
  42230. characterMakers.push(() => makeCharacter(
  42231. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42232. {
  42233. front: {
  42234. height: math.unit(20, "feet"),
  42235. name: "Front",
  42236. image: {
  42237. source: "./media/characters/astra/front.svg",
  42238. extra: 1850/1714,
  42239. bottom: 106/1956
  42240. }
  42241. },
  42242. frontUndressed: {
  42243. height: math.unit(20, "feet"),
  42244. name: "Front (Undressed)",
  42245. image: {
  42246. source: "./media/characters/astra/front-undressed.svg",
  42247. extra: 1926/1749,
  42248. bottom: 0/1926
  42249. }
  42250. },
  42251. hand: {
  42252. height: math.unit(1.53, "feet"),
  42253. name: "Hand",
  42254. image: {
  42255. source: "./media/characters/astra/hand.svg"
  42256. }
  42257. },
  42258. paw: {
  42259. height: math.unit(1.53, "feet"),
  42260. name: "Paw",
  42261. image: {
  42262. source: "./media/characters/astra/paw.svg"
  42263. }
  42264. },
  42265. },
  42266. [
  42267. {
  42268. name: "Smallest",
  42269. height: math.unit(20, "feet")
  42270. },
  42271. {
  42272. name: "Normal",
  42273. height: math.unit(1e9, "miles"),
  42274. default: true
  42275. },
  42276. {
  42277. name: "Larger",
  42278. height: math.unit(5, "multiverses")
  42279. },
  42280. {
  42281. name: "Largest",
  42282. height: math.unit(1e9, "multiverses")
  42283. },
  42284. ]
  42285. ))
  42286. characterMakers.push(() => makeCharacter(
  42287. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42288. {
  42289. front: {
  42290. height: math.unit(8, "feet"),
  42291. name: "Front",
  42292. image: {
  42293. source: "./media/characters/breanna/front.svg",
  42294. extra: 1912/1632,
  42295. bottom: 33/1945
  42296. }
  42297. },
  42298. },
  42299. [
  42300. {
  42301. name: "Smallest",
  42302. height: math.unit(8, "feet")
  42303. },
  42304. {
  42305. name: "Normal",
  42306. height: math.unit(1, "mile"),
  42307. default: true
  42308. },
  42309. {
  42310. name: "Maximum",
  42311. height: math.unit(1500000000000, "lightyears")
  42312. },
  42313. ]
  42314. ))
  42315. characterMakers.push(() => makeCharacter(
  42316. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42317. {
  42318. front: {
  42319. height: math.unit(5 + 11/12, "feet"),
  42320. weight: math.unit(155, "lb"),
  42321. name: "Front",
  42322. image: {
  42323. source: "./media/characters/cai/front.svg",
  42324. extra: 1823/1702,
  42325. bottom: 32/1855
  42326. }
  42327. },
  42328. back: {
  42329. height: math.unit(5 + 11/12, "feet"),
  42330. weight: math.unit(155, "lb"),
  42331. name: "Back",
  42332. image: {
  42333. source: "./media/characters/cai/back.svg",
  42334. extra: 1809/1708,
  42335. bottom: 31/1840
  42336. }
  42337. },
  42338. },
  42339. [
  42340. {
  42341. name: "Normal",
  42342. height: math.unit(5 + 11/12, "feet"),
  42343. default: true
  42344. },
  42345. {
  42346. name: "Big",
  42347. height: math.unit(15, "feet")
  42348. },
  42349. {
  42350. name: "Macro",
  42351. height: math.unit(200, "feet")
  42352. },
  42353. ]
  42354. ))
  42355. characterMakers.push(() => makeCharacter(
  42356. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42357. {
  42358. front: {
  42359. height: math.unit(5 + 6/12, "feet"),
  42360. weight: math.unit(160, "lb"),
  42361. name: "Front",
  42362. image: {
  42363. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42364. extra: 1227/1174,
  42365. bottom: 37/1264
  42366. }
  42367. },
  42368. },
  42369. [
  42370. {
  42371. name: "Macro",
  42372. height: math.unit(444, "meters"),
  42373. default: true
  42374. },
  42375. ]
  42376. ))
  42377. characterMakers.push(() => makeCharacter(
  42378. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42379. {
  42380. front: {
  42381. height: math.unit(18 + 7/12, "feet"),
  42382. name: "Front",
  42383. image: {
  42384. source: "./media/characters/rex/front.svg",
  42385. extra: 1941/1807,
  42386. bottom: 66/2007
  42387. }
  42388. },
  42389. back: {
  42390. height: math.unit(18 + 7/12, "feet"),
  42391. name: "Back",
  42392. image: {
  42393. source: "./media/characters/rex/back.svg",
  42394. extra: 1937/1822,
  42395. bottom: 42/1979
  42396. }
  42397. },
  42398. boot: {
  42399. height: math.unit(3.45, "feet"),
  42400. name: "Boot",
  42401. image: {
  42402. source: "./media/characters/rex/boot.svg"
  42403. }
  42404. },
  42405. paw: {
  42406. height: math.unit(4.17, "feet"),
  42407. name: "Paw",
  42408. image: {
  42409. source: "./media/characters/rex/paw.svg"
  42410. }
  42411. },
  42412. head: {
  42413. height: math.unit(6.728, "feet"),
  42414. name: "Head",
  42415. image: {
  42416. source: "./media/characters/rex/head.svg"
  42417. }
  42418. },
  42419. },
  42420. [
  42421. {
  42422. name: "Nano",
  42423. height: math.unit(18 + 7/12, "feet")
  42424. },
  42425. {
  42426. name: "Micro",
  42427. height: math.unit(1.5, "megameters")
  42428. },
  42429. {
  42430. name: "Normal",
  42431. height: math.unit(440, "megameters"),
  42432. default: true
  42433. },
  42434. {
  42435. name: "Macro",
  42436. height: math.unit(2.5, "gigameters")
  42437. },
  42438. {
  42439. name: "Gigamacro",
  42440. height: math.unit(2, "galaxies")
  42441. },
  42442. ]
  42443. ))
  42444. characterMakers.push(() => makeCharacter(
  42445. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42446. {
  42447. side: {
  42448. height: math.unit(32, "feet"),
  42449. weight: math.unit(250000, "lb"),
  42450. name: "Side",
  42451. image: {
  42452. source: "./media/characters/silverwing/side.svg",
  42453. extra: 1100/1019,
  42454. bottom: 204/1304
  42455. }
  42456. },
  42457. },
  42458. [
  42459. {
  42460. name: "Normal",
  42461. height: math.unit(32, "feet"),
  42462. default: true
  42463. },
  42464. ]
  42465. ))
  42466. characterMakers.push(() => makeCharacter(
  42467. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42468. {
  42469. front: {
  42470. height: math.unit(6 + 6/12, "feet"),
  42471. weight: math.unit(350, "lb"),
  42472. name: "Front",
  42473. image: {
  42474. source: "./media/characters/tristan-hawthorne/front.svg",
  42475. extra: 1159/1124,
  42476. bottom: 37/1196
  42477. },
  42478. form: "labrador",
  42479. default: true
  42480. },
  42481. skunkFront: {
  42482. height: math.unit(4 + 6/12, "feet"),
  42483. weight: math.unit(120, "lb"),
  42484. name: "Front",
  42485. image: {
  42486. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42487. extra: 1609/1551,
  42488. bottom: 169/1778
  42489. },
  42490. form: "skunk",
  42491. default: true
  42492. },
  42493. },
  42494. [
  42495. {
  42496. name: "Normal",
  42497. height: math.unit(6 + 6/12, "feet"),
  42498. form: "labrador",
  42499. default: true
  42500. },
  42501. {
  42502. name: "Normal",
  42503. height: math.unit(4 + 6/12, "feet"),
  42504. form: "skunk",
  42505. default: true
  42506. },
  42507. ],
  42508. {
  42509. "labrador": {
  42510. name: "Labrador",
  42511. default: true
  42512. },
  42513. "skunk": {
  42514. name: "Skunk"
  42515. }
  42516. }
  42517. ))
  42518. characterMakers.push(() => makeCharacter(
  42519. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42520. {
  42521. front: {
  42522. height: math.unit(5 + 11/12, "feet"),
  42523. weight: math.unit(190, "lb"),
  42524. name: "Front",
  42525. image: {
  42526. source: "./media/characters/mizu/front.svg",
  42527. extra: 1988/1788,
  42528. bottom: 14/2002
  42529. }
  42530. },
  42531. },
  42532. [
  42533. {
  42534. name: "Normal",
  42535. height: math.unit(5 + 11/12, "feet"),
  42536. default: true
  42537. },
  42538. ]
  42539. ))
  42540. characterMakers.push(() => makeCharacter(
  42541. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42542. {
  42543. front: {
  42544. height: math.unit(1.7, "feet"),
  42545. weight: math.unit(50, "lb"),
  42546. name: "Front",
  42547. image: {
  42548. source: "./media/characters/dechroma/front.svg",
  42549. extra: 1095/859,
  42550. bottom: 64/1159
  42551. }
  42552. },
  42553. },
  42554. [
  42555. {
  42556. name: "Normal",
  42557. height: math.unit(1.7, "feet"),
  42558. default: true
  42559. },
  42560. ]
  42561. ))
  42562. characterMakers.push(() => makeCharacter(
  42563. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42564. {
  42565. side: {
  42566. height: math.unit(30, "feet"),
  42567. name: "Side",
  42568. image: {
  42569. source: "./media/characters/veluren-thanazel/side.svg",
  42570. extra: 1611/633,
  42571. bottom: 118/1729
  42572. }
  42573. },
  42574. front: {
  42575. height: math.unit(30, "feet"),
  42576. name: "Front",
  42577. image: {
  42578. source: "./media/characters/veluren-thanazel/front.svg",
  42579. extra: 1486/636,
  42580. bottom: 238/1724
  42581. }
  42582. },
  42583. head: {
  42584. height: math.unit(21.4, "feet"),
  42585. name: "Head",
  42586. image: {
  42587. source: "./media/characters/veluren-thanazel/head.svg"
  42588. }
  42589. },
  42590. genitals: {
  42591. height: math.unit(19.4, "feet"),
  42592. name: "Genitals",
  42593. image: {
  42594. source: "./media/characters/veluren-thanazel/genitals.svg"
  42595. }
  42596. },
  42597. },
  42598. [
  42599. {
  42600. name: "Social",
  42601. height: math.unit(6, "feet")
  42602. },
  42603. {
  42604. name: "Play",
  42605. height: math.unit(12, "feet")
  42606. },
  42607. {
  42608. name: "True",
  42609. height: math.unit(30, "feet"),
  42610. default: true
  42611. },
  42612. ]
  42613. ))
  42614. characterMakers.push(() => makeCharacter(
  42615. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  42616. {
  42617. front: {
  42618. height: math.unit(7 + 6/12, "feet"),
  42619. weight: math.unit(500, "kg"),
  42620. name: "Front",
  42621. image: {
  42622. source: "./media/characters/arcturas/front.svg",
  42623. extra: 1700/1500,
  42624. bottom: 145/1845
  42625. }
  42626. },
  42627. },
  42628. [
  42629. {
  42630. name: "Normal",
  42631. height: math.unit(7 + 6/12, "feet"),
  42632. default: true
  42633. },
  42634. ]
  42635. ))
  42636. characterMakers.push(() => makeCharacter(
  42637. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  42638. {
  42639. side: {
  42640. height: math.unit(6, "feet"),
  42641. weight: math.unit(2, "tons"),
  42642. name: "Side",
  42643. image: {
  42644. source: "./media/characters/vitaen/side.svg",
  42645. extra: 1157/617,
  42646. bottom: 122/1279
  42647. }
  42648. },
  42649. },
  42650. [
  42651. {
  42652. name: "Normal",
  42653. height: math.unit(6, "feet"),
  42654. default: true
  42655. },
  42656. ]
  42657. ))
  42658. characterMakers.push(() => makeCharacter(
  42659. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  42660. {
  42661. front: {
  42662. height: math.unit(19, "feet"),
  42663. name: "Front",
  42664. image: {
  42665. source: "./media/characters/fia-dreamweaver/front.svg",
  42666. extra: 1630/1504,
  42667. bottom: 25/1655
  42668. }
  42669. },
  42670. },
  42671. [
  42672. {
  42673. name: "Normal",
  42674. height: math.unit(19, "feet"),
  42675. default: true
  42676. },
  42677. ]
  42678. ))
  42679. characterMakers.push(() => makeCharacter(
  42680. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  42681. {
  42682. front: {
  42683. height: math.unit(5 + 4/12, "feet"),
  42684. name: "Front",
  42685. image: {
  42686. source: "./media/characters/artan/front.svg",
  42687. extra: 1618/1535,
  42688. bottom: 46/1664
  42689. }
  42690. },
  42691. back: {
  42692. height: math.unit(5 + 4/12, "feet"),
  42693. name: "Back",
  42694. image: {
  42695. source: "./media/characters/artan/back.svg",
  42696. extra: 1618/1543,
  42697. bottom: 31/1649
  42698. }
  42699. },
  42700. },
  42701. [
  42702. {
  42703. name: "Normal",
  42704. height: math.unit(5 + 4/12, "feet"),
  42705. default: true
  42706. },
  42707. ]
  42708. ))
  42709. characterMakers.push(() => makeCharacter(
  42710. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  42711. {
  42712. side: {
  42713. height: math.unit(182, "cm"),
  42714. weight: math.unit(1000, "lb"),
  42715. name: "Side",
  42716. image: {
  42717. source: "./media/characters/silver-dragon/side.svg",
  42718. extra: 710/287,
  42719. bottom: 88/798
  42720. }
  42721. },
  42722. },
  42723. [
  42724. {
  42725. name: "Normal",
  42726. height: math.unit(182, "cm"),
  42727. default: true
  42728. },
  42729. ]
  42730. ))
  42731. characterMakers.push(() => makeCharacter(
  42732. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  42733. {
  42734. side: {
  42735. height: math.unit(6 + 6/12, "feet"),
  42736. weight: math.unit(1.5, "tons"),
  42737. name: "Side",
  42738. image: {
  42739. source: "./media/characters/zephyr/side.svg",
  42740. extra: 1433/586,
  42741. bottom: 109/1542
  42742. }
  42743. },
  42744. },
  42745. [
  42746. {
  42747. name: "Normal",
  42748. height: math.unit(6 + 6/12, "feet"),
  42749. default: true
  42750. },
  42751. ]
  42752. ))
  42753. characterMakers.push(() => makeCharacter(
  42754. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  42755. {
  42756. side: {
  42757. height: math.unit(1, "feet"),
  42758. name: "Side",
  42759. image: {
  42760. source: "./media/characters/vixye/side.svg",
  42761. extra: 632/541,
  42762. bottom: 0/632
  42763. }
  42764. },
  42765. },
  42766. [
  42767. {
  42768. name: "Normal",
  42769. height: math.unit(1, "feet"),
  42770. default: true
  42771. },
  42772. {
  42773. name: "True",
  42774. height: math.unit(1e15, "multiverses")
  42775. },
  42776. ]
  42777. ))
  42778. characterMakers.push(() => makeCharacter(
  42779. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  42780. {
  42781. front: {
  42782. height: math.unit(8 + 2/12, "feet"),
  42783. weight: math.unit(650, "lb"),
  42784. name: "Front",
  42785. image: {
  42786. source: "./media/characters/darla-mac-lochlainn/front.svg",
  42787. extra: 1174/1137,
  42788. bottom: 82/1256
  42789. }
  42790. },
  42791. back: {
  42792. height: math.unit(8 + 2/12, "feet"),
  42793. weight: math.unit(650, "lb"),
  42794. name: "Back",
  42795. image: {
  42796. source: "./media/characters/darla-mac-lochlainn/back.svg",
  42797. extra: 1204/1157,
  42798. bottom: 46/1250
  42799. }
  42800. },
  42801. },
  42802. [
  42803. {
  42804. name: "Wildform",
  42805. height: math.unit(8 + 2/12, "feet"),
  42806. default: true
  42807. },
  42808. ]
  42809. ))
  42810. characterMakers.push(() => makeCharacter(
  42811. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  42812. {
  42813. front: {
  42814. height: math.unit(18, "feet"),
  42815. name: "Front",
  42816. image: {
  42817. source: "./media/characters/cyphin/front.svg",
  42818. extra: 970/886,
  42819. bottom: 42/1012
  42820. }
  42821. },
  42822. back: {
  42823. height: math.unit(18, "feet"),
  42824. name: "Back",
  42825. image: {
  42826. source: "./media/characters/cyphin/back.svg",
  42827. extra: 1009/894,
  42828. bottom: 24/1033
  42829. }
  42830. },
  42831. head: {
  42832. height: math.unit(5.05, "feet"),
  42833. name: "Head",
  42834. image: {
  42835. source: "./media/characters/cyphin/head.svg"
  42836. }
  42837. },
  42838. tailbud: {
  42839. height: math.unit(5, "feet"),
  42840. name: "Tailbud",
  42841. image: {
  42842. source: "./media/characters/cyphin/tailbud.svg"
  42843. }
  42844. },
  42845. },
  42846. [
  42847. ]
  42848. ))
  42849. characterMakers.push(() => makeCharacter(
  42850. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  42851. {
  42852. side: {
  42853. height: math.unit(10, "feet"),
  42854. weight: math.unit(6, "tons"),
  42855. name: "Side",
  42856. image: {
  42857. source: "./media/characters/raijin/side.svg",
  42858. extra: 1529/613,
  42859. bottom: 337/1866
  42860. }
  42861. },
  42862. },
  42863. [
  42864. {
  42865. name: "Normal",
  42866. height: math.unit(10, "feet"),
  42867. default: true
  42868. },
  42869. ]
  42870. ))
  42871. characterMakers.push(() => makeCharacter(
  42872. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  42873. {
  42874. side: {
  42875. height: math.unit(9, "feet"),
  42876. name: "Side",
  42877. image: {
  42878. source: "./media/characters/nilghais/side.svg",
  42879. extra: 1047/744,
  42880. bottom: 91/1138
  42881. }
  42882. },
  42883. head: {
  42884. height: math.unit(3.14, "feet"),
  42885. name: "Head",
  42886. image: {
  42887. source: "./media/characters/nilghais/head.svg"
  42888. }
  42889. },
  42890. mouth: {
  42891. height: math.unit(4.6, "feet"),
  42892. name: "Mouth",
  42893. image: {
  42894. source: "./media/characters/nilghais/mouth.svg"
  42895. }
  42896. },
  42897. wings: {
  42898. height: math.unit(24, "feet"),
  42899. name: "Wings",
  42900. image: {
  42901. source: "./media/characters/nilghais/wings.svg"
  42902. }
  42903. },
  42904. ass: {
  42905. height: math.unit(6.12, "feet"),
  42906. name: "Ass",
  42907. image: {
  42908. source: "./media/characters/nilghais/ass.svg"
  42909. }
  42910. },
  42911. },
  42912. [
  42913. {
  42914. name: "Normal",
  42915. height: math.unit(9, "feet"),
  42916. default: true
  42917. },
  42918. ]
  42919. ))
  42920. characterMakers.push(() => makeCharacter(
  42921. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  42922. {
  42923. regular: {
  42924. height: math.unit(16 + 2/12, "feet"),
  42925. weight: math.unit(2300, "lb"),
  42926. name: "Regular",
  42927. image: {
  42928. source: "./media/characters/zolgar/regular.svg",
  42929. extra: 1246/1004,
  42930. bottom: 124/1370
  42931. }
  42932. },
  42933. boxers: {
  42934. height: math.unit(16 + 2/12, "feet"),
  42935. weight: math.unit(2300, "lb"),
  42936. name: "Boxers",
  42937. image: {
  42938. source: "./media/characters/zolgar/boxers.svg",
  42939. extra: 1246/1004,
  42940. bottom: 124/1370
  42941. }
  42942. },
  42943. armored: {
  42944. height: math.unit(16 + 2/12, "feet"),
  42945. weight: math.unit(2300, "lb"),
  42946. name: "Armored",
  42947. image: {
  42948. source: "./media/characters/zolgar/armored.svg",
  42949. extra: 1246/1004,
  42950. bottom: 124/1370
  42951. }
  42952. },
  42953. goth: {
  42954. height: math.unit(16 + 2/12, "feet"),
  42955. weight: math.unit(2300, "lb"),
  42956. name: "Goth",
  42957. image: {
  42958. source: "./media/characters/zolgar/goth.svg",
  42959. extra: 1246/1004,
  42960. bottom: 124/1370
  42961. }
  42962. },
  42963. },
  42964. [
  42965. {
  42966. name: "Shrunken Down",
  42967. height: math.unit(9 + 2/12, "feet")
  42968. },
  42969. {
  42970. name: "Normal",
  42971. height: math.unit(16 + 2/12, "feet"),
  42972. default: true
  42973. },
  42974. ]
  42975. ))
  42976. characterMakers.push(() => makeCharacter(
  42977. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  42978. {
  42979. front: {
  42980. height: math.unit(6, "feet"),
  42981. weight: math.unit(168, "lb"),
  42982. name: "Front",
  42983. image: {
  42984. source: "./media/characters/luca/front.svg",
  42985. extra: 841/667,
  42986. bottom: 102/943
  42987. }
  42988. },
  42989. },
  42990. [
  42991. {
  42992. name: "Normal",
  42993. height: math.unit(6, "feet"),
  42994. default: true
  42995. },
  42996. ]
  42997. ))
  42998. characterMakers.push(() => makeCharacter(
  42999. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43000. {
  43001. side: {
  43002. height: math.unit(7 + 3/12, "feet"),
  43003. weight: math.unit(312, "lb"),
  43004. name: "Side",
  43005. image: {
  43006. source: "./media/characters/zezo/side.svg",
  43007. extra: 1192/1067,
  43008. bottom: 63/1255
  43009. }
  43010. },
  43011. },
  43012. [
  43013. {
  43014. name: "Normal",
  43015. height: math.unit(7 + 3/12, "feet"),
  43016. default: true
  43017. },
  43018. ]
  43019. ))
  43020. characterMakers.push(() => makeCharacter(
  43021. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43022. {
  43023. front: {
  43024. height: math.unit(5 + 5/12, "feet"),
  43025. weight: math.unit(170, "lb"),
  43026. name: "Front",
  43027. image: {
  43028. source: "./media/characters/mayso/front.svg",
  43029. extra: 1215/1108,
  43030. bottom: 16/1231
  43031. }
  43032. },
  43033. },
  43034. [
  43035. {
  43036. name: "Normal",
  43037. height: math.unit(5 + 5/12, "feet"),
  43038. default: true
  43039. },
  43040. ]
  43041. ))
  43042. characterMakers.push(() => makeCharacter(
  43043. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43044. {
  43045. front: {
  43046. height: math.unit(4 + 3/12, "feet"),
  43047. weight: math.unit(80, "lb"),
  43048. name: "Front",
  43049. image: {
  43050. source: "./media/characters/hess/front.svg",
  43051. extra: 1200/1123,
  43052. bottom: 16/1216
  43053. }
  43054. },
  43055. },
  43056. [
  43057. {
  43058. name: "Normal",
  43059. height: math.unit(4 + 3/12, "feet"),
  43060. default: true
  43061. },
  43062. ]
  43063. ))
  43064. characterMakers.push(() => makeCharacter(
  43065. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43066. {
  43067. front: {
  43068. height: math.unit(1.9, "meters"),
  43069. name: "Front",
  43070. image: {
  43071. source: "./media/characters/ashgar/front.svg",
  43072. extra: 1177/1146,
  43073. bottom: 99/1276
  43074. }
  43075. },
  43076. back: {
  43077. height: math.unit(1.9, "meters"),
  43078. name: "Back",
  43079. image: {
  43080. source: "./media/characters/ashgar/back.svg",
  43081. extra: 1201/1183,
  43082. bottom: 53/1254
  43083. }
  43084. },
  43085. feral: {
  43086. height: math.unit(1.4, "meters"),
  43087. name: "Feral",
  43088. image: {
  43089. source: "./media/characters/ashgar/feral.svg",
  43090. extra: 370/345,
  43091. bottom: 45/415
  43092. }
  43093. },
  43094. },
  43095. [
  43096. {
  43097. name: "Normal",
  43098. height: math.unit(1.9, "meters"),
  43099. default: true
  43100. },
  43101. ]
  43102. ))
  43103. characterMakers.push(() => makeCharacter(
  43104. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43105. {
  43106. regular: {
  43107. height: math.unit(6, "feet"),
  43108. weight: math.unit(220, "lb"),
  43109. name: "Regular",
  43110. image: {
  43111. source: "./media/characters/phillip/regular.svg",
  43112. extra: 1373/1277,
  43113. bottom: 75/1448
  43114. }
  43115. },
  43116. dressed: {
  43117. height: math.unit(6, "feet"),
  43118. weight: math.unit(220, "lb"),
  43119. name: "Dressed",
  43120. image: {
  43121. source: "./media/characters/phillip/dressed.svg",
  43122. extra: 1373/1277,
  43123. bottom: 75/1448
  43124. }
  43125. },
  43126. paw: {
  43127. height: math.unit(1.44, "feet"),
  43128. name: "Paw",
  43129. image: {
  43130. source: "./media/characters/phillip/paw.svg"
  43131. }
  43132. },
  43133. },
  43134. [
  43135. {
  43136. name: "Normal",
  43137. height: math.unit(6, "feet"),
  43138. default: true
  43139. },
  43140. ]
  43141. ))
  43142. characterMakers.push(() => makeCharacter(
  43143. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43144. {
  43145. side: {
  43146. height: math.unit(42, "feet"),
  43147. name: "Side",
  43148. image: {
  43149. source: "./media/characters/uvula/side.svg",
  43150. extra: 683/586,
  43151. bottom: 60/743
  43152. }
  43153. },
  43154. front: {
  43155. height: math.unit(42, "feet"),
  43156. name: "Front",
  43157. image: {
  43158. source: "./media/characters/uvula/front.svg",
  43159. extra: 705/613,
  43160. bottom: 54/759
  43161. }
  43162. },
  43163. maw: {
  43164. height: math.unit(23.5, "feet"),
  43165. name: "Maw",
  43166. image: {
  43167. source: "./media/characters/uvula/maw.svg"
  43168. }
  43169. },
  43170. },
  43171. [
  43172. {
  43173. name: "Original Size",
  43174. height: math.unit(14, "inches")
  43175. },
  43176. {
  43177. name: "Human Size",
  43178. height: math.unit(6, "feet")
  43179. },
  43180. {
  43181. name: "Big",
  43182. height: math.unit(42, "feet"),
  43183. default: true
  43184. },
  43185. {
  43186. name: "Bigger",
  43187. height: math.unit(100, "feet")
  43188. },
  43189. ]
  43190. ))
  43191. characterMakers.push(() => makeCharacter(
  43192. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43193. {
  43194. front: {
  43195. height: math.unit(5 + 11/12, "feet"),
  43196. name: "Front",
  43197. image: {
  43198. source: "./media/characters/lannah/front.svg",
  43199. extra: 1208/1113,
  43200. bottom: 97/1305
  43201. }
  43202. },
  43203. },
  43204. [
  43205. {
  43206. name: "Normal",
  43207. height: math.unit(5 + 11/12, "feet"),
  43208. default: true
  43209. },
  43210. ]
  43211. ))
  43212. characterMakers.push(() => makeCharacter(
  43213. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43214. {
  43215. front: {
  43216. height: math.unit(6 + 3/12, "feet"),
  43217. weight: math.unit(3.5, "tons"),
  43218. name: "Front",
  43219. image: {
  43220. source: "./media/characters/emberflame/front.svg",
  43221. extra: 1198/672,
  43222. bottom: 82/1280
  43223. }
  43224. },
  43225. side: {
  43226. height: math.unit(6 + 3/12, "feet"),
  43227. weight: math.unit(3.5, "tons"),
  43228. name: "Side",
  43229. image: {
  43230. source: "./media/characters/emberflame/side.svg",
  43231. extra: 938/527,
  43232. bottom: 56/994
  43233. }
  43234. },
  43235. },
  43236. [
  43237. {
  43238. name: "Normal",
  43239. height: math.unit(6 + 3/12, "feet"),
  43240. default: true
  43241. },
  43242. ]
  43243. ))
  43244. characterMakers.push(() => makeCharacter(
  43245. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43246. {
  43247. side: {
  43248. height: math.unit(17.5, "feet"),
  43249. weight: math.unit(35, "tons"),
  43250. name: "Side",
  43251. image: {
  43252. source: "./media/characters/sophie-ambrose/side.svg",
  43253. extra: 1573/1242,
  43254. bottom: 71/1644
  43255. }
  43256. },
  43257. maw: {
  43258. height: math.unit(7.4, "feet"),
  43259. name: "Maw",
  43260. image: {
  43261. source: "./media/characters/sophie-ambrose/maw.svg"
  43262. }
  43263. },
  43264. },
  43265. [
  43266. {
  43267. name: "Normal",
  43268. height: math.unit(17.5, "feet"),
  43269. default: true
  43270. },
  43271. ]
  43272. ))
  43273. characterMakers.push(() => makeCharacter(
  43274. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43275. {
  43276. front: {
  43277. height: math.unit(280, "feet"),
  43278. weight: math.unit(550, "tons"),
  43279. name: "Front",
  43280. image: {
  43281. source: "./media/characters/king-mugi/front.svg",
  43282. extra: 1102/947,
  43283. bottom: 104/1206
  43284. }
  43285. },
  43286. },
  43287. [
  43288. {
  43289. name: "King Mugi",
  43290. height: math.unit(280, "feet"),
  43291. default: true
  43292. },
  43293. ]
  43294. ))
  43295. characterMakers.push(() => makeCharacter(
  43296. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43297. {
  43298. front: {
  43299. height: math.unit(64, "meters"),
  43300. name: "Front",
  43301. image: {
  43302. source: "./media/characters/nova-fox/front.svg",
  43303. extra: 1310/1246,
  43304. bottom: 65/1375
  43305. }
  43306. },
  43307. },
  43308. [
  43309. {
  43310. name: "Macro",
  43311. height: math.unit(64, "meters"),
  43312. default: true
  43313. },
  43314. ]
  43315. ))
  43316. characterMakers.push(() => makeCharacter(
  43317. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43318. {
  43319. front: {
  43320. height: math.unit(6 + 3/12, "feet"),
  43321. weight: math.unit(170, "lb"),
  43322. name: "Front",
  43323. image: {
  43324. source: "./media/characters/sam-bat/front.svg",
  43325. extra: 1601/1411,
  43326. bottom: 125/1726
  43327. }
  43328. },
  43329. back: {
  43330. height: math.unit(6 + 3/12, "feet"),
  43331. weight: math.unit(170, "lb"),
  43332. name: "Back",
  43333. image: {
  43334. source: "./media/characters/sam-bat/back.svg",
  43335. extra: 1577/1405,
  43336. bottom: 58/1635
  43337. }
  43338. },
  43339. },
  43340. [
  43341. {
  43342. name: "Normal",
  43343. height: math.unit(6 + 3/12, "feet"),
  43344. default: true
  43345. },
  43346. ]
  43347. ))
  43348. characterMakers.push(() => makeCharacter(
  43349. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43350. {
  43351. front: {
  43352. height: math.unit(59, "feet"),
  43353. weight: math.unit(40000, "lb"),
  43354. name: "Front",
  43355. image: {
  43356. source: "./media/characters/inari/front.svg",
  43357. extra: 1884/1350,
  43358. bottom: 95/1979
  43359. }
  43360. },
  43361. },
  43362. [
  43363. {
  43364. name: "Gigantamax",
  43365. height: math.unit(59, "feet"),
  43366. default: true
  43367. },
  43368. ]
  43369. ))
  43370. characterMakers.push(() => makeCharacter(
  43371. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43372. {
  43373. front: {
  43374. height: math.unit(5 + 8/12, "feet"),
  43375. name: "Front",
  43376. image: {
  43377. source: "./media/characters/elizabeth/front.svg",
  43378. extra: 1395/1298,
  43379. bottom: 54/1449
  43380. }
  43381. },
  43382. mouth: {
  43383. height: math.unit(1.97, "feet"),
  43384. name: "Mouth",
  43385. image: {
  43386. source: "./media/characters/elizabeth/mouth.svg"
  43387. }
  43388. },
  43389. foot: {
  43390. height: math.unit(1.17, "feet"),
  43391. name: "Foot",
  43392. image: {
  43393. source: "./media/characters/elizabeth/foot.svg"
  43394. }
  43395. },
  43396. },
  43397. [
  43398. {
  43399. name: "Normal",
  43400. height: math.unit(5 + 8/12, "feet"),
  43401. default: true
  43402. },
  43403. {
  43404. name: "Minimacro",
  43405. height: math.unit(18, "feet")
  43406. },
  43407. {
  43408. name: "Macro",
  43409. height: math.unit(180, "feet")
  43410. },
  43411. ]
  43412. ))
  43413. characterMakers.push(() => makeCharacter(
  43414. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43415. {
  43416. front: {
  43417. height: math.unit(5 + 2/12, "feet"),
  43418. name: "Front",
  43419. image: {
  43420. source: "./media/characters/october-gossamer/front.svg",
  43421. extra: 505/454,
  43422. bottom: 7/512
  43423. }
  43424. },
  43425. back: {
  43426. height: math.unit(5 + 2/12, "feet"),
  43427. name: "Back",
  43428. image: {
  43429. source: "./media/characters/october-gossamer/back.svg",
  43430. extra: 501/454,
  43431. bottom: 11/512
  43432. }
  43433. },
  43434. },
  43435. [
  43436. {
  43437. name: "Normal",
  43438. height: math.unit(5 + 2/12, "feet"),
  43439. default: true
  43440. },
  43441. ]
  43442. ))
  43443. characterMakers.push(() => makeCharacter(
  43444. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43445. {
  43446. front: {
  43447. height: math.unit(5, "feet"),
  43448. name: "Front",
  43449. image: {
  43450. source: "./media/characters/epiglottis/front.svg",
  43451. extra: 923/849,
  43452. bottom: 17/940
  43453. }
  43454. },
  43455. },
  43456. [
  43457. {
  43458. name: "Original Size",
  43459. height: math.unit(10, "inches")
  43460. },
  43461. {
  43462. name: "Human Size",
  43463. height: math.unit(5, "feet"),
  43464. default: true
  43465. },
  43466. {
  43467. name: "Big",
  43468. height: math.unit(25, "feet")
  43469. },
  43470. {
  43471. name: "Bigger",
  43472. height: math.unit(50, "feet")
  43473. },
  43474. {
  43475. name: "oh lawd",
  43476. height: math.unit(75, "feet")
  43477. },
  43478. ]
  43479. ))
  43480. characterMakers.push(() => makeCharacter(
  43481. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43482. {
  43483. front: {
  43484. height: math.unit(2 + 4/12, "feet"),
  43485. weight: math.unit(60, "lb"),
  43486. name: "Front",
  43487. image: {
  43488. source: "./media/characters/lerm/front.svg",
  43489. extra: 796/790,
  43490. bottom: 79/875
  43491. }
  43492. },
  43493. },
  43494. [
  43495. {
  43496. name: "Normal",
  43497. height: math.unit(2 + 4/12, "feet"),
  43498. default: true
  43499. },
  43500. ]
  43501. ))
  43502. characterMakers.push(() => makeCharacter(
  43503. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43504. {
  43505. front: {
  43506. height: math.unit(5.5, "feet"),
  43507. weight: math.unit(130, "lb"),
  43508. name: "Front",
  43509. image: {
  43510. source: "./media/characters/xena-nebadon/front.svg",
  43511. extra: 1828/1730,
  43512. bottom: 79/1907
  43513. }
  43514. },
  43515. },
  43516. [
  43517. {
  43518. name: "Tiny Puppy",
  43519. height: math.unit(3, "inches")
  43520. },
  43521. {
  43522. name: "Normal",
  43523. height: math.unit(5.5, "feet"),
  43524. default: true
  43525. },
  43526. {
  43527. name: "Lotta Lady",
  43528. height: math.unit(12, "feet")
  43529. },
  43530. {
  43531. name: "Pretty Big",
  43532. height: math.unit(100, "feet")
  43533. },
  43534. {
  43535. name: "Big",
  43536. height: math.unit(500, "feet")
  43537. },
  43538. {
  43539. name: "Skyscraper Toys",
  43540. height: math.unit(2500, "feet")
  43541. },
  43542. {
  43543. name: "Plane Catcher",
  43544. height: math.unit(8, "miles")
  43545. },
  43546. {
  43547. name: "Planet Toys",
  43548. height: math.unit(15, "earths")
  43549. },
  43550. {
  43551. name: "Stardust",
  43552. height: math.unit(0.25, "galaxies")
  43553. },
  43554. {
  43555. name: "Snacks",
  43556. height: math.unit(70, "universes")
  43557. },
  43558. ]
  43559. ))
  43560. characterMakers.push(() => makeCharacter(
  43561. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43562. {
  43563. front: {
  43564. height: math.unit(1.6, "meters"),
  43565. weight: math.unit(60, "kg"),
  43566. name: "Front",
  43567. image: {
  43568. source: "./media/characters/bounty/front.svg",
  43569. extra: 1426/1308,
  43570. bottom: 15/1441
  43571. }
  43572. },
  43573. back: {
  43574. height: math.unit(1.6, "meters"),
  43575. weight: math.unit(60, "kg"),
  43576. name: "Back",
  43577. image: {
  43578. source: "./media/characters/bounty/back.svg",
  43579. extra: 1417/1307,
  43580. bottom: 8/1425
  43581. }
  43582. },
  43583. },
  43584. [
  43585. {
  43586. name: "Normal",
  43587. height: math.unit(1.6, "meters"),
  43588. default: true
  43589. },
  43590. {
  43591. name: "Macro",
  43592. height: math.unit(300, "meters")
  43593. },
  43594. ]
  43595. ))
  43596. characterMakers.push(() => makeCharacter(
  43597. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  43598. {
  43599. front: {
  43600. height: math.unit(2 + 8/12, "feet"),
  43601. weight: math.unit(15, "lb"),
  43602. name: "Front",
  43603. image: {
  43604. source: "./media/characters/mochi/front.svg",
  43605. extra: 1022/852,
  43606. bottom: 435/1457
  43607. }
  43608. },
  43609. back: {
  43610. height: math.unit(2 + 8/12, "feet"),
  43611. weight: math.unit(15, "lb"),
  43612. name: "Back",
  43613. image: {
  43614. source: "./media/characters/mochi/back.svg",
  43615. extra: 1335/1119,
  43616. bottom: 39/1374
  43617. }
  43618. },
  43619. bird: {
  43620. height: math.unit(2 + 8/12, "feet"),
  43621. weight: math.unit(15, "lb"),
  43622. name: "Bird",
  43623. image: {
  43624. source: "./media/characters/mochi/bird.svg",
  43625. extra: 1251/1113,
  43626. bottom: 178/1429
  43627. }
  43628. },
  43629. kaiju: {
  43630. height: math.unit(154, "feet"),
  43631. weight: math.unit(1e7, "lb"),
  43632. name: "Kaiju",
  43633. image: {
  43634. source: "./media/characters/mochi/kaiju.svg",
  43635. extra: 460/324,
  43636. bottom: 40/500
  43637. }
  43638. },
  43639. head: {
  43640. height: math.unit(1.21, "feet"),
  43641. name: "Head",
  43642. image: {
  43643. source: "./media/characters/mochi/head.svg"
  43644. }
  43645. },
  43646. alternateTail: {
  43647. height: math.unit(2 + 8/12, "feet"),
  43648. weight: math.unit(45, "lb"),
  43649. name: "Alternate Tail",
  43650. image: {
  43651. source: "./media/characters/mochi/alternate-tail.svg",
  43652. extra: 139/76,
  43653. bottom: 45/184
  43654. }
  43655. },
  43656. },
  43657. [
  43658. {
  43659. name: "Micro",
  43660. height: math.unit(2, "inches")
  43661. },
  43662. {
  43663. name: "Normal",
  43664. height: math.unit(2 + 8/12, "feet"),
  43665. default: true
  43666. },
  43667. {
  43668. name: "Macro",
  43669. height: math.unit(106, "feet")
  43670. },
  43671. ]
  43672. ))
  43673. characterMakers.push(() => makeCharacter(
  43674. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  43675. {
  43676. front: {
  43677. height: math.unit(5.67, "feet"),
  43678. weight: math.unit(135, "lb"),
  43679. name: "Front",
  43680. image: {
  43681. source: "./media/characters/sarel/front.svg",
  43682. extra: 865/788,
  43683. bottom: 97/962
  43684. }
  43685. },
  43686. back: {
  43687. height: math.unit(5.67, "feet"),
  43688. weight: math.unit(135, "lb"),
  43689. name: "Back",
  43690. image: {
  43691. source: "./media/characters/sarel/back.svg",
  43692. extra: 857/777,
  43693. bottom: 32/889
  43694. }
  43695. },
  43696. chozoan: {
  43697. height: math.unit(5.67, "feet"),
  43698. weight: math.unit(135, "lb"),
  43699. name: "Chozoan",
  43700. image: {
  43701. source: "./media/characters/sarel/chozoan.svg",
  43702. extra: 865/788,
  43703. bottom: 97/962
  43704. }
  43705. },
  43706. current: {
  43707. height: math.unit(5.67, "feet"),
  43708. weight: math.unit(135, "lb"),
  43709. name: "Current",
  43710. image: {
  43711. source: "./media/characters/sarel/current.svg",
  43712. extra: 865/788,
  43713. bottom: 97/962
  43714. }
  43715. },
  43716. head: {
  43717. height: math.unit(1.77, "feet"),
  43718. name: "Head",
  43719. image: {
  43720. source: "./media/characters/sarel/head.svg"
  43721. }
  43722. },
  43723. claws: {
  43724. height: math.unit(1.8, "feet"),
  43725. name: "Claws",
  43726. image: {
  43727. source: "./media/characters/sarel/claws.svg"
  43728. }
  43729. },
  43730. clawsAlt: {
  43731. height: math.unit(1.8, "feet"),
  43732. name: "Claws-alt",
  43733. image: {
  43734. source: "./media/characters/sarel/claws-alt.svg"
  43735. }
  43736. },
  43737. },
  43738. [
  43739. {
  43740. name: "Normal",
  43741. height: math.unit(5.67, "feet"),
  43742. default: true
  43743. },
  43744. ]
  43745. ))
  43746. characterMakers.push(() => makeCharacter(
  43747. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  43748. {
  43749. front: {
  43750. height: math.unit(5500, "feet"),
  43751. name: "Front",
  43752. image: {
  43753. source: "./media/characters/alyonia/front.svg",
  43754. extra: 1200/1135,
  43755. bottom: 29/1229
  43756. }
  43757. },
  43758. back: {
  43759. height: math.unit(5500, "feet"),
  43760. name: "Back",
  43761. image: {
  43762. source: "./media/characters/alyonia/back.svg",
  43763. extra: 1205/1138,
  43764. bottom: 10/1215
  43765. }
  43766. },
  43767. },
  43768. [
  43769. {
  43770. name: "Small",
  43771. height: math.unit(10, "feet")
  43772. },
  43773. {
  43774. name: "Macro",
  43775. height: math.unit(500, "feet")
  43776. },
  43777. {
  43778. name: "Mega Macro",
  43779. height: math.unit(5500, "feet"),
  43780. default: true
  43781. },
  43782. {
  43783. name: "Mega Macro+",
  43784. height: math.unit(500000, "feet")
  43785. },
  43786. {
  43787. name: "Giga Macro",
  43788. height: math.unit(3000, "miles")
  43789. },
  43790. {
  43791. name: "Tera Macro",
  43792. height: math.unit(2.8e6, "miles")
  43793. },
  43794. {
  43795. name: "Galactic",
  43796. height: math.unit(120000, "lightyears")
  43797. },
  43798. ]
  43799. ))
  43800. characterMakers.push(() => makeCharacter(
  43801. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  43802. {
  43803. werewolf: {
  43804. height: math.unit(8, "feet"),
  43805. weight: math.unit(425, "lb"),
  43806. name: "Werewolf",
  43807. image: {
  43808. source: "./media/characters/autumn/werewolf.svg",
  43809. extra: 2154/2031,
  43810. bottom: 160/2314
  43811. }
  43812. },
  43813. human: {
  43814. height: math.unit(5 + 8/12, "feet"),
  43815. weight: math.unit(150, "lb"),
  43816. name: "Human",
  43817. image: {
  43818. source: "./media/characters/autumn/human.svg",
  43819. extra: 1200/1149,
  43820. bottom: 30/1230
  43821. }
  43822. },
  43823. },
  43824. [
  43825. {
  43826. name: "Normal",
  43827. height: math.unit(8, "feet"),
  43828. default: true
  43829. },
  43830. ]
  43831. ))
  43832. characterMakers.push(() => makeCharacter(
  43833. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  43834. {
  43835. front: {
  43836. height: math.unit(8 + 5/12, "feet"),
  43837. weight: math.unit(825, "lb"),
  43838. name: "Front",
  43839. image: {
  43840. source: "./media/characters/cobalt-charizard/front.svg",
  43841. extra: 1268/1155,
  43842. bottom: 122/1390
  43843. }
  43844. },
  43845. side: {
  43846. height: math.unit(8 + 5/12, "feet"),
  43847. weight: math.unit(825, "lb"),
  43848. name: "Side",
  43849. image: {
  43850. source: "./media/characters/cobalt-charizard/side.svg",
  43851. extra: 1348/1257,
  43852. bottom: 58/1406
  43853. }
  43854. },
  43855. gMax: {
  43856. height: math.unit(134 + 11/12, "feet"),
  43857. name: "G-Max",
  43858. image: {
  43859. source: "./media/characters/cobalt-charizard/g-max.svg",
  43860. extra: 1835/1541,
  43861. bottom: 151/1986
  43862. }
  43863. },
  43864. },
  43865. [
  43866. {
  43867. name: "Normal",
  43868. height: math.unit(8 + 5/12, "feet"),
  43869. default: true
  43870. },
  43871. ]
  43872. ))
  43873. characterMakers.push(() => makeCharacter(
  43874. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  43875. {
  43876. front: {
  43877. height: math.unit(6 + 3/12, "feet"),
  43878. weight: math.unit(210, "lb"),
  43879. name: "Front",
  43880. image: {
  43881. source: "./media/characters/stella/front.svg",
  43882. extra: 3549/3335,
  43883. bottom: 51/3600
  43884. }
  43885. },
  43886. },
  43887. [
  43888. {
  43889. name: "Normal",
  43890. height: math.unit(6 + 3/12, "feet"),
  43891. default: true
  43892. },
  43893. ]
  43894. ))
  43895. characterMakers.push(() => makeCharacter(
  43896. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  43897. {
  43898. front: {
  43899. height: math.unit(5, "feet"),
  43900. weight: math.unit(90, "lb"),
  43901. name: "Front",
  43902. image: {
  43903. source: "./media/characters/riley-bishop/front.svg",
  43904. extra: 1450/1428,
  43905. bottom: 152/1602
  43906. }
  43907. },
  43908. },
  43909. [
  43910. {
  43911. name: "Normal",
  43912. height: math.unit(5, "feet"),
  43913. default: true
  43914. },
  43915. ]
  43916. ))
  43917. characterMakers.push(() => makeCharacter(
  43918. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  43919. {
  43920. side: {
  43921. height: math.unit(8 + 2/12, "feet"),
  43922. weight: math.unit(500, "kg"),
  43923. name: "Side",
  43924. image: {
  43925. source: "./media/characters/theo-arcanine/side.svg",
  43926. extra: 1342/1074,
  43927. bottom: 111/1453
  43928. }
  43929. },
  43930. },
  43931. [
  43932. {
  43933. name: "Normal",
  43934. height: math.unit(8 + 2/12, "feet"),
  43935. default: true
  43936. },
  43937. ]
  43938. ))
  43939. characterMakers.push(() => makeCharacter(
  43940. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  43941. {
  43942. front: {
  43943. height: math.unit(4, "feet"),
  43944. name: "Front",
  43945. image: {
  43946. source: "./media/characters/kali/front.svg",
  43947. extra: 1921/1357,
  43948. bottom: 70/1991
  43949. }
  43950. },
  43951. },
  43952. [
  43953. {
  43954. name: "Normal",
  43955. height: math.unit(4, "feet"),
  43956. default: true
  43957. },
  43958. {
  43959. name: "Macro",
  43960. height: math.unit(32, "meters")
  43961. },
  43962. {
  43963. name: "Macro+",
  43964. height: math.unit(150, "meters")
  43965. },
  43966. {
  43967. name: "Megamacro",
  43968. height: math.unit(7500, "meters")
  43969. },
  43970. {
  43971. name: "Megamacro+",
  43972. height: math.unit(80, "kilometers")
  43973. },
  43974. ]
  43975. ))
  43976. characterMakers.push(() => makeCharacter(
  43977. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  43978. {
  43979. side: {
  43980. height: math.unit(5 + 11/12, "feet"),
  43981. weight: math.unit(236, "lb"),
  43982. name: "Side",
  43983. image: {
  43984. source: "./media/characters/gapp/side.svg",
  43985. extra: 775/340,
  43986. bottom: 58/833
  43987. }
  43988. },
  43989. mouth: {
  43990. height: math.unit(2.98, "feet"),
  43991. name: "Mouth",
  43992. image: {
  43993. source: "./media/characters/gapp/mouth.svg"
  43994. }
  43995. },
  43996. },
  43997. [
  43998. {
  43999. name: "Normal",
  44000. height: math.unit(5 + 1/12, "feet"),
  44001. default: true
  44002. },
  44003. ]
  44004. ))
  44005. characterMakers.push(() => makeCharacter(
  44006. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44007. {
  44008. front: {
  44009. height: math.unit(6, "feet"),
  44010. name: "Front",
  44011. image: {
  44012. source: "./media/characters/persephone/front.svg",
  44013. extra: 1895/1717,
  44014. bottom: 96/1991
  44015. }
  44016. },
  44017. back: {
  44018. height: math.unit(6, "feet"),
  44019. name: "Back",
  44020. image: {
  44021. source: "./media/characters/persephone/back.svg",
  44022. extra: 1868/1679,
  44023. bottom: 26/1894
  44024. }
  44025. },
  44026. casual: {
  44027. height: math.unit(6, "feet"),
  44028. name: "Casual",
  44029. image: {
  44030. source: "./media/characters/persephone/casual.svg",
  44031. extra: 1713/1541,
  44032. bottom: 76/1789
  44033. }
  44034. },
  44035. },
  44036. [
  44037. {
  44038. name: "Human Size",
  44039. height: math.unit(6, "feet")
  44040. },
  44041. {
  44042. name: "Big Steppy",
  44043. height: math.unit(600, "meters"),
  44044. default: true
  44045. },
  44046. {
  44047. name: "Galaxy Brain",
  44048. height: math.unit(1, "zettameter")
  44049. },
  44050. ]
  44051. ))
  44052. characterMakers.push(() => makeCharacter(
  44053. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44054. {
  44055. front: {
  44056. height: math.unit(1.85, "meters"),
  44057. name: "Front",
  44058. image: {
  44059. source: "./media/characters/riley-foxthing/front.svg",
  44060. extra: 1495/1354,
  44061. bottom: 122/1617
  44062. }
  44063. },
  44064. frontAlt: {
  44065. height: math.unit(1.85, "meters"),
  44066. name: "Front (Alt)",
  44067. image: {
  44068. source: "./media/characters/riley-foxthing/front-alt.svg",
  44069. extra: 1572/1389,
  44070. bottom: 116/1688
  44071. }
  44072. },
  44073. },
  44074. [
  44075. {
  44076. name: "Normal Sized",
  44077. height: math.unit(1.85, "meters"),
  44078. default: true
  44079. },
  44080. {
  44081. name: "Quite Sizable",
  44082. height: math.unit(5, "meters")
  44083. },
  44084. {
  44085. name: "Rather Large",
  44086. height: math.unit(20, "meters")
  44087. },
  44088. {
  44089. name: "Macro",
  44090. height: math.unit(450, "meters")
  44091. },
  44092. {
  44093. name: "Giga",
  44094. height: math.unit(5, "km")
  44095. },
  44096. ]
  44097. ))
  44098. characterMakers.push(() => makeCharacter(
  44099. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44100. {
  44101. front: {
  44102. height: math.unit(6, "feet"),
  44103. weight: math.unit(200, "lb"),
  44104. name: "Front",
  44105. image: {
  44106. source: "./media/characters/blizzard/front.svg",
  44107. extra: 1136/990,
  44108. bottom: 136/1272
  44109. }
  44110. },
  44111. back: {
  44112. height: math.unit(6, "feet"),
  44113. weight: math.unit(200, "lb"),
  44114. name: "Back",
  44115. image: {
  44116. source: "./media/characters/blizzard/back.svg",
  44117. extra: 1175/1034,
  44118. bottom: 97/1272
  44119. }
  44120. },
  44121. sitting: {
  44122. height: math.unit(3.725, "feet"),
  44123. weight: math.unit(200, "lb"),
  44124. name: "Sitting",
  44125. image: {
  44126. source: "./media/characters/blizzard/sitting.svg",
  44127. extra: 581/485,
  44128. bottom: 90/671
  44129. }
  44130. },
  44131. frontWizard: {
  44132. height: math.unit(7.9, "feet"),
  44133. weight: math.unit(200, "lb"),
  44134. name: "Front (Wizard)",
  44135. image: {
  44136. source: "./media/characters/blizzard/front-wizard.svg"
  44137. }
  44138. },
  44139. backWizard: {
  44140. height: math.unit(7.9, "feet"),
  44141. weight: math.unit(200, "lb"),
  44142. name: "Back (Wizard)",
  44143. image: {
  44144. source: "./media/characters/blizzard/back-wizard.svg"
  44145. }
  44146. },
  44147. frontNsfw: {
  44148. height: math.unit(6, "feet"),
  44149. weight: math.unit(200, "lb"),
  44150. name: "Front (NSFW)",
  44151. image: {
  44152. source: "./media/characters/blizzard/front-nsfw.svg",
  44153. extra: 1136/990,
  44154. bottom: 136/1272
  44155. }
  44156. },
  44157. backNsfw: {
  44158. height: math.unit(6, "feet"),
  44159. weight: math.unit(200, "lb"),
  44160. name: "Back (NSFW)",
  44161. image: {
  44162. source: "./media/characters/blizzard/back-nsfw.svg",
  44163. extra: 1175/1034,
  44164. bottom: 97/1272
  44165. }
  44166. },
  44167. sittingNsfw: {
  44168. height: math.unit(3.725, "feet"),
  44169. weight: math.unit(200, "lb"),
  44170. name: "Sitting (NSFW)",
  44171. image: {
  44172. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44173. extra: 581/485,
  44174. bottom: 90/671
  44175. }
  44176. },
  44177. wizardFrontNsfw: {
  44178. height: math.unit(7.9, "feet"),
  44179. weight: math.unit(200, "lb"),
  44180. name: "Wizard (Front, NSFW)",
  44181. image: {
  44182. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44183. }
  44184. },
  44185. },
  44186. [
  44187. {
  44188. name: "Normal",
  44189. height: math.unit(6, "feet"),
  44190. default: true
  44191. },
  44192. ]
  44193. ))
  44194. characterMakers.push(() => makeCharacter(
  44195. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44196. {
  44197. front: {
  44198. height: math.unit(5 + 2/12, "feet"),
  44199. name: "Front",
  44200. image: {
  44201. source: "./media/characters/lumi/front.svg",
  44202. extra: 1328/1268,
  44203. bottom: 103/1431
  44204. }
  44205. },
  44206. back: {
  44207. height: math.unit(5 + 2/12, "feet"),
  44208. name: "Back",
  44209. image: {
  44210. source: "./media/characters/lumi/back.svg",
  44211. extra: 1381/1327,
  44212. bottom: 43/1424
  44213. }
  44214. },
  44215. },
  44216. [
  44217. {
  44218. name: "Normal",
  44219. height: math.unit(5 + 2/12, "feet"),
  44220. default: true
  44221. },
  44222. ]
  44223. ))
  44224. characterMakers.push(() => makeCharacter(
  44225. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44226. {
  44227. front: {
  44228. height: math.unit(5 + 9/12, "feet"),
  44229. name: "Front",
  44230. image: {
  44231. source: "./media/characters/aliya-cotton/front.svg",
  44232. extra: 577/564,
  44233. bottom: 29/606
  44234. }
  44235. },
  44236. },
  44237. [
  44238. {
  44239. name: "Normal",
  44240. height: math.unit(5 + 9/12, "feet"),
  44241. default: true
  44242. },
  44243. ]
  44244. ))
  44245. characterMakers.push(() => makeCharacter(
  44246. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44247. {
  44248. front: {
  44249. height: math.unit(2.7, "meters"),
  44250. weight: math.unit(25000, "lb"),
  44251. name: "Front",
  44252. image: {
  44253. source: "./media/characters/noah-luxray/front.svg",
  44254. extra: 1644/825,
  44255. bottom: 339/1983
  44256. }
  44257. },
  44258. side: {
  44259. height: math.unit(2.97, "meters"),
  44260. weight: math.unit(25000, "lb"),
  44261. name: "Side",
  44262. image: {
  44263. source: "./media/characters/noah-luxray/side.svg",
  44264. extra: 1319/650,
  44265. bottom: 163/1482
  44266. }
  44267. },
  44268. dick: {
  44269. height: math.unit(7.4, "feet"),
  44270. weight: math.unit(2500, "lb"),
  44271. name: "Dick",
  44272. image: {
  44273. source: "./media/characters/noah-luxray/dick.svg"
  44274. }
  44275. },
  44276. dickAlt: {
  44277. height: math.unit(10.83, "feet"),
  44278. weight: math.unit(2500, "lb"),
  44279. name: "Dick-alt",
  44280. image: {
  44281. source: "./media/characters/noah-luxray/dick-alt.svg"
  44282. }
  44283. },
  44284. },
  44285. [
  44286. {
  44287. name: "BIG",
  44288. height: math.unit(2.7, "meters"),
  44289. default: true
  44290. },
  44291. ]
  44292. ))
  44293. characterMakers.push(() => makeCharacter(
  44294. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44295. {
  44296. standing: {
  44297. height: math.unit(183, "cm"),
  44298. weight: math.unit(68, "kg"),
  44299. name: "Standing",
  44300. image: {
  44301. source: "./media/characters/arion/standing.svg",
  44302. extra: 1869/1807,
  44303. bottom: 93/1962
  44304. }
  44305. },
  44306. reclining: {
  44307. height: math.unit(70.5, "cm"),
  44308. weight: math.unit(68, "lb"),
  44309. name: "Reclining",
  44310. image: {
  44311. source: "./media/characters/arion/reclining.svg",
  44312. extra: 937/870,
  44313. bottom: 63/1000
  44314. }
  44315. },
  44316. },
  44317. [
  44318. {
  44319. name: "Colossus Size, Low",
  44320. height: math.unit(33, "meters"),
  44321. default: true
  44322. },
  44323. {
  44324. name: "Colossus Size, Mid",
  44325. height: math.unit(52, "meters")
  44326. },
  44327. {
  44328. name: "Colossus Size, High",
  44329. height: math.unit(60, "meters")
  44330. },
  44331. {
  44332. name: "Titan Size, Low",
  44333. height: math.unit(91, "meters"),
  44334. },
  44335. {
  44336. name: "Titan Size, Mid",
  44337. height: math.unit(122, "meters")
  44338. },
  44339. {
  44340. name: "Titan Size, High",
  44341. height: math.unit(162, "meters")
  44342. },
  44343. ]
  44344. ))
  44345. characterMakers.push(() => makeCharacter(
  44346. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44347. {
  44348. front: {
  44349. height: math.unit(53, "meters"),
  44350. name: "Front",
  44351. image: {
  44352. source: "./media/characters/stellar-marbey/front.svg",
  44353. extra: 1913/1805,
  44354. bottom: 92/2005
  44355. }
  44356. },
  44357. back: {
  44358. height: math.unit(53, "meters"),
  44359. name: "Back",
  44360. image: {
  44361. source: "./media/characters/stellar-marbey/back.svg",
  44362. extra: 1960/1851,
  44363. bottom: 28/1988
  44364. }
  44365. },
  44366. mouth: {
  44367. height: math.unit(3.5, "meters"),
  44368. name: "Mouth",
  44369. image: {
  44370. source: "./media/characters/stellar-marbey/mouth.svg"
  44371. }
  44372. },
  44373. },
  44374. [
  44375. {
  44376. name: "Macro",
  44377. height: math.unit(53, "meters"),
  44378. default: true
  44379. },
  44380. ]
  44381. ))
  44382. characterMakers.push(() => makeCharacter(
  44383. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44384. {
  44385. front: {
  44386. height: math.unit(8 + 1/12, "feet"),
  44387. weight: math.unit(233, "lb"),
  44388. name: "Front",
  44389. image: {
  44390. source: "./media/characters/matsu/front.svg",
  44391. extra: 832/772,
  44392. bottom: 40/872
  44393. }
  44394. },
  44395. back: {
  44396. height: math.unit(8 + 1/12, "feet"),
  44397. weight: math.unit(233, "lb"),
  44398. name: "Back",
  44399. image: {
  44400. source: "./media/characters/matsu/back.svg",
  44401. extra: 839/780,
  44402. bottom: 47/886
  44403. }
  44404. },
  44405. },
  44406. [
  44407. {
  44408. name: "Normal",
  44409. height: math.unit(8 + 1/12, "feet"),
  44410. default: true
  44411. },
  44412. ]
  44413. ))
  44414. characterMakers.push(() => makeCharacter(
  44415. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44416. {
  44417. front: {
  44418. height: math.unit(4, "feet"),
  44419. weight: math.unit(148, "lb"),
  44420. name: "Front",
  44421. image: {
  44422. source: "./media/characters/thiz/front.svg",
  44423. extra: 1913/1748,
  44424. bottom: 62/1975
  44425. }
  44426. },
  44427. },
  44428. [
  44429. {
  44430. name: "Normal",
  44431. height: math.unit(4, "feet"),
  44432. default: true
  44433. },
  44434. ]
  44435. ))
  44436. characterMakers.push(() => makeCharacter(
  44437. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44438. {
  44439. front: {
  44440. height: math.unit(7 + 6/12, "feet"),
  44441. weight: math.unit(267, "lb"),
  44442. name: "Front",
  44443. image: {
  44444. source: "./media/characters/marcel/front.svg",
  44445. extra: 1221/1096,
  44446. bottom: 76/1297
  44447. }
  44448. },
  44449. },
  44450. [
  44451. {
  44452. name: "Normal",
  44453. height: math.unit(7 + 6/12, "feet"),
  44454. default: true
  44455. },
  44456. ]
  44457. ))
  44458. characterMakers.push(() => makeCharacter(
  44459. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44460. {
  44461. side: {
  44462. height: math.unit(42, "meters"),
  44463. name: "Side",
  44464. image: {
  44465. source: "./media/characters/flake/side.svg",
  44466. extra: 1525/1306,
  44467. bottom: 209/1734
  44468. }
  44469. },
  44470. },
  44471. [
  44472. {
  44473. name: "Normal",
  44474. height: math.unit(42, "meters"),
  44475. default: true
  44476. },
  44477. ]
  44478. ))
  44479. characterMakers.push(() => makeCharacter(
  44480. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44481. {
  44482. dressed: {
  44483. height: math.unit(6 + 4/12, "feet"),
  44484. weight: math.unit(520, "lb"),
  44485. name: "Dressed",
  44486. image: {
  44487. source: "./media/characters/someonne/dressed.svg",
  44488. extra: 1020/1010,
  44489. bottom: 178/1198
  44490. }
  44491. },
  44492. undressed: {
  44493. height: math.unit(6 + 4/12, "feet"),
  44494. weight: math.unit(520, "lb"),
  44495. name: "Undressed",
  44496. image: {
  44497. source: "./media/characters/someonne/undressed.svg",
  44498. extra: 1019/1014,
  44499. bottom: 169/1188
  44500. }
  44501. },
  44502. },
  44503. [
  44504. {
  44505. name: "Normal",
  44506. height: math.unit(6 + 4/12, "feet"),
  44507. default: true
  44508. },
  44509. ]
  44510. ))
  44511. characterMakers.push(() => makeCharacter(
  44512. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44513. {
  44514. front: {
  44515. height: math.unit(3, "feet"),
  44516. weight: math.unit(30, "lb"),
  44517. name: "Front",
  44518. image: {
  44519. source: "./media/characters/till/front.svg",
  44520. extra: 892/823,
  44521. bottom: 55/947
  44522. }
  44523. },
  44524. },
  44525. [
  44526. {
  44527. name: "Normal",
  44528. height: math.unit(3, "feet"),
  44529. default: true
  44530. },
  44531. ]
  44532. ))
  44533. characterMakers.push(() => makeCharacter(
  44534. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44535. {
  44536. front: {
  44537. height: math.unit(9 + 8/12, "feet"),
  44538. weight: math.unit(800, "lb"),
  44539. name: "Front",
  44540. image: {
  44541. source: "./media/characters/sydney-heki/front.svg",
  44542. extra: 1360/1300,
  44543. bottom: 22/1382
  44544. }
  44545. },
  44546. back: {
  44547. height: math.unit(9 + 8/12, "feet"),
  44548. weight: math.unit(800, "lb"),
  44549. name: "Back",
  44550. image: {
  44551. source: "./media/characters/sydney-heki/back.svg",
  44552. extra: 1356/1293,
  44553. bottom: 12/1368
  44554. }
  44555. },
  44556. frontDressed: {
  44557. height: math.unit(9 + 8/12, "feet"),
  44558. weight: math.unit(800, "lb"),
  44559. name: "Front-dressed",
  44560. image: {
  44561. source: "./media/characters/sydney-heki/front-dressed.svg",
  44562. extra: 1360/1300,
  44563. bottom: 22/1382
  44564. }
  44565. },
  44566. },
  44567. [
  44568. {
  44569. name: "Normal",
  44570. height: math.unit(9 + 8/12, "feet"),
  44571. default: true
  44572. },
  44573. {
  44574. name: "Macro",
  44575. height: math.unit(500, "feet")
  44576. },
  44577. {
  44578. name: "Megamacro",
  44579. height: math.unit(3.6, "miles")
  44580. },
  44581. ]
  44582. ))
  44583. characterMakers.push(() => makeCharacter(
  44584. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  44585. {
  44586. front: {
  44587. height: math.unit(200, "cm"),
  44588. weight: math.unit(250, "lb"),
  44589. name: "Front",
  44590. image: {
  44591. source: "./media/characters/fowler-karlsson/front.svg",
  44592. extra: 897/845,
  44593. bottom: 123/1020
  44594. }
  44595. },
  44596. back: {
  44597. height: math.unit(200, "cm"),
  44598. weight: math.unit(250, "lb"),
  44599. name: "Back",
  44600. image: {
  44601. source: "./media/characters/fowler-karlsson/back.svg",
  44602. extra: 999/944,
  44603. bottom: 26/1025
  44604. }
  44605. },
  44606. dick: {
  44607. height: math.unit(1.92, "feet"),
  44608. weight: math.unit(150, "lb"),
  44609. name: "Dick",
  44610. image: {
  44611. source: "./media/characters/fowler-karlsson/dick.svg"
  44612. }
  44613. },
  44614. },
  44615. [
  44616. {
  44617. name: "Normal",
  44618. height: math.unit(200, "cm"),
  44619. default: true
  44620. },
  44621. {
  44622. name: "Smaller Macro",
  44623. height: math.unit(90, "m")
  44624. },
  44625. {
  44626. name: "Macro",
  44627. height: math.unit(150, "m")
  44628. },
  44629. {
  44630. name: "Bigger Macro",
  44631. height: math.unit(300, "m")
  44632. },
  44633. ]
  44634. ))
  44635. characterMakers.push(() => makeCharacter(
  44636. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  44637. {
  44638. side: {
  44639. height: math.unit(8 + 2/12, "feet"),
  44640. weight: math.unit(1, "tonne"),
  44641. name: "Side",
  44642. image: {
  44643. source: "./media/characters/rylide/side.svg",
  44644. extra: 1318/1034,
  44645. bottom: 106/1424
  44646. }
  44647. },
  44648. sitting: {
  44649. height: math.unit(303, "cm"),
  44650. weight: math.unit(1, "tonne"),
  44651. name: "Sitting",
  44652. image: {
  44653. source: "./media/characters/rylide/sitting.svg",
  44654. extra: 1303/1103,
  44655. bottom: 36/1339
  44656. }
  44657. },
  44658. },
  44659. [
  44660. {
  44661. name: "Normal",
  44662. height: math.unit(8 + 2/12, "feet"),
  44663. default: true
  44664. },
  44665. ]
  44666. ))
  44667. characterMakers.push(() => makeCharacter(
  44668. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  44669. {
  44670. front: {
  44671. height: math.unit(5 + 10/12, "feet"),
  44672. weight: math.unit(160, "lb"),
  44673. name: "Front",
  44674. image: {
  44675. source: "./media/characters/pudask/front.svg",
  44676. extra: 1616/1590,
  44677. bottom: 161/1777
  44678. }
  44679. },
  44680. },
  44681. [
  44682. {
  44683. name: "Ferret Height",
  44684. height: math.unit(2 + 5/12, "feet")
  44685. },
  44686. {
  44687. name: "Canon Height",
  44688. height: math.unit(5 + 10/12, "feet"),
  44689. default: true
  44690. },
  44691. ]
  44692. ))
  44693. characterMakers.push(() => makeCharacter(
  44694. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  44695. {
  44696. front: {
  44697. height: math.unit(3 + 6/12, "feet"),
  44698. weight: math.unit(60, "lb"),
  44699. name: "Front",
  44700. image: {
  44701. source: "./media/characters/ramita/front.svg",
  44702. extra: 1402/1232,
  44703. bottom: 62/1464
  44704. }
  44705. },
  44706. dressed: {
  44707. height: math.unit(3 + 6/12, "feet"),
  44708. weight: math.unit(60, "lb"),
  44709. name: "Dressed",
  44710. image: {
  44711. source: "./media/characters/ramita/dressed.svg",
  44712. extra: 1534/1249,
  44713. bottom: 50/1584
  44714. }
  44715. },
  44716. },
  44717. [
  44718. {
  44719. name: "Normal",
  44720. height: math.unit(3 + 6/12, "feet"),
  44721. default: true
  44722. },
  44723. ]
  44724. ))
  44725. characterMakers.push(() => makeCharacter(
  44726. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  44727. {
  44728. front: {
  44729. height: math.unit(8, "feet"),
  44730. name: "Front",
  44731. image: {
  44732. source: "./media/characters/ark/front.svg",
  44733. extra: 772/693,
  44734. bottom: 45/817
  44735. }
  44736. },
  44737. },
  44738. [
  44739. {
  44740. name: "Normal",
  44741. height: math.unit(8, "feet"),
  44742. default: true
  44743. },
  44744. ]
  44745. ))
  44746. characterMakers.push(() => makeCharacter(
  44747. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  44748. {
  44749. front: {
  44750. height: math.unit(6, "feet"),
  44751. weight: math.unit(250, "lb"),
  44752. volume: math.unit(5/8, "gallons"),
  44753. name: "Front",
  44754. image: {
  44755. source: "./media/characters/ludwig-horn/front.svg",
  44756. extra: 1782/1635,
  44757. bottom: 96/1878
  44758. }
  44759. },
  44760. back: {
  44761. height: math.unit(6, "feet"),
  44762. weight: math.unit(250, "lb"),
  44763. volume: math.unit(5/8, "gallons"),
  44764. name: "Back",
  44765. image: {
  44766. source: "./media/characters/ludwig-horn/back.svg",
  44767. extra: 1874/1729,
  44768. bottom: 27/1901
  44769. }
  44770. },
  44771. dick: {
  44772. height: math.unit(1.05, "feet"),
  44773. weight: math.unit(15, "lb"),
  44774. volume: math.unit(5/8, "gallons"),
  44775. name: "Dick",
  44776. image: {
  44777. source: "./media/characters/ludwig-horn/dick.svg"
  44778. }
  44779. },
  44780. },
  44781. [
  44782. {
  44783. name: "Small",
  44784. height: math.unit(6, "feet")
  44785. },
  44786. {
  44787. name: "Typical",
  44788. height: math.unit(12, "feet"),
  44789. default: true
  44790. },
  44791. {
  44792. name: "Building",
  44793. height: math.unit(80, "feet")
  44794. },
  44795. {
  44796. name: "Town",
  44797. height: math.unit(800, "feet")
  44798. },
  44799. {
  44800. name: "Kingdom",
  44801. height: math.unit(80000, "feet")
  44802. },
  44803. {
  44804. name: "Planet",
  44805. height: math.unit(8000000, "feet")
  44806. },
  44807. {
  44808. name: "Universe",
  44809. height: math.unit(8000000000, "feet")
  44810. },
  44811. {
  44812. name: "Transcended",
  44813. height: math.unit(8e27, "feet")
  44814. },
  44815. ]
  44816. ))
  44817. characterMakers.push(() => makeCharacter(
  44818. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  44819. {
  44820. front: {
  44821. height: math.unit(5, "feet"),
  44822. weight: math.unit(50, "kg"),
  44823. name: "Front",
  44824. image: {
  44825. source: "./media/characters/biot-avery/front.svg",
  44826. extra: 1295/1232,
  44827. bottom: 86/1381
  44828. }
  44829. },
  44830. },
  44831. [
  44832. {
  44833. name: "Normal",
  44834. height: math.unit(5, "feet"),
  44835. default: true
  44836. },
  44837. ]
  44838. ))
  44839. characterMakers.push(() => makeCharacter(
  44840. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  44841. {
  44842. front: {
  44843. height: math.unit(6, "feet"),
  44844. name: "Front",
  44845. image: {
  44846. source: "./media/characters/kitsune-kiro/front.svg",
  44847. extra: 1270/1158,
  44848. bottom: 42/1312
  44849. }
  44850. },
  44851. frontAlt: {
  44852. height: math.unit(6, "feet"),
  44853. name: "Front-alt",
  44854. image: {
  44855. source: "./media/characters/kitsune-kiro/front-alt.svg",
  44856. extra: 1130/1081,
  44857. bottom: 36/1166
  44858. }
  44859. },
  44860. },
  44861. [
  44862. {
  44863. name: "Smol",
  44864. height: math.unit(3, "feet")
  44865. },
  44866. {
  44867. name: "Normal",
  44868. height: math.unit(6, "feet"),
  44869. default: true
  44870. },
  44871. ]
  44872. ))
  44873. characterMakers.push(() => makeCharacter(
  44874. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  44875. {
  44876. front: {
  44877. height: math.unit(6, "feet"),
  44878. weight: math.unit(125, "lb"),
  44879. name: "Front",
  44880. image: {
  44881. source: "./media/characters/jack-thatcher/front.svg",
  44882. extra: 1474/1370,
  44883. bottom: 26/1500
  44884. }
  44885. },
  44886. back: {
  44887. height: math.unit(6, "feet"),
  44888. weight: math.unit(125, "lb"),
  44889. name: "Back",
  44890. image: {
  44891. source: "./media/characters/jack-thatcher/back.svg",
  44892. extra: 1489/1384,
  44893. bottom: 18/1507
  44894. }
  44895. },
  44896. },
  44897. [
  44898. {
  44899. name: "Normal",
  44900. height: math.unit(6, "feet"),
  44901. default: true
  44902. },
  44903. {
  44904. name: "Macro",
  44905. height: math.unit(75, "feet")
  44906. },
  44907. {
  44908. name: "Macro-er",
  44909. height: math.unit(250, "feet")
  44910. },
  44911. ]
  44912. ))
  44913. characterMakers.push(() => makeCharacter(
  44914. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  44915. {
  44916. front: {
  44917. height: math.unit(7, "feet"),
  44918. weight: math.unit(110, "kg"),
  44919. name: "Front",
  44920. image: {
  44921. source: "./media/characters/max-hyper/front.svg",
  44922. extra: 1969/1881,
  44923. bottom: 49/2018
  44924. }
  44925. },
  44926. },
  44927. [
  44928. {
  44929. name: "Normal",
  44930. height: math.unit(7, "feet"),
  44931. default: true
  44932. },
  44933. ]
  44934. ))
  44935. characterMakers.push(() => makeCharacter(
  44936. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  44937. {
  44938. front: {
  44939. height: math.unit(5 + 5/12, "feet"),
  44940. weight: math.unit(160, "lb"),
  44941. name: "Front",
  44942. image: {
  44943. source: "./media/characters/spook/front.svg",
  44944. extra: 794/791,
  44945. bottom: 54/848
  44946. }
  44947. },
  44948. back: {
  44949. height: math.unit(5 + 5/12, "feet"),
  44950. weight: math.unit(160, "lb"),
  44951. name: "Back",
  44952. image: {
  44953. source: "./media/characters/spook/back.svg",
  44954. extra: 812/798,
  44955. bottom: 32/844
  44956. }
  44957. },
  44958. },
  44959. [
  44960. {
  44961. name: "Normal",
  44962. height: math.unit(5 + 5/12, "feet"),
  44963. default: true
  44964. },
  44965. ]
  44966. ))
  44967. characterMakers.push(() => makeCharacter(
  44968. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  44969. {
  44970. front: {
  44971. height: math.unit(18, "feet"),
  44972. name: "Front",
  44973. image: {
  44974. source: "./media/characters/xeaduulix/front.svg",
  44975. extra: 1380/1166,
  44976. bottom: 110/1490
  44977. }
  44978. },
  44979. back: {
  44980. height: math.unit(18, "feet"),
  44981. name: "Back",
  44982. image: {
  44983. source: "./media/characters/xeaduulix/back.svg",
  44984. extra: 1592/1170,
  44985. bottom: 128/1720
  44986. }
  44987. },
  44988. frontNsfw: {
  44989. height: math.unit(18, "feet"),
  44990. name: "Front (NSFW)",
  44991. image: {
  44992. source: "./media/characters/xeaduulix/front-nsfw.svg",
  44993. extra: 1380/1166,
  44994. bottom: 110/1490
  44995. }
  44996. },
  44997. backNsfw: {
  44998. height: math.unit(18, "feet"),
  44999. name: "Back (NSFW)",
  45000. image: {
  45001. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45002. extra: 1592/1170,
  45003. bottom: 128/1720
  45004. }
  45005. },
  45006. },
  45007. [
  45008. {
  45009. name: "Normal",
  45010. height: math.unit(18, "feet"),
  45011. default: true
  45012. },
  45013. ]
  45014. ))
  45015. characterMakers.push(() => makeCharacter(
  45016. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45017. {
  45018. spreadWings: {
  45019. height: math.unit(20, "feet"),
  45020. name: "Spread Wings",
  45021. image: {
  45022. source: "./media/characters/fledge/spread-wings.svg",
  45023. extra: 693/635,
  45024. bottom: 26/719
  45025. }
  45026. },
  45027. front: {
  45028. height: math.unit(20, "feet"),
  45029. name: "Front",
  45030. image: {
  45031. source: "./media/characters/fledge/front.svg",
  45032. extra: 684/637,
  45033. bottom: 18/702
  45034. }
  45035. },
  45036. frontAlt: {
  45037. height: math.unit(20, "feet"),
  45038. name: "Front (Alt)",
  45039. image: {
  45040. source: "./media/characters/fledge/front-alt.svg",
  45041. extra: 708/664,
  45042. bottom: 13/721
  45043. }
  45044. },
  45045. back: {
  45046. height: math.unit(20, "feet"),
  45047. name: "Back",
  45048. image: {
  45049. source: "./media/characters/fledge/back.svg",
  45050. extra: 718/634,
  45051. bottom: 22/740
  45052. }
  45053. },
  45054. head: {
  45055. height: math.unit(5.55, "feet"),
  45056. name: "Head",
  45057. image: {
  45058. source: "./media/characters/fledge/head.svg"
  45059. }
  45060. },
  45061. headAlt: {
  45062. height: math.unit(5.1, "feet"),
  45063. name: "Head (Alt)",
  45064. image: {
  45065. source: "./media/characters/fledge/head-alt.svg"
  45066. }
  45067. },
  45068. },
  45069. [
  45070. {
  45071. name: "Small",
  45072. height: math.unit(6 + 2/12, "feet")
  45073. },
  45074. {
  45075. name: "Big",
  45076. height: math.unit(20, "feet"),
  45077. default: true
  45078. },
  45079. {
  45080. name: "Giant",
  45081. height: math.unit(100, "feet")
  45082. },
  45083. {
  45084. name: "Macro",
  45085. height: math.unit(200, "feet")
  45086. },
  45087. ]
  45088. ))
  45089. characterMakers.push(() => makeCharacter(
  45090. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45091. {
  45092. front: {
  45093. height: math.unit(1, "meter"),
  45094. name: "Front",
  45095. image: {
  45096. source: "./media/characters/atlas-morenai/front.svg",
  45097. extra: 1275/1043,
  45098. bottom: 19/1294
  45099. }
  45100. },
  45101. back: {
  45102. height: math.unit(1, "meter"),
  45103. name: "Back",
  45104. image: {
  45105. source: "./media/characters/atlas-morenai/back.svg",
  45106. extra: 1141/1001,
  45107. bottom: 25/1166
  45108. }
  45109. },
  45110. },
  45111. [
  45112. {
  45113. name: "Normal",
  45114. height: math.unit(1, "meter"),
  45115. default: true
  45116. },
  45117. {
  45118. name: "Magic-Infused",
  45119. height: math.unit(5, "meters")
  45120. },
  45121. ]
  45122. ))
  45123. characterMakers.push(() => makeCharacter(
  45124. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45125. {
  45126. front: {
  45127. height: math.unit(5, "meters"),
  45128. name: "Front",
  45129. image: {
  45130. source: "./media/characters/cintia/front.svg",
  45131. extra: 1312/1228,
  45132. bottom: 38/1350
  45133. }
  45134. },
  45135. back: {
  45136. height: math.unit(5, "meters"),
  45137. name: "Back",
  45138. image: {
  45139. source: "./media/characters/cintia/back.svg",
  45140. extra: 1260/1166,
  45141. bottom: 98/1358
  45142. }
  45143. },
  45144. frontDick: {
  45145. height: math.unit(5, "meters"),
  45146. name: "Front (Dick)",
  45147. image: {
  45148. source: "./media/characters/cintia/front-dick.svg",
  45149. extra: 1312/1228,
  45150. bottom: 38/1350
  45151. }
  45152. },
  45153. backDick: {
  45154. height: math.unit(5, "meters"),
  45155. name: "Back (Dick)",
  45156. image: {
  45157. source: "./media/characters/cintia/back-dick.svg",
  45158. extra: 1260/1166,
  45159. bottom: 98/1358
  45160. }
  45161. },
  45162. bust: {
  45163. height: math.unit(1.97, "meters"),
  45164. name: "Bust",
  45165. image: {
  45166. source: "./media/characters/cintia/bust.svg",
  45167. extra: 617/565,
  45168. bottom: 0/617
  45169. }
  45170. },
  45171. },
  45172. [
  45173. {
  45174. name: "Normal",
  45175. height: math.unit(5, "meters"),
  45176. default: true
  45177. },
  45178. ]
  45179. ))
  45180. characterMakers.push(() => makeCharacter(
  45181. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45182. {
  45183. side: {
  45184. height: math.unit(100, "feet"),
  45185. name: "Side",
  45186. image: {
  45187. source: "./media/characters/denora/side.svg",
  45188. extra: 875/803,
  45189. bottom: 9/884
  45190. }
  45191. },
  45192. },
  45193. [
  45194. {
  45195. name: "Standard",
  45196. height: math.unit(100, "feet"),
  45197. default: true
  45198. },
  45199. {
  45200. name: "Grand",
  45201. height: math.unit(1000, "feet")
  45202. },
  45203. {
  45204. name: "Conquering",
  45205. height: math.unit(10000, "feet")
  45206. },
  45207. ]
  45208. ))
  45209. characterMakers.push(() => makeCharacter(
  45210. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45211. {
  45212. dressed: {
  45213. height: math.unit(8 + 5/12, "feet"),
  45214. weight: math.unit(700, "lb"),
  45215. name: "Dressed",
  45216. image: {
  45217. source: "./media/characters/kiva/dressed.svg",
  45218. extra: 1102/1055,
  45219. bottom: 60/1162
  45220. }
  45221. },
  45222. nude: {
  45223. height: math.unit(8 + 5/12, "feet"),
  45224. weight: math.unit(700, "lb"),
  45225. name: "Nude",
  45226. image: {
  45227. source: "./media/characters/kiva/nude.svg",
  45228. extra: 1102/1055,
  45229. bottom: 60/1162
  45230. }
  45231. },
  45232. },
  45233. [
  45234. {
  45235. name: "Base Height",
  45236. height: math.unit(8 + 5/12, "feet"),
  45237. default: true
  45238. },
  45239. {
  45240. name: "Macro",
  45241. height: math.unit(100, "feet")
  45242. },
  45243. {
  45244. name: "Max",
  45245. height: math.unit(3280, "feet")
  45246. },
  45247. ]
  45248. ))
  45249. characterMakers.push(() => makeCharacter(
  45250. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45251. {
  45252. front: {
  45253. height: math.unit(6 + 8/12, "feet"),
  45254. weight: math.unit(250, "lb"),
  45255. name: "Front",
  45256. image: {
  45257. source: "./media/characters/ztragon/front.svg",
  45258. extra: 1825/1684,
  45259. bottom: 98/1923
  45260. }
  45261. },
  45262. },
  45263. [
  45264. {
  45265. name: "Normal",
  45266. height: math.unit(6 + 8/12, "feet"),
  45267. default: true
  45268. },
  45269. {
  45270. name: "Macro",
  45271. height: math.unit(80, "feet")
  45272. },
  45273. ]
  45274. ))
  45275. characterMakers.push(() => makeCharacter(
  45276. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45277. {
  45278. front: {
  45279. height: math.unit(10.4, "feet"),
  45280. weight: math.unit(2, "tons"),
  45281. name: "Front",
  45282. image: {
  45283. source: "./media/characters/yesenia/front.svg",
  45284. extra: 1479/1474,
  45285. bottom: 233/1712
  45286. }
  45287. },
  45288. },
  45289. [
  45290. {
  45291. name: "Normal",
  45292. height: math.unit(10.4, "feet"),
  45293. default: true
  45294. },
  45295. ]
  45296. ))
  45297. characterMakers.push(() => makeCharacter(
  45298. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45299. {
  45300. normal: {
  45301. height: math.unit(6 + 1/12, "feet"),
  45302. weight: math.unit(180, "lb"),
  45303. name: "Normal",
  45304. image: {
  45305. source: "./media/characters/leanne-lycheborne/normal.svg",
  45306. extra: 1748/1660,
  45307. bottom: 98/1846
  45308. }
  45309. },
  45310. were: {
  45311. height: math.unit(12, "feet"),
  45312. weight: math.unit(1600, "lb"),
  45313. name: "Were",
  45314. image: {
  45315. source: "./media/characters/leanne-lycheborne/were.svg",
  45316. extra: 1485/1432,
  45317. bottom: 66/1551
  45318. }
  45319. },
  45320. },
  45321. [
  45322. {
  45323. name: "Normal",
  45324. height: math.unit(6 + 1/12, "feet"),
  45325. default: true
  45326. },
  45327. ]
  45328. ))
  45329. characterMakers.push(() => makeCharacter(
  45330. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45331. {
  45332. side: {
  45333. height: math.unit(13, "feet"),
  45334. name: "Side",
  45335. image: {
  45336. source: "./media/characters/kira-tyler/side.svg",
  45337. extra: 693/393,
  45338. bottom: 58/751
  45339. }
  45340. },
  45341. },
  45342. [
  45343. {
  45344. name: "Normal",
  45345. height: math.unit(13, "feet"),
  45346. default: true
  45347. },
  45348. ]
  45349. ))
  45350. characterMakers.push(() => makeCharacter(
  45351. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45352. {
  45353. front: {
  45354. height: math.unit(10.3, "feet"),
  45355. weight: math.unit(150, "lb"),
  45356. name: "Front",
  45357. image: {
  45358. source: "./media/characters/blaze/front.svg",
  45359. extra: 1378/1286,
  45360. bottom: 172/1550
  45361. }
  45362. },
  45363. },
  45364. [
  45365. {
  45366. name: "Normal",
  45367. height: math.unit(10.3, "feet"),
  45368. default: true
  45369. },
  45370. ]
  45371. ))
  45372. characterMakers.push(() => makeCharacter(
  45373. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45374. {
  45375. side: {
  45376. height: math.unit(2, "meters"),
  45377. weight: math.unit(400, "kg"),
  45378. name: "Side",
  45379. image: {
  45380. source: "./media/characters/anu/side.svg",
  45381. extra: 506/394,
  45382. bottom: 18/524
  45383. }
  45384. },
  45385. },
  45386. [
  45387. {
  45388. name: "Humanoid",
  45389. height: math.unit(2, "meters")
  45390. },
  45391. {
  45392. name: "Normal",
  45393. height: math.unit(5, "meters"),
  45394. default: true
  45395. },
  45396. ]
  45397. ))
  45398. characterMakers.push(() => makeCharacter(
  45399. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45400. {
  45401. front: {
  45402. height: math.unit(5 + 5/12, "feet"),
  45403. weight: math.unit(170, "lb"),
  45404. name: "Front",
  45405. image: {
  45406. source: "./media/characters/synx-the-lynx/front.svg",
  45407. extra: 1893/1745,
  45408. bottom: 17/1910
  45409. }
  45410. },
  45411. side: {
  45412. height: math.unit(5 + 5/12, "feet"),
  45413. weight: math.unit(170, "lb"),
  45414. name: "Side",
  45415. image: {
  45416. source: "./media/characters/synx-the-lynx/side.svg",
  45417. extra: 1884/1740,
  45418. bottom: 39/1923
  45419. }
  45420. },
  45421. back: {
  45422. height: math.unit(5 + 5/12, "feet"),
  45423. weight: math.unit(170, "lb"),
  45424. name: "Back",
  45425. image: {
  45426. source: "./media/characters/synx-the-lynx/back.svg",
  45427. extra: 1903/1755,
  45428. bottom: 14/1917
  45429. }
  45430. },
  45431. },
  45432. [
  45433. {
  45434. name: "Normal",
  45435. height: math.unit(5 + 5/12, "feet"),
  45436. default: true
  45437. },
  45438. ]
  45439. ))
  45440. characterMakers.push(() => makeCharacter(
  45441. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45442. {
  45443. back: {
  45444. height: math.unit(15, "feet"),
  45445. name: "Back",
  45446. image: {
  45447. source: "./media/characters/nadezda-fex/back.svg",
  45448. extra: 1695/1481,
  45449. bottom: 25/1720
  45450. }
  45451. },
  45452. },
  45453. [
  45454. {
  45455. name: "Normal",
  45456. height: math.unit(15, "feet"),
  45457. default: true
  45458. },
  45459. {
  45460. name: "Macro",
  45461. height: math.unit(2.5, "miles")
  45462. },
  45463. {
  45464. name: "Goddess",
  45465. height: math.unit(2, "multiverses")
  45466. },
  45467. ]
  45468. ))
  45469. characterMakers.push(() => makeCharacter(
  45470. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45471. {
  45472. front: {
  45473. height: math.unit(216, "cm"),
  45474. name: "Front",
  45475. image: {
  45476. source: "./media/characters/lev/front.svg",
  45477. extra: 1728/1670,
  45478. bottom: 82/1810
  45479. }
  45480. },
  45481. back: {
  45482. height: math.unit(216, "cm"),
  45483. name: "Back",
  45484. image: {
  45485. source: "./media/characters/lev/back.svg",
  45486. extra: 1738/1675,
  45487. bottom: 24/1762
  45488. }
  45489. },
  45490. dressed: {
  45491. height: math.unit(216, "cm"),
  45492. name: "Dressed",
  45493. image: {
  45494. source: "./media/characters/lev/dressed.svg",
  45495. extra: 1397/1351,
  45496. bottom: 73/1470
  45497. }
  45498. },
  45499. head: {
  45500. height: math.unit(0.51, "meter"),
  45501. name: "Head",
  45502. image: {
  45503. source: "./media/characters/lev/head.svg"
  45504. }
  45505. },
  45506. },
  45507. [
  45508. {
  45509. name: "Normal",
  45510. height: math.unit(216, "cm"),
  45511. default: true
  45512. },
  45513. {
  45514. name: "Relatively Macro",
  45515. height: math.unit(80, "meters")
  45516. },
  45517. {
  45518. name: "Megamacro",
  45519. height: math.unit(21600, "meters")
  45520. },
  45521. {
  45522. name: "Megamacro+",
  45523. height: math.unit(64800, "meters")
  45524. },
  45525. ]
  45526. ))
  45527. characterMakers.push(() => makeCharacter(
  45528. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45529. {
  45530. front: {
  45531. height: math.unit(2, "meters"),
  45532. weight: math.unit(80, "kg"),
  45533. name: "Front",
  45534. image: {
  45535. source: "./media/characters/moka/front.svg",
  45536. extra: 1337/1255,
  45537. bottom: 58/1395
  45538. }
  45539. },
  45540. },
  45541. [
  45542. {
  45543. name: "Micro",
  45544. height: math.unit(15, "cm")
  45545. },
  45546. {
  45547. name: "Normal",
  45548. height: math.unit(2, "meters"),
  45549. default: true
  45550. },
  45551. {
  45552. name: "Macro",
  45553. height: math.unit(20, "meters"),
  45554. },
  45555. ]
  45556. ))
  45557. characterMakers.push(() => makeCharacter(
  45558. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45559. {
  45560. front: {
  45561. height: math.unit(9, "feet"),
  45562. weight: math.unit(240, "lb"),
  45563. name: "Front",
  45564. image: {
  45565. source: "./media/characters/kuzco/front.svg",
  45566. extra: 1593/1487,
  45567. bottom: 32/1625
  45568. }
  45569. },
  45570. side: {
  45571. height: math.unit(9, "feet"),
  45572. weight: math.unit(240, "lb"),
  45573. name: "Side",
  45574. image: {
  45575. source: "./media/characters/kuzco/side.svg",
  45576. extra: 1575/1485,
  45577. bottom: 30/1605
  45578. }
  45579. },
  45580. back: {
  45581. height: math.unit(9, "feet"),
  45582. weight: math.unit(240, "lb"),
  45583. name: "Back",
  45584. image: {
  45585. source: "./media/characters/kuzco/back.svg",
  45586. extra: 1603/1514,
  45587. bottom: 14/1617
  45588. }
  45589. },
  45590. },
  45591. [
  45592. {
  45593. name: "Normal",
  45594. height: math.unit(9, "feet"),
  45595. default: true
  45596. },
  45597. ]
  45598. ))
  45599. characterMakers.push(() => makeCharacter(
  45600. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  45601. {
  45602. side: {
  45603. height: math.unit(2, "meters"),
  45604. weight: math.unit(300, "kg"),
  45605. name: "Side",
  45606. image: {
  45607. source: "./media/characters/ceruleus/side.svg",
  45608. extra: 1068/974,
  45609. bottom: 126/1194
  45610. }
  45611. },
  45612. },
  45613. [
  45614. {
  45615. name: "Normal",
  45616. height: math.unit(16, "meters"),
  45617. default: true
  45618. },
  45619. ]
  45620. ))
  45621. characterMakers.push(() => makeCharacter(
  45622. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  45623. {
  45624. front: {
  45625. height: math.unit(9, "feet"),
  45626. weight: math.unit(500, "kg"),
  45627. name: "Front",
  45628. image: {
  45629. source: "./media/characters/acouya/front.svg",
  45630. extra: 1660/1473,
  45631. bottom: 28/1688
  45632. }
  45633. },
  45634. },
  45635. [
  45636. {
  45637. name: "Normal",
  45638. height: math.unit(9, "feet"),
  45639. default: true
  45640. },
  45641. ]
  45642. ))
  45643. characterMakers.push(() => makeCharacter(
  45644. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  45645. {
  45646. front: {
  45647. height: math.unit(5 + 6/12, "feet"),
  45648. weight: math.unit(195, "lb"),
  45649. name: "Front",
  45650. image: {
  45651. source: "./media/characters/vant/front.svg",
  45652. extra: 1396/1320,
  45653. bottom: 20/1416
  45654. }
  45655. },
  45656. back: {
  45657. height: math.unit(5 + 6/12, "feet"),
  45658. weight: math.unit(195, "lb"),
  45659. name: "Back",
  45660. image: {
  45661. source: "./media/characters/vant/back.svg",
  45662. extra: 1396/1320,
  45663. bottom: 20/1416
  45664. }
  45665. },
  45666. maw: {
  45667. height: math.unit(0.75, "feet"),
  45668. name: "Maw",
  45669. image: {
  45670. source: "./media/characters/vant/maw.svg"
  45671. }
  45672. },
  45673. paw: {
  45674. height: math.unit(1.07, "feet"),
  45675. name: "Paw",
  45676. image: {
  45677. source: "./media/characters/vant/paw.svg"
  45678. }
  45679. },
  45680. },
  45681. [
  45682. {
  45683. name: "Micro",
  45684. height: math.unit(0.25, "inches")
  45685. },
  45686. {
  45687. name: "Normal",
  45688. height: math.unit(5 + 6/12, "feet"),
  45689. default: true
  45690. },
  45691. {
  45692. name: "Macro",
  45693. height: math.unit(75, "feet")
  45694. },
  45695. ]
  45696. ))
  45697. characterMakers.push(() => makeCharacter(
  45698. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  45699. {
  45700. front: {
  45701. height: math.unit(30, "meters"),
  45702. weight: math.unit(363, "tons"),
  45703. name: "Front",
  45704. image: {
  45705. source: "./media/characters/ahra/front.svg",
  45706. extra: 1914/1814,
  45707. bottom: 46/1960
  45708. }
  45709. },
  45710. },
  45711. [
  45712. {
  45713. name: "Macro",
  45714. height: math.unit(30, "meters"),
  45715. default: true
  45716. },
  45717. ]
  45718. ))
  45719. characterMakers.push(() => makeCharacter(
  45720. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  45721. {
  45722. undressed: {
  45723. height: math.unit(2, "m"),
  45724. weight: math.unit(250, "kg"),
  45725. name: "Undressed",
  45726. image: {
  45727. source: "./media/characters/coriander/undressed.svg",
  45728. extra: 1757/1606,
  45729. bottom: 107/1864
  45730. }
  45731. },
  45732. dressed: {
  45733. height: math.unit(2, "m"),
  45734. weight: math.unit(250, "kg"),
  45735. name: "Dressed",
  45736. image: {
  45737. source: "./media/characters/coriander/dressed.svg",
  45738. extra: 1757/1606,
  45739. bottom: 107/1864
  45740. }
  45741. },
  45742. },
  45743. [
  45744. {
  45745. name: "Normal",
  45746. height: math.unit(4, "meters"),
  45747. default: true
  45748. },
  45749. {
  45750. name: "XL",
  45751. height: math.unit(6, "meters")
  45752. },
  45753. {
  45754. name: "XXL",
  45755. height: math.unit(8, "meters")
  45756. },
  45757. ]
  45758. ))
  45759. characterMakers.push(() => makeCharacter(
  45760. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  45761. {
  45762. front: {
  45763. height: math.unit(6, "feet"),
  45764. name: "Front",
  45765. image: {
  45766. source: "./media/characters/syrinx/front.svg",
  45767. extra: 1557/1259,
  45768. bottom: 171/1728
  45769. }
  45770. },
  45771. },
  45772. [
  45773. {
  45774. name: "Normal",
  45775. height: math.unit(6 + 3/12, "feet"),
  45776. default: true
  45777. },
  45778. ]
  45779. ))
  45780. characterMakers.push(() => makeCharacter(
  45781. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  45782. {
  45783. front: {
  45784. height: math.unit(11 + 6/12, "feet"),
  45785. weight: math.unit(1.5, "tons"),
  45786. name: "Front",
  45787. image: {
  45788. source: "./media/characters/bor/front.svg",
  45789. extra: 1189/1109,
  45790. bottom: 170/1359
  45791. }
  45792. },
  45793. },
  45794. [
  45795. {
  45796. name: "Normal",
  45797. height: math.unit(11 + 6/12, "feet"),
  45798. default: true
  45799. },
  45800. {
  45801. name: "Macro",
  45802. height: math.unit(32 + 9/12, "feet")
  45803. },
  45804. ]
  45805. ))
  45806. characterMakers.push(() => makeCharacter(
  45807. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  45808. {
  45809. anthro: {
  45810. height: math.unit(9, "feet"),
  45811. weight: math.unit(2076, "lb"),
  45812. name: "Anthro",
  45813. image: {
  45814. source: "./media/characters/abacus/anthro.svg",
  45815. extra: 1540/1494,
  45816. bottom: 233/1773
  45817. }
  45818. },
  45819. pigeon: {
  45820. height: math.unit(1, "feet"),
  45821. name: "Pigeon",
  45822. image: {
  45823. source: "./media/characters/abacus/pigeon.svg",
  45824. extra: 528/525,
  45825. bottom: 46/574
  45826. }
  45827. },
  45828. },
  45829. [
  45830. {
  45831. name: "Normal",
  45832. height: math.unit(9, "feet"),
  45833. default: true
  45834. },
  45835. ]
  45836. ))
  45837. characterMakers.push(() => makeCharacter(
  45838. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  45839. {
  45840. side: {
  45841. height: math.unit(6, "feet"),
  45842. name: "Side",
  45843. image: {
  45844. source: "./media/characters/delkhan/side.svg",
  45845. extra: 1884/1786,
  45846. bottom: 308/2192
  45847. }
  45848. },
  45849. head: {
  45850. height: math.unit(3.38, "feet"),
  45851. name: "Head",
  45852. image: {
  45853. source: "./media/characters/delkhan/head.svg"
  45854. }
  45855. },
  45856. },
  45857. [
  45858. {
  45859. name: "Normal",
  45860. height: math.unit(72, "feet"),
  45861. default: true
  45862. },
  45863. {
  45864. name: "Giant",
  45865. height: math.unit(172, "feet")
  45866. },
  45867. ]
  45868. ))
  45869. characterMakers.push(() => makeCharacter(
  45870. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  45871. {
  45872. standing: {
  45873. height: math.unit(6, "feet"),
  45874. name: "Standing",
  45875. image: {
  45876. source: "./media/characters/euchidat/standing.svg",
  45877. extra: 1612/1553,
  45878. bottom: 116/1728
  45879. }
  45880. },
  45881. leaning: {
  45882. height: math.unit(6, "feet"),
  45883. name: "Leaning",
  45884. image: {
  45885. source: "./media/characters/euchidat/leaning.svg",
  45886. extra: 1719/1674,
  45887. bottom: 27/1746
  45888. }
  45889. },
  45890. },
  45891. [
  45892. {
  45893. name: "Normal",
  45894. height: math.unit(175, "feet"),
  45895. default: true
  45896. },
  45897. {
  45898. name: "Megamacro",
  45899. height: math.unit(190, "miles")
  45900. },
  45901. {
  45902. name: "Gigamacro",
  45903. height: math.unit(190000, "miles")
  45904. },
  45905. ]
  45906. ))
  45907. characterMakers.push(() => makeCharacter(
  45908. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  45909. {
  45910. front: {
  45911. height: math.unit(6, "feet"),
  45912. weight: math.unit(150, "lb"),
  45913. name: "Front",
  45914. image: {
  45915. source: "./media/characters/rebecca-stack/front.svg",
  45916. extra: 1256/1201,
  45917. bottom: 18/1274
  45918. }
  45919. },
  45920. },
  45921. [
  45922. {
  45923. name: "Normal",
  45924. height: math.unit(5 + 8/12, "feet"),
  45925. default: true
  45926. },
  45927. {
  45928. name: "Demolitionist",
  45929. height: math.unit(200, "feet")
  45930. },
  45931. {
  45932. name: "Out of Control",
  45933. height: math.unit(2, "miles")
  45934. },
  45935. {
  45936. name: "Giga",
  45937. height: math.unit(7200, "miles")
  45938. },
  45939. ]
  45940. ))
  45941. characterMakers.push(() => makeCharacter(
  45942. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  45943. {
  45944. front: {
  45945. height: math.unit(6, "feet"),
  45946. weight: math.unit(150, "lb"),
  45947. name: "Front",
  45948. image: {
  45949. source: "./media/characters/jenny-cartwright/front.svg",
  45950. extra: 1384/1376,
  45951. bottom: 58/1442
  45952. }
  45953. },
  45954. },
  45955. [
  45956. {
  45957. name: "Normal",
  45958. height: math.unit(6 + 7/12, "feet"),
  45959. default: true
  45960. },
  45961. {
  45962. name: "Librarian",
  45963. height: math.unit(55, "feet")
  45964. },
  45965. {
  45966. name: "Sightseer",
  45967. height: math.unit(50, "miles")
  45968. },
  45969. {
  45970. name: "Giga",
  45971. height: math.unit(30000, "miles")
  45972. },
  45973. ]
  45974. ))
  45975. characterMakers.push(() => makeCharacter(
  45976. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  45977. {
  45978. nude: {
  45979. height: math.unit(8, "feet"),
  45980. weight: math.unit(225, "lb"),
  45981. name: "Nude",
  45982. image: {
  45983. source: "./media/characters/marvy/nude.svg",
  45984. extra: 1900/1683,
  45985. bottom: 89/1989
  45986. }
  45987. },
  45988. dressed: {
  45989. height: math.unit(8, "feet"),
  45990. weight: math.unit(225, "lb"),
  45991. name: "Dressed",
  45992. image: {
  45993. source: "./media/characters/marvy/dressed.svg",
  45994. extra: 1900/1683,
  45995. bottom: 89/1989
  45996. }
  45997. },
  45998. head: {
  45999. height: math.unit(2.85, "feet"),
  46000. name: "Head",
  46001. image: {
  46002. source: "./media/characters/marvy/head.svg"
  46003. }
  46004. },
  46005. },
  46006. [
  46007. {
  46008. name: "Normal",
  46009. height: math.unit(8, "feet"),
  46010. default: true
  46011. },
  46012. ]
  46013. ))
  46014. characterMakers.push(() => makeCharacter(
  46015. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46016. {
  46017. front: {
  46018. height: math.unit(8, "feet"),
  46019. weight: math.unit(250, "lb"),
  46020. name: "Front",
  46021. image: {
  46022. source: "./media/characters/leah/front.svg",
  46023. extra: 1257/1149,
  46024. bottom: 109/1366
  46025. }
  46026. },
  46027. },
  46028. [
  46029. {
  46030. name: "Normal",
  46031. height: math.unit(8, "feet"),
  46032. default: true
  46033. },
  46034. {
  46035. name: "Minimacro",
  46036. height: math.unit(40, "feet")
  46037. },
  46038. {
  46039. name: "Macro",
  46040. height: math.unit(124, "feet")
  46041. },
  46042. {
  46043. name: "Megamacro",
  46044. height: math.unit(850, "feet")
  46045. },
  46046. ]
  46047. ))
  46048. characterMakers.push(() => makeCharacter(
  46049. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46050. {
  46051. side: {
  46052. height: math.unit(13 + 6/12, "feet"),
  46053. weight: math.unit(3200, "lb"),
  46054. name: "Side",
  46055. image: {
  46056. source: "./media/characters/alvir/side.svg",
  46057. extra: 896/589,
  46058. bottom: 26/922
  46059. }
  46060. },
  46061. },
  46062. [
  46063. {
  46064. name: "Normal",
  46065. height: math.unit(13 + 6/12, "feet"),
  46066. default: true
  46067. },
  46068. ]
  46069. ))
  46070. characterMakers.push(() => makeCharacter(
  46071. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46072. {
  46073. front: {
  46074. height: math.unit(5 + 4/12, "feet"),
  46075. weight: math.unit(236, "lb"),
  46076. name: "Front",
  46077. image: {
  46078. source: "./media/characters/zaina-khalil/front.svg",
  46079. extra: 1533/1485,
  46080. bottom: 94/1627
  46081. }
  46082. },
  46083. side: {
  46084. height: math.unit(5 + 4/12, "feet"),
  46085. weight: math.unit(236, "lb"),
  46086. name: "Side",
  46087. image: {
  46088. source: "./media/characters/zaina-khalil/side.svg",
  46089. extra: 1537/1498,
  46090. bottom: 66/1603
  46091. }
  46092. },
  46093. back: {
  46094. height: math.unit(5 + 4/12, "feet"),
  46095. weight: math.unit(236, "lb"),
  46096. name: "Back",
  46097. image: {
  46098. source: "./media/characters/zaina-khalil/back.svg",
  46099. extra: 1546/1494,
  46100. bottom: 89/1635
  46101. }
  46102. },
  46103. },
  46104. [
  46105. {
  46106. name: "Normal",
  46107. height: math.unit(5 + 4/12, "feet"),
  46108. default: true
  46109. },
  46110. ]
  46111. ))
  46112. characterMakers.push(() => makeCharacter(
  46113. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46114. {
  46115. side: {
  46116. height: math.unit(12, "feet"),
  46117. weight: math.unit(4000, "lb"),
  46118. name: "Side",
  46119. image: {
  46120. source: "./media/characters/terry/side.svg",
  46121. extra: 1518/1439,
  46122. bottom: 149/1667
  46123. }
  46124. },
  46125. },
  46126. [
  46127. {
  46128. name: "Normal",
  46129. height: math.unit(12, "feet"),
  46130. default: true
  46131. },
  46132. ]
  46133. ))
  46134. characterMakers.push(() => makeCharacter(
  46135. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46136. {
  46137. front: {
  46138. height: math.unit(12, "feet"),
  46139. weight: math.unit(1500, "lb"),
  46140. name: "Front",
  46141. image: {
  46142. source: "./media/characters/kahea/front.svg",
  46143. extra: 1722/1617,
  46144. bottom: 179/1901
  46145. }
  46146. },
  46147. },
  46148. [
  46149. {
  46150. name: "Normal",
  46151. height: math.unit(12, "feet"),
  46152. default: true
  46153. },
  46154. ]
  46155. ))
  46156. characterMakers.push(() => makeCharacter(
  46157. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46158. {
  46159. demonFront: {
  46160. height: math.unit(36, "feet"),
  46161. name: "Front",
  46162. image: {
  46163. source: "./media/characters/alex-xuria/demon-front.svg",
  46164. extra: 1705/1673,
  46165. bottom: 198/1903
  46166. },
  46167. form: "demon",
  46168. default: true
  46169. },
  46170. demonBack: {
  46171. height: math.unit(36, "feet"),
  46172. name: "Back",
  46173. image: {
  46174. source: "./media/characters/alex-xuria/demon-back.svg",
  46175. extra: 1725/1693,
  46176. bottom: 70/1795
  46177. },
  46178. form: "demon"
  46179. },
  46180. demonHead: {
  46181. height: math.unit(2.14, "meters"),
  46182. name: "Head",
  46183. image: {
  46184. source: "./media/characters/alex-xuria/demon-head.svg"
  46185. },
  46186. form: "demon"
  46187. },
  46188. demonHand: {
  46189. height: math.unit(1.61, "meters"),
  46190. name: "Hand",
  46191. image: {
  46192. source: "./media/characters/alex-xuria/demon-hand.svg"
  46193. },
  46194. form: "demon"
  46195. },
  46196. demonPaw: {
  46197. height: math.unit(1.35, "meters"),
  46198. name: "Paw",
  46199. image: {
  46200. source: "./media/characters/alex-xuria/demon-paw.svg"
  46201. },
  46202. form: "demon"
  46203. },
  46204. demonFoot: {
  46205. height: math.unit(2.2, "meters"),
  46206. name: "Foot",
  46207. image: {
  46208. source: "./media/characters/alex-xuria/demon-foot.svg"
  46209. },
  46210. form: "demon"
  46211. },
  46212. demonCock: {
  46213. height: math.unit(1.74, "meters"),
  46214. name: "Cock",
  46215. image: {
  46216. source: "./media/characters/alex-xuria/demon-cock.svg"
  46217. },
  46218. form: "demon"
  46219. },
  46220. demonTailClosed: {
  46221. height: math.unit(1.47, "meters"),
  46222. name: "Tail (Closed)",
  46223. image: {
  46224. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46225. },
  46226. form: "demon"
  46227. },
  46228. demonTailOpen: {
  46229. height: math.unit(2.85, "meters"),
  46230. name: "Tail (Open)",
  46231. image: {
  46232. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46233. },
  46234. form: "demon"
  46235. },
  46236. incubusFront: {
  46237. height: math.unit(12, "feet"),
  46238. name: "Front",
  46239. image: {
  46240. source: "./media/characters/alex-xuria/incubus-front.svg",
  46241. extra: 1754/1677,
  46242. bottom: 125/1879
  46243. },
  46244. form: "incubus",
  46245. default: true
  46246. },
  46247. incubusBack: {
  46248. height: math.unit(12, "feet"),
  46249. name: "Back",
  46250. image: {
  46251. source: "./media/characters/alex-xuria/incubus-back.svg",
  46252. extra: 1702/1647,
  46253. bottom: 30/1732
  46254. },
  46255. form: "incubus"
  46256. },
  46257. incubusHead: {
  46258. height: math.unit(3.45, "feet"),
  46259. name: "Head",
  46260. image: {
  46261. source: "./media/characters/alex-xuria/incubus-head.svg"
  46262. },
  46263. form: "incubus"
  46264. },
  46265. rabbitFront: {
  46266. height: math.unit(6, "feet"),
  46267. name: "Front",
  46268. image: {
  46269. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46270. extra: 1369/1349,
  46271. bottom: 45/1414
  46272. },
  46273. form: "rabbit",
  46274. default: true
  46275. },
  46276. rabbitSide: {
  46277. height: math.unit(6, "feet"),
  46278. name: "Side",
  46279. image: {
  46280. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46281. extra: 1370/1356,
  46282. bottom: 37/1407
  46283. },
  46284. form: "rabbit"
  46285. },
  46286. rabbitBack: {
  46287. height: math.unit(6, "feet"),
  46288. name: "Back",
  46289. image: {
  46290. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46291. extra: 1375/1358,
  46292. bottom: 43/1418
  46293. },
  46294. form: "rabbit"
  46295. },
  46296. },
  46297. [
  46298. {
  46299. name: "Normal",
  46300. height: math.unit(6, "feet"),
  46301. default: true,
  46302. form: "rabbit"
  46303. },
  46304. {
  46305. name: "Incubus",
  46306. height: math.unit(12, "feet"),
  46307. default: true,
  46308. form: "incubus"
  46309. },
  46310. {
  46311. name: "Demon",
  46312. height: math.unit(36, "feet"),
  46313. default: true,
  46314. form: "demon"
  46315. }
  46316. ],
  46317. {
  46318. "demon": {
  46319. name: "Demon",
  46320. default: true
  46321. },
  46322. "incubus": {
  46323. name: "Incubus",
  46324. },
  46325. "rabbit": {
  46326. name: "Rabbit"
  46327. }
  46328. }
  46329. ))
  46330. characterMakers.push(() => makeCharacter(
  46331. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46332. {
  46333. front: {
  46334. height: math.unit(7 + 5/12, "feet"),
  46335. weight: math.unit(510, "lb"),
  46336. name: "Front",
  46337. image: {
  46338. source: "./media/characters/syrup/front.svg",
  46339. extra: 932/916,
  46340. bottom: 26/958
  46341. }
  46342. },
  46343. },
  46344. [
  46345. {
  46346. name: "Normal",
  46347. height: math.unit(7 + 5/12, "feet"),
  46348. default: true
  46349. },
  46350. {
  46351. name: "Big",
  46352. height: math.unit(50, "feet")
  46353. },
  46354. {
  46355. name: "Macro",
  46356. height: math.unit(300, "feet")
  46357. },
  46358. {
  46359. name: "Megamacro",
  46360. height: math.unit(1, "mile")
  46361. },
  46362. ]
  46363. ))
  46364. characterMakers.push(() => makeCharacter(
  46365. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46366. {
  46367. front: {
  46368. height: math.unit(6 + 9/12, "feet"),
  46369. name: "Front",
  46370. image: {
  46371. source: "./media/characters/zeimne/front.svg",
  46372. extra: 1969/1806,
  46373. bottom: 53/2022
  46374. }
  46375. },
  46376. },
  46377. [
  46378. {
  46379. name: "Normal",
  46380. height: math.unit(6 + 9/12, "feet"),
  46381. default: true
  46382. },
  46383. {
  46384. name: "Giant",
  46385. height: math.unit(550, "feet")
  46386. },
  46387. {
  46388. name: "Mega",
  46389. height: math.unit(3, "miles")
  46390. },
  46391. {
  46392. name: "Giga",
  46393. height: math.unit(250, "miles")
  46394. },
  46395. {
  46396. name: "Tera",
  46397. height: math.unit(1, "AU")
  46398. },
  46399. ]
  46400. ))
  46401. characterMakers.push(() => makeCharacter(
  46402. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46403. {
  46404. front: {
  46405. height: math.unit(5 + 2/12, "feet"),
  46406. name: "Front",
  46407. image: {
  46408. source: "./media/characters/grar/front.svg",
  46409. extra: 1331/1119,
  46410. bottom: 60/1391
  46411. }
  46412. },
  46413. back: {
  46414. height: math.unit(5 + 2/12, "feet"),
  46415. name: "Back",
  46416. image: {
  46417. source: "./media/characters/grar/back.svg",
  46418. extra: 1385/1169,
  46419. bottom: 23/1408
  46420. }
  46421. },
  46422. },
  46423. [
  46424. {
  46425. name: "Normal",
  46426. height: math.unit(5 + 2/12, "feet"),
  46427. default: true
  46428. },
  46429. ]
  46430. ))
  46431. characterMakers.push(() => makeCharacter(
  46432. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46433. {
  46434. front: {
  46435. height: math.unit(13 + 7/12, "feet"),
  46436. weight: math.unit(2200, "lb"),
  46437. name: "Front",
  46438. image: {
  46439. source: "./media/characters/endraya/front.svg",
  46440. extra: 1289/1215,
  46441. bottom: 50/1339
  46442. }
  46443. },
  46444. nude: {
  46445. height: math.unit(13 + 7/12, "feet"),
  46446. weight: math.unit(2200, "lb"),
  46447. name: "Nude",
  46448. image: {
  46449. source: "./media/characters/endraya/nude.svg",
  46450. extra: 1247/1171,
  46451. bottom: 40/1287
  46452. }
  46453. },
  46454. head: {
  46455. height: math.unit(2.6, "feet"),
  46456. name: "Head",
  46457. image: {
  46458. source: "./media/characters/endraya/head.svg"
  46459. }
  46460. },
  46461. slit: {
  46462. height: math.unit(3.4, "feet"),
  46463. name: "Slit",
  46464. image: {
  46465. source: "./media/characters/endraya/slit.svg"
  46466. }
  46467. },
  46468. },
  46469. [
  46470. {
  46471. name: "Normal",
  46472. height: math.unit(13 + 7/12, "feet"),
  46473. default: true
  46474. },
  46475. {
  46476. name: "Macro",
  46477. height: math.unit(200, "feet")
  46478. },
  46479. ]
  46480. ))
  46481. characterMakers.push(() => makeCharacter(
  46482. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46483. {
  46484. front: {
  46485. height: math.unit(1.81, "meters"),
  46486. weight: math.unit(69, "kg"),
  46487. name: "Front",
  46488. image: {
  46489. source: "./media/characters/rodryana/front.svg",
  46490. extra: 2002/1921,
  46491. bottom: 53/2055
  46492. }
  46493. },
  46494. back: {
  46495. height: math.unit(1.81, "meters"),
  46496. weight: math.unit(69, "kg"),
  46497. name: "Back",
  46498. image: {
  46499. source: "./media/characters/rodryana/back.svg",
  46500. extra: 1993/1926,
  46501. bottom: 48/2041
  46502. }
  46503. },
  46504. maw: {
  46505. height: math.unit(0.19769417475, "meters"),
  46506. name: "Maw",
  46507. image: {
  46508. source: "./media/characters/rodryana/maw.svg"
  46509. }
  46510. },
  46511. slit: {
  46512. height: math.unit(0.31631067961, "meters"),
  46513. name: "Slit",
  46514. image: {
  46515. source: "./media/characters/rodryana/slit.svg"
  46516. }
  46517. },
  46518. },
  46519. [
  46520. {
  46521. name: "Normal",
  46522. height: math.unit(1.81, "meters")
  46523. },
  46524. {
  46525. name: "Mini Macro",
  46526. height: math.unit(181, "meters")
  46527. },
  46528. {
  46529. name: "Macro",
  46530. height: math.unit(452, "meters"),
  46531. default: true
  46532. },
  46533. {
  46534. name: "Mega Macro",
  46535. height: math.unit(1.375, "km")
  46536. },
  46537. {
  46538. name: "Giga Macro",
  46539. height: math.unit(13.575, "km")
  46540. },
  46541. ]
  46542. ))
  46543. characterMakers.push(() => makeCharacter(
  46544. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46545. {
  46546. front: {
  46547. height: math.unit(6, "feet"),
  46548. weight: math.unit(1000, "lb"),
  46549. name: "Front",
  46550. image: {
  46551. source: "./media/characters/asaya/front.svg",
  46552. extra: 1460/1200,
  46553. bottom: 71/1531
  46554. }
  46555. },
  46556. },
  46557. [
  46558. {
  46559. name: "Normal",
  46560. height: math.unit(8, "km"),
  46561. default: true
  46562. },
  46563. ]
  46564. ))
  46565. characterMakers.push(() => makeCharacter(
  46566. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46567. {
  46568. front: {
  46569. height: math.unit(3.5, "meters"),
  46570. name: "Front",
  46571. image: {
  46572. source: "./media/characters/sarzu-and-israz/front.svg",
  46573. extra: 1570/1558,
  46574. bottom: 150/1720
  46575. },
  46576. },
  46577. back: {
  46578. height: math.unit(3.5, "meters"),
  46579. name: "Back",
  46580. image: {
  46581. source: "./media/characters/sarzu-and-israz/back.svg",
  46582. extra: 1523/1509,
  46583. bottom: 132/1655
  46584. },
  46585. },
  46586. frontFemale: {
  46587. height: math.unit(3.5, "meters"),
  46588. name: "Front (Female)",
  46589. image: {
  46590. source: "./media/characters/sarzu-and-israz/front-female.svg",
  46591. extra: 1570/1558,
  46592. bottom: 150/1720
  46593. },
  46594. },
  46595. frontHerm: {
  46596. height: math.unit(3.5, "meters"),
  46597. name: "Front (Herm)",
  46598. image: {
  46599. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  46600. extra: 1570/1558,
  46601. bottom: 150/1720
  46602. },
  46603. },
  46604. },
  46605. [
  46606. {
  46607. name: "Normal",
  46608. height: math.unit(3.5, "meters"),
  46609. default: true,
  46610. },
  46611. {
  46612. name: "Macro",
  46613. height: math.unit(65.5, "meters"),
  46614. },
  46615. ],
  46616. ))
  46617. characterMakers.push(() => makeCharacter(
  46618. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  46619. {
  46620. front: {
  46621. height: math.unit(6, "feet"),
  46622. weight: math.unit(250, "lb"),
  46623. name: "Front",
  46624. image: {
  46625. source: "./media/characters/zenimma/front.svg",
  46626. extra: 1346/1320,
  46627. bottom: 58/1404
  46628. }
  46629. },
  46630. back: {
  46631. height: math.unit(6, "feet"),
  46632. weight: math.unit(250, "lb"),
  46633. name: "Back",
  46634. image: {
  46635. source: "./media/characters/zenimma/back.svg",
  46636. extra: 1324/1308,
  46637. bottom: 44/1368
  46638. }
  46639. },
  46640. dick: {
  46641. height: math.unit(1.44, "feet"),
  46642. name: "Dick",
  46643. image: {
  46644. source: "./media/characters/zenimma/dick.svg"
  46645. }
  46646. },
  46647. },
  46648. [
  46649. {
  46650. name: "Canon Height",
  46651. height: math.unit(66, "miles"),
  46652. default: true
  46653. },
  46654. ]
  46655. ))
  46656. characterMakers.push(() => makeCharacter(
  46657. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  46658. {
  46659. nude: {
  46660. height: math.unit(6, "feet"),
  46661. weight: math.unit(150, "lb"),
  46662. name: "Nude",
  46663. image: {
  46664. source: "./media/characters/shavon/nude.svg",
  46665. extra: 1242/1096,
  46666. bottom: 98/1340
  46667. }
  46668. },
  46669. dressed: {
  46670. height: math.unit(6, "feet"),
  46671. weight: math.unit(150, "lb"),
  46672. name: "Dressed",
  46673. image: {
  46674. source: "./media/characters/shavon/dressed.svg",
  46675. extra: 1242/1096,
  46676. bottom: 98/1340
  46677. }
  46678. },
  46679. },
  46680. [
  46681. {
  46682. name: "Macro",
  46683. height: math.unit(255, "feet"),
  46684. default: true
  46685. },
  46686. ]
  46687. ))
  46688. characterMakers.push(() => makeCharacter(
  46689. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  46690. {
  46691. front: {
  46692. height: math.unit(6, "feet"),
  46693. name: "Front",
  46694. image: {
  46695. source: "./media/characters/steph/front.svg",
  46696. extra: 1430/1330,
  46697. bottom: 54/1484
  46698. }
  46699. },
  46700. },
  46701. [
  46702. {
  46703. name: "Normal",
  46704. height: math.unit(6, "feet"),
  46705. default: true
  46706. },
  46707. ]
  46708. ))
  46709. characterMakers.push(() => makeCharacter(
  46710. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  46711. {
  46712. front: {
  46713. height: math.unit(9, "feet"),
  46714. weight: math.unit(400, "lb"),
  46715. name: "Front",
  46716. image: {
  46717. source: "./media/characters/kil'aman/front.svg",
  46718. extra: 1210/1159,
  46719. bottom: 109/1319
  46720. }
  46721. },
  46722. head: {
  46723. height: math.unit(2.14, "feet"),
  46724. name: "Head",
  46725. image: {
  46726. source: "./media/characters/kil'aman/head.svg"
  46727. }
  46728. },
  46729. maw: {
  46730. height: math.unit(1.21, "feet"),
  46731. name: "Maw",
  46732. image: {
  46733. source: "./media/characters/kil'aman/maw.svg"
  46734. }
  46735. },
  46736. foot: {
  46737. height: math.unit(1.7, "feet"),
  46738. name: "Foot",
  46739. image: {
  46740. source: "./media/characters/kil'aman/foot.svg"
  46741. }
  46742. },
  46743. dick: {
  46744. height: math.unit(2.1, "feet"),
  46745. name: "Dick",
  46746. image: {
  46747. source: "./media/characters/kil'aman/dick.svg"
  46748. }
  46749. },
  46750. },
  46751. [
  46752. {
  46753. name: "Normal",
  46754. height: math.unit(9, "feet")
  46755. },
  46756. {
  46757. name: "Canon Height",
  46758. height: math.unit(10, "miles"),
  46759. default: true
  46760. },
  46761. {
  46762. name: "Maximum",
  46763. height: math.unit(6e9, "miles")
  46764. },
  46765. ]
  46766. ))
  46767. characterMakers.push(() => makeCharacter(
  46768. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  46769. {
  46770. front: {
  46771. height: math.unit(90, "feet"),
  46772. weight: math.unit(675000, "lb"),
  46773. name: "Front",
  46774. image: {
  46775. source: "./media/characters/qadan/front.svg",
  46776. extra: 1012/1004,
  46777. bottom: 78/1090
  46778. }
  46779. },
  46780. back: {
  46781. height: math.unit(90, "feet"),
  46782. weight: math.unit(675000, "lb"),
  46783. name: "Back",
  46784. image: {
  46785. source: "./media/characters/qadan/back.svg",
  46786. extra: 1042/1031,
  46787. bottom: 55/1097
  46788. }
  46789. },
  46790. armored: {
  46791. height: math.unit(90, "feet"),
  46792. weight: math.unit(675000, "lb"),
  46793. name: "Armored",
  46794. image: {
  46795. source: "./media/characters/qadan/armored.svg",
  46796. extra: 1047/1037,
  46797. bottom: 48/1095
  46798. }
  46799. },
  46800. },
  46801. [
  46802. {
  46803. name: "Normal",
  46804. height: math.unit(90, "feet"),
  46805. default: true
  46806. },
  46807. ]
  46808. ))
  46809. characterMakers.push(() => makeCharacter(
  46810. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  46811. {
  46812. front: {
  46813. height: math.unit(6, "feet"),
  46814. weight: math.unit(225, "lb"),
  46815. name: "Front",
  46816. image: {
  46817. source: "./media/characters/brooke/front.svg",
  46818. extra: 1050/1010,
  46819. bottom: 66/1116
  46820. }
  46821. },
  46822. back: {
  46823. height: math.unit(6, "feet"),
  46824. weight: math.unit(225, "lb"),
  46825. name: "Back",
  46826. image: {
  46827. source: "./media/characters/brooke/back.svg",
  46828. extra: 1053/1013,
  46829. bottom: 41/1094
  46830. }
  46831. },
  46832. dressed: {
  46833. height: math.unit(6, "feet"),
  46834. weight: math.unit(225, "lb"),
  46835. name: "Dressed",
  46836. image: {
  46837. source: "./media/characters/brooke/dressed.svg",
  46838. extra: 1050/1010,
  46839. bottom: 66/1116
  46840. }
  46841. },
  46842. },
  46843. [
  46844. {
  46845. name: "Canon Height",
  46846. height: math.unit(500, "miles"),
  46847. default: true
  46848. },
  46849. ]
  46850. ))
  46851. characterMakers.push(() => makeCharacter(
  46852. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  46853. {
  46854. front: {
  46855. height: math.unit(6 + 2/12, "feet"),
  46856. weight: math.unit(210, "lb"),
  46857. name: "Front",
  46858. image: {
  46859. source: "./media/characters/wubs/front.svg",
  46860. extra: 1345/1325,
  46861. bottom: 70/1415
  46862. }
  46863. },
  46864. back: {
  46865. height: math.unit(6 + 2/12, "feet"),
  46866. weight: math.unit(210, "lb"),
  46867. name: "Back",
  46868. image: {
  46869. source: "./media/characters/wubs/back.svg",
  46870. extra: 1296/1275,
  46871. bottom: 58/1354
  46872. }
  46873. },
  46874. },
  46875. [
  46876. {
  46877. name: "Normal",
  46878. height: math.unit(6 + 2/12, "feet"),
  46879. default: true
  46880. },
  46881. {
  46882. name: "Macro",
  46883. height: math.unit(1000, "feet")
  46884. },
  46885. {
  46886. name: "Megamacro",
  46887. height: math.unit(1, "mile")
  46888. },
  46889. ]
  46890. ))
  46891. characterMakers.push(() => makeCharacter(
  46892. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  46893. {
  46894. front: {
  46895. height: math.unit(4, "feet"),
  46896. weight: math.unit(120, "lb"),
  46897. name: "Front",
  46898. image: {
  46899. source: "./media/characters/blue/front.svg",
  46900. extra: 1636/1525,
  46901. bottom: 43/1679
  46902. }
  46903. },
  46904. back: {
  46905. height: math.unit(4, "feet"),
  46906. weight: math.unit(120, "lb"),
  46907. name: "Back",
  46908. image: {
  46909. source: "./media/characters/blue/back.svg",
  46910. extra: 1660/1560,
  46911. bottom: 57/1717
  46912. }
  46913. },
  46914. paws: {
  46915. height: math.unit(0.826, "feet"),
  46916. name: "Paws",
  46917. image: {
  46918. source: "./media/characters/blue/paws.svg"
  46919. }
  46920. },
  46921. },
  46922. [
  46923. {
  46924. name: "Micro",
  46925. height: math.unit(3, "inches")
  46926. },
  46927. {
  46928. name: "Normal",
  46929. height: math.unit(4, "feet"),
  46930. default: true
  46931. },
  46932. {
  46933. name: "Femenine Form",
  46934. height: math.unit(14, "feet")
  46935. },
  46936. {
  46937. name: "Werebat Form",
  46938. height: math.unit(18, "feet")
  46939. },
  46940. ]
  46941. ))
  46942. characterMakers.push(() => makeCharacter(
  46943. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  46944. {
  46945. female: {
  46946. height: math.unit(7 + 4/12, "feet"),
  46947. weight: math.unit(243, "lb"),
  46948. name: "Female",
  46949. image: {
  46950. source: "./media/characters/kaya/female.svg",
  46951. extra: 975/898,
  46952. bottom: 34/1009
  46953. }
  46954. },
  46955. herm: {
  46956. height: math.unit(7 + 4/12, "feet"),
  46957. weight: math.unit(243, "lb"),
  46958. name: "Herm",
  46959. image: {
  46960. source: "./media/characters/kaya/herm.svg",
  46961. extra: 975/898,
  46962. bottom: 34/1009
  46963. }
  46964. },
  46965. },
  46966. [
  46967. {
  46968. name: "Normal",
  46969. height: math.unit(7 + 4/12, "feet"),
  46970. default: true
  46971. },
  46972. ]
  46973. ))
  46974. characterMakers.push(() => makeCharacter(
  46975. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  46976. {
  46977. female: {
  46978. height: math.unit(9 + 4/12, "feet"),
  46979. weight: math.unit(398, "lb"),
  46980. name: "Female",
  46981. image: {
  46982. source: "./media/characters/kassandra/female.svg",
  46983. extra: 908/839,
  46984. bottom: 61/969
  46985. }
  46986. },
  46987. intersex: {
  46988. height: math.unit(9 + 4/12, "feet"),
  46989. weight: math.unit(398, "lb"),
  46990. name: "Intersex",
  46991. image: {
  46992. source: "./media/characters/kassandra/intersex.svg",
  46993. extra: 908/839,
  46994. bottom: 61/969
  46995. }
  46996. },
  46997. },
  46998. [
  46999. {
  47000. name: "Normal",
  47001. height: math.unit(9 + 4/12, "feet"),
  47002. default: true
  47003. },
  47004. ]
  47005. ))
  47006. characterMakers.push(() => makeCharacter(
  47007. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47008. {
  47009. front: {
  47010. height: math.unit(3, "meters"),
  47011. name: "Front",
  47012. image: {
  47013. source: "./media/characters/amy/front.svg",
  47014. extra: 1380/1343,
  47015. bottom: 70/1450
  47016. }
  47017. },
  47018. back: {
  47019. height: math.unit(3, "meters"),
  47020. name: "Back",
  47021. image: {
  47022. source: "./media/characters/amy/back.svg",
  47023. extra: 1380/1347,
  47024. bottom: 66/1446
  47025. }
  47026. },
  47027. },
  47028. [
  47029. {
  47030. name: "Normal",
  47031. height: math.unit(3, "meters"),
  47032. default: true
  47033. },
  47034. ]
  47035. ))
  47036. characterMakers.push(() => makeCharacter(
  47037. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47038. {
  47039. side: {
  47040. height: math.unit(47, "cm"),
  47041. weight: math.unit(10.8, "kg"),
  47042. name: "Side",
  47043. image: {
  47044. source: "./media/characters/alphaschakal/side.svg",
  47045. extra: 1058/568,
  47046. bottom: 62/1120
  47047. }
  47048. },
  47049. back: {
  47050. height: math.unit(78, "cm"),
  47051. weight: math.unit(10.8, "kg"),
  47052. name: "Back",
  47053. image: {
  47054. source: "./media/characters/alphaschakal/back.svg",
  47055. extra: 1102/942,
  47056. bottom: 185/1287
  47057. }
  47058. },
  47059. head: {
  47060. height: math.unit(28, "cm"),
  47061. name: "Head",
  47062. image: {
  47063. source: "./media/characters/alphaschakal/head.svg",
  47064. extra: 696/508,
  47065. bottom: 0/696
  47066. }
  47067. },
  47068. paw: {
  47069. height: math.unit(16, "cm"),
  47070. name: "Paw",
  47071. image: {
  47072. source: "./media/characters/alphaschakal/paw.svg"
  47073. }
  47074. },
  47075. },
  47076. [
  47077. {
  47078. name: "Normal",
  47079. height: math.unit(47, "cm"),
  47080. default: true
  47081. },
  47082. {
  47083. name: "Macro",
  47084. height: math.unit(340, "cm")
  47085. },
  47086. ]
  47087. ))
  47088. characterMakers.push(() => makeCharacter(
  47089. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47090. {
  47091. front: {
  47092. height: math.unit(36, "earths"),
  47093. name: "Front",
  47094. image: {
  47095. source: "./media/characters/ecobyss/front.svg",
  47096. extra: 1282/1215,
  47097. bottom: 11/1293
  47098. }
  47099. },
  47100. back: {
  47101. height: math.unit(36, "earths"),
  47102. name: "Back",
  47103. image: {
  47104. source: "./media/characters/ecobyss/back.svg",
  47105. extra: 1291/1222,
  47106. bottom: 8/1299
  47107. }
  47108. },
  47109. },
  47110. [
  47111. {
  47112. name: "Normal",
  47113. height: math.unit(36, "earths"),
  47114. default: true
  47115. },
  47116. ]
  47117. ))
  47118. characterMakers.push(() => makeCharacter(
  47119. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47120. {
  47121. front: {
  47122. height: math.unit(12, "feet"),
  47123. name: "Front",
  47124. image: {
  47125. source: "./media/characters/vasuk/front.svg",
  47126. extra: 1326/1207,
  47127. bottom: 64/1390
  47128. }
  47129. },
  47130. },
  47131. [
  47132. {
  47133. name: "Normal",
  47134. height: math.unit(12, "feet"),
  47135. default: true
  47136. },
  47137. ]
  47138. ))
  47139. characterMakers.push(() => makeCharacter(
  47140. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47141. {
  47142. side: {
  47143. height: math.unit(100, "feet"),
  47144. name: "Side",
  47145. image: {
  47146. source: "./media/characters/linneaus/side.svg",
  47147. extra: 987/807,
  47148. bottom: 47/1034
  47149. }
  47150. },
  47151. },
  47152. [
  47153. {
  47154. name: "Macro",
  47155. height: math.unit(100, "feet"),
  47156. default: true
  47157. },
  47158. ]
  47159. ))
  47160. characterMakers.push(() => makeCharacter(
  47161. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47162. {
  47163. front: {
  47164. height: math.unit(8, "feet"),
  47165. weight: math.unit(1200, "lb"),
  47166. name: "Front",
  47167. image: {
  47168. source: "./media/characters/nyterious-daligdig/front.svg",
  47169. extra: 1284/1094,
  47170. bottom: 84/1368
  47171. }
  47172. },
  47173. back: {
  47174. height: math.unit(8, "feet"),
  47175. weight: math.unit(1200, "lb"),
  47176. name: "Back",
  47177. image: {
  47178. source: "./media/characters/nyterious-daligdig/back.svg",
  47179. extra: 1301/1121,
  47180. bottom: 129/1430
  47181. }
  47182. },
  47183. mouth: {
  47184. height: math.unit(1.464, "feet"),
  47185. name: "Mouth",
  47186. image: {
  47187. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47188. }
  47189. },
  47190. },
  47191. [
  47192. {
  47193. name: "Small",
  47194. height: math.unit(8, "feet"),
  47195. default: true
  47196. },
  47197. {
  47198. name: "Normal",
  47199. height: math.unit(15, "feet")
  47200. },
  47201. {
  47202. name: "Macro",
  47203. height: math.unit(90, "feet")
  47204. },
  47205. ]
  47206. ))
  47207. characterMakers.push(() => makeCharacter(
  47208. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47209. {
  47210. front: {
  47211. height: math.unit(7 + 4/12, "feet"),
  47212. weight: math.unit(252, "lb"),
  47213. name: "Front",
  47214. image: {
  47215. source: "./media/characters/bandel/front.svg",
  47216. extra: 1946/1775,
  47217. bottom: 26/1972
  47218. }
  47219. },
  47220. back: {
  47221. height: math.unit(7 + 4/12, "feet"),
  47222. weight: math.unit(252, "lb"),
  47223. name: "Back",
  47224. image: {
  47225. source: "./media/characters/bandel/back.svg",
  47226. extra: 1940/1770,
  47227. bottom: 25/1965
  47228. }
  47229. },
  47230. maw: {
  47231. height: math.unit(2.15, "feet"),
  47232. name: "Maw",
  47233. image: {
  47234. source: "./media/characters/bandel/maw.svg"
  47235. }
  47236. },
  47237. stomach: {
  47238. height: math.unit(1.95, "feet"),
  47239. name: "Stomach",
  47240. image: {
  47241. source: "./media/characters/bandel/stomach.svg"
  47242. }
  47243. },
  47244. },
  47245. [
  47246. {
  47247. name: "Normal",
  47248. height: math.unit(7 + 4/12, "feet"),
  47249. default: true
  47250. },
  47251. ]
  47252. ))
  47253. characterMakers.push(() => makeCharacter(
  47254. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47255. {
  47256. front: {
  47257. height: math.unit(10 + 5/12, "feet"),
  47258. weight: math.unit(773.5, "kg"),
  47259. name: "Front",
  47260. image: {
  47261. source: "./media/characters/zed/front.svg",
  47262. extra: 987/941,
  47263. bottom: 52/1039
  47264. }
  47265. },
  47266. },
  47267. [
  47268. {
  47269. name: "Short",
  47270. height: math.unit(5 + 4/12, "feet")
  47271. },
  47272. {
  47273. name: "Average",
  47274. height: math.unit(10 + 5/12, "feet"),
  47275. default: true
  47276. },
  47277. {
  47278. name: "Mini-Macro",
  47279. height: math.unit(24 + 9/12, "feet")
  47280. },
  47281. {
  47282. name: "Macro",
  47283. height: math.unit(249, "feet")
  47284. },
  47285. {
  47286. name: "Mega-Macro",
  47287. height: math.unit(12490, "feet")
  47288. },
  47289. {
  47290. name: "Giga-Macro",
  47291. height: math.unit(24.9, "miles")
  47292. },
  47293. {
  47294. name: "Tera-Macro",
  47295. height: math.unit(24900, "miles")
  47296. },
  47297. {
  47298. name: "Cosmic Scale",
  47299. height: math.unit(38.9, "lightyears")
  47300. },
  47301. {
  47302. name: "Universal Scale",
  47303. height: math.unit(138e12, "lightyears")
  47304. },
  47305. ]
  47306. ))
  47307. characterMakers.push(() => makeCharacter(
  47308. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47309. {
  47310. front: {
  47311. height: math.unit(1561, "inches"),
  47312. name: "Front",
  47313. image: {
  47314. source: "./media/characters/ivan/front.svg",
  47315. extra: 1126/1071,
  47316. bottom: 26/1152
  47317. }
  47318. },
  47319. back: {
  47320. height: math.unit(1561, "inches"),
  47321. name: "Back",
  47322. image: {
  47323. source: "./media/characters/ivan/back.svg",
  47324. extra: 1134/1079,
  47325. bottom: 30/1164
  47326. }
  47327. },
  47328. },
  47329. [
  47330. {
  47331. name: "Normal",
  47332. height: math.unit(1561, "inches"),
  47333. default: true
  47334. },
  47335. ]
  47336. ))
  47337. characterMakers.push(() => makeCharacter(
  47338. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47339. {
  47340. front: {
  47341. height: math.unit(5 + 7/12, "feet"),
  47342. weight: math.unit(150, "lb"),
  47343. name: "Front",
  47344. image: {
  47345. source: "./media/characters/robin-arctic-hare/front.svg",
  47346. extra: 1148/974,
  47347. bottom: 20/1168
  47348. }
  47349. },
  47350. },
  47351. [
  47352. {
  47353. name: "Normal",
  47354. height: math.unit(5 + 7/12, "feet"),
  47355. default: true
  47356. },
  47357. ]
  47358. ))
  47359. characterMakers.push(() => makeCharacter(
  47360. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47361. {
  47362. side: {
  47363. height: math.unit(5, "feet"),
  47364. name: "Side",
  47365. image: {
  47366. source: "./media/characters/birch/side.svg",
  47367. extra: 985/796,
  47368. bottom: 111/1096
  47369. }
  47370. },
  47371. },
  47372. [
  47373. {
  47374. name: "Normal",
  47375. height: math.unit(5, "feet"),
  47376. default: true
  47377. },
  47378. ]
  47379. ))
  47380. characterMakers.push(() => makeCharacter(
  47381. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47382. {
  47383. front: {
  47384. height: math.unit(4, "feet"),
  47385. name: "Front",
  47386. image: {
  47387. source: "./media/characters/rasp/front.svg",
  47388. extra: 561/478,
  47389. bottom: 74/635
  47390. }
  47391. },
  47392. },
  47393. [
  47394. {
  47395. name: "Normal",
  47396. height: math.unit(4, "feet"),
  47397. default: true
  47398. },
  47399. ]
  47400. ))
  47401. characterMakers.push(() => makeCharacter(
  47402. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47403. {
  47404. front: {
  47405. height: math.unit(4 + 6/12, "feet"),
  47406. name: "Front",
  47407. image: {
  47408. source: "./media/characters/agatha/front.svg",
  47409. extra: 947/933,
  47410. bottom: 42/989
  47411. }
  47412. },
  47413. back: {
  47414. height: math.unit(4 + 6/12, "feet"),
  47415. name: "Back",
  47416. image: {
  47417. source: "./media/characters/agatha/back.svg",
  47418. extra: 935/922,
  47419. bottom: 48/983
  47420. }
  47421. },
  47422. },
  47423. [
  47424. {
  47425. name: "Normal",
  47426. height: math.unit(4 + 6 /12, "feet"),
  47427. default: true
  47428. },
  47429. {
  47430. name: "Max Size",
  47431. height: math.unit(500, "feet")
  47432. },
  47433. ]
  47434. ))
  47435. characterMakers.push(() => makeCharacter(
  47436. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47437. {
  47438. side: {
  47439. height: math.unit(30, "feet"),
  47440. name: "Side",
  47441. image: {
  47442. source: "./media/characters/roggy/side.svg",
  47443. extra: 909/643,
  47444. bottom: 63/972
  47445. }
  47446. },
  47447. lounging: {
  47448. height: math.unit(20, "feet"),
  47449. name: "Lounging",
  47450. image: {
  47451. source: "./media/characters/roggy/lounging.svg",
  47452. extra: 643/479,
  47453. bottom: 145/788
  47454. }
  47455. },
  47456. handpaw: {
  47457. height: math.unit(13.1, "feet"),
  47458. name: "Handpaw",
  47459. image: {
  47460. source: "./media/characters/roggy/handpaw.svg"
  47461. }
  47462. },
  47463. footpaw: {
  47464. height: math.unit(15.8, "feet"),
  47465. name: "Footpaw",
  47466. image: {
  47467. source: "./media/characters/roggy/footpaw.svg"
  47468. }
  47469. },
  47470. },
  47471. [
  47472. {
  47473. name: "Menacing",
  47474. height: math.unit(30, "feet"),
  47475. default: true
  47476. },
  47477. ]
  47478. ))
  47479. characterMakers.push(() => makeCharacter(
  47480. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47481. {
  47482. front: {
  47483. height: math.unit(5 + 7/12, "feet"),
  47484. weight: math.unit(135, "lb"),
  47485. name: "Front",
  47486. image: {
  47487. source: "./media/characters/naomi/front.svg",
  47488. extra: 1209/1154,
  47489. bottom: 129/1338
  47490. }
  47491. },
  47492. back: {
  47493. height: math.unit(5 + 7/12, "feet"),
  47494. weight: math.unit(135, "lb"),
  47495. name: "Back",
  47496. image: {
  47497. source: "./media/characters/naomi/back.svg",
  47498. extra: 1252/1190,
  47499. bottom: 23/1275
  47500. }
  47501. },
  47502. },
  47503. [
  47504. {
  47505. name: "Normal",
  47506. height: math.unit(5 + 7 /12, "feet"),
  47507. default: true
  47508. },
  47509. ]
  47510. ))
  47511. characterMakers.push(() => makeCharacter(
  47512. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47513. {
  47514. side: {
  47515. height: math.unit(35, "meters"),
  47516. name: "Side",
  47517. image: {
  47518. source: "./media/characters/kimpi/side.svg",
  47519. extra: 419/382,
  47520. bottom: 63/482
  47521. }
  47522. },
  47523. hand: {
  47524. height: math.unit(8.96, "meters"),
  47525. name: "Hand",
  47526. image: {
  47527. source: "./media/characters/kimpi/hand.svg"
  47528. }
  47529. },
  47530. },
  47531. [
  47532. {
  47533. name: "Normal",
  47534. height: math.unit(35, "meters"),
  47535. default: true
  47536. },
  47537. ]
  47538. ))
  47539. characterMakers.push(() => makeCharacter(
  47540. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47541. {
  47542. front: {
  47543. height: math.unit(4 + 4/12, "feet"),
  47544. name: "Front",
  47545. image: {
  47546. source: "./media/characters/pepper-purrloin/front.svg",
  47547. extra: 1141/1024,
  47548. bottom: 21/1162
  47549. }
  47550. },
  47551. },
  47552. [
  47553. {
  47554. name: "Normal",
  47555. height: math.unit(4 + 4/12, "feet"),
  47556. default: true
  47557. },
  47558. ]
  47559. ))
  47560. characterMakers.push(() => makeCharacter(
  47561. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47562. {
  47563. front: {
  47564. height: math.unit(6 + 2/12, "feet"),
  47565. name: "Front",
  47566. image: {
  47567. source: "./media/characters/raphael/front.svg",
  47568. extra: 1101/962,
  47569. bottom: 59/1160
  47570. }
  47571. },
  47572. },
  47573. [
  47574. {
  47575. name: "Normal",
  47576. height: math.unit(6 + 2/12, "feet"),
  47577. default: true
  47578. },
  47579. ]
  47580. ))
  47581. characterMakers.push(() => makeCharacter(
  47582. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  47583. {
  47584. front: {
  47585. height: math.unit(6, "feet"),
  47586. weight: math.unit(150, "lb"),
  47587. name: "Front",
  47588. image: {
  47589. source: "./media/characters/victor-williams/front.svg",
  47590. extra: 1894/1825,
  47591. bottom: 67/1961
  47592. }
  47593. },
  47594. },
  47595. [
  47596. {
  47597. name: "Normal",
  47598. height: math.unit(6, "feet"),
  47599. default: true
  47600. },
  47601. ]
  47602. ))
  47603. characterMakers.push(() => makeCharacter(
  47604. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  47605. {
  47606. front: {
  47607. height: math.unit(5 + 8/12, "feet"),
  47608. weight: math.unit(150, "lb"),
  47609. name: "Front",
  47610. image: {
  47611. source: "./media/characters/rachel/front.svg",
  47612. extra: 1902/1787,
  47613. bottom: 46/1948
  47614. }
  47615. },
  47616. },
  47617. [
  47618. {
  47619. name: "Base Height",
  47620. height: math.unit(5 + 8/12, "feet"),
  47621. default: true
  47622. },
  47623. {
  47624. name: "Macro",
  47625. height: math.unit(200, "feet")
  47626. },
  47627. {
  47628. name: "Mega Macro",
  47629. height: math.unit(1, "mile")
  47630. },
  47631. {
  47632. name: "Giga Macro",
  47633. height: math.unit(1500, "miles")
  47634. },
  47635. {
  47636. name: "Tera Macro",
  47637. height: math.unit(8000, "miles")
  47638. },
  47639. {
  47640. name: "Tera Macro+",
  47641. height: math.unit(2e5, "miles")
  47642. },
  47643. ]
  47644. ))
  47645. characterMakers.push(() => makeCharacter(
  47646. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  47647. {
  47648. front: {
  47649. height: math.unit(6.5, "feet"),
  47650. name: "Front",
  47651. image: {
  47652. source: "./media/characters/svetlana-rozovskaya/front.svg",
  47653. extra: 860/819,
  47654. bottom: 307/1167
  47655. }
  47656. },
  47657. back: {
  47658. height: math.unit(6.5, "feet"),
  47659. name: "Back",
  47660. image: {
  47661. source: "./media/characters/svetlana-rozovskaya/back.svg",
  47662. extra: 880/837,
  47663. bottom: 395/1275
  47664. }
  47665. },
  47666. sleeping: {
  47667. height: math.unit(2.79, "feet"),
  47668. name: "Sleeping",
  47669. image: {
  47670. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  47671. extra: 465/383,
  47672. bottom: 263/728
  47673. }
  47674. },
  47675. maw: {
  47676. height: math.unit(2.52, "feet"),
  47677. name: "Maw",
  47678. image: {
  47679. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  47680. }
  47681. },
  47682. },
  47683. [
  47684. {
  47685. name: "Normal",
  47686. height: math.unit(6.5, "feet"),
  47687. default: true
  47688. },
  47689. ]
  47690. ))
  47691. characterMakers.push(() => makeCharacter(
  47692. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  47693. {
  47694. front: {
  47695. height: math.unit(5, "feet"),
  47696. name: "Front",
  47697. image: {
  47698. source: "./media/characters/nova-nerium/front.svg",
  47699. extra: 1548/1392,
  47700. bottom: 374/1922
  47701. }
  47702. },
  47703. back: {
  47704. height: math.unit(5, "feet"),
  47705. name: "Back",
  47706. image: {
  47707. source: "./media/characters/nova-nerium/back.svg",
  47708. extra: 1658/1468,
  47709. bottom: 257/1915
  47710. }
  47711. },
  47712. },
  47713. [
  47714. {
  47715. name: "Normal",
  47716. height: math.unit(5, "feet"),
  47717. default: true
  47718. },
  47719. ]
  47720. ))
  47721. characterMakers.push(() => makeCharacter(
  47722. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  47723. {
  47724. front: {
  47725. height: math.unit(5 + 4/12, "feet"),
  47726. name: "Front",
  47727. image: {
  47728. source: "./media/characters/ashe-pyriph/front.svg",
  47729. extra: 1935/1747,
  47730. bottom: 60/1995
  47731. }
  47732. },
  47733. },
  47734. [
  47735. {
  47736. name: "Normal",
  47737. height: math.unit(5 + 4/12, "feet"),
  47738. default: true
  47739. },
  47740. ]
  47741. ))
  47742. characterMakers.push(() => makeCharacter(
  47743. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  47744. {
  47745. front: {
  47746. height: math.unit(8.7, "feet"),
  47747. name: "Front",
  47748. image: {
  47749. source: "./media/characters/flicker-wisp/front.svg",
  47750. extra: 1835/1613,
  47751. bottom: 449/2284
  47752. }
  47753. },
  47754. side: {
  47755. height: math.unit(8.7, "feet"),
  47756. name: "Side",
  47757. image: {
  47758. source: "./media/characters/flicker-wisp/side.svg",
  47759. extra: 1841/1642,
  47760. bottom: 336/2177
  47761. },
  47762. default: true
  47763. },
  47764. maw: {
  47765. height: math.unit(3.35, "feet"),
  47766. name: "Maw",
  47767. image: {
  47768. source: "./media/characters/flicker-wisp/maw.svg",
  47769. extra: 2338/1506,
  47770. bottom: 0/2338
  47771. }
  47772. },
  47773. ovipositor: {
  47774. height: math.unit(4.95, "feet"),
  47775. name: "Ovipositor",
  47776. image: {
  47777. source: "./media/characters/flicker-wisp/ovipositor.svg"
  47778. }
  47779. },
  47780. egg: {
  47781. height: math.unit(0.385, "feet"),
  47782. weight: math.unit(2, "lb"),
  47783. name: "Egg",
  47784. image: {
  47785. source: "./media/characters/flicker-wisp/egg.svg"
  47786. }
  47787. },
  47788. },
  47789. [
  47790. {
  47791. name: "Normal",
  47792. height: math.unit(8.7, "feet"),
  47793. default: true
  47794. },
  47795. ]
  47796. ))
  47797. characterMakers.push(() => makeCharacter(
  47798. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  47799. {
  47800. side: {
  47801. height: math.unit(11, "feet"),
  47802. name: "Side",
  47803. image: {
  47804. source: "./media/characters/faefnul/side.svg",
  47805. extra: 1100/1007,
  47806. bottom: 0/1100
  47807. }
  47808. },
  47809. },
  47810. [
  47811. {
  47812. name: "Normal",
  47813. height: math.unit(11, "feet"),
  47814. default: true
  47815. },
  47816. ]
  47817. ))
  47818. characterMakers.push(() => makeCharacter(
  47819. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  47820. {
  47821. front: {
  47822. height: math.unit(6 + 2/12, "feet"),
  47823. name: "Front",
  47824. image: {
  47825. source: "./media/characters/shady/front.svg",
  47826. extra: 502/461,
  47827. bottom: 9/511
  47828. }
  47829. },
  47830. kneeling: {
  47831. height: math.unit(4.6, "feet"),
  47832. name: "Kneeling",
  47833. image: {
  47834. source: "./media/characters/shady/kneeling.svg",
  47835. extra: 1328/1219,
  47836. bottom: 117/1445
  47837. }
  47838. },
  47839. maw: {
  47840. height: math.unit(2, "feet"),
  47841. name: "Maw",
  47842. image: {
  47843. source: "./media/characters/shady/maw.svg"
  47844. }
  47845. },
  47846. },
  47847. [
  47848. {
  47849. name: "Nano",
  47850. height: math.unit(1, "mm")
  47851. },
  47852. {
  47853. name: "Micro",
  47854. height: math.unit(12, "mm")
  47855. },
  47856. {
  47857. name: "Tiny",
  47858. height: math.unit(3, "inches")
  47859. },
  47860. {
  47861. name: "Normal",
  47862. height: math.unit(6 + 2/12, "feet"),
  47863. default: true
  47864. },
  47865. {
  47866. name: "Big",
  47867. height: math.unit(15, "feet")
  47868. },
  47869. {
  47870. name: "Macro",
  47871. height: math.unit(150, "feet")
  47872. },
  47873. {
  47874. name: "Titanic",
  47875. height: math.unit(500, "feet")
  47876. },
  47877. ]
  47878. ))
  47879. characterMakers.push(() => makeCharacter(
  47880. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  47881. {
  47882. front: {
  47883. height: math.unit(12, "feet"),
  47884. name: "Front",
  47885. image: {
  47886. source: "./media/characters/fenrir/front.svg",
  47887. extra: 968/875,
  47888. bottom: 22/990
  47889. }
  47890. },
  47891. },
  47892. [
  47893. {
  47894. name: "Big",
  47895. height: math.unit(12, "feet"),
  47896. default: true
  47897. },
  47898. ]
  47899. ))
  47900. characterMakers.push(() => makeCharacter(
  47901. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  47902. {
  47903. front: {
  47904. height: math.unit(5 + 4/12, "feet"),
  47905. name: "Front",
  47906. image: {
  47907. source: "./media/characters/makar/front.svg",
  47908. extra: 1181/1112,
  47909. bottom: 78/1259
  47910. }
  47911. },
  47912. },
  47913. [
  47914. {
  47915. name: "Normal",
  47916. height: math.unit(5 + 4/12, "feet"),
  47917. default: true
  47918. },
  47919. ]
  47920. ))
  47921. characterMakers.push(() => makeCharacter(
  47922. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  47923. {
  47924. front: {
  47925. height: math.unit(5 + 7/12, "feet"),
  47926. name: "Front",
  47927. image: {
  47928. source: "./media/characters/callow/front.svg",
  47929. extra: 1482/1304,
  47930. bottom: 23/1505
  47931. }
  47932. },
  47933. back: {
  47934. height: math.unit(5 + 7/12, "feet"),
  47935. name: "Back",
  47936. image: {
  47937. source: "./media/characters/callow/back.svg",
  47938. extra: 1484/1296,
  47939. bottom: 25/1509
  47940. }
  47941. },
  47942. },
  47943. [
  47944. {
  47945. name: "Micro",
  47946. height: math.unit(3, "inches"),
  47947. default: true
  47948. },
  47949. {
  47950. name: "Normal",
  47951. height: math.unit(5 + 7/12, "feet")
  47952. },
  47953. ]
  47954. ))
  47955. characterMakers.push(() => makeCharacter(
  47956. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  47957. {
  47958. front: {
  47959. height: math.unit(6 + 2/12, "feet"),
  47960. name: "Front",
  47961. image: {
  47962. source: "./media/characters/natel/front.svg",
  47963. extra: 1833/1692,
  47964. bottom: 166/1999
  47965. }
  47966. },
  47967. },
  47968. [
  47969. {
  47970. name: "Normal",
  47971. height: math.unit(6 + 2/12, "feet"),
  47972. default: true
  47973. },
  47974. ]
  47975. ))
  47976. characterMakers.push(() => makeCharacter(
  47977. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  47978. {
  47979. front: {
  47980. height: math.unit(1.75, "meters"),
  47981. name: "Front",
  47982. image: {
  47983. source: "./media/characters/misu/front.svg",
  47984. extra: 1690/1558,
  47985. bottom: 234/1924
  47986. }
  47987. },
  47988. back: {
  47989. height: math.unit(1.75, "meters"),
  47990. name: "Back",
  47991. image: {
  47992. source: "./media/characters/misu/back.svg",
  47993. extra: 1762/1618,
  47994. bottom: 146/1908
  47995. }
  47996. },
  47997. frontNude: {
  47998. height: math.unit(1.75, "meters"),
  47999. name: "Front (Nude)",
  48000. image: {
  48001. source: "./media/characters/misu/front-nude.svg",
  48002. extra: 1690/1558,
  48003. bottom: 234/1924
  48004. }
  48005. },
  48006. backNude: {
  48007. height: math.unit(1.75, "meters"),
  48008. name: "Back (Nude)",
  48009. image: {
  48010. source: "./media/characters/misu/back-nude.svg",
  48011. extra: 1762/1618,
  48012. bottom: 146/1908
  48013. }
  48014. },
  48015. frontErect: {
  48016. height: math.unit(1.75, "meters"),
  48017. name: "Front (Erect)",
  48018. image: {
  48019. source: "./media/characters/misu/front-erect.svg",
  48020. extra: 1690/1558,
  48021. bottom: 234/1924
  48022. }
  48023. },
  48024. maw: {
  48025. height: math.unit(0.47, "meters"),
  48026. name: "Maw",
  48027. image: {
  48028. source: "./media/characters/misu/maw.svg"
  48029. }
  48030. },
  48031. head: {
  48032. height: math.unit(0.35, "meters"),
  48033. name: "Head",
  48034. image: {
  48035. source: "./media/characters/misu/head.svg"
  48036. }
  48037. },
  48038. rear: {
  48039. height: math.unit(0.47, "meters"),
  48040. name: "Rear",
  48041. image: {
  48042. source: "./media/characters/misu/rear.svg"
  48043. }
  48044. },
  48045. },
  48046. [
  48047. {
  48048. name: "Normal",
  48049. height: math.unit(1.75, "meters")
  48050. },
  48051. {
  48052. name: "Not good for the people",
  48053. height: math.unit(42, "meters")
  48054. },
  48055. {
  48056. name: "Not good for the neighborhood",
  48057. height: math.unit(135, "meters")
  48058. },
  48059. {
  48060. name: "Bit bigger problem",
  48061. height: math.unit(380, "meters"),
  48062. default: true
  48063. },
  48064. {
  48065. name: "Not good for the city",
  48066. height: math.unit(1.5, "km")
  48067. },
  48068. {
  48069. name: "Not good for the county",
  48070. height: math.unit(5.5, "km")
  48071. },
  48072. {
  48073. name: "Not good for the state",
  48074. height: math.unit(25, "km")
  48075. },
  48076. {
  48077. name: "Not good for the country",
  48078. height: math.unit(125, "km")
  48079. },
  48080. {
  48081. name: "Not good for the continent",
  48082. height: math.unit(2100, "km")
  48083. },
  48084. {
  48085. name: "Not good for the planet",
  48086. height: math.unit(35000, "km")
  48087. },
  48088. {
  48089. name: "Just no",
  48090. height: math.unit(8.5e18, "km")
  48091. },
  48092. ]
  48093. ))
  48094. characterMakers.push(() => makeCharacter(
  48095. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48096. {
  48097. front: {
  48098. height: math.unit(6.5, "feet"),
  48099. name: "Front",
  48100. image: {
  48101. source: "./media/characters/poppy/front.svg",
  48102. extra: 1878/1812,
  48103. bottom: 43/1921
  48104. }
  48105. },
  48106. feet: {
  48107. height: math.unit(1.06, "feet"),
  48108. name: "Feet",
  48109. image: {
  48110. source: "./media/characters/poppy/feet.svg",
  48111. extra: 1083/1083,
  48112. bottom: 87/1170
  48113. }
  48114. },
  48115. },
  48116. [
  48117. {
  48118. name: "Human",
  48119. height: math.unit(6.5, "feet")
  48120. },
  48121. {
  48122. name: "Default",
  48123. height: math.unit(300, "feet"),
  48124. default: true
  48125. },
  48126. {
  48127. name: "Huge",
  48128. height: math.unit(850, "feet")
  48129. },
  48130. {
  48131. name: "Mega",
  48132. height: math.unit(8000, "feet")
  48133. },
  48134. {
  48135. name: "Giga",
  48136. height: math.unit(300, "miles")
  48137. },
  48138. ]
  48139. ))
  48140. characterMakers.push(() => makeCharacter(
  48141. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48142. {
  48143. bipedal: {
  48144. height: math.unit(7, "feet"),
  48145. name: "Bipedal",
  48146. image: {
  48147. source: "./media/characters/zener/bipedal.svg",
  48148. extra: 874/805,
  48149. bottom: 109/983
  48150. }
  48151. },
  48152. quadrupedal: {
  48153. height: math.unit(4.64, "feet"),
  48154. name: "Quadrupedal",
  48155. image: {
  48156. source: "./media/characters/zener/quadrupedal.svg",
  48157. extra: 638/507,
  48158. bottom: 190/828
  48159. }
  48160. },
  48161. cock: {
  48162. height: math.unit(18, "inches"),
  48163. name: "Cock",
  48164. image: {
  48165. source: "./media/characters/zener/cock.svg"
  48166. }
  48167. },
  48168. },
  48169. [
  48170. {
  48171. name: "Normal",
  48172. height: math.unit(7, "feet"),
  48173. default: true
  48174. },
  48175. ]
  48176. ))
  48177. characterMakers.push(() => makeCharacter(
  48178. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48179. {
  48180. nude: {
  48181. height: math.unit(5 + 6/12, "feet"),
  48182. name: "Nude",
  48183. image: {
  48184. source: "./media/characters/charlie-dog/nude.svg",
  48185. extra: 768/734,
  48186. bottom: 26/794
  48187. }
  48188. },
  48189. dressed: {
  48190. height: math.unit(5 + 6/12, "feet"),
  48191. name: "Dressed",
  48192. image: {
  48193. source: "./media/characters/charlie-dog/dressed.svg",
  48194. extra: 768/734,
  48195. bottom: 26/794
  48196. }
  48197. },
  48198. },
  48199. [
  48200. {
  48201. name: "Normal",
  48202. height: math.unit(5 + 6/12, "feet"),
  48203. default: true
  48204. },
  48205. ]
  48206. ))
  48207. characterMakers.push(() => makeCharacter(
  48208. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48209. {
  48210. front: {
  48211. height: math.unit(6 + 4/12, "feet"),
  48212. name: "Front",
  48213. image: {
  48214. source: "./media/characters/ir'istrasz/front.svg",
  48215. extra: 1014/977,
  48216. bottom: 65/1079
  48217. }
  48218. },
  48219. back: {
  48220. height: math.unit(6 + 4/12, "feet"),
  48221. name: "Back",
  48222. image: {
  48223. source: "./media/characters/ir'istrasz/back.svg",
  48224. extra: 1024/992,
  48225. bottom: 34/1058
  48226. }
  48227. },
  48228. },
  48229. [
  48230. {
  48231. name: "Normal",
  48232. height: math.unit(6 + 4/12, "feet"),
  48233. default: true
  48234. },
  48235. ]
  48236. ))
  48237. characterMakers.push(() => makeCharacter(
  48238. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48239. {
  48240. front: {
  48241. height: math.unit(5 + 8/12, "feet"),
  48242. name: "Front",
  48243. image: {
  48244. source: "./media/characters/dee-ditto/front.svg",
  48245. extra: 1874/1785,
  48246. bottom: 68/1942
  48247. }
  48248. },
  48249. back: {
  48250. height: math.unit(5 + 8/12, "feet"),
  48251. name: "Back",
  48252. image: {
  48253. source: "./media/characters/dee-ditto/back.svg",
  48254. extra: 1870/1783,
  48255. bottom: 77/1947
  48256. }
  48257. },
  48258. },
  48259. [
  48260. {
  48261. name: "Normal",
  48262. height: math.unit(5 + 8/12, "feet"),
  48263. default: true
  48264. },
  48265. ]
  48266. ))
  48267. characterMakers.push(() => makeCharacter(
  48268. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48269. {
  48270. front: {
  48271. height: math.unit(7 + 6/12, "feet"),
  48272. name: "Front",
  48273. image: {
  48274. source: "./media/characters/fey/front.svg",
  48275. extra: 995/979,
  48276. bottom: 30/1025
  48277. }
  48278. },
  48279. back: {
  48280. height: math.unit(7 + 6/12, "feet"),
  48281. name: "Back",
  48282. image: {
  48283. source: "./media/characters/fey/back.svg",
  48284. extra: 1079/1008,
  48285. bottom: 5/1084
  48286. }
  48287. },
  48288. dressed: {
  48289. height: math.unit(7 + 6/12, "feet"),
  48290. name: "Dressed",
  48291. image: {
  48292. source: "./media/characters/fey/dressed.svg",
  48293. extra: 995/979,
  48294. bottom: 30/1025
  48295. }
  48296. },
  48297. },
  48298. [
  48299. {
  48300. name: "Normal",
  48301. height: math.unit(7 + 6/12, "feet"),
  48302. default: true
  48303. },
  48304. ]
  48305. ))
  48306. characterMakers.push(() => makeCharacter(
  48307. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48308. {
  48309. standing: {
  48310. height: math.unit(17, "feet"),
  48311. name: "Standing",
  48312. image: {
  48313. source: "./media/characters/aster/standing.svg",
  48314. extra: 1798/1598,
  48315. bottom: 117/1915
  48316. }
  48317. },
  48318. },
  48319. [
  48320. {
  48321. name: "Normal",
  48322. height: math.unit(17, "feet"),
  48323. default: true
  48324. },
  48325. {
  48326. name: "Homewrecker",
  48327. height: math.unit(95, "feet")
  48328. },
  48329. {
  48330. name: "Planet Devourer",
  48331. height: math.unit(1008000, "miles")
  48332. },
  48333. ]
  48334. ))
  48335. characterMakers.push(() => makeCharacter(
  48336. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48337. {
  48338. front: {
  48339. height: math.unit(6 + 5/12, "feet"),
  48340. weight: math.unit(265, "lb"),
  48341. name: "Front",
  48342. image: {
  48343. source: "./media/characters/devon-childs/front.svg",
  48344. extra: 1795/1721,
  48345. bottom: 41/1836
  48346. }
  48347. },
  48348. side: {
  48349. height: math.unit(6 + 5/12, "feet"),
  48350. weight: math.unit(265, "lb"),
  48351. name: "Side",
  48352. image: {
  48353. source: "./media/characters/devon-childs/side.svg",
  48354. extra: 1812/1738,
  48355. bottom: 30/1842
  48356. }
  48357. },
  48358. back: {
  48359. height: math.unit(6 + 5/12, "feet"),
  48360. weight: math.unit(265, "lb"),
  48361. name: "Back",
  48362. image: {
  48363. source: "./media/characters/devon-childs/back.svg",
  48364. extra: 1808/1735,
  48365. bottom: 23/1831
  48366. }
  48367. },
  48368. hand: {
  48369. height: math.unit(1.464, "feet"),
  48370. name: "Hand",
  48371. image: {
  48372. source: "./media/characters/devon-childs/hand.svg"
  48373. }
  48374. },
  48375. foot: {
  48376. height: math.unit(1.6, "feet"),
  48377. name: "Foot",
  48378. image: {
  48379. source: "./media/characters/devon-childs/foot.svg"
  48380. }
  48381. },
  48382. },
  48383. [
  48384. {
  48385. name: "Micro",
  48386. height: math.unit(7, "cm")
  48387. },
  48388. {
  48389. name: "Normal",
  48390. height: math.unit(6 + 5/12, "feet"),
  48391. default: true
  48392. },
  48393. {
  48394. name: "Macro",
  48395. height: math.unit(154, "feet")
  48396. },
  48397. ]
  48398. ))
  48399. characterMakers.push(() => makeCharacter(
  48400. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48401. {
  48402. front: {
  48403. height: math.unit(6, "feet"),
  48404. weight: math.unit(180, "lb"),
  48405. name: "Front",
  48406. image: {
  48407. source: "./media/characters/lydemox-vir/front.svg",
  48408. extra: 1632/1435,
  48409. bottom: 58/1690
  48410. }
  48411. },
  48412. frontSFW: {
  48413. height: math.unit(6, "feet"),
  48414. weight: math.unit(180, "lb"),
  48415. name: "Front (SFW)",
  48416. image: {
  48417. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48418. extra: 1632/1435,
  48419. bottom: 58/1690
  48420. }
  48421. },
  48422. back: {
  48423. height: math.unit(6, "feet"),
  48424. weight: math.unit(180, "lb"),
  48425. name: "Back",
  48426. image: {
  48427. source: "./media/characters/lydemox-vir/back.svg",
  48428. extra: 1593/1408,
  48429. bottom: 31/1624
  48430. }
  48431. },
  48432. paw: {
  48433. height: math.unit(1.85, "feet"),
  48434. name: "Paw",
  48435. image: {
  48436. source: "./media/characters/lydemox-vir/paw.svg"
  48437. }
  48438. },
  48439. dick: {
  48440. height: math.unit(1.8, "feet"),
  48441. name: "Dick",
  48442. image: {
  48443. source: "./media/characters/lydemox-vir/dick.svg"
  48444. }
  48445. },
  48446. },
  48447. [
  48448. {
  48449. name: "Macro",
  48450. height: math.unit(100, "feet"),
  48451. default: true
  48452. },
  48453. {
  48454. name: "Teramacro",
  48455. height: math.unit(1, "earth")
  48456. },
  48457. {
  48458. name: "Planetary",
  48459. height: math.unit(20, "earths")
  48460. },
  48461. ]
  48462. ))
  48463. characterMakers.push(() => makeCharacter(
  48464. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48465. {
  48466. front: {
  48467. height: math.unit(15 + 8/12, "feet"),
  48468. weight: math.unit(1237, "kg"),
  48469. name: "Front",
  48470. image: {
  48471. source: "./media/characters/mia/front.svg",
  48472. extra: 1573/1446,
  48473. bottom: 58/1631
  48474. }
  48475. },
  48476. },
  48477. [
  48478. {
  48479. name: "Small",
  48480. height: math.unit(9 + 5/12, "feet")
  48481. },
  48482. {
  48483. name: "Normal",
  48484. height: math.unit(15 + 8/12, "feet"),
  48485. default: true
  48486. },
  48487. ]
  48488. ))
  48489. characterMakers.push(() => makeCharacter(
  48490. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48491. {
  48492. front: {
  48493. height: math.unit(10 + 6/12, "feet"),
  48494. weight: math.unit(1.3, "tons"),
  48495. name: "Front",
  48496. image: {
  48497. source: "./media/characters/mr-graves/front.svg",
  48498. extra: 1779/1695,
  48499. bottom: 198/1977
  48500. }
  48501. },
  48502. },
  48503. [
  48504. {
  48505. name: "Normal",
  48506. height: math.unit(10 + 6 /12, "feet"),
  48507. default: true
  48508. },
  48509. ]
  48510. ))
  48511. characterMakers.push(() => makeCharacter(
  48512. { name: "Jess", species: ["human"], tags: ["anthro"] },
  48513. {
  48514. dressedFront: {
  48515. height: math.unit(5 + 8/12, "feet"),
  48516. weight: math.unit(125, "lb"),
  48517. name: "Dressed (Front)",
  48518. image: {
  48519. source: "./media/characters/jess/dressed-front.svg",
  48520. extra: 1176/1152,
  48521. bottom: 42/1218
  48522. }
  48523. },
  48524. dressedSide: {
  48525. height: math.unit(5 + 8/12, "feet"),
  48526. weight: math.unit(125, "lb"),
  48527. name: "Dressed (Side)",
  48528. image: {
  48529. source: "./media/characters/jess/dressed-side.svg",
  48530. extra: 1204/1190,
  48531. bottom: 6/1210
  48532. }
  48533. },
  48534. nudeFront: {
  48535. height: math.unit(5 + 8/12, "feet"),
  48536. weight: math.unit(125, "lb"),
  48537. name: "Nude (Front)",
  48538. image: {
  48539. source: "./media/characters/jess/nude-front.svg",
  48540. extra: 1176/1152,
  48541. bottom: 42/1218
  48542. }
  48543. },
  48544. nudeSide: {
  48545. height: math.unit(5 + 8/12, "feet"),
  48546. weight: math.unit(125, "lb"),
  48547. name: "Nude (Side)",
  48548. image: {
  48549. source: "./media/characters/jess/nude-side.svg",
  48550. extra: 1204/1190,
  48551. bottom: 6/1210
  48552. }
  48553. },
  48554. organsFront: {
  48555. height: math.unit(2.83799342105, "feet"),
  48556. name: "Organs (Front)",
  48557. image: {
  48558. source: "./media/characters/jess/organs-front.svg"
  48559. }
  48560. },
  48561. organsSide: {
  48562. height: math.unit(2.64225290474, "feet"),
  48563. name: "Organs (Side)",
  48564. image: {
  48565. source: "./media/characters/jess/organs-side.svg"
  48566. }
  48567. },
  48568. digestiveTractFront: {
  48569. height: math.unit(2.8106580871, "feet"),
  48570. name: "Digestive Tract (Front)",
  48571. image: {
  48572. source: "./media/characters/jess/digestive-tract-front.svg"
  48573. }
  48574. },
  48575. digestiveTractSide: {
  48576. height: math.unit(2.54365045014, "feet"),
  48577. name: "Digestive Tract (Side)",
  48578. image: {
  48579. source: "./media/characters/jess/digestive-tract-side.svg"
  48580. }
  48581. },
  48582. respiratorySystemFront: {
  48583. height: math.unit(1.11196233456, "feet"),
  48584. name: "Respiratory System (Front)",
  48585. image: {
  48586. source: "./media/characters/jess/respiratory-system-front.svg"
  48587. }
  48588. },
  48589. respiratorySystemSide: {
  48590. height: math.unit(0.89327966297, "feet"),
  48591. name: "Respiratory System (Side)",
  48592. image: {
  48593. source: "./media/characters/jess/respiratory-system-side.svg"
  48594. }
  48595. },
  48596. urinaryTractFront: {
  48597. height: math.unit(1.16126356186, "feet"),
  48598. name: "Urinary Tract (Front)",
  48599. image: {
  48600. source: "./media/characters/jess/urinary-tract-front.svg"
  48601. }
  48602. },
  48603. urinaryTractSide: {
  48604. height: math.unit(1.20910039627, "feet"),
  48605. name: "Urinary Tract (Side)",
  48606. image: {
  48607. source: "./media/characters/jess/urinary-tract-side.svg"
  48608. }
  48609. },
  48610. reproductiveOrgansFront: {
  48611. height: math.unit(0.48422591566, "feet"),
  48612. name: "Reproductive Organs (Front)",
  48613. image: {
  48614. source: "./media/characters/jess/reproductive-organs-front.svg"
  48615. }
  48616. },
  48617. reproductiveOrgansSide: {
  48618. height: math.unit(0.61553314481, "feet"),
  48619. name: "Reproductive Organs (Side)",
  48620. image: {
  48621. source: "./media/characters/jess/reproductive-organs-side.svg"
  48622. }
  48623. },
  48624. breastsFront: {
  48625. height: math.unit(0.47690395121, "feet"),
  48626. name: "Breasts (Front)",
  48627. image: {
  48628. source: "./media/characters/jess/breasts-front.svg"
  48629. }
  48630. },
  48631. breastsSide: {
  48632. height: math.unit(0.30556998307, "feet"),
  48633. name: "Breasts (Side)",
  48634. image: {
  48635. source: "./media/characters/jess/breasts-side.svg"
  48636. }
  48637. },
  48638. heartFront: {
  48639. height: math.unit(0.53011022622, "feet"),
  48640. name: "Heart (Front)",
  48641. image: {
  48642. source: "./media/characters/jess/heart-front.svg"
  48643. }
  48644. },
  48645. heartSide: {
  48646. height: math.unit(0.51790695213, "feet"),
  48647. name: "Heart (Side)",
  48648. image: {
  48649. source: "./media/characters/jess/heart-side.svg"
  48650. }
  48651. },
  48652. earsAndNoseFront: {
  48653. height: math.unit(0.29385483995, "feet"),
  48654. name: "Ears and Nose (Front)",
  48655. image: {
  48656. source: "./media/characters/jess/ears-and-nose-front.svg"
  48657. }
  48658. },
  48659. earsAndNoseSide: {
  48660. height: math.unit(0.18109658741, "feet"),
  48661. name: "Ears and Nose (Side)",
  48662. image: {
  48663. source: "./media/characters/jess/ears-and-nose-side.svg"
  48664. }
  48665. },
  48666. },
  48667. [
  48668. {
  48669. name: "Normal",
  48670. height: math.unit(5 + 8/12, "feet"),
  48671. default: true
  48672. },
  48673. ]
  48674. ))
  48675. characterMakers.push(() => makeCharacter(
  48676. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  48677. {
  48678. front: {
  48679. height: math.unit(6, "feet"),
  48680. weight: math.unit(6.64467e-7, "grams"),
  48681. name: "Front",
  48682. image: {
  48683. source: "./media/characters/wimpering/front.svg",
  48684. extra: 597/587,
  48685. bottom: 34/631
  48686. }
  48687. },
  48688. },
  48689. [
  48690. {
  48691. name: "Micro",
  48692. height: math.unit(0.4, "mm"),
  48693. default: true
  48694. },
  48695. ]
  48696. ))
  48697. characterMakers.push(() => makeCharacter(
  48698. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  48699. {
  48700. front: {
  48701. height: math.unit(5 + 2/12, "feet"),
  48702. weight: math.unit(110, "lb"),
  48703. name: "Front",
  48704. image: {
  48705. source: "./media/characters/keltre/front.svg",
  48706. extra: 1099/1057,
  48707. bottom: 22/1121
  48708. }
  48709. },
  48710. back: {
  48711. height: math.unit(5 + 2/12, "feet"),
  48712. weight: math.unit(110, "lb"),
  48713. name: "Back",
  48714. image: {
  48715. source: "./media/characters/keltre/back.svg",
  48716. extra: 1095/1053,
  48717. bottom: 17/1112
  48718. }
  48719. },
  48720. dressed: {
  48721. height: math.unit(5 + 2/12, "feet"),
  48722. weight: math.unit(110, "lb"),
  48723. name: "Dressed",
  48724. image: {
  48725. source: "./media/characters/keltre/dressed.svg",
  48726. extra: 1099/1057,
  48727. bottom: 22/1121
  48728. }
  48729. },
  48730. winter: {
  48731. height: math.unit(5 + 2/12, "feet"),
  48732. weight: math.unit(110, "lb"),
  48733. name: "Winter",
  48734. image: {
  48735. source: "./media/characters/keltre/winter.svg",
  48736. extra: 1099/1057,
  48737. bottom: 22/1121
  48738. }
  48739. },
  48740. head: {
  48741. height: math.unit(1.61 * 0.86, "feet"),
  48742. name: "Head",
  48743. image: {
  48744. source: "./media/characters/keltre/head.svg",
  48745. extra: 534/421,
  48746. bottom: 0/534
  48747. }
  48748. },
  48749. hand: {
  48750. height: math.unit(1.3 * 0.86, "feet"),
  48751. name: "Hand",
  48752. image: {
  48753. source: "./media/characters/keltre/hand.svg"
  48754. }
  48755. },
  48756. foot: {
  48757. height: math.unit(1.8 * 0.86, "feet"),
  48758. name: "Foot",
  48759. image: {
  48760. source: "./media/characters/keltre/foot.svg"
  48761. }
  48762. },
  48763. },
  48764. [
  48765. {
  48766. name: "Fine",
  48767. height: math.unit(1, "inch")
  48768. },
  48769. {
  48770. name: "Dimnutive",
  48771. height: math.unit(4, "inches")
  48772. },
  48773. {
  48774. name: "Tiny",
  48775. height: math.unit(1, "foot")
  48776. },
  48777. {
  48778. name: "Small",
  48779. height: math.unit(3, "feet")
  48780. },
  48781. {
  48782. name: "Normal",
  48783. height: math.unit(5 + 2/12, "feet"),
  48784. default: true
  48785. },
  48786. ]
  48787. ))
  48788. characterMakers.push(() => makeCharacter(
  48789. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  48790. {
  48791. front: {
  48792. height: math.unit(6 + 2/12, "feet"),
  48793. name: "Front",
  48794. image: {
  48795. source: "./media/characters/nox/front.svg",
  48796. extra: 1917/1830,
  48797. bottom: 74/1991
  48798. }
  48799. },
  48800. back: {
  48801. height: math.unit(6 + 2/12, "feet"),
  48802. name: "Back",
  48803. image: {
  48804. source: "./media/characters/nox/back.svg",
  48805. extra: 1896/1815,
  48806. bottom: 21/1917
  48807. }
  48808. },
  48809. head: {
  48810. height: math.unit(1.1, "feet"),
  48811. name: "Head",
  48812. image: {
  48813. source: "./media/characters/nox/head.svg",
  48814. extra: 874/704,
  48815. bottom: 0/874
  48816. }
  48817. },
  48818. tattoo: {
  48819. height: math.unit(0.729, "feet"),
  48820. name: "Tattoo",
  48821. image: {
  48822. source: "./media/characters/nox/tattoo.svg"
  48823. }
  48824. },
  48825. },
  48826. [
  48827. {
  48828. name: "Normal",
  48829. height: math.unit(6 + 2/12, "feet")
  48830. },
  48831. {
  48832. name: "Gigamacro",
  48833. height: math.unit(2, "earths"),
  48834. default: true
  48835. },
  48836. {
  48837. name: "Cosmic",
  48838. height: math.unit(867, "yottameters")
  48839. },
  48840. ]
  48841. ))
  48842. characterMakers.push(() => makeCharacter(
  48843. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  48844. {
  48845. front: {
  48846. height: math.unit(6, "feet"),
  48847. weight: math.unit(150, "lb"),
  48848. name: "Front",
  48849. image: {
  48850. source: "./media/characters/caspian/front.svg",
  48851. extra: 1443/1359,
  48852. bottom: 0/1443
  48853. }
  48854. },
  48855. back: {
  48856. height: math.unit(6, "feet"),
  48857. weight: math.unit(150, "lb"),
  48858. name: "Back",
  48859. image: {
  48860. source: "./media/characters/caspian/back.svg",
  48861. extra: 1379/1309,
  48862. bottom: 0/1379
  48863. }
  48864. },
  48865. head: {
  48866. height: math.unit(0.9, "feet"),
  48867. name: "Head",
  48868. image: {
  48869. source: "./media/characters/caspian/head.svg",
  48870. extra: 692/492,
  48871. bottom: 0/692
  48872. }
  48873. },
  48874. headAlt: {
  48875. height: math.unit(0.95, "feet"),
  48876. name: "Head (Alt)",
  48877. image: {
  48878. source: "./media/characters/caspian/head-alt.svg",
  48879. extra: 668/508,
  48880. bottom: 0/668
  48881. }
  48882. },
  48883. hand: {
  48884. height: math.unit(0.8, "feet"),
  48885. name: "Hand",
  48886. image: {
  48887. source: "./media/characters/caspian/hand.svg"
  48888. }
  48889. },
  48890. paw: {
  48891. height: math.unit(0.95, "feet"),
  48892. name: "Paw",
  48893. image: {
  48894. source: "./media/characters/caspian/paw.svg"
  48895. }
  48896. },
  48897. },
  48898. [
  48899. {
  48900. name: "Normal",
  48901. height: math.unit(162, "feet"),
  48902. default: true
  48903. },
  48904. ]
  48905. ))
  48906. characterMakers.push(() => makeCharacter(
  48907. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  48908. {
  48909. front: {
  48910. height: math.unit(6, "feet"),
  48911. name: "Front",
  48912. image: {
  48913. source: "./media/characters/myra-aisling/front.svg",
  48914. extra: 1268/1166,
  48915. bottom: 73/1341
  48916. }
  48917. },
  48918. back: {
  48919. height: math.unit(6, "feet"),
  48920. name: "Back",
  48921. image: {
  48922. source: "./media/characters/myra-aisling/back.svg",
  48923. extra: 1249/1149,
  48924. bottom: 79/1328
  48925. }
  48926. },
  48927. dressed: {
  48928. height: math.unit(6, "feet"),
  48929. name: "Dressed",
  48930. image: {
  48931. source: "./media/characters/myra-aisling/dressed.svg",
  48932. extra: 1290/1189,
  48933. bottom: 47/1337
  48934. }
  48935. },
  48936. hand: {
  48937. height: math.unit(1.1, "feet"),
  48938. name: "Hand",
  48939. image: {
  48940. source: "./media/characters/myra-aisling/hand.svg"
  48941. }
  48942. },
  48943. paw: {
  48944. height: math.unit(1.23, "feet"),
  48945. name: "Paw",
  48946. image: {
  48947. source: "./media/characters/myra-aisling/paw.svg"
  48948. }
  48949. },
  48950. },
  48951. [
  48952. {
  48953. name: "Normal",
  48954. height: math.unit(160, "feet"),
  48955. default: true
  48956. },
  48957. ]
  48958. ))
  48959. characterMakers.push(() => makeCharacter(
  48960. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  48961. {
  48962. front: {
  48963. height: math.unit(6, "feet"),
  48964. name: "Front",
  48965. image: {
  48966. source: "./media/characters/tenley-sidero/front.svg",
  48967. extra: 1365/1276,
  48968. bottom: 47/1412
  48969. }
  48970. },
  48971. back: {
  48972. height: math.unit(6, "feet"),
  48973. name: "Back",
  48974. image: {
  48975. source: "./media/characters/tenley-sidero/back.svg",
  48976. extra: 1383/1283,
  48977. bottom: 35/1418
  48978. }
  48979. },
  48980. dressed: {
  48981. height: math.unit(6, "feet"),
  48982. name: "Dressed",
  48983. image: {
  48984. source: "./media/characters/tenley-sidero/dressed.svg",
  48985. extra: 1364/1275,
  48986. bottom: 42/1406
  48987. }
  48988. },
  48989. head: {
  48990. height: math.unit(1.47, "feet"),
  48991. name: "Head",
  48992. image: {
  48993. source: "./media/characters/tenley-sidero/head.svg",
  48994. extra: 610/490,
  48995. bottom: 0/610
  48996. }
  48997. },
  48998. },
  48999. [
  49000. {
  49001. name: "Normal",
  49002. height: math.unit(154, "feet"),
  49003. default: true
  49004. },
  49005. ]
  49006. ))
  49007. characterMakers.push(() => makeCharacter(
  49008. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49009. {
  49010. front: {
  49011. height: math.unit(5, "inches"),
  49012. name: "Front",
  49013. image: {
  49014. source: "./media/characters/mallory/front.svg",
  49015. extra: 1919/1678,
  49016. bottom: 29/1948
  49017. }
  49018. },
  49019. hand: {
  49020. height: math.unit(0.73, "inches"),
  49021. name: "Hand",
  49022. image: {
  49023. source: "./media/characters/mallory/hand.svg"
  49024. }
  49025. },
  49026. paw: {
  49027. height: math.unit(0.68, "inches"),
  49028. name: "Paw",
  49029. image: {
  49030. source: "./media/characters/mallory/paw.svg"
  49031. }
  49032. },
  49033. },
  49034. [
  49035. {
  49036. name: "Small",
  49037. height: math.unit(5, "inches"),
  49038. default: true
  49039. },
  49040. ]
  49041. ))
  49042. characterMakers.push(() => makeCharacter(
  49043. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49044. {
  49045. naked: {
  49046. height: math.unit(6, "feet"),
  49047. name: "Naked",
  49048. image: {
  49049. source: "./media/characters/mab/naked.svg",
  49050. extra: 1855/1757,
  49051. bottom: 208/2063
  49052. }
  49053. },
  49054. outside: {
  49055. height: math.unit(6, "feet"),
  49056. name: "Outside",
  49057. image: {
  49058. source: "./media/characters/mab/outside.svg",
  49059. extra: 1855/1757,
  49060. bottom: 208/2063
  49061. }
  49062. },
  49063. party: {
  49064. height: math.unit(6, "feet"),
  49065. name: "Party",
  49066. image: {
  49067. source: "./media/characters/mab/party.svg",
  49068. extra: 1855/1757,
  49069. bottom: 208/2063
  49070. }
  49071. },
  49072. },
  49073. [
  49074. {
  49075. name: "Normal",
  49076. height: math.unit(165, "feet"),
  49077. default: true
  49078. },
  49079. ]
  49080. ))
  49081. characterMakers.push(() => makeCharacter(
  49082. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49083. {
  49084. front: {
  49085. height: math.unit(12, "feet"),
  49086. weight: math.unit(4000, "lb"),
  49087. name: "Front",
  49088. image: {
  49089. source: "./media/characters/winter/front.svg",
  49090. extra: 1286/943,
  49091. bottom: 112/1398
  49092. }
  49093. },
  49094. frontNsfw: {
  49095. height: math.unit(12, "feet"),
  49096. weight: math.unit(4000, "lb"),
  49097. name: "Front (NSFW)",
  49098. image: {
  49099. source: "./media/characters/winter/front-nsfw.svg",
  49100. extra: 1286/943,
  49101. bottom: 112/1398
  49102. }
  49103. },
  49104. dick: {
  49105. height: math.unit(3.79, "feet"),
  49106. name: "Dick",
  49107. image: {
  49108. source: "./media/characters/winter/dick.svg"
  49109. }
  49110. },
  49111. },
  49112. [
  49113. {
  49114. name: "Big",
  49115. height: math.unit(12, "feet"),
  49116. default: true
  49117. },
  49118. ]
  49119. ))
  49120. characterMakers.push(() => makeCharacter(
  49121. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49122. {
  49123. front: {
  49124. height: math.unit(4.1, "inches"),
  49125. name: "Front",
  49126. image: {
  49127. source: "./media/characters/alto/front.svg",
  49128. extra: 736/627,
  49129. bottom: 90/826
  49130. }
  49131. },
  49132. },
  49133. [
  49134. {
  49135. name: "Normal",
  49136. height: math.unit(4.1, "inches"),
  49137. default: true
  49138. },
  49139. ]
  49140. ))
  49141. characterMakers.push(() => makeCharacter(
  49142. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49143. {
  49144. sitting: {
  49145. height: math.unit(3, "feet"),
  49146. name: "Sitting",
  49147. image: {
  49148. source: "./media/characters/ratstrid-v/sitting.svg",
  49149. extra: 355/310,
  49150. bottom: 136/491
  49151. }
  49152. },
  49153. },
  49154. [
  49155. {
  49156. name: "Normal",
  49157. height: math.unit(3, "feet"),
  49158. default: true
  49159. },
  49160. ]
  49161. ))
  49162. characterMakers.push(() => makeCharacter(
  49163. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49164. {
  49165. back: {
  49166. height: math.unit(6, "feet"),
  49167. weight: math.unit(350, "lb"),
  49168. name: "Back",
  49169. image: {
  49170. source: "./media/characters/siz/back.svg",
  49171. extra: 1449/1274,
  49172. bottom: 13/1462
  49173. }
  49174. },
  49175. },
  49176. [
  49177. {
  49178. name: "Over-Overcompressed",
  49179. height: math.unit(8, "feet")
  49180. },
  49181. {
  49182. name: "Overcompressed",
  49183. height: math.unit(32, "feet")
  49184. },
  49185. {
  49186. name: "Compressed",
  49187. height: math.unit(128, "feet"),
  49188. default: true
  49189. },
  49190. {
  49191. name: "Half-Compressed",
  49192. height: math.unit(512, "feet")
  49193. },
  49194. {
  49195. name: "Quarter-Compressed",
  49196. height: math.unit(2048, "feet")
  49197. },
  49198. {
  49199. name: "Uncompressed?",
  49200. height: math.unit(8192, "feet")
  49201. },
  49202. ]
  49203. ))
  49204. characterMakers.push(() => makeCharacter(
  49205. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  49206. {
  49207. front: {
  49208. height: math.unit(5 + 9/12, "feet"),
  49209. weight: math.unit(150, "lb"),
  49210. name: "Front",
  49211. image: {
  49212. source: "./media/characters/ven/front.svg",
  49213. extra: 1372/1320,
  49214. bottom: 73/1445
  49215. }
  49216. },
  49217. side: {
  49218. height: math.unit(5 + 9/12, "feet"),
  49219. weight: math.unit(1150, "lb"),
  49220. name: "Side",
  49221. image: {
  49222. source: "./media/characters/ven/side.svg",
  49223. extra: 1119/1070,
  49224. bottom: 42/1161
  49225. },
  49226. default: true
  49227. },
  49228. },
  49229. [
  49230. {
  49231. name: "Normal",
  49232. height: math.unit(5 + 9/12, "feet"),
  49233. default: true
  49234. },
  49235. ]
  49236. ))
  49237. characterMakers.push(() => makeCharacter(
  49238. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  49239. {
  49240. front: {
  49241. height: math.unit(12, "feet"),
  49242. weight: math.unit(1000, "kg"),
  49243. name: "Front",
  49244. image: {
  49245. source: "./media/characters/maple/front.svg",
  49246. extra: 1193/1081,
  49247. bottom: 22/1215
  49248. }
  49249. },
  49250. },
  49251. [
  49252. {
  49253. name: "Compressed",
  49254. height: math.unit(7, "feet")
  49255. },
  49256. {
  49257. name: "Normal",
  49258. height: math.unit(12, "feet"),
  49259. default: true
  49260. },
  49261. ]
  49262. ))
  49263. characterMakers.push(() => makeCharacter(
  49264. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  49265. {
  49266. front: {
  49267. height: math.unit(9, "feet"),
  49268. weight: math.unit(1500, "lb"),
  49269. name: "Front",
  49270. image: {
  49271. source: "./media/characters/nora/front.svg",
  49272. extra: 1348/1286,
  49273. bottom: 218/1566
  49274. }
  49275. },
  49276. erect: {
  49277. height: math.unit(9, "feet"),
  49278. weight: math.unit(11500, "lb"),
  49279. name: "Erect",
  49280. image: {
  49281. source: "./media/characters/nora/erect.svg",
  49282. extra: 1488/1433,
  49283. bottom: 133/1621
  49284. }
  49285. },
  49286. },
  49287. [
  49288. {
  49289. name: "Normal",
  49290. height: math.unit(9, "feet"),
  49291. default: true
  49292. },
  49293. ]
  49294. ))
  49295. characterMakers.push(() => makeCharacter(
  49296. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  49297. {
  49298. front: {
  49299. height: math.unit(25, "feet"),
  49300. weight: math.unit(27500, "lb"),
  49301. name: "Front",
  49302. image: {
  49303. source: "./media/characters/north-caudin/front.svg",
  49304. extra: 1184/1082,
  49305. bottom: 23/1207
  49306. }
  49307. },
  49308. },
  49309. [
  49310. {
  49311. name: "Compressed",
  49312. height: math.unit(10, "feet")
  49313. },
  49314. {
  49315. name: "Normal",
  49316. height: math.unit(25, "feet"),
  49317. default: true
  49318. },
  49319. ]
  49320. ))
  49321. characterMakers.push(() => makeCharacter(
  49322. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  49323. {
  49324. front: {
  49325. height: math.unit(9, "feet"),
  49326. weight: math.unit(1250, "lb"),
  49327. name: "Front",
  49328. image: {
  49329. source: "./media/characters/merrian/front.svg",
  49330. extra: 2393/2304,
  49331. bottom: 40/2433
  49332. }
  49333. },
  49334. },
  49335. [
  49336. {
  49337. name: "Normal",
  49338. height: math.unit(9, "feet"),
  49339. default: true
  49340. },
  49341. ]
  49342. ))
  49343. characterMakers.push(() => makeCharacter(
  49344. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  49345. {
  49346. front: {
  49347. height: math.unit(9, "feet"),
  49348. weight: math.unit(1000, "lb"),
  49349. name: "Front",
  49350. image: {
  49351. source: "./media/characters/hazel/front.svg",
  49352. extra: 2351/2298,
  49353. bottom: 38/2389
  49354. }
  49355. },
  49356. },
  49357. [
  49358. {
  49359. name: "Normal",
  49360. height: math.unit(9, "feet"),
  49361. default: true
  49362. },
  49363. ]
  49364. ))
  49365. characterMakers.push(() => makeCharacter(
  49366. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  49367. {
  49368. front: {
  49369. height: math.unit(13, "feet"),
  49370. weight: math.unit(3200, "lb"),
  49371. name: "Front",
  49372. image: {
  49373. source: "./media/characters/emma/front.svg",
  49374. extra: 2263/2029,
  49375. bottom: 68/2331
  49376. }
  49377. },
  49378. },
  49379. [
  49380. {
  49381. name: "Normal",
  49382. height: math.unit(13, "feet"),
  49383. default: true
  49384. },
  49385. ]
  49386. ))
  49387. characterMakers.push(() => makeCharacter(
  49388. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  49389. {
  49390. front: {
  49391. height: math.unit(11 + 9/12, "feet"),
  49392. weight: math.unit(2500, "lb"),
  49393. name: "Front",
  49394. image: {
  49395. source: "./media/characters/ilumina/front.svg",
  49396. extra: 2248/2209,
  49397. bottom: 164/2412
  49398. }
  49399. },
  49400. },
  49401. [
  49402. {
  49403. name: "Normal",
  49404. height: math.unit(11 + 9/12, "feet"),
  49405. default: true
  49406. },
  49407. ]
  49408. ))
  49409. characterMakers.push(() => makeCharacter(
  49410. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  49411. {
  49412. front: {
  49413. height: math.unit(8 + 10/12, "feet"),
  49414. weight: math.unit(1350, "lb"),
  49415. name: "Front",
  49416. image: {
  49417. source: "./media/characters/moonshine/front.svg",
  49418. extra: 2395/2288,
  49419. bottom: 40/2435
  49420. }
  49421. },
  49422. },
  49423. [
  49424. {
  49425. name: "Normal",
  49426. height: math.unit(8 + 10/12, "feet"),
  49427. default: true
  49428. },
  49429. ]
  49430. ))
  49431. characterMakers.push(() => makeCharacter(
  49432. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  49433. {
  49434. front: {
  49435. height: math.unit(14, "feet"),
  49436. weight: math.unit(3400, "lb"),
  49437. name: "Front",
  49438. image: {
  49439. source: "./media/characters/aletia/front.svg",
  49440. extra: 1185/1052,
  49441. bottom: 21/1206
  49442. }
  49443. },
  49444. },
  49445. [
  49446. {
  49447. name: "Compressed",
  49448. height: math.unit(8, "feet")
  49449. },
  49450. {
  49451. name: "Normal",
  49452. height: math.unit(14, "feet"),
  49453. default: true
  49454. },
  49455. ]
  49456. ))
  49457. characterMakers.push(() => makeCharacter(
  49458. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  49459. {
  49460. front: {
  49461. height: math.unit(17, "feet"),
  49462. weight: math.unit(6500, "lb"),
  49463. name: "Front",
  49464. image: {
  49465. source: "./media/characters/deidra/front.svg",
  49466. extra: 1201/1081,
  49467. bottom: 16/1217
  49468. }
  49469. },
  49470. },
  49471. [
  49472. {
  49473. name: "Compressed",
  49474. height: math.unit(9 + 6/12, "feet")
  49475. },
  49476. {
  49477. name: "Normal",
  49478. height: math.unit(17, "feet"),
  49479. default: true
  49480. },
  49481. ]
  49482. ))
  49483. characterMakers.push(() => makeCharacter(
  49484. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  49485. {
  49486. front: {
  49487. height: math.unit(7 + 4/12, "feet"),
  49488. weight: math.unit(280, "lb"),
  49489. name: "Front",
  49490. image: {
  49491. source: "./media/characters/freki-yrmori/front.svg",
  49492. extra: 1286/1182,
  49493. bottom: 29/1315
  49494. }
  49495. },
  49496. maw: {
  49497. height: math.unit(0.9, "feet"),
  49498. name: "Maw",
  49499. image: {
  49500. source: "./media/characters/freki-yrmori/maw.svg"
  49501. }
  49502. },
  49503. },
  49504. [
  49505. {
  49506. name: "Normal",
  49507. height: math.unit(7 + 4/12, "feet"),
  49508. default: true
  49509. },
  49510. {
  49511. name: "Macro",
  49512. height: math.unit(38.5, "meters")
  49513. },
  49514. ]
  49515. ))
  49516. characterMakers.push(() => makeCharacter(
  49517. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  49518. {
  49519. side: {
  49520. height: math.unit(47.2, "meters"),
  49521. weight: math.unit(10000, "tons"),
  49522. name: "Side",
  49523. image: {
  49524. source: "./media/characters/aetherios/side.svg",
  49525. extra: 2363/642,
  49526. bottom: 221/2584
  49527. }
  49528. },
  49529. top: {
  49530. height: math.unit(240, "meters"),
  49531. weight: math.unit(10000, "tons"),
  49532. name: "Top",
  49533. image: {
  49534. source: "./media/characters/aetherios/top.svg"
  49535. }
  49536. },
  49537. bottom: {
  49538. height: math.unit(240, "meters"),
  49539. weight: math.unit(10000, "tons"),
  49540. name: "Bottom",
  49541. image: {
  49542. source: "./media/characters/aetherios/bottom.svg"
  49543. }
  49544. },
  49545. head: {
  49546. height: math.unit(38.6, "meters"),
  49547. name: "Head",
  49548. image: {
  49549. source: "./media/characters/aetherios/head.svg",
  49550. extra: 1335/1112,
  49551. bottom: 0/1335
  49552. }
  49553. },
  49554. front: {
  49555. height: math.unit(29, "meters"),
  49556. name: "Front",
  49557. image: {
  49558. source: "./media/characters/aetherios/front.svg",
  49559. extra: 1266/953,
  49560. bottom: 158/1424
  49561. }
  49562. },
  49563. maw: {
  49564. height: math.unit(16.37, "meters"),
  49565. name: "Maw",
  49566. image: {
  49567. source: "./media/characters/aetherios/maw.svg",
  49568. extra: 748/637,
  49569. bottom: 0/748
  49570. },
  49571. extraAttributes: {
  49572. preyCapacity: {
  49573. name: "Capacity",
  49574. power: 3,
  49575. type: "volume",
  49576. base: math.unit(1000, "people")
  49577. },
  49578. tongueSize: {
  49579. name: "Tongue Size",
  49580. power: 2,
  49581. type: "area",
  49582. base: math.unit(21, "m^2")
  49583. }
  49584. }
  49585. },
  49586. forepaw: {
  49587. height: math.unit(18, "meters"),
  49588. name: "Forepaw",
  49589. image: {
  49590. source: "./media/characters/aetherios/forepaw.svg"
  49591. }
  49592. },
  49593. hindpaw: {
  49594. height: math.unit(23, "meters"),
  49595. name: "Hindpaw",
  49596. image: {
  49597. source: "./media/characters/aetherios/hindpaw.svg"
  49598. }
  49599. },
  49600. genitals: {
  49601. height: math.unit(42, "meters"),
  49602. name: "Genitals",
  49603. image: {
  49604. source: "./media/characters/aetherios/genitals.svg"
  49605. }
  49606. },
  49607. },
  49608. [
  49609. {
  49610. name: "Normal",
  49611. height: math.unit(47.2, "meters"),
  49612. default: true
  49613. },
  49614. {
  49615. name: "Macro",
  49616. height: math.unit(160, "meters")
  49617. },
  49618. {
  49619. name: "Mega",
  49620. height: math.unit(1.87, "km")
  49621. },
  49622. {
  49623. name: "Giga",
  49624. height: math.unit(40000, "km")
  49625. },
  49626. {
  49627. name: "Stellar",
  49628. height: math.unit(158000000, "km")
  49629. },
  49630. {
  49631. name: "Cosmic",
  49632. height: math.unit(9.46e12, "km")
  49633. },
  49634. ]
  49635. ))
  49636. //characters
  49637. function makeCharacters() {
  49638. const results = [];
  49639. characterMakers.forEach(character => {
  49640. results.push(character());
  49641. });
  49642. return results;
  49643. }