less copy protection, more size visualization
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 

40517 řádky
1018 KiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  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. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.volume) {
  29. views[key].attributes.volume = {
  30. name: "Volume",
  31. power: 3,
  32. type: "volume",
  33. base: value.volume
  34. };
  35. }
  36. if (value.capacity) {
  37. views[key].attributes.capacity = {
  38. name: "Capacity",
  39. power: 3,
  40. type: "volume",
  41. base: value.capacity
  42. }
  43. }
  44. if (value.energyNeed) {
  45. views[key].attributes.capacity = {
  46. name: "Food Intake",
  47. power: 3,
  48. type: "energy",
  49. base: value.energyNeed
  50. }
  51. }
  52. });
  53. return createEntityMaker(info, views, defaultSizes);
  54. }
  55. const speciesData = {
  56. animal: {
  57. name: "Animal"
  58. },
  59. dog: {
  60. name: "Dog",
  61. parents: [
  62. "canine"
  63. ]
  64. },
  65. canine: {
  66. name: "Canine",
  67. parents: [
  68. "mammal"
  69. ]
  70. },
  71. crux: {
  72. name: "Crux",
  73. parents: [
  74. "mammal"
  75. ]
  76. },
  77. mammal: {
  78. name: "Mammal",
  79. parents: [
  80. "animal"
  81. ]
  82. },
  83. "rough-collie": {
  84. name: "Rough Collie",
  85. parents: [
  86. "dog"
  87. ]
  88. },
  89. dragon: {
  90. name: "Dragon",
  91. parents: [
  92. "reptile"
  93. ]
  94. },
  95. reptile: {
  96. name: "Reptile",
  97. parents: [
  98. "animal"
  99. ]
  100. },
  101. woodpecker: {
  102. name: "Woodpecker",
  103. parents: [
  104. "avian"
  105. ]
  106. },
  107. avian: {
  108. name: "Avian",
  109. parents: [
  110. "animal"
  111. ]
  112. },
  113. kitsune: {
  114. name: "Kitsune",
  115. parents: [
  116. "fox"
  117. ]
  118. },
  119. fox: {
  120. name: "Fox",
  121. parents: [
  122. "mammal"
  123. ]
  124. },
  125. pokemon: {
  126. name: "Pokemon"
  127. },
  128. tiger: {
  129. name: "Tiger",
  130. parents: [
  131. "cat"
  132. ]
  133. },
  134. cat: {
  135. name: "Cat",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. "blue-jay": {
  141. name: "Blue Jay",
  142. parents: [
  143. "avian"
  144. ]
  145. },
  146. wolf: {
  147. name: "Wolf",
  148. parents: [
  149. "mammal"
  150. ]
  151. },
  152. coyote: {
  153. name: "Coyote",
  154. parents: [
  155. "mammal"
  156. ]
  157. },
  158. raccoon: {
  159. name: "Raccoon",
  160. parents: [
  161. "mammal"
  162. ]
  163. },
  164. weasel: {
  165. name: "Weasel",
  166. parents: [
  167. "mustelid"
  168. ]
  169. },
  170. "red-panda": {
  171. name: "Red Panda",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. dolphin: {
  177. name: "Dolphin",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. "african-wild-dog": {
  183. name: "African Wild Dog",
  184. parents: [
  185. "canine"
  186. ]
  187. },
  188. "hyena": {
  189. name: "Hyena",
  190. parents: [
  191. "canine"
  192. ]
  193. },
  194. "carbuncle": {
  195. name: "Carbuncle",
  196. parents: [
  197. "animal"
  198. ]
  199. },
  200. bat: {
  201. name: "Bat",
  202. parents: [
  203. "mammal"
  204. ]
  205. },
  206. "leaf-nosed-bat": {
  207. name: "Leaf-Nosed Bat",
  208. parents: [
  209. "bat"
  210. ]
  211. },
  212. "fish": {
  213. name: "Fish",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. "ram": {
  219. name: "Ram",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "demon": {
  225. name: "Demon",
  226. parents: [
  227. "supernatural"
  228. ]
  229. },
  230. "cougar": {
  231. name: "Cougar",
  232. parents: [
  233. "cat"
  234. ]
  235. },
  236. "goat": {
  237. name: "Goat",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "lion": {
  243. name: "Lion",
  244. parents: [
  245. "cat"
  246. ]
  247. },
  248. "harpy-eager": {
  249. name: "Harpy Eagle",
  250. parents: [
  251. "avian"
  252. ]
  253. },
  254. "deer": {
  255. name: "Deer",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "phoenix": {
  261. name: "Phoenix",
  262. parents: [
  263. "avian"
  264. ]
  265. },
  266. "aeromorph": {
  267. name: "Aeromorph",
  268. parents: [
  269. "machine"
  270. ]
  271. },
  272. "machine": {
  273. name: "Machine",
  274. },
  275. "android": {
  276. name: "Android",
  277. parents: [
  278. "machine"
  279. ]
  280. },
  281. "jackal": {
  282. name: "Jackal",
  283. parents: [
  284. "canine"
  285. ]
  286. },
  287. "corvid": {
  288. name: "Corvid",
  289. parents: [
  290. "avian"
  291. ]
  292. },
  293. "pharaoh-hound": {
  294. name: "Pharaoh Hound",
  295. parents: [
  296. "dog"
  297. ]
  298. },
  299. "skunk": {
  300. name: "Skunk",
  301. parents: [
  302. "mammal"
  303. ]
  304. },
  305. "shark": {
  306. name: "Shark",
  307. parents: [
  308. "fish"
  309. ]
  310. },
  311. "black-panther": {
  312. name: "Black Panther",
  313. parents: [
  314. "cat"
  315. ]
  316. },
  317. "umbra": {
  318. name: "Umbra",
  319. parents: [
  320. "animal"
  321. ]
  322. },
  323. "raven": {
  324. name: "Raven",
  325. parents: [
  326. "corvid"
  327. ]
  328. },
  329. "snow-leopard": {
  330. name: "Snow Leopard",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "barbary-lion": {
  336. name: "Barbary Lion",
  337. parents: [
  338. "lion"
  339. ]
  340. },
  341. "dra'gal": {
  342. name: "Dra'Gal",
  343. parents: [
  344. "mammal"
  345. ]
  346. },
  347. "german-shepherd": {
  348. name: "German Shepherd",
  349. parents: [
  350. "dog"
  351. ]
  352. },
  353. "bayleef": {
  354. name: "Bayleef",
  355. parents: [
  356. "pokemon"
  357. ]
  358. },
  359. "mouse": {
  360. name: "Mouse",
  361. parents: [
  362. "rodent"
  363. ]
  364. },
  365. "rat": {
  366. name: "Rat",
  367. parents: [
  368. "mammal"
  369. ]
  370. },
  371. "hoshiko-beast": {
  372. name: "Hoshiko Beast",
  373. parents: ["animal"]
  374. },
  375. "snow-jugani": {
  376. name: "Snow Jugani",
  377. parents: ["cat"]
  378. },
  379. "patamon": {
  380. name: "Patamon",
  381. parents: ["digimon"]
  382. },
  383. "digimon": {
  384. name: "Digimon",
  385. },
  386. "jugani": {
  387. name: "Jugani",
  388. parents: ["cat"]
  389. },
  390. "luxray": {
  391. name: "Luxray",
  392. parents: ["pokemon"]
  393. },
  394. "mech": {
  395. name: "Mech",
  396. parents: ["machine"]
  397. },
  398. "zoid": {
  399. name: "Zoid",
  400. parents: ["mech"]
  401. },
  402. "monster": {
  403. name: "Monster",
  404. parents: ["animal"]
  405. },
  406. "foo-dog": {
  407. name: "Foo Dog",
  408. parents: ["mammal"]
  409. },
  410. "elephant": {
  411. name: "Elephant",
  412. parents: ["mammal"]
  413. },
  414. "eagle": {
  415. name: "Eagle",
  416. parents: ["avian"]
  417. },
  418. "cow": {
  419. name: "Cow",
  420. parents: ["mammal"]
  421. },
  422. "crocodile": {
  423. name: "Crocodile",
  424. parents: ["reptile"]
  425. },
  426. "borzoi": {
  427. name: "Borzoi",
  428. parents: ["dog"]
  429. },
  430. "snake": {
  431. name: "Snake",
  432. parents: ["reptile"]
  433. },
  434. "horned-bush-viper": {
  435. name: "Horned Bush Viper",
  436. parents: ["snake"]
  437. },
  438. "cobra": {
  439. name: "Cobra",
  440. parents: ["snake"]
  441. },
  442. "harpy-eagle": {
  443. name: "Harpy Eagle",
  444. parents: ["eagle"]
  445. },
  446. "raptor": {
  447. name: "Raptor",
  448. parents: ["dinosaur"]
  449. },
  450. "dinosaur": {
  451. name: "Dinosaur",
  452. parents: ["reptile"]
  453. },
  454. "veilhound": {
  455. name: "Veilhound",
  456. parents: ["hellhound"]
  457. },
  458. "hellhound": {
  459. name: "Hellhound",
  460. parents: ["canine", "demon"]
  461. },
  462. "insect": {
  463. name: "Insect",
  464. parents: ["animal"]
  465. },
  466. "beetle": {
  467. name: "Beetle",
  468. parents: ["insect"]
  469. },
  470. "moth": {
  471. name: "Moth",
  472. parents: ["insect"]
  473. },
  474. "eastern-dragon": {
  475. name: "Eastern Dragon",
  476. parents: ["dragon"]
  477. },
  478. "jaguar": {
  479. name: "Jaguar",
  480. parents: ["cat"]
  481. },
  482. "horse": {
  483. name: "Horse",
  484. parents: ["mammal"]
  485. },
  486. "sergal": {
  487. name: "Sergal",
  488. parents: ["mammal"]
  489. },
  490. "gryphon": {
  491. name: "Gryphon",
  492. parents: ["lion", "eagle"]
  493. },
  494. "robot": {
  495. name: "Robot",
  496. parents: ["machine"]
  497. },
  498. "medihound": {
  499. name: "Medihound",
  500. parents: ["robot", "dog"]
  501. },
  502. "sylveon": {
  503. name: "Sylveon",
  504. parents: ["pokemon"]
  505. },
  506. "catgirl": {
  507. name: "Catgirl",
  508. parents: ["mammal"]
  509. },
  510. "cowgirl": {
  511. name: "Cowgirl",
  512. parents: ["mammal"]
  513. },
  514. "pony": {
  515. name: "Pony",
  516. parents: ["horse"]
  517. },
  518. "rabbit": {
  519. name: "Rabbit",
  520. parents: ["mammal"]
  521. },
  522. "fennec-fox": {
  523. name: "Fennec Fox",
  524. parents: ["fox"]
  525. },
  526. "azodian": {
  527. name: "Azodian",
  528. parents: ["mouse"]
  529. },
  530. "shiba-inu": {
  531. name: "Shiba Inu",
  532. parents: ["dog"]
  533. },
  534. "changeling": {
  535. name: "Changeling",
  536. parents: ["insect"]
  537. },
  538. "cheetah": {
  539. name: "Cheetah",
  540. parents: ["cat"]
  541. },
  542. "golden-jackal": {
  543. name: "Golden Jackal",
  544. parents: ["jackal"]
  545. },
  546. "manectric": {
  547. name: "Manectric",
  548. parents: ["pokemon"]
  549. },
  550. "rat": {
  551. name: "Rat",
  552. parents: ["rodent"]
  553. },
  554. "rodent": {
  555. name: "Rodent",
  556. parents: ["mammal"]
  557. },
  558. "octocoon": {
  559. name: "Octocoon",
  560. parents: ["raccoon", "octopus"]
  561. },
  562. "octopus": {
  563. name: "Octopus",
  564. parents: ["fish"]
  565. },
  566. "werewolf": {
  567. name: "Werewolf",
  568. parents: ["wolf"]
  569. },
  570. "meerkat": {
  571. name: "Meerkat",
  572. parents: ["mammal"]
  573. },
  574. "human": {
  575. name: "Human",
  576. parents: ["mammal"]
  577. },
  578. "geth": {
  579. name: "Geth",
  580. parents: ["android"]
  581. },
  582. "husky": {
  583. name: "Husky",
  584. parents: ["dog"]
  585. },
  586. "long-eared-bat": {
  587. name: "Long Eared Bat",
  588. parents: ["bat"]
  589. },
  590. "lizard": {
  591. name: "Lizard",
  592. parents: ["reptile"]
  593. },
  594. "salamander": {
  595. name: "Salamander",
  596. parents: ["lizard"]
  597. },
  598. "chameleon": {
  599. name: "Chameleon",
  600. parents: ["lizard"]
  601. },
  602. "gecko": {
  603. name: "Gecko",
  604. parents: ["lizard"]
  605. },
  606. "kobold": {
  607. name: "Kobold",
  608. parents: ["reptile"]
  609. },
  610. "charizard": {
  611. name: "Charizard",
  612. parents: ["pokemon"]
  613. },
  614. "lugia": {
  615. name: "Lugia",
  616. parents: ["pokemon"]
  617. },
  618. "cerberus": {
  619. name: "Cerberus",
  620. parents: ["dog"]
  621. },
  622. "tyrantrum": {
  623. name: "Tyrantrum",
  624. parents: ["pokemon"]
  625. },
  626. "lemur": {
  627. name: "Lemur",
  628. parents: ["mammal"]
  629. },
  630. "kelpie": {
  631. name: "Kelpie",
  632. parents: ["horse", "monster"]
  633. },
  634. "labrador": {
  635. name: "Labrador",
  636. parents: ["dog"]
  637. },
  638. "sylveon": {
  639. name: "Sylveon",
  640. parents: ["eeveelution"]
  641. },
  642. "eeveelution": {
  643. name: "Eeveelution",
  644. parents: ["pokemon"]
  645. },
  646. "polar-bear": {
  647. name: "Polar Bear",
  648. parents: ["bear"]
  649. },
  650. "bear": {
  651. name: "Bear",
  652. parents: ["mammal"]
  653. },
  654. "absol": {
  655. name: "Absol",
  656. parents: ["pokemon"]
  657. },
  658. "wolver": {
  659. name: "Wolver",
  660. parents: ["mammal"]
  661. },
  662. "rottweiler": {
  663. name: "Rottweiler",
  664. parents: ["dog"]
  665. },
  666. "zebra": {
  667. name: "Zebra",
  668. parents: ["horse"]
  669. },
  670. "yoshi": {
  671. name: "Yoshi",
  672. parents: ["lizard"]
  673. },
  674. "lynx": {
  675. name: "Lynx",
  676. parents: ["cat"]
  677. },
  678. "unknown": {
  679. name: "Unknown",
  680. parents: []
  681. },
  682. "thylacine": {
  683. name: "Thylacine",
  684. parents: ["mammal"]
  685. },
  686. "gabumon": {
  687. name: "Gabumon",
  688. parents: ["digimon"]
  689. },
  690. "border-collie": {
  691. name: "Border Collie",
  692. parents: ["dog"]
  693. },
  694. "imp": {
  695. name: "Imp",
  696. parents: ["demon"]
  697. },
  698. "kangaroo": {
  699. name: "Kangaroo",
  700. parents: ["marsupial"]
  701. },
  702. "renamon": {
  703. name: "Renamon",
  704. parents: ["digimon"]
  705. },
  706. "candy-orca-dragon": {
  707. name: "Candy Orca Dragon",
  708. parents: ["fish", "dragon", "candy"]
  709. },
  710. "sabertooth-tiger": {
  711. name: "Sabertooth Tiger",
  712. parents: ["cat"]
  713. },
  714. "espurr": {
  715. name: "Espurr",
  716. parents: ["pokemon"]
  717. },
  718. "otter": {
  719. name: "Otter",
  720. parents: ["mustelid"]
  721. },
  722. "elemental": {
  723. name: "Elemental",
  724. parents: ["mammal"]
  725. },
  726. "mew": {
  727. name: "Mew",
  728. parents: ["pokemon"]
  729. },
  730. "goodra": {
  731. name: "Goodra",
  732. parents: ["pokemon"]
  733. },
  734. "fairy": {
  735. name: "Fairy",
  736. parents: ["magical"]
  737. },
  738. "typhlosion": {
  739. name: "Typhlosion",
  740. parents: ["pokemon"]
  741. },
  742. "magical": {
  743. name: "Magical",
  744. parents: []
  745. },
  746. "xenomorph": {
  747. name: "Xenomorph",
  748. parents: ["monster", "alien"]
  749. },
  750. "charr": {
  751. name: "Charr",
  752. parents: ["cat"]
  753. },
  754. "siberian-husky": {
  755. name: "Siberian Husky",
  756. parents: ["husky"]
  757. },
  758. "alligator": {
  759. name: "Alligator",
  760. parents: ["reptile"]
  761. },
  762. "bernese-mountain-dog": {
  763. name: "Bernese Mountain Dog",
  764. parents: ["dog"]
  765. },
  766. "reshiram": {
  767. name: "Reshiram",
  768. parents: ["pokemon"]
  769. },
  770. "grizzly-bear": {
  771. name: "Grizzly Bear",
  772. parents: ["bear"]
  773. },
  774. "water-monitor": {
  775. name: "Water Monitor",
  776. parents: ["lizard"]
  777. },
  778. "banchofossa": {
  779. name: "Banchofossa",
  780. parents: ["mammal"]
  781. },
  782. "kirin": {
  783. name: "Kirin",
  784. parents: ["monster"]
  785. },
  786. "quilava": {
  787. name: "Quilava",
  788. parents: ["pokemon"]
  789. },
  790. "seviper": {
  791. name: "Seviper",
  792. parents: ["pokemon"]
  793. },
  794. "flying-fox": {
  795. name: "Flying Fox",
  796. parents: ["bat"]
  797. },
  798. "keynain": {
  799. name: "Keynain",
  800. parents: ["avian"]
  801. },
  802. "lucario": {
  803. name: "Lucario",
  804. parents: ["pokemon"]
  805. },
  806. "siamese-cat": {
  807. name: "Siamese Cat",
  808. parents: ["cat"]
  809. },
  810. "spider": {
  811. name: "Spider",
  812. parents: ["insect"]
  813. },
  814. "samurott": {
  815. name: "Samurott",
  816. parents: ["pokemon"]
  817. },
  818. "megalodon": {
  819. name: "Megalodon",
  820. parents: ["shark"]
  821. },
  822. "unicorn": {
  823. name: "Unicorn",
  824. parents: ["horse"]
  825. },
  826. "greninja": {
  827. name: "Greninja",
  828. parents: ["pokemon"]
  829. },
  830. "water-dragon": {
  831. name: "Water Dragon",
  832. parents: ["dragon"]
  833. },
  834. "cross-fox": {
  835. name: "Cross Fox",
  836. parents: ["fox"]
  837. },
  838. "synth": {
  839. name: "Synth",
  840. parents: ["machine"]
  841. },
  842. "construct": {
  843. name: "Construct",
  844. parents: []
  845. },
  846. "mexican-wolf": {
  847. name: "Mexican Wolf",
  848. parents: ["wolf"]
  849. },
  850. "leopard": {
  851. name: "Leopard",
  852. parents: ["cat"]
  853. },
  854. "pig": {
  855. name: "Pig",
  856. parents: ["mammal"]
  857. },
  858. "ampharos": {
  859. name: "Ampharos",
  860. parents: ["pokemon"]
  861. },
  862. "orca": {
  863. name: "Orca",
  864. parents: ["fish"]
  865. },
  866. "lycanroc": {
  867. name: "Lycanroc",
  868. parents: ["pokemon"]
  869. },
  870. "surkanu": {
  871. name: "Surkanu",
  872. parents: ["monster"]
  873. },
  874. "seal": {
  875. name: "Seal",
  876. parents: ["mammal"]
  877. },
  878. "keldeo": {
  879. name: "Keldeo",
  880. parents: ["pokemon"]
  881. },
  882. "great-dane": {
  883. name: "Great Dane",
  884. parents: ["dog"]
  885. },
  886. "black-backed-jackal": {
  887. name: "Black Backed Jackal",
  888. parents: ["jackal"]
  889. },
  890. "sheep": {
  891. name: "Sheep",
  892. parents: ["mammal"]
  893. },
  894. "leopard-seal": {
  895. name: "Leopard Seal",
  896. parents: ["seal"]
  897. },
  898. "zoroark": {
  899. name: "Zoroark",
  900. parents: ["pokemon"]
  901. },
  902. "maned-wolf": {
  903. name: "Maned Wolf",
  904. parents: ["canine"]
  905. },
  906. "dracha": {
  907. name: "Dracha",
  908. parents: ["dragon"]
  909. },
  910. "wolxi": {
  911. name: "Wolxi",
  912. parents: ["mammal", "alien"]
  913. },
  914. "dratini": {
  915. name: "Dratini",
  916. parents: ["pokemon", "dragon"]
  917. },
  918. "skaven": {
  919. name: "Skaven",
  920. parents: ["rat"]
  921. },
  922. "mongoose": {
  923. name: "Mongoose",
  924. parents: ["mammal"]
  925. },
  926. "lopunny": {
  927. name: "Lopunny",
  928. parents: ["pokemon", "rabbit"]
  929. },
  930. "feraligatr": {
  931. name: "Feraligatr",
  932. parents: ["pokemon", "alligator"]
  933. },
  934. "houndoom": {
  935. name: "Houndoom",
  936. parents: ["pokemon", "dog"]
  937. },
  938. "protogen": {
  939. name: "Protogen",
  940. parents: ["machine"]
  941. },
  942. "saint-bernard": {
  943. name: "Saint Bernard",
  944. parents: ["dog"]
  945. },
  946. "crow": {
  947. name: "Crow",
  948. parents: ["corvid"]
  949. },
  950. "delphox": {
  951. name: "Delphox",
  952. parents: ["pokemon", "fox"]
  953. },
  954. "moose": {
  955. name: "Moose",
  956. parents: ["mammal"]
  957. },
  958. "joraxian": {
  959. name: "Joraxian",
  960. parents: ["monster", "canine", "demon"]
  961. },
  962. "nimbat": {
  963. name: "Nimbat",
  964. parents: ["mammal"]
  965. },
  966. "aardwolf": {
  967. name: "Aardwolf",
  968. parents: ["canine"]
  969. },
  970. "fluudrani": {
  971. name: "Fluudrani",
  972. parents: ["animal"]
  973. },
  974. "arcanine": {
  975. name: "Arcanine",
  976. parents: ["pokemon", "dog"]
  977. },
  978. "inteleon": {
  979. name: "Inteleon",
  980. parents: ["pokemon", "fish"]
  981. },
  982. "ninetales": {
  983. name: "Ninetales",
  984. parents: ["pokemon", "kitsune"]
  985. },
  986. "tigrex": {
  987. name: "Tigrex",
  988. parents: ["tiger"]
  989. },
  990. "zorua": {
  991. name: "Zorua",
  992. parents: ["pokemon", "fox"]
  993. },
  994. "vulpix": {
  995. name: "Vulpix",
  996. parents: ["pokemon", "fox"]
  997. },
  998. "barghest": {
  999. name: "Barghest",
  1000. parents: ["monster"]
  1001. },
  1002. "gray-wolf": {
  1003. name: "Gray Wolf",
  1004. parents: ["wolf"]
  1005. },
  1006. "ruppells-fox": {
  1007. name: "Rüppell's Fox",
  1008. parents: ["fox"]
  1009. },
  1010. "bull-terrier": {
  1011. name: "Bull Terrier",
  1012. parents: ["dog"]
  1013. },
  1014. "european-honey-buzzard": {
  1015. name: "European Honey Buzzard",
  1016. parents: ["avian"]
  1017. },
  1018. "t-rex": {
  1019. name: "T Rex",
  1020. parents: ["dinosaur"]
  1021. },
  1022. "mactarian": {
  1023. name: "Mactarian",
  1024. parents: ["shark", "monster"]
  1025. },
  1026. "mewtwo-y": {
  1027. name: "Mewtwo Y",
  1028. parents: ["mewtwo"]
  1029. },
  1030. "mewtwo": {
  1031. name: "Mewtwo",
  1032. parents: ["pokemon"]
  1033. },
  1034. "mew": {
  1035. name: "Mew",
  1036. parents: ["pokemon"]
  1037. },
  1038. "eevee": {
  1039. name: "Eevee",
  1040. parents: ["eeveelution"]
  1041. },
  1042. "mienshao": {
  1043. name: "Mienshao",
  1044. parents: ["pokemon"]
  1045. },
  1046. "sugar-glider": {
  1047. name: "Sugar Glider",
  1048. parents: ["opossum"]
  1049. },
  1050. "spectral-bat": {
  1051. name: "Spectral Bat",
  1052. parents: ["bat"]
  1053. },
  1054. "scolipede": {
  1055. name: "Scolipede",
  1056. parents: ["pokemon", "insect"]
  1057. },
  1058. "jackalope": {
  1059. name: "Jackalope",
  1060. parents: ["rabbit", "antelope"]
  1061. },
  1062. "caracal": {
  1063. name: "Caracal",
  1064. parents: ["cat"]
  1065. },
  1066. "stoat": {
  1067. name: "Stoat",
  1068. parents: ["mammal"]
  1069. },
  1070. "african-golden-cat": {
  1071. name: "African Golden Cat",
  1072. parents: ["cat"]
  1073. },
  1074. "gigantosaurus": {
  1075. name: "Gigantosaurus",
  1076. parents: ["dinosaur"]
  1077. },
  1078. "zorgoia": {
  1079. name: "Zorgoia",
  1080. parents: ["mammal"]
  1081. },
  1082. "monitor-lizard": {
  1083. name: "Monitor Lizard",
  1084. parents: ["lizard"]
  1085. },
  1086. "ziralkia": {
  1087. name: "Ziralkia",
  1088. parents: ["mammal"]
  1089. },
  1090. "kiiasi": {
  1091. name: "Kiiasi",
  1092. parents: ["animal"]
  1093. },
  1094. "synx": {
  1095. name: "Synx",
  1096. parents: ["monster"]
  1097. },
  1098. "panther": {
  1099. name: "Panther",
  1100. parents: ["cat"]
  1101. },
  1102. "azumarill": {
  1103. name: "Azumarill",
  1104. parents: ["pokemon"]
  1105. },
  1106. "river-snaptail": {
  1107. name: "River Snaptail",
  1108. parents: ["otter", "crocodile"]
  1109. },
  1110. "great-blue-heron": {
  1111. name: "Great Blue Heron",
  1112. parents: ["avian"]
  1113. },
  1114. "smeargle": {
  1115. name: "Smeargle",
  1116. parents: ["pokemon"]
  1117. },
  1118. "vendeilen": {
  1119. name: "Vendeilen",
  1120. parents: ["monster"]
  1121. },
  1122. "ventura": {
  1123. name: "Ventura",
  1124. parents: ["canine"]
  1125. },
  1126. "clouded-leopard": {
  1127. name: "Clouded Leopard",
  1128. parents: ["leopard"]
  1129. },
  1130. "argonian": {
  1131. name: "Argonian",
  1132. parents: ["lizard"]
  1133. },
  1134. "salazzle": {
  1135. name: "Salazzle",
  1136. parents: ["pokemon", "lizard"]
  1137. },
  1138. "je-stoff-drachen": {
  1139. name: "Je-Stoff Drachen",
  1140. parents: ["dragon"]
  1141. },
  1142. "finnish-spitz-dog": {
  1143. name: "Finnish Spitz Dog",
  1144. parents: ["dog"]
  1145. },
  1146. "gray-fox": {
  1147. name: "Gray Fox",
  1148. parents: ["fox"]
  1149. },
  1150. "opossum": {
  1151. name: "opossum",
  1152. parents: ["mammal"]
  1153. },
  1154. "antelope": {
  1155. name: "Antelope",
  1156. parents: ["mammal"]
  1157. },
  1158. "weavile": {
  1159. name: "Weavile",
  1160. parents: ["pokemon"]
  1161. },
  1162. "pikachu": {
  1163. name: "Pikachu",
  1164. parents: ["pokemon", "mouse"]
  1165. },
  1166. "grovyle": {
  1167. name: "Grovyle",
  1168. parents: ["pokemon", "plant"]
  1169. },
  1170. "sthara": {
  1171. name: "Sthara",
  1172. parents: ["snow-leopard", "reptile"]
  1173. },
  1174. "star-warrior": {
  1175. name: "Star Warrior",
  1176. parents: ["magical"]
  1177. },
  1178. "dragonoid": {
  1179. name: "Dragonoid",
  1180. parents: ["dragon"]
  1181. },
  1182. "suicune": {
  1183. name: "Suicune",
  1184. parents: ["pokemon"]
  1185. },
  1186. "vole": {
  1187. name: "Vole",
  1188. parents: ["mammal"]
  1189. },
  1190. "blaziken": {
  1191. name: "Blaziken",
  1192. parents: ["pokemon", "avian"]
  1193. },
  1194. "buizel": {
  1195. name: "Buizel",
  1196. parents: ["pokemon", "fish"]
  1197. },
  1198. "floatzel": {
  1199. name: "Floatzel",
  1200. parents: ["pokemon", "fish"]
  1201. },
  1202. "umok": {
  1203. name: "Umok",
  1204. parents: ["avian"]
  1205. },
  1206. "sea-monster": {
  1207. name: "Sea Monster",
  1208. parents: ["monster", "fish"]
  1209. },
  1210. "egyptian-vulture": {
  1211. name: "Egyptian Vulture",
  1212. parents: ["avian"]
  1213. },
  1214. "doberman": {
  1215. name: "Doberman",
  1216. parents: ["dog"]
  1217. },
  1218. "zangoose": {
  1219. name: "Zangoose",
  1220. parents: ["pokemon", "mongoose"]
  1221. },
  1222. "mongoose": {
  1223. name: "Mongoose",
  1224. parents: ["mammal"]
  1225. },
  1226. "wickerbeast": {
  1227. name: "Wickerbeast",
  1228. parents: ["monster"]
  1229. },
  1230. "zenari": {
  1231. name: "Zenari",
  1232. parents: ["lizard"]
  1233. },
  1234. "plant": {
  1235. name: "Plant",
  1236. parents: []
  1237. },
  1238. "raskatox": {
  1239. name: "Raskatox",
  1240. parents: ["raccoon", "skunk", "cat", "fox"]
  1241. },
  1242. "mikromare": {
  1243. name: "mikromare",
  1244. parents: ["alien"]
  1245. },
  1246. "alien": {
  1247. name: "Alien",
  1248. parents: ["animal"]
  1249. },
  1250. "deity": {
  1251. name: "Deity",
  1252. parents: []
  1253. },
  1254. "skarlan": {
  1255. name: "Skarlan",
  1256. parents: ["slug", "dragon"]
  1257. },
  1258. "slug": {
  1259. name: "Slug",
  1260. parents: ["mollusk"]
  1261. },
  1262. "mollusk": {
  1263. name: "Mollusk",
  1264. parents: ["animal"]
  1265. },
  1266. "chimera": {
  1267. name: "Chimera",
  1268. parents: ["monster"]
  1269. },
  1270. "gestalt": {
  1271. name: "Gestalt",
  1272. parents: ["construct"]
  1273. },
  1274. "mimic": {
  1275. name: "Mimic",
  1276. parents: ["monster"]
  1277. },
  1278. "calico-rat": {
  1279. name: "Calico Rat",
  1280. parents: ["rat"]
  1281. },
  1282. "panda": {
  1283. name: "Panda",
  1284. parents: ["mammal"]
  1285. },
  1286. "oni": {
  1287. name: "Oni",
  1288. parents: ["monster"]
  1289. },
  1290. "pegasus": {
  1291. name: "Pegasus",
  1292. parents: ["horse"]
  1293. },
  1294. "vulpera": {
  1295. name: "Vulpera",
  1296. parents: ["fennec-fox"]
  1297. },
  1298. "ceratosaurus": {
  1299. name: "Ceratosaurus",
  1300. parents: ["dinosaur"]
  1301. },
  1302. "nykur": {
  1303. name: "Nykur",
  1304. parents: ["horse", "monster"]
  1305. },
  1306. "giraffe": {
  1307. name: "Giraffe",
  1308. parents: ["mammal"]
  1309. },
  1310. "tauren": {
  1311. name: "Tauren",
  1312. parents: ["cow"]
  1313. },
  1314. "draconi": {
  1315. name: "Draconi",
  1316. parents: ["alien", "cat", "cyborg"]
  1317. },
  1318. "dire-wolf": {
  1319. name: "Dire Wolf",
  1320. parents: ["wolf"]
  1321. },
  1322. "ferromorph": {
  1323. name: "Ferromorph",
  1324. parents: ["construct"]
  1325. },
  1326. "meowth": {
  1327. name: "Meowth",
  1328. parents: ["cat", "pokemon"]
  1329. },
  1330. "pavodragon": {
  1331. name: "Pavodragon",
  1332. parents: ["dragon"]
  1333. },
  1334. "aaltranae": {
  1335. name: "Aaltranae",
  1336. parents: ["dragon"]
  1337. },
  1338. "cyborg": {
  1339. name: "Cyborg",
  1340. parents: ["machine"]
  1341. },
  1342. "draptor": {
  1343. name: "Draptor",
  1344. parents: ["dragon"]
  1345. },
  1346. "candy": {
  1347. name: "Candy",
  1348. parents: []
  1349. },
  1350. "drenath": {
  1351. name: "Drenath",
  1352. parents: ["dragon", "snake", "rabbit"]
  1353. },
  1354. "coyju": {
  1355. name: "Coyju",
  1356. parents: ["coyote", "kaiju"]
  1357. },
  1358. "kaiju": {
  1359. name: "Kaiju",
  1360. parents: ["monster"]
  1361. },
  1362. "nickit": {
  1363. name: "Nickit",
  1364. parents: ["pokemon", "cat"]
  1365. },
  1366. "lopunny": {
  1367. name: "Lopunny",
  1368. parents: ["pokemon", "rabbit"]
  1369. },
  1370. "korean-jindo-dog": {
  1371. name: "Korean Jindo Dog",
  1372. parents: ["dog"]
  1373. },
  1374. "naga": {
  1375. name: "Naga",
  1376. parents: ["snake", "monster"]
  1377. },
  1378. "undead": {
  1379. name: "Undead",
  1380. parents: ["monster"]
  1381. },
  1382. "whale": {
  1383. name: "Whale",
  1384. parents: ["fish"]
  1385. },
  1386. "gelato-bee": {
  1387. name: "Gelato Bee",
  1388. parents: ["bee"]
  1389. },
  1390. "bee": {
  1391. name: "Bee",
  1392. parents: ["insect"]
  1393. },
  1394. "gardevoir": {
  1395. name: "Gardevoir",
  1396. parents: ["pokemon"]
  1397. },
  1398. "ant": {
  1399. name: "Ant",
  1400. parents: ["insect"]
  1401. },
  1402. "frog": {
  1403. name: "Frog",
  1404. parents: ["amphibian"]
  1405. },
  1406. "amphibian": {
  1407. name: "Amphibian",
  1408. parents: ["animal"]
  1409. },
  1410. "pangolin": {
  1411. name: "Pangolin",
  1412. parents: ["mammal"]
  1413. },
  1414. "uragi'viidorn": {
  1415. name: "Uragi'viidorn",
  1416. parents: ["avian", "bear"]
  1417. },
  1418. "gryphdelphais": {
  1419. name: "Gryphdelphais",
  1420. parents: ["dolphin", "gryphon"]
  1421. },
  1422. "plush": {
  1423. name: "Plush",
  1424. parents: ["construct"]
  1425. },
  1426. "draiger": {
  1427. name: "Draiger",
  1428. parents: ["dragon","tiger"]
  1429. },
  1430. "foxsky": {
  1431. name: "Foxsky",
  1432. parents: ["fox", "husky"]
  1433. },
  1434. "umbreon": {
  1435. name: "Umbreon",
  1436. parents: ["eeveelution"]
  1437. },
  1438. "slime-dragon": {
  1439. name: "Slime Dragon",
  1440. parents: ["dragon"]
  1441. },
  1442. "enderman": {
  1443. name: "Enderman",
  1444. parents: ["monster"]
  1445. },
  1446. "gremlin": {
  1447. name: "Gremlin",
  1448. parents: ["monster"]
  1449. },
  1450. "dragonsune": {
  1451. name: "Dragonsune",
  1452. parents: ["dragon", "kitsune"]
  1453. },
  1454. "ghost": {
  1455. name: "Ghost",
  1456. parents: ["supernatural"]
  1457. },
  1458. "false-vampire-bat": {
  1459. name: "False Vampire Bat",
  1460. parents: ["bat"]
  1461. },
  1462. "succubus": {
  1463. name: "Succubus",
  1464. parents: ["demon"]
  1465. },
  1466. "mia": {
  1467. name: "Mia",
  1468. parents: ["canine"]
  1469. },
  1470. "rainbow": {
  1471. name: "Rainbow",
  1472. parents: ["monster"]
  1473. },
  1474. "solgaleo": {
  1475. name: "Solgaleo",
  1476. parents: ["pokemon"]
  1477. },
  1478. "lucent-nargacuga": {
  1479. name: "Lucent Nargacuga",
  1480. parents: ["monster-hunter"]
  1481. },
  1482. "monster-hunter": {
  1483. name: "Monster Hunter",
  1484. parents: ["monster"]
  1485. },
  1486. "leviathan": {
  1487. "name": "Leviathan",
  1488. "url": "sea-monster"
  1489. },
  1490. "bull": {
  1491. name: "Bull",
  1492. parents: ["mammal"]
  1493. },
  1494. "tanuki": {
  1495. name: "Tanuki",
  1496. parents: ["monster"]
  1497. },
  1498. "chakat": {
  1499. name: "Chakat",
  1500. parents: ["cat"]
  1501. },
  1502. "hydra": {
  1503. name: "Hydra",
  1504. parents: ["monster"]
  1505. },
  1506. "zigzagoon": {
  1507. name: "Zigzagoon",
  1508. parents: ["raccoon", "pokemon"]
  1509. },
  1510. "vulture": {
  1511. name: "Vulture",
  1512. parents: ["avian"]
  1513. },
  1514. "eastern-dragon": {
  1515. name: "Eastern Dragon",
  1516. parents: ["dragon"]
  1517. },
  1518. "gryffon": {
  1519. name: "Gryffon",
  1520. parents: ["phoenix", "red-panda"]
  1521. },
  1522. "amtsvane": {
  1523. name: "Amtsvane",
  1524. parents: ["reptile"]
  1525. },
  1526. "kigavi": {
  1527. name: "Kigavi",
  1528. parents: ["avian"]
  1529. },
  1530. "turian": {
  1531. name: "Turian",
  1532. parents: ["avian"]
  1533. },
  1534. "zeraora": {
  1535. name: "Zeraora",
  1536. parents: ["pokemon"]
  1537. },
  1538. "sandshrew": {
  1539. name: "Sandshrew",
  1540. parents: ["pokemon", "pangolin"]
  1541. },
  1542. "valais-blacknose-sheep": {
  1543. name: "Valais Blacknose Sheep",
  1544. parents: ["sheep"]
  1545. },
  1546. "novaleit": {
  1547. name: "Novaleit",
  1548. parents: ["mammal"]
  1549. },
  1550. "dunnoh": {
  1551. name: "Dunnoh",
  1552. parents: ["mammal"]
  1553. },
  1554. "lunaral-dragon": {
  1555. name: "Lunaral Dragon",
  1556. parents: ["dragon"]
  1557. },
  1558. "arctic-wolf": {
  1559. name: "Arctic Wolf",
  1560. parents: ["wolf"]
  1561. },
  1562. "donkey": {
  1563. name: "Donkey",
  1564. parents: ["horse"]
  1565. },
  1566. "chinchilla": {
  1567. name: "Chinchilla",
  1568. parents: ["rodent"]
  1569. },
  1570. "felkin": {
  1571. name: "Felkin",
  1572. parents: ["dragon"]
  1573. },
  1574. "tykeriel": {
  1575. name: "Tykeriel",
  1576. parents: ["avian"]
  1577. },
  1578. "folf": {
  1579. name: "Folf",
  1580. parents: ["fox", "wolf"]
  1581. },
  1582. "pooltoy": {
  1583. name: "Pooltoy",
  1584. parents: ["construct"]
  1585. },
  1586. "demi": {
  1587. name: "Demi",
  1588. parents: ["human"]
  1589. },
  1590. "stegosaurus": {
  1591. name: "Stegosaurus",
  1592. parents: ["dinosaur"]
  1593. },
  1594. "computer-virus": {
  1595. name: "Computer Virus",
  1596. parents: ["program"]
  1597. },
  1598. "program": {
  1599. name: "Program",
  1600. parents: ["construct"]
  1601. },
  1602. "space-springhare": {
  1603. name: "Space Springhare",
  1604. parents: ["rabbit"]
  1605. },
  1606. "river-drake": {
  1607. name: "River Drake",
  1608. parents: ["dragon"]
  1609. },
  1610. "djinn": {
  1611. "name": "Djinn",
  1612. "url": "supernatural"
  1613. },
  1614. "supernatural": {
  1615. name: "Supernatural",
  1616. parents: ["monster"]
  1617. },
  1618. "grasshopper-mouse": {
  1619. name: "Grasshopper Mouse",
  1620. parents: ["mouse"]
  1621. },
  1622. "somali-cat": {
  1623. name: "Somali Cat",
  1624. parents: ["cat"]
  1625. },
  1626. "minccino": {
  1627. name: "Minccino",
  1628. parents: ["pokemon", "chinchilla"]
  1629. },
  1630. "pine-marten": {
  1631. name: "Pine Marten",
  1632. parents: ["marten"]
  1633. },
  1634. "marten": {
  1635. name: "Marten",
  1636. parents: ["mustelid"]
  1637. },
  1638. "mustelid": {
  1639. name: "Mustelid",
  1640. parents: ["mammal"]
  1641. },
  1642. "caribou": {
  1643. name: "Caribou",
  1644. parents: ["deer"]
  1645. },
  1646. "gnoll": {
  1647. name: "Gnoll",
  1648. parents: ["hyena", "monster"]
  1649. },
  1650. "peacekeeper": {
  1651. name: "Peacekeeper",
  1652. parents: ["human"]
  1653. },
  1654. "river-otter": {
  1655. name: "River Otter",
  1656. parents: ["otter"]
  1657. },
  1658. "dhole": {
  1659. name: "Dhole",
  1660. parents: ["canine"]
  1661. },
  1662. "springbok": {
  1663. name: "Springbok",
  1664. parents: ["antelope"]
  1665. },
  1666. "marsupial": {
  1667. name: "Marsupial",
  1668. parents: ["mammal"]
  1669. },
  1670. "townsend-big-eared-bat": {
  1671. name: "Townsend Big-eared Bat",
  1672. parents: ["bat"]
  1673. },
  1674. "squirrel": {
  1675. name: "Squirrel",
  1676. parents: ["rodent"]
  1677. },
  1678. }
  1679. //species
  1680. function getSpeciesInfo(speciesList) {
  1681. let result = new Set();
  1682. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1683. result.add(entry)
  1684. });
  1685. return Array.from(result);
  1686. };
  1687. function getSpeciesInfoHelper(species) {
  1688. if (!speciesData[species]) {
  1689. console.warn(species + " doesn't exist");
  1690. return [];
  1691. }
  1692. if (speciesData[species].parents) {
  1693. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1694. } else {
  1695. return [species];
  1696. }
  1697. }
  1698. characterMakers.push(() => makeCharacter(
  1699. {
  1700. name: "Fen",
  1701. species: ["crux"],
  1702. description: {
  1703. title: "Bio",
  1704. text: "Very furry. Sheds on everything."
  1705. },
  1706. tags: [
  1707. "anthro",
  1708. "goo"
  1709. ]
  1710. },
  1711. {
  1712. back: {
  1713. height: math.unit(2.2428, "meter"),
  1714. weight: math.unit(124.738, "kg"),
  1715. name: "Back",
  1716. image: {
  1717. source: "./media/characters/fen/back.svg",
  1718. extra: 2024 / 1867,
  1719. bottom: 13 / 2037
  1720. },
  1721. info: {
  1722. description: {
  1723. mode: "append",
  1724. text: "\n\nHe is not currently looking at you."
  1725. }
  1726. }
  1727. },
  1728. full: {
  1729. height: math.unit(1.34, "meter"),
  1730. weight: math.unit(225, "kg"),
  1731. name: "Full",
  1732. image: {
  1733. source: "./media/characters/fen/full.svg"
  1734. },
  1735. info: {
  1736. description: {
  1737. mode: "append",
  1738. text: "\n\nMunch."
  1739. }
  1740. }
  1741. },
  1742. kneeling: {
  1743. height: math.unit(5.4, "feet"),
  1744. weight: math.unit(124.738, "kg"),
  1745. name: "Kneeling",
  1746. image: {
  1747. source: "./media/characters/fen/kneeling.svg",
  1748. extra: 563 / 507
  1749. }
  1750. },
  1751. goo: {
  1752. height: math.unit(2.8, "feet"),
  1753. weight: math.unit(125, "kg"),
  1754. capacity: math.unit(1, "people"),
  1755. name: "Goo",
  1756. image: {
  1757. source: "./media/characters/fen/goo.svg",
  1758. bottom: 116 / 613
  1759. }
  1760. },
  1761. lounging: {
  1762. height: math.unit(6.5, "feet"),
  1763. weight: math.unit(125, "kg"),
  1764. name: "Lounging",
  1765. image: {
  1766. source: "./media/characters/fen/lounging.svg"
  1767. }
  1768. },
  1769. },
  1770. [
  1771. {
  1772. name: "Normal",
  1773. height: math.unit(2.2428, "meter")
  1774. },
  1775. {
  1776. name: "Big",
  1777. height: math.unit(12, "feet")
  1778. },
  1779. {
  1780. name: "Minimacro",
  1781. height: math.unit(40, "feet"),
  1782. default: true,
  1783. info: {
  1784. description: {
  1785. mode: "append",
  1786. text: "\n\nTOO DAMN BIG"
  1787. }
  1788. }
  1789. },
  1790. {
  1791. name: "Macro",
  1792. height: math.unit(100, "feet"),
  1793. info: {
  1794. description: {
  1795. mode: "append",
  1796. text: "\n\nTOO DAMN BIG"
  1797. }
  1798. }
  1799. },
  1800. {
  1801. name: "Macro+",
  1802. height: math.unit(300, "feet")
  1803. },
  1804. {
  1805. name: "Megamacro",
  1806. height: math.unit(2, "miles")
  1807. }
  1808. ]
  1809. ))
  1810. characterMakers.push(() => makeCharacter(
  1811. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1812. {
  1813. front: {
  1814. height: math.unit(183, "cm"),
  1815. weight: math.unit(80, "kg"),
  1816. name: "Front",
  1817. image: {
  1818. source: "./media/characters/sofia-fluttertail/front.svg",
  1819. bottom: 0.01,
  1820. extra: 2154 / 2081
  1821. }
  1822. },
  1823. frontAlt: {
  1824. height: math.unit(183, "cm"),
  1825. weight: math.unit(80, "kg"),
  1826. name: "Front (alt)",
  1827. image: {
  1828. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1829. }
  1830. },
  1831. back: {
  1832. height: math.unit(183, "cm"),
  1833. weight: math.unit(80, "kg"),
  1834. name: "Back",
  1835. image: {
  1836. source: "./media/characters/sofia-fluttertail/back.svg"
  1837. }
  1838. },
  1839. kneeling: {
  1840. height: math.unit(125, "cm"),
  1841. weight: math.unit(80, "kg"),
  1842. name: "Kneeling",
  1843. image: {
  1844. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1845. extra: 1033 / 977,
  1846. bottom: 23.7 / 1057
  1847. }
  1848. },
  1849. maw: {
  1850. height: math.unit(183 / 5, "cm"),
  1851. name: "Maw",
  1852. image: {
  1853. source: "./media/characters/sofia-fluttertail/maw.svg"
  1854. }
  1855. },
  1856. mawcloseup: {
  1857. height: math.unit(183 / 5 * 0.41, "cm"),
  1858. name: "Maw (Closeup)",
  1859. image: {
  1860. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1861. }
  1862. },
  1863. paws: {
  1864. height: math.unit(1.17, "feet"),
  1865. name: "Paws",
  1866. image: {
  1867. source: "./media/characters/sofia-fluttertail/paws.svg",
  1868. extra: 851 / 851,
  1869. bottom: 17 / 868
  1870. }
  1871. },
  1872. },
  1873. [
  1874. {
  1875. name: "Normal",
  1876. height: math.unit(1.83, "meter")
  1877. },
  1878. {
  1879. name: "Size Thief",
  1880. height: math.unit(18, "feet")
  1881. },
  1882. {
  1883. name: "50 Foot Collie",
  1884. height: math.unit(50, "feet")
  1885. },
  1886. {
  1887. name: "Macro",
  1888. height: math.unit(96, "feet"),
  1889. default: true
  1890. },
  1891. {
  1892. name: "Megamerger",
  1893. height: math.unit(650, "feet")
  1894. },
  1895. ]
  1896. ))
  1897. characterMakers.push(() => makeCharacter(
  1898. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1899. {
  1900. front: {
  1901. height: math.unit(7, "feet"),
  1902. weight: math.unit(100, "kg"),
  1903. name: "Front",
  1904. image: {
  1905. source: "./media/characters/march/front.svg",
  1906. extra: 1992/1851,
  1907. bottom: 39/2031
  1908. }
  1909. },
  1910. foot: {
  1911. height: math.unit(0.9, "feet"),
  1912. name: "Foot",
  1913. image: {
  1914. source: "./media/characters/march/foot.svg"
  1915. }
  1916. },
  1917. },
  1918. [
  1919. {
  1920. name: "Normal",
  1921. height: math.unit(7.9, "feet")
  1922. },
  1923. {
  1924. name: "Macro",
  1925. height: math.unit(220, "meters")
  1926. },
  1927. {
  1928. name: "Megamacro",
  1929. height: math.unit(2.98, "km"),
  1930. default: true
  1931. },
  1932. {
  1933. name: "Gigamacro",
  1934. height: math.unit(15963, "km")
  1935. },
  1936. {
  1937. name: "Teramacro",
  1938. height: math.unit(2980000000, "km")
  1939. },
  1940. {
  1941. name: "Examacro",
  1942. height: math.unit(250, "parsecs")
  1943. },
  1944. ]
  1945. ))
  1946. characterMakers.push(() => makeCharacter(
  1947. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1948. {
  1949. front: {
  1950. height: math.unit(6, "feet"),
  1951. weight: math.unit(60, "kg"),
  1952. name: "Front",
  1953. image: {
  1954. source: "./media/characters/noir/front.svg",
  1955. extra: 1,
  1956. bottom: 0.032
  1957. }
  1958. },
  1959. },
  1960. [
  1961. {
  1962. name: "Normal",
  1963. height: math.unit(6.6, "feet")
  1964. },
  1965. {
  1966. name: "Macro",
  1967. height: math.unit(500, "feet")
  1968. },
  1969. {
  1970. name: "Megamacro",
  1971. height: math.unit(2.5, "km"),
  1972. default: true
  1973. },
  1974. {
  1975. name: "Gigamacro",
  1976. height: math.unit(22500, "km")
  1977. },
  1978. {
  1979. name: "Teramacro",
  1980. height: math.unit(2500000000, "km")
  1981. },
  1982. {
  1983. name: "Examacro",
  1984. height: math.unit(200, "parsecs")
  1985. },
  1986. ]
  1987. ))
  1988. characterMakers.push(() => makeCharacter(
  1989. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1990. {
  1991. front: {
  1992. height: math.unit(7, "feet"),
  1993. weight: math.unit(100, "kg"),
  1994. name: "Front",
  1995. image: {
  1996. source: "./media/characters/okuri/front.svg",
  1997. extra: 1,
  1998. bottom: 0.037
  1999. }
  2000. },
  2001. back: {
  2002. height: math.unit(7, "feet"),
  2003. weight: math.unit(100, "kg"),
  2004. name: "Back",
  2005. image: {
  2006. source: "./media/characters/okuri/back.svg",
  2007. extra: 1,
  2008. bottom: 0.007
  2009. }
  2010. },
  2011. },
  2012. [
  2013. {
  2014. name: "Megamacro",
  2015. height: math.unit(100, "miles"),
  2016. default: true
  2017. },
  2018. ]
  2019. ))
  2020. characterMakers.push(() => makeCharacter(
  2021. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2022. {
  2023. front: {
  2024. height: math.unit(7, "feet"),
  2025. weight: math.unit(100, "kg"),
  2026. name: "Front",
  2027. image: {
  2028. source: "./media/characters/manny/front.svg",
  2029. extra: 1,
  2030. bottom: 0.06
  2031. }
  2032. },
  2033. back: {
  2034. height: math.unit(7, "feet"),
  2035. weight: math.unit(100, "kg"),
  2036. name: "Back",
  2037. image: {
  2038. source: "./media/characters/manny/back.svg",
  2039. extra: 1,
  2040. bottom: 0.014
  2041. }
  2042. },
  2043. },
  2044. [
  2045. {
  2046. name: "Normal",
  2047. height: math.unit(7, "feet"),
  2048. },
  2049. {
  2050. name: "Macro",
  2051. height: math.unit(78, "feet"),
  2052. default: true
  2053. },
  2054. {
  2055. name: "Macro+",
  2056. height: math.unit(300, "meters")
  2057. },
  2058. {
  2059. name: "Macro++",
  2060. height: math.unit(2400, "meters")
  2061. },
  2062. {
  2063. name: "Megamacro",
  2064. height: math.unit(5167, "meters")
  2065. },
  2066. {
  2067. name: "Gigamacro",
  2068. height: math.unit(41769, "miles")
  2069. },
  2070. ]
  2071. ))
  2072. characterMakers.push(() => makeCharacter(
  2073. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2074. {
  2075. front: {
  2076. height: math.unit(7, "feet"),
  2077. weight: math.unit(100, "kg"),
  2078. name: "Front",
  2079. image: {
  2080. source: "./media/characters/adake/front-1.svg"
  2081. }
  2082. },
  2083. frontAlt: {
  2084. height: math.unit(7, "feet"),
  2085. weight: math.unit(100, "kg"),
  2086. name: "Front (Alt)",
  2087. image: {
  2088. source: "./media/characters/adake/front-2.svg",
  2089. extra: 1,
  2090. bottom: 0.01
  2091. }
  2092. },
  2093. back: {
  2094. height: math.unit(7, "feet"),
  2095. weight: math.unit(100, "kg"),
  2096. name: "Back",
  2097. image: {
  2098. source: "./media/characters/adake/back.svg",
  2099. }
  2100. },
  2101. kneel: {
  2102. height: math.unit(5.385, "feet"),
  2103. weight: math.unit(100, "kg"),
  2104. name: "Kneeling",
  2105. image: {
  2106. source: "./media/characters/adake/kneel.svg",
  2107. bottom: 0.052
  2108. }
  2109. },
  2110. },
  2111. [
  2112. {
  2113. name: "Normal",
  2114. height: math.unit(7, "feet"),
  2115. },
  2116. {
  2117. name: "Macro",
  2118. height: math.unit(78, "feet"),
  2119. default: true
  2120. },
  2121. {
  2122. name: "Macro+",
  2123. height: math.unit(300, "meters")
  2124. },
  2125. {
  2126. name: "Macro++",
  2127. height: math.unit(2400, "meters")
  2128. },
  2129. {
  2130. name: "Megamacro",
  2131. height: math.unit(5167, "meters")
  2132. },
  2133. {
  2134. name: "Gigamacro",
  2135. height: math.unit(41769, "miles")
  2136. },
  2137. ]
  2138. ))
  2139. characterMakers.push(() => makeCharacter(
  2140. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2141. {
  2142. front: {
  2143. height: math.unit(1.65, "meters"),
  2144. weight: math.unit(50, "kg"),
  2145. name: "Front",
  2146. image: {
  2147. source: "./media/characters/elijah/front.svg",
  2148. extra: 858 / 830,
  2149. bottom: 95.5 / 953.8559
  2150. }
  2151. },
  2152. back: {
  2153. height: math.unit(1.65, "meters"),
  2154. weight: math.unit(50, "kg"),
  2155. name: "Back",
  2156. image: {
  2157. source: "./media/characters/elijah/back.svg",
  2158. extra: 895 / 850,
  2159. bottom: 5.3 / 897.956
  2160. }
  2161. },
  2162. frontNsfw: {
  2163. height: math.unit(1.65, "meters"),
  2164. weight: math.unit(50, "kg"),
  2165. name: "Front (NSFW)",
  2166. image: {
  2167. source: "./media/characters/elijah/front-nsfw.svg",
  2168. extra: 858 / 830,
  2169. bottom: 95.5 / 953.8559
  2170. }
  2171. },
  2172. backNsfw: {
  2173. height: math.unit(1.65, "meters"),
  2174. weight: math.unit(50, "kg"),
  2175. name: "Back (NSFW)",
  2176. image: {
  2177. source: "./media/characters/elijah/back-nsfw.svg",
  2178. extra: 895 / 850,
  2179. bottom: 5.3 / 897.956
  2180. }
  2181. },
  2182. dick: {
  2183. height: math.unit(1, "feet"),
  2184. name: "Dick",
  2185. image: {
  2186. source: "./media/characters/elijah/dick.svg"
  2187. }
  2188. },
  2189. beakOpen: {
  2190. height: math.unit(1.25, "feet"),
  2191. name: "Beak (Open)",
  2192. image: {
  2193. source: "./media/characters/elijah/beak-open.svg"
  2194. }
  2195. },
  2196. beakShut: {
  2197. height: math.unit(1.25, "feet"),
  2198. name: "Beak (Shut)",
  2199. image: {
  2200. source: "./media/characters/elijah/beak-shut.svg"
  2201. }
  2202. },
  2203. footFlexing: {
  2204. height: math.unit(1.61, "feet"),
  2205. name: "Foot (Flexing)",
  2206. image: {
  2207. source: "./media/characters/elijah/foot-flexing.svg"
  2208. }
  2209. },
  2210. footStepping: {
  2211. height: math.unit(1.44, "feet"),
  2212. name: "Foot (Stepping)",
  2213. image: {
  2214. source: "./media/characters/elijah/foot-stepping.svg"
  2215. }
  2216. },
  2217. plantigradeLeg: {
  2218. height: math.unit(2.34, "feet"),
  2219. name: "Plantigrade Leg",
  2220. image: {
  2221. source: "./media/characters/elijah/plantigrade-leg.svg"
  2222. }
  2223. },
  2224. plantigradeFootLeft: {
  2225. height: math.unit(0.9, "feet"),
  2226. name: "Plantigrade Foot (Left)",
  2227. image: {
  2228. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2229. }
  2230. },
  2231. plantigradeFootRight: {
  2232. height: math.unit(0.9, "feet"),
  2233. name: "Plantigrade Foot (Right)",
  2234. image: {
  2235. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2236. }
  2237. },
  2238. },
  2239. [
  2240. {
  2241. name: "Normal",
  2242. height: math.unit(1.65, "meters")
  2243. },
  2244. {
  2245. name: "Macro",
  2246. height: math.unit(55, "meters"),
  2247. default: true
  2248. },
  2249. {
  2250. name: "Macro+",
  2251. height: math.unit(105, "meters")
  2252. },
  2253. ]
  2254. ))
  2255. characterMakers.push(() => makeCharacter(
  2256. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2257. {
  2258. front: {
  2259. height: math.unit(11, "feet"),
  2260. weight: math.unit(320, "kg"),
  2261. name: "Front",
  2262. image: {
  2263. source: "./media/characters/rai/front.svg",
  2264. extra: 1802/1696,
  2265. bottom: 68/1870
  2266. }
  2267. },
  2268. frontDressed: {
  2269. height: math.unit(11, "feet"),
  2270. weight: math.unit(320, "kg"),
  2271. name: "Front (Dressed)",
  2272. image: {
  2273. source: "./media/characters/rai/front-dressed.svg",
  2274. extra: 1802/1696,
  2275. bottom: 68/1870
  2276. }
  2277. },
  2278. side: {
  2279. height: math.unit(11, "feet"),
  2280. weight: math.unit(320, "kg"),
  2281. name: "Side",
  2282. image: {
  2283. source: "./media/characters/rai/side.svg",
  2284. extra: 1789/1710,
  2285. bottom: 115/1904
  2286. }
  2287. },
  2288. back: {
  2289. height: math.unit(11, "feet"),
  2290. weight: math.unit(320, "kg"),
  2291. name: "Back",
  2292. image: {
  2293. source: "./media/characters/rai/back.svg",
  2294. extra: 1770/1707,
  2295. bottom: 28/1798
  2296. }
  2297. },
  2298. feral: {
  2299. height: math.unit(11, "feet"),
  2300. weight: math.unit(640, "kg"),
  2301. name: "Feral",
  2302. image: {
  2303. source: "./media/characters/rai/feral.svg",
  2304. extra: 1035/642,
  2305. bottom: 86/1121
  2306. }
  2307. },
  2308. dragon: {
  2309. height: math.unit(23, "feet"),
  2310. weight: math.unit(50000, "lb"),
  2311. name: "Dragon",
  2312. image: {
  2313. source: "./media/characters/rai/dragon.svg",
  2314. extra: 2498 / 2030,
  2315. bottom: 85.2 / 2584
  2316. }
  2317. },
  2318. maw: {
  2319. height: math.unit(6 / 3.81416, "feet"),
  2320. name: "Maw",
  2321. image: {
  2322. source: "./media/characters/rai/maw.svg"
  2323. }
  2324. },
  2325. },
  2326. [
  2327. {
  2328. name: "Normal",
  2329. height: math.unit(11, "feet")
  2330. },
  2331. {
  2332. name: "Macro",
  2333. height: math.unit(302, "feet"),
  2334. default: true
  2335. },
  2336. ]
  2337. ))
  2338. characterMakers.push(() => makeCharacter(
  2339. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2340. {
  2341. frontDressed: {
  2342. height: math.unit(216, "feet"),
  2343. weight: math.unit(7000000, "lb"),
  2344. name: "Front (Dressed)",
  2345. image: {
  2346. source: "./media/characters/jazzy/front-dressed.svg",
  2347. extra: 2738 / 2651,
  2348. bottom: 41.8 / 2786
  2349. }
  2350. },
  2351. backDressed: {
  2352. height: math.unit(216, "feet"),
  2353. weight: math.unit(7000000, "lb"),
  2354. name: "Back (Dressed)",
  2355. image: {
  2356. source: "./media/characters/jazzy/back-dressed.svg",
  2357. extra: 2775 / 2673,
  2358. bottom: 36.8 / 2817
  2359. }
  2360. },
  2361. front: {
  2362. height: math.unit(216, "feet"),
  2363. weight: math.unit(7000000, "lb"),
  2364. name: "Front",
  2365. image: {
  2366. source: "./media/characters/jazzy/front.svg",
  2367. extra: 2738 / 2651,
  2368. bottom: 41.8 / 2786
  2369. }
  2370. },
  2371. back: {
  2372. height: math.unit(216, "feet"),
  2373. weight: math.unit(7000000, "lb"),
  2374. name: "Back",
  2375. image: {
  2376. source: "./media/characters/jazzy/back.svg",
  2377. extra: 2775 / 2673,
  2378. bottom: 36.8 / 2817
  2379. }
  2380. },
  2381. maw: {
  2382. height: math.unit(20, "feet"),
  2383. name: "Maw",
  2384. image: {
  2385. source: "./media/characters/jazzy/maw.svg"
  2386. }
  2387. },
  2388. paws: {
  2389. height: math.unit(27.5, "feet"),
  2390. name: "Paws",
  2391. image: {
  2392. source: "./media/characters/jazzy/paws.svg"
  2393. }
  2394. },
  2395. eye: {
  2396. height: math.unit(4.4, "feet"),
  2397. name: "Eye",
  2398. image: {
  2399. source: "./media/characters/jazzy/eye.svg"
  2400. }
  2401. },
  2402. droneOffense: {
  2403. height: math.unit(9.5, "inches"),
  2404. name: "Drone (Offense)",
  2405. image: {
  2406. source: "./media/characters/jazzy/drone-offense.svg"
  2407. }
  2408. },
  2409. droneRecon: {
  2410. height: math.unit(9.5, "inches"),
  2411. name: "Drone (Recon)",
  2412. image: {
  2413. source: "./media/characters/jazzy/drone-recon.svg"
  2414. }
  2415. },
  2416. droneDefense: {
  2417. height: math.unit(9.5, "inches"),
  2418. name: "Drone (Defense)",
  2419. image: {
  2420. source: "./media/characters/jazzy/drone-defense.svg"
  2421. }
  2422. },
  2423. },
  2424. [
  2425. {
  2426. name: "Macro",
  2427. height: math.unit(216, "feet"),
  2428. default: true
  2429. },
  2430. ]
  2431. ))
  2432. characterMakers.push(() => makeCharacter(
  2433. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2434. {
  2435. front: {
  2436. height: math.unit(9 + 6/12, "feet"),
  2437. weight: math.unit(700, "lb"),
  2438. name: "Front",
  2439. image: {
  2440. source: "./media/characters/flamm/front.svg",
  2441. extra: 1751/1632,
  2442. bottom: 46/1797
  2443. }
  2444. },
  2445. buff: {
  2446. height: math.unit(9 + 6/12, "feet"),
  2447. weight: math.unit(950, "lb"),
  2448. name: "Buff",
  2449. image: {
  2450. source: "./media/characters/flamm/buff.svg",
  2451. extra: 3018/2874,
  2452. bottom: 221/3239
  2453. }
  2454. },
  2455. },
  2456. [
  2457. {
  2458. name: "Normal",
  2459. height: math.unit(9.5, "feet")
  2460. },
  2461. {
  2462. name: "Macro",
  2463. height: math.unit(200, "feet"),
  2464. default: true
  2465. },
  2466. ]
  2467. ))
  2468. characterMakers.push(() => makeCharacter(
  2469. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2470. {
  2471. front: {
  2472. height: math.unit(5 + 3/12, "feet"),
  2473. weight: math.unit(60, "kg"),
  2474. name: "Front",
  2475. image: {
  2476. source: "./media/characters/zephiro/front.svg",
  2477. extra: 2309 / 2162,
  2478. bottom: 0.069
  2479. }
  2480. },
  2481. side: {
  2482. height: math.unit(5 + 3/12, "feet"),
  2483. weight: math.unit(60, "kg"),
  2484. name: "Side",
  2485. image: {
  2486. source: "./media/characters/zephiro/side.svg",
  2487. extra: 2403 / 2279,
  2488. bottom: 0.015
  2489. }
  2490. },
  2491. back: {
  2492. height: math.unit(5 + 3/12, "feet"),
  2493. weight: math.unit(60, "kg"),
  2494. name: "Back",
  2495. image: {
  2496. source: "./media/characters/zephiro/back.svg",
  2497. extra: 2373 / 2244,
  2498. bottom: 0.013
  2499. }
  2500. },
  2501. hand: {
  2502. height: math.unit(0.68, "feet"),
  2503. name: "Hand",
  2504. image: {
  2505. source: "./media/characters/zephiro/hand.svg"
  2506. }
  2507. },
  2508. paw: {
  2509. height: math.unit(1, "feet"),
  2510. name: "Paw",
  2511. image: {
  2512. source: "./media/characters/zephiro/paw.svg"
  2513. }
  2514. },
  2515. beans: {
  2516. height: math.unit(0.93, "feet"),
  2517. name: "Beans",
  2518. image: {
  2519. source: "./media/characters/zephiro/beans.svg"
  2520. }
  2521. },
  2522. },
  2523. [
  2524. {
  2525. name: "Micro",
  2526. height: math.unit(3, "inches")
  2527. },
  2528. {
  2529. name: "Normal",
  2530. height: math.unit(5 + 3 / 12, "feet"),
  2531. default: true
  2532. },
  2533. {
  2534. name: "Macro",
  2535. height: math.unit(118, "feet")
  2536. },
  2537. ]
  2538. ))
  2539. characterMakers.push(() => makeCharacter(
  2540. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2541. {
  2542. front: {
  2543. height: math.unit(5, "feet"),
  2544. weight: math.unit(90, "kg"),
  2545. name: "Front",
  2546. image: {
  2547. source: "./media/characters/fory/front.svg",
  2548. extra: 2862 / 2674,
  2549. bottom: 180 / 3043.8
  2550. }
  2551. },
  2552. back: {
  2553. height: math.unit(5, "feet"),
  2554. weight: math.unit(90, "kg"),
  2555. name: "Back",
  2556. image: {
  2557. source: "./media/characters/fory/back.svg",
  2558. extra: 2962 / 2791,
  2559. bottom: 106 / 3071.8
  2560. }
  2561. },
  2562. foot: {
  2563. height: math.unit(2.14, "feet"),
  2564. name: "Foot",
  2565. image: {
  2566. source: "./media/characters/fory/foot.svg"
  2567. }
  2568. },
  2569. },
  2570. [
  2571. {
  2572. name: "Normal",
  2573. height: math.unit(5, "feet")
  2574. },
  2575. {
  2576. name: "Macro",
  2577. height: math.unit(50, "feet"),
  2578. default: true
  2579. },
  2580. {
  2581. name: "Megamacro",
  2582. height: math.unit(10, "miles")
  2583. },
  2584. {
  2585. name: "Gigamacro",
  2586. height: math.unit(5, "earths")
  2587. },
  2588. ]
  2589. ))
  2590. characterMakers.push(() => makeCharacter(
  2591. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2592. {
  2593. front: {
  2594. height: math.unit(7, "feet"),
  2595. weight: math.unit(90, "kg"),
  2596. name: "Front",
  2597. image: {
  2598. source: "./media/characters/kurrikage/front.svg",
  2599. extra: 1,
  2600. bottom: 0.035
  2601. }
  2602. },
  2603. back: {
  2604. height: math.unit(7, "feet"),
  2605. weight: math.unit(90, "lb"),
  2606. name: "Back",
  2607. image: {
  2608. source: "./media/characters/kurrikage/back.svg"
  2609. }
  2610. },
  2611. paw: {
  2612. height: math.unit(1.5, "feet"),
  2613. name: "Paw",
  2614. image: {
  2615. source: "./media/characters/kurrikage/paw.svg"
  2616. }
  2617. },
  2618. staff: {
  2619. height: math.unit(6.7, "feet"),
  2620. name: "Staff",
  2621. image: {
  2622. source: "./media/characters/kurrikage/staff.svg"
  2623. }
  2624. },
  2625. peek: {
  2626. height: math.unit(1.05, "feet"),
  2627. name: "Peeking",
  2628. image: {
  2629. source: "./media/characters/kurrikage/peek.svg",
  2630. bottom: 0.08
  2631. }
  2632. },
  2633. },
  2634. [
  2635. {
  2636. name: "Normal",
  2637. height: math.unit(12, "feet"),
  2638. default: true
  2639. },
  2640. {
  2641. name: "Big",
  2642. height: math.unit(20, "feet")
  2643. },
  2644. {
  2645. name: "Macro",
  2646. height: math.unit(500, "feet")
  2647. },
  2648. {
  2649. name: "Megamacro",
  2650. height: math.unit(20, "miles")
  2651. },
  2652. ]
  2653. ))
  2654. characterMakers.push(() => makeCharacter(
  2655. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2656. {
  2657. front: {
  2658. height: math.unit(6, "feet"),
  2659. weight: math.unit(75, "kg"),
  2660. name: "Front",
  2661. image: {
  2662. source: "./media/characters/shingo/front.svg",
  2663. extra: 706/681,
  2664. bottom: 11/717
  2665. }
  2666. },
  2667. frontAlt: {
  2668. height: math.unit(6, "feet"),
  2669. weight: math.unit(75, "kg"),
  2670. name: "Front (Alt)",
  2671. image: {
  2672. source: "./media/characters/shingo/front-alt.svg",
  2673. extra: 3511 / 3338,
  2674. bottom: 0.005
  2675. }
  2676. },
  2677. paw: {
  2678. height: math.unit(1, "feet"),
  2679. name: "Paw",
  2680. image: {
  2681. source: "./media/characters/shingo/paw.svg"
  2682. }
  2683. },
  2684. },
  2685. [
  2686. {
  2687. name: "Micro",
  2688. height: math.unit(4, "inches")
  2689. },
  2690. {
  2691. name: "Normal",
  2692. height: math.unit(6, "feet"),
  2693. default: true
  2694. },
  2695. {
  2696. name: "Macro",
  2697. height: math.unit(108, "feet")
  2698. },
  2699. {
  2700. name: "Macro+",
  2701. height: math.unit(1500, "feet")
  2702. },
  2703. ]
  2704. ))
  2705. characterMakers.push(() => makeCharacter(
  2706. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2707. {
  2708. side: {
  2709. height: math.unit(6, "feet"),
  2710. weight: math.unit(75, "kg"),
  2711. name: "Side",
  2712. image: {
  2713. source: "./media/characters/aigey/side.svg"
  2714. }
  2715. },
  2716. },
  2717. [
  2718. {
  2719. name: "Macro",
  2720. height: math.unit(200, "feet"),
  2721. default: true
  2722. },
  2723. {
  2724. name: "Megamacro",
  2725. height: math.unit(100, "miles")
  2726. },
  2727. ]
  2728. )
  2729. )
  2730. characterMakers.push(() => makeCharacter(
  2731. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2732. {
  2733. front: {
  2734. height: math.unit(5 + 5 / 12, "feet"),
  2735. weight: math.unit(75, "kg"),
  2736. name: "Front",
  2737. image: {
  2738. source: "./media/characters/natasha/front.svg",
  2739. extra: 859 / 824,
  2740. bottom: 23 / 879.6
  2741. }
  2742. },
  2743. frontNsfw: {
  2744. height: math.unit(5 + 5 / 12, "feet"),
  2745. weight: math.unit(75, "kg"),
  2746. name: "Front (NSFW)",
  2747. image: {
  2748. source: "./media/characters/natasha/front-nsfw.svg",
  2749. extra: 859 / 824,
  2750. bottom: 23 / 879.6
  2751. }
  2752. },
  2753. frontErect: {
  2754. height: math.unit(5 + 5 / 12, "feet"),
  2755. weight: math.unit(75, "kg"),
  2756. name: "Front (Erect)",
  2757. image: {
  2758. source: "./media/characters/natasha/front-erect.svg",
  2759. extra: 859 / 824,
  2760. bottom: 23 / 879.6
  2761. }
  2762. },
  2763. back: {
  2764. height: math.unit(5 + 5 / 12, "feet"),
  2765. weight: math.unit(75, "kg"),
  2766. name: "Back",
  2767. image: {
  2768. source: "./media/characters/natasha/back.svg",
  2769. extra: 887.9 / 852.6,
  2770. bottom: 9.7 / 896.4
  2771. }
  2772. },
  2773. backAlt: {
  2774. height: math.unit(5 + 5 / 12, "feet"),
  2775. weight: math.unit(75, "kg"),
  2776. name: "Back (Alt)",
  2777. image: {
  2778. source: "./media/characters/natasha/back-alt.svg",
  2779. extra: 1236.7 / 1192,
  2780. bottom: 22.3 / 1258.2
  2781. }
  2782. },
  2783. dick: {
  2784. height: math.unit(1.772, "feet"),
  2785. name: "Dick",
  2786. image: {
  2787. source: "./media/characters/natasha/dick.svg"
  2788. }
  2789. },
  2790. paw: {
  2791. height: math.unit(0.250, "meters"),
  2792. name: "Paw",
  2793. image: {
  2794. source: "./media/characters/natasha/paw.svg"
  2795. }
  2796. },
  2797. },
  2798. [
  2799. {
  2800. name: "Normal",
  2801. height: math.unit(5 + 5 / 12, "feet")
  2802. },
  2803. {
  2804. name: "Large",
  2805. height: math.unit(12, "feet")
  2806. },
  2807. {
  2808. name: "Macro",
  2809. height: math.unit(100, "feet"),
  2810. default: true
  2811. },
  2812. {
  2813. name: "Macro+",
  2814. height: math.unit(260, "feet")
  2815. },
  2816. {
  2817. name: "Macro++",
  2818. height: math.unit(1, "mile")
  2819. },
  2820. ]
  2821. ))
  2822. characterMakers.push(() => makeCharacter(
  2823. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2824. {
  2825. front: {
  2826. height: math.unit(6, "feet"),
  2827. weight: math.unit(75, "kg"),
  2828. name: "Front",
  2829. image: {
  2830. source: "./media/characters/malik/front.svg"
  2831. }
  2832. },
  2833. side: {
  2834. height: math.unit(6, "feet"),
  2835. weight: math.unit(75, "kg"),
  2836. name: "Side",
  2837. image: {
  2838. source: "./media/characters/malik/side.svg",
  2839. extra: 1.1539
  2840. }
  2841. },
  2842. back: {
  2843. height: math.unit(6, "feet"),
  2844. weight: math.unit(75, "kg"),
  2845. name: "Back",
  2846. image: {
  2847. source: "./media/characters/malik/back.svg"
  2848. }
  2849. },
  2850. },
  2851. [
  2852. {
  2853. name: "Macro",
  2854. height: math.unit(156, "feet"),
  2855. default: true
  2856. },
  2857. {
  2858. name: "Macro+",
  2859. height: math.unit(1188, "feet")
  2860. },
  2861. ]
  2862. ))
  2863. characterMakers.push(() => makeCharacter(
  2864. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2865. {
  2866. front: {
  2867. height: math.unit(6, "feet"),
  2868. weight: math.unit(75, "kg"),
  2869. name: "Front",
  2870. image: {
  2871. source: "./media/characters/sefer/front.svg",
  2872. extra: 848 / 659,
  2873. bottom: 28.3 / 876.442
  2874. }
  2875. },
  2876. back: {
  2877. height: math.unit(6, "feet"),
  2878. weight: math.unit(75, "kg"),
  2879. name: "Back",
  2880. image: {
  2881. source: "./media/characters/sefer/back.svg",
  2882. extra: 864 / 695,
  2883. bottom: 10 / 871
  2884. }
  2885. },
  2886. frontDressed: {
  2887. height: math.unit(6, "feet"),
  2888. weight: math.unit(75, "kg"),
  2889. name: "Front (Dressed)",
  2890. image: {
  2891. source: "./media/characters/sefer/front-dressed.svg",
  2892. extra: 839 / 653,
  2893. bottom: 37.6 / 878
  2894. }
  2895. },
  2896. },
  2897. [
  2898. {
  2899. name: "Normal",
  2900. height: math.unit(6, "feet"),
  2901. default: true
  2902. },
  2903. ]
  2904. ))
  2905. characterMakers.push(() => makeCharacter(
  2906. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2907. {
  2908. body: {
  2909. height: math.unit(2.2428, "meter"),
  2910. weight: math.unit(124.738, "kg"),
  2911. name: "Body",
  2912. image: {
  2913. extra: 1225 / 1050,
  2914. source: "./media/characters/north/front.svg"
  2915. }
  2916. }
  2917. },
  2918. [
  2919. {
  2920. name: "Micro",
  2921. height: math.unit(4, "inches")
  2922. },
  2923. {
  2924. name: "Macro",
  2925. height: math.unit(63, "meters")
  2926. },
  2927. {
  2928. name: "Megamacro",
  2929. height: math.unit(101, "miles"),
  2930. default: true
  2931. }
  2932. ]
  2933. ))
  2934. characterMakers.push(() => makeCharacter(
  2935. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2936. {
  2937. angled: {
  2938. height: math.unit(4, "meter"),
  2939. weight: math.unit(150, "kg"),
  2940. name: "Angled",
  2941. image: {
  2942. source: "./media/characters/talan/angled-sfw.svg",
  2943. bottom: 29 / 3734
  2944. }
  2945. },
  2946. angledNsfw: {
  2947. height: math.unit(4, "meter"),
  2948. weight: math.unit(150, "kg"),
  2949. name: "Angled (NSFW)",
  2950. image: {
  2951. source: "./media/characters/talan/angled-nsfw.svg",
  2952. bottom: 29 / 3734
  2953. }
  2954. },
  2955. frontNsfw: {
  2956. height: math.unit(4, "meter"),
  2957. weight: math.unit(150, "kg"),
  2958. name: "Front (NSFW)",
  2959. image: {
  2960. source: "./media/characters/talan/front-nsfw.svg",
  2961. bottom: 29 / 3734
  2962. }
  2963. },
  2964. sideNsfw: {
  2965. height: math.unit(4, "meter"),
  2966. weight: math.unit(150, "kg"),
  2967. name: "Side (NSFW)",
  2968. image: {
  2969. source: "./media/characters/talan/side-nsfw.svg",
  2970. bottom: 29 / 3734
  2971. }
  2972. },
  2973. back: {
  2974. height: math.unit(4, "meter"),
  2975. weight: math.unit(150, "kg"),
  2976. name: "Back",
  2977. image: {
  2978. source: "./media/characters/talan/back.svg"
  2979. }
  2980. },
  2981. dickBottom: {
  2982. height: math.unit(0.621, "meter"),
  2983. name: "Dick (Bottom)",
  2984. image: {
  2985. source: "./media/characters/talan/dick-bottom.svg"
  2986. }
  2987. },
  2988. dickTop: {
  2989. height: math.unit(0.621, "meter"),
  2990. name: "Dick (Top)",
  2991. image: {
  2992. source: "./media/characters/talan/dick-top.svg"
  2993. }
  2994. },
  2995. dickSide: {
  2996. height: math.unit(0.305, "meter"),
  2997. name: "Dick (Side)",
  2998. image: {
  2999. source: "./media/characters/talan/dick-side.svg"
  3000. }
  3001. },
  3002. dickFront: {
  3003. height: math.unit(0.305, "meter"),
  3004. name: "Dick (Front)",
  3005. image: {
  3006. source: "./media/characters/talan/dick-front.svg"
  3007. }
  3008. },
  3009. },
  3010. [
  3011. {
  3012. name: "Normal",
  3013. height: math.unit(4, "meters")
  3014. },
  3015. {
  3016. name: "Macro",
  3017. height: math.unit(100, "meters")
  3018. },
  3019. {
  3020. name: "Megamacro",
  3021. height: math.unit(2, "miles"),
  3022. default: true
  3023. },
  3024. {
  3025. name: "Gigamacro",
  3026. height: math.unit(5000, "miles")
  3027. },
  3028. {
  3029. name: "Teramacro",
  3030. height: math.unit(100, "parsecs")
  3031. }
  3032. ]
  3033. ))
  3034. characterMakers.push(() => makeCharacter(
  3035. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3036. {
  3037. front: {
  3038. height: math.unit(2, "meter"),
  3039. weight: math.unit(90, "kg"),
  3040. name: "Front",
  3041. image: {
  3042. source: "./media/characters/gael'rathus/front.svg"
  3043. }
  3044. },
  3045. frontAlt: {
  3046. height: math.unit(2, "meter"),
  3047. weight: math.unit(90, "kg"),
  3048. name: "Front (alt)",
  3049. image: {
  3050. source: "./media/characters/gael'rathus/front-alt.svg"
  3051. }
  3052. },
  3053. frontAlt2: {
  3054. height: math.unit(2, "meter"),
  3055. weight: math.unit(90, "kg"),
  3056. name: "Front (alt 2)",
  3057. image: {
  3058. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3059. }
  3060. }
  3061. },
  3062. [
  3063. {
  3064. name: "Normal",
  3065. height: math.unit(9, "feet"),
  3066. default: true
  3067. },
  3068. {
  3069. name: "Large",
  3070. height: math.unit(25, "feet")
  3071. },
  3072. {
  3073. name: "Macro",
  3074. height: math.unit(0.25, "miles")
  3075. },
  3076. {
  3077. name: "Megamacro",
  3078. height: math.unit(10, "miles")
  3079. }
  3080. ]
  3081. ))
  3082. characterMakers.push(() => makeCharacter(
  3083. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3084. {
  3085. side: {
  3086. height: math.unit(2, "meter"),
  3087. weight: math.unit(140, "kg"),
  3088. name: "Side",
  3089. image: {
  3090. source: "./media/characters/sosha/side.svg",
  3091. bottom: 0.042
  3092. }
  3093. },
  3094. },
  3095. [
  3096. {
  3097. name: "Normal",
  3098. height: math.unit(12, "feet"),
  3099. default: true
  3100. }
  3101. ]
  3102. ))
  3103. characterMakers.push(() => makeCharacter(
  3104. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3105. {
  3106. side: {
  3107. height: math.unit(5 + 5 / 12, "feet"),
  3108. weight: math.unit(170, "kg"),
  3109. name: "Side",
  3110. image: {
  3111. source: "./media/characters/runnola/side.svg",
  3112. extra: 741 / 448,
  3113. bottom: 0.05
  3114. }
  3115. },
  3116. },
  3117. [
  3118. {
  3119. name: "Small",
  3120. height: math.unit(3, "feet")
  3121. },
  3122. {
  3123. name: "Normal",
  3124. height: math.unit(5 + 5 / 12, "feet"),
  3125. default: true
  3126. },
  3127. {
  3128. name: "Big",
  3129. height: math.unit(10, "feet")
  3130. },
  3131. ]
  3132. ))
  3133. characterMakers.push(() => makeCharacter(
  3134. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3135. {
  3136. front: {
  3137. height: math.unit(2, "meter"),
  3138. weight: math.unit(50, "kg"),
  3139. name: "Front",
  3140. image: {
  3141. source: "./media/characters/kurribird/front.svg",
  3142. bottom: 0.015
  3143. }
  3144. },
  3145. frontAlt: {
  3146. height: math.unit(1.5, "meter"),
  3147. weight: math.unit(50, "kg"),
  3148. name: "Front (Alt)",
  3149. image: {
  3150. source: "./media/characters/kurribird/front-alt.svg",
  3151. extra: 1.45
  3152. }
  3153. },
  3154. },
  3155. [
  3156. {
  3157. name: "Normal",
  3158. height: math.unit(7, "feet")
  3159. },
  3160. {
  3161. name: "Big",
  3162. height: math.unit(12, "feet"),
  3163. default: true
  3164. },
  3165. {
  3166. name: "Macro",
  3167. height: math.unit(1500, "feet")
  3168. },
  3169. {
  3170. name: "Megamacro",
  3171. height: math.unit(2, "miles")
  3172. }
  3173. ]
  3174. ))
  3175. characterMakers.push(() => makeCharacter(
  3176. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3177. {
  3178. front: {
  3179. height: math.unit(2, "meter"),
  3180. weight: math.unit(80, "kg"),
  3181. name: "Front",
  3182. image: {
  3183. source: "./media/characters/elbial/front.svg",
  3184. extra: 1643 / 1556,
  3185. bottom: 60.2 / 1696
  3186. }
  3187. },
  3188. side: {
  3189. height: math.unit(2, "meter"),
  3190. weight: math.unit(80, "kg"),
  3191. name: "Side",
  3192. image: {
  3193. source: "./media/characters/elbial/side.svg",
  3194. extra: 1630 / 1565,
  3195. bottom: 71.5 / 1697
  3196. }
  3197. },
  3198. back: {
  3199. height: math.unit(2, "meter"),
  3200. weight: math.unit(80, "kg"),
  3201. name: "Back",
  3202. image: {
  3203. source: "./media/characters/elbial/back.svg",
  3204. extra: 1668 / 1595,
  3205. bottom: 5.6 / 1672
  3206. }
  3207. },
  3208. frontDressed: {
  3209. height: math.unit(2, "meter"),
  3210. weight: math.unit(80, "kg"),
  3211. name: "Front (Dressed)",
  3212. image: {
  3213. source: "./media/characters/elbial/front-dressed.svg",
  3214. extra: 1653 / 1584,
  3215. bottom: 57 / 1708
  3216. }
  3217. },
  3218. genitals: {
  3219. height: math.unit(2 / 3.367, "meter"),
  3220. name: "Genitals",
  3221. image: {
  3222. source: "./media/characters/elbial/genitals.svg"
  3223. }
  3224. },
  3225. },
  3226. [
  3227. {
  3228. name: "Large",
  3229. height: math.unit(100, "feet")
  3230. },
  3231. {
  3232. name: "Macro",
  3233. height: math.unit(500, "feet"),
  3234. default: true
  3235. },
  3236. {
  3237. name: "Megamacro",
  3238. height: math.unit(10, "miles")
  3239. },
  3240. {
  3241. name: "Gigamacro",
  3242. height: math.unit(25000, "miles")
  3243. },
  3244. {
  3245. name: "Full-Size",
  3246. height: math.unit(8000000, "gigaparsecs")
  3247. }
  3248. ]
  3249. ))
  3250. characterMakers.push(() => makeCharacter(
  3251. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3252. {
  3253. front: {
  3254. height: math.unit(2, "meter"),
  3255. weight: math.unit(60, "kg"),
  3256. name: "Front",
  3257. image: {
  3258. source: "./media/characters/noah/front.svg"
  3259. }
  3260. },
  3261. talons: {
  3262. height: math.unit(0.315, "meter"),
  3263. name: "Talons",
  3264. image: {
  3265. source: "./media/characters/noah/talons.svg"
  3266. }
  3267. }
  3268. },
  3269. [
  3270. {
  3271. name: "Large",
  3272. height: math.unit(50, "feet")
  3273. },
  3274. {
  3275. name: "Macro",
  3276. height: math.unit(750, "feet"),
  3277. default: true
  3278. },
  3279. {
  3280. name: "Megamacro",
  3281. height: math.unit(50, "miles")
  3282. },
  3283. {
  3284. name: "Gigamacro",
  3285. height: math.unit(100000, "miles")
  3286. },
  3287. {
  3288. name: "Full-Size",
  3289. height: math.unit(3000000000, "miles")
  3290. }
  3291. ]
  3292. ))
  3293. characterMakers.push(() => makeCharacter(
  3294. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3295. {
  3296. front: {
  3297. height: math.unit(2, "meter"),
  3298. weight: math.unit(80, "kg"),
  3299. name: "Front",
  3300. image: {
  3301. source: "./media/characters/natalya/front.svg"
  3302. }
  3303. },
  3304. back: {
  3305. height: math.unit(2, "meter"),
  3306. weight: math.unit(80, "kg"),
  3307. name: "Back",
  3308. image: {
  3309. source: "./media/characters/natalya/back.svg"
  3310. }
  3311. }
  3312. },
  3313. [
  3314. {
  3315. name: "Normal",
  3316. height: math.unit(150, "feet"),
  3317. default: true
  3318. },
  3319. {
  3320. name: "Megamacro",
  3321. height: math.unit(5, "miles")
  3322. },
  3323. {
  3324. name: "Full-Size",
  3325. height: math.unit(600, "kiloparsecs")
  3326. }
  3327. ]
  3328. ))
  3329. characterMakers.push(() => makeCharacter(
  3330. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3331. {
  3332. front: {
  3333. height: math.unit(2, "meter"),
  3334. weight: math.unit(50, "kg"),
  3335. name: "Front",
  3336. image: {
  3337. source: "./media/characters/erestrebah/front.svg",
  3338. extra: 208 / 193,
  3339. bottom: 0.055
  3340. }
  3341. },
  3342. back: {
  3343. height: math.unit(2, "meter"),
  3344. weight: math.unit(50, "kg"),
  3345. name: "Back",
  3346. image: {
  3347. source: "./media/characters/erestrebah/back.svg",
  3348. extra: 1.3
  3349. }
  3350. }
  3351. },
  3352. [
  3353. {
  3354. name: "Normal",
  3355. height: math.unit(10, "feet")
  3356. },
  3357. {
  3358. name: "Large",
  3359. height: math.unit(50, "feet"),
  3360. default: true
  3361. },
  3362. {
  3363. name: "Macro",
  3364. height: math.unit(300, "feet")
  3365. },
  3366. {
  3367. name: "Macro+",
  3368. height: math.unit(750, "feet")
  3369. },
  3370. {
  3371. name: "Megamacro",
  3372. height: math.unit(3, "miles")
  3373. }
  3374. ]
  3375. ))
  3376. characterMakers.push(() => makeCharacter(
  3377. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3378. {
  3379. front: {
  3380. height: math.unit(2, "meter"),
  3381. weight: math.unit(80, "kg"),
  3382. name: "Front",
  3383. image: {
  3384. source: "./media/characters/jennifer/front.svg",
  3385. bottom: 0.11,
  3386. extra: 1.16
  3387. }
  3388. },
  3389. frontAlt: {
  3390. height: math.unit(2, "meter"),
  3391. weight: math.unit(80, "kg"),
  3392. name: "Front (Alt)",
  3393. image: {
  3394. source: "./media/characters/jennifer/front-alt.svg"
  3395. }
  3396. }
  3397. },
  3398. [
  3399. {
  3400. name: "Canon Height",
  3401. height: math.unit(120, "feet"),
  3402. default: true
  3403. },
  3404. {
  3405. name: "Macro+",
  3406. height: math.unit(300, "feet")
  3407. },
  3408. {
  3409. name: "Megamacro",
  3410. height: math.unit(20000, "feet")
  3411. }
  3412. ]
  3413. ))
  3414. characterMakers.push(() => makeCharacter(
  3415. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3416. {
  3417. front: {
  3418. height: math.unit(2, "meter"),
  3419. weight: math.unit(50, "kg"),
  3420. name: "Front",
  3421. image: {
  3422. source: "./media/characters/kalista/front.svg",
  3423. extra: 1947 / 1700,
  3424. bottom: 76.6 / 1412.98
  3425. }
  3426. },
  3427. back: {
  3428. height: math.unit(2, "meter"),
  3429. weight: math.unit(50, "kg"),
  3430. name: "Back",
  3431. image: {
  3432. source: "./media/characters/kalista/back.svg",
  3433. extra: 1366 / 1156,
  3434. bottom: 33.9 / 1362.78
  3435. }
  3436. }
  3437. },
  3438. [
  3439. {
  3440. name: "Uncomfortably Small",
  3441. height: math.unit(10, "feet")
  3442. },
  3443. {
  3444. name: "Small",
  3445. height: math.unit(30, "feet")
  3446. },
  3447. {
  3448. name: "Macro",
  3449. height: math.unit(100, "feet"),
  3450. default: true
  3451. },
  3452. {
  3453. name: "Macro+",
  3454. height: math.unit(2000, "feet")
  3455. },
  3456. {
  3457. name: "True Form",
  3458. height: math.unit(8924, "miles")
  3459. }
  3460. ]
  3461. ))
  3462. characterMakers.push(() => makeCharacter(
  3463. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3464. {
  3465. front: {
  3466. height: math.unit(2, "meter"),
  3467. weight: math.unit(120, "kg"),
  3468. name: "Front",
  3469. image: {
  3470. source: "./media/characters/ggv/front.svg"
  3471. }
  3472. },
  3473. side: {
  3474. height: math.unit(2, "meter"),
  3475. weight: math.unit(120, "kg"),
  3476. name: "Side",
  3477. image: {
  3478. source: "./media/characters/ggv/side.svg"
  3479. }
  3480. }
  3481. },
  3482. [
  3483. {
  3484. name: "Extremely Puny",
  3485. height: math.unit(9 + 5 / 12, "feet")
  3486. },
  3487. {
  3488. name: "Horribly Small",
  3489. height: math.unit(47.7, "miles"),
  3490. default: true
  3491. },
  3492. {
  3493. name: "Reasonably Sized",
  3494. height: math.unit(25000, "parsecs")
  3495. },
  3496. {
  3497. name: "Slightly Uncompressed",
  3498. height: math.unit(7.77e31, "parsecs")
  3499. },
  3500. {
  3501. name: "Omniversal",
  3502. height: math.unit(1e300, "meters")
  3503. },
  3504. ]
  3505. ))
  3506. characterMakers.push(() => makeCharacter(
  3507. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3508. {
  3509. front: {
  3510. height: math.unit(2, "meter"),
  3511. weight: math.unit(75, "lb"),
  3512. name: "Front",
  3513. image: {
  3514. source: "./media/characters/napalm/front.svg"
  3515. }
  3516. },
  3517. back: {
  3518. height: math.unit(2, "meter"),
  3519. weight: math.unit(75, "lb"),
  3520. name: "Back",
  3521. image: {
  3522. source: "./media/characters/napalm/back.svg"
  3523. }
  3524. }
  3525. },
  3526. [
  3527. {
  3528. name: "Standard",
  3529. height: math.unit(55, "feet"),
  3530. default: true
  3531. }
  3532. ]
  3533. ))
  3534. characterMakers.push(() => makeCharacter(
  3535. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3536. {
  3537. front: {
  3538. height: math.unit(7 + 5 / 6, "feet"),
  3539. weight: math.unit(325, "lb"),
  3540. name: "Front",
  3541. image: {
  3542. source: "./media/characters/asana/front.svg",
  3543. extra: 1133 / 1060,
  3544. bottom: 15.2 / 1148.6
  3545. }
  3546. },
  3547. back: {
  3548. height: math.unit(7 + 5 / 6, "feet"),
  3549. weight: math.unit(325, "lb"),
  3550. name: "Back",
  3551. image: {
  3552. source: "./media/characters/asana/back.svg",
  3553. extra: 1114 / 1043,
  3554. bottom: 5 / 1120
  3555. }
  3556. },
  3557. dressedDark: {
  3558. height: math.unit(7 + 5 / 6, "feet"),
  3559. weight: math.unit(325, "lb"),
  3560. name: "Dressed (Dark)",
  3561. image: {
  3562. source: "./media/characters/asana/dressed-dark.svg",
  3563. extra: 1133 / 1060,
  3564. bottom: 15.2 / 1148.6
  3565. }
  3566. },
  3567. dressedLight: {
  3568. height: math.unit(7 + 5 / 6, "feet"),
  3569. weight: math.unit(325, "lb"),
  3570. name: "Dressed (Light)",
  3571. image: {
  3572. source: "./media/characters/asana/dressed-light.svg",
  3573. extra: 1133 / 1060,
  3574. bottom: 15.2 / 1148.6
  3575. }
  3576. },
  3577. },
  3578. [
  3579. {
  3580. name: "Standard",
  3581. height: math.unit(7 + 5 / 6, "feet"),
  3582. default: true
  3583. },
  3584. {
  3585. name: "Large",
  3586. height: math.unit(10, "meters")
  3587. },
  3588. {
  3589. name: "Macro",
  3590. height: math.unit(2500, "meters")
  3591. },
  3592. {
  3593. name: "Megamacro",
  3594. height: math.unit(5e6, "meters")
  3595. },
  3596. {
  3597. name: "Examacro",
  3598. height: math.unit(5e12, "lightyears")
  3599. },
  3600. {
  3601. name: "Max Size",
  3602. height: math.unit(1e31, "lightyears")
  3603. }
  3604. ]
  3605. ))
  3606. characterMakers.push(() => makeCharacter(
  3607. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3608. {
  3609. front: {
  3610. height: math.unit(2, "meter"),
  3611. weight: math.unit(60, "kg"),
  3612. name: "Front",
  3613. image: {
  3614. source: "./media/characters/ebony/front.svg",
  3615. bottom: 0.03,
  3616. extra: 1045 / 810 + 0.03
  3617. }
  3618. },
  3619. side: {
  3620. height: math.unit(2, "meter"),
  3621. weight: math.unit(60, "kg"),
  3622. name: "Side",
  3623. image: {
  3624. source: "./media/characters/ebony/side.svg",
  3625. bottom: 0.03,
  3626. extra: 1045 / 810 + 0.03
  3627. }
  3628. },
  3629. back: {
  3630. height: math.unit(2, "meter"),
  3631. weight: math.unit(60, "kg"),
  3632. name: "Back",
  3633. image: {
  3634. source: "./media/characters/ebony/back.svg",
  3635. bottom: 0.01,
  3636. extra: 1045 / 810 + 0.01
  3637. }
  3638. },
  3639. },
  3640. [
  3641. // TODO check why I did this lol
  3642. {
  3643. name: "Standard",
  3644. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3645. default: true
  3646. },
  3647. {
  3648. name: "Macro",
  3649. height: math.unit(200, "feet")
  3650. },
  3651. {
  3652. name: "Gigamacro",
  3653. height: math.unit(13000, "km")
  3654. }
  3655. ]
  3656. ))
  3657. characterMakers.push(() => makeCharacter(
  3658. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3659. {
  3660. front: {
  3661. height: math.unit(6, "feet"),
  3662. weight: math.unit(175, "lb"),
  3663. name: "Front",
  3664. image: {
  3665. source: "./media/characters/mountain/front.svg",
  3666. extra: 972 / 955,
  3667. bottom: 64 / 1036.6
  3668. }
  3669. },
  3670. back: {
  3671. height: math.unit(6, "feet"),
  3672. weight: math.unit(175, "lb"),
  3673. name: "Back",
  3674. image: {
  3675. source: "./media/characters/mountain/back.svg",
  3676. extra: 970 / 950,
  3677. bottom: 28.25 / 999
  3678. }
  3679. },
  3680. },
  3681. [
  3682. {
  3683. name: "Large",
  3684. height: math.unit(20, "meters")
  3685. },
  3686. {
  3687. name: "Macro",
  3688. height: math.unit(300, "meters")
  3689. },
  3690. {
  3691. name: "Gigamacro",
  3692. height: math.unit(10000, "km"),
  3693. default: true
  3694. },
  3695. {
  3696. name: "Examacro",
  3697. height: math.unit(10e9, "lightyears")
  3698. }
  3699. ]
  3700. ))
  3701. characterMakers.push(() => makeCharacter(
  3702. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3703. {
  3704. front: {
  3705. height: math.unit(8, "feet"),
  3706. weight: math.unit(500, "lb"),
  3707. name: "Front",
  3708. image: {
  3709. source: "./media/characters/rick/front.svg"
  3710. }
  3711. }
  3712. },
  3713. [
  3714. {
  3715. name: "Normal",
  3716. height: math.unit(8, "feet"),
  3717. default: true
  3718. },
  3719. {
  3720. name: "Macro",
  3721. height: math.unit(5, "km")
  3722. }
  3723. ]
  3724. ))
  3725. characterMakers.push(() => makeCharacter(
  3726. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3727. {
  3728. front: {
  3729. height: math.unit(8, "feet"),
  3730. weight: math.unit(120, "lb"),
  3731. name: "Front",
  3732. image: {
  3733. source: "./media/characters/ona/front.svg"
  3734. }
  3735. },
  3736. frontAlt: {
  3737. height: math.unit(8, "feet"),
  3738. weight: math.unit(120, "lb"),
  3739. name: "Front (Alt)",
  3740. image: {
  3741. source: "./media/characters/ona/front-alt.svg"
  3742. }
  3743. },
  3744. back: {
  3745. height: math.unit(8, "feet"),
  3746. weight: math.unit(120, "lb"),
  3747. name: "Back",
  3748. image: {
  3749. source: "./media/characters/ona/back.svg"
  3750. }
  3751. },
  3752. foot: {
  3753. height: math.unit(1.1, "feet"),
  3754. name: "Foot",
  3755. image: {
  3756. source: "./media/characters/ona/foot.svg"
  3757. }
  3758. }
  3759. },
  3760. [
  3761. {
  3762. name: "Megamacro",
  3763. height: math.unit(70, "km"),
  3764. default: true
  3765. },
  3766. {
  3767. name: "Gigamacro",
  3768. height: math.unit(681818, "miles")
  3769. },
  3770. {
  3771. name: "Examacro",
  3772. height: math.unit(3800000, "lightyears")
  3773. },
  3774. ]
  3775. ))
  3776. characterMakers.push(() => makeCharacter(
  3777. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3778. {
  3779. front: {
  3780. height: math.unit(12, "feet"),
  3781. weight: math.unit(3000, "lb"),
  3782. name: "Front",
  3783. image: {
  3784. source: "./media/characters/mech/front.svg",
  3785. extra: 2900 / 2770,
  3786. bottom: 110 / 3010
  3787. }
  3788. },
  3789. back: {
  3790. height: math.unit(12, "feet"),
  3791. weight: math.unit(3000, "lb"),
  3792. name: "Back",
  3793. image: {
  3794. source: "./media/characters/mech/back.svg",
  3795. extra: 3011 / 2890,
  3796. bottom: 94 / 3105
  3797. }
  3798. },
  3799. maw: {
  3800. height: math.unit(3.07, "feet"),
  3801. name: "Maw",
  3802. image: {
  3803. source: "./media/characters/mech/maw.svg"
  3804. }
  3805. },
  3806. head: {
  3807. height: math.unit(2.82, "feet"),
  3808. name: "Head",
  3809. image: {
  3810. source: "./media/characters/mech/head.svg"
  3811. }
  3812. },
  3813. dick: {
  3814. height: math.unit(1.43, "feet"),
  3815. name: "Dick",
  3816. image: {
  3817. source: "./media/characters/mech/dick.svg"
  3818. }
  3819. },
  3820. },
  3821. [
  3822. {
  3823. name: "Normal",
  3824. height: math.unit(12, "feet")
  3825. },
  3826. {
  3827. name: "Macro",
  3828. height: math.unit(300, "feet"),
  3829. default: true
  3830. },
  3831. {
  3832. name: "Macro+",
  3833. height: math.unit(1500, "feet")
  3834. },
  3835. ]
  3836. ))
  3837. characterMakers.push(() => makeCharacter(
  3838. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3839. {
  3840. front: {
  3841. height: math.unit(1.3, "meter"),
  3842. weight: math.unit(30, "kg"),
  3843. name: "Front",
  3844. image: {
  3845. source: "./media/characters/gregory/front.svg",
  3846. }
  3847. }
  3848. },
  3849. [
  3850. {
  3851. name: "Normal",
  3852. height: math.unit(1.3, "meter"),
  3853. default: true
  3854. },
  3855. {
  3856. name: "Macro",
  3857. height: math.unit(20, "meter")
  3858. }
  3859. ]
  3860. ))
  3861. characterMakers.push(() => makeCharacter(
  3862. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3863. {
  3864. front: {
  3865. height: math.unit(2.8, "meter"),
  3866. weight: math.unit(200, "kg"),
  3867. name: "Front",
  3868. image: {
  3869. source: "./media/characters/elory/front.svg",
  3870. }
  3871. }
  3872. },
  3873. [
  3874. {
  3875. name: "Normal",
  3876. height: math.unit(2.8, "meter"),
  3877. default: true
  3878. },
  3879. {
  3880. name: "Macro",
  3881. height: math.unit(38, "meter")
  3882. }
  3883. ]
  3884. ))
  3885. characterMakers.push(() => makeCharacter(
  3886. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3887. {
  3888. front: {
  3889. height: math.unit(470, "feet"),
  3890. weight: math.unit(924, "tons"),
  3891. name: "Front",
  3892. image: {
  3893. source: "./media/characters/angelpatamon/front.svg",
  3894. }
  3895. }
  3896. },
  3897. [
  3898. {
  3899. name: "Normal",
  3900. height: math.unit(470, "feet"),
  3901. default: true
  3902. },
  3903. {
  3904. name: "Deity Size I",
  3905. height: math.unit(28651.2, "km")
  3906. },
  3907. {
  3908. name: "Deity Size II",
  3909. height: math.unit(171907.2, "km")
  3910. }
  3911. ]
  3912. ))
  3913. characterMakers.push(() => makeCharacter(
  3914. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3915. {
  3916. side: {
  3917. height: math.unit(7.2, "meter"),
  3918. weight: math.unit(8.2, "tons"),
  3919. name: "Side",
  3920. image: {
  3921. source: "./media/characters/cryae/side.svg",
  3922. extra: 3500 / 1500
  3923. }
  3924. }
  3925. },
  3926. [
  3927. {
  3928. name: "Normal",
  3929. height: math.unit(7.2, "meter"),
  3930. default: true
  3931. }
  3932. ]
  3933. ))
  3934. characterMakers.push(() => makeCharacter(
  3935. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3936. {
  3937. front: {
  3938. height: math.unit(6, "feet"),
  3939. weight: math.unit(175, "lb"),
  3940. name: "Front",
  3941. image: {
  3942. source: "./media/characters/xera/front.svg",
  3943. extra: 2377 / 1972,
  3944. bottom: 75.5 / 2452
  3945. }
  3946. },
  3947. side: {
  3948. height: math.unit(6, "feet"),
  3949. weight: math.unit(175, "lb"),
  3950. name: "Side",
  3951. image: {
  3952. source: "./media/characters/xera/side.svg",
  3953. extra: 2345 / 2019,
  3954. bottom: 39.7 / 2384
  3955. }
  3956. },
  3957. back: {
  3958. height: math.unit(6, "feet"),
  3959. weight: math.unit(175, "lb"),
  3960. name: "Back",
  3961. image: {
  3962. source: "./media/characters/xera/back.svg",
  3963. extra: 2095 / 1984,
  3964. bottom: 67 / 2166
  3965. }
  3966. },
  3967. },
  3968. [
  3969. {
  3970. name: "Small",
  3971. height: math.unit(10, "feet")
  3972. },
  3973. {
  3974. name: "Macro",
  3975. height: math.unit(500, "meters"),
  3976. default: true
  3977. },
  3978. {
  3979. name: "Macro+",
  3980. height: math.unit(10, "km")
  3981. },
  3982. {
  3983. name: "Gigamacro",
  3984. height: math.unit(25000, "km")
  3985. },
  3986. {
  3987. name: "Teramacro",
  3988. height: math.unit(3e6, "km")
  3989. }
  3990. ]
  3991. ))
  3992. characterMakers.push(() => makeCharacter(
  3993. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3994. {
  3995. front: {
  3996. height: math.unit(6, "feet"),
  3997. weight: math.unit(175, "lb"),
  3998. name: "Front",
  3999. image: {
  4000. source: "./media/characters/nebula/front.svg",
  4001. extra: 2566 / 2362,
  4002. bottom: 81 / 2644
  4003. }
  4004. }
  4005. },
  4006. [
  4007. {
  4008. name: "Small",
  4009. height: math.unit(4.5, "meters")
  4010. },
  4011. {
  4012. name: "Macro",
  4013. height: math.unit(1500, "meters"),
  4014. default: true
  4015. },
  4016. {
  4017. name: "Megamacro",
  4018. height: math.unit(150, "km")
  4019. },
  4020. {
  4021. name: "Gigamacro",
  4022. height: math.unit(27000, "km")
  4023. }
  4024. ]
  4025. ))
  4026. characterMakers.push(() => makeCharacter(
  4027. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4028. {
  4029. front: {
  4030. height: math.unit(6, "feet"),
  4031. weight: math.unit(225, "lb"),
  4032. name: "Front",
  4033. image: {
  4034. source: "./media/characters/abysgar/front.svg"
  4035. }
  4036. }
  4037. },
  4038. [
  4039. {
  4040. name: "Small",
  4041. height: math.unit(4.5, "meters")
  4042. },
  4043. {
  4044. name: "Macro",
  4045. height: math.unit(1250, "meters"),
  4046. default: true
  4047. },
  4048. {
  4049. name: "Megamacro",
  4050. height: math.unit(125, "km")
  4051. },
  4052. {
  4053. name: "Gigamacro",
  4054. height: math.unit(26000, "km")
  4055. }
  4056. ]
  4057. ))
  4058. characterMakers.push(() => makeCharacter(
  4059. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4060. {
  4061. front: {
  4062. height: math.unit(6, "feet"),
  4063. weight: math.unit(180, "lb"),
  4064. name: "Front",
  4065. image: {
  4066. source: "./media/characters/yakuz/front.svg"
  4067. }
  4068. }
  4069. },
  4070. [
  4071. {
  4072. name: "Small",
  4073. height: math.unit(5, "meters")
  4074. },
  4075. {
  4076. name: "Macro",
  4077. height: math.unit(1500, "meters"),
  4078. default: true
  4079. },
  4080. {
  4081. name: "Megamacro",
  4082. height: math.unit(200, "km")
  4083. },
  4084. {
  4085. name: "Gigamacro",
  4086. height: math.unit(100000, "km")
  4087. }
  4088. ]
  4089. ))
  4090. characterMakers.push(() => makeCharacter(
  4091. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4092. {
  4093. front: {
  4094. height: math.unit(6, "feet"),
  4095. weight: math.unit(175, "lb"),
  4096. name: "Front",
  4097. image: {
  4098. source: "./media/characters/mirova/front.svg",
  4099. extra: 3334 / 3071,
  4100. bottom: 42 / 3375.6
  4101. }
  4102. }
  4103. },
  4104. [
  4105. {
  4106. name: "Small",
  4107. height: math.unit(5, "meters")
  4108. },
  4109. {
  4110. name: "Macro",
  4111. height: math.unit(900, "meters"),
  4112. default: true
  4113. },
  4114. {
  4115. name: "Megamacro",
  4116. height: math.unit(135, "km")
  4117. },
  4118. {
  4119. name: "Gigamacro",
  4120. height: math.unit(20000, "km")
  4121. }
  4122. ]
  4123. ))
  4124. characterMakers.push(() => makeCharacter(
  4125. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4126. {
  4127. side: {
  4128. height: math.unit(28.35, "feet"),
  4129. weight: math.unit(99.75, "tons"),
  4130. name: "Side",
  4131. image: {
  4132. source: "./media/characters/asana-mech/side.svg",
  4133. extra: 923 / 699,
  4134. bottom: 50 / 975
  4135. }
  4136. },
  4137. chaingun: {
  4138. height: math.unit(7, "feet"),
  4139. weight: math.unit(2400, "lb"),
  4140. name: "Chaingun",
  4141. image: {
  4142. source: "./media/characters/asana-mech/chaingun.svg"
  4143. }
  4144. },
  4145. laser: {
  4146. height: math.unit(7.12, "feet"),
  4147. weight: math.unit(2000, "lb"),
  4148. name: "Laser",
  4149. image: {
  4150. source: "./media/characters/asana-mech/laser.svg"
  4151. }
  4152. },
  4153. },
  4154. [
  4155. {
  4156. name: "Normal",
  4157. height: math.unit(28.35, "feet"),
  4158. default: true
  4159. },
  4160. {
  4161. name: "Macro",
  4162. height: math.unit(2500, "feet")
  4163. },
  4164. {
  4165. name: "Megamacro",
  4166. height: math.unit(25, "miles")
  4167. },
  4168. {
  4169. name: "Examacro",
  4170. height: math.unit(6e8, "lightyears")
  4171. },
  4172. ]
  4173. ))
  4174. characterMakers.push(() => makeCharacter(
  4175. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4176. {
  4177. front: {
  4178. height: math.unit(5, "meters"),
  4179. weight: math.unit(1000, "kg"),
  4180. name: "Front",
  4181. image: {
  4182. source: "./media/characters/asche/front.svg",
  4183. extra: 1258 / 1190,
  4184. bottom: 47 / 1305
  4185. }
  4186. },
  4187. frontUnderwear: {
  4188. height: math.unit(5, "meters"),
  4189. weight: math.unit(1000, "kg"),
  4190. name: "Front (Underwear)",
  4191. image: {
  4192. source: "./media/characters/asche/front-underwear.svg",
  4193. extra: 1258 / 1190,
  4194. bottom: 47 / 1305
  4195. }
  4196. },
  4197. frontDressed: {
  4198. height: math.unit(5, "meters"),
  4199. weight: math.unit(1000, "kg"),
  4200. name: "Front (Dressed)",
  4201. image: {
  4202. source: "./media/characters/asche/front-dressed.svg",
  4203. extra: 1258 / 1190,
  4204. bottom: 47 / 1305
  4205. }
  4206. },
  4207. frontArmor: {
  4208. height: math.unit(5, "meters"),
  4209. weight: math.unit(1000, "kg"),
  4210. name: "Front (Armored)",
  4211. image: {
  4212. source: "./media/characters/asche/front-armored.svg",
  4213. extra: 1374 / 1308,
  4214. bottom: 23 / 1397
  4215. }
  4216. },
  4217. mp724: {
  4218. height: math.unit(0.96, "meters"),
  4219. weight: math.unit(38, "kg"),
  4220. name: "H&K MP724",
  4221. image: {
  4222. source: "./media/characters/asche/h&k-mp724.svg"
  4223. }
  4224. },
  4225. side: {
  4226. height: math.unit(5, "meters"),
  4227. weight: math.unit(1000, "kg"),
  4228. name: "Side",
  4229. image: {
  4230. source: "./media/characters/asche/side.svg",
  4231. extra: 1717 / 1609,
  4232. bottom: 0.005
  4233. }
  4234. },
  4235. back: {
  4236. height: math.unit(5, "meters"),
  4237. weight: math.unit(1000, "kg"),
  4238. name: "Back",
  4239. image: {
  4240. source: "./media/characters/asche/back.svg",
  4241. extra: 1570 / 1501
  4242. }
  4243. },
  4244. },
  4245. [
  4246. {
  4247. name: "DEFCON 5",
  4248. height: math.unit(5, "meters")
  4249. },
  4250. {
  4251. name: "DEFCON 4",
  4252. height: math.unit(500, "meters"),
  4253. default: true
  4254. },
  4255. {
  4256. name: "DEFCON 3",
  4257. height: math.unit(5, "km")
  4258. },
  4259. {
  4260. name: "DEFCON 2",
  4261. height: math.unit(500, "km")
  4262. },
  4263. {
  4264. name: "DEFCON 1",
  4265. height: math.unit(500000, "km")
  4266. },
  4267. {
  4268. name: "DEFCON 0",
  4269. height: math.unit(3, "gigaparsecs")
  4270. },
  4271. ]
  4272. ))
  4273. characterMakers.push(() => makeCharacter(
  4274. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4275. {
  4276. front: {
  4277. height: math.unit(2, "meters"),
  4278. weight: math.unit(76, "kg"),
  4279. name: "Front",
  4280. image: {
  4281. source: "./media/characters/gale/front.svg"
  4282. }
  4283. },
  4284. frontAlt1: {
  4285. height: math.unit(2, "meters"),
  4286. weight: math.unit(76, "kg"),
  4287. name: "Front (Alt 1)",
  4288. image: {
  4289. source: "./media/characters/gale/front-alt-1.svg"
  4290. }
  4291. },
  4292. frontAlt2: {
  4293. height: math.unit(2, "meters"),
  4294. weight: math.unit(76, "kg"),
  4295. name: "Front (Alt 2)",
  4296. image: {
  4297. source: "./media/characters/gale/front-alt-2.svg"
  4298. }
  4299. },
  4300. },
  4301. [
  4302. {
  4303. name: "Normal",
  4304. height: math.unit(7, "feet")
  4305. },
  4306. {
  4307. name: "Macro",
  4308. height: math.unit(150, "feet"),
  4309. default: true
  4310. },
  4311. {
  4312. name: "Macro+",
  4313. height: math.unit(300, "feet")
  4314. },
  4315. ]
  4316. ))
  4317. characterMakers.push(() => makeCharacter(
  4318. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4319. {
  4320. front: {
  4321. height: math.unit(2, "meters"),
  4322. weight: math.unit(76, "kg"),
  4323. name: "Front",
  4324. image: {
  4325. source: "./media/characters/draylen/front.svg"
  4326. }
  4327. }
  4328. },
  4329. [
  4330. {
  4331. name: "Macro",
  4332. height: math.unit(150, "feet"),
  4333. default: true
  4334. }
  4335. ]
  4336. ))
  4337. characterMakers.push(() => makeCharacter(
  4338. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4339. {
  4340. front: {
  4341. height: math.unit(7 + 9 / 12, "feet"),
  4342. weight: math.unit(379, "lbs"),
  4343. name: "Front",
  4344. image: {
  4345. source: "./media/characters/chez/front.svg"
  4346. }
  4347. },
  4348. side: {
  4349. height: math.unit(7 + 9 / 12, "feet"),
  4350. weight: math.unit(379, "lbs"),
  4351. name: "Side",
  4352. image: {
  4353. source: "./media/characters/chez/side.svg"
  4354. }
  4355. }
  4356. },
  4357. [
  4358. {
  4359. name: "Normal",
  4360. height: math.unit(7 + 9 / 12, "feet"),
  4361. default: true
  4362. },
  4363. {
  4364. name: "God King",
  4365. height: math.unit(9750000, "meters")
  4366. }
  4367. ]
  4368. ))
  4369. characterMakers.push(() => makeCharacter(
  4370. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4371. {
  4372. front: {
  4373. height: math.unit(6, "feet"),
  4374. weight: math.unit(275, "lbs"),
  4375. name: "Front",
  4376. image: {
  4377. source: "./media/characters/kaylum/front.svg",
  4378. bottom: 0.01,
  4379. extra: 1166 / 1031
  4380. }
  4381. },
  4382. frontWingless: {
  4383. height: math.unit(6, "feet"),
  4384. weight: math.unit(275, "lbs"),
  4385. name: "Front (Wingless)",
  4386. image: {
  4387. source: "./media/characters/kaylum/front-wingless.svg",
  4388. bottom: 0.01,
  4389. extra: 1117 / 1031
  4390. }
  4391. }
  4392. },
  4393. [
  4394. {
  4395. name: "Normal",
  4396. height: math.unit(3.05, "meters")
  4397. },
  4398. {
  4399. name: "Master",
  4400. height: math.unit(5.5, "meters")
  4401. },
  4402. {
  4403. name: "Rampage",
  4404. height: math.unit(19, "meters")
  4405. },
  4406. {
  4407. name: "Macro Lite",
  4408. height: math.unit(37, "meters")
  4409. },
  4410. {
  4411. name: "Hyper Predator",
  4412. height: math.unit(61, "meters")
  4413. },
  4414. {
  4415. name: "Macro",
  4416. height: math.unit(138, "meters"),
  4417. default: true
  4418. }
  4419. ]
  4420. ))
  4421. characterMakers.push(() => makeCharacter(
  4422. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4423. {
  4424. front: {
  4425. height: math.unit(6, "feet"),
  4426. weight: math.unit(150, "lbs"),
  4427. name: "Front",
  4428. image: {
  4429. source: "./media/characters/geta/front.svg"
  4430. }
  4431. }
  4432. },
  4433. [
  4434. {
  4435. name: "Micro",
  4436. height: math.unit(3, "inches"),
  4437. default: true
  4438. },
  4439. {
  4440. name: "Normal",
  4441. height: math.unit(5 + 5 / 12, "feet")
  4442. }
  4443. ]
  4444. ))
  4445. characterMakers.push(() => makeCharacter(
  4446. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4447. {
  4448. front: {
  4449. height: math.unit(6, "feet"),
  4450. weight: math.unit(300, "lbs"),
  4451. name: "Front",
  4452. image: {
  4453. source: "./media/characters/tyrnn/front.svg"
  4454. }
  4455. }
  4456. },
  4457. [
  4458. {
  4459. name: "Main Height",
  4460. height: math.unit(355, "feet"),
  4461. default: true
  4462. },
  4463. {
  4464. name: "Fave. Height",
  4465. height: math.unit(2400, "feet")
  4466. }
  4467. ]
  4468. ))
  4469. characterMakers.push(() => makeCharacter(
  4470. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4471. {
  4472. front: {
  4473. height: math.unit(6, "feet"),
  4474. weight: math.unit(300, "lbs"),
  4475. name: "Front",
  4476. image: {
  4477. source: "./media/characters/appledectomy/front.svg"
  4478. }
  4479. }
  4480. },
  4481. [
  4482. {
  4483. name: "Macro",
  4484. height: math.unit(2500, "feet")
  4485. },
  4486. {
  4487. name: "Megamacro",
  4488. height: math.unit(50, "miles"),
  4489. default: true
  4490. },
  4491. {
  4492. name: "Gigamacro",
  4493. height: math.unit(5000, "miles")
  4494. },
  4495. {
  4496. name: "Teramacro",
  4497. height: math.unit(250000, "miles")
  4498. },
  4499. ]
  4500. ))
  4501. characterMakers.push(() => makeCharacter(
  4502. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4503. {
  4504. front: {
  4505. height: math.unit(6, "feet"),
  4506. weight: math.unit(200, "lbs"),
  4507. name: "Front",
  4508. image: {
  4509. source: "./media/characters/vulpes/front.svg",
  4510. extra: 573 / 543,
  4511. bottom: 0.033
  4512. }
  4513. },
  4514. side: {
  4515. height: math.unit(6, "feet"),
  4516. weight: math.unit(200, "lbs"),
  4517. name: "Side",
  4518. image: {
  4519. source: "./media/characters/vulpes/side.svg",
  4520. extra: 577 / 549,
  4521. bottom: 11 / 588
  4522. }
  4523. },
  4524. back: {
  4525. height: math.unit(6, "feet"),
  4526. weight: math.unit(200, "lbs"),
  4527. name: "Back",
  4528. image: {
  4529. source: "./media/characters/vulpes/back.svg",
  4530. extra: 573 / 549,
  4531. bottom: 20 / 593
  4532. }
  4533. },
  4534. feet: {
  4535. height: math.unit(1.276, "feet"),
  4536. name: "Feet",
  4537. image: {
  4538. source: "./media/characters/vulpes/feet.svg"
  4539. }
  4540. },
  4541. maw: {
  4542. height: math.unit(1.18, "feet"),
  4543. name: "Maw",
  4544. image: {
  4545. source: "./media/characters/vulpes/maw.svg"
  4546. }
  4547. },
  4548. },
  4549. [
  4550. {
  4551. name: "Micro",
  4552. height: math.unit(2, "inches")
  4553. },
  4554. {
  4555. name: "Normal",
  4556. height: math.unit(6.3, "feet")
  4557. },
  4558. {
  4559. name: "Macro",
  4560. height: math.unit(850, "feet")
  4561. },
  4562. {
  4563. name: "Megamacro",
  4564. height: math.unit(7500, "feet"),
  4565. default: true
  4566. },
  4567. {
  4568. name: "Gigamacro",
  4569. height: math.unit(570000, "miles")
  4570. }
  4571. ]
  4572. ))
  4573. characterMakers.push(() => makeCharacter(
  4574. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4575. {
  4576. front: {
  4577. height: math.unit(6, "feet"),
  4578. weight: math.unit(210, "lbs"),
  4579. name: "Front",
  4580. image: {
  4581. source: "./media/characters/rain-fallen/front.svg"
  4582. }
  4583. },
  4584. side: {
  4585. height: math.unit(6, "feet"),
  4586. weight: math.unit(210, "lbs"),
  4587. name: "Side",
  4588. image: {
  4589. source: "./media/characters/rain-fallen/side.svg"
  4590. }
  4591. },
  4592. back: {
  4593. height: math.unit(6, "feet"),
  4594. weight: math.unit(210, "lbs"),
  4595. name: "Back",
  4596. image: {
  4597. source: "./media/characters/rain-fallen/back.svg"
  4598. }
  4599. },
  4600. feral: {
  4601. height: math.unit(9, "feet"),
  4602. weight: math.unit(700, "lbs"),
  4603. name: "Feral",
  4604. image: {
  4605. source: "./media/characters/rain-fallen/feral.svg"
  4606. }
  4607. },
  4608. },
  4609. [
  4610. {
  4611. name: "Meddling with Mortals",
  4612. height: math.unit(8 + 8/12, "feet")
  4613. },
  4614. {
  4615. name: "Normal",
  4616. height: math.unit(5, "meter")
  4617. },
  4618. {
  4619. name: "Macro",
  4620. height: math.unit(150, "meter"),
  4621. default: true
  4622. },
  4623. {
  4624. name: "Megamacro",
  4625. height: math.unit(278e6, "meter")
  4626. },
  4627. {
  4628. name: "Gigamacro",
  4629. height: math.unit(2e9, "meter")
  4630. },
  4631. {
  4632. name: "Teramacro",
  4633. height: math.unit(8e12, "meter")
  4634. },
  4635. {
  4636. name: "Devourer",
  4637. height: math.unit(14, "zettameters")
  4638. },
  4639. {
  4640. name: "Scarlet King",
  4641. height: math.unit(18, "yottameters")
  4642. },
  4643. {
  4644. name: "Void",
  4645. height: math.unit(1e88, "yottameters")
  4646. }
  4647. ]
  4648. ))
  4649. characterMakers.push(() => makeCharacter(
  4650. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4651. {
  4652. standing: {
  4653. height: math.unit(6, "feet"),
  4654. weight: math.unit(180, "lbs"),
  4655. name: "Standing",
  4656. image: {
  4657. source: "./media/characters/zaakira/standing.svg",
  4658. extra: 1599/1504,
  4659. bottom: 39/1638
  4660. }
  4661. },
  4662. laying: {
  4663. height: math.unit(3, "feet"),
  4664. weight: math.unit(180, "lbs"),
  4665. name: "Laying",
  4666. image: {
  4667. source: "./media/characters/zaakira/laying.svg"
  4668. }
  4669. },
  4670. },
  4671. [
  4672. {
  4673. name: "Normal",
  4674. height: math.unit(12, "feet")
  4675. },
  4676. {
  4677. name: "Macro",
  4678. height: math.unit(279, "feet"),
  4679. default: true
  4680. }
  4681. ]
  4682. ))
  4683. characterMakers.push(() => makeCharacter(
  4684. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4685. {
  4686. femSfw: {
  4687. height: math.unit(8, "feet"),
  4688. weight: math.unit(350, "lb"),
  4689. name: "Fem",
  4690. image: {
  4691. source: "./media/characters/sigvald/fem-sfw.svg",
  4692. extra: 182 / 164,
  4693. bottom: 8.7 / 190.5
  4694. }
  4695. },
  4696. femNsfw: {
  4697. height: math.unit(8, "feet"),
  4698. weight: math.unit(350, "lb"),
  4699. name: "Fem (NSFW)",
  4700. image: {
  4701. source: "./media/characters/sigvald/fem-nsfw.svg",
  4702. extra: 182 / 164,
  4703. bottom: 8.7 / 190.5
  4704. }
  4705. },
  4706. maleNsfw: {
  4707. height: math.unit(8, "feet"),
  4708. weight: math.unit(350, "lb"),
  4709. name: "Male (NSFW)",
  4710. image: {
  4711. source: "./media/characters/sigvald/male-nsfw.svg",
  4712. extra: 182 / 164,
  4713. bottom: 8.7 / 190.5
  4714. }
  4715. },
  4716. hermNsfw: {
  4717. height: math.unit(8, "feet"),
  4718. weight: math.unit(350, "lb"),
  4719. name: "Herm (NSFW)",
  4720. image: {
  4721. source: "./media/characters/sigvald/herm-nsfw.svg",
  4722. extra: 182 / 164,
  4723. bottom: 8.7 / 190.5
  4724. }
  4725. },
  4726. dick: {
  4727. height: math.unit(2.36, "feet"),
  4728. name: "Dick",
  4729. image: {
  4730. source: "./media/characters/sigvald/dick.svg"
  4731. }
  4732. },
  4733. eye: {
  4734. height: math.unit(0.31, "feet"),
  4735. name: "Eye",
  4736. image: {
  4737. source: "./media/characters/sigvald/eye.svg"
  4738. }
  4739. },
  4740. mouth: {
  4741. height: math.unit(0.92, "feet"),
  4742. name: "Mouth",
  4743. image: {
  4744. source: "./media/characters/sigvald/mouth.svg"
  4745. }
  4746. },
  4747. paws: {
  4748. height: math.unit(2.2, "feet"),
  4749. name: "Paws",
  4750. image: {
  4751. source: "./media/characters/sigvald/paws.svg"
  4752. }
  4753. }
  4754. },
  4755. [
  4756. {
  4757. name: "Normal",
  4758. height: math.unit(8, "feet")
  4759. },
  4760. {
  4761. name: "Large",
  4762. height: math.unit(12, "feet")
  4763. },
  4764. {
  4765. name: "Larger",
  4766. height: math.unit(20, "feet")
  4767. },
  4768. {
  4769. name: "Macro",
  4770. height: math.unit(150, "feet")
  4771. },
  4772. {
  4773. name: "Macro+",
  4774. height: math.unit(200, "feet"),
  4775. default: true
  4776. },
  4777. ]
  4778. ))
  4779. characterMakers.push(() => makeCharacter(
  4780. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4781. {
  4782. side: {
  4783. height: math.unit(12, "feet"),
  4784. weight: math.unit(2000, "kg"),
  4785. name: "Side",
  4786. image: {
  4787. source: "./media/characters/scott/side.svg",
  4788. extra: 754 / 724,
  4789. bottom: 0.069
  4790. }
  4791. },
  4792. upright: {
  4793. height: math.unit(12, "feet"),
  4794. weight: math.unit(2000, "kg"),
  4795. name: "Upright",
  4796. image: {
  4797. source: "./media/characters/scott/upright.svg",
  4798. extra: 3881 / 3722,
  4799. bottom: 0.05
  4800. }
  4801. },
  4802. },
  4803. [
  4804. {
  4805. name: "Normal",
  4806. height: math.unit(12, "feet"),
  4807. default: true
  4808. },
  4809. ]
  4810. ))
  4811. characterMakers.push(() => makeCharacter(
  4812. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4813. {
  4814. side: {
  4815. height: math.unit(8, "meters"),
  4816. weight: math.unit(84755, "lbs"),
  4817. name: "Side",
  4818. image: {
  4819. source: "./media/characters/tobias/side.svg",
  4820. extra: 1474 / 1096,
  4821. bottom: 38.9 / 1513.1235
  4822. }
  4823. },
  4824. },
  4825. [
  4826. {
  4827. name: "Normal",
  4828. height: math.unit(8, "meters"),
  4829. default: true
  4830. },
  4831. ]
  4832. ))
  4833. characterMakers.push(() => makeCharacter(
  4834. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4835. {
  4836. front: {
  4837. height: math.unit(5.5, "feet"),
  4838. weight: math.unit(400, "lbs"),
  4839. name: "Front",
  4840. image: {
  4841. source: "./media/characters/kieran/front.svg",
  4842. extra: 2694 / 2364,
  4843. bottom: 217 / 2908
  4844. }
  4845. },
  4846. side: {
  4847. height: math.unit(5.5, "feet"),
  4848. weight: math.unit(400, "lbs"),
  4849. name: "Side",
  4850. image: {
  4851. source: "./media/characters/kieran/side.svg",
  4852. extra: 875 / 777,
  4853. bottom: 84.6 / 959
  4854. }
  4855. },
  4856. },
  4857. [
  4858. {
  4859. name: "Normal",
  4860. height: math.unit(5.5, "feet"),
  4861. default: true
  4862. },
  4863. ]
  4864. ))
  4865. characterMakers.push(() => makeCharacter(
  4866. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4867. {
  4868. side: {
  4869. height: math.unit(2, "meters"),
  4870. weight: math.unit(70, "kg"),
  4871. name: "Side",
  4872. image: {
  4873. source: "./media/characters/sanya/side.svg",
  4874. bottom: 0.02,
  4875. extra: 1.02
  4876. }
  4877. },
  4878. },
  4879. [
  4880. {
  4881. name: "Small",
  4882. height: math.unit(2, "meters")
  4883. },
  4884. {
  4885. name: "Normal",
  4886. height: math.unit(3, "meters")
  4887. },
  4888. {
  4889. name: "Macro",
  4890. height: math.unit(16, "meters"),
  4891. default: true
  4892. },
  4893. ]
  4894. ))
  4895. characterMakers.push(() => makeCharacter(
  4896. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4897. {
  4898. front: {
  4899. height: math.unit(2, "meters"),
  4900. weight: math.unit(120, "kg"),
  4901. name: "Front",
  4902. image: {
  4903. source: "./media/characters/miranda/front.svg",
  4904. extra: 195 / 185,
  4905. bottom: 10.9 / 206.5
  4906. }
  4907. },
  4908. back: {
  4909. height: math.unit(2, "meters"),
  4910. weight: math.unit(120, "kg"),
  4911. name: "Back",
  4912. image: {
  4913. source: "./media/characters/miranda/back.svg",
  4914. extra: 201 / 193,
  4915. bottom: 2.3 / 203.7
  4916. }
  4917. },
  4918. },
  4919. [
  4920. {
  4921. name: "Normal",
  4922. height: math.unit(10, "feet"),
  4923. default: true
  4924. }
  4925. ]
  4926. ))
  4927. characterMakers.push(() => makeCharacter(
  4928. { name: "James", species: ["deer"], tags: ["anthro"] },
  4929. {
  4930. side: {
  4931. height: math.unit(2, "meters"),
  4932. weight: math.unit(100, "kg"),
  4933. name: "Front",
  4934. image: {
  4935. source: "./media/characters/james/front.svg",
  4936. extra: 10 / 8.5
  4937. }
  4938. },
  4939. },
  4940. [
  4941. {
  4942. name: "Normal",
  4943. height: math.unit(8.5, "feet"),
  4944. default: true
  4945. }
  4946. ]
  4947. ))
  4948. characterMakers.push(() => makeCharacter(
  4949. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4950. {
  4951. side: {
  4952. height: math.unit(9.5, "feet"),
  4953. weight: math.unit(2500, "lbs"),
  4954. name: "Side",
  4955. image: {
  4956. source: "./media/characters/heather/side.svg"
  4957. }
  4958. },
  4959. },
  4960. [
  4961. {
  4962. name: "Normal",
  4963. height: math.unit(9.5, "feet"),
  4964. default: true
  4965. }
  4966. ]
  4967. ))
  4968. characterMakers.push(() => makeCharacter(
  4969. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4970. {
  4971. side: {
  4972. height: math.unit(6.5, "feet"),
  4973. weight: math.unit(400, "lbs"),
  4974. name: "Side",
  4975. image: {
  4976. source: "./media/characters/lukas/side.svg",
  4977. extra: 7.25 / 6.5
  4978. }
  4979. },
  4980. },
  4981. [
  4982. {
  4983. name: "Normal",
  4984. height: math.unit(6.5, "feet"),
  4985. default: true
  4986. }
  4987. ]
  4988. ))
  4989. characterMakers.push(() => makeCharacter(
  4990. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4991. {
  4992. side: {
  4993. height: math.unit(5, "feet"),
  4994. weight: math.unit(3000, "lbs"),
  4995. name: "Side",
  4996. image: {
  4997. source: "./media/characters/louise/side.svg"
  4998. }
  4999. },
  5000. },
  5001. [
  5002. {
  5003. name: "Normal",
  5004. height: math.unit(5, "feet"),
  5005. default: true
  5006. }
  5007. ]
  5008. ))
  5009. characterMakers.push(() => makeCharacter(
  5010. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5011. {
  5012. side: {
  5013. height: math.unit(6, "feet"),
  5014. weight: math.unit(150, "lbs"),
  5015. name: "Side",
  5016. image: {
  5017. source: "./media/characters/ramona/side.svg"
  5018. }
  5019. },
  5020. },
  5021. [
  5022. {
  5023. name: "Normal",
  5024. height: math.unit(5.3, "meters"),
  5025. default: true
  5026. },
  5027. {
  5028. name: "Macro",
  5029. height: math.unit(20, "stories")
  5030. },
  5031. {
  5032. name: "Macro+",
  5033. height: math.unit(50, "stories")
  5034. },
  5035. ]
  5036. ))
  5037. characterMakers.push(() => makeCharacter(
  5038. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5039. {
  5040. standing: {
  5041. height: math.unit(5.75, "feet"),
  5042. weight: math.unit(160, "lbs"),
  5043. name: "Standing",
  5044. image: {
  5045. source: "./media/characters/deerpuff/standing.svg",
  5046. extra: 682 / 624
  5047. }
  5048. },
  5049. sitting: {
  5050. height: math.unit(5.75 / 1.79, "feet"),
  5051. weight: math.unit(160, "lbs"),
  5052. name: "Sitting",
  5053. image: {
  5054. source: "./media/characters/deerpuff/sitting.svg",
  5055. bottom: 44 / 400,
  5056. extra: 1
  5057. }
  5058. },
  5059. taurLaying: {
  5060. height: math.unit(6, "feet"),
  5061. weight: math.unit(400, "lbs"),
  5062. name: "Taur (Laying)",
  5063. image: {
  5064. source: "./media/characters/deerpuff/taur-laying.svg"
  5065. }
  5066. },
  5067. },
  5068. [
  5069. {
  5070. name: "Puffball",
  5071. height: math.unit(6, "inches")
  5072. },
  5073. {
  5074. name: "Normalpuff",
  5075. height: math.unit(5.75, "feet")
  5076. },
  5077. {
  5078. name: "Macropuff",
  5079. height: math.unit(1500, "feet"),
  5080. default: true
  5081. },
  5082. {
  5083. name: "Megapuff",
  5084. height: math.unit(500, "miles")
  5085. },
  5086. {
  5087. name: "Gigapuff",
  5088. height: math.unit(250000, "miles")
  5089. },
  5090. {
  5091. name: "Omegapuff",
  5092. height: math.unit(1000, "lightyears")
  5093. },
  5094. ]
  5095. ))
  5096. characterMakers.push(() => makeCharacter(
  5097. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5098. {
  5099. stomping: {
  5100. height: math.unit(6, "feet"),
  5101. weight: math.unit(170, "lbs"),
  5102. name: "Stomping",
  5103. image: {
  5104. source: "./media/characters/vivian/stomping.svg"
  5105. }
  5106. },
  5107. sitting: {
  5108. height: math.unit(6 / 1.75, "feet"),
  5109. weight: math.unit(170, "lbs"),
  5110. name: "Sitting",
  5111. image: {
  5112. source: "./media/characters/vivian/sitting.svg",
  5113. bottom: 1 / 6.4,
  5114. extra: 1,
  5115. }
  5116. },
  5117. },
  5118. [
  5119. {
  5120. name: "Normal",
  5121. height: math.unit(7, "feet"),
  5122. default: true
  5123. },
  5124. {
  5125. name: "Macro",
  5126. height: math.unit(10, "stories")
  5127. },
  5128. {
  5129. name: "Macro+",
  5130. height: math.unit(30, "stories")
  5131. },
  5132. {
  5133. name: "Megamacro",
  5134. height: math.unit(10, "miles")
  5135. },
  5136. {
  5137. name: "Megamacro+",
  5138. height: math.unit(2750000, "meters")
  5139. },
  5140. ]
  5141. ))
  5142. characterMakers.push(() => makeCharacter(
  5143. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5144. {
  5145. front: {
  5146. height: math.unit(6, "feet"),
  5147. weight: math.unit(160, "lbs"),
  5148. name: "Front",
  5149. image: {
  5150. source: "./media/characters/prince/front.svg",
  5151. extra: 3400 / 3000
  5152. }
  5153. },
  5154. jumping: {
  5155. height: math.unit(6, "feet"),
  5156. weight: math.unit(160, "lbs"),
  5157. name: "Jumping",
  5158. image: {
  5159. source: "./media/characters/prince/jump.svg",
  5160. extra: 2555 / 2134
  5161. }
  5162. },
  5163. },
  5164. [
  5165. {
  5166. name: "Normal",
  5167. height: math.unit(7.75, "feet"),
  5168. default: true
  5169. },
  5170. {
  5171. name: "Not cute",
  5172. height: math.unit(17, "feet")
  5173. },
  5174. {
  5175. name: "I said NOT",
  5176. height: math.unit(91, "feet")
  5177. },
  5178. {
  5179. name: "Please stop",
  5180. height: math.unit(560, "feet")
  5181. },
  5182. {
  5183. name: "What have you done",
  5184. height: math.unit(2200, "feet")
  5185. },
  5186. {
  5187. name: "Deer God",
  5188. height: math.unit(3.6, "miles")
  5189. },
  5190. ]
  5191. ))
  5192. characterMakers.push(() => makeCharacter(
  5193. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5194. {
  5195. standing: {
  5196. height: math.unit(6, "feet"),
  5197. weight: math.unit(300, "lbs"),
  5198. name: "Standing",
  5199. image: {
  5200. source: "./media/characters/psymon/standing.svg",
  5201. extra: 1888 / 1810,
  5202. bottom: 0.05
  5203. }
  5204. },
  5205. slithering: {
  5206. height: math.unit(6, "feet"),
  5207. weight: math.unit(300, "lbs"),
  5208. name: "Slithering",
  5209. image: {
  5210. source: "./media/characters/psymon/slithering.svg",
  5211. extra: 1330 / 1224
  5212. }
  5213. },
  5214. slitheringAlt: {
  5215. height: math.unit(6, "feet"),
  5216. weight: math.unit(300, "lbs"),
  5217. name: "Slithering (Alt)",
  5218. image: {
  5219. source: "./media/characters/psymon/slithering-alt.svg",
  5220. extra: 1330 / 1224
  5221. }
  5222. },
  5223. },
  5224. [
  5225. {
  5226. name: "Normal",
  5227. height: math.unit(11.25, "feet"),
  5228. default: true
  5229. },
  5230. {
  5231. name: "Large",
  5232. height: math.unit(27, "feet")
  5233. },
  5234. {
  5235. name: "Giant",
  5236. height: math.unit(87, "feet")
  5237. },
  5238. {
  5239. name: "Macro",
  5240. height: math.unit(365, "feet")
  5241. },
  5242. {
  5243. name: "Megamacro",
  5244. height: math.unit(3, "miles")
  5245. },
  5246. {
  5247. name: "World Serpent",
  5248. height: math.unit(8000, "miles")
  5249. },
  5250. ]
  5251. ))
  5252. characterMakers.push(() => makeCharacter(
  5253. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5254. {
  5255. front: {
  5256. height: math.unit(6, "feet"),
  5257. weight: math.unit(180, "lbs"),
  5258. name: "Front",
  5259. image: {
  5260. source: "./media/characters/daimos/front.svg",
  5261. extra: 4160 / 3897,
  5262. bottom: 0.021
  5263. }
  5264. }
  5265. },
  5266. [
  5267. {
  5268. name: "Normal",
  5269. height: math.unit(8, "feet"),
  5270. default: true
  5271. },
  5272. {
  5273. name: "Big Dog",
  5274. height: math.unit(22, "feet")
  5275. },
  5276. {
  5277. name: "Macro",
  5278. height: math.unit(127, "feet")
  5279. },
  5280. {
  5281. name: "Megamacro",
  5282. height: math.unit(3600, "feet")
  5283. },
  5284. ]
  5285. ))
  5286. characterMakers.push(() => makeCharacter(
  5287. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5288. {
  5289. side: {
  5290. height: math.unit(6, "feet"),
  5291. weight: math.unit(180, "lbs"),
  5292. name: "Side",
  5293. image: {
  5294. source: "./media/characters/blake/side.svg",
  5295. extra: 1212 / 1120,
  5296. bottom: 0.05
  5297. }
  5298. },
  5299. crouched: {
  5300. height: math.unit(6 * 0.57, "feet"),
  5301. weight: math.unit(180, "lbs"),
  5302. name: "Crouched",
  5303. image: {
  5304. source: "./media/characters/blake/crouched.svg",
  5305. extra: 840 / 587,
  5306. bottom: 0.04
  5307. }
  5308. },
  5309. bent: {
  5310. height: math.unit(6 * 0.75, "feet"),
  5311. weight: math.unit(180, "lbs"),
  5312. name: "Bent",
  5313. image: {
  5314. source: "./media/characters/blake/bent.svg",
  5315. extra: 592 / 544,
  5316. bottom: 0.035
  5317. }
  5318. },
  5319. },
  5320. [
  5321. {
  5322. name: "Normal",
  5323. height: math.unit(8 + 1 / 6, "feet"),
  5324. default: true
  5325. },
  5326. {
  5327. name: "Big Backside",
  5328. height: math.unit(37, "feet")
  5329. },
  5330. {
  5331. name: "Subway Shredder",
  5332. height: math.unit(72, "feet")
  5333. },
  5334. {
  5335. name: "City Carver",
  5336. height: math.unit(1675, "feet")
  5337. },
  5338. {
  5339. name: "Tectonic Tweaker",
  5340. height: math.unit(2300, "miles")
  5341. },
  5342. ]
  5343. ))
  5344. characterMakers.push(() => makeCharacter(
  5345. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5346. {
  5347. front: {
  5348. height: math.unit(6, "feet"),
  5349. weight: math.unit(180, "lbs"),
  5350. name: "Front",
  5351. image: {
  5352. source: "./media/characters/guisetto/front.svg",
  5353. extra: 856 / 817,
  5354. bottom: 0.06
  5355. }
  5356. },
  5357. airborne: {
  5358. height: math.unit(6, "feet"),
  5359. weight: math.unit(180, "lbs"),
  5360. name: "Airborne",
  5361. image: {
  5362. source: "./media/characters/guisetto/airborne.svg",
  5363. extra: 584 / 525
  5364. }
  5365. },
  5366. },
  5367. [
  5368. {
  5369. name: "Normal",
  5370. height: math.unit(10 + 11 / 12, "feet"),
  5371. default: true
  5372. },
  5373. {
  5374. name: "Large",
  5375. height: math.unit(35, "feet")
  5376. },
  5377. {
  5378. name: "Macro",
  5379. height: math.unit(475, "feet")
  5380. },
  5381. ]
  5382. ))
  5383. characterMakers.push(() => makeCharacter(
  5384. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5385. {
  5386. front: {
  5387. height: math.unit(6, "feet"),
  5388. weight: math.unit(180, "lbs"),
  5389. name: "Front",
  5390. image: {
  5391. source: "./media/characters/luxor/front.svg",
  5392. extra: 2940 / 2152
  5393. }
  5394. },
  5395. back: {
  5396. height: math.unit(6, "feet"),
  5397. weight: math.unit(180, "lbs"),
  5398. name: "Back",
  5399. image: {
  5400. source: "./media/characters/luxor/back.svg",
  5401. extra: 1083 / 960
  5402. }
  5403. },
  5404. },
  5405. [
  5406. {
  5407. name: "Normal",
  5408. height: math.unit(5 + 5 / 6, "feet"),
  5409. default: true
  5410. },
  5411. {
  5412. name: "Lamp",
  5413. height: math.unit(50, "feet")
  5414. },
  5415. {
  5416. name: "Lämp",
  5417. height: math.unit(300, "feet")
  5418. },
  5419. {
  5420. name: "The sun is a lamp",
  5421. height: math.unit(250000, "miles")
  5422. },
  5423. ]
  5424. ))
  5425. characterMakers.push(() => makeCharacter(
  5426. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5427. {
  5428. front: {
  5429. height: math.unit(6, "feet"),
  5430. weight: math.unit(50, "lbs"),
  5431. name: "Front",
  5432. image: {
  5433. source: "./media/characters/huoyan/front.svg"
  5434. }
  5435. },
  5436. side: {
  5437. height: math.unit(6, "feet"),
  5438. weight: math.unit(180, "lbs"),
  5439. name: "Side",
  5440. image: {
  5441. source: "./media/characters/huoyan/side.svg"
  5442. }
  5443. },
  5444. },
  5445. [
  5446. {
  5447. name: "Chef",
  5448. height: math.unit(9, "feet")
  5449. },
  5450. {
  5451. name: "Normal",
  5452. height: math.unit(65, "feet"),
  5453. default: true
  5454. },
  5455. {
  5456. name: "Macro",
  5457. height: math.unit(780, "feet")
  5458. },
  5459. {
  5460. name: "Flaming Mountain",
  5461. height: math.unit(4.8, "miles")
  5462. },
  5463. {
  5464. name: "Celestial",
  5465. height: math.unit(765000, "miles")
  5466. },
  5467. ]
  5468. ))
  5469. characterMakers.push(() => makeCharacter(
  5470. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5471. {
  5472. front: {
  5473. height: math.unit(5 + 3 / 4, "feet"),
  5474. weight: math.unit(120, "lbs"),
  5475. name: "Front",
  5476. image: {
  5477. source: "./media/characters/tails/front.svg"
  5478. }
  5479. }
  5480. },
  5481. [
  5482. {
  5483. name: "Normal",
  5484. height: math.unit(5 + 3 / 4, "feet"),
  5485. default: true
  5486. }
  5487. ]
  5488. ))
  5489. characterMakers.push(() => makeCharacter(
  5490. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5491. {
  5492. front: {
  5493. height: math.unit(4, "feet"),
  5494. weight: math.unit(50, "lbs"),
  5495. name: "Front",
  5496. image: {
  5497. source: "./media/characters/rainy/front.svg"
  5498. }
  5499. }
  5500. },
  5501. [
  5502. {
  5503. name: "Macro",
  5504. height: math.unit(800, "feet"),
  5505. default: true
  5506. }
  5507. ]
  5508. ))
  5509. characterMakers.push(() => makeCharacter(
  5510. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5511. {
  5512. front: {
  5513. height: math.unit(6, "feet"),
  5514. weight: math.unit(150, "lbs"),
  5515. name: "Front",
  5516. image: {
  5517. source: "./media/characters/rainier/front.svg"
  5518. }
  5519. }
  5520. },
  5521. [
  5522. {
  5523. name: "Micro",
  5524. height: math.unit(2, "mm"),
  5525. default: true
  5526. }
  5527. ]
  5528. ))
  5529. characterMakers.push(() => makeCharacter(
  5530. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5531. {
  5532. front: {
  5533. height: math.unit(8 + 4/12, "feet"),
  5534. name: "Front",
  5535. image: {
  5536. source: "./media/characters/andy-renard/front.svg",
  5537. extra: 1839/1726,
  5538. bottom: 134/1973
  5539. }
  5540. },
  5541. back: {
  5542. height: math.unit(8 + 4/12, "feet"),
  5543. name: "Back",
  5544. image: {
  5545. source: "./media/characters/andy-renard/back.svg",
  5546. extra: 1838/1710,
  5547. bottom: 105/1943
  5548. }
  5549. },
  5550. },
  5551. [
  5552. {
  5553. name: "Tall",
  5554. height: math.unit(8 + 4/12, "feet")
  5555. },
  5556. {
  5557. name: "Mini Macro",
  5558. height: math.unit(15, "feet"),
  5559. default: true
  5560. },
  5561. {
  5562. name: "Macro",
  5563. height: math.unit(100, "feet")
  5564. },
  5565. {
  5566. name: "Mega Macro",
  5567. height: math.unit(1000, "feet")
  5568. },
  5569. {
  5570. name: "Giga Macro",
  5571. height: math.unit(10, "miles")
  5572. },
  5573. {
  5574. name: "God Macro",
  5575. height: math.unit(1, "multiverse")
  5576. },
  5577. ]
  5578. ))
  5579. characterMakers.push(() => makeCharacter(
  5580. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5581. {
  5582. front: {
  5583. height: math.unit(6, "feet"),
  5584. weight: math.unit(210, "lbs"),
  5585. name: "Front",
  5586. image: {
  5587. source: "./media/characters/cimmaron/front-sfw.svg",
  5588. extra: 701 / 676,
  5589. bottom: 0.046
  5590. }
  5591. },
  5592. back: {
  5593. height: math.unit(6, "feet"),
  5594. weight: math.unit(210, "lbs"),
  5595. name: "Back",
  5596. image: {
  5597. source: "./media/characters/cimmaron/back-sfw.svg",
  5598. extra: 701 / 676,
  5599. bottom: 0.046
  5600. }
  5601. },
  5602. frontNsfw: {
  5603. height: math.unit(6, "feet"),
  5604. weight: math.unit(210, "lbs"),
  5605. name: "Front (NSFW)",
  5606. image: {
  5607. source: "./media/characters/cimmaron/front-nsfw.svg",
  5608. extra: 701 / 676,
  5609. bottom: 0.046
  5610. }
  5611. },
  5612. backNsfw: {
  5613. height: math.unit(6, "feet"),
  5614. weight: math.unit(210, "lbs"),
  5615. name: "Back (NSFW)",
  5616. image: {
  5617. source: "./media/characters/cimmaron/back-nsfw.svg",
  5618. extra: 701 / 676,
  5619. bottom: 0.046
  5620. }
  5621. },
  5622. dick: {
  5623. height: math.unit(1.714, "feet"),
  5624. name: "Dick",
  5625. image: {
  5626. source: "./media/characters/cimmaron/dick.svg"
  5627. }
  5628. },
  5629. },
  5630. [
  5631. {
  5632. name: "Normal",
  5633. height: math.unit(6, "feet"),
  5634. default: true
  5635. },
  5636. {
  5637. name: "Macro Mayor",
  5638. height: math.unit(350, "meters")
  5639. },
  5640. ]
  5641. ))
  5642. characterMakers.push(() => makeCharacter(
  5643. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5644. {
  5645. front: {
  5646. height: math.unit(6, "feet"),
  5647. weight: math.unit(200, "lbs"),
  5648. name: "Front",
  5649. image: {
  5650. source: "./media/characters/akari/front.svg",
  5651. extra: 962 / 901,
  5652. bottom: 0.04
  5653. }
  5654. }
  5655. },
  5656. [
  5657. {
  5658. name: "Micro",
  5659. height: math.unit(5, "inches"),
  5660. default: true
  5661. },
  5662. {
  5663. name: "Normal",
  5664. height: math.unit(7, "feet")
  5665. },
  5666. ]
  5667. ))
  5668. characterMakers.push(() => makeCharacter(
  5669. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5670. {
  5671. front: {
  5672. height: math.unit(6, "feet"),
  5673. weight: math.unit(140, "lbs"),
  5674. name: "Front",
  5675. image: {
  5676. source: "./media/characters/cynosura/front.svg",
  5677. extra: 896 / 847
  5678. }
  5679. },
  5680. back: {
  5681. height: math.unit(6, "feet"),
  5682. weight: math.unit(140, "lbs"),
  5683. name: "Back",
  5684. image: {
  5685. source: "./media/characters/cynosura/back.svg",
  5686. extra: 1365 / 1250
  5687. }
  5688. },
  5689. },
  5690. [
  5691. {
  5692. name: "Micro",
  5693. height: math.unit(4, "inches")
  5694. },
  5695. {
  5696. name: "Normal",
  5697. height: math.unit(5.75, "feet"),
  5698. default: true
  5699. },
  5700. {
  5701. name: "Tall",
  5702. height: math.unit(10, "feet")
  5703. },
  5704. {
  5705. name: "Big",
  5706. height: math.unit(20, "feet")
  5707. },
  5708. {
  5709. name: "Macro",
  5710. height: math.unit(50, "feet")
  5711. },
  5712. ]
  5713. ))
  5714. characterMakers.push(() => makeCharacter(
  5715. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5716. {
  5717. front: {
  5718. height: math.unit(13 + 2/12, "feet"),
  5719. weight: math.unit(800, "kg"),
  5720. name: "Front",
  5721. image: {
  5722. source: "./media/characters/gin/front.svg",
  5723. extra: 1312/1191,
  5724. bottom: 45/1357
  5725. }
  5726. },
  5727. mouth: {
  5728. height: math.unit(2.39 * 1.8, "feet"),
  5729. name: "Mouth",
  5730. image: {
  5731. source: "./media/characters/gin/mouth.svg"
  5732. }
  5733. },
  5734. hand: {
  5735. height: math.unit(1.57 * 2.19, "feet"),
  5736. name: "Hand",
  5737. image: {
  5738. source: "./media/characters/gin/hand.svg"
  5739. }
  5740. },
  5741. foot: {
  5742. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5743. name: "Foot",
  5744. image: {
  5745. source: "./media/characters/gin/foot.svg"
  5746. }
  5747. },
  5748. sole: {
  5749. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5750. name: "Sole",
  5751. image: {
  5752. source: "./media/characters/gin/sole.svg"
  5753. }
  5754. },
  5755. },
  5756. [
  5757. {
  5758. name: "Very Small",
  5759. height: math.unit(13 + 2 / 12, "feet")
  5760. },
  5761. {
  5762. name: "Micro",
  5763. height: math.unit(600, "miles")
  5764. },
  5765. {
  5766. name: "Regular",
  5767. height: math.unit(20, "earths"),
  5768. default: true
  5769. },
  5770. {
  5771. name: "Macro",
  5772. height: math.unit(2.2, "solarradii")
  5773. },
  5774. {
  5775. name: "Teramacro",
  5776. height: math.unit(1.2, "galaxies")
  5777. },
  5778. {
  5779. name: "Omegamacro",
  5780. height: math.unit(200, "universes")
  5781. },
  5782. ]
  5783. ))
  5784. characterMakers.push(() => makeCharacter(
  5785. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5786. {
  5787. front: {
  5788. height: math.unit(6 + 1 / 6, "feet"),
  5789. weight: math.unit(178, "lbs"),
  5790. name: "Front",
  5791. image: {
  5792. source: "./media/characters/guy/front.svg"
  5793. }
  5794. }
  5795. },
  5796. [
  5797. {
  5798. name: "Normal",
  5799. height: math.unit(6 + 1 / 6, "feet"),
  5800. default: true
  5801. },
  5802. {
  5803. name: "Large",
  5804. height: math.unit(25 + 7 / 12, "feet")
  5805. },
  5806. {
  5807. name: "Macro",
  5808. height: math.unit(60 + 9 / 12, "feet")
  5809. },
  5810. {
  5811. name: "Macro+",
  5812. height: math.unit(246, "feet")
  5813. },
  5814. {
  5815. name: "Macro++",
  5816. height: math.unit(878, "feet")
  5817. }
  5818. ]
  5819. ))
  5820. characterMakers.push(() => makeCharacter(
  5821. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5822. {
  5823. front: {
  5824. height: math.unit(9, "feet"),
  5825. weight: math.unit(800, "lbs"),
  5826. name: "Front",
  5827. image: {
  5828. source: "./media/characters/tiberius/front.svg",
  5829. extra: 2295 / 2071
  5830. }
  5831. },
  5832. back: {
  5833. height: math.unit(9, "feet"),
  5834. weight: math.unit(800, "lbs"),
  5835. name: "Back",
  5836. image: {
  5837. source: "./media/characters/tiberius/back.svg",
  5838. extra: 2373 / 2160
  5839. }
  5840. },
  5841. },
  5842. [
  5843. {
  5844. name: "Normal",
  5845. height: math.unit(9, "feet"),
  5846. default: true
  5847. }
  5848. ]
  5849. ))
  5850. characterMakers.push(() => makeCharacter(
  5851. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5852. {
  5853. front: {
  5854. height: math.unit(6, "feet"),
  5855. weight: math.unit(600, "lbs"),
  5856. name: "Front",
  5857. image: {
  5858. source: "./media/characters/surgo/front.svg",
  5859. extra: 3591 / 2227
  5860. }
  5861. },
  5862. back: {
  5863. height: math.unit(6, "feet"),
  5864. weight: math.unit(600, "lbs"),
  5865. name: "Back",
  5866. image: {
  5867. source: "./media/characters/surgo/back.svg",
  5868. extra: 3557 / 2228
  5869. }
  5870. },
  5871. laying: {
  5872. height: math.unit(6 * 0.85, "feet"),
  5873. weight: math.unit(600, "lbs"),
  5874. name: "Laying",
  5875. image: {
  5876. source: "./media/characters/surgo/laying.svg"
  5877. }
  5878. },
  5879. },
  5880. [
  5881. {
  5882. name: "Normal",
  5883. height: math.unit(6, "feet"),
  5884. default: true
  5885. }
  5886. ]
  5887. ))
  5888. characterMakers.push(() => makeCharacter(
  5889. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5890. {
  5891. side: {
  5892. height: math.unit(6, "feet"),
  5893. weight: math.unit(150, "lbs"),
  5894. name: "Side",
  5895. image: {
  5896. source: "./media/characters/cibus/side.svg",
  5897. extra: 800 / 400
  5898. }
  5899. },
  5900. },
  5901. [
  5902. {
  5903. name: "Normal",
  5904. height: math.unit(6, "feet"),
  5905. default: true
  5906. }
  5907. ]
  5908. ))
  5909. characterMakers.push(() => makeCharacter(
  5910. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5911. {
  5912. front: {
  5913. height: math.unit(6, "feet"),
  5914. weight: math.unit(240, "lbs"),
  5915. name: "Front",
  5916. image: {
  5917. source: "./media/characters/nibbles/front.svg"
  5918. }
  5919. },
  5920. side: {
  5921. height: math.unit(6, "feet"),
  5922. weight: math.unit(240, "lbs"),
  5923. name: "Side",
  5924. image: {
  5925. source: "./media/characters/nibbles/side.svg"
  5926. }
  5927. },
  5928. },
  5929. [
  5930. {
  5931. name: "Normal",
  5932. height: math.unit(9, "feet"),
  5933. default: true
  5934. }
  5935. ]
  5936. ))
  5937. characterMakers.push(() => makeCharacter(
  5938. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5939. {
  5940. side: {
  5941. height: math.unit(5 + 1 / 6, "feet"),
  5942. weight: math.unit(130, "lbs"),
  5943. name: "Side",
  5944. image: {
  5945. source: "./media/characters/rikky/side.svg",
  5946. extra: 851 / 801
  5947. }
  5948. },
  5949. },
  5950. [
  5951. {
  5952. name: "Normal",
  5953. height: math.unit(5 + 1 / 6, "feet")
  5954. },
  5955. {
  5956. name: "Macro",
  5957. height: math.unit(152, "feet"),
  5958. default: true
  5959. },
  5960. {
  5961. name: "Megamacro",
  5962. height: math.unit(7, "miles")
  5963. }
  5964. ]
  5965. ))
  5966. characterMakers.push(() => makeCharacter(
  5967. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5968. {
  5969. side: {
  5970. height: math.unit(370, "cm"),
  5971. weight: math.unit(350, "lbs"),
  5972. name: "Side",
  5973. image: {
  5974. source: "./media/characters/malfressa/side.svg"
  5975. }
  5976. },
  5977. walking: {
  5978. height: math.unit(370, "cm"),
  5979. weight: math.unit(350, "lbs"),
  5980. name: "Walking",
  5981. image: {
  5982. source: "./media/characters/malfressa/walking.svg"
  5983. }
  5984. },
  5985. feral: {
  5986. height: math.unit(2500, "cm"),
  5987. weight: math.unit(100000, "lbs"),
  5988. name: "Feral",
  5989. image: {
  5990. source: "./media/characters/malfressa/feral.svg",
  5991. extra: 2108 / 837,
  5992. bottom: 0.02
  5993. }
  5994. },
  5995. },
  5996. [
  5997. {
  5998. name: "Normal",
  5999. height: math.unit(370, "cm")
  6000. },
  6001. {
  6002. name: "Macro",
  6003. height: math.unit(300, "meters"),
  6004. default: true
  6005. }
  6006. ]
  6007. ))
  6008. characterMakers.push(() => makeCharacter(
  6009. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6010. {
  6011. front: {
  6012. height: math.unit(6, "feet"),
  6013. weight: math.unit(60, "kg"),
  6014. name: "Front",
  6015. image: {
  6016. source: "./media/characters/jaro/front.svg"
  6017. }
  6018. },
  6019. back: {
  6020. height: math.unit(6, "feet"),
  6021. weight: math.unit(60, "kg"),
  6022. name: "Back",
  6023. image: {
  6024. source: "./media/characters/jaro/back.svg"
  6025. }
  6026. },
  6027. },
  6028. [
  6029. {
  6030. name: "Micro",
  6031. height: math.unit(7, "inches")
  6032. },
  6033. {
  6034. name: "Normal",
  6035. height: math.unit(5.5, "feet"),
  6036. default: true
  6037. },
  6038. {
  6039. name: "Minimacro",
  6040. height: math.unit(20, "feet")
  6041. },
  6042. {
  6043. name: "Macro",
  6044. height: math.unit(200, "meters")
  6045. }
  6046. ]
  6047. ))
  6048. characterMakers.push(() => makeCharacter(
  6049. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6050. {
  6051. front: {
  6052. height: math.unit(6, "feet"),
  6053. weight: math.unit(195, "lb"),
  6054. name: "Front",
  6055. image: {
  6056. source: "./media/characters/rogue/front.svg"
  6057. }
  6058. },
  6059. },
  6060. [
  6061. {
  6062. name: "Macro",
  6063. height: math.unit(90, "feet"),
  6064. default: true
  6065. },
  6066. ]
  6067. ))
  6068. characterMakers.push(() => makeCharacter(
  6069. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6070. {
  6071. front: {
  6072. height: math.unit(5 + 8 / 12, "feet"),
  6073. weight: math.unit(140, "lb"),
  6074. name: "Front",
  6075. image: {
  6076. source: "./media/characters/piper/front.svg",
  6077. extra: 3948/3655,
  6078. bottom: 0/3948
  6079. }
  6080. },
  6081. },
  6082. [
  6083. {
  6084. name: "Micro",
  6085. height: math.unit(2, "inches")
  6086. },
  6087. {
  6088. name: "Normal",
  6089. height: math.unit(5 + 8 / 12, "feet")
  6090. },
  6091. {
  6092. name: "Macro",
  6093. height: math.unit(250, "feet"),
  6094. default: true
  6095. },
  6096. {
  6097. name: "Megamacro",
  6098. height: math.unit(7, "miles")
  6099. },
  6100. ]
  6101. ))
  6102. characterMakers.push(() => makeCharacter(
  6103. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6104. {
  6105. front: {
  6106. height: math.unit(6, "feet"),
  6107. weight: math.unit(220, "lb"),
  6108. name: "Front",
  6109. image: {
  6110. source: "./media/characters/gemini/front.svg"
  6111. }
  6112. },
  6113. back: {
  6114. height: math.unit(6, "feet"),
  6115. weight: math.unit(220, "lb"),
  6116. name: "Back",
  6117. image: {
  6118. source: "./media/characters/gemini/back.svg"
  6119. }
  6120. },
  6121. kneeling: {
  6122. height: math.unit(6 / 1.5, "feet"),
  6123. weight: math.unit(220, "lb"),
  6124. name: "Kneeling",
  6125. image: {
  6126. source: "./media/characters/gemini/kneeling.svg",
  6127. bottom: 0.02
  6128. }
  6129. },
  6130. },
  6131. [
  6132. {
  6133. name: "Macro",
  6134. height: math.unit(300, "meters"),
  6135. default: true
  6136. },
  6137. {
  6138. name: "Megamacro",
  6139. height: math.unit(6900, "meters")
  6140. },
  6141. ]
  6142. ))
  6143. characterMakers.push(() => makeCharacter(
  6144. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6145. {
  6146. anthro: {
  6147. height: math.unit(2.35, "meters"),
  6148. weight: math.unit(73, "kg"),
  6149. name: "Anthro",
  6150. image: {
  6151. source: "./media/characters/alicia/anthro.svg",
  6152. extra: 2571 / 2385,
  6153. bottom: 75 / 2648
  6154. }
  6155. },
  6156. paw: {
  6157. height: math.unit(1.32, "feet"),
  6158. name: "Paw",
  6159. image: {
  6160. source: "./media/characters/alicia/paw.svg"
  6161. }
  6162. },
  6163. feral: {
  6164. height: math.unit(1.69, "meters"),
  6165. weight: math.unit(73, "kg"),
  6166. name: "Feral",
  6167. image: {
  6168. source: "./media/characters/alicia/feral.svg",
  6169. extra: 2123 / 1715,
  6170. bottom: 222 / 2349
  6171. }
  6172. },
  6173. },
  6174. [
  6175. {
  6176. name: "Normal",
  6177. height: math.unit(2.35, "meters")
  6178. },
  6179. {
  6180. name: "Macro",
  6181. height: math.unit(60, "meters"),
  6182. default: true
  6183. },
  6184. {
  6185. name: "Megamacro",
  6186. height: math.unit(10000, "kilometers")
  6187. },
  6188. ]
  6189. ))
  6190. characterMakers.push(() => makeCharacter(
  6191. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6192. {
  6193. front: {
  6194. height: math.unit(7, "feet"),
  6195. weight: math.unit(250, "lbs"),
  6196. name: "Front",
  6197. image: {
  6198. source: "./media/characters/archy/front.svg"
  6199. }
  6200. }
  6201. },
  6202. [
  6203. {
  6204. name: "Micro",
  6205. height: math.unit(1, "inch")
  6206. },
  6207. {
  6208. name: "Shorty",
  6209. height: math.unit(5, "feet")
  6210. },
  6211. {
  6212. name: "Normal",
  6213. height: math.unit(7, "feet")
  6214. },
  6215. {
  6216. name: "Macro",
  6217. height: math.unit(600, "meters"),
  6218. default: true
  6219. },
  6220. {
  6221. name: "Megamacro",
  6222. height: math.unit(1, "mile")
  6223. },
  6224. ]
  6225. ))
  6226. characterMakers.push(() => makeCharacter(
  6227. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6228. {
  6229. front: {
  6230. height: math.unit(1.65, "meters"),
  6231. weight: math.unit(74, "kg"),
  6232. name: "Front",
  6233. image: {
  6234. source: "./media/characters/berri/front.svg",
  6235. extra: 857 / 837,
  6236. bottom: 18 / 877
  6237. }
  6238. },
  6239. bum: {
  6240. height: math.unit(1.46, "feet"),
  6241. name: "Bum",
  6242. image: {
  6243. source: "./media/characters/berri/bum.svg"
  6244. }
  6245. },
  6246. mouth: {
  6247. height: math.unit(0.44, "feet"),
  6248. name: "Mouth",
  6249. image: {
  6250. source: "./media/characters/berri/mouth.svg"
  6251. }
  6252. },
  6253. paw: {
  6254. height: math.unit(0.826, "feet"),
  6255. name: "Paw",
  6256. image: {
  6257. source: "./media/characters/berri/paw.svg"
  6258. }
  6259. },
  6260. },
  6261. [
  6262. {
  6263. name: "Normal",
  6264. height: math.unit(1.65, "meters")
  6265. },
  6266. {
  6267. name: "Macro",
  6268. height: math.unit(60, "m"),
  6269. default: true
  6270. },
  6271. {
  6272. name: "Megamacro",
  6273. height: math.unit(9.213, "km")
  6274. },
  6275. {
  6276. name: "Planet Eater",
  6277. height: math.unit(489, "megameters")
  6278. },
  6279. {
  6280. name: "Teramacro",
  6281. height: math.unit(2471635000000, "meters")
  6282. },
  6283. {
  6284. name: "Examacro",
  6285. height: math.unit(8.0624e+26, "meters")
  6286. }
  6287. ]
  6288. ))
  6289. characterMakers.push(() => makeCharacter(
  6290. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6291. {
  6292. front: {
  6293. height: math.unit(1.72, "meters"),
  6294. weight: math.unit(68, "kg"),
  6295. name: "Front",
  6296. image: {
  6297. source: "./media/characters/lexi/front.svg"
  6298. }
  6299. }
  6300. },
  6301. [
  6302. {
  6303. name: "Very Smol",
  6304. height: math.unit(10, "mm")
  6305. },
  6306. {
  6307. name: "Micro",
  6308. height: math.unit(6.8, "cm"),
  6309. default: true
  6310. },
  6311. {
  6312. name: "Normal",
  6313. height: math.unit(1.72, "m")
  6314. }
  6315. ]
  6316. ))
  6317. characterMakers.push(() => makeCharacter(
  6318. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6319. {
  6320. front: {
  6321. height: math.unit(1.69, "meters"),
  6322. weight: math.unit(68, "kg"),
  6323. name: "Front",
  6324. image: {
  6325. source: "./media/characters/martin/front.svg",
  6326. extra: 596 / 581
  6327. }
  6328. }
  6329. },
  6330. [
  6331. {
  6332. name: "Micro",
  6333. height: math.unit(6.85, "cm"),
  6334. default: true
  6335. },
  6336. {
  6337. name: "Normal",
  6338. height: math.unit(1.69, "m")
  6339. }
  6340. ]
  6341. ))
  6342. characterMakers.push(() => makeCharacter(
  6343. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6344. {
  6345. front: {
  6346. height: math.unit(1.69, "meters"),
  6347. weight: math.unit(68, "kg"),
  6348. name: "Front",
  6349. image: {
  6350. source: "./media/characters/juno/front.svg"
  6351. }
  6352. }
  6353. },
  6354. [
  6355. {
  6356. name: "Micro",
  6357. height: math.unit(7, "cm")
  6358. },
  6359. {
  6360. name: "Normal",
  6361. height: math.unit(1.89, "m")
  6362. },
  6363. {
  6364. name: "Macro",
  6365. height: math.unit(353, "meters"),
  6366. default: true
  6367. }
  6368. ]
  6369. ))
  6370. characterMakers.push(() => makeCharacter(
  6371. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6372. {
  6373. front: {
  6374. height: math.unit(1.93, "meters"),
  6375. weight: math.unit(83, "kg"),
  6376. name: "Front",
  6377. image: {
  6378. source: "./media/characters/samantha/front.svg"
  6379. }
  6380. },
  6381. frontClothed: {
  6382. height: math.unit(1.93, "meters"),
  6383. weight: math.unit(83, "kg"),
  6384. name: "Front (Clothed)",
  6385. image: {
  6386. source: "./media/characters/samantha/front-clothed.svg"
  6387. }
  6388. },
  6389. back: {
  6390. height: math.unit(1.93, "meters"),
  6391. weight: math.unit(83, "kg"),
  6392. name: "Back",
  6393. image: {
  6394. source: "./media/characters/samantha/back.svg"
  6395. }
  6396. },
  6397. },
  6398. [
  6399. {
  6400. name: "Normal",
  6401. height: math.unit(1.93, "m")
  6402. },
  6403. {
  6404. name: "Macro",
  6405. height: math.unit(74, "meters"),
  6406. default: true
  6407. },
  6408. {
  6409. name: "Macro+",
  6410. height: math.unit(223, "meters"),
  6411. },
  6412. {
  6413. name: "Megamacro",
  6414. height: math.unit(8381, "meters"),
  6415. },
  6416. {
  6417. name: "Megamacro+",
  6418. height: math.unit(12000, "kilometers")
  6419. },
  6420. ]
  6421. ))
  6422. characterMakers.push(() => makeCharacter(
  6423. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6424. {
  6425. front: {
  6426. height: math.unit(1.92, "meters"),
  6427. weight: math.unit(80, "kg"),
  6428. name: "Front",
  6429. image: {
  6430. source: "./media/characters/dr-clay/front.svg"
  6431. }
  6432. },
  6433. frontClothed: {
  6434. height: math.unit(1.92, "meters"),
  6435. weight: math.unit(80, "kg"),
  6436. name: "Front (Clothed)",
  6437. image: {
  6438. source: "./media/characters/dr-clay/front-clothed.svg"
  6439. }
  6440. }
  6441. },
  6442. [
  6443. {
  6444. name: "Normal",
  6445. height: math.unit(1.92, "m")
  6446. },
  6447. {
  6448. name: "Macro",
  6449. height: math.unit(214, "meters"),
  6450. default: true
  6451. },
  6452. {
  6453. name: "Macro+",
  6454. height: math.unit(12.237, "meters"),
  6455. },
  6456. {
  6457. name: "Megamacro",
  6458. height: math.unit(557, "megameters"),
  6459. },
  6460. {
  6461. name: "Unimaginable",
  6462. height: math.unit(120e9, "lightyears")
  6463. },
  6464. ]
  6465. ))
  6466. characterMakers.push(() => makeCharacter(
  6467. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6468. {
  6469. front: {
  6470. height: math.unit(2, "meters"),
  6471. weight: math.unit(80, "kg"),
  6472. name: "Front",
  6473. image: {
  6474. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6475. }
  6476. }
  6477. },
  6478. [
  6479. {
  6480. name: "Teramacro",
  6481. height: math.unit(500000, "lightyears"),
  6482. default: true
  6483. },
  6484. ]
  6485. ))
  6486. characterMakers.push(() => makeCharacter(
  6487. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6488. {
  6489. front: {
  6490. height: math.unit(2, "meters"),
  6491. weight: math.unit(150, "kg"),
  6492. name: "Front",
  6493. image: {
  6494. source: "./media/characters/vemus/front.svg",
  6495. extra: 1074/936,
  6496. bottom: 23/1097
  6497. }
  6498. }
  6499. },
  6500. [
  6501. {
  6502. name: "Normal",
  6503. height: math.unit(3.75, "meters"),
  6504. default: true
  6505. },
  6506. {
  6507. name: "Big",
  6508. height: math.unit(8, "meters")
  6509. },
  6510. {
  6511. name: "Macro",
  6512. height: math.unit(100, "meters")
  6513. },
  6514. {
  6515. name: "Macro+",
  6516. height: math.unit(1500, "meters")
  6517. },
  6518. {
  6519. name: "Stellar",
  6520. height: math.unit(14e8, "meters")
  6521. },
  6522. ]
  6523. ))
  6524. characterMakers.push(() => makeCharacter(
  6525. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6526. {
  6527. front: {
  6528. height: math.unit(2, "meters"),
  6529. weight: math.unit(70, "kg"),
  6530. name: "Front",
  6531. image: {
  6532. source: "./media/characters/beherit/front.svg",
  6533. extra: 1408 / 1242
  6534. }
  6535. }
  6536. },
  6537. [
  6538. {
  6539. name: "Normal",
  6540. height: math.unit(6, "feet")
  6541. },
  6542. {
  6543. name: "Lorg",
  6544. height: math.unit(25, "feet"),
  6545. default: true
  6546. },
  6547. {
  6548. name: "Lorger",
  6549. height: math.unit(75, "feet")
  6550. },
  6551. {
  6552. name: "Macro",
  6553. height: math.unit(200, "meters")
  6554. },
  6555. ]
  6556. ))
  6557. characterMakers.push(() => makeCharacter(
  6558. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6559. {
  6560. front: {
  6561. height: math.unit(2, "meters"),
  6562. weight: math.unit(150, "kg"),
  6563. name: "Front",
  6564. image: {
  6565. source: "./media/characters/everett/front.svg",
  6566. extra: 2038 / 1737,
  6567. bottom: 0.03
  6568. }
  6569. },
  6570. paw: {
  6571. height: math.unit(2 / 3.6, "meters"),
  6572. name: "Paw",
  6573. image: {
  6574. source: "./media/characters/everett/paw.svg"
  6575. }
  6576. },
  6577. },
  6578. [
  6579. {
  6580. name: "Normal",
  6581. height: math.unit(15, "feet"),
  6582. default: true
  6583. },
  6584. {
  6585. name: "Lorg",
  6586. height: math.unit(70, "feet"),
  6587. default: true
  6588. },
  6589. {
  6590. name: "Lorger",
  6591. height: math.unit(250, "feet")
  6592. },
  6593. {
  6594. name: "Macro",
  6595. height: math.unit(500, "meters")
  6596. },
  6597. ]
  6598. ))
  6599. characterMakers.push(() => makeCharacter(
  6600. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6601. {
  6602. front: {
  6603. height: math.unit(2, "meters"),
  6604. weight: math.unit(86, "kg"),
  6605. name: "Front",
  6606. image: {
  6607. source: "./media/characters/rose/front.svg",
  6608. extra: 1785/1636,
  6609. bottom: 30/1815
  6610. }
  6611. },
  6612. frontSporty: {
  6613. height: math.unit(2, "meters"),
  6614. weight: math.unit(86, "kg"),
  6615. name: "Front (Sporty)",
  6616. image: {
  6617. source: "./media/characters/rose/front-sporty.svg",
  6618. extra: 350/335,
  6619. bottom: 10/360
  6620. }
  6621. },
  6622. frontAlt: {
  6623. height: math.unit(1.6, "meters"),
  6624. weight: math.unit(86, "kg"),
  6625. name: "Front (Alt)",
  6626. image: {
  6627. source: "./media/characters/rose/front-alt.svg",
  6628. extra: 299/283,
  6629. bottom: 3/302
  6630. }
  6631. },
  6632. plush: {
  6633. height: math.unit(2, "meters"),
  6634. weight: math.unit(86/3, "kg"),
  6635. name: "Plush",
  6636. image: {
  6637. source: "./media/characters/rose/plush.svg",
  6638. extra: 361/337,
  6639. bottom: 11/372
  6640. }
  6641. },
  6642. },
  6643. [
  6644. {
  6645. name: "True Micro",
  6646. height: math.unit(9, "cm")
  6647. },
  6648. {
  6649. name: "Micro",
  6650. height: math.unit(16, "cm")
  6651. },
  6652. {
  6653. name: "Normal",
  6654. height: math.unit(1.85, "meters"),
  6655. default: true
  6656. },
  6657. {
  6658. name: "Mini-Macro",
  6659. height: math.unit(5, "meters")
  6660. },
  6661. {
  6662. name: "Macro",
  6663. height: math.unit(15, "meters")
  6664. },
  6665. {
  6666. name: "True Macro",
  6667. height: math.unit(40, "meters")
  6668. },
  6669. {
  6670. name: "City Scale",
  6671. height: math.unit(1, "km")
  6672. },
  6673. ]
  6674. ))
  6675. characterMakers.push(() => makeCharacter(
  6676. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6677. {
  6678. front: {
  6679. height: math.unit(2, "meters"),
  6680. weight: math.unit(350, "lbs"),
  6681. name: "Front",
  6682. image: {
  6683. source: "./media/characters/regal/front.svg"
  6684. }
  6685. },
  6686. back: {
  6687. height: math.unit(2, "meters"),
  6688. weight: math.unit(350, "lbs"),
  6689. name: "Back",
  6690. image: {
  6691. source: "./media/characters/regal/back.svg"
  6692. }
  6693. },
  6694. },
  6695. [
  6696. {
  6697. name: "Macro",
  6698. height: math.unit(350, "feet"),
  6699. default: true
  6700. }
  6701. ]
  6702. ))
  6703. characterMakers.push(() => makeCharacter(
  6704. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6705. {
  6706. front: {
  6707. height: math.unit(4 + 11 / 12, "feet"),
  6708. weight: math.unit(100, "lbs"),
  6709. name: "Front",
  6710. image: {
  6711. source: "./media/characters/opal/front.svg"
  6712. }
  6713. },
  6714. frontAlt: {
  6715. height: math.unit(4 + 11 / 12, "feet"),
  6716. weight: math.unit(100, "lbs"),
  6717. name: "Front (Alt)",
  6718. image: {
  6719. source: "./media/characters/opal/front-alt.svg"
  6720. }
  6721. },
  6722. },
  6723. [
  6724. {
  6725. name: "Small",
  6726. height: math.unit(4 + 11 / 12, "feet")
  6727. },
  6728. {
  6729. name: "Normal",
  6730. height: math.unit(20, "feet"),
  6731. default: true
  6732. },
  6733. {
  6734. name: "Macro",
  6735. height: math.unit(120, "feet")
  6736. },
  6737. {
  6738. name: "Megamacro",
  6739. height: math.unit(80, "miles")
  6740. },
  6741. {
  6742. name: "True Size",
  6743. height: math.unit(100000, "lightyears")
  6744. },
  6745. ]
  6746. ))
  6747. characterMakers.push(() => makeCharacter(
  6748. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6749. {
  6750. front: {
  6751. height: math.unit(6, "feet"),
  6752. weight: math.unit(200, "lbs"),
  6753. name: "Front",
  6754. image: {
  6755. source: "./media/characters/vector-wuff/front.svg"
  6756. }
  6757. }
  6758. },
  6759. [
  6760. {
  6761. name: "Normal",
  6762. height: math.unit(2.8, "meters")
  6763. },
  6764. {
  6765. name: "Macro",
  6766. height: math.unit(450, "meters"),
  6767. default: true
  6768. },
  6769. {
  6770. name: "Megamacro",
  6771. height: math.unit(15, "kilometers")
  6772. }
  6773. ]
  6774. ))
  6775. characterMakers.push(() => makeCharacter(
  6776. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6777. {
  6778. front: {
  6779. height: math.unit(6, "feet"),
  6780. weight: math.unit(256, "lbs"),
  6781. name: "Front",
  6782. image: {
  6783. source: "./media/characters/dannik/front.svg"
  6784. }
  6785. }
  6786. },
  6787. [
  6788. {
  6789. name: "Macro",
  6790. height: math.unit(69.57, "meters"),
  6791. default: true
  6792. },
  6793. ]
  6794. ))
  6795. characterMakers.push(() => makeCharacter(
  6796. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6797. {
  6798. front: {
  6799. height: math.unit(6, "feet"),
  6800. weight: math.unit(120, "lbs"),
  6801. name: "Front",
  6802. image: {
  6803. source: "./media/characters/azura-saharah/front.svg"
  6804. }
  6805. },
  6806. back: {
  6807. height: math.unit(6, "feet"),
  6808. weight: math.unit(120, "lbs"),
  6809. name: "Back",
  6810. image: {
  6811. source: "./media/characters/azura-saharah/back.svg"
  6812. }
  6813. },
  6814. },
  6815. [
  6816. {
  6817. name: "Macro",
  6818. height: math.unit(100, "feet"),
  6819. default: true
  6820. },
  6821. ]
  6822. ))
  6823. characterMakers.push(() => makeCharacter(
  6824. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6825. {
  6826. side: {
  6827. height: math.unit(5 + 4 / 12, "feet"),
  6828. weight: math.unit(163, "lbs"),
  6829. name: "Side",
  6830. image: {
  6831. source: "./media/characters/kennedy/side.svg"
  6832. }
  6833. }
  6834. },
  6835. [
  6836. {
  6837. name: "Standard Doggo",
  6838. height: math.unit(5 + 4 / 12, "feet")
  6839. },
  6840. {
  6841. name: "Big Doggo",
  6842. height: math.unit(25 + 3 / 12, "feet"),
  6843. default: true
  6844. },
  6845. ]
  6846. ))
  6847. characterMakers.push(() => makeCharacter(
  6848. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6849. {
  6850. front: {
  6851. height: math.unit(6, "feet"),
  6852. weight: math.unit(90, "lbs"),
  6853. name: "Front",
  6854. image: {
  6855. source: "./media/characters/odi-lunar/front.svg"
  6856. }
  6857. }
  6858. },
  6859. [
  6860. {
  6861. name: "Micro",
  6862. height: math.unit(3, "inches"),
  6863. default: true
  6864. },
  6865. {
  6866. name: "Normal",
  6867. height: math.unit(5.5, "feet")
  6868. }
  6869. ]
  6870. ))
  6871. characterMakers.push(() => makeCharacter(
  6872. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6873. {
  6874. back: {
  6875. height: math.unit(6, "feet"),
  6876. weight: math.unit(220, "lbs"),
  6877. name: "Back",
  6878. image: {
  6879. source: "./media/characters/mandake/back.svg"
  6880. }
  6881. }
  6882. },
  6883. [
  6884. {
  6885. name: "Normal",
  6886. height: math.unit(7, "feet"),
  6887. default: true
  6888. },
  6889. {
  6890. name: "Macro",
  6891. height: math.unit(78, "feet")
  6892. },
  6893. {
  6894. name: "Macro+",
  6895. height: math.unit(300, "meters")
  6896. },
  6897. {
  6898. name: "Macro++",
  6899. height: math.unit(2400, "feet")
  6900. },
  6901. {
  6902. name: "Megamacro",
  6903. height: math.unit(5167, "meters")
  6904. },
  6905. {
  6906. name: "Gigamacro",
  6907. height: math.unit(41769, "miles")
  6908. },
  6909. ]
  6910. ))
  6911. characterMakers.push(() => makeCharacter(
  6912. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6913. {
  6914. front: {
  6915. height: math.unit(6, "feet"),
  6916. weight: math.unit(120, "lbs"),
  6917. name: "Front",
  6918. image: {
  6919. source: "./media/characters/yozey/front.svg"
  6920. }
  6921. },
  6922. frontAlt: {
  6923. height: math.unit(6, "feet"),
  6924. weight: math.unit(120, "lbs"),
  6925. name: "Front (Alt)",
  6926. image: {
  6927. source: "./media/characters/yozey/front-alt.svg"
  6928. }
  6929. },
  6930. side: {
  6931. height: math.unit(6, "feet"),
  6932. weight: math.unit(120, "lbs"),
  6933. name: "Side",
  6934. image: {
  6935. source: "./media/characters/yozey/side.svg"
  6936. }
  6937. },
  6938. },
  6939. [
  6940. {
  6941. name: "Micro",
  6942. height: math.unit(3, "inches"),
  6943. default: true
  6944. },
  6945. {
  6946. name: "Normal",
  6947. height: math.unit(6, "feet")
  6948. }
  6949. ]
  6950. ))
  6951. characterMakers.push(() => makeCharacter(
  6952. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6953. {
  6954. front: {
  6955. height: math.unit(6, "feet"),
  6956. weight: math.unit(103, "lbs"),
  6957. name: "Front",
  6958. image: {
  6959. source: "./media/characters/valeska-voss/front.svg"
  6960. }
  6961. }
  6962. },
  6963. [
  6964. {
  6965. name: "Mini-Sized Sub",
  6966. height: math.unit(3.1, "inches")
  6967. },
  6968. {
  6969. name: "Mid-Sized Sub",
  6970. height: math.unit(6.2, "inches")
  6971. },
  6972. {
  6973. name: "Full-Sized Sub",
  6974. height: math.unit(9.3, "inches")
  6975. },
  6976. {
  6977. name: "Normal",
  6978. height: math.unit(5 + 2 / 12, "foot"),
  6979. default: true
  6980. },
  6981. ]
  6982. ))
  6983. characterMakers.push(() => makeCharacter(
  6984. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6985. {
  6986. front: {
  6987. height: math.unit(6, "feet"),
  6988. weight: math.unit(160, "lbs"),
  6989. name: "Front",
  6990. image: {
  6991. source: "./media/characters/gene-zeta/front.svg",
  6992. extra: 3006 / 2826,
  6993. bottom: 182 / 3188
  6994. }
  6995. }
  6996. },
  6997. [
  6998. {
  6999. name: "Micro",
  7000. height: math.unit(6, "inches")
  7001. },
  7002. {
  7003. name: "Normal",
  7004. height: math.unit(5 + 11 / 12, "foot"),
  7005. default: true
  7006. },
  7007. {
  7008. name: "Macro",
  7009. height: math.unit(140, "feet")
  7010. },
  7011. {
  7012. name: "Supercharged",
  7013. height: math.unit(2500, "feet")
  7014. },
  7015. ]
  7016. ))
  7017. characterMakers.push(() => makeCharacter(
  7018. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7019. {
  7020. front: {
  7021. height: math.unit(6, "feet"),
  7022. weight: math.unit(350, "lbs"),
  7023. name: "Front",
  7024. image: {
  7025. source: "./media/characters/razinox/front.svg",
  7026. extra: 1686 / 1548,
  7027. bottom: 28.2 / 1868
  7028. }
  7029. },
  7030. back: {
  7031. height: math.unit(6, "feet"),
  7032. weight: math.unit(350, "lbs"),
  7033. name: "Back",
  7034. image: {
  7035. source: "./media/characters/razinox/back.svg",
  7036. extra: 1660 / 1590,
  7037. bottom: 15 / 1665
  7038. }
  7039. },
  7040. },
  7041. [
  7042. {
  7043. name: "Normal",
  7044. height: math.unit(10 + 8 / 12, "foot")
  7045. },
  7046. {
  7047. name: "Minimacro",
  7048. height: math.unit(15, "foot")
  7049. },
  7050. {
  7051. name: "Macro",
  7052. height: math.unit(60, "foot"),
  7053. default: true
  7054. },
  7055. {
  7056. name: "Megamacro",
  7057. height: math.unit(5, "miles")
  7058. },
  7059. {
  7060. name: "Gigamacro",
  7061. height: math.unit(6000, "miles")
  7062. },
  7063. ]
  7064. ))
  7065. characterMakers.push(() => makeCharacter(
  7066. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7067. {
  7068. front: {
  7069. height: math.unit(6, "feet"),
  7070. weight: math.unit(150, "lbs"),
  7071. name: "Front",
  7072. image: {
  7073. source: "./media/characters/cobalt/front.svg"
  7074. }
  7075. }
  7076. },
  7077. [
  7078. {
  7079. name: "Normal",
  7080. height: math.unit(8 + 1 / 12, "foot")
  7081. },
  7082. {
  7083. name: "Macro",
  7084. height: math.unit(111, "foot"),
  7085. default: true
  7086. },
  7087. {
  7088. name: "Supracosmic",
  7089. height: math.unit(1e42, "feet")
  7090. },
  7091. ]
  7092. ))
  7093. characterMakers.push(() => makeCharacter(
  7094. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7095. {
  7096. front: {
  7097. height: math.unit(6, "feet"),
  7098. weight: math.unit(140, "lbs"),
  7099. name: "Front",
  7100. image: {
  7101. source: "./media/characters/amanda/front.svg"
  7102. }
  7103. }
  7104. },
  7105. [
  7106. {
  7107. name: "Micro",
  7108. height: math.unit(5, "inches"),
  7109. default: true
  7110. },
  7111. ]
  7112. ))
  7113. characterMakers.push(() => makeCharacter(
  7114. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7115. {
  7116. front: {
  7117. height: math.unit(2.75, "meters"),
  7118. weight: math.unit(1200, "lb"),
  7119. name: "Front",
  7120. image: {
  7121. source: "./media/characters/teal/front.svg",
  7122. extra: 2463 / 2320,
  7123. bottom: 166 / 2629
  7124. }
  7125. },
  7126. back: {
  7127. height: math.unit(2.75, "meters"),
  7128. weight: math.unit(1200, "lb"),
  7129. name: "Back",
  7130. image: {
  7131. source: "./media/characters/teal/back.svg",
  7132. extra: 2580 / 2489,
  7133. bottom: 151 / 2731
  7134. }
  7135. },
  7136. sitting: {
  7137. height: math.unit(1.9, "meters"),
  7138. weight: math.unit(1200, "lb"),
  7139. name: "Sitting",
  7140. image: {
  7141. source: "./media/characters/teal/sitting.svg",
  7142. extra: 623 / 590,
  7143. bottom: 121 / 744
  7144. }
  7145. },
  7146. standing: {
  7147. height: math.unit(2.75, "meters"),
  7148. weight: math.unit(1200, "lb"),
  7149. name: "Standing",
  7150. image: {
  7151. source: "./media/characters/teal/standing.svg",
  7152. extra: 923 / 893,
  7153. bottom: 60 / 983
  7154. }
  7155. },
  7156. stretching: {
  7157. height: math.unit(3.65, "meters"),
  7158. weight: math.unit(1200, "lb"),
  7159. name: "Stretching",
  7160. image: {
  7161. source: "./media/characters/teal/stretching.svg",
  7162. extra: 1276 / 1244,
  7163. bottom: 0 / 1276
  7164. }
  7165. },
  7166. legged: {
  7167. height: math.unit(1.3, "meters"),
  7168. weight: math.unit(100, "lb"),
  7169. name: "Legged",
  7170. image: {
  7171. source: "./media/characters/teal/legged.svg",
  7172. extra: 462 / 437,
  7173. bottom: 24 / 486
  7174. }
  7175. },
  7176. naga: {
  7177. height: math.unit(5.4, "meters"),
  7178. weight: math.unit(4000, "lb"),
  7179. name: "Naga",
  7180. image: {
  7181. source: "./media/characters/teal/naga.svg",
  7182. extra: 1902 / 1858,
  7183. bottom: 0 / 1902
  7184. }
  7185. },
  7186. hand: {
  7187. height: math.unit(0.52, "meters"),
  7188. name: "Hand",
  7189. image: {
  7190. source: "./media/characters/teal/hand.svg"
  7191. }
  7192. },
  7193. maw: {
  7194. height: math.unit(0.43, "meters"),
  7195. name: "Maw",
  7196. image: {
  7197. source: "./media/characters/teal/maw.svg"
  7198. }
  7199. },
  7200. slit: {
  7201. height: math.unit(0.25, "meters"),
  7202. name: "Slit",
  7203. image: {
  7204. source: "./media/characters/teal/slit.svg"
  7205. }
  7206. },
  7207. },
  7208. [
  7209. {
  7210. name: "Normal",
  7211. height: math.unit(2.75, "meters"),
  7212. default: true
  7213. },
  7214. {
  7215. name: "Macro",
  7216. height: math.unit(300, "feet")
  7217. },
  7218. {
  7219. name: "Macro+",
  7220. height: math.unit(2000, "feet")
  7221. },
  7222. ]
  7223. ))
  7224. characterMakers.push(() => makeCharacter(
  7225. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7226. {
  7227. frontCat: {
  7228. height: math.unit(6, "feet"),
  7229. weight: math.unit(180, "lbs"),
  7230. name: "Front (Cat)",
  7231. image: {
  7232. source: "./media/characters/ravin-amulet/front-cat.svg"
  7233. }
  7234. },
  7235. frontCatAlt: {
  7236. height: math.unit(6, "feet"),
  7237. weight: math.unit(180, "lbs"),
  7238. name: "Front (Alt, Cat)",
  7239. image: {
  7240. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7241. }
  7242. },
  7243. frontWerewolf: {
  7244. height: math.unit(6 * 1.2, "feet"),
  7245. weight: math.unit(225, "lbs"),
  7246. name: "Front (Werewolf)",
  7247. image: {
  7248. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7249. }
  7250. },
  7251. backWerewolf: {
  7252. height: math.unit(6 * 1.2, "feet"),
  7253. weight: math.unit(225, "lbs"),
  7254. name: "Back (Werewolf)",
  7255. image: {
  7256. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7257. }
  7258. },
  7259. },
  7260. [
  7261. {
  7262. name: "Nano",
  7263. height: math.unit(1, "micrometer")
  7264. },
  7265. {
  7266. name: "Micro",
  7267. height: math.unit(1, "inch")
  7268. },
  7269. {
  7270. name: "Normal",
  7271. height: math.unit(6, "feet"),
  7272. default: true
  7273. },
  7274. {
  7275. name: "Macro",
  7276. height: math.unit(60, "feet")
  7277. }
  7278. ]
  7279. ))
  7280. characterMakers.push(() => makeCharacter(
  7281. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7282. {
  7283. front: {
  7284. height: math.unit(6, "feet"),
  7285. weight: math.unit(165, "lbs"),
  7286. name: "Front",
  7287. image: {
  7288. source: "./media/characters/fluoresce/front.svg"
  7289. }
  7290. }
  7291. },
  7292. [
  7293. {
  7294. name: "Micro",
  7295. height: math.unit(6, "cm")
  7296. },
  7297. {
  7298. name: "Normal",
  7299. height: math.unit(5 + 7 / 12, "feet"),
  7300. default: true
  7301. },
  7302. {
  7303. name: "Macro",
  7304. height: math.unit(56, "feet")
  7305. },
  7306. {
  7307. name: "Megamacro",
  7308. height: math.unit(1.9, "miles")
  7309. },
  7310. ]
  7311. ))
  7312. characterMakers.push(() => makeCharacter(
  7313. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7314. {
  7315. front: {
  7316. height: math.unit(9 + 6 / 12, "feet"),
  7317. weight: math.unit(523, "lbs"),
  7318. name: "Side",
  7319. image: {
  7320. source: "./media/characters/aurora/side.svg"
  7321. }
  7322. }
  7323. },
  7324. [
  7325. {
  7326. name: "Normal",
  7327. height: math.unit(9 + 6 / 12, "feet")
  7328. },
  7329. {
  7330. name: "Macro",
  7331. height: math.unit(96, "feet"),
  7332. default: true
  7333. },
  7334. {
  7335. name: "Macro+",
  7336. height: math.unit(243, "feet")
  7337. },
  7338. ]
  7339. ))
  7340. characterMakers.push(() => makeCharacter(
  7341. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7342. {
  7343. front: {
  7344. height: math.unit(194, "cm"),
  7345. weight: math.unit(90, "kg"),
  7346. name: "Front",
  7347. image: {
  7348. source: "./media/characters/ranek/front.svg"
  7349. }
  7350. },
  7351. side: {
  7352. height: math.unit(194, "cm"),
  7353. weight: math.unit(90, "kg"),
  7354. name: "Side",
  7355. image: {
  7356. source: "./media/characters/ranek/side.svg"
  7357. }
  7358. },
  7359. back: {
  7360. height: math.unit(194, "cm"),
  7361. weight: math.unit(90, "kg"),
  7362. name: "Back",
  7363. image: {
  7364. source: "./media/characters/ranek/back.svg"
  7365. }
  7366. },
  7367. feral: {
  7368. height: math.unit(30, "cm"),
  7369. weight: math.unit(1.6, "lbs"),
  7370. name: "Feral",
  7371. image: {
  7372. source: "./media/characters/ranek/feral.svg"
  7373. }
  7374. },
  7375. },
  7376. [
  7377. {
  7378. name: "Normal",
  7379. height: math.unit(194, "cm"),
  7380. default: true
  7381. },
  7382. {
  7383. name: "Macro",
  7384. height: math.unit(100, "meters")
  7385. },
  7386. ]
  7387. ))
  7388. characterMakers.push(() => makeCharacter(
  7389. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7390. {
  7391. front: {
  7392. height: math.unit(5 + 6 / 12, "feet"),
  7393. weight: math.unit(153, "lbs"),
  7394. name: "Front",
  7395. image: {
  7396. source: "./media/characters/andrew-cooper/front.svg"
  7397. }
  7398. },
  7399. },
  7400. [
  7401. {
  7402. name: "Nano",
  7403. height: math.unit(1, "mm")
  7404. },
  7405. {
  7406. name: "Micro",
  7407. height: math.unit(2, "inches")
  7408. },
  7409. {
  7410. name: "Normal",
  7411. height: math.unit(5 + 6 / 12, "feet"),
  7412. default: true
  7413. }
  7414. ]
  7415. ))
  7416. characterMakers.push(() => makeCharacter(
  7417. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7418. {
  7419. front: {
  7420. height: math.unit(6, "feet"),
  7421. weight: math.unit(180, "lbs"),
  7422. name: "Front",
  7423. image: {
  7424. source: "./media/characters/akane-sato/front.svg",
  7425. extra: 1219 / 1140
  7426. }
  7427. },
  7428. back: {
  7429. height: math.unit(6, "feet"),
  7430. weight: math.unit(180, "lbs"),
  7431. name: "Back",
  7432. image: {
  7433. source: "./media/characters/akane-sato/back.svg",
  7434. extra: 1219 / 1170
  7435. }
  7436. },
  7437. },
  7438. [
  7439. {
  7440. name: "Normal",
  7441. height: math.unit(2.5, "meters")
  7442. },
  7443. {
  7444. name: "Macro",
  7445. height: math.unit(250, "meters"),
  7446. default: true
  7447. },
  7448. {
  7449. name: "Megamacro",
  7450. height: math.unit(25, "km")
  7451. },
  7452. ]
  7453. ))
  7454. characterMakers.push(() => makeCharacter(
  7455. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7456. {
  7457. front: {
  7458. height: math.unit(6, "feet"),
  7459. weight: math.unit(65, "kg"),
  7460. name: "Front",
  7461. image: {
  7462. source: "./media/characters/rook/front.svg",
  7463. extra: 960 / 950
  7464. }
  7465. }
  7466. },
  7467. [
  7468. {
  7469. name: "Normal",
  7470. height: math.unit(8.8, "feet")
  7471. },
  7472. {
  7473. name: "Macro",
  7474. height: math.unit(88, "feet"),
  7475. default: true
  7476. },
  7477. {
  7478. name: "Megamacro",
  7479. height: math.unit(8, "miles")
  7480. },
  7481. ]
  7482. ))
  7483. characterMakers.push(() => makeCharacter(
  7484. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7485. {
  7486. front: {
  7487. height: math.unit(12 + 2 / 12, "feet"),
  7488. weight: math.unit(808, "lbs"),
  7489. name: "Front",
  7490. image: {
  7491. source: "./media/characters/prodigy/front.svg"
  7492. }
  7493. }
  7494. },
  7495. [
  7496. {
  7497. name: "Normal",
  7498. height: math.unit(12 + 2 / 12, "feet"),
  7499. default: true
  7500. },
  7501. {
  7502. name: "Macro",
  7503. height: math.unit(143, "feet")
  7504. },
  7505. {
  7506. name: "Macro+",
  7507. height: math.unit(400, "feet")
  7508. },
  7509. ]
  7510. ))
  7511. characterMakers.push(() => makeCharacter(
  7512. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7513. {
  7514. front: {
  7515. height: math.unit(6, "feet"),
  7516. weight: math.unit(225, "lbs"),
  7517. name: "Front",
  7518. image: {
  7519. source: "./media/characters/daniel/front.svg"
  7520. }
  7521. },
  7522. leaning: {
  7523. height: math.unit(6, "feet"),
  7524. weight: math.unit(225, "lbs"),
  7525. name: "Leaning",
  7526. image: {
  7527. source: "./media/characters/daniel/leaning.svg"
  7528. }
  7529. },
  7530. },
  7531. [
  7532. {
  7533. name: "Macro",
  7534. height: math.unit(1000, "feet"),
  7535. default: true
  7536. },
  7537. ]
  7538. ))
  7539. characterMakers.push(() => makeCharacter(
  7540. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7541. {
  7542. front: {
  7543. height: math.unit(6, "feet"),
  7544. weight: math.unit(88, "lbs"),
  7545. name: "Front",
  7546. image: {
  7547. source: "./media/characters/chiros/front.svg",
  7548. extra: 306 / 226
  7549. }
  7550. },
  7551. side: {
  7552. height: math.unit(6, "feet"),
  7553. weight: math.unit(88, "lbs"),
  7554. name: "Side",
  7555. image: {
  7556. source: "./media/characters/chiros/side.svg",
  7557. extra: 306 / 226
  7558. }
  7559. },
  7560. },
  7561. [
  7562. {
  7563. name: "Normal",
  7564. height: math.unit(6, "cm"),
  7565. default: true
  7566. },
  7567. ]
  7568. ))
  7569. characterMakers.push(() => makeCharacter(
  7570. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7571. {
  7572. front: {
  7573. height: math.unit(6, "feet"),
  7574. weight: math.unit(100, "lbs"),
  7575. name: "Front",
  7576. image: {
  7577. source: "./media/characters/selka/front.svg",
  7578. extra: 947 / 887
  7579. }
  7580. }
  7581. },
  7582. [
  7583. {
  7584. name: "Normal",
  7585. height: math.unit(5, "cm"),
  7586. default: true
  7587. },
  7588. ]
  7589. ))
  7590. characterMakers.push(() => makeCharacter(
  7591. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7592. {
  7593. front: {
  7594. height: math.unit(8 + 3 / 12, "feet"),
  7595. weight: math.unit(424, "lbs"),
  7596. name: "Front",
  7597. image: {
  7598. source: "./media/characters/verin/front.svg",
  7599. extra: 1845 / 1550
  7600. }
  7601. },
  7602. frontArmored: {
  7603. height: math.unit(8 + 3 / 12, "feet"),
  7604. weight: math.unit(424, "lbs"),
  7605. name: "Front (Armored)",
  7606. image: {
  7607. source: "./media/characters/verin/front-armor.svg",
  7608. extra: 1845 / 1550,
  7609. bottom: 0.01
  7610. }
  7611. },
  7612. back: {
  7613. height: math.unit(8 + 3 / 12, "feet"),
  7614. weight: math.unit(424, "lbs"),
  7615. name: "Back",
  7616. image: {
  7617. source: "./media/characters/verin/back.svg",
  7618. bottom: 0.1,
  7619. extra: 1
  7620. }
  7621. },
  7622. foot: {
  7623. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7624. name: "Foot",
  7625. image: {
  7626. source: "./media/characters/verin/foot.svg"
  7627. }
  7628. },
  7629. },
  7630. [
  7631. {
  7632. name: "Normal",
  7633. height: math.unit(8 + 3 / 12, "feet")
  7634. },
  7635. {
  7636. name: "Minimacro",
  7637. height: math.unit(21, "feet"),
  7638. default: true
  7639. },
  7640. {
  7641. name: "Macro",
  7642. height: math.unit(626, "feet")
  7643. },
  7644. ]
  7645. ))
  7646. characterMakers.push(() => makeCharacter(
  7647. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7648. {
  7649. front: {
  7650. height: math.unit(2.718, "meters"),
  7651. weight: math.unit(150, "lbs"),
  7652. name: "Front",
  7653. image: {
  7654. source: "./media/characters/sovrim-terraquian/front.svg"
  7655. }
  7656. },
  7657. back: {
  7658. height: math.unit(2.718, "meters"),
  7659. weight: math.unit(150, "lbs"),
  7660. name: "Back",
  7661. image: {
  7662. source: "./media/characters/sovrim-terraquian/back.svg"
  7663. }
  7664. }
  7665. },
  7666. [
  7667. {
  7668. name: "Micro",
  7669. height: math.unit(2, "inches")
  7670. },
  7671. {
  7672. name: "Small",
  7673. height: math.unit(1, "meter")
  7674. },
  7675. {
  7676. name: "Normal",
  7677. height: math.unit(Math.E, "meters"),
  7678. default: true
  7679. },
  7680. {
  7681. name: "Macro",
  7682. height: math.unit(20, "meters")
  7683. },
  7684. {
  7685. name: "Macro+",
  7686. height: math.unit(400, "meters")
  7687. },
  7688. ]
  7689. ))
  7690. characterMakers.push(() => makeCharacter(
  7691. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7692. {
  7693. front: {
  7694. height: math.unit(7, "feet"),
  7695. weight: math.unit(489, "lbs"),
  7696. name: "Front",
  7697. image: {
  7698. source: "./media/characters/reece-silvermane/front.svg",
  7699. bottom: 0.02,
  7700. extra: 1
  7701. }
  7702. },
  7703. },
  7704. [
  7705. {
  7706. name: "Macro",
  7707. height: math.unit(1.5, "miles"),
  7708. default: true
  7709. },
  7710. ]
  7711. ))
  7712. characterMakers.push(() => makeCharacter(
  7713. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7714. {
  7715. front: {
  7716. height: math.unit(6, "feet"),
  7717. weight: math.unit(78, "kg"),
  7718. name: "Front",
  7719. image: {
  7720. source: "./media/characters/kane/front.svg",
  7721. extra: 978 / 899
  7722. }
  7723. },
  7724. },
  7725. [
  7726. {
  7727. name: "Normal",
  7728. height: math.unit(2.1, "m"),
  7729. },
  7730. {
  7731. name: "Macro",
  7732. height: math.unit(1, "km"),
  7733. default: true
  7734. },
  7735. ]
  7736. ))
  7737. characterMakers.push(() => makeCharacter(
  7738. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7739. {
  7740. front: {
  7741. height: math.unit(6, "feet"),
  7742. weight: math.unit(200, "kg"),
  7743. name: "Front",
  7744. image: {
  7745. source: "./media/characters/tegon/front.svg",
  7746. bottom: 0.01,
  7747. extra: 1
  7748. }
  7749. },
  7750. },
  7751. [
  7752. {
  7753. name: "Micro",
  7754. height: math.unit(1, "inch")
  7755. },
  7756. {
  7757. name: "Normal",
  7758. height: math.unit(6 + 3 / 12, "feet"),
  7759. default: true
  7760. },
  7761. {
  7762. name: "Macro",
  7763. height: math.unit(300, "feet")
  7764. },
  7765. {
  7766. name: "Megamacro",
  7767. height: math.unit(69, "miles")
  7768. },
  7769. ]
  7770. ))
  7771. characterMakers.push(() => makeCharacter(
  7772. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7773. {
  7774. side: {
  7775. height: math.unit(6, "feet"),
  7776. weight: math.unit(2304, "lbs"),
  7777. name: "Side",
  7778. image: {
  7779. source: "./media/characters/arcturax/side.svg",
  7780. extra: 790 / 376,
  7781. bottom: 0.01
  7782. }
  7783. },
  7784. },
  7785. [
  7786. {
  7787. name: "Micro",
  7788. height: math.unit(2, "inch")
  7789. },
  7790. {
  7791. name: "Normal",
  7792. height: math.unit(6, "feet")
  7793. },
  7794. {
  7795. name: "Macro",
  7796. height: math.unit(39, "feet"),
  7797. default: true
  7798. },
  7799. {
  7800. name: "Megamacro",
  7801. height: math.unit(7, "miles")
  7802. },
  7803. ]
  7804. ))
  7805. characterMakers.push(() => makeCharacter(
  7806. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7807. {
  7808. front: {
  7809. height: math.unit(6, "feet"),
  7810. weight: math.unit(50, "lbs"),
  7811. name: "Front",
  7812. image: {
  7813. source: "./media/characters/sentri/front.svg",
  7814. extra: 1750 / 1570,
  7815. bottom: 0.025
  7816. }
  7817. },
  7818. frontAlt: {
  7819. height: math.unit(6, "feet"),
  7820. weight: math.unit(50, "lbs"),
  7821. name: "Front (Alt)",
  7822. image: {
  7823. source: "./media/characters/sentri/front-alt.svg",
  7824. extra: 1750 / 1570,
  7825. bottom: 0.025
  7826. }
  7827. },
  7828. },
  7829. [
  7830. {
  7831. name: "Normal",
  7832. height: math.unit(15, "feet"),
  7833. default: true
  7834. },
  7835. {
  7836. name: "Macro",
  7837. height: math.unit(2500, "feet")
  7838. }
  7839. ]
  7840. ))
  7841. characterMakers.push(() => makeCharacter(
  7842. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7843. {
  7844. front: {
  7845. height: math.unit(5 + 8 / 12, "feet"),
  7846. weight: math.unit(130, "lbs"),
  7847. name: "Front",
  7848. image: {
  7849. source: "./media/characters/corvin/front.svg",
  7850. extra: 1803 / 1629
  7851. }
  7852. },
  7853. frontShirt: {
  7854. height: math.unit(5 + 8 / 12, "feet"),
  7855. weight: math.unit(130, "lbs"),
  7856. name: "Front (Shirt)",
  7857. image: {
  7858. source: "./media/characters/corvin/front-shirt.svg",
  7859. extra: 1803 / 1629
  7860. }
  7861. },
  7862. frontPoncho: {
  7863. height: math.unit(5 + 8 / 12, "feet"),
  7864. weight: math.unit(130, "lbs"),
  7865. name: "Front (Poncho)",
  7866. image: {
  7867. source: "./media/characters/corvin/front-poncho.svg",
  7868. extra: 1803 / 1629
  7869. }
  7870. },
  7871. side: {
  7872. height: math.unit(5 + 8 / 12, "feet"),
  7873. weight: math.unit(130, "lbs"),
  7874. name: "Side",
  7875. image: {
  7876. source: "./media/characters/corvin/side.svg",
  7877. extra: 1012 / 945
  7878. }
  7879. },
  7880. back: {
  7881. height: math.unit(5 + 8 / 12, "feet"),
  7882. weight: math.unit(130, "lbs"),
  7883. name: "Back",
  7884. image: {
  7885. source: "./media/characters/corvin/back.svg",
  7886. extra: 1803 / 1629
  7887. }
  7888. },
  7889. },
  7890. [
  7891. {
  7892. name: "Micro",
  7893. height: math.unit(3, "inches")
  7894. },
  7895. {
  7896. name: "Normal",
  7897. height: math.unit(5 + 8 / 12, "feet")
  7898. },
  7899. {
  7900. name: "Macro",
  7901. height: math.unit(300, "feet"),
  7902. default: true
  7903. },
  7904. {
  7905. name: "Megamacro",
  7906. height: math.unit(500, "miles")
  7907. }
  7908. ]
  7909. ))
  7910. characterMakers.push(() => makeCharacter(
  7911. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7912. {
  7913. front: {
  7914. height: math.unit(6, "feet"),
  7915. weight: math.unit(135, "lbs"),
  7916. name: "Front",
  7917. image: {
  7918. source: "./media/characters/q/front.svg",
  7919. extra: 854 / 752,
  7920. bottom: 0.005
  7921. }
  7922. },
  7923. back: {
  7924. height: math.unit(6, "feet"),
  7925. weight: math.unit(130, "lbs"),
  7926. name: "Back",
  7927. image: {
  7928. source: "./media/characters/q/back.svg",
  7929. extra: 854 / 752
  7930. }
  7931. },
  7932. },
  7933. [
  7934. {
  7935. name: "Macro",
  7936. height: math.unit(90, "feet"),
  7937. default: true
  7938. },
  7939. {
  7940. name: "Extra Macro",
  7941. height: math.unit(300, "feet"),
  7942. },
  7943. {
  7944. name: "BIG WALF",
  7945. height: math.unit(750, "feet"),
  7946. },
  7947. ]
  7948. ))
  7949. characterMakers.push(() => makeCharacter(
  7950. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7951. {
  7952. front: {
  7953. height: math.unit(6, "feet"),
  7954. weight: math.unit(150, "lbs"),
  7955. name: "Front",
  7956. image: {
  7957. source: "./media/characters/carley/front.svg",
  7958. extra: 3927 / 3540,
  7959. bottom: 29.2 / 735
  7960. }
  7961. }
  7962. },
  7963. [
  7964. {
  7965. name: "Normal",
  7966. height: math.unit(6 + 3 / 12, "feet")
  7967. },
  7968. {
  7969. name: "Macro",
  7970. height: math.unit(185, "feet"),
  7971. default: true
  7972. },
  7973. {
  7974. name: "Megamacro",
  7975. height: math.unit(8, "miles"),
  7976. },
  7977. ]
  7978. ))
  7979. characterMakers.push(() => makeCharacter(
  7980. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7981. {
  7982. front: {
  7983. height: math.unit(3, "feet"),
  7984. weight: math.unit(28, "lbs"),
  7985. name: "Front",
  7986. image: {
  7987. source: "./media/characters/citrine/front.svg"
  7988. }
  7989. }
  7990. },
  7991. [
  7992. {
  7993. name: "Normal",
  7994. height: math.unit(3, "feet"),
  7995. default: true
  7996. }
  7997. ]
  7998. ))
  7999. characterMakers.push(() => makeCharacter(
  8000. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8001. {
  8002. front: {
  8003. height: math.unit(14, "feet"),
  8004. weight: math.unit(1450, "kg"),
  8005. capacity: math.unit(15, "people"),
  8006. name: "Front",
  8007. image: {
  8008. source: "./media/characters/aura-starwind/front.svg",
  8009. extra: 1455 / 1335
  8010. }
  8011. },
  8012. side: {
  8013. height: math.unit(14, "feet"),
  8014. weight: math.unit(1450, "kg"),
  8015. capacity: math.unit(15, "people"),
  8016. name: "Side",
  8017. image: {
  8018. source: "./media/characters/aura-starwind/side.svg",
  8019. extra: 1654 / 1497
  8020. }
  8021. },
  8022. taur: {
  8023. height: math.unit(18, "feet"),
  8024. weight: math.unit(5500, "kg"),
  8025. capacity: math.unit(50, "people"),
  8026. name: "Taur",
  8027. image: {
  8028. source: "./media/characters/aura-starwind/taur.svg",
  8029. extra: 1760 / 1650
  8030. }
  8031. },
  8032. feral: {
  8033. height: math.unit(46, "feet"),
  8034. weight: math.unit(25000, "kg"),
  8035. capacity: math.unit(120, "people"),
  8036. name: "Feral",
  8037. image: {
  8038. source: "./media/characters/aura-starwind/feral.svg"
  8039. }
  8040. },
  8041. },
  8042. [
  8043. {
  8044. name: "Normal",
  8045. height: math.unit(14, "feet"),
  8046. default: true
  8047. },
  8048. {
  8049. name: "Macro",
  8050. height: math.unit(50, "meters")
  8051. },
  8052. {
  8053. name: "Megamacro",
  8054. height: math.unit(5000, "meters")
  8055. },
  8056. {
  8057. name: "Gigamacro",
  8058. height: math.unit(100000, "kilometers")
  8059. },
  8060. ]
  8061. ))
  8062. characterMakers.push(() => makeCharacter(
  8063. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8064. {
  8065. front: {
  8066. height: math.unit(2 + 7 / 12, "feet"),
  8067. weight: math.unit(32, "lbs"),
  8068. name: "Front",
  8069. image: {
  8070. source: "./media/characters/rivet/front.svg",
  8071. extra: 1716 / 1658,
  8072. bottom: 0.03
  8073. }
  8074. },
  8075. foot: {
  8076. height: math.unit(0.551, "feet"),
  8077. name: "Rivet's Foot",
  8078. image: {
  8079. source: "./media/characters/rivet/foot.svg"
  8080. },
  8081. rename: true
  8082. }
  8083. },
  8084. [
  8085. {
  8086. name: "Micro",
  8087. height: math.unit(1.5, "inches"),
  8088. },
  8089. {
  8090. name: "Normal",
  8091. height: math.unit(2 + 7 / 12, "feet"),
  8092. default: true
  8093. },
  8094. {
  8095. name: "Macro",
  8096. height: math.unit(85, "feet")
  8097. },
  8098. {
  8099. name: "Megamacro",
  8100. height: math.unit(2.2, "km")
  8101. }
  8102. ]
  8103. ))
  8104. characterMakers.push(() => makeCharacter(
  8105. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8106. {
  8107. front: {
  8108. height: math.unit(5 + 9 / 12, "feet"),
  8109. weight: math.unit(150, "lbs"),
  8110. name: "Front",
  8111. image: {
  8112. source: "./media/characters/coffee/front.svg",
  8113. extra: 3666 / 3032,
  8114. bottom: 0.04
  8115. }
  8116. },
  8117. foot: {
  8118. height: math.unit(1.29, "feet"),
  8119. name: "Foot",
  8120. image: {
  8121. source: "./media/characters/coffee/foot.svg"
  8122. }
  8123. },
  8124. },
  8125. [
  8126. {
  8127. name: "Micro",
  8128. height: math.unit(2, "inches"),
  8129. },
  8130. {
  8131. name: "Normal",
  8132. height: math.unit(5 + 9 / 12, "feet"),
  8133. default: true
  8134. },
  8135. {
  8136. name: "Macro",
  8137. height: math.unit(800, "feet")
  8138. },
  8139. {
  8140. name: "Megamacro",
  8141. height: math.unit(25, "miles")
  8142. }
  8143. ]
  8144. ))
  8145. characterMakers.push(() => makeCharacter(
  8146. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8147. {
  8148. front: {
  8149. height: math.unit(6, "feet"),
  8150. weight: math.unit(200, "lbs"),
  8151. name: "Front",
  8152. image: {
  8153. source: "./media/characters/chari-gal/front.svg",
  8154. extra: 1568 / 1385,
  8155. bottom: 0.047
  8156. }
  8157. },
  8158. gigantamax: {
  8159. height: math.unit(6 * 16, "feet"),
  8160. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8161. name: "Gigantamax",
  8162. image: {
  8163. source: "./media/characters/chari-gal/gigantamax.svg",
  8164. extra: 1124 / 888,
  8165. bottom: 0.03
  8166. }
  8167. },
  8168. },
  8169. [
  8170. {
  8171. name: "Normal",
  8172. height: math.unit(5 + 7 / 12, "feet")
  8173. },
  8174. {
  8175. name: "Macro",
  8176. height: math.unit(200, "feet"),
  8177. default: true
  8178. }
  8179. ]
  8180. ))
  8181. characterMakers.push(() => makeCharacter(
  8182. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8183. {
  8184. front: {
  8185. height: math.unit(6, "feet"),
  8186. weight: math.unit(150, "lbs"),
  8187. name: "Front",
  8188. image: {
  8189. source: "./media/characters/nova/front.svg",
  8190. extra: 5000 / 4722,
  8191. bottom: 0.02
  8192. }
  8193. }
  8194. },
  8195. [
  8196. {
  8197. name: "Micro-",
  8198. height: math.unit(0.8, "inches")
  8199. },
  8200. {
  8201. name: "Micro",
  8202. height: math.unit(2, "inches"),
  8203. default: true
  8204. },
  8205. ]
  8206. ))
  8207. characterMakers.push(() => makeCharacter(
  8208. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8209. {
  8210. front: {
  8211. height: math.unit(3 + 1 / 12, "feet"),
  8212. weight: math.unit(21.7, "lbs"),
  8213. name: "Front",
  8214. image: {
  8215. source: "./media/characters/argent/front.svg",
  8216. extra: 1471 / 1331,
  8217. bottom: 100.8 / 1575.5
  8218. }
  8219. }
  8220. },
  8221. [
  8222. {
  8223. name: "Micro",
  8224. height: math.unit(2, "inches")
  8225. },
  8226. {
  8227. name: "Normal",
  8228. height: math.unit(3 + 1 / 12, "feet"),
  8229. default: true
  8230. },
  8231. {
  8232. name: "Macro",
  8233. height: math.unit(120, "feet")
  8234. },
  8235. ]
  8236. ))
  8237. characterMakers.push(() => makeCharacter(
  8238. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8239. {
  8240. lamp: {
  8241. height: math.unit(7 * 1559 / 989, "feet"),
  8242. name: "Magic Lamp",
  8243. image: {
  8244. source: "./media/characters/mira-al-cul/lamp.svg",
  8245. extra: 1617 / 1559
  8246. }
  8247. },
  8248. front: {
  8249. height: math.unit(7, "feet"),
  8250. name: "Front",
  8251. image: {
  8252. source: "./media/characters/mira-al-cul/front.svg",
  8253. extra: 1044 / 990
  8254. }
  8255. },
  8256. },
  8257. [
  8258. {
  8259. name: "Heavily Restricted",
  8260. height: math.unit(7 * 1559 / 989, "feet")
  8261. },
  8262. {
  8263. name: "Freshly Freed",
  8264. height: math.unit(50 * 1559 / 989, "feet")
  8265. },
  8266. {
  8267. name: "World Encompassing",
  8268. height: math.unit(10000 * 1559 / 989, "miles")
  8269. },
  8270. {
  8271. name: "Galactic",
  8272. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8273. },
  8274. {
  8275. name: "Palmed Universe",
  8276. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8277. default: true
  8278. },
  8279. {
  8280. name: "Multiversal Matriarch",
  8281. height: math.unit(8.87e10, "yottameters")
  8282. },
  8283. {
  8284. name: "Void Mother",
  8285. height: math.unit(3.14e110, "yottaparsecs")
  8286. },
  8287. {
  8288. name: "Toying with Transcendence",
  8289. height: math.unit(1e307, "meters")
  8290. },
  8291. ]
  8292. ))
  8293. characterMakers.push(() => makeCharacter(
  8294. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8295. {
  8296. front: {
  8297. height: math.unit(17 + 1 / 12, "feet"),
  8298. weight: math.unit(476.2 * 5, "lbs"),
  8299. name: "Front",
  8300. image: {
  8301. source: "./media/characters/kuro-shi-uchū/front.svg",
  8302. extra: 2329 / 1835,
  8303. bottom: 0.02
  8304. }
  8305. },
  8306. },
  8307. [
  8308. {
  8309. name: "Micro",
  8310. height: math.unit(2, "inches")
  8311. },
  8312. {
  8313. name: "Normal",
  8314. height: math.unit(12, "meters")
  8315. },
  8316. {
  8317. name: "Planetary",
  8318. height: math.unit(0.00929, "AU"),
  8319. default: true
  8320. },
  8321. {
  8322. name: "Universal",
  8323. height: math.unit(20, "gigaparsecs")
  8324. },
  8325. ]
  8326. ))
  8327. characterMakers.push(() => makeCharacter(
  8328. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8329. {
  8330. front: {
  8331. height: math.unit(5 + 2 / 12, "feet"),
  8332. weight: math.unit(120, "lbs"),
  8333. name: "Front",
  8334. image: {
  8335. source: "./media/characters/katherine/front.svg",
  8336. extra: 2075 / 1969
  8337. }
  8338. },
  8339. dress: {
  8340. height: math.unit(5 + 2 / 12, "feet"),
  8341. weight: math.unit(120, "lbs"),
  8342. name: "Dress",
  8343. image: {
  8344. source: "./media/characters/katherine/dress.svg",
  8345. extra: 2258 / 2064
  8346. }
  8347. },
  8348. },
  8349. [
  8350. {
  8351. name: "Micro",
  8352. height: math.unit(1, "inches"),
  8353. default: true
  8354. },
  8355. {
  8356. name: "Normal",
  8357. height: math.unit(5 + 2 / 12, "feet")
  8358. },
  8359. {
  8360. name: "Macro",
  8361. height: math.unit(100, "meters")
  8362. },
  8363. {
  8364. name: "Megamacro",
  8365. height: math.unit(80, "miles")
  8366. },
  8367. ]
  8368. ))
  8369. characterMakers.push(() => makeCharacter(
  8370. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8371. {
  8372. front: {
  8373. height: math.unit(7 + 8 / 12, "feet"),
  8374. weight: math.unit(250, "lbs"),
  8375. name: "Front",
  8376. image: {
  8377. source: "./media/characters/yevis/front.svg",
  8378. extra: 1938 / 1755
  8379. }
  8380. }
  8381. },
  8382. [
  8383. {
  8384. name: "Mortal",
  8385. height: math.unit(7 + 8 / 12, "feet")
  8386. },
  8387. {
  8388. name: "Battle",
  8389. height: math.unit(25 + 11 / 12, "feet")
  8390. },
  8391. {
  8392. name: "Wrath",
  8393. height: math.unit(1654 + 11 / 12, "feet")
  8394. },
  8395. {
  8396. name: "Planet Destroyer",
  8397. height: math.unit(12000, "miles")
  8398. },
  8399. {
  8400. name: "Galaxy Conqueror",
  8401. height: math.unit(1.45, "zettameters"),
  8402. default: true
  8403. },
  8404. {
  8405. name: "Universal War",
  8406. height: math.unit(184, "gigaparsecs")
  8407. },
  8408. {
  8409. name: "Eternity War",
  8410. height: math.unit(1.98e55, "yottaparsecs")
  8411. },
  8412. ]
  8413. ))
  8414. characterMakers.push(() => makeCharacter(
  8415. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8416. {
  8417. front: {
  8418. height: math.unit(5 + 8 / 12, "feet"),
  8419. weight: math.unit(63, "kg"),
  8420. name: "Front",
  8421. image: {
  8422. source: "./media/characters/xavier/front.svg",
  8423. extra: 944 / 883
  8424. }
  8425. },
  8426. frontStretch: {
  8427. height: math.unit(5 + 8 / 12, "feet"),
  8428. weight: math.unit(63, "kg"),
  8429. name: "Stretching",
  8430. image: {
  8431. source: "./media/characters/xavier/front-stretch.svg",
  8432. extra: 962 / 820
  8433. }
  8434. },
  8435. },
  8436. [
  8437. {
  8438. name: "Normal",
  8439. height: math.unit(5 + 8 / 12, "feet")
  8440. },
  8441. {
  8442. name: "Macro",
  8443. height: math.unit(100, "meters"),
  8444. default: true
  8445. },
  8446. {
  8447. name: "McLargeHuge",
  8448. height: math.unit(10, "miles")
  8449. },
  8450. ]
  8451. ))
  8452. characterMakers.push(() => makeCharacter(
  8453. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8454. {
  8455. front: {
  8456. height: math.unit(5 + 5 / 12, "feet"),
  8457. weight: math.unit(150, "lb"),
  8458. name: "Front",
  8459. image: {
  8460. source: "./media/characters/joshii/front.svg",
  8461. extra: 765 / 653,
  8462. bottom: 51 / 816
  8463. }
  8464. },
  8465. foot: {
  8466. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8467. name: "Foot",
  8468. image: {
  8469. source: "./media/characters/joshii/foot.svg"
  8470. }
  8471. },
  8472. },
  8473. [
  8474. {
  8475. name: "Micro",
  8476. height: math.unit(2, "inches"),
  8477. default: true
  8478. },
  8479. {
  8480. name: "Normal",
  8481. height: math.unit(5 + 5 / 12, "feet")
  8482. },
  8483. {
  8484. name: "Macro",
  8485. height: math.unit(785, "feet")
  8486. },
  8487. {
  8488. name: "Megamacro",
  8489. height: math.unit(24.5, "miles")
  8490. },
  8491. ]
  8492. ))
  8493. characterMakers.push(() => makeCharacter(
  8494. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8495. {
  8496. front: {
  8497. height: math.unit(6, "feet"),
  8498. weight: math.unit(150, "lb"),
  8499. name: "Front",
  8500. image: {
  8501. source: "./media/characters/goddess-elizabeth/front.svg",
  8502. extra: 1800 / 1525,
  8503. bottom: 0.005
  8504. }
  8505. },
  8506. foot: {
  8507. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8508. name: "Foot",
  8509. image: {
  8510. source: "./media/characters/goddess-elizabeth/foot.svg"
  8511. }
  8512. },
  8513. mouth: {
  8514. height: math.unit(6, "feet"),
  8515. name: "Mouth",
  8516. image: {
  8517. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8518. }
  8519. },
  8520. },
  8521. [
  8522. {
  8523. name: "Micro",
  8524. height: math.unit(12, "feet")
  8525. },
  8526. {
  8527. name: "Normal",
  8528. height: math.unit(80, "miles"),
  8529. default: true
  8530. },
  8531. {
  8532. name: "Macro",
  8533. height: math.unit(15000, "parsecs")
  8534. },
  8535. ]
  8536. ))
  8537. characterMakers.push(() => makeCharacter(
  8538. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8539. {
  8540. front: {
  8541. height: math.unit(5 + 9 / 12, "feet"),
  8542. weight: math.unit(144, "lb"),
  8543. name: "Front",
  8544. image: {
  8545. source: "./media/characters/kara/front.svg"
  8546. }
  8547. },
  8548. feet: {
  8549. height: math.unit(6 / 6.765, "feet"),
  8550. name: "Kara's Feet",
  8551. rename: true,
  8552. image: {
  8553. source: "./media/characters/kara/feet.svg"
  8554. }
  8555. },
  8556. },
  8557. [
  8558. {
  8559. name: "Normal",
  8560. height: math.unit(5 + 9 / 12, "feet")
  8561. },
  8562. {
  8563. name: "Macro",
  8564. height: math.unit(174, "feet"),
  8565. default: true
  8566. },
  8567. ]
  8568. ))
  8569. characterMakers.push(() => makeCharacter(
  8570. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8571. {
  8572. front: {
  8573. height: math.unit(18, "feet"),
  8574. weight: math.unit(4050, "lb"),
  8575. name: "Front",
  8576. image: {
  8577. source: "./media/characters/tyrone/front.svg",
  8578. extra: 2405 / 2270,
  8579. bottom: 182 / 2587
  8580. }
  8581. },
  8582. },
  8583. [
  8584. {
  8585. name: "Normal",
  8586. height: math.unit(18, "feet"),
  8587. default: true
  8588. },
  8589. {
  8590. name: "Macro",
  8591. height: math.unit(300, "feet")
  8592. },
  8593. {
  8594. name: "Megamacro",
  8595. height: math.unit(15, "km")
  8596. },
  8597. {
  8598. name: "Gigamacro",
  8599. height: math.unit(500, "km")
  8600. },
  8601. {
  8602. name: "Teramacro",
  8603. height: math.unit(0.5, "gigameters")
  8604. },
  8605. {
  8606. name: "Omnimacro",
  8607. height: math.unit(1e252, "yottauniverse")
  8608. },
  8609. ]
  8610. ))
  8611. characterMakers.push(() => makeCharacter(
  8612. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8613. {
  8614. front: {
  8615. height: math.unit(7 + 8 / 12, "feet"),
  8616. weight: math.unit(120, "lb"),
  8617. name: "Front",
  8618. image: {
  8619. source: "./media/characters/danny/front.svg",
  8620. extra: 1490 / 1350
  8621. }
  8622. },
  8623. back: {
  8624. height: math.unit(7 + 8 / 12, "feet"),
  8625. weight: math.unit(120, "lb"),
  8626. name: "Back",
  8627. image: {
  8628. source: "./media/characters/danny/back.svg",
  8629. extra: 1490 / 1350
  8630. }
  8631. },
  8632. },
  8633. [
  8634. {
  8635. name: "Normal",
  8636. height: math.unit(7 + 8 / 12, "feet"),
  8637. default: true
  8638. },
  8639. ]
  8640. ))
  8641. characterMakers.push(() => makeCharacter(
  8642. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8643. {
  8644. front: {
  8645. height: math.unit(3.5, "inches"),
  8646. weight: math.unit(19, "grams"),
  8647. name: "Front",
  8648. image: {
  8649. source: "./media/characters/mallow/front.svg",
  8650. extra: 471 / 431
  8651. }
  8652. },
  8653. back: {
  8654. height: math.unit(3.5, "inches"),
  8655. weight: math.unit(19, "grams"),
  8656. name: "Back",
  8657. image: {
  8658. source: "./media/characters/mallow/back.svg",
  8659. extra: 471 / 431
  8660. }
  8661. },
  8662. },
  8663. [
  8664. {
  8665. name: "Normal",
  8666. height: math.unit(3.5, "inches"),
  8667. default: true
  8668. },
  8669. ]
  8670. ))
  8671. characterMakers.push(() => makeCharacter(
  8672. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8673. {
  8674. front: {
  8675. height: math.unit(9, "feet"),
  8676. weight: math.unit(230, "kg"),
  8677. name: "Front",
  8678. image: {
  8679. source: "./media/characters/starry-aqua/front.svg"
  8680. }
  8681. },
  8682. back: {
  8683. height: math.unit(9, "feet"),
  8684. weight: math.unit(230, "kg"),
  8685. name: "Back",
  8686. image: {
  8687. source: "./media/characters/starry-aqua/back.svg"
  8688. }
  8689. },
  8690. hand: {
  8691. height: math.unit(9 * 0.1168, "feet"),
  8692. name: "Hand",
  8693. image: {
  8694. source: "./media/characters/starry-aqua/hand.svg"
  8695. }
  8696. },
  8697. foot: {
  8698. height: math.unit(9 * 0.18, "feet"),
  8699. name: "Foot",
  8700. image: {
  8701. source: "./media/characters/starry-aqua/foot.svg"
  8702. }
  8703. }
  8704. },
  8705. [
  8706. {
  8707. name: "Micro",
  8708. height: math.unit(3, "inches")
  8709. },
  8710. {
  8711. name: "Normal",
  8712. height: math.unit(9, "feet")
  8713. },
  8714. {
  8715. name: "Macro",
  8716. height: math.unit(300, "feet"),
  8717. default: true
  8718. },
  8719. {
  8720. name: "Megamacro",
  8721. height: math.unit(3200, "feet")
  8722. }
  8723. ]
  8724. ))
  8725. characterMakers.push(() => makeCharacter(
  8726. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8727. {
  8728. front: {
  8729. height: math.unit(6, "feet"),
  8730. weight: math.unit(230, "lb"),
  8731. name: "Front",
  8732. image: {
  8733. source: "./media/characters/luka/front.svg",
  8734. extra: 1,
  8735. bottom: 0.025
  8736. }
  8737. },
  8738. },
  8739. [
  8740. {
  8741. name: "Normal",
  8742. height: math.unit(12 + 8 / 12, "feet"),
  8743. default: true
  8744. },
  8745. {
  8746. name: "Minimacro",
  8747. height: math.unit(20, "feet")
  8748. },
  8749. {
  8750. name: "Macro",
  8751. height: math.unit(250, "feet")
  8752. },
  8753. {
  8754. name: "Megamacro",
  8755. height: math.unit(5, "miles")
  8756. },
  8757. {
  8758. name: "Gigamacro",
  8759. height: math.unit(8000, "miles")
  8760. },
  8761. ]
  8762. ))
  8763. characterMakers.push(() => makeCharacter(
  8764. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8765. {
  8766. front: {
  8767. height: math.unit(6, "feet"),
  8768. weight: math.unit(150, "lb"),
  8769. name: "Front",
  8770. image: {
  8771. source: "./media/characters/natalie-nightring/front.svg",
  8772. extra: 1,
  8773. bottom: 0.06
  8774. }
  8775. },
  8776. },
  8777. [
  8778. {
  8779. name: "Uh Oh",
  8780. height: math.unit(0.1, "mm")
  8781. },
  8782. {
  8783. name: "Small",
  8784. height: math.unit(3, "inches")
  8785. },
  8786. {
  8787. name: "Human Scale",
  8788. height: math.unit(6, "feet")
  8789. },
  8790. {
  8791. name: "Librarian",
  8792. height: math.unit(50, "feet"),
  8793. default: true
  8794. },
  8795. {
  8796. name: "Immense",
  8797. height: math.unit(200, "miles")
  8798. },
  8799. ]
  8800. ))
  8801. characterMakers.push(() => makeCharacter(
  8802. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8803. {
  8804. front: {
  8805. height: math.unit(6, "feet"),
  8806. weight: math.unit(180, "lbs"),
  8807. name: "Front",
  8808. image: {
  8809. source: "./media/characters/danni-rosie/front.svg",
  8810. extra: 1260 / 1128,
  8811. bottom: 0.022
  8812. }
  8813. },
  8814. },
  8815. [
  8816. {
  8817. name: "Micro",
  8818. height: math.unit(2, "inches"),
  8819. default: true
  8820. },
  8821. ]
  8822. ))
  8823. characterMakers.push(() => makeCharacter(
  8824. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8825. {
  8826. front: {
  8827. height: math.unit(5 + 9 / 12, "feet"),
  8828. weight: math.unit(220, "lb"),
  8829. name: "Front",
  8830. image: {
  8831. source: "./media/characters/samantha-kruse/front.svg",
  8832. extra: (985 / 935),
  8833. bottom: 0.03
  8834. }
  8835. },
  8836. frontUndressed: {
  8837. height: math.unit(5 + 9 / 12, "feet"),
  8838. weight: math.unit(220, "lb"),
  8839. name: "Front (Undressed)",
  8840. image: {
  8841. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8842. extra: (973 / 923),
  8843. bottom: 0.025
  8844. }
  8845. },
  8846. fat: {
  8847. height: math.unit(5 + 9 / 12, "feet"),
  8848. weight: math.unit(900, "lb"),
  8849. name: "Front (Fat)",
  8850. image: {
  8851. source: "./media/characters/samantha-kruse/fat.svg",
  8852. extra: 2688 / 2561
  8853. }
  8854. },
  8855. },
  8856. [
  8857. {
  8858. name: "Normal",
  8859. height: math.unit(5 + 9 / 12, "feet"),
  8860. default: true
  8861. }
  8862. ]
  8863. ))
  8864. characterMakers.push(() => makeCharacter(
  8865. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8866. {
  8867. back: {
  8868. height: math.unit(5 + 4 / 12, "feet"),
  8869. weight: math.unit(4963, "lb"),
  8870. name: "Back",
  8871. image: {
  8872. source: "./media/characters/amelia-rosie/back.svg",
  8873. extra: 1113 / 963,
  8874. bottom: 0.01
  8875. }
  8876. },
  8877. },
  8878. [
  8879. {
  8880. name: "Level 0",
  8881. height: math.unit(5 + 4 / 12, "feet")
  8882. },
  8883. {
  8884. name: "Level 1",
  8885. height: math.unit(164597, "feet"),
  8886. default: true
  8887. },
  8888. {
  8889. name: "Level 2",
  8890. height: math.unit(956243, "miles")
  8891. },
  8892. {
  8893. name: "Level 3",
  8894. height: math.unit(29421709423, "miles")
  8895. },
  8896. {
  8897. name: "Level 4",
  8898. height: math.unit(154, "lightyears")
  8899. },
  8900. {
  8901. name: "Level 5",
  8902. height: math.unit(4738272, "lightyears")
  8903. },
  8904. {
  8905. name: "Level 6",
  8906. height: math.unit(145787152896, "lightyears")
  8907. },
  8908. ]
  8909. ))
  8910. characterMakers.push(() => makeCharacter(
  8911. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8912. {
  8913. front: {
  8914. height: math.unit(5 + 11 / 12, "feet"),
  8915. weight: math.unit(65, "kg"),
  8916. name: "Front",
  8917. image: {
  8918. source: "./media/characters/rook-kitara/front.svg",
  8919. extra: 1347 / 1274,
  8920. bottom: 0.005
  8921. }
  8922. },
  8923. },
  8924. [
  8925. {
  8926. name: "Totally Unfair",
  8927. height: math.unit(1.8, "mm")
  8928. },
  8929. {
  8930. name: "Lap Rookie",
  8931. height: math.unit(1.4, "feet")
  8932. },
  8933. {
  8934. name: "Normal",
  8935. height: math.unit(5 + 11 / 12, "feet"),
  8936. default: true
  8937. },
  8938. {
  8939. name: "How Did This Happen",
  8940. height: math.unit(80, "miles")
  8941. }
  8942. ]
  8943. ))
  8944. characterMakers.push(() => makeCharacter(
  8945. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8946. {
  8947. front: {
  8948. height: math.unit(7, "feet"),
  8949. weight: math.unit(300, "lb"),
  8950. name: "Front",
  8951. image: {
  8952. source: "./media/characters/pisces/front.svg",
  8953. extra: 2255 / 2115,
  8954. bottom: 0.03
  8955. }
  8956. },
  8957. back: {
  8958. height: math.unit(7, "feet"),
  8959. weight: math.unit(300, "lb"),
  8960. name: "Back",
  8961. image: {
  8962. source: "./media/characters/pisces/back.svg",
  8963. extra: 2146 / 2055,
  8964. bottom: 0.04
  8965. }
  8966. },
  8967. },
  8968. [
  8969. {
  8970. name: "Normal",
  8971. height: math.unit(7, "feet"),
  8972. default: true
  8973. },
  8974. {
  8975. name: "Swimming Pool",
  8976. height: math.unit(12.2, "meters")
  8977. },
  8978. {
  8979. name: "Olympic Swimming Pool",
  8980. height: math.unit(56.3, "meters")
  8981. },
  8982. {
  8983. name: "Lake Superior",
  8984. height: math.unit(93900, "meters")
  8985. },
  8986. {
  8987. name: "Mediterranean Sea",
  8988. height: math.unit(644457, "meters")
  8989. },
  8990. {
  8991. name: "World's Oceans",
  8992. height: math.unit(4567491, "meters")
  8993. },
  8994. ]
  8995. ))
  8996. characterMakers.push(() => makeCharacter(
  8997. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8998. {
  8999. front: {
  9000. height: math.unit(2.3, "meters"),
  9001. weight: math.unit(120, "kg"),
  9002. name: "Front",
  9003. image: {
  9004. source: "./media/characters/zelas/front.svg"
  9005. }
  9006. },
  9007. side: {
  9008. height: math.unit(2.3, "meters"),
  9009. weight: math.unit(120, "kg"),
  9010. name: "Side",
  9011. image: {
  9012. source: "./media/characters/zelas/side.svg"
  9013. }
  9014. },
  9015. back: {
  9016. height: math.unit(2.3, "meters"),
  9017. weight: math.unit(120, "kg"),
  9018. name: "Back",
  9019. image: {
  9020. source: "./media/characters/zelas/back.svg"
  9021. }
  9022. },
  9023. foot: {
  9024. height: math.unit(1.116, "feet"),
  9025. name: "Foot",
  9026. image: {
  9027. source: "./media/characters/zelas/foot.svg"
  9028. }
  9029. },
  9030. },
  9031. [
  9032. {
  9033. name: "Normal",
  9034. height: math.unit(2.3, "meters")
  9035. },
  9036. {
  9037. name: "Macro",
  9038. height: math.unit(30, "meters"),
  9039. default: true
  9040. },
  9041. ]
  9042. ))
  9043. characterMakers.push(() => makeCharacter(
  9044. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9045. {
  9046. front: {
  9047. height: math.unit(1, "inch"),
  9048. weight: math.unit(0.21, "grams"),
  9049. name: "Front",
  9050. image: {
  9051. source: "./media/characters/talbot/front.svg",
  9052. extra: 594 / 544
  9053. }
  9054. },
  9055. },
  9056. [
  9057. {
  9058. name: "Micro",
  9059. height: math.unit(1, "inch"),
  9060. default: true
  9061. },
  9062. ]
  9063. ))
  9064. characterMakers.push(() => makeCharacter(
  9065. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9066. {
  9067. front: {
  9068. height: math.unit(3 + 3 / 12, "feet"),
  9069. weight: math.unit(51.8, "lb"),
  9070. name: "Front",
  9071. image: {
  9072. source: "./media/characters/fliss/front.svg",
  9073. extra: 840 / 640
  9074. }
  9075. },
  9076. },
  9077. [
  9078. {
  9079. name: "Teeny Tiny",
  9080. height: math.unit(1, "mm")
  9081. },
  9082. {
  9083. name: "Small",
  9084. height: math.unit(1, "inch"),
  9085. default: true
  9086. },
  9087. {
  9088. name: "Standard Sylveon",
  9089. height: math.unit(3 + 3 / 12, "feet")
  9090. },
  9091. {
  9092. name: "Large Nuisance",
  9093. height: math.unit(33, "feet")
  9094. },
  9095. {
  9096. name: "City Filler",
  9097. height: math.unit(3000, "feet")
  9098. },
  9099. {
  9100. name: "New Horizon",
  9101. height: math.unit(6000, "miles")
  9102. },
  9103. ]
  9104. ))
  9105. characterMakers.push(() => makeCharacter(
  9106. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9107. {
  9108. front: {
  9109. height: math.unit(5, "cm"),
  9110. weight: math.unit(1.94, "g"),
  9111. name: "Front",
  9112. image: {
  9113. source: "./media/characters/fleta/front.svg",
  9114. extra: 835 / 803
  9115. }
  9116. },
  9117. back: {
  9118. height: math.unit(5, "cm"),
  9119. weight: math.unit(1.94, "g"),
  9120. name: "Back",
  9121. image: {
  9122. source: "./media/characters/fleta/back.svg",
  9123. extra: 835 / 803
  9124. }
  9125. },
  9126. },
  9127. [
  9128. {
  9129. name: "Micro",
  9130. height: math.unit(5, "cm"),
  9131. default: true
  9132. },
  9133. ]
  9134. ))
  9135. characterMakers.push(() => makeCharacter(
  9136. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9137. {
  9138. front: {
  9139. height: math.unit(6, "feet"),
  9140. weight: math.unit(225, "lb"),
  9141. name: "Front",
  9142. image: {
  9143. source: "./media/characters/dominic/front.svg",
  9144. extra: 1770 / 1620,
  9145. bottom: 0.025
  9146. }
  9147. },
  9148. back: {
  9149. height: math.unit(6, "feet"),
  9150. weight: math.unit(225, "lb"),
  9151. name: "Back",
  9152. image: {
  9153. source: "./media/characters/dominic/back.svg",
  9154. extra: 1745 / 1620,
  9155. bottom: 0.065
  9156. }
  9157. },
  9158. },
  9159. [
  9160. {
  9161. name: "Nano",
  9162. height: math.unit(0.1, "mm")
  9163. },
  9164. {
  9165. name: "Micro-",
  9166. height: math.unit(1, "mm")
  9167. },
  9168. {
  9169. name: "Micro",
  9170. height: math.unit(4, "inches")
  9171. },
  9172. {
  9173. name: "Normal",
  9174. height: math.unit(6 + 4 / 12, "feet"),
  9175. default: true
  9176. },
  9177. {
  9178. name: "Macro",
  9179. height: math.unit(115, "feet")
  9180. },
  9181. {
  9182. name: "Macro+",
  9183. height: math.unit(955, "feet")
  9184. },
  9185. {
  9186. name: "Megamacro",
  9187. height: math.unit(8990, "feet")
  9188. },
  9189. {
  9190. name: "Gigmacro",
  9191. height: math.unit(9310, "miles")
  9192. },
  9193. {
  9194. name: "Teramacro",
  9195. height: math.unit(1567005010, "miles")
  9196. },
  9197. {
  9198. name: "Examacro",
  9199. height: math.unit(1425, "parsecs")
  9200. },
  9201. ]
  9202. ))
  9203. characterMakers.push(() => makeCharacter(
  9204. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9205. {
  9206. front: {
  9207. height: math.unit(400, "feet"),
  9208. weight: math.unit(44444444, "lb"),
  9209. name: "Front",
  9210. image: {
  9211. source: "./media/characters/major-colonel/front.svg"
  9212. }
  9213. },
  9214. back: {
  9215. height: math.unit(400, "feet"),
  9216. weight: math.unit(44444444, "lb"),
  9217. name: "Back",
  9218. image: {
  9219. source: "./media/characters/major-colonel/back.svg"
  9220. }
  9221. },
  9222. },
  9223. [
  9224. {
  9225. name: "Macro",
  9226. height: math.unit(400, "feet"),
  9227. default: true
  9228. },
  9229. ]
  9230. ))
  9231. characterMakers.push(() => makeCharacter(
  9232. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9233. {
  9234. catFront: {
  9235. height: math.unit(6, "feet"),
  9236. weight: math.unit(120, "lb"),
  9237. name: "Front (Cat Side)",
  9238. image: {
  9239. source: "./media/characters/axel-lycan/cat-front.svg",
  9240. extra: 430 / 402,
  9241. bottom: 43 / 472.35
  9242. }
  9243. },
  9244. catBack: {
  9245. height: math.unit(6, "feet"),
  9246. weight: math.unit(120, "lb"),
  9247. name: "Back (Cat Side)",
  9248. image: {
  9249. source: "./media/characters/axel-lycan/cat-back.svg",
  9250. extra: 447 / 419,
  9251. bottom: 23.3 / 469
  9252. }
  9253. },
  9254. wolfFront: {
  9255. height: math.unit(6, "feet"),
  9256. weight: math.unit(120, "lb"),
  9257. name: "Front (Wolf Side)",
  9258. image: {
  9259. source: "./media/characters/axel-lycan/wolf-front.svg",
  9260. extra: 485 / 456,
  9261. bottom: 19 / 504
  9262. }
  9263. },
  9264. wolfBack: {
  9265. height: math.unit(6, "feet"),
  9266. weight: math.unit(120, "lb"),
  9267. name: "Back (Wolf Side)",
  9268. image: {
  9269. source: "./media/characters/axel-lycan/wolf-back.svg",
  9270. extra: 475 / 438,
  9271. bottom: 39.2 / 514
  9272. }
  9273. },
  9274. },
  9275. [
  9276. {
  9277. name: "Macro",
  9278. height: math.unit(1, "km"),
  9279. default: true
  9280. },
  9281. ]
  9282. ))
  9283. characterMakers.push(() => makeCharacter(
  9284. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9285. {
  9286. front: {
  9287. height: math.unit(5 + 9 / 12, "feet"),
  9288. weight: math.unit(175, "lb"),
  9289. name: "Front",
  9290. image: {
  9291. source: "./media/characters/vanrel-hyena/front.svg",
  9292. extra: 1086 / 1010,
  9293. bottom: 0.04
  9294. }
  9295. },
  9296. },
  9297. [
  9298. {
  9299. name: "Normal",
  9300. height: math.unit(5 + 9 / 12, "feet"),
  9301. default: true
  9302. },
  9303. ]
  9304. ))
  9305. characterMakers.push(() => makeCharacter(
  9306. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9307. {
  9308. front: {
  9309. height: math.unit(6, "feet"),
  9310. weight: math.unit(103, "lb"),
  9311. name: "Front",
  9312. image: {
  9313. source: "./media/characters/abbott-absol/front.svg",
  9314. extra: 2010 / 1842
  9315. }
  9316. },
  9317. },
  9318. [
  9319. {
  9320. name: "Megamicro",
  9321. height: math.unit(0.1, "mm")
  9322. },
  9323. {
  9324. name: "Micro",
  9325. height: math.unit(1, "inch")
  9326. },
  9327. {
  9328. name: "Normal",
  9329. height: math.unit(6, "feet"),
  9330. default: true
  9331. },
  9332. ]
  9333. ))
  9334. characterMakers.push(() => makeCharacter(
  9335. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9336. {
  9337. front: {
  9338. height: math.unit(6, "feet"),
  9339. weight: math.unit(264, "lb"),
  9340. name: "Front",
  9341. image: {
  9342. source: "./media/characters/hector/front.svg",
  9343. extra: 2280 / 2130,
  9344. bottom: 0.07
  9345. }
  9346. },
  9347. },
  9348. [
  9349. {
  9350. name: "Normal",
  9351. height: math.unit(12.25, "foot"),
  9352. default: true
  9353. },
  9354. {
  9355. name: "Macro",
  9356. height: math.unit(160, "feet")
  9357. },
  9358. ]
  9359. ))
  9360. characterMakers.push(() => makeCharacter(
  9361. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9362. {
  9363. front: {
  9364. height: math.unit(6, "feet"),
  9365. weight: math.unit(150, "lb"),
  9366. name: "Front",
  9367. image: {
  9368. source: "./media/characters/sal/front.svg",
  9369. extra: 1846 / 1699,
  9370. bottom: 0.04
  9371. }
  9372. },
  9373. },
  9374. [
  9375. {
  9376. name: "Megamacro",
  9377. height: math.unit(10, "miles"),
  9378. default: true
  9379. },
  9380. ]
  9381. ))
  9382. characterMakers.push(() => makeCharacter(
  9383. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9384. {
  9385. front: {
  9386. height: math.unit(3, "meters"),
  9387. weight: math.unit(450, "kg"),
  9388. name: "front",
  9389. image: {
  9390. source: "./media/characters/ranger/front.svg",
  9391. extra: 2401 / 2243,
  9392. bottom: 0.05
  9393. }
  9394. },
  9395. },
  9396. [
  9397. {
  9398. name: "Normal",
  9399. height: math.unit(3, "meters"),
  9400. default: true
  9401. },
  9402. ]
  9403. ))
  9404. characterMakers.push(() => makeCharacter(
  9405. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9406. {
  9407. front: {
  9408. height: math.unit(14, "feet"),
  9409. weight: math.unit(800, "kg"),
  9410. name: "Front",
  9411. image: {
  9412. source: "./media/characters/theresa/front.svg",
  9413. extra: 3575 / 3346,
  9414. bottom: 0.03
  9415. }
  9416. },
  9417. },
  9418. [
  9419. {
  9420. name: "Normal",
  9421. height: math.unit(14, "feet"),
  9422. default: true
  9423. },
  9424. ]
  9425. ))
  9426. characterMakers.push(() => makeCharacter(
  9427. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9428. {
  9429. front: {
  9430. height: math.unit(6, "feet"),
  9431. weight: math.unit(3, "kg"),
  9432. name: "Front",
  9433. image: {
  9434. source: "./media/characters/ine/front.svg",
  9435. extra: 678 / 539,
  9436. bottom: 0.023
  9437. }
  9438. },
  9439. },
  9440. [
  9441. {
  9442. name: "Normal",
  9443. height: math.unit(2.265, "feet"),
  9444. default: true
  9445. },
  9446. ]
  9447. ))
  9448. characterMakers.push(() => makeCharacter(
  9449. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9450. {
  9451. front: {
  9452. height: math.unit(5, "feet"),
  9453. weight: math.unit(30, "kg"),
  9454. name: "Front",
  9455. image: {
  9456. source: "./media/characters/vial/front.svg",
  9457. extra: 1365 / 1277,
  9458. bottom: 0.04
  9459. }
  9460. },
  9461. },
  9462. [
  9463. {
  9464. name: "Normal",
  9465. height: math.unit(5, "feet"),
  9466. default: true
  9467. },
  9468. ]
  9469. ))
  9470. characterMakers.push(() => makeCharacter(
  9471. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9472. {
  9473. side: {
  9474. height: math.unit(3.4, "meters"),
  9475. weight: math.unit(1000, "lb"),
  9476. name: "Side",
  9477. image: {
  9478. source: "./media/characters/rovoska/side.svg",
  9479. extra: 4403 / 1515
  9480. }
  9481. },
  9482. },
  9483. [
  9484. {
  9485. name: "Normal",
  9486. height: math.unit(3.4, "meters"),
  9487. default: true
  9488. },
  9489. ]
  9490. ))
  9491. characterMakers.push(() => makeCharacter(
  9492. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9493. {
  9494. front: {
  9495. height: math.unit(8, "feet"),
  9496. weight: math.unit(315, "lb"),
  9497. name: "Front",
  9498. image: {
  9499. source: "./media/characters/gunner-rotthbauer/front.svg"
  9500. }
  9501. },
  9502. back: {
  9503. height: math.unit(8, "feet"),
  9504. weight: math.unit(315, "lb"),
  9505. name: "Back",
  9506. image: {
  9507. source: "./media/characters/gunner-rotthbauer/back.svg"
  9508. }
  9509. },
  9510. },
  9511. [
  9512. {
  9513. name: "Micro",
  9514. height: math.unit(3.5, "inches")
  9515. },
  9516. {
  9517. name: "Normal",
  9518. height: math.unit(8, "feet"),
  9519. default: true
  9520. },
  9521. {
  9522. name: "Macro",
  9523. height: math.unit(250, "feet")
  9524. },
  9525. {
  9526. name: "Megamacro",
  9527. height: math.unit(1, "AU")
  9528. },
  9529. ]
  9530. ))
  9531. characterMakers.push(() => makeCharacter(
  9532. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9533. {
  9534. front: {
  9535. height: math.unit(5 + 5 / 12, "feet"),
  9536. weight: math.unit(140, "lb"),
  9537. name: "Front",
  9538. image: {
  9539. source: "./media/characters/allatia/front.svg",
  9540. extra: 1227 / 1180,
  9541. bottom: 0.027
  9542. }
  9543. },
  9544. },
  9545. [
  9546. {
  9547. name: "Normal",
  9548. height: math.unit(5 + 5 / 12, "feet")
  9549. },
  9550. {
  9551. name: "Macro",
  9552. height: math.unit(250, "feet"),
  9553. default: true
  9554. },
  9555. {
  9556. name: "Megamacro",
  9557. height: math.unit(8, "miles")
  9558. }
  9559. ]
  9560. ))
  9561. characterMakers.push(() => makeCharacter(
  9562. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9563. {
  9564. front: {
  9565. height: math.unit(6, "feet"),
  9566. weight: math.unit(120, "lb"),
  9567. name: "Front",
  9568. image: {
  9569. source: "./media/characters/tene/front.svg",
  9570. extra: 1728 / 1578,
  9571. bottom: 0.022
  9572. }
  9573. },
  9574. stomping: {
  9575. height: math.unit(2.025, "meters"),
  9576. weight: math.unit(120, "lb"),
  9577. name: "Stomping",
  9578. image: {
  9579. source: "./media/characters/tene/stomping.svg",
  9580. extra: 938 / 873,
  9581. bottom: 0.01
  9582. }
  9583. },
  9584. sitting: {
  9585. height: math.unit(1, "meter"),
  9586. weight: math.unit(120, "lb"),
  9587. name: "Sitting",
  9588. image: {
  9589. source: "./media/characters/tene/sitting.svg",
  9590. extra: 437 / 415,
  9591. bottom: 0.1
  9592. }
  9593. },
  9594. feral: {
  9595. height: math.unit(3.9, "feet"),
  9596. weight: math.unit(250, "lb"),
  9597. name: "Feral",
  9598. image: {
  9599. source: "./media/characters/tene/feral.svg",
  9600. extra: 717 / 458,
  9601. bottom: 0.179
  9602. }
  9603. },
  9604. },
  9605. [
  9606. {
  9607. name: "Normal",
  9608. height: math.unit(6, "feet")
  9609. },
  9610. {
  9611. name: "Macro",
  9612. height: math.unit(300, "feet"),
  9613. default: true
  9614. },
  9615. {
  9616. name: "Megamacro",
  9617. height: math.unit(5, "miles")
  9618. },
  9619. ]
  9620. ))
  9621. characterMakers.push(() => makeCharacter(
  9622. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9623. {
  9624. side: {
  9625. height: math.unit(6, "feet"),
  9626. name: "Side",
  9627. image: {
  9628. source: "./media/characters/evander/side.svg",
  9629. extra: 877 / 477
  9630. }
  9631. },
  9632. },
  9633. [
  9634. {
  9635. name: "Normal",
  9636. height: math.unit(0.83, "meters"),
  9637. default: true
  9638. },
  9639. ]
  9640. ))
  9641. characterMakers.push(() => makeCharacter(
  9642. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9643. {
  9644. front: {
  9645. height: math.unit(12, "feet"),
  9646. weight: math.unit(1000, "lb"),
  9647. name: "Front",
  9648. image: {
  9649. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9650. extra: 1762 / 1611
  9651. }
  9652. },
  9653. back: {
  9654. height: math.unit(12, "feet"),
  9655. weight: math.unit(1000, "lb"),
  9656. name: "Back",
  9657. image: {
  9658. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9659. extra: 1762 / 1611
  9660. }
  9661. },
  9662. },
  9663. [
  9664. {
  9665. name: "Normal",
  9666. height: math.unit(12, "feet"),
  9667. default: true
  9668. },
  9669. {
  9670. name: "Kaiju",
  9671. height: math.unit(150, "feet")
  9672. },
  9673. ]
  9674. ))
  9675. characterMakers.push(() => makeCharacter(
  9676. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9677. {
  9678. front: {
  9679. height: math.unit(6, "feet"),
  9680. weight: math.unit(150, "lb"),
  9681. name: "Front",
  9682. image: {
  9683. source: "./media/characters/zero-alurus/front.svg"
  9684. }
  9685. },
  9686. back: {
  9687. height: math.unit(6, "feet"),
  9688. weight: math.unit(150, "lb"),
  9689. name: "Back",
  9690. image: {
  9691. source: "./media/characters/zero-alurus/back.svg"
  9692. }
  9693. },
  9694. },
  9695. [
  9696. {
  9697. name: "Normal",
  9698. height: math.unit(5 + 10 / 12, "feet")
  9699. },
  9700. {
  9701. name: "Macro",
  9702. height: math.unit(60, "feet"),
  9703. default: true
  9704. },
  9705. {
  9706. name: "Macro+",
  9707. height: math.unit(450, "feet")
  9708. },
  9709. ]
  9710. ))
  9711. characterMakers.push(() => makeCharacter(
  9712. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9713. {
  9714. front: {
  9715. height: math.unit(6, "feet"),
  9716. weight: math.unit(200, "lb"),
  9717. name: "Front",
  9718. image: {
  9719. source: "./media/characters/mega-shi/front.svg",
  9720. extra: 1279 / 1250,
  9721. bottom: 0.02
  9722. }
  9723. },
  9724. back: {
  9725. height: math.unit(6, "feet"),
  9726. weight: math.unit(200, "lb"),
  9727. name: "Back",
  9728. image: {
  9729. source: "./media/characters/mega-shi/back.svg",
  9730. extra: 1279 / 1250,
  9731. bottom: 0.02
  9732. }
  9733. },
  9734. },
  9735. [
  9736. {
  9737. name: "Micro",
  9738. height: math.unit(16 + 6 / 12, "feet")
  9739. },
  9740. {
  9741. name: "Third Dimension",
  9742. height: math.unit(40, "meters")
  9743. },
  9744. {
  9745. name: "Normal",
  9746. height: math.unit(660, "feet"),
  9747. default: true
  9748. },
  9749. {
  9750. name: "Megamacro",
  9751. height: math.unit(10, "miles")
  9752. },
  9753. {
  9754. name: "Planetary Launch",
  9755. height: math.unit(500, "miles")
  9756. },
  9757. {
  9758. name: "Interstellar",
  9759. height: math.unit(1e9, "miles")
  9760. },
  9761. {
  9762. name: "Leaving the Universe",
  9763. height: math.unit(1, "gigaparsec")
  9764. },
  9765. {
  9766. name: "Travelling Universes",
  9767. height: math.unit(30e15, "parsecs")
  9768. },
  9769. ]
  9770. ))
  9771. characterMakers.push(() => makeCharacter(
  9772. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9773. {
  9774. front: {
  9775. height: math.unit(6, "feet"),
  9776. weight: math.unit(150, "lb"),
  9777. name: "Front",
  9778. image: {
  9779. source: "./media/characters/odyssey/front.svg",
  9780. extra: 1782 / 1582,
  9781. bottom: 0.01
  9782. }
  9783. },
  9784. side: {
  9785. height: math.unit(5.7, "feet"),
  9786. weight: math.unit(140, "lb"),
  9787. name: "Side",
  9788. image: {
  9789. source: "./media/characters/odyssey/side.svg",
  9790. extra: 6462 / 5700
  9791. }
  9792. },
  9793. },
  9794. [
  9795. {
  9796. name: "Normal",
  9797. height: math.unit(5 + 4 / 12, "feet")
  9798. },
  9799. {
  9800. name: "Macro",
  9801. height: math.unit(1, "km")
  9802. },
  9803. {
  9804. name: "Megamacro",
  9805. height: math.unit(3000, "km")
  9806. },
  9807. {
  9808. name: "Gigamacro",
  9809. height: math.unit(1, "AU"),
  9810. default: true
  9811. },
  9812. {
  9813. name: "Omniversal",
  9814. height: math.unit(100e14, "lightyears")
  9815. },
  9816. ]
  9817. ))
  9818. characterMakers.push(() => makeCharacter(
  9819. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9820. {
  9821. front: {
  9822. height: math.unit(6, "feet"),
  9823. weight: math.unit(300, "lb"),
  9824. name: "Front",
  9825. image: {
  9826. source: "./media/characters/mekuto/front.svg",
  9827. extra: 921 / 832,
  9828. bottom: 0.03
  9829. }
  9830. },
  9831. hand: {
  9832. height: math.unit(6 / 10.24, "feet"),
  9833. name: "Hand",
  9834. image: {
  9835. source: "./media/characters/mekuto/hand.svg"
  9836. }
  9837. },
  9838. foot: {
  9839. height: math.unit(6 / 5.05, "feet"),
  9840. name: "Foot",
  9841. image: {
  9842. source: "./media/characters/mekuto/foot.svg"
  9843. }
  9844. },
  9845. },
  9846. [
  9847. {
  9848. name: "Minimicro",
  9849. height: math.unit(0.2, "inches")
  9850. },
  9851. {
  9852. name: "Micro",
  9853. height: math.unit(1.5, "inches")
  9854. },
  9855. {
  9856. name: "Normal",
  9857. height: math.unit(5 + 11 / 12, "feet"),
  9858. default: true
  9859. },
  9860. {
  9861. name: "Minimacro",
  9862. height: math.unit(17 + 9 / 12, "feet")
  9863. },
  9864. {
  9865. name: "Macro",
  9866. height: math.unit(177.5, "feet")
  9867. },
  9868. {
  9869. name: "Megamacro",
  9870. height: math.unit(152, "miles")
  9871. },
  9872. ]
  9873. ))
  9874. characterMakers.push(() => makeCharacter(
  9875. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9876. {
  9877. front: {
  9878. height: math.unit(6.5, "inches"),
  9879. weight: math.unit(13, "oz"),
  9880. name: "Front",
  9881. image: {
  9882. source: "./media/characters/dafydd-tomos/front.svg",
  9883. extra: 2990 / 2603,
  9884. bottom: 0.03
  9885. }
  9886. },
  9887. },
  9888. [
  9889. {
  9890. name: "Micro",
  9891. height: math.unit(6.5, "inches"),
  9892. default: true
  9893. },
  9894. ]
  9895. ))
  9896. characterMakers.push(() => makeCharacter(
  9897. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9898. {
  9899. front: {
  9900. height: math.unit(6, "feet"),
  9901. weight: math.unit(150, "lb"),
  9902. name: "Front",
  9903. image: {
  9904. source: "./media/characters/splinter/front.svg",
  9905. extra: 2990 / 2882,
  9906. bottom: 0.04
  9907. }
  9908. },
  9909. back: {
  9910. height: math.unit(6, "feet"),
  9911. weight: math.unit(150, "lb"),
  9912. name: "Back",
  9913. image: {
  9914. source: "./media/characters/splinter/back.svg",
  9915. extra: 2990 / 2882,
  9916. bottom: 0.04
  9917. }
  9918. },
  9919. },
  9920. [
  9921. {
  9922. name: "Normal",
  9923. height: math.unit(6, "feet")
  9924. },
  9925. {
  9926. name: "Macro",
  9927. height: math.unit(230, "meters"),
  9928. default: true
  9929. },
  9930. ]
  9931. ))
  9932. characterMakers.push(() => makeCharacter(
  9933. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9934. {
  9935. front: {
  9936. height: math.unit(4 + 10 / 12, "feet"),
  9937. weight: math.unit(480, "lb"),
  9938. name: "Front",
  9939. image: {
  9940. source: "./media/characters/snow-gabumon/front.svg",
  9941. extra: 1140 / 963,
  9942. bottom: 0.058
  9943. }
  9944. },
  9945. back: {
  9946. height: math.unit(4 + 10 / 12, "feet"),
  9947. weight: math.unit(480, "lb"),
  9948. name: "Back",
  9949. image: {
  9950. source: "./media/characters/snow-gabumon/back.svg",
  9951. extra: 1115 / 962,
  9952. bottom: 0.041
  9953. }
  9954. },
  9955. frontUndresed: {
  9956. height: math.unit(4 + 10 / 12, "feet"),
  9957. weight: math.unit(480, "lb"),
  9958. name: "Front (Undressed)",
  9959. image: {
  9960. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9961. extra: 1061 / 960,
  9962. bottom: 0.045
  9963. }
  9964. },
  9965. },
  9966. [
  9967. {
  9968. name: "Micro",
  9969. height: math.unit(1, "inch")
  9970. },
  9971. {
  9972. name: "Normal",
  9973. height: math.unit(4 + 10 / 12, "feet"),
  9974. default: true
  9975. },
  9976. {
  9977. name: "Macro",
  9978. height: math.unit(200, "feet")
  9979. },
  9980. {
  9981. name: "Megamacro",
  9982. height: math.unit(120, "miles")
  9983. },
  9984. {
  9985. name: "Gigamacro",
  9986. height: math.unit(9800, "miles")
  9987. },
  9988. ]
  9989. ))
  9990. characterMakers.push(() => makeCharacter(
  9991. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9992. {
  9993. front: {
  9994. height: math.unit(1.7, "meters"),
  9995. weight: math.unit(140, "lb"),
  9996. name: "Front",
  9997. image: {
  9998. source: "./media/characters/moody/front.svg",
  9999. extra: 3226 / 3007,
  10000. bottom: 0.087
  10001. }
  10002. },
  10003. },
  10004. [
  10005. {
  10006. name: "Micro",
  10007. height: math.unit(1, "mm")
  10008. },
  10009. {
  10010. name: "Normal",
  10011. height: math.unit(1.7, "meters"),
  10012. default: true
  10013. },
  10014. {
  10015. name: "Macro",
  10016. height: math.unit(80, "meters")
  10017. },
  10018. {
  10019. name: "Macro+",
  10020. height: math.unit(500, "meters")
  10021. },
  10022. ]
  10023. ))
  10024. characterMakers.push(() => makeCharacter(
  10025. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10026. {
  10027. front: {
  10028. height: math.unit(6, "feet"),
  10029. weight: math.unit(150, "lb"),
  10030. name: "Front",
  10031. image: {
  10032. source: "./media/characters/zyas/front.svg",
  10033. extra: 1180 / 1120,
  10034. bottom: 0.045
  10035. }
  10036. },
  10037. },
  10038. [
  10039. {
  10040. name: "Normal",
  10041. height: math.unit(10, "feet"),
  10042. default: true
  10043. },
  10044. {
  10045. name: "Macro",
  10046. height: math.unit(500, "feet")
  10047. },
  10048. {
  10049. name: "Megamacro",
  10050. height: math.unit(5, "miles")
  10051. },
  10052. {
  10053. name: "Teramacro",
  10054. height: math.unit(150000, "miles")
  10055. },
  10056. ]
  10057. ))
  10058. characterMakers.push(() => makeCharacter(
  10059. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10060. {
  10061. front: {
  10062. height: math.unit(6, "feet"),
  10063. weight: math.unit(150, "lb"),
  10064. name: "Front",
  10065. image: {
  10066. source: "./media/characters/cuon/front.svg",
  10067. extra: 1390 / 1320,
  10068. bottom: 0.008
  10069. }
  10070. },
  10071. },
  10072. [
  10073. {
  10074. name: "Micro",
  10075. height: math.unit(3, "inches")
  10076. },
  10077. {
  10078. name: "Normal",
  10079. height: math.unit(18 + 9 / 12, "feet"),
  10080. default: true
  10081. },
  10082. {
  10083. name: "Macro",
  10084. height: math.unit(360, "feet")
  10085. },
  10086. {
  10087. name: "Megamacro",
  10088. height: math.unit(360, "miles")
  10089. },
  10090. ]
  10091. ))
  10092. characterMakers.push(() => makeCharacter(
  10093. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10094. {
  10095. front: {
  10096. height: math.unit(2.4, "meters"),
  10097. weight: math.unit(70, "kg"),
  10098. name: "Front",
  10099. image: {
  10100. source: "./media/characters/nyanuxk/front.svg",
  10101. extra: 1172 / 1084,
  10102. bottom: 0.065
  10103. }
  10104. },
  10105. side: {
  10106. height: math.unit(2.4, "meters"),
  10107. weight: math.unit(70, "kg"),
  10108. name: "Side",
  10109. image: {
  10110. source: "./media/characters/nyanuxk/side.svg",
  10111. extra: 1190 / 1132,
  10112. bottom: 0.007
  10113. }
  10114. },
  10115. back: {
  10116. height: math.unit(2.4, "meters"),
  10117. weight: math.unit(70, "kg"),
  10118. name: "Back",
  10119. image: {
  10120. source: "./media/characters/nyanuxk/back.svg",
  10121. extra: 1200 / 1141,
  10122. bottom: 0.015
  10123. }
  10124. },
  10125. foot: {
  10126. height: math.unit(0.52, "meters"),
  10127. name: "Foot",
  10128. image: {
  10129. source: "./media/characters/nyanuxk/foot.svg"
  10130. }
  10131. },
  10132. },
  10133. [
  10134. {
  10135. name: "Micro",
  10136. height: math.unit(2, "cm")
  10137. },
  10138. {
  10139. name: "Normal",
  10140. height: math.unit(2.4, "meters"),
  10141. default: true
  10142. },
  10143. {
  10144. name: "Smaller Macro",
  10145. height: math.unit(120, "meters")
  10146. },
  10147. {
  10148. name: "Bigger Macro",
  10149. height: math.unit(1.2, "km")
  10150. },
  10151. {
  10152. name: "Megamacro",
  10153. height: math.unit(15, "kilometers")
  10154. },
  10155. {
  10156. name: "Gigamacro",
  10157. height: math.unit(2000, "km")
  10158. },
  10159. {
  10160. name: "Teramacro",
  10161. height: math.unit(500000, "km")
  10162. },
  10163. ]
  10164. ))
  10165. characterMakers.push(() => makeCharacter(
  10166. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10167. {
  10168. side: {
  10169. height: math.unit(6, "feet"),
  10170. name: "Side",
  10171. image: {
  10172. source: "./media/characters/ailbhe/side.svg",
  10173. extra: 757 / 464,
  10174. bottom: 0.041
  10175. }
  10176. },
  10177. },
  10178. [
  10179. {
  10180. name: "Normal",
  10181. height: math.unit(1.07, "meters"),
  10182. default: true
  10183. },
  10184. ]
  10185. ))
  10186. characterMakers.push(() => makeCharacter(
  10187. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10188. {
  10189. front: {
  10190. height: math.unit(6, "feet"),
  10191. weight: math.unit(120, "kg"),
  10192. name: "Front",
  10193. image: {
  10194. source: "./media/characters/zevulfius/front.svg",
  10195. extra: 965 / 903
  10196. }
  10197. },
  10198. side: {
  10199. height: math.unit(6, "feet"),
  10200. weight: math.unit(120, "kg"),
  10201. name: "Side",
  10202. image: {
  10203. source: "./media/characters/zevulfius/side.svg",
  10204. extra: 939 / 900
  10205. }
  10206. },
  10207. back: {
  10208. height: math.unit(6, "feet"),
  10209. weight: math.unit(120, "kg"),
  10210. name: "Back",
  10211. image: {
  10212. source: "./media/characters/zevulfius/back.svg",
  10213. extra: 918 / 854,
  10214. bottom: 0.005
  10215. }
  10216. },
  10217. foot: {
  10218. height: math.unit(6 / 3.72, "feet"),
  10219. name: "Foot",
  10220. image: {
  10221. source: "./media/characters/zevulfius/foot.svg"
  10222. }
  10223. },
  10224. },
  10225. [
  10226. {
  10227. name: "Macro",
  10228. height: math.unit(750, "meters")
  10229. },
  10230. {
  10231. name: "Megamacro",
  10232. height: math.unit(20, "km"),
  10233. default: true
  10234. },
  10235. {
  10236. name: "Gigamacro",
  10237. height: math.unit(2000, "km")
  10238. },
  10239. {
  10240. name: "Teramacro",
  10241. height: math.unit(250000, "km")
  10242. },
  10243. ]
  10244. ))
  10245. characterMakers.push(() => makeCharacter(
  10246. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10247. {
  10248. front: {
  10249. height: math.unit(100, "feet"),
  10250. weight: math.unit(350, "kg"),
  10251. name: "Front",
  10252. image: {
  10253. source: "./media/characters/rikes/front.svg",
  10254. extra: 1565 / 1483,
  10255. bottom: 0.017
  10256. }
  10257. },
  10258. },
  10259. [
  10260. {
  10261. name: "Macro",
  10262. height: math.unit(100, "feet"),
  10263. default: true
  10264. },
  10265. ]
  10266. ))
  10267. characterMakers.push(() => makeCharacter(
  10268. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10269. {
  10270. anthro: {
  10271. height: math.unit(8, "feet"),
  10272. weight: math.unit(120, "kg"),
  10273. name: "Anthro",
  10274. image: {
  10275. source: "./media/characters/adam-silver-mane/anthro.svg",
  10276. extra: 5743 / 5339,
  10277. bottom: 0.07
  10278. }
  10279. },
  10280. taur: {
  10281. height: math.unit(16, "feet"),
  10282. weight: math.unit(1500, "kg"),
  10283. name: "Taur",
  10284. image: {
  10285. source: "./media/characters/adam-silver-mane/taur.svg",
  10286. extra: 1713 / 1571,
  10287. bottom: 0.01
  10288. }
  10289. },
  10290. },
  10291. [
  10292. {
  10293. name: "Normal",
  10294. height: math.unit(8, "feet")
  10295. },
  10296. {
  10297. name: "Minimacro",
  10298. height: math.unit(80, "feet")
  10299. },
  10300. {
  10301. name: "Macro",
  10302. height: math.unit(800, "feet"),
  10303. default: true
  10304. },
  10305. {
  10306. name: "Megamacro",
  10307. height: math.unit(8000, "feet")
  10308. },
  10309. {
  10310. name: "Gigamacro",
  10311. height: math.unit(800, "miles")
  10312. },
  10313. {
  10314. name: "Teramacro",
  10315. height: math.unit(80000, "miles")
  10316. },
  10317. {
  10318. name: "Celestial",
  10319. height: math.unit(8e6, "miles")
  10320. },
  10321. {
  10322. name: "Star Dragon",
  10323. height: math.unit(800000, "parsecs")
  10324. },
  10325. {
  10326. name: "Godly",
  10327. height: math.unit(800, "teraparsecs")
  10328. },
  10329. ]
  10330. ))
  10331. characterMakers.push(() => makeCharacter(
  10332. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10333. {
  10334. front: {
  10335. height: math.unit(6, "feet"),
  10336. weight: math.unit(150, "lb"),
  10337. name: "Front",
  10338. image: {
  10339. source: "./media/characters/ky'owin/front.svg",
  10340. extra: 3888 / 3068,
  10341. bottom: 0.015
  10342. }
  10343. },
  10344. },
  10345. [
  10346. {
  10347. name: "Normal",
  10348. height: math.unit(6 + 8 / 12, "feet")
  10349. },
  10350. {
  10351. name: "Large",
  10352. height: math.unit(68, "feet")
  10353. },
  10354. {
  10355. name: "Macro",
  10356. height: math.unit(132, "feet")
  10357. },
  10358. {
  10359. name: "Macro+",
  10360. height: math.unit(340, "feet")
  10361. },
  10362. {
  10363. name: "Macro++",
  10364. height: math.unit(680, "feet"),
  10365. default: true
  10366. },
  10367. {
  10368. name: "Megamacro",
  10369. height: math.unit(1, "mile")
  10370. },
  10371. {
  10372. name: "Megamacro+",
  10373. height: math.unit(10, "miles")
  10374. },
  10375. ]
  10376. ))
  10377. characterMakers.push(() => makeCharacter(
  10378. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10379. {
  10380. front: {
  10381. height: math.unit(4, "feet"),
  10382. weight: math.unit(50, "lb"),
  10383. name: "Front",
  10384. image: {
  10385. source: "./media/characters/mal/front.svg",
  10386. extra: 785 / 724,
  10387. bottom: 0.07
  10388. }
  10389. },
  10390. },
  10391. [
  10392. {
  10393. name: "Micro",
  10394. height: math.unit(4, "inches")
  10395. },
  10396. {
  10397. name: "Normal",
  10398. height: math.unit(4, "feet"),
  10399. default: true
  10400. },
  10401. {
  10402. name: "Macro",
  10403. height: math.unit(200, "feet")
  10404. },
  10405. ]
  10406. ))
  10407. characterMakers.push(() => makeCharacter(
  10408. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10409. {
  10410. front: {
  10411. height: math.unit(6, "feet"),
  10412. weight: math.unit(150, "lb"),
  10413. name: "Front",
  10414. image: {
  10415. source: "./media/characters/jordan-deware/front.svg",
  10416. extra: 1191 / 1012
  10417. }
  10418. },
  10419. },
  10420. [
  10421. {
  10422. name: "Nano",
  10423. height: math.unit(0.01, "mm")
  10424. },
  10425. {
  10426. name: "Minimicro",
  10427. height: math.unit(1, "mm")
  10428. },
  10429. {
  10430. name: "Micro",
  10431. height: math.unit(0.5, "inches")
  10432. },
  10433. {
  10434. name: "Normal",
  10435. height: math.unit(4, "feet"),
  10436. default: true
  10437. },
  10438. {
  10439. name: "Minimacro",
  10440. height: math.unit(40, "meters")
  10441. },
  10442. {
  10443. name: "Small Macro",
  10444. height: math.unit(400, "meters")
  10445. },
  10446. {
  10447. name: "Macro",
  10448. height: math.unit(4, "miles")
  10449. },
  10450. {
  10451. name: "Megamacro",
  10452. height: math.unit(40, "miles")
  10453. },
  10454. {
  10455. name: "Megamacro+",
  10456. height: math.unit(400, "miles")
  10457. },
  10458. {
  10459. name: "Gigamacro",
  10460. height: math.unit(400000, "miles")
  10461. },
  10462. ]
  10463. ))
  10464. characterMakers.push(() => makeCharacter(
  10465. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10466. {
  10467. side: {
  10468. height: math.unit(6, "feet"),
  10469. weight: math.unit(150, "lb"),
  10470. name: "Side",
  10471. image: {
  10472. source: "./media/characters/kimiko/side.svg",
  10473. extra: 600 / 358
  10474. }
  10475. },
  10476. },
  10477. [
  10478. {
  10479. name: "Normal",
  10480. height: math.unit(15, "feet"),
  10481. default: true
  10482. },
  10483. {
  10484. name: "Macro",
  10485. height: math.unit(220, "feet")
  10486. },
  10487. {
  10488. name: "Macro+",
  10489. height: math.unit(1450, "feet")
  10490. },
  10491. {
  10492. name: "Megamacro",
  10493. height: math.unit(11500, "feet")
  10494. },
  10495. {
  10496. name: "Gigamacro",
  10497. height: math.unit(9500, "miles")
  10498. },
  10499. {
  10500. name: "Teramacro",
  10501. height: math.unit(2208005005, "miles")
  10502. },
  10503. {
  10504. name: "Examacro",
  10505. height: math.unit(2750, "parsecs")
  10506. },
  10507. {
  10508. name: "Zettamacro",
  10509. height: math.unit(101500, "parsecs")
  10510. },
  10511. ]
  10512. ))
  10513. characterMakers.push(() => makeCharacter(
  10514. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10515. {
  10516. front: {
  10517. height: math.unit(6, "feet"),
  10518. weight: math.unit(70, "kg"),
  10519. name: "Front",
  10520. image: {
  10521. source: "./media/characters/andrew-sleepy/front.svg"
  10522. }
  10523. },
  10524. side: {
  10525. height: math.unit(6, "feet"),
  10526. weight: math.unit(70, "kg"),
  10527. name: "Side",
  10528. image: {
  10529. source: "./media/characters/andrew-sleepy/side.svg"
  10530. }
  10531. },
  10532. },
  10533. [
  10534. {
  10535. name: "Micro",
  10536. height: math.unit(1, "mm"),
  10537. default: true
  10538. },
  10539. ]
  10540. ))
  10541. characterMakers.push(() => makeCharacter(
  10542. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10543. {
  10544. front: {
  10545. height: math.unit(6, "feet"),
  10546. weight: math.unit(150, "lb"),
  10547. name: "Front",
  10548. image: {
  10549. source: "./media/characters/judio/front.svg",
  10550. extra: 1258 / 1110
  10551. }
  10552. },
  10553. },
  10554. [
  10555. {
  10556. name: "Normal",
  10557. height: math.unit(5 + 6 / 12, "feet")
  10558. },
  10559. {
  10560. name: "Macro",
  10561. height: math.unit(1000, "feet"),
  10562. default: true
  10563. },
  10564. {
  10565. name: "Megamacro",
  10566. height: math.unit(10, "miles")
  10567. },
  10568. ]
  10569. ))
  10570. characterMakers.push(() => makeCharacter(
  10571. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10572. {
  10573. front: {
  10574. height: math.unit(6, "feet"),
  10575. weight: math.unit(68, "kg"),
  10576. name: "Front",
  10577. image: {
  10578. source: "./media/characters/nomaxice/front.svg",
  10579. extra: 1498 / 1073,
  10580. bottom: 0.075
  10581. }
  10582. },
  10583. foot: {
  10584. height: math.unit(1.1, "feet"),
  10585. name: "Foot",
  10586. image: {
  10587. source: "./media/characters/nomaxice/foot.svg"
  10588. }
  10589. },
  10590. },
  10591. [
  10592. {
  10593. name: "Micro",
  10594. height: math.unit(8, "cm")
  10595. },
  10596. {
  10597. name: "Norm",
  10598. height: math.unit(1.82, "m")
  10599. },
  10600. {
  10601. name: "Norm+",
  10602. height: math.unit(8.8, "feet")
  10603. },
  10604. {
  10605. name: "Big",
  10606. height: math.unit(8, "meters"),
  10607. default: true
  10608. },
  10609. {
  10610. name: "Macro",
  10611. height: math.unit(18, "meters")
  10612. },
  10613. {
  10614. name: "Macro+",
  10615. height: math.unit(88, "meters")
  10616. },
  10617. ]
  10618. ))
  10619. characterMakers.push(() => makeCharacter(
  10620. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10621. {
  10622. front: {
  10623. height: math.unit(12, "feet"),
  10624. weight: math.unit(1.5, "tons"),
  10625. name: "Front",
  10626. image: {
  10627. source: "./media/characters/dydros/front.svg",
  10628. extra: 863 / 800,
  10629. bottom: 0.015
  10630. }
  10631. },
  10632. back: {
  10633. height: math.unit(12, "feet"),
  10634. weight: math.unit(1.5, "tons"),
  10635. name: "Back",
  10636. image: {
  10637. source: "./media/characters/dydros/back.svg",
  10638. extra: 900 / 843,
  10639. bottom: 0.005
  10640. }
  10641. },
  10642. },
  10643. [
  10644. {
  10645. name: "Normal",
  10646. height: math.unit(12, "feet"),
  10647. default: true
  10648. },
  10649. ]
  10650. ))
  10651. characterMakers.push(() => makeCharacter(
  10652. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10653. {
  10654. front: {
  10655. height: math.unit(6, "feet"),
  10656. weight: math.unit(100, "kg"),
  10657. name: "Front",
  10658. image: {
  10659. source: "./media/characters/riggi/front.svg",
  10660. extra: 5787 / 5303
  10661. }
  10662. },
  10663. hyper: {
  10664. height: math.unit(6 * 5 / 3, "feet"),
  10665. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10666. name: "Hyper",
  10667. image: {
  10668. source: "./media/characters/riggi/hyper.svg",
  10669. extra: 3595 / 3485
  10670. }
  10671. },
  10672. },
  10673. [
  10674. {
  10675. name: "Small Macro",
  10676. height: math.unit(50, "feet")
  10677. },
  10678. {
  10679. name: "Default",
  10680. height: math.unit(200, "feet"),
  10681. default: true
  10682. },
  10683. {
  10684. name: "Loom",
  10685. height: math.unit(10000, "feet")
  10686. },
  10687. {
  10688. name: "Cruising Altitude",
  10689. height: math.unit(30000, "feet")
  10690. },
  10691. {
  10692. name: "Megamacro",
  10693. height: math.unit(100, "miles")
  10694. },
  10695. {
  10696. name: "Continent Sized",
  10697. height: math.unit(2800, "miles")
  10698. },
  10699. {
  10700. name: "Earth Sized",
  10701. height: math.unit(8000, "miles")
  10702. },
  10703. ]
  10704. ))
  10705. characterMakers.push(() => makeCharacter(
  10706. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10707. {
  10708. front: {
  10709. height: math.unit(6, "feet"),
  10710. weight: math.unit(250, "lb"),
  10711. name: "Front",
  10712. image: {
  10713. source: "./media/characters/alexi/front.svg",
  10714. extra: 3483 / 3291,
  10715. bottom: 0.04
  10716. }
  10717. },
  10718. back: {
  10719. height: math.unit(6, "feet"),
  10720. weight: math.unit(250, "lb"),
  10721. name: "Back",
  10722. image: {
  10723. source: "./media/characters/alexi/back.svg",
  10724. extra: 3533 / 3356,
  10725. bottom: 0.021
  10726. }
  10727. },
  10728. frontTransforming: {
  10729. height: math.unit(8.58, "feet"),
  10730. weight: math.unit(1300, "lb"),
  10731. name: "Transforming",
  10732. image: {
  10733. source: "./media/characters/alexi/front-transforming.svg",
  10734. extra: 437 / 409,
  10735. bottom: 19 / 458.66
  10736. }
  10737. },
  10738. frontTransformed: {
  10739. height: math.unit(12.5, "feet"),
  10740. weight: math.unit(4000, "lb"),
  10741. name: "Transformed",
  10742. image: {
  10743. source: "./media/characters/alexi/front-transformed.svg",
  10744. extra: 639 / 614,
  10745. bottom: 30.55 / 671
  10746. }
  10747. },
  10748. },
  10749. [
  10750. {
  10751. name: "Normal",
  10752. height: math.unit(14, "feet"),
  10753. default: true
  10754. },
  10755. {
  10756. name: "Minimacro",
  10757. height: math.unit(30, "meters")
  10758. },
  10759. {
  10760. name: "Macro",
  10761. height: math.unit(500, "meters")
  10762. },
  10763. {
  10764. name: "Megamacro",
  10765. height: math.unit(9000, "km")
  10766. },
  10767. {
  10768. name: "Teramacro",
  10769. height: math.unit(384000, "km")
  10770. },
  10771. ]
  10772. ))
  10773. characterMakers.push(() => makeCharacter(
  10774. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10775. {
  10776. front: {
  10777. height: math.unit(6, "feet"),
  10778. weight: math.unit(150, "lb"),
  10779. name: "Front",
  10780. image: {
  10781. source: "./media/characters/kayroo/front.svg",
  10782. extra: 1153 / 1038,
  10783. bottom: 0.06
  10784. }
  10785. },
  10786. foot: {
  10787. height: math.unit(6, "feet"),
  10788. weight: math.unit(150, "lb"),
  10789. name: "Foot",
  10790. image: {
  10791. source: "./media/characters/kayroo/foot.svg"
  10792. }
  10793. },
  10794. },
  10795. [
  10796. {
  10797. name: "Normal",
  10798. height: math.unit(8, "feet"),
  10799. default: true
  10800. },
  10801. {
  10802. name: "Minimacro",
  10803. height: math.unit(250, "feet")
  10804. },
  10805. {
  10806. name: "Macro",
  10807. height: math.unit(2800, "feet")
  10808. },
  10809. {
  10810. name: "Megamacro",
  10811. height: math.unit(5200, "feet")
  10812. },
  10813. {
  10814. name: "Gigamacro",
  10815. height: math.unit(27000, "feet")
  10816. },
  10817. {
  10818. name: "Omega",
  10819. height: math.unit(45000, "feet")
  10820. },
  10821. ]
  10822. ))
  10823. characterMakers.push(() => makeCharacter(
  10824. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10825. {
  10826. front: {
  10827. height: math.unit(18, "feet"),
  10828. weight: math.unit(5800, "lb"),
  10829. name: "Front",
  10830. image: {
  10831. source: "./media/characters/rhys/front.svg",
  10832. extra: 3386 / 3090,
  10833. bottom: 0.07
  10834. }
  10835. },
  10836. },
  10837. [
  10838. {
  10839. name: "Normal",
  10840. height: math.unit(18, "feet"),
  10841. default: true
  10842. },
  10843. {
  10844. name: "Working Size",
  10845. height: math.unit(200, "feet")
  10846. },
  10847. {
  10848. name: "Demolition Size",
  10849. height: math.unit(2000, "feet")
  10850. },
  10851. {
  10852. name: "Maximum Licensed Size",
  10853. height: math.unit(5, "miles")
  10854. },
  10855. {
  10856. name: "Maximum Observed Size",
  10857. height: math.unit(10, "yottameters")
  10858. },
  10859. ]
  10860. ))
  10861. characterMakers.push(() => makeCharacter(
  10862. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10863. {
  10864. front: {
  10865. height: math.unit(6, "feet"),
  10866. weight: math.unit(250, "lb"),
  10867. name: "Front",
  10868. image: {
  10869. source: "./media/characters/toto/front.svg",
  10870. extra: 527 / 479,
  10871. bottom: 0.05
  10872. }
  10873. },
  10874. },
  10875. [
  10876. {
  10877. name: "Micro",
  10878. height: math.unit(3, "feet")
  10879. },
  10880. {
  10881. name: "Normal",
  10882. height: math.unit(10, "feet")
  10883. },
  10884. {
  10885. name: "Macro",
  10886. height: math.unit(150, "feet"),
  10887. default: true
  10888. },
  10889. {
  10890. name: "Megamacro",
  10891. height: math.unit(1200, "feet")
  10892. },
  10893. ]
  10894. ))
  10895. characterMakers.push(() => makeCharacter(
  10896. { name: "King", species: ["lion"], tags: ["anthro"] },
  10897. {
  10898. back: {
  10899. height: math.unit(6, "feet"),
  10900. weight: math.unit(150, "lb"),
  10901. name: "Back",
  10902. image: {
  10903. source: "./media/characters/king/back.svg"
  10904. }
  10905. },
  10906. },
  10907. [
  10908. {
  10909. name: "Micro",
  10910. height: math.unit(2, "inches")
  10911. },
  10912. {
  10913. name: "Normal",
  10914. height: math.unit(8, "feet")
  10915. },
  10916. {
  10917. name: "Macro",
  10918. height: math.unit(200, "feet"),
  10919. default: true
  10920. },
  10921. {
  10922. name: "Megamacro",
  10923. height: math.unit(50, "miles")
  10924. },
  10925. ]
  10926. ))
  10927. characterMakers.push(() => makeCharacter(
  10928. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10929. {
  10930. anthro: {
  10931. height: math.unit(6 + 5 / 12, "feet"),
  10932. weight: math.unit(280, "lb"),
  10933. name: "Anthro",
  10934. image: {
  10935. source: "./media/characters/cordite/anthro.svg",
  10936. extra: 1986 / 1905,
  10937. bottom: 0.025
  10938. }
  10939. },
  10940. feral: {
  10941. height: math.unit(2, "feet"),
  10942. weight: math.unit(90, "lb"),
  10943. name: "Feral",
  10944. image: {
  10945. source: "./media/characters/cordite/feral.svg",
  10946. extra: 1260 / 755,
  10947. bottom: 0.05
  10948. }
  10949. },
  10950. },
  10951. [
  10952. {
  10953. name: "Normal",
  10954. height: math.unit(6 + 5 / 12, "feet"),
  10955. default: true
  10956. },
  10957. ]
  10958. ))
  10959. characterMakers.push(() => makeCharacter(
  10960. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10961. {
  10962. front: {
  10963. height: math.unit(6, "feet"),
  10964. weight: math.unit(150, "lb"),
  10965. name: "Front",
  10966. image: {
  10967. source: "./media/characters/pianostrong/front.svg",
  10968. extra: 6577 / 6254,
  10969. bottom: 0.02
  10970. }
  10971. },
  10972. side: {
  10973. height: math.unit(6, "feet"),
  10974. weight: math.unit(150, "lb"),
  10975. name: "Side",
  10976. image: {
  10977. source: "./media/characters/pianostrong/side.svg",
  10978. extra: 6106 / 5730
  10979. }
  10980. },
  10981. back: {
  10982. height: math.unit(6, "feet"),
  10983. weight: math.unit(150, "lb"),
  10984. name: "Back",
  10985. image: {
  10986. source: "./media/characters/pianostrong/back.svg",
  10987. extra: 6085 / 5733,
  10988. bottom: 0.01
  10989. }
  10990. },
  10991. },
  10992. [
  10993. {
  10994. name: "Macro",
  10995. height: math.unit(100, "feet")
  10996. },
  10997. {
  10998. name: "Macro+",
  10999. height: math.unit(300, "feet"),
  11000. default: true
  11001. },
  11002. {
  11003. name: "Macro++",
  11004. height: math.unit(1000, "feet")
  11005. },
  11006. ]
  11007. ))
  11008. characterMakers.push(() => makeCharacter(
  11009. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11010. {
  11011. front: {
  11012. height: math.unit(6, "feet"),
  11013. weight: math.unit(150, "lb"),
  11014. name: "Front",
  11015. image: {
  11016. source: "./media/characters/kona/front.svg",
  11017. extra: 2960 / 2629,
  11018. bottom: 0.005
  11019. }
  11020. },
  11021. },
  11022. [
  11023. {
  11024. name: "Normal",
  11025. height: math.unit(11 + 8 / 12, "feet")
  11026. },
  11027. {
  11028. name: "Macro",
  11029. height: math.unit(850, "feet"),
  11030. default: true
  11031. },
  11032. {
  11033. name: "Macro+",
  11034. height: math.unit(1.5, "km"),
  11035. default: true
  11036. },
  11037. {
  11038. name: "Megamacro",
  11039. height: math.unit(80, "miles")
  11040. },
  11041. {
  11042. name: "Gigamacro",
  11043. height: math.unit(3500, "miles")
  11044. },
  11045. ]
  11046. ))
  11047. characterMakers.push(() => makeCharacter(
  11048. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11049. {
  11050. side: {
  11051. height: math.unit(1.9, "meters"),
  11052. weight: math.unit(326, "kg"),
  11053. name: "Side",
  11054. image: {
  11055. source: "./media/characters/levi/side.svg",
  11056. extra: 1704 / 1334,
  11057. bottom: 0.02
  11058. }
  11059. },
  11060. },
  11061. [
  11062. {
  11063. name: "Normal",
  11064. height: math.unit(1.9, "meters"),
  11065. default: true
  11066. },
  11067. {
  11068. name: "Macro",
  11069. height: math.unit(20, "meters")
  11070. },
  11071. {
  11072. name: "Macro+",
  11073. height: math.unit(200, "meters")
  11074. },
  11075. {
  11076. name: "Megamacro",
  11077. height: math.unit(2, "km")
  11078. },
  11079. {
  11080. name: "Megamacro+",
  11081. height: math.unit(20, "km")
  11082. },
  11083. {
  11084. name: "Gigamacro",
  11085. height: math.unit(2500, "km")
  11086. },
  11087. {
  11088. name: "Gigamacro+",
  11089. height: math.unit(120000, "km")
  11090. },
  11091. {
  11092. name: "Teramacro",
  11093. height: math.unit(7.77e6, "km")
  11094. },
  11095. ]
  11096. ))
  11097. characterMakers.push(() => makeCharacter(
  11098. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11099. {
  11100. front: {
  11101. height: math.unit(6 + 4 / 12, "feet"),
  11102. weight: math.unit(188, "lb"),
  11103. name: "Front",
  11104. image: {
  11105. source: "./media/characters/bmc/front.svg",
  11106. extra: 1067 / 1022,
  11107. bottom: 0.047
  11108. }
  11109. },
  11110. },
  11111. [
  11112. {
  11113. name: "Human-sized",
  11114. height: math.unit(6 + 4 / 12, "feet")
  11115. },
  11116. {
  11117. name: "Small",
  11118. height: math.unit(250, "feet")
  11119. },
  11120. {
  11121. name: "Normal",
  11122. height: math.unit(1250, "feet"),
  11123. default: true
  11124. },
  11125. {
  11126. name: "Good Day",
  11127. height: math.unit(88, "miles")
  11128. },
  11129. {
  11130. name: "Largest Measured Size",
  11131. height: math.unit(11.2e6, "lightyears")
  11132. },
  11133. ]
  11134. ))
  11135. characterMakers.push(() => makeCharacter(
  11136. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11137. {
  11138. front: {
  11139. height: math.unit(20, "feet"),
  11140. weight: math.unit(2016, "kg"),
  11141. name: "Front",
  11142. image: {
  11143. source: "./media/characters/sven-the-kaiju/front.svg",
  11144. extra: 1277/1250,
  11145. bottom: 35/1312
  11146. }
  11147. },
  11148. mouth: {
  11149. height: math.unit(1.85, "feet"),
  11150. name: "Mouth",
  11151. image: {
  11152. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11153. }
  11154. },
  11155. },
  11156. [
  11157. {
  11158. name: "Fairy",
  11159. height: math.unit(6, "inches")
  11160. },
  11161. {
  11162. name: "Normal",
  11163. height: math.unit(20, "feet"),
  11164. default: true
  11165. },
  11166. {
  11167. name: "Rampage",
  11168. height: math.unit(200, "feet")
  11169. },
  11170. {
  11171. name: "Archfey Forest Guardian",
  11172. height: math.unit(1, "mile")
  11173. },
  11174. ]
  11175. ))
  11176. characterMakers.push(() => makeCharacter(
  11177. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11178. {
  11179. front: {
  11180. height: math.unit(4, "meters"),
  11181. weight: math.unit(2, "tons"),
  11182. name: "Front",
  11183. image: {
  11184. source: "./media/characters/marik/front.svg",
  11185. extra: 1057 / 1003,
  11186. bottom: 0.08
  11187. }
  11188. },
  11189. },
  11190. [
  11191. {
  11192. name: "Normal",
  11193. height: math.unit(4, "meters"),
  11194. default: true
  11195. },
  11196. {
  11197. name: "Macro",
  11198. height: math.unit(20, "meters")
  11199. },
  11200. {
  11201. name: "Megamacro",
  11202. height: math.unit(50, "km")
  11203. },
  11204. {
  11205. name: "Gigamacro",
  11206. height: math.unit(100, "km")
  11207. },
  11208. {
  11209. name: "Alpha Macro",
  11210. height: math.unit(7.88e7, "yottameters")
  11211. },
  11212. ]
  11213. ))
  11214. characterMakers.push(() => makeCharacter(
  11215. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11216. {
  11217. front: {
  11218. height: math.unit(6, "feet"),
  11219. weight: math.unit(110, "lb"),
  11220. name: "Front",
  11221. image: {
  11222. source: "./media/characters/mel/front.svg",
  11223. extra: 736 / 617,
  11224. bottom: 0.017
  11225. }
  11226. },
  11227. },
  11228. [
  11229. {
  11230. name: "Pico",
  11231. height: math.unit(3, "pm")
  11232. },
  11233. {
  11234. name: "Nano",
  11235. height: math.unit(3, "nm")
  11236. },
  11237. {
  11238. name: "Micro",
  11239. height: math.unit(0.3, "mm"),
  11240. default: true
  11241. },
  11242. {
  11243. name: "Micro+",
  11244. height: math.unit(3, "mm")
  11245. },
  11246. {
  11247. name: "Normal",
  11248. height: math.unit(5 + 10.5 / 12, "feet")
  11249. },
  11250. ]
  11251. ))
  11252. characterMakers.push(() => makeCharacter(
  11253. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11254. {
  11255. kaiju: {
  11256. height: math.unit(1.75, "meters"),
  11257. weight: math.unit(55, "kg"),
  11258. name: "Kaiju",
  11259. image: {
  11260. source: "./media/characters/lykonous/kaiju.svg",
  11261. extra: 1055 / 946,
  11262. bottom: 0.135
  11263. }
  11264. },
  11265. },
  11266. [
  11267. {
  11268. name: "Normal",
  11269. height: math.unit(2.5, "meters"),
  11270. default: true
  11271. },
  11272. {
  11273. name: "Kaiju Dragon",
  11274. height: math.unit(60, "meters")
  11275. },
  11276. {
  11277. name: "Mega Kaiju",
  11278. height: math.unit(120, "km")
  11279. },
  11280. {
  11281. name: "Giga Kaiju",
  11282. height: math.unit(200, "megameters")
  11283. },
  11284. {
  11285. name: "Terra Kaiju",
  11286. height: math.unit(400, "gigameters")
  11287. },
  11288. {
  11289. name: "Kaiju Dragon God",
  11290. height: math.unit(13000, "exaparsecs")
  11291. },
  11292. ]
  11293. ))
  11294. characterMakers.push(() => makeCharacter(
  11295. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11296. {
  11297. front: {
  11298. height: math.unit(6, "feet"),
  11299. weight: math.unit(150, "lb"),
  11300. name: "Front",
  11301. image: {
  11302. source: "./media/characters/blü/front.svg",
  11303. extra: 1883 / 1564,
  11304. bottom: 0.031
  11305. }
  11306. },
  11307. },
  11308. [
  11309. {
  11310. name: "Normal",
  11311. height: math.unit(13, "feet"),
  11312. default: true
  11313. },
  11314. {
  11315. name: "Big Boi",
  11316. height: math.unit(150, "meters")
  11317. },
  11318. {
  11319. name: "Mini Stomper",
  11320. height: math.unit(300, "meters")
  11321. },
  11322. {
  11323. name: "Macro",
  11324. height: math.unit(1000, "meters")
  11325. },
  11326. {
  11327. name: "Megamacro",
  11328. height: math.unit(11000, "meters")
  11329. },
  11330. {
  11331. name: "Gigamacro",
  11332. height: math.unit(11000, "km")
  11333. },
  11334. {
  11335. name: "Teramacro",
  11336. height: math.unit(420000, "km")
  11337. },
  11338. {
  11339. name: "Examacro",
  11340. height: math.unit(120, "parsecs")
  11341. },
  11342. {
  11343. name: "God Tho",
  11344. height: math.unit(98000000000, "parsecs")
  11345. },
  11346. ]
  11347. ))
  11348. characterMakers.push(() => makeCharacter(
  11349. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11350. {
  11351. taurFront: {
  11352. height: math.unit(6, "feet"),
  11353. weight: math.unit(200, "lb"),
  11354. name: "Taur (Front)",
  11355. image: {
  11356. source: "./media/characters/scales/taur-front.svg",
  11357. extra: 1,
  11358. bottom: 0.05
  11359. }
  11360. },
  11361. taurBack: {
  11362. height: math.unit(6, "feet"),
  11363. weight: math.unit(200, "lb"),
  11364. name: "Taur (Back)",
  11365. image: {
  11366. source: "./media/characters/scales/taur-back.svg",
  11367. extra: 1,
  11368. bottom: 0.08
  11369. }
  11370. },
  11371. anthro: {
  11372. height: math.unit(6 * 7 / 12, "feet"),
  11373. weight: math.unit(100, "lb"),
  11374. name: "Anthro",
  11375. image: {
  11376. source: "./media/characters/scales/anthro.svg",
  11377. extra: 1,
  11378. bottom: 0.06
  11379. }
  11380. },
  11381. },
  11382. [
  11383. {
  11384. name: "Normal",
  11385. height: math.unit(12, "feet"),
  11386. default: true
  11387. },
  11388. ]
  11389. ))
  11390. characterMakers.push(() => makeCharacter(
  11391. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11392. {
  11393. front: {
  11394. height: math.unit(6, "feet"),
  11395. weight: math.unit(150, "lb"),
  11396. name: "Front",
  11397. image: {
  11398. source: "./media/characters/koragos/front.svg",
  11399. extra: 841 / 794,
  11400. bottom: 0.035
  11401. }
  11402. },
  11403. back: {
  11404. height: math.unit(6, "feet"),
  11405. weight: math.unit(150, "lb"),
  11406. name: "Back",
  11407. image: {
  11408. source: "./media/characters/koragos/back.svg",
  11409. extra: 841 / 810,
  11410. bottom: 0.022
  11411. }
  11412. },
  11413. },
  11414. [
  11415. {
  11416. name: "Normal",
  11417. height: math.unit(6 + 11 / 12, "feet"),
  11418. default: true
  11419. },
  11420. {
  11421. name: "Macro",
  11422. height: math.unit(490, "feet")
  11423. },
  11424. {
  11425. name: "Megamacro",
  11426. height: math.unit(10, "miles")
  11427. },
  11428. {
  11429. name: "Gigamacro",
  11430. height: math.unit(50, "miles")
  11431. },
  11432. ]
  11433. ))
  11434. characterMakers.push(() => makeCharacter(
  11435. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11436. {
  11437. front: {
  11438. height: math.unit(6, "feet"),
  11439. weight: math.unit(250, "lb"),
  11440. name: "Front",
  11441. image: {
  11442. source: "./media/characters/xylrem/front.svg",
  11443. extra: 3323 / 3050,
  11444. bottom: 0.065
  11445. }
  11446. },
  11447. },
  11448. [
  11449. {
  11450. name: "Micro",
  11451. height: math.unit(4, "feet")
  11452. },
  11453. {
  11454. name: "Normal",
  11455. height: math.unit(16, "feet"),
  11456. default: true
  11457. },
  11458. {
  11459. name: "Macro",
  11460. height: math.unit(2720, "feet")
  11461. },
  11462. {
  11463. name: "Megamacro",
  11464. height: math.unit(25000, "miles")
  11465. },
  11466. ]
  11467. ))
  11468. characterMakers.push(() => makeCharacter(
  11469. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11470. {
  11471. front: {
  11472. height: math.unit(8, "feet"),
  11473. weight: math.unit(250, "kg"),
  11474. name: "Front",
  11475. image: {
  11476. source: "./media/characters/ikideru/front.svg",
  11477. extra: 930 / 870,
  11478. bottom: 0.087
  11479. }
  11480. },
  11481. back: {
  11482. height: math.unit(8, "feet"),
  11483. weight: math.unit(250, "kg"),
  11484. name: "Back",
  11485. image: {
  11486. source: "./media/characters/ikideru/back.svg",
  11487. extra: 919 / 852,
  11488. bottom: 0.055
  11489. }
  11490. },
  11491. },
  11492. [
  11493. {
  11494. name: "Rare",
  11495. height: math.unit(8, "feet"),
  11496. default: true
  11497. },
  11498. {
  11499. name: "Playful Loom",
  11500. height: math.unit(80, "feet")
  11501. },
  11502. {
  11503. name: "City Leaner",
  11504. height: math.unit(230, "feet")
  11505. },
  11506. {
  11507. name: "Megamacro",
  11508. height: math.unit(2500, "feet")
  11509. },
  11510. {
  11511. name: "Gigamacro",
  11512. height: math.unit(26400, "feet")
  11513. },
  11514. {
  11515. name: "Tectonic Shifter",
  11516. height: math.unit(1.7, "megameters")
  11517. },
  11518. {
  11519. name: "Planet Carer",
  11520. height: math.unit(21, "megameters")
  11521. },
  11522. {
  11523. name: "God",
  11524. height: math.unit(11157.22, "parsecs")
  11525. },
  11526. ]
  11527. ))
  11528. characterMakers.push(() => makeCharacter(
  11529. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11530. {
  11531. front: {
  11532. height: math.unit(6, "feet"),
  11533. weight: math.unit(120, "lb"),
  11534. name: "Front",
  11535. image: {
  11536. source: "./media/characters/neo/front.svg"
  11537. }
  11538. },
  11539. },
  11540. [
  11541. {
  11542. name: "Micro",
  11543. height: math.unit(2, "inches"),
  11544. default: true
  11545. },
  11546. {
  11547. name: "Human Size",
  11548. height: math.unit(5 + 8 / 12, "feet")
  11549. },
  11550. ]
  11551. ))
  11552. characterMakers.push(() => makeCharacter(
  11553. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11554. {
  11555. front: {
  11556. height: math.unit(13 + 10 / 12, "feet"),
  11557. weight: math.unit(5320, "lb"),
  11558. name: "Front",
  11559. image: {
  11560. source: "./media/characters/chauncey-chantz/front.svg",
  11561. extra: 1587 / 1435,
  11562. bottom: 0.02
  11563. }
  11564. },
  11565. },
  11566. [
  11567. {
  11568. name: "Normal",
  11569. height: math.unit(13 + 10 / 12, "feet"),
  11570. default: true
  11571. },
  11572. {
  11573. name: "Macro",
  11574. height: math.unit(45, "feet")
  11575. },
  11576. {
  11577. name: "Megamacro",
  11578. height: math.unit(250, "miles")
  11579. },
  11580. {
  11581. name: "Planetary",
  11582. height: math.unit(10000, "miles")
  11583. },
  11584. {
  11585. name: "Galactic",
  11586. height: math.unit(40000, "parsecs")
  11587. },
  11588. {
  11589. name: "Universal",
  11590. height: math.unit(1, "yottameter")
  11591. },
  11592. ]
  11593. ))
  11594. characterMakers.push(() => makeCharacter(
  11595. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11596. {
  11597. front: {
  11598. height: math.unit(6, "feet"),
  11599. weight: math.unit(150, "lb"),
  11600. name: "Front",
  11601. image: {
  11602. source: "./media/characters/epifox/front.svg",
  11603. extra: 1,
  11604. bottom: 0.075
  11605. }
  11606. },
  11607. },
  11608. [
  11609. {
  11610. name: "Micro",
  11611. height: math.unit(6, "inches")
  11612. },
  11613. {
  11614. name: "Normal",
  11615. height: math.unit(12, "feet"),
  11616. default: true
  11617. },
  11618. {
  11619. name: "Macro",
  11620. height: math.unit(3810, "feet")
  11621. },
  11622. {
  11623. name: "Megamacro",
  11624. height: math.unit(500, "miles")
  11625. },
  11626. ]
  11627. ))
  11628. characterMakers.push(() => makeCharacter(
  11629. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11630. {
  11631. front: {
  11632. height: math.unit(1.8796, "m"),
  11633. weight: math.unit(230, "lb"),
  11634. name: "Front",
  11635. image: {
  11636. source: "./media/characters/colin-t/front.svg",
  11637. extra: 1272 / 1193,
  11638. bottom: 0.07
  11639. }
  11640. },
  11641. },
  11642. [
  11643. {
  11644. name: "Micro",
  11645. height: math.unit(0.571, "meters")
  11646. },
  11647. {
  11648. name: "Normal",
  11649. height: math.unit(1.8796, "meters"),
  11650. default: true
  11651. },
  11652. {
  11653. name: "Tall",
  11654. height: math.unit(4, "meters")
  11655. },
  11656. {
  11657. name: "Macro",
  11658. height: math.unit(67.241, "meters")
  11659. },
  11660. {
  11661. name: "Megamacro",
  11662. height: math.unit(371.856, "meters")
  11663. },
  11664. {
  11665. name: "Planetary",
  11666. height: math.unit(12631.5689, "km")
  11667. },
  11668. ]
  11669. ))
  11670. characterMakers.push(() => makeCharacter(
  11671. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11672. {
  11673. front: {
  11674. height: math.unit(1.85, "meters"),
  11675. weight: math.unit(80, "kg"),
  11676. name: "Front",
  11677. image: {
  11678. source: "./media/characters/matvei/front.svg",
  11679. extra: 614 / 594,
  11680. bottom: 0.01
  11681. }
  11682. },
  11683. },
  11684. [
  11685. {
  11686. name: "Normal",
  11687. height: math.unit(1.85, "meters"),
  11688. default: true
  11689. },
  11690. ]
  11691. ))
  11692. characterMakers.push(() => makeCharacter(
  11693. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11694. {
  11695. front: {
  11696. height: math.unit(5 + 9 / 12, "feet"),
  11697. weight: math.unit(70, "lb"),
  11698. name: "Front",
  11699. image: {
  11700. source: "./media/characters/quincy/front.svg",
  11701. extra: 3041 / 2751
  11702. }
  11703. },
  11704. back: {
  11705. height: math.unit(5 + 9 / 12, "feet"),
  11706. weight: math.unit(70, "lb"),
  11707. name: "Back",
  11708. image: {
  11709. source: "./media/characters/quincy/back.svg",
  11710. extra: 3041 / 2751
  11711. }
  11712. },
  11713. flying: {
  11714. height: math.unit(5 + 4 / 12, "feet"),
  11715. weight: math.unit(70, "lb"),
  11716. name: "Flying",
  11717. image: {
  11718. source: "./media/characters/quincy/flying.svg",
  11719. extra: 1044 / 930
  11720. }
  11721. },
  11722. },
  11723. [
  11724. {
  11725. name: "Micro",
  11726. height: math.unit(3, "cm")
  11727. },
  11728. {
  11729. name: "Normal",
  11730. height: math.unit(5 + 9 / 12, "feet")
  11731. },
  11732. {
  11733. name: "Macro",
  11734. height: math.unit(200, "meters"),
  11735. default: true
  11736. },
  11737. {
  11738. name: "Megamacro",
  11739. height: math.unit(1000, "meters")
  11740. },
  11741. ]
  11742. ))
  11743. characterMakers.push(() => makeCharacter(
  11744. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11745. {
  11746. front: {
  11747. height: math.unit(4 + 7 / 12, "feet"),
  11748. weight: math.unit(50, "lb"),
  11749. name: "Front",
  11750. image: {
  11751. source: "./media/characters/vanrel/front.svg",
  11752. extra: 1,
  11753. bottom: 0.02
  11754. }
  11755. },
  11756. frontAlt: {
  11757. height: math.unit(4 + 7 / 12, "feet"),
  11758. weight: math.unit(50, "lb"),
  11759. name: "Front-alt",
  11760. image: {
  11761. source: "./media/characters/vanrel/front-alt.svg",
  11762. extra: 1,
  11763. bottom: 15 / 1511
  11764. }
  11765. },
  11766. elemental: {
  11767. height: math.unit(3, "feet"),
  11768. weight: math.unit(50, "lb"),
  11769. name: "Elemental",
  11770. image: {
  11771. source: "./media/characters/vanrel/elemental.svg",
  11772. extra: 192.3 / 162.8,
  11773. bottom: 1.79 / 194.17
  11774. }
  11775. },
  11776. side: {
  11777. height: math.unit(4 + 7 / 12, "feet"),
  11778. weight: math.unit(50, "lb"),
  11779. name: "Side",
  11780. image: {
  11781. source: "./media/characters/vanrel/side.svg",
  11782. extra: 1,
  11783. bottom: 0.025
  11784. }
  11785. },
  11786. tome: {
  11787. height: math.unit(1.35, "feet"),
  11788. weight: math.unit(10, "lb"),
  11789. name: "Vanrel's Tome",
  11790. rename: true,
  11791. image: {
  11792. source: "./media/characters/vanrel/tome.svg"
  11793. }
  11794. },
  11795. beans: {
  11796. height: math.unit(0.89, "feet"),
  11797. name: "Beans",
  11798. image: {
  11799. source: "./media/characters/vanrel/beans.svg"
  11800. }
  11801. },
  11802. },
  11803. [
  11804. {
  11805. name: "Normal",
  11806. height: math.unit(4 + 7 / 12, "feet"),
  11807. default: true
  11808. },
  11809. ]
  11810. ))
  11811. characterMakers.push(() => makeCharacter(
  11812. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11813. {
  11814. front: {
  11815. height: math.unit(7 + 5 / 12, "feet"),
  11816. weight: math.unit(150, "lb"),
  11817. name: "Front",
  11818. image: {
  11819. source: "./media/characters/kuiper-vanrel/front.svg",
  11820. extra: 1118 / 1068,
  11821. bottom: 0.09
  11822. }
  11823. },
  11824. foot: {
  11825. height: math.unit(0.55, "meters"),
  11826. name: "Foot",
  11827. image: {
  11828. source: "./media/characters/kuiper-vanrel/foot.svg",
  11829. }
  11830. },
  11831. battle: {
  11832. height: math.unit(6.824, "feet"),
  11833. weight: math.unit(150, "lb"),
  11834. name: "Battle",
  11835. image: {
  11836. source: "./media/characters/kuiper-vanrel/battle.svg",
  11837. extra: 1466 / 1327,
  11838. bottom: 29 / 1492.5
  11839. }
  11840. },
  11841. battleAlt: {
  11842. height: math.unit(6.824, "feet"),
  11843. weight: math.unit(150, "lb"),
  11844. name: "Battle (Alt)",
  11845. image: {
  11846. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11847. extra: 2081 / 1965,
  11848. bottom: 40 / 2121
  11849. }
  11850. },
  11851. },
  11852. [
  11853. {
  11854. name: "Normal",
  11855. height: math.unit(7 + 5 / 12, "feet"),
  11856. default: true
  11857. },
  11858. ]
  11859. ))
  11860. characterMakers.push(() => makeCharacter(
  11861. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11862. {
  11863. front: {
  11864. height: math.unit(8 + 5 / 12, "feet"),
  11865. weight: math.unit(150, "lb"),
  11866. name: "Front",
  11867. image: {
  11868. source: "./media/characters/keset-vanrel/front.svg",
  11869. extra: 1150 / 1084,
  11870. bottom: 0.05
  11871. }
  11872. },
  11873. hand: {
  11874. height: math.unit(0.6, "meters"),
  11875. name: "Hand",
  11876. image: {
  11877. source: "./media/characters/keset-vanrel/hand.svg"
  11878. }
  11879. },
  11880. foot: {
  11881. height: math.unit(0.94978, "meters"),
  11882. name: "Foot",
  11883. image: {
  11884. source: "./media/characters/keset-vanrel/foot.svg"
  11885. }
  11886. },
  11887. battle: {
  11888. height: math.unit(7.408, "feet"),
  11889. weight: math.unit(150, "lb"),
  11890. name: "Battle",
  11891. image: {
  11892. source: "./media/characters/keset-vanrel/battle.svg",
  11893. extra: 1890 / 1386,
  11894. bottom: 73.28 / 1970
  11895. }
  11896. },
  11897. },
  11898. [
  11899. {
  11900. name: "Normal",
  11901. height: math.unit(8 + 5 / 12, "feet"),
  11902. default: true
  11903. },
  11904. ]
  11905. ))
  11906. characterMakers.push(() => makeCharacter(
  11907. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11908. {
  11909. front: {
  11910. height: math.unit(6, "feet"),
  11911. weight: math.unit(150, "lb"),
  11912. name: "Front",
  11913. image: {
  11914. source: "./media/characters/neos/front.svg",
  11915. extra: 1696 / 992,
  11916. bottom: 0.14
  11917. }
  11918. },
  11919. },
  11920. [
  11921. {
  11922. name: "Normal",
  11923. height: math.unit(54, "cm"),
  11924. default: true
  11925. },
  11926. {
  11927. name: "Macro",
  11928. height: math.unit(100, "m")
  11929. },
  11930. {
  11931. name: "Megamacro",
  11932. height: math.unit(10, "km")
  11933. },
  11934. {
  11935. name: "Megamacro+",
  11936. height: math.unit(100, "km")
  11937. },
  11938. {
  11939. name: "Gigamacro",
  11940. height: math.unit(100, "Mm")
  11941. },
  11942. {
  11943. name: "Teramacro",
  11944. height: math.unit(100, "Gm")
  11945. },
  11946. {
  11947. name: "Examacro",
  11948. height: math.unit(100, "Em")
  11949. },
  11950. {
  11951. name: "Godly",
  11952. height: math.unit(10000, "Ym")
  11953. },
  11954. {
  11955. name: "Beyond Godly",
  11956. height: math.unit(25, "multiverses")
  11957. },
  11958. ]
  11959. ))
  11960. characterMakers.push(() => makeCharacter(
  11961. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11962. {
  11963. feminine: {
  11964. height: math.unit(5, "feet"),
  11965. weight: math.unit(100, "lb"),
  11966. name: "Feminine",
  11967. image: {
  11968. source: "./media/characters/sammy-mouse/feminine.svg",
  11969. extra: 2526 / 2425,
  11970. bottom: 0.123
  11971. }
  11972. },
  11973. masculine: {
  11974. height: math.unit(5, "feet"),
  11975. weight: math.unit(100, "lb"),
  11976. name: "Masculine",
  11977. image: {
  11978. source: "./media/characters/sammy-mouse/masculine.svg",
  11979. extra: 2526 / 2425,
  11980. bottom: 0.123
  11981. }
  11982. },
  11983. },
  11984. [
  11985. {
  11986. name: "Micro",
  11987. height: math.unit(5, "inches")
  11988. },
  11989. {
  11990. name: "Normal",
  11991. height: math.unit(5, "feet"),
  11992. default: true
  11993. },
  11994. {
  11995. name: "Macro",
  11996. height: math.unit(60, "feet")
  11997. },
  11998. ]
  11999. ))
  12000. characterMakers.push(() => makeCharacter(
  12001. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12002. {
  12003. front: {
  12004. height: math.unit(4, "feet"),
  12005. weight: math.unit(50, "lb"),
  12006. name: "Front",
  12007. image: {
  12008. source: "./media/characters/kole/front.svg",
  12009. extra: 1423 / 1303,
  12010. bottom: 0.025
  12011. }
  12012. },
  12013. back: {
  12014. height: math.unit(4, "feet"),
  12015. weight: math.unit(50, "lb"),
  12016. name: "Back",
  12017. image: {
  12018. source: "./media/characters/kole/back.svg",
  12019. extra: 1426 / 1280,
  12020. bottom: 0.02
  12021. }
  12022. },
  12023. },
  12024. [
  12025. {
  12026. name: "Normal",
  12027. height: math.unit(4, "feet"),
  12028. default: true
  12029. },
  12030. ]
  12031. ))
  12032. characterMakers.push(() => makeCharacter(
  12033. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  12034. {
  12035. front: {
  12036. height: math.unit(2 + 6 / 12, "feet"),
  12037. weight: math.unit(20, "lb"),
  12038. name: "Front",
  12039. image: {
  12040. source: "./media/characters/rufran/front.svg",
  12041. extra: 2041 / 1839,
  12042. bottom: 0.055
  12043. }
  12044. },
  12045. back: {
  12046. height: math.unit(2 + 6 / 12, "feet"),
  12047. weight: math.unit(20, "lb"),
  12048. name: "Back",
  12049. image: {
  12050. source: "./media/characters/rufran/back.svg",
  12051. extra: 2054 / 1839,
  12052. bottom: 0.01
  12053. }
  12054. },
  12055. hand: {
  12056. height: math.unit(0.2166, "meters"),
  12057. name: "Hand",
  12058. image: {
  12059. source: "./media/characters/rufran/hand.svg"
  12060. }
  12061. },
  12062. foot: {
  12063. height: math.unit(0.185, "meters"),
  12064. name: "Foot",
  12065. image: {
  12066. source: "./media/characters/rufran/foot.svg"
  12067. }
  12068. },
  12069. },
  12070. [
  12071. {
  12072. name: "Micro",
  12073. height: math.unit(1, "inch")
  12074. },
  12075. {
  12076. name: "Normal",
  12077. height: math.unit(2 + 6 / 12, "feet"),
  12078. default: true
  12079. },
  12080. {
  12081. name: "Big",
  12082. height: math.unit(60, "feet")
  12083. },
  12084. {
  12085. name: "Macro",
  12086. height: math.unit(325, "feet")
  12087. },
  12088. ]
  12089. ))
  12090. characterMakers.push(() => makeCharacter(
  12091. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12092. {
  12093. front: {
  12094. height: math.unit(0.3, "meters"),
  12095. weight: math.unit(3.5, "kg"),
  12096. name: "Front",
  12097. image: {
  12098. source: "./media/characters/chip/front.svg",
  12099. extra: 748 / 674
  12100. }
  12101. },
  12102. },
  12103. [
  12104. {
  12105. name: "Micro",
  12106. height: math.unit(1, "inch"),
  12107. default: true
  12108. },
  12109. ]
  12110. ))
  12111. characterMakers.push(() => makeCharacter(
  12112. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12113. {
  12114. side: {
  12115. height: math.unit(2.3, "meters"),
  12116. weight: math.unit(3500, "lb"),
  12117. name: "Side",
  12118. image: {
  12119. source: "./media/characters/torvid/side.svg",
  12120. extra: 1972 / 722,
  12121. bottom: 0.035
  12122. }
  12123. },
  12124. },
  12125. [
  12126. {
  12127. name: "Normal",
  12128. height: math.unit(2.3, "meters"),
  12129. default: true
  12130. },
  12131. ]
  12132. ))
  12133. characterMakers.push(() => makeCharacter(
  12134. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12135. {
  12136. front: {
  12137. height: math.unit(2, "meters"),
  12138. weight: math.unit(150.5, "kg"),
  12139. name: "Front",
  12140. image: {
  12141. source: "./media/characters/susan/front.svg",
  12142. extra: 693 / 635,
  12143. bottom: 0.05
  12144. }
  12145. },
  12146. },
  12147. [
  12148. {
  12149. name: "Megamacro",
  12150. height: math.unit(505, "miles"),
  12151. default: true
  12152. },
  12153. ]
  12154. ))
  12155. characterMakers.push(() => makeCharacter(
  12156. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12157. {
  12158. front: {
  12159. height: math.unit(6, "feet"),
  12160. weight: math.unit(150, "lb"),
  12161. name: "Front",
  12162. image: {
  12163. source: "./media/characters/raindrops/front.svg",
  12164. extra: 2655 / 2461,
  12165. bottom: 49 / 2705
  12166. }
  12167. },
  12168. back: {
  12169. height: math.unit(6, "feet"),
  12170. weight: math.unit(150, "lb"),
  12171. name: "Back",
  12172. image: {
  12173. source: "./media/characters/raindrops/back.svg",
  12174. extra: 2574 / 2400,
  12175. bottom: 65 / 2634
  12176. }
  12177. },
  12178. },
  12179. [
  12180. {
  12181. name: "Micro",
  12182. height: math.unit(6, "inches")
  12183. },
  12184. {
  12185. name: "Normal",
  12186. height: math.unit(6 + 2 / 12, "feet")
  12187. },
  12188. {
  12189. name: "Macro",
  12190. height: math.unit(131, "feet"),
  12191. default: true
  12192. },
  12193. {
  12194. name: "Megamacro",
  12195. height: math.unit(15, "miles")
  12196. },
  12197. {
  12198. name: "Gigamacro",
  12199. height: math.unit(4000, "miles")
  12200. },
  12201. {
  12202. name: "Teramacro",
  12203. height: math.unit(315000, "miles")
  12204. },
  12205. ]
  12206. ))
  12207. characterMakers.push(() => makeCharacter(
  12208. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12209. {
  12210. front: {
  12211. height: math.unit(2.794, "meters"),
  12212. weight: math.unit(325, "kg"),
  12213. name: "Front",
  12214. image: {
  12215. source: "./media/characters/tezwa/front.svg",
  12216. extra: 2083 / 1906,
  12217. bottom: 0.031
  12218. }
  12219. },
  12220. foot: {
  12221. height: math.unit(0.687, "meters"),
  12222. name: "Foot",
  12223. image: {
  12224. source: "./media/characters/tezwa/foot.svg"
  12225. }
  12226. },
  12227. },
  12228. [
  12229. {
  12230. name: "Normal",
  12231. height: math.unit(9 + 2 / 12, "feet"),
  12232. default: true
  12233. },
  12234. ]
  12235. ))
  12236. characterMakers.push(() => makeCharacter(
  12237. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12238. {
  12239. front: {
  12240. height: math.unit(58, "feet"),
  12241. weight: math.unit(89000, "lb"),
  12242. name: "Front",
  12243. image: {
  12244. source: "./media/characters/typhus/front.svg",
  12245. extra: 816 / 800,
  12246. bottom: 0.065
  12247. }
  12248. },
  12249. },
  12250. [
  12251. {
  12252. name: "Macro",
  12253. height: math.unit(58, "feet"),
  12254. default: true
  12255. },
  12256. ]
  12257. ))
  12258. characterMakers.push(() => makeCharacter(
  12259. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12260. {
  12261. front: {
  12262. height: math.unit(12, "feet"),
  12263. weight: math.unit(6, "tonnes"),
  12264. name: "Front",
  12265. image: {
  12266. source: "./media/characters/lyra-von-wulf/front.svg",
  12267. extra: 1,
  12268. bottom: 0.10
  12269. }
  12270. },
  12271. frontMecha: {
  12272. height: math.unit(12, "feet"),
  12273. weight: math.unit(12, "tonnes"),
  12274. name: "Front (Mecha)",
  12275. image: {
  12276. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12277. extra: 1,
  12278. bottom: 0.042
  12279. }
  12280. },
  12281. maw: {
  12282. height: math.unit(2.2, "feet"),
  12283. name: "Maw",
  12284. image: {
  12285. source: "./media/characters/lyra-von-wulf/maw.svg"
  12286. }
  12287. },
  12288. },
  12289. [
  12290. {
  12291. name: "Normal",
  12292. height: math.unit(12, "feet"),
  12293. default: true
  12294. },
  12295. {
  12296. name: "Classic",
  12297. height: math.unit(50, "feet")
  12298. },
  12299. {
  12300. name: "Macro",
  12301. height: math.unit(500, "feet")
  12302. },
  12303. {
  12304. name: "Megamacro",
  12305. height: math.unit(1, "mile")
  12306. },
  12307. {
  12308. name: "Gigamacro",
  12309. height: math.unit(400, "miles")
  12310. },
  12311. {
  12312. name: "Teramacro",
  12313. height: math.unit(22000, "miles")
  12314. },
  12315. {
  12316. name: "Solarmacro",
  12317. height: math.unit(8600000, "miles")
  12318. },
  12319. {
  12320. name: "Galactic",
  12321. height: math.unit(1057000, "lightyears")
  12322. },
  12323. ]
  12324. ))
  12325. characterMakers.push(() => makeCharacter(
  12326. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12327. {
  12328. front: {
  12329. height: math.unit(6 + 10 / 12, "feet"),
  12330. weight: math.unit(150, "lb"),
  12331. name: "Front",
  12332. image: {
  12333. source: "./media/characters/dixon/front.svg",
  12334. extra: 3361 / 3209,
  12335. bottom: 0.01
  12336. }
  12337. },
  12338. },
  12339. [
  12340. {
  12341. name: "Normal",
  12342. height: math.unit(6 + 10 / 12, "feet"),
  12343. default: true
  12344. },
  12345. {
  12346. name: "Big",
  12347. height: math.unit(12, "meters")
  12348. },
  12349. {
  12350. name: "Macro",
  12351. height: math.unit(500, "meters")
  12352. },
  12353. {
  12354. name: "Megamacro",
  12355. height: math.unit(2, "km")
  12356. },
  12357. ]
  12358. ))
  12359. characterMakers.push(() => makeCharacter(
  12360. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12361. {
  12362. front: {
  12363. height: math.unit(185, "cm"),
  12364. weight: math.unit(68, "kg"),
  12365. name: "Front",
  12366. image: {
  12367. source: "./media/characters/kauko/front.svg",
  12368. extra: 1455 / 1421,
  12369. bottom: 0.03
  12370. }
  12371. },
  12372. back: {
  12373. height: math.unit(185, "cm"),
  12374. weight: math.unit(68, "kg"),
  12375. name: "Back",
  12376. image: {
  12377. source: "./media/characters/kauko/back.svg",
  12378. extra: 1455 / 1421,
  12379. bottom: 0.004
  12380. }
  12381. },
  12382. },
  12383. [
  12384. {
  12385. name: "Normal",
  12386. height: math.unit(185, "cm"),
  12387. default: true
  12388. },
  12389. ]
  12390. ))
  12391. characterMakers.push(() => makeCharacter(
  12392. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12393. {
  12394. front: {
  12395. height: math.unit(6, "feet"),
  12396. weight: math.unit(150, "kg"),
  12397. name: "Front",
  12398. image: {
  12399. source: "./media/characters/varg/front.svg",
  12400. extra: 1108 / 1018,
  12401. bottom: 0.0375
  12402. }
  12403. },
  12404. },
  12405. [
  12406. {
  12407. name: "Normal",
  12408. height: math.unit(5, "meters")
  12409. },
  12410. {
  12411. name: "Macro",
  12412. height: math.unit(200, "meters")
  12413. },
  12414. {
  12415. name: "Megamacro",
  12416. height: math.unit(20, "kilometers")
  12417. },
  12418. {
  12419. name: "True Size",
  12420. height: math.unit(211, "km"),
  12421. default: true
  12422. },
  12423. {
  12424. name: "Gigamacro",
  12425. height: math.unit(1000, "km")
  12426. },
  12427. {
  12428. name: "Gigamacro+",
  12429. height: math.unit(8000, "km")
  12430. },
  12431. {
  12432. name: "Teramacro",
  12433. height: math.unit(1000000, "km")
  12434. },
  12435. ]
  12436. ))
  12437. characterMakers.push(() => makeCharacter(
  12438. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12439. {
  12440. front: {
  12441. height: math.unit(7 + 7 / 12, "feet"),
  12442. weight: math.unit(267, "lb"),
  12443. name: "Front",
  12444. image: {
  12445. source: "./media/characters/dayza/front.svg",
  12446. extra: 1262 / 1200,
  12447. bottom: 0.035
  12448. }
  12449. },
  12450. side: {
  12451. height: math.unit(7 + 7 / 12, "feet"),
  12452. weight: math.unit(267, "lb"),
  12453. name: "Side",
  12454. image: {
  12455. source: "./media/characters/dayza/side.svg",
  12456. extra: 1295 / 1245,
  12457. bottom: 0.05
  12458. }
  12459. },
  12460. back: {
  12461. height: math.unit(7 + 7 / 12, "feet"),
  12462. weight: math.unit(267, "lb"),
  12463. name: "Back",
  12464. image: {
  12465. source: "./media/characters/dayza/back.svg",
  12466. extra: 1241 / 1170
  12467. }
  12468. },
  12469. },
  12470. [
  12471. {
  12472. name: "Normal",
  12473. height: math.unit(7 + 7 / 12, "feet"),
  12474. default: true
  12475. },
  12476. {
  12477. name: "Macro",
  12478. height: math.unit(155, "feet")
  12479. },
  12480. ]
  12481. ))
  12482. characterMakers.push(() => makeCharacter(
  12483. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12484. {
  12485. front: {
  12486. height: math.unit(6 + 5 / 12, "feet"),
  12487. weight: math.unit(160, "lb"),
  12488. name: "Front",
  12489. image: {
  12490. source: "./media/characters/xanthos/front.svg",
  12491. extra: 1,
  12492. bottom: 0.04
  12493. }
  12494. },
  12495. back: {
  12496. height: math.unit(6 + 5 / 12, "feet"),
  12497. weight: math.unit(160, "lb"),
  12498. name: "Back",
  12499. image: {
  12500. source: "./media/characters/xanthos/back.svg",
  12501. extra: 1,
  12502. bottom: 0.03
  12503. }
  12504. },
  12505. hand: {
  12506. height: math.unit(0.928, "feet"),
  12507. name: "Hand",
  12508. image: {
  12509. source: "./media/characters/xanthos/hand.svg"
  12510. }
  12511. },
  12512. foot: {
  12513. height: math.unit(1.286, "feet"),
  12514. name: "Foot",
  12515. image: {
  12516. source: "./media/characters/xanthos/foot.svg"
  12517. }
  12518. },
  12519. },
  12520. [
  12521. {
  12522. name: "Normal",
  12523. height: math.unit(6 + 5 / 12, "feet"),
  12524. default: true
  12525. },
  12526. {
  12527. name: "Normal+",
  12528. height: math.unit(6, "meters")
  12529. },
  12530. {
  12531. name: "Macro",
  12532. height: math.unit(40, "feet")
  12533. },
  12534. {
  12535. name: "Macro+",
  12536. height: math.unit(200, "meters")
  12537. },
  12538. {
  12539. name: "Megamacro",
  12540. height: math.unit(20, "km")
  12541. },
  12542. {
  12543. name: "Megamacro+",
  12544. height: math.unit(100, "km")
  12545. },
  12546. ]
  12547. ))
  12548. characterMakers.push(() => makeCharacter(
  12549. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12550. {
  12551. front: {
  12552. height: math.unit(6 + 3 / 12, "feet"),
  12553. weight: math.unit(215, "lb"),
  12554. name: "Front",
  12555. image: {
  12556. source: "./media/characters/grynn/front.svg",
  12557. extra: 4627 / 4209,
  12558. bottom: 0.047
  12559. }
  12560. },
  12561. },
  12562. [
  12563. {
  12564. name: "Micro",
  12565. height: math.unit(6, "inches")
  12566. },
  12567. {
  12568. name: "Normal",
  12569. height: math.unit(6 + 3 / 12, "feet"),
  12570. default: true
  12571. },
  12572. {
  12573. name: "Big",
  12574. height: math.unit(104, "feet")
  12575. },
  12576. {
  12577. name: "Macro",
  12578. height: math.unit(944, "feet")
  12579. },
  12580. {
  12581. name: "Macro+",
  12582. height: math.unit(9480, "feet")
  12583. },
  12584. {
  12585. name: "Megamacro",
  12586. height: math.unit(78752, "feet")
  12587. },
  12588. {
  12589. name: "Megamacro+",
  12590. height: math.unit(630128, "feet")
  12591. },
  12592. {
  12593. name: "Megamacro++",
  12594. height: math.unit(3150695, "feet")
  12595. },
  12596. ]
  12597. ))
  12598. characterMakers.push(() => makeCharacter(
  12599. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12600. {
  12601. front: {
  12602. height: math.unit(7 + 5 / 12, "feet"),
  12603. weight: math.unit(450, "lb"),
  12604. name: "Front",
  12605. image: {
  12606. source: "./media/characters/mocha-aura/front.svg",
  12607. extra: 1907 / 1817,
  12608. bottom: 0.04
  12609. }
  12610. },
  12611. back: {
  12612. height: math.unit(7 + 5 / 12, "feet"),
  12613. weight: math.unit(450, "lb"),
  12614. name: "Back",
  12615. image: {
  12616. source: "./media/characters/mocha-aura/back.svg",
  12617. extra: 1900 / 1825,
  12618. bottom: 0.045
  12619. }
  12620. },
  12621. },
  12622. [
  12623. {
  12624. name: "Nano",
  12625. height: math.unit(1, "nm")
  12626. },
  12627. {
  12628. name: "Megamicro",
  12629. height: math.unit(1, "mm")
  12630. },
  12631. {
  12632. name: "Micro",
  12633. height: math.unit(3, "inches")
  12634. },
  12635. {
  12636. name: "Normal",
  12637. height: math.unit(7 + 5 / 12, "feet"),
  12638. default: true
  12639. },
  12640. {
  12641. name: "Macro",
  12642. height: math.unit(30, "feet")
  12643. },
  12644. {
  12645. name: "Megamacro",
  12646. height: math.unit(3500, "feet")
  12647. },
  12648. {
  12649. name: "Teramacro",
  12650. height: math.unit(500000, "miles")
  12651. },
  12652. {
  12653. name: "Petamacro",
  12654. height: math.unit(50000000000000000, "parsecs")
  12655. },
  12656. ]
  12657. ))
  12658. characterMakers.push(() => makeCharacter(
  12659. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12660. {
  12661. front: {
  12662. height: math.unit(6, "feet"),
  12663. weight: math.unit(150, "lb"),
  12664. name: "Front",
  12665. image: {
  12666. source: "./media/characters/ilisha-devya/front.svg",
  12667. extra: 1,
  12668. bottom: 0.175
  12669. }
  12670. },
  12671. back: {
  12672. height: math.unit(6, "feet"),
  12673. weight: math.unit(150, "lb"),
  12674. name: "Back",
  12675. image: {
  12676. source: "./media/characters/ilisha-devya/back.svg",
  12677. extra: 1,
  12678. bottom: 0.015
  12679. }
  12680. },
  12681. },
  12682. [
  12683. {
  12684. name: "Macro",
  12685. height: math.unit(500, "feet"),
  12686. default: true
  12687. },
  12688. {
  12689. name: "Megamacro",
  12690. height: math.unit(10, "miles")
  12691. },
  12692. {
  12693. name: "Gigamacro",
  12694. height: math.unit(100000, "miles")
  12695. },
  12696. {
  12697. name: "Examacro",
  12698. height: math.unit(1e9, "lightyears")
  12699. },
  12700. {
  12701. name: "Omniversal",
  12702. height: math.unit(1e33, "lightyears")
  12703. },
  12704. {
  12705. name: "Beyond Infinite",
  12706. height: math.unit(1e100, "lightyears")
  12707. },
  12708. ]
  12709. ))
  12710. characterMakers.push(() => makeCharacter(
  12711. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12712. {
  12713. Side: {
  12714. height: math.unit(6, "feet"),
  12715. weight: math.unit(150, "lb"),
  12716. name: "Side",
  12717. image: {
  12718. source: "./media/characters/mira/side.svg",
  12719. extra: 900 / 799,
  12720. bottom: 0.02
  12721. }
  12722. },
  12723. },
  12724. [
  12725. {
  12726. name: "Human Size",
  12727. height: math.unit(6, "feet")
  12728. },
  12729. {
  12730. name: "Macro",
  12731. height: math.unit(100, "feet"),
  12732. default: true
  12733. },
  12734. {
  12735. name: "Megamacro",
  12736. height: math.unit(10, "miles")
  12737. },
  12738. {
  12739. name: "Gigamacro",
  12740. height: math.unit(25000, "miles")
  12741. },
  12742. {
  12743. name: "Teramacro",
  12744. height: math.unit(300, "AU")
  12745. },
  12746. {
  12747. name: "Full Size",
  12748. height: math.unit(4.5e10, "lightyears")
  12749. },
  12750. ]
  12751. ))
  12752. characterMakers.push(() => makeCharacter(
  12753. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12754. {
  12755. front: {
  12756. height: math.unit(6, "feet"),
  12757. weight: math.unit(150, "lb"),
  12758. name: "Front",
  12759. image: {
  12760. source: "./media/characters/holly/front.svg",
  12761. extra: 639 / 606
  12762. }
  12763. },
  12764. back: {
  12765. height: math.unit(6, "feet"),
  12766. weight: math.unit(150, "lb"),
  12767. name: "Back",
  12768. image: {
  12769. source: "./media/characters/holly/back.svg",
  12770. extra: 623 / 598
  12771. }
  12772. },
  12773. frontWorking: {
  12774. height: math.unit(6, "feet"),
  12775. weight: math.unit(150, "lb"),
  12776. name: "Front (Working)",
  12777. image: {
  12778. source: "./media/characters/holly/front-working.svg",
  12779. extra: 607 / 577,
  12780. bottom: 0.048
  12781. }
  12782. },
  12783. },
  12784. [
  12785. {
  12786. name: "Normal",
  12787. height: math.unit(12 + 3 / 12, "feet"),
  12788. default: true
  12789. },
  12790. ]
  12791. ))
  12792. characterMakers.push(() => makeCharacter(
  12793. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12794. {
  12795. front: {
  12796. height: math.unit(6, "feet"),
  12797. weight: math.unit(150, "lb"),
  12798. name: "Front",
  12799. image: {
  12800. source: "./media/characters/porter/front.svg",
  12801. extra: 1,
  12802. bottom: 0.01
  12803. }
  12804. },
  12805. frontRobes: {
  12806. height: math.unit(6, "feet"),
  12807. weight: math.unit(150, "lb"),
  12808. name: "Front (Robes)",
  12809. image: {
  12810. source: "./media/characters/porter/front-robes.svg",
  12811. extra: 1.01,
  12812. bottom: 0.01
  12813. }
  12814. },
  12815. },
  12816. [
  12817. {
  12818. name: "Normal",
  12819. height: math.unit(11 + 9 / 12, "feet"),
  12820. default: true
  12821. },
  12822. ]
  12823. ))
  12824. characterMakers.push(() => makeCharacter(
  12825. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12826. {
  12827. legendary: {
  12828. height: math.unit(6, "feet"),
  12829. weight: math.unit(150, "lb"),
  12830. name: "Legendary",
  12831. image: {
  12832. source: "./media/characters/lucy/legendary.svg",
  12833. extra: 1355 / 1100,
  12834. bottom: 0.045
  12835. }
  12836. },
  12837. },
  12838. [
  12839. {
  12840. name: "Legendary",
  12841. height: math.unit(86882 * 2, "miles"),
  12842. default: true
  12843. },
  12844. ]
  12845. ))
  12846. characterMakers.push(() => makeCharacter(
  12847. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12848. {
  12849. front: {
  12850. height: math.unit(6, "feet"),
  12851. weight: math.unit(150, "lb"),
  12852. name: "Front",
  12853. image: {
  12854. source: "./media/characters/drusilla/front.svg",
  12855. extra: 678 / 635,
  12856. bottom: 0.03
  12857. }
  12858. },
  12859. back: {
  12860. height: math.unit(6, "feet"),
  12861. weight: math.unit(150, "lb"),
  12862. name: "Back",
  12863. image: {
  12864. source: "./media/characters/drusilla/back.svg",
  12865. extra: 678 / 635,
  12866. bottom: 0.005
  12867. }
  12868. },
  12869. },
  12870. [
  12871. {
  12872. name: "Macro",
  12873. height: math.unit(100, "feet")
  12874. },
  12875. {
  12876. name: "Canon Height",
  12877. height: math.unit(2000, "feet"),
  12878. default: true
  12879. },
  12880. ]
  12881. ))
  12882. characterMakers.push(() => makeCharacter(
  12883. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12884. {
  12885. front: {
  12886. height: math.unit(6, "feet"),
  12887. weight: math.unit(180, "lb"),
  12888. name: "Front",
  12889. image: {
  12890. source: "./media/characters/renard-thatch/front.svg",
  12891. extra: 2411 / 2275,
  12892. bottom: 0.01
  12893. }
  12894. },
  12895. frontPosing: {
  12896. height: math.unit(6, "feet"),
  12897. weight: math.unit(180, "lb"),
  12898. name: "Front (Posing)",
  12899. image: {
  12900. source: "./media/characters/renard-thatch/front-posing.svg",
  12901. extra: 2381 / 2261,
  12902. bottom: 0.01
  12903. }
  12904. },
  12905. back: {
  12906. height: math.unit(6, "feet"),
  12907. weight: math.unit(180, "lb"),
  12908. name: "Back",
  12909. image: {
  12910. source: "./media/characters/renard-thatch/back.svg",
  12911. extra: 2428 / 2288
  12912. }
  12913. },
  12914. },
  12915. [
  12916. {
  12917. name: "Micro",
  12918. height: math.unit(3, "inches")
  12919. },
  12920. {
  12921. name: "Default",
  12922. height: math.unit(6, "feet"),
  12923. default: true
  12924. },
  12925. {
  12926. name: "Macro",
  12927. height: math.unit(75, "feet")
  12928. },
  12929. ]
  12930. ))
  12931. characterMakers.push(() => makeCharacter(
  12932. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12933. {
  12934. front: {
  12935. height: math.unit(1450, "feet"),
  12936. weight: math.unit(1.21e6, "tons"),
  12937. name: "Front",
  12938. image: {
  12939. source: "./media/characters/sekvra/front.svg",
  12940. extra: 1,
  12941. bottom: 0.03
  12942. }
  12943. },
  12944. frontClothed: {
  12945. height: math.unit(1450, "feet"),
  12946. weight: math.unit(1.21e6, "tons"),
  12947. name: "Front (Clothed)",
  12948. image: {
  12949. source: "./media/characters/sekvra/front-clothed.svg",
  12950. extra: 1,
  12951. bottom: 0.03
  12952. }
  12953. },
  12954. side: {
  12955. height: math.unit(1450, "feet"),
  12956. weight: math.unit(1.21e6, "tons"),
  12957. name: "Side",
  12958. image: {
  12959. source: "./media/characters/sekvra/side.svg",
  12960. extra: 1,
  12961. bottom: 0.025
  12962. }
  12963. },
  12964. back: {
  12965. height: math.unit(1450, "feet"),
  12966. weight: math.unit(1.21e6, "tons"),
  12967. name: "Back",
  12968. image: {
  12969. source: "./media/characters/sekvra/back.svg",
  12970. extra: 1,
  12971. bottom: 0.005
  12972. }
  12973. },
  12974. },
  12975. [
  12976. {
  12977. name: "Macro",
  12978. height: math.unit(1450, "feet"),
  12979. default: true
  12980. },
  12981. {
  12982. name: "Megamacro",
  12983. height: math.unit(15000, "feet")
  12984. },
  12985. ]
  12986. ))
  12987. characterMakers.push(() => makeCharacter(
  12988. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12989. {
  12990. front: {
  12991. height: math.unit(6, "feet"),
  12992. weight: math.unit(150, "lb"),
  12993. name: "Front",
  12994. image: {
  12995. source: "./media/characters/carmine/front.svg",
  12996. extra: 1,
  12997. bottom: 0.035
  12998. }
  12999. },
  13000. frontArmor: {
  13001. height: math.unit(6, "feet"),
  13002. weight: math.unit(150, "lb"),
  13003. name: "Front (Armor)",
  13004. image: {
  13005. source: "./media/characters/carmine/front-armor.svg",
  13006. extra: 1,
  13007. bottom: 0.035
  13008. }
  13009. },
  13010. },
  13011. [
  13012. {
  13013. name: "Large",
  13014. height: math.unit(1, "mile")
  13015. },
  13016. {
  13017. name: "Huge",
  13018. height: math.unit(40, "miles"),
  13019. default: true
  13020. },
  13021. {
  13022. name: "Colossal",
  13023. height: math.unit(2500, "miles")
  13024. },
  13025. ]
  13026. ))
  13027. characterMakers.push(() => makeCharacter(
  13028. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13029. {
  13030. front: {
  13031. height: math.unit(6, "feet"),
  13032. weight: math.unit(150, "lb"),
  13033. name: "Front",
  13034. image: {
  13035. source: "./media/characters/elyssia/front.svg",
  13036. extra: 2201 / 2035,
  13037. bottom: 0.05
  13038. }
  13039. },
  13040. frontClothed: {
  13041. height: math.unit(6, "feet"),
  13042. weight: math.unit(150, "lb"),
  13043. name: "Front (Clothed)",
  13044. image: {
  13045. source: "./media/characters/elyssia/front-clothed.svg",
  13046. extra: 2201 / 2035,
  13047. bottom: 0.05
  13048. }
  13049. },
  13050. back: {
  13051. height: math.unit(6, "feet"),
  13052. weight: math.unit(150, "lb"),
  13053. name: "Back",
  13054. image: {
  13055. source: "./media/characters/elyssia/back.svg",
  13056. extra: 2201 / 2035,
  13057. bottom: 0.013
  13058. }
  13059. },
  13060. },
  13061. [
  13062. {
  13063. name: "Smaller",
  13064. height: math.unit(150, "feet")
  13065. },
  13066. {
  13067. name: "Standard",
  13068. height: math.unit(1400, "feet"),
  13069. default: true
  13070. },
  13071. {
  13072. name: "Distracted",
  13073. height: math.unit(15000, "feet")
  13074. },
  13075. ]
  13076. ))
  13077. characterMakers.push(() => makeCharacter(
  13078. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13079. {
  13080. front: {
  13081. height: math.unit(7 + 4 / 12, "feet"),
  13082. weight: math.unit(500, "lb"),
  13083. name: "Front",
  13084. image: {
  13085. source: "./media/characters/geno-maxwell/front.svg",
  13086. extra: 2207 / 2040,
  13087. bottom: 0.015
  13088. }
  13089. },
  13090. },
  13091. [
  13092. {
  13093. name: "Micro",
  13094. height: math.unit(3, "inches")
  13095. },
  13096. {
  13097. name: "Normal",
  13098. height: math.unit(7 + 4 / 12, "feet"),
  13099. default: true
  13100. },
  13101. {
  13102. name: "Macro",
  13103. height: math.unit(220, "feet")
  13104. },
  13105. {
  13106. name: "Megamacro",
  13107. height: math.unit(11, "miles")
  13108. },
  13109. ]
  13110. ))
  13111. characterMakers.push(() => makeCharacter(
  13112. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13113. {
  13114. front: {
  13115. height: math.unit(7 + 4 / 12, "feet"),
  13116. weight: math.unit(500, "lb"),
  13117. name: "Front",
  13118. image: {
  13119. source: "./media/characters/regena-maxwell/front.svg",
  13120. extra: 3115 / 2770,
  13121. bottom: 0.02
  13122. }
  13123. },
  13124. },
  13125. [
  13126. {
  13127. name: "Normal",
  13128. height: math.unit(7 + 4 / 12, "feet"),
  13129. default: true
  13130. },
  13131. {
  13132. name: "Macro",
  13133. height: math.unit(220, "feet")
  13134. },
  13135. {
  13136. name: "Megamacro",
  13137. height: math.unit(11, "miles")
  13138. },
  13139. ]
  13140. ))
  13141. characterMakers.push(() => makeCharacter(
  13142. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13143. {
  13144. front: {
  13145. height: math.unit(6, "feet"),
  13146. weight: math.unit(150, "lb"),
  13147. name: "Front",
  13148. image: {
  13149. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13150. extra: 860 / 690,
  13151. bottom: 0.03
  13152. }
  13153. },
  13154. },
  13155. [
  13156. {
  13157. name: "Normal",
  13158. height: math.unit(1.7, "meters"),
  13159. default: true
  13160. },
  13161. ]
  13162. ))
  13163. characterMakers.push(() => makeCharacter(
  13164. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13165. {
  13166. front: {
  13167. height: math.unit(6, "feet"),
  13168. weight: math.unit(150, "lb"),
  13169. name: "Front",
  13170. image: {
  13171. source: "./media/characters/quilly/front.svg",
  13172. extra: 890 / 776
  13173. }
  13174. },
  13175. },
  13176. [
  13177. {
  13178. name: "Gigamacro",
  13179. height: math.unit(404090, "miles"),
  13180. default: true
  13181. },
  13182. ]
  13183. ))
  13184. characterMakers.push(() => makeCharacter(
  13185. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13186. {
  13187. front: {
  13188. height: math.unit(7 + 8 / 12, "feet"),
  13189. weight: math.unit(350, "lb"),
  13190. name: "Front",
  13191. image: {
  13192. source: "./media/characters/tempest/front.svg",
  13193. extra: 1175 / 1086,
  13194. bottom: 0.02
  13195. }
  13196. },
  13197. },
  13198. [
  13199. {
  13200. name: "Normal",
  13201. height: math.unit(7 + 8 / 12, "feet"),
  13202. default: true
  13203. },
  13204. ]
  13205. ))
  13206. characterMakers.push(() => makeCharacter(
  13207. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13208. {
  13209. side: {
  13210. height: math.unit(4 + 5 / 12, "feet"),
  13211. weight: math.unit(80, "lb"),
  13212. name: "Side",
  13213. image: {
  13214. source: "./media/characters/rodger/side.svg",
  13215. extra: 1235 / 1118
  13216. }
  13217. },
  13218. },
  13219. [
  13220. {
  13221. name: "Micro",
  13222. height: math.unit(1, "inch")
  13223. },
  13224. {
  13225. name: "Normal",
  13226. height: math.unit(4 + 5 / 12, "feet"),
  13227. default: true
  13228. },
  13229. {
  13230. name: "Macro",
  13231. height: math.unit(120, "feet")
  13232. },
  13233. ]
  13234. ))
  13235. characterMakers.push(() => makeCharacter(
  13236. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13237. {
  13238. front: {
  13239. height: math.unit(6, "feet"),
  13240. weight: math.unit(150, "lb"),
  13241. name: "Front",
  13242. image: {
  13243. source: "./media/characters/danyel/front.svg",
  13244. extra: 1185 / 1123,
  13245. bottom: 0.05
  13246. }
  13247. },
  13248. },
  13249. [
  13250. {
  13251. name: "Shrunken",
  13252. height: math.unit(0.5, "mm")
  13253. },
  13254. {
  13255. name: "Micro",
  13256. height: math.unit(1, "mm"),
  13257. default: true
  13258. },
  13259. {
  13260. name: "Upsized",
  13261. height: math.unit(5 + 5 / 12, "feet")
  13262. },
  13263. ]
  13264. ))
  13265. characterMakers.push(() => makeCharacter(
  13266. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13267. {
  13268. front: {
  13269. height: math.unit(5 + 6 / 12, "feet"),
  13270. weight: math.unit(200, "lb"),
  13271. name: "Front",
  13272. image: {
  13273. source: "./media/characters/vivian-bijoux/front.svg",
  13274. extra: 1,
  13275. bottom: 0.072
  13276. }
  13277. },
  13278. },
  13279. [
  13280. {
  13281. name: "Normal",
  13282. height: math.unit(5 + 6 / 12, "feet"),
  13283. default: true
  13284. },
  13285. {
  13286. name: "Bad Dream",
  13287. height: math.unit(500, "feet")
  13288. },
  13289. {
  13290. name: "Nightmare",
  13291. height: math.unit(500, "miles")
  13292. },
  13293. ]
  13294. ))
  13295. characterMakers.push(() => makeCharacter(
  13296. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13297. {
  13298. front: {
  13299. height: math.unit(6 + 1 / 12, "feet"),
  13300. weight: math.unit(260, "lb"),
  13301. name: "Front",
  13302. image: {
  13303. source: "./media/characters/zeta/front.svg",
  13304. extra: 1968 / 1889,
  13305. bottom: 0.06
  13306. }
  13307. },
  13308. back: {
  13309. height: math.unit(6 + 1 / 12, "feet"),
  13310. weight: math.unit(260, "lb"),
  13311. name: "Back",
  13312. image: {
  13313. source: "./media/characters/zeta/back.svg",
  13314. extra: 1944 / 1858,
  13315. bottom: 0.03
  13316. }
  13317. },
  13318. hand: {
  13319. height: math.unit(1.112, "feet"),
  13320. name: "Hand",
  13321. image: {
  13322. source: "./media/characters/zeta/hand.svg"
  13323. }
  13324. },
  13325. foot: {
  13326. height: math.unit(1.48, "feet"),
  13327. name: "Foot",
  13328. image: {
  13329. source: "./media/characters/zeta/foot.svg"
  13330. }
  13331. },
  13332. },
  13333. [
  13334. {
  13335. name: "Micro",
  13336. height: math.unit(6, "inches")
  13337. },
  13338. {
  13339. name: "Normal",
  13340. height: math.unit(6 + 1 / 12, "feet"),
  13341. default: true
  13342. },
  13343. {
  13344. name: "Macro",
  13345. height: math.unit(20, "feet")
  13346. },
  13347. ]
  13348. ))
  13349. characterMakers.push(() => makeCharacter(
  13350. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13351. {
  13352. front: {
  13353. height: math.unit(6, "feet"),
  13354. weight: math.unit(150, "lb"),
  13355. name: "Front",
  13356. image: {
  13357. source: "./media/characters/jamie-larsen/front.svg",
  13358. extra: 962 / 933,
  13359. bottom: 0.02
  13360. }
  13361. },
  13362. back: {
  13363. height: math.unit(6, "feet"),
  13364. weight: math.unit(150, "lb"),
  13365. name: "Back",
  13366. image: {
  13367. source: "./media/characters/jamie-larsen/back.svg",
  13368. extra: 997 / 946
  13369. }
  13370. },
  13371. },
  13372. [
  13373. {
  13374. name: "Macro",
  13375. height: math.unit(28 + 7 / 12, "feet"),
  13376. default: true
  13377. },
  13378. {
  13379. name: "Macro+",
  13380. height: math.unit(180, "feet")
  13381. },
  13382. {
  13383. name: "Megamacro",
  13384. height: math.unit(10, "miles")
  13385. },
  13386. {
  13387. name: "Gigamacro",
  13388. height: math.unit(200000, "miles")
  13389. },
  13390. ]
  13391. ))
  13392. characterMakers.push(() => makeCharacter(
  13393. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13394. {
  13395. front: {
  13396. height: math.unit(6, "feet"),
  13397. weight: math.unit(120, "lb"),
  13398. name: "Front",
  13399. image: {
  13400. source: "./media/characters/vance/front.svg",
  13401. extra: 1980 / 1890,
  13402. bottom: 0.09
  13403. }
  13404. },
  13405. back: {
  13406. height: math.unit(6, "feet"),
  13407. weight: math.unit(120, "lb"),
  13408. name: "Back",
  13409. image: {
  13410. source: "./media/characters/vance/back.svg",
  13411. extra: 2081 / 1994,
  13412. bottom: 0.014
  13413. }
  13414. },
  13415. hand: {
  13416. height: math.unit(0.88, "feet"),
  13417. name: "Hand",
  13418. image: {
  13419. source: "./media/characters/vance/hand.svg"
  13420. }
  13421. },
  13422. foot: {
  13423. height: math.unit(0.64, "feet"),
  13424. name: "Foot",
  13425. image: {
  13426. source: "./media/characters/vance/foot.svg"
  13427. }
  13428. },
  13429. },
  13430. [
  13431. {
  13432. name: "Small",
  13433. height: math.unit(90, "feet"),
  13434. default: true
  13435. },
  13436. {
  13437. name: "Macro",
  13438. height: math.unit(100, "meters")
  13439. },
  13440. {
  13441. name: "Megamacro",
  13442. height: math.unit(15, "miles")
  13443. },
  13444. ]
  13445. ))
  13446. characterMakers.push(() => makeCharacter(
  13447. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13448. {
  13449. front: {
  13450. height: math.unit(6, "feet"),
  13451. weight: math.unit(180, "lb"),
  13452. name: "Front",
  13453. image: {
  13454. source: "./media/characters/xochitl/front.svg",
  13455. extra: 2297 / 2261,
  13456. bottom: 0.065
  13457. }
  13458. },
  13459. back: {
  13460. height: math.unit(6, "feet"),
  13461. weight: math.unit(180, "lb"),
  13462. name: "Back",
  13463. image: {
  13464. source: "./media/characters/xochitl/back.svg",
  13465. extra: 2386 / 2354,
  13466. bottom: 0.01
  13467. }
  13468. },
  13469. foot: {
  13470. height: math.unit(6 / 5 * 1.15, "feet"),
  13471. weight: math.unit(150, "lb"),
  13472. name: "Foot",
  13473. image: {
  13474. source: "./media/characters/xochitl/foot.svg"
  13475. }
  13476. },
  13477. },
  13478. [
  13479. {
  13480. name: "Macro",
  13481. height: math.unit(80, "feet")
  13482. },
  13483. {
  13484. name: "Macro+",
  13485. height: math.unit(400, "feet"),
  13486. default: true
  13487. },
  13488. {
  13489. name: "Gigamacro",
  13490. height: math.unit(80000, "miles")
  13491. },
  13492. {
  13493. name: "Gigamacro+",
  13494. height: math.unit(400000, "miles")
  13495. },
  13496. {
  13497. name: "Teramacro",
  13498. height: math.unit(300, "AU")
  13499. },
  13500. ]
  13501. ))
  13502. characterMakers.push(() => makeCharacter(
  13503. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13504. {
  13505. front: {
  13506. height: math.unit(6, "feet"),
  13507. weight: math.unit(150, "lb"),
  13508. name: "Front",
  13509. image: {
  13510. source: "./media/characters/vincent/front.svg",
  13511. extra: 1130 / 1080,
  13512. bottom: 0.055
  13513. }
  13514. },
  13515. beak: {
  13516. height: math.unit(6 * 0.1, "feet"),
  13517. name: "Beak",
  13518. image: {
  13519. source: "./media/characters/vincent/beak.svg"
  13520. }
  13521. },
  13522. hand: {
  13523. height: math.unit(6 * 0.85, "feet"),
  13524. weight: math.unit(150, "lb"),
  13525. name: "Hand",
  13526. image: {
  13527. source: "./media/characters/vincent/hand.svg"
  13528. }
  13529. },
  13530. foot: {
  13531. height: math.unit(6 * 0.19, "feet"),
  13532. weight: math.unit(150, "lb"),
  13533. name: "Foot",
  13534. image: {
  13535. source: "./media/characters/vincent/foot.svg"
  13536. }
  13537. },
  13538. },
  13539. [
  13540. {
  13541. name: "Base",
  13542. height: math.unit(6 + 5 / 12, "feet"),
  13543. default: true
  13544. },
  13545. {
  13546. name: "Macro",
  13547. height: math.unit(300, "feet")
  13548. },
  13549. {
  13550. name: "Megamacro",
  13551. height: math.unit(2, "miles")
  13552. },
  13553. {
  13554. name: "Gigamacro",
  13555. height: math.unit(1000, "miles")
  13556. },
  13557. ]
  13558. ))
  13559. characterMakers.push(() => makeCharacter(
  13560. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13561. {
  13562. front: {
  13563. height: math.unit(2, "meters"),
  13564. weight: math.unit(500, "kg"),
  13565. name: "Front",
  13566. image: {
  13567. source: "./media/characters/coatl/front.svg",
  13568. extra: 3948 / 3500,
  13569. bottom: 0.082
  13570. }
  13571. },
  13572. },
  13573. [
  13574. {
  13575. name: "Normal",
  13576. height: math.unit(4, "meters")
  13577. },
  13578. {
  13579. name: "Macro",
  13580. height: math.unit(100, "meters"),
  13581. default: true
  13582. },
  13583. {
  13584. name: "Macro+",
  13585. height: math.unit(300, "meters")
  13586. },
  13587. {
  13588. name: "Megamacro",
  13589. height: math.unit(3, "gigameters")
  13590. },
  13591. {
  13592. name: "Megamacro+",
  13593. height: math.unit(300, "terameters")
  13594. },
  13595. {
  13596. name: "Megamacro++",
  13597. height: math.unit(3, "lightyears")
  13598. },
  13599. ]
  13600. ))
  13601. characterMakers.push(() => makeCharacter(
  13602. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13603. {
  13604. front: {
  13605. height: math.unit(6, "feet"),
  13606. weight: math.unit(50, "kg"),
  13607. name: "front",
  13608. image: {
  13609. source: "./media/characters/shiroryu/front.svg",
  13610. extra: 1990 / 1935
  13611. }
  13612. },
  13613. },
  13614. [
  13615. {
  13616. name: "Mortal Mingling",
  13617. height: math.unit(3, "meters")
  13618. },
  13619. {
  13620. name: "Kaiju-ish",
  13621. height: math.unit(250, "meters")
  13622. },
  13623. {
  13624. name: "Somewhat Godly",
  13625. height: math.unit(400, "km"),
  13626. default: true
  13627. },
  13628. {
  13629. name: "Planetary",
  13630. height: math.unit(300, "megameters")
  13631. },
  13632. {
  13633. name: "Galaxy-dwarfing",
  13634. height: math.unit(450, "kiloparsecs")
  13635. },
  13636. {
  13637. name: "Universe Eater",
  13638. height: math.unit(150, "gigaparsecs")
  13639. },
  13640. {
  13641. name: "Almost Immeasurable",
  13642. height: math.unit(1.3e266, "yottaparsecs")
  13643. },
  13644. ]
  13645. ))
  13646. characterMakers.push(() => makeCharacter(
  13647. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13648. {
  13649. front: {
  13650. height: math.unit(6, "feet"),
  13651. weight: math.unit(150, "lb"),
  13652. name: "Front",
  13653. image: {
  13654. source: "./media/characters/umeko/front.svg",
  13655. extra: 1,
  13656. bottom: 0.019
  13657. }
  13658. },
  13659. frontArmored: {
  13660. height: math.unit(6, "feet"),
  13661. weight: math.unit(150, "lb"),
  13662. name: "Front (Armored)",
  13663. image: {
  13664. source: "./media/characters/umeko/front-armored.svg",
  13665. extra: 1,
  13666. bottom: 0.021
  13667. }
  13668. },
  13669. },
  13670. [
  13671. {
  13672. name: "Macro",
  13673. height: math.unit(220, "feet"),
  13674. default: true
  13675. },
  13676. {
  13677. name: "Guardian Dragon",
  13678. height: math.unit(50, "miles")
  13679. },
  13680. {
  13681. name: "Cosmic",
  13682. height: math.unit(800000, "miles")
  13683. },
  13684. ]
  13685. ))
  13686. characterMakers.push(() => makeCharacter(
  13687. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13688. {
  13689. front: {
  13690. height: math.unit(6, "feet"),
  13691. weight: math.unit(150, "lb"),
  13692. name: "Front",
  13693. image: {
  13694. source: "./media/characters/cassidy/front.svg",
  13695. extra: 1,
  13696. bottom: 0.043
  13697. }
  13698. },
  13699. },
  13700. [
  13701. {
  13702. name: "Canon Height",
  13703. height: math.unit(120, "feet"),
  13704. default: true
  13705. },
  13706. {
  13707. name: "Macro+",
  13708. height: math.unit(400, "feet")
  13709. },
  13710. {
  13711. name: "Macro++",
  13712. height: math.unit(4000, "feet")
  13713. },
  13714. {
  13715. name: "Megamacro",
  13716. height: math.unit(3, "miles")
  13717. },
  13718. ]
  13719. ))
  13720. characterMakers.push(() => makeCharacter(
  13721. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13722. {
  13723. front: {
  13724. height: math.unit(6, "feet"),
  13725. weight: math.unit(150, "lb"),
  13726. name: "Front",
  13727. image: {
  13728. source: "./media/characters/isaac/front.svg",
  13729. extra: 896 / 815,
  13730. bottom: 0.11
  13731. }
  13732. },
  13733. },
  13734. [
  13735. {
  13736. name: "Human Size",
  13737. height: math.unit(8, "feet"),
  13738. default: true
  13739. },
  13740. {
  13741. name: "Macro",
  13742. height: math.unit(400, "feet")
  13743. },
  13744. {
  13745. name: "Megamacro",
  13746. height: math.unit(50, "miles")
  13747. },
  13748. {
  13749. name: "Canon Height",
  13750. height: math.unit(200, "AU")
  13751. },
  13752. ]
  13753. ))
  13754. characterMakers.push(() => makeCharacter(
  13755. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13756. {
  13757. front: {
  13758. height: math.unit(6, "feet"),
  13759. weight: math.unit(72, "kg"),
  13760. name: "Front",
  13761. image: {
  13762. source: "./media/characters/sleekit/front.svg",
  13763. extra: 4693 / 4487,
  13764. bottom: 0.012
  13765. }
  13766. },
  13767. },
  13768. [
  13769. {
  13770. name: "Minimum Height",
  13771. height: math.unit(10, "meters")
  13772. },
  13773. {
  13774. name: "Smaller",
  13775. height: math.unit(25, "meters")
  13776. },
  13777. {
  13778. name: "Larger",
  13779. height: math.unit(38, "meters"),
  13780. default: true
  13781. },
  13782. {
  13783. name: "Maximum height",
  13784. height: math.unit(100, "meters")
  13785. },
  13786. ]
  13787. ))
  13788. characterMakers.push(() => makeCharacter(
  13789. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13790. {
  13791. front: {
  13792. height: math.unit(6, "feet"),
  13793. weight: math.unit(150, "lb"),
  13794. name: "Front",
  13795. image: {
  13796. source: "./media/characters/nillia/front.svg",
  13797. extra: 2195 / 2037,
  13798. bottom: 0.005
  13799. }
  13800. },
  13801. back: {
  13802. height: math.unit(6, "feet"),
  13803. weight: math.unit(150, "lb"),
  13804. name: "Back",
  13805. image: {
  13806. source: "./media/characters/nillia/back.svg",
  13807. extra: 2195 / 2037,
  13808. bottom: 0.005
  13809. }
  13810. },
  13811. },
  13812. [
  13813. {
  13814. name: "Canon Height",
  13815. height: math.unit(489, "feet"),
  13816. default: true
  13817. }
  13818. ]
  13819. ))
  13820. characterMakers.push(() => makeCharacter(
  13821. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13822. {
  13823. front: {
  13824. height: math.unit(6, "feet"),
  13825. weight: math.unit(150, "lb"),
  13826. name: "Front",
  13827. image: {
  13828. source: "./media/characters/mesmyriza/front.svg",
  13829. extra: 2067 / 1784,
  13830. bottom: 0.035
  13831. }
  13832. },
  13833. foot: {
  13834. height: math.unit(6 / (250 / 35), "feet"),
  13835. name: "Foot",
  13836. image: {
  13837. source: "./media/characters/mesmyriza/foot.svg"
  13838. }
  13839. },
  13840. },
  13841. [
  13842. {
  13843. name: "Macro",
  13844. height: math.unit(457, "meters"),
  13845. default: true
  13846. },
  13847. {
  13848. name: "Megamacro",
  13849. height: math.unit(8, "megameters")
  13850. },
  13851. ]
  13852. ))
  13853. characterMakers.push(() => makeCharacter(
  13854. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13855. {
  13856. front: {
  13857. height: math.unit(6, "feet"),
  13858. weight: math.unit(250, "lb"),
  13859. name: "Front",
  13860. image: {
  13861. source: "./media/characters/saudade/front.svg",
  13862. extra: 1172 / 1139,
  13863. bottom: 0.035
  13864. }
  13865. },
  13866. },
  13867. [
  13868. {
  13869. name: "Micro",
  13870. height: math.unit(3, "inches")
  13871. },
  13872. {
  13873. name: "Normal",
  13874. height: math.unit(6, "feet"),
  13875. default: true
  13876. },
  13877. {
  13878. name: "Macro",
  13879. height: math.unit(50, "feet")
  13880. },
  13881. {
  13882. name: "Megamacro",
  13883. height: math.unit(2800, "feet")
  13884. },
  13885. ]
  13886. ))
  13887. characterMakers.push(() => makeCharacter(
  13888. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13889. {
  13890. front: {
  13891. height: math.unit(5 + 4 / 12, "feet"),
  13892. weight: math.unit(100, "lb"),
  13893. name: "Front",
  13894. image: {
  13895. source: "./media/characters/keireer/front.svg",
  13896. extra: 716 / 666,
  13897. bottom: 0.05
  13898. }
  13899. },
  13900. },
  13901. [
  13902. {
  13903. name: "Normal",
  13904. height: math.unit(5 + 4 / 12, "feet"),
  13905. default: true
  13906. },
  13907. ]
  13908. ))
  13909. characterMakers.push(() => makeCharacter(
  13910. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13911. {
  13912. front: {
  13913. height: math.unit(6, "feet"),
  13914. weight: math.unit(90, "kg"),
  13915. name: "Front",
  13916. image: {
  13917. source: "./media/characters/mirja/front.svg",
  13918. extra: 1789 / 1683,
  13919. bottom: 0.05
  13920. }
  13921. },
  13922. frontDressed: {
  13923. height: math.unit(6, "feet"),
  13924. weight: math.unit(90, "lb"),
  13925. name: "Front (Dressed)",
  13926. image: {
  13927. source: "./media/characters/mirja/front-dressed.svg",
  13928. extra: 1789 / 1683,
  13929. bottom: 0.05
  13930. }
  13931. },
  13932. back: {
  13933. height: math.unit(6, "feet"),
  13934. weight: math.unit(90, "lb"),
  13935. name: "Back",
  13936. image: {
  13937. source: "./media/characters/mirja/back.svg",
  13938. extra: 953 / 917,
  13939. bottom: 0.017
  13940. }
  13941. },
  13942. },
  13943. [
  13944. {
  13945. name: "\"Incognito\"",
  13946. height: math.unit(3, "meters")
  13947. },
  13948. {
  13949. name: "Strolling Size",
  13950. height: math.unit(15, "km")
  13951. },
  13952. {
  13953. name: "Larger Strolling Size",
  13954. height: math.unit(400, "km")
  13955. },
  13956. {
  13957. name: "Preferred Size",
  13958. height: math.unit(5000, "km")
  13959. },
  13960. {
  13961. name: "True Size",
  13962. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13963. default: true
  13964. },
  13965. ]
  13966. ))
  13967. characterMakers.push(() => makeCharacter(
  13968. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13969. {
  13970. front: {
  13971. height: math.unit(15, "feet"),
  13972. weight: math.unit(880, "kg"),
  13973. name: "Front",
  13974. image: {
  13975. source: "./media/characters/nightraver/front.svg",
  13976. extra: 2444 / 2160,
  13977. bottom: 0.027
  13978. }
  13979. },
  13980. back: {
  13981. height: math.unit(15, "feet"),
  13982. weight: math.unit(880, "kg"),
  13983. name: "Back",
  13984. image: {
  13985. source: "./media/characters/nightraver/back.svg",
  13986. extra: 2309 / 2180,
  13987. bottom: 0.005
  13988. }
  13989. },
  13990. sole: {
  13991. height: math.unit(2.878, "feet"),
  13992. name: "Sole",
  13993. image: {
  13994. source: "./media/characters/nightraver/sole.svg"
  13995. }
  13996. },
  13997. foot: {
  13998. height: math.unit(2.285, "feet"),
  13999. name: "Foot",
  14000. image: {
  14001. source: "./media/characters/nightraver/foot.svg"
  14002. }
  14003. },
  14004. maw: {
  14005. height: math.unit(2.67, "feet"),
  14006. name: "Maw",
  14007. image: {
  14008. source: "./media/characters/nightraver/maw.svg"
  14009. }
  14010. },
  14011. },
  14012. [
  14013. {
  14014. name: "Micro",
  14015. height: math.unit(1, "cm")
  14016. },
  14017. {
  14018. name: "Normal",
  14019. height: math.unit(15, "feet"),
  14020. default: true
  14021. },
  14022. {
  14023. name: "Macro",
  14024. height: math.unit(300, "feet")
  14025. },
  14026. {
  14027. name: "Megamacro",
  14028. height: math.unit(300, "miles")
  14029. },
  14030. {
  14031. name: "Gigamacro",
  14032. height: math.unit(10000, "miles")
  14033. },
  14034. ]
  14035. ))
  14036. characterMakers.push(() => makeCharacter(
  14037. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14038. {
  14039. side: {
  14040. height: math.unit(2, "inches"),
  14041. weight: math.unit(5, "grams"),
  14042. name: "Side",
  14043. image: {
  14044. source: "./media/characters/arc/side.svg"
  14045. }
  14046. },
  14047. },
  14048. [
  14049. {
  14050. name: "Micro",
  14051. height: math.unit(2, "inches"),
  14052. default: true
  14053. },
  14054. ]
  14055. ))
  14056. characterMakers.push(() => makeCharacter(
  14057. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14058. {
  14059. front: {
  14060. height: math.unit(1.1938, "meters"),
  14061. weight: math.unit(54, "kg"),
  14062. name: "Front",
  14063. image: {
  14064. source: "./media/characters/nebula-shahar/front.svg",
  14065. extra: 1642 / 1436,
  14066. bottom: 0.06
  14067. }
  14068. },
  14069. },
  14070. [
  14071. {
  14072. name: "Megamicro",
  14073. height: math.unit(0.3, "mm")
  14074. },
  14075. {
  14076. name: "Micro",
  14077. height: math.unit(3, "cm")
  14078. },
  14079. {
  14080. name: "Normal",
  14081. height: math.unit(138, "cm"),
  14082. default: true
  14083. },
  14084. {
  14085. name: "Macro",
  14086. height: math.unit(30, "m")
  14087. },
  14088. ]
  14089. ))
  14090. characterMakers.push(() => makeCharacter(
  14091. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14092. {
  14093. front: {
  14094. height: math.unit(5.24, "feet"),
  14095. weight: math.unit(150, "lb"),
  14096. name: "Front",
  14097. image: {
  14098. source: "./media/characters/shayla/front.svg",
  14099. extra: 1512 / 1414,
  14100. bottom: 0.01
  14101. }
  14102. },
  14103. back: {
  14104. height: math.unit(5.24, "feet"),
  14105. weight: math.unit(150, "lb"),
  14106. name: "Back",
  14107. image: {
  14108. source: "./media/characters/shayla/back.svg",
  14109. extra: 1512 / 1414
  14110. }
  14111. },
  14112. hand: {
  14113. height: math.unit(0.7781496062992126, "feet"),
  14114. name: "Hand",
  14115. image: {
  14116. source: "./media/characters/shayla/hand.svg"
  14117. }
  14118. },
  14119. foot: {
  14120. height: math.unit(1.4206036745406823, "feet"),
  14121. name: "Foot",
  14122. image: {
  14123. source: "./media/characters/shayla/foot.svg"
  14124. }
  14125. },
  14126. },
  14127. [
  14128. {
  14129. name: "Micro",
  14130. height: math.unit(0.32, "feet")
  14131. },
  14132. {
  14133. name: "Normal",
  14134. height: math.unit(5.24, "feet"),
  14135. default: true
  14136. },
  14137. {
  14138. name: "Macro",
  14139. height: math.unit(492.12, "feet")
  14140. },
  14141. {
  14142. name: "Megamacro",
  14143. height: math.unit(186.41, "miles")
  14144. },
  14145. ]
  14146. ))
  14147. characterMakers.push(() => makeCharacter(
  14148. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14149. {
  14150. front: {
  14151. height: math.unit(2.2, "m"),
  14152. weight: math.unit(120, "kg"),
  14153. name: "Front",
  14154. image: {
  14155. source: "./media/characters/pia-jr/front.svg",
  14156. extra: 1000 / 970,
  14157. bottom: 0.035
  14158. }
  14159. },
  14160. hand: {
  14161. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14162. name: "Hand",
  14163. image: {
  14164. source: "./media/characters/pia-jr/hand.svg"
  14165. }
  14166. },
  14167. paw: {
  14168. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14169. name: "Paw",
  14170. image: {
  14171. source: "./media/characters/pia-jr/paw.svg"
  14172. }
  14173. },
  14174. },
  14175. [
  14176. {
  14177. name: "Micro",
  14178. height: math.unit(1.2, "cm")
  14179. },
  14180. {
  14181. name: "Normal",
  14182. height: math.unit(2.2, "m"),
  14183. default: true
  14184. },
  14185. {
  14186. name: "Macro",
  14187. height: math.unit(180, "m")
  14188. },
  14189. {
  14190. name: "Megamacro",
  14191. height: math.unit(420, "km")
  14192. },
  14193. ]
  14194. ))
  14195. characterMakers.push(() => makeCharacter(
  14196. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14197. {
  14198. front: {
  14199. height: math.unit(2, "m"),
  14200. weight: math.unit(115, "kg"),
  14201. name: "Front",
  14202. image: {
  14203. source: "./media/characters/pia-sr/front.svg",
  14204. extra: 760 / 730,
  14205. bottom: 0.015
  14206. }
  14207. },
  14208. back: {
  14209. height: math.unit(2, "m"),
  14210. weight: math.unit(115, "kg"),
  14211. name: "Back",
  14212. image: {
  14213. source: "./media/characters/pia-sr/back.svg",
  14214. extra: 760 / 730,
  14215. bottom: 0.01
  14216. }
  14217. },
  14218. hand: {
  14219. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14220. name: "Hand",
  14221. image: {
  14222. source: "./media/characters/pia-sr/hand.svg"
  14223. }
  14224. },
  14225. foot: {
  14226. height: math.unit(1.83, "feet"),
  14227. name: "Foot",
  14228. image: {
  14229. source: "./media/characters/pia-sr/foot.svg"
  14230. }
  14231. },
  14232. },
  14233. [
  14234. {
  14235. name: "Micro",
  14236. height: math.unit(88, "mm")
  14237. },
  14238. {
  14239. name: "Normal",
  14240. height: math.unit(2, "m"),
  14241. default: true
  14242. },
  14243. {
  14244. name: "Macro",
  14245. height: math.unit(200, "m")
  14246. },
  14247. {
  14248. name: "Megamacro",
  14249. height: math.unit(420, "km")
  14250. },
  14251. ]
  14252. ))
  14253. characterMakers.push(() => makeCharacter(
  14254. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14255. {
  14256. front: {
  14257. height: math.unit(8 + 2 / 12, "feet"),
  14258. weight: math.unit(300, "lb"),
  14259. name: "Front",
  14260. image: {
  14261. source: "./media/characters/kibibyte/front.svg",
  14262. extra: 2221 / 2098,
  14263. bottom: 0.04
  14264. }
  14265. },
  14266. },
  14267. [
  14268. {
  14269. name: "Normal",
  14270. height: math.unit(8 + 2 / 12, "feet"),
  14271. default: true
  14272. },
  14273. {
  14274. name: "Socialable Macro",
  14275. height: math.unit(50, "feet")
  14276. },
  14277. {
  14278. name: "Macro",
  14279. height: math.unit(300, "feet")
  14280. },
  14281. {
  14282. name: "Megamacro",
  14283. height: math.unit(500, "miles")
  14284. },
  14285. ]
  14286. ))
  14287. characterMakers.push(() => makeCharacter(
  14288. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14289. {
  14290. front: {
  14291. height: math.unit(6, "feet"),
  14292. weight: math.unit(150, "lb"),
  14293. name: "Front",
  14294. image: {
  14295. source: "./media/characters/felix/front.svg",
  14296. extra: 762 / 722,
  14297. bottom: 0.02
  14298. }
  14299. },
  14300. frontClothed: {
  14301. height: math.unit(6, "feet"),
  14302. weight: math.unit(150, "lb"),
  14303. name: "Front (Clothed)",
  14304. image: {
  14305. source: "./media/characters/felix/front-clothed.svg",
  14306. extra: 762 / 722,
  14307. bottom: 0.02
  14308. }
  14309. },
  14310. },
  14311. [
  14312. {
  14313. name: "Normal",
  14314. height: math.unit(6 + 8 / 12, "feet"),
  14315. default: true
  14316. },
  14317. {
  14318. name: "Macro",
  14319. height: math.unit(2600, "feet")
  14320. },
  14321. {
  14322. name: "Megamacro",
  14323. height: math.unit(450, "miles")
  14324. },
  14325. ]
  14326. ))
  14327. characterMakers.push(() => makeCharacter(
  14328. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14329. {
  14330. front: {
  14331. height: math.unit(6 + 1 / 12, "feet"),
  14332. weight: math.unit(250, "lb"),
  14333. name: "Front",
  14334. image: {
  14335. source: "./media/characters/tobo/front.svg",
  14336. extra: 608 / 586,
  14337. bottom: 0.023
  14338. }
  14339. },
  14340. back: {
  14341. height: math.unit(6 + 1 / 12, "feet"),
  14342. weight: math.unit(250, "lb"),
  14343. name: "Back",
  14344. image: {
  14345. source: "./media/characters/tobo/back.svg",
  14346. extra: 608 / 586
  14347. }
  14348. },
  14349. },
  14350. [
  14351. {
  14352. name: "Nano",
  14353. height: math.unit(2, "nm")
  14354. },
  14355. {
  14356. name: "Megamicro",
  14357. height: math.unit(0.1, "mm")
  14358. },
  14359. {
  14360. name: "Micro",
  14361. height: math.unit(1, "inch"),
  14362. default: true
  14363. },
  14364. {
  14365. name: "Human-sized",
  14366. height: math.unit(6 + 1 / 12, "feet")
  14367. },
  14368. {
  14369. name: "Macro",
  14370. height: math.unit(250, "feet")
  14371. },
  14372. {
  14373. name: "Megamacro",
  14374. height: math.unit(75, "miles")
  14375. },
  14376. {
  14377. name: "Texas-sized",
  14378. height: math.unit(750, "miles")
  14379. },
  14380. {
  14381. name: "Teramacro",
  14382. height: math.unit(50000, "miles")
  14383. },
  14384. ]
  14385. ))
  14386. characterMakers.push(() => makeCharacter(
  14387. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14388. {
  14389. front: {
  14390. height: math.unit(6, "feet"),
  14391. weight: math.unit(269, "lb"),
  14392. name: "Front",
  14393. image: {
  14394. source: "./media/characters/danny-kapowsky/front.svg",
  14395. extra: 766 / 736,
  14396. bottom: 0.044
  14397. }
  14398. },
  14399. back: {
  14400. height: math.unit(6, "feet"),
  14401. weight: math.unit(269, "lb"),
  14402. name: "Back",
  14403. image: {
  14404. source: "./media/characters/danny-kapowsky/back.svg",
  14405. extra: 797 / 760,
  14406. bottom: 0.025
  14407. }
  14408. },
  14409. },
  14410. [
  14411. {
  14412. name: "Macro",
  14413. height: math.unit(150, "feet"),
  14414. default: true
  14415. },
  14416. {
  14417. name: "Macro+",
  14418. height: math.unit(200, "feet")
  14419. },
  14420. {
  14421. name: "Macro++",
  14422. height: math.unit(300, "feet")
  14423. },
  14424. {
  14425. name: "Macro+++",
  14426. height: math.unit(400, "feet")
  14427. },
  14428. ]
  14429. ))
  14430. characterMakers.push(() => makeCharacter(
  14431. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14432. {
  14433. side: {
  14434. height: math.unit(6, "feet"),
  14435. weight: math.unit(170, "lb"),
  14436. name: "Side",
  14437. image: {
  14438. source: "./media/characters/finn/side.svg",
  14439. extra: 1953 / 1807,
  14440. bottom: 0.057
  14441. }
  14442. },
  14443. },
  14444. [
  14445. {
  14446. name: "Megamacro",
  14447. height: math.unit(14445, "feet"),
  14448. default: true
  14449. },
  14450. ]
  14451. ))
  14452. characterMakers.push(() => makeCharacter(
  14453. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14454. {
  14455. front: {
  14456. height: math.unit(5 + 6 / 12, "feet"),
  14457. weight: math.unit(125, "lb"),
  14458. name: "Front",
  14459. image: {
  14460. source: "./media/characters/roy/front.svg",
  14461. extra: 1,
  14462. bottom: 0.11
  14463. }
  14464. },
  14465. },
  14466. [
  14467. {
  14468. name: "Micro",
  14469. height: math.unit(3, "inches"),
  14470. default: true
  14471. },
  14472. {
  14473. name: "Normal",
  14474. height: math.unit(5 + 6 / 12, "feet")
  14475. },
  14476. {
  14477. name: "Lesser Macro",
  14478. height: math.unit(60, "feet")
  14479. },
  14480. {
  14481. name: "Greater Macro",
  14482. height: math.unit(120, "feet")
  14483. },
  14484. ]
  14485. ))
  14486. characterMakers.push(() => makeCharacter(
  14487. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14488. {
  14489. front: {
  14490. height: math.unit(6, "feet"),
  14491. weight: math.unit(100, "lb"),
  14492. name: "Front",
  14493. image: {
  14494. source: "./media/characters/aevsivs/front.svg",
  14495. extra: 1,
  14496. bottom: 0.03
  14497. }
  14498. },
  14499. back: {
  14500. height: math.unit(6, "feet"),
  14501. weight: math.unit(100, "lb"),
  14502. name: "Back",
  14503. image: {
  14504. source: "./media/characters/aevsivs/back.svg"
  14505. }
  14506. },
  14507. },
  14508. [
  14509. {
  14510. name: "Micro",
  14511. height: math.unit(2, "inches"),
  14512. default: true
  14513. },
  14514. {
  14515. name: "Normal",
  14516. height: math.unit(5, "feet")
  14517. },
  14518. ]
  14519. ))
  14520. characterMakers.push(() => makeCharacter(
  14521. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14522. {
  14523. front: {
  14524. height: math.unit(5 + 7 / 12, "feet"),
  14525. weight: math.unit(159, "lb"),
  14526. name: "Front",
  14527. image: {
  14528. source: "./media/characters/hildegard/front.svg",
  14529. extra: 289 / 269,
  14530. bottom: 7.63 / 297.8
  14531. }
  14532. },
  14533. back: {
  14534. height: math.unit(5 + 7 / 12, "feet"),
  14535. weight: math.unit(159, "lb"),
  14536. name: "Back",
  14537. image: {
  14538. source: "./media/characters/hildegard/back.svg",
  14539. extra: 280 / 260,
  14540. bottom: 2.3 / 282
  14541. }
  14542. },
  14543. },
  14544. [
  14545. {
  14546. name: "Normal",
  14547. height: math.unit(5 + 7 / 12, "feet"),
  14548. default: true
  14549. },
  14550. ]
  14551. ))
  14552. characterMakers.push(() => makeCharacter(
  14553. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14554. {
  14555. bernard: {
  14556. height: math.unit(2 + 7 / 12, "feet"),
  14557. weight: math.unit(66, "lb"),
  14558. name: "Bernard",
  14559. rename: true,
  14560. image: {
  14561. source: "./media/characters/bernard-wilder/bernard.svg",
  14562. extra: 192 / 128,
  14563. bottom: 0.05
  14564. }
  14565. },
  14566. wilder: {
  14567. height: math.unit(5 + 8 / 12, "feet"),
  14568. weight: math.unit(143, "lb"),
  14569. name: "Wilder",
  14570. rename: true,
  14571. image: {
  14572. source: "./media/characters/bernard-wilder/wilder.svg",
  14573. extra: 361 / 312,
  14574. bottom: 0.02
  14575. }
  14576. },
  14577. },
  14578. [
  14579. {
  14580. name: "Normal",
  14581. height: math.unit(2 + 7 / 12, "feet"),
  14582. default: true
  14583. },
  14584. ]
  14585. ))
  14586. characterMakers.push(() => makeCharacter(
  14587. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14588. {
  14589. anthro: {
  14590. height: math.unit(6 + 1 / 12, "feet"),
  14591. weight: math.unit(155, "lb"),
  14592. name: "Anthro",
  14593. image: {
  14594. source: "./media/characters/hearth/anthro.svg",
  14595. extra: 260 / 250,
  14596. bottom: 0.02
  14597. }
  14598. },
  14599. feral: {
  14600. height: math.unit(3.78, "feet"),
  14601. weight: math.unit(35, "kg"),
  14602. name: "Feral",
  14603. image: {
  14604. source: "./media/characters/hearth/feral.svg",
  14605. extra: 153 / 135,
  14606. bottom: 0.03
  14607. }
  14608. },
  14609. },
  14610. [
  14611. {
  14612. name: "Normal",
  14613. height: math.unit(6 + 1 / 12, "feet"),
  14614. default: true
  14615. },
  14616. ]
  14617. ))
  14618. characterMakers.push(() => makeCharacter(
  14619. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14620. {
  14621. front: {
  14622. height: math.unit(6, "feet"),
  14623. weight: math.unit(182, "lb"),
  14624. name: "Front",
  14625. image: {
  14626. source: "./media/characters/ingrid/front.svg",
  14627. extra: 294 / 268,
  14628. bottom: 0.027
  14629. }
  14630. },
  14631. },
  14632. [
  14633. {
  14634. name: "Normal",
  14635. height: math.unit(6, "feet"),
  14636. default: true
  14637. },
  14638. ]
  14639. ))
  14640. characterMakers.push(() => makeCharacter(
  14641. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14642. {
  14643. eevee: {
  14644. height: math.unit(2 + 10 / 12, "feet"),
  14645. weight: math.unit(86, "lb"),
  14646. name: "Malgam",
  14647. image: {
  14648. source: "./media/characters/malgam/eevee.svg",
  14649. extra: 218 / 180,
  14650. bottom: 0.2
  14651. }
  14652. },
  14653. sylveon: {
  14654. height: math.unit(4, "feet"),
  14655. weight: math.unit(101, "lb"),
  14656. name: "Future Malgam",
  14657. rename: true,
  14658. image: {
  14659. source: "./media/characters/malgam/sylveon.svg",
  14660. extra: 371 / 325,
  14661. bottom: 0.015
  14662. }
  14663. },
  14664. gigantamax: {
  14665. height: math.unit(50, "feet"),
  14666. name: "Gigantamax Malgam",
  14667. rename: true,
  14668. image: {
  14669. source: "./media/characters/malgam/gigantamax.svg"
  14670. }
  14671. },
  14672. },
  14673. [
  14674. {
  14675. name: "Normal",
  14676. height: math.unit(2 + 10 / 12, "feet"),
  14677. default: true
  14678. },
  14679. ]
  14680. ))
  14681. characterMakers.push(() => makeCharacter(
  14682. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14683. {
  14684. front: {
  14685. height: math.unit(5 + 11 / 12, "feet"),
  14686. weight: math.unit(188, "lb"),
  14687. name: "Front",
  14688. image: {
  14689. source: "./media/characters/fleur/front.svg",
  14690. extra: 309 / 283,
  14691. bottom: 0.007
  14692. }
  14693. },
  14694. },
  14695. [
  14696. {
  14697. name: "Normal",
  14698. height: math.unit(5 + 11 / 12, "feet"),
  14699. default: true
  14700. },
  14701. ]
  14702. ))
  14703. characterMakers.push(() => makeCharacter(
  14704. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14705. {
  14706. front: {
  14707. height: math.unit(5 + 4 / 12, "feet"),
  14708. weight: math.unit(122, "lb"),
  14709. name: "Front",
  14710. image: {
  14711. source: "./media/characters/jude/front.svg",
  14712. extra: 288 / 273,
  14713. bottom: 0.03
  14714. }
  14715. },
  14716. },
  14717. [
  14718. {
  14719. name: "Normal",
  14720. height: math.unit(5 + 4 / 12, "feet"),
  14721. default: true
  14722. },
  14723. ]
  14724. ))
  14725. characterMakers.push(() => makeCharacter(
  14726. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14727. {
  14728. front: {
  14729. height: math.unit(5 + 11 / 12, "feet"),
  14730. weight: math.unit(190, "lb"),
  14731. name: "Front",
  14732. image: {
  14733. source: "./media/characters/seara/front.svg",
  14734. extra: 1,
  14735. bottom: 0.05
  14736. }
  14737. },
  14738. },
  14739. [
  14740. {
  14741. name: "Normal",
  14742. height: math.unit(5 + 11 / 12, "feet"),
  14743. default: true
  14744. },
  14745. ]
  14746. ))
  14747. characterMakers.push(() => makeCharacter(
  14748. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14749. {
  14750. front: {
  14751. height: math.unit(16 + 5 / 12, "feet"),
  14752. weight: math.unit(524, "lb"),
  14753. name: "Front",
  14754. image: {
  14755. source: "./media/characters/caspian/front.svg",
  14756. extra: 1,
  14757. bottom: 0.04
  14758. }
  14759. },
  14760. },
  14761. [
  14762. {
  14763. name: "Normal",
  14764. height: math.unit(16 + 5 / 12, "feet"),
  14765. default: true
  14766. },
  14767. ]
  14768. ))
  14769. characterMakers.push(() => makeCharacter(
  14770. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14771. {
  14772. front: {
  14773. height: math.unit(5 + 7 / 12, "feet"),
  14774. weight: math.unit(170, "lb"),
  14775. name: "Front",
  14776. image: {
  14777. source: "./media/characters/mika/front.svg",
  14778. extra: 1,
  14779. bottom: 0.016
  14780. }
  14781. },
  14782. },
  14783. [
  14784. {
  14785. name: "Normal",
  14786. height: math.unit(5 + 7 / 12, "feet"),
  14787. default: true
  14788. },
  14789. ]
  14790. ))
  14791. characterMakers.push(() => makeCharacter(
  14792. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14793. {
  14794. front: {
  14795. height: math.unit(6 + 2 / 12, "feet"),
  14796. weight: math.unit(268, "lb"),
  14797. name: "Front",
  14798. image: {
  14799. source: "./media/characters/sol/front.svg",
  14800. extra: 247 / 231,
  14801. bottom: 0.05
  14802. }
  14803. },
  14804. },
  14805. [
  14806. {
  14807. name: "Normal",
  14808. height: math.unit(6 + 2 / 12, "feet"),
  14809. default: true
  14810. },
  14811. ]
  14812. ))
  14813. characterMakers.push(() => makeCharacter(
  14814. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14815. {
  14816. buizel: {
  14817. height: math.unit(2 + 5 / 12, "feet"),
  14818. weight: math.unit(87, "lb"),
  14819. name: "Buizel",
  14820. image: {
  14821. source: "./media/characters/umiko/buizel.svg",
  14822. extra: 172 / 157,
  14823. bottom: 0.01
  14824. }
  14825. },
  14826. floatzel: {
  14827. height: math.unit(5 + 9 / 12, "feet"),
  14828. weight: math.unit(250, "lb"),
  14829. name: "Floatzel",
  14830. image: {
  14831. source: "./media/characters/umiko/floatzel.svg",
  14832. extra: 262 / 248
  14833. }
  14834. },
  14835. },
  14836. [
  14837. {
  14838. name: "Normal",
  14839. height: math.unit(2 + 5 / 12, "feet"),
  14840. default: true
  14841. },
  14842. ]
  14843. ))
  14844. characterMakers.push(() => makeCharacter(
  14845. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14846. {
  14847. front: {
  14848. height: math.unit(6 + 2 / 12, "feet"),
  14849. weight: math.unit(146, "lb"),
  14850. name: "Front",
  14851. image: {
  14852. source: "./media/characters/iliac/front.svg",
  14853. extra: 389 / 365,
  14854. bottom: 0.035
  14855. }
  14856. },
  14857. },
  14858. [
  14859. {
  14860. name: "Normal",
  14861. height: math.unit(6 + 2 / 12, "feet"),
  14862. default: true
  14863. },
  14864. ]
  14865. ))
  14866. characterMakers.push(() => makeCharacter(
  14867. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14868. {
  14869. front: {
  14870. height: math.unit(6, "feet"),
  14871. weight: math.unit(170, "lb"),
  14872. name: "Front",
  14873. image: {
  14874. source: "./media/characters/topaz/front.svg",
  14875. extra: 317 / 303,
  14876. bottom: 0.055
  14877. }
  14878. },
  14879. },
  14880. [
  14881. {
  14882. name: "Normal",
  14883. height: math.unit(6, "feet"),
  14884. default: true
  14885. },
  14886. ]
  14887. ))
  14888. characterMakers.push(() => makeCharacter(
  14889. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14890. {
  14891. front: {
  14892. height: math.unit(5 + 11 / 12, "feet"),
  14893. weight: math.unit(144, "lb"),
  14894. name: "Front",
  14895. image: {
  14896. source: "./media/characters/gabriel/front.svg",
  14897. extra: 285 / 262,
  14898. bottom: 0.004
  14899. }
  14900. },
  14901. },
  14902. [
  14903. {
  14904. name: "Normal",
  14905. height: math.unit(5 + 11 / 12, "feet"),
  14906. default: true
  14907. },
  14908. ]
  14909. ))
  14910. characterMakers.push(() => makeCharacter(
  14911. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14912. {
  14913. side: {
  14914. height: math.unit(6 + 5 / 12, "feet"),
  14915. weight: math.unit(300, "lb"),
  14916. name: "Side",
  14917. image: {
  14918. source: "./media/characters/tempest-suicune/side.svg",
  14919. extra: 195 / 154,
  14920. bottom: 0.04
  14921. }
  14922. },
  14923. },
  14924. [
  14925. {
  14926. name: "Normal",
  14927. height: math.unit(6 + 5 / 12, "feet"),
  14928. default: true
  14929. },
  14930. ]
  14931. ))
  14932. characterMakers.push(() => makeCharacter(
  14933. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14934. {
  14935. front: {
  14936. height: math.unit(7 + 2 / 12, "feet"),
  14937. weight: math.unit(322, "lb"),
  14938. name: "Front",
  14939. image: {
  14940. source: "./media/characters/vulcan/front.svg",
  14941. extra: 154 / 147,
  14942. bottom: 0.04
  14943. }
  14944. },
  14945. },
  14946. [
  14947. {
  14948. name: "Normal",
  14949. height: math.unit(7 + 2 / 12, "feet"),
  14950. default: true
  14951. },
  14952. ]
  14953. ))
  14954. characterMakers.push(() => makeCharacter(
  14955. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14956. {
  14957. front: {
  14958. height: math.unit(5 + 10 / 12, "feet"),
  14959. weight: math.unit(264, "lb"),
  14960. name: "Front",
  14961. image: {
  14962. source: "./media/characters/gault/front.svg",
  14963. extra: 161 / 140,
  14964. bottom: 0.028
  14965. }
  14966. },
  14967. },
  14968. [
  14969. {
  14970. name: "Normal",
  14971. height: math.unit(5 + 10 / 12, "feet"),
  14972. default: true
  14973. },
  14974. ]
  14975. ))
  14976. characterMakers.push(() => makeCharacter(
  14977. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14978. {
  14979. front: {
  14980. height: math.unit(6, "feet"),
  14981. weight: math.unit(150, "lb"),
  14982. name: "Front",
  14983. image: {
  14984. source: "./media/characters/shard/front.svg",
  14985. extra: 273 / 238,
  14986. bottom: 0.02
  14987. }
  14988. },
  14989. },
  14990. [
  14991. {
  14992. name: "Normal",
  14993. height: math.unit(3 + 6 / 12, "feet"),
  14994. default: true
  14995. },
  14996. ]
  14997. ))
  14998. characterMakers.push(() => makeCharacter(
  14999. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15000. {
  15001. front: {
  15002. height: math.unit(5 + 11 / 12, "feet"),
  15003. weight: math.unit(146, "lb"),
  15004. name: "Front",
  15005. image: {
  15006. source: "./media/characters/ashe/front.svg",
  15007. extra: 400 / 373,
  15008. bottom: 0.01
  15009. }
  15010. },
  15011. },
  15012. [
  15013. {
  15014. name: "Normal",
  15015. height: math.unit(5 + 11 / 12, "feet"),
  15016. default: true
  15017. },
  15018. ]
  15019. ))
  15020. characterMakers.push(() => makeCharacter(
  15021. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15022. {
  15023. front: {
  15024. height: math.unit(5 + 5 / 12, "feet"),
  15025. weight: math.unit(135, "lb"),
  15026. name: "Front",
  15027. image: {
  15028. source: "./media/characters/beatrix/front.svg",
  15029. extra: 392 / 379,
  15030. bottom: 0.01
  15031. }
  15032. },
  15033. },
  15034. [
  15035. {
  15036. name: "Normal",
  15037. height: math.unit(6, "feet"),
  15038. default: true
  15039. },
  15040. ]
  15041. ))
  15042. characterMakers.push(() => makeCharacter(
  15043. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15044. {
  15045. front: {
  15046. height: math.unit(6, "feet"),
  15047. weight: math.unit(150, "lb"),
  15048. name: "Front",
  15049. image: {
  15050. source: "./media/characters/ignatius/front.svg",
  15051. extra: 245 / 222,
  15052. bottom: 0.01
  15053. }
  15054. },
  15055. },
  15056. [
  15057. {
  15058. name: "Normal",
  15059. height: math.unit(5 + 5 / 12, "feet"),
  15060. default: true
  15061. },
  15062. ]
  15063. ))
  15064. characterMakers.push(() => makeCharacter(
  15065. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15066. {
  15067. front: {
  15068. height: math.unit(6 + 2 / 12, "feet"),
  15069. weight: math.unit(138, "lb"),
  15070. name: "Front",
  15071. image: {
  15072. source: "./media/characters/mei-li/front.svg",
  15073. extra: 237 / 229,
  15074. bottom: 0.03
  15075. }
  15076. },
  15077. },
  15078. [
  15079. {
  15080. name: "Normal",
  15081. height: math.unit(6 + 2 / 12, "feet"),
  15082. default: true
  15083. },
  15084. ]
  15085. ))
  15086. characterMakers.push(() => makeCharacter(
  15087. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15088. {
  15089. front: {
  15090. height: math.unit(2 + 4 / 12, "feet"),
  15091. weight: math.unit(62, "lb"),
  15092. name: "Front",
  15093. image: {
  15094. source: "./media/characters/puru/front.svg",
  15095. extra: 206 / 149,
  15096. bottom: 0.06
  15097. }
  15098. },
  15099. },
  15100. [
  15101. {
  15102. name: "Normal",
  15103. height: math.unit(2 + 4 / 12, "feet"),
  15104. default: true
  15105. },
  15106. ]
  15107. ))
  15108. characterMakers.push(() => makeCharacter(
  15109. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15110. {
  15111. anthro: {
  15112. height: math.unit(5 + 8/12, "feet"),
  15113. weight: math.unit(200, "lb"),
  15114. energyNeed: math.unit(2000, "kcal"),
  15115. name: "Anthro",
  15116. image: {
  15117. source: "./media/characters/kee/anthro.svg",
  15118. extra: 3251/3184,
  15119. bottom: 250/3501
  15120. }
  15121. },
  15122. taur: {
  15123. height: math.unit(11, "feet"),
  15124. weight: math.unit(500, "lb"),
  15125. energyNeed: math.unit(5000, "kcal"),
  15126. name: "Taur",
  15127. image: {
  15128. source: "./media/characters/kee/taur.svg",
  15129. extra: 1362/1320,
  15130. bottom: 83/1445
  15131. }
  15132. },
  15133. },
  15134. [
  15135. {
  15136. name: "Normal",
  15137. height: math.unit(5 + 8/12, "feet"),
  15138. default: true
  15139. },
  15140. {
  15141. name: "Macro",
  15142. height: math.unit(35, "feet")
  15143. },
  15144. ]
  15145. ))
  15146. characterMakers.push(() => makeCharacter(
  15147. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15148. {
  15149. anthro: {
  15150. height: math.unit(7, "feet"),
  15151. weight: math.unit(190, "lb"),
  15152. name: "Anthro",
  15153. image: {
  15154. source: "./media/characters/cobalt-dracha/anthro.svg",
  15155. extra: 231 / 225,
  15156. bottom: 0.04
  15157. }
  15158. },
  15159. feral: {
  15160. height: math.unit(9 + 7 / 12, "feet"),
  15161. weight: math.unit(294, "lb"),
  15162. name: "Feral",
  15163. image: {
  15164. source: "./media/characters/cobalt-dracha/feral.svg",
  15165. extra: 692 / 633,
  15166. bottom: 0.05
  15167. }
  15168. },
  15169. },
  15170. [
  15171. {
  15172. name: "Normal",
  15173. height: math.unit(7, "feet"),
  15174. default: true
  15175. },
  15176. ]
  15177. ))
  15178. characterMakers.push(() => makeCharacter(
  15179. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15180. {
  15181. fallen: {
  15182. height: math.unit(11 + 8 / 12, "feet"),
  15183. weight: math.unit(485, "lb"),
  15184. name: "Java (Fallen)",
  15185. rename: true,
  15186. image: {
  15187. source: "./media/characters/java/fallen.svg",
  15188. extra: 226 / 208,
  15189. bottom: 0.005
  15190. }
  15191. },
  15192. godkin: {
  15193. height: math.unit(10 + 6 / 12, "feet"),
  15194. weight: math.unit(328, "lb"),
  15195. name: "Java (Godkin)",
  15196. rename: true,
  15197. image: {
  15198. source: "./media/characters/java/godkin.svg",
  15199. extra: 270 / 262,
  15200. bottom: 0.02
  15201. }
  15202. },
  15203. },
  15204. [
  15205. {
  15206. name: "Normal",
  15207. height: math.unit(11 + 8 / 12, "feet"),
  15208. default: true
  15209. },
  15210. ]
  15211. ))
  15212. characterMakers.push(() => makeCharacter(
  15213. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15214. {
  15215. front: {
  15216. height: math.unit(7 + 8 / 12, "feet"),
  15217. weight: math.unit(320, "lb"),
  15218. name: "Front",
  15219. image: {
  15220. source: "./media/characters/skoll/front.svg",
  15221. extra: 232 / 220,
  15222. bottom: 0.02
  15223. }
  15224. },
  15225. },
  15226. [
  15227. {
  15228. name: "Normal",
  15229. height: math.unit(7 + 8 / 12, "feet"),
  15230. default: true
  15231. },
  15232. ]
  15233. ))
  15234. characterMakers.push(() => makeCharacter(
  15235. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15236. {
  15237. front: {
  15238. height: math.unit(5 + 9 / 12, "feet"),
  15239. weight: math.unit(170, "lb"),
  15240. name: "Front",
  15241. image: {
  15242. source: "./media/characters/purna/front.svg",
  15243. extra: 239 / 229,
  15244. bottom: 0.01
  15245. }
  15246. },
  15247. },
  15248. [
  15249. {
  15250. name: "Normal",
  15251. height: math.unit(5 + 9 / 12, "feet"),
  15252. default: true
  15253. },
  15254. ]
  15255. ))
  15256. characterMakers.push(() => makeCharacter(
  15257. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15258. {
  15259. front: {
  15260. height: math.unit(5 + 9 / 12, "feet"),
  15261. weight: math.unit(142, "lb"),
  15262. name: "Front",
  15263. image: {
  15264. source: "./media/characters/kuva/front.svg",
  15265. extra: 281 / 271,
  15266. bottom: 0.006
  15267. }
  15268. },
  15269. },
  15270. [
  15271. {
  15272. name: "Normal",
  15273. height: math.unit(5 + 9 / 12, "feet"),
  15274. default: true
  15275. },
  15276. ]
  15277. ))
  15278. characterMakers.push(() => makeCharacter(
  15279. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15280. {
  15281. anthro: {
  15282. height: math.unit(9 + 2 / 12, "feet"),
  15283. weight: math.unit(270, "lb"),
  15284. name: "Anthro",
  15285. image: {
  15286. source: "./media/characters/embra/anthro.svg",
  15287. extra: 200 / 187,
  15288. bottom: 0.02
  15289. }
  15290. },
  15291. feral: {
  15292. height: math.unit(18 + 8 / 12, "feet"),
  15293. weight: math.unit(576, "lb"),
  15294. name: "Feral",
  15295. image: {
  15296. source: "./media/characters/embra/feral.svg",
  15297. extra: 152 / 137,
  15298. bottom: 0.037
  15299. }
  15300. },
  15301. },
  15302. [
  15303. {
  15304. name: "Normal",
  15305. height: math.unit(9 + 2 / 12, "feet"),
  15306. default: true
  15307. },
  15308. ]
  15309. ))
  15310. characterMakers.push(() => makeCharacter(
  15311. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15312. {
  15313. anthro: {
  15314. height: math.unit(10 + 9 / 12, "feet"),
  15315. weight: math.unit(224, "lb"),
  15316. name: "Anthro",
  15317. image: {
  15318. source: "./media/characters/grottos/anthro.svg",
  15319. extra: 350 / 332,
  15320. bottom: 0.045
  15321. }
  15322. },
  15323. feral: {
  15324. height: math.unit(20 + 7 / 12, "feet"),
  15325. weight: math.unit(629, "lb"),
  15326. name: "Feral",
  15327. image: {
  15328. source: "./media/characters/grottos/feral.svg",
  15329. extra: 207 / 190,
  15330. bottom: 0.05
  15331. }
  15332. },
  15333. },
  15334. [
  15335. {
  15336. name: "Normal",
  15337. height: math.unit(10 + 9 / 12, "feet"),
  15338. default: true
  15339. },
  15340. ]
  15341. ))
  15342. characterMakers.push(() => makeCharacter(
  15343. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15344. {
  15345. anthro: {
  15346. height: math.unit(9 + 6 / 12, "feet"),
  15347. weight: math.unit(298, "lb"),
  15348. name: "Anthro",
  15349. image: {
  15350. source: "./media/characters/frifna/anthro.svg",
  15351. extra: 282 / 269,
  15352. bottom: 0.015
  15353. }
  15354. },
  15355. feral: {
  15356. height: math.unit(16 + 2 / 12, "feet"),
  15357. weight: math.unit(624, "lb"),
  15358. name: "Feral",
  15359. image: {
  15360. source: "./media/characters/frifna/feral.svg"
  15361. }
  15362. },
  15363. },
  15364. [
  15365. {
  15366. name: "Normal",
  15367. height: math.unit(9 + 6 / 12, "feet"),
  15368. default: true
  15369. },
  15370. ]
  15371. ))
  15372. characterMakers.push(() => makeCharacter(
  15373. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15374. {
  15375. front: {
  15376. height: math.unit(6 + 2 / 12, "feet"),
  15377. weight: math.unit(168, "lb"),
  15378. name: "Front",
  15379. image: {
  15380. source: "./media/characters/elise/front.svg",
  15381. extra: 276 / 271
  15382. }
  15383. },
  15384. },
  15385. [
  15386. {
  15387. name: "Normal",
  15388. height: math.unit(6 + 2 / 12, "feet"),
  15389. default: true
  15390. },
  15391. ]
  15392. ))
  15393. characterMakers.push(() => makeCharacter(
  15394. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15395. {
  15396. front: {
  15397. height: math.unit(5 + 10 / 12, "feet"),
  15398. weight: math.unit(210, "lb"),
  15399. name: "Front",
  15400. image: {
  15401. source: "./media/characters/glade/front.svg",
  15402. extra: 258 / 247,
  15403. bottom: 0.008
  15404. }
  15405. },
  15406. },
  15407. [
  15408. {
  15409. name: "Normal",
  15410. height: math.unit(5 + 10 / 12, "feet"),
  15411. default: true
  15412. },
  15413. ]
  15414. ))
  15415. characterMakers.push(() => makeCharacter(
  15416. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15417. {
  15418. front: {
  15419. height: math.unit(5 + 10 / 12, "feet"),
  15420. weight: math.unit(129, "lb"),
  15421. name: "Front",
  15422. image: {
  15423. source: "./media/characters/rina/front.svg",
  15424. extra: 266 / 255,
  15425. bottom: 0.005
  15426. }
  15427. },
  15428. },
  15429. [
  15430. {
  15431. name: "Normal",
  15432. height: math.unit(5 + 10 / 12, "feet"),
  15433. default: true
  15434. },
  15435. ]
  15436. ))
  15437. characterMakers.push(() => makeCharacter(
  15438. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15439. {
  15440. front: {
  15441. height: math.unit(6 + 1 / 12, "feet"),
  15442. weight: math.unit(192, "lb"),
  15443. name: "Front",
  15444. image: {
  15445. source: "./media/characters/veronica/front.svg",
  15446. extra: 319 / 309,
  15447. bottom: 0.005
  15448. }
  15449. },
  15450. },
  15451. [
  15452. {
  15453. name: "Normal",
  15454. height: math.unit(6 + 1 / 12, "feet"),
  15455. default: true
  15456. },
  15457. ]
  15458. ))
  15459. characterMakers.push(() => makeCharacter(
  15460. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15461. {
  15462. front: {
  15463. height: math.unit(9 + 3 / 12, "feet"),
  15464. weight: math.unit(1100, "lb"),
  15465. name: "Front",
  15466. image: {
  15467. source: "./media/characters/braxton/front.svg",
  15468. extra: 1057 / 984,
  15469. bottom: 0.05
  15470. }
  15471. },
  15472. },
  15473. [
  15474. {
  15475. name: "Normal",
  15476. height: math.unit(9 + 3 / 12, "feet")
  15477. },
  15478. {
  15479. name: "Giant",
  15480. height: math.unit(300, "feet"),
  15481. default: true
  15482. },
  15483. {
  15484. name: "Macro",
  15485. height: math.unit(700, "feet")
  15486. },
  15487. {
  15488. name: "Megamacro",
  15489. height: math.unit(6000, "feet")
  15490. },
  15491. ]
  15492. ))
  15493. characterMakers.push(() => makeCharacter(
  15494. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15495. {
  15496. front: {
  15497. height: math.unit(6 + 7 / 12, "feet"),
  15498. weight: math.unit(150, "lb"),
  15499. name: "Front",
  15500. image: {
  15501. source: "./media/characters/blue-feyonics/front.svg",
  15502. extra: 1403 / 1306,
  15503. bottom: 0.047
  15504. }
  15505. },
  15506. },
  15507. [
  15508. {
  15509. name: "Normal",
  15510. height: math.unit(6 + 7 / 12, "feet"),
  15511. default: true
  15512. },
  15513. ]
  15514. ))
  15515. characterMakers.push(() => makeCharacter(
  15516. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15517. {
  15518. front: {
  15519. height: math.unit(1.8, "meters"),
  15520. weight: math.unit(60, "kg"),
  15521. name: "Front",
  15522. image: {
  15523. source: "./media/characters/maxwell/front.svg",
  15524. extra: 2060 / 1873
  15525. }
  15526. },
  15527. },
  15528. [
  15529. {
  15530. name: "Micro",
  15531. height: math.unit(1, "mm")
  15532. },
  15533. {
  15534. name: "Normal",
  15535. height: math.unit(1.8, "meter"),
  15536. default: true
  15537. },
  15538. {
  15539. name: "Macro",
  15540. height: math.unit(30, "meters")
  15541. },
  15542. {
  15543. name: "Megamacro",
  15544. height: math.unit(10, "km")
  15545. },
  15546. ]
  15547. ))
  15548. characterMakers.push(() => makeCharacter(
  15549. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15550. {
  15551. front: {
  15552. height: math.unit(6, "feet"),
  15553. weight: math.unit(150, "lb"),
  15554. name: "Front",
  15555. image: {
  15556. source: "./media/characters/jack/front.svg",
  15557. extra: 1754 / 1640,
  15558. bottom: 0.01
  15559. }
  15560. },
  15561. },
  15562. [
  15563. {
  15564. name: "Normal",
  15565. height: math.unit(80000, "feet"),
  15566. default: true
  15567. },
  15568. {
  15569. name: "Max size",
  15570. height: math.unit(10, "lightyears")
  15571. },
  15572. ]
  15573. ))
  15574. characterMakers.push(() => makeCharacter(
  15575. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15576. {
  15577. upright: {
  15578. height: math.unit(7, "feet"),
  15579. weight: math.unit(170, "lb"),
  15580. name: "Upright",
  15581. image: {
  15582. source: "./media/characters/cafat/upright.svg",
  15583. bottom: 0.01
  15584. }
  15585. },
  15586. uprightFull: {
  15587. height: math.unit(7, "feet"),
  15588. weight: math.unit(170, "lb"),
  15589. name: "Upright (Full)",
  15590. image: {
  15591. source: "./media/characters/cafat/upright-full.svg",
  15592. bottom: 0.01
  15593. }
  15594. },
  15595. side: {
  15596. height: math.unit(5, "feet"),
  15597. weight: math.unit(150, "lb"),
  15598. name: "Side",
  15599. image: {
  15600. source: "./media/characters/cafat/side.svg"
  15601. }
  15602. },
  15603. },
  15604. [
  15605. {
  15606. name: "Small",
  15607. height: math.unit(7, "feet"),
  15608. default: true
  15609. },
  15610. {
  15611. name: "Large",
  15612. height: math.unit(15.5, "feet")
  15613. },
  15614. ]
  15615. ))
  15616. characterMakers.push(() => makeCharacter(
  15617. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15618. {
  15619. front: {
  15620. height: math.unit(6, "feet"),
  15621. weight: math.unit(150, "lb"),
  15622. name: "Front",
  15623. image: {
  15624. source: "./media/characters/verin-raharra/front.svg",
  15625. extra: 5019 / 4835,
  15626. bottom: 0.023
  15627. }
  15628. },
  15629. },
  15630. [
  15631. {
  15632. name: "Normal",
  15633. height: math.unit(7 + 5 / 12, "feet"),
  15634. default: true
  15635. },
  15636. {
  15637. name: "Upsized",
  15638. height: math.unit(20, "feet")
  15639. },
  15640. ]
  15641. ))
  15642. characterMakers.push(() => makeCharacter(
  15643. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15644. {
  15645. front: {
  15646. height: math.unit(7, "feet"),
  15647. weight: math.unit(230, "lb"),
  15648. name: "Front",
  15649. image: {
  15650. source: "./media/characters/nakata/front.svg",
  15651. extra: 1.005,
  15652. bottom: 0.01
  15653. }
  15654. },
  15655. },
  15656. [
  15657. {
  15658. name: "Normal",
  15659. height: math.unit(7, "feet"),
  15660. default: true
  15661. },
  15662. {
  15663. name: "Big",
  15664. height: math.unit(14, "feet")
  15665. },
  15666. {
  15667. name: "Macro",
  15668. height: math.unit(400, "feet")
  15669. },
  15670. ]
  15671. ))
  15672. characterMakers.push(() => makeCharacter(
  15673. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15674. {
  15675. front: {
  15676. height: math.unit(4.91, "feet"),
  15677. weight: math.unit(100, "lb"),
  15678. name: "Front",
  15679. image: {
  15680. source: "./media/characters/lily/front.svg",
  15681. extra: 1585 / 1415,
  15682. bottom: 0.02
  15683. }
  15684. },
  15685. },
  15686. [
  15687. {
  15688. name: "Normal",
  15689. height: math.unit(4.91, "feet"),
  15690. default: true
  15691. },
  15692. ]
  15693. ))
  15694. characterMakers.push(() => makeCharacter(
  15695. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15696. {
  15697. laying: {
  15698. height: math.unit(4 + 4 / 12, "feet"),
  15699. weight: math.unit(600, "lb"),
  15700. name: "Laying",
  15701. image: {
  15702. source: "./media/characters/sheila/laying.svg",
  15703. extra: 1333 / 1265,
  15704. bottom: 0.16
  15705. }
  15706. },
  15707. },
  15708. [
  15709. {
  15710. name: "Normal",
  15711. height: math.unit(4 + 4 / 12, "feet"),
  15712. default: true
  15713. },
  15714. ]
  15715. ))
  15716. characterMakers.push(() => makeCharacter(
  15717. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15718. {
  15719. front: {
  15720. height: math.unit(6, "feet"),
  15721. weight: math.unit(190, "lb"),
  15722. name: "Front",
  15723. image: {
  15724. source: "./media/characters/sax/front.svg",
  15725. extra: 1187 / 973,
  15726. bottom: 0.042
  15727. }
  15728. },
  15729. },
  15730. [
  15731. {
  15732. name: "Micro",
  15733. height: math.unit(4, "inches"),
  15734. default: true
  15735. },
  15736. ]
  15737. ))
  15738. characterMakers.push(() => makeCharacter(
  15739. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15740. {
  15741. front: {
  15742. height: math.unit(6, "feet"),
  15743. weight: math.unit(150, "lb"),
  15744. name: "Front",
  15745. image: {
  15746. source: "./media/characters/pandora/front.svg",
  15747. extra: 2720 / 2556,
  15748. bottom: 0.015
  15749. }
  15750. },
  15751. back: {
  15752. height: math.unit(6, "feet"),
  15753. weight: math.unit(150, "lb"),
  15754. name: "Back",
  15755. image: {
  15756. source: "./media/characters/pandora/back.svg",
  15757. extra: 2720 / 2556,
  15758. bottom: 0.01
  15759. }
  15760. },
  15761. beans: {
  15762. height: math.unit(6 / 8, "feet"),
  15763. name: "Beans",
  15764. image: {
  15765. source: "./media/characters/pandora/beans.svg"
  15766. }
  15767. },
  15768. collar: {
  15769. height: math.unit(0.31, "feet"),
  15770. name: "Collar",
  15771. image: {
  15772. source: "./media/characters/pandora/collar.svg"
  15773. }
  15774. },
  15775. skirt: {
  15776. height: math.unit(6, "feet"),
  15777. weight: math.unit(150, "lb"),
  15778. name: "Skirt",
  15779. image: {
  15780. source: "./media/characters/pandora/skirt.svg",
  15781. extra: 1622 / 1525,
  15782. bottom: 0.015
  15783. }
  15784. },
  15785. hoodie: {
  15786. height: math.unit(6, "feet"),
  15787. weight: math.unit(150, "lb"),
  15788. name: "Hoodie",
  15789. image: {
  15790. source: "./media/characters/pandora/hoodie.svg",
  15791. extra: 1622 / 1525,
  15792. bottom: 0.015
  15793. }
  15794. },
  15795. casual: {
  15796. height: math.unit(6, "feet"),
  15797. weight: math.unit(150, "lb"),
  15798. name: "Casual",
  15799. image: {
  15800. source: "./media/characters/pandora/casual.svg",
  15801. extra: 1622 / 1525,
  15802. bottom: 0.015
  15803. }
  15804. },
  15805. },
  15806. [
  15807. {
  15808. name: "Normal",
  15809. height: math.unit(6, "feet")
  15810. },
  15811. {
  15812. name: "Big Steppy",
  15813. height: math.unit(1, "km"),
  15814. default: true
  15815. },
  15816. {
  15817. name: "Galactic Steppy",
  15818. height: math.unit(2, "gigameters")
  15819. },
  15820. ]
  15821. ))
  15822. characterMakers.push(() => makeCharacter(
  15823. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15824. {
  15825. side: {
  15826. height: math.unit(10, "feet"),
  15827. weight: math.unit(800, "kg"),
  15828. name: "Side",
  15829. image: {
  15830. source: "./media/characters/venio-darcony/side.svg",
  15831. extra: 1373 / 1003,
  15832. bottom: 0.037
  15833. }
  15834. },
  15835. front: {
  15836. height: math.unit(19, "feet"),
  15837. weight: math.unit(800, "kg"),
  15838. name: "Front",
  15839. image: {
  15840. source: "./media/characters/venio-darcony/front.svg"
  15841. }
  15842. },
  15843. back: {
  15844. height: math.unit(19, "feet"),
  15845. weight: math.unit(800, "kg"),
  15846. name: "Back",
  15847. image: {
  15848. source: "./media/characters/venio-darcony/back.svg"
  15849. }
  15850. },
  15851. sideNsfw: {
  15852. height: math.unit(10, "feet"),
  15853. weight: math.unit(800, "kg"),
  15854. name: "Side (NSFW)",
  15855. image: {
  15856. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15857. extra: 1373 / 1003,
  15858. bottom: 0.037
  15859. }
  15860. },
  15861. frontNsfw: {
  15862. height: math.unit(19, "feet"),
  15863. weight: math.unit(800, "kg"),
  15864. name: "Front (NSFW)",
  15865. image: {
  15866. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15867. }
  15868. },
  15869. backNsfw: {
  15870. height: math.unit(19, "feet"),
  15871. weight: math.unit(800, "kg"),
  15872. name: "Back (NSFW)",
  15873. image: {
  15874. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15875. }
  15876. },
  15877. sideArmored: {
  15878. height: math.unit(10, "feet"),
  15879. weight: math.unit(800, "kg"),
  15880. name: "Side (Armored)",
  15881. image: {
  15882. source: "./media/characters/venio-darcony/side-armored.svg",
  15883. extra: 1373 / 1003,
  15884. bottom: 0.037
  15885. }
  15886. },
  15887. frontArmored: {
  15888. height: math.unit(19, "feet"),
  15889. weight: math.unit(900, "kg"),
  15890. name: "Front (Armored)",
  15891. image: {
  15892. source: "./media/characters/venio-darcony/front-armored.svg"
  15893. }
  15894. },
  15895. backArmored: {
  15896. height: math.unit(19, "feet"),
  15897. weight: math.unit(900, "kg"),
  15898. name: "Back (Armored)",
  15899. image: {
  15900. source: "./media/characters/venio-darcony/back-armored.svg"
  15901. }
  15902. },
  15903. sword: {
  15904. height: math.unit(10, "feet"),
  15905. weight: math.unit(50, "lb"),
  15906. name: "Sword",
  15907. image: {
  15908. source: "./media/characters/venio-darcony/sword.svg"
  15909. }
  15910. },
  15911. },
  15912. [
  15913. {
  15914. name: "Normal",
  15915. height: math.unit(10, "feet")
  15916. },
  15917. {
  15918. name: "Macro",
  15919. height: math.unit(130, "feet"),
  15920. default: true
  15921. },
  15922. {
  15923. name: "Macro+",
  15924. height: math.unit(240, "feet")
  15925. },
  15926. ]
  15927. ))
  15928. characterMakers.push(() => makeCharacter(
  15929. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15930. {
  15931. front: {
  15932. height: math.unit(6, "feet"),
  15933. weight: math.unit(150, "lb"),
  15934. name: "Front",
  15935. image: {
  15936. source: "./media/characters/veski/front.svg",
  15937. extra: 1299 / 1225,
  15938. bottom: 0.04
  15939. }
  15940. },
  15941. back: {
  15942. height: math.unit(6, "feet"),
  15943. weight: math.unit(150, "lb"),
  15944. name: "Back",
  15945. image: {
  15946. source: "./media/characters/veski/back.svg",
  15947. extra: 1299 / 1225,
  15948. bottom: 0.008
  15949. }
  15950. },
  15951. maw: {
  15952. height: math.unit(1.5 * 1.21, "feet"),
  15953. name: "Maw",
  15954. image: {
  15955. source: "./media/characters/veski/maw.svg"
  15956. }
  15957. },
  15958. },
  15959. [
  15960. {
  15961. name: "Macro",
  15962. height: math.unit(2, "km"),
  15963. default: true
  15964. },
  15965. ]
  15966. ))
  15967. characterMakers.push(() => makeCharacter(
  15968. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15969. {
  15970. front: {
  15971. height: math.unit(5 + 7 / 12, "feet"),
  15972. name: "Front",
  15973. image: {
  15974. source: "./media/characters/isabelle/front.svg",
  15975. extra: 2130 / 1976,
  15976. bottom: 0.05
  15977. }
  15978. },
  15979. },
  15980. [
  15981. {
  15982. name: "Supermicro",
  15983. height: math.unit(10, "micrometers")
  15984. },
  15985. {
  15986. name: "Micro",
  15987. height: math.unit(1, "inch")
  15988. },
  15989. {
  15990. name: "Tiny",
  15991. height: math.unit(5, "inches")
  15992. },
  15993. {
  15994. name: "Standard",
  15995. height: math.unit(5 + 7 / 12, "inches")
  15996. },
  15997. {
  15998. name: "Macro",
  15999. height: math.unit(80, "meters"),
  16000. default: true
  16001. },
  16002. {
  16003. name: "Megamacro",
  16004. height: math.unit(250, "meters")
  16005. },
  16006. {
  16007. name: "Gigamacro",
  16008. height: math.unit(5, "km")
  16009. },
  16010. {
  16011. name: "Cosmic",
  16012. height: math.unit(2.5e6, "miles")
  16013. },
  16014. ]
  16015. ))
  16016. characterMakers.push(() => makeCharacter(
  16017. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16018. {
  16019. front: {
  16020. height: math.unit(6, "feet"),
  16021. weight: math.unit(150, "lb"),
  16022. name: "Front",
  16023. image: {
  16024. source: "./media/characters/hanzo/front.svg",
  16025. extra: 374 / 344,
  16026. bottom: 0.02
  16027. }
  16028. },
  16029. },
  16030. [
  16031. {
  16032. name: "Normal",
  16033. height: math.unit(8, "feet"),
  16034. default: true
  16035. },
  16036. ]
  16037. ))
  16038. characterMakers.push(() => makeCharacter(
  16039. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16040. {
  16041. front: {
  16042. height: math.unit(7, "feet"),
  16043. weight: math.unit(130, "lb"),
  16044. name: "Front",
  16045. image: {
  16046. source: "./media/characters/anna/front.svg",
  16047. extra: 169 / 145,
  16048. bottom: 0.06
  16049. }
  16050. },
  16051. full: {
  16052. height: math.unit(4.96, "feet"),
  16053. weight: math.unit(220, "lb"),
  16054. name: "Full",
  16055. image: {
  16056. source: "./media/characters/anna/full.svg",
  16057. extra: 138 / 114,
  16058. bottom: 0.15
  16059. }
  16060. },
  16061. tongue: {
  16062. height: math.unit(2.53, "feet"),
  16063. name: "Tongue",
  16064. image: {
  16065. source: "./media/characters/anna/tongue.svg"
  16066. }
  16067. },
  16068. },
  16069. [
  16070. {
  16071. name: "Normal",
  16072. height: math.unit(7, "feet"),
  16073. default: true
  16074. },
  16075. ]
  16076. ))
  16077. characterMakers.push(() => makeCharacter(
  16078. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16079. {
  16080. front: {
  16081. height: math.unit(7, "feet"),
  16082. weight: math.unit(150, "lb"),
  16083. name: "Front",
  16084. image: {
  16085. source: "./media/characters/ian-corvid/front.svg",
  16086. extra: 150 / 142,
  16087. bottom: 0.02
  16088. }
  16089. },
  16090. back: {
  16091. height: math.unit(7, "feet"),
  16092. weight: math.unit(150, "lb"),
  16093. name: "Back",
  16094. image: {
  16095. source: "./media/characters/ian-corvid/back.svg",
  16096. extra: 150 / 143,
  16097. bottom: 0.01
  16098. }
  16099. },
  16100. stomping: {
  16101. height: math.unit(7, "feet"),
  16102. weight: math.unit(150, "lb"),
  16103. name: "Stomping",
  16104. image: {
  16105. source: "./media/characters/ian-corvid/stomping.svg",
  16106. extra: 76 / 72
  16107. }
  16108. },
  16109. sitting: {
  16110. height: math.unit(7 / 1.8, "feet"),
  16111. weight: math.unit(150, "lb"),
  16112. name: "Sitting",
  16113. image: {
  16114. source: "./media/characters/ian-corvid/sitting.svg",
  16115. extra: 1400 / 1269,
  16116. bottom: 0.15
  16117. }
  16118. },
  16119. },
  16120. [
  16121. {
  16122. name: "Tiny Microw",
  16123. height: math.unit(1, "inch")
  16124. },
  16125. {
  16126. name: "Microw",
  16127. height: math.unit(6, "inches")
  16128. },
  16129. {
  16130. name: "Crow",
  16131. height: math.unit(7 + 1 / 12, "feet"),
  16132. default: true
  16133. },
  16134. {
  16135. name: "Macrow",
  16136. height: math.unit(176, "feet")
  16137. },
  16138. ]
  16139. ))
  16140. characterMakers.push(() => makeCharacter(
  16141. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16142. {
  16143. front: {
  16144. height: math.unit(5 + 7 / 12, "feet"),
  16145. weight: math.unit(147, "lb"),
  16146. name: "Front",
  16147. image: {
  16148. source: "./media/characters/natalie-kellon/front.svg",
  16149. extra: 1214 / 1141,
  16150. bottom: 0.02
  16151. }
  16152. },
  16153. },
  16154. [
  16155. {
  16156. name: "Micro",
  16157. height: math.unit(1 / 16, "inch")
  16158. },
  16159. {
  16160. name: "Tiny",
  16161. height: math.unit(4, "inches")
  16162. },
  16163. {
  16164. name: "Normal",
  16165. height: math.unit(5 + 7 / 12, "feet"),
  16166. default: true
  16167. },
  16168. {
  16169. name: "Amazon",
  16170. height: math.unit(12, "feet")
  16171. },
  16172. {
  16173. name: "Giantess",
  16174. height: math.unit(160, "meters")
  16175. },
  16176. {
  16177. name: "Titaness",
  16178. height: math.unit(800, "meters")
  16179. },
  16180. ]
  16181. ))
  16182. characterMakers.push(() => makeCharacter(
  16183. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16184. {
  16185. front: {
  16186. height: math.unit(6, "feet"),
  16187. weight: math.unit(150, "lb"),
  16188. name: "Front",
  16189. image: {
  16190. source: "./media/characters/alluria/front.svg",
  16191. extra: 806 / 738,
  16192. bottom: 0.01
  16193. }
  16194. },
  16195. side: {
  16196. height: math.unit(6, "feet"),
  16197. weight: math.unit(150, "lb"),
  16198. name: "Side",
  16199. image: {
  16200. source: "./media/characters/alluria/side.svg",
  16201. extra: 800 / 750,
  16202. }
  16203. },
  16204. back: {
  16205. height: math.unit(6, "feet"),
  16206. weight: math.unit(150, "lb"),
  16207. name: "Back",
  16208. image: {
  16209. source: "./media/characters/alluria/back.svg",
  16210. extra: 806 / 738,
  16211. }
  16212. },
  16213. frontMaid: {
  16214. height: math.unit(6, "feet"),
  16215. weight: math.unit(150, "lb"),
  16216. name: "Front (Maid)",
  16217. image: {
  16218. source: "./media/characters/alluria/front-maid.svg",
  16219. extra: 806 / 738,
  16220. bottom: 0.01
  16221. }
  16222. },
  16223. sideMaid: {
  16224. height: math.unit(6, "feet"),
  16225. weight: math.unit(150, "lb"),
  16226. name: "Side (Maid)",
  16227. image: {
  16228. source: "./media/characters/alluria/side-maid.svg",
  16229. extra: 800 / 750,
  16230. bottom: 0.005
  16231. }
  16232. },
  16233. backMaid: {
  16234. height: math.unit(6, "feet"),
  16235. weight: math.unit(150, "lb"),
  16236. name: "Back (Maid)",
  16237. image: {
  16238. source: "./media/characters/alluria/back-maid.svg",
  16239. extra: 806 / 738,
  16240. }
  16241. },
  16242. },
  16243. [
  16244. {
  16245. name: "Micro",
  16246. height: math.unit(6, "inches"),
  16247. default: true
  16248. },
  16249. ]
  16250. ))
  16251. characterMakers.push(() => makeCharacter(
  16252. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16253. {
  16254. front: {
  16255. height: math.unit(6, "feet"),
  16256. weight: math.unit(150, "lb"),
  16257. name: "Front",
  16258. image: {
  16259. source: "./media/characters/kyle/front.svg",
  16260. extra: 1069 / 962,
  16261. bottom: 77.228 / 1727.45
  16262. }
  16263. },
  16264. },
  16265. [
  16266. {
  16267. name: "Macro",
  16268. height: math.unit(150, "feet"),
  16269. default: true
  16270. },
  16271. ]
  16272. ))
  16273. characterMakers.push(() => makeCharacter(
  16274. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16275. {
  16276. front: {
  16277. height: math.unit(6, "feet"),
  16278. weight: math.unit(300, "lb"),
  16279. name: "Front",
  16280. image: {
  16281. source: "./media/characters/duncan/front.svg",
  16282. extra: 1650 / 1482,
  16283. bottom: 0.05
  16284. }
  16285. },
  16286. },
  16287. [
  16288. {
  16289. name: "Macro",
  16290. height: math.unit(100, "feet"),
  16291. default: true
  16292. },
  16293. ]
  16294. ))
  16295. characterMakers.push(() => makeCharacter(
  16296. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16297. {
  16298. front: {
  16299. height: math.unit(5 + 4 / 12, "feet"),
  16300. weight: math.unit(220, "lb"),
  16301. name: "Front",
  16302. image: {
  16303. source: "./media/characters/memory/front.svg",
  16304. extra: 3641 / 3545,
  16305. bottom: 0.03
  16306. }
  16307. },
  16308. back: {
  16309. height: math.unit(5 + 4 / 12, "feet"),
  16310. weight: math.unit(220, "lb"),
  16311. name: "Back",
  16312. image: {
  16313. source: "./media/characters/memory/back.svg",
  16314. extra: 3641 / 3545,
  16315. bottom: 0.025
  16316. }
  16317. },
  16318. frontSkirt: {
  16319. height: math.unit(5 + 4 / 12, "feet"),
  16320. weight: math.unit(220, "lb"),
  16321. name: "Front (Skirt)",
  16322. image: {
  16323. source: "./media/characters/memory/front-skirt.svg",
  16324. extra: 3641 / 3545,
  16325. bottom: 0.03
  16326. }
  16327. },
  16328. frontDress: {
  16329. height: math.unit(5 + 4 / 12, "feet"),
  16330. weight: math.unit(220, "lb"),
  16331. name: "Front (Dress)",
  16332. image: {
  16333. source: "./media/characters/memory/front-dress.svg",
  16334. extra: 3641 / 3545,
  16335. bottom: 0.03
  16336. }
  16337. },
  16338. },
  16339. [
  16340. {
  16341. name: "Micro",
  16342. height: math.unit(6, "inches"),
  16343. default: true
  16344. },
  16345. {
  16346. name: "Normal",
  16347. height: math.unit(5 + 4 / 12, "feet")
  16348. },
  16349. ]
  16350. ))
  16351. characterMakers.push(() => makeCharacter(
  16352. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16353. {
  16354. front: {
  16355. height: math.unit(4 + 11 / 12, "feet"),
  16356. weight: math.unit(100, "lb"),
  16357. name: "Front",
  16358. image: {
  16359. source: "./media/characters/luno/front.svg",
  16360. extra: 1535 / 1487,
  16361. bottom: 0.03
  16362. }
  16363. },
  16364. },
  16365. [
  16366. {
  16367. name: "Micro",
  16368. height: math.unit(3, "inches")
  16369. },
  16370. {
  16371. name: "Normal",
  16372. height: math.unit(4 + 11 / 12, "feet"),
  16373. default: true
  16374. },
  16375. {
  16376. name: "Macro",
  16377. height: math.unit(300, "feet")
  16378. },
  16379. {
  16380. name: "Megamacro",
  16381. height: math.unit(700, "miles")
  16382. },
  16383. ]
  16384. ))
  16385. characterMakers.push(() => makeCharacter(
  16386. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16387. {
  16388. front: {
  16389. height: math.unit(6 + 2 / 12, "feet"),
  16390. weight: math.unit(170, "lb"),
  16391. name: "Front",
  16392. image: {
  16393. source: "./media/characters/jamesy/front.svg",
  16394. extra: 440 / 382,
  16395. bottom: 0.005
  16396. }
  16397. },
  16398. },
  16399. [
  16400. {
  16401. name: "Micro",
  16402. height: math.unit(3, "inches")
  16403. },
  16404. {
  16405. name: "Normal",
  16406. height: math.unit(6 + 2 / 12, "feet"),
  16407. default: true
  16408. },
  16409. {
  16410. name: "Macro",
  16411. height: math.unit(300, "feet")
  16412. },
  16413. {
  16414. name: "Megamacro",
  16415. height: math.unit(700, "miles")
  16416. },
  16417. ]
  16418. ))
  16419. characterMakers.push(() => makeCharacter(
  16420. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16421. {
  16422. front: {
  16423. height: math.unit(6, "feet"),
  16424. weight: math.unit(160, "lb"),
  16425. name: "Front",
  16426. image: {
  16427. source: "./media/characters/mark/front.svg",
  16428. extra: 3300 / 3100,
  16429. bottom: 136.42 / 3440.47
  16430. }
  16431. },
  16432. },
  16433. [
  16434. {
  16435. name: "Macro",
  16436. height: math.unit(120, "meters")
  16437. },
  16438. {
  16439. name: "Bigger Macro",
  16440. height: math.unit(350, "meters")
  16441. },
  16442. {
  16443. name: "Megamacro",
  16444. height: math.unit(8, "km"),
  16445. default: true
  16446. },
  16447. {
  16448. name: "Continental",
  16449. height: math.unit(4550, "km")
  16450. },
  16451. {
  16452. name: "Planetary",
  16453. height: math.unit(65000, "km")
  16454. },
  16455. ]
  16456. ))
  16457. characterMakers.push(() => makeCharacter(
  16458. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16459. {
  16460. front: {
  16461. height: math.unit(6, "feet"),
  16462. weight: math.unit(400, "lb"),
  16463. name: "Front",
  16464. image: {
  16465. source: "./media/characters/mac/front.svg",
  16466. extra: 1048 / 987.7,
  16467. bottom: 60 / 1107.6,
  16468. }
  16469. },
  16470. },
  16471. [
  16472. {
  16473. name: "Macro",
  16474. height: math.unit(500, "feet"),
  16475. default: true
  16476. },
  16477. ]
  16478. ))
  16479. characterMakers.push(() => makeCharacter(
  16480. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16481. {
  16482. front: {
  16483. height: math.unit(5 + 2 / 12, "feet"),
  16484. weight: math.unit(190, "lb"),
  16485. name: "Front",
  16486. image: {
  16487. source: "./media/characters/bari/front.svg",
  16488. extra: 3156 / 2880,
  16489. bottom: 0.03
  16490. }
  16491. },
  16492. back: {
  16493. height: math.unit(5 + 2 / 12, "feet"),
  16494. weight: math.unit(190, "lb"),
  16495. name: "Back",
  16496. image: {
  16497. source: "./media/characters/bari/back.svg",
  16498. extra: 3260 / 2834,
  16499. bottom: 0.025
  16500. }
  16501. },
  16502. frontPlush: {
  16503. height: math.unit(5 + 2 / 12, "feet"),
  16504. weight: math.unit(190, "lb"),
  16505. name: "Front (Plush)",
  16506. image: {
  16507. source: "./media/characters/bari/front-plush.svg",
  16508. extra: 1112 / 1061,
  16509. bottom: 0.002
  16510. }
  16511. },
  16512. },
  16513. [
  16514. {
  16515. name: "Micro",
  16516. height: math.unit(3, "inches")
  16517. },
  16518. {
  16519. name: "Normal",
  16520. height: math.unit(5 + 2 / 12, "feet"),
  16521. default: true
  16522. },
  16523. {
  16524. name: "Macro",
  16525. height: math.unit(20, "feet")
  16526. },
  16527. ]
  16528. ))
  16529. characterMakers.push(() => makeCharacter(
  16530. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16531. {
  16532. front: {
  16533. height: math.unit(6 + 1 / 12, "feet"),
  16534. weight: math.unit(275, "lb"),
  16535. name: "Front",
  16536. image: {
  16537. source: "./media/characters/hunter-misha-raven/front.svg"
  16538. }
  16539. },
  16540. },
  16541. [
  16542. {
  16543. name: "Mortal",
  16544. height: math.unit(6 + 1 / 12, "feet")
  16545. },
  16546. {
  16547. name: "Divine",
  16548. height: math.unit(1.12134e34, "parsecs"),
  16549. default: true
  16550. },
  16551. ]
  16552. ))
  16553. characterMakers.push(() => makeCharacter(
  16554. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16555. {
  16556. front: {
  16557. height: math.unit(6 + 3 / 12, "feet"),
  16558. weight: math.unit(220, "lb"),
  16559. name: "Front",
  16560. image: {
  16561. source: "./media/characters/max-calore/front.svg",
  16562. extra: 1700 / 1648,
  16563. bottom: 0.01
  16564. }
  16565. },
  16566. back: {
  16567. height: math.unit(6 + 3 / 12, "feet"),
  16568. weight: math.unit(220, "lb"),
  16569. name: "Back",
  16570. image: {
  16571. source: "./media/characters/max-calore/back.svg",
  16572. extra: 1700 / 1648,
  16573. bottom: 0.01
  16574. }
  16575. },
  16576. },
  16577. [
  16578. {
  16579. name: "Normal",
  16580. height: math.unit(6 + 3 / 12, "feet"),
  16581. default: true
  16582. },
  16583. ]
  16584. ))
  16585. characterMakers.push(() => makeCharacter(
  16586. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16587. {
  16588. side: {
  16589. height: math.unit(2 + 8 / 12, "feet"),
  16590. weight: math.unit(99, "lb"),
  16591. name: "Side",
  16592. image: {
  16593. source: "./media/characters/aspen/side.svg",
  16594. extra: 152 / 138,
  16595. bottom: 0.032
  16596. }
  16597. },
  16598. },
  16599. [
  16600. {
  16601. name: "Normal",
  16602. height: math.unit(2 + 8 / 12, "feet"),
  16603. default: true
  16604. },
  16605. ]
  16606. ))
  16607. characterMakers.push(() => makeCharacter(
  16608. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16609. {
  16610. side: {
  16611. height: math.unit(3 + 2 / 12, "feet"),
  16612. weight: math.unit(224, "lb"),
  16613. name: "Side",
  16614. image: {
  16615. source: "./media/characters/sheila-feral-wolf/side.svg",
  16616. extra: 179 / 166,
  16617. bottom: 0.03
  16618. }
  16619. },
  16620. },
  16621. [
  16622. {
  16623. name: "Normal",
  16624. height: math.unit(3 + 2 / 12, "feet"),
  16625. default: true
  16626. },
  16627. ]
  16628. ))
  16629. characterMakers.push(() => makeCharacter(
  16630. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16631. {
  16632. side: {
  16633. height: math.unit(1 + 9 / 12, "feet"),
  16634. weight: math.unit(38, "lb"),
  16635. name: "Side",
  16636. image: {
  16637. source: "./media/characters/michelle/side.svg",
  16638. extra: 147 / 136.7,
  16639. bottom: 0.03
  16640. }
  16641. },
  16642. },
  16643. [
  16644. {
  16645. name: "Normal",
  16646. height: math.unit(1 + 9 / 12, "feet"),
  16647. default: true
  16648. },
  16649. ]
  16650. ))
  16651. characterMakers.push(() => makeCharacter(
  16652. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16653. {
  16654. front: {
  16655. height: math.unit(1 + 1 / 12, "feet"),
  16656. weight: math.unit(18, "lb"),
  16657. name: "Front",
  16658. image: {
  16659. source: "./media/characters/nino/front.svg"
  16660. }
  16661. },
  16662. },
  16663. [
  16664. {
  16665. name: "Normal",
  16666. height: math.unit(1 + 1 / 12, "feet"),
  16667. default: true
  16668. },
  16669. ]
  16670. ))
  16671. characterMakers.push(() => makeCharacter(
  16672. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16673. {
  16674. front: {
  16675. height: math.unit(1, "feet"),
  16676. weight: math.unit(16, "lb"),
  16677. name: "Front",
  16678. image: {
  16679. source: "./media/characters/viola/front.svg"
  16680. }
  16681. },
  16682. },
  16683. [
  16684. {
  16685. name: "Normal",
  16686. height: math.unit(1, "feet"),
  16687. default: true
  16688. },
  16689. ]
  16690. ))
  16691. characterMakers.push(() => makeCharacter(
  16692. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16693. {
  16694. front: {
  16695. height: math.unit(6 + 5 / 12, "feet"),
  16696. weight: math.unit(580, "lb"),
  16697. name: "Front",
  16698. image: {
  16699. source: "./media/characters/atlas/front.svg",
  16700. extra: 298.5 / 290,
  16701. bottom: 0.015
  16702. }
  16703. },
  16704. },
  16705. [
  16706. {
  16707. name: "Normal",
  16708. height: math.unit(6 + 5 / 12, "feet"),
  16709. default: true
  16710. },
  16711. ]
  16712. ))
  16713. characterMakers.push(() => makeCharacter(
  16714. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16715. {
  16716. side: {
  16717. height: math.unit(1 + 10 / 12, "feet"),
  16718. weight: math.unit(25, "lb"),
  16719. name: "Side",
  16720. image: {
  16721. source: "./media/characters/davy/side.svg",
  16722. extra: 200 / 170,
  16723. bottom: 0.01
  16724. }
  16725. },
  16726. },
  16727. [
  16728. {
  16729. name: "Normal",
  16730. height: math.unit(1 + 10 / 12, "feet"),
  16731. default: true
  16732. },
  16733. ]
  16734. ))
  16735. characterMakers.push(() => makeCharacter(
  16736. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16737. {
  16738. side: {
  16739. height: math.unit(4 + 8 / 12, "feet"),
  16740. weight: math.unit(166, "lb"),
  16741. name: "Side",
  16742. image: {
  16743. source: "./media/characters/fiona/side.svg",
  16744. extra: 232 / 220,
  16745. bottom: 0.03
  16746. }
  16747. },
  16748. },
  16749. [
  16750. {
  16751. name: "Normal",
  16752. height: math.unit(4 + 8 / 12, "feet"),
  16753. default: true
  16754. },
  16755. ]
  16756. ))
  16757. characterMakers.push(() => makeCharacter(
  16758. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16759. {
  16760. front: {
  16761. height: math.unit(2, "feet"),
  16762. weight: math.unit(62, "lb"),
  16763. name: "Front",
  16764. image: {
  16765. source: "./media/characters/lyla/front.svg",
  16766. bottom: 0.1
  16767. }
  16768. },
  16769. },
  16770. [
  16771. {
  16772. name: "Normal",
  16773. height: math.unit(2, "feet"),
  16774. default: true
  16775. },
  16776. ]
  16777. ))
  16778. characterMakers.push(() => makeCharacter(
  16779. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16780. {
  16781. side: {
  16782. height: math.unit(1.8, "feet"),
  16783. weight: math.unit(44, "lb"),
  16784. name: "Side",
  16785. image: {
  16786. source: "./media/characters/perseus/side.svg",
  16787. bottom: 0.21
  16788. }
  16789. },
  16790. },
  16791. [
  16792. {
  16793. name: "Normal",
  16794. height: math.unit(1.8, "feet"),
  16795. default: true
  16796. },
  16797. ]
  16798. ))
  16799. characterMakers.push(() => makeCharacter(
  16800. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16801. {
  16802. side: {
  16803. height: math.unit(4 + 2 / 12, "feet"),
  16804. weight: math.unit(20, "lb"),
  16805. name: "Side",
  16806. image: {
  16807. source: "./media/characters/remus/side.svg"
  16808. }
  16809. },
  16810. },
  16811. [
  16812. {
  16813. name: "Normal",
  16814. height: math.unit(4 + 2 / 12, "feet"),
  16815. default: true
  16816. },
  16817. ]
  16818. ))
  16819. characterMakers.push(() => makeCharacter(
  16820. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16821. {
  16822. front: {
  16823. height: math.unit(4 + 11 / 12, "feet"),
  16824. weight: math.unit(114, "lb"),
  16825. name: "Front",
  16826. image: {
  16827. source: "./media/characters/raf/front.svg",
  16828. bottom: 20.5 / 1863
  16829. }
  16830. },
  16831. side: {
  16832. height: math.unit(4 + 11 / 12, "feet"),
  16833. weight: math.unit(114, "lb"),
  16834. name: "Side",
  16835. image: {
  16836. source: "./media/characters/raf/side.svg",
  16837. bottom: 22 / 1822
  16838. }
  16839. },
  16840. },
  16841. [
  16842. {
  16843. name: "Micro",
  16844. height: math.unit(2, "inches")
  16845. },
  16846. {
  16847. name: "Normal",
  16848. height: math.unit(4 + 11 / 12, "feet"),
  16849. default: true
  16850. },
  16851. {
  16852. name: "Macro",
  16853. height: math.unit(70, "feet")
  16854. },
  16855. ]
  16856. ))
  16857. characterMakers.push(() => makeCharacter(
  16858. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16859. {
  16860. front: {
  16861. height: math.unit(1.5, "meters"),
  16862. weight: math.unit(68, "kg"),
  16863. name: "Front",
  16864. image: {
  16865. source: "./media/characters/liam-einarr/front.svg",
  16866. extra: 2822 / 2666
  16867. }
  16868. },
  16869. back: {
  16870. height: math.unit(1.5, "meters"),
  16871. weight: math.unit(68, "kg"),
  16872. name: "Back",
  16873. image: {
  16874. source: "./media/characters/liam-einarr/back.svg",
  16875. extra: 2822 / 2666,
  16876. bottom: 0.015
  16877. }
  16878. },
  16879. },
  16880. [
  16881. {
  16882. name: "Normal",
  16883. height: math.unit(1.5, "meters"),
  16884. default: true
  16885. },
  16886. {
  16887. name: "Macro",
  16888. height: math.unit(150, "meters")
  16889. },
  16890. {
  16891. name: "Megamacro",
  16892. height: math.unit(35, "km")
  16893. },
  16894. ]
  16895. ))
  16896. characterMakers.push(() => makeCharacter(
  16897. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16898. {
  16899. front: {
  16900. height: math.unit(6, "feet"),
  16901. weight: math.unit(75, "kg"),
  16902. name: "Front",
  16903. image: {
  16904. source: "./media/characters/linda/front.svg",
  16905. extra: 930 / 874,
  16906. bottom: 0.004
  16907. }
  16908. },
  16909. },
  16910. [
  16911. {
  16912. name: "Normal",
  16913. height: math.unit(6, "feet"),
  16914. default: true
  16915. },
  16916. ]
  16917. ))
  16918. characterMakers.push(() => makeCharacter(
  16919. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16920. {
  16921. front: {
  16922. height: math.unit(6 + 8 / 12, "feet"),
  16923. weight: math.unit(220, "lb"),
  16924. name: "Front",
  16925. image: {
  16926. source: "./media/characters/caylex/front.svg",
  16927. extra: 821 / 772,
  16928. bottom: 0.07
  16929. }
  16930. },
  16931. back: {
  16932. height: math.unit(6 + 8 / 12, "feet"),
  16933. weight: math.unit(220, "lb"),
  16934. name: "Back",
  16935. image: {
  16936. source: "./media/characters/caylex/back.svg",
  16937. extra: 821 / 772,
  16938. bottom: 0.022
  16939. }
  16940. },
  16941. hand: {
  16942. height: math.unit(1.25, "feet"),
  16943. name: "Hand",
  16944. image: {
  16945. source: "./media/characters/caylex/hand.svg"
  16946. }
  16947. },
  16948. foot: {
  16949. height: math.unit(1.6, "feet"),
  16950. name: "Foot",
  16951. image: {
  16952. source: "./media/characters/caylex/foot.svg"
  16953. }
  16954. },
  16955. armored: {
  16956. height: math.unit(6 + 8 / 12, "feet"),
  16957. weight: math.unit(250, "lb"),
  16958. name: "Armored",
  16959. image: {
  16960. source: "./media/characters/caylex/armored.svg",
  16961. extra: 1420 / 1310,
  16962. bottom: 0.045
  16963. }
  16964. },
  16965. },
  16966. [
  16967. {
  16968. name: "Normal",
  16969. height: math.unit(6 + 8 / 12, "feet"),
  16970. default: true
  16971. },
  16972. {
  16973. name: "Normal+",
  16974. height: math.unit(12, "feet")
  16975. },
  16976. ]
  16977. ))
  16978. characterMakers.push(() => makeCharacter(
  16979. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16980. {
  16981. front: {
  16982. height: math.unit(7 + 6 / 12, "feet"),
  16983. weight: math.unit(288, "lb"),
  16984. name: "Front",
  16985. image: {
  16986. source: "./media/characters/alana/front.svg",
  16987. extra: 679 / 653,
  16988. bottom: 22.5 / 701
  16989. }
  16990. },
  16991. },
  16992. [
  16993. {
  16994. name: "Normal",
  16995. height: math.unit(7 + 6 / 12, "feet")
  16996. },
  16997. {
  16998. name: "Large",
  16999. height: math.unit(50, "feet")
  17000. },
  17001. {
  17002. name: "Macro",
  17003. height: math.unit(100, "feet"),
  17004. default: true
  17005. },
  17006. {
  17007. name: "Macro+",
  17008. height: math.unit(200, "feet")
  17009. },
  17010. ]
  17011. ))
  17012. characterMakers.push(() => makeCharacter(
  17013. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17014. {
  17015. front: {
  17016. height: math.unit(6 + 1 / 12, "feet"),
  17017. weight: math.unit(210, "lb"),
  17018. name: "Front",
  17019. image: {
  17020. source: "./media/characters/hasani/front.svg",
  17021. extra: 244 / 232,
  17022. bottom: 0.01
  17023. }
  17024. },
  17025. back: {
  17026. height: math.unit(6 + 1 / 12, "feet"),
  17027. weight: math.unit(210, "lb"),
  17028. name: "Back",
  17029. image: {
  17030. source: "./media/characters/hasani/back.svg",
  17031. extra: 244 / 232,
  17032. bottom: 0.01
  17033. }
  17034. },
  17035. },
  17036. [
  17037. {
  17038. name: "Normal",
  17039. height: math.unit(6 + 1 / 12, "feet")
  17040. },
  17041. {
  17042. name: "Macro",
  17043. height: math.unit(175, "feet"),
  17044. default: true
  17045. },
  17046. ]
  17047. ))
  17048. characterMakers.push(() => makeCharacter(
  17049. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17050. {
  17051. front: {
  17052. height: math.unit(1.82, "meters"),
  17053. weight: math.unit(140, "lb"),
  17054. name: "Front",
  17055. image: {
  17056. source: "./media/characters/nita/front.svg",
  17057. extra: 2473 / 2363,
  17058. bottom: 0.01
  17059. }
  17060. },
  17061. },
  17062. [
  17063. {
  17064. name: "Normal",
  17065. height: math.unit(1.82, "m")
  17066. },
  17067. {
  17068. name: "Macro",
  17069. height: math.unit(300, "m")
  17070. },
  17071. {
  17072. name: "Mistake Canon",
  17073. height: math.unit(0.5, "miles"),
  17074. default: true
  17075. },
  17076. {
  17077. name: "Big Mistake",
  17078. height: math.unit(13, "miles")
  17079. },
  17080. {
  17081. name: "Playing God",
  17082. height: math.unit(2450, "miles")
  17083. },
  17084. ]
  17085. ))
  17086. characterMakers.push(() => makeCharacter(
  17087. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17088. {
  17089. front: {
  17090. height: math.unit(4, "feet"),
  17091. weight: math.unit(120, "lb"),
  17092. name: "Front",
  17093. image: {
  17094. source: "./media/characters/shiriko/front.svg",
  17095. extra: 195 / 188
  17096. }
  17097. },
  17098. },
  17099. [
  17100. {
  17101. name: "Normal",
  17102. height: math.unit(4, "feet"),
  17103. default: true
  17104. },
  17105. ]
  17106. ))
  17107. characterMakers.push(() => makeCharacter(
  17108. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17109. {
  17110. front: {
  17111. height: math.unit(6, "feet"),
  17112. name: "front",
  17113. image: {
  17114. source: "./media/characters/deja/front.svg",
  17115. extra: 926 / 840,
  17116. bottom: 0.07
  17117. }
  17118. },
  17119. },
  17120. [
  17121. {
  17122. name: "Planck Length",
  17123. height: math.unit(1.6e-35, "meters")
  17124. },
  17125. {
  17126. name: "Normal",
  17127. height: math.unit(30.48, "meters"),
  17128. default: true
  17129. },
  17130. {
  17131. name: "Universal",
  17132. height: math.unit(8.8e26, "meters")
  17133. },
  17134. ]
  17135. ))
  17136. characterMakers.push(() => makeCharacter(
  17137. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17138. {
  17139. side: {
  17140. height: math.unit(8, "feet"),
  17141. weight: math.unit(6300, "lb"),
  17142. name: "Side",
  17143. image: {
  17144. source: "./media/characters/anima/side.svg",
  17145. bottom: 0.035
  17146. }
  17147. },
  17148. },
  17149. [
  17150. {
  17151. name: "Normal",
  17152. height: math.unit(8, "feet"),
  17153. default: true
  17154. },
  17155. ]
  17156. ))
  17157. characterMakers.push(() => makeCharacter(
  17158. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17159. {
  17160. front: {
  17161. height: math.unit(8, "feet"),
  17162. weight: math.unit(350, "lb"),
  17163. name: "Front",
  17164. image: {
  17165. source: "./media/characters/bianca/front.svg",
  17166. extra: 234 / 225,
  17167. bottom: 0.03
  17168. }
  17169. },
  17170. },
  17171. [
  17172. {
  17173. name: "Normal",
  17174. height: math.unit(8, "feet"),
  17175. default: true
  17176. },
  17177. ]
  17178. ))
  17179. characterMakers.push(() => makeCharacter(
  17180. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17181. {
  17182. front: {
  17183. height: math.unit(6, "feet"),
  17184. weight: math.unit(150, "lb"),
  17185. name: "Front",
  17186. image: {
  17187. source: "./media/characters/adinia/front.svg",
  17188. extra: 1845 / 1672,
  17189. bottom: 0.02
  17190. }
  17191. },
  17192. back: {
  17193. height: math.unit(6, "feet"),
  17194. weight: math.unit(150, "lb"),
  17195. name: "Back",
  17196. image: {
  17197. source: "./media/characters/adinia/back.svg",
  17198. extra: 1845 / 1672,
  17199. bottom: 0.002
  17200. }
  17201. },
  17202. },
  17203. [
  17204. {
  17205. name: "Normal",
  17206. height: math.unit(11 + 5 / 12, "feet"),
  17207. default: true
  17208. },
  17209. ]
  17210. ))
  17211. characterMakers.push(() => makeCharacter(
  17212. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17213. {
  17214. front: {
  17215. height: math.unit(3, "meters"),
  17216. weight: math.unit(200, "kg"),
  17217. name: "Front",
  17218. image: {
  17219. source: "./media/characters/lykasa/front.svg",
  17220. extra: 1076 / 976,
  17221. bottom: 0.06
  17222. }
  17223. },
  17224. },
  17225. [
  17226. {
  17227. name: "Normal",
  17228. height: math.unit(3, "meters")
  17229. },
  17230. {
  17231. name: "Kaiju",
  17232. height: math.unit(120, "meters"),
  17233. default: true
  17234. },
  17235. {
  17236. name: "Mega Kaiju",
  17237. height: math.unit(240, "km")
  17238. },
  17239. {
  17240. name: "Giga Kaiju",
  17241. height: math.unit(400, "megameters")
  17242. },
  17243. {
  17244. name: "Tera Kaiju",
  17245. height: math.unit(800, "gigameters")
  17246. },
  17247. {
  17248. name: "Kaiju Dragon Goddess",
  17249. height: math.unit(26, "zettaparsecs")
  17250. },
  17251. ]
  17252. ))
  17253. characterMakers.push(() => makeCharacter(
  17254. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17255. {
  17256. side: {
  17257. height: math.unit(283 / 124 * 6, "feet"),
  17258. weight: math.unit(35000, "lb"),
  17259. name: "Side",
  17260. image: {
  17261. source: "./media/characters/malfaren/side.svg",
  17262. extra: 2500 / 1010,
  17263. bottom: 0.01
  17264. }
  17265. },
  17266. front: {
  17267. height: math.unit(22.36, "feet"),
  17268. weight: math.unit(35000, "lb"),
  17269. name: "Front",
  17270. image: {
  17271. source: "./media/characters/malfaren/front.svg",
  17272. extra: 1631 / 1476,
  17273. bottom: 0.01
  17274. }
  17275. },
  17276. maw: {
  17277. height: math.unit(6.9, "feet"),
  17278. name: "Maw",
  17279. image: {
  17280. source: "./media/characters/malfaren/maw.svg"
  17281. }
  17282. },
  17283. },
  17284. [
  17285. {
  17286. name: "Big",
  17287. height: math.unit(283 / 162 * 6, "feet"),
  17288. },
  17289. {
  17290. name: "Bigger",
  17291. height: math.unit(283 / 124 * 6, "feet")
  17292. },
  17293. {
  17294. name: "Massive",
  17295. height: math.unit(283 / 92 * 6, "feet"),
  17296. default: true
  17297. },
  17298. {
  17299. name: "👀💦",
  17300. height: math.unit(283 / 73 * 6, "feet"),
  17301. },
  17302. ]
  17303. ))
  17304. characterMakers.push(() => makeCharacter(
  17305. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17306. {
  17307. front: {
  17308. height: math.unit(1.7, "m"),
  17309. weight: math.unit(70, "kg"),
  17310. name: "Front",
  17311. image: {
  17312. source: "./media/characters/kernel/front.svg",
  17313. extra: 222 / 210,
  17314. bottom: 0.007
  17315. }
  17316. },
  17317. },
  17318. [
  17319. {
  17320. name: "Nano",
  17321. height: math.unit(17, "micrometers")
  17322. },
  17323. {
  17324. name: "Micro",
  17325. height: math.unit(1.7, "mm")
  17326. },
  17327. {
  17328. name: "Small",
  17329. height: math.unit(1.7, "cm")
  17330. },
  17331. {
  17332. name: "Normal",
  17333. height: math.unit(1.7, "m"),
  17334. default: true
  17335. },
  17336. ]
  17337. ))
  17338. characterMakers.push(() => makeCharacter(
  17339. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17340. {
  17341. front: {
  17342. height: math.unit(1.75, "meters"),
  17343. weight: math.unit(65, "kg"),
  17344. name: "Front",
  17345. image: {
  17346. source: "./media/characters/jayne-folest/front.svg",
  17347. extra: 2115 / 2007,
  17348. bottom: 0.02
  17349. }
  17350. },
  17351. back: {
  17352. height: math.unit(1.75, "meters"),
  17353. weight: math.unit(65, "kg"),
  17354. name: "Back",
  17355. image: {
  17356. source: "./media/characters/jayne-folest/back.svg",
  17357. extra: 2115 / 2007,
  17358. bottom: 0.005
  17359. }
  17360. },
  17361. frontClothed: {
  17362. height: math.unit(1.75, "meters"),
  17363. weight: math.unit(65, "kg"),
  17364. name: "Front (Clothed)",
  17365. image: {
  17366. source: "./media/characters/jayne-folest/front-clothed.svg",
  17367. extra: 2115 / 2007,
  17368. bottom: 0.035
  17369. }
  17370. },
  17371. hand: {
  17372. height: math.unit(1 / 1.260, "feet"),
  17373. name: "Hand",
  17374. image: {
  17375. source: "./media/characters/jayne-folest/hand.svg"
  17376. }
  17377. },
  17378. foot: {
  17379. height: math.unit(1 / 0.918, "feet"),
  17380. name: "Foot",
  17381. image: {
  17382. source: "./media/characters/jayne-folest/foot.svg"
  17383. }
  17384. },
  17385. },
  17386. [
  17387. {
  17388. name: "Micro",
  17389. height: math.unit(4, "cm")
  17390. },
  17391. {
  17392. name: "Normal",
  17393. height: math.unit(1.75, "meters")
  17394. },
  17395. {
  17396. name: "Macro",
  17397. height: math.unit(47.5, "meters"),
  17398. default: true
  17399. },
  17400. ]
  17401. ))
  17402. characterMakers.push(() => makeCharacter(
  17403. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17404. {
  17405. front: {
  17406. height: math.unit(180, "cm"),
  17407. weight: math.unit(70, "kg"),
  17408. name: "Front",
  17409. image: {
  17410. source: "./media/characters/algier/front.svg",
  17411. extra: 596 / 572,
  17412. bottom: 0.04
  17413. }
  17414. },
  17415. back: {
  17416. height: math.unit(180, "cm"),
  17417. weight: math.unit(70, "kg"),
  17418. name: "Back",
  17419. image: {
  17420. source: "./media/characters/algier/back.svg",
  17421. extra: 596 / 572,
  17422. bottom: 0.025
  17423. }
  17424. },
  17425. frontdressed: {
  17426. height: math.unit(180, "cm"),
  17427. weight: math.unit(150, "kg"),
  17428. name: "Front-dressed",
  17429. image: {
  17430. source: "./media/characters/algier/front-dressed.svg",
  17431. extra: 596 / 572,
  17432. bottom: 0.038
  17433. }
  17434. },
  17435. },
  17436. [
  17437. {
  17438. name: "Micro",
  17439. height: math.unit(5, "cm")
  17440. },
  17441. {
  17442. name: "Normal",
  17443. height: math.unit(180, "cm"),
  17444. default: true
  17445. },
  17446. {
  17447. name: "Macro",
  17448. height: math.unit(64, "m")
  17449. },
  17450. ]
  17451. ))
  17452. characterMakers.push(() => makeCharacter(
  17453. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17454. {
  17455. upright: {
  17456. height: math.unit(7, "feet"),
  17457. weight: math.unit(300, "lb"),
  17458. name: "Upright",
  17459. image: {
  17460. source: "./media/characters/pretzel/upright.svg",
  17461. extra: 534 / 522,
  17462. bottom: 0.065
  17463. }
  17464. },
  17465. sprawling: {
  17466. height: math.unit(3.75, "feet"),
  17467. weight: math.unit(300, "lb"),
  17468. name: "Sprawling",
  17469. image: {
  17470. source: "./media/characters/pretzel/sprawling.svg",
  17471. extra: 314 / 281,
  17472. bottom: 0.1
  17473. }
  17474. },
  17475. tongue: {
  17476. height: math.unit(2, "feet"),
  17477. name: "Tongue",
  17478. image: {
  17479. source: "./media/characters/pretzel/tongue.svg"
  17480. }
  17481. },
  17482. },
  17483. [
  17484. {
  17485. name: "Normal",
  17486. height: math.unit(7, "feet"),
  17487. default: true
  17488. },
  17489. {
  17490. name: "Oversized",
  17491. height: math.unit(15, "feet")
  17492. },
  17493. {
  17494. name: "Huge",
  17495. height: math.unit(30, "feet")
  17496. },
  17497. {
  17498. name: "Macro",
  17499. height: math.unit(250, "feet")
  17500. },
  17501. ]
  17502. ))
  17503. characterMakers.push(() => makeCharacter(
  17504. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17505. {
  17506. sideFront: {
  17507. height: math.unit(5 + 2 / 12, "feet"),
  17508. weight: math.unit(120, "lb"),
  17509. name: "Front Side",
  17510. image: {
  17511. source: "./media/characters/roxi/side-front.svg",
  17512. extra: 2924 / 2717,
  17513. bottom: 0.08
  17514. }
  17515. },
  17516. sideBack: {
  17517. height: math.unit(5 + 2 / 12, "feet"),
  17518. weight: math.unit(120, "lb"),
  17519. name: "Back Side",
  17520. image: {
  17521. source: "./media/characters/roxi/side-back.svg",
  17522. extra: 2904 / 2693,
  17523. bottom: 0.06
  17524. }
  17525. },
  17526. front: {
  17527. height: math.unit(5 + 2 / 12, "feet"),
  17528. weight: math.unit(120, "lb"),
  17529. name: "Front",
  17530. image: {
  17531. source: "./media/characters/roxi/front.svg",
  17532. extra: 2028 / 1907,
  17533. bottom: 0.01
  17534. }
  17535. },
  17536. frontAlt: {
  17537. height: math.unit(5 + 2 / 12, "feet"),
  17538. weight: math.unit(120, "lb"),
  17539. name: "Front (Alt)",
  17540. image: {
  17541. source: "./media/characters/roxi/front-alt.svg",
  17542. extra: 1828 / 1798,
  17543. bottom: 0.01
  17544. }
  17545. },
  17546. sitting: {
  17547. height: math.unit(2.8, "feet"),
  17548. weight: math.unit(120, "lb"),
  17549. name: "Sitting",
  17550. image: {
  17551. source: "./media/characters/roxi/sitting.svg",
  17552. extra: 2660 / 2462,
  17553. bottom: 0.1
  17554. }
  17555. },
  17556. },
  17557. [
  17558. {
  17559. name: "Normal",
  17560. height: math.unit(5 + 2 / 12, "feet"),
  17561. default: true
  17562. },
  17563. ]
  17564. ))
  17565. characterMakers.push(() => makeCharacter(
  17566. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17567. {
  17568. side: {
  17569. height: math.unit(55, "feet"),
  17570. weight: math.unit(153, "tons"),
  17571. name: "Side",
  17572. image: {
  17573. source: "./media/characters/shadow/side.svg",
  17574. extra: 701 / 628,
  17575. bottom: 0.02
  17576. }
  17577. },
  17578. flying: {
  17579. height: math.unit(145, "feet"),
  17580. weight: math.unit(153, "tons"),
  17581. name: "Flying",
  17582. image: {
  17583. source: "./media/characters/shadow/flying.svg"
  17584. }
  17585. },
  17586. },
  17587. [
  17588. {
  17589. name: "Normal",
  17590. height: math.unit(55, "feet"),
  17591. default: true
  17592. },
  17593. ]
  17594. ))
  17595. characterMakers.push(() => makeCharacter(
  17596. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17597. {
  17598. front: {
  17599. height: math.unit(6, "feet"),
  17600. weight: math.unit(200, "lb"),
  17601. name: "Front",
  17602. image: {
  17603. source: "./media/characters/marcie/front.svg",
  17604. extra: 960 / 876,
  17605. bottom: 58 / 1017.87
  17606. }
  17607. },
  17608. },
  17609. [
  17610. {
  17611. name: "Macro",
  17612. height: math.unit(1, "mile"),
  17613. default: true
  17614. },
  17615. ]
  17616. ))
  17617. characterMakers.push(() => makeCharacter(
  17618. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17619. {
  17620. front: {
  17621. height: math.unit(7, "feet"),
  17622. weight: math.unit(200, "lb"),
  17623. name: "Front",
  17624. image: {
  17625. source: "./media/characters/kachina/front.svg",
  17626. extra: 1290.68 / 1119,
  17627. bottom: 36.5 / 1327.18
  17628. }
  17629. },
  17630. },
  17631. [
  17632. {
  17633. name: "Normal",
  17634. height: math.unit(7, "feet"),
  17635. default: true
  17636. },
  17637. ]
  17638. ))
  17639. characterMakers.push(() => makeCharacter(
  17640. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17641. {
  17642. looking: {
  17643. height: math.unit(2, "meters"),
  17644. weight: math.unit(300, "kg"),
  17645. name: "Looking",
  17646. image: {
  17647. source: "./media/characters/kash/looking.svg",
  17648. extra: 474 / 344,
  17649. bottom: 0.03
  17650. }
  17651. },
  17652. side: {
  17653. height: math.unit(2, "meters"),
  17654. weight: math.unit(300, "kg"),
  17655. name: "Side",
  17656. image: {
  17657. source: "./media/characters/kash/side.svg",
  17658. extra: 302 / 251,
  17659. bottom: 0.03
  17660. }
  17661. },
  17662. front: {
  17663. height: math.unit(2, "meters"),
  17664. weight: math.unit(300, "kg"),
  17665. name: "Front",
  17666. image: {
  17667. source: "./media/characters/kash/front.svg",
  17668. extra: 495 / 360,
  17669. bottom: 0.015
  17670. }
  17671. },
  17672. },
  17673. [
  17674. {
  17675. name: "Normal",
  17676. height: math.unit(2, "meters"),
  17677. default: true
  17678. },
  17679. {
  17680. name: "Big",
  17681. height: math.unit(3, "meters")
  17682. },
  17683. {
  17684. name: "Large",
  17685. height: math.unit(5, "meters")
  17686. },
  17687. ]
  17688. ))
  17689. characterMakers.push(() => makeCharacter(
  17690. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17691. {
  17692. feeding: {
  17693. height: math.unit(6.7, "feet"),
  17694. weight: math.unit(350, "lb"),
  17695. name: "Feeding",
  17696. image: {
  17697. source: "./media/characters/lalim/feeding.svg",
  17698. }
  17699. },
  17700. },
  17701. [
  17702. {
  17703. name: "Normal",
  17704. height: math.unit(6.7, "feet"),
  17705. default: true
  17706. },
  17707. ]
  17708. ))
  17709. characterMakers.push(() => makeCharacter(
  17710. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17711. {
  17712. front: {
  17713. height: math.unit(9.5, "feet"),
  17714. weight: math.unit(600, "lb"),
  17715. name: "Front",
  17716. image: {
  17717. source: "./media/characters/de'vout/front.svg",
  17718. extra: 1443 / 1328,
  17719. bottom: 0.025
  17720. }
  17721. },
  17722. back: {
  17723. height: math.unit(9.5, "feet"),
  17724. weight: math.unit(600, "lb"),
  17725. name: "Back",
  17726. image: {
  17727. source: "./media/characters/de'vout/back.svg",
  17728. extra: 1443 / 1328
  17729. }
  17730. },
  17731. frontDressed: {
  17732. height: math.unit(9.5, "feet"),
  17733. weight: math.unit(600, "lb"),
  17734. name: "Front (Dressed",
  17735. image: {
  17736. source: "./media/characters/de'vout/front-dressed.svg",
  17737. extra: 1443 / 1328,
  17738. bottom: 0.025
  17739. }
  17740. },
  17741. backDressed: {
  17742. height: math.unit(9.5, "feet"),
  17743. weight: math.unit(600, "lb"),
  17744. name: "Back (Dressed",
  17745. image: {
  17746. source: "./media/characters/de'vout/back-dressed.svg",
  17747. extra: 1443 / 1328
  17748. }
  17749. },
  17750. },
  17751. [
  17752. {
  17753. name: "Normal",
  17754. height: math.unit(9.5, "feet"),
  17755. default: true
  17756. },
  17757. ]
  17758. ))
  17759. characterMakers.push(() => makeCharacter(
  17760. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17761. {
  17762. front: {
  17763. height: math.unit(8, "feet"),
  17764. weight: math.unit(225, "lb"),
  17765. name: "Front",
  17766. image: {
  17767. source: "./media/characters/talana/front.svg",
  17768. extra: 1410 / 1300,
  17769. bottom: 0.015
  17770. }
  17771. },
  17772. frontDressed: {
  17773. height: math.unit(8, "feet"),
  17774. weight: math.unit(225, "lb"),
  17775. name: "Front (Dressed",
  17776. image: {
  17777. source: "./media/characters/talana/front-dressed.svg",
  17778. extra: 1410 / 1300,
  17779. bottom: 0.015
  17780. }
  17781. },
  17782. },
  17783. [
  17784. {
  17785. name: "Normal",
  17786. height: math.unit(8, "feet"),
  17787. default: true
  17788. },
  17789. ]
  17790. ))
  17791. characterMakers.push(() => makeCharacter(
  17792. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17793. {
  17794. side: {
  17795. height: math.unit(7.2, "feet"),
  17796. weight: math.unit(150, "lb"),
  17797. name: "Side",
  17798. image: {
  17799. source: "./media/characters/xeauvok/side.svg",
  17800. extra: 1975 / 1523,
  17801. bottom: 0.07
  17802. }
  17803. },
  17804. },
  17805. [
  17806. {
  17807. name: "Normal",
  17808. height: math.unit(7.2, "feet"),
  17809. default: true
  17810. },
  17811. ]
  17812. ))
  17813. characterMakers.push(() => makeCharacter(
  17814. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17815. {
  17816. side: {
  17817. height: math.unit(10, "feet"),
  17818. weight: math.unit(900, "kg"),
  17819. name: "Side",
  17820. image: {
  17821. source: "./media/characters/zara/side.svg",
  17822. extra: 504 / 498
  17823. }
  17824. },
  17825. },
  17826. [
  17827. {
  17828. name: "Normal",
  17829. height: math.unit(10, "feet"),
  17830. default: true
  17831. },
  17832. ]
  17833. ))
  17834. characterMakers.push(() => makeCharacter(
  17835. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17836. {
  17837. side: {
  17838. height: math.unit(6, "feet"),
  17839. weight: math.unit(150, "lb"),
  17840. name: "Side",
  17841. image: {
  17842. source: "./media/characters/richard-dragon/side.svg",
  17843. extra: 845 / 340,
  17844. bottom: 0.017
  17845. }
  17846. },
  17847. maw: {
  17848. height: math.unit(2.97, "feet"),
  17849. name: "Maw",
  17850. image: {
  17851. source: "./media/characters/richard-dragon/maw.svg"
  17852. }
  17853. },
  17854. },
  17855. [
  17856. ]
  17857. ))
  17858. characterMakers.push(() => makeCharacter(
  17859. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17860. {
  17861. front: {
  17862. height: math.unit(4, "feet"),
  17863. weight: math.unit(100, "lb"),
  17864. name: "Front",
  17865. image: {
  17866. source: "./media/characters/richard-smeargle/front.svg",
  17867. extra: 2952 / 2820,
  17868. bottom: 0.028
  17869. }
  17870. },
  17871. },
  17872. [
  17873. {
  17874. name: "Normal",
  17875. height: math.unit(4, "feet"),
  17876. default: true
  17877. },
  17878. {
  17879. name: "Dynamax",
  17880. height: math.unit(20, "meters")
  17881. },
  17882. ]
  17883. ))
  17884. characterMakers.push(() => makeCharacter(
  17885. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17886. {
  17887. front: {
  17888. height: math.unit(6, "feet"),
  17889. weight: math.unit(110, "lb"),
  17890. name: "Front",
  17891. image: {
  17892. source: "./media/characters/klay/front.svg",
  17893. extra: 962 / 883,
  17894. bottom: 0.04
  17895. }
  17896. },
  17897. back: {
  17898. height: math.unit(6, "feet"),
  17899. weight: math.unit(110, "lb"),
  17900. name: "Back",
  17901. image: {
  17902. source: "./media/characters/klay/back.svg",
  17903. extra: 962 / 883
  17904. }
  17905. },
  17906. beans: {
  17907. height: math.unit(1.15, "feet"),
  17908. name: "Beans",
  17909. image: {
  17910. source: "./media/characters/klay/beans.svg"
  17911. }
  17912. },
  17913. },
  17914. [
  17915. {
  17916. name: "Micro",
  17917. height: math.unit(6, "inches")
  17918. },
  17919. {
  17920. name: "Mini",
  17921. height: math.unit(3, "feet")
  17922. },
  17923. {
  17924. name: "Normal",
  17925. height: math.unit(6, "feet"),
  17926. default: true
  17927. },
  17928. {
  17929. name: "Big",
  17930. height: math.unit(25, "feet")
  17931. },
  17932. {
  17933. name: "Macro",
  17934. height: math.unit(100, "feet")
  17935. },
  17936. {
  17937. name: "Megamacro",
  17938. height: math.unit(400, "feet")
  17939. },
  17940. ]
  17941. ))
  17942. characterMakers.push(() => makeCharacter(
  17943. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17944. {
  17945. front: {
  17946. height: math.unit(6, "feet"),
  17947. weight: math.unit(160, "lb"),
  17948. name: "Front",
  17949. image: {
  17950. source: "./media/characters/marcus/front.svg",
  17951. extra: 734 / 676,
  17952. bottom: 0.03
  17953. }
  17954. },
  17955. },
  17956. [
  17957. {
  17958. name: "Little",
  17959. height: math.unit(6, "feet")
  17960. },
  17961. {
  17962. name: "Normal",
  17963. height: math.unit(110, "feet"),
  17964. default: true
  17965. },
  17966. {
  17967. name: "Macro",
  17968. height: math.unit(250, "feet")
  17969. },
  17970. {
  17971. name: "Megamacro",
  17972. height: math.unit(1000, "feet")
  17973. },
  17974. ]
  17975. ))
  17976. characterMakers.push(() => makeCharacter(
  17977. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17978. {
  17979. front: {
  17980. height: math.unit(7, "feet"),
  17981. weight: math.unit(275, "lb"),
  17982. name: "Front",
  17983. image: {
  17984. source: "./media/characters/claude-delroute/front.svg",
  17985. extra: 230 / 214,
  17986. bottom: 0.007
  17987. }
  17988. },
  17989. side: {
  17990. height: math.unit(7, "feet"),
  17991. weight: math.unit(275, "lb"),
  17992. name: "Side",
  17993. image: {
  17994. source: "./media/characters/claude-delroute/side.svg",
  17995. extra: 222 / 214,
  17996. bottom: 0.01
  17997. }
  17998. },
  17999. back: {
  18000. height: math.unit(7, "feet"),
  18001. weight: math.unit(275, "lb"),
  18002. name: "Back",
  18003. image: {
  18004. source: "./media/characters/claude-delroute/back.svg",
  18005. extra: 230 / 214,
  18006. bottom: 0.015
  18007. }
  18008. },
  18009. maw: {
  18010. height: math.unit(0.6407, "meters"),
  18011. name: "Maw",
  18012. image: {
  18013. source: "./media/characters/claude-delroute/maw.svg"
  18014. }
  18015. },
  18016. },
  18017. [
  18018. {
  18019. name: "Normal",
  18020. height: math.unit(7, "feet"),
  18021. default: true
  18022. },
  18023. {
  18024. name: "Lorge",
  18025. height: math.unit(20, "feet")
  18026. },
  18027. ]
  18028. ))
  18029. characterMakers.push(() => makeCharacter(
  18030. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18031. {
  18032. front: {
  18033. height: math.unit(8 + 4 / 12, "feet"),
  18034. weight: math.unit(600, "lb"),
  18035. name: "Front",
  18036. image: {
  18037. source: "./media/characters/dragonien/front.svg",
  18038. extra: 100 / 94,
  18039. bottom: 3.3 / 103.3445
  18040. }
  18041. },
  18042. back: {
  18043. height: math.unit(8 + 4 / 12, "feet"),
  18044. weight: math.unit(600, "lb"),
  18045. name: "Back",
  18046. image: {
  18047. source: "./media/characters/dragonien/back.svg",
  18048. extra: 776 / 746,
  18049. bottom: 6.4 / 782.0616
  18050. }
  18051. },
  18052. foot: {
  18053. height: math.unit(1.54, "feet"),
  18054. name: "Foot",
  18055. image: {
  18056. source: "./media/characters/dragonien/foot.svg",
  18057. }
  18058. },
  18059. },
  18060. [
  18061. {
  18062. name: "Normal",
  18063. height: math.unit(8 + 4 / 12, "feet"),
  18064. default: true
  18065. },
  18066. {
  18067. name: "Macro",
  18068. height: math.unit(200, "feet")
  18069. },
  18070. {
  18071. name: "Megamacro",
  18072. height: math.unit(1, "mile")
  18073. },
  18074. {
  18075. name: "Gigamacro",
  18076. height: math.unit(1000, "miles")
  18077. },
  18078. ]
  18079. ))
  18080. characterMakers.push(() => makeCharacter(
  18081. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18082. {
  18083. front: {
  18084. height: math.unit(5 + 2 / 12, "feet"),
  18085. weight: math.unit(110, "lb"),
  18086. name: "Front",
  18087. image: {
  18088. source: "./media/characters/desta/front.svg",
  18089. extra: 767 / 726,
  18090. bottom: 11.7 / 779
  18091. }
  18092. },
  18093. back: {
  18094. height: math.unit(5 + 2 / 12, "feet"),
  18095. weight: math.unit(110, "lb"),
  18096. name: "Back",
  18097. image: {
  18098. source: "./media/characters/desta/back.svg",
  18099. extra: 777 / 728,
  18100. bottom: 6 / 784
  18101. }
  18102. },
  18103. frontAlt: {
  18104. height: math.unit(5 + 2 / 12, "feet"),
  18105. weight: math.unit(110, "lb"),
  18106. name: "Front",
  18107. image: {
  18108. source: "./media/characters/desta/front-alt.svg",
  18109. extra: 1482 / 1417
  18110. }
  18111. },
  18112. side: {
  18113. height: math.unit(5 + 2 / 12, "feet"),
  18114. weight: math.unit(110, "lb"),
  18115. name: "Side",
  18116. image: {
  18117. source: "./media/characters/desta/side.svg",
  18118. extra: 2579 / 2491,
  18119. bottom: 0.053
  18120. }
  18121. },
  18122. },
  18123. [
  18124. {
  18125. name: "Micro",
  18126. height: math.unit(6, "inches")
  18127. },
  18128. {
  18129. name: "Normal",
  18130. height: math.unit(5 + 2 / 12, "feet"),
  18131. default: true
  18132. },
  18133. {
  18134. name: "Macro",
  18135. height: math.unit(62, "feet")
  18136. },
  18137. {
  18138. name: "Megamacro",
  18139. height: math.unit(1800, "feet")
  18140. },
  18141. ]
  18142. ))
  18143. characterMakers.push(() => makeCharacter(
  18144. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18145. {
  18146. front: {
  18147. height: math.unit(10, "feet"),
  18148. weight: math.unit(700, "lb"),
  18149. name: "Front",
  18150. image: {
  18151. source: "./media/characters/storm-alystar/front.svg",
  18152. extra: 2112 / 1898,
  18153. bottom: 0.034
  18154. }
  18155. },
  18156. },
  18157. [
  18158. {
  18159. name: "Micro",
  18160. height: math.unit(3.5, "inches")
  18161. },
  18162. {
  18163. name: "Normal",
  18164. height: math.unit(10, "feet"),
  18165. default: true
  18166. },
  18167. {
  18168. name: "Macro",
  18169. height: math.unit(400, "feet")
  18170. },
  18171. {
  18172. name: "Deific",
  18173. height: math.unit(60, "miles")
  18174. },
  18175. ]
  18176. ))
  18177. characterMakers.push(() => makeCharacter(
  18178. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18179. {
  18180. front: {
  18181. height: math.unit(2.35, "meters"),
  18182. weight: math.unit(119, "kg"),
  18183. name: "Front",
  18184. image: {
  18185. source: "./media/characters/ilia/front.svg",
  18186. extra: 1285 / 1255,
  18187. bottom: 0.06
  18188. }
  18189. },
  18190. },
  18191. [
  18192. {
  18193. name: "Normal",
  18194. height: math.unit(2.35, "meters")
  18195. },
  18196. {
  18197. name: "Macro",
  18198. height: math.unit(140, "meters"),
  18199. default: true
  18200. },
  18201. {
  18202. name: "Megamacro",
  18203. height: math.unit(100, "miles")
  18204. },
  18205. ]
  18206. ))
  18207. characterMakers.push(() => makeCharacter(
  18208. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18209. {
  18210. front: {
  18211. height: math.unit(6 + 5 / 12, "feet"),
  18212. weight: math.unit(190, "lb"),
  18213. name: "Front",
  18214. image: {
  18215. source: "./media/characters/kingdead/front.svg",
  18216. extra: 1228 / 1177
  18217. }
  18218. },
  18219. },
  18220. [
  18221. {
  18222. name: "Micro",
  18223. height: math.unit(7, "inches")
  18224. },
  18225. {
  18226. name: "Normal",
  18227. height: math.unit(6 + 5 / 12, "feet")
  18228. },
  18229. {
  18230. name: "Macro",
  18231. height: math.unit(150, "feet"),
  18232. default: true
  18233. },
  18234. {
  18235. name: "Megamacro",
  18236. height: math.unit(200, "miles")
  18237. },
  18238. ]
  18239. ))
  18240. characterMakers.push(() => makeCharacter(
  18241. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18242. {
  18243. front: {
  18244. height: math.unit(8, "feet"),
  18245. weight: math.unit(600, "lb"),
  18246. name: "Front",
  18247. image: {
  18248. source: "./media/characters/kyrehx/front.svg",
  18249. extra: 1195 / 1095,
  18250. bottom: 0.034
  18251. }
  18252. },
  18253. },
  18254. [
  18255. {
  18256. name: "Micro",
  18257. height: math.unit(2, "inches")
  18258. },
  18259. {
  18260. name: "Normal",
  18261. height: math.unit(8, "feet"),
  18262. default: true
  18263. },
  18264. {
  18265. name: "Macro",
  18266. height: math.unit(255, "feet")
  18267. },
  18268. ]
  18269. ))
  18270. characterMakers.push(() => makeCharacter(
  18271. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18272. {
  18273. front: {
  18274. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18275. weight: math.unit(184, "lb"),
  18276. name: "Front",
  18277. image: {
  18278. source: "./media/characters/xang/front.svg",
  18279. extra: 845 / 755
  18280. }
  18281. },
  18282. },
  18283. [
  18284. {
  18285. name: "Normal",
  18286. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18287. default: true
  18288. },
  18289. {
  18290. name: "Macro",
  18291. height: math.unit(0.935 * 146, "feet")
  18292. },
  18293. {
  18294. name: "Megamacro",
  18295. height: math.unit(0.935 * 3, "miles")
  18296. },
  18297. ]
  18298. ))
  18299. characterMakers.push(() => makeCharacter(
  18300. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18301. {
  18302. frontDressed: {
  18303. height: math.unit(5 + 7 / 12, "feet"),
  18304. weight: math.unit(140, "lb"),
  18305. name: "Front (Dressed)",
  18306. image: {
  18307. source: "./media/characters/doc-weardno/front-dressed.svg",
  18308. extra: 263 / 234
  18309. }
  18310. },
  18311. backDressed: {
  18312. height: math.unit(5 + 7 / 12, "feet"),
  18313. weight: math.unit(140, "lb"),
  18314. name: "Back (Dressed)",
  18315. image: {
  18316. source: "./media/characters/doc-weardno/back-dressed.svg",
  18317. extra: 266 / 238
  18318. }
  18319. },
  18320. front: {
  18321. height: math.unit(5 + 7 / 12, "feet"),
  18322. weight: math.unit(140, "lb"),
  18323. name: "Front",
  18324. image: {
  18325. source: "./media/characters/doc-weardno/front.svg",
  18326. extra: 254 / 233
  18327. }
  18328. },
  18329. },
  18330. [
  18331. {
  18332. name: "Micro",
  18333. height: math.unit(3, "inches")
  18334. },
  18335. {
  18336. name: "Normal",
  18337. height: math.unit(5 + 7 / 12, "feet"),
  18338. default: true
  18339. },
  18340. {
  18341. name: "Macro",
  18342. height: math.unit(25, "feet")
  18343. },
  18344. {
  18345. name: "Megamacro",
  18346. height: math.unit(2, "miles")
  18347. },
  18348. ]
  18349. ))
  18350. characterMakers.push(() => makeCharacter(
  18351. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18352. {
  18353. front: {
  18354. height: math.unit(6 + 2 / 12, "feet"),
  18355. weight: math.unit(153, "lb"),
  18356. name: "Front",
  18357. image: {
  18358. source: "./media/characters/seth-whilst/front.svg",
  18359. bottom: 0.07
  18360. }
  18361. },
  18362. },
  18363. [
  18364. {
  18365. name: "Micro",
  18366. height: math.unit(5, "inches")
  18367. },
  18368. {
  18369. name: "Normal",
  18370. height: math.unit(6 + 2 / 12, "feet"),
  18371. default: true
  18372. },
  18373. ]
  18374. ))
  18375. characterMakers.push(() => makeCharacter(
  18376. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18377. {
  18378. front: {
  18379. height: math.unit(3, "inches"),
  18380. weight: math.unit(8, "grams"),
  18381. name: "Front",
  18382. image: {
  18383. source: "./media/characters/pocket-jabari/front.svg",
  18384. extra: 1024 / 974,
  18385. bottom: 0.039
  18386. }
  18387. },
  18388. },
  18389. [
  18390. {
  18391. name: "Minimicro",
  18392. height: math.unit(8, "mm")
  18393. },
  18394. {
  18395. name: "Micro",
  18396. height: math.unit(3, "inches"),
  18397. default: true
  18398. },
  18399. {
  18400. name: "Normal",
  18401. height: math.unit(3, "feet")
  18402. },
  18403. ]
  18404. ))
  18405. characterMakers.push(() => makeCharacter(
  18406. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18407. {
  18408. front: {
  18409. height: math.unit(15, "feet"),
  18410. weight: math.unit(3280, "lb"),
  18411. name: "Front",
  18412. image: {
  18413. source: "./media/characters/sapphy/front.svg",
  18414. extra: 671 / 577,
  18415. bottom: 0.085
  18416. }
  18417. },
  18418. back: {
  18419. height: math.unit(15, "feet"),
  18420. weight: math.unit(3280, "lb"),
  18421. name: "Back",
  18422. image: {
  18423. source: "./media/characters/sapphy/back.svg",
  18424. extra: 631 / 607,
  18425. bottom: 0.045
  18426. }
  18427. },
  18428. },
  18429. [
  18430. {
  18431. name: "Normal",
  18432. height: math.unit(15, "feet")
  18433. },
  18434. {
  18435. name: "Casual Macro",
  18436. height: math.unit(120, "feet")
  18437. },
  18438. {
  18439. name: "Macro",
  18440. height: math.unit(2150, "feet"),
  18441. default: true
  18442. },
  18443. {
  18444. name: "Megamacro",
  18445. height: math.unit(8, "miles")
  18446. },
  18447. {
  18448. name: "Galaxy Mom",
  18449. height: math.unit(6, "megalightyears")
  18450. },
  18451. ]
  18452. ))
  18453. characterMakers.push(() => makeCharacter(
  18454. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18455. {
  18456. front: {
  18457. height: math.unit(6, "feet"),
  18458. weight: math.unit(170, "lb"),
  18459. name: "Front",
  18460. image: {
  18461. source: "./media/characters/kiro/front.svg",
  18462. extra: 1064 / 1012,
  18463. bottom: 0.052
  18464. }
  18465. },
  18466. },
  18467. [
  18468. {
  18469. name: "Micro",
  18470. height: math.unit(6, "inches")
  18471. },
  18472. {
  18473. name: "Normal",
  18474. height: math.unit(6, "feet"),
  18475. default: true
  18476. },
  18477. {
  18478. name: "Macro",
  18479. height: math.unit(72, "feet")
  18480. },
  18481. ]
  18482. ))
  18483. characterMakers.push(() => makeCharacter(
  18484. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18485. {
  18486. front: {
  18487. height: math.unit(5 + 9 / 12, "feet"),
  18488. weight: math.unit(175, "lb"),
  18489. name: "Front",
  18490. image: {
  18491. source: "./media/characters/irishfox/front.svg",
  18492. extra: 1912 / 1680,
  18493. bottom: 0.02
  18494. }
  18495. },
  18496. },
  18497. [
  18498. {
  18499. name: "Nano",
  18500. height: math.unit(1, "mm")
  18501. },
  18502. {
  18503. name: "Micro",
  18504. height: math.unit(2, "inches")
  18505. },
  18506. {
  18507. name: "Normal",
  18508. height: math.unit(5 + 9 / 12, "feet"),
  18509. default: true
  18510. },
  18511. {
  18512. name: "Macro",
  18513. height: math.unit(45, "feet")
  18514. },
  18515. ]
  18516. ))
  18517. characterMakers.push(() => makeCharacter(
  18518. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18519. {
  18520. front: {
  18521. height: math.unit(6 + 1 / 12, "feet"),
  18522. weight: math.unit(75, "lb"),
  18523. name: "Front",
  18524. image: {
  18525. source: "./media/characters/aronai-sieyes/front.svg",
  18526. extra: 1556 / 1480,
  18527. bottom: 0.015
  18528. }
  18529. },
  18530. side: {
  18531. height: math.unit(6 + 1 / 12, "feet"),
  18532. weight: math.unit(75, "lb"),
  18533. name: "Side",
  18534. image: {
  18535. source: "./media/characters/aronai-sieyes/side.svg",
  18536. extra: 1433 / 1390,
  18537. bottom: 0.0393
  18538. }
  18539. },
  18540. back: {
  18541. height: math.unit(6 + 1 / 12, "feet"),
  18542. weight: math.unit(75, "lb"),
  18543. name: "Back",
  18544. image: {
  18545. source: "./media/characters/aronai-sieyes/back.svg",
  18546. extra: 1544 / 1494,
  18547. bottom: 0.02
  18548. }
  18549. },
  18550. frontClothed: {
  18551. height: math.unit(6 + 1 / 12, "feet"),
  18552. weight: math.unit(75, "lb"),
  18553. name: "Front (Clothed)",
  18554. image: {
  18555. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18556. extra: 1582 / 1527
  18557. }
  18558. },
  18559. feral: {
  18560. height: math.unit(18, "feet"),
  18561. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18562. name: "Feral",
  18563. image: {
  18564. source: "./media/characters/aronai-sieyes/feral.svg",
  18565. extra: 1530 / 1240,
  18566. bottom: 0.035
  18567. }
  18568. },
  18569. },
  18570. [
  18571. {
  18572. name: "Micro",
  18573. height: math.unit(2, "inches")
  18574. },
  18575. {
  18576. name: "Normal",
  18577. height: math.unit(6 + 1 / 12, "feet"),
  18578. default: true
  18579. }
  18580. ]
  18581. ))
  18582. characterMakers.push(() => makeCharacter(
  18583. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18584. {
  18585. front: {
  18586. height: math.unit(12, "feet"),
  18587. weight: math.unit(410, "kg"),
  18588. name: "Front",
  18589. image: {
  18590. source: "./media/characters/xuna/front.svg",
  18591. extra: 2184 / 1980
  18592. }
  18593. },
  18594. side: {
  18595. height: math.unit(12, "feet"),
  18596. weight: math.unit(410, "kg"),
  18597. name: "Side",
  18598. image: {
  18599. source: "./media/characters/xuna/side.svg",
  18600. extra: 2184 / 1980
  18601. }
  18602. },
  18603. back: {
  18604. height: math.unit(12, "feet"),
  18605. weight: math.unit(410, "kg"),
  18606. name: "Back",
  18607. image: {
  18608. source: "./media/characters/xuna/back.svg",
  18609. extra: 2184 / 1980
  18610. }
  18611. },
  18612. },
  18613. [
  18614. {
  18615. name: "Nano glow",
  18616. height: math.unit(10, "nm")
  18617. },
  18618. {
  18619. name: "Micro floof",
  18620. height: math.unit(0.3, "m")
  18621. },
  18622. {
  18623. name: "Huggable softy boi",
  18624. height: math.unit(3.6576, "m"),
  18625. default: true
  18626. },
  18627. {
  18628. name: "Admirable floof",
  18629. height: math.unit(80, "meters")
  18630. },
  18631. {
  18632. name: "Gentle macro",
  18633. height: math.unit(300, "meters")
  18634. },
  18635. {
  18636. name: "Very careful floof",
  18637. height: math.unit(3200, "meters")
  18638. },
  18639. {
  18640. name: "The mega floof",
  18641. height: math.unit(36000, "meters")
  18642. },
  18643. {
  18644. name: "Giga-fur-Wicker",
  18645. height: math.unit(4800000, "meters")
  18646. },
  18647. {
  18648. name: "Licky world",
  18649. height: math.unit(20000000, "meters")
  18650. },
  18651. {
  18652. name: "Floofy cyan sun",
  18653. height: math.unit(1500000000, "meters")
  18654. },
  18655. {
  18656. name: "Milky Wicker",
  18657. height: math.unit(1000000000000000000000, "meters")
  18658. },
  18659. {
  18660. name: "The observing Wicker",
  18661. height: math.unit(999999999999999999999999999, "meters")
  18662. },
  18663. ]
  18664. ))
  18665. characterMakers.push(() => makeCharacter(
  18666. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18667. {
  18668. front: {
  18669. height: math.unit(5 + 9 / 12, "feet"),
  18670. weight: math.unit(150, "lb"),
  18671. name: "Front",
  18672. image: {
  18673. source: "./media/characters/arokha-sieyes/front.svg",
  18674. extra: 1425 / 1284,
  18675. bottom: 0.05
  18676. }
  18677. },
  18678. },
  18679. [
  18680. {
  18681. name: "Normal",
  18682. height: math.unit(5 + 9 / 12, "feet")
  18683. },
  18684. {
  18685. name: "Macro",
  18686. height: math.unit(30, "meters"),
  18687. default: true
  18688. },
  18689. ]
  18690. ))
  18691. characterMakers.push(() => makeCharacter(
  18692. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18693. {
  18694. front: {
  18695. height: math.unit(6, "feet"),
  18696. weight: math.unit(180, "lb"),
  18697. name: "Front",
  18698. image: {
  18699. source: "./media/characters/arokh-sieyes/front.svg",
  18700. extra: 1830 / 1769,
  18701. bottom: 0.01
  18702. }
  18703. },
  18704. },
  18705. [
  18706. {
  18707. name: "Normal",
  18708. height: math.unit(6, "feet")
  18709. },
  18710. {
  18711. name: "Macro",
  18712. height: math.unit(30, "meters"),
  18713. default: true
  18714. },
  18715. ]
  18716. ))
  18717. characterMakers.push(() => makeCharacter(
  18718. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18719. {
  18720. side: {
  18721. height: math.unit(13 + 1 / 12, "feet"),
  18722. weight: math.unit(8.5, "tonnes"),
  18723. name: "Side",
  18724. image: {
  18725. source: "./media/characters/goldeneye/side.svg",
  18726. extra: 1182 / 778,
  18727. bottom: 0.067
  18728. }
  18729. },
  18730. paw: {
  18731. height: math.unit(3.4, "feet"),
  18732. name: "Paw",
  18733. image: {
  18734. source: "./media/characters/goldeneye/paw.svg"
  18735. }
  18736. },
  18737. },
  18738. [
  18739. {
  18740. name: "Normal",
  18741. height: math.unit(13 + 1 / 12, "feet"),
  18742. default: true
  18743. },
  18744. ]
  18745. ))
  18746. characterMakers.push(() => makeCharacter(
  18747. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18748. {
  18749. front: {
  18750. height: math.unit(6 + 1 / 12, "feet"),
  18751. weight: math.unit(210, "lb"),
  18752. name: "Front",
  18753. image: {
  18754. source: "./media/characters/leonardo-lycheborne/front.svg",
  18755. extra: 390 / 365,
  18756. bottom: 0.032
  18757. }
  18758. },
  18759. side: {
  18760. height: math.unit(6 + 1 / 12, "feet"),
  18761. weight: math.unit(210, "lb"),
  18762. name: "Side",
  18763. image: {
  18764. source: "./media/characters/leonardo-lycheborne/side.svg",
  18765. extra: 390 / 365,
  18766. bottom: 0.005
  18767. }
  18768. },
  18769. back: {
  18770. height: math.unit(6 + 1 / 12, "feet"),
  18771. weight: math.unit(210, "lb"),
  18772. name: "Back",
  18773. image: {
  18774. source: "./media/characters/leonardo-lycheborne/back.svg",
  18775. extra: 392 / 366,
  18776. bottom: 0.01
  18777. }
  18778. },
  18779. hand: {
  18780. height: math.unit(1.08, "feet"),
  18781. name: "Hand",
  18782. image: {
  18783. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18784. }
  18785. },
  18786. foot: {
  18787. height: math.unit(1.32, "feet"),
  18788. name: "Foot",
  18789. image: {
  18790. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18791. }
  18792. },
  18793. were: {
  18794. height: math.unit(20, "feet"),
  18795. weight: math.unit(7800, "lb"),
  18796. name: "Were",
  18797. image: {
  18798. source: "./media/characters/leonardo-lycheborne/were.svg",
  18799. extra: 308 / 294,
  18800. bottom: 0.048
  18801. }
  18802. },
  18803. feral: {
  18804. height: math.unit(7.5, "feet"),
  18805. weight: math.unit(600, "lb"),
  18806. name: "Feral",
  18807. image: {
  18808. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18809. extra: 210 / 186,
  18810. bottom: 0.108
  18811. }
  18812. },
  18813. taur: {
  18814. height: math.unit(11, "feet"),
  18815. weight: math.unit(3300, "lb"),
  18816. name: "Taur",
  18817. image: {
  18818. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18819. extra: 320 / 303,
  18820. bottom: 0.025
  18821. }
  18822. },
  18823. barghest: {
  18824. height: math.unit(11, "feet"),
  18825. weight: math.unit(1300, "lb"),
  18826. name: "Barghest",
  18827. image: {
  18828. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18829. extra: 323 / 302,
  18830. bottom: 0.027
  18831. }
  18832. },
  18833. dick: {
  18834. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18835. name: "Dick",
  18836. image: {
  18837. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18838. }
  18839. },
  18840. dickWere: {
  18841. height: math.unit((20) / 3.8, "feet"),
  18842. name: "Dick (Were)",
  18843. image: {
  18844. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18845. }
  18846. },
  18847. },
  18848. [
  18849. {
  18850. name: "Normal",
  18851. height: math.unit(6 + 1 / 12, "feet"),
  18852. default: true
  18853. },
  18854. ]
  18855. ))
  18856. characterMakers.push(() => makeCharacter(
  18857. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18858. {
  18859. front: {
  18860. height: math.unit(10, "feet"),
  18861. weight: math.unit(350, "lb"),
  18862. name: "Front",
  18863. image: {
  18864. source: "./media/characters/jet/front.svg",
  18865. extra: 2050 / 1980,
  18866. bottom: 0.013
  18867. }
  18868. },
  18869. back: {
  18870. height: math.unit(10, "feet"),
  18871. weight: math.unit(350, "lb"),
  18872. name: "Back",
  18873. image: {
  18874. source: "./media/characters/jet/back.svg",
  18875. extra: 2050 / 1980,
  18876. bottom: 0.013
  18877. }
  18878. },
  18879. },
  18880. [
  18881. {
  18882. name: "Micro",
  18883. height: math.unit(6, "inches")
  18884. },
  18885. {
  18886. name: "Normal",
  18887. height: math.unit(10, "feet"),
  18888. default: true
  18889. },
  18890. {
  18891. name: "Macro",
  18892. height: math.unit(100, "feet")
  18893. },
  18894. ]
  18895. ))
  18896. characterMakers.push(() => makeCharacter(
  18897. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18898. {
  18899. front: {
  18900. height: math.unit(15, "feet"),
  18901. weight: math.unit(2800, "lb"),
  18902. name: "Front",
  18903. image: {
  18904. source: "./media/characters/tanarath/front.svg",
  18905. extra: 2392 / 2220,
  18906. bottom: 0.03
  18907. }
  18908. },
  18909. back: {
  18910. height: math.unit(15, "feet"),
  18911. weight: math.unit(2800, "lb"),
  18912. name: "Back",
  18913. image: {
  18914. source: "./media/characters/tanarath/back.svg",
  18915. extra: 2392 / 2220,
  18916. bottom: 0.03
  18917. }
  18918. },
  18919. },
  18920. [
  18921. {
  18922. name: "Normal",
  18923. height: math.unit(15, "feet"),
  18924. default: true
  18925. },
  18926. ]
  18927. ))
  18928. characterMakers.push(() => makeCharacter(
  18929. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18930. {
  18931. front: {
  18932. height: math.unit(7 + 1 / 12, "feet"),
  18933. weight: math.unit(175, "lb"),
  18934. name: "Front",
  18935. image: {
  18936. source: "./media/characters/patty-cattybatty/front.svg",
  18937. extra: 908 / 874,
  18938. bottom: 0.025
  18939. }
  18940. },
  18941. },
  18942. [
  18943. {
  18944. name: "Micro",
  18945. height: math.unit(1, "inch")
  18946. },
  18947. {
  18948. name: "Normal",
  18949. height: math.unit(7 + 1 / 12, "feet")
  18950. },
  18951. {
  18952. name: "Mini Macro",
  18953. height: math.unit(155, "feet")
  18954. },
  18955. {
  18956. name: "Macro",
  18957. height: math.unit(1077, "feet")
  18958. },
  18959. {
  18960. name: "Mega Macro",
  18961. height: math.unit(47650, "feet"),
  18962. default: true
  18963. },
  18964. {
  18965. name: "Giga Macro",
  18966. height: math.unit(440, "miles")
  18967. },
  18968. {
  18969. name: "Tera Macro",
  18970. height: math.unit(8700, "miles")
  18971. },
  18972. {
  18973. name: "Planetary Macro",
  18974. height: math.unit(32700, "miles")
  18975. },
  18976. {
  18977. name: "Solar Macro",
  18978. height: math.unit(550000, "miles")
  18979. },
  18980. {
  18981. name: "Celestial Macro",
  18982. height: math.unit(2.5, "AU")
  18983. },
  18984. ]
  18985. ))
  18986. characterMakers.push(() => makeCharacter(
  18987. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18988. {
  18989. front: {
  18990. height: math.unit(4 + 5 / 12, "feet"),
  18991. weight: math.unit(90, "lb"),
  18992. name: "Front",
  18993. image: {
  18994. source: "./media/characters/cappu/front.svg",
  18995. extra: 1247 / 1152,
  18996. bottom: 0.012
  18997. }
  18998. },
  18999. },
  19000. [
  19001. {
  19002. name: "Normal",
  19003. height: math.unit(4 + 5 / 12, "feet"),
  19004. default: true
  19005. },
  19006. ]
  19007. ))
  19008. characterMakers.push(() => makeCharacter(
  19009. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19010. {
  19011. frontDressed: {
  19012. height: math.unit(70, "cm"),
  19013. weight: math.unit(6, "kg"),
  19014. name: "Front (Dressed)",
  19015. image: {
  19016. source: "./media/characters/sebi/front-dressed.svg",
  19017. extra: 713.5 / 686.5,
  19018. bottom: 0.003
  19019. }
  19020. },
  19021. front: {
  19022. height: math.unit(70, "cm"),
  19023. weight: math.unit(5, "kg"),
  19024. name: "Front",
  19025. image: {
  19026. source: "./media/characters/sebi/front.svg",
  19027. extra: 713.5 / 686.5,
  19028. bottom: 0.003
  19029. }
  19030. }
  19031. },
  19032. [
  19033. {
  19034. name: "Normal",
  19035. height: math.unit(70, "cm"),
  19036. default: true
  19037. },
  19038. {
  19039. name: "Macro",
  19040. height: math.unit(8, "meters")
  19041. },
  19042. ]
  19043. ))
  19044. characterMakers.push(() => makeCharacter(
  19045. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19046. {
  19047. front: {
  19048. height: math.unit(6, "feet"),
  19049. weight: math.unit(150, "lb"),
  19050. name: "Front",
  19051. image: {
  19052. source: "./media/characters/typhek/front.svg",
  19053. extra: 1948 / 1929,
  19054. bottom: 0.025
  19055. }
  19056. },
  19057. side: {
  19058. height: math.unit(6, "feet"),
  19059. weight: math.unit(150, "lb"),
  19060. name: "Side",
  19061. image: {
  19062. source: "./media/characters/typhek/side.svg",
  19063. extra: 2034 / 2010,
  19064. bottom: 0.003
  19065. }
  19066. },
  19067. back: {
  19068. height: math.unit(6, "feet"),
  19069. weight: math.unit(150, "lb"),
  19070. name: "Back",
  19071. image: {
  19072. source: "./media/characters/typhek/back.svg",
  19073. extra: 2005 / 1978,
  19074. bottom: 0.004
  19075. }
  19076. },
  19077. palm: {
  19078. height: math.unit(1.2, "feet"),
  19079. name: "Palm",
  19080. image: {
  19081. source: "./media/characters/typhek/palm.svg"
  19082. }
  19083. },
  19084. fist: {
  19085. height: math.unit(1.1, "feet"),
  19086. name: "Fist",
  19087. image: {
  19088. source: "./media/characters/typhek/fist.svg"
  19089. }
  19090. },
  19091. foot: {
  19092. height: math.unit(1.57, "feet"),
  19093. name: "Foot",
  19094. image: {
  19095. source: "./media/characters/typhek/foot.svg"
  19096. }
  19097. },
  19098. sole: {
  19099. height: math.unit(2.05, "feet"),
  19100. name: "Sole",
  19101. image: {
  19102. source: "./media/characters/typhek/sole.svg"
  19103. }
  19104. },
  19105. },
  19106. [
  19107. {
  19108. name: "Macro",
  19109. height: math.unit(40, "stories"),
  19110. default: true
  19111. },
  19112. {
  19113. name: "Megamacro",
  19114. height: math.unit(1, "mile")
  19115. },
  19116. {
  19117. name: "Gigamacro",
  19118. height: math.unit(4000, "solarradii")
  19119. },
  19120. {
  19121. name: "Universal",
  19122. height: math.unit(1.1, "universes")
  19123. }
  19124. ]
  19125. ))
  19126. characterMakers.push(() => makeCharacter(
  19127. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19128. {
  19129. side: {
  19130. height: math.unit(5 + 7 / 12, "feet"),
  19131. weight: math.unit(150, "lb"),
  19132. name: "Side",
  19133. image: {
  19134. source: "./media/characters/kassy/side.svg",
  19135. extra: 1280 / 1225,
  19136. bottom: 0.002
  19137. }
  19138. },
  19139. front: {
  19140. height: math.unit(5 + 7 / 12, "feet"),
  19141. weight: math.unit(150, "lb"),
  19142. name: "Front",
  19143. image: {
  19144. source: "./media/characters/kassy/front.svg",
  19145. extra: 1280 / 1225,
  19146. bottom: 0.025
  19147. }
  19148. },
  19149. back: {
  19150. height: math.unit(5 + 7 / 12, "feet"),
  19151. weight: math.unit(150, "lb"),
  19152. name: "Back",
  19153. image: {
  19154. source: "./media/characters/kassy/back.svg",
  19155. extra: 1280 / 1225,
  19156. bottom: 0.002
  19157. }
  19158. },
  19159. foot: {
  19160. height: math.unit(1.266, "feet"),
  19161. name: "Foot",
  19162. image: {
  19163. source: "./media/characters/kassy/foot.svg"
  19164. }
  19165. },
  19166. },
  19167. [
  19168. {
  19169. name: "Normal",
  19170. height: math.unit(5 + 7 / 12, "feet")
  19171. },
  19172. {
  19173. name: "Macro",
  19174. height: math.unit(137, "feet"),
  19175. default: true
  19176. },
  19177. {
  19178. name: "Megamacro",
  19179. height: math.unit(1, "mile")
  19180. },
  19181. ]
  19182. ))
  19183. characterMakers.push(() => makeCharacter(
  19184. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19185. {
  19186. front: {
  19187. height: math.unit(6 + 1 / 12, "feet"),
  19188. weight: math.unit(200, "lb"),
  19189. name: "Front",
  19190. image: {
  19191. source: "./media/characters/neil/front.svg",
  19192. extra: 1326 / 1250,
  19193. bottom: 0.023
  19194. }
  19195. },
  19196. },
  19197. [
  19198. {
  19199. name: "Normal",
  19200. height: math.unit(6 + 1 / 12, "feet"),
  19201. default: true
  19202. },
  19203. {
  19204. name: "Macro",
  19205. height: math.unit(200, "feet")
  19206. },
  19207. ]
  19208. ))
  19209. characterMakers.push(() => makeCharacter(
  19210. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19211. {
  19212. front: {
  19213. height: math.unit(5 + 9 / 12, "feet"),
  19214. weight: math.unit(190, "lb"),
  19215. name: "Front",
  19216. image: {
  19217. source: "./media/characters/atticus/front.svg",
  19218. extra: 2934 / 2785,
  19219. bottom: 0.025
  19220. }
  19221. },
  19222. },
  19223. [
  19224. {
  19225. name: "Normal",
  19226. height: math.unit(5 + 9 / 12, "feet"),
  19227. default: true
  19228. },
  19229. {
  19230. name: "Macro",
  19231. height: math.unit(180, "feet")
  19232. },
  19233. ]
  19234. ))
  19235. characterMakers.push(() => makeCharacter(
  19236. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19237. {
  19238. side: {
  19239. height: math.unit(9, "feet"),
  19240. weight: math.unit(650, "lb"),
  19241. name: "Side",
  19242. image: {
  19243. source: "./media/characters/milo/side.svg",
  19244. extra: 2644 / 2310,
  19245. bottom: 0.032
  19246. }
  19247. },
  19248. },
  19249. [
  19250. {
  19251. name: "Normal",
  19252. height: math.unit(9, "feet"),
  19253. default: true
  19254. },
  19255. {
  19256. name: "Macro",
  19257. height: math.unit(300, "feet")
  19258. },
  19259. ]
  19260. ))
  19261. characterMakers.push(() => makeCharacter(
  19262. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19263. {
  19264. side: {
  19265. height: math.unit(8, "meters"),
  19266. weight: math.unit(90000, "kg"),
  19267. name: "Side",
  19268. image: {
  19269. source: "./media/characters/ijzer/side.svg",
  19270. extra: 2756 / 1600,
  19271. bottom: 0.01
  19272. }
  19273. },
  19274. },
  19275. [
  19276. {
  19277. name: "Small",
  19278. height: math.unit(3, "meters")
  19279. },
  19280. {
  19281. name: "Normal",
  19282. height: math.unit(8, "meters"),
  19283. default: true
  19284. },
  19285. {
  19286. name: "Normal+",
  19287. height: math.unit(10, "meters")
  19288. },
  19289. {
  19290. name: "Bigger",
  19291. height: math.unit(24, "meters")
  19292. },
  19293. {
  19294. name: "Huge",
  19295. height: math.unit(80, "meters")
  19296. },
  19297. ]
  19298. ))
  19299. characterMakers.push(() => makeCharacter(
  19300. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19301. {
  19302. front: {
  19303. height: math.unit(6 + 2 / 12, "feet"),
  19304. weight: math.unit(153, "lb"),
  19305. name: "Front",
  19306. image: {
  19307. source: "./media/characters/luca-cervicum/front.svg",
  19308. extra: 370 / 327,
  19309. bottom: 0.015
  19310. }
  19311. },
  19312. back: {
  19313. height: math.unit(6 + 2 / 12, "feet"),
  19314. weight: math.unit(153, "lb"),
  19315. name: "Back",
  19316. image: {
  19317. source: "./media/characters/luca-cervicum/back.svg",
  19318. extra: 367 / 333,
  19319. bottom: 0.005
  19320. }
  19321. },
  19322. frontGear: {
  19323. height: math.unit(6 + 2 / 12, "feet"),
  19324. weight: math.unit(173, "lb"),
  19325. name: "Front (Gear)",
  19326. image: {
  19327. source: "./media/characters/luca-cervicum/front-gear.svg",
  19328. extra: 377 / 333,
  19329. bottom: 0.006
  19330. }
  19331. },
  19332. },
  19333. [
  19334. {
  19335. name: "Normal",
  19336. height: math.unit(6 + 2 / 12, "feet"),
  19337. default: true
  19338. },
  19339. ]
  19340. ))
  19341. characterMakers.push(() => makeCharacter(
  19342. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19343. {
  19344. front: {
  19345. height: math.unit(6 + 1 / 12, "feet"),
  19346. weight: math.unit(304, "lb"),
  19347. name: "Front",
  19348. image: {
  19349. source: "./media/characters/oliver/front.svg",
  19350. extra: 157 / 143,
  19351. bottom: 0.08
  19352. }
  19353. },
  19354. },
  19355. [
  19356. {
  19357. name: "Normal",
  19358. height: math.unit(6 + 1 / 12, "feet"),
  19359. default: true
  19360. },
  19361. ]
  19362. ))
  19363. characterMakers.push(() => makeCharacter(
  19364. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19365. {
  19366. front: {
  19367. height: math.unit(5 + 7 / 12, "feet"),
  19368. weight: math.unit(140, "lb"),
  19369. name: "Front",
  19370. image: {
  19371. source: "./media/characters/shane/front.svg",
  19372. extra: 304 / 289,
  19373. bottom: 0.005
  19374. }
  19375. },
  19376. },
  19377. [
  19378. {
  19379. name: "Normal",
  19380. height: math.unit(5 + 7 / 12, "feet"),
  19381. default: true
  19382. },
  19383. ]
  19384. ))
  19385. characterMakers.push(() => makeCharacter(
  19386. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19387. {
  19388. front: {
  19389. height: math.unit(5 + 9 / 12, "feet"),
  19390. weight: math.unit(178, "lb"),
  19391. name: "Front",
  19392. image: {
  19393. source: "./media/characters/shin/front.svg",
  19394. extra: 159 / 151,
  19395. bottom: 0.015
  19396. }
  19397. },
  19398. },
  19399. [
  19400. {
  19401. name: "Normal",
  19402. height: math.unit(5 + 9 / 12, "feet"),
  19403. default: true
  19404. },
  19405. ]
  19406. ))
  19407. characterMakers.push(() => makeCharacter(
  19408. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19409. {
  19410. front: {
  19411. height: math.unit(5 + 10 / 12, "feet"),
  19412. weight: math.unit(168, "lb"),
  19413. name: "Front",
  19414. image: {
  19415. source: "./media/characters/xerxes/front.svg",
  19416. extra: 282 / 260,
  19417. bottom: 0.045
  19418. }
  19419. },
  19420. },
  19421. [
  19422. {
  19423. name: "Normal",
  19424. height: math.unit(5 + 10 / 12, "feet"),
  19425. default: true
  19426. },
  19427. ]
  19428. ))
  19429. characterMakers.push(() => makeCharacter(
  19430. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19431. {
  19432. front: {
  19433. height: math.unit(6 + 7 / 12, "feet"),
  19434. weight: math.unit(208, "lb"),
  19435. name: "Front",
  19436. image: {
  19437. source: "./media/characters/chaska/front.svg",
  19438. extra: 332 / 319,
  19439. bottom: 0.015
  19440. }
  19441. },
  19442. },
  19443. [
  19444. {
  19445. name: "Normal",
  19446. height: math.unit(6 + 7 / 12, "feet"),
  19447. default: true
  19448. },
  19449. ]
  19450. ))
  19451. characterMakers.push(() => makeCharacter(
  19452. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19453. {
  19454. front: {
  19455. height: math.unit(5 + 8 / 12, "feet"),
  19456. weight: math.unit(208, "lb"),
  19457. name: "Front",
  19458. image: {
  19459. source: "./media/characters/enuk/front.svg",
  19460. extra: 437 / 406,
  19461. bottom: 0.02
  19462. }
  19463. },
  19464. },
  19465. [
  19466. {
  19467. name: "Normal",
  19468. height: math.unit(5 + 8 / 12, "feet"),
  19469. default: true
  19470. },
  19471. ]
  19472. ))
  19473. characterMakers.push(() => makeCharacter(
  19474. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19475. {
  19476. front: {
  19477. height: math.unit(5 + 10 / 12, "feet"),
  19478. weight: math.unit(252, "lb"),
  19479. name: "Front",
  19480. image: {
  19481. source: "./media/characters/bruun/front.svg",
  19482. extra: 197 / 187,
  19483. bottom: 0.012
  19484. }
  19485. },
  19486. },
  19487. [
  19488. {
  19489. name: "Normal",
  19490. height: math.unit(5 + 10 / 12, "feet"),
  19491. default: true
  19492. },
  19493. ]
  19494. ))
  19495. characterMakers.push(() => makeCharacter(
  19496. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19497. {
  19498. front: {
  19499. height: math.unit(6 + 10 / 12, "feet"),
  19500. weight: math.unit(255, "lb"),
  19501. name: "Front",
  19502. image: {
  19503. source: "./media/characters/alexeev/front.svg",
  19504. extra: 213 / 200,
  19505. bottom: 0.05
  19506. }
  19507. },
  19508. },
  19509. [
  19510. {
  19511. name: "Normal",
  19512. height: math.unit(6 + 10 / 12, "feet"),
  19513. default: true
  19514. },
  19515. ]
  19516. ))
  19517. characterMakers.push(() => makeCharacter(
  19518. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19519. {
  19520. front: {
  19521. height: math.unit(2 + 8 / 12, "feet"),
  19522. weight: math.unit(22, "lb"),
  19523. name: "Front",
  19524. image: {
  19525. source: "./media/characters/evelyn/front.svg",
  19526. extra: 208 / 180
  19527. }
  19528. },
  19529. },
  19530. [
  19531. {
  19532. name: "Normal",
  19533. height: math.unit(2 + 8 / 12, "feet"),
  19534. default: true
  19535. },
  19536. ]
  19537. ))
  19538. characterMakers.push(() => makeCharacter(
  19539. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19540. {
  19541. front: {
  19542. height: math.unit(5 + 9 / 12, "feet"),
  19543. weight: math.unit(139, "lb"),
  19544. name: "Front",
  19545. image: {
  19546. source: "./media/characters/inca/front.svg",
  19547. extra: 294 / 291,
  19548. bottom: 0.03
  19549. }
  19550. },
  19551. },
  19552. [
  19553. {
  19554. name: "Normal",
  19555. height: math.unit(5 + 9 / 12, "feet"),
  19556. default: true
  19557. },
  19558. ]
  19559. ))
  19560. characterMakers.push(() => makeCharacter(
  19561. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19562. {
  19563. front: {
  19564. height: math.unit(5 + 1 / 12, "feet"),
  19565. weight: math.unit(84, "lb"),
  19566. name: "Front",
  19567. image: {
  19568. source: "./media/characters/magdalene/front.svg",
  19569. extra: 293 / 273
  19570. }
  19571. },
  19572. },
  19573. [
  19574. {
  19575. name: "Normal",
  19576. height: math.unit(5 + 1 / 12, "feet"),
  19577. default: true
  19578. },
  19579. ]
  19580. ))
  19581. characterMakers.push(() => makeCharacter(
  19582. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19583. {
  19584. front: {
  19585. height: math.unit(6 + 3 / 12, "feet"),
  19586. weight: math.unit(185, "lb"),
  19587. name: "Front",
  19588. image: {
  19589. source: "./media/characters/mera/front.svg",
  19590. extra: 291 / 277,
  19591. bottom: 0.03
  19592. }
  19593. },
  19594. },
  19595. [
  19596. {
  19597. name: "Normal",
  19598. height: math.unit(6 + 3 / 12, "feet"),
  19599. default: true
  19600. },
  19601. ]
  19602. ))
  19603. characterMakers.push(() => makeCharacter(
  19604. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19605. {
  19606. front: {
  19607. height: math.unit(6 + 7 / 12, "feet"),
  19608. weight: math.unit(160, "lb"),
  19609. name: "Front",
  19610. image: {
  19611. source: "./media/characters/ceres/front.svg",
  19612. extra: 1023 / 950,
  19613. bottom: 0.027
  19614. }
  19615. },
  19616. back: {
  19617. height: math.unit(6 + 7 / 12, "feet"),
  19618. weight: math.unit(160, "lb"),
  19619. name: "Back",
  19620. image: {
  19621. source: "./media/characters/ceres/back.svg",
  19622. extra: 1023 / 950
  19623. }
  19624. },
  19625. },
  19626. [
  19627. {
  19628. name: "Normal",
  19629. height: math.unit(6 + 7 / 12, "feet"),
  19630. default: true
  19631. },
  19632. ]
  19633. ))
  19634. characterMakers.push(() => makeCharacter(
  19635. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19636. {
  19637. front: {
  19638. height: math.unit(5 + 10 / 12, "feet"),
  19639. weight: math.unit(150, "lb"),
  19640. name: "Front",
  19641. image: {
  19642. source: "./media/characters/kris/front.svg",
  19643. extra: 885 / 803,
  19644. bottom: 0.03
  19645. }
  19646. },
  19647. },
  19648. [
  19649. {
  19650. name: "Normal",
  19651. height: math.unit(5 + 10 / 12, "feet"),
  19652. default: true
  19653. },
  19654. ]
  19655. ))
  19656. characterMakers.push(() => makeCharacter(
  19657. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19658. {
  19659. front: {
  19660. height: math.unit(7, "feet"),
  19661. weight: math.unit(120, "kg"),
  19662. name: "Front",
  19663. image: {
  19664. source: "./media/characters/taluthus/front.svg",
  19665. extra: 903 / 833,
  19666. bottom: 0.015
  19667. }
  19668. },
  19669. },
  19670. [
  19671. {
  19672. name: "Normal",
  19673. height: math.unit(7, "feet"),
  19674. default: true
  19675. },
  19676. {
  19677. name: "Macro",
  19678. height: math.unit(300, "feet")
  19679. },
  19680. ]
  19681. ))
  19682. characterMakers.push(() => makeCharacter(
  19683. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19684. {
  19685. front: {
  19686. height: math.unit(5 + 9 / 12, "feet"),
  19687. weight: math.unit(145, "lb"),
  19688. name: "Front",
  19689. image: {
  19690. source: "./media/characters/dawn/front.svg",
  19691. extra: 2094 / 2016,
  19692. bottom: 0.025
  19693. }
  19694. },
  19695. back: {
  19696. height: math.unit(5 + 9 / 12, "feet"),
  19697. weight: math.unit(160, "lb"),
  19698. name: "Back",
  19699. image: {
  19700. source: "./media/characters/dawn/back.svg",
  19701. extra: 2112 / 2080,
  19702. bottom: 0.005
  19703. }
  19704. },
  19705. },
  19706. [
  19707. {
  19708. name: "Normal",
  19709. height: math.unit(6 + 7 / 12, "feet"),
  19710. default: true
  19711. },
  19712. ]
  19713. ))
  19714. characterMakers.push(() => makeCharacter(
  19715. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19716. {
  19717. anthro: {
  19718. height: math.unit(8 + 3 / 12, "feet"),
  19719. weight: math.unit(450, "lb"),
  19720. name: "Anthro",
  19721. image: {
  19722. source: "./media/characters/arador/anthro.svg",
  19723. extra: 1835 / 1718,
  19724. bottom: 0.025
  19725. }
  19726. },
  19727. feral: {
  19728. height: math.unit(4, "feet"),
  19729. weight: math.unit(200, "lb"),
  19730. name: "Feral",
  19731. image: {
  19732. source: "./media/characters/arador/feral.svg",
  19733. extra: 1683 / 1514,
  19734. bottom: 0.07
  19735. }
  19736. },
  19737. },
  19738. [
  19739. {
  19740. name: "Normal",
  19741. height: math.unit(8 + 3 / 12, "feet")
  19742. },
  19743. {
  19744. name: "Macro",
  19745. height: math.unit(82.5, "feet"),
  19746. default: true
  19747. },
  19748. ]
  19749. ))
  19750. characterMakers.push(() => makeCharacter(
  19751. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19752. {
  19753. front: {
  19754. height: math.unit(5 + 10 / 12, "feet"),
  19755. weight: math.unit(125, "lb"),
  19756. name: "Front",
  19757. image: {
  19758. source: "./media/characters/dharsi/front.svg",
  19759. extra: 716 / 630,
  19760. bottom: 0.035
  19761. }
  19762. },
  19763. },
  19764. [
  19765. {
  19766. name: "Nano",
  19767. height: math.unit(100, "nm")
  19768. },
  19769. {
  19770. name: "Micro",
  19771. height: math.unit(2, "inches")
  19772. },
  19773. {
  19774. name: "Normal",
  19775. height: math.unit(5 + 10 / 12, "feet"),
  19776. default: true
  19777. },
  19778. {
  19779. name: "Macro",
  19780. height: math.unit(1000, "feet")
  19781. },
  19782. {
  19783. name: "Megamacro",
  19784. height: math.unit(10, "miles")
  19785. },
  19786. {
  19787. name: "Gigamacro",
  19788. height: math.unit(3000, "miles")
  19789. },
  19790. {
  19791. name: "Teramacro",
  19792. height: math.unit(500000, "miles")
  19793. },
  19794. {
  19795. name: "Teramacro+",
  19796. height: math.unit(30, "galaxies")
  19797. },
  19798. ]
  19799. ))
  19800. characterMakers.push(() => makeCharacter(
  19801. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19802. {
  19803. front: {
  19804. height: math.unit(6, "feet"),
  19805. weight: math.unit(150, "lb"),
  19806. name: "Front",
  19807. image: {
  19808. source: "./media/characters/deathy/front.svg",
  19809. extra: 1552 / 1463,
  19810. bottom: 0.025
  19811. }
  19812. },
  19813. side: {
  19814. height: math.unit(6, "feet"),
  19815. weight: math.unit(150, "lb"),
  19816. name: "Side",
  19817. image: {
  19818. source: "./media/characters/deathy/side.svg",
  19819. extra: 1604 / 1455,
  19820. bottom: 0.025
  19821. }
  19822. },
  19823. back: {
  19824. height: math.unit(6, "feet"),
  19825. weight: math.unit(150, "lb"),
  19826. name: "Back",
  19827. image: {
  19828. source: "./media/characters/deathy/back.svg",
  19829. extra: 1580 / 1463,
  19830. bottom: 0.005
  19831. }
  19832. },
  19833. },
  19834. [
  19835. {
  19836. name: "Micro",
  19837. height: math.unit(5, "millimeters")
  19838. },
  19839. {
  19840. name: "Normal",
  19841. height: math.unit(6 + 5 / 12, "feet"),
  19842. default: true
  19843. },
  19844. ]
  19845. ))
  19846. characterMakers.push(() => makeCharacter(
  19847. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19848. {
  19849. front: {
  19850. height: math.unit(16, "feet"),
  19851. weight: math.unit(4000, "lb"),
  19852. name: "Front",
  19853. image: {
  19854. source: "./media/characters/juniper/front.svg",
  19855. bottom: 0.04
  19856. }
  19857. },
  19858. },
  19859. [
  19860. {
  19861. name: "Normal",
  19862. height: math.unit(16, "feet"),
  19863. default: true
  19864. },
  19865. ]
  19866. ))
  19867. characterMakers.push(() => makeCharacter(
  19868. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19869. {
  19870. front: {
  19871. height: math.unit(6, "feet"),
  19872. weight: math.unit(150, "lb"),
  19873. name: "Front",
  19874. image: {
  19875. source: "./media/characters/hipster/front.svg",
  19876. extra: 1312 / 1209,
  19877. bottom: 0.025
  19878. }
  19879. },
  19880. back: {
  19881. height: math.unit(6, "feet"),
  19882. weight: math.unit(150, "lb"),
  19883. name: "Back",
  19884. image: {
  19885. source: "./media/characters/hipster/back.svg",
  19886. extra: 1281 / 1196,
  19887. bottom: 0.01
  19888. }
  19889. },
  19890. },
  19891. [
  19892. {
  19893. name: "Micro",
  19894. height: math.unit(1, "mm")
  19895. },
  19896. {
  19897. name: "Normal",
  19898. height: math.unit(4, "inches"),
  19899. default: true
  19900. },
  19901. {
  19902. name: "Macro",
  19903. height: math.unit(500, "feet")
  19904. },
  19905. {
  19906. name: "Megamacro",
  19907. height: math.unit(1000, "miles")
  19908. },
  19909. ]
  19910. ))
  19911. characterMakers.push(() => makeCharacter(
  19912. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19913. {
  19914. front: {
  19915. height: math.unit(6, "feet"),
  19916. weight: math.unit(150, "lb"),
  19917. name: "Front",
  19918. image: {
  19919. source: "./media/characters/tendirmuldr/front.svg",
  19920. extra: 1878 / 1772,
  19921. bottom: 0.015
  19922. }
  19923. },
  19924. },
  19925. [
  19926. {
  19927. name: "Megamacro",
  19928. height: math.unit(1500, "miles"),
  19929. default: true
  19930. },
  19931. ]
  19932. ))
  19933. characterMakers.push(() => makeCharacter(
  19934. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19935. {
  19936. front: {
  19937. height: math.unit(14, "feet"),
  19938. weight: math.unit(12000, "lb"),
  19939. name: "Front",
  19940. image: {
  19941. source: "./media/characters/mort/front.svg",
  19942. extra: 365 / 318,
  19943. bottom: 0.01
  19944. }
  19945. },
  19946. side: {
  19947. height: math.unit(14, "feet"),
  19948. weight: math.unit(12000, "lb"),
  19949. name: "Side",
  19950. image: {
  19951. source: "./media/characters/mort/side.svg",
  19952. extra: 365 / 318,
  19953. bottom: 0.052
  19954. },
  19955. default: true
  19956. },
  19957. back: {
  19958. height: math.unit(14, "feet"),
  19959. weight: math.unit(12000, "lb"),
  19960. name: "Back",
  19961. image: {
  19962. source: "./media/characters/mort/back.svg",
  19963. extra: 371 / 332,
  19964. bottom: 0.18
  19965. }
  19966. },
  19967. },
  19968. [
  19969. {
  19970. name: "Normal",
  19971. height: math.unit(14, "feet"),
  19972. default: true
  19973. },
  19974. ]
  19975. ))
  19976. characterMakers.push(() => makeCharacter(
  19977. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19978. {
  19979. front: {
  19980. height: math.unit(8, "feet"),
  19981. weight: math.unit(1, "ton"),
  19982. name: "Front",
  19983. image: {
  19984. source: "./media/characters/lycoa/front.svg",
  19985. extra: 1875 / 1789,
  19986. bottom: 0.022
  19987. }
  19988. },
  19989. back: {
  19990. height: math.unit(8, "feet"),
  19991. weight: math.unit(1, "ton"),
  19992. name: "Back",
  19993. image: {
  19994. source: "./media/characters/lycoa/back.svg",
  19995. extra: 1835 / 1781,
  19996. bottom: 0.03
  19997. }
  19998. },
  19999. head: {
  20000. height: math.unit(2.1, "feet"),
  20001. name: "Head",
  20002. image: {
  20003. source: "./media/characters/lycoa/head.svg"
  20004. }
  20005. },
  20006. tailmaw: {
  20007. height: math.unit(1.9, "feet"),
  20008. name: "Tailmaw",
  20009. image: {
  20010. source: "./media/characters/lycoa/tailmaw.svg"
  20011. }
  20012. },
  20013. tentacles: {
  20014. height: math.unit(2.1, "feet"),
  20015. name: "Tentacles",
  20016. image: {
  20017. source: "./media/characters/lycoa/tentacles.svg"
  20018. }
  20019. },
  20020. dick: {
  20021. height: math.unit(1.73, "feet"),
  20022. name: "Dick",
  20023. image: {
  20024. source: "./media/characters/lycoa/dick.svg"
  20025. }
  20026. },
  20027. },
  20028. [
  20029. {
  20030. name: "Normal",
  20031. height: math.unit(8, "feet"),
  20032. default: true
  20033. },
  20034. {
  20035. name: "Macro",
  20036. height: math.unit(30, "feet")
  20037. },
  20038. ]
  20039. ))
  20040. characterMakers.push(() => makeCharacter(
  20041. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20042. {
  20043. front: {
  20044. height: math.unit(4 + 2 / 12, "feet"),
  20045. weight: math.unit(70, "lb"),
  20046. name: "Front",
  20047. image: {
  20048. source: "./media/characters/naldara/front.svg",
  20049. extra: 841 / 720,
  20050. bottom: 0.04
  20051. }
  20052. },
  20053. naga: {
  20054. height: math.unit(23, "feet"),
  20055. weight: math.unit(15000, "kg"),
  20056. name: "Naga",
  20057. image: {
  20058. source: "./media/characters/naldara/naga.svg",
  20059. extra: 3290 / 2959,
  20060. bottom: 124 / 3432
  20061. }
  20062. },
  20063. },
  20064. [
  20065. {
  20066. name: "Normal",
  20067. height: math.unit(4 + 2 / 12, "feet"),
  20068. default: true
  20069. },
  20070. ]
  20071. ))
  20072. characterMakers.push(() => makeCharacter(
  20073. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20074. {
  20075. front: {
  20076. height: math.unit(13 + 7 / 12, "feet"),
  20077. weight: math.unit(1500, "lb"),
  20078. name: "Front",
  20079. image: {
  20080. source: "./media/characters/briar/front.svg",
  20081. extra: 626 / 596,
  20082. bottom: 0.08
  20083. }
  20084. },
  20085. },
  20086. [
  20087. {
  20088. name: "Normal",
  20089. height: math.unit(13 + 7 / 12, "feet"),
  20090. default: true
  20091. },
  20092. ]
  20093. ))
  20094. characterMakers.push(() => makeCharacter(
  20095. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20096. {
  20097. side: {
  20098. height: math.unit(10, "feet"),
  20099. weight: math.unit(500, "lb"),
  20100. name: "Side",
  20101. image: {
  20102. source: "./media/characters/vanguard/side.svg",
  20103. extra: 502 / 425,
  20104. bottom: 0.087
  20105. }
  20106. },
  20107. },
  20108. [
  20109. {
  20110. name: "Normal",
  20111. height: math.unit(10, "feet"),
  20112. default: true
  20113. },
  20114. ]
  20115. ))
  20116. characterMakers.push(() => makeCharacter(
  20117. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20118. {
  20119. front: {
  20120. height: math.unit(7.5, "feet"),
  20121. weight: math.unit(2, "lb"),
  20122. name: "Front",
  20123. image: {
  20124. source: "./media/characters/artemis/front.svg",
  20125. extra: 1192 / 1075,
  20126. bottom: 0.07
  20127. }
  20128. },
  20129. frontNsfw: {
  20130. height: math.unit(7.5, "feet"),
  20131. weight: math.unit(2, "lb"),
  20132. name: "Front (NSFW)",
  20133. image: {
  20134. source: "./media/characters/artemis/front-nsfw.svg",
  20135. extra: 1192 / 1075,
  20136. bottom: 0.07
  20137. }
  20138. },
  20139. frontNsfwer: {
  20140. height: math.unit(7.5, "feet"),
  20141. weight: math.unit(2, "lb"),
  20142. name: "Front (NSFW-er)",
  20143. image: {
  20144. source: "./media/characters/artemis/front-nsfwer.svg",
  20145. extra: 1192 / 1075,
  20146. bottom: 0.07
  20147. }
  20148. },
  20149. side: {
  20150. height: math.unit(7.5, "feet"),
  20151. weight: math.unit(2, "lb"),
  20152. name: "Side",
  20153. image: {
  20154. source: "./media/characters/artemis/side.svg",
  20155. extra: 1192 / 1075,
  20156. bottom: 0.07
  20157. }
  20158. },
  20159. sideNsfw: {
  20160. height: math.unit(7.5, "feet"),
  20161. weight: math.unit(2, "lb"),
  20162. name: "Side (NSFW)",
  20163. image: {
  20164. source: "./media/characters/artemis/side-nsfw.svg",
  20165. extra: 1192 / 1075,
  20166. bottom: 0.07
  20167. }
  20168. },
  20169. sideNsfwer: {
  20170. height: math.unit(7.5, "feet"),
  20171. weight: math.unit(2, "lb"),
  20172. name: "Side (NSFW-er)",
  20173. image: {
  20174. source: "./media/characters/artemis/side-nsfwer.svg",
  20175. extra: 1192 / 1075,
  20176. bottom: 0.07
  20177. }
  20178. },
  20179. maw: {
  20180. height: math.unit(1.1, "feet"),
  20181. name: "Maw",
  20182. image: {
  20183. source: "./media/characters/artemis/maw.svg"
  20184. }
  20185. },
  20186. stomach: {
  20187. height: math.unit(0.95, "feet"),
  20188. name: "Stomach",
  20189. image: {
  20190. source: "./media/characters/artemis/stomach.svg"
  20191. }
  20192. },
  20193. dickCanine: {
  20194. height: math.unit(1, "feet"),
  20195. name: "Dick (Canine)",
  20196. image: {
  20197. source: "./media/characters/artemis/dick-canine.svg"
  20198. }
  20199. },
  20200. dickEquine: {
  20201. height: math.unit(0.85, "feet"),
  20202. name: "Dick (Equine)",
  20203. image: {
  20204. source: "./media/characters/artemis/dick-equine.svg"
  20205. }
  20206. },
  20207. dickExotic: {
  20208. height: math.unit(0.85, "feet"),
  20209. name: "Dick (Exotic)",
  20210. image: {
  20211. source: "./media/characters/artemis/dick-exotic.svg"
  20212. }
  20213. },
  20214. },
  20215. [
  20216. {
  20217. name: "Normal",
  20218. height: math.unit(7.5, "feet"),
  20219. default: true
  20220. },
  20221. {
  20222. name: "Enlarged",
  20223. height: math.unit(12, "feet")
  20224. },
  20225. ]
  20226. ))
  20227. characterMakers.push(() => makeCharacter(
  20228. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20229. {
  20230. front: {
  20231. height: math.unit(5 + 3 / 12, "feet"),
  20232. weight: math.unit(160, "lb"),
  20233. name: "Front",
  20234. image: {
  20235. source: "./media/characters/kira/front.svg",
  20236. extra: 906 / 786,
  20237. bottom: 0.01
  20238. }
  20239. },
  20240. back: {
  20241. height: math.unit(5 + 3 / 12, "feet"),
  20242. weight: math.unit(160, "lb"),
  20243. name: "Back",
  20244. image: {
  20245. source: "./media/characters/kira/back.svg",
  20246. extra: 882 / 757,
  20247. bottom: 0.005
  20248. }
  20249. },
  20250. frontDressed: {
  20251. height: math.unit(5 + 3 / 12, "feet"),
  20252. weight: math.unit(160, "lb"),
  20253. name: "Front (Dressed)",
  20254. image: {
  20255. source: "./media/characters/kira/front-dressed.svg",
  20256. extra: 906 / 786,
  20257. bottom: 0.01
  20258. }
  20259. },
  20260. beans: {
  20261. height: math.unit(0.92, "feet"),
  20262. name: "Beans",
  20263. image: {
  20264. source: "./media/characters/kira/beans.svg"
  20265. }
  20266. },
  20267. },
  20268. [
  20269. {
  20270. name: "Normal",
  20271. height: math.unit(5 + 3 / 12, "feet"),
  20272. default: true
  20273. },
  20274. ]
  20275. ))
  20276. characterMakers.push(() => makeCharacter(
  20277. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20278. {
  20279. front: {
  20280. height: math.unit(5 + 4 / 12, "feet"),
  20281. weight: math.unit(145, "lb"),
  20282. name: "Front",
  20283. image: {
  20284. source: "./media/characters/scramble/front.svg",
  20285. extra: 763 / 727,
  20286. bottom: 0.05
  20287. }
  20288. },
  20289. back: {
  20290. height: math.unit(5 + 4 / 12, "feet"),
  20291. weight: math.unit(145, "lb"),
  20292. name: "Back",
  20293. image: {
  20294. source: "./media/characters/scramble/back.svg",
  20295. extra: 826 / 737,
  20296. bottom: 0.002
  20297. }
  20298. },
  20299. },
  20300. [
  20301. {
  20302. name: "Normal",
  20303. height: math.unit(5 + 4 / 12, "feet"),
  20304. default: true
  20305. },
  20306. ]
  20307. ))
  20308. characterMakers.push(() => makeCharacter(
  20309. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20310. {
  20311. side: {
  20312. height: math.unit(6 + 2 / 12, "feet"),
  20313. weight: math.unit(190, "lb"),
  20314. name: "Side",
  20315. image: {
  20316. source: "./media/characters/biscuit/side.svg",
  20317. extra: 858 / 791,
  20318. bottom: 0.044
  20319. }
  20320. },
  20321. },
  20322. [
  20323. {
  20324. name: "Normal",
  20325. height: math.unit(6 + 2 / 12, "feet"),
  20326. default: true
  20327. },
  20328. ]
  20329. ))
  20330. characterMakers.push(() => makeCharacter(
  20331. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20332. {
  20333. front: {
  20334. height: math.unit(5 + 2 / 12, "feet"),
  20335. weight: math.unit(120, "lb"),
  20336. name: "Front",
  20337. image: {
  20338. source: "./media/characters/poffin/front.svg",
  20339. extra: 786 / 680,
  20340. bottom: 0.005
  20341. }
  20342. },
  20343. },
  20344. [
  20345. {
  20346. name: "Normal",
  20347. height: math.unit(5 + 2 / 12, "feet"),
  20348. default: true
  20349. },
  20350. ]
  20351. ))
  20352. characterMakers.push(() => makeCharacter(
  20353. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20354. {
  20355. front: {
  20356. height: math.unit(6 + 3 / 12, "feet"),
  20357. weight: math.unit(519, "lb"),
  20358. name: "Front",
  20359. image: {
  20360. source: "./media/characters/dhari/front.svg",
  20361. extra: 1048 / 946,
  20362. bottom: 0.015
  20363. }
  20364. },
  20365. back: {
  20366. height: math.unit(6 + 3 / 12, "feet"),
  20367. weight: math.unit(519, "lb"),
  20368. name: "Back",
  20369. image: {
  20370. source: "./media/characters/dhari/back.svg",
  20371. extra: 1048 / 931,
  20372. bottom: 0.005
  20373. }
  20374. },
  20375. frontDressed: {
  20376. height: math.unit(6 + 3 / 12, "feet"),
  20377. weight: math.unit(519, "lb"),
  20378. name: "Front (Dressed)",
  20379. image: {
  20380. source: "./media/characters/dhari/front-dressed.svg",
  20381. extra: 1713 / 1546,
  20382. bottom: 0.02
  20383. }
  20384. },
  20385. backDressed: {
  20386. height: math.unit(6 + 3 / 12, "feet"),
  20387. weight: math.unit(519, "lb"),
  20388. name: "Back (Dressed)",
  20389. image: {
  20390. source: "./media/characters/dhari/back-dressed.svg",
  20391. extra: 1699 / 1537,
  20392. bottom: 0.01
  20393. }
  20394. },
  20395. maw: {
  20396. height: math.unit(0.95, "feet"),
  20397. name: "Maw",
  20398. image: {
  20399. source: "./media/characters/dhari/maw.svg"
  20400. }
  20401. },
  20402. wereFront: {
  20403. height: math.unit(12 + 8 / 12, "feet"),
  20404. weight: math.unit(4000, "lb"),
  20405. name: "Front (Were)",
  20406. image: {
  20407. source: "./media/characters/dhari/were-front.svg",
  20408. extra: 1065 / 969,
  20409. bottom: 0.015
  20410. }
  20411. },
  20412. wereBack: {
  20413. height: math.unit(12 + 8 / 12, "feet"),
  20414. weight: math.unit(4000, "lb"),
  20415. name: "Back (Were)",
  20416. image: {
  20417. source: "./media/characters/dhari/were-back.svg",
  20418. extra: 1065 / 969,
  20419. bottom: 0.012
  20420. }
  20421. },
  20422. wereMaw: {
  20423. height: math.unit(0.625, "meters"),
  20424. name: "Maw (Were)",
  20425. image: {
  20426. source: "./media/characters/dhari/were-maw.svg"
  20427. }
  20428. },
  20429. },
  20430. [
  20431. {
  20432. name: "Normal",
  20433. height: math.unit(6 + 3 / 12, "feet"),
  20434. default: true
  20435. },
  20436. ]
  20437. ))
  20438. characterMakers.push(() => makeCharacter(
  20439. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20440. {
  20441. anthro: {
  20442. height: math.unit(5 + 7 / 12, "feet"),
  20443. weight: math.unit(175, "lb"),
  20444. name: "Anthro",
  20445. image: {
  20446. source: "./media/characters/rena-dyne/anthro.svg",
  20447. extra: 1849 / 1785,
  20448. bottom: 0.005
  20449. }
  20450. },
  20451. taur: {
  20452. height: math.unit(15 + 6 / 12, "feet"),
  20453. weight: math.unit(8000, "lb"),
  20454. name: "Taur",
  20455. image: {
  20456. source: "./media/characters/rena-dyne/taur.svg",
  20457. extra: 2315 / 2234,
  20458. bottom: 0.033
  20459. }
  20460. },
  20461. },
  20462. [
  20463. {
  20464. name: "Normal",
  20465. height: math.unit(5 + 7 / 12, "feet"),
  20466. default: true
  20467. },
  20468. ]
  20469. ))
  20470. characterMakers.push(() => makeCharacter(
  20471. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20472. {
  20473. front: {
  20474. height: math.unit(8, "feet"),
  20475. weight: math.unit(600, "lb"),
  20476. name: "Front",
  20477. image: {
  20478. source: "./media/characters/weremeep/front.svg",
  20479. extra: 967 / 862,
  20480. bottom: 0.01
  20481. }
  20482. },
  20483. },
  20484. [
  20485. {
  20486. name: "Normal",
  20487. height: math.unit(8, "feet"),
  20488. default: true
  20489. },
  20490. {
  20491. name: "Lorg",
  20492. height: math.unit(12, "feet")
  20493. },
  20494. {
  20495. name: "Oh Lawd She Comin'",
  20496. height: math.unit(20, "feet")
  20497. },
  20498. ]
  20499. ))
  20500. characterMakers.push(() => makeCharacter(
  20501. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20502. {
  20503. front: {
  20504. height: math.unit(4, "feet"),
  20505. weight: math.unit(90, "lb"),
  20506. name: "Front",
  20507. image: {
  20508. source: "./media/characters/reza/front.svg",
  20509. extra: 1183 / 1111,
  20510. bottom: 0.017
  20511. }
  20512. },
  20513. back: {
  20514. height: math.unit(4, "feet"),
  20515. weight: math.unit(90, "lb"),
  20516. name: "Back",
  20517. image: {
  20518. source: "./media/characters/reza/back.svg",
  20519. extra: 1183 / 1111,
  20520. bottom: 0.01
  20521. }
  20522. },
  20523. drake: {
  20524. height: math.unit(30, "feet"),
  20525. weight: math.unit(246960, "lb"),
  20526. name: "Drake",
  20527. image: {
  20528. source: "./media/characters/reza/drake.svg",
  20529. extra: 2350 / 2024,
  20530. bottom: 60.7 / 2403
  20531. }
  20532. },
  20533. },
  20534. [
  20535. {
  20536. name: "Normal",
  20537. height: math.unit(4, "feet"),
  20538. default: true
  20539. },
  20540. ]
  20541. ))
  20542. characterMakers.push(() => makeCharacter(
  20543. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20544. {
  20545. side: {
  20546. height: math.unit(15, "feet"),
  20547. weight: math.unit(14, "tons"),
  20548. name: "Side",
  20549. image: {
  20550. source: "./media/characters/athea/side.svg",
  20551. extra: 960 / 540,
  20552. bottom: 0.003
  20553. }
  20554. },
  20555. sitting: {
  20556. height: math.unit(6 * 2.85, "feet"),
  20557. weight: math.unit(14, "tons"),
  20558. name: "Sitting",
  20559. image: {
  20560. source: "./media/characters/athea/sitting.svg",
  20561. extra: 621 / 581,
  20562. bottom: 0.075
  20563. }
  20564. },
  20565. maw: {
  20566. height: math.unit(7.59498031496063, "feet"),
  20567. name: "Maw",
  20568. image: {
  20569. source: "./media/characters/athea/maw.svg"
  20570. }
  20571. },
  20572. },
  20573. [
  20574. {
  20575. name: "Lap Cat",
  20576. height: math.unit(2.5, "feet")
  20577. },
  20578. {
  20579. name: "Minimacro",
  20580. height: math.unit(15, "feet"),
  20581. default: true
  20582. },
  20583. {
  20584. name: "Macro",
  20585. height: math.unit(120, "feet")
  20586. },
  20587. {
  20588. name: "Macro+",
  20589. height: math.unit(640, "feet")
  20590. },
  20591. {
  20592. name: "Colossus",
  20593. height: math.unit(2.2, "miles")
  20594. },
  20595. ]
  20596. ))
  20597. characterMakers.push(() => makeCharacter(
  20598. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20599. {
  20600. front: {
  20601. height: math.unit(8 + 8 / 12, "feet"),
  20602. weight: math.unit(130, "kg"),
  20603. name: "Front",
  20604. image: {
  20605. source: "./media/characters/seroko/front.svg",
  20606. extra: 1385 / 1280,
  20607. bottom: 0.025
  20608. }
  20609. },
  20610. back: {
  20611. height: math.unit(8 + 8 / 12, "feet"),
  20612. weight: math.unit(130, "kg"),
  20613. name: "Back",
  20614. image: {
  20615. source: "./media/characters/seroko/back.svg",
  20616. extra: 1369 / 1238,
  20617. bottom: 0.018
  20618. }
  20619. },
  20620. frontDressed: {
  20621. height: math.unit(8 + 8 / 12, "feet"),
  20622. weight: math.unit(130, "kg"),
  20623. name: "Front (Dressed)",
  20624. image: {
  20625. source: "./media/characters/seroko/front-dressed.svg",
  20626. extra: 1366 / 1275,
  20627. bottom: 0.03
  20628. }
  20629. },
  20630. },
  20631. [
  20632. {
  20633. name: "Normal",
  20634. height: math.unit(8 + 8 / 12, "feet"),
  20635. default: true
  20636. },
  20637. ]
  20638. ))
  20639. characterMakers.push(() => makeCharacter(
  20640. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20641. {
  20642. front: {
  20643. height: math.unit(5.5, "feet"),
  20644. weight: math.unit(160, "lb"),
  20645. name: "Front",
  20646. image: {
  20647. source: "./media/characters/quatzi/front.svg",
  20648. extra: 2346 / 2242,
  20649. bottom: 0.015
  20650. }
  20651. },
  20652. },
  20653. [
  20654. {
  20655. name: "Normal",
  20656. height: math.unit(5.5, "feet"),
  20657. default: true
  20658. },
  20659. {
  20660. name: "Big",
  20661. height: math.unit(7.7, "feet")
  20662. },
  20663. ]
  20664. ))
  20665. characterMakers.push(() => makeCharacter(
  20666. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20667. {
  20668. front: {
  20669. height: math.unit(5 + 11 / 12, "feet"),
  20670. weight: math.unit(180, "lb"),
  20671. name: "Front",
  20672. image: {
  20673. source: "./media/characters/sen/front.svg",
  20674. extra: 1321 / 1254,
  20675. bottom: 0.015
  20676. }
  20677. },
  20678. side: {
  20679. height: math.unit(5 + 11 / 12, "feet"),
  20680. weight: math.unit(180, "lb"),
  20681. name: "Side",
  20682. image: {
  20683. source: "./media/characters/sen/side.svg",
  20684. extra: 1321 / 1254,
  20685. bottom: 0.007
  20686. }
  20687. },
  20688. back: {
  20689. height: math.unit(5 + 11 / 12, "feet"),
  20690. weight: math.unit(180, "lb"),
  20691. name: "Back",
  20692. image: {
  20693. source: "./media/characters/sen/back.svg",
  20694. extra: 1321 / 1254
  20695. }
  20696. },
  20697. },
  20698. [
  20699. {
  20700. name: "Normal",
  20701. height: math.unit(5 + 11 / 12, "feet"),
  20702. default: true
  20703. },
  20704. ]
  20705. ))
  20706. characterMakers.push(() => makeCharacter(
  20707. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20708. {
  20709. front: {
  20710. height: math.unit(166.6, "cm"),
  20711. weight: math.unit(66.6, "kg"),
  20712. name: "Front",
  20713. image: {
  20714. source: "./media/characters/fruity/front.svg",
  20715. extra: 1510 / 1386,
  20716. bottom: 0.04
  20717. }
  20718. },
  20719. back: {
  20720. height: math.unit(166.6, "cm"),
  20721. weight: math.unit(66.6, "lb"),
  20722. name: "Back",
  20723. image: {
  20724. source: "./media/characters/fruity/back.svg",
  20725. extra: 1563 / 1435,
  20726. bottom: 0.005
  20727. }
  20728. },
  20729. },
  20730. [
  20731. {
  20732. name: "Normal",
  20733. height: math.unit(166.6, "cm"),
  20734. default: true
  20735. },
  20736. {
  20737. name: "Demonic",
  20738. height: math.unit(166.6, "feet")
  20739. },
  20740. ]
  20741. ))
  20742. characterMakers.push(() => makeCharacter(
  20743. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20744. {
  20745. side: {
  20746. height: math.unit(10, "feet"),
  20747. weight: math.unit(500, "lb"),
  20748. name: "Side",
  20749. image: {
  20750. source: "./media/characters/zost/side.svg",
  20751. extra: 966 / 880,
  20752. bottom: 0.075
  20753. }
  20754. },
  20755. mawFront: {
  20756. height: math.unit(1.08, "meters"),
  20757. name: "Maw (Front)",
  20758. image: {
  20759. source: "./media/characters/zost/maw-front.svg"
  20760. }
  20761. },
  20762. mawSide: {
  20763. height: math.unit(2.66, "feet"),
  20764. name: "Maw (Side)",
  20765. image: {
  20766. source: "./media/characters/zost/maw-side.svg"
  20767. }
  20768. },
  20769. },
  20770. [
  20771. {
  20772. name: "Normal",
  20773. height: math.unit(10, "feet"),
  20774. default: true
  20775. },
  20776. ]
  20777. ))
  20778. characterMakers.push(() => makeCharacter(
  20779. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20780. {
  20781. front: {
  20782. height: math.unit(5 + 4 / 12, "feet"),
  20783. weight: math.unit(120, "lb"),
  20784. name: "Front",
  20785. image: {
  20786. source: "./media/characters/luci/front.svg",
  20787. extra: 1985 / 1884,
  20788. bottom: 0.04
  20789. }
  20790. },
  20791. back: {
  20792. height: math.unit(5 + 4 / 12, "feet"),
  20793. weight: math.unit(120, "lb"),
  20794. name: "Back",
  20795. image: {
  20796. source: "./media/characters/luci/back.svg",
  20797. extra: 1892 / 1791,
  20798. bottom: 0.002
  20799. }
  20800. },
  20801. },
  20802. [
  20803. {
  20804. name: "Normal",
  20805. height: math.unit(5 + 4 / 12, "feet"),
  20806. default: true
  20807. },
  20808. ]
  20809. ))
  20810. characterMakers.push(() => makeCharacter(
  20811. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20812. {
  20813. front: {
  20814. height: math.unit(1500, "feet"),
  20815. weight: math.unit(3.8e6, "tons"),
  20816. name: "Front",
  20817. image: {
  20818. source: "./media/characters/2th/front.svg",
  20819. extra: 3489 / 3350,
  20820. bottom: 0.1
  20821. }
  20822. },
  20823. foot: {
  20824. height: math.unit(461, "feet"),
  20825. name: "Foot",
  20826. image: {
  20827. source: "./media/characters/2th/foot.svg"
  20828. }
  20829. },
  20830. },
  20831. [
  20832. {
  20833. name: "\"Micro\"",
  20834. height: math.unit(15 + 7 / 12, "feet")
  20835. },
  20836. {
  20837. name: "Normal",
  20838. height: math.unit(1500, "feet"),
  20839. default: true
  20840. },
  20841. {
  20842. name: "Macro",
  20843. height: math.unit(5000, "feet")
  20844. },
  20845. {
  20846. name: "Megamacro",
  20847. height: math.unit(15, "miles")
  20848. },
  20849. {
  20850. name: "Gigamacro",
  20851. height: math.unit(4000, "miles")
  20852. },
  20853. {
  20854. name: "Galactic",
  20855. height: math.unit(50, "AU")
  20856. },
  20857. ]
  20858. ))
  20859. characterMakers.push(() => makeCharacter(
  20860. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20861. {
  20862. front: {
  20863. height: math.unit(5 + 6 / 12, "feet"),
  20864. weight: math.unit(220, "lb"),
  20865. name: "Front",
  20866. image: {
  20867. source: "./media/characters/amethyst/front.svg",
  20868. extra: 2078 / 2040,
  20869. bottom: 0.045
  20870. }
  20871. },
  20872. back: {
  20873. height: math.unit(5 + 6 / 12, "feet"),
  20874. weight: math.unit(220, "lb"),
  20875. name: "Back",
  20876. image: {
  20877. source: "./media/characters/amethyst/back.svg",
  20878. extra: 2021 / 1989,
  20879. bottom: 0.02
  20880. }
  20881. },
  20882. },
  20883. [
  20884. {
  20885. name: "Normal",
  20886. height: math.unit(5 + 6 / 12, "feet"),
  20887. default: true
  20888. },
  20889. ]
  20890. ))
  20891. characterMakers.push(() => makeCharacter(
  20892. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20893. {
  20894. front: {
  20895. height: math.unit(4 + 11 / 12, "feet"),
  20896. weight: math.unit(120, "lb"),
  20897. name: "Front",
  20898. image: {
  20899. source: "./media/characters/yumi-akiyama/front.svg",
  20900. extra: 1327 / 1235,
  20901. bottom: 0.02
  20902. }
  20903. },
  20904. back: {
  20905. height: math.unit(4 + 11 / 12, "feet"),
  20906. weight: math.unit(120, "lb"),
  20907. name: "Back",
  20908. image: {
  20909. source: "./media/characters/yumi-akiyama/back.svg",
  20910. extra: 1287 / 1245,
  20911. bottom: 0.002
  20912. }
  20913. },
  20914. },
  20915. [
  20916. {
  20917. name: "Galactic",
  20918. height: math.unit(50, "galaxies"),
  20919. default: true
  20920. },
  20921. {
  20922. name: "Universal",
  20923. height: math.unit(100, "universes")
  20924. },
  20925. ]
  20926. ))
  20927. characterMakers.push(() => makeCharacter(
  20928. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20929. {
  20930. front: {
  20931. height: math.unit(8, "feet"),
  20932. weight: math.unit(500, "lb"),
  20933. name: "Front",
  20934. image: {
  20935. source: "./media/characters/rifter-yrmori/front.svg",
  20936. extra: 1180 / 1125,
  20937. bottom: 0.02
  20938. }
  20939. },
  20940. back: {
  20941. height: math.unit(8, "feet"),
  20942. weight: math.unit(500, "lb"),
  20943. name: "Back",
  20944. image: {
  20945. source: "./media/characters/rifter-yrmori/back.svg",
  20946. extra: 1190 / 1145,
  20947. bottom: 0.001
  20948. }
  20949. },
  20950. wings: {
  20951. height: math.unit(7.75, "feet"),
  20952. weight: math.unit(500, "lb"),
  20953. name: "Wings",
  20954. image: {
  20955. source: "./media/characters/rifter-yrmori/wings.svg",
  20956. extra: 1357 / 1285
  20957. }
  20958. },
  20959. maw: {
  20960. height: math.unit(0.8, "feet"),
  20961. name: "Maw",
  20962. image: {
  20963. source: "./media/characters/rifter-yrmori/maw.svg"
  20964. }
  20965. },
  20966. mawfront: {
  20967. height: math.unit(1.45, "feet"),
  20968. name: "Maw (Front)",
  20969. image: {
  20970. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20971. }
  20972. },
  20973. },
  20974. [
  20975. {
  20976. name: "Normal",
  20977. height: math.unit(8, "feet"),
  20978. default: true
  20979. },
  20980. {
  20981. name: "Macro",
  20982. height: math.unit(42, "meters")
  20983. },
  20984. ]
  20985. ))
  20986. characterMakers.push(() => makeCharacter(
  20987. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  20988. {
  20989. were: {
  20990. height: math.unit(25 + 6 / 12, "feet"),
  20991. weight: math.unit(10000, "lb"),
  20992. name: "Were",
  20993. image: {
  20994. source: "./media/characters/tahajin/were.svg",
  20995. extra: 801 / 770,
  20996. bottom: 0.042
  20997. }
  20998. },
  20999. aquatic: {
  21000. height: math.unit(6 + 4 / 12, "feet"),
  21001. weight: math.unit(160, "lb"),
  21002. name: "Aquatic",
  21003. image: {
  21004. source: "./media/characters/tahajin/aquatic.svg",
  21005. extra: 572 / 542,
  21006. bottom: 0.04
  21007. }
  21008. },
  21009. chow: {
  21010. height: math.unit(8 + 11 / 12, "feet"),
  21011. weight: math.unit(450, "lb"),
  21012. name: "Chow",
  21013. image: {
  21014. source: "./media/characters/tahajin/chow.svg",
  21015. extra: 660 / 640,
  21016. bottom: 0.015
  21017. }
  21018. },
  21019. demiNaga: {
  21020. height: math.unit(6 + 8 / 12, "feet"),
  21021. weight: math.unit(300, "lb"),
  21022. name: "Demi Naga",
  21023. image: {
  21024. source: "./media/characters/tahajin/demi-naga.svg",
  21025. extra: 643 / 615,
  21026. bottom: 0.1
  21027. }
  21028. },
  21029. data: {
  21030. height: math.unit(5, "inches"),
  21031. weight: math.unit(0.1, "lb"),
  21032. name: "Data",
  21033. image: {
  21034. source: "./media/characters/tahajin/data.svg"
  21035. }
  21036. },
  21037. fluu: {
  21038. height: math.unit(5 + 7 / 12, "feet"),
  21039. weight: math.unit(140, "lb"),
  21040. name: "Fluu",
  21041. image: {
  21042. source: "./media/characters/tahajin/fluu.svg",
  21043. extra: 628 / 592,
  21044. bottom: 0.02
  21045. }
  21046. },
  21047. starWarrior: {
  21048. height: math.unit(4 + 5 / 12, "feet"),
  21049. weight: math.unit(50, "lb"),
  21050. name: "Star Warrior",
  21051. image: {
  21052. source: "./media/characters/tahajin/star-warrior.svg"
  21053. }
  21054. },
  21055. },
  21056. [
  21057. {
  21058. name: "Normal",
  21059. height: math.unit(25 + 6 / 12, "feet"),
  21060. default: true
  21061. },
  21062. ]
  21063. ))
  21064. characterMakers.push(() => makeCharacter(
  21065. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21066. {
  21067. front: {
  21068. height: math.unit(8, "feet"),
  21069. weight: math.unit(350, "lb"),
  21070. name: "Front",
  21071. image: {
  21072. source: "./media/characters/gabira/front.svg",
  21073. extra: 608 / 580,
  21074. bottom: 0.03
  21075. }
  21076. },
  21077. back: {
  21078. height: math.unit(8, "feet"),
  21079. weight: math.unit(350, "lb"),
  21080. name: "Back",
  21081. image: {
  21082. source: "./media/characters/gabira/back.svg",
  21083. extra: 608 / 580,
  21084. bottom: 0.03
  21085. }
  21086. },
  21087. },
  21088. [
  21089. {
  21090. name: "Normal",
  21091. height: math.unit(8, "feet"),
  21092. default: true
  21093. },
  21094. ]
  21095. ))
  21096. characterMakers.push(() => makeCharacter(
  21097. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21098. {
  21099. front: {
  21100. height: math.unit(5 + 3 / 12, "feet"),
  21101. weight: math.unit(137, "lb"),
  21102. name: "Front",
  21103. image: {
  21104. source: "./media/characters/sasha-katraine/front.svg",
  21105. bottom: 0.045
  21106. }
  21107. },
  21108. },
  21109. [
  21110. {
  21111. name: "Micro",
  21112. height: math.unit(5, "inches")
  21113. },
  21114. {
  21115. name: "Normal",
  21116. height: math.unit(5 + 3 / 12, "feet"),
  21117. default: true
  21118. },
  21119. ]
  21120. ))
  21121. characterMakers.push(() => makeCharacter(
  21122. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21123. {
  21124. side: {
  21125. height: math.unit(4, "inches"),
  21126. weight: math.unit(200, "grams"),
  21127. name: "Side",
  21128. image: {
  21129. source: "./media/characters/der/side.svg",
  21130. extra: 719 / 400,
  21131. bottom: 30.6 / 749.9187
  21132. }
  21133. },
  21134. },
  21135. [
  21136. {
  21137. name: "Micro",
  21138. height: math.unit(4, "inches"),
  21139. default: true
  21140. },
  21141. ]
  21142. ))
  21143. characterMakers.push(() => makeCharacter(
  21144. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21145. {
  21146. side: {
  21147. height: math.unit(30, "meters"),
  21148. weight: math.unit(700, "tonnes"),
  21149. name: "Side",
  21150. image: {
  21151. source: "./media/characters/fixerdragon/side.svg",
  21152. extra: (1293.0514 - 116.03) / 1106.86,
  21153. bottom: 116.03 / 1293.0514
  21154. }
  21155. },
  21156. },
  21157. [
  21158. {
  21159. name: "Planck",
  21160. height: math.unit(1.6e-35, "meters")
  21161. },
  21162. {
  21163. name: "Micro",
  21164. height: math.unit(0.4, "meters")
  21165. },
  21166. {
  21167. name: "Normal",
  21168. height: math.unit(30, "meters"),
  21169. default: true
  21170. },
  21171. {
  21172. name: "Megamacro",
  21173. height: math.unit(1.2, "megameters")
  21174. },
  21175. {
  21176. name: "Teramacro",
  21177. height: math.unit(130, "terameters")
  21178. },
  21179. {
  21180. name: "Yottamacro",
  21181. height: math.unit(6200, "yottameters")
  21182. },
  21183. ]
  21184. ));
  21185. characterMakers.push(() => makeCharacter(
  21186. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21187. {
  21188. front: {
  21189. height: math.unit(8, "feet"),
  21190. weight: math.unit(250, "lb"),
  21191. name: "Front",
  21192. image: {
  21193. source: "./media/characters/kite/front.svg",
  21194. extra: 2796 / 2659,
  21195. bottom: 0.002
  21196. }
  21197. },
  21198. },
  21199. [
  21200. {
  21201. name: "Normal",
  21202. height: math.unit(8, "feet"),
  21203. default: true
  21204. },
  21205. {
  21206. name: "Macro",
  21207. height: math.unit(360, "feet")
  21208. },
  21209. {
  21210. name: "Megamacro",
  21211. height: math.unit(1500, "feet")
  21212. },
  21213. ]
  21214. ))
  21215. characterMakers.push(() => makeCharacter(
  21216. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21217. {
  21218. front: {
  21219. height: math.unit(5 + 10 / 12, "feet"),
  21220. weight: math.unit(150, "lb"),
  21221. name: "Front",
  21222. image: {
  21223. source: "./media/characters/poojawa-vynar/front.svg",
  21224. extra: (1506.1547 - 55) / 1356.6,
  21225. bottom: 55 / 1506.1547
  21226. }
  21227. },
  21228. frontTailless: {
  21229. height: math.unit(5 + 10 / 12, "feet"),
  21230. weight: math.unit(150, "lb"),
  21231. name: "Front (Tailless)",
  21232. image: {
  21233. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21234. extra: (1506.1547 - 55) / 1356.6,
  21235. bottom: 55 / 1506.1547
  21236. }
  21237. },
  21238. },
  21239. [
  21240. {
  21241. name: "Normal",
  21242. height: math.unit(5 + 10 / 12, "feet"),
  21243. default: true
  21244. },
  21245. ]
  21246. ))
  21247. characterMakers.push(() => makeCharacter(
  21248. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21249. {
  21250. front: {
  21251. height: math.unit(293, "meters"),
  21252. weight: math.unit(70400, "tons"),
  21253. name: "Front",
  21254. image: {
  21255. source: "./media/characters/violette/front.svg",
  21256. extra: 1227 / 1180,
  21257. bottom: 0.005
  21258. }
  21259. },
  21260. back: {
  21261. height: math.unit(293, "meters"),
  21262. weight: math.unit(70400, "tons"),
  21263. name: "Back",
  21264. image: {
  21265. source: "./media/characters/violette/back.svg",
  21266. extra: 1227 / 1180,
  21267. bottom: 0.005
  21268. }
  21269. },
  21270. },
  21271. [
  21272. {
  21273. name: "Macro",
  21274. height: math.unit(293, "meters"),
  21275. default: true
  21276. },
  21277. ]
  21278. ))
  21279. characterMakers.push(() => makeCharacter(
  21280. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21281. {
  21282. front: {
  21283. height: math.unit(1050, "feet"),
  21284. weight: math.unit(200000, "tons"),
  21285. name: "Front",
  21286. image: {
  21287. source: "./media/characters/alessandra/front.svg",
  21288. extra: 960 / 912,
  21289. bottom: 0.06
  21290. }
  21291. },
  21292. },
  21293. [
  21294. {
  21295. name: "Macro",
  21296. height: math.unit(1050, "feet")
  21297. },
  21298. {
  21299. name: "Macro+",
  21300. height: math.unit(900, "meters"),
  21301. default: true
  21302. },
  21303. ]
  21304. ))
  21305. characterMakers.push(() => makeCharacter(
  21306. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21307. {
  21308. front: {
  21309. height: math.unit(5, "feet"),
  21310. weight: math.unit(187, "lb"),
  21311. name: "Front",
  21312. image: {
  21313. source: "./media/characters/person/front.svg",
  21314. extra: 3087 / 2945,
  21315. bottom: 91 / 3181
  21316. }
  21317. },
  21318. },
  21319. [
  21320. {
  21321. name: "Micro",
  21322. height: math.unit(3, "inches")
  21323. },
  21324. {
  21325. name: "Normal",
  21326. height: math.unit(5, "feet"),
  21327. default: true
  21328. },
  21329. {
  21330. name: "Macro",
  21331. height: math.unit(90, "feet")
  21332. },
  21333. {
  21334. name: "Max Size",
  21335. height: math.unit(280, "feet")
  21336. },
  21337. ]
  21338. ))
  21339. characterMakers.push(() => makeCharacter(
  21340. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21341. {
  21342. front: {
  21343. height: math.unit(4.5, "meters"),
  21344. weight: math.unit(3200, "lb"),
  21345. name: "Front",
  21346. image: {
  21347. source: "./media/characters/ty/front.svg",
  21348. extra: 1038 / 960,
  21349. bottom: 31.156 / 1068
  21350. }
  21351. },
  21352. back: {
  21353. height: math.unit(4.5, "meters"),
  21354. weight: math.unit(3200, "lb"),
  21355. name: "Back",
  21356. image: {
  21357. source: "./media/characters/ty/back.svg",
  21358. extra: 1044 / 966,
  21359. bottom: 7.48 / 1049
  21360. }
  21361. },
  21362. },
  21363. [
  21364. {
  21365. name: "Normal",
  21366. height: math.unit(4.5, "meters"),
  21367. default: true
  21368. },
  21369. ]
  21370. ))
  21371. characterMakers.push(() => makeCharacter(
  21372. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21373. {
  21374. front: {
  21375. height: math.unit(5 + 4 / 12, "feet"),
  21376. weight: math.unit(115, "lb"),
  21377. name: "Front",
  21378. image: {
  21379. source: "./media/characters/rocky/front.svg",
  21380. extra: 1012 / 975,
  21381. bottom: 54 / 1066
  21382. }
  21383. },
  21384. },
  21385. [
  21386. {
  21387. name: "Normal",
  21388. height: math.unit(5 + 4 / 12, "feet"),
  21389. default: true
  21390. },
  21391. ]
  21392. ))
  21393. characterMakers.push(() => makeCharacter(
  21394. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21395. {
  21396. upright: {
  21397. height: math.unit(6, "meters"),
  21398. weight: math.unit(4000, "kg"),
  21399. name: "Upright",
  21400. image: {
  21401. source: "./media/characters/ruin/upright.svg",
  21402. extra: 668 / 661,
  21403. bottom: 42 / 799.8396
  21404. }
  21405. },
  21406. },
  21407. [
  21408. {
  21409. name: "Normal",
  21410. height: math.unit(6, "meters"),
  21411. default: true
  21412. },
  21413. ]
  21414. ))
  21415. characterMakers.push(() => makeCharacter(
  21416. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21417. {
  21418. front: {
  21419. height: math.unit(5, "feet"),
  21420. weight: math.unit(106, "lb"),
  21421. name: "Front",
  21422. image: {
  21423. source: "./media/characters/robin/front.svg",
  21424. extra: 862 / 799,
  21425. bottom: 42.4 / 914.8856
  21426. }
  21427. },
  21428. },
  21429. [
  21430. {
  21431. name: "Normal",
  21432. height: math.unit(5, "feet"),
  21433. default: true
  21434. },
  21435. ]
  21436. ))
  21437. characterMakers.push(() => makeCharacter(
  21438. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21439. {
  21440. side: {
  21441. height: math.unit(3, "feet"),
  21442. weight: math.unit(225, "lb"),
  21443. name: "Side",
  21444. image: {
  21445. source: "./media/characters/saian/side.svg",
  21446. extra: 566 / 356,
  21447. bottom: 79.7 / 643
  21448. }
  21449. },
  21450. maw: {
  21451. height: math.unit(2.85, "feet"),
  21452. name: "Maw",
  21453. image: {
  21454. source: "./media/characters/saian/maw.svg"
  21455. }
  21456. },
  21457. },
  21458. [
  21459. {
  21460. name: "Normal",
  21461. height: math.unit(3, "feet"),
  21462. default: true
  21463. },
  21464. ]
  21465. ))
  21466. characterMakers.push(() => makeCharacter(
  21467. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21468. {
  21469. side: {
  21470. height: math.unit(8, "feet"),
  21471. weight: math.unit(300, "lb"),
  21472. name: "Side",
  21473. image: {
  21474. source: "./media/characters/equus-silvermane/side.svg",
  21475. extra: 2176 / 2050,
  21476. bottom: 65.7 / 2245
  21477. }
  21478. },
  21479. front: {
  21480. height: math.unit(8, "feet"),
  21481. weight: math.unit(300, "lb"),
  21482. name: "Front",
  21483. image: {
  21484. source: "./media/characters/equus-silvermane/front.svg",
  21485. extra: 4633 / 4400,
  21486. bottom: 71.3 / 4706.915
  21487. }
  21488. },
  21489. sideStepping: {
  21490. height: math.unit(8, "feet"),
  21491. weight: math.unit(300, "lb"),
  21492. name: "Side (Stepping)",
  21493. image: {
  21494. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21495. extra: 1968 / 1860,
  21496. bottom: 16.4 / 1989
  21497. }
  21498. },
  21499. },
  21500. [
  21501. {
  21502. name: "Normal",
  21503. height: math.unit(8, "feet")
  21504. },
  21505. {
  21506. name: "Minimacro",
  21507. height: math.unit(75, "feet"),
  21508. default: true
  21509. },
  21510. {
  21511. name: "Macro",
  21512. height: math.unit(150, "feet")
  21513. },
  21514. {
  21515. name: "Macro+",
  21516. height: math.unit(1000, "feet")
  21517. },
  21518. {
  21519. name: "Megamacro",
  21520. height: math.unit(1, "mile")
  21521. },
  21522. ]
  21523. ))
  21524. characterMakers.push(() => makeCharacter(
  21525. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21526. {
  21527. side: {
  21528. height: math.unit(20, "feet"),
  21529. weight: math.unit(30000, "kg"),
  21530. name: "Side",
  21531. image: {
  21532. source: "./media/characters/windar/side.svg",
  21533. extra: 1491 / 1248,
  21534. bottom: 82.56 / 1568
  21535. }
  21536. },
  21537. },
  21538. [
  21539. {
  21540. name: "Normal",
  21541. height: math.unit(20, "feet"),
  21542. default: true
  21543. },
  21544. ]
  21545. ))
  21546. characterMakers.push(() => makeCharacter(
  21547. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21548. {
  21549. side: {
  21550. height: math.unit(15.66, "feet"),
  21551. weight: math.unit(150, "lb"),
  21552. name: "Side",
  21553. image: {
  21554. source: "./media/characters/melody/side.svg",
  21555. extra: 1097 / 944,
  21556. bottom: 11.8 / 1109
  21557. }
  21558. },
  21559. sideOutfit: {
  21560. height: math.unit(15.66, "feet"),
  21561. weight: math.unit(150, "lb"),
  21562. name: "Side (Outfit)",
  21563. image: {
  21564. source: "./media/characters/melody/side-outfit.svg",
  21565. extra: 1097 / 944,
  21566. bottom: 11.8 / 1109
  21567. }
  21568. },
  21569. },
  21570. [
  21571. {
  21572. name: "Normal",
  21573. height: math.unit(15.66, "feet"),
  21574. default: true
  21575. },
  21576. ]
  21577. ))
  21578. characterMakers.push(() => makeCharacter(
  21579. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21580. {
  21581. front: {
  21582. height: math.unit(8, "feet"),
  21583. weight: math.unit(325, "lb"),
  21584. name: "Front",
  21585. image: {
  21586. source: "./media/characters/windera/front.svg",
  21587. extra: 3180 / 2845,
  21588. bottom: 178 / 3365
  21589. }
  21590. },
  21591. },
  21592. [
  21593. {
  21594. name: "Normal",
  21595. height: math.unit(8, "feet"),
  21596. default: true
  21597. },
  21598. ]
  21599. ))
  21600. characterMakers.push(() => makeCharacter(
  21601. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21602. {
  21603. front: {
  21604. height: math.unit(28.75, "feet"),
  21605. weight: math.unit(2000, "kg"),
  21606. name: "Front",
  21607. image: {
  21608. source: "./media/characters/sonear/front.svg",
  21609. extra: 1041.1 / 964.9,
  21610. bottom: 53.7 / 1096.6
  21611. }
  21612. },
  21613. },
  21614. [
  21615. {
  21616. name: "Normal",
  21617. height: math.unit(28.75, "feet"),
  21618. default: true
  21619. },
  21620. ]
  21621. ))
  21622. characterMakers.push(() => makeCharacter(
  21623. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21624. {
  21625. side: {
  21626. height: math.unit(25.5, "feet"),
  21627. weight: math.unit(23000, "kg"),
  21628. name: "Side",
  21629. image: {
  21630. source: "./media/characters/kanara/side.svg"
  21631. }
  21632. },
  21633. },
  21634. [
  21635. {
  21636. name: "Normal",
  21637. height: math.unit(25.5, "feet"),
  21638. default: true
  21639. },
  21640. ]
  21641. ))
  21642. characterMakers.push(() => makeCharacter(
  21643. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21644. {
  21645. side: {
  21646. height: math.unit(10, "feet"),
  21647. weight: math.unit(1000, "kg"),
  21648. name: "Side",
  21649. image: {
  21650. source: "./media/characters/ereus/side.svg",
  21651. extra: 1157 / 959,
  21652. bottom: 153 / 1312.5
  21653. }
  21654. },
  21655. },
  21656. [
  21657. {
  21658. name: "Normal",
  21659. height: math.unit(10, "feet"),
  21660. default: true
  21661. },
  21662. ]
  21663. ))
  21664. characterMakers.push(() => makeCharacter(
  21665. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21666. {
  21667. side: {
  21668. height: math.unit(4.5, "feet"),
  21669. weight: math.unit(500, "lb"),
  21670. name: "Side",
  21671. image: {
  21672. source: "./media/characters/e-ter/side.svg",
  21673. extra: 1550 / 1248,
  21674. bottom: 146 / 1694
  21675. }
  21676. },
  21677. },
  21678. [
  21679. {
  21680. name: "Normal",
  21681. height: math.unit(4.5, "feet"),
  21682. default: true
  21683. },
  21684. ]
  21685. ))
  21686. characterMakers.push(() => makeCharacter(
  21687. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21688. {
  21689. side: {
  21690. height: math.unit(9.7, "feet"),
  21691. weight: math.unit(4000, "kg"),
  21692. name: "Side",
  21693. image: {
  21694. source: "./media/characters/yamie/side.svg"
  21695. }
  21696. },
  21697. },
  21698. [
  21699. {
  21700. name: "Normal",
  21701. height: math.unit(9.7, "feet"),
  21702. default: true
  21703. },
  21704. ]
  21705. ))
  21706. characterMakers.push(() => makeCharacter(
  21707. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21708. {
  21709. front: {
  21710. height: math.unit(50, "feet"),
  21711. weight: math.unit(50000, "kg"),
  21712. name: "Front",
  21713. image: {
  21714. source: "./media/characters/anders/front.svg",
  21715. extra: 570 / 539,
  21716. bottom: 14.7 / 586.7
  21717. }
  21718. },
  21719. },
  21720. [
  21721. {
  21722. name: "Large",
  21723. height: math.unit(50, "feet")
  21724. },
  21725. {
  21726. name: "Macro",
  21727. height: math.unit(2000, "feet"),
  21728. default: true
  21729. },
  21730. {
  21731. name: "Megamacro",
  21732. height: math.unit(12, "miles")
  21733. },
  21734. ]
  21735. ))
  21736. characterMakers.push(() => makeCharacter(
  21737. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21738. {
  21739. front: {
  21740. height: math.unit(7 + 2 / 12, "feet"),
  21741. weight: math.unit(300, "lb"),
  21742. name: "Front",
  21743. image: {
  21744. source: "./media/characters/reban/front.svg",
  21745. extra: 516 / 487,
  21746. bottom: 42.82 / 558.356
  21747. }
  21748. },
  21749. dick: {
  21750. height: math.unit(7 / 5, "feet"),
  21751. name: "Dick",
  21752. image: {
  21753. source: "./media/characters/reban/dick.svg"
  21754. }
  21755. },
  21756. },
  21757. [
  21758. {
  21759. name: "Natural Height",
  21760. height: math.unit(7 + 2 / 12, "feet")
  21761. },
  21762. {
  21763. name: "Macro",
  21764. height: math.unit(500, "feet"),
  21765. default: true
  21766. },
  21767. {
  21768. name: "Canon Height",
  21769. height: math.unit(50, "AU")
  21770. },
  21771. ]
  21772. ))
  21773. characterMakers.push(() => makeCharacter(
  21774. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21775. {
  21776. front: {
  21777. height: math.unit(6, "feet"),
  21778. weight: math.unit(150, "lb"),
  21779. name: "Front",
  21780. image: {
  21781. source: "./media/characters/terrance-keayes/front.svg",
  21782. extra: 1.005,
  21783. bottom: 151 / 1615
  21784. }
  21785. },
  21786. side: {
  21787. height: math.unit(6, "feet"),
  21788. weight: math.unit(150, "lb"),
  21789. name: "Side",
  21790. image: {
  21791. source: "./media/characters/terrance-keayes/side.svg",
  21792. extra: 1.005,
  21793. bottom: 129.4 / 1544
  21794. }
  21795. },
  21796. back: {
  21797. height: math.unit(6, "feet"),
  21798. weight: math.unit(150, "lb"),
  21799. name: "Back",
  21800. image: {
  21801. source: "./media/characters/terrance-keayes/back.svg",
  21802. extra: 1.005,
  21803. bottom: 58.4 / 1557.3
  21804. }
  21805. },
  21806. dick: {
  21807. height: math.unit(6 * 0.208, "feet"),
  21808. name: "Dick",
  21809. image: {
  21810. source: "./media/characters/terrance-keayes/dick.svg"
  21811. }
  21812. },
  21813. },
  21814. [
  21815. {
  21816. name: "Canon Height",
  21817. height: math.unit(35, "miles"),
  21818. default: true
  21819. },
  21820. ]
  21821. ))
  21822. characterMakers.push(() => makeCharacter(
  21823. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21824. {
  21825. front: {
  21826. height: math.unit(6, "feet"),
  21827. weight: math.unit(150, "lb"),
  21828. name: "Front",
  21829. image: {
  21830. source: "./media/characters/ofelia/front.svg",
  21831. extra: 546 / 541,
  21832. bottom: 39 / 583
  21833. }
  21834. },
  21835. back: {
  21836. height: math.unit(6, "feet"),
  21837. weight: math.unit(150, "lb"),
  21838. name: "Back",
  21839. image: {
  21840. source: "./media/characters/ofelia/back.svg",
  21841. extra: 564 / 559.5,
  21842. bottom: 8.69 / 573.02
  21843. }
  21844. },
  21845. maw: {
  21846. height: math.unit(1, "feet"),
  21847. name: "Maw",
  21848. image: {
  21849. source: "./media/characters/ofelia/maw.svg"
  21850. }
  21851. },
  21852. foot: {
  21853. height: math.unit(1.949, "feet"),
  21854. name: "Foot",
  21855. image: {
  21856. source: "./media/characters/ofelia/foot.svg"
  21857. }
  21858. },
  21859. },
  21860. [
  21861. {
  21862. name: "Canon Height",
  21863. height: math.unit(2000, "miles"),
  21864. default: true
  21865. },
  21866. ]
  21867. ))
  21868. characterMakers.push(() => makeCharacter(
  21869. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21870. {
  21871. front: {
  21872. height: math.unit(6, "feet"),
  21873. weight: math.unit(150, "lb"),
  21874. name: "Front",
  21875. image: {
  21876. source: "./media/characters/samuel/front.svg",
  21877. extra: 265 / 258,
  21878. bottom: 2 / 266.1566
  21879. }
  21880. },
  21881. },
  21882. [
  21883. {
  21884. name: "Macro",
  21885. height: math.unit(100, "feet"),
  21886. default: true
  21887. },
  21888. {
  21889. name: "Full Size",
  21890. height: math.unit(1000, "miles")
  21891. },
  21892. ]
  21893. ))
  21894. characterMakers.push(() => makeCharacter(
  21895. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21896. {
  21897. front: {
  21898. height: math.unit(6, "feet"),
  21899. weight: math.unit(300, "lb"),
  21900. name: "Front",
  21901. image: {
  21902. source: "./media/characters/beishir-kiel/front.svg",
  21903. extra: 569 / 547,
  21904. bottom: 41.9 / 609
  21905. }
  21906. },
  21907. maw: {
  21908. height: math.unit(6 * 0.202, "feet"),
  21909. name: "Maw",
  21910. image: {
  21911. source: "./media/characters/beishir-kiel/maw.svg"
  21912. }
  21913. },
  21914. },
  21915. [
  21916. {
  21917. name: "Macro",
  21918. height: math.unit(300, "feet"),
  21919. default: true
  21920. },
  21921. ]
  21922. ))
  21923. characterMakers.push(() => makeCharacter(
  21924. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21925. {
  21926. front: {
  21927. height: math.unit(5 + 7/12, "feet"),
  21928. weight: math.unit(120, "lb"),
  21929. name: "Front",
  21930. image: {
  21931. source: "./media/characters/logan-grey/front.svg",
  21932. extra: 1836/1738,
  21933. bottom: 108/1944
  21934. }
  21935. },
  21936. back: {
  21937. height: math.unit(5 + 7/12, "feet"),
  21938. weight: math.unit(120, "lb"),
  21939. name: "Back",
  21940. image: {
  21941. source: "./media/characters/logan-grey/back.svg",
  21942. extra: 1880/1794,
  21943. bottom: 24/1904
  21944. }
  21945. },
  21946. frontSfw: {
  21947. height: math.unit(5 + 7/12, "feet"),
  21948. weight: math.unit(120, "lb"),
  21949. name: "Front (SFW)",
  21950. image: {
  21951. source: "./media/characters/logan-grey/front-sfw.svg",
  21952. extra: 1836/1738,
  21953. bottom: 108/1944
  21954. }
  21955. },
  21956. backSfw: {
  21957. height: math.unit(5 + 7/12, "feet"),
  21958. weight: math.unit(120, "lb"),
  21959. name: "Back (SFW)",
  21960. image: {
  21961. source: "./media/characters/logan-grey/back-sfw.svg",
  21962. extra: 1880/1794,
  21963. bottom: 24/1904
  21964. }
  21965. },
  21966. hands: {
  21967. height: math.unit(0.84, "feet"),
  21968. name: "Hands",
  21969. image: {
  21970. source: "./media/characters/logan-grey/hands.svg"
  21971. }
  21972. },
  21973. paws: {
  21974. height: math.unit(0.72, "feet"),
  21975. name: "Paws",
  21976. image: {
  21977. source: "./media/characters/logan-grey/paws.svg"
  21978. }
  21979. },
  21980. cock: {
  21981. height: math.unit(1.45, "feet"),
  21982. name: "Cock",
  21983. image: {
  21984. source: "./media/characters/logan-grey/cock.svg"
  21985. }
  21986. },
  21987. cockAlt: {
  21988. height: math.unit(1.437, "feet"),
  21989. name: "Cock (alt)",
  21990. image: {
  21991. source: "./media/characters/logan-grey/cock-alt.svg"
  21992. }
  21993. },
  21994. },
  21995. [
  21996. {
  21997. name: "Normal",
  21998. height: math.unit(5 + 8 / 12, "feet")
  21999. },
  22000. {
  22001. name: "The 500 Foot Femboy",
  22002. height: math.unit(500, "feet"),
  22003. default: true
  22004. },
  22005. {
  22006. name: "Megmacro",
  22007. height: math.unit(20, "miles")
  22008. },
  22009. ]
  22010. ))
  22011. characterMakers.push(() => makeCharacter(
  22012. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22013. {
  22014. front: {
  22015. height: math.unit(8 + 2 / 12, "feet"),
  22016. weight: math.unit(275, "lb"),
  22017. name: "Front",
  22018. image: {
  22019. source: "./media/characters/draganta/front.svg",
  22020. extra: 1177 / 1135,
  22021. bottom: 33.46 / 1212.1
  22022. }
  22023. },
  22024. },
  22025. [
  22026. {
  22027. name: "Normal",
  22028. height: math.unit(8 + 6 / 12, "feet"),
  22029. default: true
  22030. },
  22031. {
  22032. name: "Macro",
  22033. height: math.unit(150, "feet")
  22034. },
  22035. {
  22036. name: "Megamacro",
  22037. height: math.unit(1000, "miles")
  22038. },
  22039. ]
  22040. ))
  22041. characterMakers.push(() => makeCharacter(
  22042. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22043. {
  22044. front: {
  22045. height: math.unit(1.72, "m"),
  22046. weight: math.unit(80, "lb"),
  22047. name: "Front",
  22048. image: {
  22049. source: "./media/characters/voski/front.svg",
  22050. extra: 2076.22 / 2022.4,
  22051. bottom: 102.7 / 2177.3866
  22052. }
  22053. },
  22054. frontNsfw: {
  22055. height: math.unit(1.72, "m"),
  22056. weight: math.unit(80, "lb"),
  22057. name: "Front (NSFW)",
  22058. image: {
  22059. source: "./media/characters/voski/front-nsfw.svg",
  22060. extra: 2076.22 / 2022.4,
  22061. bottom: 102.7 / 2177.3866
  22062. }
  22063. },
  22064. back: {
  22065. height: math.unit(1.72, "m"),
  22066. weight: math.unit(80, "lb"),
  22067. name: "Back",
  22068. image: {
  22069. source: "./media/characters/voski/back.svg",
  22070. extra: 2104 / 2051,
  22071. bottom: 10.45 / 2113.63
  22072. }
  22073. },
  22074. },
  22075. [
  22076. {
  22077. name: "Normal",
  22078. height: math.unit(1.72, "m")
  22079. },
  22080. {
  22081. name: "Macro",
  22082. height: math.unit(55, "m"),
  22083. default: true
  22084. },
  22085. {
  22086. name: "Macro+",
  22087. height: math.unit(300, "m")
  22088. },
  22089. {
  22090. name: "Macro++",
  22091. height: math.unit(700, "m")
  22092. },
  22093. {
  22094. name: "Macro+++",
  22095. height: math.unit(4500, "m")
  22096. },
  22097. {
  22098. name: "Macro++++",
  22099. height: math.unit(45, "km")
  22100. },
  22101. {
  22102. name: "Macro+++++",
  22103. height: math.unit(1220, "km")
  22104. },
  22105. ]
  22106. ))
  22107. characterMakers.push(() => makeCharacter(
  22108. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22109. {
  22110. front: {
  22111. height: math.unit(2.3, "m"),
  22112. weight: math.unit(304, "kg"),
  22113. name: "Front",
  22114. image: {
  22115. source: "./media/characters/icowom-lee/front.svg",
  22116. extra: 985 / 955,
  22117. bottom: 25.4 / 1012
  22118. }
  22119. },
  22120. fronttentacles: {
  22121. height: math.unit(2.3, "m"),
  22122. weight: math.unit(304, "kg"),
  22123. name: "Front-tentacles",
  22124. image: {
  22125. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22126. extra: 985 / 955,
  22127. bottom: 25.4 / 1012
  22128. }
  22129. },
  22130. back: {
  22131. height: math.unit(2.3, "m"),
  22132. weight: math.unit(304, "kg"),
  22133. name: "Back",
  22134. image: {
  22135. source: "./media/characters/icowom-lee/back.svg",
  22136. extra: 975 / 954,
  22137. bottom: 9.5 / 985
  22138. }
  22139. },
  22140. backtentacles: {
  22141. height: math.unit(2.3, "m"),
  22142. weight: math.unit(304, "kg"),
  22143. name: "Back-tentacles",
  22144. image: {
  22145. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22146. extra: 975 / 954,
  22147. bottom: 9.5 / 985
  22148. }
  22149. },
  22150. frontDressed: {
  22151. height: math.unit(2.3, "m"),
  22152. weight: math.unit(304, "kg"),
  22153. name: "Front (Dressed)",
  22154. image: {
  22155. source: "./media/characters/icowom-lee/front-dressed.svg",
  22156. extra: 3076 / 2933,
  22157. bottom: 51.4 / 3125.1889
  22158. }
  22159. },
  22160. rump: {
  22161. height: math.unit(0.776, "meters"),
  22162. name: "Rump",
  22163. image: {
  22164. source: "./media/characters/icowom-lee/rump.svg"
  22165. }
  22166. },
  22167. genitals: {
  22168. height: math.unit(0.78, "meters"),
  22169. name: "Genitals",
  22170. image: {
  22171. source: "./media/characters/icowom-lee/genitals.svg"
  22172. }
  22173. },
  22174. },
  22175. [
  22176. {
  22177. name: "Normal",
  22178. height: math.unit(2.3, "meters"),
  22179. default: true
  22180. },
  22181. {
  22182. name: "Macro",
  22183. height: math.unit(94, "meters"),
  22184. default: true
  22185. },
  22186. ]
  22187. ))
  22188. characterMakers.push(() => makeCharacter(
  22189. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22190. {
  22191. front: {
  22192. height: math.unit(22, "meters"),
  22193. weight: math.unit(21000, "kg"),
  22194. name: "Front",
  22195. image: {
  22196. source: "./media/characters/shock-diamond/front.svg",
  22197. extra: 2204 / 2053,
  22198. bottom: 65 / 2239.47
  22199. }
  22200. },
  22201. frontNude: {
  22202. height: math.unit(22, "meters"),
  22203. weight: math.unit(21000, "kg"),
  22204. name: "Front (Nude)",
  22205. image: {
  22206. source: "./media/characters/shock-diamond/front-nude.svg",
  22207. extra: 2514 / 2285,
  22208. bottom: 13 / 2527.56
  22209. }
  22210. },
  22211. },
  22212. [
  22213. {
  22214. name: "Normal",
  22215. height: math.unit(3, "meters")
  22216. },
  22217. {
  22218. name: "Macro",
  22219. height: math.unit(22, "meters"),
  22220. default: true
  22221. },
  22222. ]
  22223. ))
  22224. characterMakers.push(() => makeCharacter(
  22225. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22226. {
  22227. front: {
  22228. height: math.unit(5 + 4 / 12, "feet"),
  22229. weight: math.unit(120, "lb"),
  22230. name: "Front",
  22231. image: {
  22232. source: "./media/characters/rory/front.svg",
  22233. extra: 589 / 556,
  22234. bottom: 45.7 / 635.76
  22235. }
  22236. },
  22237. frontNude: {
  22238. height: math.unit(5 + 4 / 12, "feet"),
  22239. weight: math.unit(120, "lb"),
  22240. name: "Front (Nude)",
  22241. image: {
  22242. source: "./media/characters/rory/front-nude.svg",
  22243. extra: 589 / 556,
  22244. bottom: 45.7 / 635.76
  22245. }
  22246. },
  22247. side: {
  22248. height: math.unit(5 + 4 / 12, "feet"),
  22249. weight: math.unit(120, "lb"),
  22250. name: "Side",
  22251. image: {
  22252. source: "./media/characters/rory/side.svg",
  22253. extra: 597 / 564,
  22254. bottom: 55 / 653
  22255. }
  22256. },
  22257. back: {
  22258. height: math.unit(5 + 4 / 12, "feet"),
  22259. weight: math.unit(120, "lb"),
  22260. name: "Back",
  22261. image: {
  22262. source: "./media/characters/rory/back.svg",
  22263. extra: 620 / 585,
  22264. bottom: 8.86 / 630.43
  22265. }
  22266. },
  22267. dick: {
  22268. height: math.unit(0.86, "feet"),
  22269. name: "Dick",
  22270. image: {
  22271. source: "./media/characters/rory/dick.svg"
  22272. }
  22273. },
  22274. },
  22275. [
  22276. {
  22277. name: "Normal",
  22278. height: math.unit(5 + 4 / 12, "feet"),
  22279. default: true
  22280. },
  22281. {
  22282. name: "Macro",
  22283. height: math.unit(100, "feet")
  22284. },
  22285. {
  22286. name: "Macro+",
  22287. height: math.unit(140, "feet")
  22288. },
  22289. {
  22290. name: "Macro++",
  22291. height: math.unit(300, "feet")
  22292. },
  22293. ]
  22294. ))
  22295. characterMakers.push(() => makeCharacter(
  22296. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22297. {
  22298. front: {
  22299. height: math.unit(5 + 9 / 12, "feet"),
  22300. weight: math.unit(190, "lb"),
  22301. name: "Front",
  22302. image: {
  22303. source: "./media/characters/sprisk/front.svg",
  22304. extra: 1225 / 1180,
  22305. bottom: 42.7 / 1266.4
  22306. }
  22307. },
  22308. frontNsfw: {
  22309. height: math.unit(5 + 9 / 12, "feet"),
  22310. weight: math.unit(190, "lb"),
  22311. name: "Front (NSFW)",
  22312. image: {
  22313. source: "./media/characters/sprisk/front-nsfw.svg",
  22314. extra: 1225 / 1180,
  22315. bottom: 42.7 / 1266.4
  22316. }
  22317. },
  22318. back: {
  22319. height: math.unit(5 + 9 / 12, "feet"),
  22320. weight: math.unit(190, "lb"),
  22321. name: "Back",
  22322. image: {
  22323. source: "./media/characters/sprisk/back.svg",
  22324. extra: 1247 / 1200,
  22325. bottom: 5.6 / 1253.04
  22326. }
  22327. },
  22328. },
  22329. [
  22330. {
  22331. name: "Tiny",
  22332. height: math.unit(2, "inches")
  22333. },
  22334. {
  22335. name: "Normal",
  22336. height: math.unit(5 + 9 / 12, "feet"),
  22337. default: true
  22338. },
  22339. {
  22340. name: "Mini Macro",
  22341. height: math.unit(18, "feet")
  22342. },
  22343. {
  22344. name: "Macro",
  22345. height: math.unit(100, "feet")
  22346. },
  22347. {
  22348. name: "MACRO",
  22349. height: math.unit(50, "miles")
  22350. },
  22351. {
  22352. name: "M A C R O",
  22353. height: math.unit(300, "miles")
  22354. },
  22355. ]
  22356. ))
  22357. characterMakers.push(() => makeCharacter(
  22358. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22359. {
  22360. side: {
  22361. height: math.unit(15.6, "meters"),
  22362. weight: math.unit(700000, "kg"),
  22363. name: "Side",
  22364. image: {
  22365. source: "./media/characters/bunsen/side.svg",
  22366. extra: 1644 / 358
  22367. }
  22368. },
  22369. foot: {
  22370. height: math.unit(1.611 * 1644 / 358, "meter"),
  22371. name: "Foot",
  22372. image: {
  22373. source: "./media/characters/bunsen/foot.svg"
  22374. }
  22375. },
  22376. },
  22377. [
  22378. {
  22379. name: "Small",
  22380. height: math.unit(10, "feet")
  22381. },
  22382. {
  22383. name: "Normal",
  22384. height: math.unit(15.6, "meters"),
  22385. default: true
  22386. },
  22387. ]
  22388. ))
  22389. characterMakers.push(() => makeCharacter(
  22390. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22391. {
  22392. front: {
  22393. height: math.unit(4 + 11 / 12, "feet"),
  22394. weight: math.unit(140, "lb"),
  22395. name: "Front",
  22396. image: {
  22397. source: "./media/characters/sesh/front.svg",
  22398. extra: 3420 / 3231,
  22399. bottom: 72 / 3949.5
  22400. }
  22401. },
  22402. },
  22403. [
  22404. {
  22405. name: "Normal",
  22406. height: math.unit(4 + 11 / 12, "feet")
  22407. },
  22408. {
  22409. name: "Grown",
  22410. height: math.unit(15, "feet"),
  22411. default: true
  22412. },
  22413. {
  22414. name: "Macro",
  22415. height: math.unit(1500, "feet")
  22416. },
  22417. {
  22418. name: "Megamacro",
  22419. height: math.unit(30, "miles")
  22420. },
  22421. {
  22422. name: "Continental",
  22423. height: math.unit(3000, "miles")
  22424. },
  22425. {
  22426. name: "Gravity Mass",
  22427. height: math.unit(300000, "miles")
  22428. },
  22429. {
  22430. name: "Planet Buster",
  22431. height: math.unit(30000000, "miles")
  22432. },
  22433. {
  22434. name: "Big",
  22435. height: math.unit(3000000000, "miles")
  22436. },
  22437. ]
  22438. ))
  22439. characterMakers.push(() => makeCharacter(
  22440. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22441. {
  22442. front: {
  22443. height: math.unit(9, "feet"),
  22444. weight: math.unit(350, "lb"),
  22445. name: "Front",
  22446. image: {
  22447. source: "./media/characters/pepper/front.svg",
  22448. extra: 1448 / 1312,
  22449. bottom: 9.4 / 1457.88
  22450. }
  22451. },
  22452. back: {
  22453. height: math.unit(9, "feet"),
  22454. weight: math.unit(350, "lb"),
  22455. name: "Back",
  22456. image: {
  22457. source: "./media/characters/pepper/back.svg",
  22458. extra: 1423 / 1300,
  22459. bottom: 4.6 / 1429
  22460. }
  22461. },
  22462. maw: {
  22463. height: math.unit(0.932, "feet"),
  22464. name: "Maw",
  22465. image: {
  22466. source: "./media/characters/pepper/maw.svg"
  22467. }
  22468. },
  22469. },
  22470. [
  22471. {
  22472. name: "Normal",
  22473. height: math.unit(9, "feet"),
  22474. default: true
  22475. },
  22476. ]
  22477. ))
  22478. characterMakers.push(() => makeCharacter(
  22479. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22480. {
  22481. front: {
  22482. height: math.unit(6, "feet"),
  22483. weight: math.unit(150, "lb"),
  22484. name: "Front",
  22485. image: {
  22486. source: "./media/characters/maelstrom/front.svg",
  22487. extra: 2100 / 1883,
  22488. bottom: 94 / 2196.7
  22489. }
  22490. },
  22491. },
  22492. [
  22493. {
  22494. name: "Less Kaiju",
  22495. height: math.unit(200, "feet")
  22496. },
  22497. {
  22498. name: "Kaiju",
  22499. height: math.unit(400, "feet"),
  22500. default: true
  22501. },
  22502. {
  22503. name: "Kaiju-er",
  22504. height: math.unit(600, "feet")
  22505. },
  22506. ]
  22507. ))
  22508. characterMakers.push(() => makeCharacter(
  22509. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22510. {
  22511. front: {
  22512. height: math.unit(6 + 5 / 12, "feet"),
  22513. weight: math.unit(180, "lb"),
  22514. name: "Front",
  22515. image: {
  22516. source: "./media/characters/lexir/front.svg",
  22517. extra: 180 / 172,
  22518. bottom: 12 / 192
  22519. }
  22520. },
  22521. back: {
  22522. height: math.unit(6 + 5 / 12, "feet"),
  22523. weight: math.unit(180, "lb"),
  22524. name: "Back",
  22525. image: {
  22526. source: "./media/characters/lexir/back.svg",
  22527. extra: 183.84 / 175.5,
  22528. bottom: 3.1 / 187
  22529. }
  22530. },
  22531. },
  22532. [
  22533. {
  22534. name: "Very Smal",
  22535. height: math.unit(1, "nm")
  22536. },
  22537. {
  22538. name: "Normal",
  22539. height: math.unit(6 + 5 / 12, "feet"),
  22540. default: true
  22541. },
  22542. {
  22543. name: "Macro",
  22544. height: math.unit(1, "mile")
  22545. },
  22546. {
  22547. name: "Megamacro",
  22548. height: math.unit(50, "miles")
  22549. },
  22550. ]
  22551. ))
  22552. characterMakers.push(() => makeCharacter(
  22553. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22554. {
  22555. front: {
  22556. height: math.unit(1.5, "meters"),
  22557. weight: math.unit(100, "lb"),
  22558. name: "Front",
  22559. image: {
  22560. source: "./media/characters/maksio/front.svg",
  22561. extra: 1549 / 1531,
  22562. bottom: 123.7 / 1674.5429
  22563. }
  22564. },
  22565. back: {
  22566. height: math.unit(1.5, "meters"),
  22567. weight: math.unit(100, "lb"),
  22568. name: "Back",
  22569. image: {
  22570. source: "./media/characters/maksio/back.svg",
  22571. extra: 1541 / 1509,
  22572. bottom: 97 / 1639
  22573. }
  22574. },
  22575. hand: {
  22576. height: math.unit(0.621, "feet"),
  22577. name: "Hand",
  22578. image: {
  22579. source: "./media/characters/maksio/hand.svg"
  22580. }
  22581. },
  22582. foot: {
  22583. height: math.unit(1.611, "feet"),
  22584. name: "Foot",
  22585. image: {
  22586. source: "./media/characters/maksio/foot.svg"
  22587. }
  22588. },
  22589. },
  22590. [
  22591. {
  22592. name: "Shrunken",
  22593. height: math.unit(10, "cm")
  22594. },
  22595. {
  22596. name: "Normal",
  22597. height: math.unit(150, "cm"),
  22598. default: true
  22599. },
  22600. ]
  22601. ))
  22602. characterMakers.push(() => makeCharacter(
  22603. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22604. {
  22605. front: {
  22606. height: math.unit(100, "feet"),
  22607. name: "Front",
  22608. image: {
  22609. source: "./media/characters/erza-bear/front.svg",
  22610. extra: 2449 / 2390,
  22611. bottom: 46 / 2494
  22612. }
  22613. },
  22614. back: {
  22615. height: math.unit(100, "feet"),
  22616. name: "Back",
  22617. image: {
  22618. source: "./media/characters/erza-bear/back.svg",
  22619. extra: 2489 / 2430,
  22620. bottom: 85.4 / 2480
  22621. }
  22622. },
  22623. tail: {
  22624. height: math.unit(42, "feet"),
  22625. name: "Tail",
  22626. image: {
  22627. source: "./media/characters/erza-bear/tail.svg"
  22628. }
  22629. },
  22630. tongue: {
  22631. height: math.unit(8, "feet"),
  22632. name: "Tongue",
  22633. image: {
  22634. source: "./media/characters/erza-bear/tongue.svg"
  22635. }
  22636. },
  22637. dick: {
  22638. height: math.unit(10.5, "feet"),
  22639. name: "Dick",
  22640. image: {
  22641. source: "./media/characters/erza-bear/dick.svg"
  22642. }
  22643. },
  22644. dickVertical: {
  22645. height: math.unit(16.9, "feet"),
  22646. name: "Dick (Vertical)",
  22647. image: {
  22648. source: "./media/characters/erza-bear/dick-vertical.svg"
  22649. }
  22650. },
  22651. },
  22652. [
  22653. {
  22654. name: "Macro",
  22655. height: math.unit(100, "feet"),
  22656. default: true
  22657. },
  22658. ]
  22659. ))
  22660. characterMakers.push(() => makeCharacter(
  22661. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22662. {
  22663. front: {
  22664. height: math.unit(172, "cm"),
  22665. weight: math.unit(73, "kg"),
  22666. name: "Front",
  22667. image: {
  22668. source: "./media/characters/violet-flor/front.svg",
  22669. extra: 1530 / 1442,
  22670. bottom: 61.9 / 1588.8
  22671. }
  22672. },
  22673. back: {
  22674. height: math.unit(180, "cm"),
  22675. weight: math.unit(73, "kg"),
  22676. name: "Back",
  22677. image: {
  22678. source: "./media/characters/violet-flor/back.svg",
  22679. extra: 1692 / 1630,
  22680. bottom: 20 / 1712
  22681. }
  22682. },
  22683. },
  22684. [
  22685. {
  22686. name: "Normal",
  22687. height: math.unit(172, "cm"),
  22688. default: true
  22689. },
  22690. ]
  22691. ))
  22692. characterMakers.push(() => makeCharacter(
  22693. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22694. {
  22695. front: {
  22696. height: math.unit(6, "feet"),
  22697. weight: math.unit(220, "lb"),
  22698. name: "Front",
  22699. image: {
  22700. source: "./media/characters/lynn-rhea/front.svg",
  22701. extra: 310 / 273
  22702. }
  22703. },
  22704. back: {
  22705. height: math.unit(6, "feet"),
  22706. weight: math.unit(220, "lb"),
  22707. name: "Back",
  22708. image: {
  22709. source: "./media/characters/lynn-rhea/back.svg",
  22710. extra: 310 / 273
  22711. }
  22712. },
  22713. dicks: {
  22714. height: math.unit(0.9, "feet"),
  22715. name: "Dicks",
  22716. image: {
  22717. source: "./media/characters/lynn-rhea/dicks.svg"
  22718. }
  22719. },
  22720. slit: {
  22721. height: math.unit(0.4, "feet"),
  22722. name: "Slit",
  22723. image: {
  22724. source: "./media/characters/lynn-rhea/slit.svg"
  22725. }
  22726. },
  22727. },
  22728. [
  22729. {
  22730. name: "Micro",
  22731. height: math.unit(1, "inch")
  22732. },
  22733. {
  22734. name: "Macro",
  22735. height: math.unit(60, "feet"),
  22736. default: true
  22737. },
  22738. {
  22739. name: "Megamacro",
  22740. height: math.unit(2, "miles")
  22741. },
  22742. {
  22743. name: "Gigamacro",
  22744. height: math.unit(3, "earths")
  22745. },
  22746. {
  22747. name: "Galactic",
  22748. height: math.unit(0.8, "galaxies")
  22749. },
  22750. ]
  22751. ))
  22752. characterMakers.push(() => makeCharacter(
  22753. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22754. {
  22755. front: {
  22756. height: math.unit(1600, "feet"),
  22757. weight: math.unit(85758785169, "kg"),
  22758. name: "Front",
  22759. image: {
  22760. source: "./media/characters/valathos/front.svg",
  22761. extra: 1451 / 1339
  22762. }
  22763. },
  22764. },
  22765. [
  22766. {
  22767. name: "Macro",
  22768. height: math.unit(1600, "feet"),
  22769. default: true
  22770. },
  22771. ]
  22772. ))
  22773. characterMakers.push(() => makeCharacter(
  22774. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22775. {
  22776. front: {
  22777. height: math.unit(7 + 5 / 12, "feet"),
  22778. weight: math.unit(300, "lb"),
  22779. name: "Front",
  22780. image: {
  22781. source: "./media/characters/azula/front.svg",
  22782. extra: 3208 / 2880,
  22783. bottom: 80.2 / 3277
  22784. }
  22785. },
  22786. back: {
  22787. height: math.unit(7 + 5 / 12, "feet"),
  22788. weight: math.unit(300, "lb"),
  22789. name: "Back",
  22790. image: {
  22791. source: "./media/characters/azula/back.svg",
  22792. extra: 3169 / 2822,
  22793. bottom: 150.6 / 3321
  22794. }
  22795. },
  22796. },
  22797. [
  22798. {
  22799. name: "Normal",
  22800. height: math.unit(7 + 5 / 12, "feet"),
  22801. default: true
  22802. },
  22803. {
  22804. name: "Big",
  22805. height: math.unit(20, "feet")
  22806. },
  22807. ]
  22808. ))
  22809. characterMakers.push(() => makeCharacter(
  22810. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22811. {
  22812. front: {
  22813. height: math.unit(5 + 1 / 12, "feet"),
  22814. weight: math.unit(110, "lb"),
  22815. name: "Front",
  22816. image: {
  22817. source: "./media/characters/rupert/front.svg",
  22818. extra: 1549 / 1495,
  22819. bottom: 54.2 / 1604.4
  22820. }
  22821. },
  22822. },
  22823. [
  22824. {
  22825. name: "Normal",
  22826. height: math.unit(5 + 1 / 12, "feet"),
  22827. default: true
  22828. },
  22829. ]
  22830. ))
  22831. characterMakers.push(() => makeCharacter(
  22832. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  22833. {
  22834. front: {
  22835. height: math.unit(8 + 4 / 12, "feet"),
  22836. weight: math.unit(350, "lb"),
  22837. name: "Front",
  22838. image: {
  22839. source: "./media/characters/sheera-castellar/front.svg",
  22840. extra: 1957 / 1894,
  22841. bottom: 26.97 / 1975.017
  22842. }
  22843. },
  22844. side: {
  22845. height: math.unit(8 + 4 / 12, "feet"),
  22846. weight: math.unit(350, "lb"),
  22847. name: "Side",
  22848. image: {
  22849. source: "./media/characters/sheera-castellar/side.svg",
  22850. extra: 1957 / 1894
  22851. }
  22852. },
  22853. back: {
  22854. height: math.unit(8 + 4 / 12, "feet"),
  22855. weight: math.unit(350, "lb"),
  22856. name: "Back",
  22857. image: {
  22858. source: "./media/characters/sheera-castellar/back.svg",
  22859. extra: 1957 / 1894
  22860. }
  22861. },
  22862. angled: {
  22863. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22864. weight: math.unit(350, "lb"),
  22865. name: "Angled",
  22866. image: {
  22867. source: "./media/characters/sheera-castellar/angled.svg",
  22868. extra: 1807 / 1707,
  22869. bottom: 68 / 1875
  22870. }
  22871. },
  22872. genitals: {
  22873. height: math.unit(2.2, "feet"),
  22874. name: "Genitals",
  22875. image: {
  22876. source: "./media/characters/sheera-castellar/genitals.svg"
  22877. }
  22878. },
  22879. taur: {
  22880. height: math.unit(10 + 6/12, "feet"),
  22881. name: "Taur",
  22882. image: {
  22883. source: "./media/characters/sheera-castellar/taur.svg",
  22884. extra: 2017/1909,
  22885. bottom: 185/2202
  22886. }
  22887. },
  22888. },
  22889. [
  22890. {
  22891. name: "Normal",
  22892. height: math.unit(8 + 4 / 12, "feet")
  22893. },
  22894. {
  22895. name: "Macro",
  22896. height: math.unit(150, "feet"),
  22897. default: true
  22898. },
  22899. {
  22900. name: "Macro+",
  22901. height: math.unit(800, "feet")
  22902. },
  22903. ]
  22904. ))
  22905. characterMakers.push(() => makeCharacter(
  22906. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22907. {
  22908. front: {
  22909. height: math.unit(6, "feet"),
  22910. weight: math.unit(150, "lb"),
  22911. name: "Front",
  22912. image: {
  22913. source: "./media/characters/jaipur/front.svg",
  22914. extra: 3860 / 3731,
  22915. bottom: 287 / 4140
  22916. }
  22917. },
  22918. back: {
  22919. height: math.unit(6, "feet"),
  22920. weight: math.unit(150, "lb"),
  22921. name: "Back",
  22922. image: {
  22923. source: "./media/characters/jaipur/back.svg",
  22924. extra: 4060 / 3930,
  22925. bottom: 151 / 4200
  22926. }
  22927. },
  22928. },
  22929. [
  22930. {
  22931. name: "Normal",
  22932. height: math.unit(1.85, "meters"),
  22933. default: true
  22934. },
  22935. {
  22936. name: "Macro",
  22937. height: math.unit(150, "meters")
  22938. },
  22939. {
  22940. name: "Macro+",
  22941. height: math.unit(0.5, "miles")
  22942. },
  22943. {
  22944. name: "Macro++",
  22945. height: math.unit(2.5, "miles")
  22946. },
  22947. {
  22948. name: "Macro+++",
  22949. height: math.unit(12, "miles")
  22950. },
  22951. {
  22952. name: "Macro++++",
  22953. height: math.unit(120, "miles")
  22954. },
  22955. {
  22956. name: "Macro+++++",
  22957. height: math.unit(1200, "miles")
  22958. },
  22959. ]
  22960. ))
  22961. characterMakers.push(() => makeCharacter(
  22962. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22963. {
  22964. front: {
  22965. height: math.unit(6, "feet"),
  22966. weight: math.unit(150, "lb"),
  22967. name: "Front",
  22968. image: {
  22969. source: "./media/characters/sheila-wolf/front.svg",
  22970. extra: 1931 / 1808,
  22971. bottom: 29.5 / 1960
  22972. }
  22973. },
  22974. dick: {
  22975. height: math.unit(1.464, "feet"),
  22976. name: "Dick",
  22977. image: {
  22978. source: "./media/characters/sheila-wolf/dick.svg"
  22979. }
  22980. },
  22981. muzzle: {
  22982. height: math.unit(0.513, "feet"),
  22983. name: "Muzzle",
  22984. image: {
  22985. source: "./media/characters/sheila-wolf/muzzle.svg"
  22986. }
  22987. },
  22988. },
  22989. [
  22990. {
  22991. name: "Macro",
  22992. height: math.unit(70, "feet"),
  22993. default: true
  22994. },
  22995. ]
  22996. ))
  22997. characterMakers.push(() => makeCharacter(
  22998. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22999. {
  23000. front: {
  23001. height: math.unit(32, "meters"),
  23002. weight: math.unit(300000, "kg"),
  23003. name: "Front",
  23004. image: {
  23005. source: "./media/characters/almor/front.svg",
  23006. extra: 1408 / 1322,
  23007. bottom: 94.6 / 1506.5
  23008. }
  23009. },
  23010. },
  23011. [
  23012. {
  23013. name: "Macro",
  23014. height: math.unit(32, "meters"),
  23015. default: true
  23016. },
  23017. ]
  23018. ))
  23019. characterMakers.push(() => makeCharacter(
  23020. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23021. {
  23022. front: {
  23023. height: math.unit(7, "feet"),
  23024. weight: math.unit(200, "lb"),
  23025. name: "Front",
  23026. image: {
  23027. source: "./media/characters/silver/front.svg",
  23028. extra: 472.1 / 450.5,
  23029. bottom: 26.5 / 499.424
  23030. }
  23031. },
  23032. },
  23033. [
  23034. {
  23035. name: "Normal",
  23036. height: math.unit(7, "feet"),
  23037. default: true
  23038. },
  23039. {
  23040. name: "Macro",
  23041. height: math.unit(800, "feet")
  23042. },
  23043. {
  23044. name: "Megamacro",
  23045. height: math.unit(250, "miles")
  23046. },
  23047. ]
  23048. ))
  23049. characterMakers.push(() => makeCharacter(
  23050. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23051. {
  23052. front: {
  23053. height: math.unit(6, "feet"),
  23054. weight: math.unit(150, "lb"),
  23055. name: "Front",
  23056. image: {
  23057. source: "./media/characters/pliskin/front.svg",
  23058. extra: 1469 / 1359,
  23059. bottom: 70 / 1540
  23060. }
  23061. },
  23062. },
  23063. [
  23064. {
  23065. name: "Micro",
  23066. height: math.unit(3, "inches")
  23067. },
  23068. {
  23069. name: "Normal",
  23070. height: math.unit(5 + 11 / 12, "feet"),
  23071. default: true
  23072. },
  23073. {
  23074. name: "Macro",
  23075. height: math.unit(120, "feet")
  23076. },
  23077. ]
  23078. ))
  23079. characterMakers.push(() => makeCharacter(
  23080. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23081. {
  23082. front: {
  23083. height: math.unit(6, "feet"),
  23084. weight: math.unit(150, "lb"),
  23085. name: "Front",
  23086. image: {
  23087. source: "./media/characters/sammy/front.svg",
  23088. extra: 1193 / 1089,
  23089. bottom: 30.5 / 1226
  23090. }
  23091. },
  23092. },
  23093. [
  23094. {
  23095. name: "Macro",
  23096. height: math.unit(1700, "feet"),
  23097. default: true
  23098. },
  23099. {
  23100. name: "Examacro",
  23101. height: math.unit(2.5e9, "lightyears")
  23102. },
  23103. ]
  23104. ))
  23105. characterMakers.push(() => makeCharacter(
  23106. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23107. {
  23108. front: {
  23109. height: math.unit(21, "meters"),
  23110. weight: math.unit(12, "tonnes"),
  23111. name: "Front",
  23112. image: {
  23113. source: "./media/characters/kuru/front.svg",
  23114. extra: 4301 / 3785,
  23115. bottom: 371.3 / 4691
  23116. }
  23117. },
  23118. },
  23119. [
  23120. {
  23121. name: "Macro",
  23122. height: math.unit(21, "meters"),
  23123. default: true
  23124. },
  23125. ]
  23126. ))
  23127. characterMakers.push(() => makeCharacter(
  23128. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23129. {
  23130. front: {
  23131. height: math.unit(23, "meters"),
  23132. weight: math.unit(12.2, "tonnes"),
  23133. name: "Front",
  23134. image: {
  23135. source: "./media/characters/rakka/front.svg",
  23136. extra: 4670 / 4169,
  23137. bottom: 301 / 4968.7
  23138. }
  23139. },
  23140. },
  23141. [
  23142. {
  23143. name: "Macro",
  23144. height: math.unit(23, "meters"),
  23145. default: true
  23146. },
  23147. ]
  23148. ))
  23149. characterMakers.push(() => makeCharacter(
  23150. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23151. {
  23152. front: {
  23153. height: math.unit(6, "feet"),
  23154. weight: math.unit(150, "lb"),
  23155. name: "Front",
  23156. image: {
  23157. source: "./media/characters/rhys-feline/front.svg",
  23158. extra: 2488 / 2308,
  23159. bottom: 35.67 / 2519.19
  23160. }
  23161. },
  23162. },
  23163. [
  23164. {
  23165. name: "Really Small",
  23166. height: math.unit(1, "nm")
  23167. },
  23168. {
  23169. name: "Micro",
  23170. height: math.unit(4, "inches")
  23171. },
  23172. {
  23173. name: "Normal",
  23174. height: math.unit(4 + 10 / 12, "feet"),
  23175. default: true
  23176. },
  23177. {
  23178. name: "Macro",
  23179. height: math.unit(100, "feet")
  23180. },
  23181. {
  23182. name: "Megamacto",
  23183. height: math.unit(50, "miles")
  23184. },
  23185. ]
  23186. ))
  23187. characterMakers.push(() => makeCharacter(
  23188. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23189. {
  23190. side: {
  23191. height: math.unit(30, "feet"),
  23192. weight: math.unit(35000, "kg"),
  23193. name: "Side",
  23194. image: {
  23195. source: "./media/characters/alydar/side.svg",
  23196. extra: 234 / 222,
  23197. bottom: 6.5 / 241
  23198. }
  23199. },
  23200. front: {
  23201. height: math.unit(30, "feet"),
  23202. weight: math.unit(35000, "kg"),
  23203. name: "Front",
  23204. image: {
  23205. source: "./media/characters/alydar/front.svg",
  23206. extra: 223.37 / 210.2,
  23207. bottom: 22.3 / 246.76
  23208. }
  23209. },
  23210. top: {
  23211. height: math.unit(64.54, "feet"),
  23212. weight: math.unit(35000, "kg"),
  23213. name: "Top",
  23214. image: {
  23215. source: "./media/characters/alydar/top.svg"
  23216. }
  23217. },
  23218. anthro: {
  23219. height: math.unit(30, "feet"),
  23220. weight: math.unit(9000, "kg"),
  23221. name: "Anthro",
  23222. image: {
  23223. source: "./media/characters/alydar/anthro.svg",
  23224. extra: 432 / 421,
  23225. bottom: 7.18 / 440
  23226. }
  23227. },
  23228. maw: {
  23229. height: math.unit(11.693, "feet"),
  23230. name: "Maw",
  23231. image: {
  23232. source: "./media/characters/alydar/maw.svg"
  23233. }
  23234. },
  23235. head: {
  23236. height: math.unit(11.693, "feet"),
  23237. name: "Head",
  23238. image: {
  23239. source: "./media/characters/alydar/head.svg"
  23240. }
  23241. },
  23242. headAlt: {
  23243. height: math.unit(12.861, "feet"),
  23244. name: "Head (Alt)",
  23245. image: {
  23246. source: "./media/characters/alydar/head-alt.svg"
  23247. }
  23248. },
  23249. wing: {
  23250. height: math.unit(20.712, "feet"),
  23251. name: "Wing",
  23252. image: {
  23253. source: "./media/characters/alydar/wing.svg"
  23254. }
  23255. },
  23256. wingFeather: {
  23257. height: math.unit(9.662, "feet"),
  23258. name: "Wing Feather",
  23259. image: {
  23260. source: "./media/characters/alydar/wing-feather.svg"
  23261. }
  23262. },
  23263. countourFeather: {
  23264. height: math.unit(4.154, "feet"),
  23265. name: "Contour Feather",
  23266. image: {
  23267. source: "./media/characters/alydar/contour-feather.svg"
  23268. }
  23269. },
  23270. },
  23271. [
  23272. {
  23273. name: "Diplomatic",
  23274. height: math.unit(13, "feet"),
  23275. default: true
  23276. },
  23277. {
  23278. name: "Small",
  23279. height: math.unit(30, "feet")
  23280. },
  23281. {
  23282. name: "Normal",
  23283. height: math.unit(95, "feet"),
  23284. default: true
  23285. },
  23286. {
  23287. name: "Large",
  23288. height: math.unit(285, "feet")
  23289. },
  23290. {
  23291. name: "Incomprehensible",
  23292. height: math.unit(450, "megameters")
  23293. },
  23294. ]
  23295. ))
  23296. characterMakers.push(() => makeCharacter(
  23297. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23298. {
  23299. side: {
  23300. height: math.unit(11, "feet"),
  23301. weight: math.unit(1750, "kg"),
  23302. name: "Side",
  23303. image: {
  23304. source: "./media/characters/selicia/side.svg",
  23305. extra: 440 / 396,
  23306. bottom: 24.8 / 465.979
  23307. }
  23308. },
  23309. maw: {
  23310. height: math.unit(4.665, "feet"),
  23311. name: "Maw",
  23312. image: {
  23313. source: "./media/characters/selicia/maw.svg"
  23314. }
  23315. },
  23316. },
  23317. [
  23318. {
  23319. name: "Normal",
  23320. height: math.unit(11, "feet"),
  23321. default: true
  23322. },
  23323. ]
  23324. ))
  23325. characterMakers.push(() => makeCharacter(
  23326. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23327. {
  23328. side: {
  23329. height: math.unit(2 + 6 / 12, "feet"),
  23330. weight: math.unit(30, "lb"),
  23331. name: "Side",
  23332. image: {
  23333. source: "./media/characters/layla/side.svg",
  23334. extra: 244 / 188,
  23335. bottom: 18.2 / 262.1
  23336. }
  23337. },
  23338. back: {
  23339. height: math.unit(2 + 6 / 12, "feet"),
  23340. weight: math.unit(30, "lb"),
  23341. name: "Back",
  23342. image: {
  23343. source: "./media/characters/layla/back.svg",
  23344. extra: 308 / 241.5,
  23345. bottom: 8.9 / 316.8
  23346. }
  23347. },
  23348. cumming: {
  23349. height: math.unit(2 + 6 / 12, "feet"),
  23350. weight: math.unit(30, "lb"),
  23351. name: "Cumming",
  23352. image: {
  23353. source: "./media/characters/layla/cumming.svg",
  23354. extra: 342 / 279,
  23355. bottom: 595 / 938
  23356. }
  23357. },
  23358. dickFlaccid: {
  23359. height: math.unit(2.595, "feet"),
  23360. name: "Flaccid Genitals",
  23361. image: {
  23362. source: "./media/characters/layla/dick-flaccid.svg"
  23363. }
  23364. },
  23365. dickErect: {
  23366. height: math.unit(2.359, "feet"),
  23367. name: "Erect Genitals",
  23368. image: {
  23369. source: "./media/characters/layla/dick-erect.svg"
  23370. }
  23371. },
  23372. dragon: {
  23373. height: math.unit(40, "feet"),
  23374. name: "Dragon",
  23375. image: {
  23376. source: "./media/characters/layla/dragon.svg",
  23377. extra: 610/535,
  23378. bottom: 367/977
  23379. }
  23380. },
  23381. taur: {
  23382. height: math.unit(30, "feet"),
  23383. name: "Taur",
  23384. image: {
  23385. source: "./media/characters/layla/taur.svg",
  23386. extra: 1268/1199,
  23387. bottom: 112/1380
  23388. }
  23389. },
  23390. },
  23391. [
  23392. {
  23393. name: "Micro",
  23394. height: math.unit(1, "inch")
  23395. },
  23396. {
  23397. name: "Small",
  23398. height: math.unit(1, "foot")
  23399. },
  23400. {
  23401. name: "Normal",
  23402. height: math.unit(2 + 6 / 12, "feet"),
  23403. default: true
  23404. },
  23405. {
  23406. name: "Macro",
  23407. height: math.unit(200, "feet")
  23408. },
  23409. {
  23410. name: "Megamacro",
  23411. height: math.unit(1000, "miles")
  23412. },
  23413. {
  23414. name: "Planetary",
  23415. height: math.unit(8000, "miles")
  23416. },
  23417. {
  23418. name: "True Layla",
  23419. height: math.unit(200000 * 7, "multiverses")
  23420. },
  23421. ]
  23422. ))
  23423. characterMakers.push(() => makeCharacter(
  23424. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23425. {
  23426. back: {
  23427. height: math.unit(10.5, "feet"),
  23428. weight: math.unit(800, "lb"),
  23429. name: "Back",
  23430. image: {
  23431. source: "./media/characters/knox/back.svg",
  23432. extra: 1486 / 1089,
  23433. bottom: 107 / 1601.4
  23434. }
  23435. },
  23436. side: {
  23437. height: math.unit(10.5, "feet"),
  23438. weight: math.unit(800, "lb"),
  23439. name: "Side",
  23440. image: {
  23441. source: "./media/characters/knox/side.svg",
  23442. extra: 244 / 218,
  23443. bottom: 14 / 260
  23444. }
  23445. },
  23446. },
  23447. [
  23448. {
  23449. name: "Compact",
  23450. height: math.unit(10.5, "feet"),
  23451. default: true
  23452. },
  23453. {
  23454. name: "Dynamax",
  23455. height: math.unit(210, "feet")
  23456. },
  23457. {
  23458. name: "Full Macro",
  23459. height: math.unit(850, "feet")
  23460. },
  23461. ]
  23462. ))
  23463. characterMakers.push(() => makeCharacter(
  23464. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23465. {
  23466. front: {
  23467. height: math.unit(6, "feet"),
  23468. weight: math.unit(152, "lb"),
  23469. name: "Front",
  23470. image: {
  23471. source: "./media/characters/shin-pikachu/front.svg",
  23472. extra: 1854/1602,
  23473. bottom: 166/2020
  23474. }
  23475. },
  23476. hand: {
  23477. height: math.unit(1.055, "feet"),
  23478. name: "Hand",
  23479. image: {
  23480. source: "./media/characters/shin-pikachu/hand.svg"
  23481. }
  23482. },
  23483. foot: {
  23484. height: math.unit(1.1, "feet"),
  23485. name: "Foot",
  23486. image: {
  23487. source: "./media/characters/shin-pikachu/foot.svg"
  23488. }
  23489. },
  23490. collar: {
  23491. height: math.unit(0.386, "feet"),
  23492. name: "Collar",
  23493. image: {
  23494. source: "./media/characters/shin-pikachu/collar.svg"
  23495. }
  23496. },
  23497. },
  23498. [
  23499. {
  23500. name: "Smallest",
  23501. height: math.unit(0.5, "inches")
  23502. },
  23503. {
  23504. name: "Micro",
  23505. height: math.unit(6, "inches")
  23506. },
  23507. {
  23508. name: "Normal",
  23509. height: math.unit(6, "feet"),
  23510. default: true
  23511. },
  23512. {
  23513. name: "Macro",
  23514. height: math.unit(150, "feet")
  23515. },
  23516. ]
  23517. ))
  23518. characterMakers.push(() => makeCharacter(
  23519. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23520. {
  23521. front: {
  23522. height: math.unit(28, "feet"),
  23523. weight: math.unit(10500, "lb"),
  23524. name: "Front",
  23525. image: {
  23526. source: "./media/characters/kayda/front.svg",
  23527. extra: 1536 / 1428,
  23528. bottom: 68.7 / 1603
  23529. }
  23530. },
  23531. back: {
  23532. height: math.unit(28, "feet"),
  23533. weight: math.unit(10500, "lb"),
  23534. name: "Back",
  23535. image: {
  23536. source: "./media/characters/kayda/back.svg",
  23537. extra: 1557 / 1464,
  23538. bottom: 39.5 / 1597.49
  23539. }
  23540. },
  23541. dick: {
  23542. height: math.unit(3.858, "feet"),
  23543. name: "Dick",
  23544. image: {
  23545. source: "./media/characters/kayda/dick.svg"
  23546. }
  23547. },
  23548. },
  23549. [
  23550. {
  23551. name: "Macro",
  23552. height: math.unit(28, "feet"),
  23553. default: true
  23554. },
  23555. ]
  23556. ))
  23557. characterMakers.push(() => makeCharacter(
  23558. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23559. {
  23560. front: {
  23561. height: math.unit(10 + 11 / 12, "feet"),
  23562. weight: math.unit(1400, "lb"),
  23563. name: "Front",
  23564. image: {
  23565. source: "./media/characters/brian/front.svg",
  23566. extra: 737 / 692,
  23567. bottom: 55.4 / 785
  23568. }
  23569. },
  23570. },
  23571. [
  23572. {
  23573. name: "Normal",
  23574. height: math.unit(10 + 11 / 12, "feet"),
  23575. default: true
  23576. },
  23577. ]
  23578. ))
  23579. characterMakers.push(() => makeCharacter(
  23580. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23581. {
  23582. front: {
  23583. height: math.unit(5 + 8 / 12, "feet"),
  23584. weight: math.unit(140, "lb"),
  23585. name: "Front",
  23586. image: {
  23587. source: "./media/characters/khemri/front.svg",
  23588. extra: 4780 / 4059,
  23589. bottom: 80.1 / 4859.25
  23590. }
  23591. },
  23592. },
  23593. [
  23594. {
  23595. name: "Micro",
  23596. height: math.unit(6, "inches")
  23597. },
  23598. {
  23599. name: "Normal",
  23600. height: math.unit(5 + 8 / 12, "feet"),
  23601. default: true
  23602. },
  23603. ]
  23604. ))
  23605. characterMakers.push(() => makeCharacter(
  23606. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23607. {
  23608. front: {
  23609. height: math.unit(13, "feet"),
  23610. weight: math.unit(1700, "lb"),
  23611. name: "Front",
  23612. image: {
  23613. source: "./media/characters/felix-braveheart/front.svg",
  23614. extra: 1222 / 1157,
  23615. bottom: 53.2 / 1280
  23616. }
  23617. },
  23618. back: {
  23619. height: math.unit(13, "feet"),
  23620. weight: math.unit(1700, "lb"),
  23621. name: "Back",
  23622. image: {
  23623. source: "./media/characters/felix-braveheart/back.svg",
  23624. extra: 1277 / 1203,
  23625. bottom: 50.2 / 1327
  23626. }
  23627. },
  23628. feral: {
  23629. height: math.unit(6, "feet"),
  23630. weight: math.unit(400, "lb"),
  23631. name: "Feral",
  23632. image: {
  23633. source: "./media/characters/felix-braveheart/feral.svg",
  23634. extra: 682 / 625,
  23635. bottom: 6.9 / 688
  23636. }
  23637. },
  23638. },
  23639. [
  23640. {
  23641. name: "Normal",
  23642. height: math.unit(13, "feet"),
  23643. default: true
  23644. },
  23645. ]
  23646. ))
  23647. characterMakers.push(() => makeCharacter(
  23648. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23649. {
  23650. side: {
  23651. height: math.unit(5 + 11 / 12, "feet"),
  23652. weight: math.unit(1400, "lb"),
  23653. name: "Side",
  23654. image: {
  23655. source: "./media/characters/shadow-blade/side.svg",
  23656. extra: 1726 / 1267,
  23657. bottom: 58.4 / 1785
  23658. }
  23659. },
  23660. },
  23661. [
  23662. {
  23663. name: "Normal",
  23664. height: math.unit(5 + 11 / 12, "feet"),
  23665. default: true
  23666. },
  23667. ]
  23668. ))
  23669. characterMakers.push(() => makeCharacter(
  23670. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23671. {
  23672. front: {
  23673. height: math.unit(1 + 6 / 12, "feet"),
  23674. weight: math.unit(25, "lb"),
  23675. name: "Front",
  23676. image: {
  23677. source: "./media/characters/karla-halldor/front.svg",
  23678. extra: 1459 / 1383,
  23679. bottom: 12 / 1472
  23680. }
  23681. },
  23682. },
  23683. [
  23684. {
  23685. name: "Normal",
  23686. height: math.unit(1 + 6 / 12, "feet"),
  23687. default: true
  23688. },
  23689. ]
  23690. ))
  23691. characterMakers.push(() => makeCharacter(
  23692. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23693. {
  23694. front: {
  23695. height: math.unit(6 + 2 / 12, "feet"),
  23696. weight: math.unit(160, "lb"),
  23697. name: "Front",
  23698. image: {
  23699. source: "./media/characters/ariam/front.svg",
  23700. extra: 714 / 617,
  23701. bottom: 23.4 / 737,
  23702. }
  23703. },
  23704. squatting: {
  23705. height: math.unit(4.1, "feet"),
  23706. weight: math.unit(160, "lb"),
  23707. name: "Squatting",
  23708. image: {
  23709. source: "./media/characters/ariam/squatting.svg",
  23710. extra: 2617 / 2112,
  23711. bottom: 61.2 / 2681,
  23712. }
  23713. },
  23714. },
  23715. [
  23716. {
  23717. name: "Normal",
  23718. height: math.unit(6 + 2 / 12, "feet"),
  23719. default: true
  23720. },
  23721. {
  23722. name: "Normal+",
  23723. height: math.unit(4, "meters")
  23724. },
  23725. {
  23726. name: "Macro",
  23727. height: math.unit(50, "meters")
  23728. },
  23729. {
  23730. name: "Macro+",
  23731. height: math.unit(100, "meters")
  23732. },
  23733. {
  23734. name: "Megamacro",
  23735. height: math.unit(20, "km")
  23736. },
  23737. ]
  23738. ))
  23739. characterMakers.push(() => makeCharacter(
  23740. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23741. {
  23742. front: {
  23743. height: math.unit(1.67, "meters"),
  23744. weight: math.unit(140, "lb"),
  23745. name: "Front",
  23746. image: {
  23747. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23748. extra: 438 / 410,
  23749. bottom: 0.75 / 439
  23750. }
  23751. },
  23752. },
  23753. [
  23754. {
  23755. name: "Shrunken",
  23756. height: math.unit(7.6, "cm")
  23757. },
  23758. {
  23759. name: "Human Scale",
  23760. height: math.unit(1.67, "meters")
  23761. },
  23762. {
  23763. name: "Wolxi Scale",
  23764. height: math.unit(36.7, "meters"),
  23765. default: true
  23766. },
  23767. ]
  23768. ))
  23769. characterMakers.push(() => makeCharacter(
  23770. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23771. {
  23772. front: {
  23773. height: math.unit(1.73, "meters"),
  23774. weight: math.unit(240, "lb"),
  23775. name: "Front",
  23776. image: {
  23777. source: "./media/characters/izue-two-mothers/front.svg",
  23778. extra: 469 / 437,
  23779. bottom: 1.24 / 470.6
  23780. }
  23781. },
  23782. },
  23783. [
  23784. {
  23785. name: "Shrunken",
  23786. height: math.unit(7.86, "cm")
  23787. },
  23788. {
  23789. name: "Human Scale",
  23790. height: math.unit(1.73, "meters")
  23791. },
  23792. {
  23793. name: "Wolxi Scale",
  23794. height: math.unit(38, "meters"),
  23795. default: true
  23796. },
  23797. ]
  23798. ))
  23799. characterMakers.push(() => makeCharacter(
  23800. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23801. {
  23802. front: {
  23803. height: math.unit(1.55, "meters"),
  23804. weight: math.unit(120, "lb"),
  23805. name: "Front",
  23806. image: {
  23807. source: "./media/characters/teeku-love-shack/front.svg",
  23808. extra: 387 / 362,
  23809. bottom: 1.51 / 388
  23810. }
  23811. },
  23812. },
  23813. [
  23814. {
  23815. name: "Shrunken",
  23816. height: math.unit(7, "cm")
  23817. },
  23818. {
  23819. name: "Human Scale",
  23820. height: math.unit(1.55, "meters")
  23821. },
  23822. {
  23823. name: "Wolxi Scale",
  23824. height: math.unit(34.1, "meters"),
  23825. default: true
  23826. },
  23827. ]
  23828. ))
  23829. characterMakers.push(() => makeCharacter(
  23830. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23831. {
  23832. front: {
  23833. height: math.unit(1.83, "meters"),
  23834. weight: math.unit(135, "lb"),
  23835. name: "Front",
  23836. image: {
  23837. source: "./media/characters/dejma-the-red/front.svg",
  23838. extra: 480 / 458,
  23839. bottom: 1.8 / 482
  23840. }
  23841. },
  23842. },
  23843. [
  23844. {
  23845. name: "Shrunken",
  23846. height: math.unit(8.3, "cm")
  23847. },
  23848. {
  23849. name: "Human Scale",
  23850. height: math.unit(1.83, "meters")
  23851. },
  23852. {
  23853. name: "Wolxi Scale",
  23854. height: math.unit(40, "meters"),
  23855. default: true
  23856. },
  23857. ]
  23858. ))
  23859. characterMakers.push(() => makeCharacter(
  23860. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23861. {
  23862. front: {
  23863. height: math.unit(1.78, "meters"),
  23864. weight: math.unit(65, "kg"),
  23865. name: "Front",
  23866. image: {
  23867. source: "./media/characters/aki/front.svg",
  23868. extra: 452 / 415
  23869. }
  23870. },
  23871. frontNsfw: {
  23872. height: math.unit(1.78, "meters"),
  23873. weight: math.unit(65, "kg"),
  23874. name: "Front (NSFW)",
  23875. image: {
  23876. source: "./media/characters/aki/front-nsfw.svg",
  23877. extra: 452 / 415
  23878. }
  23879. },
  23880. back: {
  23881. height: math.unit(1.78, "meters"),
  23882. weight: math.unit(65, "kg"),
  23883. name: "Back",
  23884. image: {
  23885. source: "./media/characters/aki/back.svg",
  23886. extra: 452 / 415
  23887. }
  23888. },
  23889. rump: {
  23890. height: math.unit(2.05, "feet"),
  23891. name: "Rump",
  23892. image: {
  23893. source: "./media/characters/aki/rump.svg"
  23894. }
  23895. },
  23896. dick: {
  23897. height: math.unit(0.95, "feet"),
  23898. name: "Dick",
  23899. image: {
  23900. source: "./media/characters/aki/dick.svg"
  23901. }
  23902. },
  23903. },
  23904. [
  23905. {
  23906. name: "Micro",
  23907. height: math.unit(15, "cm")
  23908. },
  23909. {
  23910. name: "Normal",
  23911. height: math.unit(178, "cm"),
  23912. default: true
  23913. },
  23914. {
  23915. name: "Macro",
  23916. height: math.unit(214, "m")
  23917. },
  23918. {
  23919. name: "Macro+",
  23920. height: math.unit(534, "m")
  23921. },
  23922. ]
  23923. ))
  23924. characterMakers.push(() => makeCharacter(
  23925. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23926. {
  23927. front: {
  23928. height: math.unit(5 + 5 / 12, "feet"),
  23929. weight: math.unit(120, "lb"),
  23930. name: "Front",
  23931. image: {
  23932. source: "./media/characters/ari/front.svg",
  23933. extra: 714.5 / 682,
  23934. bottom: 8 / 722.5
  23935. }
  23936. },
  23937. },
  23938. [
  23939. {
  23940. name: "Normal",
  23941. height: math.unit(5 + 5 / 12, "feet")
  23942. },
  23943. {
  23944. name: "Macro",
  23945. height: math.unit(100, "feet"),
  23946. default: true
  23947. },
  23948. {
  23949. name: "Megamacro",
  23950. height: math.unit(100, "miles")
  23951. },
  23952. {
  23953. name: "Gigamacro",
  23954. height: math.unit(80000, "miles")
  23955. },
  23956. ]
  23957. ))
  23958. characterMakers.push(() => makeCharacter(
  23959. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23960. {
  23961. side: {
  23962. height: math.unit(9, "feet"),
  23963. weight: math.unit(400, "kg"),
  23964. name: "Side",
  23965. image: {
  23966. source: "./media/characters/bolt/side.svg",
  23967. extra: 1126 / 896,
  23968. bottom: 60 / 1187.3,
  23969. }
  23970. },
  23971. },
  23972. [
  23973. {
  23974. name: "Micro",
  23975. height: math.unit(5, "inches")
  23976. },
  23977. {
  23978. name: "Normal",
  23979. height: math.unit(9, "feet"),
  23980. default: true
  23981. },
  23982. {
  23983. name: "Macro",
  23984. height: math.unit(700, "feet")
  23985. },
  23986. {
  23987. name: "Max Size",
  23988. height: math.unit(1.52e22, "yottameters")
  23989. },
  23990. ]
  23991. ))
  23992. characterMakers.push(() => makeCharacter(
  23993. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23994. {
  23995. front: {
  23996. height: math.unit(4.53, "meters"),
  23997. weight: math.unit(3, "tons"),
  23998. name: "Front",
  23999. image: {
  24000. source: "./media/characters/draekon-sylviar/front.svg",
  24001. extra: 1228 / 1068,
  24002. bottom: 41 / 1270
  24003. }
  24004. },
  24005. tail: {
  24006. height: math.unit(1.772, "meter"),
  24007. name: "Tail",
  24008. image: {
  24009. source: "./media/characters/draekon-sylviar/tail.svg"
  24010. }
  24011. },
  24012. head: {
  24013. height: math.unit(1.331, "meter"),
  24014. name: "Head",
  24015. image: {
  24016. source: "./media/characters/draekon-sylviar/head.svg"
  24017. }
  24018. },
  24019. hand: {
  24020. height: math.unit(0.564, "meter"),
  24021. name: "Hand",
  24022. image: {
  24023. source: "./media/characters/draekon-sylviar/hand.svg"
  24024. }
  24025. },
  24026. foot: {
  24027. height: math.unit(0.621, "meter"),
  24028. name: "Foot",
  24029. image: {
  24030. source: "./media/characters/draekon-sylviar/foot.svg",
  24031. bottom: 32 / 324
  24032. }
  24033. },
  24034. dick: {
  24035. height: math.unit(61, "cm"),
  24036. name: "Dick",
  24037. image: {
  24038. source: "./media/characters/draekon-sylviar/dick.svg"
  24039. }
  24040. },
  24041. dickseparated: {
  24042. height: math.unit(61, "cm"),
  24043. name: "Dick-separated",
  24044. image: {
  24045. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24046. }
  24047. },
  24048. },
  24049. [
  24050. {
  24051. name: "Small",
  24052. height: math.unit(4.53 / 2, "meters"),
  24053. default: true
  24054. },
  24055. {
  24056. name: "Normal",
  24057. height: math.unit(4.53, "meters"),
  24058. default: true
  24059. },
  24060. {
  24061. name: "Large",
  24062. height: math.unit(4.53 * 2, "meters"),
  24063. },
  24064. ]
  24065. ))
  24066. characterMakers.push(() => makeCharacter(
  24067. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24068. {
  24069. front: {
  24070. height: math.unit(6 + 2 / 12, "feet"),
  24071. weight: math.unit(180, "lb"),
  24072. name: "Front",
  24073. image: {
  24074. source: "./media/characters/brawler/front.svg",
  24075. extra: 3301 / 3027,
  24076. bottom: 138 / 3439
  24077. }
  24078. },
  24079. },
  24080. [
  24081. {
  24082. name: "Normal",
  24083. height: math.unit(6 + 2 / 12, "feet"),
  24084. default: true
  24085. },
  24086. ]
  24087. ))
  24088. characterMakers.push(() => makeCharacter(
  24089. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24090. {
  24091. front: {
  24092. height: math.unit(11, "feet"),
  24093. weight: math.unit(1000, "lb"),
  24094. name: "Front",
  24095. image: {
  24096. source: "./media/characters/alex/front.svg",
  24097. bottom: 44.5 / 620
  24098. }
  24099. },
  24100. },
  24101. [
  24102. {
  24103. name: "Micro",
  24104. height: math.unit(5, "inches")
  24105. },
  24106. {
  24107. name: "Normal",
  24108. height: math.unit(11, "feet"),
  24109. default: true
  24110. },
  24111. {
  24112. name: "Macro",
  24113. height: math.unit(9.5e9, "feet")
  24114. },
  24115. {
  24116. name: "Max Size",
  24117. height: math.unit(1.4e283, "yottameters")
  24118. },
  24119. ]
  24120. ))
  24121. characterMakers.push(() => makeCharacter(
  24122. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24123. {
  24124. female: {
  24125. height: math.unit(29.9, "m"),
  24126. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24127. name: "Female",
  24128. image: {
  24129. source: "./media/characters/zenari/female.svg",
  24130. extra: 3281.6 / 3217,
  24131. bottom: 72.2 / 3353
  24132. }
  24133. },
  24134. male: {
  24135. height: math.unit(27.7, "m"),
  24136. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24137. name: "Male",
  24138. image: {
  24139. source: "./media/characters/zenari/male.svg",
  24140. extra: 3008 / 2991,
  24141. bottom: 54.6 / 3069
  24142. }
  24143. },
  24144. },
  24145. [
  24146. {
  24147. name: "Macro",
  24148. height: math.unit(29.7, "meters"),
  24149. default: true
  24150. },
  24151. ]
  24152. ))
  24153. characterMakers.push(() => makeCharacter(
  24154. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24155. {
  24156. female: {
  24157. height: math.unit(23.8, "m"),
  24158. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24159. name: "Female",
  24160. image: {
  24161. source: "./media/characters/mactarian/female.svg",
  24162. extra: 2662 / 2569,
  24163. bottom: 73 / 2736
  24164. }
  24165. },
  24166. male: {
  24167. height: math.unit(23.8, "m"),
  24168. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24169. name: "Male",
  24170. image: {
  24171. source: "./media/characters/mactarian/male.svg",
  24172. extra: 2673 / 2600,
  24173. bottom: 76 / 2750
  24174. }
  24175. },
  24176. },
  24177. [
  24178. {
  24179. name: "Macro",
  24180. height: math.unit(23.8, "meters"),
  24181. default: true
  24182. },
  24183. ]
  24184. ))
  24185. characterMakers.push(() => makeCharacter(
  24186. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24187. {
  24188. female: {
  24189. height: math.unit(19.3, "m"),
  24190. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24191. name: "Female",
  24192. image: {
  24193. source: "./media/characters/umok/female.svg",
  24194. extra: 2186 / 2078,
  24195. bottom: 87 / 2277
  24196. }
  24197. },
  24198. male: {
  24199. height: math.unit(19.5, "m"),
  24200. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24201. name: "Male",
  24202. image: {
  24203. source: "./media/characters/umok/male.svg",
  24204. extra: 2233 / 2140,
  24205. bottom: 24.4 / 2258
  24206. }
  24207. },
  24208. },
  24209. [
  24210. {
  24211. name: "Macro",
  24212. height: math.unit(19.3, "meters"),
  24213. default: true
  24214. },
  24215. ]
  24216. ))
  24217. characterMakers.push(() => makeCharacter(
  24218. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24219. {
  24220. female: {
  24221. height: math.unit(26.15, "m"),
  24222. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24223. name: "Female",
  24224. image: {
  24225. source: "./media/characters/joraxian/female.svg",
  24226. extra: 2912 / 2824,
  24227. bottom: 36 / 2956
  24228. }
  24229. },
  24230. male: {
  24231. height: math.unit(25.4, "m"),
  24232. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24233. name: "Male",
  24234. image: {
  24235. source: "./media/characters/joraxian/male.svg",
  24236. extra: 2877 / 2721,
  24237. bottom: 82 / 2967
  24238. }
  24239. },
  24240. },
  24241. [
  24242. {
  24243. name: "Macro",
  24244. height: math.unit(26.15, "meters"),
  24245. default: true
  24246. },
  24247. ]
  24248. ))
  24249. characterMakers.push(() => makeCharacter(
  24250. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24251. {
  24252. female: {
  24253. height: math.unit(21.6, "m"),
  24254. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24255. name: "Female",
  24256. image: {
  24257. source: "./media/characters/sthara/female.svg",
  24258. extra: 2516 / 2347,
  24259. bottom: 21.5 / 2537
  24260. }
  24261. },
  24262. male: {
  24263. height: math.unit(24, "m"),
  24264. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24265. name: "Male",
  24266. image: {
  24267. source: "./media/characters/sthara/male.svg",
  24268. extra: 2732 / 2607,
  24269. bottom: 23 / 2732
  24270. }
  24271. },
  24272. },
  24273. [
  24274. {
  24275. name: "Macro",
  24276. height: math.unit(21.6, "meters"),
  24277. default: true
  24278. },
  24279. ]
  24280. ))
  24281. characterMakers.push(() => makeCharacter(
  24282. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24283. {
  24284. front: {
  24285. height: math.unit(6 + 4 / 12, "feet"),
  24286. weight: math.unit(175, "lb"),
  24287. name: "Front",
  24288. image: {
  24289. source: "./media/characters/luka-bryzant/front.svg",
  24290. extra: 311 / 289,
  24291. bottom: 4 / 315
  24292. }
  24293. },
  24294. back: {
  24295. height: math.unit(6 + 4 / 12, "feet"),
  24296. weight: math.unit(175, "lb"),
  24297. name: "Back",
  24298. image: {
  24299. source: "./media/characters/luka-bryzant/back.svg",
  24300. extra: 311 / 289,
  24301. bottom: 3.8 / 313.7
  24302. }
  24303. },
  24304. },
  24305. [
  24306. {
  24307. name: "Micro",
  24308. height: math.unit(10, "inches")
  24309. },
  24310. {
  24311. name: "Normal",
  24312. height: math.unit(6 + 4 / 12, "feet"),
  24313. default: true
  24314. },
  24315. {
  24316. name: "Large",
  24317. height: math.unit(12, "feet")
  24318. },
  24319. ]
  24320. ))
  24321. characterMakers.push(() => makeCharacter(
  24322. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24323. {
  24324. front: {
  24325. height: math.unit(5 + 7 / 12, "feet"),
  24326. weight: math.unit(185, "lb"),
  24327. name: "Front",
  24328. image: {
  24329. source: "./media/characters/aman-aquila/front.svg",
  24330. extra: 1013 / 976,
  24331. bottom: 45.6 / 1057
  24332. }
  24333. },
  24334. side: {
  24335. height: math.unit(5 + 7 / 12, "feet"),
  24336. weight: math.unit(185, "lb"),
  24337. name: "Side",
  24338. image: {
  24339. source: "./media/characters/aman-aquila/side.svg",
  24340. extra: 1054 / 1011,
  24341. bottom: 15 / 1070
  24342. }
  24343. },
  24344. back: {
  24345. height: math.unit(5 + 7 / 12, "feet"),
  24346. weight: math.unit(185, "lb"),
  24347. name: "Back",
  24348. image: {
  24349. source: "./media/characters/aman-aquila/back.svg",
  24350. extra: 1026 / 970,
  24351. bottom: 12 / 1039
  24352. }
  24353. },
  24354. head: {
  24355. height: math.unit(1.211, "feet"),
  24356. name: "Head",
  24357. image: {
  24358. source: "./media/characters/aman-aquila/head.svg",
  24359. }
  24360. },
  24361. },
  24362. [
  24363. {
  24364. name: "Minimicro",
  24365. height: math.unit(0.057, "inches")
  24366. },
  24367. {
  24368. name: "Micro",
  24369. height: math.unit(7, "inches")
  24370. },
  24371. {
  24372. name: "Mini",
  24373. height: math.unit(3 + 7 / 12, "feet")
  24374. },
  24375. {
  24376. name: "Normal",
  24377. height: math.unit(5 + 7 / 12, "feet"),
  24378. default: true
  24379. },
  24380. {
  24381. name: "Macro",
  24382. height: math.unit(157 + 7 / 12, "feet")
  24383. },
  24384. {
  24385. name: "Megamacro",
  24386. height: math.unit(1557 + 7 / 12, "feet")
  24387. },
  24388. {
  24389. name: "Gigamacro",
  24390. height: math.unit(15557 + 7 / 12, "feet")
  24391. },
  24392. ]
  24393. ))
  24394. characterMakers.push(() => makeCharacter(
  24395. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24396. {
  24397. front: {
  24398. height: math.unit(3 + 2 / 12, "inches"),
  24399. weight: math.unit(0.3, "ounces"),
  24400. name: "Front",
  24401. image: {
  24402. source: "./media/characters/hiphae/front.svg",
  24403. extra: 1931 / 1683,
  24404. bottom: 24 / 1955
  24405. }
  24406. },
  24407. },
  24408. [
  24409. {
  24410. name: "Normal",
  24411. height: math.unit(3 + 1 / 2, "inches"),
  24412. default: true
  24413. },
  24414. ]
  24415. ))
  24416. characterMakers.push(() => makeCharacter(
  24417. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24418. {
  24419. front: {
  24420. height: math.unit(5 + 10 / 12, "feet"),
  24421. weight: math.unit(165, "lb"),
  24422. name: "Front",
  24423. image: {
  24424. source: "./media/characters/nicky/front.svg",
  24425. extra: 3144 / 2886,
  24426. bottom: 45.6 / 3192
  24427. }
  24428. },
  24429. back: {
  24430. height: math.unit(5 + 10 / 12, "feet"),
  24431. weight: math.unit(165, "lb"),
  24432. name: "Back",
  24433. image: {
  24434. source: "./media/characters/nicky/back.svg",
  24435. extra: 3055 / 2804,
  24436. bottom: 28.4 / 3087
  24437. }
  24438. },
  24439. frontclothed: {
  24440. height: math.unit(5 + 10 / 12, "feet"),
  24441. weight: math.unit(165, "lb"),
  24442. name: "Front-clothed",
  24443. image: {
  24444. source: "./media/characters/nicky/front-clothed.svg",
  24445. extra: 3184.9 / 2926.9,
  24446. bottom: 86.5 / 3239.9
  24447. }
  24448. },
  24449. foot: {
  24450. height: math.unit(1.16, "feet"),
  24451. name: "Foot",
  24452. image: {
  24453. source: "./media/characters/nicky/foot.svg"
  24454. }
  24455. },
  24456. feet: {
  24457. height: math.unit(1.34, "feet"),
  24458. name: "Feet",
  24459. image: {
  24460. source: "./media/characters/nicky/feet.svg"
  24461. }
  24462. },
  24463. maw: {
  24464. height: math.unit(0.9, "feet"),
  24465. name: "Maw",
  24466. image: {
  24467. source: "./media/characters/nicky/maw.svg"
  24468. }
  24469. },
  24470. },
  24471. [
  24472. {
  24473. name: "Normal",
  24474. height: math.unit(5 + 10 / 12, "feet"),
  24475. default: true
  24476. },
  24477. {
  24478. name: "Macro",
  24479. height: math.unit(60, "feet")
  24480. },
  24481. {
  24482. name: "Megamacro",
  24483. height: math.unit(1, "mile")
  24484. },
  24485. ]
  24486. ))
  24487. characterMakers.push(() => makeCharacter(
  24488. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24489. {
  24490. side: {
  24491. height: math.unit(10, "feet"),
  24492. weight: math.unit(600, "lb"),
  24493. name: "Side",
  24494. image: {
  24495. source: "./media/characters/blair/side.svg",
  24496. bottom: 16.6 / 475,
  24497. extra: 458 / 431
  24498. }
  24499. },
  24500. },
  24501. [
  24502. {
  24503. name: "Micro",
  24504. height: math.unit(8, "inches")
  24505. },
  24506. {
  24507. name: "Normal",
  24508. height: math.unit(10, "feet"),
  24509. default: true
  24510. },
  24511. {
  24512. name: "Macro",
  24513. height: math.unit(180, "feet")
  24514. },
  24515. ]
  24516. ))
  24517. characterMakers.push(() => makeCharacter(
  24518. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24519. {
  24520. front: {
  24521. height: math.unit(5 + 4 / 12, "feet"),
  24522. weight: math.unit(125, "lb"),
  24523. name: "Front",
  24524. image: {
  24525. source: "./media/characters/fisher/front.svg",
  24526. extra: 444 / 390,
  24527. bottom: 2 / 444.8
  24528. }
  24529. },
  24530. },
  24531. [
  24532. {
  24533. name: "Micro",
  24534. height: math.unit(4, "inches")
  24535. },
  24536. {
  24537. name: "Normal",
  24538. height: math.unit(5 + 4 / 12, "feet"),
  24539. default: true
  24540. },
  24541. {
  24542. name: "Macro",
  24543. height: math.unit(100, "feet")
  24544. },
  24545. ]
  24546. ))
  24547. characterMakers.push(() => makeCharacter(
  24548. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24549. {
  24550. front: {
  24551. height: math.unit(6.71, "feet"),
  24552. weight: math.unit(200, "lb"),
  24553. capacity: math.unit(1000000, "people"),
  24554. name: "Front",
  24555. image: {
  24556. source: "./media/characters/gliss/front.svg",
  24557. extra: 2347 / 2231,
  24558. bottom: 113 / 2462
  24559. }
  24560. },
  24561. hammerspaceSize: {
  24562. height: math.unit(6.71 * 717, "feet"),
  24563. weight: math.unit(200, "lb"),
  24564. capacity: math.unit(1000000, "people"),
  24565. name: "Hammerspace Size",
  24566. image: {
  24567. source: "./media/characters/gliss/front.svg",
  24568. extra: 2347 / 2231,
  24569. bottom: 113 / 2462
  24570. }
  24571. },
  24572. },
  24573. [
  24574. {
  24575. name: "Normal",
  24576. height: math.unit(6.71, "feet"),
  24577. default: true
  24578. },
  24579. ]
  24580. ))
  24581. characterMakers.push(() => makeCharacter(
  24582. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24583. {
  24584. side: {
  24585. height: math.unit(1.44, "m"),
  24586. weight: math.unit(80, "kg"),
  24587. name: "Side",
  24588. image: {
  24589. source: "./media/characters/dune-anderson/side.svg",
  24590. bottom: 49 / 1426
  24591. }
  24592. },
  24593. },
  24594. [
  24595. {
  24596. name: "Wolf-sized",
  24597. height: math.unit(1.44, "meters")
  24598. },
  24599. {
  24600. name: "Normal",
  24601. height: math.unit(5.05, "meters"),
  24602. default: true
  24603. },
  24604. {
  24605. name: "Big",
  24606. height: math.unit(14.4, "meters")
  24607. },
  24608. {
  24609. name: "Huge",
  24610. height: math.unit(144, "meters")
  24611. },
  24612. ]
  24613. ))
  24614. characterMakers.push(() => makeCharacter(
  24615. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24616. {
  24617. front: {
  24618. height: math.unit(7, "feet"),
  24619. weight: math.unit(425, "lb"),
  24620. name: "Front",
  24621. image: {
  24622. source: "./media/characters/hind/front.svg",
  24623. extra: 2091 / 1860,
  24624. bottom: 129 / 2220
  24625. }
  24626. },
  24627. back: {
  24628. height: math.unit(7, "feet"),
  24629. weight: math.unit(425, "lb"),
  24630. name: "Back",
  24631. image: {
  24632. source: "./media/characters/hind/back.svg",
  24633. extra: 2091 / 1860,
  24634. bottom: 24.6 / 2309
  24635. }
  24636. },
  24637. tail: {
  24638. height: math.unit(2.8, "feet"),
  24639. name: "Tail",
  24640. image: {
  24641. source: "./media/characters/hind/tail.svg"
  24642. }
  24643. },
  24644. head: {
  24645. height: math.unit(2.55, "feet"),
  24646. name: "Head",
  24647. image: {
  24648. source: "./media/characters/hind/head.svg"
  24649. }
  24650. },
  24651. },
  24652. [
  24653. {
  24654. name: "XS",
  24655. height: math.unit(0.7, "feet")
  24656. },
  24657. {
  24658. name: "Normal",
  24659. height: math.unit(7, "feet"),
  24660. default: true
  24661. },
  24662. {
  24663. name: "XL",
  24664. height: math.unit(70, "feet")
  24665. },
  24666. ]
  24667. ))
  24668. characterMakers.push(() => makeCharacter(
  24669. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24670. {
  24671. front: {
  24672. height: math.unit(6, "feet"),
  24673. weight: math.unit(150, "lb"),
  24674. name: "Front",
  24675. image: {
  24676. source: "./media/characters/dylan-skaven/front.svg",
  24677. extra: 2318 / 2063,
  24678. bottom: 93.4 / 2410
  24679. }
  24680. },
  24681. },
  24682. [
  24683. {
  24684. name: "Nano",
  24685. height: math.unit(1, "mm")
  24686. },
  24687. {
  24688. name: "Micro",
  24689. height: math.unit(1, "cm")
  24690. },
  24691. {
  24692. name: "Normal",
  24693. height: math.unit(2.1, "meters"),
  24694. default: true
  24695. },
  24696. ]
  24697. ))
  24698. characterMakers.push(() => makeCharacter(
  24699. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24700. {
  24701. front: {
  24702. height: math.unit(7 + 5 / 12, "feet"),
  24703. weight: math.unit(357, "lb"),
  24704. name: "Front",
  24705. image: {
  24706. source: "./media/characters/solex-draconov/front.svg",
  24707. extra: 1993 / 1865,
  24708. bottom: 117 / 2111
  24709. }
  24710. },
  24711. },
  24712. [
  24713. {
  24714. name: "Natural Height",
  24715. height: math.unit(7 + 5 / 12, "feet"),
  24716. default: true
  24717. },
  24718. {
  24719. name: "Macro",
  24720. height: math.unit(350, "feet")
  24721. },
  24722. {
  24723. name: "Macro+",
  24724. height: math.unit(1000, "feet")
  24725. },
  24726. {
  24727. name: "Megamacro",
  24728. height: math.unit(20, "km")
  24729. },
  24730. {
  24731. name: "Megamacro+",
  24732. height: math.unit(1000, "km")
  24733. },
  24734. {
  24735. name: "Gigamacro",
  24736. height: math.unit(2.5, "Gm")
  24737. },
  24738. {
  24739. name: "Teramacro",
  24740. height: math.unit(15, "Tm")
  24741. },
  24742. {
  24743. name: "Galactic",
  24744. height: math.unit(30, "Zm")
  24745. },
  24746. {
  24747. name: "Universal",
  24748. height: math.unit(21000, "Ym")
  24749. },
  24750. {
  24751. name: "Omniversal",
  24752. height: math.unit(9.861e50, "Ym")
  24753. },
  24754. {
  24755. name: "Existential",
  24756. height: math.unit(1e300, "meters")
  24757. },
  24758. ]
  24759. ))
  24760. characterMakers.push(() => makeCharacter(
  24761. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24762. {
  24763. side: {
  24764. height: math.unit(25, "feet"),
  24765. weight: math.unit(90000, "lb"),
  24766. name: "Side",
  24767. image: {
  24768. source: "./media/characters/mandarax/side.svg",
  24769. extra: 614 / 332,
  24770. bottom: 55 / 630
  24771. }
  24772. },
  24773. head: {
  24774. height: math.unit(11.4, "feet"),
  24775. name: "Head",
  24776. image: {
  24777. source: "./media/characters/mandarax/head.svg"
  24778. }
  24779. },
  24780. belly: {
  24781. height: math.unit(33, "feet"),
  24782. name: "Belly",
  24783. capacity: math.unit(500, "people"),
  24784. image: {
  24785. source: "./media/characters/mandarax/belly.svg"
  24786. }
  24787. },
  24788. dick: {
  24789. height: math.unit(8.46, "feet"),
  24790. name: "Dick",
  24791. image: {
  24792. source: "./media/characters/mandarax/dick.svg"
  24793. }
  24794. },
  24795. top: {
  24796. height: math.unit(28, "meters"),
  24797. name: "Top",
  24798. image: {
  24799. source: "./media/characters/mandarax/top.svg"
  24800. }
  24801. },
  24802. },
  24803. [
  24804. {
  24805. name: "Normal",
  24806. height: math.unit(25, "feet"),
  24807. default: true
  24808. },
  24809. ]
  24810. ))
  24811. characterMakers.push(() => makeCharacter(
  24812. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24813. {
  24814. front: {
  24815. height: math.unit(5, "feet"),
  24816. weight: math.unit(90, "lb"),
  24817. name: "Front",
  24818. image: {
  24819. source: "./media/characters/pixil/front.svg",
  24820. extra: 2000 / 1618,
  24821. bottom: 12.3 / 2011
  24822. }
  24823. },
  24824. },
  24825. [
  24826. {
  24827. name: "Normal",
  24828. height: math.unit(5, "feet"),
  24829. default: true
  24830. },
  24831. {
  24832. name: "Megamacro",
  24833. height: math.unit(10, "miles"),
  24834. },
  24835. ]
  24836. ))
  24837. characterMakers.push(() => makeCharacter(
  24838. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24839. {
  24840. front: {
  24841. height: math.unit(7 + 2 / 12, "feet"),
  24842. weight: math.unit(200, "lb"),
  24843. name: "Front",
  24844. image: {
  24845. source: "./media/characters/angel/front.svg",
  24846. extra: 1830 / 1737,
  24847. bottom: 22.6 / 1854,
  24848. }
  24849. },
  24850. },
  24851. [
  24852. {
  24853. name: "Normal",
  24854. height: math.unit(7 + 2 / 12, "feet"),
  24855. default: true
  24856. },
  24857. {
  24858. name: "Macro",
  24859. height: math.unit(1000, "feet")
  24860. },
  24861. {
  24862. name: "Megamacro",
  24863. height: math.unit(2, "miles")
  24864. },
  24865. {
  24866. name: "Gigamacro",
  24867. height: math.unit(20, "earths")
  24868. },
  24869. ]
  24870. ))
  24871. characterMakers.push(() => makeCharacter(
  24872. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24873. {
  24874. front: {
  24875. height: math.unit(5, "feet"),
  24876. weight: math.unit(180, "lb"),
  24877. name: "Front",
  24878. image: {
  24879. source: "./media/characters/mekana/front.svg",
  24880. extra: 1671 / 1605,
  24881. bottom: 3.5 / 1691
  24882. }
  24883. },
  24884. side: {
  24885. height: math.unit(5, "feet"),
  24886. weight: math.unit(180, "lb"),
  24887. name: "Side",
  24888. image: {
  24889. source: "./media/characters/mekana/side.svg",
  24890. extra: 1671 / 1605,
  24891. bottom: 3.5 / 1691
  24892. }
  24893. },
  24894. back: {
  24895. height: math.unit(5, "feet"),
  24896. weight: math.unit(180, "lb"),
  24897. name: "Back",
  24898. image: {
  24899. source: "./media/characters/mekana/back.svg",
  24900. extra: 1671 / 1605,
  24901. bottom: 3.5 / 1691
  24902. }
  24903. },
  24904. },
  24905. [
  24906. {
  24907. name: "Normal",
  24908. height: math.unit(5, "feet"),
  24909. default: true
  24910. },
  24911. ]
  24912. ))
  24913. characterMakers.push(() => makeCharacter(
  24914. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24915. {
  24916. front: {
  24917. height: math.unit(4 + 6 / 12, "feet"),
  24918. weight: math.unit(80, "lb"),
  24919. name: "Front",
  24920. image: {
  24921. source: "./media/characters/pixie/front.svg",
  24922. extra: 1924 / 1825,
  24923. bottom: 22.4 / 1946
  24924. }
  24925. },
  24926. },
  24927. [
  24928. {
  24929. name: "Normal",
  24930. height: math.unit(4 + 6 / 12, "feet"),
  24931. default: true
  24932. },
  24933. {
  24934. name: "Macro",
  24935. height: math.unit(40, "feet")
  24936. },
  24937. ]
  24938. ))
  24939. characterMakers.push(() => makeCharacter(
  24940. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24941. {
  24942. front: {
  24943. height: math.unit(2.1, "meters"),
  24944. weight: math.unit(200, "lb"),
  24945. name: "Front",
  24946. image: {
  24947. source: "./media/characters/the-lascivious/front.svg",
  24948. extra: 1 / 0.893,
  24949. bottom: 3.5 / 573.7
  24950. }
  24951. },
  24952. },
  24953. [
  24954. {
  24955. name: "Human Scale",
  24956. height: math.unit(2.1, "meters")
  24957. },
  24958. {
  24959. name: "Wolxi Scale",
  24960. height: math.unit(46.2, "m"),
  24961. default: true
  24962. },
  24963. {
  24964. name: "Boinker of Buildings",
  24965. height: math.unit(10, "km")
  24966. },
  24967. {
  24968. name: "Shagger of Skyscrapers",
  24969. height: math.unit(40, "km")
  24970. },
  24971. {
  24972. name: "Banger of Boroughs",
  24973. height: math.unit(4000, "km")
  24974. },
  24975. {
  24976. name: "Screwer of States",
  24977. height: math.unit(100000, "km")
  24978. },
  24979. {
  24980. name: "Pounder of Planets",
  24981. height: math.unit(2000000, "km")
  24982. },
  24983. ]
  24984. ))
  24985. characterMakers.push(() => makeCharacter(
  24986. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24987. {
  24988. front: {
  24989. height: math.unit(6, "feet"),
  24990. weight: math.unit(150, "lb"),
  24991. name: "Front",
  24992. image: {
  24993. source: "./media/characters/aj/front.svg",
  24994. extra: 2039 / 1562,
  24995. bottom: 40 / 2079
  24996. }
  24997. },
  24998. },
  24999. [
  25000. {
  25001. name: "Normal",
  25002. height: math.unit(11 + 6 / 12, "feet"),
  25003. default: true
  25004. },
  25005. {
  25006. name: "Megamacro",
  25007. height: math.unit(60, "megameters")
  25008. },
  25009. ]
  25010. ))
  25011. characterMakers.push(() => makeCharacter(
  25012. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25013. {
  25014. side: {
  25015. height: math.unit(31 + 8 / 12, "feet"),
  25016. weight: math.unit(75000, "kg"),
  25017. name: "Side",
  25018. image: {
  25019. source: "./media/characters/koros/side.svg",
  25020. extra: 1442 / 1297,
  25021. bottom: 122.7 / 1562
  25022. }
  25023. },
  25024. dicksKingsCrown: {
  25025. height: math.unit(6, "feet"),
  25026. name: "Dicks (King's Crown)",
  25027. image: {
  25028. source: "./media/characters/koros/dicks-kings-crown.svg"
  25029. }
  25030. },
  25031. dicksTailSet: {
  25032. height: math.unit(3, "feet"),
  25033. name: "Dicks (Tail Set)",
  25034. image: {
  25035. source: "./media/characters/koros/dicks-tail-set.svg"
  25036. }
  25037. },
  25038. dickCumming: {
  25039. height: math.unit(7.98, "feet"),
  25040. name: "Dick (Cumming)",
  25041. image: {
  25042. source: "./media/characters/koros/dick-cumming.svg"
  25043. }
  25044. },
  25045. dicksBack: {
  25046. height: math.unit(5.9, "feet"),
  25047. name: "Dicks (Back)",
  25048. image: {
  25049. source: "./media/characters/koros/dicks-back.svg"
  25050. }
  25051. },
  25052. dicksFront: {
  25053. height: math.unit(3.72, "feet"),
  25054. name: "Dicks (Front)",
  25055. image: {
  25056. source: "./media/characters/koros/dicks-front.svg"
  25057. }
  25058. },
  25059. dicksPeeking: {
  25060. height: math.unit(3.0, "feet"),
  25061. name: "Dicks (Peeking)",
  25062. image: {
  25063. source: "./media/characters/koros/dicks-peeking.svg"
  25064. }
  25065. },
  25066. eye: {
  25067. height: math.unit(1.7, "feet"),
  25068. name: "Eye",
  25069. image: {
  25070. source: "./media/characters/koros/eye.svg"
  25071. }
  25072. },
  25073. headFront: {
  25074. height: math.unit(11.69, "feet"),
  25075. name: "Head (Front)",
  25076. image: {
  25077. source: "./media/characters/koros/head-front.svg"
  25078. }
  25079. },
  25080. headSide: {
  25081. height: math.unit(14, "feet"),
  25082. name: "Head (Side)",
  25083. image: {
  25084. source: "./media/characters/koros/head-side.svg"
  25085. }
  25086. },
  25087. leg: {
  25088. height: math.unit(17, "feet"),
  25089. name: "Leg",
  25090. image: {
  25091. source: "./media/characters/koros/leg.svg"
  25092. }
  25093. },
  25094. mawSide: {
  25095. height: math.unit(12.8, "feet"),
  25096. name: "Maw (Side)",
  25097. image: {
  25098. source: "./media/characters/koros/maw-side.svg"
  25099. }
  25100. },
  25101. mawSpitting: {
  25102. height: math.unit(17, "feet"),
  25103. name: "Maw (Spitting)",
  25104. image: {
  25105. source: "./media/characters/koros/maw-spitting.svg"
  25106. }
  25107. },
  25108. slit: {
  25109. height: math.unit(2.8, "feet"),
  25110. name: "Slit",
  25111. image: {
  25112. source: "./media/characters/koros/slit.svg"
  25113. }
  25114. },
  25115. stomach: {
  25116. height: math.unit(6.8, "feet"),
  25117. capacity: math.unit(20, "people"),
  25118. name: "Stomach",
  25119. image: {
  25120. source: "./media/characters/koros/stomach.svg"
  25121. }
  25122. },
  25123. wingspanBottom: {
  25124. height: math.unit(114, "feet"),
  25125. name: "Wingspan (Bottom)",
  25126. image: {
  25127. source: "./media/characters/koros/wingspan-bottom.svg"
  25128. }
  25129. },
  25130. wingspanTop: {
  25131. height: math.unit(104, "feet"),
  25132. name: "Wingspan (Top)",
  25133. image: {
  25134. source: "./media/characters/koros/wingspan-top.svg"
  25135. }
  25136. },
  25137. },
  25138. [
  25139. {
  25140. name: "Normal",
  25141. height: math.unit(31 + 8 / 12, "feet"),
  25142. default: true
  25143. },
  25144. ]
  25145. ))
  25146. characterMakers.push(() => makeCharacter(
  25147. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25148. {
  25149. front: {
  25150. height: math.unit(18 + 5 / 12, "feet"),
  25151. weight: math.unit(3750, "kg"),
  25152. name: "Front",
  25153. image: {
  25154. source: "./media/characters/vexx/front.svg",
  25155. extra: 426 / 396,
  25156. bottom: 31.5 / 458
  25157. }
  25158. },
  25159. maw: {
  25160. height: math.unit(6, "feet"),
  25161. name: "Maw",
  25162. image: {
  25163. source: "./media/characters/vexx/maw.svg"
  25164. }
  25165. },
  25166. },
  25167. [
  25168. {
  25169. name: "Normal",
  25170. height: math.unit(18 + 5 / 12, "feet"),
  25171. default: true
  25172. },
  25173. ]
  25174. ))
  25175. characterMakers.push(() => makeCharacter(
  25176. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25177. {
  25178. front: {
  25179. height: math.unit(17 + 6 / 12, "feet"),
  25180. weight: math.unit(150, "lb"),
  25181. name: "Front",
  25182. image: {
  25183. source: "./media/characters/baadra/front.svg",
  25184. extra: 3137 / 2890,
  25185. bottom: 168.4 / 3305
  25186. }
  25187. },
  25188. back: {
  25189. height: math.unit(17 + 6 / 12, "feet"),
  25190. weight: math.unit(150, "lb"),
  25191. name: "Back",
  25192. image: {
  25193. source: "./media/characters/baadra/back.svg",
  25194. extra: 3142 / 2890,
  25195. bottom: 220 / 3371
  25196. }
  25197. },
  25198. head: {
  25199. height: math.unit(5.45, "feet"),
  25200. name: "Head",
  25201. image: {
  25202. source: "./media/characters/baadra/head.svg"
  25203. }
  25204. },
  25205. headAngry: {
  25206. height: math.unit(4.95, "feet"),
  25207. name: "Head (Angry)",
  25208. image: {
  25209. source: "./media/characters/baadra/head-angry.svg"
  25210. }
  25211. },
  25212. headOpen: {
  25213. height: math.unit(6, "feet"),
  25214. name: "Head (Open)",
  25215. image: {
  25216. source: "./media/characters/baadra/head-open.svg"
  25217. }
  25218. },
  25219. },
  25220. [
  25221. {
  25222. name: "Normal",
  25223. height: math.unit(17 + 6 / 12, "feet"),
  25224. default: true
  25225. },
  25226. ]
  25227. ))
  25228. characterMakers.push(() => makeCharacter(
  25229. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25230. {
  25231. front: {
  25232. height: math.unit(7 + 3 / 12, "feet"),
  25233. weight: math.unit(180, "lb"),
  25234. name: "Front",
  25235. image: {
  25236. source: "./media/characters/juri/front.svg",
  25237. extra: 1401 / 1237,
  25238. bottom: 18.5 / 1418
  25239. }
  25240. },
  25241. side: {
  25242. height: math.unit(7 + 3 / 12, "feet"),
  25243. weight: math.unit(180, "lb"),
  25244. name: "Side",
  25245. image: {
  25246. source: "./media/characters/juri/side.svg",
  25247. extra: 1424 / 1242,
  25248. bottom: 18.5 / 1447
  25249. }
  25250. },
  25251. sitting: {
  25252. height: math.unit(6, "feet"),
  25253. weight: math.unit(180, "lb"),
  25254. name: "Sitting",
  25255. image: {
  25256. source: "./media/characters/juri/sitting.svg",
  25257. extra: 1270 / 1143,
  25258. bottom: 100 / 1343
  25259. }
  25260. },
  25261. back: {
  25262. height: math.unit(7 + 3 / 12, "feet"),
  25263. weight: math.unit(180, "lb"),
  25264. name: "Back",
  25265. image: {
  25266. source: "./media/characters/juri/back.svg",
  25267. extra: 1377 / 1240,
  25268. bottom: 23.7 / 1405
  25269. }
  25270. },
  25271. maw: {
  25272. height: math.unit(2.8, "feet"),
  25273. name: "Maw",
  25274. image: {
  25275. source: "./media/characters/juri/maw.svg"
  25276. }
  25277. },
  25278. stomach: {
  25279. height: math.unit(0.89, "feet"),
  25280. capacity: math.unit(4, "liters"),
  25281. name: "Stomach",
  25282. image: {
  25283. source: "./media/characters/juri/stomach.svg"
  25284. }
  25285. },
  25286. },
  25287. [
  25288. {
  25289. name: "Normal",
  25290. height: math.unit(7 + 3 / 12, "feet"),
  25291. default: true
  25292. },
  25293. ]
  25294. ))
  25295. characterMakers.push(() => makeCharacter(
  25296. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25297. {
  25298. fox: {
  25299. height: math.unit(5 + 6 / 12, "feet"),
  25300. weight: math.unit(140, "lb"),
  25301. name: "Fox",
  25302. image: {
  25303. source: "./media/characters/maxene-sita/fox.svg",
  25304. extra: 146 / 138,
  25305. bottom: 2.1 / 148.19
  25306. }
  25307. },
  25308. foxLaying: {
  25309. height: math.unit(1.70, "feet"),
  25310. weight: math.unit(140, "lb"),
  25311. name: "Fox (Laying)",
  25312. image: {
  25313. source: "./media/characters/maxene-sita/fox-laying.svg",
  25314. extra: 910 / 572,
  25315. bottom: 71 / 981
  25316. }
  25317. },
  25318. kitsune: {
  25319. height: math.unit(10, "feet"),
  25320. weight: math.unit(800, "lb"),
  25321. name: "Kitsune",
  25322. image: {
  25323. source: "./media/characters/maxene-sita/kitsune.svg",
  25324. extra: 185 / 176,
  25325. bottom: 4.7 / 189.9
  25326. }
  25327. },
  25328. hellhound: {
  25329. height: math.unit(10, "feet"),
  25330. weight: math.unit(700, "lb"),
  25331. name: "Hellhound",
  25332. image: {
  25333. source: "./media/characters/maxene-sita/hellhound.svg",
  25334. extra: 1600 / 1545,
  25335. bottom: 81 / 1681
  25336. }
  25337. },
  25338. },
  25339. [
  25340. {
  25341. name: "Normal",
  25342. height: math.unit(5 + 6 / 12, "feet"),
  25343. default: true
  25344. },
  25345. ]
  25346. ))
  25347. characterMakers.push(() => makeCharacter(
  25348. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25349. {
  25350. front: {
  25351. height: math.unit(3 + 4 / 12, "feet"),
  25352. weight: math.unit(70, "lb"),
  25353. name: "Front",
  25354. image: {
  25355. source: "./media/characters/maia/front.svg",
  25356. extra: 227 / 219.5,
  25357. bottom: 40 / 267
  25358. }
  25359. },
  25360. back: {
  25361. height: math.unit(3 + 4 / 12, "feet"),
  25362. weight: math.unit(70, "lb"),
  25363. name: "Back",
  25364. image: {
  25365. source: "./media/characters/maia/back.svg",
  25366. extra: 237 / 225
  25367. }
  25368. },
  25369. },
  25370. [
  25371. {
  25372. name: "Normal",
  25373. height: math.unit(3 + 4 / 12, "feet"),
  25374. default: true
  25375. },
  25376. ]
  25377. ))
  25378. characterMakers.push(() => makeCharacter(
  25379. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25380. {
  25381. front: {
  25382. height: math.unit(5 + 10 / 12, "feet"),
  25383. weight: math.unit(197, "lb"),
  25384. name: "Front",
  25385. image: {
  25386. source: "./media/characters/jabaro/front.svg",
  25387. extra: 225 / 216,
  25388. bottom: 5.06 / 230
  25389. }
  25390. },
  25391. back: {
  25392. height: math.unit(5 + 10 / 12, "feet"),
  25393. weight: math.unit(197, "lb"),
  25394. name: "Back",
  25395. image: {
  25396. source: "./media/characters/jabaro/back.svg",
  25397. extra: 225 / 219,
  25398. bottom: 1.9 / 227
  25399. }
  25400. },
  25401. },
  25402. [
  25403. {
  25404. name: "Normal",
  25405. height: math.unit(5 + 10 / 12, "feet"),
  25406. default: true
  25407. },
  25408. ]
  25409. ))
  25410. characterMakers.push(() => makeCharacter(
  25411. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25412. {
  25413. front: {
  25414. height: math.unit(5 + 8 / 12, "feet"),
  25415. weight: math.unit(139, "lb"),
  25416. name: "Front",
  25417. image: {
  25418. source: "./media/characters/risa/front.svg",
  25419. extra: 270 / 260,
  25420. bottom: 11.2 / 282
  25421. }
  25422. },
  25423. back: {
  25424. height: math.unit(5 + 8 / 12, "feet"),
  25425. weight: math.unit(139, "lb"),
  25426. name: "Back",
  25427. image: {
  25428. source: "./media/characters/risa/back.svg",
  25429. extra: 264 / 255,
  25430. bottom: 4 / 268
  25431. }
  25432. },
  25433. },
  25434. [
  25435. {
  25436. name: "Normal",
  25437. height: math.unit(5 + 8 / 12, "feet"),
  25438. default: true
  25439. },
  25440. ]
  25441. ))
  25442. characterMakers.push(() => makeCharacter(
  25443. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25444. {
  25445. front: {
  25446. height: math.unit(2 + 11 / 12, "feet"),
  25447. weight: math.unit(30, "lb"),
  25448. name: "Front",
  25449. image: {
  25450. source: "./media/characters/weatley/front.svg",
  25451. bottom: 10.7 / 414,
  25452. extra: 403.5 / 362
  25453. }
  25454. },
  25455. back: {
  25456. height: math.unit(2 + 11 / 12, "feet"),
  25457. weight: math.unit(30, "lb"),
  25458. name: "Back",
  25459. image: {
  25460. source: "./media/characters/weatley/back.svg",
  25461. bottom: 10.7 / 414,
  25462. extra: 403.5 / 362
  25463. }
  25464. },
  25465. },
  25466. [
  25467. {
  25468. name: "Normal",
  25469. height: math.unit(2 + 11 / 12, "feet"),
  25470. default: true
  25471. },
  25472. ]
  25473. ))
  25474. characterMakers.push(() => makeCharacter(
  25475. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25476. {
  25477. front: {
  25478. height: math.unit(5 + 2 / 12, "feet"),
  25479. weight: math.unit(50, "kg"),
  25480. name: "Front",
  25481. image: {
  25482. source: "./media/characters/mercury-crescent/front.svg",
  25483. extra: 1088 / 1033,
  25484. bottom: 18.9 / 1109
  25485. }
  25486. },
  25487. },
  25488. [
  25489. {
  25490. name: "Normal",
  25491. height: math.unit(5 + 2 / 12, "feet"),
  25492. default: true
  25493. },
  25494. ]
  25495. ))
  25496. characterMakers.push(() => makeCharacter(
  25497. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25498. {
  25499. front: {
  25500. height: math.unit(2, "feet"),
  25501. weight: math.unit(15, "kg"),
  25502. name: "Front",
  25503. image: {
  25504. source: "./media/characters/diamond-jones/front.svg",
  25505. extra: 727/723,
  25506. bottom: 46/773
  25507. }
  25508. },
  25509. },
  25510. [
  25511. {
  25512. name: "Normal",
  25513. height: math.unit(2, "feet"),
  25514. default: true
  25515. },
  25516. ]
  25517. ))
  25518. characterMakers.push(() => makeCharacter(
  25519. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25520. {
  25521. front: {
  25522. height: math.unit(3, "feet"),
  25523. weight: math.unit(30, "kg"),
  25524. name: "Front",
  25525. image: {
  25526. source: "./media/characters/sweet-bit/front.svg",
  25527. extra: 675 / 567,
  25528. bottom: 27.7 / 703
  25529. }
  25530. },
  25531. },
  25532. [
  25533. {
  25534. name: "Normal",
  25535. height: math.unit(3, "feet"),
  25536. default: true
  25537. },
  25538. ]
  25539. ))
  25540. characterMakers.push(() => makeCharacter(
  25541. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25542. {
  25543. side: {
  25544. height: math.unit(9.178, "feet"),
  25545. weight: math.unit(500, "lb"),
  25546. name: "Side",
  25547. image: {
  25548. source: "./media/characters/umbrazen/side.svg",
  25549. extra: 1730 / 1473,
  25550. bottom: 34.6 / 1765
  25551. }
  25552. },
  25553. },
  25554. [
  25555. {
  25556. name: "Normal",
  25557. height: math.unit(9.178, "feet"),
  25558. default: true
  25559. },
  25560. ]
  25561. ))
  25562. characterMakers.push(() => makeCharacter(
  25563. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25564. {
  25565. front: {
  25566. height: math.unit(10, "feet"),
  25567. weight: math.unit(750, "lb"),
  25568. name: "Front",
  25569. image: {
  25570. source: "./media/characters/arlist/front.svg",
  25571. extra: 961 / 778,
  25572. bottom: 6.2 / 986
  25573. }
  25574. },
  25575. },
  25576. [
  25577. {
  25578. name: "Normal",
  25579. height: math.unit(10, "feet"),
  25580. default: true
  25581. },
  25582. ]
  25583. ))
  25584. characterMakers.push(() => makeCharacter(
  25585. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25586. {
  25587. front: {
  25588. height: math.unit(5 + 1 / 12, "feet"),
  25589. weight: math.unit(110, "lb"),
  25590. name: "Front",
  25591. image: {
  25592. source: "./media/characters/aradel/front.svg",
  25593. extra: 324 / 303,
  25594. bottom: 3.6 / 329.4
  25595. }
  25596. },
  25597. },
  25598. [
  25599. {
  25600. name: "Normal",
  25601. height: math.unit(5 + 1 / 12, "feet"),
  25602. default: true
  25603. },
  25604. ]
  25605. ))
  25606. characterMakers.push(() => makeCharacter(
  25607. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25608. {
  25609. front: {
  25610. height: math.unit(3 + 8 / 12, "feet"),
  25611. weight: math.unit(50, "lb"),
  25612. name: "Front",
  25613. image: {
  25614. source: "./media/characters/serryn/front.svg",
  25615. extra: 1792 / 1656,
  25616. bottom: 43.5 / 1840
  25617. }
  25618. },
  25619. },
  25620. [
  25621. {
  25622. name: "Normal",
  25623. height: math.unit(3 + 8 / 12, "feet"),
  25624. default: true
  25625. },
  25626. ]
  25627. ))
  25628. characterMakers.push(() => makeCharacter(
  25629. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  25630. {
  25631. front: {
  25632. height: math.unit(7 + 10 / 12, "feet"),
  25633. weight: math.unit(255, "lb"),
  25634. name: "Front",
  25635. image: {
  25636. source: "./media/characters/xavier-thyme/front.svg",
  25637. extra: 3733 / 3642,
  25638. bottom: 131 / 3869
  25639. }
  25640. },
  25641. frontRaven: {
  25642. height: math.unit(7 + 10 / 12, "feet"),
  25643. weight: math.unit(255, "lb"),
  25644. name: "Front (Raven)",
  25645. image: {
  25646. source: "./media/characters/xavier-thyme/front-raven.svg",
  25647. extra: 4385 / 3642,
  25648. bottom: 131 / 4517
  25649. }
  25650. },
  25651. },
  25652. [
  25653. {
  25654. name: "Normal",
  25655. height: math.unit(7 + 10 / 12, "feet"),
  25656. default: true
  25657. },
  25658. ]
  25659. ))
  25660. characterMakers.push(() => makeCharacter(
  25661. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25662. {
  25663. front: {
  25664. height: math.unit(1.6, "m"),
  25665. weight: math.unit(50, "kg"),
  25666. name: "Front",
  25667. image: {
  25668. source: "./media/characters/kiki/front.svg",
  25669. extra: 4682 / 3610,
  25670. bottom: 115 / 4777
  25671. }
  25672. },
  25673. },
  25674. [
  25675. {
  25676. name: "Normal",
  25677. height: math.unit(1.6, "meters"),
  25678. default: true
  25679. },
  25680. ]
  25681. ))
  25682. characterMakers.push(() => makeCharacter(
  25683. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25684. {
  25685. front: {
  25686. height: math.unit(50, "m"),
  25687. weight: math.unit(500, "tonnes"),
  25688. name: "Front",
  25689. image: {
  25690. source: "./media/characters/ryoko/front.svg",
  25691. extra: 4632 / 3926,
  25692. bottom: 193 / 4823
  25693. }
  25694. },
  25695. },
  25696. [
  25697. {
  25698. name: "Normal",
  25699. height: math.unit(50, "meters"),
  25700. default: true
  25701. },
  25702. ]
  25703. ))
  25704. characterMakers.push(() => makeCharacter(
  25705. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25706. {
  25707. front: {
  25708. height: math.unit(30, "m"),
  25709. weight: math.unit(22, "tonnes"),
  25710. name: "Front",
  25711. image: {
  25712. source: "./media/characters/elio/front.svg",
  25713. extra: 4582 / 3720,
  25714. bottom: 236 / 4828
  25715. }
  25716. },
  25717. },
  25718. [
  25719. {
  25720. name: "Normal",
  25721. height: math.unit(30, "meters"),
  25722. default: true
  25723. },
  25724. ]
  25725. ))
  25726. characterMakers.push(() => makeCharacter(
  25727. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25728. {
  25729. front: {
  25730. height: math.unit(6 + 3 / 12, "feet"),
  25731. weight: math.unit(120, "lb"),
  25732. name: "Front",
  25733. image: {
  25734. source: "./media/characters/azura/front.svg",
  25735. extra: 1149 / 1135,
  25736. bottom: 45 / 1194
  25737. }
  25738. },
  25739. frontClothed: {
  25740. height: math.unit(6 + 3 / 12, "feet"),
  25741. weight: math.unit(120, "lb"),
  25742. name: "Front (Clothed)",
  25743. image: {
  25744. source: "./media/characters/azura/front-clothed.svg",
  25745. extra: 1149 / 1135,
  25746. bottom: 45 / 1194
  25747. }
  25748. },
  25749. },
  25750. [
  25751. {
  25752. name: "Normal",
  25753. height: math.unit(6 + 3 / 12, "feet"),
  25754. default: true
  25755. },
  25756. {
  25757. name: "Macro",
  25758. height: math.unit(20 + 6 / 12, "feet")
  25759. },
  25760. {
  25761. name: "Megamacro",
  25762. height: math.unit(12, "miles")
  25763. },
  25764. {
  25765. name: "Gigamacro",
  25766. height: math.unit(10000, "miles")
  25767. },
  25768. {
  25769. name: "Teramacro",
  25770. height: math.unit(900000, "miles")
  25771. },
  25772. ]
  25773. ))
  25774. characterMakers.push(() => makeCharacter(
  25775. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25776. {
  25777. front: {
  25778. height: math.unit(12, "feet"),
  25779. weight: math.unit(1, "ton"),
  25780. capacity: math.unit(660000, "gallons"),
  25781. name: "Front",
  25782. image: {
  25783. source: "./media/characters/zeus/front.svg",
  25784. extra: 5005 / 4717,
  25785. bottom: 363 / 5388
  25786. }
  25787. },
  25788. },
  25789. [
  25790. {
  25791. name: "Normal",
  25792. height: math.unit(12, "feet")
  25793. },
  25794. {
  25795. name: "Preferred Size",
  25796. height: math.unit(0.5, "miles"),
  25797. default: true
  25798. },
  25799. {
  25800. name: "Giga Horse",
  25801. height: math.unit(300, "miles")
  25802. },
  25803. {
  25804. name: "Riding Planets",
  25805. height: math.unit(30, "megameters")
  25806. },
  25807. {
  25808. name: "Cosmic Giant",
  25809. height: math.unit(3, "zettameters")
  25810. },
  25811. {
  25812. name: "Breeding God",
  25813. height: math.unit(9.92e22, "yottameters")
  25814. },
  25815. ]
  25816. ))
  25817. characterMakers.push(() => makeCharacter(
  25818. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25819. {
  25820. side: {
  25821. height: math.unit(9, "feet"),
  25822. weight: math.unit(1500, "kg"),
  25823. name: "Side",
  25824. image: {
  25825. source: "./media/characters/fang/side.svg",
  25826. extra: 924 / 866,
  25827. bottom: 47.5 / 972.3
  25828. }
  25829. },
  25830. },
  25831. [
  25832. {
  25833. name: "Normal",
  25834. height: math.unit(9, "feet"),
  25835. default: true
  25836. },
  25837. {
  25838. name: "Macro",
  25839. height: math.unit(75 + 6 / 12, "feet")
  25840. },
  25841. {
  25842. name: "Teramacro",
  25843. height: math.unit(50000, "miles")
  25844. },
  25845. ]
  25846. ))
  25847. characterMakers.push(() => makeCharacter(
  25848. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25849. {
  25850. front: {
  25851. height: math.unit(10, "feet"),
  25852. weight: math.unit(2, "tons"),
  25853. name: "Front",
  25854. image: {
  25855. source: "./media/characters/rekhit/front.svg",
  25856. extra: 2796 / 2590,
  25857. bottom: 225 / 3022
  25858. }
  25859. },
  25860. },
  25861. [
  25862. {
  25863. name: "Normal",
  25864. height: math.unit(10, "feet"),
  25865. default: true
  25866. },
  25867. {
  25868. name: "Macro",
  25869. height: math.unit(500, "feet")
  25870. },
  25871. ]
  25872. ))
  25873. characterMakers.push(() => makeCharacter(
  25874. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  25875. {
  25876. front: {
  25877. height: math.unit(7 + 6.451 / 12, "feet"),
  25878. weight: math.unit(310, "lb"),
  25879. name: "Front",
  25880. image: {
  25881. source: "./media/characters/dahlia-verrick/front.svg",
  25882. extra: 1488 / 1365,
  25883. bottom: 6.2 / 1495
  25884. }
  25885. },
  25886. back: {
  25887. height: math.unit(7 + 6.451 / 12, "feet"),
  25888. weight: math.unit(310, "lb"),
  25889. name: "Back",
  25890. image: {
  25891. source: "./media/characters/dahlia-verrick/back.svg",
  25892. extra: 1472 / 1351,
  25893. bottom: 5.28 / 1477
  25894. }
  25895. },
  25896. frontBusiness: {
  25897. height: math.unit(7 + 6.451 / 12, "feet"),
  25898. weight: math.unit(200, "lb"),
  25899. name: "Front (Business)",
  25900. image: {
  25901. source: "./media/characters/dahlia-verrick/front-business.svg",
  25902. extra: 1478 / 1381,
  25903. bottom: 5.5 / 1484
  25904. }
  25905. },
  25906. frontCasual: {
  25907. height: math.unit(7 + 6.451 / 12, "feet"),
  25908. weight: math.unit(200, "lb"),
  25909. name: "Front (Casual)",
  25910. image: {
  25911. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25912. extra: 1478 / 1381,
  25913. bottom: 5.5 / 1484
  25914. }
  25915. },
  25916. },
  25917. [
  25918. {
  25919. name: "Travel-Sized",
  25920. height: math.unit(7.45, "inches")
  25921. },
  25922. {
  25923. name: "Normal",
  25924. height: math.unit(7 + 6.451 / 12, "feet"),
  25925. default: true
  25926. },
  25927. {
  25928. name: "Hitting the Town",
  25929. height: math.unit(37 + 8 / 12, "feet")
  25930. },
  25931. {
  25932. name: "Stomp in the Suburbs",
  25933. height: math.unit(964 + 9.728 / 12, "feet")
  25934. },
  25935. {
  25936. name: "Sit on the City",
  25937. height: math.unit(61747 + 10.592 / 12, "feet")
  25938. },
  25939. {
  25940. name: "Glomp the Globe",
  25941. height: math.unit(252919327 + 4.832 / 12, "feet")
  25942. },
  25943. ]
  25944. ))
  25945. characterMakers.push(() => makeCharacter(
  25946. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25947. {
  25948. front: {
  25949. height: math.unit(6 + 4 / 12, "feet"),
  25950. weight: math.unit(320, "lb"),
  25951. name: "Front",
  25952. image: {
  25953. source: "./media/characters/balina-mahigan/front.svg",
  25954. extra: 447 / 428,
  25955. bottom: 18 / 466
  25956. }
  25957. },
  25958. back: {
  25959. height: math.unit(6 + 4 / 12, "feet"),
  25960. weight: math.unit(320, "lb"),
  25961. name: "Back",
  25962. image: {
  25963. source: "./media/characters/balina-mahigan/back.svg",
  25964. extra: 445 / 428,
  25965. bottom: 4.07 / 448
  25966. }
  25967. },
  25968. arm: {
  25969. height: math.unit(1.88, "feet"),
  25970. name: "Arm",
  25971. image: {
  25972. source: "./media/characters/balina-mahigan/arm.svg"
  25973. }
  25974. },
  25975. backPort: {
  25976. height: math.unit(0.685, "feet"),
  25977. name: "Back Port",
  25978. image: {
  25979. source: "./media/characters/balina-mahigan/back-port.svg"
  25980. }
  25981. },
  25982. hoofpaw: {
  25983. height: math.unit(1.41, "feet"),
  25984. name: "Hoofpaw",
  25985. image: {
  25986. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25987. }
  25988. },
  25989. leftHandBack: {
  25990. height: math.unit(0.938, "feet"),
  25991. name: "Left Hand (Back)",
  25992. image: {
  25993. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25994. }
  25995. },
  25996. leftHandFront: {
  25997. height: math.unit(0.938, "feet"),
  25998. name: "Left Hand (Front)",
  25999. image: {
  26000. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26001. }
  26002. },
  26003. rightHandBack: {
  26004. height: math.unit(0.95, "feet"),
  26005. name: "Right Hand (Back)",
  26006. image: {
  26007. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26008. }
  26009. },
  26010. rightHandFront: {
  26011. height: math.unit(0.95, "feet"),
  26012. name: "Right Hand (Front)",
  26013. image: {
  26014. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26015. }
  26016. },
  26017. },
  26018. [
  26019. {
  26020. name: "Normal",
  26021. height: math.unit(6 + 4 / 12, "feet"),
  26022. default: true
  26023. },
  26024. ]
  26025. ))
  26026. characterMakers.push(() => makeCharacter(
  26027. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26028. {
  26029. front: {
  26030. height: math.unit(6, "feet"),
  26031. weight: math.unit(320, "lb"),
  26032. name: "Front",
  26033. image: {
  26034. source: "./media/characters/balina-mejeri/front.svg",
  26035. extra: 517 / 488,
  26036. bottom: 44.2 / 561
  26037. }
  26038. },
  26039. },
  26040. [
  26041. {
  26042. name: "Normal",
  26043. height: math.unit(6 + 4 / 12, "feet")
  26044. },
  26045. {
  26046. name: "Business",
  26047. height: math.unit(155, "feet"),
  26048. default: true
  26049. },
  26050. ]
  26051. ))
  26052. characterMakers.push(() => makeCharacter(
  26053. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26054. {
  26055. kneeling: {
  26056. height: math.unit(6 + 4 / 12, "feet"),
  26057. weight: math.unit(300 * 20, "lb"),
  26058. name: "Kneeling",
  26059. image: {
  26060. source: "./media/characters/balbarian/kneeling.svg",
  26061. extra: 922 / 862,
  26062. bottom: 42.4 / 965
  26063. }
  26064. },
  26065. },
  26066. [
  26067. {
  26068. name: "Normal",
  26069. height: math.unit(6 + 4 / 12, "feet")
  26070. },
  26071. {
  26072. name: "Treasured",
  26073. height: math.unit(18 + 9 / 12, "feet"),
  26074. default: true
  26075. },
  26076. {
  26077. name: "Macro",
  26078. height: math.unit(900, "feet")
  26079. },
  26080. ]
  26081. ))
  26082. characterMakers.push(() => makeCharacter(
  26083. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26084. {
  26085. front: {
  26086. height: math.unit(6 + 4 / 12, "feet"),
  26087. weight: math.unit(325, "lb"),
  26088. name: "Front",
  26089. image: {
  26090. source: "./media/characters/balina-amarini/front.svg",
  26091. extra: 415 / 403,
  26092. bottom: 19 / 433.4
  26093. }
  26094. },
  26095. back: {
  26096. height: math.unit(6 + 4 / 12, "feet"),
  26097. weight: math.unit(325, "lb"),
  26098. name: "Back",
  26099. image: {
  26100. source: "./media/characters/balina-amarini/back.svg",
  26101. extra: 415 / 403,
  26102. bottom: 13.5 / 432
  26103. }
  26104. },
  26105. overdrive: {
  26106. height: math.unit(6 + 4 / 12, "feet"),
  26107. weight: math.unit(400, "lb"),
  26108. name: "Overdrive",
  26109. image: {
  26110. source: "./media/characters/balina-amarini/overdrive.svg",
  26111. extra: 269 / 259,
  26112. bottom: 12 / 282
  26113. }
  26114. },
  26115. },
  26116. [
  26117. {
  26118. name: "Boom",
  26119. height: math.unit(9 + 10 / 12, "feet"),
  26120. default: true
  26121. },
  26122. {
  26123. name: "Macro",
  26124. height: math.unit(280, "feet")
  26125. },
  26126. ]
  26127. ))
  26128. characterMakers.push(() => makeCharacter(
  26129. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26130. {
  26131. goddess: {
  26132. height: math.unit(600, "feet"),
  26133. weight: math.unit(2000000, "tons"),
  26134. name: "Goddess",
  26135. image: {
  26136. source: "./media/characters/lady-kubwa/goddess.svg",
  26137. extra: 1240.5 / 1223,
  26138. bottom: 22 / 1263
  26139. }
  26140. },
  26141. goddesser: {
  26142. height: math.unit(900, "feet"),
  26143. weight: math.unit(20000000, "lb"),
  26144. name: "Goddess-er",
  26145. image: {
  26146. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26147. extra: 899 / 888,
  26148. bottom: 12.6 / 912
  26149. }
  26150. },
  26151. },
  26152. [
  26153. {
  26154. name: "Macro",
  26155. height: math.unit(600, "feet"),
  26156. default: true
  26157. },
  26158. {
  26159. name: "Megamacro",
  26160. height: math.unit(250, "miles")
  26161. },
  26162. ]
  26163. ))
  26164. characterMakers.push(() => makeCharacter(
  26165. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26166. {
  26167. front: {
  26168. height: math.unit(7 + 7 / 12, "feet"),
  26169. weight: math.unit(250, "lb"),
  26170. name: "Front",
  26171. image: {
  26172. source: "./media/characters/tala-grovehorn/front.svg",
  26173. extra: 2636 / 2525,
  26174. bottom: 147 / 2781
  26175. }
  26176. },
  26177. back: {
  26178. height: math.unit(7 + 7 / 12, "feet"),
  26179. weight: math.unit(250, "lb"),
  26180. name: "Back",
  26181. image: {
  26182. source: "./media/characters/tala-grovehorn/back.svg",
  26183. extra: 2635 / 2539,
  26184. bottom: 100 / 2732.8
  26185. }
  26186. },
  26187. mouth: {
  26188. height: math.unit(1.15, "feet"),
  26189. name: "Mouth",
  26190. image: {
  26191. source: "./media/characters/tala-grovehorn/mouth.svg"
  26192. }
  26193. },
  26194. dick: {
  26195. height: math.unit(2.36, "feet"),
  26196. name: "Dick",
  26197. image: {
  26198. source: "./media/characters/tala-grovehorn/dick.svg"
  26199. }
  26200. },
  26201. slit: {
  26202. height: math.unit(0.61, "feet"),
  26203. name: "Slit",
  26204. image: {
  26205. source: "./media/characters/tala-grovehorn/slit.svg"
  26206. }
  26207. },
  26208. },
  26209. [
  26210. ]
  26211. ))
  26212. characterMakers.push(() => makeCharacter(
  26213. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26214. {
  26215. front: {
  26216. height: math.unit(7 + 7 / 12, "feet"),
  26217. weight: math.unit(225, "lb"),
  26218. name: "Front",
  26219. image: {
  26220. source: "./media/characters/epona/front.svg",
  26221. extra: 2445 / 2290,
  26222. bottom: 251 / 2696
  26223. }
  26224. },
  26225. back: {
  26226. height: math.unit(7 + 7 / 12, "feet"),
  26227. weight: math.unit(225, "lb"),
  26228. name: "Back",
  26229. image: {
  26230. source: "./media/characters/epona/back.svg",
  26231. extra: 2546 / 2408,
  26232. bottom: 44 / 2589
  26233. }
  26234. },
  26235. genitals: {
  26236. height: math.unit(1.5, "feet"),
  26237. name: "Genitals",
  26238. image: {
  26239. source: "./media/characters/epona/genitals.svg"
  26240. }
  26241. },
  26242. },
  26243. [
  26244. {
  26245. name: "Normal",
  26246. height: math.unit(7 + 7 / 12, "feet"),
  26247. default: true
  26248. },
  26249. ]
  26250. ))
  26251. characterMakers.push(() => makeCharacter(
  26252. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26253. {
  26254. front: {
  26255. height: math.unit(7, "feet"),
  26256. weight: math.unit(518, "lb"),
  26257. name: "Front",
  26258. image: {
  26259. source: "./media/characters/avia-bloodbourn/front.svg",
  26260. extra: 1466 / 1350,
  26261. bottom: 65 / 1527
  26262. }
  26263. },
  26264. },
  26265. [
  26266. ]
  26267. ))
  26268. characterMakers.push(() => makeCharacter(
  26269. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26270. {
  26271. front: {
  26272. height: math.unit(9.35, "feet"),
  26273. weight: math.unit(600, "lb"),
  26274. name: "Front",
  26275. image: {
  26276. source: "./media/characters/amera/front.svg",
  26277. extra: 891 / 818,
  26278. bottom: 30 / 922.7
  26279. }
  26280. },
  26281. back: {
  26282. height: math.unit(9.35, "feet"),
  26283. weight: math.unit(600, "lb"),
  26284. name: "Back",
  26285. image: {
  26286. source: "./media/characters/amera/back.svg",
  26287. extra: 876 / 824,
  26288. bottom: 6.8 / 884
  26289. }
  26290. },
  26291. dick: {
  26292. height: math.unit(2.14, "feet"),
  26293. name: "Dick",
  26294. image: {
  26295. source: "./media/characters/amera/dick.svg"
  26296. }
  26297. },
  26298. },
  26299. [
  26300. {
  26301. name: "Normal",
  26302. height: math.unit(9.35, "feet"),
  26303. default: true
  26304. },
  26305. ]
  26306. ))
  26307. characterMakers.push(() => makeCharacter(
  26308. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26309. {
  26310. kneeling: {
  26311. height: math.unit(3 + 4 / 12, "feet"),
  26312. weight: math.unit(90, "lb"),
  26313. name: "Kneeling",
  26314. image: {
  26315. source: "./media/characters/rosewen/kneeling.svg",
  26316. extra: 1835 / 1571,
  26317. bottom: 27.7 / 1862
  26318. }
  26319. },
  26320. },
  26321. [
  26322. {
  26323. name: "Normal",
  26324. height: math.unit(3 + 4 / 12, "feet"),
  26325. default: true
  26326. },
  26327. ]
  26328. ))
  26329. characterMakers.push(() => makeCharacter(
  26330. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26331. {
  26332. front: {
  26333. height: math.unit(5 + 10 / 12, "feet"),
  26334. weight: math.unit(200, "lb"),
  26335. name: "Front",
  26336. image: {
  26337. source: "./media/characters/sabah/front.svg",
  26338. extra: 849 / 763,
  26339. bottom: 33.9 / 881
  26340. }
  26341. },
  26342. },
  26343. [
  26344. {
  26345. name: "Normal",
  26346. height: math.unit(5 + 10 / 12, "feet"),
  26347. default: true
  26348. },
  26349. ]
  26350. ))
  26351. characterMakers.push(() => makeCharacter(
  26352. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26353. {
  26354. front: {
  26355. height: math.unit(3 + 5 / 12, "feet"),
  26356. weight: math.unit(40, "kg"),
  26357. name: "Front",
  26358. image: {
  26359. source: "./media/characters/purple-flame/front.svg",
  26360. extra: 1577 / 1412,
  26361. bottom: 97 / 1694
  26362. }
  26363. },
  26364. frontDressed: {
  26365. height: math.unit(3 + 5 / 12, "feet"),
  26366. weight: math.unit(40, "kg"),
  26367. name: "Front (Dressed)",
  26368. image: {
  26369. source: "./media/characters/purple-flame/front-dressed.svg",
  26370. extra: 1577 / 1412,
  26371. bottom: 97 / 1694
  26372. }
  26373. },
  26374. headphones: {
  26375. height: math.unit(0.85, "feet"),
  26376. name: "Headphones",
  26377. image: {
  26378. source: "./media/characters/purple-flame/headphones.svg"
  26379. }
  26380. },
  26381. },
  26382. [
  26383. {
  26384. name: "Really Small",
  26385. height: math.unit(5, "cm")
  26386. },
  26387. {
  26388. name: "Micro",
  26389. height: math.unit(1 + 5 / 12, "feet")
  26390. },
  26391. {
  26392. name: "Normal",
  26393. height: math.unit(3 + 5 / 12, "feet"),
  26394. default: true
  26395. },
  26396. {
  26397. name: "Minimacro",
  26398. height: math.unit(125, "feet")
  26399. },
  26400. {
  26401. name: "Macro",
  26402. height: math.unit(0.5, "miles")
  26403. },
  26404. {
  26405. name: "Megamacro",
  26406. height: math.unit(50, "miles")
  26407. },
  26408. {
  26409. name: "Gigantic",
  26410. height: math.unit(750, "miles")
  26411. },
  26412. {
  26413. name: "Planetary",
  26414. height: math.unit(15000, "miles")
  26415. },
  26416. ]
  26417. ))
  26418. characterMakers.push(() => makeCharacter(
  26419. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26420. {
  26421. front: {
  26422. height: math.unit(14, "feet"),
  26423. weight: math.unit(959, "lb"),
  26424. name: "Front",
  26425. image: {
  26426. source: "./media/characters/arsenal/front.svg",
  26427. extra: 2357 / 2157,
  26428. bottom: 93 / 2458
  26429. }
  26430. },
  26431. },
  26432. [
  26433. {
  26434. name: "Normal",
  26435. height: math.unit(14, "feet"),
  26436. default: true
  26437. },
  26438. ]
  26439. ))
  26440. characterMakers.push(() => makeCharacter(
  26441. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26442. {
  26443. front: {
  26444. height: math.unit(6, "feet"),
  26445. weight: math.unit(150, "lb"),
  26446. name: "Front",
  26447. image: {
  26448. source: "./media/characters/adira/front.svg",
  26449. extra: 1078 / 1029,
  26450. bottom: 87 / 1166
  26451. }
  26452. },
  26453. },
  26454. [
  26455. {
  26456. name: "Micro",
  26457. height: math.unit(4, "inches"),
  26458. default: true
  26459. },
  26460. {
  26461. name: "Macro",
  26462. height: math.unit(50, "feet")
  26463. },
  26464. ]
  26465. ))
  26466. characterMakers.push(() => makeCharacter(
  26467. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26468. {
  26469. front: {
  26470. height: math.unit(16, "feet"),
  26471. weight: math.unit(1000, "lb"),
  26472. name: "Front",
  26473. image: {
  26474. source: "./media/characters/grim/front.svg",
  26475. extra: 622 / 614,
  26476. bottom: 18.1 / 642
  26477. }
  26478. },
  26479. back: {
  26480. height: math.unit(16, "feet"),
  26481. weight: math.unit(1000, "lb"),
  26482. name: "Back",
  26483. image: {
  26484. source: "./media/characters/grim/back.svg",
  26485. extra: 610.6 / 602,
  26486. bottom: 40.8 / 652
  26487. }
  26488. },
  26489. hunched: {
  26490. height: math.unit(9.75, "feet"),
  26491. weight: math.unit(1000, "lb"),
  26492. name: "Hunched",
  26493. image: {
  26494. source: "./media/characters/grim/hunched.svg",
  26495. extra: 304 / 297,
  26496. bottom: 35.4 / 394
  26497. }
  26498. },
  26499. },
  26500. [
  26501. {
  26502. name: "Normal",
  26503. height: math.unit(16, "feet"),
  26504. default: true
  26505. },
  26506. ]
  26507. ))
  26508. characterMakers.push(() => makeCharacter(
  26509. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26510. {
  26511. front: {
  26512. height: math.unit(2.3, "meters"),
  26513. weight: math.unit(300, "lb"),
  26514. name: "Front",
  26515. image: {
  26516. source: "./media/characters/sinja/front-sfw.svg",
  26517. extra: 1393 / 1294,
  26518. bottom: 70 / 1463
  26519. }
  26520. },
  26521. frontNsfw: {
  26522. height: math.unit(2.3, "meters"),
  26523. weight: math.unit(300, "lb"),
  26524. name: "Front (NSFW)",
  26525. image: {
  26526. source: "./media/characters/sinja/front-nsfw.svg",
  26527. extra: 1393 / 1294,
  26528. bottom: 70 / 1463
  26529. }
  26530. },
  26531. back: {
  26532. height: math.unit(2.3, "meters"),
  26533. weight: math.unit(300, "lb"),
  26534. name: "Back",
  26535. image: {
  26536. source: "./media/characters/sinja/back.svg",
  26537. extra: 1393 / 1294,
  26538. bottom: 70 / 1463
  26539. }
  26540. },
  26541. head: {
  26542. height: math.unit(1.771, "feet"),
  26543. name: "Head",
  26544. image: {
  26545. source: "./media/characters/sinja/head.svg"
  26546. }
  26547. },
  26548. slit: {
  26549. height: math.unit(0.8, "feet"),
  26550. name: "Slit",
  26551. image: {
  26552. source: "./media/characters/sinja/slit.svg"
  26553. }
  26554. },
  26555. },
  26556. [
  26557. {
  26558. name: "Normal",
  26559. height: math.unit(2.3, "meters")
  26560. },
  26561. {
  26562. name: "Macro",
  26563. height: math.unit(91, "meters"),
  26564. default: true
  26565. },
  26566. {
  26567. name: "Megamacro",
  26568. height: math.unit(91440, "meters")
  26569. },
  26570. {
  26571. name: "Gigamacro",
  26572. height: math.unit(60960000, "meters")
  26573. },
  26574. {
  26575. name: "Teramacro",
  26576. height: math.unit(9144000000, "meters")
  26577. },
  26578. ]
  26579. ))
  26580. characterMakers.push(() => makeCharacter(
  26581. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26582. {
  26583. front: {
  26584. height: math.unit(1.7, "meters"),
  26585. weight: math.unit(130, "lb"),
  26586. name: "Front",
  26587. image: {
  26588. source: "./media/characters/kyu/front.svg",
  26589. extra: 415 / 395,
  26590. bottom: 5 / 420
  26591. }
  26592. },
  26593. head: {
  26594. height: math.unit(1.75, "feet"),
  26595. name: "Head",
  26596. image: {
  26597. source: "./media/characters/kyu/head.svg"
  26598. }
  26599. },
  26600. foot: {
  26601. height: math.unit(0.81, "feet"),
  26602. name: "Foot",
  26603. image: {
  26604. source: "./media/characters/kyu/foot.svg"
  26605. }
  26606. },
  26607. },
  26608. [
  26609. {
  26610. name: "Normal",
  26611. height: math.unit(1.7, "meters")
  26612. },
  26613. {
  26614. name: "Macro",
  26615. height: math.unit(131, "feet"),
  26616. default: true
  26617. },
  26618. {
  26619. name: "Megamacro",
  26620. height: math.unit(91440, "meters")
  26621. },
  26622. {
  26623. name: "Gigamacro",
  26624. height: math.unit(60960000, "meters")
  26625. },
  26626. {
  26627. name: "Teramacro",
  26628. height: math.unit(9144000000, "meters")
  26629. },
  26630. ]
  26631. ))
  26632. characterMakers.push(() => makeCharacter(
  26633. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26634. {
  26635. front: {
  26636. height: math.unit(7 + 1 / 12, "feet"),
  26637. weight: math.unit(250, "lb"),
  26638. name: "Front",
  26639. image: {
  26640. source: "./media/characters/joey/front.svg",
  26641. extra: 1791 / 1537,
  26642. bottom: 28 / 1816
  26643. }
  26644. },
  26645. },
  26646. [
  26647. {
  26648. name: "Micro",
  26649. height: math.unit(3, "inches")
  26650. },
  26651. {
  26652. name: "Normal",
  26653. height: math.unit(7 + 1 / 12, "feet"),
  26654. default: true
  26655. },
  26656. ]
  26657. ))
  26658. characterMakers.push(() => makeCharacter(
  26659. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26660. {
  26661. front: {
  26662. height: math.unit(165, "cm"),
  26663. weight: math.unit(140, "lb"),
  26664. name: "Front",
  26665. image: {
  26666. source: "./media/characters/sam-evans/front.svg",
  26667. extra: 3417 / 3230,
  26668. bottom: 41.3 / 3417
  26669. }
  26670. },
  26671. frontSixTails: {
  26672. height: math.unit(165, "cm"),
  26673. weight: math.unit(140, "lb"),
  26674. name: "Front-six-tails",
  26675. image: {
  26676. source: "./media/characters/sam-evans/front-six-tails.svg",
  26677. extra: 3417 / 3230,
  26678. bottom: 41.3 / 3417
  26679. }
  26680. },
  26681. back: {
  26682. height: math.unit(165, "cm"),
  26683. weight: math.unit(140, "lb"),
  26684. name: "Back",
  26685. image: {
  26686. source: "./media/characters/sam-evans/back.svg",
  26687. extra: 3227 / 3032,
  26688. bottom: 6.8 / 3234
  26689. }
  26690. },
  26691. face: {
  26692. height: math.unit(0.68, "feet"),
  26693. name: "Face",
  26694. image: {
  26695. source: "./media/characters/sam-evans/face.svg"
  26696. }
  26697. },
  26698. },
  26699. [
  26700. {
  26701. name: "Normal",
  26702. height: math.unit(165, "cm"),
  26703. default: true
  26704. },
  26705. {
  26706. name: "Macro",
  26707. height: math.unit(100, "meters")
  26708. },
  26709. {
  26710. name: "Macro+",
  26711. height: math.unit(800, "meters")
  26712. },
  26713. {
  26714. name: "Macro++",
  26715. height: math.unit(3, "km")
  26716. },
  26717. {
  26718. name: "Macro+++",
  26719. height: math.unit(30, "km")
  26720. },
  26721. ]
  26722. ))
  26723. characterMakers.push(() => makeCharacter(
  26724. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26725. {
  26726. front: {
  26727. height: math.unit(10, "feet"),
  26728. weight: math.unit(750, "lb"),
  26729. name: "Front",
  26730. image: {
  26731. source: "./media/characters/juliet-a/front.svg",
  26732. extra: 1766 / 1720,
  26733. bottom: 43 / 1809
  26734. }
  26735. },
  26736. back: {
  26737. height: math.unit(10, "feet"),
  26738. weight: math.unit(750, "lb"),
  26739. name: "Back",
  26740. image: {
  26741. source: "./media/characters/juliet-a/back.svg",
  26742. extra: 1781 / 1734,
  26743. bottom: 35 / 1810,
  26744. }
  26745. },
  26746. },
  26747. [
  26748. {
  26749. name: "Normal",
  26750. height: math.unit(10, "feet"),
  26751. default: true
  26752. },
  26753. {
  26754. name: "Dragon Form",
  26755. height: math.unit(250, "feet")
  26756. },
  26757. {
  26758. name: "Macro",
  26759. height: math.unit(1000, "feet")
  26760. },
  26761. {
  26762. name: "Megamacro",
  26763. height: math.unit(10000, "feet")
  26764. }
  26765. ]
  26766. ))
  26767. characterMakers.push(() => makeCharacter(
  26768. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26769. {
  26770. regular: {
  26771. height: math.unit(7 + 3 / 12, "feet"),
  26772. weight: math.unit(260, "lb"),
  26773. name: "Regular",
  26774. image: {
  26775. source: "./media/characters/wild/regular.svg",
  26776. extra: 97.45 / 92,
  26777. bottom: 6.8 / 104.3
  26778. }
  26779. },
  26780. biggums: {
  26781. height: math.unit(8 + 6 / 12, "feet"),
  26782. weight: math.unit(425, "lb"),
  26783. name: "Biggums",
  26784. image: {
  26785. source: "./media/characters/wild/biggums.svg",
  26786. extra: 97.45 / 92,
  26787. bottom: 7.5 / 132.34
  26788. }
  26789. },
  26790. mawRegular: {
  26791. height: math.unit(1.24, "feet"),
  26792. name: "Maw (Regular)",
  26793. image: {
  26794. source: "./media/characters/wild/maw.svg"
  26795. }
  26796. },
  26797. mawBiggums: {
  26798. height: math.unit(1.47, "feet"),
  26799. name: "Maw (Biggums)",
  26800. image: {
  26801. source: "./media/characters/wild/maw.svg"
  26802. }
  26803. },
  26804. },
  26805. [
  26806. {
  26807. name: "Normal",
  26808. height: math.unit(7 + 3 / 12, "feet"),
  26809. default: true
  26810. },
  26811. ]
  26812. ))
  26813. characterMakers.push(() => makeCharacter(
  26814. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26815. {
  26816. front: {
  26817. height: math.unit(2.5, "meters"),
  26818. weight: math.unit(200, "kg"),
  26819. name: "Front",
  26820. image: {
  26821. source: "./media/characters/vidar/front.svg",
  26822. extra: 2994 / 2795,
  26823. bottom: 56 / 3061
  26824. }
  26825. },
  26826. back: {
  26827. height: math.unit(2.5, "meters"),
  26828. weight: math.unit(200, "kg"),
  26829. name: "Back",
  26830. image: {
  26831. source: "./media/characters/vidar/back.svg",
  26832. extra: 3131 / 2928,
  26833. bottom: 13.5 / 3141.5
  26834. }
  26835. },
  26836. feral: {
  26837. height: math.unit(2.5, "meters"),
  26838. weight: math.unit(2000, "kg"),
  26839. name: "Feral",
  26840. image: {
  26841. source: "./media/characters/vidar/feral.svg",
  26842. extra: 2790 / 1765,
  26843. bottom: 6 / 2796
  26844. }
  26845. },
  26846. },
  26847. [
  26848. {
  26849. name: "Normal",
  26850. height: math.unit(2.5, "meters"),
  26851. default: true
  26852. },
  26853. {
  26854. name: "Macro",
  26855. height: math.unit(100, "meters")
  26856. },
  26857. ]
  26858. ))
  26859. characterMakers.push(() => makeCharacter(
  26860. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26861. {
  26862. front: {
  26863. height: math.unit(5 + 9 / 12, "feet"),
  26864. weight: math.unit(120, "lb"),
  26865. name: "Front",
  26866. image: {
  26867. source: "./media/characters/ash/front.svg",
  26868. extra: 2189 / 1961,
  26869. bottom: 5.2 / 2194
  26870. }
  26871. },
  26872. },
  26873. [
  26874. {
  26875. name: "Normal",
  26876. height: math.unit(5 + 9 / 12, "feet"),
  26877. default: true
  26878. },
  26879. ]
  26880. ))
  26881. characterMakers.push(() => makeCharacter(
  26882. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26883. {
  26884. front: {
  26885. height: math.unit(9, "feet"),
  26886. weight: math.unit(10000, "lb"),
  26887. name: "Front",
  26888. image: {
  26889. source: "./media/characters/gygabite/front.svg",
  26890. bottom: 31.7 / 537.8,
  26891. extra: 505 / 370
  26892. }
  26893. },
  26894. },
  26895. [
  26896. {
  26897. name: "Normal",
  26898. height: math.unit(9, "feet"),
  26899. default: true
  26900. },
  26901. ]
  26902. ))
  26903. characterMakers.push(() => makeCharacter(
  26904. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26905. {
  26906. front: {
  26907. height: math.unit(12, "feet"),
  26908. weight: math.unit(35000, "lb"),
  26909. name: "Front",
  26910. image: {
  26911. source: "./media/characters/p0tat0/front.svg",
  26912. extra: 1065 / 921,
  26913. bottom: 55.7 / 1121.25
  26914. }
  26915. },
  26916. },
  26917. [
  26918. {
  26919. name: "Normal",
  26920. height: math.unit(12, "feet"),
  26921. default: true
  26922. },
  26923. ]
  26924. ))
  26925. characterMakers.push(() => makeCharacter(
  26926. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26927. {
  26928. side: {
  26929. height: math.unit(6.5, "feet"),
  26930. weight: math.unit(800, "lb"),
  26931. name: "Side",
  26932. image: {
  26933. source: "./media/characters/dusk/side.svg",
  26934. extra: 615 / 373,
  26935. bottom: 53 / 664
  26936. }
  26937. },
  26938. sitting: {
  26939. height: math.unit(7, "feet"),
  26940. weight: math.unit(800, "lb"),
  26941. name: "Sitting",
  26942. image: {
  26943. source: "./media/characters/dusk/sitting.svg",
  26944. extra: 753 / 425,
  26945. bottom: 33 / 774
  26946. }
  26947. },
  26948. head: {
  26949. height: math.unit(6.1, "feet"),
  26950. name: "Head",
  26951. image: {
  26952. source: "./media/characters/dusk/head.svg"
  26953. }
  26954. },
  26955. },
  26956. [
  26957. {
  26958. name: "Normal",
  26959. height: math.unit(7, "feet"),
  26960. default: true
  26961. },
  26962. ]
  26963. ))
  26964. characterMakers.push(() => makeCharacter(
  26965. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26966. {
  26967. front: {
  26968. height: math.unit(15, "feet"),
  26969. weight: math.unit(7000, "lb"),
  26970. name: "Front",
  26971. image: {
  26972. source: "./media/characters/jay-direwolf/front.svg",
  26973. extra: 1810 / 1732,
  26974. bottom: 66 / 1892
  26975. }
  26976. },
  26977. },
  26978. [
  26979. {
  26980. name: "Normal",
  26981. height: math.unit(15, "feet"),
  26982. default: true
  26983. },
  26984. ]
  26985. ))
  26986. characterMakers.push(() => makeCharacter(
  26987. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26988. {
  26989. front: {
  26990. height: math.unit(4 + 9 / 12, "feet"),
  26991. weight: math.unit(130, "lb"),
  26992. name: "Front",
  26993. image: {
  26994. source: "./media/characters/anchovie/front.svg",
  26995. extra: 382 / 350,
  26996. bottom: 25 / 409
  26997. }
  26998. },
  26999. back: {
  27000. height: math.unit(4 + 9 / 12, "feet"),
  27001. weight: math.unit(130, "lb"),
  27002. name: "Back",
  27003. image: {
  27004. source: "./media/characters/anchovie/back.svg",
  27005. extra: 385 / 352,
  27006. bottom: 16.6 / 402
  27007. }
  27008. },
  27009. frontDressed: {
  27010. height: math.unit(4 + 9 / 12, "feet"),
  27011. weight: math.unit(130, "lb"),
  27012. name: "Front (Dressed)",
  27013. image: {
  27014. source: "./media/characters/anchovie/front-dressed.svg",
  27015. extra: 382 / 350,
  27016. bottom: 25 / 409
  27017. }
  27018. },
  27019. backDressed: {
  27020. height: math.unit(4 + 9 / 12, "feet"),
  27021. weight: math.unit(130, "lb"),
  27022. name: "Back (Dressed)",
  27023. image: {
  27024. source: "./media/characters/anchovie/back-dressed.svg",
  27025. extra: 385 / 352,
  27026. bottom: 16.6 / 402
  27027. }
  27028. },
  27029. },
  27030. [
  27031. {
  27032. name: "Micro",
  27033. height: math.unit(6.4, "inches")
  27034. },
  27035. {
  27036. name: "Normal",
  27037. height: math.unit(4 + 9 / 12, "feet"),
  27038. default: true
  27039. },
  27040. ]
  27041. ))
  27042. characterMakers.push(() => makeCharacter(
  27043. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27044. {
  27045. front: {
  27046. height: math.unit(2, "meters"),
  27047. weight: math.unit(180, "lb"),
  27048. name: "Front",
  27049. image: {
  27050. source: "./media/characters/acidrenamon/front.svg",
  27051. extra: 987 / 890,
  27052. bottom: 22.8 / 1009
  27053. }
  27054. },
  27055. back: {
  27056. height: math.unit(2, "meters"),
  27057. weight: math.unit(180, "lb"),
  27058. name: "Back",
  27059. image: {
  27060. source: "./media/characters/acidrenamon/back.svg",
  27061. extra: 983 / 891,
  27062. bottom: 8.4 / 992
  27063. }
  27064. },
  27065. head: {
  27066. height: math.unit(1.92, "feet"),
  27067. name: "Head",
  27068. image: {
  27069. source: "./media/characters/acidrenamon/head.svg"
  27070. }
  27071. },
  27072. rump: {
  27073. height: math.unit(1.72, "feet"),
  27074. name: "Rump",
  27075. image: {
  27076. source: "./media/characters/acidrenamon/rump.svg"
  27077. }
  27078. },
  27079. tail: {
  27080. height: math.unit(4.2, "feet"),
  27081. name: "Tail",
  27082. image: {
  27083. source: "./media/characters/acidrenamon/tail.svg"
  27084. }
  27085. },
  27086. },
  27087. [
  27088. {
  27089. name: "Normal",
  27090. height: math.unit(2, "meters"),
  27091. default: true
  27092. },
  27093. {
  27094. name: "Minimacro",
  27095. height: math.unit(7, "meters")
  27096. },
  27097. {
  27098. name: "Macro",
  27099. height: math.unit(200, "meters")
  27100. },
  27101. {
  27102. name: "Gigamacro",
  27103. height: math.unit(0.2, "earths")
  27104. },
  27105. ]
  27106. ))
  27107. characterMakers.push(() => makeCharacter(
  27108. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27109. {
  27110. front: {
  27111. height: math.unit(6, "feet"),
  27112. weight: math.unit(150, "lb"),
  27113. name: "Front",
  27114. image: {
  27115. source: "./media/characters/kenzie-lee/front.svg",
  27116. extra: 1525 / 1465,
  27117. bottom: 45 / 1570
  27118. }
  27119. },
  27120. side: {
  27121. height: math.unit(6, "feet"),
  27122. weight: math.unit(150, "lb"),
  27123. name: "Side",
  27124. image: {
  27125. source: "./media/characters/kenzie-lee/side.svg",
  27126. extra: 5505 / 5383,
  27127. bottom: 60 / 5573
  27128. }
  27129. },
  27130. paw: {
  27131. height: math.unit(0.57, "feet"),
  27132. name: "Paw",
  27133. image: {
  27134. source: "./media/characters/kenzie-lee/paw.svg"
  27135. }
  27136. },
  27137. },
  27138. [
  27139. {
  27140. name: "Normal",
  27141. height: math.unit(152, "feet"),
  27142. default: true
  27143. },
  27144. {
  27145. name: "Megamacro",
  27146. height: math.unit(7, "miles")
  27147. },
  27148. {
  27149. name: "Gigamacro",
  27150. height: math.unit(8000, "miles")
  27151. },
  27152. ]
  27153. ))
  27154. characterMakers.push(() => makeCharacter(
  27155. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27156. {
  27157. side: {
  27158. height: math.unit(6, "feet"),
  27159. weight: math.unit(150, "lb"),
  27160. name: "Side",
  27161. image: {
  27162. source: "./media/characters/withers/side.svg",
  27163. extra: 1830 / 1728,
  27164. bottom: 96 / 1927
  27165. }
  27166. },
  27167. front: {
  27168. height: math.unit(6, "feet"),
  27169. weight: math.unit(150, "lb"),
  27170. name: "Front",
  27171. image: {
  27172. source: "./media/characters/withers/front.svg",
  27173. extra: 1514 / 1438,
  27174. bottom: 118 / 1632
  27175. }
  27176. },
  27177. },
  27178. [
  27179. {
  27180. name: "Macro",
  27181. height: math.unit(168, "feet"),
  27182. default: true
  27183. },
  27184. {
  27185. name: "Megamacro",
  27186. height: math.unit(15, "miles")
  27187. }
  27188. ]
  27189. ))
  27190. characterMakers.push(() => makeCharacter(
  27191. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27192. {
  27193. front: {
  27194. height: math.unit(6 + 7 / 12, "feet"),
  27195. weight: math.unit(250, "lb"),
  27196. name: "Front",
  27197. image: {
  27198. source: "./media/characters/nemoskii/front.svg",
  27199. extra: 2270 / 1734,
  27200. bottom: 86 / 2354
  27201. }
  27202. },
  27203. back: {
  27204. height: math.unit(6 + 7 / 12, "feet"),
  27205. weight: math.unit(250, "lb"),
  27206. name: "Back",
  27207. image: {
  27208. source: "./media/characters/nemoskii/back.svg",
  27209. extra: 1845 / 1788,
  27210. bottom: 10.5 / 1852
  27211. }
  27212. },
  27213. head: {
  27214. height: math.unit(1.31, "feet"),
  27215. name: "Head",
  27216. image: {
  27217. source: "./media/characters/nemoskii/head.svg"
  27218. }
  27219. },
  27220. },
  27221. [
  27222. {
  27223. name: "Micro",
  27224. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27225. },
  27226. {
  27227. name: "Normal",
  27228. height: math.unit(6 + 7 / 12, "feet"),
  27229. default: true
  27230. },
  27231. {
  27232. name: "Macro",
  27233. height: math.unit((6 + 7 / 12) * 150, "feet")
  27234. },
  27235. {
  27236. name: "Macro+",
  27237. height: math.unit((6 + 7 / 12) * 500, "feet")
  27238. },
  27239. {
  27240. name: "Megamacro",
  27241. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27242. },
  27243. ]
  27244. ))
  27245. characterMakers.push(() => makeCharacter(
  27246. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27247. {
  27248. front: {
  27249. height: math.unit(1, "mile"),
  27250. weight: math.unit(265261.9, "lb"),
  27251. name: "Front",
  27252. image: {
  27253. source: "./media/characters/shui/front.svg",
  27254. extra: 1633 / 1564,
  27255. bottom: 91.5 / 1726
  27256. }
  27257. },
  27258. },
  27259. [
  27260. {
  27261. name: "Macro",
  27262. height: math.unit(1, "mile"),
  27263. default: true
  27264. },
  27265. ]
  27266. ))
  27267. characterMakers.push(() => makeCharacter(
  27268. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27269. {
  27270. front: {
  27271. height: math.unit(12 + 6 / 12, "feet"),
  27272. weight: math.unit(1342, "lb"),
  27273. name: "Front",
  27274. image: {
  27275. source: "./media/characters/arokh-takakura/front.svg",
  27276. extra: 1089 / 1043,
  27277. bottom: 77.4 / 1176.7
  27278. }
  27279. },
  27280. back: {
  27281. height: math.unit(12 + 6 / 12, "feet"),
  27282. weight: math.unit(1342, "lb"),
  27283. name: "Back",
  27284. image: {
  27285. source: "./media/characters/arokh-takakura/back.svg",
  27286. extra: 1046 / 1019,
  27287. bottom: 102 / 1150
  27288. }
  27289. },
  27290. },
  27291. [
  27292. {
  27293. name: "Big",
  27294. height: math.unit(12 + 6 / 12, "feet"),
  27295. default: true
  27296. },
  27297. ]
  27298. ))
  27299. characterMakers.push(() => makeCharacter(
  27300. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27301. {
  27302. front: {
  27303. height: math.unit(5 + 6 / 12, "feet"),
  27304. weight: math.unit(150, "lb"),
  27305. name: "Front",
  27306. image: {
  27307. source: "./media/characters/theo/front.svg",
  27308. extra: 1184 / 1131,
  27309. bottom: 7.4 / 1191
  27310. }
  27311. },
  27312. },
  27313. [
  27314. {
  27315. name: "Micro",
  27316. height: math.unit(5, "inches")
  27317. },
  27318. {
  27319. name: "Normal",
  27320. height: math.unit(5 + 6 / 12, "feet"),
  27321. default: true
  27322. },
  27323. ]
  27324. ))
  27325. characterMakers.push(() => makeCharacter(
  27326. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27327. {
  27328. front: {
  27329. height: math.unit(5 + 9 / 12, "feet"),
  27330. weight: math.unit(130, "lb"),
  27331. name: "Front",
  27332. image: {
  27333. source: "./media/characters/cecelia-swift/front.svg",
  27334. extra: 502 / 484,
  27335. bottom: 23 / 523
  27336. }
  27337. },
  27338. back: {
  27339. height: math.unit(5 + 9 / 12, "feet"),
  27340. weight: math.unit(130, "lb"),
  27341. name: "Back",
  27342. image: {
  27343. source: "./media/characters/cecelia-swift/back.svg",
  27344. extra: 499 / 485,
  27345. bottom: 12 / 511
  27346. }
  27347. },
  27348. head: {
  27349. height: math.unit(0.90, "feet"),
  27350. name: "Head",
  27351. image: {
  27352. source: "./media/characters/cecelia-swift/head.svg"
  27353. }
  27354. },
  27355. rump: {
  27356. height: math.unit(1.75, "feet"),
  27357. name: "Rump",
  27358. image: {
  27359. source: "./media/characters/cecelia-swift/rump.svg"
  27360. }
  27361. },
  27362. },
  27363. [
  27364. {
  27365. name: "Normal",
  27366. height: math.unit(5 + 9 / 12, "feet"),
  27367. default: true
  27368. },
  27369. {
  27370. name: "Big",
  27371. height: math.unit(50, "feet")
  27372. },
  27373. {
  27374. name: "Macro",
  27375. height: math.unit(100, "feet")
  27376. },
  27377. {
  27378. name: "Macro+",
  27379. height: math.unit(500, "feet")
  27380. },
  27381. {
  27382. name: "Macro++",
  27383. height: math.unit(1000, "feet")
  27384. },
  27385. ]
  27386. ))
  27387. characterMakers.push(() => makeCharacter(
  27388. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27389. {
  27390. front: {
  27391. height: math.unit(6, "feet"),
  27392. weight: math.unit(150, "lb"),
  27393. name: "Front",
  27394. image: {
  27395. source: "./media/characters/kaunan/front.svg",
  27396. extra: 2890 / 2523,
  27397. bottom: 49 / 2939
  27398. }
  27399. },
  27400. },
  27401. [
  27402. {
  27403. name: "Macro",
  27404. height: math.unit(150, "feet"),
  27405. default: true
  27406. },
  27407. ]
  27408. ))
  27409. characterMakers.push(() => makeCharacter(
  27410. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27411. {
  27412. front: {
  27413. height: math.unit(175, "cm"),
  27414. weight: math.unit(60, "kg"),
  27415. name: "Front",
  27416. image: {
  27417. source: "./media/characters/fei/front.svg",
  27418. extra: 1873/1723,
  27419. bottom: 53/1926
  27420. }
  27421. },
  27422. },
  27423. [
  27424. {
  27425. name: "Mortal",
  27426. height: math.unit(175, "cm")
  27427. },
  27428. {
  27429. name: "Normal",
  27430. height: math.unit(3500, "m"),
  27431. default: true
  27432. },
  27433. {
  27434. name: "Stroll",
  27435. height: math.unit(17.5, "km")
  27436. },
  27437. {
  27438. name: "Showoff",
  27439. height: math.unit(175, "km")
  27440. },
  27441. ]
  27442. ))
  27443. characterMakers.push(() => makeCharacter(
  27444. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27445. {
  27446. front: {
  27447. height: math.unit(7, "feet"),
  27448. weight: math.unit(1000, "kg"),
  27449. name: "Front",
  27450. image: {
  27451. source: "./media/characters/edrax/front.svg",
  27452. extra: 2838 / 2550,
  27453. bottom: 130 / 2968
  27454. }
  27455. },
  27456. },
  27457. [
  27458. {
  27459. name: "Small",
  27460. height: math.unit(7, "feet")
  27461. },
  27462. {
  27463. name: "Normal",
  27464. height: math.unit(1500, "meters")
  27465. },
  27466. {
  27467. name: "Mega",
  27468. height: math.unit(12000000, "km"),
  27469. default: true
  27470. },
  27471. {
  27472. name: "Megamacro",
  27473. height: math.unit(10600000, "lightyears")
  27474. },
  27475. {
  27476. name: "Hypermacro",
  27477. height: math.unit(256, "yottameters")
  27478. },
  27479. ]
  27480. ))
  27481. characterMakers.push(() => makeCharacter(
  27482. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27483. {
  27484. front: {
  27485. height: math.unit(10, "feet"),
  27486. weight: math.unit(750, "lb"),
  27487. name: "Front",
  27488. image: {
  27489. source: "./media/characters/clove/front.svg",
  27490. extra: 2031 / 1860,
  27491. bottom: 47.8 / 2080
  27492. }
  27493. },
  27494. back: {
  27495. height: math.unit(10, "feet"),
  27496. weight: math.unit(750, "lb"),
  27497. name: "Back",
  27498. image: {
  27499. source: "./media/characters/clove/back.svg",
  27500. extra: 2025 / 1859,
  27501. bottom: 46 / 2071
  27502. }
  27503. },
  27504. },
  27505. [
  27506. {
  27507. name: "Normal",
  27508. height: math.unit(10, "feet"),
  27509. default: true
  27510. },
  27511. ]
  27512. ))
  27513. characterMakers.push(() => makeCharacter(
  27514. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27515. {
  27516. front: {
  27517. height: math.unit(4, "feet"),
  27518. weight: math.unit(50, "lb"),
  27519. name: "Front",
  27520. image: {
  27521. source: "./media/characters/alex-rabbit/front.svg",
  27522. extra: 507 / 458,
  27523. bottom: 18.5 / 527
  27524. }
  27525. },
  27526. back: {
  27527. height: math.unit(4, "feet"),
  27528. weight: math.unit(50, "lb"),
  27529. name: "Back",
  27530. image: {
  27531. source: "./media/characters/alex-rabbit/back.svg",
  27532. extra: 502 / 460,
  27533. bottom: 18.9 / 521
  27534. }
  27535. },
  27536. },
  27537. [
  27538. {
  27539. name: "Normal",
  27540. height: math.unit(4, "feet"),
  27541. default: true
  27542. },
  27543. ]
  27544. ))
  27545. characterMakers.push(() => makeCharacter(
  27546. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27547. {
  27548. front: {
  27549. height: math.unit(1 + 3 / 12, "feet"),
  27550. weight: math.unit(80, "lb"),
  27551. name: "Front",
  27552. image: {
  27553. source: "./media/characters/zander-rose/front.svg",
  27554. extra: 916 / 797,
  27555. bottom: 17 / 933
  27556. }
  27557. },
  27558. back: {
  27559. height: math.unit(1 + 3 / 12, "feet"),
  27560. weight: math.unit(80, "lb"),
  27561. name: "Back",
  27562. image: {
  27563. source: "./media/characters/zander-rose/back.svg",
  27564. extra: 903 / 779,
  27565. bottom: 31 / 934
  27566. }
  27567. },
  27568. },
  27569. [
  27570. {
  27571. name: "Normal",
  27572. height: math.unit(1 + 3 / 12, "feet"),
  27573. default: true
  27574. },
  27575. ]
  27576. ))
  27577. characterMakers.push(() => makeCharacter(
  27578. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27579. {
  27580. anthro: {
  27581. height: math.unit(6, "feet"),
  27582. weight: math.unit(150, "lb"),
  27583. name: "Anthro",
  27584. image: {
  27585. source: "./media/characters/razz/anthro.svg",
  27586. extra: 1437 / 1343,
  27587. bottom: 48 / 1485
  27588. }
  27589. },
  27590. feral: {
  27591. height: math.unit(6, "feet"),
  27592. weight: math.unit(150, "lb"),
  27593. name: "Feral",
  27594. image: {
  27595. source: "./media/characters/razz/feral.svg",
  27596. extra: 2569 / 1385,
  27597. bottom: 95 / 2664
  27598. }
  27599. },
  27600. },
  27601. [
  27602. {
  27603. name: "Normal",
  27604. height: math.unit(6, "feet"),
  27605. default: true
  27606. },
  27607. ]
  27608. ))
  27609. characterMakers.push(() => makeCharacter(
  27610. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27611. {
  27612. front: {
  27613. height: math.unit(9 + 4 / 12, "feet"),
  27614. weight: math.unit(500, "lb"),
  27615. name: "Front",
  27616. image: {
  27617. source: "./media/characters/morrigan/front.svg",
  27618. extra: 2707 / 2579,
  27619. bottom: 156 / 2863
  27620. }
  27621. },
  27622. },
  27623. [
  27624. {
  27625. name: "Normal",
  27626. height: math.unit(9 + 4 / 12, "feet"),
  27627. default: true
  27628. },
  27629. ]
  27630. ))
  27631. characterMakers.push(() => makeCharacter(
  27632. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27633. {
  27634. front: {
  27635. height: math.unit(5, "stories"),
  27636. weight: math.unit(4000, "lb"),
  27637. name: "Front",
  27638. image: {
  27639. source: "./media/characters/jenene/front.svg",
  27640. extra: 1780 / 1710,
  27641. bottom: 57 / 1837
  27642. }
  27643. },
  27644. },
  27645. [
  27646. {
  27647. name: "Normal",
  27648. height: math.unit(5, "stories"),
  27649. default: true
  27650. },
  27651. ]
  27652. ))
  27653. characterMakers.push(() => makeCharacter(
  27654. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27655. {
  27656. taurSfw: {
  27657. height: math.unit(10, "meters"),
  27658. weight: math.unit(17500, "kg"),
  27659. name: "Taur",
  27660. image: {
  27661. source: "./media/characters/faey/taur-sfw.svg",
  27662. extra: 1200 / 968,
  27663. bottom: 41 / 1241
  27664. }
  27665. },
  27666. chestmaw: {
  27667. height: math.unit(2.01, "meters"),
  27668. name: "Chestmaw",
  27669. image: {
  27670. source: "./media/characters/faey/chestmaw.svg"
  27671. }
  27672. },
  27673. foot: {
  27674. height: math.unit(2.43, "meters"),
  27675. name: "Foot",
  27676. image: {
  27677. source: "./media/characters/faey/foot.svg"
  27678. }
  27679. },
  27680. jaws: {
  27681. height: math.unit(1.66, "meters"),
  27682. name: "Jaws",
  27683. image: {
  27684. source: "./media/characters/faey/jaws.svg"
  27685. }
  27686. },
  27687. tongues: {
  27688. height: math.unit(2.01, "meters"),
  27689. name: "Tongues",
  27690. image: {
  27691. source: "./media/characters/faey/tongues.svg"
  27692. }
  27693. },
  27694. },
  27695. [
  27696. {
  27697. name: "Small",
  27698. height: math.unit(10, "meters"),
  27699. default: true
  27700. },
  27701. {
  27702. name: "Big",
  27703. height: math.unit(500000, "km")
  27704. },
  27705. ]
  27706. ))
  27707. characterMakers.push(() => makeCharacter(
  27708. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27709. {
  27710. front: {
  27711. height: math.unit(7, "feet"),
  27712. weight: math.unit(275, "lb"),
  27713. name: "Front",
  27714. image: {
  27715. source: "./media/characters/roku/front.svg",
  27716. extra: 903 / 878,
  27717. bottom: 37 / 940
  27718. }
  27719. },
  27720. },
  27721. [
  27722. {
  27723. name: "Normal",
  27724. height: math.unit(7, "feet"),
  27725. default: true
  27726. },
  27727. {
  27728. name: "Macro",
  27729. height: math.unit(500, "feet")
  27730. },
  27731. {
  27732. name: "Megamacro",
  27733. height: math.unit(200, "miles")
  27734. },
  27735. ]
  27736. ))
  27737. characterMakers.push(() => makeCharacter(
  27738. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27739. {
  27740. front: {
  27741. height: math.unit(6 + 2 / 12, "feet"),
  27742. weight: math.unit(150, "lb"),
  27743. name: "Front",
  27744. image: {
  27745. source: "./media/characters/lira/front.svg",
  27746. extra: 1727 / 1605,
  27747. bottom: 26 / 1753
  27748. }
  27749. },
  27750. back: {
  27751. height: math.unit(6 + 2 / 12, "feet"),
  27752. weight: math.unit(150, "lb"),
  27753. name: "Back",
  27754. image: {
  27755. source: "./media/characters/lira/back.svg",
  27756. extra: 1713/1621,
  27757. bottom: 20/1733
  27758. }
  27759. },
  27760. hand: {
  27761. height: math.unit(0.75, "feet"),
  27762. name: "Hand",
  27763. image: {
  27764. source: "./media/characters/lira/hand.svg"
  27765. }
  27766. },
  27767. maw: {
  27768. height: math.unit(0.65, "feet"),
  27769. name: "Maw",
  27770. image: {
  27771. source: "./media/characters/lira/maw.svg"
  27772. }
  27773. },
  27774. pawDigi: {
  27775. height: math.unit(1.6, "feet"),
  27776. name: "Paw Digi",
  27777. image: {
  27778. source: "./media/characters/lira/paw-digi.svg"
  27779. }
  27780. },
  27781. pawPlanti: {
  27782. height: math.unit(1.4, "feet"),
  27783. name: "Paw Planti",
  27784. image: {
  27785. source: "./media/characters/lira/paw-planti.svg"
  27786. }
  27787. },
  27788. },
  27789. [
  27790. {
  27791. name: "Normal",
  27792. height: math.unit(6 + 2 / 12, "feet"),
  27793. default: true
  27794. },
  27795. {
  27796. name: "Macro",
  27797. height: math.unit(100, "feet")
  27798. },
  27799. {
  27800. name: "Macro²",
  27801. height: math.unit(1600, "feet")
  27802. },
  27803. {
  27804. name: "Planetary",
  27805. height: math.unit(20, "earths")
  27806. },
  27807. ]
  27808. ))
  27809. characterMakers.push(() => makeCharacter(
  27810. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27811. {
  27812. front: {
  27813. height: math.unit(6, "feet"),
  27814. weight: math.unit(150, "lb"),
  27815. name: "Front",
  27816. image: {
  27817. source: "./media/characters/hadjet/front.svg",
  27818. extra: 1480 / 1346,
  27819. bottom: 26 / 1506
  27820. }
  27821. },
  27822. frontNsfw: {
  27823. height: math.unit(6, "feet"),
  27824. weight: math.unit(150, "lb"),
  27825. name: "Front (NSFW)",
  27826. image: {
  27827. source: "./media/characters/hadjet/front-nsfw.svg",
  27828. extra: 1440 / 1358,
  27829. bottom: 52 / 1492
  27830. }
  27831. },
  27832. },
  27833. [
  27834. {
  27835. name: "Macro",
  27836. height: math.unit(10, "stories"),
  27837. default: true
  27838. },
  27839. {
  27840. name: "Megamacro",
  27841. height: math.unit(1.5, "miles")
  27842. },
  27843. {
  27844. name: "Megamacro+",
  27845. height: math.unit(5, "miles")
  27846. },
  27847. ]
  27848. ))
  27849. characterMakers.push(() => makeCharacter(
  27850. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27851. {
  27852. side: {
  27853. height: math.unit(106, "feet"),
  27854. weight: math.unit(500, "tonnes"),
  27855. name: "Side",
  27856. image: {
  27857. source: "./media/characters/kodran/side.svg",
  27858. extra: 553 / 480,
  27859. bottom: 33 / 586
  27860. }
  27861. },
  27862. front: {
  27863. height: math.unit(132, "feet"),
  27864. weight: math.unit(500, "tonnes"),
  27865. name: "Front",
  27866. image: {
  27867. source: "./media/characters/kodran/front.svg",
  27868. extra: 667 / 643,
  27869. bottom: 42 / 709
  27870. }
  27871. },
  27872. flying: {
  27873. height: math.unit(350, "feet"),
  27874. weight: math.unit(500, "tonnes"),
  27875. name: "Flying",
  27876. image: {
  27877. source: "./media/characters/kodran/flying.svg"
  27878. }
  27879. },
  27880. foot: {
  27881. height: math.unit(33, "feet"),
  27882. name: "Foot",
  27883. image: {
  27884. source: "./media/characters/kodran/foot.svg"
  27885. }
  27886. },
  27887. footFront: {
  27888. height: math.unit(19, "feet"),
  27889. name: "Foot (Front)",
  27890. image: {
  27891. source: "./media/characters/kodran/foot-front.svg",
  27892. extra: 261 / 261,
  27893. bottom: 91 / 352
  27894. }
  27895. },
  27896. headFront: {
  27897. height: math.unit(53, "feet"),
  27898. name: "Head (Front)",
  27899. image: {
  27900. source: "./media/characters/kodran/head-front.svg"
  27901. }
  27902. },
  27903. headSide: {
  27904. height: math.unit(65, "feet"),
  27905. name: "Head (Side)",
  27906. image: {
  27907. source: "./media/characters/kodran/head-side.svg"
  27908. }
  27909. },
  27910. throat: {
  27911. height: math.unit(79, "feet"),
  27912. name: "Throat",
  27913. image: {
  27914. source: "./media/characters/kodran/throat.svg"
  27915. }
  27916. },
  27917. },
  27918. [
  27919. {
  27920. name: "Large",
  27921. height: math.unit(106, "feet"),
  27922. default: true
  27923. },
  27924. ]
  27925. ))
  27926. characterMakers.push(() => makeCharacter(
  27927. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27928. {
  27929. side: {
  27930. height: math.unit(11, "feet"),
  27931. weight: math.unit(150, "lb"),
  27932. name: "Side",
  27933. image: {
  27934. source: "./media/characters/pyxaron/side.svg",
  27935. extra: 305 / 195,
  27936. bottom: 17 / 322
  27937. }
  27938. },
  27939. },
  27940. [
  27941. {
  27942. name: "Normal",
  27943. height: math.unit(11, "feet"),
  27944. default: true
  27945. },
  27946. ]
  27947. ))
  27948. characterMakers.push(() => makeCharacter(
  27949. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27950. {
  27951. front: {
  27952. height: math.unit(6, "feet"),
  27953. weight: math.unit(150, "lb"),
  27954. name: "Front",
  27955. image: {
  27956. source: "./media/characters/meep/front.svg",
  27957. extra: 88 / 80,
  27958. bottom: 6 / 94
  27959. }
  27960. },
  27961. },
  27962. [
  27963. {
  27964. name: "Fun Sized",
  27965. height: math.unit(2, "inches"),
  27966. default: true
  27967. },
  27968. {
  27969. name: "Friend Sized",
  27970. height: math.unit(8, "inches")
  27971. },
  27972. ]
  27973. ))
  27974. characterMakers.push(() => makeCharacter(
  27975. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27976. {
  27977. front: {
  27978. height: math.unit(15, "feet"),
  27979. weight: math.unit(2500, "lb"),
  27980. name: "Front",
  27981. image: {
  27982. source: "./media/characters/holly-rabbit/front.svg",
  27983. extra: 1433 / 1233,
  27984. bottom: 125 / 1558
  27985. }
  27986. },
  27987. dick: {
  27988. height: math.unit(4.6, "feet"),
  27989. name: "Dick",
  27990. image: {
  27991. source: "./media/characters/holly-rabbit/dick.svg"
  27992. }
  27993. },
  27994. },
  27995. [
  27996. {
  27997. name: "Normal",
  27998. height: math.unit(15, "feet"),
  27999. default: true
  28000. },
  28001. {
  28002. name: "Macro",
  28003. height: math.unit(250, "feet")
  28004. },
  28005. {
  28006. name: "Macro+",
  28007. height: math.unit(2500, "feet")
  28008. },
  28009. ]
  28010. ))
  28011. characterMakers.push(() => makeCharacter(
  28012. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28013. {
  28014. front: {
  28015. height: math.unit(3.02, "meters"),
  28016. weight: math.unit(500, "kg"),
  28017. name: "Front",
  28018. image: {
  28019. source: "./media/characters/drena/front.svg",
  28020. extra: 282 / 243,
  28021. bottom: 8 / 290
  28022. }
  28023. },
  28024. side: {
  28025. height: math.unit(3.02, "meters"),
  28026. weight: math.unit(500, "kg"),
  28027. name: "Side",
  28028. image: {
  28029. source: "./media/characters/drena/side.svg",
  28030. extra: 280 / 245,
  28031. bottom: 10 / 290
  28032. }
  28033. },
  28034. back: {
  28035. height: math.unit(3.02, "meters"),
  28036. weight: math.unit(500, "kg"),
  28037. name: "Back",
  28038. image: {
  28039. source: "./media/characters/drena/back.svg",
  28040. extra: 278 / 243,
  28041. bottom: 2 / 280
  28042. }
  28043. },
  28044. foot: {
  28045. height: math.unit(0.75, "meters"),
  28046. name: "Foot",
  28047. image: {
  28048. source: "./media/characters/drena/foot.svg"
  28049. }
  28050. },
  28051. maw: {
  28052. height: math.unit(0.82, "meters"),
  28053. name: "Maw",
  28054. image: {
  28055. source: "./media/characters/drena/maw.svg"
  28056. }
  28057. },
  28058. rump: {
  28059. height: math.unit(0.93, "meters"),
  28060. name: "Rump",
  28061. image: {
  28062. source: "./media/characters/drena/rump.svg"
  28063. }
  28064. },
  28065. },
  28066. [
  28067. {
  28068. name: "Normal",
  28069. height: math.unit(3.02, "meters"),
  28070. default: true
  28071. },
  28072. ]
  28073. ))
  28074. characterMakers.push(() => makeCharacter(
  28075. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28076. {
  28077. front: {
  28078. height: math.unit(6 + 4 / 12, "feet"),
  28079. weight: math.unit(250, "lb"),
  28080. name: "Front",
  28081. image: {
  28082. source: "./media/characters/remmyzilla/front.svg",
  28083. extra: 4033 / 3588,
  28084. bottom: 123 / 4156
  28085. }
  28086. },
  28087. back: {
  28088. height: math.unit(6 + 4 / 12, "feet"),
  28089. weight: math.unit(250, "lb"),
  28090. name: "Back",
  28091. image: {
  28092. source: "./media/characters/remmyzilla/back.svg",
  28093. extra: 2687 / 2555,
  28094. bottom: 48 / 2735
  28095. }
  28096. },
  28097. paw: {
  28098. height: math.unit(1.73, "feet"),
  28099. name: "Paw",
  28100. image: {
  28101. source: "./media/characters/remmyzilla/paw.svg"
  28102. }
  28103. },
  28104. maw: {
  28105. height: math.unit(1.73, "feet"),
  28106. name: "Maw",
  28107. image: {
  28108. source: "./media/characters/remmyzilla/maw.svg"
  28109. }
  28110. },
  28111. },
  28112. [
  28113. {
  28114. name: "Normal",
  28115. height: math.unit(6 + 4 / 12, "feet")
  28116. },
  28117. {
  28118. name: "Minimacro",
  28119. height: math.unit(12 + 8 / 12, "feet")
  28120. },
  28121. {
  28122. name: "Normal",
  28123. height: math.unit(640, "feet"),
  28124. default: true
  28125. },
  28126. {
  28127. name: "Megamacro",
  28128. height: math.unit(6400, "feet")
  28129. },
  28130. {
  28131. name: "Gigamacro",
  28132. height: math.unit(64000, "miles")
  28133. },
  28134. ]
  28135. ))
  28136. characterMakers.push(() => makeCharacter(
  28137. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28138. {
  28139. front: {
  28140. height: math.unit(2.5, "meters"),
  28141. weight: math.unit(300, "lb"),
  28142. name: "Front",
  28143. image: {
  28144. source: "./media/characters/lawrence/front.svg",
  28145. extra: 357 / 335,
  28146. bottom: 30 / 387
  28147. }
  28148. },
  28149. back: {
  28150. height: math.unit(2.5, "meters"),
  28151. weight: math.unit(300, "lb"),
  28152. name: "Back",
  28153. image: {
  28154. source: "./media/characters/lawrence/back.svg",
  28155. extra: 357 / 338,
  28156. bottom: 16 / 373
  28157. }
  28158. },
  28159. head: {
  28160. height: math.unit(0.9, "meter"),
  28161. name: "Head",
  28162. image: {
  28163. source: "./media/characters/lawrence/head.svg"
  28164. }
  28165. },
  28166. maw: {
  28167. height: math.unit(0.7, "meter"),
  28168. name: "Maw",
  28169. image: {
  28170. source: "./media/characters/lawrence/maw.svg"
  28171. }
  28172. },
  28173. footBottom: {
  28174. height: math.unit(0.5, "meter"),
  28175. name: "Foot (Bottom)",
  28176. image: {
  28177. source: "./media/characters/lawrence/foot-bottom.svg"
  28178. }
  28179. },
  28180. footTop: {
  28181. height: math.unit(0.5, "meter"),
  28182. name: "Foot (Top)",
  28183. image: {
  28184. source: "./media/characters/lawrence/foot-top.svg"
  28185. }
  28186. },
  28187. },
  28188. [
  28189. {
  28190. name: "Normal",
  28191. height: math.unit(2.5, "meters"),
  28192. default: true
  28193. },
  28194. {
  28195. name: "Macro",
  28196. height: math.unit(95, "meters")
  28197. },
  28198. {
  28199. name: "Megamacro",
  28200. height: math.unit(150, "km")
  28201. },
  28202. ]
  28203. ))
  28204. characterMakers.push(() => makeCharacter(
  28205. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28206. {
  28207. front: {
  28208. height: math.unit(4.2, "meters"),
  28209. name: "Front",
  28210. image: {
  28211. source: "./media/characters/sydney/front.svg",
  28212. extra: 1323 / 1277,
  28213. bottom: 111 / 1434
  28214. }
  28215. },
  28216. },
  28217. [
  28218. {
  28219. name: "Normal",
  28220. height: math.unit(4.2, "meters"),
  28221. default: true
  28222. },
  28223. ]
  28224. ))
  28225. characterMakers.push(() => makeCharacter(
  28226. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28227. {
  28228. back: {
  28229. height: math.unit(201, "feet"),
  28230. name: "Back",
  28231. image: {
  28232. source: "./media/characters/jessica/back.svg",
  28233. extra: 273 / 259,
  28234. bottom: 7 / 280
  28235. }
  28236. },
  28237. },
  28238. [
  28239. {
  28240. name: "Normal",
  28241. height: math.unit(201, "feet"),
  28242. default: true
  28243. },
  28244. {
  28245. name: "Megamacro",
  28246. height: math.unit(8, "miles")
  28247. },
  28248. ]
  28249. ))
  28250. characterMakers.push(() => makeCharacter(
  28251. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28252. {
  28253. side: {
  28254. height: math.unit(320, "cm"),
  28255. name: "Side",
  28256. image: {
  28257. source: "./media/characters/victoria/side.svg",
  28258. extra: 778 / 346,
  28259. bottom: 56 / 834
  28260. }
  28261. },
  28262. maw: {
  28263. height: math.unit(5.9, "feet"),
  28264. name: "Maw",
  28265. image: {
  28266. source: "./media/characters/victoria/maw.svg"
  28267. }
  28268. },
  28269. },
  28270. [
  28271. {
  28272. name: "Normal",
  28273. height: math.unit(320, "cm"),
  28274. default: true
  28275. },
  28276. ]
  28277. ))
  28278. characterMakers.push(() => makeCharacter(
  28279. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28280. {
  28281. front: {
  28282. height: math.unit(5 + 6 / 12, "feet"),
  28283. name: "Front",
  28284. image: {
  28285. source: "./media/characters/cat/front.svg",
  28286. extra: 1374 / 1257,
  28287. bottom: 59 / 1433
  28288. }
  28289. },
  28290. back: {
  28291. height: math.unit(5 + 6 / 12, "feet"),
  28292. name: "Back",
  28293. image: {
  28294. source: "./media/characters/cat/back.svg",
  28295. extra: 1337 / 1226,
  28296. bottom: 34 / 1371
  28297. }
  28298. },
  28299. taur: {
  28300. height: math.unit(7, "feet"),
  28301. name: "Taur",
  28302. image: {
  28303. source: "./media/characters/cat/taur.svg",
  28304. extra: 1345 / 1231,
  28305. bottom: 66 / 1411
  28306. }
  28307. },
  28308. lucario: {
  28309. height: math.unit(4, "feet"),
  28310. name: "Lucario",
  28311. image: {
  28312. source: "./media/characters/cat/lucario.svg",
  28313. extra: 1470 / 1318,
  28314. bottom: 65 / 1535
  28315. }
  28316. },
  28317. megaLucario: {
  28318. height: math.unit(4, "feet"),
  28319. name: "Mega Lucario",
  28320. image: {
  28321. source: "./media/characters/cat/mega-lucario.svg",
  28322. extra: 1515 / 1319,
  28323. bottom: 63 / 1578
  28324. }
  28325. },
  28326. nickit: {
  28327. height: math.unit(2, "feet"),
  28328. name: "Nickit",
  28329. image: {
  28330. source: "./media/characters/cat/nickit.svg",
  28331. extra: 1980 / 1585,
  28332. bottom: 102 / 2082
  28333. }
  28334. },
  28335. lopunnyFront: {
  28336. height: math.unit(5, "feet"),
  28337. name: "Lopunny (Front)",
  28338. image: {
  28339. source: "./media/characters/cat/lopunny-front.svg",
  28340. extra: 1782 / 1469,
  28341. bottom: 38 / 1820
  28342. }
  28343. },
  28344. lopunnyBack: {
  28345. height: math.unit(5, "feet"),
  28346. name: "Lopunny (Back)",
  28347. image: {
  28348. source: "./media/characters/cat/lopunny-back.svg",
  28349. extra: 1660 / 1490,
  28350. bottom: 25 / 1685
  28351. }
  28352. },
  28353. },
  28354. [
  28355. {
  28356. name: "Really small",
  28357. height: math.unit(1, "nm")
  28358. },
  28359. {
  28360. name: "Micro",
  28361. height: math.unit(5, "inches")
  28362. },
  28363. {
  28364. name: "Normal",
  28365. height: math.unit(5 + 6 / 12, "feet"),
  28366. default: true
  28367. },
  28368. {
  28369. name: "Macro",
  28370. height: math.unit(50, "feet")
  28371. },
  28372. {
  28373. name: "Macro+",
  28374. height: math.unit(150, "feet")
  28375. },
  28376. {
  28377. name: "Megamacro",
  28378. height: math.unit(100, "miles")
  28379. },
  28380. ]
  28381. ))
  28382. characterMakers.push(() => makeCharacter(
  28383. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28384. {
  28385. front: {
  28386. height: math.unit(63.4, "meters"),
  28387. weight: math.unit(3.28349e+6, "kilograms"),
  28388. name: "Front",
  28389. image: {
  28390. source: "./media/characters/kirina-violet/front.svg",
  28391. extra: 2812 / 2725,
  28392. bottom: 0 / 2812
  28393. }
  28394. },
  28395. back: {
  28396. height: math.unit(63.4, "meters"),
  28397. weight: math.unit(3.28349e+6, "kilograms"),
  28398. name: "Back",
  28399. image: {
  28400. source: "./media/characters/kirina-violet/back.svg",
  28401. extra: 2812 / 2725,
  28402. bottom: 0 / 2812
  28403. }
  28404. },
  28405. mouth: {
  28406. height: math.unit(4.35, "meters"),
  28407. name: "Mouth",
  28408. image: {
  28409. source: "./media/characters/kirina-violet/mouth.svg"
  28410. }
  28411. },
  28412. paw: {
  28413. height: math.unit(5.6, "meters"),
  28414. name: "Paw",
  28415. image: {
  28416. source: "./media/characters/kirina-violet/paw.svg"
  28417. }
  28418. },
  28419. tail: {
  28420. height: math.unit(18, "meters"),
  28421. name: "Tail",
  28422. image: {
  28423. source: "./media/characters/kirina-violet/tail.svg"
  28424. }
  28425. },
  28426. },
  28427. [
  28428. {
  28429. name: "Macro",
  28430. height: math.unit(63.4, "meters"),
  28431. default: true
  28432. },
  28433. ]
  28434. ))
  28435. characterMakers.push(() => makeCharacter(
  28436. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28437. {
  28438. front: {
  28439. height: math.unit(75, "feet"),
  28440. name: "Front",
  28441. image: {
  28442. source: "./media/characters/cat-gigachu/front.svg",
  28443. extra: 1239/1027,
  28444. bottom: 32/1271
  28445. }
  28446. },
  28447. back: {
  28448. height: math.unit(75, "feet"),
  28449. name: "Back",
  28450. image: {
  28451. source: "./media/characters/cat-gigachu/back.svg",
  28452. extra: 1229/1030,
  28453. bottom: 9/1238
  28454. }
  28455. },
  28456. },
  28457. [
  28458. {
  28459. name: "Dynamax",
  28460. height: math.unit(75, "feet"),
  28461. default: true
  28462. },
  28463. ]
  28464. ))
  28465. characterMakers.push(() => makeCharacter(
  28466. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28467. {
  28468. front: {
  28469. height: math.unit(6, "feet"),
  28470. weight: math.unit(150, "lb"),
  28471. name: "Front",
  28472. image: {
  28473. source: "./media/characters/sfaiyan/front.svg",
  28474. extra: 999 / 978,
  28475. bottom: 5 / 1004
  28476. }
  28477. },
  28478. },
  28479. [
  28480. {
  28481. name: "Normal",
  28482. height: math.unit(1.82, "meters")
  28483. },
  28484. {
  28485. name: "Giant",
  28486. height: math.unit(2.27, "km"),
  28487. default: true
  28488. },
  28489. ]
  28490. ))
  28491. characterMakers.push(() => makeCharacter(
  28492. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28493. {
  28494. front: {
  28495. height: math.unit(179, "cm"),
  28496. weight: math.unit(100, "kg"),
  28497. name: "Front",
  28498. image: {
  28499. source: "./media/characters/raunehkeli/front.svg",
  28500. extra: 1934 / 1926,
  28501. bottom: 0 / 1934
  28502. }
  28503. },
  28504. },
  28505. [
  28506. {
  28507. name: "Normal",
  28508. height: math.unit(179, "cm")
  28509. },
  28510. {
  28511. name: "Maximum",
  28512. height: math.unit(575, "meters"),
  28513. default: true
  28514. },
  28515. ]
  28516. ))
  28517. characterMakers.push(() => makeCharacter(
  28518. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28519. {
  28520. front: {
  28521. height: math.unit(6, "feet"),
  28522. weight: math.unit(150, "lb"),
  28523. name: "Front",
  28524. image: {
  28525. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28526. extra: 2625 / 2518,
  28527. bottom: 60 / 2685
  28528. }
  28529. },
  28530. },
  28531. [
  28532. {
  28533. name: "Normal",
  28534. height: math.unit(6 + 2 / 12, "feet")
  28535. },
  28536. {
  28537. name: "Macro",
  28538. height: math.unit(1180, "feet"),
  28539. default: true
  28540. },
  28541. ]
  28542. ))
  28543. characterMakers.push(() => makeCharacter(
  28544. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28545. {
  28546. front: {
  28547. height: math.unit(5 + 6 / 12, "feet"),
  28548. weight: math.unit(108, "lb"),
  28549. name: "Front",
  28550. image: {
  28551. source: "./media/characters/lilith-zott/front.svg",
  28552. extra: 2510 / 2238,
  28553. bottom: 100 / 2610
  28554. }
  28555. },
  28556. frontDressed: {
  28557. height: math.unit(5 + 6 / 12, "feet"),
  28558. weight: math.unit(108, "lb"),
  28559. name: "Front (Dressed)",
  28560. image: {
  28561. source: "./media/characters/lilith-zott/front-dressed.svg",
  28562. extra: 2510 / 2238,
  28563. bottom: 100 / 2610
  28564. }
  28565. },
  28566. },
  28567. [
  28568. {
  28569. name: "Normal",
  28570. height: math.unit(5 + 6 / 12, "feet")
  28571. },
  28572. {
  28573. name: "Macro",
  28574. height: math.unit(1030, "feet"),
  28575. default: true
  28576. },
  28577. ]
  28578. ))
  28579. characterMakers.push(() => makeCharacter(
  28580. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28581. {
  28582. front: {
  28583. height: math.unit(6, "feet"),
  28584. weight: math.unit(150, "lb"),
  28585. name: "Front",
  28586. image: {
  28587. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28588. extra: 2567 / 2435,
  28589. bottom: 39 / 2606
  28590. }
  28591. },
  28592. frontSuper: {
  28593. height: math.unit(6, "feet"),
  28594. name: "Front (Super)",
  28595. image: {
  28596. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28597. extra: 2567 / 2435,
  28598. bottom: 39 / 2606
  28599. }
  28600. },
  28601. },
  28602. [
  28603. {
  28604. name: "Normal",
  28605. height: math.unit(5 + 10 / 12, "feet")
  28606. },
  28607. {
  28608. name: "Macro",
  28609. height: math.unit(1100, "feet"),
  28610. default: true
  28611. },
  28612. ]
  28613. ))
  28614. characterMakers.push(() => makeCharacter(
  28615. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28616. {
  28617. front: {
  28618. height: math.unit(100, "miles"),
  28619. name: "Front",
  28620. image: {
  28621. source: "./media/characters/sona/front.svg",
  28622. extra: 2433 / 2201,
  28623. bottom: 53 / 2486
  28624. }
  28625. },
  28626. foot: {
  28627. height: math.unit(16.1, "miles"),
  28628. name: "Foot",
  28629. image: {
  28630. source: "./media/characters/sona/foot.svg"
  28631. }
  28632. },
  28633. },
  28634. [
  28635. {
  28636. name: "Macro",
  28637. height: math.unit(100, "miles"),
  28638. default: true
  28639. },
  28640. ]
  28641. ))
  28642. characterMakers.push(() => makeCharacter(
  28643. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28644. {
  28645. front: {
  28646. height: math.unit(6, "feet"),
  28647. weight: math.unit(150, "lb"),
  28648. name: "Front",
  28649. image: {
  28650. source: "./media/characters/bailey/front.svg",
  28651. extra: 1778 / 1724,
  28652. bottom: 30 / 1808
  28653. }
  28654. },
  28655. },
  28656. [
  28657. {
  28658. name: "Micro",
  28659. height: math.unit(4, "inches")
  28660. },
  28661. {
  28662. name: "Normal",
  28663. height: math.unit(5 + 5 / 12, "feet"),
  28664. default: true
  28665. },
  28666. {
  28667. name: "Macro",
  28668. height: math.unit(250, "feet")
  28669. },
  28670. {
  28671. name: "Megamacro",
  28672. height: math.unit(100, "miles")
  28673. },
  28674. ]
  28675. ))
  28676. characterMakers.push(() => makeCharacter(
  28677. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28678. {
  28679. front: {
  28680. height: math.unit(5 + 2 / 12, "feet"),
  28681. weight: math.unit(120, "lb"),
  28682. name: "Front",
  28683. image: {
  28684. source: "./media/characters/snaps/front.svg",
  28685. extra: 2370 / 2177,
  28686. bottom: 48 / 2418
  28687. }
  28688. },
  28689. back: {
  28690. height: math.unit(5 + 2 / 12, "feet"),
  28691. weight: math.unit(120, "lb"),
  28692. name: "Back",
  28693. image: {
  28694. source: "./media/characters/snaps/back.svg",
  28695. extra: 2408 / 2258,
  28696. bottom: 15 / 2423
  28697. }
  28698. },
  28699. },
  28700. [
  28701. {
  28702. name: "Micro",
  28703. height: math.unit(9, "inches")
  28704. },
  28705. {
  28706. name: "Normal",
  28707. height: math.unit(5 + 2 / 12, "feet"),
  28708. default: true
  28709. },
  28710. {
  28711. name: "Mini Macro",
  28712. height: math.unit(10, "feet")
  28713. },
  28714. ]
  28715. ))
  28716. characterMakers.push(() => makeCharacter(
  28717. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28718. {
  28719. front: {
  28720. height: math.unit(1.8, "meters"),
  28721. weight: math.unit(85, "kg"),
  28722. name: "Front",
  28723. image: {
  28724. source: "./media/characters/azteck/front.svg",
  28725. extra: 2815 / 2625,
  28726. bottom: 89 / 2904
  28727. }
  28728. },
  28729. back: {
  28730. height: math.unit(1.8, "meters"),
  28731. weight: math.unit(85, "kg"),
  28732. name: "Back",
  28733. image: {
  28734. source: "./media/characters/azteck/back.svg",
  28735. extra: 2856 / 2648,
  28736. bottom: 85 / 2941
  28737. }
  28738. },
  28739. frontDressed: {
  28740. height: math.unit(1.8, "meters"),
  28741. weight: math.unit(85, "kg"),
  28742. name: "Front (Dressed)",
  28743. image: {
  28744. source: "./media/characters/azteck/front-dressed.svg",
  28745. extra: 2147 / 2003,
  28746. bottom: 68 / 2215
  28747. }
  28748. },
  28749. head: {
  28750. height: math.unit(0.47, "meters"),
  28751. weight: math.unit(85, "kg"),
  28752. name: "Head",
  28753. image: {
  28754. source: "./media/characters/azteck/head.svg"
  28755. }
  28756. },
  28757. },
  28758. [
  28759. {
  28760. name: "Bite sized",
  28761. height: math.unit(16, "cm")
  28762. },
  28763. {
  28764. name: "Normal",
  28765. height: math.unit(1.8, "meters"),
  28766. default: true
  28767. },
  28768. ]
  28769. ))
  28770. characterMakers.push(() => makeCharacter(
  28771. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28772. {
  28773. front: {
  28774. height: math.unit(6, "feet"),
  28775. weight: math.unit(150, "lb"),
  28776. name: "Front",
  28777. image: {
  28778. source: "./media/characters/pidge/front.svg",
  28779. extra: 620 / 588,
  28780. bottom: 9 / 629
  28781. }
  28782. },
  28783. back: {
  28784. height: math.unit(6, "feet"),
  28785. weight: math.unit(150, "lb"),
  28786. name: "Back",
  28787. image: {
  28788. source: "./media/characters/pidge/back.svg",
  28789. extra: 620 / 588,
  28790. bottom: 9 / 629
  28791. }
  28792. },
  28793. },
  28794. [
  28795. {
  28796. name: "Macro",
  28797. height: math.unit(1, "mile"),
  28798. default: true
  28799. },
  28800. ]
  28801. ))
  28802. characterMakers.push(() => makeCharacter(
  28803. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28804. {
  28805. front: {
  28806. height: math.unit(6, "feet"),
  28807. weight: math.unit(150, "lb"),
  28808. name: "Front",
  28809. image: {
  28810. source: "./media/characters/en/front.svg",
  28811. extra: 1697 / 1563,
  28812. bottom: 103 / 1800
  28813. }
  28814. },
  28815. back: {
  28816. height: math.unit(6, "feet"),
  28817. weight: math.unit(150, "lb"),
  28818. name: "Back",
  28819. image: {
  28820. source: "./media/characters/en/back.svg",
  28821. extra: 1700 / 1570,
  28822. bottom: 51 / 1751
  28823. }
  28824. },
  28825. frontDressed: {
  28826. height: math.unit(6, "feet"),
  28827. weight: math.unit(150, "lb"),
  28828. name: "Front (Dressed)",
  28829. image: {
  28830. source: "./media/characters/en/front-dressed.svg",
  28831. extra: 1697 / 1563,
  28832. bottom: 103 / 1800
  28833. }
  28834. },
  28835. backDressed: {
  28836. height: math.unit(6, "feet"),
  28837. weight: math.unit(150, "lb"),
  28838. name: "Back (Dressed)",
  28839. image: {
  28840. source: "./media/characters/en/back-dressed.svg",
  28841. extra: 1700 / 1570,
  28842. bottom: 51 / 1751
  28843. }
  28844. },
  28845. },
  28846. [
  28847. {
  28848. name: "Macro",
  28849. height: math.unit(210, "feet"),
  28850. default: true
  28851. },
  28852. ]
  28853. ))
  28854. characterMakers.push(() => makeCharacter(
  28855. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28856. {
  28857. front: {
  28858. height: math.unit(6, "feet"),
  28859. weight: math.unit(150, "lb"),
  28860. name: "Front",
  28861. image: {
  28862. source: "./media/characters/haze-orris/front.svg",
  28863. extra: 3975 / 3525,
  28864. bottom: 137 / 4112
  28865. }
  28866. },
  28867. },
  28868. [
  28869. {
  28870. name: "Micro",
  28871. height: math.unit(150, "mm"),
  28872. default: true
  28873. },
  28874. ]
  28875. ))
  28876. characterMakers.push(() => makeCharacter(
  28877. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28878. {
  28879. front: {
  28880. height: math.unit(6, "feet"),
  28881. weight: math.unit(150, "lb"),
  28882. name: "Front",
  28883. image: {
  28884. source: "./media/characters/casselene-yaro/front.svg",
  28885. extra: 4721 / 4541,
  28886. bottom: 82 / 4803
  28887. }
  28888. },
  28889. back: {
  28890. height: math.unit(6, "feet"),
  28891. weight: math.unit(150, "lb"),
  28892. name: "Back",
  28893. image: {
  28894. source: "./media/characters/casselene-yaro/back.svg",
  28895. extra: 4569 / 4377,
  28896. bottom: 69 / 4638
  28897. }
  28898. },
  28899. frontDressed: {
  28900. height: math.unit(6, "feet"),
  28901. weight: math.unit(150, "lb"),
  28902. name: "Front-dressed",
  28903. image: {
  28904. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28905. extra: 4721 / 4541,
  28906. bottom: 82 / 4803
  28907. }
  28908. },
  28909. },
  28910. [
  28911. {
  28912. name: "Macro",
  28913. height: math.unit(190, "feet"),
  28914. default: true
  28915. },
  28916. ]
  28917. ))
  28918. characterMakers.push(() => makeCharacter(
  28919. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28920. {
  28921. front: {
  28922. height: math.unit(6, "feet"),
  28923. weight: math.unit(150, "lb"),
  28924. name: "Front",
  28925. image: {
  28926. source: "./media/characters/myra-rue-delore/front.svg",
  28927. extra: 1340 / 1308,
  28928. bottom: 67 / 1407
  28929. }
  28930. },
  28931. back: {
  28932. height: math.unit(6, "feet"),
  28933. weight: math.unit(150, "lb"),
  28934. name: "Back",
  28935. image: {
  28936. source: "./media/characters/myra-rue-delore/back.svg",
  28937. extra: 1341 / 1310,
  28938. bottom: 40 / 1381
  28939. }
  28940. },
  28941. frontDressed: {
  28942. height: math.unit(6, "feet"),
  28943. weight: math.unit(150, "lb"),
  28944. name: "Front (Dressed)",
  28945. image: {
  28946. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28947. extra: 1340 / 1308,
  28948. bottom: 67 / 1407
  28949. }
  28950. },
  28951. },
  28952. [
  28953. {
  28954. name: "Macro",
  28955. height: math.unit(150, "feet"),
  28956. default: true
  28957. },
  28958. ]
  28959. ))
  28960. characterMakers.push(() => makeCharacter(
  28961. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28962. {
  28963. front: {
  28964. height: math.unit(10, "feet"),
  28965. weight: math.unit(15015, "lb"),
  28966. name: "Front",
  28967. image: {
  28968. source: "./media/characters/fem!plat/front.svg",
  28969. extra: 2799 / 2604,
  28970. bottom: 149 / 2948
  28971. }
  28972. },
  28973. },
  28974. [
  28975. {
  28976. name: "Normal",
  28977. height: math.unit(10, "feet"),
  28978. default: true
  28979. },
  28980. {
  28981. name: "Macro",
  28982. height: math.unit(100, "feet")
  28983. },
  28984. {
  28985. name: "Megamacro",
  28986. height: math.unit(1000, "feet")
  28987. },
  28988. ]
  28989. ))
  28990. characterMakers.push(() => makeCharacter(
  28991. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28992. {
  28993. front: {
  28994. height: math.unit(15 + 5 / 12, "feet"),
  28995. weight: math.unit(4600, "lb"),
  28996. name: "Front",
  28997. image: {
  28998. source: "./media/characters/neapolitan-ananassa/front.svg",
  28999. extra: 2903 / 2736,
  29000. bottom: 0 / 2903
  29001. }
  29002. },
  29003. side: {
  29004. height: math.unit(15 + 5 / 12, "feet"),
  29005. weight: math.unit(4600, "lb"),
  29006. name: "Side",
  29007. image: {
  29008. source: "./media/characters/neapolitan-ananassa/side.svg",
  29009. extra: 2925 / 2719,
  29010. bottom: 0 / 2925
  29011. }
  29012. },
  29013. back: {
  29014. height: math.unit(15 + 5 / 12, "feet"),
  29015. weight: math.unit(4600, "lb"),
  29016. name: "Back",
  29017. image: {
  29018. source: "./media/characters/neapolitan-ananassa/back.svg",
  29019. extra: 2903 / 2736,
  29020. bottom: 0 / 2903
  29021. }
  29022. },
  29023. },
  29024. [
  29025. {
  29026. name: "Normal",
  29027. height: math.unit(15 + 5 / 12, "feet"),
  29028. default: true
  29029. },
  29030. {
  29031. name: "Post-Millenium",
  29032. height: math.unit(35 + 5 / 12, "feet")
  29033. },
  29034. {
  29035. name: "Post-Era",
  29036. height: math.unit(450 + 5 / 12, "feet")
  29037. },
  29038. ]
  29039. ))
  29040. characterMakers.push(() => makeCharacter(
  29041. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29042. {
  29043. front: {
  29044. height: math.unit(300, "meters"),
  29045. weight: math.unit(125000, "tonnes"),
  29046. name: "Front",
  29047. image: {
  29048. source: "./media/characters/pazuzu/front.svg",
  29049. extra: 877 / 794,
  29050. bottom: 47 / 924
  29051. }
  29052. },
  29053. },
  29054. [
  29055. {
  29056. name: "Macro",
  29057. height: math.unit(300, "meters"),
  29058. default: true
  29059. },
  29060. ]
  29061. ))
  29062. characterMakers.push(() => makeCharacter(
  29063. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29064. {
  29065. side: {
  29066. height: math.unit(10 + 7 / 12, "feet"),
  29067. weight: math.unit(2.5, "tons"),
  29068. name: "Side",
  29069. image: {
  29070. source: "./media/characters/aasha/side.svg",
  29071. extra: 1345 / 1245,
  29072. bottom: 111 / 1456
  29073. }
  29074. },
  29075. back: {
  29076. height: math.unit(10 + 7 / 12, "feet"),
  29077. weight: math.unit(2.5, "tons"),
  29078. name: "Back",
  29079. image: {
  29080. source: "./media/characters/aasha/back.svg",
  29081. extra: 1133 / 1057,
  29082. bottom: 257 / 1390
  29083. }
  29084. },
  29085. },
  29086. [
  29087. {
  29088. name: "Normal",
  29089. height: math.unit(10 + 7 / 12, "feet"),
  29090. default: true
  29091. },
  29092. ]
  29093. ))
  29094. characterMakers.push(() => makeCharacter(
  29095. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29096. {
  29097. front: {
  29098. height: math.unit(6 + 3 / 12, "feet"),
  29099. name: "Front",
  29100. image: {
  29101. source: "./media/characters/nevan/front.svg",
  29102. extra: 704 / 704,
  29103. bottom: 28 / 732
  29104. }
  29105. },
  29106. back: {
  29107. height: math.unit(6 + 3 / 12, "feet"),
  29108. name: "Back",
  29109. image: {
  29110. source: "./media/characters/nevan/back.svg",
  29111. extra: 714 / 714,
  29112. bottom: 21 / 735
  29113. }
  29114. },
  29115. frontFlaccid: {
  29116. height: math.unit(6 + 3 / 12, "feet"),
  29117. name: "Front (Flaccid)",
  29118. image: {
  29119. source: "./media/characters/nevan/front-flaccid.svg",
  29120. extra: 704 / 704,
  29121. bottom: 28 / 732
  29122. }
  29123. },
  29124. frontErect: {
  29125. height: math.unit(6 + 3 / 12, "feet"),
  29126. name: "Front (Erect)",
  29127. image: {
  29128. source: "./media/characters/nevan/front-erect.svg",
  29129. extra: 704 / 704,
  29130. bottom: 28 / 732
  29131. }
  29132. },
  29133. backFlaccid: {
  29134. height: math.unit(6 + 3 / 12, "feet"),
  29135. name: "Back (Flaccid)",
  29136. image: {
  29137. source: "./media/characters/nevan/back-flaccid.svg",
  29138. extra: 714 / 714,
  29139. bottom: 21 / 735
  29140. }
  29141. },
  29142. },
  29143. [
  29144. {
  29145. name: "Normal",
  29146. height: math.unit(6 + 3 / 12, "feet"),
  29147. default: true
  29148. },
  29149. ]
  29150. ))
  29151. characterMakers.push(() => makeCharacter(
  29152. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29153. {
  29154. front: {
  29155. height: math.unit(4, "feet"),
  29156. name: "Front",
  29157. image: {
  29158. source: "./media/characters/arhan/front.svg",
  29159. extra: 3368 / 3133,
  29160. bottom: 0 / 3368
  29161. }
  29162. },
  29163. side: {
  29164. height: math.unit(4, "feet"),
  29165. name: "Side",
  29166. image: {
  29167. source: "./media/characters/arhan/side.svg",
  29168. extra: 3347 / 3105,
  29169. bottom: 0 / 3347
  29170. }
  29171. },
  29172. tongue: {
  29173. height: math.unit(1.42, "feet"),
  29174. name: "Tongue",
  29175. image: {
  29176. source: "./media/characters/arhan/tongue.svg"
  29177. }
  29178. },
  29179. head: {
  29180. height: math.unit(0.85, "feet"),
  29181. name: "Head",
  29182. image: {
  29183. source: "./media/characters/arhan/head.svg"
  29184. }
  29185. },
  29186. },
  29187. [
  29188. {
  29189. name: "Normal",
  29190. height: math.unit(4, "feet"),
  29191. default: true
  29192. },
  29193. ]
  29194. ))
  29195. characterMakers.push(() => makeCharacter(
  29196. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29197. {
  29198. front: {
  29199. height: math.unit(5 + 7.5 / 12, "feet"),
  29200. weight: math.unit(120, "lb"),
  29201. name: "Front",
  29202. image: {
  29203. source: "./media/characters/digi-duncan/front.svg",
  29204. extra: 330 / 326,
  29205. bottom: 16 / 346
  29206. }
  29207. },
  29208. side: {
  29209. height: math.unit(5 + 7.5 / 12, "feet"),
  29210. weight: math.unit(120, "lb"),
  29211. name: "Side",
  29212. image: {
  29213. source: "./media/characters/digi-duncan/side.svg",
  29214. extra: 341 / 337,
  29215. bottom: 1 / 342
  29216. }
  29217. },
  29218. back: {
  29219. height: math.unit(5 + 7.5 / 12, "feet"),
  29220. weight: math.unit(120, "lb"),
  29221. name: "Back",
  29222. image: {
  29223. source: "./media/characters/digi-duncan/back.svg",
  29224. extra: 330 / 326,
  29225. bottom: 12 / 342
  29226. }
  29227. },
  29228. },
  29229. [
  29230. {
  29231. name: "Speck",
  29232. height: math.unit(0.25, "mm")
  29233. },
  29234. {
  29235. name: "Micro",
  29236. height: math.unit(5, "mm")
  29237. },
  29238. {
  29239. name: "Tiny",
  29240. height: math.unit(0.5, "inches"),
  29241. default: true
  29242. },
  29243. {
  29244. name: "Human",
  29245. height: math.unit(5 + 7.5 / 12, "feet")
  29246. },
  29247. {
  29248. name: "Minigiant",
  29249. height: math.unit(8 + 5.25, "feet")
  29250. },
  29251. {
  29252. name: "Giant",
  29253. height: math.unit(2000, "feet")
  29254. },
  29255. {
  29256. name: "Mega",
  29257. height: math.unit(371.1, "miles")
  29258. },
  29259. ]
  29260. ))
  29261. characterMakers.push(() => makeCharacter(
  29262. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29263. {
  29264. front: {
  29265. height: math.unit(2, "meters"),
  29266. weight: math.unit(350, "kg"),
  29267. name: "Front",
  29268. image: {
  29269. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29270. extra: 898 / 838,
  29271. bottom: 9 / 907
  29272. }
  29273. },
  29274. },
  29275. [
  29276. {
  29277. name: "Micro",
  29278. height: math.unit(8, "meters")
  29279. },
  29280. {
  29281. name: "Normal",
  29282. height: math.unit(50, "meters"),
  29283. default: true
  29284. },
  29285. {
  29286. name: "Macro",
  29287. height: math.unit(500, "meters")
  29288. },
  29289. ]
  29290. ))
  29291. characterMakers.push(() => makeCharacter(
  29292. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29293. {
  29294. front: {
  29295. height: math.unit(6 + 6 / 12, "feet"),
  29296. name: "Front",
  29297. image: {
  29298. source: "./media/characters/khardesh/front.svg",
  29299. extra: 888 / 797,
  29300. bottom: 25 / 913
  29301. }
  29302. },
  29303. },
  29304. [
  29305. {
  29306. name: "Normal",
  29307. height: math.unit(6 + 6 / 12, "feet"),
  29308. default: true
  29309. },
  29310. {
  29311. name: "Normal+",
  29312. height: math.unit(4, "meters")
  29313. },
  29314. {
  29315. name: "Macro",
  29316. height: math.unit(50, "meters")
  29317. },
  29318. {
  29319. name: "Macro+",
  29320. height: math.unit(100, "meters")
  29321. },
  29322. {
  29323. name: "Megamacro",
  29324. height: math.unit(20, "km")
  29325. },
  29326. ]
  29327. ))
  29328. characterMakers.push(() => makeCharacter(
  29329. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29330. {
  29331. front: {
  29332. height: math.unit(6, "feet"),
  29333. weight: math.unit(150, "lb"),
  29334. name: "Front",
  29335. image: {
  29336. source: "./media/characters/kosho/front.svg",
  29337. extra: 1847 / 1847,
  29338. bottom: 86 / 1933
  29339. }
  29340. },
  29341. },
  29342. [
  29343. {
  29344. name: "Second-stage micro",
  29345. height: math.unit(0.5, "inches")
  29346. },
  29347. {
  29348. name: "First-stage micro",
  29349. height: math.unit(6, "inches")
  29350. },
  29351. {
  29352. name: "Normal",
  29353. height: math.unit(6, "feet"),
  29354. default: true
  29355. },
  29356. {
  29357. name: "First-stage macro",
  29358. height: math.unit(72, "feet")
  29359. },
  29360. {
  29361. name: "Second-stage macro",
  29362. height: math.unit(864, "feet")
  29363. },
  29364. ]
  29365. ))
  29366. characterMakers.push(() => makeCharacter(
  29367. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29368. {
  29369. normal: {
  29370. height: math.unit(4 + 6 / 12, "feet"),
  29371. name: "Normal",
  29372. image: {
  29373. source: "./media/characters/hydra/normal.svg",
  29374. extra: 2833 / 2634,
  29375. bottom: 68 / 2901
  29376. }
  29377. },
  29378. smol: {
  29379. height: math.unit(0.705, "inches"),
  29380. name: "Smol",
  29381. image: {
  29382. source: "./media/characters/hydra/smol.svg",
  29383. extra: 2715 / 2540,
  29384. bottom: 0 / 2715
  29385. }
  29386. },
  29387. },
  29388. [
  29389. {
  29390. name: "Normal",
  29391. height: math.unit(4 + 6 / 12, "feet"),
  29392. default: true
  29393. }
  29394. ]
  29395. ))
  29396. characterMakers.push(() => makeCharacter(
  29397. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29398. {
  29399. front: {
  29400. height: math.unit(0.6, "cm"),
  29401. name: "Front",
  29402. image: {
  29403. source: "./media/characters/daz/front.svg",
  29404. extra: 1682 / 1164,
  29405. bottom: 42 / 1724
  29406. }
  29407. },
  29408. },
  29409. [
  29410. {
  29411. name: "Normal",
  29412. height: math.unit(0.6, "cm"),
  29413. default: true
  29414. },
  29415. ]
  29416. ))
  29417. characterMakers.push(() => makeCharacter(
  29418. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29419. {
  29420. front: {
  29421. height: math.unit(6, "feet"),
  29422. weight: math.unit(235, "lb"),
  29423. name: "Front",
  29424. image: {
  29425. source: "./media/characters/theo-pangolin/front.svg",
  29426. extra: 1996 / 1969,
  29427. bottom: 115 / 2111
  29428. }
  29429. },
  29430. back: {
  29431. height: math.unit(6, "feet"),
  29432. weight: math.unit(235, "lb"),
  29433. name: "Back",
  29434. image: {
  29435. source: "./media/characters/theo-pangolin/back.svg",
  29436. extra: 1979 / 1979,
  29437. bottom: 40 / 2019
  29438. }
  29439. },
  29440. feral: {
  29441. height: math.unit(2, "feet"),
  29442. weight: math.unit(30, "lb"),
  29443. name: "Feral",
  29444. image: {
  29445. source: "./media/characters/theo-pangolin/feral.svg",
  29446. extra: 803 / 791,
  29447. bottom: 181 / 984
  29448. }
  29449. },
  29450. footFive: {
  29451. height: math.unit(1.43, "feet"),
  29452. name: "Foot (Five Toes)",
  29453. image: {
  29454. source: "./media/characters/theo-pangolin/foot-five.svg"
  29455. }
  29456. },
  29457. footFour: {
  29458. height: math.unit(1.43, "feet"),
  29459. name: "Foot (Four Toes)",
  29460. image: {
  29461. source: "./media/characters/theo-pangolin/foot-four.svg"
  29462. }
  29463. },
  29464. handFour: {
  29465. height: math.unit(0.81, "feet"),
  29466. name: "Hand (Four Fingers)",
  29467. image: {
  29468. source: "./media/characters/theo-pangolin/hand-four.svg"
  29469. }
  29470. },
  29471. handThree: {
  29472. height: math.unit(0.81, "feet"),
  29473. name: "Hand (Three Fingers)",
  29474. image: {
  29475. source: "./media/characters/theo-pangolin/hand-three.svg"
  29476. }
  29477. },
  29478. headFront: {
  29479. height: math.unit(1.37, "feet"),
  29480. name: "Head (Front)",
  29481. image: {
  29482. source: "./media/characters/theo-pangolin/head-front.svg"
  29483. }
  29484. },
  29485. headSide: {
  29486. height: math.unit(1.43, "feet"),
  29487. name: "Head (Side)",
  29488. image: {
  29489. source: "./media/characters/theo-pangolin/head-side.svg"
  29490. }
  29491. },
  29492. tongue: {
  29493. height: math.unit(2.29, "feet"),
  29494. name: "Tongue",
  29495. image: {
  29496. source: "./media/characters/theo-pangolin/tongue.svg"
  29497. }
  29498. },
  29499. },
  29500. [
  29501. {
  29502. name: "Normal",
  29503. height: math.unit(6, "feet")
  29504. },
  29505. {
  29506. name: "Macro",
  29507. height: math.unit(400, "feet"),
  29508. default: true
  29509. },
  29510. ]
  29511. ))
  29512. characterMakers.push(() => makeCharacter(
  29513. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29514. {
  29515. front: {
  29516. height: math.unit(6, "inches"),
  29517. weight: math.unit(0.036, "kg"),
  29518. name: "Front",
  29519. image: {
  29520. source: "./media/characters/renée/front.svg",
  29521. extra: 900 / 886,
  29522. bottom: 8 / 908
  29523. }
  29524. },
  29525. },
  29526. [
  29527. {
  29528. name: "Nano",
  29529. height: math.unit(1, "nm")
  29530. },
  29531. {
  29532. name: "Micro",
  29533. height: math.unit(1, "mm")
  29534. },
  29535. {
  29536. name: "Normal",
  29537. height: math.unit(6, "inches")
  29538. },
  29539. {
  29540. name: "Macro",
  29541. height: math.unit(2000, "feet"),
  29542. default: true
  29543. },
  29544. {
  29545. name: "Megamacro",
  29546. height: math.unit(2, "km")
  29547. },
  29548. {
  29549. name: "Gigamacro",
  29550. height: math.unit(2000, "km")
  29551. },
  29552. {
  29553. name: "Teramacro",
  29554. height: math.unit(250000, "km")
  29555. },
  29556. ]
  29557. ))
  29558. characterMakers.push(() => makeCharacter(
  29559. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29560. {
  29561. front: {
  29562. height: math.unit(4, "meters"),
  29563. weight: math.unit(150, "kg"),
  29564. name: "Front",
  29565. image: {
  29566. source: "./media/characters/caledvwlch/front.svg",
  29567. extra: 1760 / 1551,
  29568. bottom: 28 / 1788
  29569. }
  29570. },
  29571. side: {
  29572. height: math.unit(4, "meters"),
  29573. weight: math.unit(150, "kg"),
  29574. name: "Side",
  29575. image: {
  29576. source: "./media/characters/caledvwlch/side.svg",
  29577. extra: 1605 / 1536,
  29578. bottom: 31 / 1636
  29579. }
  29580. },
  29581. back: {
  29582. height: math.unit(4, "meters"),
  29583. weight: math.unit(150, "kg"),
  29584. name: "Back",
  29585. image: {
  29586. source: "./media/characters/caledvwlch/back.svg",
  29587. extra: 1635 / 1565,
  29588. bottom: 27 / 1662
  29589. }
  29590. },
  29591. },
  29592. [
  29593. {
  29594. name: "\"Incognito\"",
  29595. height: math.unit(4, "meters")
  29596. },
  29597. {
  29598. name: "Small rampage",
  29599. height: math.unit(600, "meters")
  29600. },
  29601. {
  29602. name: "Mega",
  29603. height: math.unit(30, "km")
  29604. },
  29605. {
  29606. name: "Home-size",
  29607. height: math.unit(50, "km"),
  29608. default: true
  29609. },
  29610. {
  29611. name: "Giga",
  29612. height: math.unit(300, "km")
  29613. },
  29614. {
  29615. name: "Lounging",
  29616. height: math.unit(11000, "km")
  29617. },
  29618. {
  29619. name: "Planet snacking",
  29620. height: math.unit(2000000, "km")
  29621. },
  29622. ]
  29623. ))
  29624. characterMakers.push(() => makeCharacter(
  29625. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29626. {
  29627. front: {
  29628. height: math.unit(6, "feet"),
  29629. weight: math.unit(215, "lb"),
  29630. name: "Front",
  29631. image: {
  29632. source: "./media/characters/sapphire-svell/front.svg",
  29633. extra: 495 / 455,
  29634. bottom: 20 / 515
  29635. }
  29636. },
  29637. back: {
  29638. height: math.unit(6, "feet"),
  29639. weight: math.unit(216, "lb"),
  29640. name: "Back",
  29641. image: {
  29642. source: "./media/characters/sapphire-svell/back.svg",
  29643. extra: 497 / 477,
  29644. bottom: 7 / 504
  29645. }
  29646. },
  29647. maw: {
  29648. height: math.unit(1.57, "feet"),
  29649. name: "Maw",
  29650. image: {
  29651. source: "./media/characters/sapphire-svell/maw.svg"
  29652. }
  29653. },
  29654. foot: {
  29655. height: math.unit(1.07, "feet"),
  29656. name: "Foot",
  29657. image: {
  29658. source: "./media/characters/sapphire-svell/foot.svg"
  29659. }
  29660. },
  29661. toering: {
  29662. height: math.unit(1.7, "inch"),
  29663. name: "Toering",
  29664. image: {
  29665. source: "./media/characters/sapphire-svell/toering.svg"
  29666. }
  29667. },
  29668. },
  29669. [
  29670. {
  29671. name: "Normal",
  29672. height: math.unit(300, "feet"),
  29673. default: true
  29674. },
  29675. {
  29676. name: "Augmented",
  29677. height: math.unit(1250, "feet")
  29678. },
  29679. {
  29680. name: "Unleashed",
  29681. height: math.unit(3000, "feet")
  29682. },
  29683. ]
  29684. ))
  29685. characterMakers.push(() => makeCharacter(
  29686. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29687. {
  29688. side: {
  29689. height: math.unit(2 + 3 / 12, "feet"),
  29690. weight: math.unit(110, "lb"),
  29691. name: "Side",
  29692. image: {
  29693. source: "./media/characters/glitch-flux/side.svg",
  29694. extra: 997 / 805,
  29695. bottom: 20 / 1017
  29696. }
  29697. },
  29698. },
  29699. [
  29700. {
  29701. name: "Normal",
  29702. height: math.unit(2 + 3 / 12, "feet"),
  29703. default: true
  29704. },
  29705. ]
  29706. ))
  29707. characterMakers.push(() => makeCharacter(
  29708. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29709. {
  29710. front: {
  29711. height: math.unit(4, "meters"),
  29712. name: "Front",
  29713. image: {
  29714. source: "./media/characters/mid/front.svg",
  29715. extra: 507 / 476,
  29716. bottom: 17 / 524
  29717. }
  29718. },
  29719. back: {
  29720. height: math.unit(4, "meters"),
  29721. name: "Back",
  29722. image: {
  29723. source: "./media/characters/mid/back.svg",
  29724. extra: 519 / 487,
  29725. bottom: 7 / 526
  29726. }
  29727. },
  29728. stuck: {
  29729. height: math.unit(2.2, "meters"),
  29730. name: "Stuck",
  29731. image: {
  29732. source: "./media/characters/mid/stuck.svg",
  29733. extra: 1951 / 1869,
  29734. bottom: 88 / 2039
  29735. }
  29736. }
  29737. },
  29738. [
  29739. {
  29740. name: "Normal",
  29741. height: math.unit(4, "meters"),
  29742. default: true
  29743. },
  29744. {
  29745. name: "Big",
  29746. height: math.unit(10, "meters")
  29747. },
  29748. {
  29749. name: "Macro",
  29750. height: math.unit(800, "meters")
  29751. },
  29752. {
  29753. name: "Megamacro",
  29754. height: math.unit(100, "km")
  29755. },
  29756. {
  29757. name: "Overgrown",
  29758. height: math.unit(1, "parsec")
  29759. },
  29760. ]
  29761. ))
  29762. characterMakers.push(() => makeCharacter(
  29763. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29764. {
  29765. front: {
  29766. height: math.unit(2.5, "meters"),
  29767. weight: math.unit(225, "kg"),
  29768. name: "Front",
  29769. image: {
  29770. source: "./media/characters/iris/front.svg",
  29771. extra: 3348 / 3251,
  29772. bottom: 205 / 3553
  29773. }
  29774. },
  29775. maw: {
  29776. height: math.unit(0.56, "meter"),
  29777. name: "Maw",
  29778. image: {
  29779. source: "./media/characters/iris/maw.svg"
  29780. }
  29781. },
  29782. },
  29783. [
  29784. {
  29785. name: "Mewter cat",
  29786. height: math.unit(1.2, "meters")
  29787. },
  29788. {
  29789. name: "Minimacro",
  29790. height: math.unit(2.5, "meters"),
  29791. default: true
  29792. },
  29793. {
  29794. name: "Macro",
  29795. height: math.unit(180, "meters")
  29796. },
  29797. {
  29798. name: "Megamacro",
  29799. height: math.unit(2746, "meters")
  29800. },
  29801. ]
  29802. ))
  29803. characterMakers.push(() => makeCharacter(
  29804. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29805. {
  29806. front: {
  29807. height: math.unit(6, "feet"),
  29808. weight: math.unit(135, "lb"),
  29809. name: "Front",
  29810. image: {
  29811. source: "./media/characters/axel/front.svg",
  29812. extra: 908 / 908,
  29813. bottom: 58 / 966
  29814. }
  29815. },
  29816. side: {
  29817. height: math.unit(6, "feet"),
  29818. weight: math.unit(135, "lb"),
  29819. name: "Side",
  29820. image: {
  29821. source: "./media/characters/axel/side.svg",
  29822. extra: 958 / 958,
  29823. bottom: 11 / 969
  29824. }
  29825. },
  29826. back: {
  29827. height: math.unit(6, "feet"),
  29828. weight: math.unit(135, "lb"),
  29829. name: "Back",
  29830. image: {
  29831. source: "./media/characters/axel/back.svg",
  29832. extra: 887 / 887,
  29833. bottom: 34 / 921
  29834. }
  29835. },
  29836. head: {
  29837. height: math.unit(1.07, "feet"),
  29838. name: "Head",
  29839. image: {
  29840. source: "./media/characters/axel/head.svg"
  29841. }
  29842. },
  29843. beak: {
  29844. height: math.unit(1.4, "feet"),
  29845. name: "Beak",
  29846. image: {
  29847. source: "./media/characters/axel/beak.svg"
  29848. }
  29849. },
  29850. beakSide: {
  29851. height: math.unit(1.4, "feet"),
  29852. name: "Beak Side",
  29853. image: {
  29854. source: "./media/characters/axel/beak-side.svg"
  29855. }
  29856. },
  29857. sheath: {
  29858. height: math.unit(0.5, "feet"),
  29859. name: "Sheath",
  29860. image: {
  29861. source: "./media/characters/axel/sheath.svg"
  29862. }
  29863. },
  29864. dick: {
  29865. height: math.unit(0.98, "feet"),
  29866. name: "Dick",
  29867. image: {
  29868. source: "./media/characters/axel/dick.svg"
  29869. }
  29870. },
  29871. },
  29872. [
  29873. {
  29874. name: "Macro",
  29875. height: math.unit(68, "meters"),
  29876. default: true
  29877. },
  29878. ]
  29879. ))
  29880. characterMakers.push(() => makeCharacter(
  29881. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29882. {
  29883. front: {
  29884. height: math.unit(3.5, "meters"),
  29885. weight: math.unit(1200, "kg"),
  29886. name: "Front",
  29887. image: {
  29888. source: "./media/characters/joanna/front.svg",
  29889. extra: 1596 / 1488,
  29890. bottom: 29 / 1625
  29891. }
  29892. },
  29893. back: {
  29894. height: math.unit(3.5, "meters"),
  29895. weight: math.unit(1200, "kg"),
  29896. name: "Back",
  29897. image: {
  29898. source: "./media/characters/joanna/back.svg",
  29899. extra: 1594 / 1495,
  29900. bottom: 26 / 1620
  29901. }
  29902. },
  29903. frontShorts: {
  29904. height: math.unit(3.5, "meters"),
  29905. weight: math.unit(1200, "kg"),
  29906. name: "Front (Shorts)",
  29907. image: {
  29908. source: "./media/characters/joanna/front-shorts.svg",
  29909. extra: 1596 / 1488,
  29910. bottom: 29 / 1625
  29911. }
  29912. },
  29913. frontBiker: {
  29914. height: math.unit(3.5, "meters"),
  29915. weight: math.unit(1200, "kg"),
  29916. name: "Front (Biker)",
  29917. image: {
  29918. source: "./media/characters/joanna/front-biker.svg",
  29919. extra: 1596 / 1488,
  29920. bottom: 29 / 1625
  29921. }
  29922. },
  29923. backBiker: {
  29924. height: math.unit(3.5, "meters"),
  29925. weight: math.unit(1200, "kg"),
  29926. name: "Back (Biker)",
  29927. image: {
  29928. source: "./media/characters/joanna/back-biker.svg",
  29929. extra: 1594 / 1495,
  29930. bottom: 88 / 1682
  29931. }
  29932. },
  29933. bikeLeft: {
  29934. height: math.unit(2.4, "meters"),
  29935. weight: math.unit(1600, "kg"),
  29936. name: "Bike (Left)",
  29937. image: {
  29938. source: "./media/characters/joanna/bike-left.svg",
  29939. extra: 720 / 720,
  29940. bottom: 8 / 728
  29941. }
  29942. },
  29943. bikeRight: {
  29944. height: math.unit(2.4, "meters"),
  29945. weight: math.unit(1600, "kg"),
  29946. name: "Bike (Right)",
  29947. image: {
  29948. source: "./media/characters/joanna/bike-right.svg",
  29949. extra: 720 / 720,
  29950. bottom: 8 / 728
  29951. }
  29952. },
  29953. },
  29954. [
  29955. {
  29956. name: "Incognito",
  29957. height: math.unit(3.5, "meters")
  29958. },
  29959. {
  29960. name: "Casual Big",
  29961. height: math.unit(200, "meters")
  29962. },
  29963. {
  29964. name: "Macro",
  29965. height: math.unit(600, "meters")
  29966. },
  29967. {
  29968. name: "Original",
  29969. height: math.unit(20, "km"),
  29970. default: true
  29971. },
  29972. {
  29973. name: "Giga",
  29974. height: math.unit(400, "km")
  29975. },
  29976. {
  29977. name: "Lounging",
  29978. height: math.unit(1500, "km")
  29979. },
  29980. {
  29981. name: "Planetary",
  29982. height: math.unit(200000, "km")
  29983. },
  29984. ]
  29985. ))
  29986. characterMakers.push(() => makeCharacter(
  29987. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29988. {
  29989. front: {
  29990. height: math.unit(6, "feet"),
  29991. weight: math.unit(150, "lb"),
  29992. name: "Front",
  29993. image: {
  29994. source: "./media/characters/hugo-sigil/front.svg",
  29995. extra: 522 / 500,
  29996. bottom: 2 / 524
  29997. }
  29998. },
  29999. back: {
  30000. height: math.unit(6, "feet"),
  30001. weight: math.unit(150, "lb"),
  30002. name: "Back",
  30003. image: {
  30004. source: "./media/characters/hugo-sigil/back.svg",
  30005. extra: 519 / 495,
  30006. bottom: 5 / 524
  30007. }
  30008. },
  30009. maw: {
  30010. height: math.unit(1.4, "feet"),
  30011. weight: math.unit(150, "lb"),
  30012. name: "Maw",
  30013. image: {
  30014. source: "./media/characters/hugo-sigil/maw.svg"
  30015. }
  30016. },
  30017. feet: {
  30018. height: math.unit(1.56, "feet"),
  30019. weight: math.unit(150, "lb"),
  30020. name: "Feet",
  30021. image: {
  30022. source: "./media/characters/hugo-sigil/feet.svg",
  30023. extra: 177 / 177,
  30024. bottom: 12 / 189
  30025. }
  30026. },
  30027. },
  30028. [
  30029. {
  30030. name: "Normal",
  30031. height: math.unit(6, "feet")
  30032. },
  30033. {
  30034. name: "Macro",
  30035. height: math.unit(200, "feet"),
  30036. default: true
  30037. },
  30038. ]
  30039. ))
  30040. characterMakers.push(() => makeCharacter(
  30041. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30042. {
  30043. front: {
  30044. height: math.unit(6, "feet"),
  30045. weight: math.unit(150, "lb"),
  30046. name: "Front",
  30047. image: {
  30048. source: "./media/characters/peri/front.svg",
  30049. extra: 2354 / 2233,
  30050. bottom: 49 / 2403
  30051. }
  30052. },
  30053. },
  30054. [
  30055. {
  30056. name: "Really Small",
  30057. height: math.unit(1, "nm")
  30058. },
  30059. {
  30060. name: "Micro",
  30061. height: math.unit(4, "inches")
  30062. },
  30063. {
  30064. name: "Normal",
  30065. height: math.unit(7, "inches"),
  30066. default: true
  30067. },
  30068. {
  30069. name: "Macro",
  30070. height: math.unit(400, "feet")
  30071. },
  30072. {
  30073. name: "Megamacro",
  30074. height: math.unit(100, "miles")
  30075. },
  30076. ]
  30077. ))
  30078. characterMakers.push(() => makeCharacter(
  30079. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30080. {
  30081. frontSlim: {
  30082. height: math.unit(7, "feet"),
  30083. name: "Front (Slim)",
  30084. image: {
  30085. source: "./media/characters/issilora/front-slim.svg",
  30086. extra: 529 / 449,
  30087. bottom: 53 / 582
  30088. }
  30089. },
  30090. sideSlim: {
  30091. height: math.unit(7, "feet"),
  30092. name: "Side (Slim)",
  30093. image: {
  30094. source: "./media/characters/issilora/side-slim.svg",
  30095. extra: 570 / 480,
  30096. bottom: 30 / 600
  30097. }
  30098. },
  30099. backSlim: {
  30100. height: math.unit(7, "feet"),
  30101. name: "Back (Slim)",
  30102. image: {
  30103. source: "./media/characters/issilora/back-slim.svg",
  30104. extra: 537 / 455,
  30105. bottom: 46 / 583
  30106. }
  30107. },
  30108. frontBuff: {
  30109. height: math.unit(7, "feet"),
  30110. name: "Front (Buff)",
  30111. image: {
  30112. source: "./media/characters/issilora/front-buff.svg",
  30113. extra: 2310 / 2035,
  30114. bottom: 335 / 2645
  30115. }
  30116. },
  30117. head: {
  30118. height: math.unit(1.94, "feet"),
  30119. name: "Head",
  30120. image: {
  30121. source: "./media/characters/issilora/head.svg"
  30122. }
  30123. },
  30124. },
  30125. [
  30126. {
  30127. name: "Minimum",
  30128. height: math.unit(7, "feet")
  30129. },
  30130. {
  30131. name: "Comfortable",
  30132. height: math.unit(17, "feet")
  30133. },
  30134. {
  30135. name: "Fun Size",
  30136. height: math.unit(47, "feet")
  30137. },
  30138. {
  30139. name: "Natural Macro",
  30140. height: math.unit(137, "feet"),
  30141. default: true
  30142. },
  30143. {
  30144. name: "Maximum Kaiju",
  30145. height: math.unit(397, "feet")
  30146. },
  30147. ]
  30148. ))
  30149. characterMakers.push(() => makeCharacter(
  30150. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30151. {
  30152. front: {
  30153. height: math.unit(50 + 9/12, "feet"),
  30154. weight: math.unit(32.8, "tons"),
  30155. name: "Front",
  30156. image: {
  30157. source: "./media/characters/irb'iiritaahn/front.svg",
  30158. extra: 1878/1826,
  30159. bottom: 326/2204
  30160. }
  30161. },
  30162. back: {
  30163. height: math.unit(50 + 9/12, "feet"),
  30164. weight: math.unit(32.8, "tons"),
  30165. name: "Back",
  30166. image: {
  30167. source: "./media/characters/irb'iiritaahn/back.svg",
  30168. extra: 2052/2018,
  30169. bottom: 152/2204
  30170. }
  30171. },
  30172. head: {
  30173. height: math.unit(12.86, "feet"),
  30174. name: "Head",
  30175. image: {
  30176. source: "./media/characters/irb'iiritaahn/head.svg"
  30177. }
  30178. },
  30179. maw: {
  30180. height: math.unit(9.66, "feet"),
  30181. name: "Maw",
  30182. image: {
  30183. source: "./media/characters/irb'iiritaahn/maw.svg"
  30184. }
  30185. },
  30186. frontDick: {
  30187. height: math.unit(8.78461, "feet"),
  30188. name: "Front Dick",
  30189. image: {
  30190. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30191. }
  30192. },
  30193. rearDick: {
  30194. height: math.unit(8.78461, "feet"),
  30195. name: "Rear Dick",
  30196. image: {
  30197. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30198. }
  30199. },
  30200. rearDickUnfolded: {
  30201. height: math.unit(8.78, "feet"),
  30202. name: "Rear Dick (Unfolded)",
  30203. image: {
  30204. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30205. }
  30206. },
  30207. wings: {
  30208. height: math.unit(43, "feet"),
  30209. name: "Wings",
  30210. image: {
  30211. source: "./media/characters/irb'iiritaahn/wings.svg"
  30212. }
  30213. },
  30214. },
  30215. [
  30216. {
  30217. name: "Macro",
  30218. height: math.unit(50 + 9/12, "feet"),
  30219. default: true
  30220. },
  30221. ]
  30222. ))
  30223. characterMakers.push(() => makeCharacter(
  30224. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30225. {
  30226. front: {
  30227. height: math.unit(205, "cm"),
  30228. weight: math.unit(102, "kg"),
  30229. name: "Front",
  30230. image: {
  30231. source: "./media/characters/irbisgreif/front.svg",
  30232. extra: 785/706,
  30233. bottom: 13/798
  30234. }
  30235. },
  30236. back: {
  30237. height: math.unit(205, "cm"),
  30238. weight: math.unit(102, "kg"),
  30239. name: "Back",
  30240. image: {
  30241. source: "./media/characters/irbisgreif/back.svg",
  30242. extra: 713/701,
  30243. bottom: 26/739
  30244. }
  30245. },
  30246. frontDressed: {
  30247. height: math.unit(216, "cm"),
  30248. weight: math.unit(102, "kg"),
  30249. name: "Front-dressed",
  30250. image: {
  30251. source: "./media/characters/irbisgreif/front-dressed.svg",
  30252. extra: 902/776,
  30253. bottom: 14/916
  30254. }
  30255. },
  30256. sideDressed: {
  30257. height: math.unit(195, "cm"),
  30258. weight: math.unit(102, "kg"),
  30259. name: "Side-dressed",
  30260. image: {
  30261. source: "./media/characters/irbisgreif/side-dressed.svg",
  30262. extra: 788/688,
  30263. bottom: 21/809
  30264. }
  30265. },
  30266. backDressed: {
  30267. height: math.unit(216, "cm"),
  30268. weight: math.unit(102, "kg"),
  30269. name: "Back-dressed",
  30270. image: {
  30271. source: "./media/characters/irbisgreif/back-dressed.svg",
  30272. extra: 901/783,
  30273. bottom: 10/911
  30274. }
  30275. },
  30276. dick: {
  30277. height: math.unit(0.49, "feet"),
  30278. name: "Dick",
  30279. image: {
  30280. source: "./media/characters/irbisgreif/dick.svg"
  30281. }
  30282. },
  30283. wingTop: {
  30284. height: math.unit(1.93 , "feet"),
  30285. name: "Wing-top",
  30286. image: {
  30287. source: "./media/characters/irbisgreif/wing-top.svg"
  30288. }
  30289. },
  30290. wingBottom: {
  30291. height: math.unit(1.93 , "feet"),
  30292. name: "Wing-bottom",
  30293. image: {
  30294. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30295. }
  30296. },
  30297. },
  30298. [
  30299. {
  30300. name: "Normal",
  30301. height: math.unit(216, "cm"),
  30302. default: true
  30303. },
  30304. ]
  30305. ))
  30306. characterMakers.push(() => makeCharacter(
  30307. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30308. {
  30309. front: {
  30310. height: math.unit(6, "feet"),
  30311. weight: math.unit(150, "lb"),
  30312. name: "Front",
  30313. image: {
  30314. source: "./media/characters/pride/front.svg",
  30315. extra: 1299/1230,
  30316. bottom: 18/1317
  30317. }
  30318. },
  30319. },
  30320. [
  30321. {
  30322. name: "Normal",
  30323. height: math.unit(7, "feet")
  30324. },
  30325. {
  30326. name: "Mini-macro",
  30327. height: math.unit(11, "feet")
  30328. },
  30329. {
  30330. name: "Macro",
  30331. height: math.unit(15, "meters"),
  30332. default: true
  30333. },
  30334. {
  30335. name: "Macro+",
  30336. height: math.unit(40, "meters")
  30337. },
  30338. ]
  30339. ))
  30340. characterMakers.push(() => makeCharacter(
  30341. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30342. {
  30343. front: {
  30344. height: math.unit(4 + 2 / 12, "feet"),
  30345. weight: math.unit(95, "lb"),
  30346. name: "Front",
  30347. image: {
  30348. source: "./media/characters/vaelophis-nyx/front.svg",
  30349. extra: 2532/2330,
  30350. bottom: 0/2532
  30351. }
  30352. },
  30353. back: {
  30354. height: math.unit(4 + 2 / 12, "feet"),
  30355. weight: math.unit(95, "lb"),
  30356. name: "Back",
  30357. image: {
  30358. source: "./media/characters/vaelophis-nyx/back.svg",
  30359. extra: 2484/2361,
  30360. bottom: 0/2484
  30361. }
  30362. },
  30363. feralSide: {
  30364. height: math.unit(2 + 1/12, "feet"),
  30365. weight: math.unit(20, "lb"),
  30366. name: "Feral (Side)",
  30367. image: {
  30368. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30369. extra: 1721/1581,
  30370. bottom: 70/1791
  30371. }
  30372. },
  30373. feralLazing: {
  30374. height: math.unit(1.08, "feet"),
  30375. weight: math.unit(20, "lb"),
  30376. name: "Feral (Lazing)",
  30377. image: {
  30378. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30379. extra: 822/822,
  30380. bottom: 248/1070
  30381. }
  30382. },
  30383. ear: {
  30384. height: math.unit(0.416, "feet"),
  30385. name: "Ear",
  30386. image: {
  30387. source: "./media/characters/vaelophis-nyx/ear.svg"
  30388. }
  30389. },
  30390. eye: {
  30391. height: math.unit(0.0748, "feet"),
  30392. name: "Eye",
  30393. image: {
  30394. source: "./media/characters/vaelophis-nyx/eye.svg"
  30395. }
  30396. },
  30397. mouth: {
  30398. height: math.unit(0.378, "feet"),
  30399. name: "Mouth",
  30400. image: {
  30401. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30402. }
  30403. },
  30404. spade: {
  30405. height: math.unit(0.55, "feet"),
  30406. name: "Spade",
  30407. image: {
  30408. source: "./media/characters/vaelophis-nyx/spade.svg"
  30409. }
  30410. },
  30411. },
  30412. [
  30413. {
  30414. name: "Normal",
  30415. height: math.unit(4 + 2/12, "feet"),
  30416. default: true
  30417. },
  30418. ]
  30419. ))
  30420. characterMakers.push(() => makeCharacter(
  30421. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30422. {
  30423. front: {
  30424. height: math.unit(7, "feet"),
  30425. weight: math.unit(231, "lb"),
  30426. name: "Front",
  30427. image: {
  30428. source: "./media/characters/flux/front.svg",
  30429. extra: 919/871,
  30430. bottom: 0/919
  30431. }
  30432. },
  30433. back: {
  30434. height: math.unit(7, "feet"),
  30435. weight: math.unit(231, "lb"),
  30436. name: "Back",
  30437. image: {
  30438. source: "./media/characters/flux/back.svg",
  30439. extra: 1040/992,
  30440. bottom: 0/1040
  30441. }
  30442. },
  30443. frontDressed: {
  30444. height: math.unit(7, "feet"),
  30445. weight: math.unit(231, "lb"),
  30446. name: "Front (Dressed)",
  30447. image: {
  30448. source: "./media/characters/flux/front-dressed.svg",
  30449. extra: 919/871,
  30450. bottom: 0/919
  30451. }
  30452. },
  30453. feralSide: {
  30454. height: math.unit(5, "feet"),
  30455. weight: math.unit(150, "lb"),
  30456. name: "Feral (Side)",
  30457. image: {
  30458. source: "./media/characters/flux/feral-side.svg",
  30459. extra: 598/528,
  30460. bottom: 28/626
  30461. }
  30462. },
  30463. head: {
  30464. height: math.unit(1.585, "feet"),
  30465. name: "Head",
  30466. image: {
  30467. source: "./media/characters/flux/head.svg"
  30468. }
  30469. },
  30470. headSide: {
  30471. height: math.unit(1.74, "feet"),
  30472. name: "Head (Side)",
  30473. image: {
  30474. source: "./media/characters/flux/head-side.svg"
  30475. }
  30476. },
  30477. headSideFire: {
  30478. height: math.unit(1.76, "feet"),
  30479. name: "Head (Side, Fire)",
  30480. image: {
  30481. source: "./media/characters/flux/head-side-fire.svg"
  30482. }
  30483. },
  30484. },
  30485. [
  30486. {
  30487. name: "Normal",
  30488. height: math.unit(7, "feet"),
  30489. default: true
  30490. },
  30491. ]
  30492. ))
  30493. characterMakers.push(() => makeCharacter(
  30494. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30495. {
  30496. front: {
  30497. height: math.unit(9, "feet"),
  30498. weight: math.unit(1012, "lb"),
  30499. name: "Front",
  30500. image: {
  30501. source: "./media/characters/ulfra-lupae/front.svg",
  30502. extra: 1083/1011,
  30503. bottom: 67/1150
  30504. }
  30505. },
  30506. },
  30507. [
  30508. {
  30509. name: "Micro",
  30510. height: math.unit(6, "inches")
  30511. },
  30512. {
  30513. name: "Socializing",
  30514. height: math.unit(6 + 5/12, "feet")
  30515. },
  30516. {
  30517. name: "Normal",
  30518. height: math.unit(9, "feet"),
  30519. default: true
  30520. },
  30521. {
  30522. name: "Macro",
  30523. height: math.unit(150, "feet")
  30524. },
  30525. ]
  30526. ))
  30527. characterMakers.push(() => makeCharacter(
  30528. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30529. {
  30530. front: {
  30531. height: math.unit(5 + 2/12, "feet"),
  30532. weight: math.unit(120, "lb"),
  30533. name: "Front",
  30534. image: {
  30535. source: "./media/characters/timber/front.svg",
  30536. extra: 2814/2705,
  30537. bottom: 181/2995
  30538. }
  30539. },
  30540. },
  30541. [
  30542. {
  30543. name: "Normal",
  30544. height: math.unit(5 + 2/12, "feet"),
  30545. default: true
  30546. },
  30547. ]
  30548. ))
  30549. characterMakers.push(() => makeCharacter(
  30550. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30551. {
  30552. front: {
  30553. height: math.unit(5 + 7/12, "feet"),
  30554. weight: math.unit(220, "lb"),
  30555. name: "Front",
  30556. image: {
  30557. source: "./media/characters/nicki/front.svg",
  30558. extra: 453/419,
  30559. bottom: 7/460
  30560. }
  30561. },
  30562. frontAlt: {
  30563. height: math.unit(5 + 7/12, "feet"),
  30564. weight: math.unit(220, "lb"),
  30565. name: "Front-alt",
  30566. image: {
  30567. source: "./media/characters/nicki/front-alt.svg",
  30568. extra: 435/411,
  30569. bottom: 12/447
  30570. }
  30571. },
  30572. back: {
  30573. height: math.unit(5 + 7/12, "feet"),
  30574. weight: math.unit(220, "lb"),
  30575. name: "Back",
  30576. image: {
  30577. source: "./media/characters/nicki/back.svg",
  30578. extra: 440/413,
  30579. bottom: 19/459
  30580. }
  30581. },
  30582. taur: {
  30583. height: math.unit(7 + 6/12, "feet"),
  30584. weight: math.unit(700, "lb"),
  30585. name: "Taur",
  30586. image: {
  30587. source: "./media/characters/nicki/taur.svg",
  30588. extra: 975/773,
  30589. bottom: 0/975
  30590. }
  30591. },
  30592. frontNsfw: {
  30593. height: math.unit(5 + 7/12, "feet"),
  30594. weight: math.unit(220, "lb"),
  30595. name: "Front (NSFW)",
  30596. image: {
  30597. source: "./media/characters/nicki/front-nsfw.svg",
  30598. extra: 453/419,
  30599. bottom: 7/460
  30600. }
  30601. },
  30602. frontNsfwAlt: {
  30603. height: math.unit(5 + 7/12, "feet"),
  30604. weight: math.unit(220, "lb"),
  30605. name: "Front (Alt, NSFW)",
  30606. image: {
  30607. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30608. extra: 435/411,
  30609. bottom: 12/447
  30610. }
  30611. },
  30612. backNsfw: {
  30613. height: math.unit(5 + 7/12, "feet"),
  30614. weight: math.unit(220, "lb"),
  30615. name: "Back (NSFW)",
  30616. image: {
  30617. source: "./media/characters/nicki/back-nsfw.svg",
  30618. extra: 440/413,
  30619. bottom: 19/459
  30620. }
  30621. },
  30622. head: {
  30623. height: math.unit(2.1, "feet"),
  30624. name: "Head",
  30625. image: {
  30626. source: "./media/characters/nicki/head.svg"
  30627. }
  30628. },
  30629. paw: {
  30630. height: math.unit(1.88, "feet"),
  30631. name: "Paw",
  30632. image: {
  30633. source: "./media/characters/nicki/paw.svg"
  30634. }
  30635. },
  30636. },
  30637. [
  30638. {
  30639. name: "Normal",
  30640. height: math.unit(5 + 7/12, "feet"),
  30641. default: true
  30642. },
  30643. ]
  30644. ))
  30645. characterMakers.push(() => makeCharacter(
  30646. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30647. {
  30648. front: {
  30649. height: math.unit(7 + 10/12, "feet"),
  30650. weight: math.unit(3.5, "tons"),
  30651. name: "Front",
  30652. image: {
  30653. source: "./media/characters/lee/front.svg",
  30654. extra: 1773/1615,
  30655. bottom: 86/1859
  30656. }
  30657. },
  30658. hand: {
  30659. height: math.unit(1.78, "feet"),
  30660. name: "Hand",
  30661. image: {
  30662. source: "./media/characters/lee/hand.svg"
  30663. }
  30664. },
  30665. maw: {
  30666. height: math.unit(1.18, "feet"),
  30667. name: "Maw",
  30668. image: {
  30669. source: "./media/characters/lee/maw.svg"
  30670. }
  30671. },
  30672. },
  30673. [
  30674. {
  30675. name: "Normal",
  30676. height: math.unit(7 + 10/12, "feet"),
  30677. default: true
  30678. },
  30679. ]
  30680. ))
  30681. characterMakers.push(() => makeCharacter(
  30682. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30683. {
  30684. front: {
  30685. height: math.unit(9, "feet"),
  30686. name: "Front",
  30687. image: {
  30688. source: "./media/characters/guti/front.svg",
  30689. extra: 4551/4355,
  30690. bottom: 123/4674
  30691. }
  30692. },
  30693. tongue: {
  30694. height: math.unit(1, "feet"),
  30695. name: "Tongue",
  30696. image: {
  30697. source: "./media/characters/guti/tongue.svg"
  30698. }
  30699. },
  30700. paw: {
  30701. height: math.unit(1.18, "feet"),
  30702. name: "Paw",
  30703. image: {
  30704. source: "./media/characters/guti/paw.svg"
  30705. }
  30706. },
  30707. },
  30708. [
  30709. {
  30710. name: "Normal",
  30711. height: math.unit(9, "feet"),
  30712. default: true
  30713. },
  30714. ]
  30715. ))
  30716. characterMakers.push(() => makeCharacter(
  30717. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30718. {
  30719. side: {
  30720. height: math.unit(5, "meters"),
  30721. name: "Side",
  30722. image: {
  30723. source: "./media/characters/vesper/side.svg",
  30724. extra: 1605/1518,
  30725. bottom: 0/1605
  30726. }
  30727. },
  30728. },
  30729. [
  30730. {
  30731. name: "Small",
  30732. height: math.unit(5, "meters")
  30733. },
  30734. {
  30735. name: "Sage",
  30736. height: math.unit(100, "meters"),
  30737. default: true
  30738. },
  30739. {
  30740. name: "Fun Size",
  30741. height: math.unit(600, "meters")
  30742. },
  30743. {
  30744. name: "Goddess",
  30745. height: math.unit(20000, "km")
  30746. },
  30747. {
  30748. name: "Maximum",
  30749. height: math.unit(5, "galaxies")
  30750. },
  30751. ]
  30752. ))
  30753. characterMakers.push(() => makeCharacter(
  30754. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30755. {
  30756. front: {
  30757. height: math.unit(6 + 3/12, "feet"),
  30758. weight: math.unit(190, "lb"),
  30759. name: "Front",
  30760. image: {
  30761. source: "./media/characters/gawain/front.svg",
  30762. extra: 2222/2139,
  30763. bottom: 90/2312
  30764. }
  30765. },
  30766. back: {
  30767. height: math.unit(6 + 3/12, "feet"),
  30768. weight: math.unit(190, "lb"),
  30769. name: "Back",
  30770. image: {
  30771. source: "./media/characters/gawain/back.svg",
  30772. extra: 2199/2111,
  30773. bottom: 73/2272
  30774. }
  30775. },
  30776. },
  30777. [
  30778. {
  30779. name: "Normal",
  30780. height: math.unit(6 + 3/12, "feet"),
  30781. default: true
  30782. },
  30783. ]
  30784. ))
  30785. characterMakers.push(() => makeCharacter(
  30786. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30787. {
  30788. side: {
  30789. height: math.unit(3.5, "meters"),
  30790. weight: math.unit(16000, "lb"),
  30791. name: "Side",
  30792. image: {
  30793. source: "./media/characters/dascalti/side.svg",
  30794. extra: 392/273,
  30795. bottom: 47/439
  30796. }
  30797. },
  30798. breath: {
  30799. height: math.unit(7.4, "feet"),
  30800. name: "Breath",
  30801. image: {
  30802. source: "./media/characters/dascalti/breath.svg"
  30803. }
  30804. },
  30805. fed: {
  30806. height: math.unit(3.6, "meters"),
  30807. weight: math.unit(16000, "lb"),
  30808. name: "Fed",
  30809. image: {
  30810. source: "./media/characters/dascalti/fed.svg",
  30811. extra: 1419/820,
  30812. bottom: 95/1514
  30813. }
  30814. },
  30815. },
  30816. [
  30817. {
  30818. name: "Normal",
  30819. height: math.unit(3.5, "meters"),
  30820. default: true
  30821. },
  30822. ]
  30823. ))
  30824. characterMakers.push(() => makeCharacter(
  30825. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30826. {
  30827. front: {
  30828. height: math.unit(3 + 5/12, "feet"),
  30829. name: "Front",
  30830. image: {
  30831. source: "./media/characters/mauve/front.svg",
  30832. extra: 1126/1033,
  30833. bottom: 65/1191
  30834. }
  30835. },
  30836. side: {
  30837. height: math.unit(3 + 5/12, "feet"),
  30838. name: "Side",
  30839. image: {
  30840. source: "./media/characters/mauve/side.svg",
  30841. extra: 1089/1001,
  30842. bottom: 29/1118
  30843. }
  30844. },
  30845. back: {
  30846. height: math.unit(3 + 5/12, "feet"),
  30847. name: "Back",
  30848. image: {
  30849. source: "./media/characters/mauve/back.svg",
  30850. extra: 1173/1053,
  30851. bottom: 109/1282
  30852. }
  30853. },
  30854. },
  30855. [
  30856. {
  30857. name: "Normal",
  30858. height: math.unit(3 + 5/12, "feet"),
  30859. default: true
  30860. },
  30861. ]
  30862. ))
  30863. characterMakers.push(() => makeCharacter(
  30864. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30865. {
  30866. front: {
  30867. height: math.unit(6 + 3/12, "feet"),
  30868. weight: math.unit(430, "lb"),
  30869. name: "Front",
  30870. image: {
  30871. source: "./media/characters/carlos/front.svg",
  30872. extra: 1964/1913,
  30873. bottom: 70/2034
  30874. }
  30875. },
  30876. },
  30877. [
  30878. {
  30879. name: "Normal",
  30880. height: math.unit(6 + 3/12, "feet"),
  30881. default: true
  30882. },
  30883. ]
  30884. ))
  30885. characterMakers.push(() => makeCharacter(
  30886. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30887. {
  30888. back: {
  30889. height: math.unit(5 + 10/12, "feet"),
  30890. weight: math.unit(200, "lb"),
  30891. name: "Back",
  30892. image: {
  30893. source: "./media/characters/jax/back.svg",
  30894. extra: 764/739,
  30895. bottom: 25/789
  30896. }
  30897. },
  30898. },
  30899. [
  30900. {
  30901. name: "Normal",
  30902. height: math.unit(5 + 10/12, "feet"),
  30903. default: true
  30904. },
  30905. ]
  30906. ))
  30907. characterMakers.push(() => makeCharacter(
  30908. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30909. {
  30910. front: {
  30911. height: math.unit(8, "feet"),
  30912. weight: math.unit(250, "lb"),
  30913. name: "Front",
  30914. image: {
  30915. source: "./media/characters/eikthynir/front.svg",
  30916. extra: 1332/1166,
  30917. bottom: 82/1414
  30918. }
  30919. },
  30920. back: {
  30921. height: math.unit(8, "feet"),
  30922. weight: math.unit(250, "lb"),
  30923. name: "Back",
  30924. image: {
  30925. source: "./media/characters/eikthynir/back.svg",
  30926. extra: 1342/1190,
  30927. bottom: 19/1361
  30928. }
  30929. },
  30930. dick: {
  30931. height: math.unit(2.35, "feet"),
  30932. name: "Dick",
  30933. image: {
  30934. source: "./media/characters/eikthynir/dick.svg"
  30935. }
  30936. },
  30937. },
  30938. [
  30939. {
  30940. name: "Normal",
  30941. height: math.unit(8, "feet"),
  30942. default: true
  30943. },
  30944. ]
  30945. ))
  30946. characterMakers.push(() => makeCharacter(
  30947. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30948. {
  30949. front: {
  30950. height: math.unit(99, "meters"),
  30951. weight: math.unit(13000, "tons"),
  30952. name: "Front",
  30953. image: {
  30954. source: "./media/characters/zlmos/front.svg",
  30955. extra: 2202/1992,
  30956. bottom: 315/2517
  30957. }
  30958. },
  30959. },
  30960. [
  30961. {
  30962. name: "Macro",
  30963. height: math.unit(99, "meters"),
  30964. default: true
  30965. },
  30966. ]
  30967. ))
  30968. characterMakers.push(() => makeCharacter(
  30969. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30970. {
  30971. front: {
  30972. height: math.unit(6 + 5/12, "feet"),
  30973. name: "Front",
  30974. image: {
  30975. source: "./media/characters/purri/front.svg",
  30976. extra: 1698/1610,
  30977. bottom: 32/1730
  30978. }
  30979. },
  30980. frontAlt: {
  30981. height: math.unit(6 + 5/12, "feet"),
  30982. name: "Front (Alt)",
  30983. image: {
  30984. source: "./media/characters/purri/front-alt.svg",
  30985. extra: 450/420,
  30986. bottom: 26/476
  30987. }
  30988. },
  30989. boots: {
  30990. height: math.unit(5.5, "feet"),
  30991. name: "Boots",
  30992. image: {
  30993. source: "./media/characters/purri/boots.svg",
  30994. extra: 905/853,
  30995. bottom: 18/923
  30996. }
  30997. },
  30998. lying: {
  30999. height: math.unit(2, "feet"),
  31000. name: "Lying",
  31001. image: {
  31002. source: "./media/characters/purri/lying.svg",
  31003. extra: 940/843,
  31004. bottom: 146/1086
  31005. }
  31006. },
  31007. devious: {
  31008. height: math.unit(1.77, "feet"),
  31009. name: "Devious",
  31010. image: {
  31011. source: "./media/characters/purri/devious.svg",
  31012. extra: 1440/1155,
  31013. bottom: 147/1587
  31014. }
  31015. },
  31016. bean: {
  31017. height: math.unit(1.94, "feet"),
  31018. name: "Bean",
  31019. image: {
  31020. source: "./media/characters/purri/bean.svg"
  31021. }
  31022. },
  31023. },
  31024. [
  31025. {
  31026. name: "Micro",
  31027. height: math.unit(1, "mm")
  31028. },
  31029. {
  31030. name: "Normal",
  31031. height: math.unit(6 + 5/12, "feet"),
  31032. default: true
  31033. },
  31034. {
  31035. name: "Macro :3c",
  31036. height: math.unit(2, "miles")
  31037. },
  31038. ]
  31039. ))
  31040. characterMakers.push(() => makeCharacter(
  31041. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31042. {
  31043. front: {
  31044. height: math.unit(6 + 2/12, "feet"),
  31045. weight: math.unit(250, "lb"),
  31046. name: "Front",
  31047. image: {
  31048. source: "./media/characters/moonlight/front.svg",
  31049. extra: 1044/908,
  31050. bottom: 56/1100
  31051. }
  31052. },
  31053. feral: {
  31054. height: math.unit(3 + 1/12, "feet"),
  31055. weight: math.unit(50, "kg"),
  31056. name: "Feral",
  31057. image: {
  31058. source: "./media/characters/moonlight/feral.svg",
  31059. extra: 3705/2791,
  31060. bottom: 145/3850
  31061. }
  31062. },
  31063. paw: {
  31064. height: math.unit(1, "feet"),
  31065. name: "Paw",
  31066. image: {
  31067. source: "./media/characters/moonlight/paw.svg"
  31068. }
  31069. },
  31070. paws: {
  31071. height: math.unit(0.98, "feet"),
  31072. name: "Paws",
  31073. image: {
  31074. source: "./media/characters/moonlight/paws.svg",
  31075. extra: 939/939,
  31076. bottom: 50/989
  31077. }
  31078. },
  31079. mouth: {
  31080. height: math.unit(0.48, "feet"),
  31081. name: "Mouth",
  31082. image: {
  31083. source: "./media/characters/moonlight/mouth.svg"
  31084. }
  31085. },
  31086. dick: {
  31087. height: math.unit(1.46, "feet"),
  31088. name: "Dick",
  31089. image: {
  31090. source: "./media/characters/moonlight/dick.svg"
  31091. }
  31092. },
  31093. },
  31094. [
  31095. {
  31096. name: "Normal",
  31097. height: math.unit(6 + 2/12, "feet"),
  31098. default: true
  31099. },
  31100. {
  31101. name: "Macro",
  31102. height: math.unit(300, "feet")
  31103. },
  31104. {
  31105. name: "Macro+",
  31106. height: math.unit(1, "mile")
  31107. },
  31108. {
  31109. name: "Mt. Moon",
  31110. height: math.unit(5, "miles")
  31111. },
  31112. {
  31113. name: "Megamacro",
  31114. height: math.unit(15, "miles")
  31115. },
  31116. ]
  31117. ))
  31118. characterMakers.push(() => makeCharacter(
  31119. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31120. {
  31121. back: {
  31122. height: math.unit(6, "feet"),
  31123. weight: math.unit(150, "lb"),
  31124. name: "Back",
  31125. image: {
  31126. source: "./media/characters/sylen/back.svg",
  31127. extra: 1335/1273,
  31128. bottom: 107/1442
  31129. }
  31130. },
  31131. },
  31132. [
  31133. {
  31134. name: "Normal",
  31135. height: math.unit(5 + 5/12, "feet")
  31136. },
  31137. {
  31138. name: "Megamacro",
  31139. height: math.unit(3, "miles"),
  31140. default: true
  31141. },
  31142. ]
  31143. ))
  31144. characterMakers.push(() => makeCharacter(
  31145. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31146. {
  31147. front: {
  31148. height: math.unit(6, "feet"),
  31149. weight: math.unit(190, "lb"),
  31150. name: "Front",
  31151. image: {
  31152. source: "./media/characters/huttser/front.svg",
  31153. extra: 1152/1058,
  31154. bottom: 23/1175
  31155. }
  31156. },
  31157. side: {
  31158. height: math.unit(6, "feet"),
  31159. weight: math.unit(190, "lb"),
  31160. name: "Side",
  31161. image: {
  31162. source: "./media/characters/huttser/side.svg",
  31163. extra: 1174/1065,
  31164. bottom: 18/1192
  31165. }
  31166. },
  31167. back: {
  31168. height: math.unit(6, "feet"),
  31169. weight: math.unit(190, "lb"),
  31170. name: "Back",
  31171. image: {
  31172. source: "./media/characters/huttser/back.svg",
  31173. extra: 1158/1056,
  31174. bottom: 12/1170
  31175. }
  31176. },
  31177. },
  31178. [
  31179. ]
  31180. ))
  31181. characterMakers.push(() => makeCharacter(
  31182. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31183. {
  31184. side: {
  31185. height: math.unit(12 + 9/12, "feet"),
  31186. weight: math.unit(15000, "lb"),
  31187. name: "Side",
  31188. image: {
  31189. source: "./media/characters/faan/side.svg",
  31190. extra: 2747/2697,
  31191. bottom: 0/2747
  31192. }
  31193. },
  31194. front: {
  31195. height: math.unit(12 + 9/12, "feet"),
  31196. weight: math.unit(15000, "lb"),
  31197. name: "Front",
  31198. image: {
  31199. source: "./media/characters/faan/front.svg",
  31200. extra: 607/571,
  31201. bottom: 24/631
  31202. }
  31203. },
  31204. head: {
  31205. height: math.unit(2.85, "feet"),
  31206. name: "Head",
  31207. image: {
  31208. source: "./media/characters/faan/head.svg"
  31209. }
  31210. },
  31211. headAlt: {
  31212. height: math.unit(3.13, "feet"),
  31213. name: "Head-alt",
  31214. image: {
  31215. source: "./media/characters/faan/head-alt.svg"
  31216. }
  31217. },
  31218. },
  31219. [
  31220. {
  31221. name: "Normal",
  31222. height: math.unit(12 + 9/12, "feet"),
  31223. default: true
  31224. },
  31225. ]
  31226. ))
  31227. characterMakers.push(() => makeCharacter(
  31228. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31229. {
  31230. front: {
  31231. height: math.unit(6, "feet"),
  31232. weight: math.unit(300, "lb"),
  31233. name: "Front",
  31234. image: {
  31235. source: "./media/characters/tanio/front.svg",
  31236. extra: 711/673,
  31237. bottom: 25/736
  31238. }
  31239. },
  31240. },
  31241. [
  31242. {
  31243. name: "Normal",
  31244. height: math.unit(6, "feet"),
  31245. default: true
  31246. },
  31247. ]
  31248. ))
  31249. characterMakers.push(() => makeCharacter(
  31250. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31251. {
  31252. front: {
  31253. height: math.unit(3, "inches"),
  31254. name: "Front",
  31255. image: {
  31256. source: "./media/characters/noboru/front.svg",
  31257. extra: 1039/932,
  31258. bottom: 18/1057
  31259. }
  31260. },
  31261. },
  31262. [
  31263. {
  31264. name: "Micro",
  31265. height: math.unit(3, "inches"),
  31266. default: true
  31267. },
  31268. ]
  31269. ))
  31270. characterMakers.push(() => makeCharacter(
  31271. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31272. {
  31273. front: {
  31274. height: math.unit(1.85, "meters"),
  31275. weight: math.unit(80, "kg"),
  31276. name: "Front",
  31277. image: {
  31278. source: "./media/characters/daniel-barrett/front.svg",
  31279. extra: 355/337,
  31280. bottom: 9/364
  31281. }
  31282. },
  31283. },
  31284. [
  31285. {
  31286. name: "Pico",
  31287. height: math.unit(0.0433, "mm")
  31288. },
  31289. {
  31290. name: "Nano",
  31291. height: math.unit(1.5, "mm")
  31292. },
  31293. {
  31294. name: "Micro",
  31295. height: math.unit(5.3, "cm"),
  31296. default: true
  31297. },
  31298. {
  31299. name: "Normal",
  31300. height: math.unit(1.85, "meters")
  31301. },
  31302. {
  31303. name: "Macro",
  31304. height: math.unit(64.7, "meters")
  31305. },
  31306. {
  31307. name: "Megamacro",
  31308. height: math.unit(2.26, "km")
  31309. },
  31310. {
  31311. name: "Gigamacro",
  31312. height: math.unit(79, "km")
  31313. },
  31314. {
  31315. name: "Teramacro",
  31316. height: math.unit(2765, "km")
  31317. },
  31318. {
  31319. name: "Petamacro",
  31320. height: math.unit(96678, "km")
  31321. },
  31322. ]
  31323. ))
  31324. characterMakers.push(() => makeCharacter(
  31325. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31326. {
  31327. front: {
  31328. height: math.unit(30, "meters"),
  31329. weight: math.unit(400, "tons"),
  31330. name: "Front",
  31331. image: {
  31332. source: "./media/characters/zeel/front.svg",
  31333. extra: 2599/2599,
  31334. bottom: 226/2825
  31335. }
  31336. },
  31337. },
  31338. [
  31339. {
  31340. name: "Macro",
  31341. height: math.unit(30, "meters"),
  31342. default: true
  31343. },
  31344. ]
  31345. ))
  31346. characterMakers.push(() => makeCharacter(
  31347. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31348. {
  31349. front: {
  31350. height: math.unit(6 + 7/12, "feet"),
  31351. weight: math.unit(210, "lb"),
  31352. name: "Front",
  31353. image: {
  31354. source: "./media/characters/tarn/front.svg",
  31355. extra: 3517/3220,
  31356. bottom: 91/3608
  31357. }
  31358. },
  31359. back: {
  31360. height: math.unit(6 + 7/12, "feet"),
  31361. weight: math.unit(210, "lb"),
  31362. name: "Back",
  31363. image: {
  31364. source: "./media/characters/tarn/back.svg",
  31365. extra: 3566/3241,
  31366. bottom: 34/3600
  31367. }
  31368. },
  31369. dick: {
  31370. height: math.unit(1.65, "feet"),
  31371. name: "Dick",
  31372. image: {
  31373. source: "./media/characters/tarn/dick.svg"
  31374. }
  31375. },
  31376. paw: {
  31377. height: math.unit(1.80, "feet"),
  31378. name: "Paw",
  31379. image: {
  31380. source: "./media/characters/tarn/paw.svg"
  31381. }
  31382. },
  31383. tongue: {
  31384. height: math.unit(0.97, "feet"),
  31385. name: "Tongue",
  31386. image: {
  31387. source: "./media/characters/tarn/tongue.svg"
  31388. }
  31389. },
  31390. },
  31391. [
  31392. {
  31393. name: "Micro",
  31394. height: math.unit(4, "inches")
  31395. },
  31396. {
  31397. name: "Normal",
  31398. height: math.unit(6 + 7/12, "feet"),
  31399. default: true
  31400. },
  31401. {
  31402. name: "Macro",
  31403. height: math.unit(300, "feet")
  31404. },
  31405. ]
  31406. ))
  31407. characterMakers.push(() => makeCharacter(
  31408. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31409. {
  31410. front: {
  31411. height: math.unit(5 + 7/12, "feet"),
  31412. weight: math.unit(80, "kg"),
  31413. name: "Front",
  31414. image: {
  31415. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31416. extra: 3023/2865,
  31417. bottom: 33/3056
  31418. }
  31419. },
  31420. back: {
  31421. height: math.unit(5 + 7/12, "feet"),
  31422. weight: math.unit(80, "kg"),
  31423. name: "Back",
  31424. image: {
  31425. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31426. extra: 3020/2886,
  31427. bottom: 30/3050
  31428. }
  31429. },
  31430. dick: {
  31431. height: math.unit(0.98, "feet"),
  31432. name: "Dick",
  31433. image: {
  31434. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31435. }
  31436. },
  31437. anatomy: {
  31438. height: math.unit(2.86, "feet"),
  31439. name: "Anatomy",
  31440. image: {
  31441. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31442. }
  31443. },
  31444. },
  31445. [
  31446. {
  31447. name: "Really Small",
  31448. height: math.unit(2, "inches")
  31449. },
  31450. {
  31451. name: "Micro",
  31452. height: math.unit(5.583, "inches")
  31453. },
  31454. {
  31455. name: "Normal",
  31456. height: math.unit(5 + 7/12, "feet"),
  31457. default: true
  31458. },
  31459. {
  31460. name: "Macro",
  31461. height: math.unit(67, "feet")
  31462. },
  31463. {
  31464. name: "Megamacro",
  31465. height: math.unit(134, "feet")
  31466. },
  31467. ]
  31468. ))
  31469. characterMakers.push(() => makeCharacter(
  31470. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31471. {
  31472. front: {
  31473. height: math.unit(9, "feet"),
  31474. weight: math.unit(120, "lb"),
  31475. name: "Front",
  31476. image: {
  31477. source: "./media/characters/sally/front.svg",
  31478. extra: 1506/1349,
  31479. bottom: 66/1572
  31480. }
  31481. },
  31482. },
  31483. [
  31484. {
  31485. name: "Normal",
  31486. height: math.unit(9, "feet"),
  31487. default: true
  31488. },
  31489. ]
  31490. ))
  31491. characterMakers.push(() => makeCharacter(
  31492. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31493. {
  31494. front: {
  31495. height: math.unit(8, "feet"),
  31496. weight: math.unit(900, "lb"),
  31497. name: "Front",
  31498. image: {
  31499. source: "./media/characters/owen/front.svg",
  31500. extra: 1761/1657,
  31501. bottom: 74/1835
  31502. }
  31503. },
  31504. side: {
  31505. height: math.unit(8, "feet"),
  31506. weight: math.unit(900, "lb"),
  31507. name: "Side",
  31508. image: {
  31509. source: "./media/characters/owen/side.svg",
  31510. extra: 1797/1734,
  31511. bottom: 30/1827
  31512. }
  31513. },
  31514. back: {
  31515. height: math.unit(8, "feet"),
  31516. weight: math.unit(900, "lb"),
  31517. name: "Back",
  31518. image: {
  31519. source: "./media/characters/owen/back.svg",
  31520. extra: 1796/1706,
  31521. bottom: 59/1855
  31522. }
  31523. },
  31524. maw: {
  31525. height: math.unit(1.76, "feet"),
  31526. name: "Maw",
  31527. image: {
  31528. source: "./media/characters/owen/maw.svg"
  31529. }
  31530. },
  31531. },
  31532. [
  31533. {
  31534. name: "Normal",
  31535. height: math.unit(8, "feet"),
  31536. default: true
  31537. },
  31538. ]
  31539. ))
  31540. characterMakers.push(() => makeCharacter(
  31541. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31542. {
  31543. front: {
  31544. height: math.unit(4, "feet"),
  31545. weight: math.unit(400, "lb"),
  31546. name: "Front",
  31547. image: {
  31548. source: "./media/characters/ryth/front.svg",
  31549. extra: 876/691,
  31550. bottom: 25/901
  31551. }
  31552. },
  31553. goia: {
  31554. height: math.unit(12, "feet"),
  31555. weight: math.unit(10800, "lb"),
  31556. name: "Goia",
  31557. image: {
  31558. source: "./media/characters/ryth/goia.svg",
  31559. extra: 3450/3198,
  31560. bottom: 61/3511
  31561. }
  31562. },
  31563. },
  31564. [
  31565. {
  31566. name: "Normal",
  31567. height: math.unit(4, "feet"),
  31568. default: true
  31569. },
  31570. ]
  31571. ))
  31572. characterMakers.push(() => makeCharacter(
  31573. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31574. {
  31575. front: {
  31576. height: math.unit(7, "feet"),
  31577. weight: math.unit(180, "lb"),
  31578. name: "Front",
  31579. image: {
  31580. source: "./media/characters/necrolance/front.svg",
  31581. extra: 1062/947,
  31582. bottom: 41/1103
  31583. }
  31584. },
  31585. back: {
  31586. height: math.unit(7, "feet"),
  31587. weight: math.unit(180, "lb"),
  31588. name: "Back",
  31589. image: {
  31590. source: "./media/characters/necrolance/back.svg",
  31591. extra: 1045/984,
  31592. bottom: 14/1059
  31593. }
  31594. },
  31595. wing: {
  31596. height: math.unit(2.67, "feet"),
  31597. name: "Wing",
  31598. image: {
  31599. source: "./media/characters/necrolance/wing.svg"
  31600. }
  31601. },
  31602. },
  31603. [
  31604. {
  31605. name: "Normal",
  31606. height: math.unit(7, "feet"),
  31607. default: true
  31608. },
  31609. ]
  31610. ))
  31611. characterMakers.push(() => makeCharacter(
  31612. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31613. {
  31614. front: {
  31615. height: math.unit(76, "meters"),
  31616. weight: math.unit(30000, "tons"),
  31617. name: "Front",
  31618. image: {
  31619. source: "./media/characters/tyler/front.svg",
  31620. extra: 1640/1640,
  31621. bottom: 114/1754
  31622. }
  31623. },
  31624. },
  31625. [
  31626. {
  31627. name: "Macro",
  31628. height: math.unit(76, "meters"),
  31629. default: true
  31630. },
  31631. ]
  31632. ))
  31633. characterMakers.push(() => makeCharacter(
  31634. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31635. {
  31636. front: {
  31637. height: math.unit(4 + 11/12, "feet"),
  31638. weight: math.unit(132, "lb"),
  31639. name: "Front",
  31640. image: {
  31641. source: "./media/characters/icey/front.svg",
  31642. extra: 2750/2550,
  31643. bottom: 33/2783
  31644. }
  31645. },
  31646. back: {
  31647. height: math.unit(4 + 11/12, "feet"),
  31648. weight: math.unit(132, "lb"),
  31649. name: "Back",
  31650. image: {
  31651. source: "./media/characters/icey/back.svg",
  31652. extra: 2624/2481,
  31653. bottom: 35/2659
  31654. }
  31655. },
  31656. },
  31657. [
  31658. {
  31659. name: "Normal",
  31660. height: math.unit(4 + 11/12, "feet"),
  31661. default: true
  31662. },
  31663. ]
  31664. ))
  31665. characterMakers.push(() => makeCharacter(
  31666. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31667. {
  31668. front: {
  31669. height: math.unit(100, "feet"),
  31670. weight: math.unit(0, "lb"),
  31671. name: "Front",
  31672. image: {
  31673. source: "./media/characters/smile/front.svg",
  31674. extra: 2983/2912,
  31675. bottom: 162/3145
  31676. }
  31677. },
  31678. back: {
  31679. height: math.unit(100, "feet"),
  31680. weight: math.unit(0, "lb"),
  31681. name: "Back",
  31682. image: {
  31683. source: "./media/characters/smile/back.svg",
  31684. extra: 3143/3031,
  31685. bottom: 91/3234
  31686. }
  31687. },
  31688. head: {
  31689. height: math.unit(26.3, "feet"),
  31690. weight: math.unit(0, "lb"),
  31691. name: "Head",
  31692. image: {
  31693. source: "./media/characters/smile/head.svg"
  31694. }
  31695. },
  31696. collar: {
  31697. height: math.unit(5.3, "feet"),
  31698. weight: math.unit(0, "lb"),
  31699. name: "Collar",
  31700. image: {
  31701. source: "./media/characters/smile/collar.svg"
  31702. }
  31703. },
  31704. },
  31705. [
  31706. {
  31707. name: "Macro",
  31708. height: math.unit(100, "feet"),
  31709. default: true
  31710. },
  31711. ]
  31712. ))
  31713. characterMakers.push(() => makeCharacter(
  31714. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31715. {
  31716. dragon: {
  31717. height: math.unit(26, "feet"),
  31718. weight: math.unit(36, "tons"),
  31719. name: "Dragon",
  31720. image: {
  31721. source: "./media/characters/arimphae/dragon.svg",
  31722. extra: 1574/983,
  31723. bottom: 357/1931
  31724. }
  31725. },
  31726. drake: {
  31727. height: math.unit(9, "feet"),
  31728. weight: math.unit(1.5, "tons"),
  31729. name: "Drake",
  31730. image: {
  31731. source: "./media/characters/arimphae/drake.svg",
  31732. extra: 1120/925,
  31733. bottom: 435/1555
  31734. }
  31735. },
  31736. },
  31737. [
  31738. {
  31739. name: "Small",
  31740. height: math.unit(26*5/9, "feet")
  31741. },
  31742. {
  31743. name: "Normal",
  31744. height: math.unit(26, "feet"),
  31745. default: true
  31746. },
  31747. ]
  31748. ))
  31749. characterMakers.push(() => makeCharacter(
  31750. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31751. {
  31752. front: {
  31753. height: math.unit(8 + 9/12, "feet"),
  31754. name: "Front",
  31755. image: {
  31756. source: "./media/characters/xander/front.svg",
  31757. extra: 848/673,
  31758. bottom: 62/910
  31759. }
  31760. },
  31761. },
  31762. [
  31763. {
  31764. name: "Normal",
  31765. height: math.unit(8 + 9/12, "feet"),
  31766. default: true
  31767. },
  31768. {
  31769. name: "Gaze Grabber",
  31770. height: math.unit(13 + 8/12, "feet")
  31771. },
  31772. {
  31773. name: "Jaw Dropper",
  31774. height: math.unit(27, "feet")
  31775. },
  31776. {
  31777. name: "Show Stopper",
  31778. height: math.unit(136, "feet")
  31779. },
  31780. {
  31781. name: "Superstar",
  31782. height: math.unit(1.9e6, "miles")
  31783. },
  31784. ]
  31785. ))
  31786. characterMakers.push(() => makeCharacter(
  31787. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31788. {
  31789. side: {
  31790. height: math.unit(2100, "feet"),
  31791. name: "Side",
  31792. image: {
  31793. source: "./media/characters/osiris/side.svg",
  31794. extra: 1105/939,
  31795. bottom: 167/1272
  31796. }
  31797. },
  31798. },
  31799. [
  31800. {
  31801. name: "Macro",
  31802. height: math.unit(2100, "feet"),
  31803. default: true
  31804. },
  31805. ]
  31806. ))
  31807. characterMakers.push(() => makeCharacter(
  31808. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31809. {
  31810. front: {
  31811. height: math.unit(6 + 8/12, "feet"),
  31812. weight: math.unit(225, "lb"),
  31813. name: "Front",
  31814. image: {
  31815. source: "./media/characters/rhys-londe/front.svg",
  31816. extra: 2258/2141,
  31817. bottom: 188/2446
  31818. }
  31819. },
  31820. back: {
  31821. height: math.unit(6 + 8/12, "feet"),
  31822. weight: math.unit(225, "lb"),
  31823. name: "Back",
  31824. image: {
  31825. source: "./media/characters/rhys-londe/back.svg",
  31826. extra: 2237/2137,
  31827. bottom: 63/2300
  31828. }
  31829. },
  31830. frontNsfw: {
  31831. height: math.unit(6 + 8/12, "feet"),
  31832. weight: math.unit(225, "lb"),
  31833. name: "Front (NSFW)",
  31834. image: {
  31835. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31836. extra: 2258/2141,
  31837. bottom: 188/2446
  31838. }
  31839. },
  31840. backNsfw: {
  31841. height: math.unit(6 + 8/12, "feet"),
  31842. weight: math.unit(225, "lb"),
  31843. name: "Back (NSFW)",
  31844. image: {
  31845. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31846. extra: 2237/2137,
  31847. bottom: 63/2300
  31848. }
  31849. },
  31850. dick: {
  31851. height: math.unit(30, "inches"),
  31852. name: "Dick",
  31853. image: {
  31854. source: "./media/characters/rhys-londe/dick.svg"
  31855. }
  31856. },
  31857. maw: {
  31858. height: math.unit(1.6, "feet"),
  31859. name: "Maw",
  31860. image: {
  31861. source: "./media/characters/rhys-londe/maw.svg"
  31862. }
  31863. },
  31864. },
  31865. [
  31866. {
  31867. name: "Normal",
  31868. height: math.unit(6 + 8/12, "feet"),
  31869. default: true
  31870. },
  31871. ]
  31872. ))
  31873. characterMakers.push(() => makeCharacter(
  31874. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31875. {
  31876. front: {
  31877. height: math.unit(3 + 10/12, "feet"),
  31878. weight: math.unit(90, "lb"),
  31879. name: "Front",
  31880. image: {
  31881. source: "./media/characters/taivas-ensim/front.svg",
  31882. extra: 1327/1216,
  31883. bottom: 96/1423
  31884. }
  31885. },
  31886. back: {
  31887. height: math.unit(3 + 10/12, "feet"),
  31888. weight: math.unit(90, "lb"),
  31889. name: "Back",
  31890. image: {
  31891. source: "./media/characters/taivas-ensim/back.svg",
  31892. extra: 1355/1247,
  31893. bottom: 11/1366
  31894. }
  31895. },
  31896. frontNsfw: {
  31897. height: math.unit(3 + 10/12, "feet"),
  31898. weight: math.unit(90, "lb"),
  31899. name: "Front (NSFW)",
  31900. image: {
  31901. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  31902. extra: 1327/1216,
  31903. bottom: 96/1423
  31904. }
  31905. },
  31906. backNsfw: {
  31907. height: math.unit(3 + 10/12, "feet"),
  31908. weight: math.unit(90, "lb"),
  31909. name: "Back (NSFW)",
  31910. image: {
  31911. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  31912. extra: 1355/1247,
  31913. bottom: 11/1366
  31914. }
  31915. },
  31916. },
  31917. [
  31918. {
  31919. name: "Normal",
  31920. height: math.unit(3 + 10/12, "feet"),
  31921. default: true
  31922. },
  31923. ]
  31924. ))
  31925. characterMakers.push(() => makeCharacter(
  31926. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  31927. {
  31928. front: {
  31929. height: math.unit(9 + 6/12, "feet"),
  31930. weight: math.unit(940, "lb"),
  31931. name: "Front",
  31932. image: {
  31933. source: "./media/characters/byliss/front.svg",
  31934. extra: 1327/1290,
  31935. bottom: 82/1409
  31936. }
  31937. },
  31938. back: {
  31939. height: math.unit(9 + 6/12, "feet"),
  31940. weight: math.unit(940, "lb"),
  31941. name: "Back",
  31942. image: {
  31943. source: "./media/characters/byliss/back.svg",
  31944. extra: 1376/1349,
  31945. bottom: 9/1385
  31946. }
  31947. },
  31948. frontNsfw: {
  31949. height: math.unit(9 + 6/12, "feet"),
  31950. weight: math.unit(940, "lb"),
  31951. name: "Front (NSFW)",
  31952. image: {
  31953. source: "./media/characters/byliss/front-nsfw.svg",
  31954. extra: 1327/1290,
  31955. bottom: 82/1409
  31956. }
  31957. },
  31958. backNsfw: {
  31959. height: math.unit(9 + 6/12, "feet"),
  31960. weight: math.unit(940, "lb"),
  31961. name: "Back (NSFW)",
  31962. image: {
  31963. source: "./media/characters/byliss/back-nsfw.svg",
  31964. extra: 1376/1349,
  31965. bottom: 9/1385
  31966. }
  31967. },
  31968. },
  31969. [
  31970. {
  31971. name: "Normal",
  31972. height: math.unit(9 + 6/12, "feet"),
  31973. default: true
  31974. },
  31975. ]
  31976. ))
  31977. characterMakers.push(() => makeCharacter(
  31978. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  31979. {
  31980. front: {
  31981. height: math.unit(5 + 2/12, "feet"),
  31982. weight: math.unit(200, "lb"),
  31983. name: "Front",
  31984. image: {
  31985. source: "./media/characters/noraly/front.svg",
  31986. extra: 4985/4773,
  31987. bottom: 150/5135
  31988. }
  31989. },
  31990. full: {
  31991. height: math.unit(5 + 2/12, "feet"),
  31992. weight: math.unit(164, "lb"),
  31993. name: "Full",
  31994. image: {
  31995. source: "./media/characters/noraly/full.svg",
  31996. extra: 1114/1059,
  31997. bottom: 35/1149
  31998. }
  31999. },
  32000. fuller: {
  32001. height: math.unit(5 + 2/12, "feet"),
  32002. weight: math.unit(230, "lb"),
  32003. name: "Fuller",
  32004. image: {
  32005. source: "./media/characters/noraly/fuller.svg",
  32006. extra: 1114/1059,
  32007. bottom: 35/1149
  32008. }
  32009. },
  32010. fullest: {
  32011. height: math.unit(5 + 2/12, "feet"),
  32012. weight: math.unit(300, "lb"),
  32013. name: "Fullest",
  32014. image: {
  32015. source: "./media/characters/noraly/fullest.svg",
  32016. extra: 1114/1059,
  32017. bottom: 35/1149
  32018. }
  32019. },
  32020. },
  32021. [
  32022. {
  32023. name: "Normal",
  32024. height: math.unit(5 + 2/12, "feet"),
  32025. default: true
  32026. },
  32027. ]
  32028. ))
  32029. characterMakers.push(() => makeCharacter(
  32030. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32031. {
  32032. front: {
  32033. height: math.unit(5 + 2/12, "feet"),
  32034. weight: math.unit(210, "lb"),
  32035. name: "Front",
  32036. image: {
  32037. source: "./media/characters/pera/front.svg",
  32038. extra: 1560/1531,
  32039. bottom: 165/1725
  32040. }
  32041. },
  32042. back: {
  32043. height: math.unit(5 + 2/12, "feet"),
  32044. weight: math.unit(210, "lb"),
  32045. name: "Back",
  32046. image: {
  32047. source: "./media/characters/pera/back.svg",
  32048. extra: 1523/1493,
  32049. bottom: 152/1675
  32050. }
  32051. },
  32052. dick: {
  32053. height: math.unit(2.4, "feet"),
  32054. name: "Dick",
  32055. image: {
  32056. source: "./media/characters/pera/dick.svg"
  32057. }
  32058. },
  32059. },
  32060. [
  32061. {
  32062. name: "Normal",
  32063. height: math.unit(5 + 2/12, "feet"),
  32064. default: true
  32065. },
  32066. ]
  32067. ))
  32068. characterMakers.push(() => makeCharacter(
  32069. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32070. {
  32071. front: {
  32072. height: math.unit(12, "feet"),
  32073. weight: math.unit(3200, "lb"),
  32074. name: "Front",
  32075. image: {
  32076. source: "./media/characters/julian/front.svg",
  32077. extra: 2962/2701,
  32078. bottom: 184/3146
  32079. }
  32080. },
  32081. maw: {
  32082. height: math.unit(5.35, "feet"),
  32083. name: "Maw",
  32084. image: {
  32085. source: "./media/characters/julian/maw.svg"
  32086. }
  32087. },
  32088. paw: {
  32089. height: math.unit(3.07, "feet"),
  32090. name: "Paw",
  32091. image: {
  32092. source: "./media/characters/julian/paw.svg"
  32093. }
  32094. },
  32095. },
  32096. [
  32097. {
  32098. name: "Default",
  32099. height: math.unit(12, "feet"),
  32100. default: true
  32101. },
  32102. {
  32103. name: "Big",
  32104. height: math.unit(50, "feet")
  32105. },
  32106. {
  32107. name: "Really Big",
  32108. height: math.unit(1, "mile")
  32109. },
  32110. {
  32111. name: "Extremely Big",
  32112. height: math.unit(100, "miles")
  32113. },
  32114. {
  32115. name: "Planet Hugger",
  32116. height: math.unit(200, "megameters")
  32117. },
  32118. {
  32119. name: "Unreasonably Big",
  32120. height: math.unit(1e300, "meters")
  32121. },
  32122. ]
  32123. ))
  32124. characterMakers.push(() => makeCharacter(
  32125. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32126. {
  32127. solgooleo: {
  32128. height: math.unit(4, "meters"),
  32129. weight: math.unit(6000*1.5, "kg"),
  32130. volume: math.unit(6000, "liters"),
  32131. name: "Solgooleo",
  32132. image: {
  32133. source: "./media/characters/pi/solgooleo.svg",
  32134. extra: 388/331,
  32135. bottom: 29/417
  32136. }
  32137. },
  32138. },
  32139. [
  32140. {
  32141. name: "Normal",
  32142. height: math.unit(4, "meters"),
  32143. default: true
  32144. },
  32145. ]
  32146. ))
  32147. characterMakers.push(() => makeCharacter(
  32148. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32149. {
  32150. front: {
  32151. height: math.unit(8 + 2/12, "feet"),
  32152. weight: math.unit(4, "tons"),
  32153. name: "Front",
  32154. image: {
  32155. source: "./media/characters/shaun/front.svg",
  32156. extra: 1550/1505,
  32157. bottom: 353/1903
  32158. }
  32159. },
  32160. },
  32161. [
  32162. {
  32163. name: "Lorg",
  32164. height: math.unit(8 + 2/12, "feet"),
  32165. default: true
  32166. },
  32167. ]
  32168. ))
  32169. characterMakers.push(() => makeCharacter(
  32170. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32171. {
  32172. front: {
  32173. height: math.unit(7, "feet"),
  32174. name: "Front",
  32175. image: {
  32176. source: "./media/characters/sini/front.svg",
  32177. extra: 726/678,
  32178. bottom: 35/761
  32179. }
  32180. },
  32181. back: {
  32182. height: math.unit(7, "feet"),
  32183. name: "Back",
  32184. image: {
  32185. source: "./media/characters/sini/back.svg",
  32186. extra: 743/701,
  32187. bottom: 12/755
  32188. }
  32189. },
  32190. mawAnthro: {
  32191. height: math.unit(2.14, "feet"),
  32192. name: "Maw (Anthro)",
  32193. image: {
  32194. source: "./media/characters/sini/maw-anthro.svg"
  32195. }
  32196. },
  32197. dick: {
  32198. height: math.unit(1.45, "feet"),
  32199. name: "Dick (Anthro)",
  32200. image: {
  32201. source: "./media/characters/sini/dick-anthro.svg"
  32202. }
  32203. },
  32204. feral: {
  32205. height: math.unit(13, "feet"),
  32206. name: "Feral",
  32207. image: {
  32208. source: "./media/characters/sini/feral.svg",
  32209. extra: 814/605,
  32210. bottom: 11/825
  32211. }
  32212. },
  32213. mawFeral: {
  32214. height: math.unit(4.6, "feet"),
  32215. name: "Maw-feral",
  32216. image: {
  32217. source: "./media/characters/sini/maw-feral.svg"
  32218. }
  32219. },
  32220. footFeral: {
  32221. height: math.unit(4.2, "feet"),
  32222. name: "Foot-feral",
  32223. image: {
  32224. source: "./media/characters/sini/foot-feral.svg"
  32225. }
  32226. },
  32227. },
  32228. [
  32229. {
  32230. name: "Normal",
  32231. height: math.unit(7, "feet"),
  32232. default: true
  32233. },
  32234. ]
  32235. ))
  32236. characterMakers.push(() => makeCharacter(
  32237. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32238. {
  32239. side: {
  32240. height: math.unit(13, "meters"),
  32241. weight: math.unit(9072, "kg"),
  32242. name: "Side",
  32243. image: {
  32244. source: "./media/characters/raylldo/side.svg",
  32245. extra: 403/344,
  32246. bottom: 42/445
  32247. }
  32248. },
  32249. leaping: {
  32250. height: math.unit(12.3, "meters"),
  32251. weight: math.unit(9072, "kg"),
  32252. name: "Leaping",
  32253. image: {
  32254. source: "./media/characters/raylldo/leaping.svg",
  32255. extra: 470/249,
  32256. bottom: 13/483
  32257. }
  32258. },
  32259. flying: {
  32260. height: math.unit(18, "meters"),
  32261. weight: math.unit(9072, "kg"),
  32262. name: "Flying",
  32263. image: {
  32264. source: "./media/characters/raylldo/flying.svg"
  32265. }
  32266. },
  32267. head: {
  32268. height: math.unit(5.85, "meters"),
  32269. name: "Head",
  32270. image: {
  32271. source: "./media/characters/raylldo/head.svg"
  32272. }
  32273. },
  32274. maw: {
  32275. height: math.unit(5.32, "meters"),
  32276. name: "Maw",
  32277. image: {
  32278. source: "./media/characters/raylldo/maw.svg"
  32279. }
  32280. },
  32281. eye: {
  32282. height: math.unit(0.54, "meters"),
  32283. name: "Eye",
  32284. image: {
  32285. source: "./media/characters/raylldo/eye.svg"
  32286. }
  32287. },
  32288. },
  32289. [
  32290. {
  32291. name: "Normal",
  32292. height: math.unit(13, "meters"),
  32293. default: true
  32294. },
  32295. ]
  32296. ))
  32297. characterMakers.push(() => makeCharacter(
  32298. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32299. {
  32300. anthroFront: {
  32301. height: math.unit(9, "feet"),
  32302. weight: math.unit(600, "lb"),
  32303. name: "Anthro (Front)",
  32304. image: {
  32305. source: "./media/characters/glint/anthro-front.svg",
  32306. extra: 1097/1018,
  32307. bottom: 28/1125
  32308. }
  32309. },
  32310. anthroBack: {
  32311. height: math.unit(9, "feet"),
  32312. weight: math.unit(600, "lb"),
  32313. name: "Anthro (Back)",
  32314. image: {
  32315. source: "./media/characters/glint/anthro-back.svg",
  32316. extra: 1154/997,
  32317. bottom: 36/1190
  32318. }
  32319. },
  32320. feral: {
  32321. height: math.unit(11, "feet"),
  32322. weight: math.unit(50000, "lb"),
  32323. name: "Feral",
  32324. image: {
  32325. source: "./media/characters/glint/feral.svg",
  32326. extra: 3035/1585,
  32327. bottom: 1169/4204
  32328. }
  32329. },
  32330. dickAnthro: {
  32331. height: math.unit(0.7, "meters"),
  32332. name: "Dick (Anthro)",
  32333. image: {
  32334. source: "./media/characters/glint/dick-anthro.svg"
  32335. }
  32336. },
  32337. dickFeral: {
  32338. height: math.unit(2.65, "meters"),
  32339. name: "Dick (Feral)",
  32340. image: {
  32341. source: "./media/characters/glint/dick-feral.svg"
  32342. }
  32343. },
  32344. slitHidden: {
  32345. height: math.unit(5.85, "meters"),
  32346. name: "Slit (Hidden)",
  32347. image: {
  32348. source: "./media/characters/glint/slit-hidden.svg"
  32349. }
  32350. },
  32351. slitErect: {
  32352. height: math.unit(5.85, "meters"),
  32353. name: "Slit (Erect)",
  32354. image: {
  32355. source: "./media/characters/glint/slit-erect.svg"
  32356. }
  32357. },
  32358. mawAnthro: {
  32359. height: math.unit(0.63, "meters"),
  32360. name: "Maw (Anthro)",
  32361. image: {
  32362. source: "./media/characters/glint/maw.svg"
  32363. }
  32364. },
  32365. mawFeral: {
  32366. height: math.unit(2.89, "meters"),
  32367. name: "Maw (Feral)",
  32368. image: {
  32369. source: "./media/characters/glint/maw.svg"
  32370. }
  32371. },
  32372. },
  32373. [
  32374. {
  32375. name: "Normal",
  32376. height: math.unit(9, "feet"),
  32377. default: true
  32378. },
  32379. ]
  32380. ))
  32381. characterMakers.push(() => makeCharacter(
  32382. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32383. {
  32384. side: {
  32385. height: math.unit(15, "feet"),
  32386. weight: math.unit(5000, "kg"),
  32387. name: "Side",
  32388. image: {
  32389. source: "./media/characters/kairne/side.svg",
  32390. extra: 979/811,
  32391. bottom: 13/992
  32392. }
  32393. },
  32394. front: {
  32395. height: math.unit(15, "feet"),
  32396. weight: math.unit(5000, "kg"),
  32397. name: "Front",
  32398. image: {
  32399. source: "./media/characters/kairne/front.svg",
  32400. extra: 908/814,
  32401. bottom: 26/934
  32402. }
  32403. },
  32404. sideNsfw: {
  32405. height: math.unit(15, "feet"),
  32406. weight: math.unit(5000, "kg"),
  32407. name: "Side (NSFW)",
  32408. image: {
  32409. source: "./media/characters/kairne/side-nsfw.svg",
  32410. extra: 979/811,
  32411. bottom: 13/992
  32412. }
  32413. },
  32414. frontNsfw: {
  32415. height: math.unit(15, "feet"),
  32416. weight: math.unit(5000, "kg"),
  32417. name: "Front (NSFW)",
  32418. image: {
  32419. source: "./media/characters/kairne/front-nsfw.svg",
  32420. extra: 908/814,
  32421. bottom: 26/934
  32422. }
  32423. },
  32424. dickCaged: {
  32425. height: math.unit(0.65, "meters"),
  32426. name: "Dick-caged",
  32427. image: {
  32428. source: "./media/characters/kairne/dick-caged.svg"
  32429. }
  32430. },
  32431. dick: {
  32432. height: math.unit(0.79, "meters"),
  32433. name: "Dick",
  32434. image: {
  32435. source: "./media/characters/kairne/dick.svg"
  32436. }
  32437. },
  32438. genitals: {
  32439. height: math.unit(1.29, "meters"),
  32440. name: "Genitals",
  32441. image: {
  32442. source: "./media/characters/kairne/genitals.svg"
  32443. }
  32444. },
  32445. maw: {
  32446. height: math.unit(1.73, "meters"),
  32447. name: "Maw",
  32448. image: {
  32449. source: "./media/characters/kairne/maw.svg"
  32450. }
  32451. },
  32452. },
  32453. [
  32454. {
  32455. name: "Normal",
  32456. height: math.unit(15, "feet"),
  32457. default: true
  32458. },
  32459. ]
  32460. ))
  32461. characterMakers.push(() => makeCharacter(
  32462. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32463. {
  32464. front: {
  32465. height: math.unit(5 + 8/12, "feet"),
  32466. weight: math.unit(139, "lb"),
  32467. name: "Front",
  32468. image: {
  32469. source: "./media/characters/biscuit-jackal/front.svg",
  32470. extra: 2106/1961,
  32471. bottom: 58/2164
  32472. }
  32473. },
  32474. back: {
  32475. height: math.unit(5 + 8/12, "feet"),
  32476. weight: math.unit(139, "lb"),
  32477. name: "Back",
  32478. image: {
  32479. source: "./media/characters/biscuit-jackal/back.svg",
  32480. extra: 2132/1976,
  32481. bottom: 57/2189
  32482. }
  32483. },
  32484. werejackal: {
  32485. height: math.unit(6 + 3/12, "feet"),
  32486. weight: math.unit(188, "lb"),
  32487. name: "Werejackal",
  32488. image: {
  32489. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32490. extra: 2373/2178,
  32491. bottom: 53/2426
  32492. }
  32493. },
  32494. },
  32495. [
  32496. {
  32497. name: "Normal",
  32498. height: math.unit(5 + 8/12, "feet"),
  32499. default: true
  32500. },
  32501. ]
  32502. ))
  32503. characterMakers.push(() => makeCharacter(
  32504. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32505. {
  32506. front: {
  32507. height: math.unit(140, "cm"),
  32508. weight: math.unit(45, "kg"),
  32509. name: "Front",
  32510. image: {
  32511. source: "./media/characters/tayra-white/front.svg",
  32512. extra: 2229/2192,
  32513. bottom: 75/2304
  32514. }
  32515. },
  32516. },
  32517. [
  32518. {
  32519. name: "Normal",
  32520. height: math.unit(140, "cm"),
  32521. default: true
  32522. },
  32523. ]
  32524. ))
  32525. characterMakers.push(() => makeCharacter(
  32526. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32527. {
  32528. front: {
  32529. height: math.unit(4 + 5/12, "feet"),
  32530. name: "Front",
  32531. image: {
  32532. source: "./media/characters/scoop/front.svg",
  32533. extra: 1257/1136,
  32534. bottom: 69/1326
  32535. }
  32536. },
  32537. back: {
  32538. height: math.unit(4 + 5/12, "feet"),
  32539. name: "Back",
  32540. image: {
  32541. source: "./media/characters/scoop/back.svg",
  32542. extra: 1321/1152,
  32543. bottom: 32/1353
  32544. }
  32545. },
  32546. maw: {
  32547. height: math.unit(0.68, "feet"),
  32548. name: "Maw",
  32549. image: {
  32550. source: "./media/characters/scoop/maw.svg"
  32551. }
  32552. },
  32553. },
  32554. [
  32555. {
  32556. name: "Really Small",
  32557. height: math.unit(1, "mm")
  32558. },
  32559. {
  32560. name: "Micro",
  32561. height: math.unit(1, "inch")
  32562. },
  32563. {
  32564. name: "Normal",
  32565. height: math.unit(4 + 5/12, "feet"),
  32566. default: true
  32567. },
  32568. {
  32569. name: "Macro",
  32570. height: math.unit(200, "feet")
  32571. },
  32572. {
  32573. name: "Megamacro",
  32574. height: math.unit(3240, "feet")
  32575. },
  32576. {
  32577. name: "Teramacro",
  32578. height: math.unit(2500, "miles")
  32579. },
  32580. ]
  32581. ))
  32582. characterMakers.push(() => makeCharacter(
  32583. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32584. {
  32585. front: {
  32586. height: math.unit(15 + 7/12, "feet"),
  32587. name: "Front",
  32588. image: {
  32589. source: "./media/characters/saphinara/front.svg",
  32590. extra: 604/546,
  32591. bottom: 19/623
  32592. }
  32593. },
  32594. side: {
  32595. height: math.unit(15 + 7/12, "feet"),
  32596. name: "Side",
  32597. image: {
  32598. source: "./media/characters/saphinara/side.svg",
  32599. extra: 605/547,
  32600. bottom: 6/611
  32601. }
  32602. },
  32603. back: {
  32604. height: math.unit(15 + 7/12, "feet"),
  32605. name: "Back",
  32606. image: {
  32607. source: "./media/characters/saphinara/back.svg",
  32608. extra: 591/531,
  32609. bottom: 13/604
  32610. }
  32611. },
  32612. frontTail: {
  32613. height: math.unit(15 + 7/12, "feet"),
  32614. name: "Front (Full Tail)",
  32615. image: {
  32616. source: "./media/characters/saphinara/front-tail.svg",
  32617. extra: 748/547,
  32618. bottom: 66/814
  32619. }
  32620. },
  32621. },
  32622. [
  32623. {
  32624. name: "Normal",
  32625. height: math.unit(15 + 7/12, "feet"),
  32626. default: true
  32627. },
  32628. {
  32629. name: "Angry",
  32630. height: math.unit(30 + 6/12, "feet")
  32631. },
  32632. {
  32633. name: "Enraged",
  32634. height: math.unit(102 + 1/12, "feet")
  32635. },
  32636. ]
  32637. ))
  32638. characterMakers.push(() => makeCharacter(
  32639. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32640. {
  32641. front: {
  32642. height: math.unit(6 + 8/12, "feet"),
  32643. weight: math.unit(300, "lb"),
  32644. name: "Front",
  32645. image: {
  32646. source: "./media/characters/jrain/front.svg",
  32647. extra: 3039/2865,
  32648. bottom: 399/3438
  32649. }
  32650. },
  32651. back: {
  32652. height: math.unit(6 + 8/12, "feet"),
  32653. weight: math.unit(300, "lb"),
  32654. name: "Back",
  32655. image: {
  32656. source: "./media/characters/jrain/back.svg",
  32657. extra: 3089/2938,
  32658. bottom: 172/3261
  32659. }
  32660. },
  32661. head: {
  32662. height: math.unit(2.14, "feet"),
  32663. name: "Head",
  32664. image: {
  32665. source: "./media/characters/jrain/head.svg"
  32666. }
  32667. },
  32668. maw: {
  32669. height: math.unit(1.77, "feet"),
  32670. name: "Maw",
  32671. image: {
  32672. source: "./media/characters/jrain/maw.svg"
  32673. }
  32674. },
  32675. leftHand: {
  32676. height: math.unit(1.1, "feet"),
  32677. name: "Left Hand",
  32678. image: {
  32679. source: "./media/characters/jrain/left-hand.svg"
  32680. }
  32681. },
  32682. rightHand: {
  32683. height: math.unit(1.1, "feet"),
  32684. name: "Right Hand",
  32685. image: {
  32686. source: "./media/characters/jrain/right-hand.svg"
  32687. }
  32688. },
  32689. eye: {
  32690. height: math.unit(0.35, "feet"),
  32691. name: "Eye",
  32692. image: {
  32693. source: "./media/characters/jrain/eye.svg"
  32694. }
  32695. },
  32696. },
  32697. [
  32698. {
  32699. name: "Normal",
  32700. height: math.unit(6 + 8/12, "feet"),
  32701. default: true
  32702. },
  32703. {
  32704. name: "Casually Large",
  32705. height: math.unit(25, "feet")
  32706. },
  32707. {
  32708. name: "Giant",
  32709. height: math.unit(100, "feet")
  32710. },
  32711. {
  32712. name: "Kaiju",
  32713. height: math.unit(300, "feet")
  32714. },
  32715. ]
  32716. ))
  32717. characterMakers.push(() => makeCharacter(
  32718. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32719. {
  32720. dragon: {
  32721. height: math.unit(5, "meters"),
  32722. name: "Dragon",
  32723. image: {
  32724. source: "./media/characters/sabrina/dragon.svg",
  32725. extra: 3670 / 2365,
  32726. bottom: 333 / 4003
  32727. }
  32728. },
  32729. gryphon: {
  32730. height: math.unit(3, "meters"),
  32731. name: "Gryphon",
  32732. image: {
  32733. source: "./media/characters/sabrina/gryphon.svg",
  32734. extra: 1576 / 945,
  32735. bottom: 71 / 1647
  32736. }
  32737. },
  32738. snake: {
  32739. height: math.unit(12, "meters"),
  32740. name: "Snake",
  32741. image: {
  32742. source: "./media/characters/sabrina/snake.svg",
  32743. extra: 1758 / 1320,
  32744. bottom: 186 / 1944
  32745. }
  32746. },
  32747. collar: {
  32748. height: math.unit(1.86, "meters"),
  32749. name: "Collar",
  32750. image: {
  32751. source: "./media/characters/sabrina/collar.svg"
  32752. }
  32753. },
  32754. eye: {
  32755. height: math.unit(0.53, "meters"),
  32756. name: "Eye",
  32757. image: {
  32758. source: "./media/characters/sabrina/eye.svg"
  32759. }
  32760. },
  32761. foot: {
  32762. height: math.unit(1.86, "meters"),
  32763. name: "Foot",
  32764. image: {
  32765. source: "./media/characters/sabrina/foot.svg"
  32766. }
  32767. },
  32768. hand: {
  32769. height: math.unit(1.32, "meters"),
  32770. name: "Hand",
  32771. image: {
  32772. source: "./media/characters/sabrina/hand.svg"
  32773. }
  32774. },
  32775. head: {
  32776. height: math.unit(2.44, "meters"),
  32777. name: "Head",
  32778. image: {
  32779. source: "./media/characters/sabrina/head.svg"
  32780. }
  32781. },
  32782. headAngry: {
  32783. height: math.unit(2.44, "meters"),
  32784. name: "Head (Angry))",
  32785. image: {
  32786. source: "./media/characters/sabrina/head-angry.svg"
  32787. }
  32788. },
  32789. maw: {
  32790. height: math.unit(1.65, "meters"),
  32791. name: "Maw",
  32792. image: {
  32793. source: "./media/characters/sabrina/maw.svg"
  32794. }
  32795. },
  32796. spikes: {
  32797. height: math.unit(1.69, "meters"),
  32798. name: "Spikes",
  32799. image: {
  32800. source: "./media/characters/sabrina/spikes.svg"
  32801. }
  32802. },
  32803. stomach: {
  32804. height: math.unit(1.15, "meters"),
  32805. name: "Stomach",
  32806. image: {
  32807. source: "./media/characters/sabrina/stomach.svg"
  32808. }
  32809. },
  32810. tongue: {
  32811. height: math.unit(1.27, "meters"),
  32812. name: "Tongue",
  32813. image: {
  32814. source: "./media/characters/sabrina/tongue.svg"
  32815. }
  32816. },
  32817. wingDorsal: {
  32818. height: math.unit(4.85, "meters"),
  32819. name: "Wing (Dorsal)",
  32820. image: {
  32821. source: "./media/characters/sabrina/wing-dorsal.svg"
  32822. }
  32823. },
  32824. wingVentral: {
  32825. height: math.unit(4.85, "meters"),
  32826. name: "Wing (Ventral)",
  32827. image: {
  32828. source: "./media/characters/sabrina/wing-ventral.svg"
  32829. }
  32830. },
  32831. },
  32832. [
  32833. {
  32834. name: "Normal",
  32835. height: math.unit(5, "meters"),
  32836. default: true
  32837. },
  32838. ]
  32839. ))
  32840. characterMakers.push(() => makeCharacter(
  32841. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32842. {
  32843. frontMaid: {
  32844. height: math.unit(5 + 5/12, "feet"),
  32845. weight: math.unit(130, "lb"),
  32846. name: "Front (Maid)",
  32847. image: {
  32848. source: "./media/characters/midnight-tales/front-maid.svg",
  32849. extra: 489/454,
  32850. bottom: 61/550
  32851. }
  32852. },
  32853. frontFormal: {
  32854. height: math.unit(5 + 5/12, "feet"),
  32855. weight: math.unit(130, "lb"),
  32856. name: "Front (Formal)",
  32857. image: {
  32858. source: "./media/characters/midnight-tales/front-formal.svg",
  32859. extra: 489/454,
  32860. bottom: 61/550
  32861. }
  32862. },
  32863. back: {
  32864. height: math.unit(5 + 5/12, "feet"),
  32865. weight: math.unit(130, "lb"),
  32866. name: "Back",
  32867. image: {
  32868. source: "./media/characters/midnight-tales/back.svg",
  32869. extra: 498/456,
  32870. bottom: 33/531
  32871. }
  32872. },
  32873. frontBeast: {
  32874. height: math.unit(40, "feet"),
  32875. weight: math.unit(64000, "lb"),
  32876. name: "Front (Beast)",
  32877. image: {
  32878. source: "./media/characters/midnight-tales/front-beast.svg",
  32879. extra: 927/860,
  32880. bottom: 53/980
  32881. }
  32882. },
  32883. backBeast: {
  32884. height: math.unit(40, "feet"),
  32885. weight: math.unit(64000, "lb"),
  32886. name: "Back (Beast)",
  32887. image: {
  32888. source: "./media/characters/midnight-tales/back-beast.svg",
  32889. extra: 929/855,
  32890. bottom: 16/945
  32891. }
  32892. },
  32893. footBeast: {
  32894. height: math.unit(6.7, "feet"),
  32895. name: "Foot (Beast)",
  32896. image: {
  32897. source: "./media/characters/midnight-tales/foot-beast.svg"
  32898. }
  32899. },
  32900. headBeast: {
  32901. height: math.unit(8, "feet"),
  32902. name: "Head (Beast)",
  32903. image: {
  32904. source: "./media/characters/midnight-tales/head-beast.svg"
  32905. }
  32906. },
  32907. },
  32908. [
  32909. {
  32910. name: "Normal",
  32911. height: math.unit(5 + 5 / 12, "feet"),
  32912. default: true
  32913. },
  32914. {
  32915. name: "Macro",
  32916. height: math.unit(25, "feet")
  32917. },
  32918. ]
  32919. ))
  32920. characterMakers.push(() => makeCharacter(
  32921. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  32922. {
  32923. front: {
  32924. height: math.unit(5 + 10/12, "feet"),
  32925. name: "Front",
  32926. image: {
  32927. source: "./media/characters/argon/front.svg",
  32928. extra: 2009/1935,
  32929. bottom: 118/2127
  32930. }
  32931. },
  32932. back: {
  32933. height: math.unit(5 + 10/12, "feet"),
  32934. name: "Back",
  32935. image: {
  32936. source: "./media/characters/argon/back.svg",
  32937. extra: 2047/1992,
  32938. bottom: 20/2067
  32939. }
  32940. },
  32941. frontDressed: {
  32942. height: math.unit(5 + 10/12, "feet"),
  32943. name: "Front (Dressed)",
  32944. image: {
  32945. source: "./media/characters/argon/front-dressed.svg",
  32946. extra: 2009/1935,
  32947. bottom: 118/2127
  32948. }
  32949. },
  32950. },
  32951. [
  32952. {
  32953. name: "Normal",
  32954. height: math.unit(5 + 10/12, "feet"),
  32955. default: true
  32956. },
  32957. ]
  32958. ))
  32959. characterMakers.push(() => makeCharacter(
  32960. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  32961. {
  32962. front: {
  32963. height: math.unit(8 + 6/12, "feet"),
  32964. weight: math.unit(1150, "lb"),
  32965. name: "Front",
  32966. image: {
  32967. source: "./media/characters/kichi/front.svg",
  32968. extra: 1267/1164,
  32969. bottom: 61/1328
  32970. }
  32971. },
  32972. back: {
  32973. height: math.unit(8 + 6/12, "feet"),
  32974. weight: math.unit(1150, "lb"),
  32975. name: "Back",
  32976. image: {
  32977. source: "./media/characters/kichi/back.svg",
  32978. extra: 1273/1166,
  32979. bottom: 33/1306
  32980. }
  32981. },
  32982. },
  32983. [
  32984. {
  32985. name: "Normal",
  32986. height: math.unit(8 + 6/12, "feet"),
  32987. default: true
  32988. },
  32989. ]
  32990. ))
  32991. characterMakers.push(() => makeCharacter(
  32992. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  32993. {
  32994. front: {
  32995. height: math.unit(6, "feet"),
  32996. weight: math.unit(210, "lb"),
  32997. name: "Front",
  32998. image: {
  32999. source: "./media/characters/manetel-greyscale/front.svg",
  33000. extra: 350/312,
  33001. bottom: 8/358
  33002. }
  33003. },
  33004. },
  33005. [
  33006. {
  33007. name: "Micro",
  33008. height: math.unit(2, "inches")
  33009. },
  33010. {
  33011. name: "Normal",
  33012. height: math.unit(6, "feet"),
  33013. default: true
  33014. },
  33015. {
  33016. name: "Minimacro",
  33017. height: math.unit(17, "feet")
  33018. },
  33019. {
  33020. name: "Macro",
  33021. height: math.unit(117, "feet")
  33022. },
  33023. ]
  33024. ))
  33025. characterMakers.push(() => makeCharacter(
  33026. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33027. {
  33028. side: {
  33029. height: math.unit(5 + 1/12, "feet"),
  33030. weight: math.unit(418, "lb"),
  33031. name: "Side",
  33032. image: {
  33033. source: "./media/characters/softpurr/side.svg",
  33034. extra: 1993/1945,
  33035. bottom: 134/2127
  33036. }
  33037. },
  33038. front: {
  33039. height: math.unit(5 + 1/12, "feet"),
  33040. weight: math.unit(418, "lb"),
  33041. name: "Front",
  33042. image: {
  33043. source: "./media/characters/softpurr/front.svg",
  33044. extra: 1950/1856,
  33045. bottom: 174/2124
  33046. }
  33047. },
  33048. paw: {
  33049. height: math.unit(1, "feet"),
  33050. name: "Paw",
  33051. image: {
  33052. source: "./media/characters/softpurr/paw.svg"
  33053. }
  33054. },
  33055. },
  33056. [
  33057. {
  33058. name: "Normal",
  33059. height: math.unit(5 + 1/12, "feet"),
  33060. default: true
  33061. },
  33062. ]
  33063. ))
  33064. characterMakers.push(() => makeCharacter(
  33065. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33066. {
  33067. front: {
  33068. height: math.unit(260, "meters"),
  33069. name: "Front",
  33070. image: {
  33071. source: "./media/characters/anahita/front.svg",
  33072. extra: 665/635,
  33073. bottom: 89/754
  33074. }
  33075. },
  33076. },
  33077. [
  33078. {
  33079. name: "Macro",
  33080. height: math.unit(260, "meters"),
  33081. default: true
  33082. },
  33083. ]
  33084. ))
  33085. characterMakers.push(() => makeCharacter(
  33086. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33087. {
  33088. front: {
  33089. height: math.unit(4 + 10/12, "feet"),
  33090. weight: math.unit(160, "lb"),
  33091. name: "Front",
  33092. image: {
  33093. source: "./media/characters/chip-mouse/front.svg",
  33094. extra: 3528/3408,
  33095. bottom: 0/3528
  33096. }
  33097. },
  33098. frontNsfw: {
  33099. height: math.unit(4 + 10/12, "feet"),
  33100. weight: math.unit(160, "lb"),
  33101. name: "Front (NSFW)",
  33102. image: {
  33103. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33104. extra: 3528/3408,
  33105. bottom: 0/3528
  33106. }
  33107. },
  33108. },
  33109. [
  33110. {
  33111. name: "Normal",
  33112. height: math.unit(4 + 10/12, "feet"),
  33113. default: true
  33114. },
  33115. ]
  33116. ))
  33117. characterMakers.push(() => makeCharacter(
  33118. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33119. {
  33120. side: {
  33121. height: math.unit(10, "feet"),
  33122. weight: math.unit(14000, "lb"),
  33123. name: "Side",
  33124. image: {
  33125. source: "./media/characters/kremm/side.svg",
  33126. extra: 1390/1053,
  33127. bottom: 90/1480
  33128. }
  33129. },
  33130. gut: {
  33131. height: math.unit(5.8, "feet"),
  33132. name: "Gut",
  33133. image: {
  33134. source: "./media/characters/kremm/gut.svg"
  33135. }
  33136. },
  33137. ass: {
  33138. height: math.unit(6.1, "feet"),
  33139. name: "Ass",
  33140. image: {
  33141. source: "./media/characters/kremm/ass.svg"
  33142. }
  33143. },
  33144. jaws: {
  33145. height: math.unit(2.2, "feet"),
  33146. name: "Jaws",
  33147. image: {
  33148. source: "./media/characters/kremm/jaws.svg"
  33149. }
  33150. },
  33151. dick: {
  33152. height: math.unit(4.26, "feet"),
  33153. name: "Dick",
  33154. image: {
  33155. source: "./media/characters/kremm/dick.svg"
  33156. }
  33157. },
  33158. },
  33159. [
  33160. {
  33161. name: "Normal",
  33162. height: math.unit(10, "feet"),
  33163. default: true
  33164. },
  33165. ]
  33166. ))
  33167. characterMakers.push(() => makeCharacter(
  33168. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33169. {
  33170. front: {
  33171. height: math.unit(30, "stories"),
  33172. name: "Front",
  33173. image: {
  33174. source: "./media/characters/kai/front.svg",
  33175. extra: 1892/1718,
  33176. bottom: 162/2054
  33177. }
  33178. },
  33179. },
  33180. [
  33181. {
  33182. name: "Macro",
  33183. height: math.unit(30, "stories"),
  33184. default: true
  33185. },
  33186. ]
  33187. ))
  33188. characterMakers.push(() => makeCharacter(
  33189. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33190. {
  33191. front: {
  33192. height: math.unit(6 + 4/12, "feet"),
  33193. weight: math.unit(145, "lb"),
  33194. name: "Front",
  33195. image: {
  33196. source: "./media/characters/sykes/front.svg",
  33197. extra: 1321 / 1187,
  33198. bottom: 66 / 1387
  33199. }
  33200. },
  33201. back: {
  33202. height: math.unit(6 + 4/12, "feet"),
  33203. weight: math.unit(145, "lb"),
  33204. name: "Back",
  33205. image: {
  33206. source: "./media/characters/sykes/back.svg",
  33207. extra: 1326/1181,
  33208. bottom: 31/1357
  33209. }
  33210. },
  33211. handBack: {
  33212. height: math.unit(0.9, "feet"),
  33213. name: "Hand (Back)",
  33214. image: {
  33215. source: "./media/characters/sykes/hand-back.svg"
  33216. }
  33217. },
  33218. handFront: {
  33219. height: math.unit(0.839, "feet"),
  33220. name: "Hand (Front)",
  33221. image: {
  33222. source: "./media/characters/sykes/hand-front.svg"
  33223. }
  33224. },
  33225. leftFoot: {
  33226. height: math.unit(1.2, "feet"),
  33227. name: "Foot (Left)",
  33228. image: {
  33229. source: "./media/characters/sykes/foot-left.svg"
  33230. }
  33231. },
  33232. rightFoot: {
  33233. height: math.unit(1.2, "feet"),
  33234. name: "Foot (Right)",
  33235. image: {
  33236. source: "./media/characters/sykes/foot-right.svg"
  33237. }
  33238. },
  33239. maw: {
  33240. height: math.unit(1.93, "feet"),
  33241. name: "Maw",
  33242. image: {
  33243. source: "./media/characters/sykes/maw.svg"
  33244. }
  33245. },
  33246. teeth: {
  33247. height: math.unit(0.51, "feet"),
  33248. name: "Teeth",
  33249. image: {
  33250. source: "./media/characters/sykes/teeth.svg"
  33251. }
  33252. },
  33253. tongue: {
  33254. height: math.unit(2.13, "feet"),
  33255. name: "Tongue",
  33256. image: {
  33257. source: "./media/characters/sykes/tongue.svg"
  33258. }
  33259. },
  33260. uvula: {
  33261. height: math.unit(0.16, "feet"),
  33262. name: "Uvula",
  33263. image: {
  33264. source: "./media/characters/sykes/uvula.svg"
  33265. }
  33266. },
  33267. collar: {
  33268. height: math.unit(0.287, "feet"),
  33269. name: "Collar",
  33270. image: {
  33271. source: "./media/characters/sykes/collar.svg"
  33272. }
  33273. },
  33274. },
  33275. [
  33276. {
  33277. name: "Shrunken",
  33278. height: math.unit(5, "inches")
  33279. },
  33280. {
  33281. name: "Normal",
  33282. height: math.unit(6 + 4 / 12, "feet"),
  33283. default: true
  33284. },
  33285. {
  33286. name: "Big",
  33287. height: math.unit(15, "feet")
  33288. },
  33289. ]
  33290. ))
  33291. characterMakers.push(() => makeCharacter(
  33292. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33293. {
  33294. front: {
  33295. height: math.unit(5 + 8/12, "feet"),
  33296. weight: math.unit(190, "lb"),
  33297. name: "Front",
  33298. image: {
  33299. source: "./media/characters/oven-otter/front.svg",
  33300. extra: 1809/1740,
  33301. bottom: 181/1990
  33302. }
  33303. },
  33304. back: {
  33305. height: math.unit(5 + 8/12, "feet"),
  33306. weight: math.unit(190, "lb"),
  33307. name: "Back",
  33308. image: {
  33309. source: "./media/characters/oven-otter/back.svg",
  33310. extra: 1709/1635,
  33311. bottom: 118/1827
  33312. }
  33313. },
  33314. hand: {
  33315. height: math.unit(1.07, "feet"),
  33316. name: "Hand",
  33317. image: {
  33318. source: "./media/characters/oven-otter/hand.svg"
  33319. }
  33320. },
  33321. beans: {
  33322. height: math.unit(1.74, "feet"),
  33323. name: "Beans",
  33324. image: {
  33325. source: "./media/characters/oven-otter/beans.svg"
  33326. }
  33327. },
  33328. },
  33329. [
  33330. {
  33331. name: "Micro",
  33332. height: math.unit(0.5, "inches")
  33333. },
  33334. {
  33335. name: "Normal",
  33336. height: math.unit(5 + 8/12, "feet"),
  33337. default: true
  33338. },
  33339. {
  33340. name: "Macro",
  33341. height: math.unit(250, "feet")
  33342. },
  33343. {
  33344. name: "Really High",
  33345. height: math.unit(420, "feet")
  33346. },
  33347. ]
  33348. ))
  33349. characterMakers.push(() => makeCharacter(
  33350. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33351. {
  33352. front: {
  33353. height: math.unit(5, "meters"),
  33354. weight: math.unit(292000000000000, "kg"),
  33355. name: "Front",
  33356. image: {
  33357. source: "./media/characters/devourer/front.svg",
  33358. extra: 1800/1733,
  33359. bottom: 211/2011
  33360. }
  33361. },
  33362. maw: {
  33363. height: math.unit(1.1, "meter"),
  33364. name: "Maw",
  33365. image: {
  33366. source: "./media/characters/devourer/maw.svg"
  33367. }
  33368. },
  33369. },
  33370. [
  33371. {
  33372. name: "Small",
  33373. height: math.unit(3, "meters")
  33374. },
  33375. {
  33376. name: "Large",
  33377. height: math.unit(5, "meters"),
  33378. default: true
  33379. },
  33380. ]
  33381. ))
  33382. characterMakers.push(() => makeCharacter(
  33383. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33384. {
  33385. front: {
  33386. height: math.unit(6, "feet"),
  33387. weight: math.unit(400, "lb"),
  33388. name: "Front",
  33389. image: {
  33390. source: "./media/characters/ellarby/front.svg",
  33391. extra: 1909/1763,
  33392. bottom: 80/1989
  33393. }
  33394. },
  33395. back: {
  33396. height: math.unit(6, "feet"),
  33397. weight: math.unit(400, "lb"),
  33398. name: "Back",
  33399. image: {
  33400. source: "./media/characters/ellarby/back.svg",
  33401. extra: 1914/1784,
  33402. bottom: 172/2086
  33403. }
  33404. },
  33405. },
  33406. [
  33407. {
  33408. name: "Mischief",
  33409. height: math.unit(18, "inches")
  33410. },
  33411. {
  33412. name: "Trouble",
  33413. height: math.unit(12, "feet")
  33414. },
  33415. {
  33416. name: "Havoc",
  33417. height: math.unit(200, "feet"),
  33418. default: true
  33419. },
  33420. {
  33421. name: "Pandemonium",
  33422. height: math.unit(1, "mile")
  33423. },
  33424. {
  33425. name: "Catastrophe",
  33426. height: math.unit(100, "miles")
  33427. },
  33428. ]
  33429. ))
  33430. characterMakers.push(() => makeCharacter(
  33431. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33432. {
  33433. front: {
  33434. height: math.unit(4.7, "meters"),
  33435. weight: math.unit(6500, "kg"),
  33436. name: "Front",
  33437. image: {
  33438. source: "./media/characters/vex/front.svg",
  33439. extra: 1288/1140,
  33440. bottom: 100/1388
  33441. }
  33442. },
  33443. },
  33444. [
  33445. {
  33446. name: "Normal",
  33447. height: math.unit(4.7, "meters"),
  33448. default: true
  33449. },
  33450. ]
  33451. ))
  33452. characterMakers.push(() => makeCharacter(
  33453. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33454. {
  33455. normal: {
  33456. height: math.unit(6, "feet"),
  33457. weight: math.unit(350, "lb"),
  33458. name: "Normal",
  33459. image: {
  33460. source: "./media/characters/teshy/normal.svg",
  33461. extra: 1795/1735,
  33462. bottom: 16/1811
  33463. }
  33464. },
  33465. monsterFront: {
  33466. height: math.unit(12, "feet"),
  33467. weight: math.unit(4700, "lb"),
  33468. name: "Monster (Front)",
  33469. image: {
  33470. source: "./media/characters/teshy/monster-front.svg",
  33471. extra: 2042/2034,
  33472. bottom: 128/2170
  33473. }
  33474. },
  33475. monsterSide: {
  33476. height: math.unit(12, "feet"),
  33477. weight: math.unit(4700, "lb"),
  33478. name: "Monster (Side)",
  33479. image: {
  33480. source: "./media/characters/teshy/monster-side.svg",
  33481. extra: 2067/2056,
  33482. bottom: 70/2137
  33483. }
  33484. },
  33485. monsterBack: {
  33486. height: math.unit(12, "feet"),
  33487. weight: math.unit(4700, "lb"),
  33488. name: "Monster (Back)",
  33489. image: {
  33490. source: "./media/characters/teshy/monster-back.svg",
  33491. extra: 1921/1914,
  33492. bottom: 171/2092
  33493. }
  33494. },
  33495. },
  33496. [
  33497. {
  33498. name: "Normal",
  33499. height: math.unit(6, "feet"),
  33500. default: true
  33501. },
  33502. ]
  33503. ))
  33504. characterMakers.push(() => makeCharacter(
  33505. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33506. {
  33507. front: {
  33508. height: math.unit(6, "feet"),
  33509. name: "Front",
  33510. image: {
  33511. source: "./media/characters/ramey/front.svg",
  33512. extra: 790/787,
  33513. bottom: 27/817
  33514. }
  33515. },
  33516. },
  33517. [
  33518. {
  33519. name: "Normal",
  33520. height: math.unit(6, "feet"),
  33521. default: true
  33522. },
  33523. ]
  33524. ))
  33525. characterMakers.push(() => makeCharacter(
  33526. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33527. {
  33528. front: {
  33529. height: math.unit(5 + 5/12, "feet"),
  33530. weight: math.unit(120, "lb"),
  33531. name: "Front",
  33532. image: {
  33533. source: "./media/characters/phirae/front.svg",
  33534. extra: 2491/2436,
  33535. bottom: 38/2529
  33536. }
  33537. },
  33538. },
  33539. [
  33540. {
  33541. name: "Normal",
  33542. height: math.unit(5 + 5/12, "feet"),
  33543. default: true
  33544. },
  33545. ]
  33546. ))
  33547. characterMakers.push(() => makeCharacter(
  33548. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33549. {
  33550. front: {
  33551. height: math.unit(6, "feet"),
  33552. weight: math.unit(150, "lb"),
  33553. name: "Front",
  33554. image: {
  33555. source: "./media/characters/stagglas/front.svg",
  33556. extra: 962/882,
  33557. bottom: 53/1015
  33558. }
  33559. },
  33560. },
  33561. [
  33562. {
  33563. name: "Normal",
  33564. height: math.unit(5 + 3/12, "feet"),
  33565. default: true
  33566. },
  33567. ]
  33568. ))
  33569. characterMakers.push(() => makeCharacter(
  33570. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33571. {
  33572. front: {
  33573. height: math.unit(5 + 4/12, "feet"),
  33574. weight: math.unit(145, "lb"),
  33575. name: "Front",
  33576. image: {
  33577. source: "./media/characters/starra/front.svg",
  33578. extra: 1790/1691,
  33579. bottom: 91/1881
  33580. }
  33581. },
  33582. },
  33583. [
  33584. {
  33585. name: "Normal",
  33586. height: math.unit(5 + 4/12, "feet"),
  33587. default: true
  33588. },
  33589. ]
  33590. ))
  33591. characterMakers.push(() => makeCharacter(
  33592. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33593. {
  33594. front: {
  33595. height: math.unit(2.2, "meters"),
  33596. name: "Front",
  33597. image: {
  33598. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33599. extra: 1194/1005,
  33600. bottom: 25/1219
  33601. }
  33602. },
  33603. },
  33604. [
  33605. {
  33606. name: "Normal",
  33607. height: math.unit(2.2, "meters"),
  33608. default: true
  33609. },
  33610. ]
  33611. ))
  33612. characterMakers.push(() => makeCharacter(
  33613. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33614. {
  33615. side: {
  33616. height: math.unit(8 + 2/12, "feet"),
  33617. weight: math.unit(1240, "lb"),
  33618. name: "Side",
  33619. image: {
  33620. source: "./media/characters/mika-valentine/side.svg",
  33621. extra: 2670/2501,
  33622. bottom: 250/2920
  33623. }
  33624. },
  33625. },
  33626. [
  33627. {
  33628. name: "Normal",
  33629. height: math.unit(8 + 2/12, "feet"),
  33630. default: true
  33631. },
  33632. ]
  33633. ))
  33634. characterMakers.push(() => makeCharacter(
  33635. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33636. {
  33637. front: {
  33638. height: math.unit(7 + 2/12, "feet"),
  33639. name: "Front",
  33640. image: {
  33641. source: "./media/characters/xoltol/front.svg",
  33642. extra: 2212/2124,
  33643. bottom: 84/2296
  33644. }
  33645. },
  33646. side: {
  33647. height: math.unit(7 + 2/12, "feet"),
  33648. name: "Side",
  33649. image: {
  33650. source: "./media/characters/xoltol/side.svg",
  33651. extra: 2273/2197,
  33652. bottom: 26/2299
  33653. }
  33654. },
  33655. hand: {
  33656. height: math.unit(2.5, "feet"),
  33657. name: "Hand",
  33658. image: {
  33659. source: "./media/characters/xoltol/hand.svg"
  33660. }
  33661. },
  33662. },
  33663. [
  33664. {
  33665. name: "Small-ish",
  33666. height: math.unit(5 + 11/12, "feet")
  33667. },
  33668. {
  33669. name: "Normal",
  33670. height: math.unit(7 + 2/12, "feet")
  33671. },
  33672. {
  33673. name: "\"Macro\"",
  33674. height: math.unit(14 + 9/12, "feet"),
  33675. default: true
  33676. },
  33677. {
  33678. name: "Alternate Height",
  33679. height: math.unit(20, "feet")
  33680. },
  33681. {
  33682. name: "Actually Macro",
  33683. height: math.unit(100, "feet")
  33684. },
  33685. ]
  33686. ))
  33687. characterMakers.push(() => makeCharacter(
  33688. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33689. {
  33690. front: {
  33691. height: math.unit(5 + 2/12, "feet"),
  33692. name: "Front",
  33693. image: {
  33694. source: "./media/characters/kotetsu-redwood/front.svg",
  33695. extra: 1053/942,
  33696. bottom: 60/1113
  33697. }
  33698. },
  33699. },
  33700. [
  33701. {
  33702. name: "Normal",
  33703. height: math.unit(5 + 2/12, "feet"),
  33704. default: true
  33705. },
  33706. ]
  33707. ))
  33708. characterMakers.push(() => makeCharacter(
  33709. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33710. {
  33711. front: {
  33712. height: math.unit(2.4, "meters"),
  33713. weight: math.unit(125, "kg"),
  33714. name: "Front",
  33715. image: {
  33716. source: "./media/characters/lilith/front.svg",
  33717. extra: 1590/1513,
  33718. bottom: 203/1793
  33719. }
  33720. },
  33721. },
  33722. [
  33723. {
  33724. name: "Humanoid",
  33725. height: math.unit(2.4, "meters")
  33726. },
  33727. {
  33728. name: "Normal",
  33729. height: math.unit(6, "meters"),
  33730. default: true
  33731. },
  33732. {
  33733. name: "Largest",
  33734. height: math.unit(55, "meters")
  33735. },
  33736. ]
  33737. ))
  33738. characterMakers.push(() => makeCharacter(
  33739. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33740. {
  33741. front: {
  33742. height: math.unit(8 + 4/12, "feet"),
  33743. weight: math.unit(535, "lb"),
  33744. name: "Front",
  33745. image: {
  33746. source: "./media/characters/beh'kah-bolger/front.svg",
  33747. extra: 1660/1603,
  33748. bottom: 37/1697
  33749. }
  33750. },
  33751. },
  33752. [
  33753. {
  33754. name: "Normal",
  33755. height: math.unit(8 + 4/12, "feet"),
  33756. default: true
  33757. },
  33758. {
  33759. name: "Kaiju",
  33760. height: math.unit(250, "feet")
  33761. },
  33762. {
  33763. name: "Still Growing",
  33764. height: math.unit(10, "miles")
  33765. },
  33766. {
  33767. name: "Continental",
  33768. height: math.unit(5000, "miles")
  33769. },
  33770. {
  33771. name: "Final Form",
  33772. height: math.unit(2500000, "miles")
  33773. },
  33774. ]
  33775. ))
  33776. characterMakers.push(() => makeCharacter(
  33777. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33778. {
  33779. front: {
  33780. height: math.unit(7 + 2/12, "feet"),
  33781. weight: math.unit(230, "kg"),
  33782. name: "Front",
  33783. image: {
  33784. source: "./media/characters/tatyana-milewska/front.svg",
  33785. extra: 1199/1150,
  33786. bottom: 86/1285
  33787. }
  33788. },
  33789. },
  33790. [
  33791. {
  33792. name: "Normal",
  33793. height: math.unit(7 + 2/12, "feet"),
  33794. default: true
  33795. },
  33796. {
  33797. name: "Big",
  33798. height: math.unit(12, "feet")
  33799. },
  33800. {
  33801. name: "Minimacro",
  33802. height: math.unit(20, "feet")
  33803. },
  33804. {
  33805. name: "Macro",
  33806. height: math.unit(120, "feet")
  33807. },
  33808. ]
  33809. ))
  33810. characterMakers.push(() => makeCharacter(
  33811. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  33812. {
  33813. front: {
  33814. height: math.unit(7 + 8/12, "feet"),
  33815. weight: math.unit(152, "kg"),
  33816. name: "Front",
  33817. image: {
  33818. source: "./media/characters/helen-arri/front.svg",
  33819. extra: 440/423,
  33820. bottom: 14/454
  33821. }
  33822. },
  33823. back: {
  33824. height: math.unit(7 + 8/12, "feet"),
  33825. weight: math.unit(152, "kg"),
  33826. name: "Back",
  33827. image: {
  33828. source: "./media/characters/helen-arri/back.svg",
  33829. extra: 443/426,
  33830. bottom: 8/451
  33831. }
  33832. },
  33833. },
  33834. [
  33835. {
  33836. name: "Normal",
  33837. height: math.unit(7 + 8/12, "feet"),
  33838. default: true
  33839. },
  33840. {
  33841. name: "Big",
  33842. height: math.unit(14, "feet")
  33843. },
  33844. {
  33845. name: "Minimacro",
  33846. height: math.unit(24, "feet")
  33847. },
  33848. {
  33849. name: "Macro",
  33850. height: math.unit(140, "feet")
  33851. },
  33852. ]
  33853. ))
  33854. characterMakers.push(() => makeCharacter(
  33855. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  33856. {
  33857. front: {
  33858. height: math.unit(6, "meters"),
  33859. name: "Front",
  33860. image: {
  33861. source: "./media/characters/ehanu-rehu/front.svg",
  33862. extra: 1800/1800,
  33863. bottom: 59/1859
  33864. }
  33865. },
  33866. },
  33867. [
  33868. {
  33869. name: "Normal",
  33870. height: math.unit(6, "meters"),
  33871. default: true
  33872. },
  33873. ]
  33874. ))
  33875. characterMakers.push(() => makeCharacter(
  33876. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  33877. {
  33878. front: {
  33879. height: math.unit(7 + 3/12, "feet"),
  33880. name: "Front",
  33881. image: {
  33882. source: "./media/characters/renholder/front.svg",
  33883. extra: 3096/2960,
  33884. bottom: 250/3346
  33885. }
  33886. },
  33887. },
  33888. [
  33889. {
  33890. name: "Normal Bat",
  33891. height: math.unit(7 + 3/12, "feet"),
  33892. default: true
  33893. },
  33894. {
  33895. name: "Slightly Tall Bat",
  33896. height: math.unit(100, "feet")
  33897. },
  33898. {
  33899. name: "Big Bat",
  33900. height: math.unit(1000, "feet")
  33901. },
  33902. {
  33903. name: "City-Sized Bat",
  33904. height: math.unit(200000, "feet")
  33905. },
  33906. {
  33907. name: "Bigger Bat",
  33908. height: math.unit(10000, "miles")
  33909. },
  33910. {
  33911. name: "Solar Sized Bat",
  33912. height: math.unit(100, "AU")
  33913. },
  33914. {
  33915. name: "Galactic Bat",
  33916. height: math.unit(200000, "lightyears")
  33917. },
  33918. {
  33919. name: "Universally Known Bat",
  33920. height: math.unit(1, "universe")
  33921. },
  33922. ]
  33923. ))
  33924. characterMakers.push(() => makeCharacter(
  33925. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  33926. {
  33927. front: {
  33928. height: math.unit(6 + 11/12, "feet"),
  33929. weight: math.unit(250, "lb"),
  33930. name: "Front",
  33931. image: {
  33932. source: "./media/characters/cookiecat/front.svg",
  33933. extra: 893/827,
  33934. bottom: 14/907
  33935. }
  33936. },
  33937. },
  33938. [
  33939. {
  33940. name: "Micro",
  33941. height: math.unit(3, "inches")
  33942. },
  33943. {
  33944. name: "Normal",
  33945. height: math.unit(6 + 11/12, "feet"),
  33946. default: true
  33947. },
  33948. {
  33949. name: "Macro",
  33950. height: math.unit(100, "feet")
  33951. },
  33952. {
  33953. name: "Macro+",
  33954. height: math.unit(404, "feet")
  33955. },
  33956. {
  33957. name: "Megamacro",
  33958. height: math.unit(165, "miles")
  33959. },
  33960. {
  33961. name: "Planetary",
  33962. height: math.unit(4600, "miles")
  33963. },
  33964. ]
  33965. ))
  33966. characterMakers.push(() => makeCharacter(
  33967. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  33968. {
  33969. front: {
  33970. height: math.unit(10 + 3/12, "feet"),
  33971. weight: math.unit(1500, "lb"),
  33972. name: "Front",
  33973. image: {
  33974. source: "./media/characters/tux-kusanagi/front.svg",
  33975. extra: 944/840,
  33976. bottom: 39/983
  33977. }
  33978. },
  33979. back: {
  33980. height: math.unit(10 + 3/12, "feet"),
  33981. weight: math.unit(1500, "lb"),
  33982. name: "Back",
  33983. image: {
  33984. source: "./media/characters/tux-kusanagi/back.svg",
  33985. extra: 941/842,
  33986. bottom: 28/969
  33987. }
  33988. },
  33989. rump: {
  33990. height: math.unit(5.25, "feet"),
  33991. name: "Rump",
  33992. image: {
  33993. source: "./media/characters/tux-kusanagi/rump.svg"
  33994. }
  33995. },
  33996. beak: {
  33997. height: math.unit(1.54, "feet"),
  33998. name: "Beak",
  33999. image: {
  34000. source: "./media/characters/tux-kusanagi/beak.svg"
  34001. }
  34002. },
  34003. },
  34004. [
  34005. {
  34006. name: "Normal",
  34007. height: math.unit(10 + 3/12, "feet"),
  34008. default: true
  34009. },
  34010. ]
  34011. ))
  34012. characterMakers.push(() => makeCharacter(
  34013. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34014. {
  34015. front: {
  34016. height: math.unit(58, "feet"),
  34017. weight: math.unit(200, "tons"),
  34018. name: "Front",
  34019. image: {
  34020. source: "./media/characters/uzarmazari/front.svg",
  34021. extra: 1575/1455,
  34022. bottom: 152/1727
  34023. }
  34024. },
  34025. back: {
  34026. height: math.unit(58, "feet"),
  34027. weight: math.unit(200, "tons"),
  34028. name: "Back",
  34029. image: {
  34030. source: "./media/characters/uzarmazari/back.svg",
  34031. extra: 1585/1510,
  34032. bottom: 157/1742
  34033. }
  34034. },
  34035. head: {
  34036. height: math.unit(26, "feet"),
  34037. name: "Head",
  34038. image: {
  34039. source: "./media/characters/uzarmazari/head.svg"
  34040. }
  34041. },
  34042. },
  34043. [
  34044. {
  34045. name: "Normal",
  34046. height: math.unit(58, "feet"),
  34047. default: true
  34048. },
  34049. ]
  34050. ))
  34051. characterMakers.push(() => makeCharacter(
  34052. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34053. {
  34054. side: {
  34055. height: math.unit(15, "feet"),
  34056. name: "Side",
  34057. image: {
  34058. source: "./media/characters/akitu/side.svg",
  34059. extra: 1421/1321,
  34060. bottom: 157/1578
  34061. }
  34062. },
  34063. front: {
  34064. height: math.unit(15, "feet"),
  34065. name: "Front",
  34066. image: {
  34067. source: "./media/characters/akitu/front.svg",
  34068. extra: 1435/1326,
  34069. bottom: 232/1667
  34070. }
  34071. },
  34072. },
  34073. [
  34074. {
  34075. name: "Normal",
  34076. height: math.unit(15, "feet"),
  34077. default: true
  34078. },
  34079. ]
  34080. ))
  34081. characterMakers.push(() => makeCharacter(
  34082. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34083. {
  34084. front: {
  34085. height: math.unit(10 + 8/12, "feet"),
  34086. name: "Front",
  34087. image: {
  34088. source: "./media/characters/azalie-croixland/front.svg",
  34089. extra: 1972/1856,
  34090. bottom: 31/2003
  34091. }
  34092. },
  34093. },
  34094. [
  34095. {
  34096. name: "Original Height",
  34097. height: math.unit(5 + 4/12, "feet")
  34098. },
  34099. {
  34100. name: "Normal Height",
  34101. height: math.unit(10 + 8/12, "feet"),
  34102. default: true
  34103. },
  34104. ]
  34105. ))
  34106. characterMakers.push(() => makeCharacter(
  34107. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34108. {
  34109. side: {
  34110. height: math.unit(7 + 1/12, "feet"),
  34111. weight: math.unit(245, "lb"),
  34112. name: "Side",
  34113. image: {
  34114. source: "./media/characters/kavus-kazian/side.svg",
  34115. extra: 349/342,
  34116. bottom: 15/364
  34117. }
  34118. },
  34119. },
  34120. [
  34121. {
  34122. name: "Normal",
  34123. height: math.unit(7 + 1/12, "feet"),
  34124. default: true
  34125. },
  34126. ]
  34127. ))
  34128. characterMakers.push(() => makeCharacter(
  34129. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34130. {
  34131. normal: {
  34132. height: math.unit(5 + 11/12, "feet"),
  34133. name: "Normal",
  34134. image: {
  34135. source: "./media/characters/moonlight-rose/normal.svg",
  34136. extra: 1979/1835,
  34137. bottom: 14/1993
  34138. }
  34139. },
  34140. demon: {
  34141. height: math.unit(5, "km"),
  34142. name: "Demon",
  34143. image: {
  34144. source: "./media/characters/moonlight-rose/demon.svg",
  34145. extra: 986/916,
  34146. bottom: 28/1014
  34147. }
  34148. },
  34149. },
  34150. [
  34151. {
  34152. name: "\"Natural\" height",
  34153. height: math.unit(5 + 11/12, "feet")
  34154. },
  34155. {
  34156. name: "Comfortable Size",
  34157. height: math.unit(40, "meters")
  34158. },
  34159. {
  34160. name: "Common Size",
  34161. height: math.unit(50, "km"),
  34162. default: true
  34163. },
  34164. {
  34165. name: "Demonic",
  34166. height: math.unit(1.24415e+21, "meters")
  34167. },
  34168. ]
  34169. ))
  34170. characterMakers.push(() => makeCharacter(
  34171. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34172. {
  34173. front: {
  34174. height: math.unit(16, "feet"),
  34175. weight: math.unit(610, "kg"),
  34176. name: "Front",
  34177. image: {
  34178. source: "./media/characters/huckle/front.svg",
  34179. extra: 1731/1625,
  34180. bottom: 33/1764
  34181. }
  34182. },
  34183. back: {
  34184. height: math.unit(16, "feet"),
  34185. weight: math.unit(610, "kg"),
  34186. name: "Back",
  34187. image: {
  34188. source: "./media/characters/huckle/back.svg",
  34189. extra: 1738/1651,
  34190. bottom: 37/1775
  34191. }
  34192. },
  34193. laughing: {
  34194. height: math.unit(3.75, "feet"),
  34195. name: "Laughing",
  34196. image: {
  34197. source: "./media/characters/huckle/laughing.svg"
  34198. }
  34199. },
  34200. angry: {
  34201. height: math.unit(4.15, "feet"),
  34202. name: "Angry",
  34203. image: {
  34204. source: "./media/characters/huckle/angry.svg"
  34205. }
  34206. },
  34207. },
  34208. [
  34209. {
  34210. name: "Normal",
  34211. height: math.unit(16, "feet"),
  34212. default: true
  34213. },
  34214. {
  34215. name: "Mini Macro",
  34216. height: math.unit(463, "feet")
  34217. },
  34218. {
  34219. name: "Macro",
  34220. height: math.unit(1680, "meters")
  34221. },
  34222. {
  34223. name: "Mega Macro",
  34224. height: math.unit(175, "km")
  34225. },
  34226. {
  34227. name: "Terra Macro",
  34228. height: math.unit(32, "gigameters")
  34229. },
  34230. {
  34231. name: "Multiverse+",
  34232. height: math.unit(2.56e23, "yottameters")
  34233. },
  34234. ]
  34235. ))
  34236. characterMakers.push(() => makeCharacter(
  34237. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34238. {
  34239. front: {
  34240. height: math.unit(6 + 9/12, "feet"),
  34241. weight: math.unit(280, "lb"),
  34242. name: "Front",
  34243. image: {
  34244. source: "./media/characters/candy/front.svg",
  34245. extra: 234/217,
  34246. bottom: 11/245
  34247. }
  34248. },
  34249. },
  34250. [
  34251. {
  34252. name: "Really Small",
  34253. height: math.unit(0.1, "nm")
  34254. },
  34255. {
  34256. name: "Micro",
  34257. height: math.unit(2, "inches")
  34258. },
  34259. {
  34260. name: "Normal",
  34261. height: math.unit(6 + 9/12, "feet"),
  34262. default: true
  34263. },
  34264. {
  34265. name: "Small Macro",
  34266. height: math.unit(69, "feet")
  34267. },
  34268. {
  34269. name: "Macro",
  34270. height: math.unit(160, "feet")
  34271. },
  34272. {
  34273. name: "Megamacro",
  34274. height: math.unit(22000, "miles")
  34275. },
  34276. {
  34277. name: "Gigamacro",
  34278. height: math.unit(50000, "miles")
  34279. },
  34280. ]
  34281. ))
  34282. characterMakers.push(() => makeCharacter(
  34283. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34284. {
  34285. front: {
  34286. height: math.unit(4, "feet"),
  34287. weight: math.unit(90, "lb"),
  34288. name: "Front",
  34289. image: {
  34290. source: "./media/characters/joey-mcdonald/front.svg",
  34291. extra: 1059/852,
  34292. bottom: 33/1092
  34293. }
  34294. },
  34295. back: {
  34296. height: math.unit(4, "feet"),
  34297. weight: math.unit(90, "lb"),
  34298. name: "Back",
  34299. image: {
  34300. source: "./media/characters/joey-mcdonald/back.svg",
  34301. extra: 1077/879,
  34302. bottom: 5/1082
  34303. }
  34304. },
  34305. },
  34306. [
  34307. {
  34308. name: "Normal",
  34309. height: math.unit(4, "feet"),
  34310. default: true
  34311. },
  34312. ]
  34313. ))
  34314. characterMakers.push(() => makeCharacter(
  34315. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34316. {
  34317. front: {
  34318. height: math.unit(12 + 6/12, "feet"),
  34319. name: "Front",
  34320. image: {
  34321. source: "./media/characters/kass-lockheed/front.svg",
  34322. extra: 354/343,
  34323. bottom: 9/363
  34324. }
  34325. },
  34326. back: {
  34327. height: math.unit(12 + 6/12, "feet"),
  34328. name: "Back",
  34329. image: {
  34330. source: "./media/characters/kass-lockheed/back.svg",
  34331. extra: 364/352,
  34332. bottom: 3/367
  34333. }
  34334. },
  34335. dick: {
  34336. height: math.unit(3.12, "feet"),
  34337. name: "Dick",
  34338. image: {
  34339. source: "./media/characters/kass-lockheed/dick.svg"
  34340. }
  34341. },
  34342. head: {
  34343. height: math.unit(2.6, "feet"),
  34344. name: "Head",
  34345. image: {
  34346. source: "./media/characters/kass-lockheed/head.svg"
  34347. }
  34348. },
  34349. bleh: {
  34350. height: math.unit(2.85, "feet"),
  34351. name: "Bleh",
  34352. image: {
  34353. source: "./media/characters/kass-lockheed/bleh.svg"
  34354. }
  34355. },
  34356. smug: {
  34357. height: math.unit(2.85, "feet"),
  34358. name: "Smug",
  34359. image: {
  34360. source: "./media/characters/kass-lockheed/smug.svg"
  34361. }
  34362. },
  34363. },
  34364. [
  34365. {
  34366. name: "Normal",
  34367. height: math.unit(12 + 6/12, "feet"),
  34368. default: true
  34369. },
  34370. ]
  34371. ))
  34372. characterMakers.push(() => makeCharacter(
  34373. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34374. {
  34375. front: {
  34376. height: math.unit(6 + 2/12, "feet"),
  34377. name: "Front",
  34378. image: {
  34379. source: "./media/characters/taylor/front.svg",
  34380. extra: 639/495,
  34381. bottom: 12/651
  34382. }
  34383. },
  34384. },
  34385. [
  34386. {
  34387. name: "Normal",
  34388. height: math.unit(6 + 2/12, "feet"),
  34389. default: true
  34390. },
  34391. {
  34392. name: "Big",
  34393. height: math.unit(15, "feet")
  34394. },
  34395. {
  34396. name: "Lorg",
  34397. height: math.unit(80, "feet")
  34398. },
  34399. {
  34400. name: "Too Lorg",
  34401. height: math.unit(120, "feet")
  34402. },
  34403. ]
  34404. ))
  34405. characterMakers.push(() => makeCharacter(
  34406. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34407. {
  34408. front: {
  34409. height: math.unit(15, "feet"),
  34410. name: "Front",
  34411. image: {
  34412. source: "./media/characters/kaizer/front.svg",
  34413. extra: 1612/1436,
  34414. bottom: 43/1655
  34415. }
  34416. },
  34417. },
  34418. [
  34419. {
  34420. name: "Normal",
  34421. height: math.unit(15, "feet"),
  34422. default: true
  34423. },
  34424. ]
  34425. ))
  34426. characterMakers.push(() => makeCharacter(
  34427. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34428. {
  34429. front: {
  34430. height: math.unit(2, "feet"),
  34431. weight: math.unit(30, "lb"),
  34432. name: "Front",
  34433. image: {
  34434. source: "./media/characters/sandy/front.svg",
  34435. extra: 1439/1307,
  34436. bottom: 194/1633
  34437. }
  34438. },
  34439. },
  34440. [
  34441. {
  34442. name: "Normal",
  34443. height: math.unit(2, "feet"),
  34444. default: true
  34445. },
  34446. ]
  34447. ))
  34448. characterMakers.push(() => makeCharacter(
  34449. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34450. {
  34451. front: {
  34452. height: math.unit(3, "feet"),
  34453. name: "Front",
  34454. image: {
  34455. source: "./media/characters/mellvi/front.svg",
  34456. extra: 1831/1630,
  34457. bottom: 58/1889
  34458. }
  34459. },
  34460. },
  34461. [
  34462. {
  34463. name: "Normal",
  34464. height: math.unit(3, "feet"),
  34465. default: true
  34466. },
  34467. ]
  34468. ))
  34469. characterMakers.push(() => makeCharacter(
  34470. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34471. {
  34472. front: {
  34473. height: math.unit(5 + 11/12, "feet"),
  34474. weight: math.unit(200, "lb"),
  34475. name: "Front",
  34476. image: {
  34477. source: "./media/characters/shirou/front.svg",
  34478. extra: 2491/2383,
  34479. bottom: 189/2680
  34480. }
  34481. },
  34482. back: {
  34483. height: math.unit(5 + 11/12, "feet"),
  34484. weight: math.unit(200, "lb"),
  34485. name: "Back",
  34486. image: {
  34487. source: "./media/characters/shirou/back.svg",
  34488. extra: 2554/2450,
  34489. bottom: 76/2630
  34490. }
  34491. },
  34492. },
  34493. [
  34494. {
  34495. name: "Normal",
  34496. height: math.unit(5 + 11/12, "feet"),
  34497. default: true
  34498. },
  34499. ]
  34500. ))
  34501. characterMakers.push(() => makeCharacter(
  34502. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34503. {
  34504. front: {
  34505. height: math.unit(6 + 3/12, "feet"),
  34506. weight: math.unit(177, "lb"),
  34507. name: "Front",
  34508. image: {
  34509. source: "./media/characters/noryu/front.svg",
  34510. extra: 973/885,
  34511. bottom: 10/983
  34512. }
  34513. },
  34514. },
  34515. [
  34516. {
  34517. name: "Normal",
  34518. height: math.unit(6 + 3/12, "feet"),
  34519. default: true
  34520. },
  34521. ]
  34522. ))
  34523. characterMakers.push(() => makeCharacter(
  34524. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34525. {
  34526. front: {
  34527. height: math.unit(5 + 6/12, "feet"),
  34528. weight: math.unit(170, "lb"),
  34529. name: "Front",
  34530. image: {
  34531. source: "./media/characters/mevolas-rubenido/front.svg",
  34532. extra: 2109/1901,
  34533. bottom: 96/2205
  34534. }
  34535. },
  34536. },
  34537. [
  34538. {
  34539. name: "Normal",
  34540. height: math.unit(5 + 6/12, "feet"),
  34541. default: true
  34542. },
  34543. ]
  34544. ))
  34545. characterMakers.push(() => makeCharacter(
  34546. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34547. {
  34548. front: {
  34549. height: math.unit(100, "feet"),
  34550. name: "Front",
  34551. image: {
  34552. source: "./media/characters/dee/front.svg",
  34553. extra: 2153/2036,
  34554. bottom: 59/2212
  34555. }
  34556. },
  34557. back: {
  34558. height: math.unit(100, "feet"),
  34559. name: "Back",
  34560. image: {
  34561. source: "./media/characters/dee/back.svg",
  34562. extra: 2183/2058,
  34563. bottom: 75/2258
  34564. }
  34565. },
  34566. foot: {
  34567. height: math.unit(19.43, "feet"),
  34568. name: "Foot",
  34569. image: {
  34570. source: "./media/characters/dee/foot.svg"
  34571. }
  34572. },
  34573. hoof: {
  34574. height: math.unit(20.6, "feet"),
  34575. name: "Hoof",
  34576. image: {
  34577. source: "./media/characters/dee/hoof.svg"
  34578. }
  34579. },
  34580. },
  34581. [
  34582. {
  34583. name: "Macro",
  34584. height: math.unit(100, "feet"),
  34585. default: true
  34586. },
  34587. ]
  34588. ))
  34589. characterMakers.push(() => makeCharacter(
  34590. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34591. {
  34592. front: {
  34593. height: math.unit(5 + 6/12, "feet"),
  34594. name: "Front",
  34595. image: {
  34596. source: "./media/characters/teh/front.svg",
  34597. extra: 1002/847,
  34598. bottom: 62/1064
  34599. }
  34600. },
  34601. },
  34602. [
  34603. {
  34604. name: "Normal",
  34605. height: math.unit(5 + 6/12, "feet"),
  34606. default: true
  34607. },
  34608. ]
  34609. ))
  34610. characterMakers.push(() => makeCharacter(
  34611. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34612. {
  34613. side: {
  34614. height: math.unit(6 + 1/12, "feet"),
  34615. weight: math.unit(204, "lb"),
  34616. name: "Side",
  34617. image: {
  34618. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34619. extra: 974/775,
  34620. bottom: 169/1143
  34621. }
  34622. },
  34623. sitting: {
  34624. height: math.unit(6 + 2/12, "feet"),
  34625. weight: math.unit(204, "lb"),
  34626. name: "Sitting",
  34627. image: {
  34628. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34629. extra: 1175/964,
  34630. bottom: 378/1553
  34631. }
  34632. },
  34633. },
  34634. [
  34635. {
  34636. name: "Normal",
  34637. height: math.unit(6 + 1/12, "feet"),
  34638. default: true
  34639. },
  34640. ]
  34641. ))
  34642. characterMakers.push(() => makeCharacter(
  34643. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34644. {
  34645. front: {
  34646. height: math.unit(6, "inches"),
  34647. name: "Front",
  34648. image: {
  34649. source: "./media/characters/tululi/front.svg",
  34650. extra: 1997/1876,
  34651. bottom: 20/2017
  34652. }
  34653. },
  34654. },
  34655. [
  34656. {
  34657. name: "Normal",
  34658. height: math.unit(6, "inches"),
  34659. default: true
  34660. },
  34661. ]
  34662. ))
  34663. characterMakers.push(() => makeCharacter(
  34664. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34665. {
  34666. front: {
  34667. height: math.unit(4 + 1/12, "feet"),
  34668. name: "Front",
  34669. image: {
  34670. source: "./media/characters/star/front.svg",
  34671. extra: 1493/1189,
  34672. bottom: 48/1541
  34673. }
  34674. },
  34675. },
  34676. [
  34677. {
  34678. name: "Normal",
  34679. height: math.unit(4 + 1/12, "feet"),
  34680. default: true
  34681. },
  34682. ]
  34683. ))
  34684. characterMakers.push(() => makeCharacter(
  34685. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34686. {
  34687. front: {
  34688. height: math.unit(6 + 3/12, "feet"),
  34689. name: "Front",
  34690. image: {
  34691. source: "./media/characters/comet/front.svg",
  34692. extra: 1681/1462,
  34693. bottom: 26/1707
  34694. }
  34695. },
  34696. },
  34697. [
  34698. {
  34699. name: "Normal",
  34700. height: math.unit(6 + 3/12, "feet"),
  34701. default: true
  34702. },
  34703. ]
  34704. ))
  34705. characterMakers.push(() => makeCharacter(
  34706. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34707. {
  34708. front: {
  34709. height: math.unit(950, "feet"),
  34710. name: "Front",
  34711. image: {
  34712. source: "./media/characters/vortex/front.svg",
  34713. extra: 1497/1434,
  34714. bottom: 56/1553
  34715. }
  34716. },
  34717. maw: {
  34718. height: math.unit(285, "feet"),
  34719. name: "Maw",
  34720. image: {
  34721. source: "./media/characters/vortex/maw.svg"
  34722. }
  34723. },
  34724. },
  34725. [
  34726. {
  34727. name: "Macro",
  34728. height: math.unit(950, "feet"),
  34729. default: true
  34730. },
  34731. ]
  34732. ))
  34733. characterMakers.push(() => makeCharacter(
  34734. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34735. {
  34736. front: {
  34737. height: math.unit(600, "feet"),
  34738. weight: math.unit(0.02, "grams"),
  34739. name: "Front",
  34740. image: {
  34741. source: "./media/characters/doodle/front.svg",
  34742. extra: 1578/1413,
  34743. bottom: 37/1615
  34744. }
  34745. },
  34746. },
  34747. [
  34748. {
  34749. name: "Macro",
  34750. height: math.unit(600, "feet"),
  34751. default: true
  34752. },
  34753. ]
  34754. ))
  34755. characterMakers.push(() => makeCharacter(
  34756. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  34757. {
  34758. front: {
  34759. height: math.unit(6 + 6/12, "feet"),
  34760. name: "Front",
  34761. image: {
  34762. source: "./media/characters/jai/front.svg",
  34763. extra: 1645/1534,
  34764. bottom: 115/1760
  34765. }
  34766. },
  34767. },
  34768. [
  34769. {
  34770. name: "Normal",
  34771. height: math.unit(6 + 6/12, "feet"),
  34772. default: true
  34773. },
  34774. ]
  34775. ))
  34776. characterMakers.push(() => makeCharacter(
  34777. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  34778. {
  34779. front: {
  34780. height: math.unit(6 + 8/12, "feet"),
  34781. name: "Front",
  34782. image: {
  34783. source: "./media/characters/pixel/front.svg",
  34784. extra: 1900/1735,
  34785. bottom: 63/1963
  34786. }
  34787. },
  34788. },
  34789. [
  34790. {
  34791. name: "Normal",
  34792. height: math.unit(6 + 8/12, "feet"),
  34793. default: true
  34794. },
  34795. ]
  34796. ))
  34797. characterMakers.push(() => makeCharacter(
  34798. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  34799. {
  34800. front: {
  34801. height: math.unit(4 + 11/12, "feet"),
  34802. weight: math.unit(111, "lb"),
  34803. name: "Front",
  34804. image: {
  34805. source: "./media/characters/rhett/front.svg",
  34806. extra: 1682/1586,
  34807. bottom: 92/1774
  34808. }
  34809. },
  34810. },
  34811. [
  34812. {
  34813. name: "Mini",
  34814. height: math.unit(1 + 1/12, "feet")
  34815. },
  34816. {
  34817. name: "Normal",
  34818. height: math.unit(4 + 11/12, "feet"),
  34819. default: true
  34820. },
  34821. ]
  34822. ))
  34823. characterMakers.push(() => makeCharacter(
  34824. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  34825. {
  34826. front: {
  34827. height: math.unit(3 + 3/12, "feet"),
  34828. name: "Front",
  34829. image: {
  34830. source: "./media/characters/penny/front.svg",
  34831. extra: 1406/1311,
  34832. bottom: 26/1432
  34833. }
  34834. },
  34835. },
  34836. [
  34837. {
  34838. name: "Normal",
  34839. height: math.unit(3 + 3/12, "feet"),
  34840. default: true
  34841. },
  34842. ]
  34843. ))
  34844. characterMakers.push(() => makeCharacter(
  34845. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  34846. {
  34847. front: {
  34848. height: math.unit(4 + 11/12, "feet"),
  34849. name: "Front",
  34850. image: {
  34851. source: "./media/characters/monty/front.svg",
  34852. extra: 1479/1209,
  34853. bottom: 0/1479
  34854. }
  34855. },
  34856. },
  34857. [
  34858. {
  34859. name: "Normal",
  34860. height: math.unit(4 + 11/12, "feet"),
  34861. default: true
  34862. },
  34863. ]
  34864. ))
  34865. characterMakers.push(() => makeCharacter(
  34866. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  34867. {
  34868. front: {
  34869. height: math.unit(8 + 4/12, "feet"),
  34870. name: "Front",
  34871. image: {
  34872. source: "./media/characters/sterling/front.svg",
  34873. extra: 1420/1236,
  34874. bottom: 27/1447
  34875. }
  34876. },
  34877. },
  34878. [
  34879. {
  34880. name: "Normal",
  34881. height: math.unit(8 + 4/12, "feet"),
  34882. default: true
  34883. },
  34884. ]
  34885. ))
  34886. characterMakers.push(() => makeCharacter(
  34887. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  34888. {
  34889. front: {
  34890. height: math.unit(15, "feet"),
  34891. name: "Front",
  34892. image: {
  34893. source: "./media/characters/marble/front.svg",
  34894. extra: 973/937,
  34895. bottom: 32/1005
  34896. }
  34897. },
  34898. },
  34899. [
  34900. {
  34901. name: "Normal",
  34902. height: math.unit(15, "feet"),
  34903. default: true
  34904. },
  34905. ]
  34906. ))
  34907. characterMakers.push(() => makeCharacter(
  34908. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  34909. {
  34910. front: {
  34911. height: math.unit(3, "inches"),
  34912. name: "Front",
  34913. image: {
  34914. source: "./media/characters/powder/front.svg",
  34915. extra: 1504/1334,
  34916. bottom: 518/2022
  34917. }
  34918. },
  34919. },
  34920. [
  34921. {
  34922. name: "Normal",
  34923. height: math.unit(3, "inches"),
  34924. default: true
  34925. },
  34926. ]
  34927. ))
  34928. characterMakers.push(() => makeCharacter(
  34929. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  34930. {
  34931. front: {
  34932. height: math.unit(4 + 5/12, "feet"),
  34933. name: "Front",
  34934. image: {
  34935. source: "./media/characters/joey-raccoon/front.svg",
  34936. extra: 1273/1197,
  34937. bottom: 0/1273
  34938. }
  34939. },
  34940. },
  34941. [
  34942. {
  34943. name: "Normal",
  34944. height: math.unit(4 + 5/12, "feet"),
  34945. default: true
  34946. },
  34947. ]
  34948. ))
  34949. characterMakers.push(() => makeCharacter(
  34950. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  34951. {
  34952. front: {
  34953. height: math.unit(8 + 4/12, "feet"),
  34954. name: "Front",
  34955. image: {
  34956. source: "./media/characters/vick/front.svg",
  34957. extra: 2187/2118,
  34958. bottom: 47/2234
  34959. }
  34960. },
  34961. },
  34962. [
  34963. {
  34964. name: "Normal",
  34965. height: math.unit(8 + 4/12, "feet"),
  34966. default: true
  34967. },
  34968. ]
  34969. ))
  34970. characterMakers.push(() => makeCharacter(
  34971. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  34972. {
  34973. front: {
  34974. height: math.unit(5 + 5/12, "feet"),
  34975. name: "Front",
  34976. image: {
  34977. source: "./media/characters/mitsy/front.svg",
  34978. extra: 1842/1695,
  34979. bottom: 0/1842
  34980. }
  34981. },
  34982. },
  34983. [
  34984. {
  34985. name: "Normal",
  34986. height: math.unit(5 + 5/12, "feet"),
  34987. default: true
  34988. },
  34989. ]
  34990. ))
  34991. characterMakers.push(() => makeCharacter(
  34992. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  34993. {
  34994. front: {
  34995. height: math.unit(6 + 3/12, "feet"),
  34996. name: "Front",
  34997. image: {
  34998. source: "./media/characters/silvy/front.svg",
  34999. extra: 1995/1836,
  35000. bottom: 225/2220
  35001. }
  35002. },
  35003. },
  35004. [
  35005. {
  35006. name: "Normal",
  35007. height: math.unit(6 + 3/12, "feet"),
  35008. default: true
  35009. },
  35010. ]
  35011. ))
  35012. characterMakers.push(() => makeCharacter(
  35013. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35014. {
  35015. front: {
  35016. height: math.unit(3 + 8/12, "feet"),
  35017. name: "Front",
  35018. image: {
  35019. source: "./media/characters/rodney/front.svg",
  35020. extra: 1956/1747,
  35021. bottom: 31/1987
  35022. }
  35023. },
  35024. frontDressed: {
  35025. height: math.unit(2.9, "feet"),
  35026. name: "Front (Dressed)",
  35027. image: {
  35028. source: "./media/characters/rodney/front-dressed.svg",
  35029. extra: 1382/1241,
  35030. bottom: 385/1767
  35031. }
  35032. },
  35033. },
  35034. [
  35035. {
  35036. name: "Normal",
  35037. height: math.unit(3 + 8/12, "feet"),
  35038. default: true
  35039. },
  35040. ]
  35041. ))
  35042. characterMakers.push(() => makeCharacter(
  35043. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35044. {
  35045. front: {
  35046. height: math.unit(5 + 9/12, "feet"),
  35047. weight: math.unit(194, "lbs"),
  35048. name: "Front",
  35049. image: {
  35050. source: "./media/characters/zakail-sudekai/front.svg",
  35051. extra: 2696/2533,
  35052. bottom: 248/2944
  35053. }
  35054. },
  35055. maw: {
  35056. height: math.unit(1.35, "feet"),
  35057. name: "Maw",
  35058. image: {
  35059. source: "./media/characters/zakail-sudekai/maw.svg"
  35060. }
  35061. },
  35062. },
  35063. [
  35064. {
  35065. name: "Normal",
  35066. height: math.unit(5 + 9/12, "feet"),
  35067. default: true
  35068. },
  35069. ]
  35070. ))
  35071. characterMakers.push(() => makeCharacter(
  35072. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35073. {
  35074. front: {
  35075. height: math.unit(8 + 4/12, "feet"),
  35076. weight: math.unit(1200, "lb"),
  35077. name: "Front",
  35078. image: {
  35079. source: "./media/characters/eleanor/front.svg",
  35080. extra: 1226/1192,
  35081. bottom: 52/1278
  35082. }
  35083. },
  35084. back: {
  35085. height: math.unit(8 + 4/12, "feet"),
  35086. weight: math.unit(1200, "lb"),
  35087. name: "Back",
  35088. image: {
  35089. source: "./media/characters/eleanor/back.svg",
  35090. extra: 1242/1184,
  35091. bottom: 60/1302
  35092. }
  35093. },
  35094. head: {
  35095. height: math.unit(2.62, "feet"),
  35096. name: "Head",
  35097. image: {
  35098. source: "./media/characters/eleanor/head.svg"
  35099. }
  35100. },
  35101. },
  35102. [
  35103. {
  35104. name: "Normal",
  35105. height: math.unit(8 + 4/12, "feet"),
  35106. default: true
  35107. },
  35108. ]
  35109. ))
  35110. characterMakers.push(() => makeCharacter(
  35111. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35112. {
  35113. front: {
  35114. height: math.unit(8 + 4/12, "feet"),
  35115. weight: math.unit(750, "lb"),
  35116. name: "Front",
  35117. image: {
  35118. source: "./media/characters/tanya/front.svg",
  35119. extra: 1749/1615,
  35120. bottom: 33/1782
  35121. }
  35122. },
  35123. },
  35124. [
  35125. {
  35126. name: "Normal",
  35127. height: math.unit(8 + 4/12, "feet"),
  35128. default: true
  35129. },
  35130. ]
  35131. ))
  35132. characterMakers.push(() => makeCharacter(
  35133. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35134. {
  35135. front: {
  35136. height: math.unit(5, "feet"),
  35137. weight: math.unit(225, "lb"),
  35138. name: "Front",
  35139. image: {
  35140. source: "./media/characters/cindy/front.svg",
  35141. extra: 1320/1250,
  35142. bottom: 42/1362
  35143. }
  35144. },
  35145. frontDressed: {
  35146. height: math.unit(5, "feet"),
  35147. weight: math.unit(225, "lb"),
  35148. name: "Front (Dressed)",
  35149. image: {
  35150. source: "./media/characters/cindy/front-dressed.svg",
  35151. extra: 1320/1250,
  35152. bottom: 42/1362
  35153. }
  35154. },
  35155. back: {
  35156. height: math.unit(5, "feet"),
  35157. weight: math.unit(225, "lb"),
  35158. name: "Back",
  35159. image: {
  35160. source: "./media/characters/cindy/back.svg",
  35161. extra: 1384/1346,
  35162. bottom: 14/1398
  35163. }
  35164. },
  35165. },
  35166. [
  35167. {
  35168. name: "Normal",
  35169. height: math.unit(5, "feet"),
  35170. default: true
  35171. },
  35172. ]
  35173. ))
  35174. characterMakers.push(() => makeCharacter(
  35175. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35176. {
  35177. front: {
  35178. height: math.unit(6 + 9/12, "feet"),
  35179. weight: math.unit(440, "lb"),
  35180. name: "Front",
  35181. image: {
  35182. source: "./media/characters/wilbur-owen/front.svg",
  35183. extra: 1575/1448,
  35184. bottom: 72/1647
  35185. }
  35186. },
  35187. back: {
  35188. height: math.unit(6 + 9/12, "feet"),
  35189. weight: math.unit(440, "lb"),
  35190. name: "Back",
  35191. image: {
  35192. source: "./media/characters/wilbur-owen/back.svg",
  35193. extra: 1578/1445,
  35194. bottom: 36/1614
  35195. }
  35196. },
  35197. },
  35198. [
  35199. {
  35200. name: "Normal",
  35201. height: math.unit(6 + 9/12, "feet"),
  35202. default: true
  35203. },
  35204. ]
  35205. ))
  35206. characterMakers.push(() => makeCharacter(
  35207. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35208. {
  35209. front: {
  35210. height: math.unit(6 + 5/12, "feet"),
  35211. weight: math.unit(650, "lb"),
  35212. name: "Front",
  35213. image: {
  35214. source: "./media/characters/keegan/front.svg",
  35215. extra: 2387/2198,
  35216. bottom: 33/2420
  35217. }
  35218. },
  35219. side: {
  35220. height: math.unit(6 + 5/12, "feet"),
  35221. weight: math.unit(650, "lb"),
  35222. name: "Side",
  35223. image: {
  35224. source: "./media/characters/keegan/side.svg",
  35225. extra: 2390/2202,
  35226. bottom: 47/2437
  35227. }
  35228. },
  35229. back: {
  35230. height: math.unit(6 + 5/12, "feet"),
  35231. weight: math.unit(650, "lb"),
  35232. name: "Back",
  35233. image: {
  35234. source: "./media/characters/keegan/back.svg",
  35235. extra: 2418/2268,
  35236. bottom: 15/2433
  35237. }
  35238. },
  35239. frontSfw: {
  35240. height: math.unit(6 + 5/12, "feet"),
  35241. weight: math.unit(650, "lb"),
  35242. name: "Front (SFW)",
  35243. image: {
  35244. source: "./media/characters/keegan/front-sfw.svg",
  35245. extra: 2387/2198,
  35246. bottom: 33/2420
  35247. }
  35248. },
  35249. beans: {
  35250. height: math.unit(1.85, "feet"),
  35251. name: "Beans",
  35252. image: {
  35253. source: "./media/characters/keegan/beans.svg"
  35254. }
  35255. },
  35256. },
  35257. [
  35258. {
  35259. name: "Normal",
  35260. height: math.unit(6 + 5/12, "feet"),
  35261. default: true
  35262. },
  35263. ]
  35264. ))
  35265. characterMakers.push(() => makeCharacter(
  35266. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35267. {
  35268. front: {
  35269. height: math.unit(9, "feet"),
  35270. name: "Front",
  35271. image: {
  35272. source: "./media/characters/colton/front.svg",
  35273. extra: 1589/1326,
  35274. bottom: 139/1728
  35275. }
  35276. },
  35277. },
  35278. [
  35279. {
  35280. name: "Normal",
  35281. height: math.unit(9, "feet"),
  35282. default: true
  35283. },
  35284. ]
  35285. ))
  35286. characterMakers.push(() => makeCharacter(
  35287. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35288. {
  35289. front: {
  35290. height: math.unit(2 + 9/12, "feet"),
  35291. name: "Front",
  35292. image: {
  35293. source: "./media/characters/bora/front.svg",
  35294. extra: 1265/1250,
  35295. bottom: 24/1289
  35296. }
  35297. },
  35298. },
  35299. [
  35300. {
  35301. name: "Normal",
  35302. height: math.unit(2 + 9/12, "feet"),
  35303. default: true
  35304. },
  35305. ]
  35306. ))
  35307. characterMakers.push(() => makeCharacter(
  35308. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35309. {
  35310. front: {
  35311. height: math.unit(8, "feet"),
  35312. name: "Front",
  35313. image: {
  35314. source: "./media/characters/myu-myu/front.svg",
  35315. extra: 1949/1857,
  35316. bottom: 90/2039
  35317. }
  35318. },
  35319. },
  35320. [
  35321. {
  35322. name: "Normal",
  35323. height: math.unit(8, "feet"),
  35324. default: true
  35325. },
  35326. {
  35327. name: "Big",
  35328. height: math.unit(15, "feet")
  35329. },
  35330. {
  35331. name: "BIG",
  35332. height: math.unit(25, "feet")
  35333. },
  35334. ]
  35335. ))
  35336. characterMakers.push(() => makeCharacter(
  35337. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35338. {
  35339. side: {
  35340. height: math.unit(7 + 5/12, "feet"),
  35341. weight: math.unit(2800, "lb"),
  35342. name: "Side",
  35343. image: {
  35344. source: "./media/characters/haloren/side.svg",
  35345. extra: 1793/409,
  35346. bottom: 59/1852
  35347. }
  35348. },
  35349. frontPaw: {
  35350. height: math.unit(2.36, "feet"),
  35351. name: "Front paw",
  35352. image: {
  35353. source: "./media/characters/haloren/front-paw.svg"
  35354. }
  35355. },
  35356. hindPaw: {
  35357. height: math.unit(3.18, "feet"),
  35358. name: "Hind paw",
  35359. image: {
  35360. source: "./media/characters/haloren/hind-paw.svg"
  35361. }
  35362. },
  35363. maw: {
  35364. height: math.unit(5.05, "feet"),
  35365. name: "Maw",
  35366. image: {
  35367. source: "./media/characters/haloren/maw.svg"
  35368. }
  35369. },
  35370. dick: {
  35371. height: math.unit(2.90, "feet"),
  35372. name: "Dick",
  35373. image: {
  35374. source: "./media/characters/haloren/dick.svg"
  35375. }
  35376. },
  35377. },
  35378. [
  35379. {
  35380. name: "Normal",
  35381. height: math.unit(7 + 5/12, "feet"),
  35382. default: true
  35383. },
  35384. {
  35385. name: "Enhanced",
  35386. height: math.unit(14 + 3/12, "feet")
  35387. },
  35388. ]
  35389. ))
  35390. characterMakers.push(() => makeCharacter(
  35391. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35392. {
  35393. front: {
  35394. height: math.unit(171, "cm"),
  35395. name: "Front",
  35396. image: {
  35397. source: "./media/characters/kimmy/front.svg",
  35398. extra: 1491/1435,
  35399. bottom: 53/1544
  35400. }
  35401. },
  35402. },
  35403. [
  35404. {
  35405. name: "Small",
  35406. height: math.unit(9, "cm")
  35407. },
  35408. {
  35409. name: "Normal",
  35410. height: math.unit(171, "cm"),
  35411. default: true
  35412. },
  35413. ]
  35414. ))
  35415. characterMakers.push(() => makeCharacter(
  35416. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35417. {
  35418. front: {
  35419. height: math.unit(8, "feet"),
  35420. weight: math.unit(300, "lb"),
  35421. name: "Front",
  35422. image: {
  35423. source: "./media/characters/galeboomer/front.svg",
  35424. extra: 4651/4415,
  35425. bottom: 162/4813
  35426. }
  35427. },
  35428. back: {
  35429. height: math.unit(8, "feet"),
  35430. weight: math.unit(300, "lb"),
  35431. name: "Back",
  35432. image: {
  35433. source: "./media/characters/galeboomer/back.svg",
  35434. extra: 4544/4314,
  35435. bottom: 16/4560
  35436. }
  35437. },
  35438. frontAlt: {
  35439. height: math.unit(8, "feet"),
  35440. weight: math.unit(300, "lb"),
  35441. name: "Front (Alt)",
  35442. image: {
  35443. source: "./media/characters/galeboomer/front-alt.svg",
  35444. extra: 4458/4228,
  35445. bottom: 68/4526
  35446. }
  35447. },
  35448. maw: {
  35449. height: math.unit(1.2, "feet"),
  35450. name: "Maw",
  35451. image: {
  35452. source: "./media/characters/galeboomer/maw.svg"
  35453. }
  35454. },
  35455. },
  35456. [
  35457. {
  35458. name: "Normal",
  35459. height: math.unit(8, "feet"),
  35460. default: true
  35461. },
  35462. ]
  35463. ))
  35464. characterMakers.push(() => makeCharacter(
  35465. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35466. {
  35467. front: {
  35468. height: math.unit(5 + 9/12, "feet"),
  35469. weight: math.unit(120, "lb"),
  35470. name: "Front",
  35471. image: {
  35472. source: "./media/characters/chyr/front.svg",
  35473. extra: 1323/1254,
  35474. bottom: 63/1386
  35475. }
  35476. },
  35477. back: {
  35478. height: math.unit(5 + 9/12, "feet"),
  35479. weight: math.unit(120, "lb"),
  35480. name: "Back",
  35481. image: {
  35482. source: "./media/characters/chyr/back.svg",
  35483. extra: 1323/1252,
  35484. bottom: 48/1371
  35485. }
  35486. },
  35487. },
  35488. [
  35489. {
  35490. name: "Normal",
  35491. height: math.unit(5 + 9/12, "feet"),
  35492. default: true
  35493. },
  35494. ]
  35495. ))
  35496. characterMakers.push(() => makeCharacter(
  35497. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35498. {
  35499. front: {
  35500. height: math.unit(7, "feet"),
  35501. weight: math.unit(310, "lb"),
  35502. name: "Front",
  35503. image: {
  35504. source: "./media/characters/solarus/front.svg",
  35505. extra: 2415/2021,
  35506. bottom: 103/2518
  35507. }
  35508. },
  35509. back: {
  35510. height: math.unit(7, "feet"),
  35511. weight: math.unit(310, "lb"),
  35512. name: "Back",
  35513. image: {
  35514. source: "./media/characters/solarus/back.svg",
  35515. extra: 2463/2089,
  35516. bottom: 79/2542
  35517. }
  35518. },
  35519. },
  35520. [
  35521. {
  35522. name: "Normal",
  35523. height: math.unit(7, "feet"),
  35524. default: true
  35525. },
  35526. ]
  35527. ))
  35528. characterMakers.push(() => makeCharacter(
  35529. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35530. {
  35531. front: {
  35532. height: math.unit(16, "feet"),
  35533. name: "Front",
  35534. image: {
  35535. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35536. extra: 1844/1780,
  35537. bottom: 58/1902
  35538. }
  35539. },
  35540. },
  35541. [
  35542. {
  35543. name: "Normal",
  35544. height: math.unit(16, "feet"),
  35545. default: true
  35546. },
  35547. ]
  35548. ))
  35549. characterMakers.push(() => makeCharacter(
  35550. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35551. {
  35552. front: {
  35553. height: math.unit(11 + 6/12, "feet"),
  35554. weight: math.unit(1366, "lb"),
  35555. name: "Front",
  35556. image: {
  35557. source: "./media/characters/lexor/front.svg",
  35558. extra: 1560/1481,
  35559. bottom: 211/1771
  35560. }
  35561. },
  35562. back: {
  35563. height: math.unit(11 + 6/12, "feet"),
  35564. weight: math.unit(1366, "lb"),
  35565. name: "Back",
  35566. image: {
  35567. source: "./media/characters/lexor/back.svg",
  35568. extra: 1614/1533,
  35569. bottom: 76/1690
  35570. }
  35571. },
  35572. maw: {
  35573. height: math.unit(3, "feet"),
  35574. name: "Maw",
  35575. image: {
  35576. source: "./media/characters/lexor/maw.svg"
  35577. }
  35578. },
  35579. dick: {
  35580. height: math.unit(2.59, "feet"),
  35581. name: "Dick",
  35582. image: {
  35583. source: "./media/characters/lexor/dick.svg"
  35584. }
  35585. },
  35586. },
  35587. [
  35588. {
  35589. name: "Normal",
  35590. height: math.unit(11 + 6/12, "feet"),
  35591. default: true
  35592. },
  35593. ]
  35594. ))
  35595. characterMakers.push(() => makeCharacter(
  35596. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35597. {
  35598. front: {
  35599. height: math.unit(5 + 8/12, "feet"),
  35600. name: "Front",
  35601. image: {
  35602. source: "./media/characters/magnum/front.svg",
  35603. extra: 942/855,
  35604. bottom: 26/968
  35605. }
  35606. },
  35607. },
  35608. [
  35609. {
  35610. name: "Normal",
  35611. height: math.unit(5 + 8/12, "feet"),
  35612. default: true
  35613. },
  35614. ]
  35615. ))
  35616. characterMakers.push(() => makeCharacter(
  35617. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  35618. {
  35619. front: {
  35620. height: math.unit(18 + 4/12, "feet"),
  35621. weight: math.unit(1500, "kg"),
  35622. name: "Front",
  35623. image: {
  35624. source: "./media/characters/solas-sharpsman/front.svg",
  35625. extra: 1698/1589,
  35626. bottom: 0/1698
  35627. }
  35628. },
  35629. },
  35630. [
  35631. {
  35632. name: "Normal",
  35633. height: math.unit(18 + 4/12, "feet"),
  35634. default: true
  35635. },
  35636. ]
  35637. ))
  35638. characterMakers.push(() => makeCharacter(
  35639. { name: "October", species: ["tiger"], tags: ["anthro"] },
  35640. {
  35641. front: {
  35642. height: math.unit(5 + 5/12, "feet"),
  35643. weight: math.unit(180, "lb"),
  35644. name: "Front",
  35645. image: {
  35646. source: "./media/characters/october/front.svg",
  35647. extra: 1800/1650,
  35648. bottom: 0/1800
  35649. }
  35650. },
  35651. frontNsfw: {
  35652. height: math.unit(5 + 5/12, "feet"),
  35653. weight: math.unit(180, "lb"),
  35654. name: "Front (NSFW)",
  35655. image: {
  35656. source: "./media/characters/october/front-nsfw.svg",
  35657. extra: 1392/1307,
  35658. bottom: 42/1434
  35659. }
  35660. },
  35661. },
  35662. [
  35663. {
  35664. name: "Normal",
  35665. height: math.unit(5 + 5/12, "feet"),
  35666. default: true
  35667. },
  35668. ]
  35669. ))
  35670. characterMakers.push(() => makeCharacter(
  35671. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  35672. {
  35673. front: {
  35674. height: math.unit(8 + 6/12, "feet"),
  35675. name: "Front",
  35676. image: {
  35677. source: "./media/characters/essynkardi/front.svg",
  35678. extra: 1914/1846,
  35679. bottom: 22/1936
  35680. }
  35681. },
  35682. },
  35683. [
  35684. {
  35685. name: "Normal",
  35686. height: math.unit(8 + 6/12, "feet"),
  35687. default: true
  35688. },
  35689. ]
  35690. ))
  35691. characterMakers.push(() => makeCharacter(
  35692. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  35693. {
  35694. front: {
  35695. height: math.unit(6 + 6/12, "feet"),
  35696. weight: math.unit(7, "lb"),
  35697. name: "Front",
  35698. image: {
  35699. source: "./media/characters/icky/front.svg",
  35700. extra: 813/782,
  35701. bottom: 66/879
  35702. }
  35703. },
  35704. back: {
  35705. height: math.unit(6 + 6/12, "feet"),
  35706. weight: math.unit(7, "lb"),
  35707. name: "Back",
  35708. image: {
  35709. source: "./media/characters/icky/back.svg",
  35710. extra: 754/735,
  35711. bottom: 56/810
  35712. }
  35713. },
  35714. },
  35715. [
  35716. {
  35717. name: "Normal",
  35718. height: math.unit(6 + 6/12, "feet"),
  35719. default: true
  35720. },
  35721. ]
  35722. ))
  35723. characterMakers.push(() => makeCharacter(
  35724. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  35725. {
  35726. front: {
  35727. height: math.unit(15, "feet"),
  35728. name: "Front",
  35729. image: {
  35730. source: "./media/characters/rojas/front.svg",
  35731. extra: 1462/1408,
  35732. bottom: 95/1557
  35733. }
  35734. },
  35735. back: {
  35736. height: math.unit(15, "feet"),
  35737. name: "Back",
  35738. image: {
  35739. source: "./media/characters/rojas/back.svg",
  35740. extra: 1023/954,
  35741. bottom: 28/1051
  35742. }
  35743. },
  35744. },
  35745. [
  35746. {
  35747. name: "Normal",
  35748. height: math.unit(15, "feet"),
  35749. default: true
  35750. },
  35751. ]
  35752. ))
  35753. characterMakers.push(() => makeCharacter(
  35754. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  35755. {
  35756. frontHuman: {
  35757. height: math.unit(5 + 7/12, "feet"),
  35758. name: "Front (Human)",
  35759. image: {
  35760. source: "./media/characters/alek-dryagan/front-human.svg",
  35761. extra: 1687/1667,
  35762. bottom: 69/1756
  35763. }
  35764. },
  35765. backHuman: {
  35766. height: math.unit(5 + 7/12, "feet"),
  35767. name: "Back (Human)",
  35768. image: {
  35769. source: "./media/characters/alek-dryagan/back-human.svg",
  35770. extra: 1670/1649,
  35771. bottom: 65/1735
  35772. }
  35773. },
  35774. frontDemi: {
  35775. height: math.unit(65, "feet"),
  35776. name: "Front (Demi)",
  35777. image: {
  35778. source: "./media/characters/alek-dryagan/front-demi.svg",
  35779. extra: 1669/1642,
  35780. bottom: 49/1718
  35781. }
  35782. },
  35783. backDemi: {
  35784. height: math.unit(65, "feet"),
  35785. name: "Back (Demi)",
  35786. image: {
  35787. source: "./media/characters/alek-dryagan/back-demi.svg",
  35788. extra: 1658/1637,
  35789. bottom: 40/1698
  35790. }
  35791. },
  35792. mawHuman: {
  35793. height: math.unit(0.3, "feet"),
  35794. name: "Maw (Human)",
  35795. image: {
  35796. source: "./media/characters/alek-dryagan/maw-human.svg"
  35797. }
  35798. },
  35799. mawDemi: {
  35800. height: math.unit(3.8, "feet"),
  35801. name: "Maw (Demi)",
  35802. image: {
  35803. source: "./media/characters/alek-dryagan/maw-demi.svg"
  35804. }
  35805. },
  35806. },
  35807. [
  35808. {
  35809. name: "Normal",
  35810. height: math.unit(5 + 7/12, "feet"),
  35811. default: true
  35812. },
  35813. ]
  35814. ))
  35815. characterMakers.push(() => makeCharacter(
  35816. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  35817. {
  35818. frontHuman: {
  35819. height: math.unit(5 + 2/12, "feet"),
  35820. name: "Front (Human)",
  35821. image: {
  35822. source: "./media/characters/gen/front-human.svg",
  35823. extra: 1627/1538,
  35824. bottom: 71/1698
  35825. }
  35826. },
  35827. backHuman: {
  35828. height: math.unit(5 + 2/12, "feet"),
  35829. name: "Back (Human)",
  35830. image: {
  35831. source: "./media/characters/gen/back-human.svg",
  35832. extra: 1638/1548,
  35833. bottom: 69/1707
  35834. }
  35835. },
  35836. frontDemi: {
  35837. height: math.unit(5 + 2/12, "feet"),
  35838. name: "Front (Demi)",
  35839. image: {
  35840. source: "./media/characters/gen/front-demi.svg",
  35841. extra: 1627/1538,
  35842. bottom: 71/1698
  35843. }
  35844. },
  35845. backDemi: {
  35846. height: math.unit(5 + 2/12, "feet"),
  35847. name: "Back (Demi)",
  35848. image: {
  35849. source: "./media/characters/gen/back-demi.svg",
  35850. extra: 1638/1548,
  35851. bottom: 69/1707
  35852. }
  35853. },
  35854. },
  35855. [
  35856. {
  35857. name: "Normal",
  35858. height: math.unit(5 + 2/12, "feet"),
  35859. default: true
  35860. },
  35861. ]
  35862. ))
  35863. characterMakers.push(() => makeCharacter(
  35864. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  35865. {
  35866. frontImp: {
  35867. height: math.unit(1 + 11/12, "feet"),
  35868. name: "Front (Imp)",
  35869. image: {
  35870. source: "./media/characters/max-kobold/front-imp.svg",
  35871. extra: 1238/1134,
  35872. bottom: 81/1319
  35873. }
  35874. },
  35875. backImp: {
  35876. height: math.unit(1 + 11/12, "feet"),
  35877. name: "Back (Imp)",
  35878. image: {
  35879. source: "./media/characters/max-kobold/back-imp.svg",
  35880. extra: 1334/1175,
  35881. bottom: 34/1368
  35882. }
  35883. },
  35884. frontDemi: {
  35885. height: math.unit(5 + 9/12, "feet"),
  35886. name: "Front (Demi)",
  35887. image: {
  35888. source: "./media/characters/max-kobold/front-demi.svg",
  35889. extra: 1715/1685,
  35890. bottom: 54/1769
  35891. }
  35892. },
  35893. backDemi: {
  35894. height: math.unit(5 + 9/12, "feet"),
  35895. name: "Back (Demi)",
  35896. image: {
  35897. source: "./media/characters/max-kobold/back-demi.svg",
  35898. extra: 1752/1729,
  35899. bottom: 41/1793
  35900. }
  35901. },
  35902. handImp: {
  35903. height: math.unit(0.45, "feet"),
  35904. name: "Hand (Imp)",
  35905. image: {
  35906. source: "./media/characters/max-kobold/hand.svg"
  35907. }
  35908. },
  35909. pawImp: {
  35910. height: math.unit(0.46, "feet"),
  35911. name: "Paw (Imp)",
  35912. image: {
  35913. source: "./media/characters/max-kobold/paw.svg"
  35914. }
  35915. },
  35916. handDemi: {
  35917. height: math.unit(0.80, "feet"),
  35918. name: "Hand (Demi)",
  35919. image: {
  35920. source: "./media/characters/max-kobold/hand.svg"
  35921. }
  35922. },
  35923. pawDemi: {
  35924. height: math.unit(1.1, "feet"),
  35925. name: "Paw (Demi)",
  35926. image: {
  35927. source: "./media/characters/max-kobold/paw.svg"
  35928. }
  35929. },
  35930. headImp: {
  35931. height: math.unit(1.33, "feet"),
  35932. name: "Head (Imp)",
  35933. image: {
  35934. source: "./media/characters/max-kobold/head-imp.svg"
  35935. }
  35936. },
  35937. mawImp: {
  35938. height: math.unit(0.75, "feet"),
  35939. name: "Maw (Imp)",
  35940. image: {
  35941. source: "./media/characters/max-kobold/maw-imp.svg"
  35942. }
  35943. },
  35944. mawDemi: {
  35945. height: math.unit(0.42, "feet"),
  35946. name: "Maw (Demi)",
  35947. image: {
  35948. source: "./media/characters/max-kobold/maw-demi.svg"
  35949. }
  35950. },
  35951. },
  35952. [
  35953. {
  35954. name: "Normal",
  35955. height: math.unit(1 + 11/12, "feet"),
  35956. default: true
  35957. },
  35958. ]
  35959. ))
  35960. characterMakers.push(() => makeCharacter(
  35961. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  35962. {
  35963. front: {
  35964. height: math.unit(7 + 5/12, "feet"),
  35965. name: "Front",
  35966. image: {
  35967. source: "./media/characters/carbon/front.svg",
  35968. extra: 1754/1689,
  35969. bottom: 65/1819
  35970. }
  35971. },
  35972. back: {
  35973. height: math.unit(7 + 5/12, "feet"),
  35974. name: "Back",
  35975. image: {
  35976. source: "./media/characters/carbon/back.svg",
  35977. extra: 1762/1695,
  35978. bottom: 24/1786
  35979. }
  35980. },
  35981. frontGigantamax: {
  35982. height: math.unit(150, "feet"),
  35983. name: "Front (Gigantamax)",
  35984. image: {
  35985. source: "./media/characters/carbon/front-gigantamax.svg",
  35986. extra: 1826/1669,
  35987. bottom: 59/1885
  35988. }
  35989. },
  35990. backGigantamax: {
  35991. height: math.unit(150, "feet"),
  35992. name: "Back (Gigantamax)",
  35993. image: {
  35994. source: "./media/characters/carbon/back-gigantamax.svg",
  35995. extra: 1796/1653,
  35996. bottom: 53/1849
  35997. }
  35998. },
  35999. maw: {
  36000. height: math.unit(0.48, "feet"),
  36001. name: "Maw",
  36002. image: {
  36003. source: "./media/characters/carbon/maw.svg"
  36004. }
  36005. },
  36006. mawGigantamax: {
  36007. height: math.unit(7.5, "feet"),
  36008. name: "Maw (Gigantamax)",
  36009. image: {
  36010. source: "./media/characters/carbon/maw-gigantamax.svg"
  36011. }
  36012. },
  36013. },
  36014. [
  36015. {
  36016. name: "Normal",
  36017. height: math.unit(7 + 5/12, "feet"),
  36018. default: true
  36019. },
  36020. ]
  36021. ))
  36022. characterMakers.push(() => makeCharacter(
  36023. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36024. {
  36025. front: {
  36026. height: math.unit(6, "feet"),
  36027. name: "Front",
  36028. image: {
  36029. source: "./media/characters/maverick/front.svg",
  36030. extra: 1672/1661,
  36031. bottom: 85/1757
  36032. }
  36033. },
  36034. back: {
  36035. height: math.unit(6, "feet"),
  36036. name: "Back",
  36037. image: {
  36038. source: "./media/characters/maverick/back.svg",
  36039. extra: 1642/1631,
  36040. bottom: 38/1680
  36041. }
  36042. },
  36043. },
  36044. [
  36045. {
  36046. name: "Normal",
  36047. height: math.unit(6, "feet"),
  36048. default: true
  36049. },
  36050. ]
  36051. ))
  36052. characterMakers.push(() => makeCharacter(
  36053. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36054. {
  36055. front: {
  36056. height: math.unit(15, "feet"),
  36057. weight: math.unit(615, "lb"),
  36058. name: "Front",
  36059. image: {
  36060. source: "./media/characters/grockle/front.svg",
  36061. extra: 1535/1427,
  36062. bottom: 56/1591
  36063. }
  36064. },
  36065. },
  36066. [
  36067. {
  36068. name: "Normal",
  36069. height: math.unit(15, "feet"),
  36070. default: true
  36071. },
  36072. {
  36073. name: "Large",
  36074. height: math.unit(150, "feet")
  36075. },
  36076. {
  36077. name: "Macro",
  36078. height: math.unit(1876, "feet")
  36079. },
  36080. {
  36081. name: "Mega Macro",
  36082. height: math.unit(121940, "feet")
  36083. },
  36084. {
  36085. name: "Giga Macro",
  36086. height: math.unit(750, "km")
  36087. },
  36088. {
  36089. name: "Tera Macro",
  36090. height: math.unit(750000, "km")
  36091. },
  36092. {
  36093. name: "Galactic",
  36094. height: math.unit(1.4e5, "km")
  36095. },
  36096. {
  36097. name: "Godlike",
  36098. height: math.unit(9.8e280, "galaxies")
  36099. },
  36100. ]
  36101. ))
  36102. characterMakers.push(() => makeCharacter(
  36103. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36104. {
  36105. front: {
  36106. height: math.unit(11, "meters"),
  36107. weight: math.unit(20, "tonnes"),
  36108. name: "Front",
  36109. image: {
  36110. source: "./media/characters/alistair/front.svg",
  36111. extra: 1265/1009,
  36112. bottom: 93/1358
  36113. }
  36114. },
  36115. },
  36116. [
  36117. {
  36118. name: "Normal",
  36119. height: math.unit(11, "meters"),
  36120. default: true
  36121. },
  36122. ]
  36123. ))
  36124. characterMakers.push(() => makeCharacter(
  36125. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36126. {
  36127. front: {
  36128. height: math.unit(5 + 8/12, "feet"),
  36129. name: "Front",
  36130. image: {
  36131. source: "./media/characters/haruka/front.svg",
  36132. extra: 2012/1952,
  36133. bottom: 0/2012
  36134. }
  36135. },
  36136. },
  36137. [
  36138. {
  36139. name: "Normal",
  36140. height: math.unit(5 + 8/12, "feet"),
  36141. default: true
  36142. },
  36143. ]
  36144. ))
  36145. characterMakers.push(() => makeCharacter(
  36146. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36147. {
  36148. back: {
  36149. height: math.unit(9, "feet"),
  36150. name: "Back",
  36151. image: {
  36152. source: "./media/characters/vivian-sylveon/back.svg",
  36153. extra: 1853/1714,
  36154. bottom: 0/1853
  36155. }
  36156. },
  36157. },
  36158. [
  36159. {
  36160. name: "Normal",
  36161. height: math.unit(9, "feet"),
  36162. default: true
  36163. },
  36164. {
  36165. name: "Macro",
  36166. height: math.unit(500, "feet")
  36167. },
  36168. {
  36169. name: "Megamacro",
  36170. height: math.unit(600, "miles")
  36171. },
  36172. {
  36173. name: "Gigamacro",
  36174. height: math.unit(30000, "miles")
  36175. },
  36176. ]
  36177. ))
  36178. characterMakers.push(() => makeCharacter(
  36179. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36180. {
  36181. anthro: {
  36182. height: math.unit(5 + 10/12, "feet"),
  36183. weight: math.unit(100, "lb"),
  36184. name: "Anthro",
  36185. image: {
  36186. source: "./media/characters/daiki/anthro.svg",
  36187. extra: 1115/1027,
  36188. bottom: 69/1184
  36189. }
  36190. },
  36191. feral: {
  36192. height: math.unit(200, "feet"),
  36193. name: "Feral",
  36194. image: {
  36195. source: "./media/characters/daiki/feral.svg",
  36196. extra: 1256/313,
  36197. bottom: 39/1295
  36198. }
  36199. },
  36200. feralHead: {
  36201. height: math.unit(171, "feet"),
  36202. name: "Feral Head",
  36203. image: {
  36204. source: "./media/characters/daiki/feral-head.svg"
  36205. }
  36206. },
  36207. },
  36208. [
  36209. {
  36210. name: "Normal",
  36211. height: math.unit(5 + 10/12, "feet"),
  36212. default: true
  36213. },
  36214. ]
  36215. ))
  36216. characterMakers.push(() => makeCharacter(
  36217. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36218. {
  36219. fullyEquippedFront: {
  36220. height: math.unit(3 + 1/12, "feet"),
  36221. weight: math.unit(24, "lb"),
  36222. name: "Fully Equipped (Front)",
  36223. image: {
  36224. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36225. extra: 687/605,
  36226. bottom: 18/705
  36227. }
  36228. },
  36229. fullyEquippedBack: {
  36230. height: math.unit(3 + 1/12, "feet"),
  36231. weight: math.unit(24, "lb"),
  36232. name: "Fully Equipped (Back)",
  36233. image: {
  36234. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36235. extra: 689/590,
  36236. bottom: 18/707
  36237. }
  36238. },
  36239. dailyWear: {
  36240. height: math.unit(3 + 1/12, "feet"),
  36241. weight: math.unit(24, "lb"),
  36242. name: "Daily Wear",
  36243. image: {
  36244. source: "./media/characters/tea-spot/daily-wear.svg",
  36245. extra: 701/620,
  36246. bottom: 21/722
  36247. }
  36248. },
  36249. maidWork: {
  36250. height: math.unit(3 + 1/12, "feet"),
  36251. weight: math.unit(24, "lb"),
  36252. name: "Maid Work",
  36253. image: {
  36254. source: "./media/characters/tea-spot/maid-work.svg",
  36255. extra: 693/609,
  36256. bottom: 15/708
  36257. }
  36258. },
  36259. },
  36260. [
  36261. {
  36262. name: "Normal",
  36263. height: math.unit(3 + 1/12, "feet"),
  36264. default: true
  36265. },
  36266. ]
  36267. ))
  36268. characterMakers.push(() => makeCharacter(
  36269. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36270. {
  36271. front: {
  36272. height: math.unit(175, "cm"),
  36273. weight: math.unit(75, "kg"),
  36274. name: "Front",
  36275. image: {
  36276. source: "./media/characters/chee/front.svg",
  36277. extra: 1796/1740,
  36278. bottom: 40/1836
  36279. }
  36280. },
  36281. },
  36282. [
  36283. {
  36284. name: "Micro-Micro",
  36285. height: math.unit(1, "nm")
  36286. },
  36287. {
  36288. name: "Micro-erst",
  36289. height: math.unit(1, "micrometer")
  36290. },
  36291. {
  36292. name: "Micro-er",
  36293. height: math.unit(1, "cm")
  36294. },
  36295. {
  36296. name: "Normal",
  36297. height: math.unit(175, "cm"),
  36298. default: true
  36299. },
  36300. {
  36301. name: "Macro",
  36302. height: math.unit(100, "m")
  36303. },
  36304. {
  36305. name: "Macro-er",
  36306. height: math.unit(1, "km")
  36307. },
  36308. {
  36309. name: "Macro-erst",
  36310. height: math.unit(10, "km")
  36311. },
  36312. {
  36313. name: "Macro-Macro",
  36314. height: math.unit(100, "km")
  36315. },
  36316. ]
  36317. ))
  36318. characterMakers.push(() => makeCharacter(
  36319. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36320. {
  36321. front: {
  36322. height: math.unit(11 + 9/12, "feet"),
  36323. weight: math.unit(935, "lb"),
  36324. name: "Front",
  36325. image: {
  36326. source: "./media/characters/kingsley/front.svg",
  36327. extra: 1803/1674,
  36328. bottom: 127/1930
  36329. }
  36330. },
  36331. frontNude: {
  36332. height: math.unit(11 + 9/12, "feet"),
  36333. weight: math.unit(935, "lb"),
  36334. name: "Front (Nude)",
  36335. image: {
  36336. source: "./media/characters/kingsley/front-nude.svg",
  36337. extra: 1803/1674,
  36338. bottom: 127/1930
  36339. }
  36340. },
  36341. },
  36342. [
  36343. {
  36344. name: "Normal",
  36345. height: math.unit(11 + 9/12, "feet"),
  36346. default: true
  36347. },
  36348. ]
  36349. ))
  36350. characterMakers.push(() => makeCharacter(
  36351. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36352. {
  36353. side: {
  36354. height: math.unit(9, "feet"),
  36355. name: "Side",
  36356. image: {
  36357. source: "./media/characters/rymel/side.svg",
  36358. extra: 792/469,
  36359. bottom: 121/913
  36360. }
  36361. },
  36362. maw: {
  36363. height: math.unit(2.4, "meters"),
  36364. name: "Maw",
  36365. image: {
  36366. source: "./media/characters/rymel/maw.svg"
  36367. }
  36368. },
  36369. },
  36370. [
  36371. {
  36372. name: "House Drake",
  36373. height: math.unit(2, "feet")
  36374. },
  36375. {
  36376. name: "Reduced",
  36377. height: math.unit(4.5, "feet")
  36378. },
  36379. {
  36380. name: "Normal",
  36381. height: math.unit(9, "feet"),
  36382. default: true
  36383. },
  36384. ]
  36385. ))
  36386. characterMakers.push(() => makeCharacter(
  36387. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36388. {
  36389. front: {
  36390. height: math.unit(1.74, "meters"),
  36391. weight: math.unit(55, "kg"),
  36392. name: "Front",
  36393. image: {
  36394. source: "./media/characters/rubus/front.svg",
  36395. extra: 1894/1742,
  36396. bottom: 44/1938
  36397. }
  36398. },
  36399. },
  36400. [
  36401. {
  36402. name: "Normal",
  36403. height: math.unit(1.74, "meters"),
  36404. default: true
  36405. },
  36406. ]
  36407. ))
  36408. characterMakers.push(() => makeCharacter(
  36409. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36410. {
  36411. front: {
  36412. height: math.unit(5 + 2/12, "feet"),
  36413. weight: math.unit(112, "lb"),
  36414. name: "Front",
  36415. image: {
  36416. source: "./media/characters/cassie-kingston/front.svg",
  36417. extra: 1438/1390,
  36418. bottom: 47/1485
  36419. }
  36420. },
  36421. },
  36422. [
  36423. {
  36424. name: "Normal",
  36425. height: math.unit(5 + 2/12, "feet"),
  36426. default: true
  36427. },
  36428. {
  36429. name: "Macro",
  36430. height: math.unit(128, "feet")
  36431. },
  36432. {
  36433. name: "Megamacro",
  36434. height: math.unit(2.56, "miles")
  36435. },
  36436. ]
  36437. ))
  36438. characterMakers.push(() => makeCharacter(
  36439. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36440. {
  36441. front: {
  36442. height: math.unit(7, "feet"),
  36443. name: "Front",
  36444. image: {
  36445. source: "./media/characters/fox/front.svg",
  36446. extra: 1798/1703,
  36447. bottom: 55/1853
  36448. }
  36449. },
  36450. back: {
  36451. height: math.unit(7, "feet"),
  36452. name: "Back",
  36453. image: {
  36454. source: "./media/characters/fox/back.svg",
  36455. extra: 1748/1649,
  36456. bottom: 32/1780
  36457. }
  36458. },
  36459. head: {
  36460. height: math.unit(1.95, "feet"),
  36461. name: "Head",
  36462. image: {
  36463. source: "./media/characters/fox/head.svg"
  36464. }
  36465. },
  36466. dick: {
  36467. height: math.unit(1.33, "feet"),
  36468. name: "Dick",
  36469. image: {
  36470. source: "./media/characters/fox/dick.svg"
  36471. }
  36472. },
  36473. foot: {
  36474. height: math.unit(1, "feet"),
  36475. name: "Foot",
  36476. image: {
  36477. source: "./media/characters/fox/foot.svg"
  36478. }
  36479. },
  36480. paw: {
  36481. height: math.unit(0.92, "feet"),
  36482. name: "Paw",
  36483. image: {
  36484. source: "./media/characters/fox/paw.svg"
  36485. }
  36486. },
  36487. },
  36488. [
  36489. {
  36490. name: "Small",
  36491. height: math.unit(3, "inches")
  36492. },
  36493. {
  36494. name: "\"Realistic\"",
  36495. height: math.unit(7, "feet")
  36496. },
  36497. {
  36498. name: "Normal",
  36499. height: math.unit(150, "feet"),
  36500. default: true
  36501. },
  36502. {
  36503. name: "BIG",
  36504. height: math.unit(1200, "feet")
  36505. },
  36506. {
  36507. name: "👀",
  36508. height: math.unit(5, "miles")
  36509. },
  36510. {
  36511. name: "👀👀👀",
  36512. height: math.unit(64, "miles")
  36513. },
  36514. ]
  36515. ))
  36516. characterMakers.push(() => makeCharacter(
  36517. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  36518. {
  36519. front: {
  36520. height: math.unit(625, "feet"),
  36521. name: "Front",
  36522. image: {
  36523. source: "./media/characters/asonja-rossa/front.svg",
  36524. extra: 1833/1686,
  36525. bottom: 24/1857
  36526. }
  36527. },
  36528. back: {
  36529. height: math.unit(625, "feet"),
  36530. name: "Back",
  36531. image: {
  36532. source: "./media/characters/asonja-rossa/back.svg",
  36533. extra: 1852/1753,
  36534. bottom: 26/1878
  36535. }
  36536. },
  36537. },
  36538. [
  36539. {
  36540. name: "Macro",
  36541. height: math.unit(625, "feet"),
  36542. default: true
  36543. },
  36544. ]
  36545. ))
  36546. characterMakers.push(() => makeCharacter(
  36547. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  36548. {
  36549. side: {
  36550. height: math.unit(6, "feet"),
  36551. weight: math.unit(150, "lb"),
  36552. name: "Side",
  36553. image: {
  36554. source: "./media/characters/rezukii/side.svg",
  36555. extra: 979/542,
  36556. bottom: 87/1066
  36557. }
  36558. },
  36559. },
  36560. [
  36561. {
  36562. name: "Tiny",
  36563. height: math.unit(2, "feet")
  36564. },
  36565. {
  36566. name: "Smol",
  36567. height: math.unit(4, "feet")
  36568. },
  36569. {
  36570. name: "Normal",
  36571. height: math.unit(8, "feet"),
  36572. default: true
  36573. },
  36574. {
  36575. name: "Big",
  36576. height: math.unit(12, "feet")
  36577. },
  36578. {
  36579. name: "Macro",
  36580. height: math.unit(30, "feet")
  36581. },
  36582. ]
  36583. ))
  36584. characterMakers.push(() => makeCharacter(
  36585. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  36586. {
  36587. front: {
  36588. height: math.unit(14, "feet"),
  36589. weight: math.unit(9.5, "tonnes"),
  36590. name: "Front",
  36591. image: {
  36592. source: "./media/characters/dawnheart/front.svg",
  36593. extra: 2792/2675,
  36594. bottom: 64/2856
  36595. }
  36596. },
  36597. },
  36598. [
  36599. {
  36600. name: "Normal",
  36601. height: math.unit(14, "feet"),
  36602. default: true
  36603. },
  36604. ]
  36605. ))
  36606. characterMakers.push(() => makeCharacter(
  36607. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  36608. {
  36609. front: {
  36610. height: math.unit(1.7, "m"),
  36611. name: "Front",
  36612. image: {
  36613. source: "./media/characters/gladi/front.svg",
  36614. extra: 1460/1362,
  36615. bottom: 19/1479
  36616. }
  36617. },
  36618. back: {
  36619. height: math.unit(1.7, "m"),
  36620. name: "Back",
  36621. image: {
  36622. source: "./media/characters/gladi/back.svg",
  36623. extra: 1459/1357,
  36624. bottom: 12/1471
  36625. }
  36626. },
  36627. feral: {
  36628. height: math.unit(2.05, "m"),
  36629. name: "Feral",
  36630. image: {
  36631. source: "./media/characters/gladi/feral.svg",
  36632. extra: 821/557,
  36633. bottom: 91/912
  36634. }
  36635. },
  36636. },
  36637. [
  36638. {
  36639. name: "Shortest",
  36640. height: math.unit(70, "cm")
  36641. },
  36642. {
  36643. name: "Normal",
  36644. height: math.unit(1.7, "m")
  36645. },
  36646. {
  36647. name: "Macro",
  36648. height: math.unit(10, "m"),
  36649. default: true
  36650. },
  36651. {
  36652. name: "Tallest",
  36653. height: math.unit(200, "m")
  36654. },
  36655. ]
  36656. ))
  36657. characterMakers.push(() => makeCharacter(
  36658. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  36659. {
  36660. front: {
  36661. height: math.unit(5 + 7/12, "feet"),
  36662. weight: math.unit(92, "kg"),
  36663. name: "Front",
  36664. image: {
  36665. source: "./media/characters/erdno/front.svg",
  36666. extra: 1954/1889,
  36667. bottom: 22/1976
  36668. }
  36669. },
  36670. },
  36671. [
  36672. {
  36673. name: "Normal",
  36674. height: math.unit(5 + 7/12, "feet"),
  36675. default: true
  36676. },
  36677. ]
  36678. ))
  36679. characterMakers.push(() => makeCharacter(
  36680. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  36681. {
  36682. front: {
  36683. height: math.unit(5 + 10/12, "feet"),
  36684. weight: math.unit(150, "lb"),
  36685. name: "Front",
  36686. image: {
  36687. source: "./media/characters/jamie/front.svg",
  36688. extra: 1908/1768,
  36689. bottom: 19/1927
  36690. }
  36691. },
  36692. },
  36693. [
  36694. {
  36695. name: "Minimum",
  36696. height: math.unit(2, "cm")
  36697. },
  36698. {
  36699. name: "Micro",
  36700. height: math.unit(3, "inches")
  36701. },
  36702. {
  36703. name: "Normal",
  36704. height: math.unit(5 + 10/12, "feet"),
  36705. default: true
  36706. },
  36707. {
  36708. name: "Macro",
  36709. height: math.unit(150, "feet")
  36710. },
  36711. {
  36712. name: "Megamacro",
  36713. height: math.unit(10000, "m")
  36714. },
  36715. ]
  36716. ))
  36717. characterMakers.push(() => makeCharacter(
  36718. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  36719. {
  36720. front: {
  36721. height: math.unit(2, "meters"),
  36722. weight: math.unit(100, "kg"),
  36723. name: "Front",
  36724. image: {
  36725. source: "./media/characters/shiron/front.svg",
  36726. extra: 2103/1985,
  36727. bottom: 98/2201
  36728. }
  36729. },
  36730. back: {
  36731. height: math.unit(2, "meters"),
  36732. weight: math.unit(100, "kg"),
  36733. name: "Back",
  36734. image: {
  36735. source: "./media/characters/shiron/back.svg",
  36736. extra: 2110/2015,
  36737. bottom: 89/2199
  36738. }
  36739. },
  36740. hand: {
  36741. height: math.unit(0.96, "feet"),
  36742. name: "Hand",
  36743. image: {
  36744. source: "./media/characters/shiron/hand.svg"
  36745. }
  36746. },
  36747. foot: {
  36748. height: math.unit(1.464, "feet"),
  36749. name: "Foot",
  36750. image: {
  36751. source: "./media/characters/shiron/foot.svg"
  36752. }
  36753. },
  36754. },
  36755. [
  36756. {
  36757. name: "Normal",
  36758. height: math.unit(2, "meters")
  36759. },
  36760. {
  36761. name: "Macro",
  36762. height: math.unit(500, "meters"),
  36763. default: true
  36764. },
  36765. {
  36766. name: "Megamacro",
  36767. height: math.unit(20, "km")
  36768. },
  36769. ]
  36770. ))
  36771. characterMakers.push(() => makeCharacter(
  36772. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  36773. {
  36774. front: {
  36775. height: math.unit(6, "feet"),
  36776. name: "Front",
  36777. image: {
  36778. source: "./media/characters/sam/front.svg",
  36779. extra: 849/826,
  36780. bottom: 19/868
  36781. }
  36782. },
  36783. },
  36784. [
  36785. {
  36786. name: "Normal",
  36787. height: math.unit(6, "feet"),
  36788. default: true
  36789. },
  36790. ]
  36791. ))
  36792. characterMakers.push(() => makeCharacter(
  36793. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  36794. {
  36795. front: {
  36796. height: math.unit(8 + 4/12, "feet"),
  36797. weight: math.unit(122, "kg"),
  36798. name: "Front",
  36799. image: {
  36800. source: "./media/characters/namori-kurogawa/front.svg",
  36801. extra: 1894/1576,
  36802. bottom: 34/1928
  36803. }
  36804. },
  36805. },
  36806. [
  36807. {
  36808. name: "Normal",
  36809. height: math.unit(8 + 4/12, "feet"),
  36810. default: true
  36811. },
  36812. ]
  36813. ))
  36814. characterMakers.push(() => makeCharacter(
  36815. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  36816. {
  36817. front: {
  36818. height: math.unit(9, "feet"),
  36819. weight: math.unit(621, "lb"),
  36820. name: "Front",
  36821. image: {
  36822. source: "./media/characters/unmru/front.svg",
  36823. extra: 1853/1747,
  36824. bottom: 73/1926
  36825. }
  36826. },
  36827. side: {
  36828. height: math.unit(9, "feet"),
  36829. weight: math.unit(621, "lb"),
  36830. name: "Side",
  36831. image: {
  36832. source: "./media/characters/unmru/side.svg",
  36833. extra: 1781/1671,
  36834. bottom: 127/1908
  36835. }
  36836. },
  36837. back: {
  36838. height: math.unit(9, "feet"),
  36839. weight: math.unit(621, "lb"),
  36840. name: "Back",
  36841. image: {
  36842. source: "./media/characters/unmru/back.svg",
  36843. extra: 1894/1765,
  36844. bottom: 75/1969
  36845. }
  36846. },
  36847. dick: {
  36848. height: math.unit(3, "feet"),
  36849. weight: math.unit(35, "lb"),
  36850. name: "Dick",
  36851. image: {
  36852. source: "./media/characters/unmru/dick.svg"
  36853. }
  36854. },
  36855. },
  36856. [
  36857. {
  36858. name: "Normal",
  36859. height: math.unit(9, "feet")
  36860. },
  36861. {
  36862. name: "Natural",
  36863. height: math.unit(27, "feet"),
  36864. default: true
  36865. },
  36866. {
  36867. name: "Giant",
  36868. height: math.unit(90, "feet")
  36869. },
  36870. {
  36871. name: "Kaiju",
  36872. height: math.unit(270, "feet")
  36873. },
  36874. {
  36875. name: "Macro",
  36876. height: math.unit(900, "feet")
  36877. },
  36878. {
  36879. name: "Macro+",
  36880. height: math.unit(2700, "feet")
  36881. },
  36882. {
  36883. name: "Megamacro",
  36884. height: math.unit(9000, "feet")
  36885. },
  36886. {
  36887. name: "City-Crushing",
  36888. height: math.unit(27000, "feet")
  36889. },
  36890. {
  36891. name: "Mountain-Mashing",
  36892. height: math.unit(90000, "feet")
  36893. },
  36894. {
  36895. name: "Earth-Eclipsing",
  36896. height: math.unit(2.7e8, "feet")
  36897. },
  36898. {
  36899. name: "Sol-Swallowing",
  36900. height: math.unit(9e10, "feet")
  36901. },
  36902. {
  36903. name: "Majoris-Munching",
  36904. height: math.unit(2.7e13, "feet")
  36905. },
  36906. ]
  36907. ))
  36908. characterMakers.push(() => makeCharacter(
  36909. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  36910. {
  36911. front: {
  36912. height: math.unit(1, "inch"),
  36913. name: "Front",
  36914. image: {
  36915. source: "./media/characters/squeaks-mouse/front.svg",
  36916. extra: 352/308,
  36917. bottom: 25/377
  36918. }
  36919. },
  36920. },
  36921. [
  36922. {
  36923. name: "Micro",
  36924. height: math.unit(1, "inch"),
  36925. default: true
  36926. },
  36927. ]
  36928. ))
  36929. characterMakers.push(() => makeCharacter(
  36930. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  36931. {
  36932. side: {
  36933. height: math.unit(35, "feet"),
  36934. name: "Side",
  36935. image: {
  36936. source: "./media/characters/sayko/side.svg",
  36937. extra: 1697/1021,
  36938. bottom: 82/1779
  36939. }
  36940. },
  36941. head: {
  36942. height: math.unit(16, "feet"),
  36943. name: "Head",
  36944. image: {
  36945. source: "./media/characters/sayko/head.svg"
  36946. }
  36947. },
  36948. forepaw: {
  36949. height: math.unit(7.85, "feet"),
  36950. name: "Forepaw",
  36951. image: {
  36952. source: "./media/characters/sayko/forepaw.svg"
  36953. }
  36954. },
  36955. hindpaw: {
  36956. height: math.unit(8.8, "feet"),
  36957. name: "Hindpaw",
  36958. image: {
  36959. source: "./media/characters/sayko/hindpaw.svg"
  36960. }
  36961. },
  36962. },
  36963. [
  36964. {
  36965. name: "Normal",
  36966. height: math.unit(35, "feet"),
  36967. default: true
  36968. },
  36969. {
  36970. name: "Colossus",
  36971. height: math.unit(100, "meters")
  36972. },
  36973. {
  36974. name: "\"Small\" Deity",
  36975. height: math.unit(1, "km")
  36976. },
  36977. {
  36978. name: "\"Large\" Deity",
  36979. height: math.unit(15, "km")
  36980. },
  36981. ]
  36982. ))
  36983. characterMakers.push(() => makeCharacter(
  36984. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  36985. {
  36986. front: {
  36987. height: math.unit(6, "feet"),
  36988. weight: math.unit(250, "lb"),
  36989. name: "Front",
  36990. image: {
  36991. source: "./media/characters/mukiro/front.svg",
  36992. extra: 1368/1310,
  36993. bottom: 34/1402
  36994. }
  36995. },
  36996. },
  36997. [
  36998. {
  36999. name: "Normal",
  37000. height: math.unit(6, "feet"),
  37001. default: true
  37002. },
  37003. ]
  37004. ))
  37005. characterMakers.push(() => makeCharacter(
  37006. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37007. {
  37008. front: {
  37009. height: math.unit(12 + 4/12, "feet"),
  37010. name: "Front",
  37011. image: {
  37012. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37013. extra: 1346/1311,
  37014. bottom: 65/1411
  37015. }
  37016. },
  37017. },
  37018. [
  37019. {
  37020. name: "Base",
  37021. height: math.unit(12 + 4/12, "feet"),
  37022. default: true
  37023. },
  37024. {
  37025. name: "Macro",
  37026. height: math.unit(150, "feet")
  37027. },
  37028. {
  37029. name: "Mega",
  37030. height: math.unit(2, "miles")
  37031. },
  37032. {
  37033. name: "Demi God",
  37034. height: math.unit(4, "AU")
  37035. },
  37036. {
  37037. name: "God Size",
  37038. height: math.unit(1, "universe")
  37039. },
  37040. ]
  37041. ))
  37042. characterMakers.push(() => makeCharacter(
  37043. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37044. {
  37045. front: {
  37046. height: math.unit(3 + 3/12, "feet"),
  37047. weight: math.unit(88, "lb"),
  37048. name: "Front",
  37049. image: {
  37050. source: "./media/characters/trey/front.svg",
  37051. extra: 1815/1509,
  37052. bottom: 60/1875
  37053. }
  37054. },
  37055. },
  37056. [
  37057. {
  37058. name: "Normal",
  37059. height: math.unit(3 + 3/12, "feet"),
  37060. default: true
  37061. },
  37062. ]
  37063. ))
  37064. characterMakers.push(() => makeCharacter(
  37065. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37066. {
  37067. front: {
  37068. height: math.unit(4, "meters"),
  37069. name: "Front",
  37070. image: {
  37071. source: "./media/characters/adelonda/front.svg",
  37072. extra: 1942/1775,
  37073. bottom: 33/1975
  37074. }
  37075. },
  37076. back: {
  37077. height: math.unit(4, "meters"),
  37078. name: "Back",
  37079. image: {
  37080. source: "./media/characters/adelonda/back.svg",
  37081. extra: 1932/1780,
  37082. bottom: 42/1974
  37083. }
  37084. },
  37085. bust: {
  37086. height: math.unit(1.8, "meter"),
  37087. name: "Bust",
  37088. image: {
  37089. source: "./media/characters/adelonda/bust.svg"
  37090. }
  37091. },
  37092. },
  37093. [
  37094. {
  37095. name: "Normal",
  37096. height: math.unit(4, "meters"),
  37097. default: true
  37098. },
  37099. ]
  37100. ))
  37101. characterMakers.push(() => makeCharacter(
  37102. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37103. {
  37104. front: {
  37105. height: math.unit(8 + 4/12, "feet"),
  37106. weight: math.unit(670, "lb"),
  37107. name: "Front",
  37108. image: {
  37109. source: "./media/characters/acadiel/front.svg",
  37110. extra: 1901/1595,
  37111. bottom: 142/2043
  37112. }
  37113. },
  37114. },
  37115. [
  37116. {
  37117. name: "Normal",
  37118. height: math.unit(8 + 4/12, "feet"),
  37119. default: true
  37120. },
  37121. {
  37122. name: "Macro",
  37123. height: math.unit(200, "feet")
  37124. },
  37125. ]
  37126. ))
  37127. characterMakers.push(() => makeCharacter(
  37128. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37129. {
  37130. front: {
  37131. height: math.unit(6 + 2/12, "feet"),
  37132. weight: math.unit(185, "lb"),
  37133. name: "Front",
  37134. image: {
  37135. source: "./media/characters/kayne-ein/front.svg",
  37136. extra: 1780/1560,
  37137. bottom: 81/1861
  37138. }
  37139. },
  37140. },
  37141. [
  37142. {
  37143. name: "Normal",
  37144. height: math.unit(6 + 2/12, "feet"),
  37145. default: true
  37146. },
  37147. {
  37148. name: "Transformation Stage",
  37149. height: math.unit(15, "feet")
  37150. },
  37151. {
  37152. name: "Macro",
  37153. height: math.unit(150, "feet")
  37154. },
  37155. {
  37156. name: "Earth's Shadow",
  37157. height: math.unit(6200, "miles")
  37158. },
  37159. {
  37160. name: "Universal Demon",
  37161. height: math.unit(28e9, "parsecs")
  37162. },
  37163. {
  37164. name: "Multiverse God",
  37165. height: math.unit(3, "multiverses")
  37166. },
  37167. ]
  37168. ))
  37169. characterMakers.push(() => makeCharacter(
  37170. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37171. {
  37172. front: {
  37173. height: math.unit(5 + 5/12, "feet"),
  37174. name: "Front",
  37175. image: {
  37176. source: "./media/characters/fawn/front.svg",
  37177. extra: 1873/1731,
  37178. bottom: 95/1968
  37179. }
  37180. },
  37181. back: {
  37182. height: math.unit(5 + 5/12, "feet"),
  37183. name: "Back",
  37184. image: {
  37185. source: "./media/characters/fawn/back.svg",
  37186. extra: 1813/1700,
  37187. bottom: 14/1827
  37188. }
  37189. },
  37190. hoof: {
  37191. height: math.unit(1.45, "feet"),
  37192. name: "Hoof",
  37193. image: {
  37194. source: "./media/characters/fawn/hoof.svg"
  37195. }
  37196. },
  37197. },
  37198. [
  37199. {
  37200. name: "Normal",
  37201. height: math.unit(5 + 5/12, "feet"),
  37202. default: true
  37203. },
  37204. ]
  37205. ))
  37206. characterMakers.push(() => makeCharacter(
  37207. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37208. {
  37209. front: {
  37210. height: math.unit(2 + 5/12, "feet"),
  37211. name: "Front",
  37212. image: {
  37213. source: "./media/characters/orion/front.svg",
  37214. extra: 1366/1304,
  37215. bottom: 43/1409
  37216. }
  37217. },
  37218. paw: {
  37219. height: math.unit(0.52, "feet"),
  37220. name: "Paw",
  37221. image: {
  37222. source: "./media/characters/orion/paw.svg"
  37223. }
  37224. },
  37225. },
  37226. [
  37227. {
  37228. name: "Normal",
  37229. height: math.unit(2 + 5/12, "feet"),
  37230. default: true
  37231. },
  37232. ]
  37233. ))
  37234. characterMakers.push(() => makeCharacter(
  37235. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  37236. {
  37237. front: {
  37238. height: math.unit(5 + 10/12, "feet"),
  37239. name: "Front",
  37240. image: {
  37241. source: "./media/characters/vera/front.svg",
  37242. extra: 1680/1575,
  37243. bottom: 49/1729
  37244. }
  37245. },
  37246. back: {
  37247. height: math.unit(5 + 10/12, "feet"),
  37248. name: "Back",
  37249. image: {
  37250. source: "./media/characters/vera/back.svg",
  37251. extra: 1700/1588,
  37252. bottom: 18/1718
  37253. }
  37254. },
  37255. arcanine: {
  37256. height: math.unit(6 + 8/12, "feet"),
  37257. name: "Arcanine",
  37258. image: {
  37259. source: "./media/characters/vera/arcanine.svg",
  37260. extra: 1590/1511,
  37261. bottom: 71/1661
  37262. }
  37263. },
  37264. maw: {
  37265. height: math.unit(0.82, "feet"),
  37266. name: "Maw",
  37267. image: {
  37268. source: "./media/characters/vera/maw.svg"
  37269. }
  37270. },
  37271. mawArcanine: {
  37272. height: math.unit(0.97, "feet"),
  37273. name: "Maw (Arcanine)",
  37274. image: {
  37275. source: "./media/characters/vera/maw-arcanine.svg"
  37276. }
  37277. },
  37278. paw: {
  37279. height: math.unit(0.75, "feet"),
  37280. name: "Paw",
  37281. image: {
  37282. source: "./media/characters/vera/paw.svg"
  37283. }
  37284. },
  37285. pawprint: {
  37286. height: math.unit(0.52, "feet"),
  37287. name: "Pawprint",
  37288. image: {
  37289. source: "./media/characters/vera/pawprint.svg"
  37290. }
  37291. },
  37292. },
  37293. [
  37294. {
  37295. name: "Normal",
  37296. height: math.unit(5 + 10/12, "feet"),
  37297. default: true
  37298. },
  37299. {
  37300. name: "Macro",
  37301. height: math.unit(75, "feet")
  37302. },
  37303. ]
  37304. ))
  37305. characterMakers.push(() => makeCharacter(
  37306. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  37307. {
  37308. front: {
  37309. height: math.unit(4, "feet"),
  37310. weight: math.unit(40, "lb"),
  37311. name: "Front",
  37312. image: {
  37313. source: "./media/characters/orvan-rabbit/front.svg",
  37314. extra: 1896/1642,
  37315. bottom: 29/1925
  37316. }
  37317. },
  37318. },
  37319. [
  37320. {
  37321. name: "Normal",
  37322. height: math.unit(4, "feet"),
  37323. default: true
  37324. },
  37325. ]
  37326. ))
  37327. characterMakers.push(() => makeCharacter(
  37328. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  37329. {
  37330. front: {
  37331. height: math.unit(6, "feet"),
  37332. weight: math.unit(168, "lb"),
  37333. name: "Front",
  37334. image: {
  37335. source: "./media/characters/lisa/front.svg",
  37336. extra: 2065/1867,
  37337. bottom: 46/2111
  37338. }
  37339. },
  37340. back: {
  37341. height: math.unit(6, "feet"),
  37342. weight: math.unit(168, "lb"),
  37343. name: "Back",
  37344. image: {
  37345. source: "./media/characters/lisa/back.svg",
  37346. extra: 1982/1838,
  37347. bottom: 29/2011
  37348. }
  37349. },
  37350. maw: {
  37351. height: math.unit(0.81, "feet"),
  37352. name: "Maw",
  37353. image: {
  37354. source: "./media/characters/lisa/maw.svg"
  37355. }
  37356. },
  37357. paw: {
  37358. height: math.unit(0.9, "feet"),
  37359. name: "Paw",
  37360. image: {
  37361. source: "./media/characters/lisa/paw.svg"
  37362. }
  37363. },
  37364. caribousune: {
  37365. height: math.unit(7 + 2/12, "feet"),
  37366. weight: math.unit(268, "lb"),
  37367. name: "Caribousune",
  37368. image: {
  37369. source: "./media/characters/lisa/caribousune.svg",
  37370. extra: 1843/1633,
  37371. bottom: 29/1872
  37372. }
  37373. },
  37374. frontCaribousune: {
  37375. height: math.unit(7 + 2/12, "feet"),
  37376. weight: math.unit(268, "lb"),
  37377. name: "Front (Caribousune)",
  37378. image: {
  37379. source: "./media/characters/lisa/front-caribousune.svg",
  37380. extra: 1818/1638,
  37381. bottom: 52/1870
  37382. }
  37383. },
  37384. sideCaribousune: {
  37385. height: math.unit(7 + 2/12, "feet"),
  37386. weight: math.unit(268, "lb"),
  37387. name: "Side (Caribousune)",
  37388. image: {
  37389. source: "./media/characters/lisa/side-caribousune.svg",
  37390. extra: 1851/1635,
  37391. bottom: 16/1867
  37392. }
  37393. },
  37394. backCaribousune: {
  37395. height: math.unit(7 + 2/12, "feet"),
  37396. weight: math.unit(268, "lb"),
  37397. name: "Back (Caribousune)",
  37398. image: {
  37399. source: "./media/characters/lisa/back-caribousune.svg",
  37400. extra: 1801/1604,
  37401. bottom: 44/1845
  37402. }
  37403. },
  37404. caribou: {
  37405. height: math.unit(7 + 2/12, "feet"),
  37406. weight: math.unit(268, "lb"),
  37407. name: "Caribou",
  37408. image: {
  37409. source: "./media/characters/lisa/caribou.svg",
  37410. extra: 1843/1633,
  37411. bottom: 29/1872
  37412. }
  37413. },
  37414. frontCaribou: {
  37415. height: math.unit(7 + 2/12, "feet"),
  37416. weight: math.unit(268, "lb"),
  37417. name: "Front (Caribou)",
  37418. image: {
  37419. source: "./media/characters/lisa/front-caribou.svg",
  37420. extra: 1818/1638,
  37421. bottom: 52/1870
  37422. }
  37423. },
  37424. sideCaribou: {
  37425. height: math.unit(7 + 2/12, "feet"),
  37426. weight: math.unit(268, "lb"),
  37427. name: "Side (Caribou)",
  37428. image: {
  37429. source: "./media/characters/lisa/side-caribou.svg",
  37430. extra: 1851/1635,
  37431. bottom: 16/1867
  37432. }
  37433. },
  37434. backCaribou: {
  37435. height: math.unit(7 + 2/12, "feet"),
  37436. weight: math.unit(268, "lb"),
  37437. name: "Back (Caribou)",
  37438. image: {
  37439. source: "./media/characters/lisa/back-caribou.svg",
  37440. extra: 1801/1604,
  37441. bottom: 44/1845
  37442. }
  37443. },
  37444. mawCaribou: {
  37445. height: math.unit(1.45, "feet"),
  37446. name: "Maw (Caribou)",
  37447. image: {
  37448. source: "./media/characters/lisa/maw-caribou.svg"
  37449. }
  37450. },
  37451. mawCaribousune: {
  37452. height: math.unit(1.45, "feet"),
  37453. name: "Maw (Caribousune)",
  37454. image: {
  37455. source: "./media/characters/lisa/maw-caribousune.svg"
  37456. }
  37457. },
  37458. pawCaribousune: {
  37459. height: math.unit(1.61, "feet"),
  37460. name: "Paw (Caribou)",
  37461. image: {
  37462. source: "./media/characters/lisa/paw-caribousune.svg"
  37463. }
  37464. },
  37465. },
  37466. [
  37467. {
  37468. name: "Normal",
  37469. height: math.unit(6, "feet")
  37470. },
  37471. {
  37472. name: "God Size",
  37473. height: math.unit(72, "feet"),
  37474. default: true
  37475. },
  37476. {
  37477. name: "Towering",
  37478. height: math.unit(288, "feet")
  37479. },
  37480. {
  37481. name: "City Size",
  37482. height: math.unit(48384, "feet")
  37483. },
  37484. {
  37485. name: "Continental",
  37486. height: math.unit(4200, "miles")
  37487. },
  37488. {
  37489. name: "Planet Eater",
  37490. height: math.unit(42, "earths")
  37491. },
  37492. {
  37493. name: "Star Swallower",
  37494. height: math.unit(42, "solarradii")
  37495. },
  37496. {
  37497. name: "System Swallower",
  37498. height: math.unit(84000, "AU")
  37499. },
  37500. {
  37501. name: "Galaxy Gobbler",
  37502. height: math.unit(42, "galaxies")
  37503. },
  37504. {
  37505. name: "Universe Devourer",
  37506. height: math.unit(42, "universes")
  37507. },
  37508. {
  37509. name: "Multiverse Muncher",
  37510. height: math.unit(42, "multiverses")
  37511. },
  37512. ]
  37513. ))
  37514. characterMakers.push(() => makeCharacter(
  37515. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  37516. {
  37517. front: {
  37518. height: math.unit(36, "feet"),
  37519. name: "Front",
  37520. image: {
  37521. source: "./media/characters/shadow-rat/front.svg",
  37522. extra: 1845/1758,
  37523. bottom: 83/1928
  37524. }
  37525. },
  37526. },
  37527. [
  37528. {
  37529. name: "Macro",
  37530. height: math.unit(36, "feet"),
  37531. default: true
  37532. },
  37533. ]
  37534. ))
  37535. characterMakers.push(() => makeCharacter(
  37536. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  37537. {
  37538. side: {
  37539. height: math.unit(8, "feet"),
  37540. weight: math.unit(2630, "lb"),
  37541. name: "Side",
  37542. image: {
  37543. source: "./media/characters/torallia/side.svg",
  37544. extra: 2164/2021,
  37545. bottom: 371/2535
  37546. }
  37547. },
  37548. },
  37549. [
  37550. {
  37551. name: "Mortal Interaction",
  37552. height: math.unit(8, "feet")
  37553. },
  37554. {
  37555. name: "Natural",
  37556. height: math.unit(24, "feet"),
  37557. default: true
  37558. },
  37559. {
  37560. name: "Giant",
  37561. height: math.unit(80, "feet")
  37562. },
  37563. {
  37564. name: "Kaiju",
  37565. height: math.unit(240, "feet")
  37566. },
  37567. {
  37568. name: "Macro",
  37569. height: math.unit(800, "feet")
  37570. },
  37571. {
  37572. name: "Macro+",
  37573. height: math.unit(2400, "feet")
  37574. },
  37575. {
  37576. name: "Macro++",
  37577. height: math.unit(8000, "feet")
  37578. },
  37579. {
  37580. name: "City-Crushing",
  37581. height: math.unit(24000, "feet")
  37582. },
  37583. {
  37584. name: "Mountain-Mashing",
  37585. height: math.unit(80000, "feet")
  37586. },
  37587. {
  37588. name: "District Demolisher",
  37589. height: math.unit(240000, "feet")
  37590. },
  37591. {
  37592. name: "Tri-County Terror",
  37593. height: math.unit(800000, "feet")
  37594. },
  37595. {
  37596. name: "State Smasher",
  37597. height: math.unit(2.4e6, "feet")
  37598. },
  37599. {
  37600. name: "Nation Nemesis",
  37601. height: math.unit(8e6, "feet")
  37602. },
  37603. {
  37604. name: "Continent Cracker",
  37605. height: math.unit(2.4e7, "feet")
  37606. },
  37607. {
  37608. name: "Planet-Pillaging",
  37609. height: math.unit(8e7, "feet")
  37610. },
  37611. {
  37612. name: "Earth-Eclipsing",
  37613. height: math.unit(2.4e8, "feet")
  37614. },
  37615. {
  37616. name: "Jovian-Jostling",
  37617. height: math.unit(8e8, "feet")
  37618. },
  37619. {
  37620. name: "Gas Giant Gulper",
  37621. height: math.unit(2.4e9, "feet")
  37622. },
  37623. {
  37624. name: "Astral Annihilator",
  37625. height: math.unit(8e9, "feet")
  37626. },
  37627. {
  37628. name: "Celestial Conqueror",
  37629. height: math.unit(2.4e10, "feet")
  37630. },
  37631. {
  37632. name: "Sol-Swallowing",
  37633. height: math.unit(8e10, "feet")
  37634. },
  37635. {
  37636. name: "Hunter of the Heavens",
  37637. height: math.unit(2.4e13, "feet")
  37638. },
  37639. ]
  37640. ))
  37641. characterMakers.push(() => makeCharacter(
  37642. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  37643. {
  37644. front: {
  37645. height: math.unit(6 + 8/12, "feet"),
  37646. name: "Front",
  37647. image: {
  37648. source: "./media/characters/rebecca-pawlson/front.svg",
  37649. extra: 1737/1596,
  37650. bottom: 107/1844
  37651. }
  37652. },
  37653. back: {
  37654. height: math.unit(6 + 8/12, "feet"),
  37655. name: "Back",
  37656. image: {
  37657. source: "./media/characters/rebecca-pawlson/back.svg",
  37658. extra: 1702/1523,
  37659. bottom: 86/1788
  37660. }
  37661. },
  37662. },
  37663. [
  37664. {
  37665. name: "Normal",
  37666. height: math.unit(6 + 8/12, "feet")
  37667. },
  37668. {
  37669. name: "Mini Macro",
  37670. height: math.unit(10, "feet"),
  37671. default: true
  37672. },
  37673. {
  37674. name: "Macro",
  37675. height: math.unit(100, "feet")
  37676. },
  37677. {
  37678. name: "Mega Macro",
  37679. height: math.unit(2500, "feet")
  37680. },
  37681. {
  37682. name: "Giga Macro",
  37683. height: math.unit(50, "miles")
  37684. },
  37685. ]
  37686. ))
  37687. characterMakers.push(() => makeCharacter(
  37688. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  37689. {
  37690. front: {
  37691. height: math.unit(7 + 6/12, "feet"),
  37692. weight: math.unit(600, "lb"),
  37693. name: "Front",
  37694. image: {
  37695. source: "./media/characters/moxie-nova/front.svg",
  37696. extra: 1734/1652,
  37697. bottom: 41/1775
  37698. }
  37699. },
  37700. },
  37701. [
  37702. {
  37703. name: "Normal",
  37704. height: math.unit(7 + 6/12, "feet"),
  37705. default: true
  37706. },
  37707. ]
  37708. ))
  37709. characterMakers.push(() => makeCharacter(
  37710. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  37711. {
  37712. front: {
  37713. height: math.unit(5, "feet"),
  37714. weight: math.unit(150, "lb"),
  37715. name: "Front",
  37716. image: {
  37717. source: "./media/characters/tiffany/front.svg",
  37718. extra: 1941/1845,
  37719. bottom: 58/1999
  37720. }
  37721. },
  37722. },
  37723. [
  37724. {
  37725. name: "Normal",
  37726. height: math.unit(5, "feet"),
  37727. default: true
  37728. },
  37729. ]
  37730. ))
  37731. characterMakers.push(() => makeCharacter(
  37732. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  37733. {
  37734. front: {
  37735. height: math.unit(8, "feet"),
  37736. weight: math.unit(300, "lb"),
  37737. name: "Front",
  37738. image: {
  37739. source: "./media/characters/raxinath/front.svg",
  37740. extra: 1407/1309,
  37741. bottom: 39/1446
  37742. }
  37743. },
  37744. back: {
  37745. height: math.unit(8, "feet"),
  37746. weight: math.unit(300, "lb"),
  37747. name: "Back",
  37748. image: {
  37749. source: "./media/characters/raxinath/back.svg",
  37750. extra: 1405/1315,
  37751. bottom: 9/1414
  37752. }
  37753. },
  37754. },
  37755. [
  37756. {
  37757. name: "Speck",
  37758. height: math.unit(0.5, "nm")
  37759. },
  37760. {
  37761. name: "Micro",
  37762. height: math.unit(3, "inches")
  37763. },
  37764. {
  37765. name: "Kobold",
  37766. height: math.unit(3, "feet")
  37767. },
  37768. {
  37769. name: "Normal",
  37770. height: math.unit(8, "feet"),
  37771. default: true
  37772. },
  37773. {
  37774. name: "Giant",
  37775. height: math.unit(50, "feet")
  37776. },
  37777. {
  37778. name: "Macro",
  37779. height: math.unit(1000, "feet")
  37780. },
  37781. {
  37782. name: "Megamacro",
  37783. height: math.unit(1, "mile")
  37784. },
  37785. ]
  37786. ))
  37787. characterMakers.push(() => makeCharacter(
  37788. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  37789. {
  37790. front: {
  37791. height: math.unit(10, "feet"),
  37792. weight: math.unit(1442, "lb"),
  37793. name: "Front",
  37794. image: {
  37795. source: "./media/characters/mal-dragon/front.svg",
  37796. extra: 1515/1444,
  37797. bottom: 113/1628
  37798. }
  37799. },
  37800. back: {
  37801. height: math.unit(10, "feet"),
  37802. weight: math.unit(1442, "lb"),
  37803. name: "Back",
  37804. image: {
  37805. source: "./media/characters/mal-dragon/back.svg",
  37806. extra: 1527/1434,
  37807. bottom: 25/1552
  37808. }
  37809. },
  37810. },
  37811. [
  37812. {
  37813. name: "Mortal Interaction",
  37814. height: math.unit(10, "feet"),
  37815. default: true
  37816. },
  37817. {
  37818. name: "Large",
  37819. height: math.unit(30, "feet")
  37820. },
  37821. {
  37822. name: "Kaiju",
  37823. height: math.unit(300, "feet")
  37824. },
  37825. {
  37826. name: "Megamacro",
  37827. height: math.unit(10000, "feet")
  37828. },
  37829. {
  37830. name: "Continent Cracker",
  37831. height: math.unit(30000000, "feet")
  37832. },
  37833. {
  37834. name: "Sol-Swallowing",
  37835. height: math.unit(1e11, "feet")
  37836. },
  37837. {
  37838. name: "Light Universal",
  37839. height: math.unit(5, "universes")
  37840. },
  37841. {
  37842. name: "Universe Atoms",
  37843. height: math.unit(1.829e9, "universes")
  37844. },
  37845. {
  37846. name: "Light Multiversal",
  37847. height: math.unit(5, "multiverses")
  37848. },
  37849. {
  37850. name: "Multiverse Atoms",
  37851. height: math.unit(1.829e9, "multiverses")
  37852. },
  37853. {
  37854. name: "Fabric of Time",
  37855. height: math.unit(1e262, "multiverses")
  37856. },
  37857. ]
  37858. ))
  37859. characterMakers.push(() => makeCharacter(
  37860. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  37861. {
  37862. front: {
  37863. height: math.unit(9, "feet"),
  37864. weight: math.unit(1050, "lb"),
  37865. name: "Front",
  37866. image: {
  37867. source: "./media/characters/tabitha/front.svg",
  37868. extra: 2083/1994,
  37869. bottom: 68/2151
  37870. }
  37871. },
  37872. },
  37873. [
  37874. {
  37875. name: "Baseline",
  37876. height: math.unit(9, "feet"),
  37877. default: true
  37878. },
  37879. {
  37880. name: "Giant",
  37881. height: math.unit(90, "feet")
  37882. },
  37883. {
  37884. name: "Macro",
  37885. height: math.unit(900, "feet")
  37886. },
  37887. {
  37888. name: "Megamacro",
  37889. height: math.unit(9000, "feet")
  37890. },
  37891. {
  37892. name: "City-Crushing",
  37893. height: math.unit(27000, "feet")
  37894. },
  37895. {
  37896. name: "Mountain-Mashing",
  37897. height: math.unit(90000, "feet")
  37898. },
  37899. {
  37900. name: "Nation Nemesis",
  37901. height: math.unit(9e6, "feet")
  37902. },
  37903. {
  37904. name: "Continent Cracker",
  37905. height: math.unit(27e6, "feet")
  37906. },
  37907. {
  37908. name: "Earth-Eclipsing",
  37909. height: math.unit(2.7e8, "feet")
  37910. },
  37911. {
  37912. name: "Gas Giant Gulper",
  37913. height: math.unit(2.7e9, "feet")
  37914. },
  37915. {
  37916. name: "Sol-Swallowing",
  37917. height: math.unit(9e10, "feet")
  37918. },
  37919. {
  37920. name: "Galaxy Gulper",
  37921. height: math.unit(9, "galaxies")
  37922. },
  37923. {
  37924. name: "Cosmos Churner",
  37925. height: math.unit(9, "universes")
  37926. },
  37927. ]
  37928. ))
  37929. characterMakers.push(() => makeCharacter(
  37930. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  37931. {
  37932. front: {
  37933. height: math.unit(160, "cm"),
  37934. weight: math.unit(55, "kg"),
  37935. name: "Front",
  37936. image: {
  37937. source: "./media/characters/tow/front.svg",
  37938. extra: 1751/1722,
  37939. bottom: 74/1825
  37940. }
  37941. },
  37942. },
  37943. [
  37944. {
  37945. name: "Norm",
  37946. height: math.unit(160, "cm")
  37947. },
  37948. {
  37949. name: "Casual",
  37950. height: math.unit(3200, "m"),
  37951. default: true
  37952. },
  37953. {
  37954. name: "Show-Off",
  37955. height: math.unit(160, "km")
  37956. },
  37957. ]
  37958. ))
  37959. characterMakers.push(() => makeCharacter(
  37960. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  37961. {
  37962. front: {
  37963. height: math.unit(7 + 11/12, "feet"),
  37964. weight: math.unit(342.8, "lb"),
  37965. name: "Front",
  37966. image: {
  37967. source: "./media/characters/vivian-orca-dragon/front.svg",
  37968. extra: 1890/1865,
  37969. bottom: 28/1918
  37970. }
  37971. },
  37972. },
  37973. [
  37974. {
  37975. name: "Micro",
  37976. height: math.unit(5, "inches")
  37977. },
  37978. {
  37979. name: "Normal",
  37980. height: math.unit(7 + 11/12, "feet"),
  37981. default: true
  37982. },
  37983. {
  37984. name: "Macro",
  37985. height: math.unit(395 + 7/12, "feet")
  37986. },
  37987. ]
  37988. ))
  37989. characterMakers.push(() => makeCharacter(
  37990. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  37991. {
  37992. side: {
  37993. height: math.unit(10, "feet"),
  37994. weight: math.unit(1442, "lb"),
  37995. name: "Side",
  37996. image: {
  37997. source: "./media/characters/lotherakon/side.svg",
  37998. extra: 1604/1497,
  37999. bottom: 89/1693
  38000. }
  38001. },
  38002. },
  38003. [
  38004. {
  38005. name: "Mortal Interaction",
  38006. height: math.unit(10, "feet")
  38007. },
  38008. {
  38009. name: "Large",
  38010. height: math.unit(30, "feet"),
  38011. default: true
  38012. },
  38013. {
  38014. name: "Giant",
  38015. height: math.unit(100, "feet")
  38016. },
  38017. {
  38018. name: "Kaiju",
  38019. height: math.unit(300, "feet")
  38020. },
  38021. {
  38022. name: "Macro",
  38023. height: math.unit(1000, "feet")
  38024. },
  38025. {
  38026. name: "Macro+",
  38027. height: math.unit(3000, "feet")
  38028. },
  38029. {
  38030. name: "Megamacro",
  38031. height: math.unit(10000, "feet")
  38032. },
  38033. {
  38034. name: "City-Crushing",
  38035. height: math.unit(30000, "feet")
  38036. },
  38037. {
  38038. name: "Continent Cracker",
  38039. height: math.unit(30e6, "feet")
  38040. },
  38041. {
  38042. name: "Earth Eclipsing",
  38043. height: math.unit(3e8, "feet")
  38044. },
  38045. {
  38046. name: "Gas Giant Gulper",
  38047. height: math.unit(3e9, "feet")
  38048. },
  38049. {
  38050. name: "Sol-Swallowing",
  38051. height: math.unit(1e11, "feet")
  38052. },
  38053. {
  38054. name: "System Swallower",
  38055. height: math.unit(3e14, "feet")
  38056. },
  38057. {
  38058. name: "Galaxy Gulper",
  38059. height: math.unit(10, "galaxies")
  38060. },
  38061. {
  38062. name: "Light Universal",
  38063. height: math.unit(5, "universes")
  38064. },
  38065. {
  38066. name: "Universe Palm",
  38067. height: math.unit(20, "universes")
  38068. },
  38069. {
  38070. name: "Light Multiversal",
  38071. height: math.unit(5, "multiverses")
  38072. },
  38073. {
  38074. name: "Multiverse Palm",
  38075. height: math.unit(20, "multiverses")
  38076. },
  38077. {
  38078. name: "Inferno Incarnate",
  38079. height: math.unit(1e7, "multiverses")
  38080. },
  38081. ]
  38082. ))
  38083. characterMakers.push(() => makeCharacter(
  38084. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38085. {
  38086. front: {
  38087. height: math.unit(8, "feet"),
  38088. weight: math.unit(1200, "lb"),
  38089. name: "Front",
  38090. image: {
  38091. source: "./media/characters/malithee/front.svg",
  38092. extra: 1675/1640,
  38093. bottom: 162/1837
  38094. }
  38095. },
  38096. },
  38097. [
  38098. {
  38099. name: "Mortal Interaction",
  38100. height: math.unit(8, "feet"),
  38101. default: true
  38102. },
  38103. {
  38104. name: "Large",
  38105. height: math.unit(24, "feet")
  38106. },
  38107. {
  38108. name: "Kaiju",
  38109. height: math.unit(240, "feet")
  38110. },
  38111. {
  38112. name: "Megamacro",
  38113. height: math.unit(8000, "feet")
  38114. },
  38115. {
  38116. name: "Continent Cracker",
  38117. height: math.unit(24e6, "feet")
  38118. },
  38119. {
  38120. name: "Earth-Eclipsing",
  38121. height: math.unit(2.4e8, "feet")
  38122. },
  38123. {
  38124. name: "Sol-Swallowing",
  38125. height: math.unit(8e10, "feet")
  38126. },
  38127. {
  38128. name: "Galaxy Gulper",
  38129. height: math.unit(8, "galaxies")
  38130. },
  38131. {
  38132. name: "Light Universal",
  38133. height: math.unit(4, "universes")
  38134. },
  38135. {
  38136. name: "Universe Atoms",
  38137. height: math.unit(1.829e9, "universes")
  38138. },
  38139. {
  38140. name: "Light Multiversal",
  38141. height: math.unit(4, "multiverses")
  38142. },
  38143. {
  38144. name: "Multiverse Atoms",
  38145. height: math.unit(1.829e9, "multiverses")
  38146. },
  38147. {
  38148. name: "Nigh-Omnipresence",
  38149. height: math.unit(8e261, "multiverses")
  38150. },
  38151. ]
  38152. ))
  38153. characterMakers.push(() => makeCharacter(
  38154. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38155. {
  38156. front: {
  38157. height: math.unit(10, "feet"),
  38158. weight: math.unit(1500, "lb"),
  38159. name: "Front",
  38160. image: {
  38161. source: "./media/characters/miles-thestia/front.svg",
  38162. extra: 1812/1727,
  38163. bottom: 86/1898
  38164. }
  38165. },
  38166. back: {
  38167. height: math.unit(10, "feet"),
  38168. weight: math.unit(1500, "lb"),
  38169. name: "Back",
  38170. image: {
  38171. source: "./media/characters/miles-thestia/back.svg",
  38172. extra: 1799/1690,
  38173. bottom: 47/1846
  38174. }
  38175. },
  38176. frontNsfw: {
  38177. height: math.unit(10, "feet"),
  38178. weight: math.unit(1500, "lb"),
  38179. name: "Front (NSFW)",
  38180. image: {
  38181. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38182. extra: 1812/1727,
  38183. bottom: 86/1898
  38184. }
  38185. },
  38186. },
  38187. [
  38188. {
  38189. name: "Mini-Macro",
  38190. height: math.unit(10, "feet"),
  38191. default: true
  38192. },
  38193. ]
  38194. ))
  38195. characterMakers.push(() => makeCharacter(
  38196. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38197. {
  38198. front: {
  38199. height: math.unit(25, "feet"),
  38200. name: "Front",
  38201. image: {
  38202. source: "./media/characters/titan-s-wulf/front.svg",
  38203. extra: 1560/1484,
  38204. bottom: 76/1636
  38205. }
  38206. },
  38207. },
  38208. [
  38209. {
  38210. name: "Smallest",
  38211. height: math.unit(25, "feet"),
  38212. default: true
  38213. },
  38214. {
  38215. name: "Normal",
  38216. height: math.unit(200, "feet")
  38217. },
  38218. {
  38219. name: "Macro",
  38220. height: math.unit(200000, "feet")
  38221. },
  38222. {
  38223. name: "Multiversal Original",
  38224. height: math.unit(10000, "multiverses")
  38225. },
  38226. ]
  38227. ))
  38228. characterMakers.push(() => makeCharacter(
  38229. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  38230. {
  38231. front: {
  38232. height: math.unit(8, "feet"),
  38233. weight: math.unit(553, "lb"),
  38234. name: "Front",
  38235. image: {
  38236. source: "./media/characters/tawendeh/front.svg",
  38237. extra: 2365/2268,
  38238. bottom: 83/2448
  38239. }
  38240. },
  38241. frontClothed: {
  38242. height: math.unit(8, "feet"),
  38243. weight: math.unit(553, "lb"),
  38244. name: "Front (Clothed)",
  38245. image: {
  38246. source: "./media/characters/tawendeh/front-clothed.svg",
  38247. extra: 2365/2268,
  38248. bottom: 83/2448
  38249. }
  38250. },
  38251. back: {
  38252. height: math.unit(8, "feet"),
  38253. weight: math.unit(553, "lb"),
  38254. name: "Back",
  38255. image: {
  38256. source: "./media/characters/tawendeh/back.svg",
  38257. extra: 2397/2294,
  38258. bottom: 42/2439
  38259. }
  38260. },
  38261. },
  38262. [
  38263. {
  38264. name: "Mortal Interaction",
  38265. height: math.unit(8, "feet"),
  38266. default: true
  38267. },
  38268. {
  38269. name: "Giant",
  38270. height: math.unit(80, "feet")
  38271. },
  38272. {
  38273. name: "Macro",
  38274. height: math.unit(800, "feet")
  38275. },
  38276. {
  38277. name: "Megamacro",
  38278. height: math.unit(8000, "feet")
  38279. },
  38280. {
  38281. name: "City-Crushing",
  38282. height: math.unit(24000, "feet")
  38283. },
  38284. {
  38285. name: "Mountain-Mashing",
  38286. height: math.unit(80000, "feet")
  38287. },
  38288. {
  38289. name: "Nation Nemesis",
  38290. height: math.unit(8e6, "feet")
  38291. },
  38292. {
  38293. name: "Continent Cracker",
  38294. height: math.unit(24e6, "feet")
  38295. },
  38296. {
  38297. name: "Earth-Eclipsing",
  38298. height: math.unit(2.4e8, "feet")
  38299. },
  38300. {
  38301. name: "Gas Giant Gulper",
  38302. height: math.unit(2.4e9, "feet")
  38303. },
  38304. {
  38305. name: "Sol-Swallowing",
  38306. height: math.unit(8e10, "feet")
  38307. },
  38308. {
  38309. name: "Galaxy Gulper",
  38310. height: math.unit(8, "galaxies")
  38311. },
  38312. {
  38313. name: "Cosmos Churner",
  38314. height: math.unit(8, "universes")
  38315. },
  38316. {
  38317. name: "Omnipotent Otter",
  38318. height: math.unit(80, "universes")
  38319. },
  38320. ]
  38321. ))
  38322. characterMakers.push(() => makeCharacter(
  38323. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  38324. {
  38325. front: {
  38326. height: math.unit(2.6, "meters"),
  38327. weight: math.unit(900, "kg"),
  38328. name: "Front",
  38329. image: {
  38330. source: "./media/characters/neesha/front.svg",
  38331. extra: 1803/1653,
  38332. bottom: 128/1931
  38333. }
  38334. },
  38335. },
  38336. [
  38337. {
  38338. name: "Normal",
  38339. height: math.unit(2.6, "meters"),
  38340. default: true
  38341. },
  38342. {
  38343. name: "Macro",
  38344. height: math.unit(50, "meters")
  38345. },
  38346. ]
  38347. ))
  38348. characterMakers.push(() => makeCharacter(
  38349. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  38350. {
  38351. front: {
  38352. height: math.unit(5, "feet"),
  38353. weight: math.unit(185, "lb"),
  38354. name: "Front",
  38355. image: {
  38356. source: "./media/characters/kyera/front.svg",
  38357. extra: 1875/1790,
  38358. bottom: 96/1971
  38359. }
  38360. },
  38361. },
  38362. [
  38363. {
  38364. name: "Normal",
  38365. height: math.unit(5, "feet"),
  38366. default: true
  38367. },
  38368. ]
  38369. ))
  38370. characterMakers.push(() => makeCharacter(
  38371. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  38372. {
  38373. front: {
  38374. height: math.unit(7 + 6/12, "feet"),
  38375. weight: math.unit(540, "lb"),
  38376. name: "Front",
  38377. image: {
  38378. source: "./media/characters/yuko/front.svg",
  38379. extra: 1282/1222,
  38380. bottom: 101/1383
  38381. }
  38382. },
  38383. frontClothed: {
  38384. height: math.unit(7 + 6/12, "feet"),
  38385. weight: math.unit(540, "lb"),
  38386. name: "Front (Clothed)",
  38387. image: {
  38388. source: "./media/characters/yuko/front-clothed.svg",
  38389. extra: 1282/1222,
  38390. bottom: 101/1383
  38391. }
  38392. },
  38393. },
  38394. [
  38395. {
  38396. name: "Normal",
  38397. height: math.unit(7 + 6/12, "feet"),
  38398. default: true
  38399. },
  38400. {
  38401. name: "Macro",
  38402. height: math.unit(26 + 9/12, "feet")
  38403. },
  38404. {
  38405. name: "Megamacro",
  38406. height: math.unit(300, "feet")
  38407. },
  38408. {
  38409. name: "Gigamacro",
  38410. height: math.unit(5000, "feet")
  38411. },
  38412. {
  38413. name: "Planetary",
  38414. height: math.unit(10000, "miles")
  38415. },
  38416. ]
  38417. ))
  38418. characterMakers.push(() => makeCharacter(
  38419. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  38420. {
  38421. front: {
  38422. height: math.unit(8 + 2/12, "feet"),
  38423. weight: math.unit(600, "lb"),
  38424. name: "Front",
  38425. image: {
  38426. source: "./media/characters/deam-nitrel/front.svg",
  38427. extra: 1308/1234,
  38428. bottom: 125/1433
  38429. }
  38430. },
  38431. },
  38432. [
  38433. {
  38434. name: "Normal",
  38435. height: math.unit(8 + 2/12, "feet"),
  38436. default: true
  38437. },
  38438. ]
  38439. ))
  38440. characterMakers.push(() => makeCharacter(
  38441. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  38442. {
  38443. front: {
  38444. height: math.unit(6.1, "feet"),
  38445. weight: math.unit(180, "lb"),
  38446. name: "Front",
  38447. image: {
  38448. source: "./media/characters/skyress/front.svg",
  38449. extra: 1045/915,
  38450. bottom: 28/1073
  38451. }
  38452. },
  38453. maw: {
  38454. height: math.unit(1, "feet"),
  38455. name: "Maw",
  38456. image: {
  38457. source: "./media/characters/skyress/maw.svg"
  38458. }
  38459. },
  38460. },
  38461. [
  38462. {
  38463. name: "Normal",
  38464. height: math.unit(6.1, "feet"),
  38465. default: true
  38466. },
  38467. {
  38468. name: "Macro",
  38469. height: math.unit(200, "feet")
  38470. },
  38471. ]
  38472. ))
  38473. characterMakers.push(() => makeCharacter(
  38474. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  38475. {
  38476. front: {
  38477. height: math.unit(4 + 2/12, "feet"),
  38478. weight: math.unit(40, "kg"),
  38479. name: "Front",
  38480. image: {
  38481. source: "./media/characters/amethyst-jones/front.svg",
  38482. extra: 1220/1150,
  38483. bottom: 101/1321
  38484. }
  38485. },
  38486. },
  38487. [
  38488. {
  38489. name: "Normal",
  38490. height: math.unit(4 + 2/12, "feet"),
  38491. default: true
  38492. },
  38493. ]
  38494. ))
  38495. characterMakers.push(() => makeCharacter(
  38496. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  38497. {
  38498. front: {
  38499. height: math.unit(1.7, "m"),
  38500. weight: math.unit(135, "lb"),
  38501. name: "Front",
  38502. image: {
  38503. source: "./media/characters/jade/front.svg",
  38504. extra: 1818/1767,
  38505. bottom: 32/1850
  38506. }
  38507. },
  38508. back: {
  38509. height: math.unit(1.7, "m"),
  38510. weight: math.unit(135, "lb"),
  38511. name: "Back",
  38512. image: {
  38513. source: "./media/characters/jade/back.svg",
  38514. extra: 1869/1809,
  38515. bottom: 35/1904
  38516. }
  38517. },
  38518. hand: {
  38519. height: math.unit(0.24, "m"),
  38520. name: "Hand",
  38521. image: {
  38522. source: "./media/characters/jade/hand.svg"
  38523. }
  38524. },
  38525. foot: {
  38526. height: math.unit(0.263, "m"),
  38527. name: "Foot",
  38528. image: {
  38529. source: "./media/characters/jade/foot.svg"
  38530. }
  38531. },
  38532. dick: {
  38533. height: math.unit(0.47, "m"),
  38534. name: "Dick",
  38535. image: {
  38536. source: "./media/characters/jade/dick.svg"
  38537. }
  38538. },
  38539. },
  38540. [
  38541. {
  38542. name: "Micro",
  38543. height: math.unit(22, "cm")
  38544. },
  38545. {
  38546. name: "Normal",
  38547. height: math.unit(1.7, "m"),
  38548. default: true
  38549. },
  38550. {
  38551. name: "Macro",
  38552. height: math.unit(152, "m")
  38553. },
  38554. ]
  38555. ))
  38556. characterMakers.push(() => makeCharacter(
  38557. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  38558. {
  38559. front: {
  38560. height: math.unit(100, "miles"),
  38561. weight: math.unit(20000, "tons"),
  38562. name: "Front",
  38563. image: {
  38564. source: "./media/characters/cookie/front.svg",
  38565. extra: 1125/1070,
  38566. bottom: 30/1155
  38567. }
  38568. },
  38569. },
  38570. [
  38571. {
  38572. name: "Big",
  38573. height: math.unit(50, "feet")
  38574. },
  38575. {
  38576. name: "Macro",
  38577. height: math.unit(100, "miles"),
  38578. default: true
  38579. },
  38580. {
  38581. name: "Megamacro",
  38582. height: math.unit(90000, "miles")
  38583. },
  38584. ]
  38585. ))
  38586. characterMakers.push(() => makeCharacter(
  38587. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  38588. {
  38589. front: {
  38590. height: math.unit(6, "feet"),
  38591. weight: math.unit(145, "lb"),
  38592. name: "Front",
  38593. image: {
  38594. source: "./media/characters/farzian/front.svg",
  38595. extra: 1902/1693,
  38596. bottom: 108/2010
  38597. }
  38598. },
  38599. },
  38600. [
  38601. {
  38602. name: "Macro",
  38603. height: math.unit(500, "feet"),
  38604. default: true
  38605. },
  38606. ]
  38607. ))
  38608. characterMakers.push(() => makeCharacter(
  38609. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  38610. {
  38611. front: {
  38612. height: math.unit(3 + 6/12, "feet"),
  38613. weight: math.unit(50, "lb"),
  38614. name: "Front",
  38615. image: {
  38616. source: "./media/characters/kimberly-tilson/front.svg",
  38617. extra: 1400/1322,
  38618. bottom: 36/1436
  38619. }
  38620. },
  38621. back: {
  38622. height: math.unit(3 + 6/12, "feet"),
  38623. weight: math.unit(50, "lb"),
  38624. name: "Back",
  38625. image: {
  38626. source: "./media/characters/kimberly-tilson/back.svg",
  38627. extra: 1370/1307,
  38628. bottom: 20/1390
  38629. }
  38630. },
  38631. },
  38632. [
  38633. {
  38634. name: "Normal",
  38635. height: math.unit(3 + 6/12, "feet"),
  38636. default: true
  38637. },
  38638. ]
  38639. ))
  38640. characterMakers.push(() => makeCharacter(
  38641. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  38642. {
  38643. front: {
  38644. height: math.unit(1148, "feet"),
  38645. weight: math.unit(34057, "lb"),
  38646. name: "Front",
  38647. image: {
  38648. source: "./media/characters/harthos/front.svg",
  38649. extra: 1391/1339,
  38650. bottom: 13/1404
  38651. }
  38652. },
  38653. },
  38654. [
  38655. {
  38656. name: "Macro",
  38657. height: math.unit(1148, "feet"),
  38658. default: true
  38659. },
  38660. ]
  38661. ))
  38662. characterMakers.push(() => makeCharacter(
  38663. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  38664. {
  38665. front: {
  38666. height: math.unit(15, "feet"),
  38667. name: "Front",
  38668. image: {
  38669. source: "./media/characters/hypatia/front.svg",
  38670. extra: 1653/1591,
  38671. bottom: 79/1732
  38672. }
  38673. },
  38674. },
  38675. [
  38676. {
  38677. name: "Normal",
  38678. height: math.unit(15, "feet")
  38679. },
  38680. {
  38681. name: "Small",
  38682. height: math.unit(300, "feet")
  38683. },
  38684. {
  38685. name: "Macro",
  38686. height: math.unit(2500, "feet"),
  38687. default: true
  38688. },
  38689. {
  38690. name: "Mega Macro",
  38691. height: math.unit(1500, "miles")
  38692. },
  38693. {
  38694. name: "Giga Macro",
  38695. height: math.unit(1.5e6, "miles")
  38696. },
  38697. ]
  38698. ))
  38699. characterMakers.push(() => makeCharacter(
  38700. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  38701. {
  38702. front: {
  38703. height: math.unit(6, "feet"),
  38704. weight: math.unit(200, "lb"),
  38705. name: "Front",
  38706. image: {
  38707. source: "./media/characters/wulver/front.svg",
  38708. extra: 1724/1632,
  38709. bottom: 130/1854
  38710. }
  38711. },
  38712. frontNsfw: {
  38713. height: math.unit(6, "feet"),
  38714. weight: math.unit(200, "lb"),
  38715. name: "Front (NSFW)",
  38716. image: {
  38717. source: "./media/characters/wulver/front-nsfw.svg",
  38718. extra: 1724/1632,
  38719. bottom: 130/1854
  38720. }
  38721. },
  38722. },
  38723. [
  38724. {
  38725. name: "Human-Sized",
  38726. height: math.unit(6, "feet")
  38727. },
  38728. {
  38729. name: "Normal",
  38730. height: math.unit(4, "meters"),
  38731. default: true
  38732. },
  38733. {
  38734. name: "Large",
  38735. height: math.unit(6, "m")
  38736. },
  38737. ]
  38738. ))
  38739. characterMakers.push(() => makeCharacter(
  38740. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  38741. {
  38742. front: {
  38743. height: math.unit(7, "feet"),
  38744. name: "Front",
  38745. image: {
  38746. source: "./media/characters/maru/front.svg",
  38747. extra: 1595/1570,
  38748. bottom: 0/1595
  38749. }
  38750. },
  38751. },
  38752. [
  38753. {
  38754. name: "Normal",
  38755. height: math.unit(7, "feet"),
  38756. default: true
  38757. },
  38758. {
  38759. name: "Macro",
  38760. height: math.unit(700, "feet")
  38761. },
  38762. {
  38763. name: "Mega Macro",
  38764. height: math.unit(25, "miles")
  38765. },
  38766. ]
  38767. ))
  38768. characterMakers.push(() => makeCharacter(
  38769. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  38770. {
  38771. front: {
  38772. height: math.unit(6, "feet"),
  38773. weight: math.unit(170, "lb"),
  38774. name: "Front",
  38775. image: {
  38776. source: "./media/characters/xenon/front.svg",
  38777. extra: 1376/1305,
  38778. bottom: 56/1432
  38779. }
  38780. },
  38781. back: {
  38782. height: math.unit(6, "feet"),
  38783. weight: math.unit(170, "lb"),
  38784. name: "Back",
  38785. image: {
  38786. source: "./media/characters/xenon/back.svg",
  38787. extra: 1328/1259,
  38788. bottom: 95/1423
  38789. }
  38790. },
  38791. maw: {
  38792. height: math.unit(0.52, "feet"),
  38793. name: "Maw",
  38794. image: {
  38795. source: "./media/characters/xenon/maw.svg"
  38796. }
  38797. },
  38798. hand: {
  38799. height: math.unit(0.82, "feet"),
  38800. name: "Hand",
  38801. image: {
  38802. source: "./media/characters/xenon/hand.svg"
  38803. }
  38804. },
  38805. foot: {
  38806. height: math.unit(1.13, "feet"),
  38807. name: "Foot",
  38808. image: {
  38809. source: "./media/characters/xenon/foot.svg"
  38810. }
  38811. },
  38812. },
  38813. [
  38814. {
  38815. name: "Micro",
  38816. height: math.unit(0.8, "inches")
  38817. },
  38818. {
  38819. name: "Normal",
  38820. height: math.unit(6, "feet")
  38821. },
  38822. {
  38823. name: "Macro",
  38824. height: math.unit(50, "feet"),
  38825. default: true
  38826. },
  38827. {
  38828. name: "Macro+",
  38829. height: math.unit(250, "feet")
  38830. },
  38831. {
  38832. name: "Megamacro",
  38833. height: math.unit(1500, "feet")
  38834. },
  38835. ]
  38836. ))
  38837. characterMakers.push(() => makeCharacter(
  38838. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  38839. {
  38840. front: {
  38841. height: math.unit(7 + 5/12, "feet"),
  38842. name: "Front",
  38843. image: {
  38844. source: "./media/characters/zane/front.svg",
  38845. extra: 1260/1203,
  38846. bottom: 94/1354
  38847. }
  38848. },
  38849. back: {
  38850. height: math.unit(5.05, "feet"),
  38851. name: "Back",
  38852. image: {
  38853. source: "./media/characters/zane/back.svg",
  38854. extra: 893/829,
  38855. bottom: 30/923
  38856. }
  38857. },
  38858. werewolf: {
  38859. height: math.unit(11, "feet"),
  38860. name: "Werewolf",
  38861. image: {
  38862. source: "./media/characters/zane/werewolf.svg",
  38863. extra: 1383/1323,
  38864. bottom: 89/1472
  38865. }
  38866. },
  38867. foot: {
  38868. height: math.unit(1.46, "feet"),
  38869. name: "Foot",
  38870. image: {
  38871. source: "./media/characters/zane/foot.svg"
  38872. }
  38873. },
  38874. footFront: {
  38875. height: math.unit(0.784, "feet"),
  38876. name: "Foot (Front)",
  38877. image: {
  38878. source: "./media/characters/zane/foot-front.svg"
  38879. }
  38880. },
  38881. dick: {
  38882. height: math.unit(1.95, "feet"),
  38883. name: "Dick",
  38884. image: {
  38885. source: "./media/characters/zane/dick.svg"
  38886. }
  38887. },
  38888. dickWerewolf: {
  38889. height: math.unit(3.77, "feet"),
  38890. name: "Dick (Werewolf)",
  38891. image: {
  38892. source: "./media/characters/zane/dick.svg"
  38893. }
  38894. },
  38895. },
  38896. [
  38897. {
  38898. name: "Normal",
  38899. height: math.unit(7 + 5/12, "feet"),
  38900. default: true
  38901. },
  38902. ]
  38903. ))
  38904. characterMakers.push(() => makeCharacter(
  38905. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  38906. {
  38907. front: {
  38908. height: math.unit(6 + 2/12, "feet"),
  38909. weight: math.unit(284, "lb"),
  38910. name: "Front",
  38911. image: {
  38912. source: "./media/characters/benni-desparque/front.svg",
  38913. extra: 1353/1126,
  38914. bottom: 69/1422
  38915. }
  38916. },
  38917. },
  38918. [
  38919. {
  38920. name: "Civilian",
  38921. height: math.unit(6 + 2/12, "feet")
  38922. },
  38923. {
  38924. name: "Normal",
  38925. height: math.unit(98, "feet"),
  38926. default: true
  38927. },
  38928. {
  38929. name: "Kaiju Fighter",
  38930. height: math.unit(268, "feet")
  38931. },
  38932. ]
  38933. ))
  38934. characterMakers.push(() => makeCharacter(
  38935. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  38936. {
  38937. front: {
  38938. height: math.unit(5, "feet"),
  38939. weight: math.unit(105, "lb"),
  38940. name: "Front",
  38941. image: {
  38942. source: "./media/characters/maxine/front.svg",
  38943. extra: 1386/1250,
  38944. bottom: 71/1457
  38945. }
  38946. },
  38947. },
  38948. [
  38949. {
  38950. name: "Normal",
  38951. height: math.unit(5, "feet"),
  38952. default: true
  38953. },
  38954. ]
  38955. ))
  38956. characterMakers.push(() => makeCharacter(
  38957. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  38958. {
  38959. front: {
  38960. height: math.unit(11 + 7/12, "feet"),
  38961. weight: math.unit(9576, "lb"),
  38962. name: "Front",
  38963. image: {
  38964. source: "./media/characters/scaly/front.svg",
  38965. extra: 888/867,
  38966. bottom: 36/924
  38967. }
  38968. },
  38969. },
  38970. [
  38971. {
  38972. name: "Normal",
  38973. height: math.unit(11 + 7/12, "feet"),
  38974. default: true
  38975. },
  38976. ]
  38977. ))
  38978. characterMakers.push(() => makeCharacter(
  38979. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  38980. {
  38981. front: {
  38982. height: math.unit(9, "inches"),
  38983. name: "Front",
  38984. image: {
  38985. source: "./media/characters/saelria/front.svg",
  38986. extra: 662/621,
  38987. bottom: 12/674
  38988. }
  38989. },
  38990. },
  38991. [
  38992. {
  38993. name: "Tiny",
  38994. height: math.unit(9, "inches"),
  38995. default: true
  38996. },
  38997. ]
  38998. ))
  38999. characterMakers.push(() => makeCharacter(
  39000. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39001. {
  39002. front: {
  39003. height: math.unit(80, "meters"),
  39004. weight: math.unit(7000, "tonnes"),
  39005. name: "Front",
  39006. image: {
  39007. source: "./media/characters/tef/front.svg",
  39008. extra: 2036/1991,
  39009. bottom: 54/2090
  39010. }
  39011. },
  39012. back: {
  39013. height: math.unit(80, "meters"),
  39014. weight: math.unit(7000, "tonnes"),
  39015. name: "Back",
  39016. image: {
  39017. source: "./media/characters/tef/back.svg",
  39018. extra: 2036/1991,
  39019. bottom: 54/2090
  39020. }
  39021. },
  39022. },
  39023. [
  39024. {
  39025. name: "Macro",
  39026. height: math.unit(80, "meters"),
  39027. default: true
  39028. },
  39029. ]
  39030. ))
  39031. characterMakers.push(() => makeCharacter(
  39032. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39033. {
  39034. front: {
  39035. height: math.unit(13, "feet"),
  39036. weight: math.unit(6, "tons"),
  39037. name: "Front",
  39038. image: {
  39039. source: "./media/characters/rover/front.svg",
  39040. extra: 1233/1156,
  39041. bottom: 50/1283
  39042. }
  39043. },
  39044. back: {
  39045. height: math.unit(13, "feet"),
  39046. weight: math.unit(6, "tons"),
  39047. name: "Back",
  39048. image: {
  39049. source: "./media/characters/rover/back.svg",
  39050. extra: 1327/1258,
  39051. bottom: 39/1366
  39052. }
  39053. },
  39054. },
  39055. [
  39056. {
  39057. name: "Normal",
  39058. height: math.unit(13, "feet"),
  39059. default: true
  39060. },
  39061. {
  39062. name: "Macro",
  39063. height: math.unit(1300, "feet")
  39064. },
  39065. {
  39066. name: "Megamacro",
  39067. height: math.unit(1300, "miles")
  39068. },
  39069. {
  39070. name: "Gigamacro",
  39071. height: math.unit(1300000, "miles")
  39072. },
  39073. ]
  39074. ))
  39075. characterMakers.push(() => makeCharacter(
  39076. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39077. {
  39078. front: {
  39079. height: math.unit(6, "feet"),
  39080. weight: math.unit(150, "lb"),
  39081. name: "Front",
  39082. image: {
  39083. source: "./media/characters/ariz/front.svg",
  39084. extra: 1401/1346,
  39085. bottom: 5/1406
  39086. }
  39087. },
  39088. },
  39089. [
  39090. {
  39091. name: "Normal",
  39092. height: math.unit(10, "feet"),
  39093. default: true
  39094. },
  39095. ]
  39096. ))
  39097. characterMakers.push(() => makeCharacter(
  39098. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39099. {
  39100. front: {
  39101. height: math.unit(6, "feet"),
  39102. weight: math.unit(140, "lb"),
  39103. name: "Front",
  39104. image: {
  39105. source: "./media/characters/sigrun/front.svg",
  39106. extra: 1418/1359,
  39107. bottom: 27/1445
  39108. }
  39109. },
  39110. },
  39111. [
  39112. {
  39113. name: "Macro",
  39114. height: math.unit(35, "feet"),
  39115. default: true
  39116. },
  39117. ]
  39118. ))
  39119. characterMakers.push(() => makeCharacter(
  39120. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39121. {
  39122. front: {
  39123. height: math.unit(6, "feet"),
  39124. weight: math.unit(150, "lb"),
  39125. name: "Front",
  39126. image: {
  39127. source: "./media/characters/numin/front.svg",
  39128. extra: 1433/1388,
  39129. bottom: 12/1445
  39130. }
  39131. },
  39132. },
  39133. [
  39134. {
  39135. name: "Macro",
  39136. height: math.unit(21.5, "km"),
  39137. default: true
  39138. },
  39139. ]
  39140. ))
  39141. characterMakers.push(() => makeCharacter(
  39142. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39143. {
  39144. front: {
  39145. height: math.unit(6, "feet"),
  39146. weight: math.unit(463, "lb"),
  39147. name: "Front",
  39148. image: {
  39149. source: "./media/characters/melwa/front.svg",
  39150. extra: 1307/1248,
  39151. bottom: 93/1400
  39152. }
  39153. },
  39154. },
  39155. [
  39156. {
  39157. name: "Macro",
  39158. height: math.unit(50, "meters"),
  39159. default: true
  39160. },
  39161. ]
  39162. ))
  39163. characterMakers.push(() => makeCharacter(
  39164. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  39165. {
  39166. front: {
  39167. height: math.unit(325, "feet"),
  39168. name: "Front",
  39169. image: {
  39170. source: "./media/characters/zorkaiju/front.svg",
  39171. extra: 1955/1814,
  39172. bottom: 40/1995
  39173. }
  39174. },
  39175. frontExtended: {
  39176. height: math.unit(325, "feet"),
  39177. name: "Front (Extended)",
  39178. image: {
  39179. source: "./media/characters/zorkaiju/front-extended.svg",
  39180. extra: 1955/1814,
  39181. bottom: 40/1995
  39182. }
  39183. },
  39184. side: {
  39185. height: math.unit(325, "feet"),
  39186. name: "Side",
  39187. image: {
  39188. source: "./media/characters/zorkaiju/side.svg",
  39189. extra: 1495/1396,
  39190. bottom: 17/1512
  39191. }
  39192. },
  39193. sideExtended: {
  39194. height: math.unit(325, "feet"),
  39195. name: "Side (Extended)",
  39196. image: {
  39197. source: "./media/characters/zorkaiju/side-extended.svg",
  39198. extra: 1495/1396,
  39199. bottom: 17/1512
  39200. }
  39201. },
  39202. back: {
  39203. height: math.unit(325, "feet"),
  39204. name: "Back",
  39205. image: {
  39206. source: "./media/characters/zorkaiju/back.svg",
  39207. extra: 1959/1821,
  39208. bottom: 31/1990
  39209. }
  39210. },
  39211. backExtended: {
  39212. height: math.unit(325, "feet"),
  39213. name: "Back (Extended)",
  39214. image: {
  39215. source: "./media/characters/zorkaiju/back-extended.svg",
  39216. extra: 1959/1821,
  39217. bottom: 31/1990
  39218. }
  39219. },
  39220. hand: {
  39221. height: math.unit(58.4, "feet"),
  39222. name: "Hand",
  39223. image: {
  39224. source: "./media/characters/zorkaiju/hand.svg"
  39225. }
  39226. },
  39227. handExtended: {
  39228. height: math.unit(61.4, "feet"),
  39229. name: "Hand (Extended)",
  39230. image: {
  39231. source: "./media/characters/zorkaiju/hand-extended.svg"
  39232. }
  39233. },
  39234. foot: {
  39235. height: math.unit(95, "feet"),
  39236. name: "Foot",
  39237. image: {
  39238. source: "./media/characters/zorkaiju/foot.svg"
  39239. }
  39240. },
  39241. leftArm: {
  39242. height: math.unit(59, "feet"),
  39243. name: "Left Arm",
  39244. image: {
  39245. source: "./media/characters/zorkaiju/left-arm.svg"
  39246. }
  39247. },
  39248. rightArm: {
  39249. height: math.unit(59, "feet"),
  39250. name: "Right Arm",
  39251. image: {
  39252. source: "./media/characters/zorkaiju/right-arm.svg"
  39253. }
  39254. },
  39255. tail: {
  39256. height: math.unit(104, "feet"),
  39257. name: "Tail",
  39258. image: {
  39259. source: "./media/characters/zorkaiju/tail.svg"
  39260. }
  39261. },
  39262. tailExtended: {
  39263. height: math.unit(104, "feet"),
  39264. name: "Tail (Extended)",
  39265. image: {
  39266. source: "./media/characters/zorkaiju/tail-extended.svg"
  39267. }
  39268. },
  39269. tailBottom: {
  39270. height: math.unit(104, "feet"),
  39271. name: "Tail Bottom",
  39272. image: {
  39273. source: "./media/characters/zorkaiju/tail-bottom.svg"
  39274. }
  39275. },
  39276. crystal: {
  39277. height: math.unit(27.54, "feet"),
  39278. name: "Crystal",
  39279. image: {
  39280. source: "./media/characters/zorkaiju/crystal.svg"
  39281. }
  39282. },
  39283. },
  39284. [
  39285. {
  39286. name: "Kaiju",
  39287. height: math.unit(325, "feet"),
  39288. default: true
  39289. },
  39290. ]
  39291. ))
  39292. characterMakers.push(() => makeCharacter(
  39293. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  39294. {
  39295. front: {
  39296. height: math.unit(6 + 1/12, "feet"),
  39297. weight: math.unit(115, "lb"),
  39298. name: "Front",
  39299. image: {
  39300. source: "./media/characters/bailey-belfry/front.svg",
  39301. extra: 1240/1121,
  39302. bottom: 101/1341
  39303. }
  39304. },
  39305. },
  39306. [
  39307. {
  39308. name: "Normal",
  39309. height: math.unit(6 + 1/12, "feet"),
  39310. default: true
  39311. },
  39312. ]
  39313. ))
  39314. characterMakers.push(() => makeCharacter(
  39315. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  39316. {
  39317. side: {
  39318. height: math.unit(4, "meters"),
  39319. weight: math.unit(250, "kg"),
  39320. name: "Side",
  39321. image: {
  39322. source: "./media/characters/blacky/side.svg",
  39323. extra: 1027/919,
  39324. bottom: 43/1070
  39325. }
  39326. },
  39327. maw: {
  39328. height: math.unit(1, "meters"),
  39329. name: "Maw",
  39330. image: {
  39331. source: "./media/characters/blacky/maw.svg"
  39332. }
  39333. },
  39334. paw: {
  39335. height: math.unit(1, "meters"),
  39336. name: "Paw",
  39337. image: {
  39338. source: "./media/characters/blacky/paw.svg"
  39339. }
  39340. },
  39341. },
  39342. [
  39343. {
  39344. name: "Normal",
  39345. height: math.unit(4, "meters"),
  39346. default: true
  39347. },
  39348. ]
  39349. ))
  39350. characterMakers.push(() => makeCharacter(
  39351. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  39352. {
  39353. front: {
  39354. height: math.unit(170, "cm"),
  39355. weight: math.unit(66, "kg"),
  39356. name: "Front",
  39357. image: {
  39358. source: "./media/characters/thux-ei/front.svg",
  39359. extra: 1109/1011,
  39360. bottom: 8/1117
  39361. }
  39362. },
  39363. },
  39364. [
  39365. {
  39366. name: "Normal",
  39367. height: math.unit(170, "cm"),
  39368. default: true
  39369. },
  39370. ]
  39371. ))
  39372. characterMakers.push(() => makeCharacter(
  39373. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  39374. {
  39375. front: {
  39376. height: math.unit(5, "feet"),
  39377. weight: math.unit(120, "lb"),
  39378. name: "Front",
  39379. image: {
  39380. source: "./media/characters/roxanne-voltaire/front.svg",
  39381. extra: 1901/1779,
  39382. bottom: 53/1954
  39383. }
  39384. },
  39385. },
  39386. [
  39387. {
  39388. name: "Normal",
  39389. height: math.unit(5, "feet"),
  39390. default: true
  39391. },
  39392. {
  39393. name: "Giant",
  39394. height: math.unit(50, "feet")
  39395. },
  39396. {
  39397. name: "Titan",
  39398. height: math.unit(500, "feet")
  39399. },
  39400. {
  39401. name: "Macro",
  39402. height: math.unit(5000, "feet")
  39403. },
  39404. {
  39405. name: "Megamacro",
  39406. height: math.unit(50000, "feet")
  39407. },
  39408. {
  39409. name: "Gigamacro",
  39410. height: math.unit(500000, "feet")
  39411. },
  39412. {
  39413. name: "Teramacro",
  39414. height: math.unit(5e6, "feet")
  39415. },
  39416. ]
  39417. ))
  39418. characterMakers.push(() => makeCharacter(
  39419. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  39420. {
  39421. front: {
  39422. height: math.unit(6 + 2/12, "feet"),
  39423. name: "Front",
  39424. image: {
  39425. source: "./media/characters/squeaks/front.svg",
  39426. extra: 1823/1768,
  39427. bottom: 138/1961
  39428. }
  39429. },
  39430. },
  39431. [
  39432. {
  39433. name: "Micro",
  39434. height: math.unit(0.5, "inches")
  39435. },
  39436. {
  39437. name: "Normal",
  39438. height: math.unit(6 + 2/12, "feet"),
  39439. default: true
  39440. },
  39441. {
  39442. name: "Macro",
  39443. height: math.unit(600, "feet")
  39444. },
  39445. ]
  39446. ))
  39447. characterMakers.push(() => makeCharacter(
  39448. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  39449. {
  39450. front: {
  39451. height: math.unit(1.72, "meters"),
  39452. name: "Front",
  39453. image: {
  39454. source: "./media/characters/archinger/front.svg",
  39455. extra: 1861/1675,
  39456. bottom: 125/1986
  39457. }
  39458. },
  39459. back: {
  39460. height: math.unit(1.72, "meters"),
  39461. name: "Back",
  39462. image: {
  39463. source: "./media/characters/archinger/back.svg",
  39464. extra: 1844/1701,
  39465. bottom: 104/1948
  39466. }
  39467. },
  39468. cock: {
  39469. height: math.unit(0.59, "feet"),
  39470. name: "Cock",
  39471. image: {
  39472. source: "./media/characters/archinger/cock.svg"
  39473. }
  39474. },
  39475. },
  39476. [
  39477. {
  39478. name: "Normal",
  39479. height: math.unit(1.72, "meters"),
  39480. default: true
  39481. },
  39482. {
  39483. name: "Macro",
  39484. height: math.unit(84, "meters")
  39485. },
  39486. {
  39487. name: "Macro+",
  39488. height: math.unit(112, "meters")
  39489. },
  39490. {
  39491. name: "Macro++",
  39492. height: math.unit(960, "meters")
  39493. },
  39494. {
  39495. name: "Macro+++",
  39496. height: math.unit(4, "km")
  39497. },
  39498. {
  39499. name: "Macro++++",
  39500. height: math.unit(48, "km")
  39501. },
  39502. {
  39503. name: "Macro+++++",
  39504. height: math.unit(4500, "km")
  39505. },
  39506. ]
  39507. ))
  39508. //characters
  39509. function makeCharacters() {
  39510. const results = [];
  39511. characterMakers.forEach(character => {
  39512. results.push(character());
  39513. });
  39514. return results;
  39515. }