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ů.
 
 
 

36457 řádky
916 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. "mammal"
  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. },
  227. "cougar": {
  228. name: "Cougar",
  229. parents: [
  230. "cat"
  231. ]
  232. },
  233. "goat": {
  234. name: "Goat",
  235. parents: [
  236. "mammal"
  237. ]
  238. },
  239. "lion": {
  240. name: "Lion",
  241. parents: [
  242. "cat"
  243. ]
  244. },
  245. "harpy-eager": {
  246. name: "Harpy Eagle",
  247. parents: [
  248. "avian"
  249. ]
  250. },
  251. "deer": {
  252. name: "Deer",
  253. parents: [
  254. "mammal"
  255. ]
  256. },
  257. "phoenix": {
  258. name: "Phoenix",
  259. parents: [
  260. "avian"
  261. ]
  262. },
  263. "aeromorph": {
  264. name: "Aeromorph",
  265. parents: [
  266. "machine"
  267. ]
  268. },
  269. "machine": {
  270. name: "Machine",
  271. },
  272. "android": {
  273. name: "Android",
  274. parents: [
  275. "machine"
  276. ]
  277. },
  278. "jackal": {
  279. name: "Jackal",
  280. parents: [
  281. "canine"
  282. ]
  283. },
  284. "corvid": {
  285. name: "Corvid",
  286. parents: [
  287. "avian"
  288. ]
  289. },
  290. "pharaoh-hound": {
  291. name: "Pharaoh Hound",
  292. parents: [
  293. "dog"
  294. ]
  295. },
  296. "skunk": {
  297. name: "Skunk",
  298. parents: [
  299. "mammal"
  300. ]
  301. },
  302. "shark": {
  303. name: "Shark",
  304. parents: [
  305. "fish"
  306. ]
  307. },
  308. "black-panther": {
  309. name: "Black Panther",
  310. parents: [
  311. "cat"
  312. ]
  313. },
  314. "umbra": {
  315. name: "Umbra",
  316. parents: [
  317. "animal"
  318. ]
  319. },
  320. "raven": {
  321. name: "Raven",
  322. parents: [
  323. "corvid"
  324. ]
  325. },
  326. "snow-leopard": {
  327. name: "Snow Leopard",
  328. parents: [
  329. "cat"
  330. ]
  331. },
  332. "barbary-lion": {
  333. name: "Barbary Lion",
  334. parents: [
  335. "lion"
  336. ]
  337. },
  338. "dra'gal": {
  339. name: "Dra'Gal",
  340. parents: [
  341. "mammal"
  342. ]
  343. },
  344. "german-shepherd": {
  345. name: "German Shepherd",
  346. parents: [
  347. "dog"
  348. ]
  349. },
  350. "bayleef": {
  351. name: "Bayleef",
  352. parents: [
  353. "pokemon"
  354. ]
  355. },
  356. "mouse": {
  357. name: "Mouse",
  358. parents: [
  359. "rodent"
  360. ]
  361. },
  362. "rat": {
  363. name: "Rat",
  364. parents: [
  365. "mammal"
  366. ]
  367. },
  368. "hoshiko-beast": {
  369. name: "Hoshiko Beast",
  370. parents: ["animal"]
  371. },
  372. "snow-jugani": {
  373. name: "Snow Jugani",
  374. parents: ["cat"]
  375. },
  376. "patamon": {
  377. name: "Patamon",
  378. parents: ["digimon"]
  379. },
  380. "digimon": {
  381. name: "Digimon",
  382. },
  383. "jugani": {
  384. name: "Jugani",
  385. parents: ["cat"]
  386. },
  387. "luxray": {
  388. name: "Luxray",
  389. parents: ["pokemon"]
  390. },
  391. "mech": {
  392. name: "Mech",
  393. parents: ["machine"]
  394. },
  395. "zoid": {
  396. name: "Zoid",
  397. parents: ["mech"]
  398. },
  399. "monster": {
  400. name: "Monster",
  401. parents: ["animal"]
  402. },
  403. "foo-dog": {
  404. name: "Foo Dog",
  405. parents: ["mammal"]
  406. },
  407. "elephant": {
  408. name: "Elephant",
  409. parents: ["mammal"]
  410. },
  411. "eagle": {
  412. name: "Eagle",
  413. parents: ["avian"]
  414. },
  415. "cow": {
  416. name: "Cow",
  417. parents: ["mammal"]
  418. },
  419. "crocodile": {
  420. name: "Crocodile",
  421. parents: ["reptile"]
  422. },
  423. "borzoi": {
  424. name: "Borzoi",
  425. parents: ["dog"]
  426. },
  427. "snake": {
  428. name: "Snake",
  429. parents: ["reptile"]
  430. },
  431. "horned-bush-viper": {
  432. name: "Horned Bush Viper",
  433. parents: ["snake"]
  434. },
  435. "cobra": {
  436. name: "Cobra",
  437. parents: ["snake"]
  438. },
  439. "harpy-eagle": {
  440. name: "Harpy Eagle",
  441. parents: ["eagle"]
  442. },
  443. "raptor": {
  444. name: "Raptor",
  445. parents: ["dinosaur"]
  446. },
  447. "dinosaur": {
  448. name: "Dinosaur",
  449. parents: ["reptile"]
  450. },
  451. "veilhound": {
  452. name: "Veilhound",
  453. parents: ["hellhound", "demon"]
  454. },
  455. "hellhound": {
  456. name: "Hellhound",
  457. parents: ["canine"]
  458. },
  459. "insect": {
  460. name: "Insect",
  461. parents: ["animal"]
  462. },
  463. "beetle": {
  464. name: "Beetle",
  465. parents: ["insect"]
  466. },
  467. "moth": {
  468. name: "Moth",
  469. parents: ["insect"]
  470. },
  471. "eastern-dragon": {
  472. name: "Eastern Dragon",
  473. parents: ["dragon"]
  474. },
  475. "jaguar": {
  476. name: "Jaguar",
  477. parents: ["cat"]
  478. },
  479. "horse": {
  480. name: "Horse",
  481. parents: ["mammal"]
  482. },
  483. "sergal": {
  484. name: "Sergal",
  485. parents: ["mammal"]
  486. },
  487. "gryphon": {
  488. name: "Gryphon",
  489. parents: ["lion", "eagle"]
  490. },
  491. "robot": {
  492. name: "Robot",
  493. parents: ["machine"]
  494. },
  495. "medihound": {
  496. name: "Medihound",
  497. parents: ["robot", "dog"]
  498. },
  499. "sylveon": {
  500. name: "Sylveon",
  501. parents: ["pokemon"]
  502. },
  503. "catgirl": {
  504. name: "Catgirl",
  505. parents: ["mammal"]
  506. },
  507. "cowgirl": {
  508. name: "Cowgirl",
  509. parents: ["mammal"]
  510. },
  511. "pony": {
  512. name: "Pony",
  513. parents: ["horse"]
  514. },
  515. "rabbit": {
  516. name: "Rabbit",
  517. parents: ["mammal"]
  518. },
  519. "fennec-fox": {
  520. name: "Fennec Fox",
  521. parents: ["fox"]
  522. },
  523. "azodian": {
  524. name: "Azodian",
  525. parents: ["mouse"]
  526. },
  527. "shiba-inu": {
  528. name: "Shiba Inu",
  529. parents: ["dog"]
  530. },
  531. "changeling": {
  532. name: "Changeling",
  533. parents: ["insect"]
  534. },
  535. "cheetah": {
  536. name: "Cheetah",
  537. parents: ["cat"]
  538. },
  539. "golden-jackal": {
  540. name: "Golden Jackal",
  541. parents: ["jackal"]
  542. },
  543. "manectric": {
  544. name: "Manectric",
  545. parents: ["pokemon"]
  546. },
  547. "rat": {
  548. name: "Rat",
  549. parents: ["rodent"]
  550. },
  551. "rodent": {
  552. name: "Rodent",
  553. parents: ["mammal"]
  554. },
  555. "octocoon": {
  556. name: "Octocoon",
  557. parents: ["raccoon", "octopus"]
  558. },
  559. "octopus": {
  560. name: "Octopus",
  561. parents: ["fish"]
  562. },
  563. "werewolf": {
  564. name: "Werewolf",
  565. parents: ["wolf"]
  566. },
  567. "meerkat": {
  568. name: "Meerkat",
  569. parents: ["mammal"]
  570. },
  571. "human": {
  572. name: "Human",
  573. parents: ["mammal"]
  574. },
  575. "geth": {
  576. name: "Geth",
  577. parents: ["android"]
  578. },
  579. "husky": {
  580. name: "Husky",
  581. parents: ["dog"]
  582. },
  583. "long-eared-bat": {
  584. name: "Long Eared Bat",
  585. parents: ["bat"]
  586. },
  587. "lizard": {
  588. name: "Lizard",
  589. parents: ["reptile"]
  590. },
  591. "salamander": {
  592. name: "Salamander",
  593. parents: ["lizard"]
  594. },
  595. "chameleon": {
  596. name: "Chameleon",
  597. parents: ["lizard"]
  598. },
  599. "gecko": {
  600. name: "Gecko",
  601. parents: ["lizard"]
  602. },
  603. "kobold": {
  604. name: "Kobold",
  605. parents: ["reptile"]
  606. },
  607. "charizard": {
  608. name: "Charizard",
  609. parents: ["pokemon"]
  610. },
  611. "lugia": {
  612. name: "Lugia",
  613. parents: ["pokemon"]
  614. },
  615. "cerberus": {
  616. name: "Cerberus",
  617. parents: ["dog"]
  618. },
  619. "tyrantrum": {
  620. name: "Tyrantrum",
  621. parents: ["pokemon"]
  622. },
  623. "lemur": {
  624. name: "Lemur",
  625. parents: ["mammal"]
  626. },
  627. "kelpie": {
  628. name: "Kelpie",
  629. parents: ["horse", "monster"]
  630. },
  631. "labrador": {
  632. name: "Labrador",
  633. parents: ["dog"]
  634. },
  635. "sylveon": {
  636. name: "Sylveon",
  637. parents: ["eeveelution"]
  638. },
  639. "eeveelution": {
  640. name: "Eeveelution",
  641. parents: ["pokemon"]
  642. },
  643. "polar-bear": {
  644. name: "Polar Bear",
  645. parents: ["bear"]
  646. },
  647. "bear": {
  648. name: "Bear",
  649. parents: ["mammal"]
  650. },
  651. "absol": {
  652. name: "Absol",
  653. parents: ["pokemon"]
  654. },
  655. "wolver": {
  656. name: "Wolver",
  657. parents: ["mammal"]
  658. },
  659. "rottweiler": {
  660. name: "Rottweiler",
  661. parents: ["dog"]
  662. },
  663. "zebra": {
  664. name: "Zebra",
  665. parents: ["horse"]
  666. },
  667. "yoshi": {
  668. name: "Yoshi",
  669. parents: ["lizard"]
  670. },
  671. "lynx": {
  672. name: "Lynx",
  673. parents: ["cat"]
  674. },
  675. "unknown": {
  676. name: "Unknown",
  677. parents: []
  678. },
  679. "thylacine": {
  680. name: "Thylacine",
  681. parents: ["mammal"]
  682. },
  683. "gabumon": {
  684. name: "Gabumon",
  685. parents: ["digimon"]
  686. },
  687. "border-collie": {
  688. name: "Border Collie",
  689. parents: ["dog"]
  690. },
  691. "imp": {
  692. name: "Imp",
  693. parents: ["demon"]
  694. },
  695. "kangaroo": {
  696. name: "Kangaroo",
  697. parents: ["mammal"]
  698. },
  699. "renamon": {
  700. name: "Renamon",
  701. parents: ["digimon"]
  702. },
  703. "candy-orca-dragon": {
  704. name: "Candy Orca Dragon",
  705. parents: ["fish", "dragon", "candy"]
  706. },
  707. "sabertooth-tiger": {
  708. name: "Sabertooth Tiger",
  709. parents: ["cat"]
  710. },
  711. "espurr": {
  712. name: "Espurr",
  713. parents: ["pokemon"]
  714. },
  715. "otter": {
  716. name: "Otter",
  717. parents: ["mammal"]
  718. },
  719. "elemental": {
  720. name: "Elemental",
  721. parents: ["mammal"]
  722. },
  723. "mew": {
  724. name: "Mew",
  725. parents: ["pokemon"]
  726. },
  727. "goodra": {
  728. name: "Goodra",
  729. parents: ["pokemon"]
  730. },
  731. "fairy": {
  732. name: "Fairy",
  733. parents: ["magical"]
  734. },
  735. "typhlosion": {
  736. name: "Typhlosion",
  737. parents: ["pokemon"]
  738. },
  739. "magical": {
  740. name: "Magical",
  741. parents: []
  742. },
  743. "xenomorph": {
  744. name: "Xenomorph",
  745. parents: ["monster", "alien"]
  746. },
  747. "charr": {
  748. name: "Charr",
  749. parents: ["cat"]
  750. },
  751. "siberian-husky": {
  752. name: "Siberian Husky",
  753. parents: ["husky"]
  754. },
  755. "alligator": {
  756. name: "Alligator",
  757. parents: ["reptile"]
  758. },
  759. "bernese-mountain-dog": {
  760. name: "Bernese Mountain Dog",
  761. parents: ["dog"]
  762. },
  763. "reshiram": {
  764. name: "Reshiram",
  765. parents: ["pokemon"]
  766. },
  767. "grizzly-bear": {
  768. name: "Grizzly Bear",
  769. parents: ["bear"]
  770. },
  771. "water-monitor": {
  772. name: "Water Monitor",
  773. parents: ["lizard"]
  774. },
  775. "banchofossa": {
  776. name: "Banchofossa",
  777. parents: ["mammal"]
  778. },
  779. "kirin": {
  780. name: "Kirin",
  781. parents: ["monster"]
  782. },
  783. "quilava": {
  784. name: "Quilava",
  785. parents: ["pokemon"]
  786. },
  787. "seviper": {
  788. name: "Seviper",
  789. parents: ["pokemon"]
  790. },
  791. "flying-fox": {
  792. name: "Flying Fox",
  793. parents: ["bat"]
  794. },
  795. "keynain": {
  796. name: "Keynain",
  797. parents: ["avian"]
  798. },
  799. "lucario": {
  800. name: "Lucario",
  801. parents: ["pokemon"]
  802. },
  803. "siamese-cat": {
  804. name: "Siamese Cat",
  805. parents: ["cat"]
  806. },
  807. "spider": {
  808. name: "Spider",
  809. parents: ["insect"]
  810. },
  811. "samurott": {
  812. name: "Samurott",
  813. parents: ["pokemon"]
  814. },
  815. "megalodon": {
  816. name: "Megalodon",
  817. parents: ["shark"]
  818. },
  819. "unicorn": {
  820. name: "Unicorn",
  821. parents: ["horse"]
  822. },
  823. "greninja": {
  824. name: "Greninja",
  825. parents: ["pokemon"]
  826. },
  827. "water-dragon": {
  828. name: "Water Dragon",
  829. parents: ["dragon"]
  830. },
  831. "cross-fox": {
  832. name: "Cross Fox",
  833. parents: ["fox"]
  834. },
  835. "synth": {
  836. name: "Synth",
  837. parents: ["machine"]
  838. },
  839. "construct": {
  840. name: "Construct",
  841. parents: []
  842. },
  843. "mexican-wolf": {
  844. name: "Mexican Wolf",
  845. parents: ["wolf"]
  846. },
  847. "leopard": {
  848. name: "Leopard",
  849. parents: ["cat"]
  850. },
  851. "pig": {
  852. name: "Pig",
  853. parents: ["mammal"]
  854. },
  855. "ampharos": {
  856. name: "Ampharos",
  857. parents: ["pokemon"]
  858. },
  859. "orca": {
  860. name: "Orca",
  861. parents: ["fish"]
  862. },
  863. "lycanroc": {
  864. name: "Lycanroc",
  865. parents: ["pokemon"]
  866. },
  867. "surkanu": {
  868. name: "Surkanu",
  869. parents: ["monster"]
  870. },
  871. "seal": {
  872. name: "Seal",
  873. parents: ["mammal"]
  874. },
  875. "keldeo": {
  876. name: "Keldeo",
  877. parents: ["pokemon"]
  878. },
  879. "great-dane": {
  880. name: "Great Dane",
  881. parents: ["dog"]
  882. },
  883. "black-backed-jackal": {
  884. name: "Black Backed Jackal",
  885. parents: ["jackal"]
  886. },
  887. "sheep": {
  888. name: "Sheep",
  889. parents: ["mammal"]
  890. },
  891. "leopard-seal": {
  892. name: "Leopard Seal",
  893. parents: ["seal"]
  894. },
  895. "zoroark": {
  896. name: "Zoroark",
  897. parents: ["pokemon"]
  898. },
  899. "maned-wolf": {
  900. name: "Maned Wolf",
  901. parents: ["canine"]
  902. },
  903. "dracha": {
  904. name: "Dracha",
  905. parents: ["dragon"]
  906. },
  907. "wolxi": {
  908. name: "Wolxi",
  909. parents: ["mammal", "alien"]
  910. },
  911. "dratini": {
  912. name: "Dratini",
  913. parents: ["pokemon", "dragon"]
  914. },
  915. "skaven": {
  916. name: "Skaven",
  917. parents: ["rat"]
  918. },
  919. "mongoose": {
  920. name: "Mongoose",
  921. parents: ["mammal"]
  922. },
  923. "lopunny": {
  924. name: "Lopunny",
  925. parents: ["pokemon", "rabbit"]
  926. },
  927. "feraligatr": {
  928. name: "Feraligatr",
  929. parents: ["pokemon", "alligator"]
  930. },
  931. "houndoom": {
  932. name: "Houndoom",
  933. parents: ["pokemon", "dog"]
  934. },
  935. "protogen": {
  936. name: "Protogen",
  937. parents: ["machine"]
  938. },
  939. "saint-bernard": {
  940. name: "Saint Bernard",
  941. parents: ["dog"]
  942. },
  943. "crow": {
  944. name: "Crow",
  945. parents: ["corvid"]
  946. },
  947. "delphox": {
  948. name: "Delphox",
  949. parents: ["pokemon", "fox"]
  950. },
  951. "moose": {
  952. name: "Moose",
  953. parents: ["mammal"]
  954. },
  955. "joraxian": {
  956. name: "Joraxian",
  957. parents: ["monster", "canine", "demon"]
  958. },
  959. "nimbat": {
  960. name: "Nimbat",
  961. parents: ["mammal"]
  962. },
  963. "aardwolf": {
  964. name: "Aardwolf",
  965. parents: ["canine"]
  966. },
  967. "fluudrani": {
  968. name: "Fluudrani",
  969. parents: ["animal"]
  970. },
  971. "arcanine": {
  972. name: "Arcanine",
  973. parents: ["pokemon", "dog"]
  974. },
  975. "inteleon": {
  976. name: "Inteleon",
  977. parents: ["pokemon", "fish"]
  978. },
  979. "ninetales": {
  980. name: "Ninetales",
  981. parents: ["pokemon", "kitsune"]
  982. },
  983. "tigrex": {
  984. name: "Tigrex",
  985. parents: ["tiger"]
  986. },
  987. "zorua": {
  988. name: "Zorua",
  989. parents: ["pokemon", "fox"]
  990. },
  991. "vulpix": {
  992. name: "Vulpix",
  993. parents: ["pokemon", "fox"]
  994. },
  995. "barghest": {
  996. name: "Barghest",
  997. parents: ["monster"]
  998. },
  999. "gray-wolf": {
  1000. name: "Gray Wolf",
  1001. parents: ["wolf"]
  1002. },
  1003. "ruppells-fox": {
  1004. name: "Rüppell's Fox",
  1005. parents: ["fox"]
  1006. },
  1007. "bull-terrier": {
  1008. name: "Bull Terrier",
  1009. parents: ["dog"]
  1010. },
  1011. "european-honey-buzzard": {
  1012. name: "European Honey Buzzard",
  1013. parents: ["avian"]
  1014. },
  1015. "t-rex": {
  1016. name: "T Rex",
  1017. parents: ["dinosaur"]
  1018. },
  1019. "mactarian": {
  1020. name: "Mactarian",
  1021. parents: ["shark", "monster"]
  1022. },
  1023. "mewtwo-y": {
  1024. name: "Mewtwo Y",
  1025. parents: ["mewtwo"]
  1026. },
  1027. "mewtwo": {
  1028. name: "Mewtwo",
  1029. parents: ["pokemon"]
  1030. },
  1031. "mew": {
  1032. name: "Mew",
  1033. parents: ["pokemon"]
  1034. },
  1035. "eevee": {
  1036. name: "Eevee",
  1037. parents: ["eeveelution"]
  1038. },
  1039. "mienshao": {
  1040. name: "Mienshao",
  1041. parents: ["pokemon"]
  1042. },
  1043. "sugar-glider": {
  1044. name: "Sugar Glider",
  1045. parents: ["opossum"]
  1046. },
  1047. "spectral-bat": {
  1048. name: "Spectral Bat",
  1049. parents: ["bat"]
  1050. },
  1051. "scolipede": {
  1052. name: "Scolipede",
  1053. parents: ["pokemon", "insect"]
  1054. },
  1055. "jackalope": {
  1056. name: "Jackalope",
  1057. parents: ["rabbit", "antelope"]
  1058. },
  1059. "caracal": {
  1060. name: "Caracal",
  1061. parents: ["cat"]
  1062. },
  1063. "stoat": {
  1064. name: "Stoat",
  1065. parents: ["mammal"]
  1066. },
  1067. "african-golden-cat": {
  1068. name: "African Golden Cat",
  1069. parents: ["cat"]
  1070. },
  1071. "gigantosaurus": {
  1072. name: "Gigantosaurus",
  1073. parents: ["dinosaur"]
  1074. },
  1075. "zorgoia": {
  1076. name: "Zorgoia",
  1077. parents: ["mammal"]
  1078. },
  1079. "monitor-lizard": {
  1080. name: "Monitor Lizard",
  1081. parents: ["lizard"]
  1082. },
  1083. "ziralkia": {
  1084. name: "Ziralkia",
  1085. parents: ["mammal"]
  1086. },
  1087. "kiiasi": {
  1088. name: "Kiiasi",
  1089. parents: ["animal"]
  1090. },
  1091. "synx": {
  1092. name: "Synx",
  1093. parents: ["monster"]
  1094. },
  1095. "panther": {
  1096. name: "Panther",
  1097. parents: ["cat"]
  1098. },
  1099. "azumarill": {
  1100. name: "Azumarill",
  1101. parents: ["pokemon"]
  1102. },
  1103. "river-snaptail": {
  1104. name: "River Snaptail",
  1105. parents: ["otter", "crocodile"]
  1106. },
  1107. "great-blue-heron": {
  1108. name: "Great Blue Heron",
  1109. parents: ["avian"]
  1110. },
  1111. "smeargle": {
  1112. name: "Smeargle",
  1113. parents: ["pokemon"]
  1114. },
  1115. "vendeilen": {
  1116. name: "Vendeilen",
  1117. parents: ["monster"]
  1118. },
  1119. "ventura": {
  1120. name: "Ventura",
  1121. parents: ["canine"]
  1122. },
  1123. "clouded-leopard": {
  1124. name: "Clouded Leopard",
  1125. parents: ["leopard"]
  1126. },
  1127. "argonian": {
  1128. name: "Argonian",
  1129. parents: ["lizard"]
  1130. },
  1131. "salazzle": {
  1132. name: "Salazzle",
  1133. parents: ["pokemon", "lizard"]
  1134. },
  1135. "je-stoff-drachen": {
  1136. name: "Je-Stoff Drachen",
  1137. parents: ["dragon"]
  1138. },
  1139. "finnish-spitz-dog": {
  1140. name: "Finnish Spitz Dog",
  1141. parents: ["dog"]
  1142. },
  1143. "gray-fox": {
  1144. name: "Gray Fox",
  1145. parents: ["fox"]
  1146. },
  1147. "opossum": {
  1148. name: "opossum",
  1149. parents: ["mammal"]
  1150. },
  1151. "antelope": {
  1152. name: "Antelope",
  1153. parents: ["mammal"]
  1154. },
  1155. "weavile": {
  1156. name: "Weavile",
  1157. parents: ["pokemon"]
  1158. },
  1159. "pikachu": {
  1160. name: "Pikachu",
  1161. parents: ["pokemon", "mouse"]
  1162. },
  1163. "grovyle": {
  1164. name: "Grovyle",
  1165. parents: ["pokemon", "plant"]
  1166. },
  1167. "sthara": {
  1168. name: "Sthara",
  1169. parents: ["snow-leopard", "reptile"]
  1170. },
  1171. "star-warrior": {
  1172. name: "Star Warrior",
  1173. parents: ["magical"]
  1174. },
  1175. "dragonoid": {
  1176. name: "Dragonoid",
  1177. parents: ["dragon"]
  1178. },
  1179. "suicune": {
  1180. name: "Suicune",
  1181. parents: ["pokemon"]
  1182. },
  1183. "vole": {
  1184. name: "Vole",
  1185. parents: ["mammal"]
  1186. },
  1187. "blaziken": {
  1188. name: "Blaziken",
  1189. parents: ["pokemon", "avian"]
  1190. },
  1191. "buizel": {
  1192. name: "Buizel",
  1193. parents: ["pokemon", "fish"]
  1194. },
  1195. "floatzel": {
  1196. name: "Floatzel",
  1197. parents: ["pokemon", "fish"]
  1198. },
  1199. "umok": {
  1200. name: "Umok",
  1201. parents: ["avian"]
  1202. },
  1203. "sea-monster": {
  1204. name: "Sea Monster",
  1205. parents: ["monster", "fish"]
  1206. },
  1207. "egyptian-vulture": {
  1208. name: "Egyptian Vulture",
  1209. parents: ["avian"]
  1210. },
  1211. "doberman": {
  1212. name: "Doberman",
  1213. parents: ["dog"]
  1214. },
  1215. "zangoose": {
  1216. name: "Zangoose",
  1217. parents: ["pokemon", "mongoose"]
  1218. },
  1219. "mongoose": {
  1220. name: "Mongoose",
  1221. parents: ["mammal"]
  1222. },
  1223. "wickerbeast": {
  1224. name: "Wickerbeast",
  1225. parents: ["monster"]
  1226. },
  1227. "zenari": {
  1228. name: "Zenari",
  1229. parents: ["lizard"]
  1230. },
  1231. "plant": {
  1232. name: "Plant",
  1233. parents: []
  1234. },
  1235. "raskatox": {
  1236. name: "Raskatox",
  1237. parents: ["raccoon", "skunk", "cat", "fox"]
  1238. },
  1239. "mikromare": {
  1240. name: "mikromare",
  1241. parents: ["alien"]
  1242. },
  1243. "alien": {
  1244. name: "Alien",
  1245. parents: ["animal"]
  1246. },
  1247. "deity": {
  1248. name: "Deity",
  1249. parents: []
  1250. },
  1251. "skarlan": {
  1252. name: "Skarlan",
  1253. parents: ["slug", "dragon"]
  1254. },
  1255. "slug": {
  1256. name: "Slug",
  1257. parents: ["mollusk"]
  1258. },
  1259. "mollusk": {
  1260. name: "Mollusk",
  1261. parents: ["animal"]
  1262. },
  1263. "chimera": {
  1264. name: "Chimera",
  1265. parents: ["monster"]
  1266. },
  1267. "gestalt": {
  1268. name: "Gestalt",
  1269. parents: ["construct"]
  1270. },
  1271. "mimic": {
  1272. name: "Mimic",
  1273. parents: ["monster"]
  1274. },
  1275. "calico-rat": {
  1276. name: "Calico Rat",
  1277. parents: ["rat"]
  1278. },
  1279. "panda": {
  1280. name: "Panda",
  1281. parents: ["mammal"]
  1282. },
  1283. "oni": {
  1284. name: "Oni",
  1285. parents: ["monster"]
  1286. },
  1287. "pegasus": {
  1288. name: "Pegasus",
  1289. parents: ["horse"]
  1290. },
  1291. "vulpera": {
  1292. name: "Vulpera",
  1293. parents: ["fennec-fox"]
  1294. },
  1295. "ceratosaurus": {
  1296. name: "Ceratosaurus",
  1297. parents: ["dinosaur"]
  1298. },
  1299. "nykur": {
  1300. name: "Nykur",
  1301. parents: ["horse", "monster"]
  1302. },
  1303. "giraffe": {
  1304. name: "Giraffe",
  1305. parents: ["mammal"]
  1306. },
  1307. "tauren": {
  1308. name: "Tauren",
  1309. parents: ["cow"]
  1310. },
  1311. "draconi": {
  1312. name: "Draconi",
  1313. parents: ["alien", "cat", "cyborg"]
  1314. },
  1315. "dire-wolf": {
  1316. name: "Dire Wolf",
  1317. parents: ["wolf"]
  1318. },
  1319. "ferromorph": {
  1320. name: "Ferromorph",
  1321. parents: ["construct"]
  1322. },
  1323. "meowth": {
  1324. name: "Meowth",
  1325. parents: ["cat", "pokemon"]
  1326. },
  1327. "pavodragon": {
  1328. name: "Pavodragon",
  1329. parents: ["dragon"]
  1330. },
  1331. "aaltranae": {
  1332. name: "Aaltranae",
  1333. parents: ["dragon"]
  1334. },
  1335. "cyborg": {
  1336. name: "Cyborg",
  1337. parents: ["machine"]
  1338. },
  1339. "draptor": {
  1340. name: "Draptor",
  1341. parents: ["dragon"]
  1342. },
  1343. "candy": {
  1344. name: "Candy",
  1345. parents: []
  1346. },
  1347. "drenath": {
  1348. name: "Drenath",
  1349. parents: ["dragon", "snake", "rabbit"]
  1350. },
  1351. "coyju": {
  1352. name: "Coyju",
  1353. parents: ["coyote", "kaiju"]
  1354. },
  1355. "kaiju": {
  1356. name: "Kaiju",
  1357. parents: ["monster"]
  1358. },
  1359. "nickit": {
  1360. name: "Nickit",
  1361. parents: ["pokemon", "cat"]
  1362. },
  1363. "lopunny": {
  1364. name: "Lopunny",
  1365. parents: ["pokemon", "rabbit"]
  1366. },
  1367. "korean-jindo-dog": {
  1368. name: "Korean Jindo Dog",
  1369. parents: ["dog"]
  1370. },
  1371. "naga": {
  1372. name: "Naga",
  1373. parents: ["snake", "monster"]
  1374. },
  1375. "undead": {
  1376. name: "Undead",
  1377. parents: ["monster"]
  1378. },
  1379. "whale": {
  1380. name: "Whale",
  1381. parents: ["fish"]
  1382. },
  1383. "gelato-bee": {
  1384. name: "Gelato Bee",
  1385. parents: ["bee"]
  1386. },
  1387. "bee": {
  1388. name: "Bee",
  1389. parents: ["insect"]
  1390. },
  1391. "gardevoir": {
  1392. name: "Gardevoir",
  1393. parents: ["pokemon"]
  1394. },
  1395. "ant": {
  1396. name: "Ant",
  1397. parents: ["insect"]
  1398. },
  1399. "frog": {
  1400. name: "Frog",
  1401. parents: ["amphibian"]
  1402. },
  1403. "amphibian": {
  1404. name: "Amphibian",
  1405. parents: ["animal"]
  1406. },
  1407. "pangolin": {
  1408. name: "Pangolin",
  1409. parents: ["mammal"]
  1410. },
  1411. "uragi'viidorn": {
  1412. name: "Uragi'viidorn",
  1413. parents: ["avian", "bear"]
  1414. },
  1415. "gryphdelphais": {
  1416. name: "Gryphdelphais",
  1417. parents: ["dolphin", "gryphon"]
  1418. },
  1419. "plush": {
  1420. name: "Plush",
  1421. parents: ["construct"]
  1422. },
  1423. "draiger": {
  1424. name: "Draiger",
  1425. parents: ["dragon","tiger"]
  1426. },
  1427. "foxsky": {
  1428. name: "Foxsky",
  1429. parents: ["fox", "husky"]
  1430. },
  1431. "umbreon": {
  1432. name: "Umbreon",
  1433. parents: ["eeveelution"]
  1434. },
  1435. "slime-dragon": {
  1436. name: "Slime Dragon",
  1437. parents: ["dragon"]
  1438. },
  1439. "enderman": {
  1440. name: "Enderman",
  1441. parents: ["monster"]
  1442. },
  1443. "gremlin": {
  1444. name: "Gremlin",
  1445. parents: ["monster"]
  1446. },
  1447. "dragonsune": {
  1448. name: "Dragonsune",
  1449. parents: ["dragon", "kitsune"]
  1450. },
  1451. "ghost": {
  1452. name: "Ghost",
  1453. parents: ["monster"]
  1454. },
  1455. "false-vampire-bat": {
  1456. name: "False Vampire Bat",
  1457. parents: ["bat"]
  1458. },
  1459. "succubus": {
  1460. name: "Succubus",
  1461. parents: ["demon"]
  1462. },
  1463. "mia": {
  1464. name: "Mia",
  1465. parents: ["canine"]
  1466. },
  1467. "rainbow": {
  1468. name: "Rainbow",
  1469. parents: ["monster"]
  1470. },
  1471. "solgaleo": {
  1472. name: "Solgaleo",
  1473. parents: ["pokemon"]
  1474. },
  1475. "lucent-nargacuga": {
  1476. name: "Lucent Nargacuga",
  1477. parents: ["monster-hunter"]
  1478. },
  1479. "monster-hunter": {
  1480. name: "Monster Hunter",
  1481. parents: ["monster"]
  1482. },
  1483. "leviathan": {
  1484. "name": "Leviathan",
  1485. "url": "sea-monster"
  1486. },
  1487. "bull": {
  1488. name: "Bull",
  1489. parents: ["mammal"]
  1490. },
  1491. "tanuki": {
  1492. name: "Tanuki",
  1493. parents: ["monster"]
  1494. },
  1495. "chakat": {
  1496. name: "Chakat",
  1497. parents: ["cat"]
  1498. },
  1499. "hydra": {
  1500. name: "Hydra",
  1501. parents: ["monster"]
  1502. },
  1503. "zigzagoon": {
  1504. name: "Zigzagoon",
  1505. parents: ["raccoon", "pokemon"]
  1506. },
  1507. "vulture": {
  1508. name: "Vulture",
  1509. parents: ["avian"]
  1510. },
  1511. "eastern-dragon": {
  1512. name: "Eastern Dragon",
  1513. parents: ["dragon"]
  1514. },
  1515. "gryffon": {
  1516. name: "Gryffon",
  1517. parents: ["phoenix", "red-panda"]
  1518. },
  1519. "amtsvane": {
  1520. name: "Amtsvane",
  1521. parents: ["reptile"]
  1522. },
  1523. "kigavi": {
  1524. name: "Kigavi",
  1525. parents: ["avian"]
  1526. },
  1527. "turian": {
  1528. name: "Turian",
  1529. parents: ["avian"]
  1530. },
  1531. "zeraora": {
  1532. name: "Zeraora",
  1533. parents: ["pokemon"]
  1534. },
  1535. "sandshrew": {
  1536. name: "Sandshrew",
  1537. parents: ["pokemon", "pangolin"]
  1538. },
  1539. "valais-blacknose-sheep": {
  1540. name: "Valais Blacknose Sheep",
  1541. parents: ["sheep"]
  1542. },
  1543. "novaleit": {
  1544. name: "Novaleit",
  1545. parents: ["mammal"]
  1546. },
  1547. "dunnoh": {
  1548. name: "Dunnoh",
  1549. parents: ["mammal"]
  1550. },
  1551. "lunaral-dragon": {
  1552. name: "Lunaral Dragon",
  1553. parents: ["dragon"]
  1554. },
  1555. "arctic-wolf": {
  1556. name: "Arctic Wolf",
  1557. parents: ["wolf"]
  1558. },
  1559. "donkey": {
  1560. name: "Donkey",
  1561. parents: ["horse"]
  1562. },
  1563. "chinchilla": {
  1564. name: "Chinchilla",
  1565. parents: ["rodent"]
  1566. },
  1567. "felkin": {
  1568. name: "Felkin",
  1569. parents: ["dragon"]
  1570. },
  1571. "tykeriel": {
  1572. name: "Tykeriel",
  1573. parents: ["avian"]
  1574. },
  1575. "folf": {
  1576. name: "Folf",
  1577. parents: ["fox", "wolf"]
  1578. },
  1579. }
  1580. //species
  1581. function getSpeciesInfo(speciesList) {
  1582. let result = new Set();
  1583. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1584. result.add(entry)
  1585. });
  1586. return Array.from(result);
  1587. };
  1588. function getSpeciesInfoHelper(species) {
  1589. if (!speciesData[species]) {
  1590. console.warn(species + " doesn't exist");
  1591. return [];
  1592. }
  1593. if (speciesData[species].parents) {
  1594. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1595. } else {
  1596. return [species];
  1597. }
  1598. }
  1599. characterMakers.push(() => makeCharacter(
  1600. {
  1601. name: "Fen",
  1602. species: ["crux"],
  1603. description: {
  1604. title: "Bio",
  1605. text: "Very furry. Sheds on everything."
  1606. },
  1607. tags: [
  1608. "anthro",
  1609. "goo"
  1610. ]
  1611. },
  1612. {
  1613. back: {
  1614. height: math.unit(2.2428, "meter"),
  1615. weight: math.unit(124.738, "kg"),
  1616. name: "Back",
  1617. image: {
  1618. source: "./media/characters/fen/back.svg",
  1619. extra: 2024 / 1867,
  1620. bottom: 13 / 2037
  1621. },
  1622. info: {
  1623. description: {
  1624. mode: "append",
  1625. text: "\n\nHe is not currently looking at you."
  1626. }
  1627. }
  1628. },
  1629. full: {
  1630. height: math.unit(1.34, "meter"),
  1631. weight: math.unit(225, "kg"),
  1632. name: "Full",
  1633. image: {
  1634. source: "./media/characters/fen/full.svg"
  1635. },
  1636. info: {
  1637. description: {
  1638. mode: "append",
  1639. text: "\n\nMunch."
  1640. }
  1641. }
  1642. },
  1643. kneeling: {
  1644. height: math.unit(5.4, "feet"),
  1645. weight: math.unit(124.738, "kg"),
  1646. name: "Kneeling",
  1647. image: {
  1648. source: "./media/characters/fen/kneeling.svg",
  1649. extra: 563 / 507
  1650. }
  1651. },
  1652. goo: {
  1653. height: math.unit(2.8, "feet"),
  1654. weight: math.unit(125, "kg"),
  1655. capacity: math.unit(1, "people"),
  1656. name: "Goo",
  1657. image: {
  1658. source: "./media/characters/fen/goo.svg",
  1659. bottom: 116 / 613
  1660. }
  1661. },
  1662. lounging: {
  1663. height: math.unit(6.5, "feet"),
  1664. weight: math.unit(125, "kg"),
  1665. name: "Lounging",
  1666. image: {
  1667. source: "./media/characters/fen/lounging.svg"
  1668. }
  1669. },
  1670. },
  1671. [
  1672. {
  1673. name: "Normal",
  1674. height: math.unit(2.2428, "meter")
  1675. },
  1676. {
  1677. name: "Big",
  1678. height: math.unit(12, "feet")
  1679. },
  1680. {
  1681. name: "Minimacro",
  1682. height: math.unit(40, "feet"),
  1683. default: true,
  1684. info: {
  1685. description: {
  1686. mode: "append",
  1687. text: "\n\nTOO DAMN BIG"
  1688. }
  1689. }
  1690. },
  1691. {
  1692. name: "Macro",
  1693. height: math.unit(100, "feet"),
  1694. info: {
  1695. description: {
  1696. mode: "append",
  1697. text: "\n\nTOO DAMN BIG"
  1698. }
  1699. }
  1700. },
  1701. {
  1702. name: "Macro+",
  1703. height: math.unit(300, "feet")
  1704. },
  1705. {
  1706. name: "Megamacro",
  1707. height: math.unit(2, "miles")
  1708. }
  1709. ]
  1710. ))
  1711. characterMakers.push(() => makeCharacter(
  1712. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1713. {
  1714. front: {
  1715. height: math.unit(183, "cm"),
  1716. weight: math.unit(80, "kg"),
  1717. name: "Front",
  1718. image: {
  1719. source: "./media/characters/sofia-fluttertail/front.svg",
  1720. bottom: 0.01,
  1721. extra: 2154 / 2081
  1722. }
  1723. },
  1724. frontAlt: {
  1725. height: math.unit(183, "cm"),
  1726. weight: math.unit(80, "kg"),
  1727. name: "Front (alt)",
  1728. image: {
  1729. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1730. }
  1731. },
  1732. back: {
  1733. height: math.unit(183, "cm"),
  1734. weight: math.unit(80, "kg"),
  1735. name: "Back",
  1736. image: {
  1737. source: "./media/characters/sofia-fluttertail/back.svg"
  1738. }
  1739. },
  1740. kneeling: {
  1741. height: math.unit(125, "cm"),
  1742. weight: math.unit(80, "kg"),
  1743. name: "Kneeling",
  1744. image: {
  1745. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1746. extra: 1033 / 977,
  1747. bottom: 23.7 / 1057
  1748. }
  1749. },
  1750. maw: {
  1751. height: math.unit(183 / 5, "cm"),
  1752. name: "Maw",
  1753. image: {
  1754. source: "./media/characters/sofia-fluttertail/maw.svg"
  1755. }
  1756. },
  1757. mawcloseup: {
  1758. height: math.unit(183 / 5 * 0.41, "cm"),
  1759. name: "Maw (Closeup)",
  1760. image: {
  1761. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1762. }
  1763. },
  1764. paws: {
  1765. height: math.unit(1.17, "feet"),
  1766. name: "Paws",
  1767. image: {
  1768. source: "./media/characters/sofia-fluttertail/paws.svg",
  1769. extra: 851 / 851,
  1770. bottom: 17 / 868
  1771. }
  1772. },
  1773. },
  1774. [
  1775. {
  1776. name: "Normal",
  1777. height: math.unit(1.83, "meter")
  1778. },
  1779. {
  1780. name: "Size Thief",
  1781. height: math.unit(18, "feet")
  1782. },
  1783. {
  1784. name: "50 Foot Collie",
  1785. height: math.unit(50, "feet")
  1786. },
  1787. {
  1788. name: "Macro",
  1789. height: math.unit(96, "feet"),
  1790. default: true
  1791. },
  1792. {
  1793. name: "Megamerger",
  1794. height: math.unit(650, "feet")
  1795. },
  1796. ]
  1797. ))
  1798. characterMakers.push(() => makeCharacter(
  1799. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1800. {
  1801. front: {
  1802. height: math.unit(7, "feet"),
  1803. weight: math.unit(100, "kg"),
  1804. name: "Front",
  1805. image: {
  1806. source: "./media/characters/march/front.svg",
  1807. extra: 1,
  1808. bottom: 0.015
  1809. }
  1810. },
  1811. foot: {
  1812. height: math.unit(0.9, "feet"),
  1813. name: "Foot",
  1814. image: {
  1815. source: "./media/characters/march/foot.svg"
  1816. }
  1817. },
  1818. },
  1819. [
  1820. {
  1821. name: "Normal",
  1822. height: math.unit(7.9, "feet")
  1823. },
  1824. {
  1825. name: "Macro",
  1826. height: math.unit(220, "meters")
  1827. },
  1828. {
  1829. name: "Megamacro",
  1830. height: math.unit(2.98, "km"),
  1831. default: true
  1832. },
  1833. {
  1834. name: "Gigamacro",
  1835. height: math.unit(15963, "km")
  1836. },
  1837. {
  1838. name: "Teramacro",
  1839. height: math.unit(2980000000, "km")
  1840. },
  1841. {
  1842. name: "Examacro",
  1843. height: math.unit(250, "parsecs")
  1844. },
  1845. ]
  1846. ))
  1847. characterMakers.push(() => makeCharacter(
  1848. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1849. {
  1850. front: {
  1851. height: math.unit(6, "feet"),
  1852. weight: math.unit(60, "kg"),
  1853. name: "Front",
  1854. image: {
  1855. source: "./media/characters/noir/front.svg",
  1856. extra: 1,
  1857. bottom: 0.032
  1858. }
  1859. },
  1860. },
  1861. [
  1862. {
  1863. name: "Normal",
  1864. height: math.unit(6.6, "feet")
  1865. },
  1866. {
  1867. name: "Macro",
  1868. height: math.unit(500, "feet")
  1869. },
  1870. {
  1871. name: "Megamacro",
  1872. height: math.unit(2.5, "km"),
  1873. default: true
  1874. },
  1875. {
  1876. name: "Gigamacro",
  1877. height: math.unit(22500, "km")
  1878. },
  1879. {
  1880. name: "Teramacro",
  1881. height: math.unit(2500000000, "km")
  1882. },
  1883. {
  1884. name: "Examacro",
  1885. height: math.unit(200, "parsecs")
  1886. },
  1887. ]
  1888. ))
  1889. characterMakers.push(() => makeCharacter(
  1890. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1891. {
  1892. front: {
  1893. height: math.unit(7, "feet"),
  1894. weight: math.unit(100, "kg"),
  1895. name: "Front",
  1896. image: {
  1897. source: "./media/characters/okuri/front.svg",
  1898. extra: 1,
  1899. bottom: 0.037
  1900. }
  1901. },
  1902. back: {
  1903. height: math.unit(7, "feet"),
  1904. weight: math.unit(100, "kg"),
  1905. name: "Back",
  1906. image: {
  1907. source: "./media/characters/okuri/back.svg",
  1908. extra: 1,
  1909. bottom: 0.007
  1910. }
  1911. },
  1912. },
  1913. [
  1914. {
  1915. name: "Megamacro",
  1916. height: math.unit(100, "miles"),
  1917. default: true
  1918. },
  1919. ]
  1920. ))
  1921. characterMakers.push(() => makeCharacter(
  1922. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1923. {
  1924. front: {
  1925. height: math.unit(7, "feet"),
  1926. weight: math.unit(100, "kg"),
  1927. name: "Front",
  1928. image: {
  1929. source: "./media/characters/manny/front.svg",
  1930. extra: 1,
  1931. bottom: 0.06
  1932. }
  1933. },
  1934. back: {
  1935. height: math.unit(7, "feet"),
  1936. weight: math.unit(100, "kg"),
  1937. name: "Back",
  1938. image: {
  1939. source: "./media/characters/manny/back.svg",
  1940. extra: 1,
  1941. bottom: 0.014
  1942. }
  1943. },
  1944. },
  1945. [
  1946. {
  1947. name: "Normal",
  1948. height: math.unit(7, "feet"),
  1949. },
  1950. {
  1951. name: "Macro",
  1952. height: math.unit(78, "feet"),
  1953. default: true
  1954. },
  1955. {
  1956. name: "Macro+",
  1957. height: math.unit(300, "meters")
  1958. },
  1959. {
  1960. name: "Macro++",
  1961. height: math.unit(2400, "meters")
  1962. },
  1963. {
  1964. name: "Megamacro",
  1965. height: math.unit(5167, "meters")
  1966. },
  1967. {
  1968. name: "Gigamacro",
  1969. height: math.unit(41769, "miles")
  1970. },
  1971. ]
  1972. ))
  1973. characterMakers.push(() => makeCharacter(
  1974. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1975. {
  1976. front: {
  1977. height: math.unit(7, "feet"),
  1978. weight: math.unit(100, "kg"),
  1979. name: "Front",
  1980. image: {
  1981. source: "./media/characters/adake/front-1.svg"
  1982. }
  1983. },
  1984. frontAlt: {
  1985. height: math.unit(7, "feet"),
  1986. weight: math.unit(100, "kg"),
  1987. name: "Front (Alt)",
  1988. image: {
  1989. source: "./media/characters/adake/front-2.svg",
  1990. extra: 1,
  1991. bottom: 0.01
  1992. }
  1993. },
  1994. back: {
  1995. height: math.unit(7, "feet"),
  1996. weight: math.unit(100, "kg"),
  1997. name: "Back",
  1998. image: {
  1999. source: "./media/characters/adake/back.svg",
  2000. }
  2001. },
  2002. kneel: {
  2003. height: math.unit(5.385, "feet"),
  2004. weight: math.unit(100, "kg"),
  2005. name: "Kneeling",
  2006. image: {
  2007. source: "./media/characters/adake/kneel.svg",
  2008. bottom: 0.052
  2009. }
  2010. },
  2011. },
  2012. [
  2013. {
  2014. name: "Normal",
  2015. height: math.unit(7, "feet"),
  2016. },
  2017. {
  2018. name: "Macro",
  2019. height: math.unit(78, "feet"),
  2020. default: true
  2021. },
  2022. {
  2023. name: "Macro+",
  2024. height: math.unit(300, "meters")
  2025. },
  2026. {
  2027. name: "Macro++",
  2028. height: math.unit(2400, "meters")
  2029. },
  2030. {
  2031. name: "Megamacro",
  2032. height: math.unit(5167, "meters")
  2033. },
  2034. {
  2035. name: "Gigamacro",
  2036. height: math.unit(41769, "miles")
  2037. },
  2038. ]
  2039. ))
  2040. characterMakers.push(() => makeCharacter(
  2041. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2042. {
  2043. front: {
  2044. height: math.unit(1.65, "meters"),
  2045. weight: math.unit(50, "kg"),
  2046. name: "Front",
  2047. image: {
  2048. source: "./media/characters/elijah/front.svg",
  2049. extra: 858 / 830,
  2050. bottom: 95.5 / 953.8559
  2051. }
  2052. },
  2053. back: {
  2054. height: math.unit(1.65, "meters"),
  2055. weight: math.unit(50, "kg"),
  2056. name: "Back",
  2057. image: {
  2058. source: "./media/characters/elijah/back.svg",
  2059. extra: 895 / 850,
  2060. bottom: 5.3 / 897.956
  2061. }
  2062. },
  2063. frontNsfw: {
  2064. height: math.unit(1.65, "meters"),
  2065. weight: math.unit(50, "kg"),
  2066. name: "Front (NSFW)",
  2067. image: {
  2068. source: "./media/characters/elijah/front-nsfw.svg",
  2069. extra: 858 / 830,
  2070. bottom: 95.5 / 953.8559
  2071. }
  2072. },
  2073. backNsfw: {
  2074. height: math.unit(1.65, "meters"),
  2075. weight: math.unit(50, "kg"),
  2076. name: "Back (NSFW)",
  2077. image: {
  2078. source: "./media/characters/elijah/back-nsfw.svg",
  2079. extra: 895 / 850,
  2080. bottom: 5.3 / 897.956
  2081. }
  2082. },
  2083. dick: {
  2084. height: math.unit(1, "feet"),
  2085. name: "Dick",
  2086. image: {
  2087. source: "./media/characters/elijah/dick.svg"
  2088. }
  2089. },
  2090. beakOpen: {
  2091. height: math.unit(1.25, "feet"),
  2092. name: "Beak (Open)",
  2093. image: {
  2094. source: "./media/characters/elijah/beak-open.svg"
  2095. }
  2096. },
  2097. beakShut: {
  2098. height: math.unit(1.25, "feet"),
  2099. name: "Beak (Shut)",
  2100. image: {
  2101. source: "./media/characters/elijah/beak-shut.svg"
  2102. }
  2103. },
  2104. footFlexing: {
  2105. height: math.unit(1.61, "feet"),
  2106. name: "Foot (Flexing)",
  2107. image: {
  2108. source: "./media/characters/elijah/foot-flexing.svg"
  2109. }
  2110. },
  2111. footStepping: {
  2112. height: math.unit(1.44, "feet"),
  2113. name: "Foot (Stepping)",
  2114. image: {
  2115. source: "./media/characters/elijah/foot-stepping.svg"
  2116. }
  2117. },
  2118. plantigradeLeg: {
  2119. height: math.unit(2.34, "feet"),
  2120. name: "Plantigrade Leg",
  2121. image: {
  2122. source: "./media/characters/elijah/plantigrade-leg.svg"
  2123. }
  2124. },
  2125. plantigradeFootLeft: {
  2126. height: math.unit(0.9, "feet"),
  2127. name: "Plantigrade Foot (Left)",
  2128. image: {
  2129. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2130. }
  2131. },
  2132. plantigradeFootRight: {
  2133. height: math.unit(0.9, "feet"),
  2134. name: "Plantigrade Foot (Right)",
  2135. image: {
  2136. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2137. }
  2138. },
  2139. },
  2140. [
  2141. {
  2142. name: "Normal",
  2143. height: math.unit(1.65, "meters")
  2144. },
  2145. {
  2146. name: "Macro",
  2147. height: math.unit(55, "meters"),
  2148. default: true
  2149. },
  2150. {
  2151. name: "Macro+",
  2152. height: math.unit(105, "meters")
  2153. },
  2154. ]
  2155. ))
  2156. characterMakers.push(() => makeCharacter(
  2157. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2158. {
  2159. front: {
  2160. height: math.unit(11, "feet"),
  2161. weight: math.unit(80, "kg"),
  2162. name: "Front",
  2163. image: {
  2164. source: "./media/characters/rai/front.svg",
  2165. extra: 1,
  2166. bottom: 0.03
  2167. }
  2168. },
  2169. side: {
  2170. height: math.unit(11, "feet"),
  2171. weight: math.unit(80, "kg"),
  2172. name: "Side",
  2173. image: {
  2174. source: "./media/characters/rai/side.svg"
  2175. }
  2176. },
  2177. back: {
  2178. height: math.unit(11, "feet"),
  2179. weight: math.unit(80, "lb"),
  2180. name: "Back",
  2181. image: {
  2182. source: "./media/characters/rai/back.svg",
  2183. extra: 1,
  2184. bottom: 0.01
  2185. }
  2186. },
  2187. feral: {
  2188. height: math.unit(11, "feet"),
  2189. weight: math.unit(800, "lb"),
  2190. name: "Feral",
  2191. image: {
  2192. source: "./media/characters/rai/feral.svg",
  2193. extra: 1050 / 659,
  2194. bottom: 0.07
  2195. }
  2196. },
  2197. dragon: {
  2198. height: math.unit(23, "feet"),
  2199. weight: math.unit(50000, "lb"),
  2200. name: "Dragon",
  2201. image: {
  2202. source: "./media/characters/rai/dragon.svg",
  2203. extra: 2498 / 2030,
  2204. bottom: 85.2 / 2584
  2205. }
  2206. },
  2207. maw: {
  2208. height: math.unit(6 / 3.81416, "feet"),
  2209. name: "Maw",
  2210. image: {
  2211. source: "./media/characters/rai/maw.svg"
  2212. }
  2213. },
  2214. },
  2215. [
  2216. {
  2217. name: "Normal",
  2218. height: math.unit(11, "feet")
  2219. },
  2220. {
  2221. name: "Macro",
  2222. height: math.unit(302, "feet"),
  2223. default: true
  2224. },
  2225. ]
  2226. ))
  2227. characterMakers.push(() => makeCharacter(
  2228. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2229. {
  2230. frontDressed: {
  2231. height: math.unit(216, "feet"),
  2232. weight: math.unit(7000000, "lb"),
  2233. name: "Front (Dressed)",
  2234. image: {
  2235. source: "./media/characters/jazzy/front-dressed.svg",
  2236. extra: 2738 / 2651,
  2237. bottom: 41.8 / 2786
  2238. }
  2239. },
  2240. backDressed: {
  2241. height: math.unit(216, "feet"),
  2242. weight: math.unit(7000000, "lb"),
  2243. name: "Back (Dressed)",
  2244. image: {
  2245. source: "./media/characters/jazzy/back-dressed.svg",
  2246. extra: 2775 / 2673,
  2247. bottom: 36.8 / 2817
  2248. }
  2249. },
  2250. front: {
  2251. height: math.unit(216, "feet"),
  2252. weight: math.unit(7000000, "lb"),
  2253. name: "Front",
  2254. image: {
  2255. source: "./media/characters/jazzy/front.svg",
  2256. extra: 2738 / 2651,
  2257. bottom: 41.8 / 2786
  2258. }
  2259. },
  2260. back: {
  2261. height: math.unit(216, "feet"),
  2262. weight: math.unit(7000000, "lb"),
  2263. name: "Back",
  2264. image: {
  2265. source: "./media/characters/jazzy/back.svg",
  2266. extra: 2775 / 2673,
  2267. bottom: 36.8 / 2817
  2268. }
  2269. },
  2270. maw: {
  2271. height: math.unit(20, "feet"),
  2272. name: "Maw",
  2273. image: {
  2274. source: "./media/characters/jazzy/maw.svg"
  2275. }
  2276. },
  2277. paws: {
  2278. height: math.unit(27.5, "feet"),
  2279. name: "Paws",
  2280. image: {
  2281. source: "./media/characters/jazzy/paws.svg"
  2282. }
  2283. },
  2284. eye: {
  2285. height: math.unit(4.4, "feet"),
  2286. name: "Eye",
  2287. image: {
  2288. source: "./media/characters/jazzy/eye.svg"
  2289. }
  2290. },
  2291. droneOffense: {
  2292. height: math.unit(9.5, "inches"),
  2293. name: "Drone (Offense)",
  2294. image: {
  2295. source: "./media/characters/jazzy/drone-offense.svg"
  2296. }
  2297. },
  2298. droneRecon: {
  2299. height: math.unit(9.5, "inches"),
  2300. name: "Drone (Recon)",
  2301. image: {
  2302. source: "./media/characters/jazzy/drone-recon.svg"
  2303. }
  2304. },
  2305. droneDefense: {
  2306. height: math.unit(9.5, "inches"),
  2307. name: "Drone (Defense)",
  2308. image: {
  2309. source: "./media/characters/jazzy/drone-defense.svg"
  2310. }
  2311. },
  2312. },
  2313. [
  2314. {
  2315. name: "Macro",
  2316. height: math.unit(216, "feet"),
  2317. default: true
  2318. },
  2319. ]
  2320. ))
  2321. characterMakers.push(() => makeCharacter(
  2322. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2323. {
  2324. front: {
  2325. height: math.unit(9 + 6/12, "feet"),
  2326. weight: math.unit(700, "lb"),
  2327. name: "Front",
  2328. image: {
  2329. source: "./media/characters/flamm/front.svg",
  2330. extra: 1751/1632,
  2331. bottom: 46/1797
  2332. }
  2333. },
  2334. buff: {
  2335. height: math.unit(9 + 6/12, "feet"),
  2336. weight: math.unit(950, "lb"),
  2337. name: "Buff",
  2338. image: {
  2339. source: "./media/characters/flamm/buff.svg",
  2340. extra: 3018/2874,
  2341. bottom: 221/3239
  2342. }
  2343. },
  2344. },
  2345. [
  2346. {
  2347. name: "Normal",
  2348. height: math.unit(9.5, "feet")
  2349. },
  2350. {
  2351. name: "Macro",
  2352. height: math.unit(200, "feet"),
  2353. default: true
  2354. },
  2355. ]
  2356. ))
  2357. characterMakers.push(() => makeCharacter(
  2358. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2359. {
  2360. front: {
  2361. height: math.unit(5 + 3/12, "feet"),
  2362. weight: math.unit(60, "kg"),
  2363. name: "Front",
  2364. image: {
  2365. source: "./media/characters/zephiro/front.svg",
  2366. extra: 2309 / 2162,
  2367. bottom: 0.069
  2368. }
  2369. },
  2370. side: {
  2371. height: math.unit(5 + 3/12, "feet"),
  2372. weight: math.unit(60, "kg"),
  2373. name: "Side",
  2374. image: {
  2375. source: "./media/characters/zephiro/side.svg",
  2376. extra: 2403 / 2279,
  2377. bottom: 0.015
  2378. }
  2379. },
  2380. back: {
  2381. height: math.unit(5 + 3/12, "feet"),
  2382. weight: math.unit(60, "kg"),
  2383. name: "Back",
  2384. image: {
  2385. source: "./media/characters/zephiro/back.svg",
  2386. extra: 2373 / 2244,
  2387. bottom: 0.013
  2388. }
  2389. },
  2390. hand: {
  2391. height: math.unit(0.68, "feet"),
  2392. name: "Hand",
  2393. image: {
  2394. source: "./media/characters/zephiro/hand.svg"
  2395. }
  2396. },
  2397. paw: {
  2398. height: math.unit(1, "feet"),
  2399. name: "Paw",
  2400. image: {
  2401. source: "./media/characters/zephiro/paw.svg"
  2402. }
  2403. },
  2404. beans: {
  2405. height: math.unit(0.93, "feet"),
  2406. name: "Beans",
  2407. image: {
  2408. source: "./media/characters/zephiro/beans.svg"
  2409. }
  2410. },
  2411. },
  2412. [
  2413. {
  2414. name: "Micro",
  2415. height: math.unit(3, "inches")
  2416. },
  2417. {
  2418. name: "Normal",
  2419. height: math.unit(5 + 3 / 12, "feet"),
  2420. default: true
  2421. },
  2422. {
  2423. name: "Macro",
  2424. height: math.unit(118, "feet")
  2425. },
  2426. ]
  2427. ))
  2428. characterMakers.push(() => makeCharacter(
  2429. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2430. {
  2431. front: {
  2432. height: math.unit(5, "feet"),
  2433. weight: math.unit(90, "kg"),
  2434. name: "Front",
  2435. image: {
  2436. source: "./media/characters/fory/front.svg",
  2437. extra: 2862 / 2674,
  2438. bottom: 180 / 3043.8
  2439. }
  2440. },
  2441. back: {
  2442. height: math.unit(5, "feet"),
  2443. weight: math.unit(90, "kg"),
  2444. name: "Back",
  2445. image: {
  2446. source: "./media/characters/fory/back.svg",
  2447. extra: 2962 / 2791,
  2448. bottom: 106 / 3071.8
  2449. }
  2450. },
  2451. foot: {
  2452. height: math.unit(2.14, "feet"),
  2453. name: "Foot",
  2454. image: {
  2455. source: "./media/characters/fory/foot.svg"
  2456. }
  2457. },
  2458. },
  2459. [
  2460. {
  2461. name: "Normal",
  2462. height: math.unit(5, "feet")
  2463. },
  2464. {
  2465. name: "Macro",
  2466. height: math.unit(50, "feet"),
  2467. default: true
  2468. },
  2469. {
  2470. name: "Megamacro",
  2471. height: math.unit(10, "miles")
  2472. },
  2473. {
  2474. name: "Gigamacro",
  2475. height: math.unit(5, "earths")
  2476. },
  2477. ]
  2478. ))
  2479. characterMakers.push(() => makeCharacter(
  2480. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2481. {
  2482. front: {
  2483. height: math.unit(7, "feet"),
  2484. weight: math.unit(90, "kg"),
  2485. name: "Front",
  2486. image: {
  2487. source: "./media/characters/kurrikage/front.svg",
  2488. extra: 1,
  2489. bottom: 0.035
  2490. }
  2491. },
  2492. back: {
  2493. height: math.unit(7, "feet"),
  2494. weight: math.unit(90, "lb"),
  2495. name: "Back",
  2496. image: {
  2497. source: "./media/characters/kurrikage/back.svg"
  2498. }
  2499. },
  2500. paw: {
  2501. height: math.unit(1.5, "feet"),
  2502. name: "Paw",
  2503. image: {
  2504. source: "./media/characters/kurrikage/paw.svg"
  2505. }
  2506. },
  2507. staff: {
  2508. height: math.unit(6.7, "feet"),
  2509. name: "Staff",
  2510. image: {
  2511. source: "./media/characters/kurrikage/staff.svg"
  2512. }
  2513. },
  2514. peek: {
  2515. height: math.unit(1.05, "feet"),
  2516. name: "Peeking",
  2517. image: {
  2518. source: "./media/characters/kurrikage/peek.svg",
  2519. bottom: 0.08
  2520. }
  2521. },
  2522. },
  2523. [
  2524. {
  2525. name: "Normal",
  2526. height: math.unit(12, "feet"),
  2527. default: true
  2528. },
  2529. {
  2530. name: "Big",
  2531. height: math.unit(20, "feet")
  2532. },
  2533. {
  2534. name: "Macro",
  2535. height: math.unit(500, "feet")
  2536. },
  2537. {
  2538. name: "Megamacro",
  2539. height: math.unit(20, "miles")
  2540. },
  2541. ]
  2542. ))
  2543. characterMakers.push(() => makeCharacter(
  2544. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2545. {
  2546. front: {
  2547. height: math.unit(6, "feet"),
  2548. weight: math.unit(75, "kg"),
  2549. name: "Front",
  2550. image: {
  2551. source: "./media/characters/shingo/front.svg",
  2552. extra: 706/681,
  2553. bottom: 11/717
  2554. }
  2555. },
  2556. frontAlt: {
  2557. height: math.unit(6, "feet"),
  2558. weight: math.unit(75, "kg"),
  2559. name: "Front (Alt)",
  2560. image: {
  2561. source: "./media/characters/shingo/front-alt.svg",
  2562. extra: 3511 / 3338,
  2563. bottom: 0.005
  2564. }
  2565. },
  2566. paw: {
  2567. height: math.unit(1, "feet"),
  2568. name: "Paw",
  2569. image: {
  2570. source: "./media/characters/shingo/paw.svg"
  2571. }
  2572. },
  2573. },
  2574. [
  2575. {
  2576. name: "Micro",
  2577. height: math.unit(4, "inches")
  2578. },
  2579. {
  2580. name: "Normal",
  2581. height: math.unit(6, "feet"),
  2582. default: true
  2583. },
  2584. {
  2585. name: "Macro",
  2586. height: math.unit(108, "feet")
  2587. },
  2588. {
  2589. name: "Macro+",
  2590. height: math.unit(1500, "feet")
  2591. },
  2592. ]
  2593. ))
  2594. characterMakers.push(() => makeCharacter(
  2595. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2596. {
  2597. side: {
  2598. height: math.unit(6, "feet"),
  2599. weight: math.unit(75, "kg"),
  2600. name: "Side",
  2601. image: {
  2602. source: "./media/characters/aigey/side.svg"
  2603. }
  2604. },
  2605. },
  2606. [
  2607. {
  2608. name: "Macro",
  2609. height: math.unit(200, "feet"),
  2610. default: true
  2611. },
  2612. {
  2613. name: "Megamacro",
  2614. height: math.unit(100, "miles")
  2615. },
  2616. ]
  2617. )
  2618. )
  2619. characterMakers.push(() => makeCharacter(
  2620. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2621. {
  2622. front: {
  2623. height: math.unit(5 + 5 / 12, "feet"),
  2624. weight: math.unit(75, "kg"),
  2625. name: "Front",
  2626. image: {
  2627. source: "./media/characters/natasha/front.svg",
  2628. extra: 859 / 824,
  2629. bottom: 23 / 879.6
  2630. }
  2631. },
  2632. frontNsfw: {
  2633. height: math.unit(5 + 5 / 12, "feet"),
  2634. weight: math.unit(75, "kg"),
  2635. name: "Front (NSFW)",
  2636. image: {
  2637. source: "./media/characters/natasha/front-nsfw.svg",
  2638. extra: 859 / 824,
  2639. bottom: 23 / 879.6
  2640. }
  2641. },
  2642. frontErect: {
  2643. height: math.unit(5 + 5 / 12, "feet"),
  2644. weight: math.unit(75, "kg"),
  2645. name: "Front (Erect)",
  2646. image: {
  2647. source: "./media/characters/natasha/front-erect.svg",
  2648. extra: 859 / 824,
  2649. bottom: 23 / 879.6
  2650. }
  2651. },
  2652. back: {
  2653. height: math.unit(5 + 5 / 12, "feet"),
  2654. weight: math.unit(75, "kg"),
  2655. name: "Back",
  2656. image: {
  2657. source: "./media/characters/natasha/back.svg",
  2658. extra: 887.9 / 852.6,
  2659. bottom: 9.7 / 896.4
  2660. }
  2661. },
  2662. backAlt: {
  2663. height: math.unit(5 + 5 / 12, "feet"),
  2664. weight: math.unit(75, "kg"),
  2665. name: "Back (Alt)",
  2666. image: {
  2667. source: "./media/characters/natasha/back-alt.svg",
  2668. extra: 1236.7 / 1192,
  2669. bottom: 22.3 / 1258.2
  2670. }
  2671. },
  2672. dick: {
  2673. height: math.unit(1.772, "feet"),
  2674. name: "Dick",
  2675. image: {
  2676. source: "./media/characters/natasha/dick.svg"
  2677. }
  2678. },
  2679. paw: {
  2680. height: math.unit(0.250, "meters"),
  2681. name: "Paw",
  2682. image: {
  2683. source: "./media/characters/natasha/paw.svg"
  2684. }
  2685. },
  2686. },
  2687. [
  2688. {
  2689. name: "Normal",
  2690. height: math.unit(5 + 5 / 12, "feet")
  2691. },
  2692. {
  2693. name: "Large",
  2694. height: math.unit(12, "feet")
  2695. },
  2696. {
  2697. name: "Macro",
  2698. height: math.unit(100, "feet"),
  2699. default: true
  2700. },
  2701. {
  2702. name: "Macro+",
  2703. height: math.unit(260, "feet")
  2704. },
  2705. {
  2706. name: "Macro++",
  2707. height: math.unit(1, "mile")
  2708. },
  2709. ]
  2710. ))
  2711. characterMakers.push(() => makeCharacter(
  2712. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2713. {
  2714. front: {
  2715. height: math.unit(6, "feet"),
  2716. weight: math.unit(75, "kg"),
  2717. name: "Front",
  2718. image: {
  2719. source: "./media/characters/malik/front.svg"
  2720. }
  2721. },
  2722. side: {
  2723. height: math.unit(6, "feet"),
  2724. weight: math.unit(75, "kg"),
  2725. name: "Side",
  2726. image: {
  2727. source: "./media/characters/malik/side.svg",
  2728. extra: 1.1539
  2729. }
  2730. },
  2731. back: {
  2732. height: math.unit(6, "feet"),
  2733. weight: math.unit(75, "kg"),
  2734. name: "Back",
  2735. image: {
  2736. source: "./media/characters/malik/back.svg"
  2737. }
  2738. },
  2739. },
  2740. [
  2741. {
  2742. name: "Macro",
  2743. height: math.unit(156, "feet"),
  2744. default: true
  2745. },
  2746. {
  2747. name: "Macro+",
  2748. height: math.unit(1188, "feet")
  2749. },
  2750. ]
  2751. ))
  2752. characterMakers.push(() => makeCharacter(
  2753. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2754. {
  2755. front: {
  2756. height: math.unit(6, "feet"),
  2757. weight: math.unit(75, "kg"),
  2758. name: "Front",
  2759. image: {
  2760. source: "./media/characters/sefer/front.svg",
  2761. extra: 848 / 659,
  2762. bottom: 28.3 / 876.442
  2763. }
  2764. },
  2765. back: {
  2766. height: math.unit(6, "feet"),
  2767. weight: math.unit(75, "kg"),
  2768. name: "Back",
  2769. image: {
  2770. source: "./media/characters/sefer/back.svg",
  2771. extra: 864 / 695,
  2772. bottom: 10 / 871
  2773. }
  2774. },
  2775. frontDressed: {
  2776. height: math.unit(6, "feet"),
  2777. weight: math.unit(75, "kg"),
  2778. name: "Front (Dressed)",
  2779. image: {
  2780. source: "./media/characters/sefer/front-dressed.svg",
  2781. extra: 839 / 653,
  2782. bottom: 37.6 / 878
  2783. }
  2784. },
  2785. },
  2786. [
  2787. {
  2788. name: "Normal",
  2789. height: math.unit(6, "feet"),
  2790. default: true
  2791. },
  2792. ]
  2793. ))
  2794. characterMakers.push(() => makeCharacter(
  2795. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2796. {
  2797. body: {
  2798. height: math.unit(2.2428, "meter"),
  2799. weight: math.unit(124.738, "kg"),
  2800. name: "Body",
  2801. image: {
  2802. extra: 1225 / 1050,
  2803. source: "./media/characters/north/front.svg"
  2804. }
  2805. }
  2806. },
  2807. [
  2808. {
  2809. name: "Micro",
  2810. height: math.unit(4, "inches")
  2811. },
  2812. {
  2813. name: "Macro",
  2814. height: math.unit(63, "meters")
  2815. },
  2816. {
  2817. name: "Megamacro",
  2818. height: math.unit(101, "miles"),
  2819. default: true
  2820. }
  2821. ]
  2822. ))
  2823. characterMakers.push(() => makeCharacter(
  2824. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2825. {
  2826. angled: {
  2827. height: math.unit(4, "meter"),
  2828. weight: math.unit(150, "kg"),
  2829. name: "Angled",
  2830. image: {
  2831. source: "./media/characters/talan/angled-sfw.svg",
  2832. bottom: 29 / 3734
  2833. }
  2834. },
  2835. angledNsfw: {
  2836. height: math.unit(4, "meter"),
  2837. weight: math.unit(150, "kg"),
  2838. name: "Angled (NSFW)",
  2839. image: {
  2840. source: "./media/characters/talan/angled-nsfw.svg",
  2841. bottom: 29 / 3734
  2842. }
  2843. },
  2844. frontNsfw: {
  2845. height: math.unit(4, "meter"),
  2846. weight: math.unit(150, "kg"),
  2847. name: "Front (NSFW)",
  2848. image: {
  2849. source: "./media/characters/talan/front-nsfw.svg",
  2850. bottom: 29 / 3734
  2851. }
  2852. },
  2853. sideNsfw: {
  2854. height: math.unit(4, "meter"),
  2855. weight: math.unit(150, "kg"),
  2856. name: "Side (NSFW)",
  2857. image: {
  2858. source: "./media/characters/talan/side-nsfw.svg",
  2859. bottom: 29 / 3734
  2860. }
  2861. },
  2862. back: {
  2863. height: math.unit(4, "meter"),
  2864. weight: math.unit(150, "kg"),
  2865. name: "Back",
  2866. image: {
  2867. source: "./media/characters/talan/back.svg"
  2868. }
  2869. },
  2870. dickBottom: {
  2871. height: math.unit(0.621, "meter"),
  2872. name: "Dick (Bottom)",
  2873. image: {
  2874. source: "./media/characters/talan/dick-bottom.svg"
  2875. }
  2876. },
  2877. dickTop: {
  2878. height: math.unit(0.621, "meter"),
  2879. name: "Dick (Top)",
  2880. image: {
  2881. source: "./media/characters/talan/dick-top.svg"
  2882. }
  2883. },
  2884. dickSide: {
  2885. height: math.unit(0.305, "meter"),
  2886. name: "Dick (Side)",
  2887. image: {
  2888. source: "./media/characters/talan/dick-side.svg"
  2889. }
  2890. },
  2891. dickFront: {
  2892. height: math.unit(0.305, "meter"),
  2893. name: "Dick (Front)",
  2894. image: {
  2895. source: "./media/characters/talan/dick-front.svg"
  2896. }
  2897. },
  2898. },
  2899. [
  2900. {
  2901. name: "Normal",
  2902. height: math.unit(4, "meters")
  2903. },
  2904. {
  2905. name: "Macro",
  2906. height: math.unit(100, "meters")
  2907. },
  2908. {
  2909. name: "Megamacro",
  2910. height: math.unit(2, "miles"),
  2911. default: true
  2912. },
  2913. {
  2914. name: "Gigamacro",
  2915. height: math.unit(5000, "miles")
  2916. },
  2917. {
  2918. name: "Teramacro",
  2919. height: math.unit(100, "parsecs")
  2920. }
  2921. ]
  2922. ))
  2923. characterMakers.push(() => makeCharacter(
  2924. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2925. {
  2926. front: {
  2927. height: math.unit(2, "meter"),
  2928. weight: math.unit(90, "kg"),
  2929. name: "Front",
  2930. image: {
  2931. source: "./media/characters/gael'rathus/front.svg"
  2932. }
  2933. },
  2934. frontAlt: {
  2935. height: math.unit(2, "meter"),
  2936. weight: math.unit(90, "kg"),
  2937. name: "Front (alt)",
  2938. image: {
  2939. source: "./media/characters/gael'rathus/front-alt.svg"
  2940. }
  2941. },
  2942. frontAlt2: {
  2943. height: math.unit(2, "meter"),
  2944. weight: math.unit(90, "kg"),
  2945. name: "Front (alt 2)",
  2946. image: {
  2947. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2948. }
  2949. }
  2950. },
  2951. [
  2952. {
  2953. name: "Normal",
  2954. height: math.unit(9, "feet"),
  2955. default: true
  2956. },
  2957. {
  2958. name: "Large",
  2959. height: math.unit(25, "feet")
  2960. },
  2961. {
  2962. name: "Macro",
  2963. height: math.unit(0.25, "miles")
  2964. },
  2965. {
  2966. name: "Megamacro",
  2967. height: math.unit(10, "miles")
  2968. }
  2969. ]
  2970. ))
  2971. characterMakers.push(() => makeCharacter(
  2972. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2973. {
  2974. side: {
  2975. height: math.unit(2, "meter"),
  2976. weight: math.unit(140, "kg"),
  2977. name: "Side",
  2978. image: {
  2979. source: "./media/characters/sosha/side.svg",
  2980. bottom: 0.042
  2981. }
  2982. },
  2983. },
  2984. [
  2985. {
  2986. name: "Normal",
  2987. height: math.unit(12, "feet"),
  2988. default: true
  2989. }
  2990. ]
  2991. ))
  2992. characterMakers.push(() => makeCharacter(
  2993. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2994. {
  2995. side: {
  2996. height: math.unit(5 + 5 / 12, "feet"),
  2997. weight: math.unit(170, "kg"),
  2998. name: "Side",
  2999. image: {
  3000. source: "./media/characters/runnola/side.svg",
  3001. extra: 741 / 448,
  3002. bottom: 0.05
  3003. }
  3004. },
  3005. },
  3006. [
  3007. {
  3008. name: "Small",
  3009. height: math.unit(3, "feet")
  3010. },
  3011. {
  3012. name: "Normal",
  3013. height: math.unit(5 + 5 / 12, "feet"),
  3014. default: true
  3015. },
  3016. {
  3017. name: "Big",
  3018. height: math.unit(10, "feet")
  3019. },
  3020. ]
  3021. ))
  3022. characterMakers.push(() => makeCharacter(
  3023. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3024. {
  3025. front: {
  3026. height: math.unit(2, "meter"),
  3027. weight: math.unit(50, "kg"),
  3028. name: "Front",
  3029. image: {
  3030. source: "./media/characters/kurribird/front.svg",
  3031. bottom: 0.015
  3032. }
  3033. },
  3034. frontAlt: {
  3035. height: math.unit(1.5, "meter"),
  3036. weight: math.unit(50, "kg"),
  3037. name: "Front (Alt)",
  3038. image: {
  3039. source: "./media/characters/kurribird/front-alt.svg",
  3040. extra: 1.45
  3041. }
  3042. },
  3043. },
  3044. [
  3045. {
  3046. name: "Normal",
  3047. height: math.unit(7, "feet")
  3048. },
  3049. {
  3050. name: "Big",
  3051. height: math.unit(12, "feet"),
  3052. default: true
  3053. },
  3054. {
  3055. name: "Macro",
  3056. height: math.unit(1500, "feet")
  3057. },
  3058. {
  3059. name: "Megamacro",
  3060. height: math.unit(2, "miles")
  3061. }
  3062. ]
  3063. ))
  3064. characterMakers.push(() => makeCharacter(
  3065. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3066. {
  3067. front: {
  3068. height: math.unit(2, "meter"),
  3069. weight: math.unit(80, "kg"),
  3070. name: "Front",
  3071. image: {
  3072. source: "./media/characters/elbial/front.svg",
  3073. extra: 1643 / 1556,
  3074. bottom: 60.2 / 1696
  3075. }
  3076. },
  3077. side: {
  3078. height: math.unit(2, "meter"),
  3079. weight: math.unit(80, "kg"),
  3080. name: "Side",
  3081. image: {
  3082. source: "./media/characters/elbial/side.svg",
  3083. extra: 1630 / 1565,
  3084. bottom: 71.5 / 1697
  3085. }
  3086. },
  3087. back: {
  3088. height: math.unit(2, "meter"),
  3089. weight: math.unit(80, "kg"),
  3090. name: "Back",
  3091. image: {
  3092. source: "./media/characters/elbial/back.svg",
  3093. extra: 1668 / 1595,
  3094. bottom: 5.6 / 1672
  3095. }
  3096. },
  3097. frontDressed: {
  3098. height: math.unit(2, "meter"),
  3099. weight: math.unit(80, "kg"),
  3100. name: "Front (Dressed)",
  3101. image: {
  3102. source: "./media/characters/elbial/front-dressed.svg",
  3103. extra: 1653 / 1584,
  3104. bottom: 57 / 1708
  3105. }
  3106. },
  3107. genitals: {
  3108. height: math.unit(2 / 3.367, "meter"),
  3109. name: "Genitals",
  3110. image: {
  3111. source: "./media/characters/elbial/genitals.svg"
  3112. }
  3113. },
  3114. },
  3115. [
  3116. {
  3117. name: "Large",
  3118. height: math.unit(100, "feet")
  3119. },
  3120. {
  3121. name: "Macro",
  3122. height: math.unit(500, "feet"),
  3123. default: true
  3124. },
  3125. {
  3126. name: "Megamacro",
  3127. height: math.unit(10, "miles")
  3128. },
  3129. {
  3130. name: "Gigamacro",
  3131. height: math.unit(25000, "miles")
  3132. },
  3133. {
  3134. name: "Full-Size",
  3135. height: math.unit(8000000, "gigaparsecs")
  3136. }
  3137. ]
  3138. ))
  3139. characterMakers.push(() => makeCharacter(
  3140. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3141. {
  3142. front: {
  3143. height: math.unit(2, "meter"),
  3144. weight: math.unit(60, "kg"),
  3145. name: "Front",
  3146. image: {
  3147. source: "./media/characters/noah/front.svg"
  3148. }
  3149. },
  3150. talons: {
  3151. height: math.unit(0.315, "meter"),
  3152. name: "Talons",
  3153. image: {
  3154. source: "./media/characters/noah/talons.svg"
  3155. }
  3156. }
  3157. },
  3158. [
  3159. {
  3160. name: "Large",
  3161. height: math.unit(50, "feet")
  3162. },
  3163. {
  3164. name: "Macro",
  3165. height: math.unit(750, "feet"),
  3166. default: true
  3167. },
  3168. {
  3169. name: "Megamacro",
  3170. height: math.unit(50, "miles")
  3171. },
  3172. {
  3173. name: "Gigamacro",
  3174. height: math.unit(100000, "miles")
  3175. },
  3176. {
  3177. name: "Full-Size",
  3178. height: math.unit(3000000000, "miles")
  3179. }
  3180. ]
  3181. ))
  3182. characterMakers.push(() => makeCharacter(
  3183. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3184. {
  3185. front: {
  3186. height: math.unit(2, "meter"),
  3187. weight: math.unit(80, "kg"),
  3188. name: "Front",
  3189. image: {
  3190. source: "./media/characters/natalya/front.svg"
  3191. }
  3192. },
  3193. back: {
  3194. height: math.unit(2, "meter"),
  3195. weight: math.unit(80, "kg"),
  3196. name: "Back",
  3197. image: {
  3198. source: "./media/characters/natalya/back.svg"
  3199. }
  3200. }
  3201. },
  3202. [
  3203. {
  3204. name: "Normal",
  3205. height: math.unit(150, "feet"),
  3206. default: true
  3207. },
  3208. {
  3209. name: "Megamacro",
  3210. height: math.unit(5, "miles")
  3211. },
  3212. {
  3213. name: "Full-Size",
  3214. height: math.unit(600, "kiloparsecs")
  3215. }
  3216. ]
  3217. ))
  3218. characterMakers.push(() => makeCharacter(
  3219. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3220. {
  3221. front: {
  3222. height: math.unit(2, "meter"),
  3223. weight: math.unit(50, "kg"),
  3224. name: "Front",
  3225. image: {
  3226. source: "./media/characters/erestrebah/front.svg",
  3227. extra: 208 / 193,
  3228. bottom: 0.055
  3229. }
  3230. },
  3231. back: {
  3232. height: math.unit(2, "meter"),
  3233. weight: math.unit(50, "kg"),
  3234. name: "Back",
  3235. image: {
  3236. source: "./media/characters/erestrebah/back.svg",
  3237. extra: 1.3
  3238. }
  3239. }
  3240. },
  3241. [
  3242. {
  3243. name: "Normal",
  3244. height: math.unit(10, "feet")
  3245. },
  3246. {
  3247. name: "Large",
  3248. height: math.unit(50, "feet"),
  3249. default: true
  3250. },
  3251. {
  3252. name: "Macro",
  3253. height: math.unit(300, "feet")
  3254. },
  3255. {
  3256. name: "Macro+",
  3257. height: math.unit(750, "feet")
  3258. },
  3259. {
  3260. name: "Megamacro",
  3261. height: math.unit(3, "miles")
  3262. }
  3263. ]
  3264. ))
  3265. characterMakers.push(() => makeCharacter(
  3266. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3267. {
  3268. front: {
  3269. height: math.unit(2, "meter"),
  3270. weight: math.unit(80, "kg"),
  3271. name: "Front",
  3272. image: {
  3273. source: "./media/characters/jennifer/front.svg",
  3274. bottom: 0.11,
  3275. extra: 1.16
  3276. }
  3277. },
  3278. frontAlt: {
  3279. height: math.unit(2, "meter"),
  3280. weight: math.unit(80, "kg"),
  3281. name: "Front (Alt)",
  3282. image: {
  3283. source: "./media/characters/jennifer/front-alt.svg"
  3284. }
  3285. }
  3286. },
  3287. [
  3288. {
  3289. name: "Canon Height",
  3290. height: math.unit(120, "feet"),
  3291. default: true
  3292. },
  3293. {
  3294. name: "Macro+",
  3295. height: math.unit(300, "feet")
  3296. },
  3297. {
  3298. name: "Megamacro",
  3299. height: math.unit(20000, "feet")
  3300. }
  3301. ]
  3302. ))
  3303. characterMakers.push(() => makeCharacter(
  3304. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3305. {
  3306. front: {
  3307. height: math.unit(2, "meter"),
  3308. weight: math.unit(50, "kg"),
  3309. name: "Front",
  3310. image: {
  3311. source: "./media/characters/kalista/front.svg",
  3312. extra: 1947 / 1700,
  3313. bottom: 76.6 / 1412.98
  3314. }
  3315. },
  3316. back: {
  3317. height: math.unit(2, "meter"),
  3318. weight: math.unit(50, "kg"),
  3319. name: "Back",
  3320. image: {
  3321. source: "./media/characters/kalista/back.svg",
  3322. extra: 1366 / 1156,
  3323. bottom: 33.9 / 1362.78
  3324. }
  3325. }
  3326. },
  3327. [
  3328. {
  3329. name: "Uncomfortably Small",
  3330. height: math.unit(10, "feet")
  3331. },
  3332. {
  3333. name: "Small",
  3334. height: math.unit(30, "feet")
  3335. },
  3336. {
  3337. name: "Macro",
  3338. height: math.unit(100, "feet"),
  3339. default: true
  3340. },
  3341. {
  3342. name: "Macro+",
  3343. height: math.unit(2000, "feet")
  3344. },
  3345. {
  3346. name: "True Form",
  3347. height: math.unit(8924, "miles")
  3348. }
  3349. ]
  3350. ))
  3351. characterMakers.push(() => makeCharacter(
  3352. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3353. {
  3354. front: {
  3355. height: math.unit(2, "meter"),
  3356. weight: math.unit(120, "kg"),
  3357. name: "Front",
  3358. image: {
  3359. source: "./media/characters/ggv/front.svg"
  3360. }
  3361. },
  3362. side: {
  3363. height: math.unit(2, "meter"),
  3364. weight: math.unit(120, "kg"),
  3365. name: "Side",
  3366. image: {
  3367. source: "./media/characters/ggv/side.svg"
  3368. }
  3369. }
  3370. },
  3371. [
  3372. {
  3373. name: "Extremely Puny",
  3374. height: math.unit(9 + 5 / 12, "feet")
  3375. },
  3376. {
  3377. name: "Horribly Small",
  3378. height: math.unit(47.7, "miles"),
  3379. default: true
  3380. },
  3381. {
  3382. name: "Reasonably Sized",
  3383. height: math.unit(25000, "parsecs")
  3384. },
  3385. {
  3386. name: "Slightly Uncompressed",
  3387. height: math.unit(7.77e31, "parsecs")
  3388. },
  3389. {
  3390. name: "Omniversal",
  3391. height: math.unit(1e300, "meters")
  3392. },
  3393. ]
  3394. ))
  3395. characterMakers.push(() => makeCharacter(
  3396. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3397. {
  3398. front: {
  3399. height: math.unit(2, "meter"),
  3400. weight: math.unit(75, "lb"),
  3401. name: "Front",
  3402. image: {
  3403. source: "./media/characters/napalm/front.svg"
  3404. }
  3405. },
  3406. back: {
  3407. height: math.unit(2, "meter"),
  3408. weight: math.unit(75, "lb"),
  3409. name: "Back",
  3410. image: {
  3411. source: "./media/characters/napalm/back.svg"
  3412. }
  3413. }
  3414. },
  3415. [
  3416. {
  3417. name: "Standard",
  3418. height: math.unit(55, "feet"),
  3419. default: true
  3420. }
  3421. ]
  3422. ))
  3423. characterMakers.push(() => makeCharacter(
  3424. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3425. {
  3426. front: {
  3427. height: math.unit(7 + 5 / 6, "feet"),
  3428. weight: math.unit(325, "lb"),
  3429. name: "Front",
  3430. image: {
  3431. source: "./media/characters/asana/front.svg",
  3432. extra: 1133 / 1060,
  3433. bottom: 15.2 / 1148.6
  3434. }
  3435. },
  3436. back: {
  3437. height: math.unit(7 + 5 / 6, "feet"),
  3438. weight: math.unit(325, "lb"),
  3439. name: "Back",
  3440. image: {
  3441. source: "./media/characters/asana/back.svg",
  3442. extra: 1114 / 1043,
  3443. bottom: 5 / 1120
  3444. }
  3445. },
  3446. dressedDark: {
  3447. height: math.unit(7 + 5 / 6, "feet"),
  3448. weight: math.unit(325, "lb"),
  3449. name: "Dressed (Dark)",
  3450. image: {
  3451. source: "./media/characters/asana/dressed-dark.svg",
  3452. extra: 1133 / 1060,
  3453. bottom: 15.2 / 1148.6
  3454. }
  3455. },
  3456. dressedLight: {
  3457. height: math.unit(7 + 5 / 6, "feet"),
  3458. weight: math.unit(325, "lb"),
  3459. name: "Dressed (Light)",
  3460. image: {
  3461. source: "./media/characters/asana/dressed-light.svg",
  3462. extra: 1133 / 1060,
  3463. bottom: 15.2 / 1148.6
  3464. }
  3465. },
  3466. },
  3467. [
  3468. {
  3469. name: "Standard",
  3470. height: math.unit(7 + 5 / 6, "feet"),
  3471. default: true
  3472. },
  3473. {
  3474. name: "Large",
  3475. height: math.unit(10, "meters")
  3476. },
  3477. {
  3478. name: "Macro",
  3479. height: math.unit(2500, "meters")
  3480. },
  3481. {
  3482. name: "Megamacro",
  3483. height: math.unit(5e6, "meters")
  3484. },
  3485. {
  3486. name: "Examacro",
  3487. height: math.unit(5e12, "lightyears")
  3488. },
  3489. {
  3490. name: "Max Size",
  3491. height: math.unit(1e31, "lightyears")
  3492. }
  3493. ]
  3494. ))
  3495. characterMakers.push(() => makeCharacter(
  3496. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3497. {
  3498. front: {
  3499. height: math.unit(2, "meter"),
  3500. weight: math.unit(60, "kg"),
  3501. name: "Front",
  3502. image: {
  3503. source: "./media/characters/ebony/front.svg",
  3504. bottom: 0.03,
  3505. extra: 1045 / 810 + 0.03
  3506. }
  3507. },
  3508. side: {
  3509. height: math.unit(2, "meter"),
  3510. weight: math.unit(60, "kg"),
  3511. name: "Side",
  3512. image: {
  3513. source: "./media/characters/ebony/side.svg",
  3514. bottom: 0.03,
  3515. extra: 1045 / 810 + 0.03
  3516. }
  3517. },
  3518. back: {
  3519. height: math.unit(2, "meter"),
  3520. weight: math.unit(60, "kg"),
  3521. name: "Back",
  3522. image: {
  3523. source: "./media/characters/ebony/back.svg",
  3524. bottom: 0.01,
  3525. extra: 1045 / 810 + 0.01
  3526. }
  3527. },
  3528. },
  3529. [
  3530. // TODO check why I did this lol
  3531. {
  3532. name: "Standard",
  3533. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3534. default: true
  3535. },
  3536. {
  3537. name: "Macro",
  3538. height: math.unit(200, "feet")
  3539. },
  3540. {
  3541. name: "Gigamacro",
  3542. height: math.unit(13000, "km")
  3543. }
  3544. ]
  3545. ))
  3546. characterMakers.push(() => makeCharacter(
  3547. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3548. {
  3549. front: {
  3550. height: math.unit(6, "feet"),
  3551. weight: math.unit(175, "lb"),
  3552. name: "Front",
  3553. image: {
  3554. source: "./media/characters/mountain/front.svg",
  3555. extra: 972 / 955,
  3556. bottom: 64 / 1036.6
  3557. }
  3558. },
  3559. back: {
  3560. height: math.unit(6, "feet"),
  3561. weight: math.unit(175, "lb"),
  3562. name: "Back",
  3563. image: {
  3564. source: "./media/characters/mountain/back.svg",
  3565. extra: 970 / 950,
  3566. bottom: 28.25 / 999
  3567. }
  3568. },
  3569. },
  3570. [
  3571. {
  3572. name: "Large",
  3573. height: math.unit(20, "meters")
  3574. },
  3575. {
  3576. name: "Macro",
  3577. height: math.unit(300, "meters")
  3578. },
  3579. {
  3580. name: "Gigamacro",
  3581. height: math.unit(10000, "km"),
  3582. default: true
  3583. },
  3584. {
  3585. name: "Examacro",
  3586. height: math.unit(10e9, "lightyears")
  3587. }
  3588. ]
  3589. ))
  3590. characterMakers.push(() => makeCharacter(
  3591. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3592. {
  3593. front: {
  3594. height: math.unit(8, "feet"),
  3595. weight: math.unit(500, "lb"),
  3596. name: "Front",
  3597. image: {
  3598. source: "./media/characters/rick/front.svg"
  3599. }
  3600. }
  3601. },
  3602. [
  3603. {
  3604. name: "Normal",
  3605. height: math.unit(8, "feet"),
  3606. default: true
  3607. },
  3608. {
  3609. name: "Macro",
  3610. height: math.unit(5, "km")
  3611. }
  3612. ]
  3613. ))
  3614. characterMakers.push(() => makeCharacter(
  3615. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3616. {
  3617. front: {
  3618. height: math.unit(8, "feet"),
  3619. weight: math.unit(120, "lb"),
  3620. name: "Front",
  3621. image: {
  3622. source: "./media/characters/ona/front.svg"
  3623. }
  3624. },
  3625. frontAlt: {
  3626. height: math.unit(8, "feet"),
  3627. weight: math.unit(120, "lb"),
  3628. name: "Front (Alt)",
  3629. image: {
  3630. source: "./media/characters/ona/front-alt.svg"
  3631. }
  3632. },
  3633. back: {
  3634. height: math.unit(8, "feet"),
  3635. weight: math.unit(120, "lb"),
  3636. name: "Back",
  3637. image: {
  3638. source: "./media/characters/ona/back.svg"
  3639. }
  3640. },
  3641. foot: {
  3642. height: math.unit(1.1, "feet"),
  3643. name: "Foot",
  3644. image: {
  3645. source: "./media/characters/ona/foot.svg"
  3646. }
  3647. }
  3648. },
  3649. [
  3650. {
  3651. name: "Megamacro",
  3652. height: math.unit(70, "km"),
  3653. default: true
  3654. },
  3655. {
  3656. name: "Gigamacro",
  3657. height: math.unit(681818, "miles")
  3658. },
  3659. {
  3660. name: "Examacro",
  3661. height: math.unit(3800000, "lightyears")
  3662. },
  3663. ]
  3664. ))
  3665. characterMakers.push(() => makeCharacter(
  3666. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3667. {
  3668. front: {
  3669. height: math.unit(12, "feet"),
  3670. weight: math.unit(3000, "lb"),
  3671. name: "Front",
  3672. image: {
  3673. source: "./media/characters/mech/front.svg",
  3674. extra: 2900 / 2770,
  3675. bottom: 110 / 3010
  3676. }
  3677. },
  3678. back: {
  3679. height: math.unit(12, "feet"),
  3680. weight: math.unit(3000, "lb"),
  3681. name: "Back",
  3682. image: {
  3683. source: "./media/characters/mech/back.svg",
  3684. extra: 3011 / 2890,
  3685. bottom: 94 / 3105
  3686. }
  3687. },
  3688. maw: {
  3689. height: math.unit(3.07, "feet"),
  3690. name: "Maw",
  3691. image: {
  3692. source: "./media/characters/mech/maw.svg"
  3693. }
  3694. },
  3695. head: {
  3696. height: math.unit(2.82, "feet"),
  3697. name: "Head",
  3698. image: {
  3699. source: "./media/characters/mech/head.svg"
  3700. }
  3701. },
  3702. dick: {
  3703. height: math.unit(1.43, "feet"),
  3704. name: "Dick",
  3705. image: {
  3706. source: "./media/characters/mech/dick.svg"
  3707. }
  3708. },
  3709. },
  3710. [
  3711. {
  3712. name: "Normal",
  3713. height: math.unit(12, "feet")
  3714. },
  3715. {
  3716. name: "Macro",
  3717. height: math.unit(300, "feet"),
  3718. default: true
  3719. },
  3720. {
  3721. name: "Macro+",
  3722. height: math.unit(1500, "feet")
  3723. },
  3724. ]
  3725. ))
  3726. characterMakers.push(() => makeCharacter(
  3727. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3728. {
  3729. front: {
  3730. height: math.unit(1.3, "meter"),
  3731. weight: math.unit(30, "kg"),
  3732. name: "Front",
  3733. image: {
  3734. source: "./media/characters/gregory/front.svg",
  3735. }
  3736. }
  3737. },
  3738. [
  3739. {
  3740. name: "Normal",
  3741. height: math.unit(1.3, "meter"),
  3742. default: true
  3743. },
  3744. {
  3745. name: "Macro",
  3746. height: math.unit(20, "meter")
  3747. }
  3748. ]
  3749. ))
  3750. characterMakers.push(() => makeCharacter(
  3751. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3752. {
  3753. front: {
  3754. height: math.unit(2.8, "meter"),
  3755. weight: math.unit(200, "kg"),
  3756. name: "Front",
  3757. image: {
  3758. source: "./media/characters/elory/front.svg",
  3759. }
  3760. }
  3761. },
  3762. [
  3763. {
  3764. name: "Normal",
  3765. height: math.unit(2.8, "meter"),
  3766. default: true
  3767. },
  3768. {
  3769. name: "Macro",
  3770. height: math.unit(38, "meter")
  3771. }
  3772. ]
  3773. ))
  3774. characterMakers.push(() => makeCharacter(
  3775. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3776. {
  3777. front: {
  3778. height: math.unit(470, "feet"),
  3779. weight: math.unit(924, "tons"),
  3780. name: "Front",
  3781. image: {
  3782. source: "./media/characters/angelpatamon/front.svg",
  3783. }
  3784. }
  3785. },
  3786. [
  3787. {
  3788. name: "Normal",
  3789. height: math.unit(470, "feet"),
  3790. default: true
  3791. },
  3792. {
  3793. name: "Deity Size I",
  3794. height: math.unit(28651.2, "km")
  3795. },
  3796. {
  3797. name: "Deity Size II",
  3798. height: math.unit(171907.2, "km")
  3799. }
  3800. ]
  3801. ))
  3802. characterMakers.push(() => makeCharacter(
  3803. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3804. {
  3805. side: {
  3806. height: math.unit(7.2, "meter"),
  3807. weight: math.unit(8.2, "tons"),
  3808. name: "Side",
  3809. image: {
  3810. source: "./media/characters/cryae/side.svg",
  3811. extra: 3500 / 1500
  3812. }
  3813. }
  3814. },
  3815. [
  3816. {
  3817. name: "Normal",
  3818. height: math.unit(7.2, "meter"),
  3819. default: true
  3820. }
  3821. ]
  3822. ))
  3823. characterMakers.push(() => makeCharacter(
  3824. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3825. {
  3826. front: {
  3827. height: math.unit(6, "feet"),
  3828. weight: math.unit(175, "lb"),
  3829. name: "Front",
  3830. image: {
  3831. source: "./media/characters/xera/front.svg",
  3832. extra: 2377 / 1972,
  3833. bottom: 75.5 / 2452
  3834. }
  3835. },
  3836. side: {
  3837. height: math.unit(6, "feet"),
  3838. weight: math.unit(175, "lb"),
  3839. name: "Side",
  3840. image: {
  3841. source: "./media/characters/xera/side.svg",
  3842. extra: 2345 / 2019,
  3843. bottom: 39.7 / 2384
  3844. }
  3845. },
  3846. back: {
  3847. height: math.unit(6, "feet"),
  3848. weight: math.unit(175, "lb"),
  3849. name: "Back",
  3850. image: {
  3851. source: "./media/characters/xera/back.svg",
  3852. extra: 2095 / 1984,
  3853. bottom: 67 / 2166
  3854. }
  3855. },
  3856. },
  3857. [
  3858. {
  3859. name: "Small",
  3860. height: math.unit(10, "feet")
  3861. },
  3862. {
  3863. name: "Macro",
  3864. height: math.unit(500, "meters"),
  3865. default: true
  3866. },
  3867. {
  3868. name: "Macro+",
  3869. height: math.unit(10, "km")
  3870. },
  3871. {
  3872. name: "Gigamacro",
  3873. height: math.unit(25000, "km")
  3874. },
  3875. {
  3876. name: "Teramacro",
  3877. height: math.unit(3e6, "km")
  3878. }
  3879. ]
  3880. ))
  3881. characterMakers.push(() => makeCharacter(
  3882. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3883. {
  3884. front: {
  3885. height: math.unit(6, "feet"),
  3886. weight: math.unit(175, "lb"),
  3887. name: "Front",
  3888. image: {
  3889. source: "./media/characters/nebula/front.svg",
  3890. extra: 2566 / 2362,
  3891. bottom: 81 / 2644
  3892. }
  3893. }
  3894. },
  3895. [
  3896. {
  3897. name: "Small",
  3898. height: math.unit(4.5, "meters")
  3899. },
  3900. {
  3901. name: "Macro",
  3902. height: math.unit(1500, "meters"),
  3903. default: true
  3904. },
  3905. {
  3906. name: "Megamacro",
  3907. height: math.unit(150, "km")
  3908. },
  3909. {
  3910. name: "Gigamacro",
  3911. height: math.unit(27000, "km")
  3912. }
  3913. ]
  3914. ))
  3915. characterMakers.push(() => makeCharacter(
  3916. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3917. {
  3918. front: {
  3919. height: math.unit(6, "feet"),
  3920. weight: math.unit(225, "lb"),
  3921. name: "Front",
  3922. image: {
  3923. source: "./media/characters/abysgar/front.svg"
  3924. }
  3925. }
  3926. },
  3927. [
  3928. {
  3929. name: "Small",
  3930. height: math.unit(4.5, "meters")
  3931. },
  3932. {
  3933. name: "Macro",
  3934. height: math.unit(1250, "meters"),
  3935. default: true
  3936. },
  3937. {
  3938. name: "Megamacro",
  3939. height: math.unit(125, "km")
  3940. },
  3941. {
  3942. name: "Gigamacro",
  3943. height: math.unit(26000, "km")
  3944. }
  3945. ]
  3946. ))
  3947. characterMakers.push(() => makeCharacter(
  3948. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3949. {
  3950. front: {
  3951. height: math.unit(6, "feet"),
  3952. weight: math.unit(180, "lb"),
  3953. name: "Front",
  3954. image: {
  3955. source: "./media/characters/yakuz/front.svg"
  3956. }
  3957. }
  3958. },
  3959. [
  3960. {
  3961. name: "Small",
  3962. height: math.unit(5, "meters")
  3963. },
  3964. {
  3965. name: "Macro",
  3966. height: math.unit(1500, "meters"),
  3967. default: true
  3968. },
  3969. {
  3970. name: "Megamacro",
  3971. height: math.unit(200, "km")
  3972. },
  3973. {
  3974. name: "Gigamacro",
  3975. height: math.unit(100000, "km")
  3976. }
  3977. ]
  3978. ))
  3979. characterMakers.push(() => makeCharacter(
  3980. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3981. {
  3982. front: {
  3983. height: math.unit(6, "feet"),
  3984. weight: math.unit(175, "lb"),
  3985. name: "Front",
  3986. image: {
  3987. source: "./media/characters/mirova/front.svg",
  3988. extra: 3334 / 3071,
  3989. bottom: 42 / 3375.6
  3990. }
  3991. }
  3992. },
  3993. [
  3994. {
  3995. name: "Small",
  3996. height: math.unit(5, "meters")
  3997. },
  3998. {
  3999. name: "Macro",
  4000. height: math.unit(900, "meters"),
  4001. default: true
  4002. },
  4003. {
  4004. name: "Megamacro",
  4005. height: math.unit(135, "km")
  4006. },
  4007. {
  4008. name: "Gigamacro",
  4009. height: math.unit(20000, "km")
  4010. }
  4011. ]
  4012. ))
  4013. characterMakers.push(() => makeCharacter(
  4014. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4015. {
  4016. side: {
  4017. height: math.unit(28.35, "feet"),
  4018. weight: math.unit(99.75, "tons"),
  4019. name: "Side",
  4020. image: {
  4021. source: "./media/characters/asana-mech/side.svg",
  4022. extra: 923 / 699,
  4023. bottom: 50 / 975
  4024. }
  4025. },
  4026. chaingun: {
  4027. height: math.unit(7, "feet"),
  4028. weight: math.unit(2400, "lb"),
  4029. name: "Chaingun",
  4030. image: {
  4031. source: "./media/characters/asana-mech/chaingun.svg"
  4032. }
  4033. },
  4034. laser: {
  4035. height: math.unit(7.12, "feet"),
  4036. weight: math.unit(2000, "lb"),
  4037. name: "Laser",
  4038. image: {
  4039. source: "./media/characters/asana-mech/laser.svg"
  4040. }
  4041. },
  4042. },
  4043. [
  4044. {
  4045. name: "Normal",
  4046. height: math.unit(28.35, "feet"),
  4047. default: true
  4048. },
  4049. {
  4050. name: "Macro",
  4051. height: math.unit(2500, "feet")
  4052. },
  4053. {
  4054. name: "Megamacro",
  4055. height: math.unit(25, "miles")
  4056. },
  4057. {
  4058. name: "Examacro",
  4059. height: math.unit(6e8, "lightyears")
  4060. },
  4061. ]
  4062. ))
  4063. characterMakers.push(() => makeCharacter(
  4064. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4065. {
  4066. front: {
  4067. height: math.unit(5, "meters"),
  4068. weight: math.unit(1000, "kg"),
  4069. name: "Front",
  4070. image: {
  4071. source: "./media/characters/asche/front.svg",
  4072. extra: 1258 / 1190,
  4073. bottom: 47 / 1305
  4074. }
  4075. },
  4076. frontUnderwear: {
  4077. height: math.unit(5, "meters"),
  4078. weight: math.unit(1000, "kg"),
  4079. name: "Front (Underwear)",
  4080. image: {
  4081. source: "./media/characters/asche/front-underwear.svg",
  4082. extra: 1258 / 1190,
  4083. bottom: 47 / 1305
  4084. }
  4085. },
  4086. frontDressed: {
  4087. height: math.unit(5, "meters"),
  4088. weight: math.unit(1000, "kg"),
  4089. name: "Front (Dressed)",
  4090. image: {
  4091. source: "./media/characters/asche/front-dressed.svg",
  4092. extra: 1258 / 1190,
  4093. bottom: 47 / 1305
  4094. }
  4095. },
  4096. frontArmor: {
  4097. height: math.unit(5, "meters"),
  4098. weight: math.unit(1000, "kg"),
  4099. name: "Front (Armored)",
  4100. image: {
  4101. source: "./media/characters/asche/front-armored.svg",
  4102. extra: 1374 / 1308,
  4103. bottom: 23 / 1397
  4104. }
  4105. },
  4106. mp724: {
  4107. height: math.unit(0.96, "meters"),
  4108. weight: math.unit(38, "kg"),
  4109. name: "H&K MP724",
  4110. image: {
  4111. source: "./media/characters/asche/h&k-mp724.svg"
  4112. }
  4113. },
  4114. side: {
  4115. height: math.unit(5, "meters"),
  4116. weight: math.unit(1000, "kg"),
  4117. name: "Side",
  4118. image: {
  4119. source: "./media/characters/asche/side.svg",
  4120. extra: 1717 / 1609,
  4121. bottom: 0.005
  4122. }
  4123. },
  4124. back: {
  4125. height: math.unit(5, "meters"),
  4126. weight: math.unit(1000, "kg"),
  4127. name: "Back",
  4128. image: {
  4129. source: "./media/characters/asche/back.svg",
  4130. extra: 1570 / 1501
  4131. }
  4132. },
  4133. },
  4134. [
  4135. {
  4136. name: "DEFCON 5",
  4137. height: math.unit(5, "meters")
  4138. },
  4139. {
  4140. name: "DEFCON 4",
  4141. height: math.unit(500, "meters"),
  4142. default: true
  4143. },
  4144. {
  4145. name: "DEFCON 3",
  4146. height: math.unit(5, "km")
  4147. },
  4148. {
  4149. name: "DEFCON 2",
  4150. height: math.unit(500, "km")
  4151. },
  4152. {
  4153. name: "DEFCON 1",
  4154. height: math.unit(500000, "km")
  4155. },
  4156. {
  4157. name: "DEFCON 0",
  4158. height: math.unit(3, "gigaparsecs")
  4159. },
  4160. ]
  4161. ))
  4162. characterMakers.push(() => makeCharacter(
  4163. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4164. {
  4165. front: {
  4166. height: math.unit(2, "meters"),
  4167. weight: math.unit(76, "kg"),
  4168. name: "Front",
  4169. image: {
  4170. source: "./media/characters/gale/front.svg"
  4171. }
  4172. },
  4173. frontAlt1: {
  4174. height: math.unit(2, "meters"),
  4175. weight: math.unit(76, "kg"),
  4176. name: "Front (Alt 1)",
  4177. image: {
  4178. source: "./media/characters/gale/front-alt-1.svg"
  4179. }
  4180. },
  4181. frontAlt2: {
  4182. height: math.unit(2, "meters"),
  4183. weight: math.unit(76, "kg"),
  4184. name: "Front (Alt 2)",
  4185. image: {
  4186. source: "./media/characters/gale/front-alt-2.svg"
  4187. }
  4188. },
  4189. },
  4190. [
  4191. {
  4192. name: "Normal",
  4193. height: math.unit(7, "feet")
  4194. },
  4195. {
  4196. name: "Macro",
  4197. height: math.unit(150, "feet"),
  4198. default: true
  4199. },
  4200. {
  4201. name: "Macro+",
  4202. height: math.unit(300, "feet")
  4203. },
  4204. ]
  4205. ))
  4206. characterMakers.push(() => makeCharacter(
  4207. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4208. {
  4209. front: {
  4210. height: math.unit(2, "meters"),
  4211. weight: math.unit(76, "kg"),
  4212. name: "Front",
  4213. image: {
  4214. source: "./media/characters/draylen/front.svg"
  4215. }
  4216. }
  4217. },
  4218. [
  4219. {
  4220. name: "Macro",
  4221. height: math.unit(150, "feet"),
  4222. default: true
  4223. }
  4224. ]
  4225. ))
  4226. characterMakers.push(() => makeCharacter(
  4227. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4228. {
  4229. front: {
  4230. height: math.unit(7 + 9 / 12, "feet"),
  4231. weight: math.unit(379, "lbs"),
  4232. name: "Front",
  4233. image: {
  4234. source: "./media/characters/chez/front.svg"
  4235. }
  4236. },
  4237. side: {
  4238. height: math.unit(7 + 9 / 12, "feet"),
  4239. weight: math.unit(379, "lbs"),
  4240. name: "Side",
  4241. image: {
  4242. source: "./media/characters/chez/side.svg"
  4243. }
  4244. }
  4245. },
  4246. [
  4247. {
  4248. name: "Normal",
  4249. height: math.unit(7 + 9 / 12, "feet"),
  4250. default: true
  4251. },
  4252. {
  4253. name: "God King",
  4254. height: math.unit(9750000, "meters")
  4255. }
  4256. ]
  4257. ))
  4258. characterMakers.push(() => makeCharacter(
  4259. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4260. {
  4261. front: {
  4262. height: math.unit(6, "feet"),
  4263. weight: math.unit(275, "lbs"),
  4264. name: "Front",
  4265. image: {
  4266. source: "./media/characters/kaylum/front.svg",
  4267. bottom: 0.01,
  4268. extra: 1166 / 1031
  4269. }
  4270. },
  4271. frontWingless: {
  4272. height: math.unit(6, "feet"),
  4273. weight: math.unit(275, "lbs"),
  4274. name: "Front (Wingless)",
  4275. image: {
  4276. source: "./media/characters/kaylum/front-wingless.svg",
  4277. bottom: 0.01,
  4278. extra: 1117 / 1031
  4279. }
  4280. }
  4281. },
  4282. [
  4283. {
  4284. name: "Normal",
  4285. height: math.unit(3.05, "meters")
  4286. },
  4287. {
  4288. name: "Master",
  4289. height: math.unit(5.5, "meters")
  4290. },
  4291. {
  4292. name: "Rampage",
  4293. height: math.unit(19, "meters")
  4294. },
  4295. {
  4296. name: "Macro Lite",
  4297. height: math.unit(37, "meters")
  4298. },
  4299. {
  4300. name: "Hyper Predator",
  4301. height: math.unit(61, "meters")
  4302. },
  4303. {
  4304. name: "Macro",
  4305. height: math.unit(138, "meters"),
  4306. default: true
  4307. }
  4308. ]
  4309. ))
  4310. characterMakers.push(() => makeCharacter(
  4311. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4312. {
  4313. front: {
  4314. height: math.unit(6, "feet"),
  4315. weight: math.unit(150, "lbs"),
  4316. name: "Front",
  4317. image: {
  4318. source: "./media/characters/geta/front.svg"
  4319. }
  4320. }
  4321. },
  4322. [
  4323. {
  4324. name: "Micro",
  4325. height: math.unit(3, "inches"),
  4326. default: true
  4327. },
  4328. {
  4329. name: "Normal",
  4330. height: math.unit(5 + 5 / 12, "feet")
  4331. }
  4332. ]
  4333. ))
  4334. characterMakers.push(() => makeCharacter(
  4335. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4336. {
  4337. front: {
  4338. height: math.unit(6, "feet"),
  4339. weight: math.unit(300, "lbs"),
  4340. name: "Front",
  4341. image: {
  4342. source: "./media/characters/tyrnn/front.svg"
  4343. }
  4344. }
  4345. },
  4346. [
  4347. {
  4348. name: "Main Height",
  4349. height: math.unit(355, "feet"),
  4350. default: true
  4351. },
  4352. {
  4353. name: "Fave. Height",
  4354. height: math.unit(2400, "feet")
  4355. }
  4356. ]
  4357. ))
  4358. characterMakers.push(() => makeCharacter(
  4359. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4360. {
  4361. front: {
  4362. height: math.unit(6, "feet"),
  4363. weight: math.unit(300, "lbs"),
  4364. name: "Front",
  4365. image: {
  4366. source: "./media/characters/appledectomy/front.svg"
  4367. }
  4368. }
  4369. },
  4370. [
  4371. {
  4372. name: "Macro",
  4373. height: math.unit(2500, "feet")
  4374. },
  4375. {
  4376. name: "Megamacro",
  4377. height: math.unit(50, "miles"),
  4378. default: true
  4379. },
  4380. {
  4381. name: "Gigamacro",
  4382. height: math.unit(5000, "miles")
  4383. },
  4384. {
  4385. name: "Teramacro",
  4386. height: math.unit(250000, "miles")
  4387. },
  4388. ]
  4389. ))
  4390. characterMakers.push(() => makeCharacter(
  4391. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4392. {
  4393. front: {
  4394. height: math.unit(6, "feet"),
  4395. weight: math.unit(200, "lbs"),
  4396. name: "Front",
  4397. image: {
  4398. source: "./media/characters/vulpes/front.svg",
  4399. extra: 573 / 543,
  4400. bottom: 0.033
  4401. }
  4402. },
  4403. side: {
  4404. height: math.unit(6, "feet"),
  4405. weight: math.unit(200, "lbs"),
  4406. name: "Side",
  4407. image: {
  4408. source: "./media/characters/vulpes/side.svg",
  4409. extra: 577 / 549,
  4410. bottom: 11 / 588
  4411. }
  4412. },
  4413. back: {
  4414. height: math.unit(6, "feet"),
  4415. weight: math.unit(200, "lbs"),
  4416. name: "Back",
  4417. image: {
  4418. source: "./media/characters/vulpes/back.svg",
  4419. extra: 573 / 549,
  4420. bottom: 20 / 593
  4421. }
  4422. },
  4423. feet: {
  4424. height: math.unit(1.276, "feet"),
  4425. name: "Feet",
  4426. image: {
  4427. source: "./media/characters/vulpes/feet.svg"
  4428. }
  4429. },
  4430. maw: {
  4431. height: math.unit(1.18, "feet"),
  4432. name: "Maw",
  4433. image: {
  4434. source: "./media/characters/vulpes/maw.svg"
  4435. }
  4436. },
  4437. },
  4438. [
  4439. {
  4440. name: "Micro",
  4441. height: math.unit(2, "inches")
  4442. },
  4443. {
  4444. name: "Normal",
  4445. height: math.unit(6.3, "feet")
  4446. },
  4447. {
  4448. name: "Macro",
  4449. height: math.unit(850, "feet")
  4450. },
  4451. {
  4452. name: "Megamacro",
  4453. height: math.unit(7500, "feet"),
  4454. default: true
  4455. },
  4456. {
  4457. name: "Gigamacro",
  4458. height: math.unit(570000, "miles")
  4459. }
  4460. ]
  4461. ))
  4462. characterMakers.push(() => makeCharacter(
  4463. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4464. {
  4465. front: {
  4466. height: math.unit(6, "feet"),
  4467. weight: math.unit(210, "lbs"),
  4468. name: "Front",
  4469. image: {
  4470. source: "./media/characters/rain-fallen/front.svg"
  4471. }
  4472. },
  4473. side: {
  4474. height: math.unit(6, "feet"),
  4475. weight: math.unit(210, "lbs"),
  4476. name: "Side",
  4477. image: {
  4478. source: "./media/characters/rain-fallen/side.svg"
  4479. }
  4480. },
  4481. back: {
  4482. height: math.unit(6, "feet"),
  4483. weight: math.unit(210, "lbs"),
  4484. name: "Back",
  4485. image: {
  4486. source: "./media/characters/rain-fallen/back.svg"
  4487. }
  4488. },
  4489. feral: {
  4490. height: math.unit(9, "feet"),
  4491. weight: math.unit(700, "lbs"),
  4492. name: "Feral",
  4493. image: {
  4494. source: "./media/characters/rain-fallen/feral.svg"
  4495. }
  4496. },
  4497. },
  4498. [
  4499. {
  4500. name: "Meddling with Mortals",
  4501. height: math.unit(8 + 8/12, "feet")
  4502. },
  4503. {
  4504. name: "Normal",
  4505. height: math.unit(5, "meter")
  4506. },
  4507. {
  4508. name: "Macro",
  4509. height: math.unit(150, "meter"),
  4510. default: true
  4511. },
  4512. {
  4513. name: "Megamacro",
  4514. height: math.unit(278e6, "meter")
  4515. },
  4516. {
  4517. name: "Gigamacro",
  4518. height: math.unit(2e9, "meter")
  4519. },
  4520. {
  4521. name: "Teramacro",
  4522. height: math.unit(8e12, "meter")
  4523. },
  4524. {
  4525. name: "Devourer",
  4526. height: math.unit(14, "zettameters")
  4527. },
  4528. {
  4529. name: "Scarlet King",
  4530. height: math.unit(18, "yottameters")
  4531. },
  4532. {
  4533. name: "Void",
  4534. height: math.unit(1e88, "yottameters")
  4535. }
  4536. ]
  4537. ))
  4538. characterMakers.push(() => makeCharacter(
  4539. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4540. {
  4541. standing: {
  4542. height: math.unit(6, "feet"),
  4543. weight: math.unit(180, "lbs"),
  4544. name: "Standing",
  4545. image: {
  4546. source: "./media/characters/zaakira/standing.svg",
  4547. extra: 1599/1504,
  4548. bottom: 39/1638
  4549. }
  4550. },
  4551. laying: {
  4552. height: math.unit(3, "feet"),
  4553. weight: math.unit(180, "lbs"),
  4554. name: "Laying",
  4555. image: {
  4556. source: "./media/characters/zaakira/laying.svg"
  4557. }
  4558. },
  4559. },
  4560. [
  4561. {
  4562. name: "Normal",
  4563. height: math.unit(12, "feet")
  4564. },
  4565. {
  4566. name: "Macro",
  4567. height: math.unit(279, "feet"),
  4568. default: true
  4569. }
  4570. ]
  4571. ))
  4572. characterMakers.push(() => makeCharacter(
  4573. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4574. {
  4575. femSfw: {
  4576. height: math.unit(8, "feet"),
  4577. weight: math.unit(350, "lb"),
  4578. name: "Fem",
  4579. image: {
  4580. source: "./media/characters/sigvald/fem-sfw.svg",
  4581. extra: 182 / 164,
  4582. bottom: 8.7 / 190.5
  4583. }
  4584. },
  4585. femNsfw: {
  4586. height: math.unit(8, "feet"),
  4587. weight: math.unit(350, "lb"),
  4588. name: "Fem (NSFW)",
  4589. image: {
  4590. source: "./media/characters/sigvald/fem-nsfw.svg",
  4591. extra: 182 / 164,
  4592. bottom: 8.7 / 190.5
  4593. }
  4594. },
  4595. maleNsfw: {
  4596. height: math.unit(8, "feet"),
  4597. weight: math.unit(350, "lb"),
  4598. name: "Male (NSFW)",
  4599. image: {
  4600. source: "./media/characters/sigvald/male-nsfw.svg",
  4601. extra: 182 / 164,
  4602. bottom: 8.7 / 190.5
  4603. }
  4604. },
  4605. hermNsfw: {
  4606. height: math.unit(8, "feet"),
  4607. weight: math.unit(350, "lb"),
  4608. name: "Herm (NSFW)",
  4609. image: {
  4610. source: "./media/characters/sigvald/herm-nsfw.svg",
  4611. extra: 182 / 164,
  4612. bottom: 8.7 / 190.5
  4613. }
  4614. },
  4615. dick: {
  4616. height: math.unit(2.36, "feet"),
  4617. name: "Dick",
  4618. image: {
  4619. source: "./media/characters/sigvald/dick.svg"
  4620. }
  4621. },
  4622. eye: {
  4623. height: math.unit(0.31, "feet"),
  4624. name: "Eye",
  4625. image: {
  4626. source: "./media/characters/sigvald/eye.svg"
  4627. }
  4628. },
  4629. mouth: {
  4630. height: math.unit(0.92, "feet"),
  4631. name: "Mouth",
  4632. image: {
  4633. source: "./media/characters/sigvald/mouth.svg"
  4634. }
  4635. },
  4636. paws: {
  4637. height: math.unit(2.2, "feet"),
  4638. name: "Paws",
  4639. image: {
  4640. source: "./media/characters/sigvald/paws.svg"
  4641. }
  4642. }
  4643. },
  4644. [
  4645. {
  4646. name: "Normal",
  4647. height: math.unit(8, "feet")
  4648. },
  4649. {
  4650. name: "Large",
  4651. height: math.unit(12, "feet")
  4652. },
  4653. {
  4654. name: "Larger",
  4655. height: math.unit(20, "feet")
  4656. },
  4657. {
  4658. name: "Macro",
  4659. height: math.unit(150, "feet")
  4660. },
  4661. {
  4662. name: "Macro+",
  4663. height: math.unit(200, "feet"),
  4664. default: true
  4665. },
  4666. ]
  4667. ))
  4668. characterMakers.push(() => makeCharacter(
  4669. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4670. {
  4671. side: {
  4672. height: math.unit(12, "feet"),
  4673. weight: math.unit(2000, "kg"),
  4674. name: "Side",
  4675. image: {
  4676. source: "./media/characters/scott/side.svg",
  4677. extra: 754 / 724,
  4678. bottom: 0.069
  4679. }
  4680. },
  4681. upright: {
  4682. height: math.unit(12, "feet"),
  4683. weight: math.unit(2000, "kg"),
  4684. name: "Upright",
  4685. image: {
  4686. source: "./media/characters/scott/upright.svg",
  4687. extra: 3881 / 3722,
  4688. bottom: 0.05
  4689. }
  4690. },
  4691. },
  4692. [
  4693. {
  4694. name: "Normal",
  4695. height: math.unit(12, "feet"),
  4696. default: true
  4697. },
  4698. ]
  4699. ))
  4700. characterMakers.push(() => makeCharacter(
  4701. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4702. {
  4703. side: {
  4704. height: math.unit(8, "meters"),
  4705. weight: math.unit(84755, "lbs"),
  4706. name: "Side",
  4707. image: {
  4708. source: "./media/characters/tobias/side.svg",
  4709. extra: 1474 / 1096,
  4710. bottom: 38.9 / 1513.1235
  4711. }
  4712. },
  4713. },
  4714. [
  4715. {
  4716. name: "Normal",
  4717. height: math.unit(8, "meters"),
  4718. default: true
  4719. },
  4720. ]
  4721. ))
  4722. characterMakers.push(() => makeCharacter(
  4723. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4724. {
  4725. front: {
  4726. height: math.unit(5.5, "feet"),
  4727. weight: math.unit(400, "lbs"),
  4728. name: "Front",
  4729. image: {
  4730. source: "./media/characters/kieran/front.svg",
  4731. extra: 2694 / 2364,
  4732. bottom: 217 / 2908
  4733. }
  4734. },
  4735. side: {
  4736. height: math.unit(5.5, "feet"),
  4737. weight: math.unit(400, "lbs"),
  4738. name: "Side",
  4739. image: {
  4740. source: "./media/characters/kieran/side.svg",
  4741. extra: 875 / 777,
  4742. bottom: 84.6 / 959
  4743. }
  4744. },
  4745. },
  4746. [
  4747. {
  4748. name: "Normal",
  4749. height: math.unit(5.5, "feet"),
  4750. default: true
  4751. },
  4752. ]
  4753. ))
  4754. characterMakers.push(() => makeCharacter(
  4755. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4756. {
  4757. side: {
  4758. height: math.unit(2, "meters"),
  4759. weight: math.unit(70, "kg"),
  4760. name: "Side",
  4761. image: {
  4762. source: "./media/characters/sanya/side.svg",
  4763. bottom: 0.02,
  4764. extra: 1.02
  4765. }
  4766. },
  4767. },
  4768. [
  4769. {
  4770. name: "Small",
  4771. height: math.unit(2, "meters")
  4772. },
  4773. {
  4774. name: "Normal",
  4775. height: math.unit(3, "meters")
  4776. },
  4777. {
  4778. name: "Macro",
  4779. height: math.unit(16, "meters"),
  4780. default: true
  4781. },
  4782. ]
  4783. ))
  4784. characterMakers.push(() => makeCharacter(
  4785. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4786. {
  4787. front: {
  4788. height: math.unit(2, "meters"),
  4789. weight: math.unit(120, "kg"),
  4790. name: "Front",
  4791. image: {
  4792. source: "./media/characters/miranda/front.svg",
  4793. extra: 195 / 185,
  4794. bottom: 10.9 / 206.5
  4795. }
  4796. },
  4797. back: {
  4798. height: math.unit(2, "meters"),
  4799. weight: math.unit(120, "kg"),
  4800. name: "Back",
  4801. image: {
  4802. source: "./media/characters/miranda/back.svg",
  4803. extra: 201 / 193,
  4804. bottom: 2.3 / 203.7
  4805. }
  4806. },
  4807. },
  4808. [
  4809. {
  4810. name: "Normal",
  4811. height: math.unit(10, "feet"),
  4812. default: true
  4813. }
  4814. ]
  4815. ))
  4816. characterMakers.push(() => makeCharacter(
  4817. { name: "James", species: ["deer"], tags: ["anthro"] },
  4818. {
  4819. side: {
  4820. height: math.unit(2, "meters"),
  4821. weight: math.unit(100, "kg"),
  4822. name: "Front",
  4823. image: {
  4824. source: "./media/characters/james/front.svg",
  4825. extra: 10 / 8.5
  4826. }
  4827. },
  4828. },
  4829. [
  4830. {
  4831. name: "Normal",
  4832. height: math.unit(8.5, "feet"),
  4833. default: true
  4834. }
  4835. ]
  4836. ))
  4837. characterMakers.push(() => makeCharacter(
  4838. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4839. {
  4840. side: {
  4841. height: math.unit(9.5, "feet"),
  4842. weight: math.unit(2500, "lbs"),
  4843. name: "Side",
  4844. image: {
  4845. source: "./media/characters/heather/side.svg"
  4846. }
  4847. },
  4848. },
  4849. [
  4850. {
  4851. name: "Normal",
  4852. height: math.unit(9.5, "feet"),
  4853. default: true
  4854. }
  4855. ]
  4856. ))
  4857. characterMakers.push(() => makeCharacter(
  4858. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4859. {
  4860. side: {
  4861. height: math.unit(6.5, "feet"),
  4862. weight: math.unit(400, "lbs"),
  4863. name: "Side",
  4864. image: {
  4865. source: "./media/characters/lukas/side.svg",
  4866. extra: 7.25 / 6.5
  4867. }
  4868. },
  4869. },
  4870. [
  4871. {
  4872. name: "Normal",
  4873. height: math.unit(6.5, "feet"),
  4874. default: true
  4875. }
  4876. ]
  4877. ))
  4878. characterMakers.push(() => makeCharacter(
  4879. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4880. {
  4881. side: {
  4882. height: math.unit(5, "feet"),
  4883. weight: math.unit(3000, "lbs"),
  4884. name: "Side",
  4885. image: {
  4886. source: "./media/characters/louise/side.svg"
  4887. }
  4888. },
  4889. },
  4890. [
  4891. {
  4892. name: "Normal",
  4893. height: math.unit(5, "feet"),
  4894. default: true
  4895. }
  4896. ]
  4897. ))
  4898. characterMakers.push(() => makeCharacter(
  4899. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4900. {
  4901. side: {
  4902. height: math.unit(6, "feet"),
  4903. weight: math.unit(150, "lbs"),
  4904. name: "Side",
  4905. image: {
  4906. source: "./media/characters/ramona/side.svg"
  4907. }
  4908. },
  4909. },
  4910. [
  4911. {
  4912. name: "Normal",
  4913. height: math.unit(5.3, "meters"),
  4914. default: true
  4915. },
  4916. {
  4917. name: "Macro",
  4918. height: math.unit(20, "stories")
  4919. },
  4920. {
  4921. name: "Macro+",
  4922. height: math.unit(50, "stories")
  4923. },
  4924. ]
  4925. ))
  4926. characterMakers.push(() => makeCharacter(
  4927. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4928. {
  4929. standing: {
  4930. height: math.unit(5.75, "feet"),
  4931. weight: math.unit(160, "lbs"),
  4932. name: "Standing",
  4933. image: {
  4934. source: "./media/characters/deerpuff/standing.svg",
  4935. extra: 682 / 624
  4936. }
  4937. },
  4938. sitting: {
  4939. height: math.unit(5.75 / 1.79, "feet"),
  4940. weight: math.unit(160, "lbs"),
  4941. name: "Sitting",
  4942. image: {
  4943. source: "./media/characters/deerpuff/sitting.svg",
  4944. bottom: 44 / 400,
  4945. extra: 1
  4946. }
  4947. },
  4948. taurLaying: {
  4949. height: math.unit(6, "feet"),
  4950. weight: math.unit(400, "lbs"),
  4951. name: "Taur (Laying)",
  4952. image: {
  4953. source: "./media/characters/deerpuff/taur-laying.svg"
  4954. }
  4955. },
  4956. },
  4957. [
  4958. {
  4959. name: "Puffball",
  4960. height: math.unit(6, "inches")
  4961. },
  4962. {
  4963. name: "Normalpuff",
  4964. height: math.unit(5.75, "feet")
  4965. },
  4966. {
  4967. name: "Macropuff",
  4968. height: math.unit(1500, "feet"),
  4969. default: true
  4970. },
  4971. {
  4972. name: "Megapuff",
  4973. height: math.unit(500, "miles")
  4974. },
  4975. {
  4976. name: "Gigapuff",
  4977. height: math.unit(250000, "miles")
  4978. },
  4979. {
  4980. name: "Omegapuff",
  4981. height: math.unit(1000, "lightyears")
  4982. },
  4983. ]
  4984. ))
  4985. characterMakers.push(() => makeCharacter(
  4986. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4987. {
  4988. stomping: {
  4989. height: math.unit(6, "feet"),
  4990. weight: math.unit(170, "lbs"),
  4991. name: "Stomping",
  4992. image: {
  4993. source: "./media/characters/vivian/stomping.svg"
  4994. }
  4995. },
  4996. sitting: {
  4997. height: math.unit(6 / 1.75, "feet"),
  4998. weight: math.unit(170, "lbs"),
  4999. name: "Sitting",
  5000. image: {
  5001. source: "./media/characters/vivian/sitting.svg",
  5002. bottom: 1 / 6.4,
  5003. extra: 1,
  5004. }
  5005. },
  5006. },
  5007. [
  5008. {
  5009. name: "Normal",
  5010. height: math.unit(7, "feet"),
  5011. default: true
  5012. },
  5013. {
  5014. name: "Macro",
  5015. height: math.unit(10, "stories")
  5016. },
  5017. {
  5018. name: "Macro+",
  5019. height: math.unit(30, "stories")
  5020. },
  5021. {
  5022. name: "Megamacro",
  5023. height: math.unit(10, "miles")
  5024. },
  5025. {
  5026. name: "Megamacro+",
  5027. height: math.unit(2750000, "meters")
  5028. },
  5029. ]
  5030. ))
  5031. characterMakers.push(() => makeCharacter(
  5032. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5033. {
  5034. front: {
  5035. height: math.unit(6, "feet"),
  5036. weight: math.unit(160, "lbs"),
  5037. name: "Front",
  5038. image: {
  5039. source: "./media/characters/prince/front.svg",
  5040. extra: 3400 / 3000
  5041. }
  5042. },
  5043. jumping: {
  5044. height: math.unit(6, "feet"),
  5045. weight: math.unit(160, "lbs"),
  5046. name: "Jumping",
  5047. image: {
  5048. source: "./media/characters/prince/jump.svg",
  5049. extra: 2555 / 2134
  5050. }
  5051. },
  5052. },
  5053. [
  5054. {
  5055. name: "Normal",
  5056. height: math.unit(7.75, "feet"),
  5057. default: true
  5058. },
  5059. {
  5060. name: "Not cute",
  5061. height: math.unit(17, "feet")
  5062. },
  5063. {
  5064. name: "I said NOT",
  5065. height: math.unit(91, "feet")
  5066. },
  5067. {
  5068. name: "Please stop",
  5069. height: math.unit(560, "feet")
  5070. },
  5071. {
  5072. name: "What have you done",
  5073. height: math.unit(2200, "feet")
  5074. },
  5075. {
  5076. name: "Deer God",
  5077. height: math.unit(3.6, "miles")
  5078. },
  5079. ]
  5080. ))
  5081. characterMakers.push(() => makeCharacter(
  5082. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5083. {
  5084. standing: {
  5085. height: math.unit(6, "feet"),
  5086. weight: math.unit(300, "lbs"),
  5087. name: "Standing",
  5088. image: {
  5089. source: "./media/characters/psymon/standing.svg",
  5090. extra: 1888 / 1810,
  5091. bottom: 0.05
  5092. }
  5093. },
  5094. slithering: {
  5095. height: math.unit(6, "feet"),
  5096. weight: math.unit(300, "lbs"),
  5097. name: "Slithering",
  5098. image: {
  5099. source: "./media/characters/psymon/slithering.svg",
  5100. extra: 1330 / 1224
  5101. }
  5102. },
  5103. slitheringAlt: {
  5104. height: math.unit(6, "feet"),
  5105. weight: math.unit(300, "lbs"),
  5106. name: "Slithering (Alt)",
  5107. image: {
  5108. source: "./media/characters/psymon/slithering-alt.svg",
  5109. extra: 1330 / 1224
  5110. }
  5111. },
  5112. },
  5113. [
  5114. {
  5115. name: "Normal",
  5116. height: math.unit(11.25, "feet"),
  5117. default: true
  5118. },
  5119. {
  5120. name: "Large",
  5121. height: math.unit(27, "feet")
  5122. },
  5123. {
  5124. name: "Giant",
  5125. height: math.unit(87, "feet")
  5126. },
  5127. {
  5128. name: "Macro",
  5129. height: math.unit(365, "feet")
  5130. },
  5131. {
  5132. name: "Megamacro",
  5133. height: math.unit(3, "miles")
  5134. },
  5135. {
  5136. name: "World Serpent",
  5137. height: math.unit(8000, "miles")
  5138. },
  5139. ]
  5140. ))
  5141. characterMakers.push(() => makeCharacter(
  5142. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5143. {
  5144. front: {
  5145. height: math.unit(6, "feet"),
  5146. weight: math.unit(180, "lbs"),
  5147. name: "Front",
  5148. image: {
  5149. source: "./media/characters/daimos/front.svg",
  5150. extra: 4160 / 3897,
  5151. bottom: 0.021
  5152. }
  5153. }
  5154. },
  5155. [
  5156. {
  5157. name: "Normal",
  5158. height: math.unit(8, "feet"),
  5159. default: true
  5160. },
  5161. {
  5162. name: "Big Dog",
  5163. height: math.unit(22, "feet")
  5164. },
  5165. {
  5166. name: "Macro",
  5167. height: math.unit(127, "feet")
  5168. },
  5169. {
  5170. name: "Megamacro",
  5171. height: math.unit(3600, "feet")
  5172. },
  5173. ]
  5174. ))
  5175. characterMakers.push(() => makeCharacter(
  5176. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5177. {
  5178. side: {
  5179. height: math.unit(6, "feet"),
  5180. weight: math.unit(180, "lbs"),
  5181. name: "Side",
  5182. image: {
  5183. source: "./media/characters/blake/side.svg",
  5184. extra: 1212 / 1120,
  5185. bottom: 0.05
  5186. }
  5187. },
  5188. crouched: {
  5189. height: math.unit(6 * 0.57, "feet"),
  5190. weight: math.unit(180, "lbs"),
  5191. name: "Crouched",
  5192. image: {
  5193. source: "./media/characters/blake/crouched.svg",
  5194. extra: 840 / 587,
  5195. bottom: 0.04
  5196. }
  5197. },
  5198. bent: {
  5199. height: math.unit(6 * 0.75, "feet"),
  5200. weight: math.unit(180, "lbs"),
  5201. name: "Bent",
  5202. image: {
  5203. source: "./media/characters/blake/bent.svg",
  5204. extra: 592 / 544,
  5205. bottom: 0.035
  5206. }
  5207. },
  5208. },
  5209. [
  5210. {
  5211. name: "Normal",
  5212. height: math.unit(8 + 1 / 6, "feet"),
  5213. default: true
  5214. },
  5215. {
  5216. name: "Big Backside",
  5217. height: math.unit(37, "feet")
  5218. },
  5219. {
  5220. name: "Subway Shredder",
  5221. height: math.unit(72, "feet")
  5222. },
  5223. {
  5224. name: "City Carver",
  5225. height: math.unit(1675, "feet")
  5226. },
  5227. {
  5228. name: "Tectonic Tweaker",
  5229. height: math.unit(2300, "miles")
  5230. },
  5231. ]
  5232. ))
  5233. characterMakers.push(() => makeCharacter(
  5234. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5235. {
  5236. front: {
  5237. height: math.unit(6, "feet"),
  5238. weight: math.unit(180, "lbs"),
  5239. name: "Front",
  5240. image: {
  5241. source: "./media/characters/guisetto/front.svg",
  5242. extra: 856 / 817,
  5243. bottom: 0.06
  5244. }
  5245. },
  5246. airborne: {
  5247. height: math.unit(6, "feet"),
  5248. weight: math.unit(180, "lbs"),
  5249. name: "Airborne",
  5250. image: {
  5251. source: "./media/characters/guisetto/airborne.svg",
  5252. extra: 584 / 525
  5253. }
  5254. },
  5255. },
  5256. [
  5257. {
  5258. name: "Normal",
  5259. height: math.unit(10 + 11 / 12, "feet"),
  5260. default: true
  5261. },
  5262. {
  5263. name: "Large",
  5264. height: math.unit(35, "feet")
  5265. },
  5266. {
  5267. name: "Macro",
  5268. height: math.unit(475, "feet")
  5269. },
  5270. ]
  5271. ))
  5272. characterMakers.push(() => makeCharacter(
  5273. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5274. {
  5275. front: {
  5276. height: math.unit(6, "feet"),
  5277. weight: math.unit(180, "lbs"),
  5278. name: "Front",
  5279. image: {
  5280. source: "./media/characters/luxor/front.svg",
  5281. extra: 2940 / 2152
  5282. }
  5283. },
  5284. back: {
  5285. height: math.unit(6, "feet"),
  5286. weight: math.unit(180, "lbs"),
  5287. name: "Back",
  5288. image: {
  5289. source: "./media/characters/luxor/back.svg",
  5290. extra: 1083 / 960
  5291. }
  5292. },
  5293. },
  5294. [
  5295. {
  5296. name: "Normal",
  5297. height: math.unit(5 + 5 / 6, "feet"),
  5298. default: true
  5299. },
  5300. {
  5301. name: "Lamp",
  5302. height: math.unit(50, "feet")
  5303. },
  5304. {
  5305. name: "Lämp",
  5306. height: math.unit(300, "feet")
  5307. },
  5308. {
  5309. name: "The sun is a lamp",
  5310. height: math.unit(250000, "miles")
  5311. },
  5312. ]
  5313. ))
  5314. characterMakers.push(() => makeCharacter(
  5315. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5316. {
  5317. front: {
  5318. height: math.unit(6, "feet"),
  5319. weight: math.unit(50, "lbs"),
  5320. name: "Front",
  5321. image: {
  5322. source: "./media/characters/huoyan/front.svg"
  5323. }
  5324. },
  5325. side: {
  5326. height: math.unit(6, "feet"),
  5327. weight: math.unit(180, "lbs"),
  5328. name: "Side",
  5329. image: {
  5330. source: "./media/characters/huoyan/side.svg"
  5331. }
  5332. },
  5333. },
  5334. [
  5335. {
  5336. name: "Chef",
  5337. height: math.unit(9, "feet")
  5338. },
  5339. {
  5340. name: "Normal",
  5341. height: math.unit(65, "feet"),
  5342. default: true
  5343. },
  5344. {
  5345. name: "Macro",
  5346. height: math.unit(780, "feet")
  5347. },
  5348. {
  5349. name: "Flaming Mountain",
  5350. height: math.unit(4.8, "miles")
  5351. },
  5352. {
  5353. name: "Celestial",
  5354. height: math.unit(765000, "miles")
  5355. },
  5356. ]
  5357. ))
  5358. characterMakers.push(() => makeCharacter(
  5359. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5360. {
  5361. front: {
  5362. height: math.unit(5 + 3 / 4, "feet"),
  5363. weight: math.unit(120, "lbs"),
  5364. name: "Front",
  5365. image: {
  5366. source: "./media/characters/tails/front.svg"
  5367. }
  5368. }
  5369. },
  5370. [
  5371. {
  5372. name: "Normal",
  5373. height: math.unit(5 + 3 / 4, "feet"),
  5374. default: true
  5375. }
  5376. ]
  5377. ))
  5378. characterMakers.push(() => makeCharacter(
  5379. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5380. {
  5381. front: {
  5382. height: math.unit(4, "feet"),
  5383. weight: math.unit(50, "lbs"),
  5384. name: "Front",
  5385. image: {
  5386. source: "./media/characters/rainy/front.svg"
  5387. }
  5388. }
  5389. },
  5390. [
  5391. {
  5392. name: "Macro",
  5393. height: math.unit(800, "feet"),
  5394. default: true
  5395. }
  5396. ]
  5397. ))
  5398. characterMakers.push(() => makeCharacter(
  5399. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5400. {
  5401. front: {
  5402. height: math.unit(6, "feet"),
  5403. weight: math.unit(150, "lbs"),
  5404. name: "Front",
  5405. image: {
  5406. source: "./media/characters/rainier/front.svg"
  5407. }
  5408. }
  5409. },
  5410. [
  5411. {
  5412. name: "Micro",
  5413. height: math.unit(2, "mm"),
  5414. default: true
  5415. }
  5416. ]
  5417. ))
  5418. characterMakers.push(() => makeCharacter(
  5419. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5420. {
  5421. front: {
  5422. height: math.unit(6, "feet"),
  5423. weight: math.unit(180, "lbs"),
  5424. name: "Front",
  5425. image: {
  5426. source: "./media/characters/andy/front.svg"
  5427. }
  5428. }
  5429. },
  5430. [
  5431. {
  5432. name: "Normal",
  5433. height: math.unit(8, "feet"),
  5434. default: true
  5435. },
  5436. {
  5437. name: "Macro",
  5438. height: math.unit(1000, "feet")
  5439. },
  5440. {
  5441. name: "Megamacro",
  5442. height: math.unit(5, "miles")
  5443. },
  5444. {
  5445. name: "Gigamacro",
  5446. height: math.unit(5000, "miles")
  5447. },
  5448. ]
  5449. ))
  5450. characterMakers.push(() => makeCharacter(
  5451. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5452. {
  5453. front: {
  5454. height: math.unit(6, "feet"),
  5455. weight: math.unit(210, "lbs"),
  5456. name: "Front",
  5457. image: {
  5458. source: "./media/characters/cimmaron/front-sfw.svg",
  5459. extra: 701 / 676,
  5460. bottom: 0.046
  5461. }
  5462. },
  5463. back: {
  5464. height: math.unit(6, "feet"),
  5465. weight: math.unit(210, "lbs"),
  5466. name: "Back",
  5467. image: {
  5468. source: "./media/characters/cimmaron/back-sfw.svg",
  5469. extra: 701 / 676,
  5470. bottom: 0.046
  5471. }
  5472. },
  5473. frontNsfw: {
  5474. height: math.unit(6, "feet"),
  5475. weight: math.unit(210, "lbs"),
  5476. name: "Front (NSFW)",
  5477. image: {
  5478. source: "./media/characters/cimmaron/front-nsfw.svg",
  5479. extra: 701 / 676,
  5480. bottom: 0.046
  5481. }
  5482. },
  5483. backNsfw: {
  5484. height: math.unit(6, "feet"),
  5485. weight: math.unit(210, "lbs"),
  5486. name: "Back (NSFW)",
  5487. image: {
  5488. source: "./media/characters/cimmaron/back-nsfw.svg",
  5489. extra: 701 / 676,
  5490. bottom: 0.046
  5491. }
  5492. },
  5493. dick: {
  5494. height: math.unit(1.714, "feet"),
  5495. name: "Dick",
  5496. image: {
  5497. source: "./media/characters/cimmaron/dick.svg"
  5498. }
  5499. },
  5500. },
  5501. [
  5502. {
  5503. name: "Normal",
  5504. height: math.unit(6, "feet"),
  5505. default: true
  5506. },
  5507. {
  5508. name: "Macro Mayor",
  5509. height: math.unit(350, "meters")
  5510. },
  5511. ]
  5512. ))
  5513. characterMakers.push(() => makeCharacter(
  5514. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5515. {
  5516. front: {
  5517. height: math.unit(6, "feet"),
  5518. weight: math.unit(200, "lbs"),
  5519. name: "Front",
  5520. image: {
  5521. source: "./media/characters/akari/front.svg",
  5522. extra: 962 / 901,
  5523. bottom: 0.04
  5524. }
  5525. }
  5526. },
  5527. [
  5528. {
  5529. name: "Micro",
  5530. height: math.unit(5, "inches"),
  5531. default: true
  5532. },
  5533. {
  5534. name: "Normal",
  5535. height: math.unit(7, "feet")
  5536. },
  5537. ]
  5538. ))
  5539. characterMakers.push(() => makeCharacter(
  5540. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5541. {
  5542. front: {
  5543. height: math.unit(6, "feet"),
  5544. weight: math.unit(140, "lbs"),
  5545. name: "Front",
  5546. image: {
  5547. source: "./media/characters/cynosura/front.svg",
  5548. extra: 896 / 847
  5549. }
  5550. },
  5551. back: {
  5552. height: math.unit(6, "feet"),
  5553. weight: math.unit(140, "lbs"),
  5554. name: "Back",
  5555. image: {
  5556. source: "./media/characters/cynosura/back.svg",
  5557. extra: 1365 / 1250
  5558. }
  5559. },
  5560. },
  5561. [
  5562. {
  5563. name: "Micro",
  5564. height: math.unit(4, "inches")
  5565. },
  5566. {
  5567. name: "Normal",
  5568. height: math.unit(5.75, "feet"),
  5569. default: true
  5570. },
  5571. {
  5572. name: "Tall",
  5573. height: math.unit(10, "feet")
  5574. },
  5575. {
  5576. name: "Big",
  5577. height: math.unit(20, "feet")
  5578. },
  5579. {
  5580. name: "Macro",
  5581. height: math.unit(50, "feet")
  5582. },
  5583. ]
  5584. ))
  5585. characterMakers.push(() => makeCharacter(
  5586. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5587. {
  5588. front: {
  5589. height: math.unit(13 + 2/12, "feet"),
  5590. weight: math.unit(800, "kg"),
  5591. name: "Front",
  5592. image: {
  5593. source: "./media/characters/gin/front.svg",
  5594. extra: 1312/1191,
  5595. bottom: 45/1357
  5596. }
  5597. },
  5598. mouth: {
  5599. height: math.unit(2.39 * 1.8, "feet"),
  5600. name: "Mouth",
  5601. image: {
  5602. source: "./media/characters/gin/mouth.svg"
  5603. }
  5604. },
  5605. hand: {
  5606. height: math.unit(1.57 * 2.19, "feet"),
  5607. name: "Hand",
  5608. image: {
  5609. source: "./media/characters/gin/hand.svg"
  5610. }
  5611. },
  5612. foot: {
  5613. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5614. name: "Foot",
  5615. image: {
  5616. source: "./media/characters/gin/foot.svg"
  5617. }
  5618. },
  5619. sole: {
  5620. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5621. name: "Sole",
  5622. image: {
  5623. source: "./media/characters/gin/sole.svg"
  5624. }
  5625. },
  5626. },
  5627. [
  5628. {
  5629. name: "Very Small",
  5630. height: math.unit(13 + 2 / 12, "feet")
  5631. },
  5632. {
  5633. name: "Micro",
  5634. height: math.unit(600, "miles")
  5635. },
  5636. {
  5637. name: "Regular",
  5638. height: math.unit(20, "earths"),
  5639. default: true
  5640. },
  5641. {
  5642. name: "Macro",
  5643. height: math.unit(2.2, "solarradii")
  5644. },
  5645. {
  5646. name: "Teramacro",
  5647. height: math.unit(1.2, "galaxies")
  5648. },
  5649. {
  5650. name: "Omegamacro",
  5651. height: math.unit(200, "universes")
  5652. },
  5653. ]
  5654. ))
  5655. characterMakers.push(() => makeCharacter(
  5656. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5657. {
  5658. front: {
  5659. height: math.unit(6 + 1 / 6, "feet"),
  5660. weight: math.unit(178, "lbs"),
  5661. name: "Front",
  5662. image: {
  5663. source: "./media/characters/guy/front.svg"
  5664. }
  5665. }
  5666. },
  5667. [
  5668. {
  5669. name: "Normal",
  5670. height: math.unit(6 + 1 / 6, "feet"),
  5671. default: true
  5672. },
  5673. {
  5674. name: "Large",
  5675. height: math.unit(25 + 7 / 12, "feet")
  5676. },
  5677. {
  5678. name: "Macro",
  5679. height: math.unit(60 + 9 / 12, "feet")
  5680. },
  5681. {
  5682. name: "Macro+",
  5683. height: math.unit(246, "feet")
  5684. },
  5685. {
  5686. name: "Macro++",
  5687. height: math.unit(878, "feet")
  5688. }
  5689. ]
  5690. ))
  5691. characterMakers.push(() => makeCharacter(
  5692. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5693. {
  5694. front: {
  5695. height: math.unit(9, "feet"),
  5696. weight: math.unit(800, "lbs"),
  5697. name: "Front",
  5698. image: {
  5699. source: "./media/characters/tiberius/front.svg",
  5700. extra: 2295 / 2071
  5701. }
  5702. },
  5703. back: {
  5704. height: math.unit(9, "feet"),
  5705. weight: math.unit(800, "lbs"),
  5706. name: "Back",
  5707. image: {
  5708. source: "./media/characters/tiberius/back.svg",
  5709. extra: 2373 / 2160
  5710. }
  5711. },
  5712. },
  5713. [
  5714. {
  5715. name: "Normal",
  5716. height: math.unit(9, "feet"),
  5717. default: true
  5718. }
  5719. ]
  5720. ))
  5721. characterMakers.push(() => makeCharacter(
  5722. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5723. {
  5724. front: {
  5725. height: math.unit(6, "feet"),
  5726. weight: math.unit(600, "lbs"),
  5727. name: "Front",
  5728. image: {
  5729. source: "./media/characters/surgo/front.svg",
  5730. extra: 3591 / 2227
  5731. }
  5732. },
  5733. back: {
  5734. height: math.unit(6, "feet"),
  5735. weight: math.unit(600, "lbs"),
  5736. name: "Back",
  5737. image: {
  5738. source: "./media/characters/surgo/back.svg",
  5739. extra: 3557 / 2228
  5740. }
  5741. },
  5742. laying: {
  5743. height: math.unit(6 * 0.85, "feet"),
  5744. weight: math.unit(600, "lbs"),
  5745. name: "Laying",
  5746. image: {
  5747. source: "./media/characters/surgo/laying.svg"
  5748. }
  5749. },
  5750. },
  5751. [
  5752. {
  5753. name: "Normal",
  5754. height: math.unit(6, "feet"),
  5755. default: true
  5756. }
  5757. ]
  5758. ))
  5759. characterMakers.push(() => makeCharacter(
  5760. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5761. {
  5762. side: {
  5763. height: math.unit(6, "feet"),
  5764. weight: math.unit(150, "lbs"),
  5765. name: "Side",
  5766. image: {
  5767. source: "./media/characters/cibus/side.svg",
  5768. extra: 800 / 400
  5769. }
  5770. },
  5771. },
  5772. [
  5773. {
  5774. name: "Normal",
  5775. height: math.unit(6, "feet"),
  5776. default: true
  5777. }
  5778. ]
  5779. ))
  5780. characterMakers.push(() => makeCharacter(
  5781. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5782. {
  5783. front: {
  5784. height: math.unit(6, "feet"),
  5785. weight: math.unit(240, "lbs"),
  5786. name: "Front",
  5787. image: {
  5788. source: "./media/characters/nibbles/front.svg"
  5789. }
  5790. },
  5791. side: {
  5792. height: math.unit(6, "feet"),
  5793. weight: math.unit(240, "lbs"),
  5794. name: "Side",
  5795. image: {
  5796. source: "./media/characters/nibbles/side.svg"
  5797. }
  5798. },
  5799. },
  5800. [
  5801. {
  5802. name: "Normal",
  5803. height: math.unit(9, "feet"),
  5804. default: true
  5805. }
  5806. ]
  5807. ))
  5808. characterMakers.push(() => makeCharacter(
  5809. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5810. {
  5811. side: {
  5812. height: math.unit(5 + 1 / 6, "feet"),
  5813. weight: math.unit(130, "lbs"),
  5814. name: "Side",
  5815. image: {
  5816. source: "./media/characters/rikky/side.svg",
  5817. extra: 851 / 801
  5818. }
  5819. },
  5820. },
  5821. [
  5822. {
  5823. name: "Normal",
  5824. height: math.unit(5 + 1 / 6, "feet")
  5825. },
  5826. {
  5827. name: "Macro",
  5828. height: math.unit(152, "feet"),
  5829. default: true
  5830. },
  5831. {
  5832. name: "Megamacro",
  5833. height: math.unit(7, "miles")
  5834. }
  5835. ]
  5836. ))
  5837. characterMakers.push(() => makeCharacter(
  5838. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5839. {
  5840. side: {
  5841. height: math.unit(370, "cm"),
  5842. weight: math.unit(350, "lbs"),
  5843. name: "Side",
  5844. image: {
  5845. source: "./media/characters/malfressa/side.svg"
  5846. }
  5847. },
  5848. walking: {
  5849. height: math.unit(370, "cm"),
  5850. weight: math.unit(350, "lbs"),
  5851. name: "Walking",
  5852. image: {
  5853. source: "./media/characters/malfressa/walking.svg"
  5854. }
  5855. },
  5856. feral: {
  5857. height: math.unit(2500, "cm"),
  5858. weight: math.unit(100000, "lbs"),
  5859. name: "Feral",
  5860. image: {
  5861. source: "./media/characters/malfressa/feral.svg",
  5862. extra: 2108 / 837,
  5863. bottom: 0.02
  5864. }
  5865. },
  5866. },
  5867. [
  5868. {
  5869. name: "Normal",
  5870. height: math.unit(370, "cm")
  5871. },
  5872. {
  5873. name: "Macro",
  5874. height: math.unit(300, "meters"),
  5875. default: true
  5876. }
  5877. ]
  5878. ))
  5879. characterMakers.push(() => makeCharacter(
  5880. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5881. {
  5882. front: {
  5883. height: math.unit(6, "feet"),
  5884. weight: math.unit(60, "kg"),
  5885. name: "Front",
  5886. image: {
  5887. source: "./media/characters/jaro/front.svg"
  5888. }
  5889. },
  5890. back: {
  5891. height: math.unit(6, "feet"),
  5892. weight: math.unit(60, "kg"),
  5893. name: "Back",
  5894. image: {
  5895. source: "./media/characters/jaro/back.svg"
  5896. }
  5897. },
  5898. },
  5899. [
  5900. {
  5901. name: "Micro",
  5902. height: math.unit(7, "inches")
  5903. },
  5904. {
  5905. name: "Normal",
  5906. height: math.unit(5.5, "feet"),
  5907. default: true
  5908. },
  5909. {
  5910. name: "Minimacro",
  5911. height: math.unit(20, "feet")
  5912. },
  5913. {
  5914. name: "Macro",
  5915. height: math.unit(200, "meters")
  5916. }
  5917. ]
  5918. ))
  5919. characterMakers.push(() => makeCharacter(
  5920. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5921. {
  5922. front: {
  5923. height: math.unit(6, "feet"),
  5924. weight: math.unit(195, "lb"),
  5925. name: "Front",
  5926. image: {
  5927. source: "./media/characters/rogue/front.svg"
  5928. }
  5929. },
  5930. },
  5931. [
  5932. {
  5933. name: "Macro",
  5934. height: math.unit(90, "feet"),
  5935. default: true
  5936. },
  5937. ]
  5938. ))
  5939. characterMakers.push(() => makeCharacter(
  5940. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5941. {
  5942. front: {
  5943. height: math.unit(5 + 8 / 12, "feet"),
  5944. weight: math.unit(140, "lb"),
  5945. name: "Front",
  5946. image: {
  5947. source: "./media/characters/piper/front.svg",
  5948. extra: 3948/3655,
  5949. bottom: 0/3948
  5950. }
  5951. },
  5952. },
  5953. [
  5954. {
  5955. name: "Micro",
  5956. height: math.unit(2, "inches")
  5957. },
  5958. {
  5959. name: "Normal",
  5960. height: math.unit(5 + 8 / 12, "feet")
  5961. },
  5962. {
  5963. name: "Macro",
  5964. height: math.unit(250, "feet"),
  5965. default: true
  5966. },
  5967. {
  5968. name: "Megamacro",
  5969. height: math.unit(7, "miles")
  5970. },
  5971. ]
  5972. ))
  5973. characterMakers.push(() => makeCharacter(
  5974. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5975. {
  5976. front: {
  5977. height: math.unit(6, "feet"),
  5978. weight: math.unit(220, "lb"),
  5979. name: "Front",
  5980. image: {
  5981. source: "./media/characters/gemini/front.svg"
  5982. }
  5983. },
  5984. back: {
  5985. height: math.unit(6, "feet"),
  5986. weight: math.unit(220, "lb"),
  5987. name: "Back",
  5988. image: {
  5989. source: "./media/characters/gemini/back.svg"
  5990. }
  5991. },
  5992. kneeling: {
  5993. height: math.unit(6 / 1.5, "feet"),
  5994. weight: math.unit(220, "lb"),
  5995. name: "Kneeling",
  5996. image: {
  5997. source: "./media/characters/gemini/kneeling.svg",
  5998. bottom: 0.02
  5999. }
  6000. },
  6001. },
  6002. [
  6003. {
  6004. name: "Macro",
  6005. height: math.unit(300, "meters"),
  6006. default: true
  6007. },
  6008. {
  6009. name: "Megamacro",
  6010. height: math.unit(6900, "meters")
  6011. },
  6012. ]
  6013. ))
  6014. characterMakers.push(() => makeCharacter(
  6015. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6016. {
  6017. anthro: {
  6018. height: math.unit(2.35, "meters"),
  6019. weight: math.unit(73, "kg"),
  6020. name: "Anthro",
  6021. image: {
  6022. source: "./media/characters/alicia/anthro.svg",
  6023. extra: 2571 / 2385,
  6024. bottom: 75 / 2648
  6025. }
  6026. },
  6027. paw: {
  6028. height: math.unit(1.32, "feet"),
  6029. name: "Paw",
  6030. image: {
  6031. source: "./media/characters/alicia/paw.svg"
  6032. }
  6033. },
  6034. feral: {
  6035. height: math.unit(1.69, "meters"),
  6036. weight: math.unit(73, "kg"),
  6037. name: "Feral",
  6038. image: {
  6039. source: "./media/characters/alicia/feral.svg",
  6040. extra: 2123 / 1715,
  6041. bottom: 222 / 2349
  6042. }
  6043. },
  6044. },
  6045. [
  6046. {
  6047. name: "Normal",
  6048. height: math.unit(2.35, "meters")
  6049. },
  6050. {
  6051. name: "Macro",
  6052. height: math.unit(60, "meters"),
  6053. default: true
  6054. },
  6055. {
  6056. name: "Megamacro",
  6057. height: math.unit(10000, "kilometers")
  6058. },
  6059. ]
  6060. ))
  6061. characterMakers.push(() => makeCharacter(
  6062. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6063. {
  6064. front: {
  6065. height: math.unit(7, "feet"),
  6066. weight: math.unit(250, "lbs"),
  6067. name: "Front",
  6068. image: {
  6069. source: "./media/characters/archy/front.svg"
  6070. }
  6071. }
  6072. },
  6073. [
  6074. {
  6075. name: "Micro",
  6076. height: math.unit(1, "inch")
  6077. },
  6078. {
  6079. name: "Shorty",
  6080. height: math.unit(5, "feet")
  6081. },
  6082. {
  6083. name: "Normal",
  6084. height: math.unit(7, "feet")
  6085. },
  6086. {
  6087. name: "Macro",
  6088. height: math.unit(600, "meters"),
  6089. default: true
  6090. },
  6091. {
  6092. name: "Megamacro",
  6093. height: math.unit(1, "mile")
  6094. },
  6095. ]
  6096. ))
  6097. characterMakers.push(() => makeCharacter(
  6098. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6099. {
  6100. front: {
  6101. height: math.unit(1.65, "meters"),
  6102. weight: math.unit(74, "kg"),
  6103. name: "Front",
  6104. image: {
  6105. source: "./media/characters/berri/front.svg",
  6106. extra: 857 / 837,
  6107. bottom: 18 / 877
  6108. }
  6109. },
  6110. bum: {
  6111. height: math.unit(1.46, "feet"),
  6112. name: "Bum",
  6113. image: {
  6114. source: "./media/characters/berri/bum.svg"
  6115. }
  6116. },
  6117. mouth: {
  6118. height: math.unit(0.44, "feet"),
  6119. name: "Mouth",
  6120. image: {
  6121. source: "./media/characters/berri/mouth.svg"
  6122. }
  6123. },
  6124. paw: {
  6125. height: math.unit(0.826, "feet"),
  6126. name: "Paw",
  6127. image: {
  6128. source: "./media/characters/berri/paw.svg"
  6129. }
  6130. },
  6131. },
  6132. [
  6133. {
  6134. name: "Normal",
  6135. height: math.unit(1.65, "meters")
  6136. },
  6137. {
  6138. name: "Macro",
  6139. height: math.unit(60, "m"),
  6140. default: true
  6141. },
  6142. {
  6143. name: "Megamacro",
  6144. height: math.unit(9.213, "km")
  6145. },
  6146. {
  6147. name: "Planet Eater",
  6148. height: math.unit(489, "megameters")
  6149. },
  6150. {
  6151. name: "Teramacro",
  6152. height: math.unit(2471635000000, "meters")
  6153. },
  6154. {
  6155. name: "Examacro",
  6156. height: math.unit(8.0624e+26, "meters")
  6157. }
  6158. ]
  6159. ))
  6160. characterMakers.push(() => makeCharacter(
  6161. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6162. {
  6163. front: {
  6164. height: math.unit(1.72, "meters"),
  6165. weight: math.unit(68, "kg"),
  6166. name: "Front",
  6167. image: {
  6168. source: "./media/characters/lexi/front.svg"
  6169. }
  6170. }
  6171. },
  6172. [
  6173. {
  6174. name: "Very Smol",
  6175. height: math.unit(10, "mm")
  6176. },
  6177. {
  6178. name: "Micro",
  6179. height: math.unit(6.8, "cm"),
  6180. default: true
  6181. },
  6182. {
  6183. name: "Normal",
  6184. height: math.unit(1.72, "m")
  6185. }
  6186. ]
  6187. ))
  6188. characterMakers.push(() => makeCharacter(
  6189. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6190. {
  6191. front: {
  6192. height: math.unit(1.69, "meters"),
  6193. weight: math.unit(68, "kg"),
  6194. name: "Front",
  6195. image: {
  6196. source: "./media/characters/martin/front.svg",
  6197. extra: 596 / 581
  6198. }
  6199. }
  6200. },
  6201. [
  6202. {
  6203. name: "Micro",
  6204. height: math.unit(6.85, "cm"),
  6205. default: true
  6206. },
  6207. {
  6208. name: "Normal",
  6209. height: math.unit(1.69, "m")
  6210. }
  6211. ]
  6212. ))
  6213. characterMakers.push(() => makeCharacter(
  6214. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6215. {
  6216. front: {
  6217. height: math.unit(1.69, "meters"),
  6218. weight: math.unit(68, "kg"),
  6219. name: "Front",
  6220. image: {
  6221. source: "./media/characters/juno/front.svg"
  6222. }
  6223. }
  6224. },
  6225. [
  6226. {
  6227. name: "Micro",
  6228. height: math.unit(7, "cm")
  6229. },
  6230. {
  6231. name: "Normal",
  6232. height: math.unit(1.89, "m")
  6233. },
  6234. {
  6235. name: "Macro",
  6236. height: math.unit(353, "meters"),
  6237. default: true
  6238. }
  6239. ]
  6240. ))
  6241. characterMakers.push(() => makeCharacter(
  6242. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6243. {
  6244. front: {
  6245. height: math.unit(1.93, "meters"),
  6246. weight: math.unit(83, "kg"),
  6247. name: "Front",
  6248. image: {
  6249. source: "./media/characters/samantha/front.svg"
  6250. }
  6251. },
  6252. frontClothed: {
  6253. height: math.unit(1.93, "meters"),
  6254. weight: math.unit(83, "kg"),
  6255. name: "Front (Clothed)",
  6256. image: {
  6257. source: "./media/characters/samantha/front-clothed.svg"
  6258. }
  6259. },
  6260. back: {
  6261. height: math.unit(1.93, "meters"),
  6262. weight: math.unit(83, "kg"),
  6263. name: "Back",
  6264. image: {
  6265. source: "./media/characters/samantha/back.svg"
  6266. }
  6267. },
  6268. },
  6269. [
  6270. {
  6271. name: "Normal",
  6272. height: math.unit(1.93, "m")
  6273. },
  6274. {
  6275. name: "Macro",
  6276. height: math.unit(74, "meters"),
  6277. default: true
  6278. },
  6279. {
  6280. name: "Macro+",
  6281. height: math.unit(223, "meters"),
  6282. },
  6283. {
  6284. name: "Megamacro",
  6285. height: math.unit(8381, "meters"),
  6286. },
  6287. {
  6288. name: "Megamacro+",
  6289. height: math.unit(12000, "kilometers")
  6290. },
  6291. ]
  6292. ))
  6293. characterMakers.push(() => makeCharacter(
  6294. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6295. {
  6296. front: {
  6297. height: math.unit(1.92, "meters"),
  6298. weight: math.unit(80, "kg"),
  6299. name: "Front",
  6300. image: {
  6301. source: "./media/characters/dr-clay/front.svg"
  6302. }
  6303. },
  6304. frontClothed: {
  6305. height: math.unit(1.92, "meters"),
  6306. weight: math.unit(80, "kg"),
  6307. name: "Front (Clothed)",
  6308. image: {
  6309. source: "./media/characters/dr-clay/front-clothed.svg"
  6310. }
  6311. }
  6312. },
  6313. [
  6314. {
  6315. name: "Normal",
  6316. height: math.unit(1.92, "m")
  6317. },
  6318. {
  6319. name: "Macro",
  6320. height: math.unit(214, "meters"),
  6321. default: true
  6322. },
  6323. {
  6324. name: "Macro+",
  6325. height: math.unit(12.237, "meters"),
  6326. },
  6327. {
  6328. name: "Megamacro",
  6329. height: math.unit(557, "megameters"),
  6330. },
  6331. {
  6332. name: "Unimaginable",
  6333. height: math.unit(120e9, "lightyears")
  6334. },
  6335. ]
  6336. ))
  6337. characterMakers.push(() => makeCharacter(
  6338. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6339. {
  6340. front: {
  6341. height: math.unit(2, "meters"),
  6342. weight: math.unit(80, "kg"),
  6343. name: "Front",
  6344. image: {
  6345. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6346. }
  6347. }
  6348. },
  6349. [
  6350. {
  6351. name: "Teramacro",
  6352. height: math.unit(500000, "lightyears"),
  6353. default: true
  6354. },
  6355. ]
  6356. ))
  6357. characterMakers.push(() => makeCharacter(
  6358. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6359. {
  6360. front: {
  6361. height: math.unit(2, "meters"),
  6362. weight: math.unit(150, "kg"),
  6363. name: "Front",
  6364. image: {
  6365. source: "./media/characters/vemus/front.svg",
  6366. extra: 2384 / 2084,
  6367. bottom: 0.0123
  6368. }
  6369. }
  6370. },
  6371. [
  6372. {
  6373. name: "Normal",
  6374. height: math.unit(3.75, "meters"),
  6375. default: true
  6376. },
  6377. {
  6378. name: "Big",
  6379. height: math.unit(8, "meters")
  6380. },
  6381. {
  6382. name: "Macro",
  6383. height: math.unit(100, "meters")
  6384. },
  6385. {
  6386. name: "Macro+",
  6387. height: math.unit(1500, "meters")
  6388. },
  6389. {
  6390. name: "Stellar",
  6391. height: math.unit(14e8, "meters")
  6392. },
  6393. ]
  6394. ))
  6395. characterMakers.push(() => makeCharacter(
  6396. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6397. {
  6398. front: {
  6399. height: math.unit(2, "meters"),
  6400. weight: math.unit(70, "kg"),
  6401. name: "Front",
  6402. image: {
  6403. source: "./media/characters/beherit/front.svg",
  6404. extra: 1408 / 1242
  6405. }
  6406. }
  6407. },
  6408. [
  6409. {
  6410. name: "Normal",
  6411. height: math.unit(6, "feet")
  6412. },
  6413. {
  6414. name: "Lorg",
  6415. height: math.unit(25, "feet"),
  6416. default: true
  6417. },
  6418. {
  6419. name: "Lorger",
  6420. height: math.unit(75, "feet")
  6421. },
  6422. {
  6423. name: "Macro",
  6424. height: math.unit(200, "meters")
  6425. },
  6426. ]
  6427. ))
  6428. characterMakers.push(() => makeCharacter(
  6429. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6430. {
  6431. front: {
  6432. height: math.unit(2, "meters"),
  6433. weight: math.unit(150, "kg"),
  6434. name: "Front",
  6435. image: {
  6436. source: "./media/characters/everett/front.svg",
  6437. extra: 2038 / 1737,
  6438. bottom: 0.03
  6439. }
  6440. },
  6441. paw: {
  6442. height: math.unit(2 / 3.6, "meters"),
  6443. name: "Paw",
  6444. image: {
  6445. source: "./media/characters/everett/paw.svg"
  6446. }
  6447. },
  6448. },
  6449. [
  6450. {
  6451. name: "Normal",
  6452. height: math.unit(15, "feet"),
  6453. default: true
  6454. },
  6455. {
  6456. name: "Lorg",
  6457. height: math.unit(70, "feet"),
  6458. default: true
  6459. },
  6460. {
  6461. name: "Lorger",
  6462. height: math.unit(250, "feet")
  6463. },
  6464. {
  6465. name: "Macro",
  6466. height: math.unit(500, "meters")
  6467. },
  6468. ]
  6469. ))
  6470. characterMakers.push(() => makeCharacter(
  6471. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6472. {
  6473. front: {
  6474. height: math.unit(2, "meters"),
  6475. weight: math.unit(86, "kg"),
  6476. name: "Front",
  6477. image: {
  6478. source: "./media/characters/rose/front.svg",
  6479. extra: 350/335,
  6480. bottom: 10/360
  6481. }
  6482. },
  6483. frontAlt: {
  6484. height: math.unit(1.6, "meters"),
  6485. weight: math.unit(86, "kg"),
  6486. name: "Front (Alt)",
  6487. image: {
  6488. source: "./media/characters/rose/front-alt.svg",
  6489. extra: 299/283,
  6490. bottom: 3/302
  6491. }
  6492. },
  6493. plush: {
  6494. height: math.unit(2, "meters"),
  6495. weight: math.unit(86/3, "kg"),
  6496. name: "Plush",
  6497. image: {
  6498. source: "./media/characters/rose/plush.svg",
  6499. extra: 361/337,
  6500. bottom: 11/372
  6501. }
  6502. },
  6503. },
  6504. [
  6505. {
  6506. name: "Mini-Micro",
  6507. height: math.unit(1, "cm")
  6508. },
  6509. {
  6510. name: "Micro",
  6511. height: math.unit(3.5, "inches"),
  6512. default: true
  6513. },
  6514. {
  6515. name: "Normal",
  6516. height: math.unit(6 + 1 / 6, "feet")
  6517. },
  6518. {
  6519. name: "Mini-Macro",
  6520. height: math.unit(9 + 10 / 12, "feet")
  6521. },
  6522. ]
  6523. ))
  6524. characterMakers.push(() => makeCharacter(
  6525. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6526. {
  6527. front: {
  6528. height: math.unit(2, "meters"),
  6529. weight: math.unit(350, "lbs"),
  6530. name: "Front",
  6531. image: {
  6532. source: "./media/characters/regal/front.svg"
  6533. }
  6534. },
  6535. back: {
  6536. height: math.unit(2, "meters"),
  6537. weight: math.unit(350, "lbs"),
  6538. name: "Back",
  6539. image: {
  6540. source: "./media/characters/regal/back.svg"
  6541. }
  6542. },
  6543. },
  6544. [
  6545. {
  6546. name: "Macro",
  6547. height: math.unit(350, "feet"),
  6548. default: true
  6549. }
  6550. ]
  6551. ))
  6552. characterMakers.push(() => makeCharacter(
  6553. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6554. {
  6555. front: {
  6556. height: math.unit(4 + 11 / 12, "feet"),
  6557. weight: math.unit(100, "lbs"),
  6558. name: "Front",
  6559. image: {
  6560. source: "./media/characters/opal/front.svg"
  6561. }
  6562. },
  6563. frontAlt: {
  6564. height: math.unit(4 + 11 / 12, "feet"),
  6565. weight: math.unit(100, "lbs"),
  6566. name: "Front (Alt)",
  6567. image: {
  6568. source: "./media/characters/opal/front-alt.svg"
  6569. }
  6570. },
  6571. },
  6572. [
  6573. {
  6574. name: "Small",
  6575. height: math.unit(4 + 11 / 12, "feet")
  6576. },
  6577. {
  6578. name: "Normal",
  6579. height: math.unit(20, "feet"),
  6580. default: true
  6581. },
  6582. {
  6583. name: "Macro",
  6584. height: math.unit(120, "feet")
  6585. },
  6586. {
  6587. name: "Megamacro",
  6588. height: math.unit(80, "miles")
  6589. },
  6590. {
  6591. name: "True Size",
  6592. height: math.unit(100000, "lightyears")
  6593. },
  6594. ]
  6595. ))
  6596. characterMakers.push(() => makeCharacter(
  6597. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6598. {
  6599. front: {
  6600. height: math.unit(6, "feet"),
  6601. weight: math.unit(200, "lbs"),
  6602. name: "Front",
  6603. image: {
  6604. source: "./media/characters/vector-wuff/front.svg"
  6605. }
  6606. }
  6607. },
  6608. [
  6609. {
  6610. name: "Normal",
  6611. height: math.unit(2.8, "meters")
  6612. },
  6613. {
  6614. name: "Macro",
  6615. height: math.unit(450, "meters"),
  6616. default: true
  6617. },
  6618. {
  6619. name: "Megamacro",
  6620. height: math.unit(15, "kilometers")
  6621. }
  6622. ]
  6623. ))
  6624. characterMakers.push(() => makeCharacter(
  6625. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6626. {
  6627. front: {
  6628. height: math.unit(6, "feet"),
  6629. weight: math.unit(256, "lbs"),
  6630. name: "Front",
  6631. image: {
  6632. source: "./media/characters/dannik/front.svg"
  6633. }
  6634. }
  6635. },
  6636. [
  6637. {
  6638. name: "Macro",
  6639. height: math.unit(69.57, "meters"),
  6640. default: true
  6641. },
  6642. ]
  6643. ))
  6644. characterMakers.push(() => makeCharacter(
  6645. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6646. {
  6647. front: {
  6648. height: math.unit(6, "feet"),
  6649. weight: math.unit(120, "lbs"),
  6650. name: "Front",
  6651. image: {
  6652. source: "./media/characters/azura-saharah/front.svg"
  6653. }
  6654. },
  6655. back: {
  6656. height: math.unit(6, "feet"),
  6657. weight: math.unit(120, "lbs"),
  6658. name: "Back",
  6659. image: {
  6660. source: "./media/characters/azura-saharah/back.svg"
  6661. }
  6662. },
  6663. },
  6664. [
  6665. {
  6666. name: "Macro",
  6667. height: math.unit(100, "feet"),
  6668. default: true
  6669. },
  6670. ]
  6671. ))
  6672. characterMakers.push(() => makeCharacter(
  6673. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6674. {
  6675. side: {
  6676. height: math.unit(5 + 4 / 12, "feet"),
  6677. weight: math.unit(163, "lbs"),
  6678. name: "Side",
  6679. image: {
  6680. source: "./media/characters/kennedy/side.svg"
  6681. }
  6682. }
  6683. },
  6684. [
  6685. {
  6686. name: "Standard Doggo",
  6687. height: math.unit(5 + 4 / 12, "feet")
  6688. },
  6689. {
  6690. name: "Big Doggo",
  6691. height: math.unit(25 + 3 / 12, "feet"),
  6692. default: true
  6693. },
  6694. ]
  6695. ))
  6696. characterMakers.push(() => makeCharacter(
  6697. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6698. {
  6699. front: {
  6700. height: math.unit(6, "feet"),
  6701. weight: math.unit(90, "lbs"),
  6702. name: "Front",
  6703. image: {
  6704. source: "./media/characters/odi-lunar/front.svg"
  6705. }
  6706. }
  6707. },
  6708. [
  6709. {
  6710. name: "Micro",
  6711. height: math.unit(3, "inches"),
  6712. default: true
  6713. },
  6714. {
  6715. name: "Normal",
  6716. height: math.unit(5.5, "feet")
  6717. }
  6718. ]
  6719. ))
  6720. characterMakers.push(() => makeCharacter(
  6721. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6722. {
  6723. back: {
  6724. height: math.unit(6, "feet"),
  6725. weight: math.unit(220, "lbs"),
  6726. name: "Back",
  6727. image: {
  6728. source: "./media/characters/mandake/back.svg"
  6729. }
  6730. }
  6731. },
  6732. [
  6733. {
  6734. name: "Normal",
  6735. height: math.unit(7, "feet"),
  6736. default: true
  6737. },
  6738. {
  6739. name: "Macro",
  6740. height: math.unit(78, "feet")
  6741. },
  6742. {
  6743. name: "Macro+",
  6744. height: math.unit(300, "meters")
  6745. },
  6746. {
  6747. name: "Macro++",
  6748. height: math.unit(2400, "feet")
  6749. },
  6750. {
  6751. name: "Megamacro",
  6752. height: math.unit(5167, "meters")
  6753. },
  6754. {
  6755. name: "Gigamacro",
  6756. height: math.unit(41769, "miles")
  6757. },
  6758. ]
  6759. ))
  6760. characterMakers.push(() => makeCharacter(
  6761. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6762. {
  6763. front: {
  6764. height: math.unit(6, "feet"),
  6765. weight: math.unit(120, "lbs"),
  6766. name: "Front",
  6767. image: {
  6768. source: "./media/characters/yozey/front.svg"
  6769. }
  6770. },
  6771. frontAlt: {
  6772. height: math.unit(6, "feet"),
  6773. weight: math.unit(120, "lbs"),
  6774. name: "Front (Alt)",
  6775. image: {
  6776. source: "./media/characters/yozey/front-alt.svg"
  6777. }
  6778. },
  6779. side: {
  6780. height: math.unit(6, "feet"),
  6781. weight: math.unit(120, "lbs"),
  6782. name: "Side",
  6783. image: {
  6784. source: "./media/characters/yozey/side.svg"
  6785. }
  6786. },
  6787. },
  6788. [
  6789. {
  6790. name: "Micro",
  6791. height: math.unit(3, "inches"),
  6792. default: true
  6793. },
  6794. {
  6795. name: "Normal",
  6796. height: math.unit(6, "feet")
  6797. }
  6798. ]
  6799. ))
  6800. characterMakers.push(() => makeCharacter(
  6801. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6802. {
  6803. front: {
  6804. height: math.unit(6, "feet"),
  6805. weight: math.unit(103, "lbs"),
  6806. name: "Front",
  6807. image: {
  6808. source: "./media/characters/valeska-voss/front.svg"
  6809. }
  6810. }
  6811. },
  6812. [
  6813. {
  6814. name: "Mini-Sized Sub",
  6815. height: math.unit(3.1, "inches")
  6816. },
  6817. {
  6818. name: "Mid-Sized Sub",
  6819. height: math.unit(6.2, "inches")
  6820. },
  6821. {
  6822. name: "Full-Sized Sub",
  6823. height: math.unit(9.3, "inches")
  6824. },
  6825. {
  6826. name: "Normal",
  6827. height: math.unit(5 + 2 / 12, "foot"),
  6828. default: true
  6829. },
  6830. ]
  6831. ))
  6832. characterMakers.push(() => makeCharacter(
  6833. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6834. {
  6835. front: {
  6836. height: math.unit(6, "feet"),
  6837. weight: math.unit(160, "lbs"),
  6838. name: "Front",
  6839. image: {
  6840. source: "./media/characters/gene-zeta/front.svg",
  6841. extra: 3006 / 2826,
  6842. bottom: 182 / 3188
  6843. }
  6844. }
  6845. },
  6846. [
  6847. {
  6848. name: "Micro",
  6849. height: math.unit(6, "inches")
  6850. },
  6851. {
  6852. name: "Normal",
  6853. height: math.unit(5 + 11 / 12, "foot"),
  6854. default: true
  6855. },
  6856. {
  6857. name: "Macro",
  6858. height: math.unit(140, "feet")
  6859. },
  6860. {
  6861. name: "Supercharged",
  6862. height: math.unit(2500, "feet")
  6863. },
  6864. ]
  6865. ))
  6866. characterMakers.push(() => makeCharacter(
  6867. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6868. {
  6869. front: {
  6870. height: math.unit(6, "feet"),
  6871. weight: math.unit(350, "lbs"),
  6872. name: "Front",
  6873. image: {
  6874. source: "./media/characters/razinox/front.svg",
  6875. extra: 1686 / 1548,
  6876. bottom: 28.2 / 1868
  6877. }
  6878. },
  6879. back: {
  6880. height: math.unit(6, "feet"),
  6881. weight: math.unit(350, "lbs"),
  6882. name: "Back",
  6883. image: {
  6884. source: "./media/characters/razinox/back.svg",
  6885. extra: 1660 / 1590,
  6886. bottom: 15 / 1665
  6887. }
  6888. },
  6889. },
  6890. [
  6891. {
  6892. name: "Normal",
  6893. height: math.unit(10 + 8 / 12, "foot")
  6894. },
  6895. {
  6896. name: "Minimacro",
  6897. height: math.unit(15, "foot")
  6898. },
  6899. {
  6900. name: "Macro",
  6901. height: math.unit(60, "foot"),
  6902. default: true
  6903. },
  6904. {
  6905. name: "Megamacro",
  6906. height: math.unit(5, "miles")
  6907. },
  6908. {
  6909. name: "Gigamacro",
  6910. height: math.unit(6000, "miles")
  6911. },
  6912. ]
  6913. ))
  6914. characterMakers.push(() => makeCharacter(
  6915. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6916. {
  6917. front: {
  6918. height: math.unit(6, "feet"),
  6919. weight: math.unit(150, "lbs"),
  6920. name: "Front",
  6921. image: {
  6922. source: "./media/characters/cobalt/front.svg"
  6923. }
  6924. }
  6925. },
  6926. [
  6927. {
  6928. name: "Normal",
  6929. height: math.unit(8 + 1 / 12, "foot")
  6930. },
  6931. {
  6932. name: "Macro",
  6933. height: math.unit(111, "foot"),
  6934. default: true
  6935. },
  6936. {
  6937. name: "Supracosmic",
  6938. height: math.unit(1e42, "feet")
  6939. },
  6940. ]
  6941. ))
  6942. characterMakers.push(() => makeCharacter(
  6943. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6944. {
  6945. front: {
  6946. height: math.unit(6, "feet"),
  6947. weight: math.unit(140, "lbs"),
  6948. name: "Front",
  6949. image: {
  6950. source: "./media/characters/amanda/front.svg"
  6951. }
  6952. }
  6953. },
  6954. [
  6955. {
  6956. name: "Micro",
  6957. height: math.unit(5, "inches"),
  6958. default: true
  6959. },
  6960. ]
  6961. ))
  6962. characterMakers.push(() => makeCharacter(
  6963. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6964. {
  6965. front: {
  6966. height: math.unit(2.75, "meters"),
  6967. weight: math.unit(1200, "lb"),
  6968. name: "Front",
  6969. image: {
  6970. source: "./media/characters/teal/front.svg",
  6971. extra: 2463 / 2320,
  6972. bottom: 166 / 2629
  6973. }
  6974. },
  6975. back: {
  6976. height: math.unit(2.75, "meters"),
  6977. weight: math.unit(1200, "lb"),
  6978. name: "Back",
  6979. image: {
  6980. source: "./media/characters/teal/back.svg",
  6981. extra: 2580 / 2489,
  6982. bottom: 151 / 2731
  6983. }
  6984. },
  6985. sitting: {
  6986. height: math.unit(1.9, "meters"),
  6987. weight: math.unit(1200, "lb"),
  6988. name: "Sitting",
  6989. image: {
  6990. source: "./media/characters/teal/sitting.svg",
  6991. extra: 623 / 590,
  6992. bottom: 121 / 744
  6993. }
  6994. },
  6995. standing: {
  6996. height: math.unit(2.75, "meters"),
  6997. weight: math.unit(1200, "lb"),
  6998. name: "Standing",
  6999. image: {
  7000. source: "./media/characters/teal/standing.svg",
  7001. extra: 923 / 893,
  7002. bottom: 60 / 983
  7003. }
  7004. },
  7005. stretching: {
  7006. height: math.unit(3.65, "meters"),
  7007. weight: math.unit(1200, "lb"),
  7008. name: "Stretching",
  7009. image: {
  7010. source: "./media/characters/teal/stretching.svg",
  7011. extra: 1276 / 1244,
  7012. bottom: 0 / 1276
  7013. }
  7014. },
  7015. legged: {
  7016. height: math.unit(1.3, "meters"),
  7017. weight: math.unit(100, "lb"),
  7018. name: "Legged",
  7019. image: {
  7020. source: "./media/characters/teal/legged.svg",
  7021. extra: 462 / 437,
  7022. bottom: 24 / 486
  7023. }
  7024. },
  7025. naga: {
  7026. height: math.unit(5.4, "meters"),
  7027. weight: math.unit(4000, "lb"),
  7028. name: "Naga",
  7029. image: {
  7030. source: "./media/characters/teal/naga.svg",
  7031. extra: 1902 / 1858,
  7032. bottom: 0 / 1902
  7033. }
  7034. },
  7035. hand: {
  7036. height: math.unit(0.52, "meters"),
  7037. name: "Hand",
  7038. image: {
  7039. source: "./media/characters/teal/hand.svg"
  7040. }
  7041. },
  7042. maw: {
  7043. height: math.unit(0.43, "meters"),
  7044. name: "Maw",
  7045. image: {
  7046. source: "./media/characters/teal/maw.svg"
  7047. }
  7048. },
  7049. slit: {
  7050. height: math.unit(0.25, "meters"),
  7051. name: "Slit",
  7052. image: {
  7053. source: "./media/characters/teal/slit.svg"
  7054. }
  7055. },
  7056. },
  7057. [
  7058. {
  7059. name: "Normal",
  7060. height: math.unit(2.75, "meters"),
  7061. default: true
  7062. },
  7063. {
  7064. name: "Macro",
  7065. height: math.unit(300, "feet")
  7066. },
  7067. {
  7068. name: "Macro+",
  7069. height: math.unit(2000, "feet")
  7070. },
  7071. ]
  7072. ))
  7073. characterMakers.push(() => makeCharacter(
  7074. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7075. {
  7076. frontCat: {
  7077. height: math.unit(6, "feet"),
  7078. weight: math.unit(180, "lbs"),
  7079. name: "Front (Cat)",
  7080. image: {
  7081. source: "./media/characters/ravin-amulet/front-cat.svg"
  7082. }
  7083. },
  7084. frontCatAlt: {
  7085. height: math.unit(6, "feet"),
  7086. weight: math.unit(180, "lbs"),
  7087. name: "Front (Alt, Cat)",
  7088. image: {
  7089. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7090. }
  7091. },
  7092. frontWerewolf: {
  7093. height: math.unit(6 * 1.2, "feet"),
  7094. weight: math.unit(225, "lbs"),
  7095. name: "Front (Werewolf)",
  7096. image: {
  7097. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7098. }
  7099. },
  7100. backWerewolf: {
  7101. height: math.unit(6 * 1.2, "feet"),
  7102. weight: math.unit(225, "lbs"),
  7103. name: "Back (Werewolf)",
  7104. image: {
  7105. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7106. }
  7107. },
  7108. },
  7109. [
  7110. {
  7111. name: "Nano",
  7112. height: math.unit(1, "micrometer")
  7113. },
  7114. {
  7115. name: "Micro",
  7116. height: math.unit(1, "inch")
  7117. },
  7118. {
  7119. name: "Normal",
  7120. height: math.unit(6, "feet"),
  7121. default: true
  7122. },
  7123. {
  7124. name: "Macro",
  7125. height: math.unit(60, "feet")
  7126. }
  7127. ]
  7128. ))
  7129. characterMakers.push(() => makeCharacter(
  7130. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7131. {
  7132. front: {
  7133. height: math.unit(6, "feet"),
  7134. weight: math.unit(165, "lbs"),
  7135. name: "Front",
  7136. image: {
  7137. source: "./media/characters/fluoresce/front.svg"
  7138. }
  7139. }
  7140. },
  7141. [
  7142. {
  7143. name: "Micro",
  7144. height: math.unit(6, "cm")
  7145. },
  7146. {
  7147. name: "Normal",
  7148. height: math.unit(5 + 7 / 12, "feet"),
  7149. default: true
  7150. },
  7151. {
  7152. name: "Macro",
  7153. height: math.unit(56, "feet")
  7154. },
  7155. {
  7156. name: "Megamacro",
  7157. height: math.unit(1.9, "miles")
  7158. },
  7159. ]
  7160. ))
  7161. characterMakers.push(() => makeCharacter(
  7162. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7163. {
  7164. front: {
  7165. height: math.unit(9 + 6 / 12, "feet"),
  7166. weight: math.unit(523, "lbs"),
  7167. name: "Side",
  7168. image: {
  7169. source: "./media/characters/aurora/side.svg"
  7170. }
  7171. }
  7172. },
  7173. [
  7174. {
  7175. name: "Normal",
  7176. height: math.unit(9 + 6 / 12, "feet")
  7177. },
  7178. {
  7179. name: "Macro",
  7180. height: math.unit(96, "feet"),
  7181. default: true
  7182. },
  7183. {
  7184. name: "Macro+",
  7185. height: math.unit(243, "feet")
  7186. },
  7187. ]
  7188. ))
  7189. characterMakers.push(() => makeCharacter(
  7190. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7191. {
  7192. front: {
  7193. height: math.unit(194, "cm"),
  7194. weight: math.unit(90, "kg"),
  7195. name: "Front",
  7196. image: {
  7197. source: "./media/characters/ranek/front.svg"
  7198. }
  7199. },
  7200. side: {
  7201. height: math.unit(194, "cm"),
  7202. weight: math.unit(90, "kg"),
  7203. name: "Side",
  7204. image: {
  7205. source: "./media/characters/ranek/side.svg"
  7206. }
  7207. },
  7208. back: {
  7209. height: math.unit(194, "cm"),
  7210. weight: math.unit(90, "kg"),
  7211. name: "Back",
  7212. image: {
  7213. source: "./media/characters/ranek/back.svg"
  7214. }
  7215. },
  7216. feral: {
  7217. height: math.unit(30, "cm"),
  7218. weight: math.unit(1.6, "lbs"),
  7219. name: "Feral",
  7220. image: {
  7221. source: "./media/characters/ranek/feral.svg"
  7222. }
  7223. },
  7224. },
  7225. [
  7226. {
  7227. name: "Normal",
  7228. height: math.unit(194, "cm"),
  7229. default: true
  7230. },
  7231. {
  7232. name: "Macro",
  7233. height: math.unit(100, "meters")
  7234. },
  7235. ]
  7236. ))
  7237. characterMakers.push(() => makeCharacter(
  7238. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7239. {
  7240. front: {
  7241. height: math.unit(5 + 6 / 12, "feet"),
  7242. weight: math.unit(153, "lbs"),
  7243. name: "Front",
  7244. image: {
  7245. source: "./media/characters/andrew-cooper/front.svg"
  7246. }
  7247. },
  7248. },
  7249. [
  7250. {
  7251. name: "Nano",
  7252. height: math.unit(1, "mm")
  7253. },
  7254. {
  7255. name: "Micro",
  7256. height: math.unit(2, "inches")
  7257. },
  7258. {
  7259. name: "Normal",
  7260. height: math.unit(5 + 6 / 12, "feet"),
  7261. default: true
  7262. }
  7263. ]
  7264. ))
  7265. characterMakers.push(() => makeCharacter(
  7266. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7267. {
  7268. front: {
  7269. height: math.unit(6, "feet"),
  7270. weight: math.unit(180, "lbs"),
  7271. name: "Front",
  7272. image: {
  7273. source: "./media/characters/akane-sato/front.svg",
  7274. extra: 1219 / 1140
  7275. }
  7276. },
  7277. back: {
  7278. height: math.unit(6, "feet"),
  7279. weight: math.unit(180, "lbs"),
  7280. name: "Back",
  7281. image: {
  7282. source: "./media/characters/akane-sato/back.svg",
  7283. extra: 1219 / 1170
  7284. }
  7285. },
  7286. },
  7287. [
  7288. {
  7289. name: "Normal",
  7290. height: math.unit(2.5, "meters")
  7291. },
  7292. {
  7293. name: "Macro",
  7294. height: math.unit(250, "meters"),
  7295. default: true
  7296. },
  7297. {
  7298. name: "Megamacro",
  7299. height: math.unit(25, "km")
  7300. },
  7301. ]
  7302. ))
  7303. characterMakers.push(() => makeCharacter(
  7304. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7305. {
  7306. front: {
  7307. height: math.unit(6, "feet"),
  7308. weight: math.unit(65, "kg"),
  7309. name: "Front",
  7310. image: {
  7311. source: "./media/characters/rook/front.svg",
  7312. extra: 960 / 950
  7313. }
  7314. }
  7315. },
  7316. [
  7317. {
  7318. name: "Normal",
  7319. height: math.unit(8.8, "feet")
  7320. },
  7321. {
  7322. name: "Macro",
  7323. height: math.unit(88, "feet"),
  7324. default: true
  7325. },
  7326. {
  7327. name: "Megamacro",
  7328. height: math.unit(8, "miles")
  7329. },
  7330. ]
  7331. ))
  7332. characterMakers.push(() => makeCharacter(
  7333. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7334. {
  7335. front: {
  7336. height: math.unit(12 + 2 / 12, "feet"),
  7337. weight: math.unit(808, "lbs"),
  7338. name: "Front",
  7339. image: {
  7340. source: "./media/characters/prodigy/front.svg"
  7341. }
  7342. }
  7343. },
  7344. [
  7345. {
  7346. name: "Normal",
  7347. height: math.unit(12 + 2 / 12, "feet"),
  7348. default: true
  7349. },
  7350. {
  7351. name: "Macro",
  7352. height: math.unit(143, "feet")
  7353. },
  7354. {
  7355. name: "Macro+",
  7356. height: math.unit(400, "feet")
  7357. },
  7358. ]
  7359. ))
  7360. characterMakers.push(() => makeCharacter(
  7361. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7362. {
  7363. front: {
  7364. height: math.unit(6, "feet"),
  7365. weight: math.unit(225, "lbs"),
  7366. name: "Front",
  7367. image: {
  7368. source: "./media/characters/daniel/front.svg"
  7369. }
  7370. },
  7371. leaning: {
  7372. height: math.unit(6, "feet"),
  7373. weight: math.unit(225, "lbs"),
  7374. name: "Leaning",
  7375. image: {
  7376. source: "./media/characters/daniel/leaning.svg"
  7377. }
  7378. },
  7379. },
  7380. [
  7381. {
  7382. name: "Macro",
  7383. height: math.unit(1000, "feet"),
  7384. default: true
  7385. },
  7386. ]
  7387. ))
  7388. characterMakers.push(() => makeCharacter(
  7389. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7390. {
  7391. front: {
  7392. height: math.unit(6, "feet"),
  7393. weight: math.unit(88, "lbs"),
  7394. name: "Front",
  7395. image: {
  7396. source: "./media/characters/chiros/front.svg",
  7397. extra: 306 / 226
  7398. }
  7399. },
  7400. side: {
  7401. height: math.unit(6, "feet"),
  7402. weight: math.unit(88, "lbs"),
  7403. name: "Side",
  7404. image: {
  7405. source: "./media/characters/chiros/side.svg",
  7406. extra: 306 / 226
  7407. }
  7408. },
  7409. },
  7410. [
  7411. {
  7412. name: "Normal",
  7413. height: math.unit(6, "cm"),
  7414. default: true
  7415. },
  7416. ]
  7417. ))
  7418. characterMakers.push(() => makeCharacter(
  7419. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7420. {
  7421. front: {
  7422. height: math.unit(6, "feet"),
  7423. weight: math.unit(100, "lbs"),
  7424. name: "Front",
  7425. image: {
  7426. source: "./media/characters/selka/front.svg",
  7427. extra: 947 / 887
  7428. }
  7429. }
  7430. },
  7431. [
  7432. {
  7433. name: "Normal",
  7434. height: math.unit(5, "cm"),
  7435. default: true
  7436. },
  7437. ]
  7438. ))
  7439. characterMakers.push(() => makeCharacter(
  7440. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7441. {
  7442. front: {
  7443. height: math.unit(8 + 3 / 12, "feet"),
  7444. weight: math.unit(424, "lbs"),
  7445. name: "Front",
  7446. image: {
  7447. source: "./media/characters/verin/front.svg",
  7448. extra: 1845 / 1550
  7449. }
  7450. },
  7451. frontArmored: {
  7452. height: math.unit(8 + 3 / 12, "feet"),
  7453. weight: math.unit(424, "lbs"),
  7454. name: "Front (Armored)",
  7455. image: {
  7456. source: "./media/characters/verin/front-armor.svg",
  7457. extra: 1845 / 1550,
  7458. bottom: 0.01
  7459. }
  7460. },
  7461. back: {
  7462. height: math.unit(8 + 3 / 12, "feet"),
  7463. weight: math.unit(424, "lbs"),
  7464. name: "Back",
  7465. image: {
  7466. source: "./media/characters/verin/back.svg",
  7467. bottom: 0.1,
  7468. extra: 1
  7469. }
  7470. },
  7471. foot: {
  7472. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7473. name: "Foot",
  7474. image: {
  7475. source: "./media/characters/verin/foot.svg"
  7476. }
  7477. },
  7478. },
  7479. [
  7480. {
  7481. name: "Normal",
  7482. height: math.unit(8 + 3 / 12, "feet")
  7483. },
  7484. {
  7485. name: "Minimacro",
  7486. height: math.unit(21, "feet"),
  7487. default: true
  7488. },
  7489. {
  7490. name: "Macro",
  7491. height: math.unit(626, "feet")
  7492. },
  7493. ]
  7494. ))
  7495. characterMakers.push(() => makeCharacter(
  7496. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7497. {
  7498. front: {
  7499. height: math.unit(2.718, "meters"),
  7500. weight: math.unit(150, "lbs"),
  7501. name: "Front",
  7502. image: {
  7503. source: "./media/characters/sovrim-terraquian/front.svg"
  7504. }
  7505. },
  7506. back: {
  7507. height: math.unit(2.718, "meters"),
  7508. weight: math.unit(150, "lbs"),
  7509. name: "Back",
  7510. image: {
  7511. source: "./media/characters/sovrim-terraquian/back.svg"
  7512. }
  7513. }
  7514. },
  7515. [
  7516. {
  7517. name: "Micro",
  7518. height: math.unit(2, "inches")
  7519. },
  7520. {
  7521. name: "Small",
  7522. height: math.unit(1, "meter")
  7523. },
  7524. {
  7525. name: "Normal",
  7526. height: math.unit(Math.E, "meters"),
  7527. default: true
  7528. },
  7529. {
  7530. name: "Macro",
  7531. height: math.unit(20, "meters")
  7532. },
  7533. {
  7534. name: "Macro+",
  7535. height: math.unit(400, "meters")
  7536. },
  7537. ]
  7538. ))
  7539. characterMakers.push(() => makeCharacter(
  7540. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7541. {
  7542. front: {
  7543. height: math.unit(7, "feet"),
  7544. weight: math.unit(489, "lbs"),
  7545. name: "Front",
  7546. image: {
  7547. source: "./media/characters/reece-silvermane/front.svg",
  7548. bottom: 0.02,
  7549. extra: 1
  7550. }
  7551. },
  7552. },
  7553. [
  7554. {
  7555. name: "Macro",
  7556. height: math.unit(1.5, "miles"),
  7557. default: true
  7558. },
  7559. ]
  7560. ))
  7561. characterMakers.push(() => makeCharacter(
  7562. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7563. {
  7564. front: {
  7565. height: math.unit(6, "feet"),
  7566. weight: math.unit(78, "kg"),
  7567. name: "Front",
  7568. image: {
  7569. source: "./media/characters/kane/front.svg",
  7570. extra: 978 / 899
  7571. }
  7572. },
  7573. },
  7574. [
  7575. {
  7576. name: "Normal",
  7577. height: math.unit(2.1, "m"),
  7578. },
  7579. {
  7580. name: "Macro",
  7581. height: math.unit(1, "km"),
  7582. default: true
  7583. },
  7584. ]
  7585. ))
  7586. characterMakers.push(() => makeCharacter(
  7587. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7588. {
  7589. front: {
  7590. height: math.unit(6, "feet"),
  7591. weight: math.unit(200, "kg"),
  7592. name: "Front",
  7593. image: {
  7594. source: "./media/characters/tegon/front.svg",
  7595. bottom: 0.01,
  7596. extra: 1
  7597. }
  7598. },
  7599. },
  7600. [
  7601. {
  7602. name: "Micro",
  7603. height: math.unit(1, "inch")
  7604. },
  7605. {
  7606. name: "Normal",
  7607. height: math.unit(6 + 3 / 12, "feet"),
  7608. default: true
  7609. },
  7610. {
  7611. name: "Macro",
  7612. height: math.unit(300, "feet")
  7613. },
  7614. {
  7615. name: "Megamacro",
  7616. height: math.unit(69, "miles")
  7617. },
  7618. ]
  7619. ))
  7620. characterMakers.push(() => makeCharacter(
  7621. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7622. {
  7623. side: {
  7624. height: math.unit(6, "feet"),
  7625. weight: math.unit(2304, "lbs"),
  7626. name: "Side",
  7627. image: {
  7628. source: "./media/characters/arcturax/side.svg",
  7629. extra: 790 / 376,
  7630. bottom: 0.01
  7631. }
  7632. },
  7633. },
  7634. [
  7635. {
  7636. name: "Micro",
  7637. height: math.unit(2, "inch")
  7638. },
  7639. {
  7640. name: "Normal",
  7641. height: math.unit(6, "feet")
  7642. },
  7643. {
  7644. name: "Macro",
  7645. height: math.unit(39, "feet"),
  7646. default: true
  7647. },
  7648. {
  7649. name: "Megamacro",
  7650. height: math.unit(7, "miles")
  7651. },
  7652. ]
  7653. ))
  7654. characterMakers.push(() => makeCharacter(
  7655. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7656. {
  7657. front: {
  7658. height: math.unit(6, "feet"),
  7659. weight: math.unit(50, "lbs"),
  7660. name: "Front",
  7661. image: {
  7662. source: "./media/characters/sentri/front.svg",
  7663. extra: 1750 / 1570,
  7664. bottom: 0.025
  7665. }
  7666. },
  7667. frontAlt: {
  7668. height: math.unit(6, "feet"),
  7669. weight: math.unit(50, "lbs"),
  7670. name: "Front (Alt)",
  7671. image: {
  7672. source: "./media/characters/sentri/front-alt.svg",
  7673. extra: 1750 / 1570,
  7674. bottom: 0.025
  7675. }
  7676. },
  7677. },
  7678. [
  7679. {
  7680. name: "Normal",
  7681. height: math.unit(15, "feet"),
  7682. default: true
  7683. },
  7684. {
  7685. name: "Macro",
  7686. height: math.unit(2500, "feet")
  7687. }
  7688. ]
  7689. ))
  7690. characterMakers.push(() => makeCharacter(
  7691. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7692. {
  7693. front: {
  7694. height: math.unit(5 + 8 / 12, "feet"),
  7695. weight: math.unit(130, "lbs"),
  7696. name: "Front",
  7697. image: {
  7698. source: "./media/characters/corvin/front.svg",
  7699. extra: 1803 / 1629
  7700. }
  7701. },
  7702. frontShirt: {
  7703. height: math.unit(5 + 8 / 12, "feet"),
  7704. weight: math.unit(130, "lbs"),
  7705. name: "Front (Shirt)",
  7706. image: {
  7707. source: "./media/characters/corvin/front-shirt.svg",
  7708. extra: 1803 / 1629
  7709. }
  7710. },
  7711. frontPoncho: {
  7712. height: math.unit(5 + 8 / 12, "feet"),
  7713. weight: math.unit(130, "lbs"),
  7714. name: "Front (Poncho)",
  7715. image: {
  7716. source: "./media/characters/corvin/front-poncho.svg",
  7717. extra: 1803 / 1629
  7718. }
  7719. },
  7720. side: {
  7721. height: math.unit(5 + 8 / 12, "feet"),
  7722. weight: math.unit(130, "lbs"),
  7723. name: "Side",
  7724. image: {
  7725. source: "./media/characters/corvin/side.svg",
  7726. extra: 1012 / 945
  7727. }
  7728. },
  7729. back: {
  7730. height: math.unit(5 + 8 / 12, "feet"),
  7731. weight: math.unit(130, "lbs"),
  7732. name: "Back",
  7733. image: {
  7734. source: "./media/characters/corvin/back.svg",
  7735. extra: 1803 / 1629
  7736. }
  7737. },
  7738. },
  7739. [
  7740. {
  7741. name: "Micro",
  7742. height: math.unit(3, "inches")
  7743. },
  7744. {
  7745. name: "Normal",
  7746. height: math.unit(5 + 8 / 12, "feet")
  7747. },
  7748. {
  7749. name: "Macro",
  7750. height: math.unit(300, "feet"),
  7751. default: true
  7752. },
  7753. {
  7754. name: "Megamacro",
  7755. height: math.unit(500, "miles")
  7756. }
  7757. ]
  7758. ))
  7759. characterMakers.push(() => makeCharacter(
  7760. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7761. {
  7762. front: {
  7763. height: math.unit(6, "feet"),
  7764. weight: math.unit(135, "lbs"),
  7765. name: "Front",
  7766. image: {
  7767. source: "./media/characters/q/front.svg",
  7768. extra: 854 / 752,
  7769. bottom: 0.005
  7770. }
  7771. },
  7772. back: {
  7773. height: math.unit(6, "feet"),
  7774. weight: math.unit(130, "lbs"),
  7775. name: "Back",
  7776. image: {
  7777. source: "./media/characters/q/back.svg",
  7778. extra: 854 / 752
  7779. }
  7780. },
  7781. },
  7782. [
  7783. {
  7784. name: "Macro",
  7785. height: math.unit(90, "feet"),
  7786. default: true
  7787. },
  7788. {
  7789. name: "Extra Macro",
  7790. height: math.unit(300, "feet"),
  7791. },
  7792. {
  7793. name: "BIG WALF",
  7794. height: math.unit(750, "feet"),
  7795. },
  7796. ]
  7797. ))
  7798. characterMakers.push(() => makeCharacter(
  7799. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7800. {
  7801. front: {
  7802. height: math.unit(6, "feet"),
  7803. weight: math.unit(150, "lbs"),
  7804. name: "Front",
  7805. image: {
  7806. source: "./media/characters/carley/front.svg",
  7807. extra: 3927 / 3540,
  7808. bottom: 29.2 / 735
  7809. }
  7810. }
  7811. },
  7812. [
  7813. {
  7814. name: "Normal",
  7815. height: math.unit(6 + 3 / 12, "feet")
  7816. },
  7817. {
  7818. name: "Macro",
  7819. height: math.unit(185, "feet"),
  7820. default: true
  7821. },
  7822. {
  7823. name: "Megamacro",
  7824. height: math.unit(8, "miles"),
  7825. },
  7826. ]
  7827. ))
  7828. characterMakers.push(() => makeCharacter(
  7829. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7830. {
  7831. front: {
  7832. height: math.unit(3, "feet"),
  7833. weight: math.unit(28, "lbs"),
  7834. name: "Front",
  7835. image: {
  7836. source: "./media/characters/citrine/front.svg"
  7837. }
  7838. }
  7839. },
  7840. [
  7841. {
  7842. name: "Normal",
  7843. height: math.unit(3, "feet"),
  7844. default: true
  7845. }
  7846. ]
  7847. ))
  7848. characterMakers.push(() => makeCharacter(
  7849. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7850. {
  7851. front: {
  7852. height: math.unit(14, "feet"),
  7853. weight: math.unit(1450, "kg"),
  7854. capacity: math.unit(15, "people"),
  7855. name: "Front",
  7856. image: {
  7857. source: "./media/characters/aura-starwind/front.svg",
  7858. extra: 1455 / 1335
  7859. }
  7860. },
  7861. side: {
  7862. height: math.unit(14, "feet"),
  7863. weight: math.unit(1450, "kg"),
  7864. capacity: math.unit(15, "people"),
  7865. name: "Side",
  7866. image: {
  7867. source: "./media/characters/aura-starwind/side.svg",
  7868. extra: 1654 / 1497
  7869. }
  7870. },
  7871. taur: {
  7872. height: math.unit(18, "feet"),
  7873. weight: math.unit(5500, "kg"),
  7874. capacity: math.unit(50, "people"),
  7875. name: "Taur",
  7876. image: {
  7877. source: "./media/characters/aura-starwind/taur.svg",
  7878. extra: 1760 / 1650
  7879. }
  7880. },
  7881. feral: {
  7882. height: math.unit(46, "feet"),
  7883. weight: math.unit(25000, "kg"),
  7884. capacity: math.unit(120, "people"),
  7885. name: "Feral",
  7886. image: {
  7887. source: "./media/characters/aura-starwind/feral.svg"
  7888. }
  7889. },
  7890. },
  7891. [
  7892. {
  7893. name: "Normal",
  7894. height: math.unit(14, "feet"),
  7895. default: true
  7896. },
  7897. {
  7898. name: "Macro",
  7899. height: math.unit(50, "meters")
  7900. },
  7901. {
  7902. name: "Megamacro",
  7903. height: math.unit(5000, "meters")
  7904. },
  7905. {
  7906. name: "Gigamacro",
  7907. height: math.unit(100000, "kilometers")
  7908. },
  7909. ]
  7910. ))
  7911. characterMakers.push(() => makeCharacter(
  7912. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7913. {
  7914. front: {
  7915. height: math.unit(2 + 7 / 12, "feet"),
  7916. weight: math.unit(32, "lbs"),
  7917. name: "Front",
  7918. image: {
  7919. source: "./media/characters/rivet/front.svg",
  7920. extra: 1716 / 1658,
  7921. bottom: 0.03
  7922. }
  7923. },
  7924. foot: {
  7925. height: math.unit(0.551, "feet"),
  7926. name: "Rivet's Foot",
  7927. image: {
  7928. source: "./media/characters/rivet/foot.svg"
  7929. },
  7930. rename: true
  7931. }
  7932. },
  7933. [
  7934. {
  7935. name: "Micro",
  7936. height: math.unit(1.5, "inches"),
  7937. },
  7938. {
  7939. name: "Normal",
  7940. height: math.unit(2 + 7 / 12, "feet"),
  7941. default: true
  7942. },
  7943. {
  7944. name: "Macro",
  7945. height: math.unit(85, "feet")
  7946. },
  7947. {
  7948. name: "Megamacro",
  7949. height: math.unit(2.2, "km")
  7950. }
  7951. ]
  7952. ))
  7953. characterMakers.push(() => makeCharacter(
  7954. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7955. {
  7956. front: {
  7957. height: math.unit(5 + 9 / 12, "feet"),
  7958. weight: math.unit(150, "lbs"),
  7959. name: "Front",
  7960. image: {
  7961. source: "./media/characters/coffee/front.svg",
  7962. extra: 3666 / 3032,
  7963. bottom: 0.04
  7964. }
  7965. },
  7966. foot: {
  7967. height: math.unit(1.29, "feet"),
  7968. name: "Foot",
  7969. image: {
  7970. source: "./media/characters/coffee/foot.svg"
  7971. }
  7972. },
  7973. },
  7974. [
  7975. {
  7976. name: "Micro",
  7977. height: math.unit(2, "inches"),
  7978. },
  7979. {
  7980. name: "Normal",
  7981. height: math.unit(5 + 9 / 12, "feet"),
  7982. default: true
  7983. },
  7984. {
  7985. name: "Macro",
  7986. height: math.unit(800, "feet")
  7987. },
  7988. {
  7989. name: "Megamacro",
  7990. height: math.unit(25, "miles")
  7991. }
  7992. ]
  7993. ))
  7994. characterMakers.push(() => makeCharacter(
  7995. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7996. {
  7997. front: {
  7998. height: math.unit(6, "feet"),
  7999. weight: math.unit(200, "lbs"),
  8000. name: "Front",
  8001. image: {
  8002. source: "./media/characters/chari-gal/front.svg",
  8003. extra: 1568 / 1385,
  8004. bottom: 0.047
  8005. }
  8006. },
  8007. gigantamax: {
  8008. height: math.unit(6 * 16, "feet"),
  8009. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8010. name: "Gigantamax",
  8011. image: {
  8012. source: "./media/characters/chari-gal/gigantamax.svg",
  8013. extra: 1124 / 888,
  8014. bottom: 0.03
  8015. }
  8016. },
  8017. },
  8018. [
  8019. {
  8020. name: "Normal",
  8021. height: math.unit(5 + 7 / 12, "feet")
  8022. },
  8023. {
  8024. name: "Macro",
  8025. height: math.unit(200, "feet"),
  8026. default: true
  8027. }
  8028. ]
  8029. ))
  8030. characterMakers.push(() => makeCharacter(
  8031. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8032. {
  8033. front: {
  8034. height: math.unit(6, "feet"),
  8035. weight: math.unit(150, "lbs"),
  8036. name: "Front",
  8037. image: {
  8038. source: "./media/characters/nova/front.svg",
  8039. extra: 5000 / 4722,
  8040. bottom: 0.02
  8041. }
  8042. }
  8043. },
  8044. [
  8045. {
  8046. name: "Micro-",
  8047. height: math.unit(0.8, "inches")
  8048. },
  8049. {
  8050. name: "Micro",
  8051. height: math.unit(2, "inches"),
  8052. default: true
  8053. },
  8054. ]
  8055. ))
  8056. characterMakers.push(() => makeCharacter(
  8057. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8058. {
  8059. front: {
  8060. height: math.unit(3 + 1 / 12, "feet"),
  8061. weight: math.unit(21.7, "lbs"),
  8062. name: "Front",
  8063. image: {
  8064. source: "./media/characters/argent/front.svg",
  8065. extra: 1471 / 1331,
  8066. bottom: 100.8 / 1575.5
  8067. }
  8068. }
  8069. },
  8070. [
  8071. {
  8072. name: "Micro",
  8073. height: math.unit(2, "inches")
  8074. },
  8075. {
  8076. name: "Normal",
  8077. height: math.unit(3 + 1 / 12, "feet"),
  8078. default: true
  8079. },
  8080. {
  8081. name: "Macro",
  8082. height: math.unit(120, "feet")
  8083. },
  8084. ]
  8085. ))
  8086. characterMakers.push(() => makeCharacter(
  8087. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8088. {
  8089. lamp: {
  8090. height: math.unit(7 * 1559 / 989, "feet"),
  8091. name: "Magic Lamp",
  8092. image: {
  8093. source: "./media/characters/mira-al-cul/lamp.svg",
  8094. extra: 1617 / 1559
  8095. }
  8096. },
  8097. front: {
  8098. height: math.unit(7, "feet"),
  8099. name: "Front",
  8100. image: {
  8101. source: "./media/characters/mira-al-cul/front.svg",
  8102. extra: 1044 / 990
  8103. }
  8104. },
  8105. },
  8106. [
  8107. {
  8108. name: "Heavily Restricted",
  8109. height: math.unit(7 * 1559 / 989, "feet")
  8110. },
  8111. {
  8112. name: "Freshly Freed",
  8113. height: math.unit(50 * 1559 / 989, "feet")
  8114. },
  8115. {
  8116. name: "World Encompassing",
  8117. height: math.unit(10000 * 1559 / 989, "miles")
  8118. },
  8119. {
  8120. name: "Galactic",
  8121. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8122. },
  8123. {
  8124. name: "Palmed Universe",
  8125. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8126. default: true
  8127. },
  8128. {
  8129. name: "Multiversal Matriarch",
  8130. height: math.unit(8.87e10, "yottameters")
  8131. },
  8132. {
  8133. name: "Void Mother",
  8134. height: math.unit(3.14e110, "yottaparsecs")
  8135. },
  8136. {
  8137. name: "Toying with Transcendence",
  8138. height: math.unit(1e307, "meters")
  8139. },
  8140. ]
  8141. ))
  8142. characterMakers.push(() => makeCharacter(
  8143. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8144. {
  8145. front: {
  8146. height: math.unit(17 + 1 / 12, "feet"),
  8147. weight: math.unit(476.2 * 5, "lbs"),
  8148. name: "Front",
  8149. image: {
  8150. source: "./media/characters/kuro-shi-uchū/front.svg",
  8151. extra: 2329 / 1835,
  8152. bottom: 0.02
  8153. }
  8154. },
  8155. },
  8156. [
  8157. {
  8158. name: "Micro",
  8159. height: math.unit(2, "inches")
  8160. },
  8161. {
  8162. name: "Normal",
  8163. height: math.unit(12, "meters")
  8164. },
  8165. {
  8166. name: "Planetary",
  8167. height: math.unit(0.00929, "AU"),
  8168. default: true
  8169. },
  8170. {
  8171. name: "Universal",
  8172. height: math.unit(20, "gigaparsecs")
  8173. },
  8174. ]
  8175. ))
  8176. characterMakers.push(() => makeCharacter(
  8177. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8178. {
  8179. front: {
  8180. height: math.unit(5 + 2 / 12, "feet"),
  8181. weight: math.unit(120, "lbs"),
  8182. name: "Front",
  8183. image: {
  8184. source: "./media/characters/katherine/front.svg",
  8185. extra: 2075 / 1969
  8186. }
  8187. },
  8188. dress: {
  8189. height: math.unit(5 + 2 / 12, "feet"),
  8190. weight: math.unit(120, "lbs"),
  8191. name: "Dress",
  8192. image: {
  8193. source: "./media/characters/katherine/dress.svg",
  8194. extra: 2258 / 2064
  8195. }
  8196. },
  8197. },
  8198. [
  8199. {
  8200. name: "Micro",
  8201. height: math.unit(1, "inches"),
  8202. default: true
  8203. },
  8204. {
  8205. name: "Normal",
  8206. height: math.unit(5 + 2 / 12, "feet")
  8207. },
  8208. {
  8209. name: "Macro",
  8210. height: math.unit(100, "meters")
  8211. },
  8212. {
  8213. name: "Megamacro",
  8214. height: math.unit(80, "miles")
  8215. },
  8216. ]
  8217. ))
  8218. characterMakers.push(() => makeCharacter(
  8219. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8220. {
  8221. front: {
  8222. height: math.unit(7 + 8 / 12, "feet"),
  8223. weight: math.unit(250, "lbs"),
  8224. name: "Front",
  8225. image: {
  8226. source: "./media/characters/yevis/front.svg",
  8227. extra: 1938 / 1755
  8228. }
  8229. }
  8230. },
  8231. [
  8232. {
  8233. name: "Mortal",
  8234. height: math.unit(7 + 8 / 12, "feet")
  8235. },
  8236. {
  8237. name: "Battle",
  8238. height: math.unit(25 + 11 / 12, "feet")
  8239. },
  8240. {
  8241. name: "Wrath",
  8242. height: math.unit(1654 + 11 / 12, "feet")
  8243. },
  8244. {
  8245. name: "Planet Destroyer",
  8246. height: math.unit(12000, "miles")
  8247. },
  8248. {
  8249. name: "Galaxy Conqueror",
  8250. height: math.unit(1.45, "zettameters"),
  8251. default: true
  8252. },
  8253. {
  8254. name: "Universal War",
  8255. height: math.unit(184, "gigaparsecs")
  8256. },
  8257. {
  8258. name: "Eternity War",
  8259. height: math.unit(1.98e55, "yottaparsecs")
  8260. },
  8261. ]
  8262. ))
  8263. characterMakers.push(() => makeCharacter(
  8264. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8265. {
  8266. front: {
  8267. height: math.unit(5 + 8 / 12, "feet"),
  8268. weight: math.unit(63, "kg"),
  8269. name: "Front",
  8270. image: {
  8271. source: "./media/characters/xavier/front.svg",
  8272. extra: 944 / 883
  8273. }
  8274. },
  8275. frontStretch: {
  8276. height: math.unit(5 + 8 / 12, "feet"),
  8277. weight: math.unit(63, "kg"),
  8278. name: "Stretching",
  8279. image: {
  8280. source: "./media/characters/xavier/front-stretch.svg",
  8281. extra: 962 / 820
  8282. }
  8283. },
  8284. },
  8285. [
  8286. {
  8287. name: "Normal",
  8288. height: math.unit(5 + 8 / 12, "feet")
  8289. },
  8290. {
  8291. name: "Macro",
  8292. height: math.unit(100, "meters"),
  8293. default: true
  8294. },
  8295. {
  8296. name: "McLargeHuge",
  8297. height: math.unit(10, "miles")
  8298. },
  8299. ]
  8300. ))
  8301. characterMakers.push(() => makeCharacter(
  8302. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8303. {
  8304. front: {
  8305. height: math.unit(5 + 5 / 12, "feet"),
  8306. weight: math.unit(150, "lb"),
  8307. name: "Front",
  8308. image: {
  8309. source: "./media/characters/joshii/front.svg",
  8310. extra: 765 / 653,
  8311. bottom: 51 / 816
  8312. }
  8313. },
  8314. foot: {
  8315. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8316. name: "Foot",
  8317. image: {
  8318. source: "./media/characters/joshii/foot.svg"
  8319. }
  8320. },
  8321. },
  8322. [
  8323. {
  8324. name: "Micro",
  8325. height: math.unit(2, "inches"),
  8326. default: true
  8327. },
  8328. {
  8329. name: "Normal",
  8330. height: math.unit(5 + 5 / 12, "feet")
  8331. },
  8332. {
  8333. name: "Macro",
  8334. height: math.unit(785, "feet")
  8335. },
  8336. {
  8337. name: "Megamacro",
  8338. height: math.unit(24.5, "miles")
  8339. },
  8340. ]
  8341. ))
  8342. characterMakers.push(() => makeCharacter(
  8343. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8344. {
  8345. front: {
  8346. height: math.unit(6, "feet"),
  8347. weight: math.unit(150, "lb"),
  8348. name: "Front",
  8349. image: {
  8350. source: "./media/characters/goddess-elizabeth/front.svg",
  8351. extra: 1800 / 1525,
  8352. bottom: 0.005
  8353. }
  8354. },
  8355. foot: {
  8356. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8357. name: "Foot",
  8358. image: {
  8359. source: "./media/characters/goddess-elizabeth/foot.svg"
  8360. }
  8361. },
  8362. mouth: {
  8363. height: math.unit(6, "feet"),
  8364. name: "Mouth",
  8365. image: {
  8366. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8367. }
  8368. },
  8369. },
  8370. [
  8371. {
  8372. name: "Micro",
  8373. height: math.unit(12, "feet")
  8374. },
  8375. {
  8376. name: "Normal",
  8377. height: math.unit(80, "miles"),
  8378. default: true
  8379. },
  8380. {
  8381. name: "Macro",
  8382. height: math.unit(15000, "parsecs")
  8383. },
  8384. ]
  8385. ))
  8386. characterMakers.push(() => makeCharacter(
  8387. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8388. {
  8389. front: {
  8390. height: math.unit(5 + 9 / 12, "feet"),
  8391. weight: math.unit(144, "lb"),
  8392. name: "Front",
  8393. image: {
  8394. source: "./media/characters/kara/front.svg"
  8395. }
  8396. },
  8397. feet: {
  8398. height: math.unit(6 / 6.765, "feet"),
  8399. name: "Kara's Feet",
  8400. rename: true,
  8401. image: {
  8402. source: "./media/characters/kara/feet.svg"
  8403. }
  8404. },
  8405. },
  8406. [
  8407. {
  8408. name: "Normal",
  8409. height: math.unit(5 + 9 / 12, "feet")
  8410. },
  8411. {
  8412. name: "Macro",
  8413. height: math.unit(174, "feet"),
  8414. default: true
  8415. },
  8416. ]
  8417. ))
  8418. characterMakers.push(() => makeCharacter(
  8419. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8420. {
  8421. front: {
  8422. height: math.unit(18, "feet"),
  8423. weight: math.unit(4050, "lb"),
  8424. name: "Front",
  8425. image: {
  8426. source: "./media/characters/tyrone/front.svg",
  8427. extra: 2405 / 2270,
  8428. bottom: 182 / 2587
  8429. }
  8430. },
  8431. },
  8432. [
  8433. {
  8434. name: "Normal",
  8435. height: math.unit(18, "feet"),
  8436. default: true
  8437. },
  8438. {
  8439. name: "Macro",
  8440. height: math.unit(300, "feet")
  8441. },
  8442. {
  8443. name: "Megamacro",
  8444. height: math.unit(15, "km")
  8445. },
  8446. {
  8447. name: "Gigamacro",
  8448. height: math.unit(500, "km")
  8449. },
  8450. {
  8451. name: "Teramacro",
  8452. height: math.unit(0.5, "gigameters")
  8453. },
  8454. {
  8455. name: "Omnimacro",
  8456. height: math.unit(1e252, "yottauniverse")
  8457. },
  8458. ]
  8459. ))
  8460. characterMakers.push(() => makeCharacter(
  8461. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8462. {
  8463. front: {
  8464. height: math.unit(7 + 8 / 12, "feet"),
  8465. weight: math.unit(120, "lb"),
  8466. name: "Front",
  8467. image: {
  8468. source: "./media/characters/danny/front.svg",
  8469. extra: 1490 / 1350
  8470. }
  8471. },
  8472. back: {
  8473. height: math.unit(7 + 8 / 12, "feet"),
  8474. weight: math.unit(120, "lb"),
  8475. name: "Back",
  8476. image: {
  8477. source: "./media/characters/danny/back.svg",
  8478. extra: 1490 / 1350
  8479. }
  8480. },
  8481. },
  8482. [
  8483. {
  8484. name: "Normal",
  8485. height: math.unit(7 + 8 / 12, "feet"),
  8486. default: true
  8487. },
  8488. ]
  8489. ))
  8490. characterMakers.push(() => makeCharacter(
  8491. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8492. {
  8493. front: {
  8494. height: math.unit(3.5, "inches"),
  8495. weight: math.unit(19, "grams"),
  8496. name: "Front",
  8497. image: {
  8498. source: "./media/characters/mallow/front.svg",
  8499. extra: 471 / 431
  8500. }
  8501. },
  8502. back: {
  8503. height: math.unit(3.5, "inches"),
  8504. weight: math.unit(19, "grams"),
  8505. name: "Back",
  8506. image: {
  8507. source: "./media/characters/mallow/back.svg",
  8508. extra: 471 / 431
  8509. }
  8510. },
  8511. },
  8512. [
  8513. {
  8514. name: "Normal",
  8515. height: math.unit(3.5, "inches"),
  8516. default: true
  8517. },
  8518. ]
  8519. ))
  8520. characterMakers.push(() => makeCharacter(
  8521. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8522. {
  8523. front: {
  8524. height: math.unit(9, "feet"),
  8525. weight: math.unit(230, "kg"),
  8526. name: "Front",
  8527. image: {
  8528. source: "./media/characters/starry-aqua/front.svg"
  8529. }
  8530. },
  8531. back: {
  8532. height: math.unit(9, "feet"),
  8533. weight: math.unit(230, "kg"),
  8534. name: "Back",
  8535. image: {
  8536. source: "./media/characters/starry-aqua/back.svg"
  8537. }
  8538. },
  8539. hand: {
  8540. height: math.unit(9 * 0.1168, "feet"),
  8541. name: "Hand",
  8542. image: {
  8543. source: "./media/characters/starry-aqua/hand.svg"
  8544. }
  8545. },
  8546. foot: {
  8547. height: math.unit(9 * 0.18, "feet"),
  8548. name: "Foot",
  8549. image: {
  8550. source: "./media/characters/starry-aqua/foot.svg"
  8551. }
  8552. }
  8553. },
  8554. [
  8555. {
  8556. name: "Micro",
  8557. height: math.unit(3, "inches")
  8558. },
  8559. {
  8560. name: "Normal",
  8561. height: math.unit(9, "feet")
  8562. },
  8563. {
  8564. name: "Macro",
  8565. height: math.unit(300, "feet"),
  8566. default: true
  8567. },
  8568. {
  8569. name: "Megamacro",
  8570. height: math.unit(3200, "feet")
  8571. }
  8572. ]
  8573. ))
  8574. characterMakers.push(() => makeCharacter(
  8575. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8576. {
  8577. front: {
  8578. height: math.unit(6, "feet"),
  8579. weight: math.unit(230, "lb"),
  8580. name: "Front",
  8581. image: {
  8582. source: "./media/characters/luka/front.svg",
  8583. extra: 1,
  8584. bottom: 0.025
  8585. }
  8586. },
  8587. },
  8588. [
  8589. {
  8590. name: "Normal",
  8591. height: math.unit(12 + 8 / 12, "feet"),
  8592. default: true
  8593. },
  8594. {
  8595. name: "Minimacro",
  8596. height: math.unit(20, "feet")
  8597. },
  8598. {
  8599. name: "Macro",
  8600. height: math.unit(250, "feet")
  8601. },
  8602. {
  8603. name: "Megamacro",
  8604. height: math.unit(5, "miles")
  8605. },
  8606. {
  8607. name: "Gigamacro",
  8608. height: math.unit(8000, "miles")
  8609. },
  8610. ]
  8611. ))
  8612. characterMakers.push(() => makeCharacter(
  8613. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8614. {
  8615. front: {
  8616. height: math.unit(6, "feet"),
  8617. weight: math.unit(150, "lb"),
  8618. name: "Front",
  8619. image: {
  8620. source: "./media/characters/natalie-nightring/front.svg",
  8621. extra: 1,
  8622. bottom: 0.06
  8623. }
  8624. },
  8625. },
  8626. [
  8627. {
  8628. name: "Uh Oh",
  8629. height: math.unit(0.1, "mm")
  8630. },
  8631. {
  8632. name: "Small",
  8633. height: math.unit(3, "inches")
  8634. },
  8635. {
  8636. name: "Human Scale",
  8637. height: math.unit(6, "feet")
  8638. },
  8639. {
  8640. name: "Librarian",
  8641. height: math.unit(50, "feet"),
  8642. default: true
  8643. },
  8644. {
  8645. name: "Immense",
  8646. height: math.unit(200, "miles")
  8647. },
  8648. ]
  8649. ))
  8650. characterMakers.push(() => makeCharacter(
  8651. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8652. {
  8653. front: {
  8654. height: math.unit(6, "feet"),
  8655. weight: math.unit(180, "lbs"),
  8656. name: "Front",
  8657. image: {
  8658. source: "./media/characters/danni-rosie/front.svg",
  8659. extra: 1260 / 1128,
  8660. bottom: 0.022
  8661. }
  8662. },
  8663. },
  8664. [
  8665. {
  8666. name: "Micro",
  8667. height: math.unit(2, "inches"),
  8668. default: true
  8669. },
  8670. ]
  8671. ))
  8672. characterMakers.push(() => makeCharacter(
  8673. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8674. {
  8675. front: {
  8676. height: math.unit(5 + 9 / 12, "feet"),
  8677. weight: math.unit(220, "lb"),
  8678. name: "Front",
  8679. image: {
  8680. source: "./media/characters/samantha-kruse/front.svg",
  8681. extra: (985 / 935),
  8682. bottom: 0.03
  8683. }
  8684. },
  8685. frontUndressed: {
  8686. height: math.unit(5 + 9 / 12, "feet"),
  8687. weight: math.unit(220, "lb"),
  8688. name: "Front (Undressed)",
  8689. image: {
  8690. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8691. extra: (973 / 923),
  8692. bottom: 0.025
  8693. }
  8694. },
  8695. fat: {
  8696. height: math.unit(5 + 9 / 12, "feet"),
  8697. weight: math.unit(900, "lb"),
  8698. name: "Front (Fat)",
  8699. image: {
  8700. source: "./media/characters/samantha-kruse/fat.svg",
  8701. extra: 2688 / 2561
  8702. }
  8703. },
  8704. },
  8705. [
  8706. {
  8707. name: "Normal",
  8708. height: math.unit(5 + 9 / 12, "feet"),
  8709. default: true
  8710. }
  8711. ]
  8712. ))
  8713. characterMakers.push(() => makeCharacter(
  8714. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8715. {
  8716. back: {
  8717. height: math.unit(5 + 4 / 12, "feet"),
  8718. weight: math.unit(4963, "lb"),
  8719. name: "Back",
  8720. image: {
  8721. source: "./media/characters/amelia-rosie/back.svg",
  8722. extra: 1113 / 963,
  8723. bottom: 0.01
  8724. }
  8725. },
  8726. },
  8727. [
  8728. {
  8729. name: "Level 0",
  8730. height: math.unit(5 + 4 / 12, "feet")
  8731. },
  8732. {
  8733. name: "Level 1",
  8734. height: math.unit(164597, "feet"),
  8735. default: true
  8736. },
  8737. {
  8738. name: "Level 2",
  8739. height: math.unit(956243, "miles")
  8740. },
  8741. {
  8742. name: "Level 3",
  8743. height: math.unit(29421709423, "miles")
  8744. },
  8745. {
  8746. name: "Level 4",
  8747. height: math.unit(154, "lightyears")
  8748. },
  8749. {
  8750. name: "Level 5",
  8751. height: math.unit(4738272, "lightyears")
  8752. },
  8753. {
  8754. name: "Level 6",
  8755. height: math.unit(145787152896, "lightyears")
  8756. },
  8757. ]
  8758. ))
  8759. characterMakers.push(() => makeCharacter(
  8760. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8761. {
  8762. front: {
  8763. height: math.unit(5 + 11 / 12, "feet"),
  8764. weight: math.unit(65, "kg"),
  8765. name: "Front",
  8766. image: {
  8767. source: "./media/characters/rook-kitara/front.svg",
  8768. extra: 1347 / 1274,
  8769. bottom: 0.005
  8770. }
  8771. },
  8772. },
  8773. [
  8774. {
  8775. name: "Totally Unfair",
  8776. height: math.unit(1.8, "mm")
  8777. },
  8778. {
  8779. name: "Lap Rookie",
  8780. height: math.unit(1.4, "feet")
  8781. },
  8782. {
  8783. name: "Normal",
  8784. height: math.unit(5 + 11 / 12, "feet"),
  8785. default: true
  8786. },
  8787. {
  8788. name: "How Did This Happen",
  8789. height: math.unit(80, "miles")
  8790. }
  8791. ]
  8792. ))
  8793. characterMakers.push(() => makeCharacter(
  8794. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8795. {
  8796. front: {
  8797. height: math.unit(7, "feet"),
  8798. weight: math.unit(300, "lb"),
  8799. name: "Front",
  8800. image: {
  8801. source: "./media/characters/pisces/front.svg",
  8802. extra: 2255 / 2115,
  8803. bottom: 0.03
  8804. }
  8805. },
  8806. back: {
  8807. height: math.unit(7, "feet"),
  8808. weight: math.unit(300, "lb"),
  8809. name: "Back",
  8810. image: {
  8811. source: "./media/characters/pisces/back.svg",
  8812. extra: 2146 / 2055,
  8813. bottom: 0.04
  8814. }
  8815. },
  8816. },
  8817. [
  8818. {
  8819. name: "Normal",
  8820. height: math.unit(7, "feet"),
  8821. default: true
  8822. },
  8823. {
  8824. name: "Swimming Pool",
  8825. height: math.unit(12.2, "meters")
  8826. },
  8827. {
  8828. name: "Olympic Swimming Pool",
  8829. height: math.unit(56.3, "meters")
  8830. },
  8831. {
  8832. name: "Lake Superior",
  8833. height: math.unit(93900, "meters")
  8834. },
  8835. {
  8836. name: "Mediterranean Sea",
  8837. height: math.unit(644457, "meters")
  8838. },
  8839. {
  8840. name: "World's Oceans",
  8841. height: math.unit(4567491, "meters")
  8842. },
  8843. ]
  8844. ))
  8845. characterMakers.push(() => makeCharacter(
  8846. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8847. {
  8848. front: {
  8849. height: math.unit(2.3, "meters"),
  8850. weight: math.unit(120, "kg"),
  8851. name: "Front",
  8852. image: {
  8853. source: "./media/characters/zelas/front.svg"
  8854. }
  8855. },
  8856. side: {
  8857. height: math.unit(2.3, "meters"),
  8858. weight: math.unit(120, "kg"),
  8859. name: "Side",
  8860. image: {
  8861. source: "./media/characters/zelas/side.svg"
  8862. }
  8863. },
  8864. back: {
  8865. height: math.unit(2.3, "meters"),
  8866. weight: math.unit(120, "kg"),
  8867. name: "Back",
  8868. image: {
  8869. source: "./media/characters/zelas/back.svg"
  8870. }
  8871. },
  8872. foot: {
  8873. height: math.unit(1.116, "feet"),
  8874. name: "Foot",
  8875. image: {
  8876. source: "./media/characters/zelas/foot.svg"
  8877. }
  8878. },
  8879. },
  8880. [
  8881. {
  8882. name: "Normal",
  8883. height: math.unit(2.3, "meters")
  8884. },
  8885. {
  8886. name: "Macro",
  8887. height: math.unit(30, "meters"),
  8888. default: true
  8889. },
  8890. ]
  8891. ))
  8892. characterMakers.push(() => makeCharacter(
  8893. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8894. {
  8895. front: {
  8896. height: math.unit(1, "inch"),
  8897. weight: math.unit(0.21, "grams"),
  8898. name: "Front",
  8899. image: {
  8900. source: "./media/characters/talbot/front.svg",
  8901. extra: 594 / 544
  8902. }
  8903. },
  8904. },
  8905. [
  8906. {
  8907. name: "Micro",
  8908. height: math.unit(1, "inch"),
  8909. default: true
  8910. },
  8911. ]
  8912. ))
  8913. characterMakers.push(() => makeCharacter(
  8914. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8915. {
  8916. front: {
  8917. height: math.unit(3 + 3 / 12, "feet"),
  8918. weight: math.unit(51.8, "lb"),
  8919. name: "Front",
  8920. image: {
  8921. source: "./media/characters/fliss/front.svg",
  8922. extra: 840 / 640
  8923. }
  8924. },
  8925. },
  8926. [
  8927. {
  8928. name: "Teeny Tiny",
  8929. height: math.unit(1, "mm")
  8930. },
  8931. {
  8932. name: "Small",
  8933. height: math.unit(1, "inch"),
  8934. default: true
  8935. },
  8936. {
  8937. name: "Standard Sylveon",
  8938. height: math.unit(3 + 3 / 12, "feet")
  8939. },
  8940. {
  8941. name: "Large Nuisance",
  8942. height: math.unit(33, "feet")
  8943. },
  8944. {
  8945. name: "City Filler",
  8946. height: math.unit(3000, "feet")
  8947. },
  8948. {
  8949. name: "New Horizon",
  8950. height: math.unit(6000, "miles")
  8951. },
  8952. ]
  8953. ))
  8954. characterMakers.push(() => makeCharacter(
  8955. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8956. {
  8957. front: {
  8958. height: math.unit(5, "cm"),
  8959. weight: math.unit(1.94, "g"),
  8960. name: "Front",
  8961. image: {
  8962. source: "./media/characters/fleta/front.svg",
  8963. extra: 835 / 803
  8964. }
  8965. },
  8966. back: {
  8967. height: math.unit(5, "cm"),
  8968. weight: math.unit(1.94, "g"),
  8969. name: "Back",
  8970. image: {
  8971. source: "./media/characters/fleta/back.svg",
  8972. extra: 835 / 803
  8973. }
  8974. },
  8975. },
  8976. [
  8977. {
  8978. name: "Micro",
  8979. height: math.unit(5, "cm"),
  8980. default: true
  8981. },
  8982. ]
  8983. ))
  8984. characterMakers.push(() => makeCharacter(
  8985. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8986. {
  8987. front: {
  8988. height: math.unit(6, "feet"),
  8989. weight: math.unit(225, "lb"),
  8990. name: "Front",
  8991. image: {
  8992. source: "./media/characters/dominic/front.svg",
  8993. extra: 1770 / 1620,
  8994. bottom: 0.025
  8995. }
  8996. },
  8997. back: {
  8998. height: math.unit(6, "feet"),
  8999. weight: math.unit(225, "lb"),
  9000. name: "Back",
  9001. image: {
  9002. source: "./media/characters/dominic/back.svg",
  9003. extra: 1745 / 1620,
  9004. bottom: 0.065
  9005. }
  9006. },
  9007. },
  9008. [
  9009. {
  9010. name: "Nano",
  9011. height: math.unit(0.1, "mm")
  9012. },
  9013. {
  9014. name: "Micro-",
  9015. height: math.unit(1, "mm")
  9016. },
  9017. {
  9018. name: "Micro",
  9019. height: math.unit(4, "inches")
  9020. },
  9021. {
  9022. name: "Normal",
  9023. height: math.unit(6 + 4 / 12, "feet"),
  9024. default: true
  9025. },
  9026. {
  9027. name: "Macro",
  9028. height: math.unit(115, "feet")
  9029. },
  9030. {
  9031. name: "Macro+",
  9032. height: math.unit(955, "feet")
  9033. },
  9034. {
  9035. name: "Megamacro",
  9036. height: math.unit(8990, "feet")
  9037. },
  9038. {
  9039. name: "Gigmacro",
  9040. height: math.unit(9310, "miles")
  9041. },
  9042. {
  9043. name: "Teramacro",
  9044. height: math.unit(1567005010, "miles")
  9045. },
  9046. {
  9047. name: "Examacro",
  9048. height: math.unit(1425, "parsecs")
  9049. },
  9050. ]
  9051. ))
  9052. characterMakers.push(() => makeCharacter(
  9053. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9054. {
  9055. front: {
  9056. height: math.unit(400, "feet"),
  9057. weight: math.unit(44444444, "lb"),
  9058. name: "Front",
  9059. image: {
  9060. source: "./media/characters/major-colonel/front.svg"
  9061. }
  9062. },
  9063. back: {
  9064. height: math.unit(400, "feet"),
  9065. weight: math.unit(44444444, "lb"),
  9066. name: "Back",
  9067. image: {
  9068. source: "./media/characters/major-colonel/back.svg"
  9069. }
  9070. },
  9071. },
  9072. [
  9073. {
  9074. name: "Macro",
  9075. height: math.unit(400, "feet"),
  9076. default: true
  9077. },
  9078. ]
  9079. ))
  9080. characterMakers.push(() => makeCharacter(
  9081. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9082. {
  9083. catFront: {
  9084. height: math.unit(6, "feet"),
  9085. weight: math.unit(120, "lb"),
  9086. name: "Front (Cat Side)",
  9087. image: {
  9088. source: "./media/characters/axel-lycan/cat-front.svg",
  9089. extra: 430 / 402,
  9090. bottom: 43 / 472.35
  9091. }
  9092. },
  9093. catBack: {
  9094. height: math.unit(6, "feet"),
  9095. weight: math.unit(120, "lb"),
  9096. name: "Back (Cat Side)",
  9097. image: {
  9098. source: "./media/characters/axel-lycan/cat-back.svg",
  9099. extra: 447 / 419,
  9100. bottom: 23.3 / 469
  9101. }
  9102. },
  9103. wolfFront: {
  9104. height: math.unit(6, "feet"),
  9105. weight: math.unit(120, "lb"),
  9106. name: "Front (Wolf Side)",
  9107. image: {
  9108. source: "./media/characters/axel-lycan/wolf-front.svg",
  9109. extra: 485 / 456,
  9110. bottom: 19 / 504
  9111. }
  9112. },
  9113. wolfBack: {
  9114. height: math.unit(6, "feet"),
  9115. weight: math.unit(120, "lb"),
  9116. name: "Back (Wolf Side)",
  9117. image: {
  9118. source: "./media/characters/axel-lycan/wolf-back.svg",
  9119. extra: 475 / 438,
  9120. bottom: 39.2 / 514
  9121. }
  9122. },
  9123. },
  9124. [
  9125. {
  9126. name: "Macro",
  9127. height: math.unit(1, "km"),
  9128. default: true
  9129. },
  9130. ]
  9131. ))
  9132. characterMakers.push(() => makeCharacter(
  9133. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9134. {
  9135. front: {
  9136. height: math.unit(5 + 9 / 12, "feet"),
  9137. weight: math.unit(175, "lb"),
  9138. name: "Front",
  9139. image: {
  9140. source: "./media/characters/vanrel-hyena/front.svg",
  9141. extra: 1086 / 1010,
  9142. bottom: 0.04
  9143. }
  9144. },
  9145. },
  9146. [
  9147. {
  9148. name: "Normal",
  9149. height: math.unit(5 + 9 / 12, "feet"),
  9150. default: true
  9151. },
  9152. ]
  9153. ))
  9154. characterMakers.push(() => makeCharacter(
  9155. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9156. {
  9157. front: {
  9158. height: math.unit(6, "feet"),
  9159. weight: math.unit(103, "lb"),
  9160. name: "Front",
  9161. image: {
  9162. source: "./media/characters/abbott-absol/front.svg",
  9163. extra: 2010 / 1842
  9164. }
  9165. },
  9166. },
  9167. [
  9168. {
  9169. name: "Megamicro",
  9170. height: math.unit(0.1, "mm")
  9171. },
  9172. {
  9173. name: "Micro",
  9174. height: math.unit(1, "inch")
  9175. },
  9176. {
  9177. name: "Normal",
  9178. height: math.unit(6, "feet"),
  9179. default: true
  9180. },
  9181. ]
  9182. ))
  9183. characterMakers.push(() => makeCharacter(
  9184. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9185. {
  9186. front: {
  9187. height: math.unit(6, "feet"),
  9188. weight: math.unit(264, "lb"),
  9189. name: "Front",
  9190. image: {
  9191. source: "./media/characters/hector/front.svg",
  9192. extra: 2280 / 2130,
  9193. bottom: 0.07
  9194. }
  9195. },
  9196. },
  9197. [
  9198. {
  9199. name: "Normal",
  9200. height: math.unit(12.25, "foot"),
  9201. default: true
  9202. },
  9203. {
  9204. name: "Macro",
  9205. height: math.unit(160, "feet")
  9206. },
  9207. ]
  9208. ))
  9209. characterMakers.push(() => makeCharacter(
  9210. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9211. {
  9212. front: {
  9213. height: math.unit(6, "feet"),
  9214. weight: math.unit(150, "lb"),
  9215. name: "Front",
  9216. image: {
  9217. source: "./media/characters/sal/front.svg",
  9218. extra: 1846 / 1699,
  9219. bottom: 0.04
  9220. }
  9221. },
  9222. },
  9223. [
  9224. {
  9225. name: "Megamacro",
  9226. height: math.unit(10, "miles"),
  9227. default: true
  9228. },
  9229. ]
  9230. ))
  9231. characterMakers.push(() => makeCharacter(
  9232. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9233. {
  9234. front: {
  9235. height: math.unit(3, "meters"),
  9236. weight: math.unit(450, "kg"),
  9237. name: "front",
  9238. image: {
  9239. source: "./media/characters/ranger/front.svg",
  9240. extra: 2401 / 2243,
  9241. bottom: 0.05
  9242. }
  9243. },
  9244. },
  9245. [
  9246. {
  9247. name: "Normal",
  9248. height: math.unit(3, "meters"),
  9249. default: true
  9250. },
  9251. ]
  9252. ))
  9253. characterMakers.push(() => makeCharacter(
  9254. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9255. {
  9256. front: {
  9257. height: math.unit(14, "feet"),
  9258. weight: math.unit(800, "kg"),
  9259. name: "Front",
  9260. image: {
  9261. source: "./media/characters/theresa/front.svg",
  9262. extra: 3575 / 3346,
  9263. bottom: 0.03
  9264. }
  9265. },
  9266. },
  9267. [
  9268. {
  9269. name: "Normal",
  9270. height: math.unit(14, "feet"),
  9271. default: true
  9272. },
  9273. ]
  9274. ))
  9275. characterMakers.push(() => makeCharacter(
  9276. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9277. {
  9278. front: {
  9279. height: math.unit(6, "feet"),
  9280. weight: math.unit(3, "kg"),
  9281. name: "Front",
  9282. image: {
  9283. source: "./media/characters/ine/front.svg",
  9284. extra: 678 / 539,
  9285. bottom: 0.023
  9286. }
  9287. },
  9288. },
  9289. [
  9290. {
  9291. name: "Normal",
  9292. height: math.unit(2.265, "feet"),
  9293. default: true
  9294. },
  9295. ]
  9296. ))
  9297. characterMakers.push(() => makeCharacter(
  9298. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9299. {
  9300. front: {
  9301. height: math.unit(5, "feet"),
  9302. weight: math.unit(30, "kg"),
  9303. name: "Front",
  9304. image: {
  9305. source: "./media/characters/vial/front.svg",
  9306. extra: 1365 / 1277,
  9307. bottom: 0.04
  9308. }
  9309. },
  9310. },
  9311. [
  9312. {
  9313. name: "Normal",
  9314. height: math.unit(5, "feet"),
  9315. default: true
  9316. },
  9317. ]
  9318. ))
  9319. characterMakers.push(() => makeCharacter(
  9320. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9321. {
  9322. side: {
  9323. height: math.unit(3.4, "meters"),
  9324. weight: math.unit(1000, "lb"),
  9325. name: "Side",
  9326. image: {
  9327. source: "./media/characters/rovoska/side.svg",
  9328. extra: 4403 / 1515
  9329. }
  9330. },
  9331. },
  9332. [
  9333. {
  9334. name: "Normal",
  9335. height: math.unit(3.4, "meters"),
  9336. default: true
  9337. },
  9338. ]
  9339. ))
  9340. characterMakers.push(() => makeCharacter(
  9341. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9342. {
  9343. front: {
  9344. height: math.unit(8, "feet"),
  9345. weight: math.unit(315, "lb"),
  9346. name: "Front",
  9347. image: {
  9348. source: "./media/characters/gunner-rotthbauer/front.svg"
  9349. }
  9350. },
  9351. back: {
  9352. height: math.unit(8, "feet"),
  9353. weight: math.unit(315, "lb"),
  9354. name: "Back",
  9355. image: {
  9356. source: "./media/characters/gunner-rotthbauer/back.svg"
  9357. }
  9358. },
  9359. },
  9360. [
  9361. {
  9362. name: "Micro",
  9363. height: math.unit(3.5, "inches")
  9364. },
  9365. {
  9366. name: "Normal",
  9367. height: math.unit(8, "feet"),
  9368. default: true
  9369. },
  9370. {
  9371. name: "Macro",
  9372. height: math.unit(250, "feet")
  9373. },
  9374. {
  9375. name: "Megamacro",
  9376. height: math.unit(1, "AU")
  9377. },
  9378. ]
  9379. ))
  9380. characterMakers.push(() => makeCharacter(
  9381. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9382. {
  9383. front: {
  9384. height: math.unit(5 + 5 / 12, "feet"),
  9385. weight: math.unit(140, "lb"),
  9386. name: "Front",
  9387. image: {
  9388. source: "./media/characters/allatia/front.svg",
  9389. extra: 1227 / 1180,
  9390. bottom: 0.027
  9391. }
  9392. },
  9393. },
  9394. [
  9395. {
  9396. name: "Normal",
  9397. height: math.unit(5 + 5 / 12, "feet")
  9398. },
  9399. {
  9400. name: "Macro",
  9401. height: math.unit(250, "feet"),
  9402. default: true
  9403. },
  9404. {
  9405. name: "Megamacro",
  9406. height: math.unit(8, "miles")
  9407. }
  9408. ]
  9409. ))
  9410. characterMakers.push(() => makeCharacter(
  9411. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9412. {
  9413. front: {
  9414. height: math.unit(6, "feet"),
  9415. weight: math.unit(120, "lb"),
  9416. name: "Front",
  9417. image: {
  9418. source: "./media/characters/tene/front.svg",
  9419. extra: 1728 / 1578,
  9420. bottom: 0.022
  9421. }
  9422. },
  9423. stomping: {
  9424. height: math.unit(2.025, "meters"),
  9425. weight: math.unit(120, "lb"),
  9426. name: "Stomping",
  9427. image: {
  9428. source: "./media/characters/tene/stomping.svg",
  9429. extra: 938 / 873,
  9430. bottom: 0.01
  9431. }
  9432. },
  9433. sitting: {
  9434. height: math.unit(1, "meter"),
  9435. weight: math.unit(120, "lb"),
  9436. name: "Sitting",
  9437. image: {
  9438. source: "./media/characters/tene/sitting.svg",
  9439. extra: 437 / 415,
  9440. bottom: 0.1
  9441. }
  9442. },
  9443. feral: {
  9444. height: math.unit(3.9, "feet"),
  9445. weight: math.unit(250, "lb"),
  9446. name: "Feral",
  9447. image: {
  9448. source: "./media/characters/tene/feral.svg",
  9449. extra: 717 / 458,
  9450. bottom: 0.179
  9451. }
  9452. },
  9453. },
  9454. [
  9455. {
  9456. name: "Normal",
  9457. height: math.unit(6, "feet")
  9458. },
  9459. {
  9460. name: "Macro",
  9461. height: math.unit(300, "feet"),
  9462. default: true
  9463. },
  9464. {
  9465. name: "Megamacro",
  9466. height: math.unit(5, "miles")
  9467. },
  9468. ]
  9469. ))
  9470. characterMakers.push(() => makeCharacter(
  9471. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9472. {
  9473. side: {
  9474. height: math.unit(6, "feet"),
  9475. name: "Side",
  9476. image: {
  9477. source: "./media/characters/evander/side.svg",
  9478. extra: 877 / 477
  9479. }
  9480. },
  9481. },
  9482. [
  9483. {
  9484. name: "Normal",
  9485. height: math.unit(0.83, "meters"),
  9486. default: true
  9487. },
  9488. ]
  9489. ))
  9490. characterMakers.push(() => makeCharacter(
  9491. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9492. {
  9493. front: {
  9494. height: math.unit(12, "feet"),
  9495. weight: math.unit(1000, "lb"),
  9496. name: "Front",
  9497. image: {
  9498. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9499. extra: 1762 / 1611
  9500. }
  9501. },
  9502. back: {
  9503. height: math.unit(12, "feet"),
  9504. weight: math.unit(1000, "lb"),
  9505. name: "Back",
  9506. image: {
  9507. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9508. extra: 1762 / 1611
  9509. }
  9510. },
  9511. },
  9512. [
  9513. {
  9514. name: "Normal",
  9515. height: math.unit(12, "feet"),
  9516. default: true
  9517. },
  9518. {
  9519. name: "Kaiju",
  9520. height: math.unit(150, "feet")
  9521. },
  9522. ]
  9523. ))
  9524. characterMakers.push(() => makeCharacter(
  9525. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9526. {
  9527. front: {
  9528. height: math.unit(6, "feet"),
  9529. weight: math.unit(150, "lb"),
  9530. name: "Front",
  9531. image: {
  9532. source: "./media/characters/zero-alurus/front.svg"
  9533. }
  9534. },
  9535. back: {
  9536. height: math.unit(6, "feet"),
  9537. weight: math.unit(150, "lb"),
  9538. name: "Back",
  9539. image: {
  9540. source: "./media/characters/zero-alurus/back.svg"
  9541. }
  9542. },
  9543. },
  9544. [
  9545. {
  9546. name: "Normal",
  9547. height: math.unit(5 + 10 / 12, "feet")
  9548. },
  9549. {
  9550. name: "Macro",
  9551. height: math.unit(60, "feet"),
  9552. default: true
  9553. },
  9554. {
  9555. name: "Macro+",
  9556. height: math.unit(450, "feet")
  9557. },
  9558. ]
  9559. ))
  9560. characterMakers.push(() => makeCharacter(
  9561. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9562. {
  9563. front: {
  9564. height: math.unit(6, "feet"),
  9565. weight: math.unit(200, "lb"),
  9566. name: "Front",
  9567. image: {
  9568. source: "./media/characters/mega-shi/front.svg",
  9569. extra: 1279 / 1250,
  9570. bottom: 0.02
  9571. }
  9572. },
  9573. back: {
  9574. height: math.unit(6, "feet"),
  9575. weight: math.unit(200, "lb"),
  9576. name: "Back",
  9577. image: {
  9578. source: "./media/characters/mega-shi/back.svg",
  9579. extra: 1279 / 1250,
  9580. bottom: 0.02
  9581. }
  9582. },
  9583. },
  9584. [
  9585. {
  9586. name: "Micro",
  9587. height: math.unit(16 + 6 / 12, "feet")
  9588. },
  9589. {
  9590. name: "Third Dimension",
  9591. height: math.unit(40, "meters")
  9592. },
  9593. {
  9594. name: "Normal",
  9595. height: math.unit(660, "feet"),
  9596. default: true
  9597. },
  9598. {
  9599. name: "Megamacro",
  9600. height: math.unit(10, "miles")
  9601. },
  9602. {
  9603. name: "Planetary Launch",
  9604. height: math.unit(500, "miles")
  9605. },
  9606. {
  9607. name: "Interstellar",
  9608. height: math.unit(1e9, "miles")
  9609. },
  9610. {
  9611. name: "Leaving the Universe",
  9612. height: math.unit(1, "gigaparsec")
  9613. },
  9614. {
  9615. name: "Travelling Universes",
  9616. height: math.unit(30e15, "parsecs")
  9617. },
  9618. ]
  9619. ))
  9620. characterMakers.push(() => makeCharacter(
  9621. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9622. {
  9623. front: {
  9624. height: math.unit(6, "feet"),
  9625. weight: math.unit(150, "lb"),
  9626. name: "Front",
  9627. image: {
  9628. source: "./media/characters/odyssey/front.svg",
  9629. extra: 1782 / 1582,
  9630. bottom: 0.01
  9631. }
  9632. },
  9633. side: {
  9634. height: math.unit(5.7, "feet"),
  9635. weight: math.unit(140, "lb"),
  9636. name: "Side",
  9637. image: {
  9638. source: "./media/characters/odyssey/side.svg",
  9639. extra: 6462 / 5700
  9640. }
  9641. },
  9642. },
  9643. [
  9644. {
  9645. name: "Normal",
  9646. height: math.unit(5 + 4 / 12, "feet")
  9647. },
  9648. {
  9649. name: "Macro",
  9650. height: math.unit(1, "km")
  9651. },
  9652. {
  9653. name: "Megamacro",
  9654. height: math.unit(3000, "km")
  9655. },
  9656. {
  9657. name: "Gigamacro",
  9658. height: math.unit(1, "AU"),
  9659. default: true
  9660. },
  9661. {
  9662. name: "Omniversal",
  9663. height: math.unit(100e14, "lightyears")
  9664. },
  9665. ]
  9666. ))
  9667. characterMakers.push(() => makeCharacter(
  9668. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9669. {
  9670. front: {
  9671. height: math.unit(6, "feet"),
  9672. weight: math.unit(300, "lb"),
  9673. name: "Front",
  9674. image: {
  9675. source: "./media/characters/mekuto/front.svg",
  9676. extra: 921 / 832,
  9677. bottom: 0.03
  9678. }
  9679. },
  9680. hand: {
  9681. height: math.unit(6 / 10.24, "feet"),
  9682. name: "Hand",
  9683. image: {
  9684. source: "./media/characters/mekuto/hand.svg"
  9685. }
  9686. },
  9687. foot: {
  9688. height: math.unit(6 / 5.05, "feet"),
  9689. name: "Foot",
  9690. image: {
  9691. source: "./media/characters/mekuto/foot.svg"
  9692. }
  9693. },
  9694. },
  9695. [
  9696. {
  9697. name: "Minimicro",
  9698. height: math.unit(0.2, "inches")
  9699. },
  9700. {
  9701. name: "Micro",
  9702. height: math.unit(1.5, "inches")
  9703. },
  9704. {
  9705. name: "Normal",
  9706. height: math.unit(5 + 11 / 12, "feet"),
  9707. default: true
  9708. },
  9709. {
  9710. name: "Minimacro",
  9711. height: math.unit(17 + 9 / 12, "feet")
  9712. },
  9713. {
  9714. name: "Macro",
  9715. height: math.unit(177.5, "feet")
  9716. },
  9717. {
  9718. name: "Megamacro",
  9719. height: math.unit(152, "miles")
  9720. },
  9721. ]
  9722. ))
  9723. characterMakers.push(() => makeCharacter(
  9724. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9725. {
  9726. front: {
  9727. height: math.unit(6.5, "inches"),
  9728. weight: math.unit(13, "oz"),
  9729. name: "Front",
  9730. image: {
  9731. source: "./media/characters/dafydd-tomos/front.svg",
  9732. extra: 2990 / 2603,
  9733. bottom: 0.03
  9734. }
  9735. },
  9736. },
  9737. [
  9738. {
  9739. name: "Micro",
  9740. height: math.unit(6.5, "inches"),
  9741. default: true
  9742. },
  9743. ]
  9744. ))
  9745. characterMakers.push(() => makeCharacter(
  9746. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9747. {
  9748. front: {
  9749. height: math.unit(6, "feet"),
  9750. weight: math.unit(150, "lb"),
  9751. name: "Front",
  9752. image: {
  9753. source: "./media/characters/splinter/front.svg",
  9754. extra: 2990 / 2882,
  9755. bottom: 0.04
  9756. }
  9757. },
  9758. back: {
  9759. height: math.unit(6, "feet"),
  9760. weight: math.unit(150, "lb"),
  9761. name: "Back",
  9762. image: {
  9763. source: "./media/characters/splinter/back.svg",
  9764. extra: 2990 / 2882,
  9765. bottom: 0.04
  9766. }
  9767. },
  9768. },
  9769. [
  9770. {
  9771. name: "Normal",
  9772. height: math.unit(6, "feet")
  9773. },
  9774. {
  9775. name: "Macro",
  9776. height: math.unit(230, "meters"),
  9777. default: true
  9778. },
  9779. ]
  9780. ))
  9781. characterMakers.push(() => makeCharacter(
  9782. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9783. {
  9784. front: {
  9785. height: math.unit(4 + 10 / 12, "feet"),
  9786. weight: math.unit(480, "lb"),
  9787. name: "Front",
  9788. image: {
  9789. source: "./media/characters/snow-gabumon/front.svg",
  9790. extra: 1140 / 963,
  9791. bottom: 0.058
  9792. }
  9793. },
  9794. back: {
  9795. height: math.unit(4 + 10 / 12, "feet"),
  9796. weight: math.unit(480, "lb"),
  9797. name: "Back",
  9798. image: {
  9799. source: "./media/characters/snow-gabumon/back.svg",
  9800. extra: 1115 / 962,
  9801. bottom: 0.041
  9802. }
  9803. },
  9804. frontUndresed: {
  9805. height: math.unit(4 + 10 / 12, "feet"),
  9806. weight: math.unit(480, "lb"),
  9807. name: "Front (Undressed)",
  9808. image: {
  9809. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9810. extra: 1061 / 960,
  9811. bottom: 0.045
  9812. }
  9813. },
  9814. },
  9815. [
  9816. {
  9817. name: "Micro",
  9818. height: math.unit(1, "inch")
  9819. },
  9820. {
  9821. name: "Normal",
  9822. height: math.unit(4 + 10 / 12, "feet"),
  9823. default: true
  9824. },
  9825. {
  9826. name: "Macro",
  9827. height: math.unit(200, "feet")
  9828. },
  9829. {
  9830. name: "Megamacro",
  9831. height: math.unit(120, "miles")
  9832. },
  9833. {
  9834. name: "Gigamacro",
  9835. height: math.unit(9800, "miles")
  9836. },
  9837. ]
  9838. ))
  9839. characterMakers.push(() => makeCharacter(
  9840. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9841. {
  9842. front: {
  9843. height: math.unit(1.7, "meters"),
  9844. weight: math.unit(140, "lb"),
  9845. name: "Front",
  9846. image: {
  9847. source: "./media/characters/moody/front.svg",
  9848. extra: 3226 / 3007,
  9849. bottom: 0.087
  9850. }
  9851. },
  9852. },
  9853. [
  9854. {
  9855. name: "Micro",
  9856. height: math.unit(1, "mm")
  9857. },
  9858. {
  9859. name: "Normal",
  9860. height: math.unit(1.7, "meters"),
  9861. default: true
  9862. },
  9863. {
  9864. name: "Macro",
  9865. height: math.unit(80, "meters")
  9866. },
  9867. {
  9868. name: "Macro+",
  9869. height: math.unit(500, "meters")
  9870. },
  9871. ]
  9872. ))
  9873. characterMakers.push(() => makeCharacter(
  9874. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9875. {
  9876. front: {
  9877. height: math.unit(6, "feet"),
  9878. weight: math.unit(150, "lb"),
  9879. name: "Front",
  9880. image: {
  9881. source: "./media/characters/zyas/front.svg",
  9882. extra: 1180 / 1120,
  9883. bottom: 0.045
  9884. }
  9885. },
  9886. },
  9887. [
  9888. {
  9889. name: "Normal",
  9890. height: math.unit(10, "feet"),
  9891. default: true
  9892. },
  9893. {
  9894. name: "Macro",
  9895. height: math.unit(500, "feet")
  9896. },
  9897. {
  9898. name: "Megamacro",
  9899. height: math.unit(5, "miles")
  9900. },
  9901. {
  9902. name: "Teramacro",
  9903. height: math.unit(150000, "miles")
  9904. },
  9905. ]
  9906. ))
  9907. characterMakers.push(() => makeCharacter(
  9908. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9909. {
  9910. front: {
  9911. height: math.unit(6, "feet"),
  9912. weight: math.unit(150, "lb"),
  9913. name: "Front",
  9914. image: {
  9915. source: "./media/characters/cuon/front.svg",
  9916. extra: 1390 / 1320,
  9917. bottom: 0.008
  9918. }
  9919. },
  9920. },
  9921. [
  9922. {
  9923. name: "Micro",
  9924. height: math.unit(3, "inches")
  9925. },
  9926. {
  9927. name: "Normal",
  9928. height: math.unit(18 + 9 / 12, "feet"),
  9929. default: true
  9930. },
  9931. {
  9932. name: "Macro",
  9933. height: math.unit(360, "feet")
  9934. },
  9935. {
  9936. name: "Megamacro",
  9937. height: math.unit(360, "miles")
  9938. },
  9939. ]
  9940. ))
  9941. characterMakers.push(() => makeCharacter(
  9942. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9943. {
  9944. front: {
  9945. height: math.unit(2.4, "meters"),
  9946. weight: math.unit(70, "kg"),
  9947. name: "Front",
  9948. image: {
  9949. source: "./media/characters/nyanuxk/front.svg",
  9950. extra: 1172 / 1084,
  9951. bottom: 0.065
  9952. }
  9953. },
  9954. side: {
  9955. height: math.unit(2.4, "meters"),
  9956. weight: math.unit(70, "kg"),
  9957. name: "Side",
  9958. image: {
  9959. source: "./media/characters/nyanuxk/side.svg",
  9960. extra: 1190 / 1132,
  9961. bottom: 0.007
  9962. }
  9963. },
  9964. back: {
  9965. height: math.unit(2.4, "meters"),
  9966. weight: math.unit(70, "kg"),
  9967. name: "Back",
  9968. image: {
  9969. source: "./media/characters/nyanuxk/back.svg",
  9970. extra: 1200 / 1141,
  9971. bottom: 0.015
  9972. }
  9973. },
  9974. foot: {
  9975. height: math.unit(0.52, "meters"),
  9976. name: "Foot",
  9977. image: {
  9978. source: "./media/characters/nyanuxk/foot.svg"
  9979. }
  9980. },
  9981. },
  9982. [
  9983. {
  9984. name: "Micro",
  9985. height: math.unit(2, "cm")
  9986. },
  9987. {
  9988. name: "Normal",
  9989. height: math.unit(2.4, "meters"),
  9990. default: true
  9991. },
  9992. {
  9993. name: "Smaller Macro",
  9994. height: math.unit(120, "meters")
  9995. },
  9996. {
  9997. name: "Bigger Macro",
  9998. height: math.unit(1.2, "km")
  9999. },
  10000. {
  10001. name: "Megamacro",
  10002. height: math.unit(15, "kilometers")
  10003. },
  10004. {
  10005. name: "Gigamacro",
  10006. height: math.unit(2000, "km")
  10007. },
  10008. {
  10009. name: "Teramacro",
  10010. height: math.unit(500000, "km")
  10011. },
  10012. ]
  10013. ))
  10014. characterMakers.push(() => makeCharacter(
  10015. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10016. {
  10017. side: {
  10018. height: math.unit(6, "feet"),
  10019. name: "Side",
  10020. image: {
  10021. source: "./media/characters/ailbhe/side.svg",
  10022. extra: 757 / 464,
  10023. bottom: 0.041
  10024. }
  10025. },
  10026. },
  10027. [
  10028. {
  10029. name: "Normal",
  10030. height: math.unit(1.07, "meters"),
  10031. default: true
  10032. },
  10033. ]
  10034. ))
  10035. characterMakers.push(() => makeCharacter(
  10036. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10037. {
  10038. front: {
  10039. height: math.unit(6, "feet"),
  10040. weight: math.unit(120, "kg"),
  10041. name: "Front",
  10042. image: {
  10043. source: "./media/characters/zevulfius/front.svg",
  10044. extra: 965 / 903
  10045. }
  10046. },
  10047. side: {
  10048. height: math.unit(6, "feet"),
  10049. weight: math.unit(120, "kg"),
  10050. name: "Side",
  10051. image: {
  10052. source: "./media/characters/zevulfius/side.svg",
  10053. extra: 939 / 900
  10054. }
  10055. },
  10056. back: {
  10057. height: math.unit(6, "feet"),
  10058. weight: math.unit(120, "kg"),
  10059. name: "Back",
  10060. image: {
  10061. source: "./media/characters/zevulfius/back.svg",
  10062. extra: 918 / 854,
  10063. bottom: 0.005
  10064. }
  10065. },
  10066. foot: {
  10067. height: math.unit(6 / 3.72, "feet"),
  10068. name: "Foot",
  10069. image: {
  10070. source: "./media/characters/zevulfius/foot.svg"
  10071. }
  10072. },
  10073. },
  10074. [
  10075. {
  10076. name: "Macro",
  10077. height: math.unit(750, "meters")
  10078. },
  10079. {
  10080. name: "Megamacro",
  10081. height: math.unit(20, "km"),
  10082. default: true
  10083. },
  10084. {
  10085. name: "Gigamacro",
  10086. height: math.unit(2000, "km")
  10087. },
  10088. {
  10089. name: "Teramacro",
  10090. height: math.unit(250000, "km")
  10091. },
  10092. ]
  10093. ))
  10094. characterMakers.push(() => makeCharacter(
  10095. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10096. {
  10097. front: {
  10098. height: math.unit(100, "feet"),
  10099. weight: math.unit(350, "kg"),
  10100. name: "Front",
  10101. image: {
  10102. source: "./media/characters/rikes/front.svg",
  10103. extra: 1565 / 1483,
  10104. bottom: 0.017
  10105. }
  10106. },
  10107. },
  10108. [
  10109. {
  10110. name: "Macro",
  10111. height: math.unit(100, "feet"),
  10112. default: true
  10113. },
  10114. ]
  10115. ))
  10116. characterMakers.push(() => makeCharacter(
  10117. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10118. {
  10119. anthro: {
  10120. height: math.unit(8, "feet"),
  10121. weight: math.unit(120, "kg"),
  10122. name: "Anthro",
  10123. image: {
  10124. source: "./media/characters/adam-silver-mane/anthro.svg",
  10125. extra: 5743 / 5339,
  10126. bottom: 0.07
  10127. }
  10128. },
  10129. taur: {
  10130. height: math.unit(16, "feet"),
  10131. weight: math.unit(1500, "kg"),
  10132. name: "Taur",
  10133. image: {
  10134. source: "./media/characters/adam-silver-mane/taur.svg",
  10135. extra: 1713 / 1571,
  10136. bottom: 0.01
  10137. }
  10138. },
  10139. },
  10140. [
  10141. {
  10142. name: "Normal",
  10143. height: math.unit(8, "feet")
  10144. },
  10145. {
  10146. name: "Minimacro",
  10147. height: math.unit(80, "feet")
  10148. },
  10149. {
  10150. name: "Macro",
  10151. height: math.unit(800, "feet"),
  10152. default: true
  10153. },
  10154. {
  10155. name: "Megamacro",
  10156. height: math.unit(8000, "feet")
  10157. },
  10158. {
  10159. name: "Gigamacro",
  10160. height: math.unit(800, "miles")
  10161. },
  10162. {
  10163. name: "Teramacro",
  10164. height: math.unit(80000, "miles")
  10165. },
  10166. {
  10167. name: "Celestial",
  10168. height: math.unit(8e6, "miles")
  10169. },
  10170. {
  10171. name: "Star Dragon",
  10172. height: math.unit(800000, "parsecs")
  10173. },
  10174. {
  10175. name: "Godly",
  10176. height: math.unit(800, "teraparsecs")
  10177. },
  10178. ]
  10179. ))
  10180. characterMakers.push(() => makeCharacter(
  10181. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10182. {
  10183. front: {
  10184. height: math.unit(6, "feet"),
  10185. weight: math.unit(150, "lb"),
  10186. name: "Front",
  10187. image: {
  10188. source: "./media/characters/ky'owin/front.svg",
  10189. extra: 3888 / 3068,
  10190. bottom: 0.015
  10191. }
  10192. },
  10193. },
  10194. [
  10195. {
  10196. name: "Normal",
  10197. height: math.unit(6 + 8 / 12, "feet")
  10198. },
  10199. {
  10200. name: "Large",
  10201. height: math.unit(68, "feet")
  10202. },
  10203. {
  10204. name: "Macro",
  10205. height: math.unit(132, "feet")
  10206. },
  10207. {
  10208. name: "Macro+",
  10209. height: math.unit(340, "feet")
  10210. },
  10211. {
  10212. name: "Macro++",
  10213. height: math.unit(680, "feet"),
  10214. default: true
  10215. },
  10216. {
  10217. name: "Megamacro",
  10218. height: math.unit(1, "mile")
  10219. },
  10220. {
  10221. name: "Megamacro+",
  10222. height: math.unit(10, "miles")
  10223. },
  10224. ]
  10225. ))
  10226. characterMakers.push(() => makeCharacter(
  10227. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10228. {
  10229. front: {
  10230. height: math.unit(4, "feet"),
  10231. weight: math.unit(50, "lb"),
  10232. name: "Front",
  10233. image: {
  10234. source: "./media/characters/mal/front.svg",
  10235. extra: 785 / 724,
  10236. bottom: 0.07
  10237. }
  10238. },
  10239. },
  10240. [
  10241. {
  10242. name: "Micro",
  10243. height: math.unit(4, "inches")
  10244. },
  10245. {
  10246. name: "Normal",
  10247. height: math.unit(4, "feet"),
  10248. default: true
  10249. },
  10250. {
  10251. name: "Macro",
  10252. height: math.unit(200, "feet")
  10253. },
  10254. ]
  10255. ))
  10256. characterMakers.push(() => makeCharacter(
  10257. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10258. {
  10259. front: {
  10260. height: math.unit(6, "feet"),
  10261. weight: math.unit(150, "lb"),
  10262. name: "Front",
  10263. image: {
  10264. source: "./media/characters/jordan-deware/front.svg",
  10265. extra: 1191 / 1012
  10266. }
  10267. },
  10268. },
  10269. [
  10270. {
  10271. name: "Nano",
  10272. height: math.unit(0.01, "mm")
  10273. },
  10274. {
  10275. name: "Minimicro",
  10276. height: math.unit(1, "mm")
  10277. },
  10278. {
  10279. name: "Micro",
  10280. height: math.unit(0.5, "inches")
  10281. },
  10282. {
  10283. name: "Normal",
  10284. height: math.unit(4, "feet"),
  10285. default: true
  10286. },
  10287. {
  10288. name: "Minimacro",
  10289. height: math.unit(40, "meters")
  10290. },
  10291. {
  10292. name: "Small Macro",
  10293. height: math.unit(400, "meters")
  10294. },
  10295. {
  10296. name: "Macro",
  10297. height: math.unit(4, "miles")
  10298. },
  10299. {
  10300. name: "Megamacro",
  10301. height: math.unit(40, "miles")
  10302. },
  10303. {
  10304. name: "Megamacro+",
  10305. height: math.unit(400, "miles")
  10306. },
  10307. {
  10308. name: "Gigamacro",
  10309. height: math.unit(400000, "miles")
  10310. },
  10311. ]
  10312. ))
  10313. characterMakers.push(() => makeCharacter(
  10314. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10315. {
  10316. side: {
  10317. height: math.unit(6, "feet"),
  10318. weight: math.unit(150, "lb"),
  10319. name: "Side",
  10320. image: {
  10321. source: "./media/characters/kimiko/side.svg",
  10322. extra: 600 / 358
  10323. }
  10324. },
  10325. },
  10326. [
  10327. {
  10328. name: "Normal",
  10329. height: math.unit(15, "feet"),
  10330. default: true
  10331. },
  10332. {
  10333. name: "Macro",
  10334. height: math.unit(220, "feet")
  10335. },
  10336. {
  10337. name: "Macro+",
  10338. height: math.unit(1450, "feet")
  10339. },
  10340. {
  10341. name: "Megamacro",
  10342. height: math.unit(11500, "feet")
  10343. },
  10344. {
  10345. name: "Gigamacro",
  10346. height: math.unit(9500, "miles")
  10347. },
  10348. {
  10349. name: "Teramacro",
  10350. height: math.unit(2208005005, "miles")
  10351. },
  10352. {
  10353. name: "Examacro",
  10354. height: math.unit(2750, "parsecs")
  10355. },
  10356. {
  10357. name: "Zettamacro",
  10358. height: math.unit(101500, "parsecs")
  10359. },
  10360. ]
  10361. ))
  10362. characterMakers.push(() => makeCharacter(
  10363. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10364. {
  10365. front: {
  10366. height: math.unit(6, "feet"),
  10367. weight: math.unit(70, "kg"),
  10368. name: "Front",
  10369. image: {
  10370. source: "./media/characters/andrew-sleepy/front.svg"
  10371. }
  10372. },
  10373. side: {
  10374. height: math.unit(6, "feet"),
  10375. weight: math.unit(70, "kg"),
  10376. name: "Side",
  10377. image: {
  10378. source: "./media/characters/andrew-sleepy/side.svg"
  10379. }
  10380. },
  10381. },
  10382. [
  10383. {
  10384. name: "Micro",
  10385. height: math.unit(1, "mm"),
  10386. default: true
  10387. },
  10388. ]
  10389. ))
  10390. characterMakers.push(() => makeCharacter(
  10391. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10392. {
  10393. front: {
  10394. height: math.unit(6, "feet"),
  10395. weight: math.unit(150, "lb"),
  10396. name: "Front",
  10397. image: {
  10398. source: "./media/characters/judio/front.svg",
  10399. extra: 1258 / 1110
  10400. }
  10401. },
  10402. },
  10403. [
  10404. {
  10405. name: "Normal",
  10406. height: math.unit(5 + 6 / 12, "feet")
  10407. },
  10408. {
  10409. name: "Macro",
  10410. height: math.unit(1000, "feet"),
  10411. default: true
  10412. },
  10413. {
  10414. name: "Megamacro",
  10415. height: math.unit(10, "miles")
  10416. },
  10417. ]
  10418. ))
  10419. characterMakers.push(() => makeCharacter(
  10420. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10421. {
  10422. front: {
  10423. height: math.unit(6, "feet"),
  10424. weight: math.unit(68, "kg"),
  10425. name: "Front",
  10426. image: {
  10427. source: "./media/characters/nomaxice/front.svg",
  10428. extra: 1498 / 1073,
  10429. bottom: 0.075
  10430. }
  10431. },
  10432. foot: {
  10433. height: math.unit(1.1, "feet"),
  10434. name: "Foot",
  10435. image: {
  10436. source: "./media/characters/nomaxice/foot.svg"
  10437. }
  10438. },
  10439. },
  10440. [
  10441. {
  10442. name: "Micro",
  10443. height: math.unit(8, "cm")
  10444. },
  10445. {
  10446. name: "Norm",
  10447. height: math.unit(1.82, "m")
  10448. },
  10449. {
  10450. name: "Norm+",
  10451. height: math.unit(8.8, "feet")
  10452. },
  10453. {
  10454. name: "Big",
  10455. height: math.unit(8, "meters"),
  10456. default: true
  10457. },
  10458. {
  10459. name: "Macro",
  10460. height: math.unit(18, "meters")
  10461. },
  10462. {
  10463. name: "Macro+",
  10464. height: math.unit(88, "meters")
  10465. },
  10466. ]
  10467. ))
  10468. characterMakers.push(() => makeCharacter(
  10469. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10470. {
  10471. front: {
  10472. height: math.unit(12, "feet"),
  10473. weight: math.unit(1.5, "tons"),
  10474. name: "Front",
  10475. image: {
  10476. source: "./media/characters/dydros/front.svg",
  10477. extra: 863 / 800,
  10478. bottom: 0.015
  10479. }
  10480. },
  10481. back: {
  10482. height: math.unit(12, "feet"),
  10483. weight: math.unit(1.5, "tons"),
  10484. name: "Back",
  10485. image: {
  10486. source: "./media/characters/dydros/back.svg",
  10487. extra: 900 / 843,
  10488. bottom: 0.005
  10489. }
  10490. },
  10491. },
  10492. [
  10493. {
  10494. name: "Normal",
  10495. height: math.unit(12, "feet"),
  10496. default: true
  10497. },
  10498. ]
  10499. ))
  10500. characterMakers.push(() => makeCharacter(
  10501. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10502. {
  10503. front: {
  10504. height: math.unit(6, "feet"),
  10505. weight: math.unit(100, "kg"),
  10506. name: "Front",
  10507. image: {
  10508. source: "./media/characters/riggi/front.svg",
  10509. extra: 5787 / 5303
  10510. }
  10511. },
  10512. hyper: {
  10513. height: math.unit(6 * 5 / 3, "feet"),
  10514. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10515. name: "Hyper",
  10516. image: {
  10517. source: "./media/characters/riggi/hyper.svg",
  10518. extra: 3595 / 3485
  10519. }
  10520. },
  10521. },
  10522. [
  10523. {
  10524. name: "Small Macro",
  10525. height: math.unit(50, "feet")
  10526. },
  10527. {
  10528. name: "Default",
  10529. height: math.unit(200, "feet"),
  10530. default: true
  10531. },
  10532. {
  10533. name: "Loom",
  10534. height: math.unit(10000, "feet")
  10535. },
  10536. {
  10537. name: "Cruising Altitude",
  10538. height: math.unit(30000, "feet")
  10539. },
  10540. {
  10541. name: "Megamacro",
  10542. height: math.unit(100, "miles")
  10543. },
  10544. {
  10545. name: "Continent Sized",
  10546. height: math.unit(2800, "miles")
  10547. },
  10548. {
  10549. name: "Earth Sized",
  10550. height: math.unit(8000, "miles")
  10551. },
  10552. ]
  10553. ))
  10554. characterMakers.push(() => makeCharacter(
  10555. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10556. {
  10557. front: {
  10558. height: math.unit(6, "feet"),
  10559. weight: math.unit(250, "lb"),
  10560. name: "Front",
  10561. image: {
  10562. source: "./media/characters/alexi/front.svg",
  10563. extra: 3483 / 3291,
  10564. bottom: 0.04
  10565. }
  10566. },
  10567. back: {
  10568. height: math.unit(6, "feet"),
  10569. weight: math.unit(250, "lb"),
  10570. name: "Back",
  10571. image: {
  10572. source: "./media/characters/alexi/back.svg",
  10573. extra: 3533 / 3356,
  10574. bottom: 0.021
  10575. }
  10576. },
  10577. frontTransforming: {
  10578. height: math.unit(8.58, "feet"),
  10579. weight: math.unit(1300, "lb"),
  10580. name: "Transforming",
  10581. image: {
  10582. source: "./media/characters/alexi/front-transforming.svg",
  10583. extra: 437 / 409,
  10584. bottom: 19 / 458.66
  10585. }
  10586. },
  10587. frontTransformed: {
  10588. height: math.unit(12.5, "feet"),
  10589. weight: math.unit(4000, "lb"),
  10590. name: "Transformed",
  10591. image: {
  10592. source: "./media/characters/alexi/front-transformed.svg",
  10593. extra: 639 / 614,
  10594. bottom: 30.55 / 671
  10595. }
  10596. },
  10597. },
  10598. [
  10599. {
  10600. name: "Normal",
  10601. height: math.unit(14, "feet"),
  10602. default: true
  10603. },
  10604. {
  10605. name: "Minimacro",
  10606. height: math.unit(30, "meters")
  10607. },
  10608. {
  10609. name: "Macro",
  10610. height: math.unit(500, "meters")
  10611. },
  10612. {
  10613. name: "Megamacro",
  10614. height: math.unit(9000, "km")
  10615. },
  10616. {
  10617. name: "Teramacro",
  10618. height: math.unit(384000, "km")
  10619. },
  10620. ]
  10621. ))
  10622. characterMakers.push(() => makeCharacter(
  10623. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10624. {
  10625. front: {
  10626. height: math.unit(6, "feet"),
  10627. weight: math.unit(150, "lb"),
  10628. name: "Front",
  10629. image: {
  10630. source: "./media/characters/kayroo/front.svg",
  10631. extra: 1153 / 1038,
  10632. bottom: 0.06
  10633. }
  10634. },
  10635. foot: {
  10636. height: math.unit(6, "feet"),
  10637. weight: math.unit(150, "lb"),
  10638. name: "Foot",
  10639. image: {
  10640. source: "./media/characters/kayroo/foot.svg"
  10641. }
  10642. },
  10643. },
  10644. [
  10645. {
  10646. name: "Normal",
  10647. height: math.unit(8, "feet"),
  10648. default: true
  10649. },
  10650. {
  10651. name: "Minimacro",
  10652. height: math.unit(250, "feet")
  10653. },
  10654. {
  10655. name: "Macro",
  10656. height: math.unit(2800, "feet")
  10657. },
  10658. {
  10659. name: "Megamacro",
  10660. height: math.unit(5200, "feet")
  10661. },
  10662. {
  10663. name: "Gigamacro",
  10664. height: math.unit(27000, "feet")
  10665. },
  10666. {
  10667. name: "Omega",
  10668. height: math.unit(45000, "feet")
  10669. },
  10670. ]
  10671. ))
  10672. characterMakers.push(() => makeCharacter(
  10673. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10674. {
  10675. front: {
  10676. height: math.unit(18, "feet"),
  10677. weight: math.unit(5800, "lb"),
  10678. name: "Front",
  10679. image: {
  10680. source: "./media/characters/rhys/front.svg",
  10681. extra: 3386 / 3090,
  10682. bottom: 0.07
  10683. }
  10684. },
  10685. },
  10686. [
  10687. {
  10688. name: "Normal",
  10689. height: math.unit(18, "feet"),
  10690. default: true
  10691. },
  10692. {
  10693. name: "Working Size",
  10694. height: math.unit(200, "feet")
  10695. },
  10696. {
  10697. name: "Demolition Size",
  10698. height: math.unit(2000, "feet")
  10699. },
  10700. {
  10701. name: "Maximum Licensed Size",
  10702. height: math.unit(5, "miles")
  10703. },
  10704. {
  10705. name: "Maximum Observed Size",
  10706. height: math.unit(10, "yottameters")
  10707. },
  10708. ]
  10709. ))
  10710. characterMakers.push(() => makeCharacter(
  10711. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10712. {
  10713. front: {
  10714. height: math.unit(6, "feet"),
  10715. weight: math.unit(250, "lb"),
  10716. name: "Front",
  10717. image: {
  10718. source: "./media/characters/toto/front.svg",
  10719. extra: 527 / 479,
  10720. bottom: 0.05
  10721. }
  10722. },
  10723. },
  10724. [
  10725. {
  10726. name: "Micro",
  10727. height: math.unit(3, "feet")
  10728. },
  10729. {
  10730. name: "Normal",
  10731. height: math.unit(10, "feet")
  10732. },
  10733. {
  10734. name: "Macro",
  10735. height: math.unit(150, "feet"),
  10736. default: true
  10737. },
  10738. {
  10739. name: "Megamacro",
  10740. height: math.unit(1200, "feet")
  10741. },
  10742. ]
  10743. ))
  10744. characterMakers.push(() => makeCharacter(
  10745. { name: "King", species: ["lion"], tags: ["anthro"] },
  10746. {
  10747. back: {
  10748. height: math.unit(6, "feet"),
  10749. weight: math.unit(150, "lb"),
  10750. name: "Back",
  10751. image: {
  10752. source: "./media/characters/king/back.svg"
  10753. }
  10754. },
  10755. },
  10756. [
  10757. {
  10758. name: "Micro",
  10759. height: math.unit(2, "inches")
  10760. },
  10761. {
  10762. name: "Normal",
  10763. height: math.unit(8, "feet")
  10764. },
  10765. {
  10766. name: "Macro",
  10767. height: math.unit(200, "feet"),
  10768. default: true
  10769. },
  10770. {
  10771. name: "Megamacro",
  10772. height: math.unit(50, "miles")
  10773. },
  10774. ]
  10775. ))
  10776. characterMakers.push(() => makeCharacter(
  10777. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10778. {
  10779. anthro: {
  10780. height: math.unit(6 + 5 / 12, "feet"),
  10781. weight: math.unit(280, "lb"),
  10782. name: "Anthro",
  10783. image: {
  10784. source: "./media/characters/cordite/anthro.svg",
  10785. extra: 1986 / 1905,
  10786. bottom: 0.025
  10787. }
  10788. },
  10789. feral: {
  10790. height: math.unit(2, "feet"),
  10791. weight: math.unit(90, "lb"),
  10792. name: "Feral",
  10793. image: {
  10794. source: "./media/characters/cordite/feral.svg",
  10795. extra: 1260 / 755,
  10796. bottom: 0.05
  10797. }
  10798. },
  10799. },
  10800. [
  10801. {
  10802. name: "Normal",
  10803. height: math.unit(6 + 5 / 12, "feet"),
  10804. default: true
  10805. },
  10806. ]
  10807. ))
  10808. characterMakers.push(() => makeCharacter(
  10809. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10810. {
  10811. front: {
  10812. height: math.unit(6, "feet"),
  10813. weight: math.unit(150, "lb"),
  10814. name: "Front",
  10815. image: {
  10816. source: "./media/characters/pianostrong/front.svg",
  10817. extra: 6577 / 6254,
  10818. bottom: 0.02
  10819. }
  10820. },
  10821. side: {
  10822. height: math.unit(6, "feet"),
  10823. weight: math.unit(150, "lb"),
  10824. name: "Side",
  10825. image: {
  10826. source: "./media/characters/pianostrong/side.svg",
  10827. extra: 6106 / 5730
  10828. }
  10829. },
  10830. back: {
  10831. height: math.unit(6, "feet"),
  10832. weight: math.unit(150, "lb"),
  10833. name: "Back",
  10834. image: {
  10835. source: "./media/characters/pianostrong/back.svg",
  10836. extra: 6085 / 5733,
  10837. bottom: 0.01
  10838. }
  10839. },
  10840. },
  10841. [
  10842. {
  10843. name: "Macro",
  10844. height: math.unit(100, "feet")
  10845. },
  10846. {
  10847. name: "Macro+",
  10848. height: math.unit(300, "feet"),
  10849. default: true
  10850. },
  10851. {
  10852. name: "Macro++",
  10853. height: math.unit(1000, "feet")
  10854. },
  10855. ]
  10856. ))
  10857. characterMakers.push(() => makeCharacter(
  10858. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10859. {
  10860. front: {
  10861. height: math.unit(6, "feet"),
  10862. weight: math.unit(150, "lb"),
  10863. name: "Front",
  10864. image: {
  10865. source: "./media/characters/kona/front.svg",
  10866. extra: 2960 / 2629,
  10867. bottom: 0.005
  10868. }
  10869. },
  10870. },
  10871. [
  10872. {
  10873. name: "Normal",
  10874. height: math.unit(11 + 8 / 12, "feet")
  10875. },
  10876. {
  10877. name: "Macro",
  10878. height: math.unit(850, "feet"),
  10879. default: true
  10880. },
  10881. {
  10882. name: "Macro+",
  10883. height: math.unit(1.5, "km"),
  10884. default: true
  10885. },
  10886. {
  10887. name: "Megamacro",
  10888. height: math.unit(80, "miles")
  10889. },
  10890. {
  10891. name: "Gigamacro",
  10892. height: math.unit(3500, "miles")
  10893. },
  10894. ]
  10895. ))
  10896. characterMakers.push(() => makeCharacter(
  10897. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10898. {
  10899. side: {
  10900. height: math.unit(1.9, "meters"),
  10901. weight: math.unit(326, "kg"),
  10902. name: "Side",
  10903. image: {
  10904. source: "./media/characters/levi/side.svg",
  10905. extra: 1704 / 1334,
  10906. bottom: 0.02
  10907. }
  10908. },
  10909. },
  10910. [
  10911. {
  10912. name: "Normal",
  10913. height: math.unit(1.9, "meters"),
  10914. default: true
  10915. },
  10916. {
  10917. name: "Macro",
  10918. height: math.unit(20, "meters")
  10919. },
  10920. {
  10921. name: "Macro+",
  10922. height: math.unit(200, "meters")
  10923. },
  10924. {
  10925. name: "Megamacro",
  10926. height: math.unit(2, "km")
  10927. },
  10928. {
  10929. name: "Megamacro+",
  10930. height: math.unit(20, "km")
  10931. },
  10932. {
  10933. name: "Gigamacro",
  10934. height: math.unit(2500, "km")
  10935. },
  10936. {
  10937. name: "Gigamacro+",
  10938. height: math.unit(120000, "km")
  10939. },
  10940. {
  10941. name: "Teramacro",
  10942. height: math.unit(7.77e6, "km")
  10943. },
  10944. ]
  10945. ))
  10946. characterMakers.push(() => makeCharacter(
  10947. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10948. {
  10949. front: {
  10950. height: math.unit(6 + 4 / 12, "feet"),
  10951. weight: math.unit(188, "lb"),
  10952. name: "Front",
  10953. image: {
  10954. source: "./media/characters/bmc/front.svg",
  10955. extra: 1067 / 1022,
  10956. bottom: 0.047
  10957. }
  10958. },
  10959. },
  10960. [
  10961. {
  10962. name: "Human-sized",
  10963. height: math.unit(6 + 4 / 12, "feet")
  10964. },
  10965. {
  10966. name: "Small",
  10967. height: math.unit(250, "feet")
  10968. },
  10969. {
  10970. name: "Normal",
  10971. height: math.unit(1250, "feet"),
  10972. default: true
  10973. },
  10974. {
  10975. name: "Good Day",
  10976. height: math.unit(88, "miles")
  10977. },
  10978. {
  10979. name: "Largest Measured Size",
  10980. height: math.unit(11.2e6, "lightyears")
  10981. },
  10982. ]
  10983. ))
  10984. characterMakers.push(() => makeCharacter(
  10985. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10986. {
  10987. front: {
  10988. height: math.unit(20, "feet"),
  10989. weight: math.unit(2016, "kg"),
  10990. name: "Front",
  10991. image: {
  10992. source: "./media/characters/sven-the-kaiju/front.svg",
  10993. extra: 1479 / 1449,
  10994. bottom: 0.05
  10995. }
  10996. },
  10997. },
  10998. [
  10999. {
  11000. name: "Fairy",
  11001. height: math.unit(6, "inches")
  11002. },
  11003. {
  11004. name: "Normal",
  11005. height: math.unit(20, "feet"),
  11006. default: true
  11007. },
  11008. {
  11009. name: "Rampage",
  11010. height: math.unit(200, "feet")
  11011. },
  11012. {
  11013. name: "Archfey Forest Guardian",
  11014. height: math.unit(1, "mile")
  11015. },
  11016. ]
  11017. ))
  11018. characterMakers.push(() => makeCharacter(
  11019. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11020. {
  11021. front: {
  11022. height: math.unit(4, "meters"),
  11023. weight: math.unit(2, "tons"),
  11024. name: "Front",
  11025. image: {
  11026. source: "./media/characters/marik/front.svg",
  11027. extra: 1057 / 1003,
  11028. bottom: 0.08
  11029. }
  11030. },
  11031. },
  11032. [
  11033. {
  11034. name: "Normal",
  11035. height: math.unit(4, "meters"),
  11036. default: true
  11037. },
  11038. {
  11039. name: "Macro",
  11040. height: math.unit(20, "meters")
  11041. },
  11042. {
  11043. name: "Megamacro",
  11044. height: math.unit(50, "km")
  11045. },
  11046. {
  11047. name: "Gigamacro",
  11048. height: math.unit(100, "km")
  11049. },
  11050. {
  11051. name: "Alpha Macro",
  11052. height: math.unit(7.88e7, "yottameters")
  11053. },
  11054. ]
  11055. ))
  11056. characterMakers.push(() => makeCharacter(
  11057. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11058. {
  11059. front: {
  11060. height: math.unit(6, "feet"),
  11061. weight: math.unit(110, "lb"),
  11062. name: "Front",
  11063. image: {
  11064. source: "./media/characters/mel/front.svg",
  11065. extra: 736 / 617,
  11066. bottom: 0.017
  11067. }
  11068. },
  11069. },
  11070. [
  11071. {
  11072. name: "Pico",
  11073. height: math.unit(3, "pm")
  11074. },
  11075. {
  11076. name: "Nano",
  11077. height: math.unit(3, "nm")
  11078. },
  11079. {
  11080. name: "Micro",
  11081. height: math.unit(0.3, "mm"),
  11082. default: true
  11083. },
  11084. {
  11085. name: "Micro+",
  11086. height: math.unit(3, "mm")
  11087. },
  11088. {
  11089. name: "Normal",
  11090. height: math.unit(5 + 10.5 / 12, "feet")
  11091. },
  11092. ]
  11093. ))
  11094. characterMakers.push(() => makeCharacter(
  11095. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11096. {
  11097. kaiju: {
  11098. height: math.unit(1.75, "meters"),
  11099. weight: math.unit(55, "kg"),
  11100. name: "Kaiju",
  11101. image: {
  11102. source: "./media/characters/lykonous/kaiju.svg",
  11103. extra: 1055 / 946,
  11104. bottom: 0.135
  11105. }
  11106. },
  11107. },
  11108. [
  11109. {
  11110. name: "Normal",
  11111. height: math.unit(2.5, "meters"),
  11112. default: true
  11113. },
  11114. {
  11115. name: "Kaiju Dragon",
  11116. height: math.unit(60, "meters")
  11117. },
  11118. {
  11119. name: "Mega Kaiju",
  11120. height: math.unit(120, "km")
  11121. },
  11122. {
  11123. name: "Giga Kaiju",
  11124. height: math.unit(200, "megameters")
  11125. },
  11126. {
  11127. name: "Terra Kaiju",
  11128. height: math.unit(400, "gigameters")
  11129. },
  11130. {
  11131. name: "Kaiju Dragon God",
  11132. height: math.unit(13000, "exaparsecs")
  11133. },
  11134. ]
  11135. ))
  11136. characterMakers.push(() => makeCharacter(
  11137. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11138. {
  11139. front: {
  11140. height: math.unit(6, "feet"),
  11141. weight: math.unit(150, "lb"),
  11142. name: "Front",
  11143. image: {
  11144. source: "./media/characters/blü/front.svg",
  11145. extra: 1883 / 1564,
  11146. bottom: 0.031
  11147. }
  11148. },
  11149. },
  11150. [
  11151. {
  11152. name: "Normal",
  11153. height: math.unit(13, "feet"),
  11154. default: true
  11155. },
  11156. {
  11157. name: "Big Boi",
  11158. height: math.unit(150, "meters")
  11159. },
  11160. {
  11161. name: "Mini Stomper",
  11162. height: math.unit(300, "meters")
  11163. },
  11164. {
  11165. name: "Macro",
  11166. height: math.unit(1000, "meters")
  11167. },
  11168. {
  11169. name: "Megamacro",
  11170. height: math.unit(11000, "meters")
  11171. },
  11172. {
  11173. name: "Gigamacro",
  11174. height: math.unit(11000, "km")
  11175. },
  11176. {
  11177. name: "Teramacro",
  11178. height: math.unit(420000, "km")
  11179. },
  11180. {
  11181. name: "Examacro",
  11182. height: math.unit(120, "parsecs")
  11183. },
  11184. {
  11185. name: "God Tho",
  11186. height: math.unit(98000000000, "parsecs")
  11187. },
  11188. ]
  11189. ))
  11190. characterMakers.push(() => makeCharacter(
  11191. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11192. {
  11193. taurFront: {
  11194. height: math.unit(6, "feet"),
  11195. weight: math.unit(200, "lb"),
  11196. name: "Taur (Front)",
  11197. image: {
  11198. source: "./media/characters/scales/taur-front.svg",
  11199. extra: 1,
  11200. bottom: 0.05
  11201. }
  11202. },
  11203. taurBack: {
  11204. height: math.unit(6, "feet"),
  11205. weight: math.unit(200, "lb"),
  11206. name: "Taur (Back)",
  11207. image: {
  11208. source: "./media/characters/scales/taur-back.svg",
  11209. extra: 1,
  11210. bottom: 0.08
  11211. }
  11212. },
  11213. anthro: {
  11214. height: math.unit(6 * 7 / 12, "feet"),
  11215. weight: math.unit(100, "lb"),
  11216. name: "Anthro",
  11217. image: {
  11218. source: "./media/characters/scales/anthro.svg",
  11219. extra: 1,
  11220. bottom: 0.06
  11221. }
  11222. },
  11223. },
  11224. [
  11225. {
  11226. name: "Normal",
  11227. height: math.unit(12, "feet"),
  11228. default: true
  11229. },
  11230. ]
  11231. ))
  11232. characterMakers.push(() => makeCharacter(
  11233. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11234. {
  11235. front: {
  11236. height: math.unit(6, "feet"),
  11237. weight: math.unit(150, "lb"),
  11238. name: "Front",
  11239. image: {
  11240. source: "./media/characters/koragos/front.svg",
  11241. extra: 841 / 794,
  11242. bottom: 0.035
  11243. }
  11244. },
  11245. back: {
  11246. height: math.unit(6, "feet"),
  11247. weight: math.unit(150, "lb"),
  11248. name: "Back",
  11249. image: {
  11250. source: "./media/characters/koragos/back.svg",
  11251. extra: 841 / 810,
  11252. bottom: 0.022
  11253. }
  11254. },
  11255. },
  11256. [
  11257. {
  11258. name: "Normal",
  11259. height: math.unit(6 + 11 / 12, "feet"),
  11260. default: true
  11261. },
  11262. {
  11263. name: "Macro",
  11264. height: math.unit(490, "feet")
  11265. },
  11266. {
  11267. name: "Megamacro",
  11268. height: math.unit(10, "miles")
  11269. },
  11270. {
  11271. name: "Gigamacro",
  11272. height: math.unit(50, "miles")
  11273. },
  11274. ]
  11275. ))
  11276. characterMakers.push(() => makeCharacter(
  11277. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11278. {
  11279. front: {
  11280. height: math.unit(6, "feet"),
  11281. weight: math.unit(250, "lb"),
  11282. name: "Front",
  11283. image: {
  11284. source: "./media/characters/xylrem/front.svg",
  11285. extra: 3323 / 3050,
  11286. bottom: 0.065
  11287. }
  11288. },
  11289. },
  11290. [
  11291. {
  11292. name: "Micro",
  11293. height: math.unit(4, "feet")
  11294. },
  11295. {
  11296. name: "Normal",
  11297. height: math.unit(16, "feet"),
  11298. default: true
  11299. },
  11300. {
  11301. name: "Macro",
  11302. height: math.unit(2720, "feet")
  11303. },
  11304. {
  11305. name: "Megamacro",
  11306. height: math.unit(25000, "miles")
  11307. },
  11308. ]
  11309. ))
  11310. characterMakers.push(() => makeCharacter(
  11311. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11312. {
  11313. front: {
  11314. height: math.unit(8, "feet"),
  11315. weight: math.unit(250, "kg"),
  11316. name: "Front",
  11317. image: {
  11318. source: "./media/characters/ikideru/front.svg",
  11319. extra: 930 / 870,
  11320. bottom: 0.087
  11321. }
  11322. },
  11323. back: {
  11324. height: math.unit(8, "feet"),
  11325. weight: math.unit(250, "kg"),
  11326. name: "Back",
  11327. image: {
  11328. source: "./media/characters/ikideru/back.svg",
  11329. extra: 919 / 852,
  11330. bottom: 0.055
  11331. }
  11332. },
  11333. },
  11334. [
  11335. {
  11336. name: "Rare",
  11337. height: math.unit(8, "feet"),
  11338. default: true
  11339. },
  11340. {
  11341. name: "Playful Loom",
  11342. height: math.unit(80, "feet")
  11343. },
  11344. {
  11345. name: "City Leaner",
  11346. height: math.unit(230, "feet")
  11347. },
  11348. {
  11349. name: "Megamacro",
  11350. height: math.unit(2500, "feet")
  11351. },
  11352. {
  11353. name: "Gigamacro",
  11354. height: math.unit(26400, "feet")
  11355. },
  11356. {
  11357. name: "Tectonic Shifter",
  11358. height: math.unit(1.7, "megameters")
  11359. },
  11360. {
  11361. name: "Planet Carer",
  11362. height: math.unit(21, "megameters")
  11363. },
  11364. {
  11365. name: "God",
  11366. height: math.unit(11157.22, "parsecs")
  11367. },
  11368. ]
  11369. ))
  11370. characterMakers.push(() => makeCharacter(
  11371. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11372. {
  11373. front: {
  11374. height: math.unit(6, "feet"),
  11375. weight: math.unit(120, "lb"),
  11376. name: "Front",
  11377. image: {
  11378. source: "./media/characters/neo/front.svg"
  11379. }
  11380. },
  11381. },
  11382. [
  11383. {
  11384. name: "Micro",
  11385. height: math.unit(2, "inches"),
  11386. default: true
  11387. },
  11388. {
  11389. name: "Human Size",
  11390. height: math.unit(5 + 8 / 12, "feet")
  11391. },
  11392. ]
  11393. ))
  11394. characterMakers.push(() => makeCharacter(
  11395. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11396. {
  11397. front: {
  11398. height: math.unit(13 + 10 / 12, "feet"),
  11399. weight: math.unit(5320, "lb"),
  11400. name: "Front",
  11401. image: {
  11402. source: "./media/characters/chauncey-chantz/front.svg",
  11403. extra: 1587 / 1435,
  11404. bottom: 0.02
  11405. }
  11406. },
  11407. },
  11408. [
  11409. {
  11410. name: "Normal",
  11411. height: math.unit(13 + 10 / 12, "feet"),
  11412. default: true
  11413. },
  11414. {
  11415. name: "Macro",
  11416. height: math.unit(45, "feet")
  11417. },
  11418. {
  11419. name: "Megamacro",
  11420. height: math.unit(250, "miles")
  11421. },
  11422. {
  11423. name: "Planetary",
  11424. height: math.unit(10000, "miles")
  11425. },
  11426. {
  11427. name: "Galactic",
  11428. height: math.unit(40000, "parsecs")
  11429. },
  11430. {
  11431. name: "Universal",
  11432. height: math.unit(1, "yottameter")
  11433. },
  11434. ]
  11435. ))
  11436. characterMakers.push(() => makeCharacter(
  11437. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11438. {
  11439. front: {
  11440. height: math.unit(6, "feet"),
  11441. weight: math.unit(150, "lb"),
  11442. name: "Front",
  11443. image: {
  11444. source: "./media/characters/epifox/front.svg",
  11445. extra: 1,
  11446. bottom: 0.075
  11447. }
  11448. },
  11449. },
  11450. [
  11451. {
  11452. name: "Micro",
  11453. height: math.unit(6, "inches")
  11454. },
  11455. {
  11456. name: "Normal",
  11457. height: math.unit(12, "feet"),
  11458. default: true
  11459. },
  11460. {
  11461. name: "Macro",
  11462. height: math.unit(3810, "feet")
  11463. },
  11464. {
  11465. name: "Megamacro",
  11466. height: math.unit(500, "miles")
  11467. },
  11468. ]
  11469. ))
  11470. characterMakers.push(() => makeCharacter(
  11471. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11472. {
  11473. front: {
  11474. height: math.unit(1.8796, "m"),
  11475. weight: math.unit(230, "lb"),
  11476. name: "Front",
  11477. image: {
  11478. source: "./media/characters/colin-t/front.svg",
  11479. extra: 1272 / 1193,
  11480. bottom: 0.07
  11481. }
  11482. },
  11483. },
  11484. [
  11485. {
  11486. name: "Micro",
  11487. height: math.unit(0.571, "meters")
  11488. },
  11489. {
  11490. name: "Normal",
  11491. height: math.unit(1.8796, "meters"),
  11492. default: true
  11493. },
  11494. {
  11495. name: "Tall",
  11496. height: math.unit(4, "meters")
  11497. },
  11498. {
  11499. name: "Macro",
  11500. height: math.unit(67.241, "meters")
  11501. },
  11502. {
  11503. name: "Megamacro",
  11504. height: math.unit(371.856, "meters")
  11505. },
  11506. {
  11507. name: "Planetary",
  11508. height: math.unit(12631.5689, "km")
  11509. },
  11510. ]
  11511. ))
  11512. characterMakers.push(() => makeCharacter(
  11513. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11514. {
  11515. front: {
  11516. height: math.unit(1.85, "meters"),
  11517. weight: math.unit(80, "kg"),
  11518. name: "Front",
  11519. image: {
  11520. source: "./media/characters/matvei/front.svg",
  11521. extra: 614 / 594,
  11522. bottom: 0.01
  11523. }
  11524. },
  11525. },
  11526. [
  11527. {
  11528. name: "Normal",
  11529. height: math.unit(1.85, "meters"),
  11530. default: true
  11531. },
  11532. ]
  11533. ))
  11534. characterMakers.push(() => makeCharacter(
  11535. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11536. {
  11537. front: {
  11538. height: math.unit(5 + 9 / 12, "feet"),
  11539. weight: math.unit(70, "lb"),
  11540. name: "Front",
  11541. image: {
  11542. source: "./media/characters/quincy/front.svg",
  11543. extra: 3041 / 2751
  11544. }
  11545. },
  11546. back: {
  11547. height: math.unit(5 + 9 / 12, "feet"),
  11548. weight: math.unit(70, "lb"),
  11549. name: "Back",
  11550. image: {
  11551. source: "./media/characters/quincy/back.svg",
  11552. extra: 3041 / 2751
  11553. }
  11554. },
  11555. flying: {
  11556. height: math.unit(5 + 4 / 12, "feet"),
  11557. weight: math.unit(70, "lb"),
  11558. name: "Flying",
  11559. image: {
  11560. source: "./media/characters/quincy/flying.svg",
  11561. extra: 1044 / 930
  11562. }
  11563. },
  11564. },
  11565. [
  11566. {
  11567. name: "Micro",
  11568. height: math.unit(3, "cm")
  11569. },
  11570. {
  11571. name: "Normal",
  11572. height: math.unit(5 + 9 / 12, "feet")
  11573. },
  11574. {
  11575. name: "Macro",
  11576. height: math.unit(200, "meters"),
  11577. default: true
  11578. },
  11579. {
  11580. name: "Megamacro",
  11581. height: math.unit(1000, "meters")
  11582. },
  11583. ]
  11584. ))
  11585. characterMakers.push(() => makeCharacter(
  11586. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11587. {
  11588. front: {
  11589. height: math.unit(4 + 7 / 12, "feet"),
  11590. weight: math.unit(50, "lb"),
  11591. name: "Front",
  11592. image: {
  11593. source: "./media/characters/vanrel/front.svg",
  11594. extra: 1,
  11595. bottom: 0.02
  11596. }
  11597. },
  11598. frontAlt: {
  11599. height: math.unit(4 + 7 / 12, "feet"),
  11600. weight: math.unit(50, "lb"),
  11601. name: "Front-alt",
  11602. image: {
  11603. source: "./media/characters/vanrel/front-alt.svg",
  11604. extra: 1,
  11605. bottom: 15 / 1511
  11606. }
  11607. },
  11608. elemental: {
  11609. height: math.unit(3, "feet"),
  11610. weight: math.unit(50, "lb"),
  11611. name: "Elemental",
  11612. image: {
  11613. source: "./media/characters/vanrel/elemental.svg",
  11614. extra: 192.3 / 162.8,
  11615. bottom: 1.79 / 194.17
  11616. }
  11617. },
  11618. side: {
  11619. height: math.unit(4 + 7 / 12, "feet"),
  11620. weight: math.unit(50, "lb"),
  11621. name: "Side",
  11622. image: {
  11623. source: "./media/characters/vanrel/side.svg",
  11624. extra: 1,
  11625. bottom: 0.025
  11626. }
  11627. },
  11628. tome: {
  11629. height: math.unit(1.35, "feet"),
  11630. weight: math.unit(10, "lb"),
  11631. name: "Vanrel's Tome",
  11632. rename: true,
  11633. image: {
  11634. source: "./media/characters/vanrel/tome.svg"
  11635. }
  11636. },
  11637. beans: {
  11638. height: math.unit(0.89, "feet"),
  11639. name: "Beans",
  11640. image: {
  11641. source: "./media/characters/vanrel/beans.svg"
  11642. }
  11643. },
  11644. },
  11645. [
  11646. {
  11647. name: "Normal",
  11648. height: math.unit(4 + 7 / 12, "feet"),
  11649. default: true
  11650. },
  11651. ]
  11652. ))
  11653. characterMakers.push(() => makeCharacter(
  11654. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11655. {
  11656. front: {
  11657. height: math.unit(7 + 5 / 12, "feet"),
  11658. weight: math.unit(150, "lb"),
  11659. name: "Front",
  11660. image: {
  11661. source: "./media/characters/kuiper-vanrel/front.svg",
  11662. extra: 1118 / 1068,
  11663. bottom: 0.09
  11664. }
  11665. },
  11666. foot: {
  11667. height: math.unit(0.55, "meters"),
  11668. name: "Foot",
  11669. image: {
  11670. source: "./media/characters/kuiper-vanrel/foot.svg",
  11671. }
  11672. },
  11673. battle: {
  11674. height: math.unit(6.824, "feet"),
  11675. weight: math.unit(150, "lb"),
  11676. name: "Battle",
  11677. image: {
  11678. source: "./media/characters/kuiper-vanrel/battle.svg",
  11679. extra: 1466 / 1327,
  11680. bottom: 29 / 1492.5
  11681. }
  11682. },
  11683. battleAlt: {
  11684. height: math.unit(6.824, "feet"),
  11685. weight: math.unit(150, "lb"),
  11686. name: "Battle (Alt)",
  11687. image: {
  11688. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11689. extra: 2081 / 1965,
  11690. bottom: 40 / 2121
  11691. }
  11692. },
  11693. },
  11694. [
  11695. {
  11696. name: "Normal",
  11697. height: math.unit(7 + 5 / 12, "feet"),
  11698. default: true
  11699. },
  11700. ]
  11701. ))
  11702. characterMakers.push(() => makeCharacter(
  11703. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11704. {
  11705. front: {
  11706. height: math.unit(8 + 5 / 12, "feet"),
  11707. weight: math.unit(150, "lb"),
  11708. name: "Front",
  11709. image: {
  11710. source: "./media/characters/keset-vanrel/front.svg",
  11711. extra: 1150 / 1084,
  11712. bottom: 0.05
  11713. }
  11714. },
  11715. hand: {
  11716. height: math.unit(0.6, "meters"),
  11717. name: "Hand",
  11718. image: {
  11719. source: "./media/characters/keset-vanrel/hand.svg"
  11720. }
  11721. },
  11722. foot: {
  11723. height: math.unit(0.94978, "meters"),
  11724. name: "Foot",
  11725. image: {
  11726. source: "./media/characters/keset-vanrel/foot.svg"
  11727. }
  11728. },
  11729. battle: {
  11730. height: math.unit(7.408, "feet"),
  11731. weight: math.unit(150, "lb"),
  11732. name: "Battle",
  11733. image: {
  11734. source: "./media/characters/keset-vanrel/battle.svg",
  11735. extra: 1890 / 1386,
  11736. bottom: 73.28 / 1970
  11737. }
  11738. },
  11739. },
  11740. [
  11741. {
  11742. name: "Normal",
  11743. height: math.unit(8 + 5 / 12, "feet"),
  11744. default: true
  11745. },
  11746. ]
  11747. ))
  11748. characterMakers.push(() => makeCharacter(
  11749. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11750. {
  11751. front: {
  11752. height: math.unit(6, "feet"),
  11753. weight: math.unit(150, "lb"),
  11754. name: "Front",
  11755. image: {
  11756. source: "./media/characters/neos/front.svg",
  11757. extra: 1696 / 992,
  11758. bottom: 0.14
  11759. }
  11760. },
  11761. },
  11762. [
  11763. {
  11764. name: "Normal",
  11765. height: math.unit(54, "cm"),
  11766. default: true
  11767. },
  11768. {
  11769. name: "Macro",
  11770. height: math.unit(100, "m")
  11771. },
  11772. {
  11773. name: "Megamacro",
  11774. height: math.unit(10, "km")
  11775. },
  11776. {
  11777. name: "Megamacro+",
  11778. height: math.unit(100, "km")
  11779. },
  11780. {
  11781. name: "Gigamacro",
  11782. height: math.unit(100, "Mm")
  11783. },
  11784. {
  11785. name: "Teramacro",
  11786. height: math.unit(100, "Gm")
  11787. },
  11788. {
  11789. name: "Examacro",
  11790. height: math.unit(100, "Em")
  11791. },
  11792. {
  11793. name: "Godly",
  11794. height: math.unit(10000, "Ym")
  11795. },
  11796. {
  11797. name: "Beyond Godly",
  11798. height: math.unit(25, "multiverses")
  11799. },
  11800. ]
  11801. ))
  11802. characterMakers.push(() => makeCharacter(
  11803. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11804. {
  11805. feminine: {
  11806. height: math.unit(5, "feet"),
  11807. weight: math.unit(100, "lb"),
  11808. name: "Feminine",
  11809. image: {
  11810. source: "./media/characters/sammy-mouse/feminine.svg",
  11811. extra: 2526 / 2425,
  11812. bottom: 0.123
  11813. }
  11814. },
  11815. masculine: {
  11816. height: math.unit(5, "feet"),
  11817. weight: math.unit(100, "lb"),
  11818. name: "Masculine",
  11819. image: {
  11820. source: "./media/characters/sammy-mouse/masculine.svg",
  11821. extra: 2526 / 2425,
  11822. bottom: 0.123
  11823. }
  11824. },
  11825. },
  11826. [
  11827. {
  11828. name: "Micro",
  11829. height: math.unit(5, "inches")
  11830. },
  11831. {
  11832. name: "Normal",
  11833. height: math.unit(5, "feet"),
  11834. default: true
  11835. },
  11836. {
  11837. name: "Macro",
  11838. height: math.unit(60, "feet")
  11839. },
  11840. ]
  11841. ))
  11842. characterMakers.push(() => makeCharacter(
  11843. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11844. {
  11845. front: {
  11846. height: math.unit(4, "feet"),
  11847. weight: math.unit(50, "lb"),
  11848. name: "Front",
  11849. image: {
  11850. source: "./media/characters/kole/front.svg",
  11851. extra: 1423 / 1303,
  11852. bottom: 0.025
  11853. }
  11854. },
  11855. back: {
  11856. height: math.unit(4, "feet"),
  11857. weight: math.unit(50, "lb"),
  11858. name: "Back",
  11859. image: {
  11860. source: "./media/characters/kole/back.svg",
  11861. extra: 1426 / 1280,
  11862. bottom: 0.02
  11863. }
  11864. },
  11865. },
  11866. [
  11867. {
  11868. name: "Normal",
  11869. height: math.unit(4, "feet"),
  11870. default: true
  11871. },
  11872. ]
  11873. ))
  11874. characterMakers.push(() => makeCharacter(
  11875. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11876. {
  11877. front: {
  11878. height: math.unit(2 + 6 / 12, "feet"),
  11879. weight: math.unit(20, "lb"),
  11880. name: "Front",
  11881. image: {
  11882. source: "./media/characters/rufran/front.svg",
  11883. extra: 2041 / 1839,
  11884. bottom: 0.055
  11885. }
  11886. },
  11887. back: {
  11888. height: math.unit(2 + 6 / 12, "feet"),
  11889. weight: math.unit(20, "lb"),
  11890. name: "Back",
  11891. image: {
  11892. source: "./media/characters/rufran/back.svg",
  11893. extra: 2054 / 1839,
  11894. bottom: 0.01
  11895. }
  11896. },
  11897. hand: {
  11898. height: math.unit(0.2166, "meters"),
  11899. name: "Hand",
  11900. image: {
  11901. source: "./media/characters/rufran/hand.svg"
  11902. }
  11903. },
  11904. foot: {
  11905. height: math.unit(0.185, "meters"),
  11906. name: "Foot",
  11907. image: {
  11908. source: "./media/characters/rufran/foot.svg"
  11909. }
  11910. },
  11911. },
  11912. [
  11913. {
  11914. name: "Micro",
  11915. height: math.unit(1, "inch")
  11916. },
  11917. {
  11918. name: "Normal",
  11919. height: math.unit(2 + 6 / 12, "feet"),
  11920. default: true
  11921. },
  11922. {
  11923. name: "Big",
  11924. height: math.unit(60, "feet")
  11925. },
  11926. {
  11927. name: "Macro",
  11928. height: math.unit(325, "feet")
  11929. },
  11930. ]
  11931. ))
  11932. characterMakers.push(() => makeCharacter(
  11933. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11934. {
  11935. front: {
  11936. height: math.unit(0.3, "meters"),
  11937. weight: math.unit(3.5, "kg"),
  11938. name: "Front",
  11939. image: {
  11940. source: "./media/characters/chip/front.svg",
  11941. extra: 748 / 674
  11942. }
  11943. },
  11944. },
  11945. [
  11946. {
  11947. name: "Micro",
  11948. height: math.unit(1, "inch"),
  11949. default: true
  11950. },
  11951. ]
  11952. ))
  11953. characterMakers.push(() => makeCharacter(
  11954. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11955. {
  11956. side: {
  11957. height: math.unit(2.3, "meters"),
  11958. weight: math.unit(3500, "lb"),
  11959. name: "Side",
  11960. image: {
  11961. source: "./media/characters/torvid/side.svg",
  11962. extra: 1972 / 722,
  11963. bottom: 0.035
  11964. }
  11965. },
  11966. },
  11967. [
  11968. {
  11969. name: "Normal",
  11970. height: math.unit(2.3, "meters"),
  11971. default: true
  11972. },
  11973. ]
  11974. ))
  11975. characterMakers.push(() => makeCharacter(
  11976. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11977. {
  11978. front: {
  11979. height: math.unit(2, "meters"),
  11980. weight: math.unit(150.5, "kg"),
  11981. name: "Front",
  11982. image: {
  11983. source: "./media/characters/susan/front.svg",
  11984. extra: 693 / 635,
  11985. bottom: 0.05
  11986. }
  11987. },
  11988. },
  11989. [
  11990. {
  11991. name: "Megamacro",
  11992. height: math.unit(505, "miles"),
  11993. default: true
  11994. },
  11995. ]
  11996. ))
  11997. characterMakers.push(() => makeCharacter(
  11998. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11999. {
  12000. front: {
  12001. height: math.unit(6, "feet"),
  12002. weight: math.unit(150, "lb"),
  12003. name: "Front",
  12004. image: {
  12005. source: "./media/characters/raindrops/front.svg",
  12006. extra: 2655 / 2461,
  12007. bottom: 49 / 2705
  12008. }
  12009. },
  12010. back: {
  12011. height: math.unit(6, "feet"),
  12012. weight: math.unit(150, "lb"),
  12013. name: "Back",
  12014. image: {
  12015. source: "./media/characters/raindrops/back.svg",
  12016. extra: 2574 / 2400,
  12017. bottom: 65 / 2634
  12018. }
  12019. },
  12020. },
  12021. [
  12022. {
  12023. name: "Micro",
  12024. height: math.unit(6, "inches")
  12025. },
  12026. {
  12027. name: "Normal",
  12028. height: math.unit(6 + 2 / 12, "feet")
  12029. },
  12030. {
  12031. name: "Macro",
  12032. height: math.unit(131, "feet"),
  12033. default: true
  12034. },
  12035. {
  12036. name: "Megamacro",
  12037. height: math.unit(15, "miles")
  12038. },
  12039. {
  12040. name: "Gigamacro",
  12041. height: math.unit(4000, "miles")
  12042. },
  12043. {
  12044. name: "Teramacro",
  12045. height: math.unit(315000, "miles")
  12046. },
  12047. ]
  12048. ))
  12049. characterMakers.push(() => makeCharacter(
  12050. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12051. {
  12052. front: {
  12053. height: math.unit(2.794, "meters"),
  12054. weight: math.unit(325, "kg"),
  12055. name: "Front",
  12056. image: {
  12057. source: "./media/characters/tezwa/front.svg",
  12058. extra: 2083 / 1906,
  12059. bottom: 0.031
  12060. }
  12061. },
  12062. foot: {
  12063. height: math.unit(0.687, "meters"),
  12064. name: "Foot",
  12065. image: {
  12066. source: "./media/characters/tezwa/foot.svg"
  12067. }
  12068. },
  12069. },
  12070. [
  12071. {
  12072. name: "Normal",
  12073. height: math.unit(9 + 2 / 12, "feet"),
  12074. default: true
  12075. },
  12076. ]
  12077. ))
  12078. characterMakers.push(() => makeCharacter(
  12079. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12080. {
  12081. front: {
  12082. height: math.unit(58, "feet"),
  12083. weight: math.unit(89000, "lb"),
  12084. name: "Front",
  12085. image: {
  12086. source: "./media/characters/typhus/front.svg",
  12087. extra: 816 / 800,
  12088. bottom: 0.065
  12089. }
  12090. },
  12091. },
  12092. [
  12093. {
  12094. name: "Macro",
  12095. height: math.unit(58, "feet"),
  12096. default: true
  12097. },
  12098. ]
  12099. ))
  12100. characterMakers.push(() => makeCharacter(
  12101. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12102. {
  12103. front: {
  12104. height: math.unit(12, "feet"),
  12105. weight: math.unit(6, "tonnes"),
  12106. name: "Front",
  12107. image: {
  12108. source: "./media/characters/lyra-von-wulf/front.svg",
  12109. extra: 1,
  12110. bottom: 0.10
  12111. }
  12112. },
  12113. frontMecha: {
  12114. height: math.unit(12, "feet"),
  12115. weight: math.unit(12, "tonnes"),
  12116. name: "Front (Mecha)",
  12117. image: {
  12118. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12119. extra: 1,
  12120. bottom: 0.042
  12121. }
  12122. },
  12123. maw: {
  12124. height: math.unit(2.2, "feet"),
  12125. name: "Maw",
  12126. image: {
  12127. source: "./media/characters/lyra-von-wulf/maw.svg"
  12128. }
  12129. },
  12130. },
  12131. [
  12132. {
  12133. name: "Normal",
  12134. height: math.unit(12, "feet"),
  12135. default: true
  12136. },
  12137. {
  12138. name: "Classic",
  12139. height: math.unit(50, "feet")
  12140. },
  12141. {
  12142. name: "Macro",
  12143. height: math.unit(500, "feet")
  12144. },
  12145. {
  12146. name: "Megamacro",
  12147. height: math.unit(1, "mile")
  12148. },
  12149. {
  12150. name: "Gigamacro",
  12151. height: math.unit(400, "miles")
  12152. },
  12153. {
  12154. name: "Teramacro",
  12155. height: math.unit(22000, "miles")
  12156. },
  12157. {
  12158. name: "Solarmacro",
  12159. height: math.unit(8600000, "miles")
  12160. },
  12161. {
  12162. name: "Galactic",
  12163. height: math.unit(1057000, "lightyears")
  12164. },
  12165. ]
  12166. ))
  12167. characterMakers.push(() => makeCharacter(
  12168. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12169. {
  12170. front: {
  12171. height: math.unit(6 + 10 / 12, "feet"),
  12172. weight: math.unit(150, "lb"),
  12173. name: "Front",
  12174. image: {
  12175. source: "./media/characters/dixon/front.svg",
  12176. extra: 3361 / 3209,
  12177. bottom: 0.01
  12178. }
  12179. },
  12180. },
  12181. [
  12182. {
  12183. name: "Normal",
  12184. height: math.unit(6 + 10 / 12, "feet"),
  12185. default: true
  12186. },
  12187. {
  12188. name: "Big",
  12189. height: math.unit(12, "meters")
  12190. },
  12191. {
  12192. name: "Macro",
  12193. height: math.unit(500, "meters")
  12194. },
  12195. {
  12196. name: "Megamacro",
  12197. height: math.unit(2, "km")
  12198. },
  12199. ]
  12200. ))
  12201. characterMakers.push(() => makeCharacter(
  12202. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12203. {
  12204. front: {
  12205. height: math.unit(185, "cm"),
  12206. weight: math.unit(68, "kg"),
  12207. name: "Front",
  12208. image: {
  12209. source: "./media/characters/kauko/front.svg",
  12210. extra: 1455 / 1421,
  12211. bottom: 0.03
  12212. }
  12213. },
  12214. back: {
  12215. height: math.unit(185, "cm"),
  12216. weight: math.unit(68, "kg"),
  12217. name: "Back",
  12218. image: {
  12219. source: "./media/characters/kauko/back.svg",
  12220. extra: 1455 / 1421,
  12221. bottom: 0.004
  12222. }
  12223. },
  12224. },
  12225. [
  12226. {
  12227. name: "Normal",
  12228. height: math.unit(185, "cm"),
  12229. default: true
  12230. },
  12231. ]
  12232. ))
  12233. characterMakers.push(() => makeCharacter(
  12234. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12235. {
  12236. front: {
  12237. height: math.unit(6, "feet"),
  12238. weight: math.unit(150, "kg"),
  12239. name: "Front",
  12240. image: {
  12241. source: "./media/characters/varg/front.svg",
  12242. extra: 1108 / 1018,
  12243. bottom: 0.0375
  12244. }
  12245. },
  12246. },
  12247. [
  12248. {
  12249. name: "Normal",
  12250. height: math.unit(5, "meters")
  12251. },
  12252. {
  12253. name: "Macro",
  12254. height: math.unit(200, "meters")
  12255. },
  12256. {
  12257. name: "Megamacro",
  12258. height: math.unit(20, "kilometers")
  12259. },
  12260. {
  12261. name: "True Size",
  12262. height: math.unit(211, "km"),
  12263. default: true
  12264. },
  12265. {
  12266. name: "Gigamacro",
  12267. height: math.unit(1000, "km")
  12268. },
  12269. {
  12270. name: "Gigamacro+",
  12271. height: math.unit(8000, "km")
  12272. },
  12273. {
  12274. name: "Teramacro",
  12275. height: math.unit(1000000, "km")
  12276. },
  12277. ]
  12278. ))
  12279. characterMakers.push(() => makeCharacter(
  12280. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12281. {
  12282. front: {
  12283. height: math.unit(7 + 7 / 12, "feet"),
  12284. weight: math.unit(267, "lb"),
  12285. name: "Front",
  12286. image: {
  12287. source: "./media/characters/dayza/front.svg",
  12288. extra: 1262 / 1200,
  12289. bottom: 0.035
  12290. }
  12291. },
  12292. side: {
  12293. height: math.unit(7 + 7 / 12, "feet"),
  12294. weight: math.unit(267, "lb"),
  12295. name: "Side",
  12296. image: {
  12297. source: "./media/characters/dayza/side.svg",
  12298. extra: 1295 / 1245,
  12299. bottom: 0.05
  12300. }
  12301. },
  12302. back: {
  12303. height: math.unit(7 + 7 / 12, "feet"),
  12304. weight: math.unit(267, "lb"),
  12305. name: "Back",
  12306. image: {
  12307. source: "./media/characters/dayza/back.svg",
  12308. extra: 1241 / 1170
  12309. }
  12310. },
  12311. },
  12312. [
  12313. {
  12314. name: "Normal",
  12315. height: math.unit(7 + 7 / 12, "feet"),
  12316. default: true
  12317. },
  12318. {
  12319. name: "Macro",
  12320. height: math.unit(155, "feet")
  12321. },
  12322. ]
  12323. ))
  12324. characterMakers.push(() => makeCharacter(
  12325. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12326. {
  12327. front: {
  12328. height: math.unit(6 + 5 / 12, "feet"),
  12329. weight: math.unit(160, "lb"),
  12330. name: "Front",
  12331. image: {
  12332. source: "./media/characters/xanthos/front.svg",
  12333. extra: 1,
  12334. bottom: 0.04
  12335. }
  12336. },
  12337. back: {
  12338. height: math.unit(6 + 5 / 12, "feet"),
  12339. weight: math.unit(160, "lb"),
  12340. name: "Back",
  12341. image: {
  12342. source: "./media/characters/xanthos/back.svg",
  12343. extra: 1,
  12344. bottom: 0.03
  12345. }
  12346. },
  12347. hand: {
  12348. height: math.unit(0.928, "feet"),
  12349. name: "Hand",
  12350. image: {
  12351. source: "./media/characters/xanthos/hand.svg"
  12352. }
  12353. },
  12354. foot: {
  12355. height: math.unit(1.286, "feet"),
  12356. name: "Foot",
  12357. image: {
  12358. source: "./media/characters/xanthos/foot.svg"
  12359. }
  12360. },
  12361. },
  12362. [
  12363. {
  12364. name: "Normal",
  12365. height: math.unit(6 + 5 / 12, "feet"),
  12366. default: true
  12367. },
  12368. {
  12369. name: "Normal+",
  12370. height: math.unit(6, "meters")
  12371. },
  12372. {
  12373. name: "Macro",
  12374. height: math.unit(40, "feet")
  12375. },
  12376. {
  12377. name: "Macro+",
  12378. height: math.unit(200, "meters")
  12379. },
  12380. {
  12381. name: "Megamacro",
  12382. height: math.unit(20, "km")
  12383. },
  12384. {
  12385. name: "Megamacro+",
  12386. height: math.unit(100, "km")
  12387. },
  12388. ]
  12389. ))
  12390. characterMakers.push(() => makeCharacter(
  12391. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12392. {
  12393. front: {
  12394. height: math.unit(6 + 3 / 12, "feet"),
  12395. weight: math.unit(215, "lb"),
  12396. name: "Front",
  12397. image: {
  12398. source: "./media/characters/grynn/front.svg",
  12399. extra: 4627 / 4209,
  12400. bottom: 0.047
  12401. }
  12402. },
  12403. },
  12404. [
  12405. {
  12406. name: "Micro",
  12407. height: math.unit(6, "inches")
  12408. },
  12409. {
  12410. name: "Normal",
  12411. height: math.unit(6 + 3 / 12, "feet"),
  12412. default: true
  12413. },
  12414. {
  12415. name: "Big",
  12416. height: math.unit(104, "feet")
  12417. },
  12418. {
  12419. name: "Macro",
  12420. height: math.unit(944, "feet")
  12421. },
  12422. {
  12423. name: "Macro+",
  12424. height: math.unit(9480, "feet")
  12425. },
  12426. {
  12427. name: "Megamacro",
  12428. height: math.unit(78752, "feet")
  12429. },
  12430. {
  12431. name: "Megamacro+",
  12432. height: math.unit(630128, "feet")
  12433. },
  12434. {
  12435. name: "Megamacro++",
  12436. height: math.unit(3150695, "feet")
  12437. },
  12438. ]
  12439. ))
  12440. characterMakers.push(() => makeCharacter(
  12441. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12442. {
  12443. front: {
  12444. height: math.unit(7 + 5 / 12, "feet"),
  12445. weight: math.unit(450, "lb"),
  12446. name: "Front",
  12447. image: {
  12448. source: "./media/characters/mocha-aura/front.svg",
  12449. extra: 1907 / 1817,
  12450. bottom: 0.04
  12451. }
  12452. },
  12453. back: {
  12454. height: math.unit(7 + 5 / 12, "feet"),
  12455. weight: math.unit(450, "lb"),
  12456. name: "Back",
  12457. image: {
  12458. source: "./media/characters/mocha-aura/back.svg",
  12459. extra: 1900 / 1825,
  12460. bottom: 0.045
  12461. }
  12462. },
  12463. },
  12464. [
  12465. {
  12466. name: "Nano",
  12467. height: math.unit(1, "nm")
  12468. },
  12469. {
  12470. name: "Megamicro",
  12471. height: math.unit(1, "mm")
  12472. },
  12473. {
  12474. name: "Micro",
  12475. height: math.unit(3, "inches")
  12476. },
  12477. {
  12478. name: "Normal",
  12479. height: math.unit(7 + 5 / 12, "feet"),
  12480. default: true
  12481. },
  12482. {
  12483. name: "Macro",
  12484. height: math.unit(30, "feet")
  12485. },
  12486. {
  12487. name: "Megamacro",
  12488. height: math.unit(3500, "feet")
  12489. },
  12490. {
  12491. name: "Teramacro",
  12492. height: math.unit(500000, "miles")
  12493. },
  12494. {
  12495. name: "Petamacro",
  12496. height: math.unit(50000000000000000, "parsecs")
  12497. },
  12498. ]
  12499. ))
  12500. characterMakers.push(() => makeCharacter(
  12501. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12502. {
  12503. front: {
  12504. height: math.unit(6, "feet"),
  12505. weight: math.unit(150, "lb"),
  12506. name: "Front",
  12507. image: {
  12508. source: "./media/characters/ilisha-devya/front.svg",
  12509. extra: 1,
  12510. bottom: 0.175
  12511. }
  12512. },
  12513. back: {
  12514. height: math.unit(6, "feet"),
  12515. weight: math.unit(150, "lb"),
  12516. name: "Back",
  12517. image: {
  12518. source: "./media/characters/ilisha-devya/back.svg",
  12519. extra: 1,
  12520. bottom: 0.015
  12521. }
  12522. },
  12523. },
  12524. [
  12525. {
  12526. name: "Macro",
  12527. height: math.unit(500, "feet"),
  12528. default: true
  12529. },
  12530. {
  12531. name: "Megamacro",
  12532. height: math.unit(10, "miles")
  12533. },
  12534. {
  12535. name: "Gigamacro",
  12536. height: math.unit(100000, "miles")
  12537. },
  12538. {
  12539. name: "Examacro",
  12540. height: math.unit(1e9, "lightyears")
  12541. },
  12542. {
  12543. name: "Omniversal",
  12544. height: math.unit(1e33, "lightyears")
  12545. },
  12546. {
  12547. name: "Beyond Infinite",
  12548. height: math.unit(1e100, "lightyears")
  12549. },
  12550. ]
  12551. ))
  12552. characterMakers.push(() => makeCharacter(
  12553. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12554. {
  12555. Side: {
  12556. height: math.unit(6, "feet"),
  12557. weight: math.unit(150, "lb"),
  12558. name: "Side",
  12559. image: {
  12560. source: "./media/characters/mira/side.svg",
  12561. extra: 900 / 799,
  12562. bottom: 0.02
  12563. }
  12564. },
  12565. },
  12566. [
  12567. {
  12568. name: "Human Size",
  12569. height: math.unit(6, "feet")
  12570. },
  12571. {
  12572. name: "Macro",
  12573. height: math.unit(100, "feet"),
  12574. default: true
  12575. },
  12576. {
  12577. name: "Megamacro",
  12578. height: math.unit(10, "miles")
  12579. },
  12580. {
  12581. name: "Gigamacro",
  12582. height: math.unit(25000, "miles")
  12583. },
  12584. {
  12585. name: "Teramacro",
  12586. height: math.unit(300, "AU")
  12587. },
  12588. {
  12589. name: "Full Size",
  12590. height: math.unit(4.5e10, "lightyears")
  12591. },
  12592. ]
  12593. ))
  12594. characterMakers.push(() => makeCharacter(
  12595. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12596. {
  12597. front: {
  12598. height: math.unit(6, "feet"),
  12599. weight: math.unit(150, "lb"),
  12600. name: "Front",
  12601. image: {
  12602. source: "./media/characters/holly/front.svg",
  12603. extra: 639 / 606
  12604. }
  12605. },
  12606. back: {
  12607. height: math.unit(6, "feet"),
  12608. weight: math.unit(150, "lb"),
  12609. name: "Back",
  12610. image: {
  12611. source: "./media/characters/holly/back.svg",
  12612. extra: 623 / 598
  12613. }
  12614. },
  12615. frontWorking: {
  12616. height: math.unit(6, "feet"),
  12617. weight: math.unit(150, "lb"),
  12618. name: "Front (Working)",
  12619. image: {
  12620. source: "./media/characters/holly/front-working.svg",
  12621. extra: 607 / 577,
  12622. bottom: 0.048
  12623. }
  12624. },
  12625. },
  12626. [
  12627. {
  12628. name: "Normal",
  12629. height: math.unit(12 + 3 / 12, "feet"),
  12630. default: true
  12631. },
  12632. ]
  12633. ))
  12634. characterMakers.push(() => makeCharacter(
  12635. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12636. {
  12637. front: {
  12638. height: math.unit(6, "feet"),
  12639. weight: math.unit(150, "lb"),
  12640. name: "Front",
  12641. image: {
  12642. source: "./media/characters/porter/front.svg",
  12643. extra: 1,
  12644. bottom: 0.01
  12645. }
  12646. },
  12647. frontRobes: {
  12648. height: math.unit(6, "feet"),
  12649. weight: math.unit(150, "lb"),
  12650. name: "Front (Robes)",
  12651. image: {
  12652. source: "./media/characters/porter/front-robes.svg",
  12653. extra: 1.01,
  12654. bottom: 0.01
  12655. }
  12656. },
  12657. },
  12658. [
  12659. {
  12660. name: "Normal",
  12661. height: math.unit(11 + 9 / 12, "feet"),
  12662. default: true
  12663. },
  12664. ]
  12665. ))
  12666. characterMakers.push(() => makeCharacter(
  12667. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12668. {
  12669. legendary: {
  12670. height: math.unit(6, "feet"),
  12671. weight: math.unit(150, "lb"),
  12672. name: "Legendary",
  12673. image: {
  12674. source: "./media/characters/lucy/legendary.svg",
  12675. extra: 1355 / 1100,
  12676. bottom: 0.045
  12677. }
  12678. },
  12679. },
  12680. [
  12681. {
  12682. name: "Legendary",
  12683. height: math.unit(86882 * 2, "miles"),
  12684. default: true
  12685. },
  12686. ]
  12687. ))
  12688. characterMakers.push(() => makeCharacter(
  12689. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12690. {
  12691. front: {
  12692. height: math.unit(6, "feet"),
  12693. weight: math.unit(150, "lb"),
  12694. name: "Front",
  12695. image: {
  12696. source: "./media/characters/drusilla/front.svg",
  12697. extra: 678 / 635,
  12698. bottom: 0.03
  12699. }
  12700. },
  12701. back: {
  12702. height: math.unit(6, "feet"),
  12703. weight: math.unit(150, "lb"),
  12704. name: "Back",
  12705. image: {
  12706. source: "./media/characters/drusilla/back.svg",
  12707. extra: 678 / 635,
  12708. bottom: 0.005
  12709. }
  12710. },
  12711. },
  12712. [
  12713. {
  12714. name: "Macro",
  12715. height: math.unit(100, "feet")
  12716. },
  12717. {
  12718. name: "Canon Height",
  12719. height: math.unit(2000, "feet"),
  12720. default: true
  12721. },
  12722. ]
  12723. ))
  12724. characterMakers.push(() => makeCharacter(
  12725. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12726. {
  12727. front: {
  12728. height: math.unit(6, "feet"),
  12729. weight: math.unit(180, "lb"),
  12730. name: "Front",
  12731. image: {
  12732. source: "./media/characters/renard-thatch/front.svg",
  12733. extra: 2411 / 2275,
  12734. bottom: 0.01
  12735. }
  12736. },
  12737. frontPosing: {
  12738. height: math.unit(6, "feet"),
  12739. weight: math.unit(180, "lb"),
  12740. name: "Front (Posing)",
  12741. image: {
  12742. source: "./media/characters/renard-thatch/front-posing.svg",
  12743. extra: 2381 / 2261,
  12744. bottom: 0.01
  12745. }
  12746. },
  12747. back: {
  12748. height: math.unit(6, "feet"),
  12749. weight: math.unit(180, "lb"),
  12750. name: "Back",
  12751. image: {
  12752. source: "./media/characters/renard-thatch/back.svg",
  12753. extra: 2428 / 2288
  12754. }
  12755. },
  12756. },
  12757. [
  12758. {
  12759. name: "Micro",
  12760. height: math.unit(3, "inches")
  12761. },
  12762. {
  12763. name: "Default",
  12764. height: math.unit(6, "feet"),
  12765. default: true
  12766. },
  12767. {
  12768. name: "Macro",
  12769. height: math.unit(75, "feet")
  12770. },
  12771. ]
  12772. ))
  12773. characterMakers.push(() => makeCharacter(
  12774. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12775. {
  12776. front: {
  12777. height: math.unit(1450, "feet"),
  12778. weight: math.unit(1.21e6, "tons"),
  12779. name: "Front",
  12780. image: {
  12781. source: "./media/characters/sekvra/front.svg",
  12782. extra: 1,
  12783. bottom: 0.03
  12784. }
  12785. },
  12786. frontClothed: {
  12787. height: math.unit(1450, "feet"),
  12788. weight: math.unit(1.21e6, "tons"),
  12789. name: "Front (Clothed)",
  12790. image: {
  12791. source: "./media/characters/sekvra/front-clothed.svg",
  12792. extra: 1,
  12793. bottom: 0.03
  12794. }
  12795. },
  12796. side: {
  12797. height: math.unit(1450, "feet"),
  12798. weight: math.unit(1.21e6, "tons"),
  12799. name: "Side",
  12800. image: {
  12801. source: "./media/characters/sekvra/side.svg",
  12802. extra: 1,
  12803. bottom: 0.025
  12804. }
  12805. },
  12806. back: {
  12807. height: math.unit(1450, "feet"),
  12808. weight: math.unit(1.21e6, "tons"),
  12809. name: "Back",
  12810. image: {
  12811. source: "./media/characters/sekvra/back.svg",
  12812. extra: 1,
  12813. bottom: 0.005
  12814. }
  12815. },
  12816. },
  12817. [
  12818. {
  12819. name: "Macro",
  12820. height: math.unit(1450, "feet"),
  12821. default: true
  12822. },
  12823. {
  12824. name: "Megamacro",
  12825. height: math.unit(15000, "feet")
  12826. },
  12827. ]
  12828. ))
  12829. characterMakers.push(() => makeCharacter(
  12830. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12831. {
  12832. front: {
  12833. height: math.unit(6, "feet"),
  12834. weight: math.unit(150, "lb"),
  12835. name: "Front",
  12836. image: {
  12837. source: "./media/characters/carmine/front.svg",
  12838. extra: 1,
  12839. bottom: 0.035
  12840. }
  12841. },
  12842. frontArmor: {
  12843. height: math.unit(6, "feet"),
  12844. weight: math.unit(150, "lb"),
  12845. name: "Front (Armor)",
  12846. image: {
  12847. source: "./media/characters/carmine/front-armor.svg",
  12848. extra: 1,
  12849. bottom: 0.035
  12850. }
  12851. },
  12852. },
  12853. [
  12854. {
  12855. name: "Large",
  12856. height: math.unit(1, "mile")
  12857. },
  12858. {
  12859. name: "Huge",
  12860. height: math.unit(40, "miles"),
  12861. default: true
  12862. },
  12863. {
  12864. name: "Colossal",
  12865. height: math.unit(2500, "miles")
  12866. },
  12867. ]
  12868. ))
  12869. characterMakers.push(() => makeCharacter(
  12870. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12871. {
  12872. front: {
  12873. height: math.unit(6, "feet"),
  12874. weight: math.unit(150, "lb"),
  12875. name: "Front",
  12876. image: {
  12877. source: "./media/characters/elyssia/front.svg",
  12878. extra: 2201 / 2035,
  12879. bottom: 0.05
  12880. }
  12881. },
  12882. frontClothed: {
  12883. height: math.unit(6, "feet"),
  12884. weight: math.unit(150, "lb"),
  12885. name: "Front (Clothed)",
  12886. image: {
  12887. source: "./media/characters/elyssia/front-clothed.svg",
  12888. extra: 2201 / 2035,
  12889. bottom: 0.05
  12890. }
  12891. },
  12892. back: {
  12893. height: math.unit(6, "feet"),
  12894. weight: math.unit(150, "lb"),
  12895. name: "Back",
  12896. image: {
  12897. source: "./media/characters/elyssia/back.svg",
  12898. extra: 2201 / 2035,
  12899. bottom: 0.013
  12900. }
  12901. },
  12902. },
  12903. [
  12904. {
  12905. name: "Smaller",
  12906. height: math.unit(150, "feet")
  12907. },
  12908. {
  12909. name: "Standard",
  12910. height: math.unit(1400, "feet"),
  12911. default: true
  12912. },
  12913. {
  12914. name: "Distracted",
  12915. height: math.unit(15000, "feet")
  12916. },
  12917. ]
  12918. ))
  12919. characterMakers.push(() => makeCharacter(
  12920. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12921. {
  12922. front: {
  12923. height: math.unit(7 + 4 / 12, "feet"),
  12924. weight: math.unit(500, "lb"),
  12925. name: "Front",
  12926. image: {
  12927. source: "./media/characters/geno-maxwell/front.svg",
  12928. extra: 2207 / 2040,
  12929. bottom: 0.015
  12930. }
  12931. },
  12932. },
  12933. [
  12934. {
  12935. name: "Micro",
  12936. height: math.unit(3, "inches")
  12937. },
  12938. {
  12939. name: "Normal",
  12940. height: math.unit(7 + 4 / 12, "feet"),
  12941. default: true
  12942. },
  12943. {
  12944. name: "Macro",
  12945. height: math.unit(220, "feet")
  12946. },
  12947. {
  12948. name: "Megamacro",
  12949. height: math.unit(11, "miles")
  12950. },
  12951. ]
  12952. ))
  12953. characterMakers.push(() => makeCharacter(
  12954. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12955. {
  12956. front: {
  12957. height: math.unit(7 + 4 / 12, "feet"),
  12958. weight: math.unit(500, "lb"),
  12959. name: "Front",
  12960. image: {
  12961. source: "./media/characters/regena-maxwell/front.svg",
  12962. extra: 3115 / 2770,
  12963. bottom: 0.02
  12964. }
  12965. },
  12966. },
  12967. [
  12968. {
  12969. name: "Normal",
  12970. height: math.unit(7 + 4 / 12, "feet"),
  12971. default: true
  12972. },
  12973. {
  12974. name: "Macro",
  12975. height: math.unit(220, "feet")
  12976. },
  12977. {
  12978. name: "Megamacro",
  12979. height: math.unit(11, "miles")
  12980. },
  12981. ]
  12982. ))
  12983. characterMakers.push(() => makeCharacter(
  12984. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12985. {
  12986. front: {
  12987. height: math.unit(6, "feet"),
  12988. weight: math.unit(150, "lb"),
  12989. name: "Front",
  12990. image: {
  12991. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12992. extra: 860 / 690,
  12993. bottom: 0.03
  12994. }
  12995. },
  12996. },
  12997. [
  12998. {
  12999. name: "Normal",
  13000. height: math.unit(1.7, "meters"),
  13001. default: true
  13002. },
  13003. ]
  13004. ))
  13005. characterMakers.push(() => makeCharacter(
  13006. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13007. {
  13008. front: {
  13009. height: math.unit(6, "feet"),
  13010. weight: math.unit(150, "lb"),
  13011. name: "Front",
  13012. image: {
  13013. source: "./media/characters/quilly/front.svg",
  13014. extra: 890 / 776
  13015. }
  13016. },
  13017. },
  13018. [
  13019. {
  13020. name: "Gigamacro",
  13021. height: math.unit(404090, "miles"),
  13022. default: true
  13023. },
  13024. ]
  13025. ))
  13026. characterMakers.push(() => makeCharacter(
  13027. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13028. {
  13029. front: {
  13030. height: math.unit(7 + 8 / 12, "feet"),
  13031. weight: math.unit(350, "lb"),
  13032. name: "Front",
  13033. image: {
  13034. source: "./media/characters/tempest/front.svg",
  13035. extra: 1175 / 1086,
  13036. bottom: 0.02
  13037. }
  13038. },
  13039. },
  13040. [
  13041. {
  13042. name: "Normal",
  13043. height: math.unit(7 + 8 / 12, "feet"),
  13044. default: true
  13045. },
  13046. ]
  13047. ))
  13048. characterMakers.push(() => makeCharacter(
  13049. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13050. {
  13051. side: {
  13052. height: math.unit(4 + 5 / 12, "feet"),
  13053. weight: math.unit(80, "lb"),
  13054. name: "Side",
  13055. image: {
  13056. source: "./media/characters/rodger/side.svg",
  13057. extra: 1235 / 1118
  13058. }
  13059. },
  13060. },
  13061. [
  13062. {
  13063. name: "Micro",
  13064. height: math.unit(1, "inch")
  13065. },
  13066. {
  13067. name: "Normal",
  13068. height: math.unit(4 + 5 / 12, "feet"),
  13069. default: true
  13070. },
  13071. {
  13072. name: "Macro",
  13073. height: math.unit(120, "feet")
  13074. },
  13075. ]
  13076. ))
  13077. characterMakers.push(() => makeCharacter(
  13078. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13079. {
  13080. front: {
  13081. height: math.unit(6, "feet"),
  13082. weight: math.unit(150, "lb"),
  13083. name: "Front",
  13084. image: {
  13085. source: "./media/characters/danyel/front.svg",
  13086. extra: 1185 / 1123,
  13087. bottom: 0.05
  13088. }
  13089. },
  13090. },
  13091. [
  13092. {
  13093. name: "Shrunken",
  13094. height: math.unit(0.5, "mm")
  13095. },
  13096. {
  13097. name: "Micro",
  13098. height: math.unit(1, "mm"),
  13099. default: true
  13100. },
  13101. {
  13102. name: "Upsized",
  13103. height: math.unit(5 + 5 / 12, "feet")
  13104. },
  13105. ]
  13106. ))
  13107. characterMakers.push(() => makeCharacter(
  13108. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13109. {
  13110. front: {
  13111. height: math.unit(5 + 6 / 12, "feet"),
  13112. weight: math.unit(200, "lb"),
  13113. name: "Front",
  13114. image: {
  13115. source: "./media/characters/vivian-bijoux/front.svg",
  13116. extra: 1,
  13117. bottom: 0.072
  13118. }
  13119. },
  13120. },
  13121. [
  13122. {
  13123. name: "Normal",
  13124. height: math.unit(5 + 6 / 12, "feet"),
  13125. default: true
  13126. },
  13127. {
  13128. name: "Bad Dream",
  13129. height: math.unit(500, "feet")
  13130. },
  13131. {
  13132. name: "Nightmare",
  13133. height: math.unit(500, "miles")
  13134. },
  13135. ]
  13136. ))
  13137. characterMakers.push(() => makeCharacter(
  13138. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13139. {
  13140. front: {
  13141. height: math.unit(6 + 1 / 12, "feet"),
  13142. weight: math.unit(260, "lb"),
  13143. name: "Front",
  13144. image: {
  13145. source: "./media/characters/zeta/front.svg",
  13146. extra: 1968 / 1889,
  13147. bottom: 0.06
  13148. }
  13149. },
  13150. back: {
  13151. height: math.unit(6 + 1 / 12, "feet"),
  13152. weight: math.unit(260, "lb"),
  13153. name: "Back",
  13154. image: {
  13155. source: "./media/characters/zeta/back.svg",
  13156. extra: 1944 / 1858,
  13157. bottom: 0.03
  13158. }
  13159. },
  13160. hand: {
  13161. height: math.unit(1.112, "feet"),
  13162. name: "Hand",
  13163. image: {
  13164. source: "./media/characters/zeta/hand.svg"
  13165. }
  13166. },
  13167. foot: {
  13168. height: math.unit(1.48, "feet"),
  13169. name: "Foot",
  13170. image: {
  13171. source: "./media/characters/zeta/foot.svg"
  13172. }
  13173. },
  13174. },
  13175. [
  13176. {
  13177. name: "Micro",
  13178. height: math.unit(6, "inches")
  13179. },
  13180. {
  13181. name: "Normal",
  13182. height: math.unit(6 + 1 / 12, "feet"),
  13183. default: true
  13184. },
  13185. {
  13186. name: "Macro",
  13187. height: math.unit(20, "feet")
  13188. },
  13189. ]
  13190. ))
  13191. characterMakers.push(() => makeCharacter(
  13192. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13193. {
  13194. front: {
  13195. height: math.unit(6, "feet"),
  13196. weight: math.unit(150, "lb"),
  13197. name: "Front",
  13198. image: {
  13199. source: "./media/characters/jamie-larsen/front.svg",
  13200. extra: 962 / 933,
  13201. bottom: 0.02
  13202. }
  13203. },
  13204. back: {
  13205. height: math.unit(6, "feet"),
  13206. weight: math.unit(150, "lb"),
  13207. name: "Back",
  13208. image: {
  13209. source: "./media/characters/jamie-larsen/back.svg",
  13210. extra: 997 / 946
  13211. }
  13212. },
  13213. },
  13214. [
  13215. {
  13216. name: "Macro",
  13217. height: math.unit(28 + 7 / 12, "feet"),
  13218. default: true
  13219. },
  13220. {
  13221. name: "Macro+",
  13222. height: math.unit(180, "feet")
  13223. },
  13224. {
  13225. name: "Megamacro",
  13226. height: math.unit(10, "miles")
  13227. },
  13228. {
  13229. name: "Gigamacro",
  13230. height: math.unit(200000, "miles")
  13231. },
  13232. ]
  13233. ))
  13234. characterMakers.push(() => makeCharacter(
  13235. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13236. {
  13237. front: {
  13238. height: math.unit(6, "feet"),
  13239. weight: math.unit(120, "lb"),
  13240. name: "Front",
  13241. image: {
  13242. source: "./media/characters/vance/front.svg",
  13243. extra: 1980 / 1890,
  13244. bottom: 0.09
  13245. }
  13246. },
  13247. back: {
  13248. height: math.unit(6, "feet"),
  13249. weight: math.unit(120, "lb"),
  13250. name: "Back",
  13251. image: {
  13252. source: "./media/characters/vance/back.svg",
  13253. extra: 2081 / 1994,
  13254. bottom: 0.014
  13255. }
  13256. },
  13257. hand: {
  13258. height: math.unit(0.88, "feet"),
  13259. name: "Hand",
  13260. image: {
  13261. source: "./media/characters/vance/hand.svg"
  13262. }
  13263. },
  13264. foot: {
  13265. height: math.unit(0.64, "feet"),
  13266. name: "Foot",
  13267. image: {
  13268. source: "./media/characters/vance/foot.svg"
  13269. }
  13270. },
  13271. },
  13272. [
  13273. {
  13274. name: "Small",
  13275. height: math.unit(90, "feet"),
  13276. default: true
  13277. },
  13278. {
  13279. name: "Macro",
  13280. height: math.unit(100, "meters")
  13281. },
  13282. {
  13283. name: "Megamacro",
  13284. height: math.unit(15, "miles")
  13285. },
  13286. ]
  13287. ))
  13288. characterMakers.push(() => makeCharacter(
  13289. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13290. {
  13291. front: {
  13292. height: math.unit(6, "feet"),
  13293. weight: math.unit(180, "lb"),
  13294. name: "Front",
  13295. image: {
  13296. source: "./media/characters/xochitl/front.svg",
  13297. extra: 2297 / 2261,
  13298. bottom: 0.065
  13299. }
  13300. },
  13301. back: {
  13302. height: math.unit(6, "feet"),
  13303. weight: math.unit(180, "lb"),
  13304. name: "Back",
  13305. image: {
  13306. source: "./media/characters/xochitl/back.svg",
  13307. extra: 2386 / 2354,
  13308. bottom: 0.01
  13309. }
  13310. },
  13311. foot: {
  13312. height: math.unit(6 / 5 * 1.15, "feet"),
  13313. weight: math.unit(150, "lb"),
  13314. name: "Foot",
  13315. image: {
  13316. source: "./media/characters/xochitl/foot.svg"
  13317. }
  13318. },
  13319. },
  13320. [
  13321. {
  13322. name: "Macro",
  13323. height: math.unit(80, "feet")
  13324. },
  13325. {
  13326. name: "Macro+",
  13327. height: math.unit(400, "feet"),
  13328. default: true
  13329. },
  13330. {
  13331. name: "Gigamacro",
  13332. height: math.unit(80000, "miles")
  13333. },
  13334. {
  13335. name: "Gigamacro+",
  13336. height: math.unit(400000, "miles")
  13337. },
  13338. {
  13339. name: "Teramacro",
  13340. height: math.unit(300, "AU")
  13341. },
  13342. ]
  13343. ))
  13344. characterMakers.push(() => makeCharacter(
  13345. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13346. {
  13347. front: {
  13348. height: math.unit(6, "feet"),
  13349. weight: math.unit(150, "lb"),
  13350. name: "Front",
  13351. image: {
  13352. source: "./media/characters/vincent/front.svg",
  13353. extra: 1130 / 1080,
  13354. bottom: 0.055
  13355. }
  13356. },
  13357. beak: {
  13358. height: math.unit(6 * 0.1, "feet"),
  13359. name: "Beak",
  13360. image: {
  13361. source: "./media/characters/vincent/beak.svg"
  13362. }
  13363. },
  13364. hand: {
  13365. height: math.unit(6 * 0.85, "feet"),
  13366. weight: math.unit(150, "lb"),
  13367. name: "Hand",
  13368. image: {
  13369. source: "./media/characters/vincent/hand.svg"
  13370. }
  13371. },
  13372. foot: {
  13373. height: math.unit(6 * 0.19, "feet"),
  13374. weight: math.unit(150, "lb"),
  13375. name: "Foot",
  13376. image: {
  13377. source: "./media/characters/vincent/foot.svg"
  13378. }
  13379. },
  13380. },
  13381. [
  13382. {
  13383. name: "Base",
  13384. height: math.unit(6 + 5 / 12, "feet"),
  13385. default: true
  13386. },
  13387. {
  13388. name: "Macro",
  13389. height: math.unit(300, "feet")
  13390. },
  13391. {
  13392. name: "Megamacro",
  13393. height: math.unit(2, "miles")
  13394. },
  13395. {
  13396. name: "Gigamacro",
  13397. height: math.unit(1000, "miles")
  13398. },
  13399. ]
  13400. ))
  13401. characterMakers.push(() => makeCharacter(
  13402. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  13403. {
  13404. front: {
  13405. height: math.unit(6 + 2 / 12, "feet"),
  13406. weight: math.unit(265, "lb"),
  13407. name: "Front",
  13408. image: {
  13409. source: "./media/characters/jay/front.svg",
  13410. extra: 1510 / 1430,
  13411. bottom: 0.042
  13412. }
  13413. },
  13414. back: {
  13415. height: math.unit(6 + 2 / 12, "feet"),
  13416. weight: math.unit(265, "lb"),
  13417. name: "Back",
  13418. image: {
  13419. source: "./media/characters/jay/back.svg",
  13420. extra: 1510 / 1430,
  13421. bottom: 0.025
  13422. }
  13423. },
  13424. clothed: {
  13425. height: math.unit(6 + 2 / 12, "feet"),
  13426. weight: math.unit(265, "lb"),
  13427. name: "Front (Clothed)",
  13428. image: {
  13429. source: "./media/characters/jay/clothed.svg",
  13430. extra: 744 / 699,
  13431. bottom: 0.043
  13432. }
  13433. },
  13434. head: {
  13435. height: math.unit(1.772, "feet"),
  13436. name: "Head",
  13437. image: {
  13438. source: "./media/characters/jay/head.svg"
  13439. }
  13440. },
  13441. sizeRay: {
  13442. height: math.unit(1.331, "feet"),
  13443. name: "Size Ray",
  13444. image: {
  13445. source: "./media/characters/jay/size-ray.svg"
  13446. }
  13447. },
  13448. },
  13449. [
  13450. {
  13451. name: "Micro",
  13452. height: math.unit(1, "inch")
  13453. },
  13454. {
  13455. name: "Normal",
  13456. height: math.unit(6 + 2 / 12, "feet"),
  13457. default: true
  13458. },
  13459. {
  13460. name: "Macro",
  13461. height: math.unit(1, "mile")
  13462. },
  13463. {
  13464. name: "Megamacro",
  13465. height: math.unit(100, "miles")
  13466. },
  13467. ]
  13468. ))
  13469. characterMakers.push(() => makeCharacter(
  13470. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13471. {
  13472. front: {
  13473. height: math.unit(2, "meters"),
  13474. weight: math.unit(500, "kg"),
  13475. name: "Front",
  13476. image: {
  13477. source: "./media/characters/coatl/front.svg",
  13478. extra: 3948 / 3500,
  13479. bottom: 0.082
  13480. }
  13481. },
  13482. },
  13483. [
  13484. {
  13485. name: "Normal",
  13486. height: math.unit(4, "meters")
  13487. },
  13488. {
  13489. name: "Macro",
  13490. height: math.unit(100, "meters"),
  13491. default: true
  13492. },
  13493. {
  13494. name: "Macro+",
  13495. height: math.unit(300, "meters")
  13496. },
  13497. {
  13498. name: "Megamacro",
  13499. height: math.unit(3, "gigameters")
  13500. },
  13501. {
  13502. name: "Megamacro+",
  13503. height: math.unit(300, "terameters")
  13504. },
  13505. {
  13506. name: "Megamacro++",
  13507. height: math.unit(3, "lightyears")
  13508. },
  13509. ]
  13510. ))
  13511. characterMakers.push(() => makeCharacter(
  13512. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13513. {
  13514. front: {
  13515. height: math.unit(6, "feet"),
  13516. weight: math.unit(50, "kg"),
  13517. name: "front",
  13518. image: {
  13519. source: "./media/characters/shiroryu/front.svg",
  13520. extra: 1990 / 1935
  13521. }
  13522. },
  13523. },
  13524. [
  13525. {
  13526. name: "Mortal Mingling",
  13527. height: math.unit(3, "meters")
  13528. },
  13529. {
  13530. name: "Kaiju-ish",
  13531. height: math.unit(250, "meters")
  13532. },
  13533. {
  13534. name: "Somewhat Godly",
  13535. height: math.unit(400, "km"),
  13536. default: true
  13537. },
  13538. {
  13539. name: "Planetary",
  13540. height: math.unit(300, "megameters")
  13541. },
  13542. {
  13543. name: "Galaxy-dwarfing",
  13544. height: math.unit(450, "kiloparsecs")
  13545. },
  13546. {
  13547. name: "Universe Eater",
  13548. height: math.unit(150, "gigaparsecs")
  13549. },
  13550. {
  13551. name: "Almost Immeasurable",
  13552. height: math.unit(1.3e266, "yottaparsecs")
  13553. },
  13554. ]
  13555. ))
  13556. characterMakers.push(() => makeCharacter(
  13557. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13558. {
  13559. front: {
  13560. height: math.unit(6, "feet"),
  13561. weight: math.unit(150, "lb"),
  13562. name: "Front",
  13563. image: {
  13564. source: "./media/characters/umeko/front.svg",
  13565. extra: 1,
  13566. bottom: 0.019
  13567. }
  13568. },
  13569. frontArmored: {
  13570. height: math.unit(6, "feet"),
  13571. weight: math.unit(150, "lb"),
  13572. name: "Front (Armored)",
  13573. image: {
  13574. source: "./media/characters/umeko/front-armored.svg",
  13575. extra: 1,
  13576. bottom: 0.021
  13577. }
  13578. },
  13579. },
  13580. [
  13581. {
  13582. name: "Macro",
  13583. height: math.unit(220, "feet"),
  13584. default: true
  13585. },
  13586. {
  13587. name: "Guardian Dragon",
  13588. height: math.unit(50, "miles")
  13589. },
  13590. {
  13591. name: "Cosmic",
  13592. height: math.unit(800000, "miles")
  13593. },
  13594. ]
  13595. ))
  13596. characterMakers.push(() => makeCharacter(
  13597. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13598. {
  13599. front: {
  13600. height: math.unit(6, "feet"),
  13601. weight: math.unit(150, "lb"),
  13602. name: "Front",
  13603. image: {
  13604. source: "./media/characters/cassidy/front.svg",
  13605. extra: 1,
  13606. bottom: 0.043
  13607. }
  13608. },
  13609. },
  13610. [
  13611. {
  13612. name: "Canon Height",
  13613. height: math.unit(120, "feet"),
  13614. default: true
  13615. },
  13616. {
  13617. name: "Macro+",
  13618. height: math.unit(400, "feet")
  13619. },
  13620. {
  13621. name: "Macro++",
  13622. height: math.unit(4000, "feet")
  13623. },
  13624. {
  13625. name: "Megamacro",
  13626. height: math.unit(3, "miles")
  13627. },
  13628. ]
  13629. ))
  13630. characterMakers.push(() => makeCharacter(
  13631. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13632. {
  13633. front: {
  13634. height: math.unit(6, "feet"),
  13635. weight: math.unit(150, "lb"),
  13636. name: "Front",
  13637. image: {
  13638. source: "./media/characters/isaac/front.svg",
  13639. extra: 896 / 815,
  13640. bottom: 0.11
  13641. }
  13642. },
  13643. },
  13644. [
  13645. {
  13646. name: "Human Size",
  13647. height: math.unit(8, "feet"),
  13648. default: true
  13649. },
  13650. {
  13651. name: "Macro",
  13652. height: math.unit(400, "feet")
  13653. },
  13654. {
  13655. name: "Megamacro",
  13656. height: math.unit(50, "miles")
  13657. },
  13658. {
  13659. name: "Canon Height",
  13660. height: math.unit(200, "AU")
  13661. },
  13662. ]
  13663. ))
  13664. characterMakers.push(() => makeCharacter(
  13665. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13666. {
  13667. front: {
  13668. height: math.unit(6, "feet"),
  13669. weight: math.unit(72, "kg"),
  13670. name: "Front",
  13671. image: {
  13672. source: "./media/characters/sleekit/front.svg",
  13673. extra: 4693 / 4487,
  13674. bottom: 0.012
  13675. }
  13676. },
  13677. },
  13678. [
  13679. {
  13680. name: "Minimum Height",
  13681. height: math.unit(10, "meters")
  13682. },
  13683. {
  13684. name: "Smaller",
  13685. height: math.unit(25, "meters")
  13686. },
  13687. {
  13688. name: "Larger",
  13689. height: math.unit(38, "meters"),
  13690. default: true
  13691. },
  13692. {
  13693. name: "Maximum height",
  13694. height: math.unit(100, "meters")
  13695. },
  13696. ]
  13697. ))
  13698. characterMakers.push(() => makeCharacter(
  13699. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13700. {
  13701. front: {
  13702. height: math.unit(6, "feet"),
  13703. weight: math.unit(150, "lb"),
  13704. name: "Front",
  13705. image: {
  13706. source: "./media/characters/nillia/front.svg",
  13707. extra: 2195 / 2037,
  13708. bottom: 0.005
  13709. }
  13710. },
  13711. back: {
  13712. height: math.unit(6, "feet"),
  13713. weight: math.unit(150, "lb"),
  13714. name: "Back",
  13715. image: {
  13716. source: "./media/characters/nillia/back.svg",
  13717. extra: 2195 / 2037,
  13718. bottom: 0.005
  13719. }
  13720. },
  13721. },
  13722. [
  13723. {
  13724. name: "Canon Height",
  13725. height: math.unit(489, "feet"),
  13726. default: true
  13727. }
  13728. ]
  13729. ))
  13730. characterMakers.push(() => makeCharacter(
  13731. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13732. {
  13733. front: {
  13734. height: math.unit(6, "feet"),
  13735. weight: math.unit(150, "lb"),
  13736. name: "Front",
  13737. image: {
  13738. source: "./media/characters/mesmyriza/front.svg",
  13739. extra: 2067 / 1784,
  13740. bottom: 0.035
  13741. }
  13742. },
  13743. foot: {
  13744. height: math.unit(6 / (250 / 35), "feet"),
  13745. name: "Foot",
  13746. image: {
  13747. source: "./media/characters/mesmyriza/foot.svg"
  13748. }
  13749. },
  13750. },
  13751. [
  13752. {
  13753. name: "Macro",
  13754. height: math.unit(457, "meters"),
  13755. default: true
  13756. },
  13757. {
  13758. name: "Megamacro",
  13759. height: math.unit(8, "megameters")
  13760. },
  13761. ]
  13762. ))
  13763. characterMakers.push(() => makeCharacter(
  13764. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13765. {
  13766. front: {
  13767. height: math.unit(6, "feet"),
  13768. weight: math.unit(250, "lb"),
  13769. name: "Front",
  13770. image: {
  13771. source: "./media/characters/saudade/front.svg",
  13772. extra: 1172 / 1139,
  13773. bottom: 0.035
  13774. }
  13775. },
  13776. },
  13777. [
  13778. {
  13779. name: "Micro",
  13780. height: math.unit(3, "inches")
  13781. },
  13782. {
  13783. name: "Normal",
  13784. height: math.unit(6, "feet"),
  13785. default: true
  13786. },
  13787. {
  13788. name: "Macro",
  13789. height: math.unit(50, "feet")
  13790. },
  13791. {
  13792. name: "Megamacro",
  13793. height: math.unit(2800, "feet")
  13794. },
  13795. ]
  13796. ))
  13797. characterMakers.push(() => makeCharacter(
  13798. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13799. {
  13800. front: {
  13801. height: math.unit(5 + 4 / 12, "feet"),
  13802. weight: math.unit(100, "lb"),
  13803. name: "Front",
  13804. image: {
  13805. source: "./media/characters/keireer/front.svg",
  13806. extra: 716 / 666,
  13807. bottom: 0.05
  13808. }
  13809. },
  13810. },
  13811. [
  13812. {
  13813. name: "Normal",
  13814. height: math.unit(5 + 4 / 12, "feet"),
  13815. default: true
  13816. },
  13817. ]
  13818. ))
  13819. characterMakers.push(() => makeCharacter(
  13820. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13821. {
  13822. front: {
  13823. height: math.unit(6, "feet"),
  13824. weight: math.unit(90, "kg"),
  13825. name: "Front",
  13826. image: {
  13827. source: "./media/characters/mirja/front.svg",
  13828. extra: 1789 / 1683,
  13829. bottom: 0.05
  13830. }
  13831. },
  13832. frontDressed: {
  13833. height: math.unit(6, "feet"),
  13834. weight: math.unit(90, "lb"),
  13835. name: "Front (Dressed)",
  13836. image: {
  13837. source: "./media/characters/mirja/front-dressed.svg",
  13838. extra: 1789 / 1683,
  13839. bottom: 0.05
  13840. }
  13841. },
  13842. back: {
  13843. height: math.unit(6, "feet"),
  13844. weight: math.unit(90, "lb"),
  13845. name: "Back",
  13846. image: {
  13847. source: "./media/characters/mirja/back.svg",
  13848. extra: 953 / 917,
  13849. bottom: 0.017
  13850. }
  13851. },
  13852. },
  13853. [
  13854. {
  13855. name: "\"Incognito\"",
  13856. height: math.unit(3, "meters")
  13857. },
  13858. {
  13859. name: "Strolling Size",
  13860. height: math.unit(15, "km")
  13861. },
  13862. {
  13863. name: "Larger Strolling Size",
  13864. height: math.unit(400, "km")
  13865. },
  13866. {
  13867. name: "Preferred Size",
  13868. height: math.unit(5000, "km")
  13869. },
  13870. {
  13871. name: "True Size",
  13872. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13873. default: true
  13874. },
  13875. ]
  13876. ))
  13877. characterMakers.push(() => makeCharacter(
  13878. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13879. {
  13880. front: {
  13881. height: math.unit(15, "feet"),
  13882. weight: math.unit(880, "kg"),
  13883. name: "Front",
  13884. image: {
  13885. source: "./media/characters/nightraver/front.svg",
  13886. extra: 2444 / 2160,
  13887. bottom: 0.027
  13888. }
  13889. },
  13890. back: {
  13891. height: math.unit(15, "feet"),
  13892. weight: math.unit(880, "kg"),
  13893. name: "Back",
  13894. image: {
  13895. source: "./media/characters/nightraver/back.svg",
  13896. extra: 2309 / 2180,
  13897. bottom: 0.005
  13898. }
  13899. },
  13900. sole: {
  13901. height: math.unit(2.878, "feet"),
  13902. name: "Sole",
  13903. image: {
  13904. source: "./media/characters/nightraver/sole.svg"
  13905. }
  13906. },
  13907. foot: {
  13908. height: math.unit(2.285, "feet"),
  13909. name: "Foot",
  13910. image: {
  13911. source: "./media/characters/nightraver/foot.svg"
  13912. }
  13913. },
  13914. maw: {
  13915. height: math.unit(2.67, "feet"),
  13916. name: "Maw",
  13917. image: {
  13918. source: "./media/characters/nightraver/maw.svg"
  13919. }
  13920. },
  13921. },
  13922. [
  13923. {
  13924. name: "Micro",
  13925. height: math.unit(1, "cm")
  13926. },
  13927. {
  13928. name: "Normal",
  13929. height: math.unit(15, "feet"),
  13930. default: true
  13931. },
  13932. {
  13933. name: "Macro",
  13934. height: math.unit(300, "feet")
  13935. },
  13936. {
  13937. name: "Megamacro",
  13938. height: math.unit(300, "miles")
  13939. },
  13940. {
  13941. name: "Gigamacro",
  13942. height: math.unit(10000, "miles")
  13943. },
  13944. ]
  13945. ))
  13946. characterMakers.push(() => makeCharacter(
  13947. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13948. {
  13949. side: {
  13950. height: math.unit(2, "inches"),
  13951. weight: math.unit(5, "grams"),
  13952. name: "Side",
  13953. image: {
  13954. source: "./media/characters/arc/side.svg"
  13955. }
  13956. },
  13957. },
  13958. [
  13959. {
  13960. name: "Micro",
  13961. height: math.unit(2, "inches"),
  13962. default: true
  13963. },
  13964. ]
  13965. ))
  13966. characterMakers.push(() => makeCharacter(
  13967. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13968. {
  13969. front: {
  13970. height: math.unit(1.1938, "meters"),
  13971. weight: math.unit(54, "kg"),
  13972. name: "Front",
  13973. image: {
  13974. source: "./media/characters/nebula-shahar/front.svg",
  13975. extra: 1642 / 1436,
  13976. bottom: 0.06
  13977. }
  13978. },
  13979. },
  13980. [
  13981. {
  13982. name: "Megamicro",
  13983. height: math.unit(0.3, "mm")
  13984. },
  13985. {
  13986. name: "Micro",
  13987. height: math.unit(3, "cm")
  13988. },
  13989. {
  13990. name: "Normal",
  13991. height: math.unit(138, "cm"),
  13992. default: true
  13993. },
  13994. {
  13995. name: "Macro",
  13996. height: math.unit(30, "m")
  13997. },
  13998. ]
  13999. ))
  14000. characterMakers.push(() => makeCharacter(
  14001. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14002. {
  14003. front: {
  14004. height: math.unit(5.24, "feet"),
  14005. weight: math.unit(150, "lb"),
  14006. name: "Front",
  14007. image: {
  14008. source: "./media/characters/shayla/front.svg",
  14009. extra: 1512 / 1414,
  14010. bottom: 0.01
  14011. }
  14012. },
  14013. back: {
  14014. height: math.unit(5.24, "feet"),
  14015. weight: math.unit(150, "lb"),
  14016. name: "Back",
  14017. image: {
  14018. source: "./media/characters/shayla/back.svg",
  14019. extra: 1512 / 1414
  14020. }
  14021. },
  14022. hand: {
  14023. height: math.unit(0.7781496062992126, "feet"),
  14024. name: "Hand",
  14025. image: {
  14026. source: "./media/characters/shayla/hand.svg"
  14027. }
  14028. },
  14029. foot: {
  14030. height: math.unit(1.4206036745406823, "feet"),
  14031. name: "Foot",
  14032. image: {
  14033. source: "./media/characters/shayla/foot.svg"
  14034. }
  14035. },
  14036. },
  14037. [
  14038. {
  14039. name: "Micro",
  14040. height: math.unit(0.32, "feet")
  14041. },
  14042. {
  14043. name: "Normal",
  14044. height: math.unit(5.24, "feet"),
  14045. default: true
  14046. },
  14047. {
  14048. name: "Macro",
  14049. height: math.unit(492.12, "feet")
  14050. },
  14051. {
  14052. name: "Megamacro",
  14053. height: math.unit(186.41, "miles")
  14054. },
  14055. ]
  14056. ))
  14057. characterMakers.push(() => makeCharacter(
  14058. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14059. {
  14060. front: {
  14061. height: math.unit(2.2, "m"),
  14062. weight: math.unit(120, "kg"),
  14063. name: "Front",
  14064. image: {
  14065. source: "./media/characters/pia-jr/front.svg",
  14066. extra: 1000 / 970,
  14067. bottom: 0.035
  14068. }
  14069. },
  14070. hand: {
  14071. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14072. name: "Hand",
  14073. image: {
  14074. source: "./media/characters/pia-jr/hand.svg"
  14075. }
  14076. },
  14077. paw: {
  14078. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14079. name: "Paw",
  14080. image: {
  14081. source: "./media/characters/pia-jr/paw.svg"
  14082. }
  14083. },
  14084. },
  14085. [
  14086. {
  14087. name: "Micro",
  14088. height: math.unit(1.2, "cm")
  14089. },
  14090. {
  14091. name: "Normal",
  14092. height: math.unit(2.2, "m"),
  14093. default: true
  14094. },
  14095. {
  14096. name: "Macro",
  14097. height: math.unit(180, "m")
  14098. },
  14099. {
  14100. name: "Megamacro",
  14101. height: math.unit(420, "km")
  14102. },
  14103. ]
  14104. ))
  14105. characterMakers.push(() => makeCharacter(
  14106. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14107. {
  14108. front: {
  14109. height: math.unit(2, "m"),
  14110. weight: math.unit(115, "kg"),
  14111. name: "Front",
  14112. image: {
  14113. source: "./media/characters/pia-sr/front.svg",
  14114. extra: 760 / 730,
  14115. bottom: 0.015
  14116. }
  14117. },
  14118. back: {
  14119. height: math.unit(2, "m"),
  14120. weight: math.unit(115, "kg"),
  14121. name: "Back",
  14122. image: {
  14123. source: "./media/characters/pia-sr/back.svg",
  14124. extra: 760 / 730,
  14125. bottom: 0.01
  14126. }
  14127. },
  14128. hand: {
  14129. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14130. name: "Hand",
  14131. image: {
  14132. source: "./media/characters/pia-sr/hand.svg"
  14133. }
  14134. },
  14135. foot: {
  14136. height: math.unit(1.83, "feet"),
  14137. name: "Foot",
  14138. image: {
  14139. source: "./media/characters/pia-sr/foot.svg"
  14140. }
  14141. },
  14142. },
  14143. [
  14144. {
  14145. name: "Micro",
  14146. height: math.unit(88, "mm")
  14147. },
  14148. {
  14149. name: "Normal",
  14150. height: math.unit(2, "m"),
  14151. default: true
  14152. },
  14153. {
  14154. name: "Macro",
  14155. height: math.unit(200, "m")
  14156. },
  14157. {
  14158. name: "Megamacro",
  14159. height: math.unit(420, "km")
  14160. },
  14161. ]
  14162. ))
  14163. characterMakers.push(() => makeCharacter(
  14164. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14165. {
  14166. front: {
  14167. height: math.unit(8 + 2 / 12, "feet"),
  14168. weight: math.unit(300, "lb"),
  14169. name: "Front",
  14170. image: {
  14171. source: "./media/characters/kibibyte/front.svg",
  14172. extra: 2221 / 2098,
  14173. bottom: 0.04
  14174. }
  14175. },
  14176. },
  14177. [
  14178. {
  14179. name: "Normal",
  14180. height: math.unit(8 + 2 / 12, "feet"),
  14181. default: true
  14182. },
  14183. {
  14184. name: "Socialable Macro",
  14185. height: math.unit(50, "feet")
  14186. },
  14187. {
  14188. name: "Macro",
  14189. height: math.unit(300, "feet")
  14190. },
  14191. {
  14192. name: "Megamacro",
  14193. height: math.unit(500, "miles")
  14194. },
  14195. ]
  14196. ))
  14197. characterMakers.push(() => makeCharacter(
  14198. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14199. {
  14200. front: {
  14201. height: math.unit(6, "feet"),
  14202. weight: math.unit(150, "lb"),
  14203. name: "Front",
  14204. image: {
  14205. source: "./media/characters/felix/front.svg",
  14206. extra: 762 / 722,
  14207. bottom: 0.02
  14208. }
  14209. },
  14210. frontClothed: {
  14211. height: math.unit(6, "feet"),
  14212. weight: math.unit(150, "lb"),
  14213. name: "Front (Clothed)",
  14214. image: {
  14215. source: "./media/characters/felix/front-clothed.svg",
  14216. extra: 762 / 722,
  14217. bottom: 0.02
  14218. }
  14219. },
  14220. },
  14221. [
  14222. {
  14223. name: "Normal",
  14224. height: math.unit(6 + 8 / 12, "feet"),
  14225. default: true
  14226. },
  14227. {
  14228. name: "Macro",
  14229. height: math.unit(2600, "feet")
  14230. },
  14231. {
  14232. name: "Megamacro",
  14233. height: math.unit(450, "miles")
  14234. },
  14235. ]
  14236. ))
  14237. characterMakers.push(() => makeCharacter(
  14238. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14239. {
  14240. front: {
  14241. height: math.unit(6 + 1 / 12, "feet"),
  14242. weight: math.unit(250, "lb"),
  14243. name: "Front",
  14244. image: {
  14245. source: "./media/characters/tobo/front.svg",
  14246. extra: 608 / 586,
  14247. bottom: 0.023
  14248. }
  14249. },
  14250. back: {
  14251. height: math.unit(6 + 1 / 12, "feet"),
  14252. weight: math.unit(250, "lb"),
  14253. name: "Back",
  14254. image: {
  14255. source: "./media/characters/tobo/back.svg",
  14256. extra: 608 / 586
  14257. }
  14258. },
  14259. },
  14260. [
  14261. {
  14262. name: "Nano",
  14263. height: math.unit(2, "nm")
  14264. },
  14265. {
  14266. name: "Megamicro",
  14267. height: math.unit(0.1, "mm")
  14268. },
  14269. {
  14270. name: "Micro",
  14271. height: math.unit(1, "inch"),
  14272. default: true
  14273. },
  14274. {
  14275. name: "Human-sized",
  14276. height: math.unit(6 + 1 / 12, "feet")
  14277. },
  14278. {
  14279. name: "Macro",
  14280. height: math.unit(250, "feet")
  14281. },
  14282. {
  14283. name: "Megamacro",
  14284. height: math.unit(75, "miles")
  14285. },
  14286. {
  14287. name: "Texas-sized",
  14288. height: math.unit(750, "miles")
  14289. },
  14290. {
  14291. name: "Teramacro",
  14292. height: math.unit(50000, "miles")
  14293. },
  14294. ]
  14295. ))
  14296. characterMakers.push(() => makeCharacter(
  14297. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14298. {
  14299. front: {
  14300. height: math.unit(6, "feet"),
  14301. weight: math.unit(269, "lb"),
  14302. name: "Front",
  14303. image: {
  14304. source: "./media/characters/danny-kapowsky/front.svg",
  14305. extra: 766 / 736,
  14306. bottom: 0.044
  14307. }
  14308. },
  14309. back: {
  14310. height: math.unit(6, "feet"),
  14311. weight: math.unit(269, "lb"),
  14312. name: "Back",
  14313. image: {
  14314. source: "./media/characters/danny-kapowsky/back.svg",
  14315. extra: 797 / 760,
  14316. bottom: 0.025
  14317. }
  14318. },
  14319. },
  14320. [
  14321. {
  14322. name: "Macro",
  14323. height: math.unit(150, "feet"),
  14324. default: true
  14325. },
  14326. {
  14327. name: "Macro+",
  14328. height: math.unit(200, "feet")
  14329. },
  14330. {
  14331. name: "Macro++",
  14332. height: math.unit(300, "feet")
  14333. },
  14334. {
  14335. name: "Macro+++",
  14336. height: math.unit(400, "feet")
  14337. },
  14338. ]
  14339. ))
  14340. characterMakers.push(() => makeCharacter(
  14341. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14342. {
  14343. side: {
  14344. height: math.unit(6, "feet"),
  14345. weight: math.unit(170, "lb"),
  14346. name: "Side",
  14347. image: {
  14348. source: "./media/characters/finn/side.svg",
  14349. extra: 1953 / 1807,
  14350. bottom: 0.057
  14351. }
  14352. },
  14353. },
  14354. [
  14355. {
  14356. name: "Megamacro",
  14357. height: math.unit(14445, "feet"),
  14358. default: true
  14359. },
  14360. ]
  14361. ))
  14362. characterMakers.push(() => makeCharacter(
  14363. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14364. {
  14365. front: {
  14366. height: math.unit(5 + 6 / 12, "feet"),
  14367. weight: math.unit(125, "lb"),
  14368. name: "Front",
  14369. image: {
  14370. source: "./media/characters/roy/front.svg",
  14371. extra: 1,
  14372. bottom: 0.11
  14373. }
  14374. },
  14375. },
  14376. [
  14377. {
  14378. name: "Micro",
  14379. height: math.unit(3, "inches"),
  14380. default: true
  14381. },
  14382. {
  14383. name: "Normal",
  14384. height: math.unit(5 + 6 / 12, "feet")
  14385. },
  14386. {
  14387. name: "Lesser Macro",
  14388. height: math.unit(60, "feet")
  14389. },
  14390. {
  14391. name: "Greater Macro",
  14392. height: math.unit(120, "feet")
  14393. },
  14394. ]
  14395. ))
  14396. characterMakers.push(() => makeCharacter(
  14397. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14398. {
  14399. front: {
  14400. height: math.unit(6, "feet"),
  14401. weight: math.unit(100, "lb"),
  14402. name: "Front",
  14403. image: {
  14404. source: "./media/characters/aevsivs/front.svg",
  14405. extra: 1,
  14406. bottom: 0.03
  14407. }
  14408. },
  14409. back: {
  14410. height: math.unit(6, "feet"),
  14411. weight: math.unit(100, "lb"),
  14412. name: "Back",
  14413. image: {
  14414. source: "./media/characters/aevsivs/back.svg"
  14415. }
  14416. },
  14417. },
  14418. [
  14419. {
  14420. name: "Micro",
  14421. height: math.unit(2, "inches"),
  14422. default: true
  14423. },
  14424. {
  14425. name: "Normal",
  14426. height: math.unit(5, "feet")
  14427. },
  14428. ]
  14429. ))
  14430. characterMakers.push(() => makeCharacter(
  14431. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14432. {
  14433. front: {
  14434. height: math.unit(5 + 7 / 12, "feet"),
  14435. weight: math.unit(159, "lb"),
  14436. name: "Front",
  14437. image: {
  14438. source: "./media/characters/hildegard/front.svg",
  14439. extra: 289 / 269,
  14440. bottom: 7.63 / 297.8
  14441. }
  14442. },
  14443. back: {
  14444. height: math.unit(5 + 7 / 12, "feet"),
  14445. weight: math.unit(159, "lb"),
  14446. name: "Back",
  14447. image: {
  14448. source: "./media/characters/hildegard/back.svg",
  14449. extra: 280 / 260,
  14450. bottom: 2.3 / 282
  14451. }
  14452. },
  14453. },
  14454. [
  14455. {
  14456. name: "Normal",
  14457. height: math.unit(5 + 7 / 12, "feet"),
  14458. default: true
  14459. },
  14460. ]
  14461. ))
  14462. characterMakers.push(() => makeCharacter(
  14463. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14464. {
  14465. bernard: {
  14466. height: math.unit(2 + 7 / 12, "feet"),
  14467. weight: math.unit(66, "lb"),
  14468. name: "Bernard",
  14469. rename: true,
  14470. image: {
  14471. source: "./media/characters/bernard-wilder/bernard.svg",
  14472. extra: 192 / 128,
  14473. bottom: 0.05
  14474. }
  14475. },
  14476. wilder: {
  14477. height: math.unit(5 + 8 / 12, "feet"),
  14478. weight: math.unit(143, "lb"),
  14479. name: "Wilder",
  14480. rename: true,
  14481. image: {
  14482. source: "./media/characters/bernard-wilder/wilder.svg",
  14483. extra: 361 / 312,
  14484. bottom: 0.02
  14485. }
  14486. },
  14487. },
  14488. [
  14489. {
  14490. name: "Normal",
  14491. height: math.unit(2 + 7 / 12, "feet"),
  14492. default: true
  14493. },
  14494. ]
  14495. ))
  14496. characterMakers.push(() => makeCharacter(
  14497. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14498. {
  14499. anthro: {
  14500. height: math.unit(6 + 1 / 12, "feet"),
  14501. weight: math.unit(155, "lb"),
  14502. name: "Anthro",
  14503. image: {
  14504. source: "./media/characters/hearth/anthro.svg",
  14505. extra: 260 / 250,
  14506. bottom: 0.02
  14507. }
  14508. },
  14509. feral: {
  14510. height: math.unit(3.78, "feet"),
  14511. weight: math.unit(35, "kg"),
  14512. name: "Feral",
  14513. image: {
  14514. source: "./media/characters/hearth/feral.svg",
  14515. extra: 153 / 135,
  14516. bottom: 0.03
  14517. }
  14518. },
  14519. },
  14520. [
  14521. {
  14522. name: "Normal",
  14523. height: math.unit(6 + 1 / 12, "feet"),
  14524. default: true
  14525. },
  14526. ]
  14527. ))
  14528. characterMakers.push(() => makeCharacter(
  14529. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14530. {
  14531. front: {
  14532. height: math.unit(6, "feet"),
  14533. weight: math.unit(182, "lb"),
  14534. name: "Front",
  14535. image: {
  14536. source: "./media/characters/ingrid/front.svg",
  14537. extra: 294 / 268,
  14538. bottom: 0.027
  14539. }
  14540. },
  14541. },
  14542. [
  14543. {
  14544. name: "Normal",
  14545. height: math.unit(6, "feet"),
  14546. default: true
  14547. },
  14548. ]
  14549. ))
  14550. characterMakers.push(() => makeCharacter(
  14551. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14552. {
  14553. eevee: {
  14554. height: math.unit(2 + 10 / 12, "feet"),
  14555. weight: math.unit(86, "lb"),
  14556. name: "Malgam",
  14557. image: {
  14558. source: "./media/characters/malgam/eevee.svg",
  14559. extra: 218 / 180,
  14560. bottom: 0.2
  14561. }
  14562. },
  14563. sylveon: {
  14564. height: math.unit(4, "feet"),
  14565. weight: math.unit(101, "lb"),
  14566. name: "Future Malgam",
  14567. rename: true,
  14568. image: {
  14569. source: "./media/characters/malgam/sylveon.svg",
  14570. extra: 371 / 325,
  14571. bottom: 0.015
  14572. }
  14573. },
  14574. gigantamax: {
  14575. height: math.unit(50, "feet"),
  14576. name: "Gigantamax Malgam",
  14577. rename: true,
  14578. image: {
  14579. source: "./media/characters/malgam/gigantamax.svg"
  14580. }
  14581. },
  14582. },
  14583. [
  14584. {
  14585. name: "Normal",
  14586. height: math.unit(2 + 10 / 12, "feet"),
  14587. default: true
  14588. },
  14589. ]
  14590. ))
  14591. characterMakers.push(() => makeCharacter(
  14592. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14593. {
  14594. front: {
  14595. height: math.unit(5 + 11 / 12, "feet"),
  14596. weight: math.unit(188, "lb"),
  14597. name: "Front",
  14598. image: {
  14599. source: "./media/characters/fleur/front.svg",
  14600. extra: 309 / 283,
  14601. bottom: 0.007
  14602. }
  14603. },
  14604. },
  14605. [
  14606. {
  14607. name: "Normal",
  14608. height: math.unit(5 + 11 / 12, "feet"),
  14609. default: true
  14610. },
  14611. ]
  14612. ))
  14613. characterMakers.push(() => makeCharacter(
  14614. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14615. {
  14616. front: {
  14617. height: math.unit(5 + 4 / 12, "feet"),
  14618. weight: math.unit(122, "lb"),
  14619. name: "Front",
  14620. image: {
  14621. source: "./media/characters/jude/front.svg",
  14622. extra: 288 / 273,
  14623. bottom: 0.03
  14624. }
  14625. },
  14626. },
  14627. [
  14628. {
  14629. name: "Normal",
  14630. height: math.unit(5 + 4 / 12, "feet"),
  14631. default: true
  14632. },
  14633. ]
  14634. ))
  14635. characterMakers.push(() => makeCharacter(
  14636. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14637. {
  14638. front: {
  14639. height: math.unit(5 + 11 / 12, "feet"),
  14640. weight: math.unit(190, "lb"),
  14641. name: "Front",
  14642. image: {
  14643. source: "./media/characters/seara/front.svg",
  14644. extra: 1,
  14645. bottom: 0.05
  14646. }
  14647. },
  14648. },
  14649. [
  14650. {
  14651. name: "Normal",
  14652. height: math.unit(5 + 11 / 12, "feet"),
  14653. default: true
  14654. },
  14655. ]
  14656. ))
  14657. characterMakers.push(() => makeCharacter(
  14658. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14659. {
  14660. front: {
  14661. height: math.unit(16 + 5 / 12, "feet"),
  14662. weight: math.unit(524, "lb"),
  14663. name: "Front",
  14664. image: {
  14665. source: "./media/characters/caspian/front.svg",
  14666. extra: 1,
  14667. bottom: 0.04
  14668. }
  14669. },
  14670. },
  14671. [
  14672. {
  14673. name: "Normal",
  14674. height: math.unit(16 + 5 / 12, "feet"),
  14675. default: true
  14676. },
  14677. ]
  14678. ))
  14679. characterMakers.push(() => makeCharacter(
  14680. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14681. {
  14682. front: {
  14683. height: math.unit(5 + 7 / 12, "feet"),
  14684. weight: math.unit(170, "lb"),
  14685. name: "Front",
  14686. image: {
  14687. source: "./media/characters/mika/front.svg",
  14688. extra: 1,
  14689. bottom: 0.016
  14690. }
  14691. },
  14692. },
  14693. [
  14694. {
  14695. name: "Normal",
  14696. height: math.unit(5 + 7 / 12, "feet"),
  14697. default: true
  14698. },
  14699. ]
  14700. ))
  14701. characterMakers.push(() => makeCharacter(
  14702. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14703. {
  14704. front: {
  14705. height: math.unit(6 + 2 / 12, "feet"),
  14706. weight: math.unit(268, "lb"),
  14707. name: "Front",
  14708. image: {
  14709. source: "./media/characters/sol/front.svg",
  14710. extra: 247 / 231,
  14711. bottom: 0.05
  14712. }
  14713. },
  14714. },
  14715. [
  14716. {
  14717. name: "Normal",
  14718. height: math.unit(6 + 2 / 12, "feet"),
  14719. default: true
  14720. },
  14721. ]
  14722. ))
  14723. characterMakers.push(() => makeCharacter(
  14724. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14725. {
  14726. buizel: {
  14727. height: math.unit(2 + 5 / 12, "feet"),
  14728. weight: math.unit(87, "lb"),
  14729. name: "Buizel",
  14730. image: {
  14731. source: "./media/characters/umiko/buizel.svg",
  14732. extra: 172 / 157,
  14733. bottom: 0.01
  14734. }
  14735. },
  14736. floatzel: {
  14737. height: math.unit(5 + 9 / 12, "feet"),
  14738. weight: math.unit(250, "lb"),
  14739. name: "Floatzel",
  14740. image: {
  14741. source: "./media/characters/umiko/floatzel.svg",
  14742. extra: 262 / 248
  14743. }
  14744. },
  14745. },
  14746. [
  14747. {
  14748. name: "Normal",
  14749. height: math.unit(2 + 5 / 12, "feet"),
  14750. default: true
  14751. },
  14752. ]
  14753. ))
  14754. characterMakers.push(() => makeCharacter(
  14755. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14756. {
  14757. front: {
  14758. height: math.unit(6 + 2 / 12, "feet"),
  14759. weight: math.unit(146, "lb"),
  14760. name: "Front",
  14761. image: {
  14762. source: "./media/characters/iliac/front.svg",
  14763. extra: 389 / 365,
  14764. bottom: 0.035
  14765. }
  14766. },
  14767. },
  14768. [
  14769. {
  14770. name: "Normal",
  14771. height: math.unit(6 + 2 / 12, "feet"),
  14772. default: true
  14773. },
  14774. ]
  14775. ))
  14776. characterMakers.push(() => makeCharacter(
  14777. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14778. {
  14779. front: {
  14780. height: math.unit(6, "feet"),
  14781. weight: math.unit(170, "lb"),
  14782. name: "Front",
  14783. image: {
  14784. source: "./media/characters/topaz/front.svg",
  14785. extra: 317 / 303,
  14786. bottom: 0.055
  14787. }
  14788. },
  14789. },
  14790. [
  14791. {
  14792. name: "Normal",
  14793. height: math.unit(6, "feet"),
  14794. default: true
  14795. },
  14796. ]
  14797. ))
  14798. characterMakers.push(() => makeCharacter(
  14799. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14800. {
  14801. front: {
  14802. height: math.unit(5 + 11 / 12, "feet"),
  14803. weight: math.unit(144, "lb"),
  14804. name: "Front",
  14805. image: {
  14806. source: "./media/characters/gabriel/front.svg",
  14807. extra: 285 / 262,
  14808. bottom: 0.004
  14809. }
  14810. },
  14811. },
  14812. [
  14813. {
  14814. name: "Normal",
  14815. height: math.unit(5 + 11 / 12, "feet"),
  14816. default: true
  14817. },
  14818. ]
  14819. ))
  14820. characterMakers.push(() => makeCharacter(
  14821. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14822. {
  14823. side: {
  14824. height: math.unit(6 + 5 / 12, "feet"),
  14825. weight: math.unit(300, "lb"),
  14826. name: "Side",
  14827. image: {
  14828. source: "./media/characters/tempest-suicune/side.svg",
  14829. extra: 195 / 154,
  14830. bottom: 0.04
  14831. }
  14832. },
  14833. },
  14834. [
  14835. {
  14836. name: "Normal",
  14837. height: math.unit(6 + 5 / 12, "feet"),
  14838. default: true
  14839. },
  14840. ]
  14841. ))
  14842. characterMakers.push(() => makeCharacter(
  14843. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14844. {
  14845. front: {
  14846. height: math.unit(7 + 2 / 12, "feet"),
  14847. weight: math.unit(322, "lb"),
  14848. name: "Front",
  14849. image: {
  14850. source: "./media/characters/vulcan/front.svg",
  14851. extra: 154 / 147,
  14852. bottom: 0.04
  14853. }
  14854. },
  14855. },
  14856. [
  14857. {
  14858. name: "Normal",
  14859. height: math.unit(7 + 2 / 12, "feet"),
  14860. default: true
  14861. },
  14862. ]
  14863. ))
  14864. characterMakers.push(() => makeCharacter(
  14865. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14866. {
  14867. front: {
  14868. height: math.unit(5 + 10 / 12, "feet"),
  14869. weight: math.unit(264, "lb"),
  14870. name: "Front",
  14871. image: {
  14872. source: "./media/characters/gault/front.svg",
  14873. extra: 161 / 140,
  14874. bottom: 0.028
  14875. }
  14876. },
  14877. },
  14878. [
  14879. {
  14880. name: "Normal",
  14881. height: math.unit(5 + 10 / 12, "feet"),
  14882. default: true
  14883. },
  14884. ]
  14885. ))
  14886. characterMakers.push(() => makeCharacter(
  14887. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14888. {
  14889. front: {
  14890. height: math.unit(6, "feet"),
  14891. weight: math.unit(150, "lb"),
  14892. name: "Front",
  14893. image: {
  14894. source: "./media/characters/shard/front.svg",
  14895. extra: 273 / 238,
  14896. bottom: 0.02
  14897. }
  14898. },
  14899. },
  14900. [
  14901. {
  14902. name: "Normal",
  14903. height: math.unit(3 + 6 / 12, "feet"),
  14904. default: true
  14905. },
  14906. ]
  14907. ))
  14908. characterMakers.push(() => makeCharacter(
  14909. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14910. {
  14911. front: {
  14912. height: math.unit(5 + 11 / 12, "feet"),
  14913. weight: math.unit(146, "lb"),
  14914. name: "Front",
  14915. image: {
  14916. source: "./media/characters/ashe/front.svg",
  14917. extra: 400 / 373,
  14918. bottom: 0.01
  14919. }
  14920. },
  14921. },
  14922. [
  14923. {
  14924. name: "Normal",
  14925. height: math.unit(5 + 11 / 12, "feet"),
  14926. default: true
  14927. },
  14928. ]
  14929. ))
  14930. characterMakers.push(() => makeCharacter(
  14931. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14932. {
  14933. front: {
  14934. height: math.unit(5 + 5 / 12, "feet"),
  14935. weight: math.unit(135, "lb"),
  14936. name: "Front",
  14937. image: {
  14938. source: "./media/characters/beatrix/front.svg",
  14939. extra: 392 / 379,
  14940. bottom: 0.01
  14941. }
  14942. },
  14943. },
  14944. [
  14945. {
  14946. name: "Normal",
  14947. height: math.unit(6, "feet"),
  14948. default: true
  14949. },
  14950. ]
  14951. ))
  14952. characterMakers.push(() => makeCharacter(
  14953. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14954. {
  14955. front: {
  14956. height: math.unit(6, "feet"),
  14957. weight: math.unit(150, "lb"),
  14958. name: "Front",
  14959. image: {
  14960. source: "./media/characters/ignatius/front.svg",
  14961. extra: 245 / 222,
  14962. bottom: 0.01
  14963. }
  14964. },
  14965. },
  14966. [
  14967. {
  14968. name: "Normal",
  14969. height: math.unit(5 + 5 / 12, "feet"),
  14970. default: true
  14971. },
  14972. ]
  14973. ))
  14974. characterMakers.push(() => makeCharacter(
  14975. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14976. {
  14977. front: {
  14978. height: math.unit(6 + 2 / 12, "feet"),
  14979. weight: math.unit(138, "lb"),
  14980. name: "Front",
  14981. image: {
  14982. source: "./media/characters/mei-li/front.svg",
  14983. extra: 237 / 229,
  14984. bottom: 0.03
  14985. }
  14986. },
  14987. },
  14988. [
  14989. {
  14990. name: "Normal",
  14991. height: math.unit(6 + 2 / 12, "feet"),
  14992. default: true
  14993. },
  14994. ]
  14995. ))
  14996. characterMakers.push(() => makeCharacter(
  14997. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14998. {
  14999. front: {
  15000. height: math.unit(2 + 4 / 12, "feet"),
  15001. weight: math.unit(62, "lb"),
  15002. name: "Front",
  15003. image: {
  15004. source: "./media/characters/puru/front.svg",
  15005. extra: 206 / 149,
  15006. bottom: 0.06
  15007. }
  15008. },
  15009. },
  15010. [
  15011. {
  15012. name: "Normal",
  15013. height: math.unit(2 + 4 / 12, "feet"),
  15014. default: true
  15015. },
  15016. ]
  15017. ))
  15018. characterMakers.push(() => makeCharacter(
  15019. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15020. {
  15021. anthro: {
  15022. height: math.unit(5 + 8/12, "feet"),
  15023. weight: math.unit(200, "lb"),
  15024. energyNeed: math.unit(2000, "kcal"),
  15025. name: "Anthro",
  15026. image: {
  15027. source: "./media/characters/kee/anthro.svg",
  15028. extra: 3251/3184,
  15029. bottom: 250/3501
  15030. }
  15031. },
  15032. taur: {
  15033. height: math.unit(11, "feet"),
  15034. weight: math.unit(500, "lb"),
  15035. energyNeed: math.unit(5000, "kcal"),
  15036. name: "Taur",
  15037. image: {
  15038. source: "./media/characters/kee/taur.svg",
  15039. extra: 1362/1320,
  15040. bottom: 83/1445
  15041. }
  15042. },
  15043. },
  15044. [
  15045. {
  15046. name: "Normal",
  15047. height: math.unit(5 + 8/12, "feet"),
  15048. default: true
  15049. },
  15050. {
  15051. name: "Macro",
  15052. height: math.unit(35, "feet")
  15053. },
  15054. ]
  15055. ))
  15056. characterMakers.push(() => makeCharacter(
  15057. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15058. {
  15059. anthro: {
  15060. height: math.unit(7, "feet"),
  15061. weight: math.unit(190, "lb"),
  15062. name: "Anthro",
  15063. image: {
  15064. source: "./media/characters/cobalt-dracha/anthro.svg",
  15065. extra: 231 / 225,
  15066. bottom: 0.04
  15067. }
  15068. },
  15069. feral: {
  15070. height: math.unit(9 + 7 / 12, "feet"),
  15071. weight: math.unit(294, "lb"),
  15072. name: "Feral",
  15073. image: {
  15074. source: "./media/characters/cobalt-dracha/feral.svg",
  15075. extra: 692 / 633,
  15076. bottom: 0.05
  15077. }
  15078. },
  15079. },
  15080. [
  15081. {
  15082. name: "Normal",
  15083. height: math.unit(7, "feet"),
  15084. default: true
  15085. },
  15086. ]
  15087. ))
  15088. characterMakers.push(() => makeCharacter(
  15089. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15090. {
  15091. fallen: {
  15092. height: math.unit(11 + 8 / 12, "feet"),
  15093. weight: math.unit(485, "lb"),
  15094. name: "Java (Fallen)",
  15095. rename: true,
  15096. image: {
  15097. source: "./media/characters/java/fallen.svg",
  15098. extra: 226 / 208,
  15099. bottom: 0.005
  15100. }
  15101. },
  15102. godkin: {
  15103. height: math.unit(10 + 6 / 12, "feet"),
  15104. weight: math.unit(328, "lb"),
  15105. name: "Java (Godkin)",
  15106. rename: true,
  15107. image: {
  15108. source: "./media/characters/java/godkin.svg",
  15109. extra: 270 / 262,
  15110. bottom: 0.02
  15111. }
  15112. },
  15113. },
  15114. [
  15115. {
  15116. name: "Normal",
  15117. height: math.unit(11 + 8 / 12, "feet"),
  15118. default: true
  15119. },
  15120. ]
  15121. ))
  15122. characterMakers.push(() => makeCharacter(
  15123. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15124. {
  15125. front: {
  15126. height: math.unit(7 + 8 / 12, "feet"),
  15127. weight: math.unit(320, "lb"),
  15128. name: "Front",
  15129. image: {
  15130. source: "./media/characters/skoll/front.svg",
  15131. extra: 232 / 220,
  15132. bottom: 0.02
  15133. }
  15134. },
  15135. },
  15136. [
  15137. {
  15138. name: "Normal",
  15139. height: math.unit(7 + 8 / 12, "feet"),
  15140. default: true
  15141. },
  15142. ]
  15143. ))
  15144. characterMakers.push(() => makeCharacter(
  15145. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15146. {
  15147. front: {
  15148. height: math.unit(5 + 9 / 12, "feet"),
  15149. weight: math.unit(170, "lb"),
  15150. name: "Front",
  15151. image: {
  15152. source: "./media/characters/purna/front.svg",
  15153. extra: 239 / 229,
  15154. bottom: 0.01
  15155. }
  15156. },
  15157. },
  15158. [
  15159. {
  15160. name: "Normal",
  15161. height: math.unit(5 + 9 / 12, "feet"),
  15162. default: true
  15163. },
  15164. ]
  15165. ))
  15166. characterMakers.push(() => makeCharacter(
  15167. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15168. {
  15169. front: {
  15170. height: math.unit(5 + 9 / 12, "feet"),
  15171. weight: math.unit(142, "lb"),
  15172. name: "Front",
  15173. image: {
  15174. source: "./media/characters/kuva/front.svg",
  15175. extra: 281 / 271,
  15176. bottom: 0.006
  15177. }
  15178. },
  15179. },
  15180. [
  15181. {
  15182. name: "Normal",
  15183. height: math.unit(5 + 9 / 12, "feet"),
  15184. default: true
  15185. },
  15186. ]
  15187. ))
  15188. characterMakers.push(() => makeCharacter(
  15189. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15190. {
  15191. anthro: {
  15192. height: math.unit(9 + 2 / 12, "feet"),
  15193. weight: math.unit(270, "lb"),
  15194. name: "Anthro",
  15195. image: {
  15196. source: "./media/characters/embra/anthro.svg",
  15197. extra: 200 / 187,
  15198. bottom: 0.02
  15199. }
  15200. },
  15201. feral: {
  15202. height: math.unit(18 + 8 / 12, "feet"),
  15203. weight: math.unit(576, "lb"),
  15204. name: "Feral",
  15205. image: {
  15206. source: "./media/characters/embra/feral.svg",
  15207. extra: 152 / 137,
  15208. bottom: 0.037
  15209. }
  15210. },
  15211. },
  15212. [
  15213. {
  15214. name: "Normal",
  15215. height: math.unit(9 + 2 / 12, "feet"),
  15216. default: true
  15217. },
  15218. ]
  15219. ))
  15220. characterMakers.push(() => makeCharacter(
  15221. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15222. {
  15223. anthro: {
  15224. height: math.unit(10 + 9 / 12, "feet"),
  15225. weight: math.unit(224, "lb"),
  15226. name: "Anthro",
  15227. image: {
  15228. source: "./media/characters/grottos/anthro.svg",
  15229. extra: 350 / 332,
  15230. bottom: 0.045
  15231. }
  15232. },
  15233. feral: {
  15234. height: math.unit(20 + 7 / 12, "feet"),
  15235. weight: math.unit(629, "lb"),
  15236. name: "Feral",
  15237. image: {
  15238. source: "./media/characters/grottos/feral.svg",
  15239. extra: 207 / 190,
  15240. bottom: 0.05
  15241. }
  15242. },
  15243. },
  15244. [
  15245. {
  15246. name: "Normal",
  15247. height: math.unit(10 + 9 / 12, "feet"),
  15248. default: true
  15249. },
  15250. ]
  15251. ))
  15252. characterMakers.push(() => makeCharacter(
  15253. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15254. {
  15255. anthro: {
  15256. height: math.unit(9 + 6 / 12, "feet"),
  15257. weight: math.unit(298, "lb"),
  15258. name: "Anthro",
  15259. image: {
  15260. source: "./media/characters/frifna/anthro.svg",
  15261. extra: 282 / 269,
  15262. bottom: 0.015
  15263. }
  15264. },
  15265. feral: {
  15266. height: math.unit(16 + 2 / 12, "feet"),
  15267. weight: math.unit(624, "lb"),
  15268. name: "Feral",
  15269. image: {
  15270. source: "./media/characters/frifna/feral.svg"
  15271. }
  15272. },
  15273. },
  15274. [
  15275. {
  15276. name: "Normal",
  15277. height: math.unit(9 + 6 / 12, "feet"),
  15278. default: true
  15279. },
  15280. ]
  15281. ))
  15282. characterMakers.push(() => makeCharacter(
  15283. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15284. {
  15285. front: {
  15286. height: math.unit(6 + 2 / 12, "feet"),
  15287. weight: math.unit(168, "lb"),
  15288. name: "Front",
  15289. image: {
  15290. source: "./media/characters/elise/front.svg",
  15291. extra: 276 / 271
  15292. }
  15293. },
  15294. },
  15295. [
  15296. {
  15297. name: "Normal",
  15298. height: math.unit(6 + 2 / 12, "feet"),
  15299. default: true
  15300. },
  15301. ]
  15302. ))
  15303. characterMakers.push(() => makeCharacter(
  15304. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15305. {
  15306. front: {
  15307. height: math.unit(5 + 10 / 12, "feet"),
  15308. weight: math.unit(210, "lb"),
  15309. name: "Front",
  15310. image: {
  15311. source: "./media/characters/glade/front.svg",
  15312. extra: 258 / 247,
  15313. bottom: 0.008
  15314. }
  15315. },
  15316. },
  15317. [
  15318. {
  15319. name: "Normal",
  15320. height: math.unit(5 + 10 / 12, "feet"),
  15321. default: true
  15322. },
  15323. ]
  15324. ))
  15325. characterMakers.push(() => makeCharacter(
  15326. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15327. {
  15328. front: {
  15329. height: math.unit(5 + 10 / 12, "feet"),
  15330. weight: math.unit(129, "lb"),
  15331. name: "Front",
  15332. image: {
  15333. source: "./media/characters/rina/front.svg",
  15334. extra: 266 / 255,
  15335. bottom: 0.005
  15336. }
  15337. },
  15338. },
  15339. [
  15340. {
  15341. name: "Normal",
  15342. height: math.unit(5 + 10 / 12, "feet"),
  15343. default: true
  15344. },
  15345. ]
  15346. ))
  15347. characterMakers.push(() => makeCharacter(
  15348. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15349. {
  15350. front: {
  15351. height: math.unit(6 + 1 / 12, "feet"),
  15352. weight: math.unit(192, "lb"),
  15353. name: "Front",
  15354. image: {
  15355. source: "./media/characters/veronica/front.svg",
  15356. extra: 319 / 309,
  15357. bottom: 0.005
  15358. }
  15359. },
  15360. },
  15361. [
  15362. {
  15363. name: "Normal",
  15364. height: math.unit(6 + 1 / 12, "feet"),
  15365. default: true
  15366. },
  15367. ]
  15368. ))
  15369. characterMakers.push(() => makeCharacter(
  15370. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15371. {
  15372. front: {
  15373. height: math.unit(9 + 3 / 12, "feet"),
  15374. weight: math.unit(1100, "lb"),
  15375. name: "Front",
  15376. image: {
  15377. source: "./media/characters/braxton/front.svg",
  15378. extra: 1057 / 984,
  15379. bottom: 0.05
  15380. }
  15381. },
  15382. },
  15383. [
  15384. {
  15385. name: "Normal",
  15386. height: math.unit(9 + 3 / 12, "feet")
  15387. },
  15388. {
  15389. name: "Giant",
  15390. height: math.unit(300, "feet"),
  15391. default: true
  15392. },
  15393. {
  15394. name: "Macro",
  15395. height: math.unit(700, "feet")
  15396. },
  15397. {
  15398. name: "Megamacro",
  15399. height: math.unit(6000, "feet")
  15400. },
  15401. ]
  15402. ))
  15403. characterMakers.push(() => makeCharacter(
  15404. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15405. {
  15406. front: {
  15407. height: math.unit(6 + 7 / 12, "feet"),
  15408. weight: math.unit(150, "lb"),
  15409. name: "Front",
  15410. image: {
  15411. source: "./media/characters/blue-feyonics/front.svg",
  15412. extra: 1403 / 1306,
  15413. bottom: 0.047
  15414. }
  15415. },
  15416. },
  15417. [
  15418. {
  15419. name: "Normal",
  15420. height: math.unit(6 + 7 / 12, "feet"),
  15421. default: true
  15422. },
  15423. ]
  15424. ))
  15425. characterMakers.push(() => makeCharacter(
  15426. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15427. {
  15428. front: {
  15429. height: math.unit(1.8, "meters"),
  15430. weight: math.unit(60, "kg"),
  15431. name: "Front",
  15432. image: {
  15433. source: "./media/characters/maxwell/front.svg",
  15434. extra: 2060 / 1873
  15435. }
  15436. },
  15437. },
  15438. [
  15439. {
  15440. name: "Micro",
  15441. height: math.unit(1, "mm")
  15442. },
  15443. {
  15444. name: "Normal",
  15445. height: math.unit(1.8, "meter"),
  15446. default: true
  15447. },
  15448. {
  15449. name: "Macro",
  15450. height: math.unit(30, "meters")
  15451. },
  15452. {
  15453. name: "Megamacro",
  15454. height: math.unit(10, "km")
  15455. },
  15456. ]
  15457. ))
  15458. characterMakers.push(() => makeCharacter(
  15459. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15460. {
  15461. front: {
  15462. height: math.unit(6, "feet"),
  15463. weight: math.unit(150, "lb"),
  15464. name: "Front",
  15465. image: {
  15466. source: "./media/characters/jack/front.svg",
  15467. extra: 1754 / 1640,
  15468. bottom: 0.01
  15469. }
  15470. },
  15471. },
  15472. [
  15473. {
  15474. name: "Normal",
  15475. height: math.unit(80000, "feet"),
  15476. default: true
  15477. },
  15478. {
  15479. name: "Max size",
  15480. height: math.unit(10, "lightyears")
  15481. },
  15482. ]
  15483. ))
  15484. characterMakers.push(() => makeCharacter(
  15485. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15486. {
  15487. upright: {
  15488. height: math.unit(7, "feet"),
  15489. weight: math.unit(170, "lb"),
  15490. name: "Upright",
  15491. image: {
  15492. source: "./media/characters/cafat/upright.svg",
  15493. bottom: 0.01
  15494. }
  15495. },
  15496. uprightFull: {
  15497. height: math.unit(7, "feet"),
  15498. weight: math.unit(170, "lb"),
  15499. name: "Upright (Full)",
  15500. image: {
  15501. source: "./media/characters/cafat/upright-full.svg",
  15502. bottom: 0.01
  15503. }
  15504. },
  15505. side: {
  15506. height: math.unit(5, "feet"),
  15507. weight: math.unit(150, "lb"),
  15508. name: "Side",
  15509. image: {
  15510. source: "./media/characters/cafat/side.svg"
  15511. }
  15512. },
  15513. },
  15514. [
  15515. {
  15516. name: "Small",
  15517. height: math.unit(7, "feet"),
  15518. default: true
  15519. },
  15520. {
  15521. name: "Large",
  15522. height: math.unit(15.5, "feet")
  15523. },
  15524. ]
  15525. ))
  15526. characterMakers.push(() => makeCharacter(
  15527. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15528. {
  15529. front: {
  15530. height: math.unit(6, "feet"),
  15531. weight: math.unit(150, "lb"),
  15532. name: "Front",
  15533. image: {
  15534. source: "./media/characters/verin-raharra/front.svg",
  15535. extra: 5019 / 4835,
  15536. bottom: 0.023
  15537. }
  15538. },
  15539. },
  15540. [
  15541. {
  15542. name: "Normal",
  15543. height: math.unit(7 + 5 / 12, "feet"),
  15544. default: true
  15545. },
  15546. {
  15547. name: "Upsized",
  15548. height: math.unit(20, "feet")
  15549. },
  15550. ]
  15551. ))
  15552. characterMakers.push(() => makeCharacter(
  15553. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15554. {
  15555. front: {
  15556. height: math.unit(7, "feet"),
  15557. weight: math.unit(230, "lb"),
  15558. name: "Front",
  15559. image: {
  15560. source: "./media/characters/nakata/front.svg",
  15561. extra: 1.005,
  15562. bottom: 0.01
  15563. }
  15564. },
  15565. },
  15566. [
  15567. {
  15568. name: "Normal",
  15569. height: math.unit(7, "feet"),
  15570. default: true
  15571. },
  15572. {
  15573. name: "Big",
  15574. height: math.unit(14, "feet")
  15575. },
  15576. {
  15577. name: "Macro",
  15578. height: math.unit(400, "feet")
  15579. },
  15580. ]
  15581. ))
  15582. characterMakers.push(() => makeCharacter(
  15583. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15584. {
  15585. front: {
  15586. height: math.unit(4.91, "feet"),
  15587. weight: math.unit(100, "lb"),
  15588. name: "Front",
  15589. image: {
  15590. source: "./media/characters/lily/front.svg",
  15591. extra: 1585 / 1415,
  15592. bottom: 0.02
  15593. }
  15594. },
  15595. },
  15596. [
  15597. {
  15598. name: "Normal",
  15599. height: math.unit(4.91, "feet"),
  15600. default: true
  15601. },
  15602. ]
  15603. ))
  15604. characterMakers.push(() => makeCharacter(
  15605. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15606. {
  15607. laying: {
  15608. height: math.unit(4 + 4 / 12, "feet"),
  15609. weight: math.unit(600, "lb"),
  15610. name: "Laying",
  15611. image: {
  15612. source: "./media/characters/sheila/laying.svg",
  15613. extra: 1333 / 1265,
  15614. bottom: 0.16
  15615. }
  15616. },
  15617. },
  15618. [
  15619. {
  15620. name: "Normal",
  15621. height: math.unit(4 + 4 / 12, "feet"),
  15622. default: true
  15623. },
  15624. ]
  15625. ))
  15626. characterMakers.push(() => makeCharacter(
  15627. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15628. {
  15629. front: {
  15630. height: math.unit(6, "feet"),
  15631. weight: math.unit(190, "lb"),
  15632. name: "Front",
  15633. image: {
  15634. source: "./media/characters/sax/front.svg",
  15635. extra: 1187 / 973,
  15636. bottom: 0.042
  15637. }
  15638. },
  15639. },
  15640. [
  15641. {
  15642. name: "Micro",
  15643. height: math.unit(4, "inches"),
  15644. default: true
  15645. },
  15646. ]
  15647. ))
  15648. characterMakers.push(() => makeCharacter(
  15649. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15650. {
  15651. front: {
  15652. height: math.unit(6, "feet"),
  15653. weight: math.unit(150, "lb"),
  15654. name: "Front",
  15655. image: {
  15656. source: "./media/characters/pandora/front.svg",
  15657. extra: 2720 / 2556,
  15658. bottom: 0.015
  15659. }
  15660. },
  15661. back: {
  15662. height: math.unit(6, "feet"),
  15663. weight: math.unit(150, "lb"),
  15664. name: "Back",
  15665. image: {
  15666. source: "./media/characters/pandora/back.svg",
  15667. extra: 2720 / 2556,
  15668. bottom: 0.01
  15669. }
  15670. },
  15671. beans: {
  15672. height: math.unit(6 / 8, "feet"),
  15673. name: "Beans",
  15674. image: {
  15675. source: "./media/characters/pandora/beans.svg"
  15676. }
  15677. },
  15678. skirt: {
  15679. height: math.unit(6, "feet"),
  15680. weight: math.unit(150, "lb"),
  15681. name: "Skirt",
  15682. image: {
  15683. source: "./media/characters/pandora/skirt.svg",
  15684. extra: 1622 / 1525,
  15685. bottom: 0.015
  15686. }
  15687. },
  15688. hoodie: {
  15689. height: math.unit(6, "feet"),
  15690. weight: math.unit(150, "lb"),
  15691. name: "Hoodie",
  15692. image: {
  15693. source: "./media/characters/pandora/hoodie.svg",
  15694. extra: 1622 / 1525,
  15695. bottom: 0.015
  15696. }
  15697. },
  15698. casual: {
  15699. height: math.unit(6, "feet"),
  15700. weight: math.unit(150, "lb"),
  15701. name: "Casual",
  15702. image: {
  15703. source: "./media/characters/pandora/casual.svg",
  15704. extra: 1622 / 1525,
  15705. bottom: 0.015
  15706. }
  15707. },
  15708. },
  15709. [
  15710. {
  15711. name: "Normal",
  15712. height: math.unit(6, "feet")
  15713. },
  15714. {
  15715. name: "Big Steppy",
  15716. height: math.unit(1, "km"),
  15717. default: true
  15718. },
  15719. ]
  15720. ))
  15721. characterMakers.push(() => makeCharacter(
  15722. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15723. {
  15724. side: {
  15725. height: math.unit(10, "feet"),
  15726. weight: math.unit(800, "kg"),
  15727. name: "Side",
  15728. image: {
  15729. source: "./media/characters/venio-darcony/side.svg",
  15730. extra: 1373 / 1003,
  15731. bottom: 0.037
  15732. }
  15733. },
  15734. front: {
  15735. height: math.unit(19, "feet"),
  15736. weight: math.unit(800, "kg"),
  15737. name: "Front",
  15738. image: {
  15739. source: "./media/characters/venio-darcony/front.svg"
  15740. }
  15741. },
  15742. back: {
  15743. height: math.unit(19, "feet"),
  15744. weight: math.unit(800, "kg"),
  15745. name: "Back",
  15746. image: {
  15747. source: "./media/characters/venio-darcony/back.svg"
  15748. }
  15749. },
  15750. sideNsfw: {
  15751. height: math.unit(10, "feet"),
  15752. weight: math.unit(800, "kg"),
  15753. name: "Side (NSFW)",
  15754. image: {
  15755. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15756. extra: 1373 / 1003,
  15757. bottom: 0.037
  15758. }
  15759. },
  15760. frontNsfw: {
  15761. height: math.unit(19, "feet"),
  15762. weight: math.unit(800, "kg"),
  15763. name: "Front (NSFW)",
  15764. image: {
  15765. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15766. }
  15767. },
  15768. backNsfw: {
  15769. height: math.unit(19, "feet"),
  15770. weight: math.unit(800, "kg"),
  15771. name: "Back (NSFW)",
  15772. image: {
  15773. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15774. }
  15775. },
  15776. sideArmored: {
  15777. height: math.unit(10, "feet"),
  15778. weight: math.unit(800, "kg"),
  15779. name: "Side (Armored)",
  15780. image: {
  15781. source: "./media/characters/venio-darcony/side-armored.svg",
  15782. extra: 1373 / 1003,
  15783. bottom: 0.037
  15784. }
  15785. },
  15786. frontArmored: {
  15787. height: math.unit(19, "feet"),
  15788. weight: math.unit(900, "kg"),
  15789. name: "Front (Armored)",
  15790. image: {
  15791. source: "./media/characters/venio-darcony/front-armored.svg"
  15792. }
  15793. },
  15794. backArmored: {
  15795. height: math.unit(19, "feet"),
  15796. weight: math.unit(900, "kg"),
  15797. name: "Back (Armored)",
  15798. image: {
  15799. source: "./media/characters/venio-darcony/back-armored.svg"
  15800. }
  15801. },
  15802. sword: {
  15803. height: math.unit(10, "feet"),
  15804. weight: math.unit(50, "lb"),
  15805. name: "Sword",
  15806. image: {
  15807. source: "./media/characters/venio-darcony/sword.svg"
  15808. }
  15809. },
  15810. },
  15811. [
  15812. {
  15813. name: "Normal",
  15814. height: math.unit(10, "feet")
  15815. },
  15816. {
  15817. name: "Macro",
  15818. height: math.unit(130, "feet"),
  15819. default: true
  15820. },
  15821. {
  15822. name: "Macro+",
  15823. height: math.unit(240, "feet")
  15824. },
  15825. ]
  15826. ))
  15827. characterMakers.push(() => makeCharacter(
  15828. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15829. {
  15830. front: {
  15831. height: math.unit(6, "feet"),
  15832. weight: math.unit(150, "lb"),
  15833. name: "Front",
  15834. image: {
  15835. source: "./media/characters/veski/front.svg",
  15836. extra: 1299 / 1225,
  15837. bottom: 0.04
  15838. }
  15839. },
  15840. back: {
  15841. height: math.unit(6, "feet"),
  15842. weight: math.unit(150, "lb"),
  15843. name: "Back",
  15844. image: {
  15845. source: "./media/characters/veski/back.svg",
  15846. extra: 1299 / 1225,
  15847. bottom: 0.008
  15848. }
  15849. },
  15850. maw: {
  15851. height: math.unit(1.5 * 1.21, "feet"),
  15852. name: "Maw",
  15853. image: {
  15854. source: "./media/characters/veski/maw.svg"
  15855. }
  15856. },
  15857. },
  15858. [
  15859. {
  15860. name: "Macro",
  15861. height: math.unit(2, "km"),
  15862. default: true
  15863. },
  15864. ]
  15865. ))
  15866. characterMakers.push(() => makeCharacter(
  15867. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15868. {
  15869. front: {
  15870. height: math.unit(5 + 7 / 12, "feet"),
  15871. name: "Front",
  15872. image: {
  15873. source: "./media/characters/isabelle/front.svg",
  15874. extra: 2130 / 1976,
  15875. bottom: 0.05
  15876. }
  15877. },
  15878. },
  15879. [
  15880. {
  15881. name: "Supermicro",
  15882. height: math.unit(10, "micrometers")
  15883. },
  15884. {
  15885. name: "Micro",
  15886. height: math.unit(1, "inch")
  15887. },
  15888. {
  15889. name: "Tiny",
  15890. height: math.unit(5, "inches")
  15891. },
  15892. {
  15893. name: "Standard",
  15894. height: math.unit(5 + 7 / 12, "inches")
  15895. },
  15896. {
  15897. name: "Macro",
  15898. height: math.unit(80, "meters"),
  15899. default: true
  15900. },
  15901. {
  15902. name: "Megamacro",
  15903. height: math.unit(250, "meters")
  15904. },
  15905. {
  15906. name: "Gigamacro",
  15907. height: math.unit(5, "km")
  15908. },
  15909. {
  15910. name: "Cosmic",
  15911. height: math.unit(2.5e6, "miles")
  15912. },
  15913. ]
  15914. ))
  15915. characterMakers.push(() => makeCharacter(
  15916. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15917. {
  15918. front: {
  15919. height: math.unit(6, "feet"),
  15920. weight: math.unit(150, "lb"),
  15921. name: "Front",
  15922. image: {
  15923. source: "./media/characters/hanzo/front.svg",
  15924. extra: 374 / 344,
  15925. bottom: 0.02
  15926. }
  15927. },
  15928. },
  15929. [
  15930. {
  15931. name: "Normal",
  15932. height: math.unit(8, "feet"),
  15933. default: true
  15934. },
  15935. ]
  15936. ))
  15937. characterMakers.push(() => makeCharacter(
  15938. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15939. {
  15940. front: {
  15941. height: math.unit(7, "feet"),
  15942. weight: math.unit(130, "lb"),
  15943. name: "Front",
  15944. image: {
  15945. source: "./media/characters/anna/front.svg",
  15946. extra: 169 / 145,
  15947. bottom: 0.06
  15948. }
  15949. },
  15950. full: {
  15951. height: math.unit(4.96, "feet"),
  15952. weight: math.unit(220, "lb"),
  15953. name: "Full",
  15954. image: {
  15955. source: "./media/characters/anna/full.svg",
  15956. extra: 138 / 114,
  15957. bottom: 0.15
  15958. }
  15959. },
  15960. tongue: {
  15961. height: math.unit(2.53, "feet"),
  15962. name: "Tongue",
  15963. image: {
  15964. source: "./media/characters/anna/tongue.svg"
  15965. }
  15966. },
  15967. },
  15968. [
  15969. {
  15970. name: "Normal",
  15971. height: math.unit(7, "feet"),
  15972. default: true
  15973. },
  15974. ]
  15975. ))
  15976. characterMakers.push(() => makeCharacter(
  15977. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15978. {
  15979. front: {
  15980. height: math.unit(7, "feet"),
  15981. weight: math.unit(150, "lb"),
  15982. name: "Front",
  15983. image: {
  15984. source: "./media/characters/ian-corvid/front.svg",
  15985. extra: 150 / 142,
  15986. bottom: 0.02
  15987. }
  15988. },
  15989. back: {
  15990. height: math.unit(7, "feet"),
  15991. weight: math.unit(150, "lb"),
  15992. name: "Back",
  15993. image: {
  15994. source: "./media/characters/ian-corvid/back.svg",
  15995. extra: 150 / 143,
  15996. bottom: 0.01
  15997. }
  15998. },
  15999. stomping: {
  16000. height: math.unit(7, "feet"),
  16001. weight: math.unit(150, "lb"),
  16002. name: "Stomping",
  16003. image: {
  16004. source: "./media/characters/ian-corvid/stomping.svg",
  16005. extra: 76 / 72
  16006. }
  16007. },
  16008. sitting: {
  16009. height: math.unit(7 / 1.8, "feet"),
  16010. weight: math.unit(150, "lb"),
  16011. name: "Sitting",
  16012. image: {
  16013. source: "./media/characters/ian-corvid/sitting.svg",
  16014. extra: 1400 / 1269,
  16015. bottom: 0.15
  16016. }
  16017. },
  16018. },
  16019. [
  16020. {
  16021. name: "Tiny Microw",
  16022. height: math.unit(1, "inch")
  16023. },
  16024. {
  16025. name: "Microw",
  16026. height: math.unit(6, "inches")
  16027. },
  16028. {
  16029. name: "Crow",
  16030. height: math.unit(7 + 1 / 12, "feet"),
  16031. default: true
  16032. },
  16033. {
  16034. name: "Macrow",
  16035. height: math.unit(176, "feet")
  16036. },
  16037. ]
  16038. ))
  16039. characterMakers.push(() => makeCharacter(
  16040. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16041. {
  16042. front: {
  16043. height: math.unit(5 + 7 / 12, "feet"),
  16044. weight: math.unit(147, "lb"),
  16045. name: "Front",
  16046. image: {
  16047. source: "./media/characters/natalie-kellon/front.svg",
  16048. extra: 1214 / 1141,
  16049. bottom: 0.02
  16050. }
  16051. },
  16052. },
  16053. [
  16054. {
  16055. name: "Micro",
  16056. height: math.unit(1 / 16, "inch")
  16057. },
  16058. {
  16059. name: "Tiny",
  16060. height: math.unit(4, "inches")
  16061. },
  16062. {
  16063. name: "Normal",
  16064. height: math.unit(5 + 7 / 12, "feet"),
  16065. default: true
  16066. },
  16067. {
  16068. name: "Amazon",
  16069. height: math.unit(12, "feet")
  16070. },
  16071. {
  16072. name: "Giantess",
  16073. height: math.unit(160, "meters")
  16074. },
  16075. {
  16076. name: "Titaness",
  16077. height: math.unit(800, "meters")
  16078. },
  16079. ]
  16080. ))
  16081. characterMakers.push(() => makeCharacter(
  16082. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16083. {
  16084. front: {
  16085. height: math.unit(6, "feet"),
  16086. weight: math.unit(150, "lb"),
  16087. name: "Front",
  16088. image: {
  16089. source: "./media/characters/alluria/front.svg",
  16090. extra: 806 / 738,
  16091. bottom: 0.01
  16092. }
  16093. },
  16094. side: {
  16095. height: math.unit(6, "feet"),
  16096. weight: math.unit(150, "lb"),
  16097. name: "Side",
  16098. image: {
  16099. source: "./media/characters/alluria/side.svg",
  16100. extra: 800 / 750,
  16101. }
  16102. },
  16103. back: {
  16104. height: math.unit(6, "feet"),
  16105. weight: math.unit(150, "lb"),
  16106. name: "Back",
  16107. image: {
  16108. source: "./media/characters/alluria/back.svg",
  16109. extra: 806 / 738,
  16110. }
  16111. },
  16112. frontMaid: {
  16113. height: math.unit(6, "feet"),
  16114. weight: math.unit(150, "lb"),
  16115. name: "Front (Maid)",
  16116. image: {
  16117. source: "./media/characters/alluria/front-maid.svg",
  16118. extra: 806 / 738,
  16119. bottom: 0.01
  16120. }
  16121. },
  16122. sideMaid: {
  16123. height: math.unit(6, "feet"),
  16124. weight: math.unit(150, "lb"),
  16125. name: "Side (Maid)",
  16126. image: {
  16127. source: "./media/characters/alluria/side-maid.svg",
  16128. extra: 800 / 750,
  16129. bottom: 0.005
  16130. }
  16131. },
  16132. backMaid: {
  16133. height: math.unit(6, "feet"),
  16134. weight: math.unit(150, "lb"),
  16135. name: "Back (Maid)",
  16136. image: {
  16137. source: "./media/characters/alluria/back-maid.svg",
  16138. extra: 806 / 738,
  16139. }
  16140. },
  16141. },
  16142. [
  16143. {
  16144. name: "Micro",
  16145. height: math.unit(6, "inches"),
  16146. default: true
  16147. },
  16148. ]
  16149. ))
  16150. characterMakers.push(() => makeCharacter(
  16151. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16152. {
  16153. front: {
  16154. height: math.unit(6, "feet"),
  16155. weight: math.unit(150, "lb"),
  16156. name: "Front",
  16157. image: {
  16158. source: "./media/characters/kyle/front.svg",
  16159. extra: 1069 / 962,
  16160. bottom: 77.228 / 1727.45
  16161. }
  16162. },
  16163. },
  16164. [
  16165. {
  16166. name: "Macro",
  16167. height: math.unit(150, "feet"),
  16168. default: true
  16169. },
  16170. ]
  16171. ))
  16172. characterMakers.push(() => makeCharacter(
  16173. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16174. {
  16175. front: {
  16176. height: math.unit(6, "feet"),
  16177. weight: math.unit(300, "lb"),
  16178. name: "Front",
  16179. image: {
  16180. source: "./media/characters/duncan/front.svg",
  16181. extra: 1650 / 1482,
  16182. bottom: 0.05
  16183. }
  16184. },
  16185. },
  16186. [
  16187. {
  16188. name: "Macro",
  16189. height: math.unit(100, "feet"),
  16190. default: true
  16191. },
  16192. ]
  16193. ))
  16194. characterMakers.push(() => makeCharacter(
  16195. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16196. {
  16197. front: {
  16198. height: math.unit(5 + 4 / 12, "feet"),
  16199. weight: math.unit(220, "lb"),
  16200. name: "Front",
  16201. image: {
  16202. source: "./media/characters/memory/front.svg",
  16203. extra: 3641 / 3545,
  16204. bottom: 0.03
  16205. }
  16206. },
  16207. back: {
  16208. height: math.unit(5 + 4 / 12, "feet"),
  16209. weight: math.unit(220, "lb"),
  16210. name: "Back",
  16211. image: {
  16212. source: "./media/characters/memory/back.svg",
  16213. extra: 3641 / 3545,
  16214. bottom: 0.025
  16215. }
  16216. },
  16217. frontSkirt: {
  16218. height: math.unit(5 + 4 / 12, "feet"),
  16219. weight: math.unit(220, "lb"),
  16220. name: "Front (Skirt)",
  16221. image: {
  16222. source: "./media/characters/memory/front-skirt.svg",
  16223. extra: 3641 / 3545,
  16224. bottom: 0.03
  16225. }
  16226. },
  16227. frontDress: {
  16228. height: math.unit(5 + 4 / 12, "feet"),
  16229. weight: math.unit(220, "lb"),
  16230. name: "Front (Dress)",
  16231. image: {
  16232. source: "./media/characters/memory/front-dress.svg",
  16233. extra: 3641 / 3545,
  16234. bottom: 0.03
  16235. }
  16236. },
  16237. },
  16238. [
  16239. {
  16240. name: "Micro",
  16241. height: math.unit(6, "inches"),
  16242. default: true
  16243. },
  16244. {
  16245. name: "Normal",
  16246. height: math.unit(5 + 4 / 12, "feet")
  16247. },
  16248. ]
  16249. ))
  16250. characterMakers.push(() => makeCharacter(
  16251. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16252. {
  16253. front: {
  16254. height: math.unit(4 + 11 / 12, "feet"),
  16255. weight: math.unit(100, "lb"),
  16256. name: "Front",
  16257. image: {
  16258. source: "./media/characters/luno/front.svg",
  16259. extra: 1535 / 1487,
  16260. bottom: 0.03
  16261. }
  16262. },
  16263. },
  16264. [
  16265. {
  16266. name: "Micro",
  16267. height: math.unit(3, "inches")
  16268. },
  16269. {
  16270. name: "Normal",
  16271. height: math.unit(4 + 11 / 12, "feet"),
  16272. default: true
  16273. },
  16274. {
  16275. name: "Macro",
  16276. height: math.unit(300, "feet")
  16277. },
  16278. {
  16279. name: "Megamacro",
  16280. height: math.unit(700, "miles")
  16281. },
  16282. ]
  16283. ))
  16284. characterMakers.push(() => makeCharacter(
  16285. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16286. {
  16287. front: {
  16288. height: math.unit(6 + 2 / 12, "feet"),
  16289. weight: math.unit(170, "lb"),
  16290. name: "Front",
  16291. image: {
  16292. source: "./media/characters/jamesy/front.svg",
  16293. extra: 440 / 382,
  16294. bottom: 0.005
  16295. }
  16296. },
  16297. },
  16298. [
  16299. {
  16300. name: "Micro",
  16301. height: math.unit(3, "inches")
  16302. },
  16303. {
  16304. name: "Normal",
  16305. height: math.unit(6 + 2 / 12, "feet"),
  16306. default: true
  16307. },
  16308. {
  16309. name: "Macro",
  16310. height: math.unit(300, "feet")
  16311. },
  16312. {
  16313. name: "Megamacro",
  16314. height: math.unit(700, "miles")
  16315. },
  16316. ]
  16317. ))
  16318. characterMakers.push(() => makeCharacter(
  16319. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16320. {
  16321. front: {
  16322. height: math.unit(6, "feet"),
  16323. weight: math.unit(160, "lb"),
  16324. name: "Front",
  16325. image: {
  16326. source: "./media/characters/mark/front.svg",
  16327. extra: 3300 / 3100,
  16328. bottom: 136.42 / 3440.47
  16329. }
  16330. },
  16331. },
  16332. [
  16333. {
  16334. name: "Macro",
  16335. height: math.unit(120, "meters")
  16336. },
  16337. {
  16338. name: "Bigger Macro",
  16339. height: math.unit(350, "meters")
  16340. },
  16341. {
  16342. name: "Megamacro",
  16343. height: math.unit(8, "km"),
  16344. default: true
  16345. },
  16346. {
  16347. name: "Continental",
  16348. height: math.unit(4550, "km")
  16349. },
  16350. {
  16351. name: "Planetary",
  16352. height: math.unit(65000, "km")
  16353. },
  16354. ]
  16355. ))
  16356. characterMakers.push(() => makeCharacter(
  16357. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16358. {
  16359. front: {
  16360. height: math.unit(6, "feet"),
  16361. weight: math.unit(400, "lb"),
  16362. name: "Front",
  16363. image: {
  16364. source: "./media/characters/mac/front.svg",
  16365. extra: 1048 / 987.7,
  16366. bottom: 60 / 1107.6,
  16367. }
  16368. },
  16369. },
  16370. [
  16371. {
  16372. name: "Macro",
  16373. height: math.unit(500, "feet"),
  16374. default: true
  16375. },
  16376. ]
  16377. ))
  16378. characterMakers.push(() => makeCharacter(
  16379. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16380. {
  16381. front: {
  16382. height: math.unit(5 + 2 / 12, "feet"),
  16383. weight: math.unit(190, "lb"),
  16384. name: "Front",
  16385. image: {
  16386. source: "./media/characters/bari/front.svg",
  16387. extra: 3156 / 2880,
  16388. bottom: 0.03
  16389. }
  16390. },
  16391. back: {
  16392. height: math.unit(5 + 2 / 12, "feet"),
  16393. weight: math.unit(190, "lb"),
  16394. name: "Back",
  16395. image: {
  16396. source: "./media/characters/bari/back.svg",
  16397. extra: 3260 / 2834,
  16398. bottom: 0.025
  16399. }
  16400. },
  16401. frontPlush: {
  16402. height: math.unit(5 + 2 / 12, "feet"),
  16403. weight: math.unit(190, "lb"),
  16404. name: "Front (Plush)",
  16405. image: {
  16406. source: "./media/characters/bari/front-plush.svg",
  16407. extra: 1112 / 1061,
  16408. bottom: 0.002
  16409. }
  16410. },
  16411. },
  16412. [
  16413. {
  16414. name: "Micro",
  16415. height: math.unit(3, "inches")
  16416. },
  16417. {
  16418. name: "Normal",
  16419. height: math.unit(5 + 2 / 12, "feet"),
  16420. default: true
  16421. },
  16422. {
  16423. name: "Macro",
  16424. height: math.unit(20, "feet")
  16425. },
  16426. ]
  16427. ))
  16428. characterMakers.push(() => makeCharacter(
  16429. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16430. {
  16431. front: {
  16432. height: math.unit(6 + 1 / 12, "feet"),
  16433. weight: math.unit(275, "lb"),
  16434. name: "Front",
  16435. image: {
  16436. source: "./media/characters/hunter-misha-raven/front.svg"
  16437. }
  16438. },
  16439. },
  16440. [
  16441. {
  16442. name: "Mortal",
  16443. height: math.unit(6 + 1 / 12, "feet")
  16444. },
  16445. {
  16446. name: "Divine",
  16447. height: math.unit(1.12134e34, "parsecs"),
  16448. default: true
  16449. },
  16450. ]
  16451. ))
  16452. characterMakers.push(() => makeCharacter(
  16453. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16454. {
  16455. front: {
  16456. height: math.unit(6 + 3 / 12, "feet"),
  16457. weight: math.unit(220, "lb"),
  16458. name: "Front",
  16459. image: {
  16460. source: "./media/characters/max-calore/front.svg",
  16461. extra: 1700 / 1648,
  16462. bottom: 0.01
  16463. }
  16464. },
  16465. back: {
  16466. height: math.unit(6 + 3 / 12, "feet"),
  16467. weight: math.unit(220, "lb"),
  16468. name: "Back",
  16469. image: {
  16470. source: "./media/characters/max-calore/back.svg",
  16471. extra: 1700 / 1648,
  16472. bottom: 0.01
  16473. }
  16474. },
  16475. },
  16476. [
  16477. {
  16478. name: "Normal",
  16479. height: math.unit(6 + 3 / 12, "feet"),
  16480. default: true
  16481. },
  16482. ]
  16483. ))
  16484. characterMakers.push(() => makeCharacter(
  16485. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16486. {
  16487. side: {
  16488. height: math.unit(2 + 8 / 12, "feet"),
  16489. weight: math.unit(99, "lb"),
  16490. name: "Side",
  16491. image: {
  16492. source: "./media/characters/aspen/side.svg",
  16493. extra: 152 / 138,
  16494. bottom: 0.032
  16495. }
  16496. },
  16497. },
  16498. [
  16499. {
  16500. name: "Normal",
  16501. height: math.unit(2 + 8 / 12, "feet"),
  16502. default: true
  16503. },
  16504. ]
  16505. ))
  16506. characterMakers.push(() => makeCharacter(
  16507. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16508. {
  16509. side: {
  16510. height: math.unit(3 + 2 / 12, "feet"),
  16511. weight: math.unit(224, "lb"),
  16512. name: "Side",
  16513. image: {
  16514. source: "./media/characters/sheila-feral-wolf/side.svg",
  16515. extra: 179 / 166,
  16516. bottom: 0.03
  16517. }
  16518. },
  16519. },
  16520. [
  16521. {
  16522. name: "Normal",
  16523. height: math.unit(3 + 2 / 12, "feet"),
  16524. default: true
  16525. },
  16526. ]
  16527. ))
  16528. characterMakers.push(() => makeCharacter(
  16529. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16530. {
  16531. side: {
  16532. height: math.unit(1 + 9 / 12, "feet"),
  16533. weight: math.unit(38, "lb"),
  16534. name: "Side",
  16535. image: {
  16536. source: "./media/characters/michelle/side.svg",
  16537. extra: 147 / 136.7,
  16538. bottom: 0.03
  16539. }
  16540. },
  16541. },
  16542. [
  16543. {
  16544. name: "Normal",
  16545. height: math.unit(1 + 9 / 12, "feet"),
  16546. default: true
  16547. },
  16548. ]
  16549. ))
  16550. characterMakers.push(() => makeCharacter(
  16551. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16552. {
  16553. front: {
  16554. height: math.unit(1 + 1 / 12, "feet"),
  16555. weight: math.unit(18, "lb"),
  16556. name: "Front",
  16557. image: {
  16558. source: "./media/characters/nino/front.svg"
  16559. }
  16560. },
  16561. },
  16562. [
  16563. {
  16564. name: "Normal",
  16565. height: math.unit(1 + 1 / 12, "feet"),
  16566. default: true
  16567. },
  16568. ]
  16569. ))
  16570. characterMakers.push(() => makeCharacter(
  16571. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16572. {
  16573. front: {
  16574. height: math.unit(1, "feet"),
  16575. weight: math.unit(16, "lb"),
  16576. name: "Front",
  16577. image: {
  16578. source: "./media/characters/viola/front.svg"
  16579. }
  16580. },
  16581. },
  16582. [
  16583. {
  16584. name: "Normal",
  16585. height: math.unit(1, "feet"),
  16586. default: true
  16587. },
  16588. ]
  16589. ))
  16590. characterMakers.push(() => makeCharacter(
  16591. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16592. {
  16593. front: {
  16594. height: math.unit(6 + 5 / 12, "feet"),
  16595. weight: math.unit(580, "lb"),
  16596. name: "Front",
  16597. image: {
  16598. source: "./media/characters/atlas/front.svg",
  16599. extra: 298.5 / 290,
  16600. bottom: 0.015
  16601. }
  16602. },
  16603. },
  16604. [
  16605. {
  16606. name: "Normal",
  16607. height: math.unit(6 + 5 / 12, "feet"),
  16608. default: true
  16609. },
  16610. ]
  16611. ))
  16612. characterMakers.push(() => makeCharacter(
  16613. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16614. {
  16615. side: {
  16616. height: math.unit(1 + 10 / 12, "feet"),
  16617. weight: math.unit(25, "lb"),
  16618. name: "Side",
  16619. image: {
  16620. source: "./media/characters/davy/side.svg",
  16621. extra: 200 / 170,
  16622. bottom: 0.01
  16623. }
  16624. },
  16625. },
  16626. [
  16627. {
  16628. name: "Normal",
  16629. height: math.unit(1 + 10 / 12, "feet"),
  16630. default: true
  16631. },
  16632. ]
  16633. ))
  16634. characterMakers.push(() => makeCharacter(
  16635. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16636. {
  16637. side: {
  16638. height: math.unit(4 + 8 / 12, "feet"),
  16639. weight: math.unit(166, "lb"),
  16640. name: "Side",
  16641. image: {
  16642. source: "./media/characters/fiona/side.svg",
  16643. extra: 232 / 220,
  16644. bottom: 0.03
  16645. }
  16646. },
  16647. },
  16648. [
  16649. {
  16650. name: "Normal",
  16651. height: math.unit(4 + 8 / 12, "feet"),
  16652. default: true
  16653. },
  16654. ]
  16655. ))
  16656. characterMakers.push(() => makeCharacter(
  16657. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16658. {
  16659. front: {
  16660. height: math.unit(2, "feet"),
  16661. weight: math.unit(62, "lb"),
  16662. name: "Front",
  16663. image: {
  16664. source: "./media/characters/lyla/front.svg",
  16665. bottom: 0.1
  16666. }
  16667. },
  16668. },
  16669. [
  16670. {
  16671. name: "Normal",
  16672. height: math.unit(2, "feet"),
  16673. default: true
  16674. },
  16675. ]
  16676. ))
  16677. characterMakers.push(() => makeCharacter(
  16678. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16679. {
  16680. side: {
  16681. height: math.unit(1.8, "feet"),
  16682. weight: math.unit(44, "lb"),
  16683. name: "Side",
  16684. image: {
  16685. source: "./media/characters/perseus/side.svg",
  16686. bottom: 0.21
  16687. }
  16688. },
  16689. },
  16690. [
  16691. {
  16692. name: "Normal",
  16693. height: math.unit(1.8, "feet"),
  16694. default: true
  16695. },
  16696. ]
  16697. ))
  16698. characterMakers.push(() => makeCharacter(
  16699. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16700. {
  16701. side: {
  16702. height: math.unit(4 + 2 / 12, "feet"),
  16703. weight: math.unit(20, "lb"),
  16704. name: "Side",
  16705. image: {
  16706. source: "./media/characters/remus/side.svg"
  16707. }
  16708. },
  16709. },
  16710. [
  16711. {
  16712. name: "Normal",
  16713. height: math.unit(4 + 2 / 12, "feet"),
  16714. default: true
  16715. },
  16716. ]
  16717. ))
  16718. characterMakers.push(() => makeCharacter(
  16719. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16720. {
  16721. front: {
  16722. height: math.unit(4 + 11 / 12, "feet"),
  16723. weight: math.unit(114, "lb"),
  16724. name: "Front",
  16725. image: {
  16726. source: "./media/characters/raf/front.svg",
  16727. bottom: 20.5 / 1863
  16728. }
  16729. },
  16730. side: {
  16731. height: math.unit(4 + 11 / 12, "feet"),
  16732. weight: math.unit(114, "lb"),
  16733. name: "Side",
  16734. image: {
  16735. source: "./media/characters/raf/side.svg",
  16736. bottom: 22 / 1822
  16737. }
  16738. },
  16739. },
  16740. [
  16741. {
  16742. name: "Micro",
  16743. height: math.unit(2, "inches")
  16744. },
  16745. {
  16746. name: "Normal",
  16747. height: math.unit(4 + 11 / 12, "feet"),
  16748. default: true
  16749. },
  16750. {
  16751. name: "Macro",
  16752. height: math.unit(70, "feet")
  16753. },
  16754. ]
  16755. ))
  16756. characterMakers.push(() => makeCharacter(
  16757. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16758. {
  16759. front: {
  16760. height: math.unit(1.5, "meters"),
  16761. weight: math.unit(68, "kg"),
  16762. name: "Front",
  16763. image: {
  16764. source: "./media/characters/liam-einarr/front.svg",
  16765. extra: 2822 / 2666
  16766. }
  16767. },
  16768. back: {
  16769. height: math.unit(1.5, "meters"),
  16770. weight: math.unit(68, "kg"),
  16771. name: "Back",
  16772. image: {
  16773. source: "./media/characters/liam-einarr/back.svg",
  16774. extra: 2822 / 2666,
  16775. bottom: 0.015
  16776. }
  16777. },
  16778. },
  16779. [
  16780. {
  16781. name: "Normal",
  16782. height: math.unit(1.5, "meters"),
  16783. default: true
  16784. },
  16785. {
  16786. name: "Macro",
  16787. height: math.unit(150, "meters")
  16788. },
  16789. {
  16790. name: "Megamacro",
  16791. height: math.unit(35, "km")
  16792. },
  16793. ]
  16794. ))
  16795. characterMakers.push(() => makeCharacter(
  16796. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16797. {
  16798. front: {
  16799. height: math.unit(6, "feet"),
  16800. weight: math.unit(75, "kg"),
  16801. name: "Front",
  16802. image: {
  16803. source: "./media/characters/linda/front.svg",
  16804. extra: 930 / 874,
  16805. bottom: 0.004
  16806. }
  16807. },
  16808. },
  16809. [
  16810. {
  16811. name: "Normal",
  16812. height: math.unit(6, "feet"),
  16813. default: true
  16814. },
  16815. ]
  16816. ))
  16817. characterMakers.push(() => makeCharacter(
  16818. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16819. {
  16820. front: {
  16821. height: math.unit(6 + 8 / 12, "feet"),
  16822. weight: math.unit(220, "lb"),
  16823. name: "Front",
  16824. image: {
  16825. source: "./media/characters/caylex/front.svg",
  16826. extra: 821 / 772,
  16827. bottom: 0.07
  16828. }
  16829. },
  16830. back: {
  16831. height: math.unit(6 + 8 / 12, "feet"),
  16832. weight: math.unit(220, "lb"),
  16833. name: "Back",
  16834. image: {
  16835. source: "./media/characters/caylex/back.svg",
  16836. extra: 821 / 772,
  16837. bottom: 0.022
  16838. }
  16839. },
  16840. hand: {
  16841. height: math.unit(1.25, "feet"),
  16842. name: "Hand",
  16843. image: {
  16844. source: "./media/characters/caylex/hand.svg"
  16845. }
  16846. },
  16847. foot: {
  16848. height: math.unit(1.6, "feet"),
  16849. name: "Foot",
  16850. image: {
  16851. source: "./media/characters/caylex/foot.svg"
  16852. }
  16853. },
  16854. armored: {
  16855. height: math.unit(6 + 8 / 12, "feet"),
  16856. weight: math.unit(250, "lb"),
  16857. name: "Armored",
  16858. image: {
  16859. source: "./media/characters/caylex/armored.svg",
  16860. extra: 1420 / 1310,
  16861. bottom: 0.045
  16862. }
  16863. },
  16864. },
  16865. [
  16866. {
  16867. name: "Normal",
  16868. height: math.unit(6 + 8 / 12, "feet"),
  16869. default: true
  16870. },
  16871. {
  16872. name: "Normal+",
  16873. height: math.unit(12, "feet")
  16874. },
  16875. ]
  16876. ))
  16877. characterMakers.push(() => makeCharacter(
  16878. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16879. {
  16880. front: {
  16881. height: math.unit(7 + 6 / 12, "feet"),
  16882. weight: math.unit(288, "lb"),
  16883. name: "Front",
  16884. image: {
  16885. source: "./media/characters/alana/front.svg",
  16886. extra: 679 / 653,
  16887. bottom: 22.5 / 701
  16888. }
  16889. },
  16890. },
  16891. [
  16892. {
  16893. name: "Normal",
  16894. height: math.unit(7 + 6 / 12, "feet")
  16895. },
  16896. {
  16897. name: "Large",
  16898. height: math.unit(50, "feet")
  16899. },
  16900. {
  16901. name: "Macro",
  16902. height: math.unit(100, "feet"),
  16903. default: true
  16904. },
  16905. {
  16906. name: "Macro+",
  16907. height: math.unit(200, "feet")
  16908. },
  16909. ]
  16910. ))
  16911. characterMakers.push(() => makeCharacter(
  16912. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16913. {
  16914. front: {
  16915. height: math.unit(6 + 1 / 12, "feet"),
  16916. weight: math.unit(210, "lb"),
  16917. name: "Front",
  16918. image: {
  16919. source: "./media/characters/hasani/front.svg",
  16920. extra: 244 / 232,
  16921. bottom: 0.01
  16922. }
  16923. },
  16924. back: {
  16925. height: math.unit(6 + 1 / 12, "feet"),
  16926. weight: math.unit(210, "lb"),
  16927. name: "Back",
  16928. image: {
  16929. source: "./media/characters/hasani/back.svg",
  16930. extra: 244 / 232,
  16931. bottom: 0.01
  16932. }
  16933. },
  16934. },
  16935. [
  16936. {
  16937. name: "Normal",
  16938. height: math.unit(6 + 1 / 12, "feet")
  16939. },
  16940. {
  16941. name: "Macro",
  16942. height: math.unit(175, "feet"),
  16943. default: true
  16944. },
  16945. ]
  16946. ))
  16947. characterMakers.push(() => makeCharacter(
  16948. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16949. {
  16950. front: {
  16951. height: math.unit(1.82, "meters"),
  16952. weight: math.unit(140, "lb"),
  16953. name: "Front",
  16954. image: {
  16955. source: "./media/characters/nita/front.svg",
  16956. extra: 2473 / 2363,
  16957. bottom: 0.01
  16958. }
  16959. },
  16960. },
  16961. [
  16962. {
  16963. name: "Normal",
  16964. height: math.unit(1.82, "m")
  16965. },
  16966. {
  16967. name: "Macro",
  16968. height: math.unit(300, "m")
  16969. },
  16970. {
  16971. name: "Mistake Canon",
  16972. height: math.unit(0.5, "miles"),
  16973. default: true
  16974. },
  16975. {
  16976. name: "Big Mistake",
  16977. height: math.unit(13, "miles")
  16978. },
  16979. {
  16980. name: "Playing God",
  16981. height: math.unit(2450, "miles")
  16982. },
  16983. ]
  16984. ))
  16985. characterMakers.push(() => makeCharacter(
  16986. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16987. {
  16988. front: {
  16989. height: math.unit(4, "feet"),
  16990. weight: math.unit(120, "lb"),
  16991. name: "Front",
  16992. image: {
  16993. source: "./media/characters/shiriko/front.svg",
  16994. extra: 195 / 188
  16995. }
  16996. },
  16997. },
  16998. [
  16999. {
  17000. name: "Normal",
  17001. height: math.unit(4, "feet"),
  17002. default: true
  17003. },
  17004. ]
  17005. ))
  17006. characterMakers.push(() => makeCharacter(
  17007. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17008. {
  17009. front: {
  17010. height: math.unit(6, "feet"),
  17011. name: "front",
  17012. image: {
  17013. source: "./media/characters/deja/front.svg",
  17014. extra: 926 / 840,
  17015. bottom: 0.07
  17016. }
  17017. },
  17018. },
  17019. [
  17020. {
  17021. name: "Planck Length",
  17022. height: math.unit(1.6e-35, "meters")
  17023. },
  17024. {
  17025. name: "Normal",
  17026. height: math.unit(30.48, "meters"),
  17027. default: true
  17028. },
  17029. {
  17030. name: "Universal",
  17031. height: math.unit(8.8e26, "meters")
  17032. },
  17033. ]
  17034. ))
  17035. characterMakers.push(() => makeCharacter(
  17036. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17037. {
  17038. side: {
  17039. height: math.unit(8, "feet"),
  17040. weight: math.unit(6300, "lb"),
  17041. name: "Side",
  17042. image: {
  17043. source: "./media/characters/anima/side.svg",
  17044. bottom: 0.035
  17045. }
  17046. },
  17047. },
  17048. [
  17049. {
  17050. name: "Normal",
  17051. height: math.unit(8, "feet"),
  17052. default: true
  17053. },
  17054. ]
  17055. ))
  17056. characterMakers.push(() => makeCharacter(
  17057. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17058. {
  17059. front: {
  17060. height: math.unit(8, "feet"),
  17061. weight: math.unit(350, "lb"),
  17062. name: "Front",
  17063. image: {
  17064. source: "./media/characters/bianca/front.svg",
  17065. extra: 234 / 225,
  17066. bottom: 0.03
  17067. }
  17068. },
  17069. },
  17070. [
  17071. {
  17072. name: "Normal",
  17073. height: math.unit(8, "feet"),
  17074. default: true
  17075. },
  17076. ]
  17077. ))
  17078. characterMakers.push(() => makeCharacter(
  17079. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17080. {
  17081. front: {
  17082. height: math.unit(6, "feet"),
  17083. weight: math.unit(150, "lb"),
  17084. name: "Front",
  17085. image: {
  17086. source: "./media/characters/adinia/front.svg",
  17087. extra: 1845 / 1672,
  17088. bottom: 0.02
  17089. }
  17090. },
  17091. back: {
  17092. height: math.unit(6, "feet"),
  17093. weight: math.unit(150, "lb"),
  17094. name: "Back",
  17095. image: {
  17096. source: "./media/characters/adinia/back.svg",
  17097. extra: 1845 / 1672,
  17098. bottom: 0.002
  17099. }
  17100. },
  17101. },
  17102. [
  17103. {
  17104. name: "Normal",
  17105. height: math.unit(11 + 5 / 12, "feet"),
  17106. default: true
  17107. },
  17108. ]
  17109. ))
  17110. characterMakers.push(() => makeCharacter(
  17111. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17112. {
  17113. front: {
  17114. height: math.unit(3, "meters"),
  17115. weight: math.unit(200, "kg"),
  17116. name: "Front",
  17117. image: {
  17118. source: "./media/characters/lykasa/front.svg",
  17119. extra: 1076 / 976,
  17120. bottom: 0.06
  17121. }
  17122. },
  17123. },
  17124. [
  17125. {
  17126. name: "Normal",
  17127. height: math.unit(3, "meters")
  17128. },
  17129. {
  17130. name: "Kaiju",
  17131. height: math.unit(120, "meters"),
  17132. default: true
  17133. },
  17134. {
  17135. name: "Mega Kaiju",
  17136. height: math.unit(240, "km")
  17137. },
  17138. {
  17139. name: "Giga Kaiju",
  17140. height: math.unit(400, "megameters")
  17141. },
  17142. {
  17143. name: "Tera Kaiju",
  17144. height: math.unit(800, "gigameters")
  17145. },
  17146. {
  17147. name: "Kaiju Dragon Goddess",
  17148. height: math.unit(26, "zettaparsecs")
  17149. },
  17150. ]
  17151. ))
  17152. characterMakers.push(() => makeCharacter(
  17153. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17154. {
  17155. side: {
  17156. height: math.unit(283 / 124 * 6, "feet"),
  17157. weight: math.unit(35000, "lb"),
  17158. name: "Side",
  17159. image: {
  17160. source: "./media/characters/malfaren/side.svg",
  17161. extra: 2500 / 1010,
  17162. bottom: 0.01
  17163. }
  17164. },
  17165. front: {
  17166. height: math.unit(22.36, "feet"),
  17167. weight: math.unit(35000, "lb"),
  17168. name: "Front",
  17169. image: {
  17170. source: "./media/characters/malfaren/front.svg",
  17171. extra: 1631 / 1476,
  17172. bottom: 0.01
  17173. }
  17174. },
  17175. maw: {
  17176. height: math.unit(6.9, "feet"),
  17177. name: "Maw",
  17178. image: {
  17179. source: "./media/characters/malfaren/maw.svg"
  17180. }
  17181. },
  17182. },
  17183. [
  17184. {
  17185. name: "Big",
  17186. height: math.unit(283 / 162 * 6, "feet"),
  17187. },
  17188. {
  17189. name: "Bigger",
  17190. height: math.unit(283 / 124 * 6, "feet")
  17191. },
  17192. {
  17193. name: "Massive",
  17194. height: math.unit(283 / 92 * 6, "feet"),
  17195. default: true
  17196. },
  17197. {
  17198. name: "👀💦",
  17199. height: math.unit(283 / 73 * 6, "feet"),
  17200. },
  17201. ]
  17202. ))
  17203. characterMakers.push(() => makeCharacter(
  17204. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17205. {
  17206. front: {
  17207. height: math.unit(1.7, "m"),
  17208. weight: math.unit(70, "kg"),
  17209. name: "Front",
  17210. image: {
  17211. source: "./media/characters/kernel/front.svg",
  17212. extra: 222 / 210,
  17213. bottom: 0.007
  17214. }
  17215. },
  17216. },
  17217. [
  17218. {
  17219. name: "Nano",
  17220. height: math.unit(17, "micrometers")
  17221. },
  17222. {
  17223. name: "Micro",
  17224. height: math.unit(1.7, "mm")
  17225. },
  17226. {
  17227. name: "Small",
  17228. height: math.unit(1.7, "cm")
  17229. },
  17230. {
  17231. name: "Normal",
  17232. height: math.unit(1.7, "m"),
  17233. default: true
  17234. },
  17235. ]
  17236. ))
  17237. characterMakers.push(() => makeCharacter(
  17238. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17239. {
  17240. front: {
  17241. height: math.unit(1.75, "meters"),
  17242. weight: math.unit(65, "kg"),
  17243. name: "Front",
  17244. image: {
  17245. source: "./media/characters/jayne-folest/front.svg",
  17246. extra: 2115 / 2007,
  17247. bottom: 0.02
  17248. }
  17249. },
  17250. back: {
  17251. height: math.unit(1.75, "meters"),
  17252. weight: math.unit(65, "kg"),
  17253. name: "Back",
  17254. image: {
  17255. source: "./media/characters/jayne-folest/back.svg",
  17256. extra: 2115 / 2007,
  17257. bottom: 0.005
  17258. }
  17259. },
  17260. frontClothed: {
  17261. height: math.unit(1.75, "meters"),
  17262. weight: math.unit(65, "kg"),
  17263. name: "Front (Clothed)",
  17264. image: {
  17265. source: "./media/characters/jayne-folest/front-clothed.svg",
  17266. extra: 2115 / 2007,
  17267. bottom: 0.035
  17268. }
  17269. },
  17270. hand: {
  17271. height: math.unit(1 / 1.260, "feet"),
  17272. name: "Hand",
  17273. image: {
  17274. source: "./media/characters/jayne-folest/hand.svg"
  17275. }
  17276. },
  17277. foot: {
  17278. height: math.unit(1 / 0.918, "feet"),
  17279. name: "Foot",
  17280. image: {
  17281. source: "./media/characters/jayne-folest/foot.svg"
  17282. }
  17283. },
  17284. },
  17285. [
  17286. {
  17287. name: "Micro",
  17288. height: math.unit(4, "cm")
  17289. },
  17290. {
  17291. name: "Normal",
  17292. height: math.unit(1.75, "meters")
  17293. },
  17294. {
  17295. name: "Macro",
  17296. height: math.unit(47.5, "meters"),
  17297. default: true
  17298. },
  17299. ]
  17300. ))
  17301. characterMakers.push(() => makeCharacter(
  17302. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17303. {
  17304. front: {
  17305. height: math.unit(180, "cm"),
  17306. weight: math.unit(70, "kg"),
  17307. name: "Front",
  17308. image: {
  17309. source: "./media/characters/algier/front.svg",
  17310. extra: 596 / 572,
  17311. bottom: 0.04
  17312. }
  17313. },
  17314. back: {
  17315. height: math.unit(180, "cm"),
  17316. weight: math.unit(70, "kg"),
  17317. name: "Back",
  17318. image: {
  17319. source: "./media/characters/algier/back.svg",
  17320. extra: 596 / 572,
  17321. bottom: 0.025
  17322. }
  17323. },
  17324. frontdressed: {
  17325. height: math.unit(180, "cm"),
  17326. weight: math.unit(150, "kg"),
  17327. name: "Front-dressed",
  17328. image: {
  17329. source: "./media/characters/algier/front-dressed.svg",
  17330. extra: 596 / 572,
  17331. bottom: 0.038
  17332. }
  17333. },
  17334. },
  17335. [
  17336. {
  17337. name: "Micro",
  17338. height: math.unit(5, "cm")
  17339. },
  17340. {
  17341. name: "Normal",
  17342. height: math.unit(180, "cm"),
  17343. default: true
  17344. },
  17345. {
  17346. name: "Macro",
  17347. height: math.unit(64, "m")
  17348. },
  17349. ]
  17350. ))
  17351. characterMakers.push(() => makeCharacter(
  17352. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17353. {
  17354. upright: {
  17355. height: math.unit(7, "feet"),
  17356. weight: math.unit(300, "lb"),
  17357. name: "Upright",
  17358. image: {
  17359. source: "./media/characters/pretzel/upright.svg",
  17360. extra: 534 / 522,
  17361. bottom: 0.065
  17362. }
  17363. },
  17364. sprawling: {
  17365. height: math.unit(3.75, "feet"),
  17366. weight: math.unit(300, "lb"),
  17367. name: "Sprawling",
  17368. image: {
  17369. source: "./media/characters/pretzel/sprawling.svg",
  17370. extra: 314 / 281,
  17371. bottom: 0.1
  17372. }
  17373. },
  17374. tongue: {
  17375. height: math.unit(2, "feet"),
  17376. name: "Tongue",
  17377. image: {
  17378. source: "./media/characters/pretzel/tongue.svg"
  17379. }
  17380. },
  17381. },
  17382. [
  17383. {
  17384. name: "Normal",
  17385. height: math.unit(7, "feet"),
  17386. default: true
  17387. },
  17388. {
  17389. name: "Oversized",
  17390. height: math.unit(15, "feet")
  17391. },
  17392. {
  17393. name: "Huge",
  17394. height: math.unit(30, "feet")
  17395. },
  17396. {
  17397. name: "Macro",
  17398. height: math.unit(250, "feet")
  17399. },
  17400. ]
  17401. ))
  17402. characterMakers.push(() => makeCharacter(
  17403. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17404. {
  17405. sideFront: {
  17406. height: math.unit(5 + 2 / 12, "feet"),
  17407. weight: math.unit(120, "lb"),
  17408. name: "Front Side",
  17409. image: {
  17410. source: "./media/characters/roxi/side-front.svg",
  17411. extra: 2924 / 2717,
  17412. bottom: 0.08
  17413. }
  17414. },
  17415. sideBack: {
  17416. height: math.unit(5 + 2 / 12, "feet"),
  17417. weight: math.unit(120, "lb"),
  17418. name: "Back Side",
  17419. image: {
  17420. source: "./media/characters/roxi/side-back.svg",
  17421. extra: 2904 / 2693,
  17422. bottom: 0.06
  17423. }
  17424. },
  17425. front: {
  17426. height: math.unit(5 + 2 / 12, "feet"),
  17427. weight: math.unit(120, "lb"),
  17428. name: "Front",
  17429. image: {
  17430. source: "./media/characters/roxi/front.svg",
  17431. extra: 2028 / 1907,
  17432. bottom: 0.01
  17433. }
  17434. },
  17435. frontAlt: {
  17436. height: math.unit(5 + 2 / 12, "feet"),
  17437. weight: math.unit(120, "lb"),
  17438. name: "Front (Alt)",
  17439. image: {
  17440. source: "./media/characters/roxi/front-alt.svg",
  17441. extra: 1828 / 1798,
  17442. bottom: 0.01
  17443. }
  17444. },
  17445. sitting: {
  17446. height: math.unit(2.8, "feet"),
  17447. weight: math.unit(120, "lb"),
  17448. name: "Sitting",
  17449. image: {
  17450. source: "./media/characters/roxi/sitting.svg",
  17451. extra: 2660 / 2462,
  17452. bottom: 0.1
  17453. }
  17454. },
  17455. },
  17456. [
  17457. {
  17458. name: "Normal",
  17459. height: math.unit(5 + 2 / 12, "feet"),
  17460. default: true
  17461. },
  17462. ]
  17463. ))
  17464. characterMakers.push(() => makeCharacter(
  17465. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17466. {
  17467. side: {
  17468. height: math.unit(55, "feet"),
  17469. weight: math.unit(153, "tons"),
  17470. name: "Side",
  17471. image: {
  17472. source: "./media/characters/shadow/side.svg",
  17473. extra: 701 / 628,
  17474. bottom: 0.02
  17475. }
  17476. },
  17477. flying: {
  17478. height: math.unit(145, "feet"),
  17479. weight: math.unit(153, "tons"),
  17480. name: "Flying",
  17481. image: {
  17482. source: "./media/characters/shadow/flying.svg"
  17483. }
  17484. },
  17485. },
  17486. [
  17487. {
  17488. name: "Normal",
  17489. height: math.unit(55, "feet"),
  17490. default: true
  17491. },
  17492. ]
  17493. ))
  17494. characterMakers.push(() => makeCharacter(
  17495. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17496. {
  17497. front: {
  17498. height: math.unit(6, "feet"),
  17499. weight: math.unit(200, "lb"),
  17500. name: "Front",
  17501. image: {
  17502. source: "./media/characters/marcie/front.svg",
  17503. extra: 960 / 876,
  17504. bottom: 58 / 1017.87
  17505. }
  17506. },
  17507. },
  17508. [
  17509. {
  17510. name: "Macro",
  17511. height: math.unit(1, "mile"),
  17512. default: true
  17513. },
  17514. ]
  17515. ))
  17516. characterMakers.push(() => makeCharacter(
  17517. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17518. {
  17519. front: {
  17520. height: math.unit(7, "feet"),
  17521. weight: math.unit(200, "lb"),
  17522. name: "Front",
  17523. image: {
  17524. source: "./media/characters/kachina/front.svg",
  17525. extra: 1290.68 / 1119,
  17526. bottom: 36.5 / 1327.18
  17527. }
  17528. },
  17529. },
  17530. [
  17531. {
  17532. name: "Normal",
  17533. height: math.unit(7, "feet"),
  17534. default: true
  17535. },
  17536. ]
  17537. ))
  17538. characterMakers.push(() => makeCharacter(
  17539. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17540. {
  17541. looking: {
  17542. height: math.unit(2, "meters"),
  17543. weight: math.unit(300, "kg"),
  17544. name: "Looking",
  17545. image: {
  17546. source: "./media/characters/kash/looking.svg",
  17547. extra: 474 / 344,
  17548. bottom: 0.03
  17549. }
  17550. },
  17551. side: {
  17552. height: math.unit(2, "meters"),
  17553. weight: math.unit(300, "kg"),
  17554. name: "Side",
  17555. image: {
  17556. source: "./media/characters/kash/side.svg",
  17557. extra: 302 / 251,
  17558. bottom: 0.03
  17559. }
  17560. },
  17561. front: {
  17562. height: math.unit(2, "meters"),
  17563. weight: math.unit(300, "kg"),
  17564. name: "Front",
  17565. image: {
  17566. source: "./media/characters/kash/front.svg",
  17567. extra: 495 / 360,
  17568. bottom: 0.015
  17569. }
  17570. },
  17571. },
  17572. [
  17573. {
  17574. name: "Normal",
  17575. height: math.unit(2, "meters"),
  17576. default: true
  17577. },
  17578. {
  17579. name: "Big",
  17580. height: math.unit(3, "meters")
  17581. },
  17582. {
  17583. name: "Large",
  17584. height: math.unit(5, "meters")
  17585. },
  17586. ]
  17587. ))
  17588. characterMakers.push(() => makeCharacter(
  17589. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17590. {
  17591. feeding: {
  17592. height: math.unit(6.7, "feet"),
  17593. weight: math.unit(350, "lb"),
  17594. name: "Feeding",
  17595. image: {
  17596. source: "./media/characters/lalim/feeding.svg",
  17597. }
  17598. },
  17599. },
  17600. [
  17601. {
  17602. name: "Normal",
  17603. height: math.unit(6.7, "feet"),
  17604. default: true
  17605. },
  17606. ]
  17607. ))
  17608. characterMakers.push(() => makeCharacter(
  17609. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17610. {
  17611. front: {
  17612. height: math.unit(9.5, "feet"),
  17613. weight: math.unit(600, "lb"),
  17614. name: "Front",
  17615. image: {
  17616. source: "./media/characters/de'vout/front.svg",
  17617. extra: 1443 / 1328,
  17618. bottom: 0.025
  17619. }
  17620. },
  17621. back: {
  17622. height: math.unit(9.5, "feet"),
  17623. weight: math.unit(600, "lb"),
  17624. name: "Back",
  17625. image: {
  17626. source: "./media/characters/de'vout/back.svg",
  17627. extra: 1443 / 1328
  17628. }
  17629. },
  17630. frontDressed: {
  17631. height: math.unit(9.5, "feet"),
  17632. weight: math.unit(600, "lb"),
  17633. name: "Front (Dressed",
  17634. image: {
  17635. source: "./media/characters/de'vout/front-dressed.svg",
  17636. extra: 1443 / 1328,
  17637. bottom: 0.025
  17638. }
  17639. },
  17640. backDressed: {
  17641. height: math.unit(9.5, "feet"),
  17642. weight: math.unit(600, "lb"),
  17643. name: "Back (Dressed",
  17644. image: {
  17645. source: "./media/characters/de'vout/back-dressed.svg",
  17646. extra: 1443 / 1328
  17647. }
  17648. },
  17649. },
  17650. [
  17651. {
  17652. name: "Normal",
  17653. height: math.unit(9.5, "feet"),
  17654. default: true
  17655. },
  17656. ]
  17657. ))
  17658. characterMakers.push(() => makeCharacter(
  17659. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17660. {
  17661. front: {
  17662. height: math.unit(8, "feet"),
  17663. weight: math.unit(225, "lb"),
  17664. name: "Front",
  17665. image: {
  17666. source: "./media/characters/talana/front.svg",
  17667. extra: 1410 / 1300,
  17668. bottom: 0.015
  17669. }
  17670. },
  17671. frontDressed: {
  17672. height: math.unit(8, "feet"),
  17673. weight: math.unit(225, "lb"),
  17674. name: "Front (Dressed",
  17675. image: {
  17676. source: "./media/characters/talana/front-dressed.svg",
  17677. extra: 1410 / 1300,
  17678. bottom: 0.015
  17679. }
  17680. },
  17681. },
  17682. [
  17683. {
  17684. name: "Normal",
  17685. height: math.unit(8, "feet"),
  17686. default: true
  17687. },
  17688. ]
  17689. ))
  17690. characterMakers.push(() => makeCharacter(
  17691. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17692. {
  17693. side: {
  17694. height: math.unit(7.2, "feet"),
  17695. weight: math.unit(150, "lb"),
  17696. name: "Side",
  17697. image: {
  17698. source: "./media/characters/xeauvok/side.svg",
  17699. extra: 1975 / 1523,
  17700. bottom: 0.07
  17701. }
  17702. },
  17703. },
  17704. [
  17705. {
  17706. name: "Normal",
  17707. height: math.unit(7.2, "feet"),
  17708. default: true
  17709. },
  17710. ]
  17711. ))
  17712. characterMakers.push(() => makeCharacter(
  17713. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17714. {
  17715. side: {
  17716. height: math.unit(10, "feet"),
  17717. weight: math.unit(900, "kg"),
  17718. name: "Side",
  17719. image: {
  17720. source: "./media/characters/zara/side.svg",
  17721. extra: 504 / 498
  17722. }
  17723. },
  17724. },
  17725. [
  17726. {
  17727. name: "Normal",
  17728. height: math.unit(10, "feet"),
  17729. default: true
  17730. },
  17731. ]
  17732. ))
  17733. characterMakers.push(() => makeCharacter(
  17734. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17735. {
  17736. side: {
  17737. height: math.unit(6, "feet"),
  17738. weight: math.unit(150, "lb"),
  17739. name: "Side",
  17740. image: {
  17741. source: "./media/characters/richard-dragon/side.svg",
  17742. extra: 845 / 340,
  17743. bottom: 0.017
  17744. }
  17745. },
  17746. maw: {
  17747. height: math.unit(2.97, "feet"),
  17748. name: "Maw",
  17749. image: {
  17750. source: "./media/characters/richard-dragon/maw.svg"
  17751. }
  17752. },
  17753. },
  17754. [
  17755. ]
  17756. ))
  17757. characterMakers.push(() => makeCharacter(
  17758. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17759. {
  17760. front: {
  17761. height: math.unit(4, "feet"),
  17762. weight: math.unit(100, "lb"),
  17763. name: "Front",
  17764. image: {
  17765. source: "./media/characters/richard-smeargle/front.svg",
  17766. extra: 2952 / 2820,
  17767. bottom: 0.028
  17768. }
  17769. },
  17770. },
  17771. [
  17772. {
  17773. name: "Normal",
  17774. height: math.unit(4, "feet"),
  17775. default: true
  17776. },
  17777. {
  17778. name: "Dynamax",
  17779. height: math.unit(20, "meters")
  17780. },
  17781. ]
  17782. ))
  17783. characterMakers.push(() => makeCharacter(
  17784. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17785. {
  17786. front: {
  17787. height: math.unit(6, "feet"),
  17788. weight: math.unit(110, "lb"),
  17789. name: "Front",
  17790. image: {
  17791. source: "./media/characters/klay/front.svg",
  17792. extra: 962 / 883,
  17793. bottom: 0.04
  17794. }
  17795. },
  17796. back: {
  17797. height: math.unit(6, "feet"),
  17798. weight: math.unit(110, "lb"),
  17799. name: "Back",
  17800. image: {
  17801. source: "./media/characters/klay/back.svg",
  17802. extra: 962 / 883
  17803. }
  17804. },
  17805. beans: {
  17806. height: math.unit(1.15, "feet"),
  17807. name: "Beans",
  17808. image: {
  17809. source: "./media/characters/klay/beans.svg"
  17810. }
  17811. },
  17812. },
  17813. [
  17814. {
  17815. name: "Micro",
  17816. height: math.unit(6, "inches")
  17817. },
  17818. {
  17819. name: "Mini",
  17820. height: math.unit(3, "feet")
  17821. },
  17822. {
  17823. name: "Normal",
  17824. height: math.unit(6, "feet"),
  17825. default: true
  17826. },
  17827. {
  17828. name: "Big",
  17829. height: math.unit(25, "feet")
  17830. },
  17831. {
  17832. name: "Macro",
  17833. height: math.unit(100, "feet")
  17834. },
  17835. {
  17836. name: "Megamacro",
  17837. height: math.unit(400, "feet")
  17838. },
  17839. ]
  17840. ))
  17841. characterMakers.push(() => makeCharacter(
  17842. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17843. {
  17844. front: {
  17845. height: math.unit(6, "feet"),
  17846. weight: math.unit(160, "lb"),
  17847. name: "Front",
  17848. image: {
  17849. source: "./media/characters/marcus/front.svg",
  17850. extra: 734 / 676,
  17851. bottom: 0.03
  17852. }
  17853. },
  17854. },
  17855. [
  17856. {
  17857. name: "Little",
  17858. height: math.unit(6, "feet")
  17859. },
  17860. {
  17861. name: "Normal",
  17862. height: math.unit(110, "feet"),
  17863. default: true
  17864. },
  17865. {
  17866. name: "Macro",
  17867. height: math.unit(250, "feet")
  17868. },
  17869. {
  17870. name: "Megamacro",
  17871. height: math.unit(1000, "feet")
  17872. },
  17873. ]
  17874. ))
  17875. characterMakers.push(() => makeCharacter(
  17876. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17877. {
  17878. front: {
  17879. height: math.unit(7, "feet"),
  17880. weight: math.unit(275, "lb"),
  17881. name: "Front",
  17882. image: {
  17883. source: "./media/characters/claude-delroute/front.svg",
  17884. extra: 230 / 214,
  17885. bottom: 0.007
  17886. }
  17887. },
  17888. side: {
  17889. height: math.unit(7, "feet"),
  17890. weight: math.unit(275, "lb"),
  17891. name: "Side",
  17892. image: {
  17893. source: "./media/characters/claude-delroute/side.svg",
  17894. extra: 222 / 214,
  17895. bottom: 0.01
  17896. }
  17897. },
  17898. back: {
  17899. height: math.unit(7, "feet"),
  17900. weight: math.unit(275, "lb"),
  17901. name: "Back",
  17902. image: {
  17903. source: "./media/characters/claude-delroute/back.svg",
  17904. extra: 230 / 214,
  17905. bottom: 0.015
  17906. }
  17907. },
  17908. maw: {
  17909. height: math.unit(0.6407, "meters"),
  17910. name: "Maw",
  17911. image: {
  17912. source: "./media/characters/claude-delroute/maw.svg"
  17913. }
  17914. },
  17915. },
  17916. [
  17917. {
  17918. name: "Normal",
  17919. height: math.unit(7, "feet"),
  17920. default: true
  17921. },
  17922. {
  17923. name: "Lorge",
  17924. height: math.unit(20, "feet")
  17925. },
  17926. ]
  17927. ))
  17928. characterMakers.push(() => makeCharacter(
  17929. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17930. {
  17931. front: {
  17932. height: math.unit(8 + 4 / 12, "feet"),
  17933. weight: math.unit(600, "lb"),
  17934. name: "Front",
  17935. image: {
  17936. source: "./media/characters/dragonien/front.svg",
  17937. extra: 100 / 94,
  17938. bottom: 3.3 / 103.3445
  17939. }
  17940. },
  17941. back: {
  17942. height: math.unit(8 + 4 / 12, "feet"),
  17943. weight: math.unit(600, "lb"),
  17944. name: "Back",
  17945. image: {
  17946. source: "./media/characters/dragonien/back.svg",
  17947. extra: 776 / 746,
  17948. bottom: 6.4 / 782.0616
  17949. }
  17950. },
  17951. foot: {
  17952. height: math.unit(1.54, "feet"),
  17953. name: "Foot",
  17954. image: {
  17955. source: "./media/characters/dragonien/foot.svg",
  17956. }
  17957. },
  17958. },
  17959. [
  17960. {
  17961. name: "Normal",
  17962. height: math.unit(8 + 4 / 12, "feet"),
  17963. default: true
  17964. },
  17965. {
  17966. name: "Macro",
  17967. height: math.unit(200, "feet")
  17968. },
  17969. {
  17970. name: "Megamacro",
  17971. height: math.unit(1, "mile")
  17972. },
  17973. {
  17974. name: "Gigamacro",
  17975. height: math.unit(1000, "miles")
  17976. },
  17977. ]
  17978. ))
  17979. characterMakers.push(() => makeCharacter(
  17980. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17981. {
  17982. front: {
  17983. height: math.unit(5 + 2 / 12, "feet"),
  17984. weight: math.unit(110, "lb"),
  17985. name: "Front",
  17986. image: {
  17987. source: "./media/characters/desta/front.svg",
  17988. extra: 767 / 726,
  17989. bottom: 11.7 / 779
  17990. }
  17991. },
  17992. back: {
  17993. height: math.unit(5 + 2 / 12, "feet"),
  17994. weight: math.unit(110, "lb"),
  17995. name: "Back",
  17996. image: {
  17997. source: "./media/characters/desta/back.svg",
  17998. extra: 777 / 728,
  17999. bottom: 6 / 784
  18000. }
  18001. },
  18002. frontAlt: {
  18003. height: math.unit(5 + 2 / 12, "feet"),
  18004. weight: math.unit(110, "lb"),
  18005. name: "Front",
  18006. image: {
  18007. source: "./media/characters/desta/front-alt.svg",
  18008. extra: 1482 / 1417
  18009. }
  18010. },
  18011. side: {
  18012. height: math.unit(5 + 2 / 12, "feet"),
  18013. weight: math.unit(110, "lb"),
  18014. name: "Side",
  18015. image: {
  18016. source: "./media/characters/desta/side.svg",
  18017. extra: 2579 / 2491,
  18018. bottom: 0.053
  18019. }
  18020. },
  18021. },
  18022. [
  18023. {
  18024. name: "Micro",
  18025. height: math.unit(6, "inches")
  18026. },
  18027. {
  18028. name: "Normal",
  18029. height: math.unit(5 + 2 / 12, "feet"),
  18030. default: true
  18031. },
  18032. {
  18033. name: "Macro",
  18034. height: math.unit(62, "feet")
  18035. },
  18036. {
  18037. name: "Megamacro",
  18038. height: math.unit(1800, "feet")
  18039. },
  18040. ]
  18041. ))
  18042. characterMakers.push(() => makeCharacter(
  18043. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18044. {
  18045. front: {
  18046. height: math.unit(10, "feet"),
  18047. weight: math.unit(700, "lb"),
  18048. name: "Front",
  18049. image: {
  18050. source: "./media/characters/storm-alystar/front.svg",
  18051. extra: 2112 / 1898,
  18052. bottom: 0.034
  18053. }
  18054. },
  18055. },
  18056. [
  18057. {
  18058. name: "Micro",
  18059. height: math.unit(3.5, "inches")
  18060. },
  18061. {
  18062. name: "Normal",
  18063. height: math.unit(10, "feet"),
  18064. default: true
  18065. },
  18066. {
  18067. name: "Macro",
  18068. height: math.unit(400, "feet")
  18069. },
  18070. {
  18071. name: "Deific",
  18072. height: math.unit(60, "miles")
  18073. },
  18074. ]
  18075. ))
  18076. characterMakers.push(() => makeCharacter(
  18077. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18078. {
  18079. front: {
  18080. height: math.unit(2.35, "meters"),
  18081. weight: math.unit(119, "kg"),
  18082. name: "Front",
  18083. image: {
  18084. source: "./media/characters/ilia/front.svg",
  18085. extra: 1285 / 1255,
  18086. bottom: 0.06
  18087. }
  18088. },
  18089. },
  18090. [
  18091. {
  18092. name: "Normal",
  18093. height: math.unit(2.35, "meters")
  18094. },
  18095. {
  18096. name: "Macro",
  18097. height: math.unit(140, "meters"),
  18098. default: true
  18099. },
  18100. {
  18101. name: "Megamacro",
  18102. height: math.unit(100, "miles")
  18103. },
  18104. ]
  18105. ))
  18106. characterMakers.push(() => makeCharacter(
  18107. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18108. {
  18109. front: {
  18110. height: math.unit(6 + 5 / 12, "feet"),
  18111. weight: math.unit(190, "lb"),
  18112. name: "Front",
  18113. image: {
  18114. source: "./media/characters/kingdead/front.svg",
  18115. extra: 1228 / 1177
  18116. }
  18117. },
  18118. },
  18119. [
  18120. {
  18121. name: "Micro",
  18122. height: math.unit(7, "inches")
  18123. },
  18124. {
  18125. name: "Normal",
  18126. height: math.unit(6 + 5 / 12, "feet")
  18127. },
  18128. {
  18129. name: "Macro",
  18130. height: math.unit(150, "feet"),
  18131. default: true
  18132. },
  18133. {
  18134. name: "Megamacro",
  18135. height: math.unit(200, "miles")
  18136. },
  18137. ]
  18138. ))
  18139. characterMakers.push(() => makeCharacter(
  18140. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18141. {
  18142. front: {
  18143. height: math.unit(8, "feet"),
  18144. weight: math.unit(600, "lb"),
  18145. name: "Front",
  18146. image: {
  18147. source: "./media/characters/kyrehx/front.svg",
  18148. extra: 1195 / 1095,
  18149. bottom: 0.034
  18150. }
  18151. },
  18152. },
  18153. [
  18154. {
  18155. name: "Micro",
  18156. height: math.unit(2, "inches")
  18157. },
  18158. {
  18159. name: "Normal",
  18160. height: math.unit(8, "feet"),
  18161. default: true
  18162. },
  18163. {
  18164. name: "Macro",
  18165. height: math.unit(255, "feet")
  18166. },
  18167. ]
  18168. ))
  18169. characterMakers.push(() => makeCharacter(
  18170. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18171. {
  18172. front: {
  18173. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18174. weight: math.unit(184, "lb"),
  18175. name: "Front",
  18176. image: {
  18177. source: "./media/characters/xang/front.svg",
  18178. extra: 845 / 755
  18179. }
  18180. },
  18181. },
  18182. [
  18183. {
  18184. name: "Normal",
  18185. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18186. default: true
  18187. },
  18188. {
  18189. name: "Macro",
  18190. height: math.unit(0.935 * 146, "feet")
  18191. },
  18192. {
  18193. name: "Megamacro",
  18194. height: math.unit(0.935 * 3, "miles")
  18195. },
  18196. ]
  18197. ))
  18198. characterMakers.push(() => makeCharacter(
  18199. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18200. {
  18201. frontDressed: {
  18202. height: math.unit(5 + 7 / 12, "feet"),
  18203. weight: math.unit(140, "lb"),
  18204. name: "Front (Dressed)",
  18205. image: {
  18206. source: "./media/characters/doc-weardno/front-dressed.svg",
  18207. extra: 263 / 234
  18208. }
  18209. },
  18210. backDressed: {
  18211. height: math.unit(5 + 7 / 12, "feet"),
  18212. weight: math.unit(140, "lb"),
  18213. name: "Back (Dressed)",
  18214. image: {
  18215. source: "./media/characters/doc-weardno/back-dressed.svg",
  18216. extra: 266 / 238
  18217. }
  18218. },
  18219. front: {
  18220. height: math.unit(5 + 7 / 12, "feet"),
  18221. weight: math.unit(140, "lb"),
  18222. name: "Front",
  18223. image: {
  18224. source: "./media/characters/doc-weardno/front.svg",
  18225. extra: 254 / 233
  18226. }
  18227. },
  18228. },
  18229. [
  18230. {
  18231. name: "Micro",
  18232. height: math.unit(3, "inches")
  18233. },
  18234. {
  18235. name: "Normal",
  18236. height: math.unit(5 + 7 / 12, "feet"),
  18237. default: true
  18238. },
  18239. {
  18240. name: "Macro",
  18241. height: math.unit(25, "feet")
  18242. },
  18243. {
  18244. name: "Megamacro",
  18245. height: math.unit(2, "miles")
  18246. },
  18247. ]
  18248. ))
  18249. characterMakers.push(() => makeCharacter(
  18250. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18251. {
  18252. front: {
  18253. height: math.unit(6 + 2 / 12, "feet"),
  18254. weight: math.unit(153, "lb"),
  18255. name: "Front",
  18256. image: {
  18257. source: "./media/characters/seth-whilst/front.svg",
  18258. bottom: 0.07
  18259. }
  18260. },
  18261. },
  18262. [
  18263. {
  18264. name: "Micro",
  18265. height: math.unit(5, "inches")
  18266. },
  18267. {
  18268. name: "Normal",
  18269. height: math.unit(6 + 2 / 12, "feet"),
  18270. default: true
  18271. },
  18272. ]
  18273. ))
  18274. characterMakers.push(() => makeCharacter(
  18275. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18276. {
  18277. front: {
  18278. height: math.unit(3, "inches"),
  18279. weight: math.unit(8, "grams"),
  18280. name: "Front",
  18281. image: {
  18282. source: "./media/characters/pocket-jabari/front.svg",
  18283. extra: 1024 / 974,
  18284. bottom: 0.039
  18285. }
  18286. },
  18287. },
  18288. [
  18289. {
  18290. name: "Minimicro",
  18291. height: math.unit(8, "mm")
  18292. },
  18293. {
  18294. name: "Micro",
  18295. height: math.unit(3, "inches"),
  18296. default: true
  18297. },
  18298. {
  18299. name: "Normal",
  18300. height: math.unit(3, "feet")
  18301. },
  18302. ]
  18303. ))
  18304. characterMakers.push(() => makeCharacter(
  18305. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18306. {
  18307. front: {
  18308. height: math.unit(15, "feet"),
  18309. weight: math.unit(3280, "lb"),
  18310. name: "Front",
  18311. image: {
  18312. source: "./media/characters/sapphy/front.svg",
  18313. extra: 671 / 577,
  18314. bottom: 0.085
  18315. }
  18316. },
  18317. back: {
  18318. height: math.unit(15, "feet"),
  18319. weight: math.unit(3280, "lb"),
  18320. name: "Back",
  18321. image: {
  18322. source: "./media/characters/sapphy/back.svg",
  18323. extra: 631 / 607,
  18324. bottom: 0.045
  18325. }
  18326. },
  18327. },
  18328. [
  18329. {
  18330. name: "Normal",
  18331. height: math.unit(15, "feet")
  18332. },
  18333. {
  18334. name: "Casual Macro",
  18335. height: math.unit(120, "feet")
  18336. },
  18337. {
  18338. name: "Macro",
  18339. height: math.unit(2150, "feet"),
  18340. default: true
  18341. },
  18342. {
  18343. name: "Megamacro",
  18344. height: math.unit(8, "miles")
  18345. },
  18346. {
  18347. name: "Galaxy Mom",
  18348. height: math.unit(6, "megalightyears")
  18349. },
  18350. ]
  18351. ))
  18352. characterMakers.push(() => makeCharacter(
  18353. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18354. {
  18355. front: {
  18356. height: math.unit(6, "feet"),
  18357. weight: math.unit(170, "lb"),
  18358. name: "Front",
  18359. image: {
  18360. source: "./media/characters/kiro/front.svg",
  18361. extra: 1064 / 1012,
  18362. bottom: 0.052
  18363. }
  18364. },
  18365. },
  18366. [
  18367. {
  18368. name: "Micro",
  18369. height: math.unit(6, "inches")
  18370. },
  18371. {
  18372. name: "Normal",
  18373. height: math.unit(6, "feet"),
  18374. default: true
  18375. },
  18376. {
  18377. name: "Macro",
  18378. height: math.unit(72, "feet")
  18379. },
  18380. ]
  18381. ))
  18382. characterMakers.push(() => makeCharacter(
  18383. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18384. {
  18385. front: {
  18386. height: math.unit(5 + 9 / 12, "feet"),
  18387. weight: math.unit(175, "lb"),
  18388. name: "Front",
  18389. image: {
  18390. source: "./media/characters/irishfox/front.svg",
  18391. extra: 1912 / 1680,
  18392. bottom: 0.02
  18393. }
  18394. },
  18395. },
  18396. [
  18397. {
  18398. name: "Nano",
  18399. height: math.unit(1, "mm")
  18400. },
  18401. {
  18402. name: "Micro",
  18403. height: math.unit(2, "inches")
  18404. },
  18405. {
  18406. name: "Normal",
  18407. height: math.unit(5 + 9 / 12, "feet"),
  18408. default: true
  18409. },
  18410. {
  18411. name: "Macro",
  18412. height: math.unit(45, "feet")
  18413. },
  18414. ]
  18415. ))
  18416. characterMakers.push(() => makeCharacter(
  18417. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18418. {
  18419. front: {
  18420. height: math.unit(6 + 1 / 12, "feet"),
  18421. weight: math.unit(75, "lb"),
  18422. name: "Front",
  18423. image: {
  18424. source: "./media/characters/aronai-sieyes/front.svg",
  18425. extra: 1556 / 1480,
  18426. bottom: 0.015
  18427. }
  18428. },
  18429. side: {
  18430. height: math.unit(6 + 1 / 12, "feet"),
  18431. weight: math.unit(75, "lb"),
  18432. name: "Side",
  18433. image: {
  18434. source: "./media/characters/aronai-sieyes/side.svg",
  18435. extra: 1433 / 1390,
  18436. bottom: 0.0393
  18437. }
  18438. },
  18439. back: {
  18440. height: math.unit(6 + 1 / 12, "feet"),
  18441. weight: math.unit(75, "lb"),
  18442. name: "Back",
  18443. image: {
  18444. source: "./media/characters/aronai-sieyes/back.svg",
  18445. extra: 1544 / 1494,
  18446. bottom: 0.02
  18447. }
  18448. },
  18449. frontClothed: {
  18450. height: math.unit(6 + 1 / 12, "feet"),
  18451. weight: math.unit(75, "lb"),
  18452. name: "Front (Clothed)",
  18453. image: {
  18454. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18455. extra: 1582 / 1527
  18456. }
  18457. },
  18458. feral: {
  18459. height: math.unit(18, "feet"),
  18460. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18461. name: "Feral",
  18462. image: {
  18463. source: "./media/characters/aronai-sieyes/feral.svg",
  18464. extra: 1530 / 1240,
  18465. bottom: 0.035
  18466. }
  18467. },
  18468. },
  18469. [
  18470. {
  18471. name: "Micro",
  18472. height: math.unit(2, "inches")
  18473. },
  18474. {
  18475. name: "Normal",
  18476. height: math.unit(6 + 1 / 12, "feet"),
  18477. default: true
  18478. }
  18479. ]
  18480. ))
  18481. characterMakers.push(() => makeCharacter(
  18482. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18483. {
  18484. front: {
  18485. height: math.unit(12, "feet"),
  18486. weight: math.unit(410, "kg"),
  18487. name: "Front",
  18488. image: {
  18489. source: "./media/characters/xuna/front.svg",
  18490. extra: 2184 / 1980
  18491. }
  18492. },
  18493. side: {
  18494. height: math.unit(12, "feet"),
  18495. weight: math.unit(410, "kg"),
  18496. name: "Side",
  18497. image: {
  18498. source: "./media/characters/xuna/side.svg",
  18499. extra: 2184 / 1980
  18500. }
  18501. },
  18502. back: {
  18503. height: math.unit(12, "feet"),
  18504. weight: math.unit(410, "kg"),
  18505. name: "Back",
  18506. image: {
  18507. source: "./media/characters/xuna/back.svg",
  18508. extra: 2184 / 1980
  18509. }
  18510. },
  18511. },
  18512. [
  18513. {
  18514. name: "Nano glow",
  18515. height: math.unit(10, "nm")
  18516. },
  18517. {
  18518. name: "Micro floof",
  18519. height: math.unit(0.3, "m")
  18520. },
  18521. {
  18522. name: "Huggable softy boi",
  18523. height: math.unit(3.6576, "m"),
  18524. default: true
  18525. },
  18526. {
  18527. name: "Admirable floof",
  18528. height: math.unit(80, "meters")
  18529. },
  18530. {
  18531. name: "Gentle macro",
  18532. height: math.unit(300, "meters")
  18533. },
  18534. {
  18535. name: "Very careful floof",
  18536. height: math.unit(3200, "meters")
  18537. },
  18538. {
  18539. name: "The mega floof",
  18540. height: math.unit(36000, "meters")
  18541. },
  18542. {
  18543. name: "Giga-fur-Wicker",
  18544. height: math.unit(4800000, "meters")
  18545. },
  18546. {
  18547. name: "Licky world",
  18548. height: math.unit(20000000, "meters")
  18549. },
  18550. {
  18551. name: "Floofy cyan sun",
  18552. height: math.unit(1500000000, "meters")
  18553. },
  18554. {
  18555. name: "Milky Wicker",
  18556. height: math.unit(1000000000000000000000, "meters")
  18557. },
  18558. {
  18559. name: "The observing Wicker",
  18560. height: math.unit(999999999999999999999999999, "meters")
  18561. },
  18562. ]
  18563. ))
  18564. characterMakers.push(() => makeCharacter(
  18565. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18566. {
  18567. front: {
  18568. height: math.unit(5 + 9 / 12, "feet"),
  18569. weight: math.unit(150, "lb"),
  18570. name: "Front",
  18571. image: {
  18572. source: "./media/characters/arokha-sieyes/front.svg",
  18573. extra: 1425 / 1284,
  18574. bottom: 0.05
  18575. }
  18576. },
  18577. },
  18578. [
  18579. {
  18580. name: "Normal",
  18581. height: math.unit(5 + 9 / 12, "feet")
  18582. },
  18583. {
  18584. name: "Macro",
  18585. height: math.unit(30, "meters"),
  18586. default: true
  18587. },
  18588. ]
  18589. ))
  18590. characterMakers.push(() => makeCharacter(
  18591. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18592. {
  18593. front: {
  18594. height: math.unit(6, "feet"),
  18595. weight: math.unit(180, "lb"),
  18596. name: "Front",
  18597. image: {
  18598. source: "./media/characters/arokh-sieyes/front.svg",
  18599. extra: 1830 / 1769,
  18600. bottom: 0.01
  18601. }
  18602. },
  18603. },
  18604. [
  18605. {
  18606. name: "Normal",
  18607. height: math.unit(6, "feet")
  18608. },
  18609. {
  18610. name: "Macro",
  18611. height: math.unit(30, "meters"),
  18612. default: true
  18613. },
  18614. ]
  18615. ))
  18616. characterMakers.push(() => makeCharacter(
  18617. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18618. {
  18619. side: {
  18620. height: math.unit(13 + 1 / 12, "feet"),
  18621. weight: math.unit(8.5, "tonnes"),
  18622. name: "Side",
  18623. image: {
  18624. source: "./media/characters/goldeneye/side.svg",
  18625. extra: 1182 / 778,
  18626. bottom: 0.067
  18627. }
  18628. },
  18629. paw: {
  18630. height: math.unit(3.4, "feet"),
  18631. name: "Paw",
  18632. image: {
  18633. source: "./media/characters/goldeneye/paw.svg"
  18634. }
  18635. },
  18636. },
  18637. [
  18638. {
  18639. name: "Normal",
  18640. height: math.unit(13 + 1 / 12, "feet"),
  18641. default: true
  18642. },
  18643. ]
  18644. ))
  18645. characterMakers.push(() => makeCharacter(
  18646. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18647. {
  18648. front: {
  18649. height: math.unit(6 + 1 / 12, "feet"),
  18650. weight: math.unit(210, "lb"),
  18651. name: "Front",
  18652. image: {
  18653. source: "./media/characters/leonardo-lycheborne/front.svg",
  18654. extra: 390 / 365,
  18655. bottom: 0.032
  18656. }
  18657. },
  18658. side: {
  18659. height: math.unit(6 + 1 / 12, "feet"),
  18660. weight: math.unit(210, "lb"),
  18661. name: "Side",
  18662. image: {
  18663. source: "./media/characters/leonardo-lycheborne/side.svg",
  18664. extra: 390 / 365,
  18665. bottom: 0.005
  18666. }
  18667. },
  18668. back: {
  18669. height: math.unit(6 + 1 / 12, "feet"),
  18670. weight: math.unit(210, "lb"),
  18671. name: "Back",
  18672. image: {
  18673. source: "./media/characters/leonardo-lycheborne/back.svg",
  18674. extra: 392 / 366,
  18675. bottom: 0.01
  18676. }
  18677. },
  18678. hand: {
  18679. height: math.unit(1.08, "feet"),
  18680. name: "Hand",
  18681. image: {
  18682. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18683. }
  18684. },
  18685. foot: {
  18686. height: math.unit(1.32, "feet"),
  18687. name: "Foot",
  18688. image: {
  18689. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18690. }
  18691. },
  18692. were: {
  18693. height: math.unit(20, "feet"),
  18694. weight: math.unit(7800, "lb"),
  18695. name: "Were",
  18696. image: {
  18697. source: "./media/characters/leonardo-lycheborne/were.svg",
  18698. extra: 308 / 294,
  18699. bottom: 0.048
  18700. }
  18701. },
  18702. feral: {
  18703. height: math.unit(7.5, "feet"),
  18704. weight: math.unit(600, "lb"),
  18705. name: "Feral",
  18706. image: {
  18707. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18708. extra: 210 / 186,
  18709. bottom: 0.108
  18710. }
  18711. },
  18712. taur: {
  18713. height: math.unit(11, "feet"),
  18714. weight: math.unit(3300, "lb"),
  18715. name: "Taur",
  18716. image: {
  18717. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18718. extra: 320 / 303,
  18719. bottom: 0.025
  18720. }
  18721. },
  18722. barghest: {
  18723. height: math.unit(11, "feet"),
  18724. weight: math.unit(1300, "lb"),
  18725. name: "Barghest",
  18726. image: {
  18727. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18728. extra: 323 / 302,
  18729. bottom: 0.027
  18730. }
  18731. },
  18732. dick: {
  18733. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18734. name: "Dick",
  18735. image: {
  18736. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18737. }
  18738. },
  18739. dickWere: {
  18740. height: math.unit((20) / 3.8, "feet"),
  18741. name: "Dick (Were)",
  18742. image: {
  18743. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18744. }
  18745. },
  18746. },
  18747. [
  18748. {
  18749. name: "Normal",
  18750. height: math.unit(6 + 1 / 12, "feet"),
  18751. default: true
  18752. },
  18753. ]
  18754. ))
  18755. characterMakers.push(() => makeCharacter(
  18756. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18757. {
  18758. front: {
  18759. height: math.unit(10, "feet"),
  18760. weight: math.unit(350, "lb"),
  18761. name: "Front",
  18762. image: {
  18763. source: "./media/characters/jet/front.svg",
  18764. extra: 2050 / 1980,
  18765. bottom: 0.013
  18766. }
  18767. },
  18768. back: {
  18769. height: math.unit(10, "feet"),
  18770. weight: math.unit(350, "lb"),
  18771. name: "Back",
  18772. image: {
  18773. source: "./media/characters/jet/back.svg",
  18774. extra: 2050 / 1980,
  18775. bottom: 0.013
  18776. }
  18777. },
  18778. },
  18779. [
  18780. {
  18781. name: "Micro",
  18782. height: math.unit(6, "inches")
  18783. },
  18784. {
  18785. name: "Normal",
  18786. height: math.unit(10, "feet"),
  18787. default: true
  18788. },
  18789. {
  18790. name: "Macro",
  18791. height: math.unit(100, "feet")
  18792. },
  18793. ]
  18794. ))
  18795. characterMakers.push(() => makeCharacter(
  18796. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18797. {
  18798. front: {
  18799. height: math.unit(15, "feet"),
  18800. weight: math.unit(2800, "lb"),
  18801. name: "Front",
  18802. image: {
  18803. source: "./media/characters/tanarath/front.svg",
  18804. extra: 2392 / 2220,
  18805. bottom: 0.03
  18806. }
  18807. },
  18808. back: {
  18809. height: math.unit(15, "feet"),
  18810. weight: math.unit(2800, "lb"),
  18811. name: "Back",
  18812. image: {
  18813. source: "./media/characters/tanarath/back.svg",
  18814. extra: 2392 / 2220,
  18815. bottom: 0.03
  18816. }
  18817. },
  18818. },
  18819. [
  18820. {
  18821. name: "Normal",
  18822. height: math.unit(15, "feet"),
  18823. default: true
  18824. },
  18825. ]
  18826. ))
  18827. characterMakers.push(() => makeCharacter(
  18828. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18829. {
  18830. front: {
  18831. height: math.unit(7 + 1 / 12, "feet"),
  18832. weight: math.unit(175, "lb"),
  18833. name: "Front",
  18834. image: {
  18835. source: "./media/characters/patty-cattybatty/front.svg",
  18836. extra: 908 / 874,
  18837. bottom: 0.025
  18838. }
  18839. },
  18840. },
  18841. [
  18842. {
  18843. name: "Micro",
  18844. height: math.unit(1, "inch")
  18845. },
  18846. {
  18847. name: "Normal",
  18848. height: math.unit(7 + 1 / 12, "feet")
  18849. },
  18850. {
  18851. name: "Mini Macro",
  18852. height: math.unit(155, "feet")
  18853. },
  18854. {
  18855. name: "Macro",
  18856. height: math.unit(1077, "feet")
  18857. },
  18858. {
  18859. name: "Mega Macro",
  18860. height: math.unit(47650, "feet"),
  18861. default: true
  18862. },
  18863. {
  18864. name: "Giga Macro",
  18865. height: math.unit(440, "miles")
  18866. },
  18867. {
  18868. name: "Tera Macro",
  18869. height: math.unit(8700, "miles")
  18870. },
  18871. {
  18872. name: "Planetary Macro",
  18873. height: math.unit(32700, "miles")
  18874. },
  18875. {
  18876. name: "Solar Macro",
  18877. height: math.unit(550000, "miles")
  18878. },
  18879. {
  18880. name: "Celestial Macro",
  18881. height: math.unit(2.5, "AU")
  18882. },
  18883. ]
  18884. ))
  18885. characterMakers.push(() => makeCharacter(
  18886. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18887. {
  18888. front: {
  18889. height: math.unit(4 + 5 / 12, "feet"),
  18890. weight: math.unit(90, "lb"),
  18891. name: "Front",
  18892. image: {
  18893. source: "./media/characters/cappu/front.svg",
  18894. extra: 1247 / 1152,
  18895. bottom: 0.012
  18896. }
  18897. },
  18898. },
  18899. [
  18900. {
  18901. name: "Normal",
  18902. height: math.unit(4 + 5 / 12, "feet"),
  18903. default: true
  18904. },
  18905. ]
  18906. ))
  18907. characterMakers.push(() => makeCharacter(
  18908. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18909. {
  18910. frontDressed: {
  18911. height: math.unit(70, "cm"),
  18912. weight: math.unit(6, "kg"),
  18913. name: "Front (Dressed)",
  18914. image: {
  18915. source: "./media/characters/sebi/front-dressed.svg",
  18916. extra: 713.5 / 686.5,
  18917. bottom: 0.003
  18918. }
  18919. },
  18920. front: {
  18921. height: math.unit(70, "cm"),
  18922. weight: math.unit(5, "kg"),
  18923. name: "Front",
  18924. image: {
  18925. source: "./media/characters/sebi/front.svg",
  18926. extra: 713.5 / 686.5,
  18927. bottom: 0.003
  18928. }
  18929. }
  18930. },
  18931. [
  18932. {
  18933. name: "Normal",
  18934. height: math.unit(70, "cm"),
  18935. default: true
  18936. },
  18937. {
  18938. name: "Macro",
  18939. height: math.unit(8, "meters")
  18940. },
  18941. ]
  18942. ))
  18943. characterMakers.push(() => makeCharacter(
  18944. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18945. {
  18946. front: {
  18947. height: math.unit(6, "feet"),
  18948. weight: math.unit(150, "lb"),
  18949. name: "Front",
  18950. image: {
  18951. source: "./media/characters/typhek/front.svg",
  18952. extra: 1948 / 1929,
  18953. bottom: 0.025
  18954. }
  18955. },
  18956. side: {
  18957. height: math.unit(6, "feet"),
  18958. weight: math.unit(150, "lb"),
  18959. name: "Side",
  18960. image: {
  18961. source: "./media/characters/typhek/side.svg",
  18962. extra: 2034 / 2010,
  18963. bottom: 0.003
  18964. }
  18965. },
  18966. back: {
  18967. height: math.unit(6, "feet"),
  18968. weight: math.unit(150, "lb"),
  18969. name: "Back",
  18970. image: {
  18971. source: "./media/characters/typhek/back.svg",
  18972. extra: 2005 / 1978,
  18973. bottom: 0.004
  18974. }
  18975. },
  18976. palm: {
  18977. height: math.unit(1.2, "feet"),
  18978. name: "Palm",
  18979. image: {
  18980. source: "./media/characters/typhek/palm.svg"
  18981. }
  18982. },
  18983. fist: {
  18984. height: math.unit(1.1, "feet"),
  18985. name: "Fist",
  18986. image: {
  18987. source: "./media/characters/typhek/fist.svg"
  18988. }
  18989. },
  18990. foot: {
  18991. height: math.unit(1.57, "feet"),
  18992. name: "Foot",
  18993. image: {
  18994. source: "./media/characters/typhek/foot.svg"
  18995. }
  18996. },
  18997. sole: {
  18998. height: math.unit(2.05, "feet"),
  18999. name: "Sole",
  19000. image: {
  19001. source: "./media/characters/typhek/sole.svg"
  19002. }
  19003. },
  19004. },
  19005. [
  19006. {
  19007. name: "Macro",
  19008. height: math.unit(40, "stories"),
  19009. default: true
  19010. },
  19011. {
  19012. name: "Megamacro",
  19013. height: math.unit(1, "mile")
  19014. },
  19015. {
  19016. name: "Gigamacro",
  19017. height: math.unit(4000, "solarradii")
  19018. },
  19019. {
  19020. name: "Universal",
  19021. height: math.unit(1.1, "universes")
  19022. }
  19023. ]
  19024. ))
  19025. characterMakers.push(() => makeCharacter(
  19026. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19027. {
  19028. side: {
  19029. height: math.unit(5 + 7 / 12, "feet"),
  19030. weight: math.unit(150, "lb"),
  19031. name: "Side",
  19032. image: {
  19033. source: "./media/characters/kassy/side.svg",
  19034. extra: 1280 / 1225,
  19035. bottom: 0.002
  19036. }
  19037. },
  19038. front: {
  19039. height: math.unit(5 + 7 / 12, "feet"),
  19040. weight: math.unit(150, "lb"),
  19041. name: "Front",
  19042. image: {
  19043. source: "./media/characters/kassy/front.svg",
  19044. extra: 1280 / 1225,
  19045. bottom: 0.025
  19046. }
  19047. },
  19048. back: {
  19049. height: math.unit(5 + 7 / 12, "feet"),
  19050. weight: math.unit(150, "lb"),
  19051. name: "Back",
  19052. image: {
  19053. source: "./media/characters/kassy/back.svg",
  19054. extra: 1280 / 1225,
  19055. bottom: 0.002
  19056. }
  19057. },
  19058. foot: {
  19059. height: math.unit(1.266, "feet"),
  19060. name: "Foot",
  19061. image: {
  19062. source: "./media/characters/kassy/foot.svg"
  19063. }
  19064. },
  19065. },
  19066. [
  19067. {
  19068. name: "Normal",
  19069. height: math.unit(5 + 7 / 12, "feet")
  19070. },
  19071. {
  19072. name: "Macro",
  19073. height: math.unit(137, "feet"),
  19074. default: true
  19075. },
  19076. {
  19077. name: "Megamacro",
  19078. height: math.unit(1, "mile")
  19079. },
  19080. ]
  19081. ))
  19082. characterMakers.push(() => makeCharacter(
  19083. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19084. {
  19085. front: {
  19086. height: math.unit(6 + 1 / 12, "feet"),
  19087. weight: math.unit(200, "lb"),
  19088. name: "Front",
  19089. image: {
  19090. source: "./media/characters/neil/front.svg",
  19091. extra: 1326 / 1250,
  19092. bottom: 0.023
  19093. }
  19094. },
  19095. },
  19096. [
  19097. {
  19098. name: "Normal",
  19099. height: math.unit(6 + 1 / 12, "feet"),
  19100. default: true
  19101. },
  19102. {
  19103. name: "Macro",
  19104. height: math.unit(200, "feet")
  19105. },
  19106. ]
  19107. ))
  19108. characterMakers.push(() => makeCharacter(
  19109. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19110. {
  19111. front: {
  19112. height: math.unit(5 + 9 / 12, "feet"),
  19113. weight: math.unit(190, "lb"),
  19114. name: "Front",
  19115. image: {
  19116. source: "./media/characters/atticus/front.svg",
  19117. extra: 2934 / 2785,
  19118. bottom: 0.025
  19119. }
  19120. },
  19121. },
  19122. [
  19123. {
  19124. name: "Normal",
  19125. height: math.unit(5 + 9 / 12, "feet"),
  19126. default: true
  19127. },
  19128. {
  19129. name: "Macro",
  19130. height: math.unit(180, "feet")
  19131. },
  19132. ]
  19133. ))
  19134. characterMakers.push(() => makeCharacter(
  19135. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19136. {
  19137. side: {
  19138. height: math.unit(9, "feet"),
  19139. weight: math.unit(650, "lb"),
  19140. name: "Side",
  19141. image: {
  19142. source: "./media/characters/milo/side.svg",
  19143. extra: 2644 / 2310,
  19144. bottom: 0.032
  19145. }
  19146. },
  19147. },
  19148. [
  19149. {
  19150. name: "Normal",
  19151. height: math.unit(9, "feet"),
  19152. default: true
  19153. },
  19154. {
  19155. name: "Macro",
  19156. height: math.unit(300, "feet")
  19157. },
  19158. ]
  19159. ))
  19160. characterMakers.push(() => makeCharacter(
  19161. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19162. {
  19163. side: {
  19164. height: math.unit(8, "meters"),
  19165. weight: math.unit(90000, "kg"),
  19166. name: "Side",
  19167. image: {
  19168. source: "./media/characters/ijzer/side.svg",
  19169. extra: 2756 / 1600,
  19170. bottom: 0.01
  19171. }
  19172. },
  19173. },
  19174. [
  19175. {
  19176. name: "Small",
  19177. height: math.unit(3, "meters")
  19178. },
  19179. {
  19180. name: "Normal",
  19181. height: math.unit(8, "meters"),
  19182. default: true
  19183. },
  19184. {
  19185. name: "Normal+",
  19186. height: math.unit(10, "meters")
  19187. },
  19188. {
  19189. name: "Bigger",
  19190. height: math.unit(24, "meters")
  19191. },
  19192. {
  19193. name: "Huge",
  19194. height: math.unit(80, "meters")
  19195. },
  19196. ]
  19197. ))
  19198. characterMakers.push(() => makeCharacter(
  19199. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19200. {
  19201. front: {
  19202. height: math.unit(6 + 2 / 12, "feet"),
  19203. weight: math.unit(153, "lb"),
  19204. name: "Front",
  19205. image: {
  19206. source: "./media/characters/luca-cervicum/front.svg",
  19207. extra: 370 / 327,
  19208. bottom: 0.015
  19209. }
  19210. },
  19211. back: {
  19212. height: math.unit(6 + 2 / 12, "feet"),
  19213. weight: math.unit(153, "lb"),
  19214. name: "Back",
  19215. image: {
  19216. source: "./media/characters/luca-cervicum/back.svg",
  19217. extra: 367 / 333,
  19218. bottom: 0.005
  19219. }
  19220. },
  19221. frontGear: {
  19222. height: math.unit(6 + 2 / 12, "feet"),
  19223. weight: math.unit(173, "lb"),
  19224. name: "Front (Gear)",
  19225. image: {
  19226. source: "./media/characters/luca-cervicum/front-gear.svg",
  19227. extra: 377 / 333,
  19228. bottom: 0.006
  19229. }
  19230. },
  19231. },
  19232. [
  19233. {
  19234. name: "Normal",
  19235. height: math.unit(6 + 2 / 12, "feet"),
  19236. default: true
  19237. },
  19238. ]
  19239. ))
  19240. characterMakers.push(() => makeCharacter(
  19241. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19242. {
  19243. front: {
  19244. height: math.unit(6 + 1 / 12, "feet"),
  19245. weight: math.unit(304, "lb"),
  19246. name: "Front",
  19247. image: {
  19248. source: "./media/characters/oliver/front.svg",
  19249. extra: 157 / 143,
  19250. bottom: 0.08
  19251. }
  19252. },
  19253. },
  19254. [
  19255. {
  19256. name: "Normal",
  19257. height: math.unit(6 + 1 / 12, "feet"),
  19258. default: true
  19259. },
  19260. ]
  19261. ))
  19262. characterMakers.push(() => makeCharacter(
  19263. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19264. {
  19265. front: {
  19266. height: math.unit(5 + 7 / 12, "feet"),
  19267. weight: math.unit(140, "lb"),
  19268. name: "Front",
  19269. image: {
  19270. source: "./media/characters/shane/front.svg",
  19271. extra: 304 / 289,
  19272. bottom: 0.005
  19273. }
  19274. },
  19275. },
  19276. [
  19277. {
  19278. name: "Normal",
  19279. height: math.unit(5 + 7 / 12, "feet"),
  19280. default: true
  19281. },
  19282. ]
  19283. ))
  19284. characterMakers.push(() => makeCharacter(
  19285. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19286. {
  19287. front: {
  19288. height: math.unit(5 + 9 / 12, "feet"),
  19289. weight: math.unit(178, "lb"),
  19290. name: "Front",
  19291. image: {
  19292. source: "./media/characters/shin/front.svg",
  19293. extra: 159 / 151,
  19294. bottom: 0.015
  19295. }
  19296. },
  19297. },
  19298. [
  19299. {
  19300. name: "Normal",
  19301. height: math.unit(5 + 9 / 12, "feet"),
  19302. default: true
  19303. },
  19304. ]
  19305. ))
  19306. characterMakers.push(() => makeCharacter(
  19307. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19308. {
  19309. front: {
  19310. height: math.unit(5 + 10 / 12, "feet"),
  19311. weight: math.unit(168, "lb"),
  19312. name: "Front",
  19313. image: {
  19314. source: "./media/characters/xerxes/front.svg",
  19315. extra: 282 / 260,
  19316. bottom: 0.045
  19317. }
  19318. },
  19319. },
  19320. [
  19321. {
  19322. name: "Normal",
  19323. height: math.unit(5 + 10 / 12, "feet"),
  19324. default: true
  19325. },
  19326. ]
  19327. ))
  19328. characterMakers.push(() => makeCharacter(
  19329. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19330. {
  19331. front: {
  19332. height: math.unit(6 + 7 / 12, "feet"),
  19333. weight: math.unit(208, "lb"),
  19334. name: "Front",
  19335. image: {
  19336. source: "./media/characters/chaska/front.svg",
  19337. extra: 332 / 319,
  19338. bottom: 0.015
  19339. }
  19340. },
  19341. },
  19342. [
  19343. {
  19344. name: "Normal",
  19345. height: math.unit(6 + 7 / 12, "feet"),
  19346. default: true
  19347. },
  19348. ]
  19349. ))
  19350. characterMakers.push(() => makeCharacter(
  19351. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19352. {
  19353. front: {
  19354. height: math.unit(5 + 8 / 12, "feet"),
  19355. weight: math.unit(208, "lb"),
  19356. name: "Front",
  19357. image: {
  19358. source: "./media/characters/enuk/front.svg",
  19359. extra: 437 / 406,
  19360. bottom: 0.02
  19361. }
  19362. },
  19363. },
  19364. [
  19365. {
  19366. name: "Normal",
  19367. height: math.unit(5 + 8 / 12, "feet"),
  19368. default: true
  19369. },
  19370. ]
  19371. ))
  19372. characterMakers.push(() => makeCharacter(
  19373. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19374. {
  19375. front: {
  19376. height: math.unit(5 + 10 / 12, "feet"),
  19377. weight: math.unit(252, "lb"),
  19378. name: "Front",
  19379. image: {
  19380. source: "./media/characters/bruun/front.svg",
  19381. extra: 197 / 187,
  19382. bottom: 0.012
  19383. }
  19384. },
  19385. },
  19386. [
  19387. {
  19388. name: "Normal",
  19389. height: math.unit(5 + 10 / 12, "feet"),
  19390. default: true
  19391. },
  19392. ]
  19393. ))
  19394. characterMakers.push(() => makeCharacter(
  19395. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19396. {
  19397. front: {
  19398. height: math.unit(6 + 10 / 12, "feet"),
  19399. weight: math.unit(255, "lb"),
  19400. name: "Front",
  19401. image: {
  19402. source: "./media/characters/alexeev/front.svg",
  19403. extra: 213 / 200,
  19404. bottom: 0.05
  19405. }
  19406. },
  19407. },
  19408. [
  19409. {
  19410. name: "Normal",
  19411. height: math.unit(6 + 10 / 12, "feet"),
  19412. default: true
  19413. },
  19414. ]
  19415. ))
  19416. characterMakers.push(() => makeCharacter(
  19417. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19418. {
  19419. front: {
  19420. height: math.unit(2 + 8 / 12, "feet"),
  19421. weight: math.unit(22, "lb"),
  19422. name: "Front",
  19423. image: {
  19424. source: "./media/characters/evelyn/front.svg",
  19425. extra: 208 / 180
  19426. }
  19427. },
  19428. },
  19429. [
  19430. {
  19431. name: "Normal",
  19432. height: math.unit(2 + 8 / 12, "feet"),
  19433. default: true
  19434. },
  19435. ]
  19436. ))
  19437. characterMakers.push(() => makeCharacter(
  19438. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19439. {
  19440. front: {
  19441. height: math.unit(5 + 9 / 12, "feet"),
  19442. weight: math.unit(139, "lb"),
  19443. name: "Front",
  19444. image: {
  19445. source: "./media/characters/inca/front.svg",
  19446. extra: 294 / 291,
  19447. bottom: 0.03
  19448. }
  19449. },
  19450. },
  19451. [
  19452. {
  19453. name: "Normal",
  19454. height: math.unit(5 + 9 / 12, "feet"),
  19455. default: true
  19456. },
  19457. ]
  19458. ))
  19459. characterMakers.push(() => makeCharacter(
  19460. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19461. {
  19462. front: {
  19463. height: math.unit(5 + 1 / 12, "feet"),
  19464. weight: math.unit(84, "lb"),
  19465. name: "Front",
  19466. image: {
  19467. source: "./media/characters/magdalene/front.svg",
  19468. extra: 293 / 273
  19469. }
  19470. },
  19471. },
  19472. [
  19473. {
  19474. name: "Normal",
  19475. height: math.unit(5 + 1 / 12, "feet"),
  19476. default: true
  19477. },
  19478. ]
  19479. ))
  19480. characterMakers.push(() => makeCharacter(
  19481. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19482. {
  19483. front: {
  19484. height: math.unit(6 + 3 / 12, "feet"),
  19485. weight: math.unit(185, "lb"),
  19486. name: "Front",
  19487. image: {
  19488. source: "./media/characters/mera/front.svg",
  19489. extra: 291 / 277,
  19490. bottom: 0.03
  19491. }
  19492. },
  19493. },
  19494. [
  19495. {
  19496. name: "Normal",
  19497. height: math.unit(6 + 3 / 12, "feet"),
  19498. default: true
  19499. },
  19500. ]
  19501. ))
  19502. characterMakers.push(() => makeCharacter(
  19503. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19504. {
  19505. front: {
  19506. height: math.unit(6 + 7 / 12, "feet"),
  19507. weight: math.unit(160, "lb"),
  19508. name: "Front",
  19509. image: {
  19510. source: "./media/characters/ceres/front.svg",
  19511. extra: 1023 / 950,
  19512. bottom: 0.027
  19513. }
  19514. },
  19515. back: {
  19516. height: math.unit(6 + 7 / 12, "feet"),
  19517. weight: math.unit(160, "lb"),
  19518. name: "Back",
  19519. image: {
  19520. source: "./media/characters/ceres/back.svg",
  19521. extra: 1023 / 950
  19522. }
  19523. },
  19524. },
  19525. [
  19526. {
  19527. name: "Normal",
  19528. height: math.unit(6 + 7 / 12, "feet"),
  19529. default: true
  19530. },
  19531. ]
  19532. ))
  19533. characterMakers.push(() => makeCharacter(
  19534. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19535. {
  19536. front: {
  19537. height: math.unit(5 + 10 / 12, "feet"),
  19538. weight: math.unit(150, "lb"),
  19539. name: "Front",
  19540. image: {
  19541. source: "./media/characters/kris/front.svg",
  19542. extra: 885 / 803,
  19543. bottom: 0.03
  19544. }
  19545. },
  19546. },
  19547. [
  19548. {
  19549. name: "Normal",
  19550. height: math.unit(5 + 10 / 12, "feet"),
  19551. default: true
  19552. },
  19553. ]
  19554. ))
  19555. characterMakers.push(() => makeCharacter(
  19556. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19557. {
  19558. front: {
  19559. height: math.unit(7, "feet"),
  19560. weight: math.unit(120, "kg"),
  19561. name: "Front",
  19562. image: {
  19563. source: "./media/characters/taluthus/front.svg",
  19564. extra: 903 / 833,
  19565. bottom: 0.015
  19566. }
  19567. },
  19568. },
  19569. [
  19570. {
  19571. name: "Normal",
  19572. height: math.unit(7, "feet"),
  19573. default: true
  19574. },
  19575. {
  19576. name: "Macro",
  19577. height: math.unit(300, "feet")
  19578. },
  19579. ]
  19580. ))
  19581. characterMakers.push(() => makeCharacter(
  19582. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19583. {
  19584. front: {
  19585. height: math.unit(5 + 9 / 12, "feet"),
  19586. weight: math.unit(145, "lb"),
  19587. name: "Front",
  19588. image: {
  19589. source: "./media/characters/dawn/front.svg",
  19590. extra: 2094 / 2016,
  19591. bottom: 0.025
  19592. }
  19593. },
  19594. back: {
  19595. height: math.unit(5 + 9 / 12, "feet"),
  19596. weight: math.unit(160, "lb"),
  19597. name: "Back",
  19598. image: {
  19599. source: "./media/characters/dawn/back.svg",
  19600. extra: 2112 / 2080,
  19601. bottom: 0.005
  19602. }
  19603. },
  19604. },
  19605. [
  19606. {
  19607. name: "Normal",
  19608. height: math.unit(6 + 7 / 12, "feet"),
  19609. default: true
  19610. },
  19611. ]
  19612. ))
  19613. characterMakers.push(() => makeCharacter(
  19614. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19615. {
  19616. anthro: {
  19617. height: math.unit(8 + 3 / 12, "feet"),
  19618. weight: math.unit(450, "lb"),
  19619. name: "Anthro",
  19620. image: {
  19621. source: "./media/characters/arador/anthro.svg",
  19622. extra: 1835 / 1718,
  19623. bottom: 0.025
  19624. }
  19625. },
  19626. feral: {
  19627. height: math.unit(4, "feet"),
  19628. weight: math.unit(200, "lb"),
  19629. name: "Feral",
  19630. image: {
  19631. source: "./media/characters/arador/feral.svg",
  19632. extra: 1683 / 1514,
  19633. bottom: 0.07
  19634. }
  19635. },
  19636. },
  19637. [
  19638. {
  19639. name: "Normal",
  19640. height: math.unit(8 + 3 / 12, "feet")
  19641. },
  19642. {
  19643. name: "Macro",
  19644. height: math.unit(82.5, "feet"),
  19645. default: true
  19646. },
  19647. ]
  19648. ))
  19649. characterMakers.push(() => makeCharacter(
  19650. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19651. {
  19652. front: {
  19653. height: math.unit(5 + 10 / 12, "feet"),
  19654. weight: math.unit(125, "lb"),
  19655. name: "Front",
  19656. image: {
  19657. source: "./media/characters/dharsi/front.svg",
  19658. extra: 716 / 630,
  19659. bottom: 0.035
  19660. }
  19661. },
  19662. },
  19663. [
  19664. {
  19665. name: "Nano",
  19666. height: math.unit(100, "nm")
  19667. },
  19668. {
  19669. name: "Micro",
  19670. height: math.unit(2, "inches")
  19671. },
  19672. {
  19673. name: "Normal",
  19674. height: math.unit(5 + 10 / 12, "feet"),
  19675. default: true
  19676. },
  19677. {
  19678. name: "Macro",
  19679. height: math.unit(1000, "feet")
  19680. },
  19681. {
  19682. name: "Megamacro",
  19683. height: math.unit(10, "miles")
  19684. },
  19685. {
  19686. name: "Gigamacro",
  19687. height: math.unit(3000, "miles")
  19688. },
  19689. {
  19690. name: "Teramacro",
  19691. height: math.unit(500000, "miles")
  19692. },
  19693. {
  19694. name: "Teramacro+",
  19695. height: math.unit(30, "galaxies")
  19696. },
  19697. ]
  19698. ))
  19699. characterMakers.push(() => makeCharacter(
  19700. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19701. {
  19702. front: {
  19703. height: math.unit(6, "feet"),
  19704. weight: math.unit(150, "lb"),
  19705. name: "Front",
  19706. image: {
  19707. source: "./media/characters/deathy/front.svg",
  19708. extra: 1552 / 1463,
  19709. bottom: 0.025
  19710. }
  19711. },
  19712. side: {
  19713. height: math.unit(6, "feet"),
  19714. weight: math.unit(150, "lb"),
  19715. name: "Side",
  19716. image: {
  19717. source: "./media/characters/deathy/side.svg",
  19718. extra: 1604 / 1455,
  19719. bottom: 0.025
  19720. }
  19721. },
  19722. back: {
  19723. height: math.unit(6, "feet"),
  19724. weight: math.unit(150, "lb"),
  19725. name: "Back",
  19726. image: {
  19727. source: "./media/characters/deathy/back.svg",
  19728. extra: 1580 / 1463,
  19729. bottom: 0.005
  19730. }
  19731. },
  19732. },
  19733. [
  19734. {
  19735. name: "Micro",
  19736. height: math.unit(5, "millimeters")
  19737. },
  19738. {
  19739. name: "Normal",
  19740. height: math.unit(6 + 5 / 12, "feet"),
  19741. default: true
  19742. },
  19743. ]
  19744. ))
  19745. characterMakers.push(() => makeCharacter(
  19746. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19747. {
  19748. front: {
  19749. height: math.unit(16, "feet"),
  19750. weight: math.unit(4000, "lb"),
  19751. name: "Front",
  19752. image: {
  19753. source: "./media/characters/juniper/front.svg",
  19754. bottom: 0.04
  19755. }
  19756. },
  19757. },
  19758. [
  19759. {
  19760. name: "Normal",
  19761. height: math.unit(16, "feet"),
  19762. default: true
  19763. },
  19764. ]
  19765. ))
  19766. characterMakers.push(() => makeCharacter(
  19767. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19768. {
  19769. front: {
  19770. height: math.unit(6, "feet"),
  19771. weight: math.unit(150, "lb"),
  19772. name: "Front",
  19773. image: {
  19774. source: "./media/characters/hipster/front.svg",
  19775. extra: 1312 / 1209,
  19776. bottom: 0.025
  19777. }
  19778. },
  19779. back: {
  19780. height: math.unit(6, "feet"),
  19781. weight: math.unit(150, "lb"),
  19782. name: "Back",
  19783. image: {
  19784. source: "./media/characters/hipster/back.svg",
  19785. extra: 1281 / 1196,
  19786. bottom: 0.01
  19787. }
  19788. },
  19789. },
  19790. [
  19791. {
  19792. name: "Micro",
  19793. height: math.unit(1, "mm")
  19794. },
  19795. {
  19796. name: "Normal",
  19797. height: math.unit(4, "inches"),
  19798. default: true
  19799. },
  19800. {
  19801. name: "Macro",
  19802. height: math.unit(500, "feet")
  19803. },
  19804. {
  19805. name: "Megamacro",
  19806. height: math.unit(1000, "miles")
  19807. },
  19808. ]
  19809. ))
  19810. characterMakers.push(() => makeCharacter(
  19811. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19812. {
  19813. front: {
  19814. height: math.unit(6, "feet"),
  19815. weight: math.unit(150, "lb"),
  19816. name: "Front",
  19817. image: {
  19818. source: "./media/characters/tendirmuldr/front.svg",
  19819. extra: 1878 / 1772,
  19820. bottom: 0.015
  19821. }
  19822. },
  19823. },
  19824. [
  19825. {
  19826. name: "Megamacro",
  19827. height: math.unit(1500, "miles"),
  19828. default: true
  19829. },
  19830. ]
  19831. ))
  19832. characterMakers.push(() => makeCharacter(
  19833. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19834. {
  19835. front: {
  19836. height: math.unit(14, "feet"),
  19837. weight: math.unit(12000, "lb"),
  19838. name: "Front",
  19839. image: {
  19840. source: "./media/characters/mort/front.svg",
  19841. extra: 365 / 318,
  19842. bottom: 0.01
  19843. }
  19844. },
  19845. side: {
  19846. height: math.unit(14, "feet"),
  19847. weight: math.unit(12000, "lb"),
  19848. name: "Side",
  19849. image: {
  19850. source: "./media/characters/mort/side.svg",
  19851. extra: 365 / 318,
  19852. bottom: 0.052
  19853. },
  19854. default: true
  19855. },
  19856. back: {
  19857. height: math.unit(14, "feet"),
  19858. weight: math.unit(12000, "lb"),
  19859. name: "Back",
  19860. image: {
  19861. source: "./media/characters/mort/back.svg",
  19862. extra: 371 / 332,
  19863. bottom: 0.18
  19864. }
  19865. },
  19866. },
  19867. [
  19868. {
  19869. name: "Normal",
  19870. height: math.unit(14, "feet"),
  19871. default: true
  19872. },
  19873. ]
  19874. ))
  19875. characterMakers.push(() => makeCharacter(
  19876. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19877. {
  19878. front: {
  19879. height: math.unit(8, "feet"),
  19880. weight: math.unit(1, "ton"),
  19881. name: "Front",
  19882. image: {
  19883. source: "./media/characters/lycoa/front.svg",
  19884. extra: 1875 / 1789,
  19885. bottom: 0.022
  19886. }
  19887. },
  19888. back: {
  19889. height: math.unit(8, "feet"),
  19890. weight: math.unit(1, "ton"),
  19891. name: "Back",
  19892. image: {
  19893. source: "./media/characters/lycoa/back.svg",
  19894. extra: 1835 / 1781,
  19895. bottom: 0.03
  19896. }
  19897. },
  19898. head: {
  19899. height: math.unit(2.1, "feet"),
  19900. name: "Head",
  19901. image: {
  19902. source: "./media/characters/lycoa/head.svg"
  19903. }
  19904. },
  19905. tailmaw: {
  19906. height: math.unit(1.9, "feet"),
  19907. name: "Tailmaw",
  19908. image: {
  19909. source: "./media/characters/lycoa/tailmaw.svg"
  19910. }
  19911. },
  19912. tentacles: {
  19913. height: math.unit(2.1, "feet"),
  19914. name: "Tentacles",
  19915. image: {
  19916. source: "./media/characters/lycoa/tentacles.svg"
  19917. }
  19918. },
  19919. dick: {
  19920. height: math.unit(1.73, "feet"),
  19921. name: "Dick",
  19922. image: {
  19923. source: "./media/characters/lycoa/dick.svg"
  19924. }
  19925. },
  19926. },
  19927. [
  19928. {
  19929. name: "Normal",
  19930. height: math.unit(8, "feet"),
  19931. default: true
  19932. },
  19933. {
  19934. name: "Macro",
  19935. height: math.unit(30, "feet")
  19936. },
  19937. ]
  19938. ))
  19939. characterMakers.push(() => makeCharacter(
  19940. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19941. {
  19942. front: {
  19943. height: math.unit(4 + 2 / 12, "feet"),
  19944. weight: math.unit(70, "lb"),
  19945. name: "Front",
  19946. image: {
  19947. source: "./media/characters/naldara/front.svg",
  19948. extra: 841 / 720,
  19949. bottom: 0.04
  19950. }
  19951. },
  19952. naga: {
  19953. height: math.unit(23, "feet"),
  19954. weight: math.unit(15000, "kg"),
  19955. name: "Naga",
  19956. image: {
  19957. source: "./media/characters/naldara/naga.svg",
  19958. extra: 3290 / 2959,
  19959. bottom: 124 / 3432
  19960. }
  19961. },
  19962. },
  19963. [
  19964. {
  19965. name: "Normal",
  19966. height: math.unit(4 + 2 / 12, "feet"),
  19967. default: true
  19968. },
  19969. ]
  19970. ))
  19971. characterMakers.push(() => makeCharacter(
  19972. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19973. {
  19974. front: {
  19975. height: math.unit(13 + 7 / 12, "feet"),
  19976. weight: math.unit(1500, "lb"),
  19977. name: "Front",
  19978. image: {
  19979. source: "./media/characters/briar/front.svg",
  19980. extra: 626 / 596,
  19981. bottom: 0.08
  19982. }
  19983. },
  19984. },
  19985. [
  19986. {
  19987. name: "Normal",
  19988. height: math.unit(13 + 7 / 12, "feet"),
  19989. default: true
  19990. },
  19991. ]
  19992. ))
  19993. characterMakers.push(() => makeCharacter(
  19994. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19995. {
  19996. side: {
  19997. height: math.unit(10, "feet"),
  19998. weight: math.unit(500, "lb"),
  19999. name: "Side",
  20000. image: {
  20001. source: "./media/characters/vanguard/side.svg",
  20002. extra: 502 / 425,
  20003. bottom: 0.087
  20004. }
  20005. },
  20006. },
  20007. [
  20008. {
  20009. name: "Normal",
  20010. height: math.unit(10, "feet"),
  20011. default: true
  20012. },
  20013. ]
  20014. ))
  20015. characterMakers.push(() => makeCharacter(
  20016. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20017. {
  20018. front: {
  20019. height: math.unit(7.5, "feet"),
  20020. weight: math.unit(2, "lb"),
  20021. name: "Front",
  20022. image: {
  20023. source: "./media/characters/artemis/front.svg",
  20024. extra: 1192 / 1075,
  20025. bottom: 0.07
  20026. }
  20027. },
  20028. frontNsfw: {
  20029. height: math.unit(7.5, "feet"),
  20030. weight: math.unit(2, "lb"),
  20031. name: "Front (NSFW)",
  20032. image: {
  20033. source: "./media/characters/artemis/front-nsfw.svg",
  20034. extra: 1192 / 1075,
  20035. bottom: 0.07
  20036. }
  20037. },
  20038. frontNsfwer: {
  20039. height: math.unit(7.5, "feet"),
  20040. weight: math.unit(2, "lb"),
  20041. name: "Front (NSFW-er)",
  20042. image: {
  20043. source: "./media/characters/artemis/front-nsfwer.svg",
  20044. extra: 1192 / 1075,
  20045. bottom: 0.07
  20046. }
  20047. },
  20048. side: {
  20049. height: math.unit(7.5, "feet"),
  20050. weight: math.unit(2, "lb"),
  20051. name: "Side",
  20052. image: {
  20053. source: "./media/characters/artemis/side.svg",
  20054. extra: 1192 / 1075,
  20055. bottom: 0.07
  20056. }
  20057. },
  20058. sideNsfw: {
  20059. height: math.unit(7.5, "feet"),
  20060. weight: math.unit(2, "lb"),
  20061. name: "Side (NSFW)",
  20062. image: {
  20063. source: "./media/characters/artemis/side-nsfw.svg",
  20064. extra: 1192 / 1075,
  20065. bottom: 0.07
  20066. }
  20067. },
  20068. sideNsfwer: {
  20069. height: math.unit(7.5, "feet"),
  20070. weight: math.unit(2, "lb"),
  20071. name: "Side (NSFW-er)",
  20072. image: {
  20073. source: "./media/characters/artemis/side-nsfwer.svg",
  20074. extra: 1192 / 1075,
  20075. bottom: 0.07
  20076. }
  20077. },
  20078. maw: {
  20079. height: math.unit(1.1, "feet"),
  20080. name: "Maw",
  20081. image: {
  20082. source: "./media/characters/artemis/maw.svg"
  20083. }
  20084. },
  20085. stomach: {
  20086. height: math.unit(0.95, "feet"),
  20087. name: "Stomach",
  20088. image: {
  20089. source: "./media/characters/artemis/stomach.svg"
  20090. }
  20091. },
  20092. dickCanine: {
  20093. height: math.unit(1, "feet"),
  20094. name: "Dick (Canine)",
  20095. image: {
  20096. source: "./media/characters/artemis/dick-canine.svg"
  20097. }
  20098. },
  20099. dickEquine: {
  20100. height: math.unit(0.85, "feet"),
  20101. name: "Dick (Equine)",
  20102. image: {
  20103. source: "./media/characters/artemis/dick-equine.svg"
  20104. }
  20105. },
  20106. dickExotic: {
  20107. height: math.unit(0.85, "feet"),
  20108. name: "Dick (Exotic)",
  20109. image: {
  20110. source: "./media/characters/artemis/dick-exotic.svg"
  20111. }
  20112. },
  20113. },
  20114. [
  20115. {
  20116. name: "Normal",
  20117. height: math.unit(7.5, "feet"),
  20118. default: true
  20119. },
  20120. {
  20121. name: "Enlarged",
  20122. height: math.unit(12, "feet")
  20123. },
  20124. ]
  20125. ))
  20126. characterMakers.push(() => makeCharacter(
  20127. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20128. {
  20129. front: {
  20130. height: math.unit(5 + 3 / 12, "feet"),
  20131. weight: math.unit(160, "lb"),
  20132. name: "Front",
  20133. image: {
  20134. source: "./media/characters/kira/front.svg",
  20135. extra: 906 / 786,
  20136. bottom: 0.01
  20137. }
  20138. },
  20139. back: {
  20140. height: math.unit(5 + 3 / 12, "feet"),
  20141. weight: math.unit(160, "lb"),
  20142. name: "Back",
  20143. image: {
  20144. source: "./media/characters/kira/back.svg",
  20145. extra: 882 / 757,
  20146. bottom: 0.005
  20147. }
  20148. },
  20149. frontDressed: {
  20150. height: math.unit(5 + 3 / 12, "feet"),
  20151. weight: math.unit(160, "lb"),
  20152. name: "Front (Dressed)",
  20153. image: {
  20154. source: "./media/characters/kira/front-dressed.svg",
  20155. extra: 906 / 786,
  20156. bottom: 0.01
  20157. }
  20158. },
  20159. beans: {
  20160. height: math.unit(0.92, "feet"),
  20161. name: "Beans",
  20162. image: {
  20163. source: "./media/characters/kira/beans.svg"
  20164. }
  20165. },
  20166. },
  20167. [
  20168. {
  20169. name: "Normal",
  20170. height: math.unit(5 + 3 / 12, "feet"),
  20171. default: true
  20172. },
  20173. ]
  20174. ))
  20175. characterMakers.push(() => makeCharacter(
  20176. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20177. {
  20178. front: {
  20179. height: math.unit(5 + 4 / 12, "feet"),
  20180. weight: math.unit(145, "lb"),
  20181. name: "Front",
  20182. image: {
  20183. source: "./media/characters/scramble/front.svg",
  20184. extra: 763 / 727,
  20185. bottom: 0.05
  20186. }
  20187. },
  20188. back: {
  20189. height: math.unit(5 + 4 / 12, "feet"),
  20190. weight: math.unit(145, "lb"),
  20191. name: "Back",
  20192. image: {
  20193. source: "./media/characters/scramble/back.svg",
  20194. extra: 826 / 737,
  20195. bottom: 0.002
  20196. }
  20197. },
  20198. },
  20199. [
  20200. {
  20201. name: "Normal",
  20202. height: math.unit(5 + 4 / 12, "feet"),
  20203. default: true
  20204. },
  20205. ]
  20206. ))
  20207. characterMakers.push(() => makeCharacter(
  20208. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20209. {
  20210. side: {
  20211. height: math.unit(6 + 2 / 12, "feet"),
  20212. weight: math.unit(190, "lb"),
  20213. name: "Side",
  20214. image: {
  20215. source: "./media/characters/biscuit/side.svg",
  20216. extra: 858 / 791,
  20217. bottom: 0.044
  20218. }
  20219. },
  20220. },
  20221. [
  20222. {
  20223. name: "Normal",
  20224. height: math.unit(6 + 2 / 12, "feet"),
  20225. default: true
  20226. },
  20227. ]
  20228. ))
  20229. characterMakers.push(() => makeCharacter(
  20230. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20231. {
  20232. front: {
  20233. height: math.unit(5 + 2 / 12, "feet"),
  20234. weight: math.unit(120, "lb"),
  20235. name: "Front",
  20236. image: {
  20237. source: "./media/characters/poffin/front.svg",
  20238. extra: 786 / 680,
  20239. bottom: 0.005
  20240. }
  20241. },
  20242. },
  20243. [
  20244. {
  20245. name: "Normal",
  20246. height: math.unit(5 + 2 / 12, "feet"),
  20247. default: true
  20248. },
  20249. ]
  20250. ))
  20251. characterMakers.push(() => makeCharacter(
  20252. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20253. {
  20254. front: {
  20255. height: math.unit(6 + 3 / 12, "feet"),
  20256. weight: math.unit(519, "lb"),
  20257. name: "Front",
  20258. image: {
  20259. source: "./media/characters/dhari/front.svg",
  20260. extra: 1048 / 946,
  20261. bottom: 0.015
  20262. }
  20263. },
  20264. back: {
  20265. height: math.unit(6 + 3 / 12, "feet"),
  20266. weight: math.unit(519, "lb"),
  20267. name: "Back",
  20268. image: {
  20269. source: "./media/characters/dhari/back.svg",
  20270. extra: 1048 / 931,
  20271. bottom: 0.005
  20272. }
  20273. },
  20274. frontDressed: {
  20275. height: math.unit(6 + 3 / 12, "feet"),
  20276. weight: math.unit(519, "lb"),
  20277. name: "Front (Dressed)",
  20278. image: {
  20279. source: "./media/characters/dhari/front-dressed.svg",
  20280. extra: 1713 / 1546,
  20281. bottom: 0.02
  20282. }
  20283. },
  20284. backDressed: {
  20285. height: math.unit(6 + 3 / 12, "feet"),
  20286. weight: math.unit(519, "lb"),
  20287. name: "Back (Dressed)",
  20288. image: {
  20289. source: "./media/characters/dhari/back-dressed.svg",
  20290. extra: 1699 / 1537,
  20291. bottom: 0.01
  20292. }
  20293. },
  20294. maw: {
  20295. height: math.unit(0.95, "feet"),
  20296. name: "Maw",
  20297. image: {
  20298. source: "./media/characters/dhari/maw.svg"
  20299. }
  20300. },
  20301. wereFront: {
  20302. height: math.unit(12 + 8 / 12, "feet"),
  20303. weight: math.unit(4000, "lb"),
  20304. name: "Front (Were)",
  20305. image: {
  20306. source: "./media/characters/dhari/were-front.svg",
  20307. extra: 1065 / 969,
  20308. bottom: 0.015
  20309. }
  20310. },
  20311. wereBack: {
  20312. height: math.unit(12 + 8 / 12, "feet"),
  20313. weight: math.unit(4000, "lb"),
  20314. name: "Back (Were)",
  20315. image: {
  20316. source: "./media/characters/dhari/were-back.svg",
  20317. extra: 1065 / 969,
  20318. bottom: 0.012
  20319. }
  20320. },
  20321. wereMaw: {
  20322. height: math.unit(0.625, "meters"),
  20323. name: "Maw (Were)",
  20324. image: {
  20325. source: "./media/characters/dhari/were-maw.svg"
  20326. }
  20327. },
  20328. },
  20329. [
  20330. {
  20331. name: "Normal",
  20332. height: math.unit(6 + 3 / 12, "feet"),
  20333. default: true
  20334. },
  20335. ]
  20336. ))
  20337. characterMakers.push(() => makeCharacter(
  20338. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20339. {
  20340. anthro: {
  20341. height: math.unit(5 + 7 / 12, "feet"),
  20342. weight: math.unit(175, "lb"),
  20343. name: "Anthro",
  20344. image: {
  20345. source: "./media/characters/rena-dyne/anthro.svg",
  20346. extra: 1849 / 1785,
  20347. bottom: 0.005
  20348. }
  20349. },
  20350. taur: {
  20351. height: math.unit(15 + 6 / 12, "feet"),
  20352. weight: math.unit(8000, "lb"),
  20353. name: "Taur",
  20354. image: {
  20355. source: "./media/characters/rena-dyne/taur.svg",
  20356. extra: 2315 / 2234,
  20357. bottom: 0.033
  20358. }
  20359. },
  20360. },
  20361. [
  20362. {
  20363. name: "Normal",
  20364. height: math.unit(5 + 7 / 12, "feet"),
  20365. default: true
  20366. },
  20367. ]
  20368. ))
  20369. characterMakers.push(() => makeCharacter(
  20370. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20371. {
  20372. front: {
  20373. height: math.unit(8, "feet"),
  20374. weight: math.unit(600, "lb"),
  20375. name: "Front",
  20376. image: {
  20377. source: "./media/characters/weremeep/front.svg",
  20378. extra: 967 / 862,
  20379. bottom: 0.01
  20380. }
  20381. },
  20382. },
  20383. [
  20384. {
  20385. name: "Normal",
  20386. height: math.unit(8, "feet"),
  20387. default: true
  20388. },
  20389. {
  20390. name: "Lorg",
  20391. height: math.unit(12, "feet")
  20392. },
  20393. {
  20394. name: "Oh Lawd She Comin'",
  20395. height: math.unit(20, "feet")
  20396. },
  20397. ]
  20398. ))
  20399. characterMakers.push(() => makeCharacter(
  20400. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20401. {
  20402. front: {
  20403. height: math.unit(4, "feet"),
  20404. weight: math.unit(90, "lb"),
  20405. name: "Front",
  20406. image: {
  20407. source: "./media/characters/reza/front.svg",
  20408. extra: 1183 / 1111,
  20409. bottom: 0.017
  20410. }
  20411. },
  20412. back: {
  20413. height: math.unit(4, "feet"),
  20414. weight: math.unit(90, "lb"),
  20415. name: "Back",
  20416. image: {
  20417. source: "./media/characters/reza/back.svg",
  20418. extra: 1183 / 1111,
  20419. bottom: 0.01
  20420. }
  20421. },
  20422. drake: {
  20423. height: math.unit(30, "feet"),
  20424. weight: math.unit(246960, "lb"),
  20425. name: "Drake",
  20426. image: {
  20427. source: "./media/characters/reza/drake.svg",
  20428. extra: 2350 / 2024,
  20429. bottom: 60.7 / 2403
  20430. }
  20431. },
  20432. },
  20433. [
  20434. {
  20435. name: "Normal",
  20436. height: math.unit(4, "feet"),
  20437. default: true
  20438. },
  20439. ]
  20440. ))
  20441. characterMakers.push(() => makeCharacter(
  20442. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20443. {
  20444. side: {
  20445. height: math.unit(15, "feet"),
  20446. weight: math.unit(14, "tons"),
  20447. name: "Side",
  20448. image: {
  20449. source: "./media/characters/athea/side.svg",
  20450. extra: 960 / 540,
  20451. bottom: 0.003
  20452. }
  20453. },
  20454. sitting: {
  20455. height: math.unit(6 * 2.85, "feet"),
  20456. weight: math.unit(14, "tons"),
  20457. name: "Sitting",
  20458. image: {
  20459. source: "./media/characters/athea/sitting.svg",
  20460. extra: 621 / 581,
  20461. bottom: 0.075
  20462. }
  20463. },
  20464. maw: {
  20465. height: math.unit(7.59498031496063, "feet"),
  20466. name: "Maw",
  20467. image: {
  20468. source: "./media/characters/athea/maw.svg"
  20469. }
  20470. },
  20471. },
  20472. [
  20473. {
  20474. name: "Lap Cat",
  20475. height: math.unit(2.5, "feet")
  20476. },
  20477. {
  20478. name: "Minimacro",
  20479. height: math.unit(15, "feet"),
  20480. default: true
  20481. },
  20482. {
  20483. name: "Macro",
  20484. height: math.unit(120, "feet")
  20485. },
  20486. {
  20487. name: "Macro+",
  20488. height: math.unit(640, "feet")
  20489. },
  20490. {
  20491. name: "Colossus",
  20492. height: math.unit(2.2, "miles")
  20493. },
  20494. ]
  20495. ))
  20496. characterMakers.push(() => makeCharacter(
  20497. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20498. {
  20499. front: {
  20500. height: math.unit(8 + 8 / 12, "feet"),
  20501. weight: math.unit(130, "kg"),
  20502. name: "Front",
  20503. image: {
  20504. source: "./media/characters/seroko/front.svg",
  20505. extra: 1385 / 1280,
  20506. bottom: 0.025
  20507. }
  20508. },
  20509. back: {
  20510. height: math.unit(8 + 8 / 12, "feet"),
  20511. weight: math.unit(130, "kg"),
  20512. name: "Back",
  20513. image: {
  20514. source: "./media/characters/seroko/back.svg",
  20515. extra: 1369 / 1238,
  20516. bottom: 0.018
  20517. }
  20518. },
  20519. frontDressed: {
  20520. height: math.unit(8 + 8 / 12, "feet"),
  20521. weight: math.unit(130, "kg"),
  20522. name: "Front (Dressed)",
  20523. image: {
  20524. source: "./media/characters/seroko/front-dressed.svg",
  20525. extra: 1366 / 1275,
  20526. bottom: 0.03
  20527. }
  20528. },
  20529. },
  20530. [
  20531. {
  20532. name: "Normal",
  20533. height: math.unit(8 + 8 / 12, "feet"),
  20534. default: true
  20535. },
  20536. ]
  20537. ))
  20538. characterMakers.push(() => makeCharacter(
  20539. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20540. {
  20541. front: {
  20542. height: math.unit(5.5, "feet"),
  20543. weight: math.unit(160, "lb"),
  20544. name: "Front",
  20545. image: {
  20546. source: "./media/characters/quatzi/front.svg",
  20547. extra: 2346 / 2242,
  20548. bottom: 0.015
  20549. }
  20550. },
  20551. },
  20552. [
  20553. {
  20554. name: "Normal",
  20555. height: math.unit(5.5, "feet"),
  20556. default: true
  20557. },
  20558. {
  20559. name: "Big",
  20560. height: math.unit(7.7, "feet")
  20561. },
  20562. ]
  20563. ))
  20564. characterMakers.push(() => makeCharacter(
  20565. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20566. {
  20567. front: {
  20568. height: math.unit(5 + 11 / 12, "feet"),
  20569. weight: math.unit(180, "lb"),
  20570. name: "Front",
  20571. image: {
  20572. source: "./media/characters/sen/front.svg",
  20573. extra: 1321 / 1254,
  20574. bottom: 0.015
  20575. }
  20576. },
  20577. side: {
  20578. height: math.unit(5 + 11 / 12, "feet"),
  20579. weight: math.unit(180, "lb"),
  20580. name: "Side",
  20581. image: {
  20582. source: "./media/characters/sen/side.svg",
  20583. extra: 1321 / 1254,
  20584. bottom: 0.007
  20585. }
  20586. },
  20587. back: {
  20588. height: math.unit(5 + 11 / 12, "feet"),
  20589. weight: math.unit(180, "lb"),
  20590. name: "Back",
  20591. image: {
  20592. source: "./media/characters/sen/back.svg",
  20593. extra: 1321 / 1254
  20594. }
  20595. },
  20596. },
  20597. [
  20598. {
  20599. name: "Normal",
  20600. height: math.unit(5 + 11 / 12, "feet"),
  20601. default: true
  20602. },
  20603. ]
  20604. ))
  20605. characterMakers.push(() => makeCharacter(
  20606. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20607. {
  20608. front: {
  20609. height: math.unit(166.6, "cm"),
  20610. weight: math.unit(66.6, "kg"),
  20611. name: "Front",
  20612. image: {
  20613. source: "./media/characters/fruity/front.svg",
  20614. extra: 1510 / 1386,
  20615. bottom: 0.04
  20616. }
  20617. },
  20618. back: {
  20619. height: math.unit(166.6, "cm"),
  20620. weight: math.unit(66.6, "lb"),
  20621. name: "Back",
  20622. image: {
  20623. source: "./media/characters/fruity/back.svg",
  20624. extra: 1563 / 1435,
  20625. bottom: 0.005
  20626. }
  20627. },
  20628. },
  20629. [
  20630. {
  20631. name: "Normal",
  20632. height: math.unit(166.6, "cm"),
  20633. default: true
  20634. },
  20635. {
  20636. name: "Demonic",
  20637. height: math.unit(166.6, "feet")
  20638. },
  20639. ]
  20640. ))
  20641. characterMakers.push(() => makeCharacter(
  20642. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20643. {
  20644. side: {
  20645. height: math.unit(10, "feet"),
  20646. weight: math.unit(500, "lb"),
  20647. name: "Side",
  20648. image: {
  20649. source: "./media/characters/zost/side.svg",
  20650. extra: 966 / 880,
  20651. bottom: 0.075
  20652. }
  20653. },
  20654. mawFront: {
  20655. height: math.unit(1.08, "meters"),
  20656. name: "Maw (Front)",
  20657. image: {
  20658. source: "./media/characters/zost/maw-front.svg"
  20659. }
  20660. },
  20661. mawSide: {
  20662. height: math.unit(2.66, "feet"),
  20663. name: "Maw (Side)",
  20664. image: {
  20665. source: "./media/characters/zost/maw-side.svg"
  20666. }
  20667. },
  20668. },
  20669. [
  20670. {
  20671. name: "Normal",
  20672. height: math.unit(10, "feet"),
  20673. default: true
  20674. },
  20675. ]
  20676. ))
  20677. characterMakers.push(() => makeCharacter(
  20678. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20679. {
  20680. front: {
  20681. height: math.unit(5 + 4 / 12, "feet"),
  20682. weight: math.unit(120, "lb"),
  20683. name: "Front",
  20684. image: {
  20685. source: "./media/characters/luci/front.svg",
  20686. extra: 1985 / 1884,
  20687. bottom: 0.04
  20688. }
  20689. },
  20690. back: {
  20691. height: math.unit(5 + 4 / 12, "feet"),
  20692. weight: math.unit(120, "lb"),
  20693. name: "Back",
  20694. image: {
  20695. source: "./media/characters/luci/back.svg",
  20696. extra: 1892 / 1791,
  20697. bottom: 0.002
  20698. }
  20699. },
  20700. },
  20701. [
  20702. {
  20703. name: "Normal",
  20704. height: math.unit(5 + 4 / 12, "feet"),
  20705. default: true
  20706. },
  20707. ]
  20708. ))
  20709. characterMakers.push(() => makeCharacter(
  20710. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20711. {
  20712. front: {
  20713. height: math.unit(1500, "feet"),
  20714. weight: math.unit(3.8e6, "tons"),
  20715. name: "Front",
  20716. image: {
  20717. source: "./media/characters/2th/front.svg",
  20718. extra: 3489 / 3350,
  20719. bottom: 0.1
  20720. }
  20721. },
  20722. foot: {
  20723. height: math.unit(461, "feet"),
  20724. name: "Foot",
  20725. image: {
  20726. source: "./media/characters/2th/foot.svg"
  20727. }
  20728. },
  20729. },
  20730. [
  20731. {
  20732. name: "\"Micro\"",
  20733. height: math.unit(15 + 7 / 12, "feet")
  20734. },
  20735. {
  20736. name: "Normal",
  20737. height: math.unit(1500, "feet"),
  20738. default: true
  20739. },
  20740. {
  20741. name: "Macro",
  20742. height: math.unit(5000, "feet")
  20743. },
  20744. {
  20745. name: "Megamacro",
  20746. height: math.unit(15, "miles")
  20747. },
  20748. {
  20749. name: "Gigamacro",
  20750. height: math.unit(4000, "miles")
  20751. },
  20752. {
  20753. name: "Galactic",
  20754. height: math.unit(50, "AU")
  20755. },
  20756. ]
  20757. ))
  20758. characterMakers.push(() => makeCharacter(
  20759. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20760. {
  20761. front: {
  20762. height: math.unit(5 + 6 / 12, "feet"),
  20763. weight: math.unit(220, "lb"),
  20764. name: "Front",
  20765. image: {
  20766. source: "./media/characters/amethyst/front.svg",
  20767. extra: 2078 / 2040,
  20768. bottom: 0.045
  20769. }
  20770. },
  20771. back: {
  20772. height: math.unit(5 + 6 / 12, "feet"),
  20773. weight: math.unit(220, "lb"),
  20774. name: "Back",
  20775. image: {
  20776. source: "./media/characters/amethyst/back.svg",
  20777. extra: 2021 / 1989,
  20778. bottom: 0.02
  20779. }
  20780. },
  20781. },
  20782. [
  20783. {
  20784. name: "Normal",
  20785. height: math.unit(5 + 6 / 12, "feet"),
  20786. default: true
  20787. },
  20788. ]
  20789. ))
  20790. characterMakers.push(() => makeCharacter(
  20791. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20792. {
  20793. front: {
  20794. height: math.unit(4 + 11 / 12, "feet"),
  20795. weight: math.unit(120, "lb"),
  20796. name: "Front",
  20797. image: {
  20798. source: "./media/characters/yumi-akiyama/front.svg",
  20799. extra: 1327 / 1235,
  20800. bottom: 0.02
  20801. }
  20802. },
  20803. back: {
  20804. height: math.unit(4 + 11 / 12, "feet"),
  20805. weight: math.unit(120, "lb"),
  20806. name: "Back",
  20807. image: {
  20808. source: "./media/characters/yumi-akiyama/back.svg",
  20809. extra: 1287 / 1245,
  20810. bottom: 0.002
  20811. }
  20812. },
  20813. },
  20814. [
  20815. {
  20816. name: "Galactic",
  20817. height: math.unit(50, "galaxies"),
  20818. default: true
  20819. },
  20820. {
  20821. name: "Universal",
  20822. height: math.unit(100, "universes")
  20823. },
  20824. ]
  20825. ))
  20826. characterMakers.push(() => makeCharacter(
  20827. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20828. {
  20829. front: {
  20830. height: math.unit(8, "feet"),
  20831. weight: math.unit(500, "lb"),
  20832. name: "Front",
  20833. image: {
  20834. source: "./media/characters/rifter-yrmori/front.svg",
  20835. extra: 1180 / 1125,
  20836. bottom: 0.02
  20837. }
  20838. },
  20839. back: {
  20840. height: math.unit(8, "feet"),
  20841. weight: math.unit(500, "lb"),
  20842. name: "Back",
  20843. image: {
  20844. source: "./media/characters/rifter-yrmori/back.svg",
  20845. extra: 1190 / 1145,
  20846. bottom: 0.001
  20847. }
  20848. },
  20849. wings: {
  20850. height: math.unit(7.75, "feet"),
  20851. weight: math.unit(500, "lb"),
  20852. name: "Wings",
  20853. image: {
  20854. source: "./media/characters/rifter-yrmori/wings.svg",
  20855. extra: 1357 / 1285
  20856. }
  20857. },
  20858. maw: {
  20859. height: math.unit(0.8, "feet"),
  20860. name: "Maw",
  20861. image: {
  20862. source: "./media/characters/rifter-yrmori/maw.svg"
  20863. }
  20864. },
  20865. mawfront: {
  20866. height: math.unit(1.45, "feet"),
  20867. name: "Maw (Front)",
  20868. image: {
  20869. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20870. }
  20871. },
  20872. },
  20873. [
  20874. {
  20875. name: "Normal",
  20876. height: math.unit(8, "feet"),
  20877. default: true
  20878. },
  20879. {
  20880. name: "Macro",
  20881. height: math.unit(42, "meters")
  20882. },
  20883. ]
  20884. ))
  20885. characterMakers.push(() => makeCharacter(
  20886. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20887. {
  20888. were: {
  20889. height: math.unit(25 + 6 / 12, "feet"),
  20890. weight: math.unit(10000, "lb"),
  20891. name: "Were",
  20892. image: {
  20893. source: "./media/characters/tahajin/were.svg",
  20894. extra: 801 / 770,
  20895. bottom: 0.042
  20896. }
  20897. },
  20898. aquatic: {
  20899. height: math.unit(6 + 4 / 12, "feet"),
  20900. weight: math.unit(160, "lb"),
  20901. name: "Aquatic",
  20902. image: {
  20903. source: "./media/characters/tahajin/aquatic.svg",
  20904. extra: 572 / 542,
  20905. bottom: 0.04
  20906. }
  20907. },
  20908. chow: {
  20909. height: math.unit(8 + 11 / 12, "feet"),
  20910. weight: math.unit(450, "lb"),
  20911. name: "Chow",
  20912. image: {
  20913. source: "./media/characters/tahajin/chow.svg",
  20914. extra: 660 / 640,
  20915. bottom: 0.015
  20916. }
  20917. },
  20918. demiNaga: {
  20919. height: math.unit(6 + 8 / 12, "feet"),
  20920. weight: math.unit(300, "lb"),
  20921. name: "Demi Naga",
  20922. image: {
  20923. source: "./media/characters/tahajin/demi-naga.svg",
  20924. extra: 643 / 615,
  20925. bottom: 0.1
  20926. }
  20927. },
  20928. data: {
  20929. height: math.unit(5, "inches"),
  20930. weight: math.unit(0.1, "lb"),
  20931. name: "Data",
  20932. image: {
  20933. source: "./media/characters/tahajin/data.svg"
  20934. }
  20935. },
  20936. fluu: {
  20937. height: math.unit(5 + 7 / 12, "feet"),
  20938. weight: math.unit(140, "lb"),
  20939. name: "Fluu",
  20940. image: {
  20941. source: "./media/characters/tahajin/fluu.svg",
  20942. extra: 628 / 592,
  20943. bottom: 0.02
  20944. }
  20945. },
  20946. starWarrior: {
  20947. height: math.unit(4 + 5 / 12, "feet"),
  20948. weight: math.unit(50, "lb"),
  20949. name: "Star Warrior",
  20950. image: {
  20951. source: "./media/characters/tahajin/star-warrior.svg"
  20952. }
  20953. },
  20954. },
  20955. [
  20956. {
  20957. name: "Normal",
  20958. height: math.unit(25 + 6 / 12, "feet"),
  20959. default: true
  20960. },
  20961. ]
  20962. ))
  20963. characterMakers.push(() => makeCharacter(
  20964. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20965. {
  20966. front: {
  20967. height: math.unit(8, "feet"),
  20968. weight: math.unit(350, "lb"),
  20969. name: "Front",
  20970. image: {
  20971. source: "./media/characters/gabira/front.svg",
  20972. extra: 608 / 580,
  20973. bottom: 0.03
  20974. }
  20975. },
  20976. back: {
  20977. height: math.unit(8, "feet"),
  20978. weight: math.unit(350, "lb"),
  20979. name: "Back",
  20980. image: {
  20981. source: "./media/characters/gabira/back.svg",
  20982. extra: 608 / 580,
  20983. bottom: 0.03
  20984. }
  20985. },
  20986. },
  20987. [
  20988. {
  20989. name: "Normal",
  20990. height: math.unit(8, "feet"),
  20991. default: true
  20992. },
  20993. ]
  20994. ))
  20995. characterMakers.push(() => makeCharacter(
  20996. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20997. {
  20998. front: {
  20999. height: math.unit(5 + 3 / 12, "feet"),
  21000. weight: math.unit(137, "lb"),
  21001. name: "Front",
  21002. image: {
  21003. source: "./media/characters/sasha-katraine/front.svg",
  21004. bottom: 0.045
  21005. }
  21006. },
  21007. },
  21008. [
  21009. {
  21010. name: "Micro",
  21011. height: math.unit(5, "inches")
  21012. },
  21013. {
  21014. name: "Normal",
  21015. height: math.unit(5 + 3 / 12, "feet"),
  21016. default: true
  21017. },
  21018. ]
  21019. ))
  21020. characterMakers.push(() => makeCharacter(
  21021. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21022. {
  21023. side: {
  21024. height: math.unit(4, "inches"),
  21025. weight: math.unit(200, "grams"),
  21026. name: "Side",
  21027. image: {
  21028. source: "./media/characters/der/side.svg",
  21029. extra: 719 / 400,
  21030. bottom: 30.6 / 749.9187
  21031. }
  21032. },
  21033. },
  21034. [
  21035. {
  21036. name: "Micro",
  21037. height: math.unit(4, "inches"),
  21038. default: true
  21039. },
  21040. ]
  21041. ))
  21042. characterMakers.push(() => makeCharacter(
  21043. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21044. {
  21045. side: {
  21046. height: math.unit(30, "meters"),
  21047. weight: math.unit(700, "tonnes"),
  21048. name: "Side",
  21049. image: {
  21050. source: "./media/characters/fixerdragon/side.svg",
  21051. extra: (1293.0514 - 116.03) / 1106.86,
  21052. bottom: 116.03 / 1293.0514
  21053. }
  21054. },
  21055. },
  21056. [
  21057. {
  21058. name: "Planck",
  21059. height: math.unit(1.6e-35, "meters")
  21060. },
  21061. {
  21062. name: "Micro",
  21063. height: math.unit(0.4, "meters")
  21064. },
  21065. {
  21066. name: "Normal",
  21067. height: math.unit(30, "meters"),
  21068. default: true
  21069. },
  21070. {
  21071. name: "Megamacro",
  21072. height: math.unit(1.2, "megameters")
  21073. },
  21074. {
  21075. name: "Teramacro",
  21076. height: math.unit(130, "terameters")
  21077. },
  21078. {
  21079. name: "Yottamacro",
  21080. height: math.unit(6200, "yottameters")
  21081. },
  21082. ]
  21083. ));
  21084. characterMakers.push(() => makeCharacter(
  21085. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21086. {
  21087. front: {
  21088. height: math.unit(8, "feet"),
  21089. weight: math.unit(250, "lb"),
  21090. name: "Front",
  21091. image: {
  21092. source: "./media/characters/kite/front.svg",
  21093. extra: 2796 / 2659,
  21094. bottom: 0.002
  21095. }
  21096. },
  21097. },
  21098. [
  21099. {
  21100. name: "Normal",
  21101. height: math.unit(8, "feet"),
  21102. default: true
  21103. },
  21104. {
  21105. name: "Macro",
  21106. height: math.unit(360, "feet")
  21107. },
  21108. {
  21109. name: "Megamacro",
  21110. height: math.unit(1500, "feet")
  21111. },
  21112. ]
  21113. ))
  21114. characterMakers.push(() => makeCharacter(
  21115. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21116. {
  21117. front: {
  21118. height: math.unit(5 + 10 / 12, "feet"),
  21119. weight: math.unit(150, "lb"),
  21120. name: "Front",
  21121. image: {
  21122. source: "./media/characters/poojawa-vynar/front.svg",
  21123. extra: (1506.1547 - 55) / 1356.6,
  21124. bottom: 55 / 1506.1547
  21125. }
  21126. },
  21127. frontTailless: {
  21128. height: math.unit(5 + 10 / 12, "feet"),
  21129. weight: math.unit(150, "lb"),
  21130. name: "Front (Tailless)",
  21131. image: {
  21132. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21133. extra: (1506.1547 - 55) / 1356.6,
  21134. bottom: 55 / 1506.1547
  21135. }
  21136. },
  21137. },
  21138. [
  21139. {
  21140. name: "Normal",
  21141. height: math.unit(5 + 10 / 12, "feet"),
  21142. default: true
  21143. },
  21144. ]
  21145. ))
  21146. characterMakers.push(() => makeCharacter(
  21147. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21148. {
  21149. front: {
  21150. height: math.unit(293, "meters"),
  21151. weight: math.unit(70400, "tons"),
  21152. name: "Front",
  21153. image: {
  21154. source: "./media/characters/violette/front.svg",
  21155. extra: 1227 / 1180,
  21156. bottom: 0.005
  21157. }
  21158. },
  21159. back: {
  21160. height: math.unit(293, "meters"),
  21161. weight: math.unit(70400, "tons"),
  21162. name: "Back",
  21163. image: {
  21164. source: "./media/characters/violette/back.svg",
  21165. extra: 1227 / 1180,
  21166. bottom: 0.005
  21167. }
  21168. },
  21169. },
  21170. [
  21171. {
  21172. name: "Macro",
  21173. height: math.unit(293, "meters"),
  21174. default: true
  21175. },
  21176. ]
  21177. ))
  21178. characterMakers.push(() => makeCharacter(
  21179. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21180. {
  21181. front: {
  21182. height: math.unit(1050, "feet"),
  21183. weight: math.unit(200000, "tons"),
  21184. name: "Front",
  21185. image: {
  21186. source: "./media/characters/alessandra/front.svg",
  21187. extra: 960 / 912,
  21188. bottom: 0.06
  21189. }
  21190. },
  21191. },
  21192. [
  21193. {
  21194. name: "Macro",
  21195. height: math.unit(1050, "feet")
  21196. },
  21197. {
  21198. name: "Macro+",
  21199. height: math.unit(900, "meters"),
  21200. default: true
  21201. },
  21202. ]
  21203. ))
  21204. characterMakers.push(() => makeCharacter(
  21205. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21206. {
  21207. front: {
  21208. height: math.unit(5, "feet"),
  21209. weight: math.unit(187, "lb"),
  21210. name: "Front",
  21211. image: {
  21212. source: "./media/characters/person/front.svg",
  21213. extra: 3087 / 2945,
  21214. bottom: 91 / 3181
  21215. }
  21216. },
  21217. },
  21218. [
  21219. {
  21220. name: "Micro",
  21221. height: math.unit(3, "inches")
  21222. },
  21223. {
  21224. name: "Normal",
  21225. height: math.unit(5, "feet"),
  21226. default: true
  21227. },
  21228. {
  21229. name: "Macro",
  21230. height: math.unit(90, "feet")
  21231. },
  21232. {
  21233. name: "Max Size",
  21234. height: math.unit(280, "feet")
  21235. },
  21236. ]
  21237. ))
  21238. characterMakers.push(() => makeCharacter(
  21239. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21240. {
  21241. front: {
  21242. height: math.unit(4.5, "meters"),
  21243. weight: math.unit(3200, "lb"),
  21244. name: "Front",
  21245. image: {
  21246. source: "./media/characters/ty/front.svg",
  21247. extra: 1038 / 960,
  21248. bottom: 31.156 / 1068
  21249. }
  21250. },
  21251. back: {
  21252. height: math.unit(4.5, "meters"),
  21253. weight: math.unit(3200, "lb"),
  21254. name: "Back",
  21255. image: {
  21256. source: "./media/characters/ty/back.svg",
  21257. extra: 1044 / 966,
  21258. bottom: 7.48 / 1049
  21259. }
  21260. },
  21261. },
  21262. [
  21263. {
  21264. name: "Normal",
  21265. height: math.unit(4.5, "meters"),
  21266. default: true
  21267. },
  21268. ]
  21269. ))
  21270. characterMakers.push(() => makeCharacter(
  21271. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21272. {
  21273. front: {
  21274. height: math.unit(5 + 4 / 12, "feet"),
  21275. weight: math.unit(115, "lb"),
  21276. name: "Front",
  21277. image: {
  21278. source: "./media/characters/rocky/front.svg",
  21279. extra: 1012 / 975,
  21280. bottom: 54 / 1066
  21281. }
  21282. },
  21283. },
  21284. [
  21285. {
  21286. name: "Normal",
  21287. height: math.unit(5 + 4 / 12, "feet"),
  21288. default: true
  21289. },
  21290. ]
  21291. ))
  21292. characterMakers.push(() => makeCharacter(
  21293. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21294. {
  21295. upright: {
  21296. height: math.unit(6, "meters"),
  21297. weight: math.unit(4000, "kg"),
  21298. name: "Upright",
  21299. image: {
  21300. source: "./media/characters/ruin/upright.svg",
  21301. extra: 668 / 661,
  21302. bottom: 42 / 799.8396
  21303. }
  21304. },
  21305. },
  21306. [
  21307. {
  21308. name: "Normal",
  21309. height: math.unit(6, "meters"),
  21310. default: true
  21311. },
  21312. ]
  21313. ))
  21314. characterMakers.push(() => makeCharacter(
  21315. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21316. {
  21317. front: {
  21318. height: math.unit(5, "feet"),
  21319. weight: math.unit(106, "lb"),
  21320. name: "Front",
  21321. image: {
  21322. source: "./media/characters/robin/front.svg",
  21323. extra: 862 / 799,
  21324. bottom: 42.4 / 914.8856
  21325. }
  21326. },
  21327. },
  21328. [
  21329. {
  21330. name: "Normal",
  21331. height: math.unit(5, "feet"),
  21332. default: true
  21333. },
  21334. ]
  21335. ))
  21336. characterMakers.push(() => makeCharacter(
  21337. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21338. {
  21339. side: {
  21340. height: math.unit(3, "feet"),
  21341. weight: math.unit(225, "lb"),
  21342. name: "Side",
  21343. image: {
  21344. source: "./media/characters/saian/side.svg",
  21345. extra: 566 / 356,
  21346. bottom: 79.7 / 643
  21347. }
  21348. },
  21349. maw: {
  21350. height: math.unit(2.85, "feet"),
  21351. name: "Maw",
  21352. image: {
  21353. source: "./media/characters/saian/maw.svg"
  21354. }
  21355. },
  21356. },
  21357. [
  21358. {
  21359. name: "Normal",
  21360. height: math.unit(3, "feet"),
  21361. default: true
  21362. },
  21363. ]
  21364. ))
  21365. characterMakers.push(() => makeCharacter(
  21366. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21367. {
  21368. side: {
  21369. height: math.unit(8, "feet"),
  21370. weight: math.unit(300, "lb"),
  21371. name: "Side",
  21372. image: {
  21373. source: "./media/characters/equus-silvermane/side.svg",
  21374. extra: 2176 / 2050,
  21375. bottom: 65.7 / 2245
  21376. }
  21377. },
  21378. front: {
  21379. height: math.unit(8, "feet"),
  21380. weight: math.unit(300, "lb"),
  21381. name: "Front",
  21382. image: {
  21383. source: "./media/characters/equus-silvermane/front.svg",
  21384. extra: 4633 / 4400,
  21385. bottom: 71.3 / 4706.915
  21386. }
  21387. },
  21388. sideStepping: {
  21389. height: math.unit(8, "feet"),
  21390. weight: math.unit(300, "lb"),
  21391. name: "Side (Stepping)",
  21392. image: {
  21393. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21394. extra: 1968 / 1860,
  21395. bottom: 16.4 / 1989
  21396. }
  21397. },
  21398. },
  21399. [
  21400. {
  21401. name: "Normal",
  21402. height: math.unit(8, "feet")
  21403. },
  21404. {
  21405. name: "Minimacro",
  21406. height: math.unit(75, "feet"),
  21407. default: true
  21408. },
  21409. {
  21410. name: "Macro",
  21411. height: math.unit(150, "feet")
  21412. },
  21413. {
  21414. name: "Macro+",
  21415. height: math.unit(1000, "feet")
  21416. },
  21417. {
  21418. name: "Megamacro",
  21419. height: math.unit(1, "mile")
  21420. },
  21421. ]
  21422. ))
  21423. characterMakers.push(() => makeCharacter(
  21424. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21425. {
  21426. side: {
  21427. height: math.unit(20, "feet"),
  21428. weight: math.unit(30000, "kg"),
  21429. name: "Side",
  21430. image: {
  21431. source: "./media/characters/windar/side.svg",
  21432. extra: 1491 / 1248,
  21433. bottom: 82.56 / 1568
  21434. }
  21435. },
  21436. },
  21437. [
  21438. {
  21439. name: "Normal",
  21440. height: math.unit(20, "feet"),
  21441. default: true
  21442. },
  21443. ]
  21444. ))
  21445. characterMakers.push(() => makeCharacter(
  21446. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21447. {
  21448. side: {
  21449. height: math.unit(15.66, "feet"),
  21450. weight: math.unit(150, "lb"),
  21451. name: "Side",
  21452. image: {
  21453. source: "./media/characters/melody/side.svg",
  21454. extra: 1097 / 944,
  21455. bottom: 11.8 / 1109
  21456. }
  21457. },
  21458. sideOutfit: {
  21459. height: math.unit(15.66, "feet"),
  21460. weight: math.unit(150, "lb"),
  21461. name: "Side (Outfit)",
  21462. image: {
  21463. source: "./media/characters/melody/side-outfit.svg",
  21464. extra: 1097 / 944,
  21465. bottom: 11.8 / 1109
  21466. }
  21467. },
  21468. },
  21469. [
  21470. {
  21471. name: "Normal",
  21472. height: math.unit(15.66, "feet"),
  21473. default: true
  21474. },
  21475. ]
  21476. ))
  21477. characterMakers.push(() => makeCharacter(
  21478. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21479. {
  21480. front: {
  21481. height: math.unit(8, "feet"),
  21482. weight: math.unit(325, "lb"),
  21483. name: "Front",
  21484. image: {
  21485. source: "./media/characters/windera/front.svg",
  21486. extra: 3180 / 2845,
  21487. bottom: 178 / 3365
  21488. }
  21489. },
  21490. },
  21491. [
  21492. {
  21493. name: "Normal",
  21494. height: math.unit(8, "feet"),
  21495. default: true
  21496. },
  21497. ]
  21498. ))
  21499. characterMakers.push(() => makeCharacter(
  21500. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21501. {
  21502. front: {
  21503. height: math.unit(28.75, "feet"),
  21504. weight: math.unit(2000, "kg"),
  21505. name: "Front",
  21506. image: {
  21507. source: "./media/characters/sonear/front.svg",
  21508. extra: 1041.1 / 964.9,
  21509. bottom: 53.7 / 1096.6
  21510. }
  21511. },
  21512. },
  21513. [
  21514. {
  21515. name: "Normal",
  21516. height: math.unit(28.75, "feet"),
  21517. default: true
  21518. },
  21519. ]
  21520. ))
  21521. characterMakers.push(() => makeCharacter(
  21522. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21523. {
  21524. side: {
  21525. height: math.unit(25.5, "feet"),
  21526. weight: math.unit(23000, "kg"),
  21527. name: "Side",
  21528. image: {
  21529. source: "./media/characters/kanara/side.svg"
  21530. }
  21531. },
  21532. },
  21533. [
  21534. {
  21535. name: "Normal",
  21536. height: math.unit(25.5, "feet"),
  21537. default: true
  21538. },
  21539. ]
  21540. ))
  21541. characterMakers.push(() => makeCharacter(
  21542. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21543. {
  21544. side: {
  21545. height: math.unit(10, "feet"),
  21546. weight: math.unit(1000, "kg"),
  21547. name: "Side",
  21548. image: {
  21549. source: "./media/characters/ereus/side.svg",
  21550. extra: 1157 / 959,
  21551. bottom: 153 / 1312.5
  21552. }
  21553. },
  21554. },
  21555. [
  21556. {
  21557. name: "Normal",
  21558. height: math.unit(10, "feet"),
  21559. default: true
  21560. },
  21561. ]
  21562. ))
  21563. characterMakers.push(() => makeCharacter(
  21564. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21565. {
  21566. side: {
  21567. height: math.unit(4.5, "feet"),
  21568. weight: math.unit(500, "lb"),
  21569. name: "Side",
  21570. image: {
  21571. source: "./media/characters/e-ter/side.svg",
  21572. extra: 1550 / 1248,
  21573. bottom: 146 / 1694
  21574. }
  21575. },
  21576. },
  21577. [
  21578. {
  21579. name: "Normal",
  21580. height: math.unit(4.5, "feet"),
  21581. default: true
  21582. },
  21583. ]
  21584. ))
  21585. characterMakers.push(() => makeCharacter(
  21586. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21587. {
  21588. side: {
  21589. height: math.unit(9.7, "feet"),
  21590. weight: math.unit(4000, "kg"),
  21591. name: "Side",
  21592. image: {
  21593. source: "./media/characters/yamie/side.svg"
  21594. }
  21595. },
  21596. },
  21597. [
  21598. {
  21599. name: "Normal",
  21600. height: math.unit(9.7, "feet"),
  21601. default: true
  21602. },
  21603. ]
  21604. ))
  21605. characterMakers.push(() => makeCharacter(
  21606. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21607. {
  21608. front: {
  21609. height: math.unit(50, "feet"),
  21610. weight: math.unit(50000, "kg"),
  21611. name: "Front",
  21612. image: {
  21613. source: "./media/characters/anders/front.svg",
  21614. extra: 570 / 539,
  21615. bottom: 14.7 / 586.7
  21616. }
  21617. },
  21618. },
  21619. [
  21620. {
  21621. name: "Large",
  21622. height: math.unit(50, "feet")
  21623. },
  21624. {
  21625. name: "Macro",
  21626. height: math.unit(2000, "feet"),
  21627. default: true
  21628. },
  21629. {
  21630. name: "Megamacro",
  21631. height: math.unit(12, "miles")
  21632. },
  21633. ]
  21634. ))
  21635. characterMakers.push(() => makeCharacter(
  21636. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21637. {
  21638. front: {
  21639. height: math.unit(7 + 2 / 12, "feet"),
  21640. weight: math.unit(300, "lb"),
  21641. name: "Front",
  21642. image: {
  21643. source: "./media/characters/reban/front.svg",
  21644. extra: 516 / 487,
  21645. bottom: 42.82 / 558.356
  21646. }
  21647. },
  21648. dick: {
  21649. height: math.unit(7 / 5, "feet"),
  21650. name: "Dick",
  21651. image: {
  21652. source: "./media/characters/reban/dick.svg"
  21653. }
  21654. },
  21655. },
  21656. [
  21657. {
  21658. name: "Natural Height",
  21659. height: math.unit(7 + 2 / 12, "feet")
  21660. },
  21661. {
  21662. name: "Macro",
  21663. height: math.unit(500, "feet"),
  21664. default: true
  21665. },
  21666. {
  21667. name: "Canon Height",
  21668. height: math.unit(50, "AU")
  21669. },
  21670. ]
  21671. ))
  21672. characterMakers.push(() => makeCharacter(
  21673. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21674. {
  21675. front: {
  21676. height: math.unit(6, "feet"),
  21677. weight: math.unit(150, "lb"),
  21678. name: "Front",
  21679. image: {
  21680. source: "./media/characters/terrance-keayes/front.svg",
  21681. extra: 1.005,
  21682. bottom: 151 / 1615
  21683. }
  21684. },
  21685. side: {
  21686. height: math.unit(6, "feet"),
  21687. weight: math.unit(150, "lb"),
  21688. name: "Side",
  21689. image: {
  21690. source: "./media/characters/terrance-keayes/side.svg",
  21691. extra: 1.005,
  21692. bottom: 129.4 / 1544
  21693. }
  21694. },
  21695. back: {
  21696. height: math.unit(6, "feet"),
  21697. weight: math.unit(150, "lb"),
  21698. name: "Back",
  21699. image: {
  21700. source: "./media/characters/terrance-keayes/back.svg",
  21701. extra: 1.005,
  21702. bottom: 58.4 / 1557.3
  21703. }
  21704. },
  21705. dick: {
  21706. height: math.unit(6 * 0.208, "feet"),
  21707. name: "Dick",
  21708. image: {
  21709. source: "./media/characters/terrance-keayes/dick.svg"
  21710. }
  21711. },
  21712. },
  21713. [
  21714. {
  21715. name: "Canon Height",
  21716. height: math.unit(35, "miles"),
  21717. default: true
  21718. },
  21719. ]
  21720. ))
  21721. characterMakers.push(() => makeCharacter(
  21722. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21723. {
  21724. front: {
  21725. height: math.unit(6, "feet"),
  21726. weight: math.unit(150, "lb"),
  21727. name: "Front",
  21728. image: {
  21729. source: "./media/characters/ofelia/front.svg",
  21730. extra: 546 / 541,
  21731. bottom: 39 / 583
  21732. }
  21733. },
  21734. back: {
  21735. height: math.unit(6, "feet"),
  21736. weight: math.unit(150, "lb"),
  21737. name: "Back",
  21738. image: {
  21739. source: "./media/characters/ofelia/back.svg",
  21740. extra: 564 / 559.5,
  21741. bottom: 8.69 / 573.02
  21742. }
  21743. },
  21744. maw: {
  21745. height: math.unit(1, "feet"),
  21746. name: "Maw",
  21747. image: {
  21748. source: "./media/characters/ofelia/maw.svg"
  21749. }
  21750. },
  21751. foot: {
  21752. height: math.unit(1.949, "feet"),
  21753. name: "Foot",
  21754. image: {
  21755. source: "./media/characters/ofelia/foot.svg"
  21756. }
  21757. },
  21758. },
  21759. [
  21760. {
  21761. name: "Canon Height",
  21762. height: math.unit(2000, "miles"),
  21763. default: true
  21764. },
  21765. ]
  21766. ))
  21767. characterMakers.push(() => makeCharacter(
  21768. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21769. {
  21770. front: {
  21771. height: math.unit(6, "feet"),
  21772. weight: math.unit(150, "lb"),
  21773. name: "Front",
  21774. image: {
  21775. source: "./media/characters/samuel/front.svg",
  21776. extra: 265 / 258,
  21777. bottom: 2 / 266.1566
  21778. }
  21779. },
  21780. },
  21781. [
  21782. {
  21783. name: "Macro",
  21784. height: math.unit(100, "feet"),
  21785. default: true
  21786. },
  21787. {
  21788. name: "Full Size",
  21789. height: math.unit(1000, "miles")
  21790. },
  21791. ]
  21792. ))
  21793. characterMakers.push(() => makeCharacter(
  21794. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21795. {
  21796. front: {
  21797. height: math.unit(6, "feet"),
  21798. weight: math.unit(300, "lb"),
  21799. name: "Front",
  21800. image: {
  21801. source: "./media/characters/beishir-kiel/front.svg",
  21802. extra: 569 / 547,
  21803. bottom: 41.9 / 609
  21804. }
  21805. },
  21806. maw: {
  21807. height: math.unit(6 * 0.202, "feet"),
  21808. name: "Maw",
  21809. image: {
  21810. source: "./media/characters/beishir-kiel/maw.svg"
  21811. }
  21812. },
  21813. },
  21814. [
  21815. {
  21816. name: "Macro",
  21817. height: math.unit(300, "feet"),
  21818. default: true
  21819. },
  21820. ]
  21821. ))
  21822. characterMakers.push(() => makeCharacter(
  21823. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21824. {
  21825. front: {
  21826. height: math.unit(5 + 8 / 12, "feet"),
  21827. weight: math.unit(120, "lb"),
  21828. name: "Front",
  21829. image: {
  21830. source: "./media/characters/logan-grey/front.svg",
  21831. extra: 2539 / 2393,
  21832. bottom: 97.6 / 2636.37
  21833. }
  21834. },
  21835. frontAlt: {
  21836. height: math.unit(5 + 8 / 12, "feet"),
  21837. weight: math.unit(120, "lb"),
  21838. name: "Front (Alt)",
  21839. image: {
  21840. source: "./media/characters/logan-grey/front-alt.svg",
  21841. extra: 958 / 893,
  21842. bottom: 15 / 970.768
  21843. }
  21844. },
  21845. back: {
  21846. height: math.unit(5 + 8 / 12, "feet"),
  21847. weight: math.unit(120, "lb"),
  21848. name: "Back",
  21849. image: {
  21850. source: "./media/characters/logan-grey/back.svg",
  21851. extra: 958 / 893,
  21852. bottom: 2.1881 / 970.9788
  21853. }
  21854. },
  21855. dick: {
  21856. height: math.unit(1.437, "feet"),
  21857. name: "Dick",
  21858. image: {
  21859. source: "./media/characters/logan-grey/dick.svg"
  21860. }
  21861. },
  21862. },
  21863. [
  21864. {
  21865. name: "Normal",
  21866. height: math.unit(5 + 8 / 12, "feet")
  21867. },
  21868. {
  21869. name: "The 500 Foot Femboy",
  21870. height: math.unit(500, "feet"),
  21871. default: true
  21872. },
  21873. {
  21874. name: "Megmacro",
  21875. height: math.unit(20, "miles")
  21876. },
  21877. ]
  21878. ))
  21879. characterMakers.push(() => makeCharacter(
  21880. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21881. {
  21882. front: {
  21883. height: math.unit(8 + 2 / 12, "feet"),
  21884. weight: math.unit(275, "lb"),
  21885. name: "Front",
  21886. image: {
  21887. source: "./media/characters/draganta/front.svg",
  21888. extra: 1177 / 1135,
  21889. bottom: 33.46 / 1212.1
  21890. }
  21891. },
  21892. },
  21893. [
  21894. {
  21895. name: "Normal",
  21896. height: math.unit(8 + 6 / 12, "feet"),
  21897. default: true
  21898. },
  21899. {
  21900. name: "Macro",
  21901. height: math.unit(150, "feet")
  21902. },
  21903. {
  21904. name: "Megamacro",
  21905. height: math.unit(1000, "miles")
  21906. },
  21907. ]
  21908. ))
  21909. characterMakers.push(() => makeCharacter(
  21910. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21911. {
  21912. front: {
  21913. height: math.unit(1.72, "m"),
  21914. weight: math.unit(80, "lb"),
  21915. name: "Front",
  21916. image: {
  21917. source: "./media/characters/voski/front.svg",
  21918. extra: 2076.22 / 2022.4,
  21919. bottom: 102.7 / 2177.3866
  21920. }
  21921. },
  21922. frontNsfw: {
  21923. height: math.unit(1.72, "m"),
  21924. weight: math.unit(80, "lb"),
  21925. name: "Front (NSFW)",
  21926. image: {
  21927. source: "./media/characters/voski/front-nsfw.svg",
  21928. extra: 2076.22 / 2022.4,
  21929. bottom: 102.7 / 2177.3866
  21930. }
  21931. },
  21932. back: {
  21933. height: math.unit(1.72, "m"),
  21934. weight: math.unit(80, "lb"),
  21935. name: "Back",
  21936. image: {
  21937. source: "./media/characters/voski/back.svg",
  21938. extra: 2104 / 2051,
  21939. bottom: 10.45 / 2113.63
  21940. }
  21941. },
  21942. },
  21943. [
  21944. {
  21945. name: "Normal",
  21946. height: math.unit(1.72, "m")
  21947. },
  21948. {
  21949. name: "Macro",
  21950. height: math.unit(55, "m"),
  21951. default: true
  21952. },
  21953. {
  21954. name: "Macro+",
  21955. height: math.unit(300, "m")
  21956. },
  21957. {
  21958. name: "Macro++",
  21959. height: math.unit(700, "m")
  21960. },
  21961. {
  21962. name: "Macro+++",
  21963. height: math.unit(4500, "m")
  21964. },
  21965. {
  21966. name: "Macro++++",
  21967. height: math.unit(45, "km")
  21968. },
  21969. {
  21970. name: "Macro+++++",
  21971. height: math.unit(1220, "km")
  21972. },
  21973. ]
  21974. ))
  21975. characterMakers.push(() => makeCharacter(
  21976. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21977. {
  21978. front: {
  21979. height: math.unit(2.3, "m"),
  21980. weight: math.unit(304, "kg"),
  21981. name: "Front",
  21982. image: {
  21983. source: "./media/characters/icowom-lee/front.svg",
  21984. extra: 985 / 955,
  21985. bottom: 25.4 / 1012
  21986. }
  21987. },
  21988. fronttentacles: {
  21989. height: math.unit(2.3, "m"),
  21990. weight: math.unit(304, "kg"),
  21991. name: "Front-tentacles",
  21992. image: {
  21993. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21994. extra: 985 / 955,
  21995. bottom: 25.4 / 1012
  21996. }
  21997. },
  21998. back: {
  21999. height: math.unit(2.3, "m"),
  22000. weight: math.unit(304, "kg"),
  22001. name: "Back",
  22002. image: {
  22003. source: "./media/characters/icowom-lee/back.svg",
  22004. extra: 975 / 954,
  22005. bottom: 9.5 / 985
  22006. }
  22007. },
  22008. backtentacles: {
  22009. height: math.unit(2.3, "m"),
  22010. weight: math.unit(304, "kg"),
  22011. name: "Back-tentacles",
  22012. image: {
  22013. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22014. extra: 975 / 954,
  22015. bottom: 9.5 / 985
  22016. }
  22017. },
  22018. frontDressed: {
  22019. height: math.unit(2.3, "m"),
  22020. weight: math.unit(304, "kg"),
  22021. name: "Front (Dressed)",
  22022. image: {
  22023. source: "./media/characters/icowom-lee/front-dressed.svg",
  22024. extra: 3076 / 2933,
  22025. bottom: 51.4 / 3125.1889
  22026. }
  22027. },
  22028. rump: {
  22029. height: math.unit(0.776, "meters"),
  22030. name: "Rump",
  22031. image: {
  22032. source: "./media/characters/icowom-lee/rump.svg"
  22033. }
  22034. },
  22035. genitals: {
  22036. height: math.unit(0.78, "meters"),
  22037. name: "Genitals",
  22038. image: {
  22039. source: "./media/characters/icowom-lee/genitals.svg"
  22040. }
  22041. },
  22042. },
  22043. [
  22044. {
  22045. name: "Normal",
  22046. height: math.unit(2.3, "meters"),
  22047. default: true
  22048. },
  22049. {
  22050. name: "Macro",
  22051. height: math.unit(94, "meters"),
  22052. default: true
  22053. },
  22054. ]
  22055. ))
  22056. characterMakers.push(() => makeCharacter(
  22057. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22058. {
  22059. front: {
  22060. height: math.unit(22, "meters"),
  22061. weight: math.unit(21000, "kg"),
  22062. name: "Front",
  22063. image: {
  22064. source: "./media/characters/shock-diamond/front.svg",
  22065. extra: 2204 / 2053,
  22066. bottom: 65 / 2239.47
  22067. }
  22068. },
  22069. frontNude: {
  22070. height: math.unit(22, "meters"),
  22071. weight: math.unit(21000, "kg"),
  22072. name: "Front (Nude)",
  22073. image: {
  22074. source: "./media/characters/shock-diamond/front-nude.svg",
  22075. extra: 2514 / 2285,
  22076. bottom: 13 / 2527.56
  22077. }
  22078. },
  22079. },
  22080. [
  22081. {
  22082. name: "Normal",
  22083. height: math.unit(3, "meters")
  22084. },
  22085. {
  22086. name: "Macro",
  22087. height: math.unit(22, "meters"),
  22088. default: true
  22089. },
  22090. ]
  22091. ))
  22092. characterMakers.push(() => makeCharacter(
  22093. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22094. {
  22095. front: {
  22096. height: math.unit(5 + 4 / 12, "feet"),
  22097. weight: math.unit(120, "lb"),
  22098. name: "Front",
  22099. image: {
  22100. source: "./media/characters/rory/front.svg",
  22101. extra: 589 / 556,
  22102. bottom: 45.7 / 635.76
  22103. }
  22104. },
  22105. frontNude: {
  22106. height: math.unit(5 + 4 / 12, "feet"),
  22107. weight: math.unit(120, "lb"),
  22108. name: "Front (Nude)",
  22109. image: {
  22110. source: "./media/characters/rory/front-nude.svg",
  22111. extra: 589 / 556,
  22112. bottom: 45.7 / 635.76
  22113. }
  22114. },
  22115. side: {
  22116. height: math.unit(5 + 4 / 12, "feet"),
  22117. weight: math.unit(120, "lb"),
  22118. name: "Side",
  22119. image: {
  22120. source: "./media/characters/rory/side.svg",
  22121. extra: 597 / 564,
  22122. bottom: 55 / 653
  22123. }
  22124. },
  22125. back: {
  22126. height: math.unit(5 + 4 / 12, "feet"),
  22127. weight: math.unit(120, "lb"),
  22128. name: "Back",
  22129. image: {
  22130. source: "./media/characters/rory/back.svg",
  22131. extra: 620 / 585,
  22132. bottom: 8.86 / 630.43
  22133. }
  22134. },
  22135. dick: {
  22136. height: math.unit(0.86, "feet"),
  22137. name: "Dick",
  22138. image: {
  22139. source: "./media/characters/rory/dick.svg"
  22140. }
  22141. },
  22142. },
  22143. [
  22144. {
  22145. name: "Normal",
  22146. height: math.unit(5 + 4 / 12, "feet"),
  22147. default: true
  22148. },
  22149. {
  22150. name: "Macro",
  22151. height: math.unit(100, "feet")
  22152. },
  22153. {
  22154. name: "Macro+",
  22155. height: math.unit(140, "feet")
  22156. },
  22157. {
  22158. name: "Macro++",
  22159. height: math.unit(300, "feet")
  22160. },
  22161. ]
  22162. ))
  22163. characterMakers.push(() => makeCharacter(
  22164. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22165. {
  22166. front: {
  22167. height: math.unit(5 + 9 / 12, "feet"),
  22168. weight: math.unit(190, "lb"),
  22169. name: "Front",
  22170. image: {
  22171. source: "./media/characters/sprisk/front.svg",
  22172. extra: 1225 / 1180,
  22173. bottom: 42.7 / 1266.4
  22174. }
  22175. },
  22176. frontNsfw: {
  22177. height: math.unit(5 + 9 / 12, "feet"),
  22178. weight: math.unit(190, "lb"),
  22179. name: "Front (NSFW)",
  22180. image: {
  22181. source: "./media/characters/sprisk/front-nsfw.svg",
  22182. extra: 1225 / 1180,
  22183. bottom: 42.7 / 1266.4
  22184. }
  22185. },
  22186. back: {
  22187. height: math.unit(5 + 9 / 12, "feet"),
  22188. weight: math.unit(190, "lb"),
  22189. name: "Back",
  22190. image: {
  22191. source: "./media/characters/sprisk/back.svg",
  22192. extra: 1247 / 1200,
  22193. bottom: 5.6 / 1253.04
  22194. }
  22195. },
  22196. },
  22197. [
  22198. {
  22199. name: "Tiny",
  22200. height: math.unit(2, "inches")
  22201. },
  22202. {
  22203. name: "Normal",
  22204. height: math.unit(5 + 9 / 12, "feet"),
  22205. default: true
  22206. },
  22207. {
  22208. name: "Mini Macro",
  22209. height: math.unit(18, "feet")
  22210. },
  22211. {
  22212. name: "Macro",
  22213. height: math.unit(100, "feet")
  22214. },
  22215. {
  22216. name: "MACRO",
  22217. height: math.unit(50, "miles")
  22218. },
  22219. {
  22220. name: "M A C R O",
  22221. height: math.unit(300, "miles")
  22222. },
  22223. ]
  22224. ))
  22225. characterMakers.push(() => makeCharacter(
  22226. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22227. {
  22228. side: {
  22229. height: math.unit(15.6, "meters"),
  22230. weight: math.unit(700000, "kg"),
  22231. name: "Side",
  22232. image: {
  22233. source: "./media/characters/bunsen/side.svg",
  22234. extra: 1644 / 358
  22235. }
  22236. },
  22237. foot: {
  22238. height: math.unit(1.611 * 1644 / 358, "meter"),
  22239. name: "Foot",
  22240. image: {
  22241. source: "./media/characters/bunsen/foot.svg"
  22242. }
  22243. },
  22244. },
  22245. [
  22246. {
  22247. name: "Small",
  22248. height: math.unit(10, "feet")
  22249. },
  22250. {
  22251. name: "Normal",
  22252. height: math.unit(15.6, "meters"),
  22253. default: true
  22254. },
  22255. ]
  22256. ))
  22257. characterMakers.push(() => makeCharacter(
  22258. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22259. {
  22260. front: {
  22261. height: math.unit(4 + 11 / 12, "feet"),
  22262. weight: math.unit(140, "lb"),
  22263. name: "Front",
  22264. image: {
  22265. source: "./media/characters/sesh/front.svg",
  22266. extra: 3420 / 3231,
  22267. bottom: 72 / 3949.5
  22268. }
  22269. },
  22270. },
  22271. [
  22272. {
  22273. name: "Normal",
  22274. height: math.unit(4 + 11 / 12, "feet")
  22275. },
  22276. {
  22277. name: "Grown",
  22278. height: math.unit(15, "feet"),
  22279. default: true
  22280. },
  22281. {
  22282. name: "Macro",
  22283. height: math.unit(1500, "feet")
  22284. },
  22285. {
  22286. name: "Megamacro",
  22287. height: math.unit(30, "miles")
  22288. },
  22289. {
  22290. name: "Continental",
  22291. height: math.unit(3000, "miles")
  22292. },
  22293. {
  22294. name: "Gravity Mass",
  22295. height: math.unit(300000, "miles")
  22296. },
  22297. {
  22298. name: "Planet Buster",
  22299. height: math.unit(30000000, "miles")
  22300. },
  22301. {
  22302. name: "Big",
  22303. height: math.unit(3000000000, "miles")
  22304. },
  22305. ]
  22306. ))
  22307. characterMakers.push(() => makeCharacter(
  22308. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22309. {
  22310. front: {
  22311. height: math.unit(9, "feet"),
  22312. weight: math.unit(350, "lb"),
  22313. name: "Front",
  22314. image: {
  22315. source: "./media/characters/pepper/front.svg",
  22316. extra: 1448 / 1312,
  22317. bottom: 9.4 / 1457.88
  22318. }
  22319. },
  22320. back: {
  22321. height: math.unit(9, "feet"),
  22322. weight: math.unit(350, "lb"),
  22323. name: "Back",
  22324. image: {
  22325. source: "./media/characters/pepper/back.svg",
  22326. extra: 1423 / 1300,
  22327. bottom: 4.6 / 1429
  22328. }
  22329. },
  22330. maw: {
  22331. height: math.unit(0.932, "feet"),
  22332. name: "Maw",
  22333. image: {
  22334. source: "./media/characters/pepper/maw.svg"
  22335. }
  22336. },
  22337. },
  22338. [
  22339. {
  22340. name: "Normal",
  22341. height: math.unit(9, "feet"),
  22342. default: true
  22343. },
  22344. ]
  22345. ))
  22346. characterMakers.push(() => makeCharacter(
  22347. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22348. {
  22349. front: {
  22350. height: math.unit(6, "feet"),
  22351. weight: math.unit(150, "lb"),
  22352. name: "Front",
  22353. image: {
  22354. source: "./media/characters/maelstrom/front.svg",
  22355. extra: 2100 / 1883,
  22356. bottom: 94 / 2196.7
  22357. }
  22358. },
  22359. },
  22360. [
  22361. {
  22362. name: "Less Kaiju",
  22363. height: math.unit(200, "feet")
  22364. },
  22365. {
  22366. name: "Kaiju",
  22367. height: math.unit(400, "feet"),
  22368. default: true
  22369. },
  22370. {
  22371. name: "Kaiju-er",
  22372. height: math.unit(600, "feet")
  22373. },
  22374. ]
  22375. ))
  22376. characterMakers.push(() => makeCharacter(
  22377. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22378. {
  22379. front: {
  22380. height: math.unit(6 + 5 / 12, "feet"),
  22381. weight: math.unit(180, "lb"),
  22382. name: "Front",
  22383. image: {
  22384. source: "./media/characters/lexir/front.svg",
  22385. extra: 180 / 172,
  22386. bottom: 12 / 192
  22387. }
  22388. },
  22389. back: {
  22390. height: math.unit(6 + 5 / 12, "feet"),
  22391. weight: math.unit(180, "lb"),
  22392. name: "Back",
  22393. image: {
  22394. source: "./media/characters/lexir/back.svg",
  22395. extra: 183.84 / 175.5,
  22396. bottom: 3.1 / 187
  22397. }
  22398. },
  22399. },
  22400. [
  22401. {
  22402. name: "Very Smal",
  22403. height: math.unit(1, "nm")
  22404. },
  22405. {
  22406. name: "Normal",
  22407. height: math.unit(6 + 5 / 12, "feet"),
  22408. default: true
  22409. },
  22410. {
  22411. name: "Macro",
  22412. height: math.unit(1, "mile")
  22413. },
  22414. {
  22415. name: "Megamacro",
  22416. height: math.unit(50, "miles")
  22417. },
  22418. ]
  22419. ))
  22420. characterMakers.push(() => makeCharacter(
  22421. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22422. {
  22423. front: {
  22424. height: math.unit(1.5, "meters"),
  22425. weight: math.unit(100, "lb"),
  22426. name: "Front",
  22427. image: {
  22428. source: "./media/characters/maksio/front.svg",
  22429. extra: 1549 / 1531,
  22430. bottom: 123.7 / 1674.5429
  22431. }
  22432. },
  22433. back: {
  22434. height: math.unit(1.5, "meters"),
  22435. weight: math.unit(100, "lb"),
  22436. name: "Back",
  22437. image: {
  22438. source: "./media/characters/maksio/back.svg",
  22439. extra: 1541 / 1509,
  22440. bottom: 97 / 1639
  22441. }
  22442. },
  22443. hand: {
  22444. height: math.unit(0.621, "feet"),
  22445. name: "Hand",
  22446. image: {
  22447. source: "./media/characters/maksio/hand.svg"
  22448. }
  22449. },
  22450. foot: {
  22451. height: math.unit(1.611, "feet"),
  22452. name: "Foot",
  22453. image: {
  22454. source: "./media/characters/maksio/foot.svg"
  22455. }
  22456. },
  22457. },
  22458. [
  22459. {
  22460. name: "Shrunken",
  22461. height: math.unit(10, "cm")
  22462. },
  22463. {
  22464. name: "Normal",
  22465. height: math.unit(150, "cm"),
  22466. default: true
  22467. },
  22468. ]
  22469. ))
  22470. characterMakers.push(() => makeCharacter(
  22471. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22472. {
  22473. front: {
  22474. height: math.unit(100, "feet"),
  22475. name: "Front",
  22476. image: {
  22477. source: "./media/characters/erza-bear/front.svg",
  22478. extra: 2449 / 2390,
  22479. bottom: 46 / 2494
  22480. }
  22481. },
  22482. back: {
  22483. height: math.unit(100, "feet"),
  22484. name: "Back",
  22485. image: {
  22486. source: "./media/characters/erza-bear/back.svg",
  22487. extra: 2489 / 2430,
  22488. bottom: 85.4 / 2480
  22489. }
  22490. },
  22491. tail: {
  22492. height: math.unit(42, "feet"),
  22493. name: "Tail",
  22494. image: {
  22495. source: "./media/characters/erza-bear/tail.svg"
  22496. }
  22497. },
  22498. tongue: {
  22499. height: math.unit(8, "feet"),
  22500. name: "Tongue",
  22501. image: {
  22502. source: "./media/characters/erza-bear/tongue.svg"
  22503. }
  22504. },
  22505. dick: {
  22506. height: math.unit(10.5, "feet"),
  22507. name: "Dick",
  22508. image: {
  22509. source: "./media/characters/erza-bear/dick.svg"
  22510. }
  22511. },
  22512. dickVertical: {
  22513. height: math.unit(16.9, "feet"),
  22514. name: "Dick (Vertical)",
  22515. image: {
  22516. source: "./media/characters/erza-bear/dick-vertical.svg"
  22517. }
  22518. },
  22519. },
  22520. [
  22521. {
  22522. name: "Macro",
  22523. height: math.unit(100, "feet"),
  22524. default: true
  22525. },
  22526. ]
  22527. ))
  22528. characterMakers.push(() => makeCharacter(
  22529. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22530. {
  22531. front: {
  22532. height: math.unit(172, "cm"),
  22533. weight: math.unit(73, "kg"),
  22534. name: "Front",
  22535. image: {
  22536. source: "./media/characters/violet-flor/front.svg",
  22537. extra: 1530 / 1442,
  22538. bottom: 61.9 / 1588.8
  22539. }
  22540. },
  22541. back: {
  22542. height: math.unit(180, "cm"),
  22543. weight: math.unit(73, "kg"),
  22544. name: "Back",
  22545. image: {
  22546. source: "./media/characters/violet-flor/back.svg",
  22547. extra: 1692 / 1630,
  22548. bottom: 20 / 1712
  22549. }
  22550. },
  22551. },
  22552. [
  22553. {
  22554. name: "Normal",
  22555. height: math.unit(172, "cm"),
  22556. default: true
  22557. },
  22558. ]
  22559. ))
  22560. characterMakers.push(() => makeCharacter(
  22561. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22562. {
  22563. front: {
  22564. height: math.unit(6, "feet"),
  22565. weight: math.unit(220, "lb"),
  22566. name: "Front",
  22567. image: {
  22568. source: "./media/characters/lynn-rhea/front.svg",
  22569. extra: 310 / 273
  22570. }
  22571. },
  22572. back: {
  22573. height: math.unit(6, "feet"),
  22574. weight: math.unit(220, "lb"),
  22575. name: "Back",
  22576. image: {
  22577. source: "./media/characters/lynn-rhea/back.svg",
  22578. extra: 310 / 273
  22579. }
  22580. },
  22581. dicks: {
  22582. height: math.unit(0.9, "feet"),
  22583. name: "Dicks",
  22584. image: {
  22585. source: "./media/characters/lynn-rhea/dicks.svg"
  22586. }
  22587. },
  22588. slit: {
  22589. height: math.unit(0.4, "feet"),
  22590. name: "Slit",
  22591. image: {
  22592. source: "./media/characters/lynn-rhea/slit.svg"
  22593. }
  22594. },
  22595. },
  22596. [
  22597. {
  22598. name: "Micro",
  22599. height: math.unit(1, "inch")
  22600. },
  22601. {
  22602. name: "Macro",
  22603. height: math.unit(60, "feet"),
  22604. default: true
  22605. },
  22606. {
  22607. name: "Megamacro",
  22608. height: math.unit(2, "miles")
  22609. },
  22610. {
  22611. name: "Gigamacro",
  22612. height: math.unit(3, "earths")
  22613. },
  22614. {
  22615. name: "Galactic",
  22616. height: math.unit(0.8, "galaxies")
  22617. },
  22618. ]
  22619. ))
  22620. characterMakers.push(() => makeCharacter(
  22621. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22622. {
  22623. front: {
  22624. height: math.unit(1600, "feet"),
  22625. weight: math.unit(85758785169, "kg"),
  22626. name: "Front",
  22627. image: {
  22628. source: "./media/characters/valathos/front.svg",
  22629. extra: 1451 / 1339
  22630. }
  22631. },
  22632. },
  22633. [
  22634. {
  22635. name: "Macro",
  22636. height: math.unit(1600, "feet"),
  22637. default: true
  22638. },
  22639. ]
  22640. ))
  22641. characterMakers.push(() => makeCharacter(
  22642. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22643. {
  22644. front: {
  22645. height: math.unit(7 + 5 / 12, "feet"),
  22646. weight: math.unit(300, "lb"),
  22647. name: "Front",
  22648. image: {
  22649. source: "./media/characters/azula/front.svg",
  22650. extra: 3208 / 2880,
  22651. bottom: 80.2 / 3277
  22652. }
  22653. },
  22654. back: {
  22655. height: math.unit(7 + 5 / 12, "feet"),
  22656. weight: math.unit(300, "lb"),
  22657. name: "Back",
  22658. image: {
  22659. source: "./media/characters/azula/back.svg",
  22660. extra: 3169 / 2822,
  22661. bottom: 150.6 / 3321
  22662. }
  22663. },
  22664. },
  22665. [
  22666. {
  22667. name: "Normal",
  22668. height: math.unit(7 + 5 / 12, "feet"),
  22669. default: true
  22670. },
  22671. {
  22672. name: "Big",
  22673. height: math.unit(20, "feet")
  22674. },
  22675. ]
  22676. ))
  22677. characterMakers.push(() => makeCharacter(
  22678. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22679. {
  22680. front: {
  22681. height: math.unit(5 + 1 / 12, "feet"),
  22682. weight: math.unit(110, "lb"),
  22683. name: "Front",
  22684. image: {
  22685. source: "./media/characters/rupert/front.svg",
  22686. extra: 1549 / 1495,
  22687. bottom: 54.2 / 1604.4
  22688. }
  22689. },
  22690. },
  22691. [
  22692. {
  22693. name: "Normal",
  22694. height: math.unit(5 + 1 / 12, "feet"),
  22695. default: true
  22696. },
  22697. ]
  22698. ))
  22699. characterMakers.push(() => makeCharacter(
  22700. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  22701. {
  22702. front: {
  22703. height: math.unit(8 + 4 / 12, "feet"),
  22704. weight: math.unit(350, "lb"),
  22705. name: "Front",
  22706. image: {
  22707. source: "./media/characters/sheera-castellar/front.svg",
  22708. extra: 1957 / 1894,
  22709. bottom: 26.97 / 1975.017
  22710. }
  22711. },
  22712. side: {
  22713. height: math.unit(8 + 4 / 12, "feet"),
  22714. weight: math.unit(350, "lb"),
  22715. name: "Side",
  22716. image: {
  22717. source: "./media/characters/sheera-castellar/side.svg",
  22718. extra: 1957 / 1894
  22719. }
  22720. },
  22721. back: {
  22722. height: math.unit(8 + 4 / 12, "feet"),
  22723. weight: math.unit(350, "lb"),
  22724. name: "Back",
  22725. image: {
  22726. source: "./media/characters/sheera-castellar/back.svg",
  22727. extra: 1957 / 1894
  22728. }
  22729. },
  22730. angled: {
  22731. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22732. weight: math.unit(350, "lb"),
  22733. name: "Angled",
  22734. image: {
  22735. source: "./media/characters/sheera-castellar/angled.svg",
  22736. extra: 1807 / 1707,
  22737. bottom: 68 / 1875
  22738. }
  22739. },
  22740. genitals: {
  22741. height: math.unit(2.2, "feet"),
  22742. name: "Genitals",
  22743. image: {
  22744. source: "./media/characters/sheera-castellar/genitals.svg"
  22745. }
  22746. },
  22747. taur: {
  22748. height: math.unit(10 + 6/12, "feet"),
  22749. name: "Taur",
  22750. image: {
  22751. source: "./media/characters/sheera-castellar/taur.svg",
  22752. extra: 2017/1909,
  22753. bottom: 185/2202
  22754. }
  22755. },
  22756. },
  22757. [
  22758. {
  22759. name: "Normal",
  22760. height: math.unit(8 + 4 / 12, "feet")
  22761. },
  22762. {
  22763. name: "Macro",
  22764. height: math.unit(150, "feet"),
  22765. default: true
  22766. },
  22767. {
  22768. name: "Macro+",
  22769. height: math.unit(800, "feet")
  22770. },
  22771. ]
  22772. ))
  22773. characterMakers.push(() => makeCharacter(
  22774. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22775. {
  22776. front: {
  22777. height: math.unit(6, "feet"),
  22778. weight: math.unit(150, "lb"),
  22779. name: "Front",
  22780. image: {
  22781. source: "./media/characters/jaipur/front.svg",
  22782. extra: 3860 / 3731,
  22783. bottom: 287 / 4140
  22784. }
  22785. },
  22786. back: {
  22787. height: math.unit(6, "feet"),
  22788. weight: math.unit(150, "lb"),
  22789. name: "Back",
  22790. image: {
  22791. source: "./media/characters/jaipur/back.svg",
  22792. extra: 4060 / 3930,
  22793. bottom: 151 / 4200
  22794. }
  22795. },
  22796. },
  22797. [
  22798. {
  22799. name: "Normal",
  22800. height: math.unit(1.85, "meters"),
  22801. default: true
  22802. },
  22803. {
  22804. name: "Macro",
  22805. height: math.unit(150, "meters")
  22806. },
  22807. {
  22808. name: "Macro+",
  22809. height: math.unit(0.5, "miles")
  22810. },
  22811. {
  22812. name: "Macro++",
  22813. height: math.unit(2.5, "miles")
  22814. },
  22815. {
  22816. name: "Macro+++",
  22817. height: math.unit(12, "miles")
  22818. },
  22819. {
  22820. name: "Macro++++",
  22821. height: math.unit(120, "miles")
  22822. },
  22823. {
  22824. name: "Macro+++++",
  22825. height: math.unit(1200, "miles")
  22826. },
  22827. ]
  22828. ))
  22829. characterMakers.push(() => makeCharacter(
  22830. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22831. {
  22832. front: {
  22833. height: math.unit(6, "feet"),
  22834. weight: math.unit(150, "lb"),
  22835. name: "Front",
  22836. image: {
  22837. source: "./media/characters/sheila-wolf/front.svg",
  22838. extra: 1931 / 1808,
  22839. bottom: 29.5 / 1960
  22840. }
  22841. },
  22842. dick: {
  22843. height: math.unit(1.464, "feet"),
  22844. name: "Dick",
  22845. image: {
  22846. source: "./media/characters/sheila-wolf/dick.svg"
  22847. }
  22848. },
  22849. muzzle: {
  22850. height: math.unit(0.513, "feet"),
  22851. name: "Muzzle",
  22852. image: {
  22853. source: "./media/characters/sheila-wolf/muzzle.svg"
  22854. }
  22855. },
  22856. },
  22857. [
  22858. {
  22859. name: "Macro",
  22860. height: math.unit(70, "feet"),
  22861. default: true
  22862. },
  22863. ]
  22864. ))
  22865. characterMakers.push(() => makeCharacter(
  22866. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22867. {
  22868. front: {
  22869. height: math.unit(32, "meters"),
  22870. weight: math.unit(300000, "kg"),
  22871. name: "Front",
  22872. image: {
  22873. source: "./media/characters/almor/front.svg",
  22874. extra: 1408 / 1322,
  22875. bottom: 94.6 / 1506.5
  22876. }
  22877. },
  22878. },
  22879. [
  22880. {
  22881. name: "Macro",
  22882. height: math.unit(32, "meters"),
  22883. default: true
  22884. },
  22885. ]
  22886. ))
  22887. characterMakers.push(() => makeCharacter(
  22888. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22889. {
  22890. front: {
  22891. height: math.unit(7, "feet"),
  22892. weight: math.unit(200, "lb"),
  22893. name: "Front",
  22894. image: {
  22895. source: "./media/characters/silver/front.svg",
  22896. extra: 472.1 / 450.5,
  22897. bottom: 26.5 / 499.424
  22898. }
  22899. },
  22900. },
  22901. [
  22902. {
  22903. name: "Normal",
  22904. height: math.unit(7, "feet"),
  22905. default: true
  22906. },
  22907. {
  22908. name: "Macro",
  22909. height: math.unit(800, "feet")
  22910. },
  22911. {
  22912. name: "Megamacro",
  22913. height: math.unit(250, "miles")
  22914. },
  22915. ]
  22916. ))
  22917. characterMakers.push(() => makeCharacter(
  22918. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22919. {
  22920. front: {
  22921. height: math.unit(6, "feet"),
  22922. weight: math.unit(150, "lb"),
  22923. name: "Front",
  22924. image: {
  22925. source: "./media/characters/pliskin/front.svg",
  22926. extra: 1469 / 1359,
  22927. bottom: 70 / 1540
  22928. }
  22929. },
  22930. },
  22931. [
  22932. {
  22933. name: "Micro",
  22934. height: math.unit(3, "inches")
  22935. },
  22936. {
  22937. name: "Normal",
  22938. height: math.unit(5 + 11 / 12, "feet"),
  22939. default: true
  22940. },
  22941. {
  22942. name: "Macro",
  22943. height: math.unit(120, "feet")
  22944. },
  22945. ]
  22946. ))
  22947. characterMakers.push(() => makeCharacter(
  22948. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22949. {
  22950. front: {
  22951. height: math.unit(6, "feet"),
  22952. weight: math.unit(150, "lb"),
  22953. name: "Front",
  22954. image: {
  22955. source: "./media/characters/sammy/front.svg",
  22956. extra: 1193 / 1089,
  22957. bottom: 30.5 / 1226
  22958. }
  22959. },
  22960. },
  22961. [
  22962. {
  22963. name: "Macro",
  22964. height: math.unit(1700, "feet"),
  22965. default: true
  22966. },
  22967. {
  22968. name: "Examacro",
  22969. height: math.unit(2.5e9, "lightyears")
  22970. },
  22971. ]
  22972. ))
  22973. characterMakers.push(() => makeCharacter(
  22974. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22975. {
  22976. front: {
  22977. height: math.unit(21, "meters"),
  22978. weight: math.unit(12, "tonnes"),
  22979. name: "Front",
  22980. image: {
  22981. source: "./media/characters/kuru/front.svg",
  22982. extra: 4301 / 3785,
  22983. bottom: 371.3 / 4691
  22984. }
  22985. },
  22986. },
  22987. [
  22988. {
  22989. name: "Macro",
  22990. height: math.unit(21, "meters"),
  22991. default: true
  22992. },
  22993. ]
  22994. ))
  22995. characterMakers.push(() => makeCharacter(
  22996. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22997. {
  22998. front: {
  22999. height: math.unit(23, "meters"),
  23000. weight: math.unit(12.2, "tonnes"),
  23001. name: "Front",
  23002. image: {
  23003. source: "./media/characters/rakka/front.svg",
  23004. extra: 4670 / 4169,
  23005. bottom: 301 / 4968.7
  23006. }
  23007. },
  23008. },
  23009. [
  23010. {
  23011. name: "Macro",
  23012. height: math.unit(23, "meters"),
  23013. default: true
  23014. },
  23015. ]
  23016. ))
  23017. characterMakers.push(() => makeCharacter(
  23018. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23019. {
  23020. front: {
  23021. height: math.unit(6, "feet"),
  23022. weight: math.unit(150, "lb"),
  23023. name: "Front",
  23024. image: {
  23025. source: "./media/characters/rhys-feline/front.svg",
  23026. extra: 2488 / 2308,
  23027. bottom: 35.67 / 2519.19
  23028. }
  23029. },
  23030. },
  23031. [
  23032. {
  23033. name: "Really Small",
  23034. height: math.unit(1, "nm")
  23035. },
  23036. {
  23037. name: "Micro",
  23038. height: math.unit(4, "inches")
  23039. },
  23040. {
  23041. name: "Normal",
  23042. height: math.unit(4 + 10 / 12, "feet"),
  23043. default: true
  23044. },
  23045. {
  23046. name: "Macro",
  23047. height: math.unit(100, "feet")
  23048. },
  23049. {
  23050. name: "Megamacto",
  23051. height: math.unit(50, "miles")
  23052. },
  23053. ]
  23054. ))
  23055. characterMakers.push(() => makeCharacter(
  23056. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23057. {
  23058. side: {
  23059. height: math.unit(30, "feet"),
  23060. weight: math.unit(35000, "kg"),
  23061. name: "Side",
  23062. image: {
  23063. source: "./media/characters/alydar/side.svg",
  23064. extra: 234 / 222,
  23065. bottom: 6.5 / 241
  23066. }
  23067. },
  23068. front: {
  23069. height: math.unit(30, "feet"),
  23070. weight: math.unit(35000, "kg"),
  23071. name: "Front",
  23072. image: {
  23073. source: "./media/characters/alydar/front.svg",
  23074. extra: 223.37 / 210.2,
  23075. bottom: 22.3 / 246.76
  23076. }
  23077. },
  23078. top: {
  23079. height: math.unit(64.54, "feet"),
  23080. weight: math.unit(35000, "kg"),
  23081. name: "Top",
  23082. image: {
  23083. source: "./media/characters/alydar/top.svg"
  23084. }
  23085. },
  23086. anthro: {
  23087. height: math.unit(30, "feet"),
  23088. weight: math.unit(9000, "kg"),
  23089. name: "Anthro",
  23090. image: {
  23091. source: "./media/characters/alydar/anthro.svg",
  23092. extra: 432 / 421,
  23093. bottom: 7.18 / 440
  23094. }
  23095. },
  23096. maw: {
  23097. height: math.unit(11.693, "feet"),
  23098. name: "Maw",
  23099. image: {
  23100. source: "./media/characters/alydar/maw.svg"
  23101. }
  23102. },
  23103. head: {
  23104. height: math.unit(11.693, "feet"),
  23105. name: "Head",
  23106. image: {
  23107. source: "./media/characters/alydar/head.svg"
  23108. }
  23109. },
  23110. headAlt: {
  23111. height: math.unit(12.861, "feet"),
  23112. name: "Head (Alt)",
  23113. image: {
  23114. source: "./media/characters/alydar/head-alt.svg"
  23115. }
  23116. },
  23117. wing: {
  23118. height: math.unit(20.712, "feet"),
  23119. name: "Wing",
  23120. image: {
  23121. source: "./media/characters/alydar/wing.svg"
  23122. }
  23123. },
  23124. wingFeather: {
  23125. height: math.unit(9.662, "feet"),
  23126. name: "Wing Feather",
  23127. image: {
  23128. source: "./media/characters/alydar/wing-feather.svg"
  23129. }
  23130. },
  23131. countourFeather: {
  23132. height: math.unit(4.154, "feet"),
  23133. name: "Contour Feather",
  23134. image: {
  23135. source: "./media/characters/alydar/contour-feather.svg"
  23136. }
  23137. },
  23138. },
  23139. [
  23140. {
  23141. name: "Diplomatic",
  23142. height: math.unit(13, "feet"),
  23143. default: true
  23144. },
  23145. {
  23146. name: "Small",
  23147. height: math.unit(30, "feet")
  23148. },
  23149. {
  23150. name: "Normal",
  23151. height: math.unit(95, "feet"),
  23152. default: true
  23153. },
  23154. {
  23155. name: "Large",
  23156. height: math.unit(285, "feet")
  23157. },
  23158. {
  23159. name: "Incomprehensible",
  23160. height: math.unit(450, "megameters")
  23161. },
  23162. ]
  23163. ))
  23164. characterMakers.push(() => makeCharacter(
  23165. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23166. {
  23167. side: {
  23168. height: math.unit(11, "feet"),
  23169. weight: math.unit(1750, "kg"),
  23170. name: "Side",
  23171. image: {
  23172. source: "./media/characters/selicia/side.svg",
  23173. extra: 440 / 396,
  23174. bottom: 24.8 / 465.979
  23175. }
  23176. },
  23177. maw: {
  23178. height: math.unit(4.665, "feet"),
  23179. name: "Maw",
  23180. image: {
  23181. source: "./media/characters/selicia/maw.svg"
  23182. }
  23183. },
  23184. },
  23185. [
  23186. {
  23187. name: "Normal",
  23188. height: math.unit(11, "feet"),
  23189. default: true
  23190. },
  23191. ]
  23192. ))
  23193. characterMakers.push(() => makeCharacter(
  23194. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23195. {
  23196. side: {
  23197. height: math.unit(2 + 6 / 12, "feet"),
  23198. weight: math.unit(30, "lb"),
  23199. name: "Side",
  23200. image: {
  23201. source: "./media/characters/layla/side.svg",
  23202. extra: 244 / 188,
  23203. bottom: 18.2 / 262.1
  23204. }
  23205. },
  23206. back: {
  23207. height: math.unit(2 + 6 / 12, "feet"),
  23208. weight: math.unit(30, "lb"),
  23209. name: "Back",
  23210. image: {
  23211. source: "./media/characters/layla/back.svg",
  23212. extra: 308 / 241.5,
  23213. bottom: 8.9 / 316.8
  23214. }
  23215. },
  23216. cumming: {
  23217. height: math.unit(2 + 6 / 12, "feet"),
  23218. weight: math.unit(30, "lb"),
  23219. name: "Cumming",
  23220. image: {
  23221. source: "./media/characters/layla/cumming.svg",
  23222. extra: 342 / 279,
  23223. bottom: 595 / 938
  23224. }
  23225. },
  23226. dickFlaccid: {
  23227. height: math.unit(2.595, "feet"),
  23228. name: "Flaccid Genitals",
  23229. image: {
  23230. source: "./media/characters/layla/dick-flaccid.svg"
  23231. }
  23232. },
  23233. dickErect: {
  23234. height: math.unit(2.359, "feet"),
  23235. name: "Erect Genitals",
  23236. image: {
  23237. source: "./media/characters/layla/dick-erect.svg"
  23238. }
  23239. },
  23240. dragon: {
  23241. height: math.unit(40, "feet"),
  23242. name: "Dragon",
  23243. image: {
  23244. source: "./media/characters/layla/dragon.svg",
  23245. extra: 610/535,
  23246. bottom: 367/977
  23247. }
  23248. },
  23249. taur: {
  23250. height: math.unit(30, "feet"),
  23251. name: "Taur",
  23252. image: {
  23253. source: "./media/characters/layla/taur.svg",
  23254. extra: 1268/1199,
  23255. bottom: 112/1380
  23256. }
  23257. },
  23258. },
  23259. [
  23260. {
  23261. name: "Micro",
  23262. height: math.unit(1, "inch")
  23263. },
  23264. {
  23265. name: "Small",
  23266. height: math.unit(1, "foot")
  23267. },
  23268. {
  23269. name: "Normal",
  23270. height: math.unit(2 + 6 / 12, "feet"),
  23271. default: true
  23272. },
  23273. {
  23274. name: "Macro",
  23275. height: math.unit(200, "feet")
  23276. },
  23277. {
  23278. name: "Megamacro",
  23279. height: math.unit(1000, "miles")
  23280. },
  23281. {
  23282. name: "Planetary",
  23283. height: math.unit(8000, "miles")
  23284. },
  23285. {
  23286. name: "True Layla",
  23287. height: math.unit(200000 * 7, "multiverses")
  23288. },
  23289. ]
  23290. ))
  23291. characterMakers.push(() => makeCharacter(
  23292. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23293. {
  23294. back: {
  23295. height: math.unit(10.5, "feet"),
  23296. weight: math.unit(800, "lb"),
  23297. name: "Back",
  23298. image: {
  23299. source: "./media/characters/knox/back.svg",
  23300. extra: 1486 / 1089,
  23301. bottom: 107 / 1601.4
  23302. }
  23303. },
  23304. side: {
  23305. height: math.unit(10.5, "feet"),
  23306. weight: math.unit(800, "lb"),
  23307. name: "Side",
  23308. image: {
  23309. source: "./media/characters/knox/side.svg",
  23310. extra: 244 / 218,
  23311. bottom: 14 / 260
  23312. }
  23313. },
  23314. },
  23315. [
  23316. {
  23317. name: "Compact",
  23318. height: math.unit(10.5, "feet"),
  23319. default: true
  23320. },
  23321. {
  23322. name: "Dynamax",
  23323. height: math.unit(210, "feet")
  23324. },
  23325. {
  23326. name: "Full Macro",
  23327. height: math.unit(850, "feet")
  23328. },
  23329. ]
  23330. ))
  23331. characterMakers.push(() => makeCharacter(
  23332. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23333. {
  23334. front: {
  23335. height: math.unit(6, "feet"),
  23336. weight: math.unit(152, "lb"),
  23337. name: "Front",
  23338. image: {
  23339. source: "./media/characters/shin-pikachu/front.svg",
  23340. extra: 1574 / 1480,
  23341. bottom: 53.3 / 1626
  23342. }
  23343. },
  23344. hand: {
  23345. height: math.unit(1.055, "feet"),
  23346. name: "Hand",
  23347. image: {
  23348. source: "./media/characters/shin-pikachu/hand.svg"
  23349. }
  23350. },
  23351. foot: {
  23352. height: math.unit(1.1, "feet"),
  23353. name: "Foot",
  23354. image: {
  23355. source: "./media/characters/shin-pikachu/foot.svg"
  23356. }
  23357. },
  23358. collar: {
  23359. height: math.unit(0.386, "feet"),
  23360. name: "Collar",
  23361. image: {
  23362. source: "./media/characters/shin-pikachu/collar.svg"
  23363. }
  23364. },
  23365. },
  23366. [
  23367. {
  23368. name: "Smallest",
  23369. height: math.unit(0.5, "inches")
  23370. },
  23371. {
  23372. name: "Micro",
  23373. height: math.unit(6, "inches")
  23374. },
  23375. {
  23376. name: "Normal",
  23377. height: math.unit(6, "feet"),
  23378. default: true
  23379. },
  23380. {
  23381. name: "Macro",
  23382. height: math.unit(150, "feet")
  23383. },
  23384. ]
  23385. ))
  23386. characterMakers.push(() => makeCharacter(
  23387. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23388. {
  23389. front: {
  23390. height: math.unit(28, "feet"),
  23391. weight: math.unit(10500, "lb"),
  23392. name: "Front",
  23393. image: {
  23394. source: "./media/characters/kayda/front.svg",
  23395. extra: 1536 / 1428,
  23396. bottom: 68.7 / 1603
  23397. }
  23398. },
  23399. back: {
  23400. height: math.unit(28, "feet"),
  23401. weight: math.unit(10500, "lb"),
  23402. name: "Back",
  23403. image: {
  23404. source: "./media/characters/kayda/back.svg",
  23405. extra: 1557 / 1464,
  23406. bottom: 39.5 / 1597.49
  23407. }
  23408. },
  23409. dick: {
  23410. height: math.unit(3.858, "feet"),
  23411. name: "Dick",
  23412. image: {
  23413. source: "./media/characters/kayda/dick.svg"
  23414. }
  23415. },
  23416. },
  23417. [
  23418. {
  23419. name: "Macro",
  23420. height: math.unit(28, "feet"),
  23421. default: true
  23422. },
  23423. ]
  23424. ))
  23425. characterMakers.push(() => makeCharacter(
  23426. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23427. {
  23428. front: {
  23429. height: math.unit(10 + 11 / 12, "feet"),
  23430. weight: math.unit(1400, "lb"),
  23431. name: "Front",
  23432. image: {
  23433. source: "./media/characters/brian/front.svg",
  23434. extra: 737 / 692,
  23435. bottom: 55.4 / 785
  23436. }
  23437. },
  23438. },
  23439. [
  23440. {
  23441. name: "Normal",
  23442. height: math.unit(10 + 11 / 12, "feet"),
  23443. default: true
  23444. },
  23445. ]
  23446. ))
  23447. characterMakers.push(() => makeCharacter(
  23448. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23449. {
  23450. front: {
  23451. height: math.unit(5 + 8 / 12, "feet"),
  23452. weight: math.unit(140, "lb"),
  23453. name: "Front",
  23454. image: {
  23455. source: "./media/characters/khemri/front.svg",
  23456. extra: 4780 / 4059,
  23457. bottom: 80.1 / 4859.25
  23458. }
  23459. },
  23460. },
  23461. [
  23462. {
  23463. name: "Micro",
  23464. height: math.unit(6, "inches")
  23465. },
  23466. {
  23467. name: "Normal",
  23468. height: math.unit(5 + 8 / 12, "feet"),
  23469. default: true
  23470. },
  23471. ]
  23472. ))
  23473. characterMakers.push(() => makeCharacter(
  23474. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23475. {
  23476. front: {
  23477. height: math.unit(13, "feet"),
  23478. weight: math.unit(1700, "lb"),
  23479. name: "Front",
  23480. image: {
  23481. source: "./media/characters/felix-braveheart/front.svg",
  23482. extra: 1222 / 1157,
  23483. bottom: 53.2 / 1280
  23484. }
  23485. },
  23486. back: {
  23487. height: math.unit(13, "feet"),
  23488. weight: math.unit(1700, "lb"),
  23489. name: "Back",
  23490. image: {
  23491. source: "./media/characters/felix-braveheart/back.svg",
  23492. extra: 1277 / 1203,
  23493. bottom: 50.2 / 1327
  23494. }
  23495. },
  23496. feral: {
  23497. height: math.unit(6, "feet"),
  23498. weight: math.unit(400, "lb"),
  23499. name: "Feral",
  23500. image: {
  23501. source: "./media/characters/felix-braveheart/feral.svg",
  23502. extra: 682 / 625,
  23503. bottom: 6.9 / 688
  23504. }
  23505. },
  23506. },
  23507. [
  23508. {
  23509. name: "Normal",
  23510. height: math.unit(13, "feet"),
  23511. default: true
  23512. },
  23513. ]
  23514. ))
  23515. characterMakers.push(() => makeCharacter(
  23516. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23517. {
  23518. side: {
  23519. height: math.unit(5 + 11 / 12, "feet"),
  23520. weight: math.unit(1400, "lb"),
  23521. name: "Side",
  23522. image: {
  23523. source: "./media/characters/shadow-blade/side.svg",
  23524. extra: 1726 / 1267,
  23525. bottom: 58.4 / 1785
  23526. }
  23527. },
  23528. },
  23529. [
  23530. {
  23531. name: "Normal",
  23532. height: math.unit(5 + 11 / 12, "feet"),
  23533. default: true
  23534. },
  23535. ]
  23536. ))
  23537. characterMakers.push(() => makeCharacter(
  23538. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23539. {
  23540. front: {
  23541. height: math.unit(1 + 6 / 12, "feet"),
  23542. weight: math.unit(25, "lb"),
  23543. name: "Front",
  23544. image: {
  23545. source: "./media/characters/karla-halldor/front.svg",
  23546. extra: 1459 / 1383,
  23547. bottom: 12 / 1472
  23548. }
  23549. },
  23550. },
  23551. [
  23552. {
  23553. name: "Normal",
  23554. height: math.unit(1 + 6 / 12, "feet"),
  23555. default: true
  23556. },
  23557. ]
  23558. ))
  23559. characterMakers.push(() => makeCharacter(
  23560. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23561. {
  23562. front: {
  23563. height: math.unit(6 + 2 / 12, "feet"),
  23564. weight: math.unit(160, "lb"),
  23565. name: "Front",
  23566. image: {
  23567. source: "./media/characters/ariam/front.svg",
  23568. extra: 714 / 617,
  23569. bottom: 23.4 / 737,
  23570. }
  23571. },
  23572. squatting: {
  23573. height: math.unit(4.1, "feet"),
  23574. weight: math.unit(160, "lb"),
  23575. name: "Squatting",
  23576. image: {
  23577. source: "./media/characters/ariam/squatting.svg",
  23578. extra: 2617 / 2112,
  23579. bottom: 61.2 / 2681,
  23580. }
  23581. },
  23582. },
  23583. [
  23584. {
  23585. name: "Normal",
  23586. height: math.unit(6 + 2 / 12, "feet"),
  23587. default: true
  23588. },
  23589. {
  23590. name: "Normal+",
  23591. height: math.unit(4, "meters")
  23592. },
  23593. {
  23594. name: "Macro",
  23595. height: math.unit(50, "meters")
  23596. },
  23597. {
  23598. name: "Macro+",
  23599. height: math.unit(100, "meters")
  23600. },
  23601. {
  23602. name: "Megamacro",
  23603. height: math.unit(20, "km")
  23604. },
  23605. ]
  23606. ))
  23607. characterMakers.push(() => makeCharacter(
  23608. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23609. {
  23610. front: {
  23611. height: math.unit(1.67, "meters"),
  23612. weight: math.unit(140, "lb"),
  23613. name: "Front",
  23614. image: {
  23615. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23616. extra: 438 / 410,
  23617. bottom: 0.75 / 439
  23618. }
  23619. },
  23620. },
  23621. [
  23622. {
  23623. name: "Shrunken",
  23624. height: math.unit(7.6, "cm")
  23625. },
  23626. {
  23627. name: "Human Scale",
  23628. height: math.unit(1.67, "meters")
  23629. },
  23630. {
  23631. name: "Wolxi Scale",
  23632. height: math.unit(36.7, "meters"),
  23633. default: true
  23634. },
  23635. ]
  23636. ))
  23637. characterMakers.push(() => makeCharacter(
  23638. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23639. {
  23640. front: {
  23641. height: math.unit(1.73, "meters"),
  23642. weight: math.unit(240, "lb"),
  23643. name: "Front",
  23644. image: {
  23645. source: "./media/characters/izue-two-mothers/front.svg",
  23646. extra: 469 / 437,
  23647. bottom: 1.24 / 470.6
  23648. }
  23649. },
  23650. },
  23651. [
  23652. {
  23653. name: "Shrunken",
  23654. height: math.unit(7.86, "cm")
  23655. },
  23656. {
  23657. name: "Human Scale",
  23658. height: math.unit(1.73, "meters")
  23659. },
  23660. {
  23661. name: "Wolxi Scale",
  23662. height: math.unit(38, "meters"),
  23663. default: true
  23664. },
  23665. ]
  23666. ))
  23667. characterMakers.push(() => makeCharacter(
  23668. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23669. {
  23670. front: {
  23671. height: math.unit(1.55, "meters"),
  23672. weight: math.unit(120, "lb"),
  23673. name: "Front",
  23674. image: {
  23675. source: "./media/characters/teeku-love-shack/front.svg",
  23676. extra: 387 / 362,
  23677. bottom: 1.51 / 388
  23678. }
  23679. },
  23680. },
  23681. [
  23682. {
  23683. name: "Shrunken",
  23684. height: math.unit(7, "cm")
  23685. },
  23686. {
  23687. name: "Human Scale",
  23688. height: math.unit(1.55, "meters")
  23689. },
  23690. {
  23691. name: "Wolxi Scale",
  23692. height: math.unit(34.1, "meters"),
  23693. default: true
  23694. },
  23695. ]
  23696. ))
  23697. characterMakers.push(() => makeCharacter(
  23698. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23699. {
  23700. front: {
  23701. height: math.unit(1.83, "meters"),
  23702. weight: math.unit(135, "lb"),
  23703. name: "Front",
  23704. image: {
  23705. source: "./media/characters/dejma-the-red/front.svg",
  23706. extra: 480 / 458,
  23707. bottom: 1.8 / 482
  23708. }
  23709. },
  23710. },
  23711. [
  23712. {
  23713. name: "Shrunken",
  23714. height: math.unit(8.3, "cm")
  23715. },
  23716. {
  23717. name: "Human Scale",
  23718. height: math.unit(1.83, "meters")
  23719. },
  23720. {
  23721. name: "Wolxi Scale",
  23722. height: math.unit(40, "meters"),
  23723. default: true
  23724. },
  23725. ]
  23726. ))
  23727. characterMakers.push(() => makeCharacter(
  23728. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23729. {
  23730. front: {
  23731. height: math.unit(1.78, "meters"),
  23732. weight: math.unit(65, "kg"),
  23733. name: "Front",
  23734. image: {
  23735. source: "./media/characters/aki/front.svg",
  23736. extra: 452 / 415
  23737. }
  23738. },
  23739. frontNsfw: {
  23740. height: math.unit(1.78, "meters"),
  23741. weight: math.unit(65, "kg"),
  23742. name: "Front (NSFW)",
  23743. image: {
  23744. source: "./media/characters/aki/front-nsfw.svg",
  23745. extra: 452 / 415
  23746. }
  23747. },
  23748. back: {
  23749. height: math.unit(1.78, "meters"),
  23750. weight: math.unit(65, "kg"),
  23751. name: "Back",
  23752. image: {
  23753. source: "./media/characters/aki/back.svg",
  23754. extra: 452 / 415
  23755. }
  23756. },
  23757. rump: {
  23758. height: math.unit(2.05, "feet"),
  23759. name: "Rump",
  23760. image: {
  23761. source: "./media/characters/aki/rump.svg"
  23762. }
  23763. },
  23764. dick: {
  23765. height: math.unit(0.95, "feet"),
  23766. name: "Dick",
  23767. image: {
  23768. source: "./media/characters/aki/dick.svg"
  23769. }
  23770. },
  23771. },
  23772. [
  23773. {
  23774. name: "Micro",
  23775. height: math.unit(15, "cm")
  23776. },
  23777. {
  23778. name: "Normal",
  23779. height: math.unit(178, "cm"),
  23780. default: true
  23781. },
  23782. {
  23783. name: "Macro",
  23784. height: math.unit(214, "m")
  23785. },
  23786. {
  23787. name: "Macro+",
  23788. height: math.unit(534, "m")
  23789. },
  23790. ]
  23791. ))
  23792. characterMakers.push(() => makeCharacter(
  23793. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23794. {
  23795. front: {
  23796. height: math.unit(5 + 5 / 12, "feet"),
  23797. weight: math.unit(120, "lb"),
  23798. name: "Front",
  23799. image: {
  23800. source: "./media/characters/ari/front.svg",
  23801. extra: 714.5 / 682,
  23802. bottom: 8 / 722.5
  23803. }
  23804. },
  23805. },
  23806. [
  23807. {
  23808. name: "Normal",
  23809. height: math.unit(5 + 5 / 12, "feet")
  23810. },
  23811. {
  23812. name: "Macro",
  23813. height: math.unit(100, "feet"),
  23814. default: true
  23815. },
  23816. {
  23817. name: "Megamacro",
  23818. height: math.unit(100, "miles")
  23819. },
  23820. {
  23821. name: "Gigamacro",
  23822. height: math.unit(80000, "miles")
  23823. },
  23824. ]
  23825. ))
  23826. characterMakers.push(() => makeCharacter(
  23827. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23828. {
  23829. side: {
  23830. height: math.unit(9, "feet"),
  23831. weight: math.unit(400, "kg"),
  23832. name: "Side",
  23833. image: {
  23834. source: "./media/characters/bolt/side.svg",
  23835. extra: 1126 / 896,
  23836. bottom: 60 / 1187.3,
  23837. }
  23838. },
  23839. },
  23840. [
  23841. {
  23842. name: "Micro",
  23843. height: math.unit(5, "inches")
  23844. },
  23845. {
  23846. name: "Normal",
  23847. height: math.unit(9, "feet"),
  23848. default: true
  23849. },
  23850. {
  23851. name: "Macro",
  23852. height: math.unit(700, "feet")
  23853. },
  23854. {
  23855. name: "Max Size",
  23856. height: math.unit(1.52e22, "yottameters")
  23857. },
  23858. ]
  23859. ))
  23860. characterMakers.push(() => makeCharacter(
  23861. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23862. {
  23863. front: {
  23864. height: math.unit(4.53, "meters"),
  23865. weight: math.unit(3, "tons"),
  23866. name: "Front",
  23867. image: {
  23868. source: "./media/characters/draekon-sylviar/front.svg",
  23869. extra: 1228 / 1068,
  23870. bottom: 41 / 1270
  23871. }
  23872. },
  23873. tail: {
  23874. height: math.unit(1.772, "meter"),
  23875. name: "Tail",
  23876. image: {
  23877. source: "./media/characters/draekon-sylviar/tail.svg"
  23878. }
  23879. },
  23880. head: {
  23881. height: math.unit(1.331, "meter"),
  23882. name: "Head",
  23883. image: {
  23884. source: "./media/characters/draekon-sylviar/head.svg"
  23885. }
  23886. },
  23887. hand: {
  23888. height: math.unit(0.564, "meter"),
  23889. name: "Hand",
  23890. image: {
  23891. source: "./media/characters/draekon-sylviar/hand.svg"
  23892. }
  23893. },
  23894. foot: {
  23895. height: math.unit(0.621, "meter"),
  23896. name: "Foot",
  23897. image: {
  23898. source: "./media/characters/draekon-sylviar/foot.svg",
  23899. bottom: 32 / 324
  23900. }
  23901. },
  23902. dick: {
  23903. height: math.unit(61, "cm"),
  23904. name: "Dick",
  23905. image: {
  23906. source: "./media/characters/draekon-sylviar/dick.svg"
  23907. }
  23908. },
  23909. dickseparated: {
  23910. height: math.unit(61, "cm"),
  23911. name: "Dick-separated",
  23912. image: {
  23913. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23914. }
  23915. },
  23916. },
  23917. [
  23918. {
  23919. name: "Small",
  23920. height: math.unit(4.53 / 2, "meters"),
  23921. default: true
  23922. },
  23923. {
  23924. name: "Normal",
  23925. height: math.unit(4.53, "meters"),
  23926. default: true
  23927. },
  23928. {
  23929. name: "Large",
  23930. height: math.unit(4.53 * 2, "meters"),
  23931. },
  23932. ]
  23933. ))
  23934. characterMakers.push(() => makeCharacter(
  23935. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23936. {
  23937. front: {
  23938. height: math.unit(6 + 2 / 12, "feet"),
  23939. weight: math.unit(180, "lb"),
  23940. name: "Front",
  23941. image: {
  23942. source: "./media/characters/brawler/front.svg",
  23943. extra: 3301 / 3027,
  23944. bottom: 138 / 3439
  23945. }
  23946. },
  23947. },
  23948. [
  23949. {
  23950. name: "Normal",
  23951. height: math.unit(6 + 2 / 12, "feet"),
  23952. default: true
  23953. },
  23954. ]
  23955. ))
  23956. characterMakers.push(() => makeCharacter(
  23957. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23958. {
  23959. front: {
  23960. height: math.unit(11, "feet"),
  23961. weight: math.unit(1000, "lb"),
  23962. name: "Front",
  23963. image: {
  23964. source: "./media/characters/alex/front.svg",
  23965. bottom: 44.5 / 620
  23966. }
  23967. },
  23968. },
  23969. [
  23970. {
  23971. name: "Micro",
  23972. height: math.unit(5, "inches")
  23973. },
  23974. {
  23975. name: "Normal",
  23976. height: math.unit(11, "feet"),
  23977. default: true
  23978. },
  23979. {
  23980. name: "Macro",
  23981. height: math.unit(9.5e9, "feet")
  23982. },
  23983. {
  23984. name: "Max Size",
  23985. height: math.unit(1.4e283, "yottameters")
  23986. },
  23987. ]
  23988. ))
  23989. characterMakers.push(() => makeCharacter(
  23990. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23991. {
  23992. female: {
  23993. height: math.unit(29.9, "m"),
  23994. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23995. name: "Female",
  23996. image: {
  23997. source: "./media/characters/zenari/female.svg",
  23998. extra: 3281.6 / 3217,
  23999. bottom: 72.2 / 3353
  24000. }
  24001. },
  24002. male: {
  24003. height: math.unit(27.7, "m"),
  24004. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24005. name: "Male",
  24006. image: {
  24007. source: "./media/characters/zenari/male.svg",
  24008. extra: 3008 / 2991,
  24009. bottom: 54.6 / 3069
  24010. }
  24011. },
  24012. },
  24013. [
  24014. {
  24015. name: "Macro",
  24016. height: math.unit(29.7, "meters"),
  24017. default: true
  24018. },
  24019. ]
  24020. ))
  24021. characterMakers.push(() => makeCharacter(
  24022. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24023. {
  24024. female: {
  24025. height: math.unit(23.8, "m"),
  24026. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24027. name: "Female",
  24028. image: {
  24029. source: "./media/characters/mactarian/female.svg",
  24030. extra: 2662 / 2569,
  24031. bottom: 73 / 2736
  24032. }
  24033. },
  24034. male: {
  24035. height: math.unit(23.8, "m"),
  24036. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24037. name: "Male",
  24038. image: {
  24039. source: "./media/characters/mactarian/male.svg",
  24040. extra: 2673 / 2600,
  24041. bottom: 76 / 2750
  24042. }
  24043. },
  24044. },
  24045. [
  24046. {
  24047. name: "Macro",
  24048. height: math.unit(23.8, "meters"),
  24049. default: true
  24050. },
  24051. ]
  24052. ))
  24053. characterMakers.push(() => makeCharacter(
  24054. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24055. {
  24056. female: {
  24057. height: math.unit(19.3, "m"),
  24058. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24059. name: "Female",
  24060. image: {
  24061. source: "./media/characters/umok/female.svg",
  24062. extra: 2186 / 2078,
  24063. bottom: 87 / 2277
  24064. }
  24065. },
  24066. male: {
  24067. height: math.unit(19.5, "m"),
  24068. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24069. name: "Male",
  24070. image: {
  24071. source: "./media/characters/umok/male.svg",
  24072. extra: 2233 / 2140,
  24073. bottom: 24.4 / 2258
  24074. }
  24075. },
  24076. },
  24077. [
  24078. {
  24079. name: "Macro",
  24080. height: math.unit(19.3, "meters"),
  24081. default: true
  24082. },
  24083. ]
  24084. ))
  24085. characterMakers.push(() => makeCharacter(
  24086. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24087. {
  24088. female: {
  24089. height: math.unit(26.15, "m"),
  24090. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24091. name: "Female",
  24092. image: {
  24093. source: "./media/characters/joraxian/female.svg",
  24094. extra: 2912 / 2824,
  24095. bottom: 36 / 2956
  24096. }
  24097. },
  24098. male: {
  24099. height: math.unit(25.4, "m"),
  24100. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24101. name: "Male",
  24102. image: {
  24103. source: "./media/characters/joraxian/male.svg",
  24104. extra: 2877 / 2721,
  24105. bottom: 82 / 2967
  24106. }
  24107. },
  24108. },
  24109. [
  24110. {
  24111. name: "Macro",
  24112. height: math.unit(26.15, "meters"),
  24113. default: true
  24114. },
  24115. ]
  24116. ))
  24117. characterMakers.push(() => makeCharacter(
  24118. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24119. {
  24120. female: {
  24121. height: math.unit(21.6, "m"),
  24122. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24123. name: "Female",
  24124. image: {
  24125. source: "./media/characters/sthara/female.svg",
  24126. extra: 2516 / 2347,
  24127. bottom: 21.5 / 2537
  24128. }
  24129. },
  24130. male: {
  24131. height: math.unit(24, "m"),
  24132. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24133. name: "Male",
  24134. image: {
  24135. source: "./media/characters/sthara/male.svg",
  24136. extra: 2732 / 2607,
  24137. bottom: 23 / 2732
  24138. }
  24139. },
  24140. },
  24141. [
  24142. {
  24143. name: "Macro",
  24144. height: math.unit(21.6, "meters"),
  24145. default: true
  24146. },
  24147. ]
  24148. ))
  24149. characterMakers.push(() => makeCharacter(
  24150. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24151. {
  24152. front: {
  24153. height: math.unit(6 + 4 / 12, "feet"),
  24154. weight: math.unit(175, "lb"),
  24155. name: "Front",
  24156. image: {
  24157. source: "./media/characters/luka-bryzant/front.svg",
  24158. extra: 311 / 289,
  24159. bottom: 4 / 315
  24160. }
  24161. },
  24162. back: {
  24163. height: math.unit(6 + 4 / 12, "feet"),
  24164. weight: math.unit(175, "lb"),
  24165. name: "Back",
  24166. image: {
  24167. source: "./media/characters/luka-bryzant/back.svg",
  24168. extra: 311 / 289,
  24169. bottom: 3.8 / 313.7
  24170. }
  24171. },
  24172. },
  24173. [
  24174. {
  24175. name: "Micro",
  24176. height: math.unit(10, "inches")
  24177. },
  24178. {
  24179. name: "Normal",
  24180. height: math.unit(6 + 4 / 12, "feet"),
  24181. default: true
  24182. },
  24183. {
  24184. name: "Large",
  24185. height: math.unit(12, "feet")
  24186. },
  24187. ]
  24188. ))
  24189. characterMakers.push(() => makeCharacter(
  24190. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24191. {
  24192. front: {
  24193. height: math.unit(5 + 7 / 12, "feet"),
  24194. weight: math.unit(185, "lb"),
  24195. name: "Front",
  24196. image: {
  24197. source: "./media/characters/aman-aquila/front.svg",
  24198. extra: 1013 / 976,
  24199. bottom: 45.6 / 1057
  24200. }
  24201. },
  24202. side: {
  24203. height: math.unit(5 + 7 / 12, "feet"),
  24204. weight: math.unit(185, "lb"),
  24205. name: "Side",
  24206. image: {
  24207. source: "./media/characters/aman-aquila/side.svg",
  24208. extra: 1054 / 1011,
  24209. bottom: 15 / 1070
  24210. }
  24211. },
  24212. back: {
  24213. height: math.unit(5 + 7 / 12, "feet"),
  24214. weight: math.unit(185, "lb"),
  24215. name: "Back",
  24216. image: {
  24217. source: "./media/characters/aman-aquila/back.svg",
  24218. extra: 1026 / 970,
  24219. bottom: 12 / 1039
  24220. }
  24221. },
  24222. head: {
  24223. height: math.unit(1.211, "feet"),
  24224. name: "Head",
  24225. image: {
  24226. source: "./media/characters/aman-aquila/head.svg",
  24227. }
  24228. },
  24229. },
  24230. [
  24231. {
  24232. name: "Minimicro",
  24233. height: math.unit(0.057, "inches")
  24234. },
  24235. {
  24236. name: "Micro",
  24237. height: math.unit(7, "inches")
  24238. },
  24239. {
  24240. name: "Mini",
  24241. height: math.unit(3 + 7 / 12, "feet")
  24242. },
  24243. {
  24244. name: "Normal",
  24245. height: math.unit(5 + 7 / 12, "feet"),
  24246. default: true
  24247. },
  24248. {
  24249. name: "Macro",
  24250. height: math.unit(157 + 7 / 12, "feet")
  24251. },
  24252. {
  24253. name: "Megamacro",
  24254. height: math.unit(1557 + 7 / 12, "feet")
  24255. },
  24256. {
  24257. name: "Gigamacro",
  24258. height: math.unit(15557 + 7 / 12, "feet")
  24259. },
  24260. ]
  24261. ))
  24262. characterMakers.push(() => makeCharacter(
  24263. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24264. {
  24265. front: {
  24266. height: math.unit(3 + 2 / 12, "inches"),
  24267. weight: math.unit(0.3, "ounces"),
  24268. name: "Front",
  24269. image: {
  24270. source: "./media/characters/hiphae/front.svg",
  24271. extra: 1931 / 1683,
  24272. bottom: 24 / 1955
  24273. }
  24274. },
  24275. },
  24276. [
  24277. {
  24278. name: "Normal",
  24279. height: math.unit(3 + 1 / 2, "inches"),
  24280. default: true
  24281. },
  24282. ]
  24283. ))
  24284. characterMakers.push(() => makeCharacter(
  24285. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24286. {
  24287. front: {
  24288. height: math.unit(5 + 10 / 12, "feet"),
  24289. weight: math.unit(165, "lb"),
  24290. name: "Front",
  24291. image: {
  24292. source: "./media/characters/nicky/front.svg",
  24293. extra: 3144 / 2886,
  24294. bottom: 45.6 / 3192
  24295. }
  24296. },
  24297. back: {
  24298. height: math.unit(5 + 10 / 12, "feet"),
  24299. weight: math.unit(165, "lb"),
  24300. name: "Back",
  24301. image: {
  24302. source: "./media/characters/nicky/back.svg",
  24303. extra: 3055 / 2804,
  24304. bottom: 28.4 / 3087
  24305. }
  24306. },
  24307. frontclothed: {
  24308. height: math.unit(5 + 10 / 12, "feet"),
  24309. weight: math.unit(165, "lb"),
  24310. name: "Front-clothed",
  24311. image: {
  24312. source: "./media/characters/nicky/front-clothed.svg",
  24313. extra: 3184.9 / 2926.9,
  24314. bottom: 86.5 / 3239.9
  24315. }
  24316. },
  24317. foot: {
  24318. height: math.unit(1.16, "feet"),
  24319. name: "Foot",
  24320. image: {
  24321. source: "./media/characters/nicky/foot.svg"
  24322. }
  24323. },
  24324. feet: {
  24325. height: math.unit(1.34, "feet"),
  24326. name: "Feet",
  24327. image: {
  24328. source: "./media/characters/nicky/feet.svg"
  24329. }
  24330. },
  24331. maw: {
  24332. height: math.unit(0.9, "feet"),
  24333. name: "Maw",
  24334. image: {
  24335. source: "./media/characters/nicky/maw.svg"
  24336. }
  24337. },
  24338. },
  24339. [
  24340. {
  24341. name: "Normal",
  24342. height: math.unit(5 + 10 / 12, "feet"),
  24343. default: true
  24344. },
  24345. {
  24346. name: "Macro",
  24347. height: math.unit(60, "feet")
  24348. },
  24349. {
  24350. name: "Megamacro",
  24351. height: math.unit(1, "mile")
  24352. },
  24353. ]
  24354. ))
  24355. characterMakers.push(() => makeCharacter(
  24356. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24357. {
  24358. side: {
  24359. height: math.unit(10, "feet"),
  24360. weight: math.unit(600, "lb"),
  24361. name: "Side",
  24362. image: {
  24363. source: "./media/characters/blair/side.svg",
  24364. bottom: 16.6 / 475,
  24365. extra: 458 / 431
  24366. }
  24367. },
  24368. },
  24369. [
  24370. {
  24371. name: "Micro",
  24372. height: math.unit(8, "inches")
  24373. },
  24374. {
  24375. name: "Normal",
  24376. height: math.unit(10, "feet"),
  24377. default: true
  24378. },
  24379. {
  24380. name: "Macro",
  24381. height: math.unit(180, "feet")
  24382. },
  24383. ]
  24384. ))
  24385. characterMakers.push(() => makeCharacter(
  24386. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24387. {
  24388. front: {
  24389. height: math.unit(5 + 4 / 12, "feet"),
  24390. weight: math.unit(125, "lb"),
  24391. name: "Front",
  24392. image: {
  24393. source: "./media/characters/fisher/front.svg",
  24394. extra: 444 / 390,
  24395. bottom: 2 / 444.8
  24396. }
  24397. },
  24398. },
  24399. [
  24400. {
  24401. name: "Micro",
  24402. height: math.unit(4, "inches")
  24403. },
  24404. {
  24405. name: "Normal",
  24406. height: math.unit(5 + 4 / 12, "feet"),
  24407. default: true
  24408. },
  24409. {
  24410. name: "Macro",
  24411. height: math.unit(100, "feet")
  24412. },
  24413. ]
  24414. ))
  24415. characterMakers.push(() => makeCharacter(
  24416. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24417. {
  24418. front: {
  24419. height: math.unit(6.71, "feet"),
  24420. weight: math.unit(200, "lb"),
  24421. capacity: math.unit(1000000, "people"),
  24422. name: "Front",
  24423. image: {
  24424. source: "./media/characters/gliss/front.svg",
  24425. extra: 2347 / 2231,
  24426. bottom: 113 / 2462
  24427. }
  24428. },
  24429. hammerspaceSize: {
  24430. height: math.unit(6.71 * 717, "feet"),
  24431. weight: math.unit(200, "lb"),
  24432. capacity: math.unit(1000000, "people"),
  24433. name: "Hammerspace Size",
  24434. image: {
  24435. source: "./media/characters/gliss/front.svg",
  24436. extra: 2347 / 2231,
  24437. bottom: 113 / 2462
  24438. }
  24439. },
  24440. },
  24441. [
  24442. {
  24443. name: "Normal",
  24444. height: math.unit(6.71, "feet"),
  24445. default: true
  24446. },
  24447. ]
  24448. ))
  24449. characterMakers.push(() => makeCharacter(
  24450. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24451. {
  24452. side: {
  24453. height: math.unit(1.44, "m"),
  24454. weight: math.unit(80, "kg"),
  24455. name: "Side",
  24456. image: {
  24457. source: "./media/characters/dune-anderson/side.svg",
  24458. bottom: 49 / 1426
  24459. }
  24460. },
  24461. },
  24462. [
  24463. {
  24464. name: "Wolf-sized",
  24465. height: math.unit(1.44, "meters")
  24466. },
  24467. {
  24468. name: "Normal",
  24469. height: math.unit(5.05, "meters"),
  24470. default: true
  24471. },
  24472. {
  24473. name: "Big",
  24474. height: math.unit(14.4, "meters")
  24475. },
  24476. {
  24477. name: "Huge",
  24478. height: math.unit(144, "meters")
  24479. },
  24480. ]
  24481. ))
  24482. characterMakers.push(() => makeCharacter(
  24483. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24484. {
  24485. front: {
  24486. height: math.unit(7, "feet"),
  24487. weight: math.unit(425, "lb"),
  24488. name: "Front",
  24489. image: {
  24490. source: "./media/characters/hind/front.svg",
  24491. extra: 2091 / 1860,
  24492. bottom: 129 / 2220
  24493. }
  24494. },
  24495. back: {
  24496. height: math.unit(7, "feet"),
  24497. weight: math.unit(425, "lb"),
  24498. name: "Back",
  24499. image: {
  24500. source: "./media/characters/hind/back.svg",
  24501. extra: 2091 / 1860,
  24502. bottom: 24.6 / 2309
  24503. }
  24504. },
  24505. tail: {
  24506. height: math.unit(2.8, "feet"),
  24507. name: "Tail",
  24508. image: {
  24509. source: "./media/characters/hind/tail.svg"
  24510. }
  24511. },
  24512. head: {
  24513. height: math.unit(2.55, "feet"),
  24514. name: "Head",
  24515. image: {
  24516. source: "./media/characters/hind/head.svg"
  24517. }
  24518. },
  24519. },
  24520. [
  24521. {
  24522. name: "XS",
  24523. height: math.unit(0.7, "feet")
  24524. },
  24525. {
  24526. name: "Normal",
  24527. height: math.unit(7, "feet"),
  24528. default: true
  24529. },
  24530. {
  24531. name: "XL",
  24532. height: math.unit(70, "feet")
  24533. },
  24534. ]
  24535. ))
  24536. characterMakers.push(() => makeCharacter(
  24537. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24538. {
  24539. front: {
  24540. height: math.unit(6, "feet"),
  24541. weight: math.unit(150, "lb"),
  24542. name: "Front",
  24543. image: {
  24544. source: "./media/characters/dylan-skaven/front.svg",
  24545. extra: 2318 / 2063,
  24546. bottom: 93.4 / 2410
  24547. }
  24548. },
  24549. },
  24550. [
  24551. {
  24552. name: "Nano",
  24553. height: math.unit(1, "mm")
  24554. },
  24555. {
  24556. name: "Micro",
  24557. height: math.unit(1, "cm")
  24558. },
  24559. {
  24560. name: "Normal",
  24561. height: math.unit(2.1, "meters"),
  24562. default: true
  24563. },
  24564. ]
  24565. ))
  24566. characterMakers.push(() => makeCharacter(
  24567. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24568. {
  24569. front: {
  24570. height: math.unit(7 + 5 / 12, "feet"),
  24571. weight: math.unit(357, "lb"),
  24572. name: "Front",
  24573. image: {
  24574. source: "./media/characters/solex-draconov/front.svg",
  24575. extra: 1993 / 1865,
  24576. bottom: 117 / 2111
  24577. }
  24578. },
  24579. },
  24580. [
  24581. {
  24582. name: "Natural Height",
  24583. height: math.unit(7 + 5 / 12, "feet"),
  24584. default: true
  24585. },
  24586. {
  24587. name: "Macro",
  24588. height: math.unit(350, "feet")
  24589. },
  24590. {
  24591. name: "Macro+",
  24592. height: math.unit(1000, "feet")
  24593. },
  24594. {
  24595. name: "Megamacro",
  24596. height: math.unit(20, "km")
  24597. },
  24598. {
  24599. name: "Megamacro+",
  24600. height: math.unit(1000, "km")
  24601. },
  24602. {
  24603. name: "Gigamacro",
  24604. height: math.unit(2.5, "Gm")
  24605. },
  24606. {
  24607. name: "Teramacro",
  24608. height: math.unit(15, "Tm")
  24609. },
  24610. {
  24611. name: "Galactic",
  24612. height: math.unit(30, "Zm")
  24613. },
  24614. {
  24615. name: "Universal",
  24616. height: math.unit(21000, "Ym")
  24617. },
  24618. {
  24619. name: "Omniversal",
  24620. height: math.unit(9.861e50, "Ym")
  24621. },
  24622. {
  24623. name: "Existential",
  24624. height: math.unit(1e300, "meters")
  24625. },
  24626. ]
  24627. ))
  24628. characterMakers.push(() => makeCharacter(
  24629. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24630. {
  24631. side: {
  24632. height: math.unit(25, "feet"),
  24633. weight: math.unit(90000, "lb"),
  24634. name: "Side",
  24635. image: {
  24636. source: "./media/characters/mandarax/side.svg",
  24637. extra: 614 / 332,
  24638. bottom: 55 / 630
  24639. }
  24640. },
  24641. head: {
  24642. height: math.unit(11.4, "feet"),
  24643. name: "Head",
  24644. image: {
  24645. source: "./media/characters/mandarax/head.svg"
  24646. }
  24647. },
  24648. belly: {
  24649. height: math.unit(33, "feet"),
  24650. name: "Belly",
  24651. capacity: math.unit(500, "people"),
  24652. image: {
  24653. source: "./media/characters/mandarax/belly.svg"
  24654. }
  24655. },
  24656. dick: {
  24657. height: math.unit(8.46, "feet"),
  24658. name: "Dick",
  24659. image: {
  24660. source: "./media/characters/mandarax/dick.svg"
  24661. }
  24662. },
  24663. top: {
  24664. height: math.unit(28, "meters"),
  24665. name: "Top",
  24666. image: {
  24667. source: "./media/characters/mandarax/top.svg"
  24668. }
  24669. },
  24670. },
  24671. [
  24672. {
  24673. name: "Normal",
  24674. height: math.unit(25, "feet"),
  24675. default: true
  24676. },
  24677. ]
  24678. ))
  24679. characterMakers.push(() => makeCharacter(
  24680. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24681. {
  24682. front: {
  24683. height: math.unit(5, "feet"),
  24684. weight: math.unit(90, "lb"),
  24685. name: "Front",
  24686. image: {
  24687. source: "./media/characters/pixil/front.svg",
  24688. extra: 2000 / 1618,
  24689. bottom: 12.3 / 2011
  24690. }
  24691. },
  24692. },
  24693. [
  24694. {
  24695. name: "Normal",
  24696. height: math.unit(5, "feet"),
  24697. default: true
  24698. },
  24699. {
  24700. name: "Megamacro",
  24701. height: math.unit(10, "miles"),
  24702. },
  24703. ]
  24704. ))
  24705. characterMakers.push(() => makeCharacter(
  24706. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24707. {
  24708. front: {
  24709. height: math.unit(7 + 2 / 12, "feet"),
  24710. weight: math.unit(200, "lb"),
  24711. name: "Front",
  24712. image: {
  24713. source: "./media/characters/angel/front.svg",
  24714. extra: 1830 / 1737,
  24715. bottom: 22.6 / 1854,
  24716. }
  24717. },
  24718. },
  24719. [
  24720. {
  24721. name: "Normal",
  24722. height: math.unit(7 + 2 / 12, "feet"),
  24723. default: true
  24724. },
  24725. {
  24726. name: "Macro",
  24727. height: math.unit(1000, "feet")
  24728. },
  24729. {
  24730. name: "Megamacro",
  24731. height: math.unit(2, "miles")
  24732. },
  24733. {
  24734. name: "Gigamacro",
  24735. height: math.unit(20, "earths")
  24736. },
  24737. ]
  24738. ))
  24739. characterMakers.push(() => makeCharacter(
  24740. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24741. {
  24742. front: {
  24743. height: math.unit(5, "feet"),
  24744. weight: math.unit(180, "lb"),
  24745. name: "Front",
  24746. image: {
  24747. source: "./media/characters/mekana/front.svg",
  24748. extra: 1671 / 1605,
  24749. bottom: 3.5 / 1691
  24750. }
  24751. },
  24752. side: {
  24753. height: math.unit(5, "feet"),
  24754. weight: math.unit(180, "lb"),
  24755. name: "Side",
  24756. image: {
  24757. source: "./media/characters/mekana/side.svg",
  24758. extra: 1671 / 1605,
  24759. bottom: 3.5 / 1691
  24760. }
  24761. },
  24762. back: {
  24763. height: math.unit(5, "feet"),
  24764. weight: math.unit(180, "lb"),
  24765. name: "Back",
  24766. image: {
  24767. source: "./media/characters/mekana/back.svg",
  24768. extra: 1671 / 1605,
  24769. bottom: 3.5 / 1691
  24770. }
  24771. },
  24772. },
  24773. [
  24774. {
  24775. name: "Normal",
  24776. height: math.unit(5, "feet"),
  24777. default: true
  24778. },
  24779. ]
  24780. ))
  24781. characterMakers.push(() => makeCharacter(
  24782. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24783. {
  24784. front: {
  24785. height: math.unit(4 + 6 / 12, "feet"),
  24786. weight: math.unit(80, "lb"),
  24787. name: "Front",
  24788. image: {
  24789. source: "./media/characters/pixie/front.svg",
  24790. extra: 1924 / 1825,
  24791. bottom: 22.4 / 1946
  24792. }
  24793. },
  24794. },
  24795. [
  24796. {
  24797. name: "Normal",
  24798. height: math.unit(4 + 6 / 12, "feet"),
  24799. default: true
  24800. },
  24801. {
  24802. name: "Macro",
  24803. height: math.unit(40, "feet")
  24804. },
  24805. ]
  24806. ))
  24807. characterMakers.push(() => makeCharacter(
  24808. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24809. {
  24810. front: {
  24811. height: math.unit(2.1, "meters"),
  24812. weight: math.unit(200, "lb"),
  24813. name: "Front",
  24814. image: {
  24815. source: "./media/characters/the-lascivious/front.svg",
  24816. extra: 1 / 0.893,
  24817. bottom: 3.5 / 573.7
  24818. }
  24819. },
  24820. },
  24821. [
  24822. {
  24823. name: "Human Scale",
  24824. height: math.unit(2.1, "meters")
  24825. },
  24826. {
  24827. name: "Wolxi Scale",
  24828. height: math.unit(46.2, "m"),
  24829. default: true
  24830. },
  24831. {
  24832. name: "Boinker of Buildings",
  24833. height: math.unit(10, "km")
  24834. },
  24835. {
  24836. name: "Shagger of Skyscrapers",
  24837. height: math.unit(40, "km")
  24838. },
  24839. {
  24840. name: "Banger of Boroughs",
  24841. height: math.unit(4000, "km")
  24842. },
  24843. {
  24844. name: "Screwer of States",
  24845. height: math.unit(100000, "km")
  24846. },
  24847. {
  24848. name: "Pounder of Planets",
  24849. height: math.unit(2000000, "km")
  24850. },
  24851. ]
  24852. ))
  24853. characterMakers.push(() => makeCharacter(
  24854. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24855. {
  24856. front: {
  24857. height: math.unit(6, "feet"),
  24858. weight: math.unit(150, "lb"),
  24859. name: "Front",
  24860. image: {
  24861. source: "./media/characters/aj/front.svg",
  24862. extra: 2039 / 1562,
  24863. bottom: 40 / 2079
  24864. }
  24865. },
  24866. },
  24867. [
  24868. {
  24869. name: "Normal",
  24870. height: math.unit(11 + 6 / 12, "feet"),
  24871. default: true
  24872. },
  24873. {
  24874. name: "Megamacro",
  24875. height: math.unit(60, "megameters")
  24876. },
  24877. ]
  24878. ))
  24879. characterMakers.push(() => makeCharacter(
  24880. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24881. {
  24882. side: {
  24883. height: math.unit(31 + 8 / 12, "feet"),
  24884. weight: math.unit(75000, "kg"),
  24885. name: "Side",
  24886. image: {
  24887. source: "./media/characters/koros/side.svg",
  24888. extra: 1442 / 1297,
  24889. bottom: 122.7 / 1562
  24890. }
  24891. },
  24892. dicksKingsCrown: {
  24893. height: math.unit(6, "feet"),
  24894. name: "Dicks (King's Crown)",
  24895. image: {
  24896. source: "./media/characters/koros/dicks-kings-crown.svg"
  24897. }
  24898. },
  24899. dicksTailSet: {
  24900. height: math.unit(3, "feet"),
  24901. name: "Dicks (Tail Set)",
  24902. image: {
  24903. source: "./media/characters/koros/dicks-tail-set.svg"
  24904. }
  24905. },
  24906. dickCumming: {
  24907. height: math.unit(7.98, "feet"),
  24908. name: "Dick (Cumming)",
  24909. image: {
  24910. source: "./media/characters/koros/dick-cumming.svg"
  24911. }
  24912. },
  24913. dicksBack: {
  24914. height: math.unit(5.9, "feet"),
  24915. name: "Dicks (Back)",
  24916. image: {
  24917. source: "./media/characters/koros/dicks-back.svg"
  24918. }
  24919. },
  24920. dicksFront: {
  24921. height: math.unit(3.72, "feet"),
  24922. name: "Dicks (Front)",
  24923. image: {
  24924. source: "./media/characters/koros/dicks-front.svg"
  24925. }
  24926. },
  24927. dicksPeeking: {
  24928. height: math.unit(3.0, "feet"),
  24929. name: "Dicks (Peeking)",
  24930. image: {
  24931. source: "./media/characters/koros/dicks-peeking.svg"
  24932. }
  24933. },
  24934. eye: {
  24935. height: math.unit(1.7, "feet"),
  24936. name: "Eye",
  24937. image: {
  24938. source: "./media/characters/koros/eye.svg"
  24939. }
  24940. },
  24941. headFront: {
  24942. height: math.unit(11.69, "feet"),
  24943. name: "Head (Front)",
  24944. image: {
  24945. source: "./media/characters/koros/head-front.svg"
  24946. }
  24947. },
  24948. headSide: {
  24949. height: math.unit(14, "feet"),
  24950. name: "Head (Side)",
  24951. image: {
  24952. source: "./media/characters/koros/head-side.svg"
  24953. }
  24954. },
  24955. leg: {
  24956. height: math.unit(17, "feet"),
  24957. name: "Leg",
  24958. image: {
  24959. source: "./media/characters/koros/leg.svg"
  24960. }
  24961. },
  24962. mawSide: {
  24963. height: math.unit(12.8, "feet"),
  24964. name: "Maw (Side)",
  24965. image: {
  24966. source: "./media/characters/koros/maw-side.svg"
  24967. }
  24968. },
  24969. mawSpitting: {
  24970. height: math.unit(17, "feet"),
  24971. name: "Maw (Spitting)",
  24972. image: {
  24973. source: "./media/characters/koros/maw-spitting.svg"
  24974. }
  24975. },
  24976. slit: {
  24977. height: math.unit(2.8, "feet"),
  24978. name: "Slit",
  24979. image: {
  24980. source: "./media/characters/koros/slit.svg"
  24981. }
  24982. },
  24983. stomach: {
  24984. height: math.unit(6.8, "feet"),
  24985. capacity: math.unit(20, "people"),
  24986. name: "Stomach",
  24987. image: {
  24988. source: "./media/characters/koros/stomach.svg"
  24989. }
  24990. },
  24991. wingspanBottom: {
  24992. height: math.unit(114, "feet"),
  24993. name: "Wingspan (Bottom)",
  24994. image: {
  24995. source: "./media/characters/koros/wingspan-bottom.svg"
  24996. }
  24997. },
  24998. wingspanTop: {
  24999. height: math.unit(104, "feet"),
  25000. name: "Wingspan (Top)",
  25001. image: {
  25002. source: "./media/characters/koros/wingspan-top.svg"
  25003. }
  25004. },
  25005. },
  25006. [
  25007. {
  25008. name: "Normal",
  25009. height: math.unit(31 + 8 / 12, "feet"),
  25010. default: true
  25011. },
  25012. ]
  25013. ))
  25014. characterMakers.push(() => makeCharacter(
  25015. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25016. {
  25017. front: {
  25018. height: math.unit(18 + 5 / 12, "feet"),
  25019. weight: math.unit(3750, "kg"),
  25020. name: "Front",
  25021. image: {
  25022. source: "./media/characters/vexx/front.svg",
  25023. extra: 426 / 396,
  25024. bottom: 31.5 / 458
  25025. }
  25026. },
  25027. maw: {
  25028. height: math.unit(6, "feet"),
  25029. name: "Maw",
  25030. image: {
  25031. source: "./media/characters/vexx/maw.svg"
  25032. }
  25033. },
  25034. },
  25035. [
  25036. {
  25037. name: "Normal",
  25038. height: math.unit(18 + 5 / 12, "feet"),
  25039. default: true
  25040. },
  25041. ]
  25042. ))
  25043. characterMakers.push(() => makeCharacter(
  25044. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25045. {
  25046. front: {
  25047. height: math.unit(17 + 6 / 12, "feet"),
  25048. weight: math.unit(150, "lb"),
  25049. name: "Front",
  25050. image: {
  25051. source: "./media/characters/baadra/front.svg",
  25052. extra: 3137 / 2890,
  25053. bottom: 168.4 / 3305
  25054. }
  25055. },
  25056. back: {
  25057. height: math.unit(17 + 6 / 12, "feet"),
  25058. weight: math.unit(150, "lb"),
  25059. name: "Back",
  25060. image: {
  25061. source: "./media/characters/baadra/back.svg",
  25062. extra: 3142 / 2890,
  25063. bottom: 220 / 3371
  25064. }
  25065. },
  25066. head: {
  25067. height: math.unit(5.45, "feet"),
  25068. name: "Head",
  25069. image: {
  25070. source: "./media/characters/baadra/head.svg"
  25071. }
  25072. },
  25073. headAngry: {
  25074. height: math.unit(4.95, "feet"),
  25075. name: "Head (Angry)",
  25076. image: {
  25077. source: "./media/characters/baadra/head-angry.svg"
  25078. }
  25079. },
  25080. headOpen: {
  25081. height: math.unit(6, "feet"),
  25082. name: "Head (Open)",
  25083. image: {
  25084. source: "./media/characters/baadra/head-open.svg"
  25085. }
  25086. },
  25087. },
  25088. [
  25089. {
  25090. name: "Normal",
  25091. height: math.unit(17 + 6 / 12, "feet"),
  25092. default: true
  25093. },
  25094. ]
  25095. ))
  25096. characterMakers.push(() => makeCharacter(
  25097. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25098. {
  25099. front: {
  25100. height: math.unit(7 + 3 / 12, "feet"),
  25101. weight: math.unit(180, "lb"),
  25102. name: "Front",
  25103. image: {
  25104. source: "./media/characters/juri/front.svg",
  25105. extra: 1401 / 1237,
  25106. bottom: 18.5 / 1418
  25107. }
  25108. },
  25109. side: {
  25110. height: math.unit(7 + 3 / 12, "feet"),
  25111. weight: math.unit(180, "lb"),
  25112. name: "Side",
  25113. image: {
  25114. source: "./media/characters/juri/side.svg",
  25115. extra: 1424 / 1242,
  25116. bottom: 18.5 / 1447
  25117. }
  25118. },
  25119. sitting: {
  25120. height: math.unit(6, "feet"),
  25121. weight: math.unit(180, "lb"),
  25122. name: "Sitting",
  25123. image: {
  25124. source: "./media/characters/juri/sitting.svg",
  25125. extra: 1270 / 1143,
  25126. bottom: 100 / 1343
  25127. }
  25128. },
  25129. back: {
  25130. height: math.unit(7 + 3 / 12, "feet"),
  25131. weight: math.unit(180, "lb"),
  25132. name: "Back",
  25133. image: {
  25134. source: "./media/characters/juri/back.svg",
  25135. extra: 1377 / 1240,
  25136. bottom: 23.7 / 1405
  25137. }
  25138. },
  25139. maw: {
  25140. height: math.unit(2.8, "feet"),
  25141. name: "Maw",
  25142. image: {
  25143. source: "./media/characters/juri/maw.svg"
  25144. }
  25145. },
  25146. stomach: {
  25147. height: math.unit(0.89, "feet"),
  25148. capacity: math.unit(4, "liters"),
  25149. name: "Stomach",
  25150. image: {
  25151. source: "./media/characters/juri/stomach.svg"
  25152. }
  25153. },
  25154. },
  25155. [
  25156. {
  25157. name: "Normal",
  25158. height: math.unit(7 + 3 / 12, "feet"),
  25159. default: true
  25160. },
  25161. ]
  25162. ))
  25163. characterMakers.push(() => makeCharacter(
  25164. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25165. {
  25166. fox: {
  25167. height: math.unit(5 + 6 / 12, "feet"),
  25168. weight: math.unit(140, "lb"),
  25169. name: "Fox",
  25170. image: {
  25171. source: "./media/characters/maxene-sita/fox.svg",
  25172. extra: 146 / 138,
  25173. bottom: 2.1 / 148.19
  25174. }
  25175. },
  25176. foxLaying: {
  25177. height: math.unit(1.70, "feet"),
  25178. weight: math.unit(140, "lb"),
  25179. name: "Fox (Laying)",
  25180. image: {
  25181. source: "./media/characters/maxene-sita/fox-laying.svg",
  25182. extra: 910 / 572,
  25183. bottom: 71 / 981
  25184. }
  25185. },
  25186. kitsune: {
  25187. height: math.unit(10, "feet"),
  25188. weight: math.unit(800, "lb"),
  25189. name: "Kitsune",
  25190. image: {
  25191. source: "./media/characters/maxene-sita/kitsune.svg",
  25192. extra: 185 / 176,
  25193. bottom: 4.7 / 189.9
  25194. }
  25195. },
  25196. hellhound: {
  25197. height: math.unit(10, "feet"),
  25198. weight: math.unit(700, "lb"),
  25199. name: "Hellhound",
  25200. image: {
  25201. source: "./media/characters/maxene-sita/hellhound.svg",
  25202. extra: 1600 / 1545,
  25203. bottom: 81 / 1681
  25204. }
  25205. },
  25206. },
  25207. [
  25208. {
  25209. name: "Normal",
  25210. height: math.unit(5 + 6 / 12, "feet"),
  25211. default: true
  25212. },
  25213. ]
  25214. ))
  25215. characterMakers.push(() => makeCharacter(
  25216. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25217. {
  25218. front: {
  25219. height: math.unit(3 + 4 / 12, "feet"),
  25220. weight: math.unit(70, "lb"),
  25221. name: "Front",
  25222. image: {
  25223. source: "./media/characters/maia/front.svg",
  25224. extra: 227 / 219.5,
  25225. bottom: 40 / 267
  25226. }
  25227. },
  25228. back: {
  25229. height: math.unit(3 + 4 / 12, "feet"),
  25230. weight: math.unit(70, "lb"),
  25231. name: "Back",
  25232. image: {
  25233. source: "./media/characters/maia/back.svg",
  25234. extra: 237 / 225
  25235. }
  25236. },
  25237. },
  25238. [
  25239. {
  25240. name: "Normal",
  25241. height: math.unit(3 + 4 / 12, "feet"),
  25242. default: true
  25243. },
  25244. ]
  25245. ))
  25246. characterMakers.push(() => makeCharacter(
  25247. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25248. {
  25249. front: {
  25250. height: math.unit(5 + 10 / 12, "feet"),
  25251. weight: math.unit(197, "lb"),
  25252. name: "Front",
  25253. image: {
  25254. source: "./media/characters/jabaro/front.svg",
  25255. extra: 225 / 216,
  25256. bottom: 5.06 / 230
  25257. }
  25258. },
  25259. back: {
  25260. height: math.unit(5 + 10 / 12, "feet"),
  25261. weight: math.unit(197, "lb"),
  25262. name: "Back",
  25263. image: {
  25264. source: "./media/characters/jabaro/back.svg",
  25265. extra: 225 / 219,
  25266. bottom: 1.9 / 227
  25267. }
  25268. },
  25269. },
  25270. [
  25271. {
  25272. name: "Normal",
  25273. height: math.unit(5 + 10 / 12, "feet"),
  25274. default: true
  25275. },
  25276. ]
  25277. ))
  25278. characterMakers.push(() => makeCharacter(
  25279. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25280. {
  25281. front: {
  25282. height: math.unit(5 + 8 / 12, "feet"),
  25283. weight: math.unit(139, "lb"),
  25284. name: "Front",
  25285. image: {
  25286. source: "./media/characters/risa/front.svg",
  25287. extra: 270 / 260,
  25288. bottom: 11.2 / 282
  25289. }
  25290. },
  25291. back: {
  25292. height: math.unit(5 + 8 / 12, "feet"),
  25293. weight: math.unit(139, "lb"),
  25294. name: "Back",
  25295. image: {
  25296. source: "./media/characters/risa/back.svg",
  25297. extra: 264 / 255,
  25298. bottom: 4 / 268
  25299. }
  25300. },
  25301. },
  25302. [
  25303. {
  25304. name: "Normal",
  25305. height: math.unit(5 + 8 / 12, "feet"),
  25306. default: true
  25307. },
  25308. ]
  25309. ))
  25310. characterMakers.push(() => makeCharacter(
  25311. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25312. {
  25313. front: {
  25314. height: math.unit(2 + 11 / 12, "feet"),
  25315. weight: math.unit(30, "lb"),
  25316. name: "Front",
  25317. image: {
  25318. source: "./media/characters/weatley/front.svg",
  25319. bottom: 10.7 / 414,
  25320. extra: 403.5 / 362
  25321. }
  25322. },
  25323. back: {
  25324. height: math.unit(2 + 11 / 12, "feet"),
  25325. weight: math.unit(30, "lb"),
  25326. name: "Back",
  25327. image: {
  25328. source: "./media/characters/weatley/back.svg",
  25329. bottom: 10.7 / 414,
  25330. extra: 403.5 / 362
  25331. }
  25332. },
  25333. },
  25334. [
  25335. {
  25336. name: "Normal",
  25337. height: math.unit(2 + 11 / 12, "feet"),
  25338. default: true
  25339. },
  25340. ]
  25341. ))
  25342. characterMakers.push(() => makeCharacter(
  25343. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25344. {
  25345. front: {
  25346. height: math.unit(5 + 2 / 12, "feet"),
  25347. weight: math.unit(50, "kg"),
  25348. name: "Front",
  25349. image: {
  25350. source: "./media/characters/mercury-crescent/front.svg",
  25351. extra: 1088 / 1033,
  25352. bottom: 18.9 / 1109
  25353. }
  25354. },
  25355. },
  25356. [
  25357. {
  25358. name: "Normal",
  25359. height: math.unit(5 + 2 / 12, "feet"),
  25360. default: true
  25361. },
  25362. ]
  25363. ))
  25364. characterMakers.push(() => makeCharacter(
  25365. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25366. {
  25367. front: {
  25368. height: math.unit(2, "feet"),
  25369. weight: math.unit(15, "kg"),
  25370. name: "Front",
  25371. image: {
  25372. source: "./media/characters/diamond-jones/front.svg",
  25373. bottom: 16 / 568
  25374. }
  25375. },
  25376. },
  25377. [
  25378. {
  25379. name: "Normal",
  25380. height: math.unit(2, "feet"),
  25381. default: true
  25382. },
  25383. ]
  25384. ))
  25385. characterMakers.push(() => makeCharacter(
  25386. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25387. {
  25388. front: {
  25389. height: math.unit(3, "feet"),
  25390. weight: math.unit(30, "kg"),
  25391. name: "Front",
  25392. image: {
  25393. source: "./media/characters/sweet-bit/front.svg",
  25394. extra: 675 / 567,
  25395. bottom: 27.7 / 703
  25396. }
  25397. },
  25398. },
  25399. [
  25400. {
  25401. name: "Normal",
  25402. height: math.unit(3, "feet"),
  25403. default: true
  25404. },
  25405. ]
  25406. ))
  25407. characterMakers.push(() => makeCharacter(
  25408. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25409. {
  25410. side: {
  25411. height: math.unit(9.178, "feet"),
  25412. weight: math.unit(500, "lb"),
  25413. name: "Side",
  25414. image: {
  25415. source: "./media/characters/umbrazen/side.svg",
  25416. extra: 1730 / 1473,
  25417. bottom: 34.6 / 1765
  25418. }
  25419. },
  25420. },
  25421. [
  25422. {
  25423. name: "Normal",
  25424. height: math.unit(9.178, "feet"),
  25425. default: true
  25426. },
  25427. ]
  25428. ))
  25429. characterMakers.push(() => makeCharacter(
  25430. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25431. {
  25432. front: {
  25433. height: math.unit(10, "feet"),
  25434. weight: math.unit(750, "lb"),
  25435. name: "Front",
  25436. image: {
  25437. source: "./media/characters/arlist/front.svg",
  25438. extra: 961 / 778,
  25439. bottom: 6.2 / 986
  25440. }
  25441. },
  25442. },
  25443. [
  25444. {
  25445. name: "Normal",
  25446. height: math.unit(10, "feet"),
  25447. default: true
  25448. },
  25449. ]
  25450. ))
  25451. characterMakers.push(() => makeCharacter(
  25452. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25453. {
  25454. front: {
  25455. height: math.unit(5 + 1 / 12, "feet"),
  25456. weight: math.unit(110, "lb"),
  25457. name: "Front",
  25458. image: {
  25459. source: "./media/characters/aradel/front.svg",
  25460. extra: 324 / 303,
  25461. bottom: 3.6 / 329.4
  25462. }
  25463. },
  25464. },
  25465. [
  25466. {
  25467. name: "Normal",
  25468. height: math.unit(5 + 1 / 12, "feet"),
  25469. default: true
  25470. },
  25471. ]
  25472. ))
  25473. characterMakers.push(() => makeCharacter(
  25474. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25475. {
  25476. front: {
  25477. height: math.unit(3 + 8 / 12, "feet"),
  25478. weight: math.unit(50, "lb"),
  25479. name: "Front",
  25480. image: {
  25481. source: "./media/characters/serryn/front.svg",
  25482. extra: 1792 / 1656,
  25483. bottom: 43.5 / 1840
  25484. }
  25485. },
  25486. },
  25487. [
  25488. {
  25489. name: "Normal",
  25490. height: math.unit(3 + 8 / 12, "feet"),
  25491. default: true
  25492. },
  25493. ]
  25494. ))
  25495. characterMakers.push(() => makeCharacter(
  25496. { name: "Xavier Thyme" },
  25497. {
  25498. front: {
  25499. height: math.unit(7 + 10 / 12, "feet"),
  25500. weight: math.unit(255, "lb"),
  25501. name: "Front",
  25502. image: {
  25503. source: "./media/characters/xavier-thyme/front.svg",
  25504. extra: 3733 / 3642,
  25505. bottom: 131 / 3869
  25506. }
  25507. },
  25508. frontRaven: {
  25509. height: math.unit(7 + 10 / 12, "feet"),
  25510. weight: math.unit(255, "lb"),
  25511. name: "Front (Raven)",
  25512. image: {
  25513. source: "./media/characters/xavier-thyme/front-raven.svg",
  25514. extra: 4385 / 3642,
  25515. bottom: 131 / 4517
  25516. }
  25517. },
  25518. },
  25519. [
  25520. {
  25521. name: "Normal",
  25522. height: math.unit(7 + 10 / 12, "feet"),
  25523. default: true
  25524. },
  25525. ]
  25526. ))
  25527. characterMakers.push(() => makeCharacter(
  25528. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25529. {
  25530. front: {
  25531. height: math.unit(1.6, "m"),
  25532. weight: math.unit(50, "kg"),
  25533. name: "Front",
  25534. image: {
  25535. source: "./media/characters/kiki/front.svg",
  25536. extra: 4682 / 3610,
  25537. bottom: 115 / 4777
  25538. }
  25539. },
  25540. },
  25541. [
  25542. {
  25543. name: "Normal",
  25544. height: math.unit(1.6, "meters"),
  25545. default: true
  25546. },
  25547. ]
  25548. ))
  25549. characterMakers.push(() => makeCharacter(
  25550. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25551. {
  25552. front: {
  25553. height: math.unit(50, "m"),
  25554. weight: math.unit(500, "tonnes"),
  25555. name: "Front",
  25556. image: {
  25557. source: "./media/characters/ryoko/front.svg",
  25558. extra: 4632 / 3926,
  25559. bottom: 193 / 4823
  25560. }
  25561. },
  25562. },
  25563. [
  25564. {
  25565. name: "Normal",
  25566. height: math.unit(50, "meters"),
  25567. default: true
  25568. },
  25569. ]
  25570. ))
  25571. characterMakers.push(() => makeCharacter(
  25572. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25573. {
  25574. front: {
  25575. height: math.unit(30, "m"),
  25576. weight: math.unit(22, "tonnes"),
  25577. name: "Front",
  25578. image: {
  25579. source: "./media/characters/elio/front.svg",
  25580. extra: 4582 / 3720,
  25581. bottom: 236 / 4828
  25582. }
  25583. },
  25584. },
  25585. [
  25586. {
  25587. name: "Normal",
  25588. height: math.unit(30, "meters"),
  25589. default: true
  25590. },
  25591. ]
  25592. ))
  25593. characterMakers.push(() => makeCharacter(
  25594. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25595. {
  25596. front: {
  25597. height: math.unit(6 + 3 / 12, "feet"),
  25598. weight: math.unit(120, "lb"),
  25599. name: "Front",
  25600. image: {
  25601. source: "./media/characters/azura/front.svg",
  25602. extra: 1149 / 1135,
  25603. bottom: 45 / 1194
  25604. }
  25605. },
  25606. frontClothed: {
  25607. height: math.unit(6 + 3 / 12, "feet"),
  25608. weight: math.unit(120, "lb"),
  25609. name: "Front (Clothed)",
  25610. image: {
  25611. source: "./media/characters/azura/front-clothed.svg",
  25612. extra: 1149 / 1135,
  25613. bottom: 45 / 1194
  25614. }
  25615. },
  25616. },
  25617. [
  25618. {
  25619. name: "Normal",
  25620. height: math.unit(6 + 3 / 12, "feet"),
  25621. default: true
  25622. },
  25623. {
  25624. name: "Macro",
  25625. height: math.unit(20 + 6 / 12, "feet")
  25626. },
  25627. {
  25628. name: "Megamacro",
  25629. height: math.unit(12, "miles")
  25630. },
  25631. {
  25632. name: "Gigamacro",
  25633. height: math.unit(10000, "miles")
  25634. },
  25635. {
  25636. name: "Teramacro",
  25637. height: math.unit(900000, "miles")
  25638. },
  25639. ]
  25640. ))
  25641. characterMakers.push(() => makeCharacter(
  25642. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25643. {
  25644. front: {
  25645. height: math.unit(12, "feet"),
  25646. weight: math.unit(1, "ton"),
  25647. capacity: math.unit(660000, "gallons"),
  25648. name: "Front",
  25649. image: {
  25650. source: "./media/characters/zeus/front.svg",
  25651. extra: 5005 / 4717,
  25652. bottom: 363 / 5388
  25653. }
  25654. },
  25655. },
  25656. [
  25657. {
  25658. name: "Normal",
  25659. height: math.unit(12, "feet")
  25660. },
  25661. {
  25662. name: "Preferred Size",
  25663. height: math.unit(0.5, "miles"),
  25664. default: true
  25665. },
  25666. {
  25667. name: "Giga Horse",
  25668. height: math.unit(300, "miles")
  25669. },
  25670. {
  25671. name: "Riding Planets",
  25672. height: math.unit(30, "megameters")
  25673. },
  25674. {
  25675. name: "Cosmic Giant",
  25676. height: math.unit(3, "zettameters")
  25677. },
  25678. {
  25679. name: "Breeding God",
  25680. height: math.unit(9.92e22, "yottameters")
  25681. },
  25682. ]
  25683. ))
  25684. characterMakers.push(() => makeCharacter(
  25685. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25686. {
  25687. side: {
  25688. height: math.unit(9, "feet"),
  25689. weight: math.unit(1500, "kg"),
  25690. name: "Side",
  25691. image: {
  25692. source: "./media/characters/fang/side.svg",
  25693. extra: 924 / 866,
  25694. bottom: 47.5 / 972.3
  25695. }
  25696. },
  25697. },
  25698. [
  25699. {
  25700. name: "Normal",
  25701. height: math.unit(9, "feet"),
  25702. default: true
  25703. },
  25704. {
  25705. name: "Macro",
  25706. height: math.unit(75 + 6 / 12, "feet")
  25707. },
  25708. {
  25709. name: "Teramacro",
  25710. height: math.unit(50000, "miles")
  25711. },
  25712. ]
  25713. ))
  25714. characterMakers.push(() => makeCharacter(
  25715. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25716. {
  25717. front: {
  25718. height: math.unit(10, "feet"),
  25719. weight: math.unit(2, "tons"),
  25720. name: "Front",
  25721. image: {
  25722. source: "./media/characters/rekhit/front.svg",
  25723. extra: 2796 / 2590,
  25724. bottom: 225 / 3022
  25725. }
  25726. },
  25727. },
  25728. [
  25729. {
  25730. name: "Normal",
  25731. height: math.unit(10, "feet"),
  25732. default: true
  25733. },
  25734. {
  25735. name: "Macro",
  25736. height: math.unit(500, "feet")
  25737. },
  25738. ]
  25739. ))
  25740. characterMakers.push(() => makeCharacter(
  25741. { name: "Dahlia Verrick" },
  25742. {
  25743. front: {
  25744. height: math.unit(7 + 6.451 / 12, "feet"),
  25745. weight: math.unit(310, "lb"),
  25746. name: "Front",
  25747. image: {
  25748. source: "./media/characters/dahlia-verrick/front.svg",
  25749. extra: 1488 / 1365,
  25750. bottom: 6.2 / 1495
  25751. }
  25752. },
  25753. back: {
  25754. height: math.unit(7 + 6.451 / 12, "feet"),
  25755. weight: math.unit(310, "lb"),
  25756. name: "Back",
  25757. image: {
  25758. source: "./media/characters/dahlia-verrick/back.svg",
  25759. extra: 1472 / 1351,
  25760. bottom: 5.28 / 1477
  25761. }
  25762. },
  25763. frontBusiness: {
  25764. height: math.unit(7 + 6.451 / 12, "feet"),
  25765. weight: math.unit(200, "lb"),
  25766. name: "Front (Business)",
  25767. image: {
  25768. source: "./media/characters/dahlia-verrick/front-business.svg",
  25769. extra: 1478 / 1381,
  25770. bottom: 5.5 / 1484
  25771. }
  25772. },
  25773. frontCasual: {
  25774. height: math.unit(7 + 6.451 / 12, "feet"),
  25775. weight: math.unit(200, "lb"),
  25776. name: "Front (Casual)",
  25777. image: {
  25778. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25779. extra: 1478 / 1381,
  25780. bottom: 5.5 / 1484
  25781. }
  25782. },
  25783. },
  25784. [
  25785. {
  25786. name: "Travel-Sized",
  25787. height: math.unit(7.45, "inches")
  25788. },
  25789. {
  25790. name: "Normal",
  25791. height: math.unit(7 + 6.451 / 12, "feet"),
  25792. default: true
  25793. },
  25794. {
  25795. name: "Hitting the Town",
  25796. height: math.unit(37 + 8 / 12, "feet")
  25797. },
  25798. {
  25799. name: "Stomp in the Suburbs",
  25800. height: math.unit(964 + 9.728 / 12, "feet")
  25801. },
  25802. {
  25803. name: "Sit on the City",
  25804. height: math.unit(61747 + 10.592 / 12, "feet")
  25805. },
  25806. {
  25807. name: "Glomp the Globe",
  25808. height: math.unit(252919327 + 4.832 / 12, "feet")
  25809. },
  25810. ]
  25811. ))
  25812. characterMakers.push(() => makeCharacter(
  25813. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25814. {
  25815. front: {
  25816. height: math.unit(6 + 4 / 12, "feet"),
  25817. weight: math.unit(320, "lb"),
  25818. name: "Front",
  25819. image: {
  25820. source: "./media/characters/balina-mahigan/front.svg",
  25821. extra: 447 / 428,
  25822. bottom: 18 / 466
  25823. }
  25824. },
  25825. back: {
  25826. height: math.unit(6 + 4 / 12, "feet"),
  25827. weight: math.unit(320, "lb"),
  25828. name: "Back",
  25829. image: {
  25830. source: "./media/characters/balina-mahigan/back.svg",
  25831. extra: 445 / 428,
  25832. bottom: 4.07 / 448
  25833. }
  25834. },
  25835. arm: {
  25836. height: math.unit(1.88, "feet"),
  25837. name: "Arm",
  25838. image: {
  25839. source: "./media/characters/balina-mahigan/arm.svg"
  25840. }
  25841. },
  25842. backPort: {
  25843. height: math.unit(0.685, "feet"),
  25844. name: "Back Port",
  25845. image: {
  25846. source: "./media/characters/balina-mahigan/back-port.svg"
  25847. }
  25848. },
  25849. hoofpaw: {
  25850. height: math.unit(1.41, "feet"),
  25851. name: "Hoofpaw",
  25852. image: {
  25853. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25854. }
  25855. },
  25856. leftHandBack: {
  25857. height: math.unit(0.938, "feet"),
  25858. name: "Left Hand (Back)",
  25859. image: {
  25860. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25861. }
  25862. },
  25863. leftHandFront: {
  25864. height: math.unit(0.938, "feet"),
  25865. name: "Left Hand (Front)",
  25866. image: {
  25867. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25868. }
  25869. },
  25870. rightHandBack: {
  25871. height: math.unit(0.95, "feet"),
  25872. name: "Right Hand (Back)",
  25873. image: {
  25874. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25875. }
  25876. },
  25877. rightHandFront: {
  25878. height: math.unit(0.95, "feet"),
  25879. name: "Right Hand (Front)",
  25880. image: {
  25881. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25882. }
  25883. },
  25884. },
  25885. [
  25886. {
  25887. name: "Normal",
  25888. height: math.unit(6 + 4 / 12, "feet"),
  25889. default: true
  25890. },
  25891. ]
  25892. ))
  25893. characterMakers.push(() => makeCharacter(
  25894. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25895. {
  25896. front: {
  25897. height: math.unit(6, "feet"),
  25898. weight: math.unit(320, "lb"),
  25899. name: "Front",
  25900. image: {
  25901. source: "./media/characters/balina-mejeri/front.svg",
  25902. extra: 517 / 488,
  25903. bottom: 44.2 / 561
  25904. }
  25905. },
  25906. },
  25907. [
  25908. {
  25909. name: "Normal",
  25910. height: math.unit(6 + 4 / 12, "feet")
  25911. },
  25912. {
  25913. name: "Business",
  25914. height: math.unit(155, "feet"),
  25915. default: true
  25916. },
  25917. ]
  25918. ))
  25919. characterMakers.push(() => makeCharacter(
  25920. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25921. {
  25922. kneeling: {
  25923. height: math.unit(6 + 4 / 12, "feet"),
  25924. weight: math.unit(300 * 20, "lb"),
  25925. name: "Kneeling",
  25926. image: {
  25927. source: "./media/characters/balbarian/kneeling.svg",
  25928. extra: 922 / 862,
  25929. bottom: 42.4 / 965
  25930. }
  25931. },
  25932. },
  25933. [
  25934. {
  25935. name: "Normal",
  25936. height: math.unit(6 + 4 / 12, "feet")
  25937. },
  25938. {
  25939. name: "Treasured",
  25940. height: math.unit(18 + 9 / 12, "feet"),
  25941. default: true
  25942. },
  25943. {
  25944. name: "Macro",
  25945. height: math.unit(900, "feet")
  25946. },
  25947. ]
  25948. ))
  25949. characterMakers.push(() => makeCharacter(
  25950. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25951. {
  25952. front: {
  25953. height: math.unit(6 + 4 / 12, "feet"),
  25954. weight: math.unit(325, "lb"),
  25955. name: "Front",
  25956. image: {
  25957. source: "./media/characters/balina-amarini/front.svg",
  25958. extra: 415 / 403,
  25959. bottom: 19 / 433.4
  25960. }
  25961. },
  25962. back: {
  25963. height: math.unit(6 + 4 / 12, "feet"),
  25964. weight: math.unit(325, "lb"),
  25965. name: "Back",
  25966. image: {
  25967. source: "./media/characters/balina-amarini/back.svg",
  25968. extra: 415 / 403,
  25969. bottom: 13.5 / 432
  25970. }
  25971. },
  25972. overdrive: {
  25973. height: math.unit(6 + 4 / 12, "feet"),
  25974. weight: math.unit(400, "lb"),
  25975. name: "Overdrive",
  25976. image: {
  25977. source: "./media/characters/balina-amarini/overdrive.svg",
  25978. extra: 269 / 259,
  25979. bottom: 12 / 282
  25980. }
  25981. },
  25982. },
  25983. [
  25984. {
  25985. name: "Boom",
  25986. height: math.unit(9 + 10 / 12, "feet"),
  25987. default: true
  25988. },
  25989. {
  25990. name: "Macro",
  25991. height: math.unit(280, "feet")
  25992. },
  25993. ]
  25994. ))
  25995. characterMakers.push(() => makeCharacter(
  25996. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25997. {
  25998. goddess: {
  25999. height: math.unit(600, "feet"),
  26000. weight: math.unit(2000000, "tons"),
  26001. name: "Goddess",
  26002. image: {
  26003. source: "./media/characters/lady-kubwa/goddess.svg",
  26004. extra: 1240.5 / 1223,
  26005. bottom: 22 / 1263
  26006. }
  26007. },
  26008. goddesser: {
  26009. height: math.unit(900, "feet"),
  26010. weight: math.unit(20000000, "lb"),
  26011. name: "Goddess-er",
  26012. image: {
  26013. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26014. extra: 899 / 888,
  26015. bottom: 12.6 / 912
  26016. }
  26017. },
  26018. },
  26019. [
  26020. {
  26021. name: "Macro",
  26022. height: math.unit(600, "feet"),
  26023. default: true
  26024. },
  26025. {
  26026. name: "Megamacro",
  26027. height: math.unit(250, "miles")
  26028. },
  26029. ]
  26030. ))
  26031. characterMakers.push(() => makeCharacter(
  26032. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26033. {
  26034. front: {
  26035. height: math.unit(7 + 7 / 12, "feet"),
  26036. weight: math.unit(250, "lb"),
  26037. name: "Front",
  26038. image: {
  26039. source: "./media/characters/tala-grovehorn/front.svg",
  26040. extra: 2636 / 2525,
  26041. bottom: 147 / 2781
  26042. }
  26043. },
  26044. back: {
  26045. height: math.unit(7 + 7 / 12, "feet"),
  26046. weight: math.unit(250, "lb"),
  26047. name: "Back",
  26048. image: {
  26049. source: "./media/characters/tala-grovehorn/back.svg",
  26050. extra: 2635 / 2539,
  26051. bottom: 100 / 2732.8
  26052. }
  26053. },
  26054. mouth: {
  26055. height: math.unit(1.15, "feet"),
  26056. name: "Mouth",
  26057. image: {
  26058. source: "./media/characters/tala-grovehorn/mouth.svg"
  26059. }
  26060. },
  26061. dick: {
  26062. height: math.unit(2.36, "feet"),
  26063. name: "Dick",
  26064. image: {
  26065. source: "./media/characters/tala-grovehorn/dick.svg"
  26066. }
  26067. },
  26068. slit: {
  26069. height: math.unit(0.61, "feet"),
  26070. name: "Slit",
  26071. image: {
  26072. source: "./media/characters/tala-grovehorn/slit.svg"
  26073. }
  26074. },
  26075. },
  26076. [
  26077. ]
  26078. ))
  26079. characterMakers.push(() => makeCharacter(
  26080. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26081. {
  26082. front: {
  26083. height: math.unit(7 + 7 / 12, "feet"),
  26084. weight: math.unit(225, "lb"),
  26085. name: "Front",
  26086. image: {
  26087. source: "./media/characters/epona/front.svg",
  26088. extra: 2445 / 2290,
  26089. bottom: 251 / 2696
  26090. }
  26091. },
  26092. back: {
  26093. height: math.unit(7 + 7 / 12, "feet"),
  26094. weight: math.unit(225, "lb"),
  26095. name: "Back",
  26096. image: {
  26097. source: "./media/characters/epona/back.svg",
  26098. extra: 2546 / 2408,
  26099. bottom: 44 / 2589
  26100. }
  26101. },
  26102. genitals: {
  26103. height: math.unit(1.5, "feet"),
  26104. name: "Genitals",
  26105. image: {
  26106. source: "./media/characters/epona/genitals.svg"
  26107. }
  26108. },
  26109. },
  26110. [
  26111. {
  26112. name: "Normal",
  26113. height: math.unit(7 + 7 / 12, "feet"),
  26114. default: true
  26115. },
  26116. ]
  26117. ))
  26118. characterMakers.push(() => makeCharacter(
  26119. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26120. {
  26121. front: {
  26122. height: math.unit(7, "feet"),
  26123. weight: math.unit(518, "lb"),
  26124. name: "Front",
  26125. image: {
  26126. source: "./media/characters/avia-bloodbourn/front.svg",
  26127. extra: 1466 / 1350,
  26128. bottom: 65 / 1527
  26129. }
  26130. },
  26131. },
  26132. [
  26133. ]
  26134. ))
  26135. characterMakers.push(() => makeCharacter(
  26136. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26137. {
  26138. front: {
  26139. height: math.unit(9.35, "feet"),
  26140. weight: math.unit(600, "lb"),
  26141. name: "Front",
  26142. image: {
  26143. source: "./media/characters/amera/front.svg",
  26144. extra: 891 / 818,
  26145. bottom: 30 / 922.7
  26146. }
  26147. },
  26148. back: {
  26149. height: math.unit(9.35, "feet"),
  26150. weight: math.unit(600, "lb"),
  26151. name: "Back",
  26152. image: {
  26153. source: "./media/characters/amera/back.svg",
  26154. extra: 876 / 824,
  26155. bottom: 6.8 / 884
  26156. }
  26157. },
  26158. dick: {
  26159. height: math.unit(2.14, "feet"),
  26160. name: "Dick",
  26161. image: {
  26162. source: "./media/characters/amera/dick.svg"
  26163. }
  26164. },
  26165. },
  26166. [
  26167. {
  26168. name: "Normal",
  26169. height: math.unit(9.35, "feet"),
  26170. default: true
  26171. },
  26172. ]
  26173. ))
  26174. characterMakers.push(() => makeCharacter(
  26175. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26176. {
  26177. kneeling: {
  26178. height: math.unit(3 + 4 / 12, "feet"),
  26179. weight: math.unit(90, "lb"),
  26180. name: "Kneeling",
  26181. image: {
  26182. source: "./media/characters/rosewen/kneeling.svg",
  26183. extra: 1835 / 1571,
  26184. bottom: 27.7 / 1862
  26185. }
  26186. },
  26187. },
  26188. [
  26189. {
  26190. name: "Normal",
  26191. height: math.unit(3 + 4 / 12, "feet"),
  26192. default: true
  26193. },
  26194. ]
  26195. ))
  26196. characterMakers.push(() => makeCharacter(
  26197. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26198. {
  26199. front: {
  26200. height: math.unit(5 + 10 / 12, "feet"),
  26201. weight: math.unit(200, "lb"),
  26202. name: "Front",
  26203. image: {
  26204. source: "./media/characters/sabah/front.svg",
  26205. extra: 849 / 763,
  26206. bottom: 33.9 / 881
  26207. }
  26208. },
  26209. },
  26210. [
  26211. {
  26212. name: "Normal",
  26213. height: math.unit(5 + 10 / 12, "feet"),
  26214. default: true
  26215. },
  26216. ]
  26217. ))
  26218. characterMakers.push(() => makeCharacter(
  26219. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26220. {
  26221. front: {
  26222. height: math.unit(3 + 5 / 12, "feet"),
  26223. weight: math.unit(40, "kg"),
  26224. name: "Front",
  26225. image: {
  26226. source: "./media/characters/purple-flame/front.svg",
  26227. extra: 1577 / 1412,
  26228. bottom: 97 / 1694
  26229. }
  26230. },
  26231. frontDressed: {
  26232. height: math.unit(3 + 5 / 12, "feet"),
  26233. weight: math.unit(40, "kg"),
  26234. name: "Front (Dressed)",
  26235. image: {
  26236. source: "./media/characters/purple-flame/front-dressed.svg",
  26237. extra: 1577 / 1412,
  26238. bottom: 97 / 1694
  26239. }
  26240. },
  26241. headphones: {
  26242. height: math.unit(0.85, "feet"),
  26243. name: "Headphones",
  26244. image: {
  26245. source: "./media/characters/purple-flame/headphones.svg"
  26246. }
  26247. },
  26248. },
  26249. [
  26250. {
  26251. name: "Really Small",
  26252. height: math.unit(5, "cm")
  26253. },
  26254. {
  26255. name: "Micro",
  26256. height: math.unit(1 + 5 / 12, "feet")
  26257. },
  26258. {
  26259. name: "Normal",
  26260. height: math.unit(3 + 5 / 12, "feet"),
  26261. default: true
  26262. },
  26263. {
  26264. name: "Minimacro",
  26265. height: math.unit(125, "feet")
  26266. },
  26267. {
  26268. name: "Macro",
  26269. height: math.unit(0.5, "miles")
  26270. },
  26271. {
  26272. name: "Megamacro",
  26273. height: math.unit(50, "miles")
  26274. },
  26275. {
  26276. name: "Gigantic",
  26277. height: math.unit(750, "miles")
  26278. },
  26279. {
  26280. name: "Planetary",
  26281. height: math.unit(15000, "miles")
  26282. },
  26283. ]
  26284. ))
  26285. characterMakers.push(() => makeCharacter(
  26286. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26287. {
  26288. front: {
  26289. height: math.unit(14, "feet"),
  26290. weight: math.unit(959, "lb"),
  26291. name: "Front",
  26292. image: {
  26293. source: "./media/characters/arsenal/front.svg",
  26294. extra: 2357 / 2157,
  26295. bottom: 93 / 2458
  26296. }
  26297. },
  26298. },
  26299. [
  26300. {
  26301. name: "Normal",
  26302. height: math.unit(14, "feet"),
  26303. default: true
  26304. },
  26305. ]
  26306. ))
  26307. characterMakers.push(() => makeCharacter(
  26308. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26309. {
  26310. front: {
  26311. height: math.unit(6, "feet"),
  26312. weight: math.unit(150, "lb"),
  26313. name: "Front",
  26314. image: {
  26315. source: "./media/characters/adira/front.svg",
  26316. extra: 1078 / 1029,
  26317. bottom: 87 / 1166
  26318. }
  26319. },
  26320. },
  26321. [
  26322. {
  26323. name: "Micro",
  26324. height: math.unit(4, "inches"),
  26325. default: true
  26326. },
  26327. {
  26328. name: "Macro",
  26329. height: math.unit(50, "feet")
  26330. },
  26331. ]
  26332. ))
  26333. characterMakers.push(() => makeCharacter(
  26334. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26335. {
  26336. front: {
  26337. height: math.unit(16, "feet"),
  26338. weight: math.unit(1000, "lb"),
  26339. name: "Front",
  26340. image: {
  26341. source: "./media/characters/grim/front.svg",
  26342. extra: 622 / 614,
  26343. bottom: 18.1 / 642
  26344. }
  26345. },
  26346. back: {
  26347. height: math.unit(16, "feet"),
  26348. weight: math.unit(1000, "lb"),
  26349. name: "Back",
  26350. image: {
  26351. source: "./media/characters/grim/back.svg",
  26352. extra: 610.6 / 602,
  26353. bottom: 40.8 / 652
  26354. }
  26355. },
  26356. hunched: {
  26357. height: math.unit(9.75, "feet"),
  26358. weight: math.unit(1000, "lb"),
  26359. name: "Hunched",
  26360. image: {
  26361. source: "./media/characters/grim/hunched.svg",
  26362. extra: 304 / 297,
  26363. bottom: 35.4 / 394
  26364. }
  26365. },
  26366. },
  26367. [
  26368. {
  26369. name: "Normal",
  26370. height: math.unit(16, "feet"),
  26371. default: true
  26372. },
  26373. ]
  26374. ))
  26375. characterMakers.push(() => makeCharacter(
  26376. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26377. {
  26378. front: {
  26379. height: math.unit(2.3, "meters"),
  26380. weight: math.unit(300, "lb"),
  26381. name: "Front",
  26382. image: {
  26383. source: "./media/characters/sinja/front-sfw.svg",
  26384. extra: 1393 / 1294,
  26385. bottom: 70 / 1463
  26386. }
  26387. },
  26388. frontNsfw: {
  26389. height: math.unit(2.3, "meters"),
  26390. weight: math.unit(300, "lb"),
  26391. name: "Front (NSFW)",
  26392. image: {
  26393. source: "./media/characters/sinja/front-nsfw.svg",
  26394. extra: 1393 / 1294,
  26395. bottom: 70 / 1463
  26396. }
  26397. },
  26398. back: {
  26399. height: math.unit(2.3, "meters"),
  26400. weight: math.unit(300, "lb"),
  26401. name: "Back",
  26402. image: {
  26403. source: "./media/characters/sinja/back.svg",
  26404. extra: 1393 / 1294,
  26405. bottom: 70 / 1463
  26406. }
  26407. },
  26408. head: {
  26409. height: math.unit(1.771, "feet"),
  26410. name: "Head",
  26411. image: {
  26412. source: "./media/characters/sinja/head.svg"
  26413. }
  26414. },
  26415. slit: {
  26416. height: math.unit(0.8, "feet"),
  26417. name: "Slit",
  26418. image: {
  26419. source: "./media/characters/sinja/slit.svg"
  26420. }
  26421. },
  26422. },
  26423. [
  26424. {
  26425. name: "Normal",
  26426. height: math.unit(2.3, "meters")
  26427. },
  26428. {
  26429. name: "Macro",
  26430. height: math.unit(91, "meters"),
  26431. default: true
  26432. },
  26433. {
  26434. name: "Megamacro",
  26435. height: math.unit(91440, "meters")
  26436. },
  26437. {
  26438. name: "Gigamacro",
  26439. height: math.unit(60960000, "meters")
  26440. },
  26441. {
  26442. name: "Teramacro",
  26443. height: math.unit(9144000000, "meters")
  26444. },
  26445. ]
  26446. ))
  26447. characterMakers.push(() => makeCharacter(
  26448. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26449. {
  26450. front: {
  26451. height: math.unit(1.7, "meters"),
  26452. weight: math.unit(130, "lb"),
  26453. name: "Front",
  26454. image: {
  26455. source: "./media/characters/kyu/front.svg",
  26456. extra: 415 / 395,
  26457. bottom: 5 / 420
  26458. }
  26459. },
  26460. head: {
  26461. height: math.unit(1.75, "feet"),
  26462. name: "Head",
  26463. image: {
  26464. source: "./media/characters/kyu/head.svg"
  26465. }
  26466. },
  26467. foot: {
  26468. height: math.unit(0.81, "feet"),
  26469. name: "Foot",
  26470. image: {
  26471. source: "./media/characters/kyu/foot.svg"
  26472. }
  26473. },
  26474. },
  26475. [
  26476. {
  26477. name: "Normal",
  26478. height: math.unit(1.7, "meters")
  26479. },
  26480. {
  26481. name: "Macro",
  26482. height: math.unit(131, "feet"),
  26483. default: true
  26484. },
  26485. {
  26486. name: "Megamacro",
  26487. height: math.unit(91440, "meters")
  26488. },
  26489. {
  26490. name: "Gigamacro",
  26491. height: math.unit(60960000, "meters")
  26492. },
  26493. {
  26494. name: "Teramacro",
  26495. height: math.unit(9144000000, "meters")
  26496. },
  26497. ]
  26498. ))
  26499. characterMakers.push(() => makeCharacter(
  26500. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26501. {
  26502. front: {
  26503. height: math.unit(7 + 1 / 12, "feet"),
  26504. weight: math.unit(250, "lb"),
  26505. name: "Front",
  26506. image: {
  26507. source: "./media/characters/joey/front.svg",
  26508. extra: 1791 / 1537,
  26509. bottom: 28 / 1816
  26510. }
  26511. },
  26512. },
  26513. [
  26514. {
  26515. name: "Micro",
  26516. height: math.unit(3, "inches")
  26517. },
  26518. {
  26519. name: "Normal",
  26520. height: math.unit(7 + 1 / 12, "feet"),
  26521. default: true
  26522. },
  26523. ]
  26524. ))
  26525. characterMakers.push(() => makeCharacter(
  26526. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26527. {
  26528. front: {
  26529. height: math.unit(165, "cm"),
  26530. weight: math.unit(140, "lb"),
  26531. name: "Front",
  26532. image: {
  26533. source: "./media/characters/sam-evans/front.svg",
  26534. extra: 3417 / 3230,
  26535. bottom: 41.3 / 3417
  26536. }
  26537. },
  26538. frontSixTails: {
  26539. height: math.unit(165, "cm"),
  26540. weight: math.unit(140, "lb"),
  26541. name: "Front-six-tails",
  26542. image: {
  26543. source: "./media/characters/sam-evans/front-six-tails.svg",
  26544. extra: 3417 / 3230,
  26545. bottom: 41.3 / 3417
  26546. }
  26547. },
  26548. back: {
  26549. height: math.unit(165, "cm"),
  26550. weight: math.unit(140, "lb"),
  26551. name: "Back",
  26552. image: {
  26553. source: "./media/characters/sam-evans/back.svg",
  26554. extra: 3227 / 3032,
  26555. bottom: 6.8 / 3234
  26556. }
  26557. },
  26558. face: {
  26559. height: math.unit(0.68, "feet"),
  26560. name: "Face",
  26561. image: {
  26562. source: "./media/characters/sam-evans/face.svg"
  26563. }
  26564. },
  26565. },
  26566. [
  26567. {
  26568. name: "Normal",
  26569. height: math.unit(165, "cm"),
  26570. default: true
  26571. },
  26572. {
  26573. name: "Macro",
  26574. height: math.unit(100, "meters")
  26575. },
  26576. {
  26577. name: "Macro+",
  26578. height: math.unit(800, "meters")
  26579. },
  26580. {
  26581. name: "Macro++",
  26582. height: math.unit(3, "km")
  26583. },
  26584. {
  26585. name: "Macro+++",
  26586. height: math.unit(30, "km")
  26587. },
  26588. ]
  26589. ))
  26590. characterMakers.push(() => makeCharacter(
  26591. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26592. {
  26593. front: {
  26594. height: math.unit(10, "feet"),
  26595. weight: math.unit(750, "lb"),
  26596. name: "Front",
  26597. image: {
  26598. source: "./media/characters/juliet-a/front.svg",
  26599. extra: 1766 / 1720,
  26600. bottom: 43 / 1809
  26601. }
  26602. },
  26603. back: {
  26604. height: math.unit(10, "feet"),
  26605. weight: math.unit(750, "lb"),
  26606. name: "Back",
  26607. image: {
  26608. source: "./media/characters/juliet-a/back.svg",
  26609. extra: 1781 / 1734,
  26610. bottom: 35 / 1810,
  26611. }
  26612. },
  26613. },
  26614. [
  26615. {
  26616. name: "Normal",
  26617. height: math.unit(10, "feet"),
  26618. default: true
  26619. },
  26620. {
  26621. name: "Dragon Form",
  26622. height: math.unit(250, "feet")
  26623. },
  26624. {
  26625. name: "Macro",
  26626. height: math.unit(1000, "feet")
  26627. },
  26628. {
  26629. name: "Megamacro",
  26630. height: math.unit(10000, "feet")
  26631. }
  26632. ]
  26633. ))
  26634. characterMakers.push(() => makeCharacter(
  26635. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26636. {
  26637. regular: {
  26638. height: math.unit(7 + 3 / 12, "feet"),
  26639. weight: math.unit(260, "lb"),
  26640. name: "Regular",
  26641. image: {
  26642. source: "./media/characters/wild/regular.svg",
  26643. extra: 97.45 / 92,
  26644. bottom: 6.8 / 104.3
  26645. }
  26646. },
  26647. biggums: {
  26648. height: math.unit(8 + 6 / 12, "feet"),
  26649. weight: math.unit(425, "lb"),
  26650. name: "Biggums",
  26651. image: {
  26652. source: "./media/characters/wild/biggums.svg",
  26653. extra: 97.45 / 92,
  26654. bottom: 7.5 / 132.34
  26655. }
  26656. },
  26657. mawRegular: {
  26658. height: math.unit(1.24, "feet"),
  26659. name: "Maw (Regular)",
  26660. image: {
  26661. source: "./media/characters/wild/maw.svg"
  26662. }
  26663. },
  26664. mawBiggums: {
  26665. height: math.unit(1.47, "feet"),
  26666. name: "Maw (Biggums)",
  26667. image: {
  26668. source: "./media/characters/wild/maw.svg"
  26669. }
  26670. },
  26671. },
  26672. [
  26673. {
  26674. name: "Normal",
  26675. height: math.unit(7 + 3 / 12, "feet"),
  26676. default: true
  26677. },
  26678. ]
  26679. ))
  26680. characterMakers.push(() => makeCharacter(
  26681. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26682. {
  26683. front: {
  26684. height: math.unit(2.5, "meters"),
  26685. weight: math.unit(200, "kg"),
  26686. name: "Front",
  26687. image: {
  26688. source: "./media/characters/vidar/front.svg",
  26689. extra: 2994 / 2795,
  26690. bottom: 56 / 3061
  26691. }
  26692. },
  26693. back: {
  26694. height: math.unit(2.5, "meters"),
  26695. weight: math.unit(200, "kg"),
  26696. name: "Back",
  26697. image: {
  26698. source: "./media/characters/vidar/back.svg",
  26699. extra: 3131 / 2928,
  26700. bottom: 13.5 / 3141.5
  26701. }
  26702. },
  26703. feral: {
  26704. height: math.unit(2.5, "meters"),
  26705. weight: math.unit(2000, "kg"),
  26706. name: "Feral",
  26707. image: {
  26708. source: "./media/characters/vidar/feral.svg",
  26709. extra: 2790 / 1765,
  26710. bottom: 6 / 2796
  26711. }
  26712. },
  26713. },
  26714. [
  26715. {
  26716. name: "Normal",
  26717. height: math.unit(2.5, "meters"),
  26718. default: true
  26719. },
  26720. {
  26721. name: "Macro",
  26722. height: math.unit(100, "meters")
  26723. },
  26724. ]
  26725. ))
  26726. characterMakers.push(() => makeCharacter(
  26727. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26728. {
  26729. front: {
  26730. height: math.unit(5 + 9 / 12, "feet"),
  26731. weight: math.unit(120, "lb"),
  26732. name: "Front",
  26733. image: {
  26734. source: "./media/characters/ash/front.svg",
  26735. extra: 2189 / 1961,
  26736. bottom: 5.2 / 2194
  26737. }
  26738. },
  26739. },
  26740. [
  26741. {
  26742. name: "Normal",
  26743. height: math.unit(5 + 9 / 12, "feet"),
  26744. default: true
  26745. },
  26746. ]
  26747. ))
  26748. characterMakers.push(() => makeCharacter(
  26749. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26750. {
  26751. front: {
  26752. height: math.unit(9, "feet"),
  26753. weight: math.unit(10000, "lb"),
  26754. name: "Front",
  26755. image: {
  26756. source: "./media/characters/gygabite/front.svg",
  26757. bottom: 31.7 / 537.8,
  26758. extra: 505 / 370
  26759. }
  26760. },
  26761. },
  26762. [
  26763. {
  26764. name: "Normal",
  26765. height: math.unit(9, "feet"),
  26766. default: true
  26767. },
  26768. ]
  26769. ))
  26770. characterMakers.push(() => makeCharacter(
  26771. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26772. {
  26773. front: {
  26774. height: math.unit(12, "feet"),
  26775. weight: math.unit(35000, "lb"),
  26776. name: "Front",
  26777. image: {
  26778. source: "./media/characters/p0tat0/front.svg",
  26779. extra: 1065 / 921,
  26780. bottom: 55.7 / 1121.25
  26781. }
  26782. },
  26783. },
  26784. [
  26785. {
  26786. name: "Normal",
  26787. height: math.unit(12, "feet"),
  26788. default: true
  26789. },
  26790. ]
  26791. ))
  26792. characterMakers.push(() => makeCharacter(
  26793. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26794. {
  26795. side: {
  26796. height: math.unit(6.5, "feet"),
  26797. weight: math.unit(800, "lb"),
  26798. name: "Side",
  26799. image: {
  26800. source: "./media/characters/dusk/side.svg",
  26801. extra: 615 / 373,
  26802. bottom: 53 / 664
  26803. }
  26804. },
  26805. sitting: {
  26806. height: math.unit(7, "feet"),
  26807. weight: math.unit(800, "lb"),
  26808. name: "Sitting",
  26809. image: {
  26810. source: "./media/characters/dusk/sitting.svg",
  26811. extra: 753 / 425,
  26812. bottom: 33 / 774
  26813. }
  26814. },
  26815. head: {
  26816. height: math.unit(6.1, "feet"),
  26817. name: "Head",
  26818. image: {
  26819. source: "./media/characters/dusk/head.svg"
  26820. }
  26821. },
  26822. },
  26823. [
  26824. {
  26825. name: "Normal",
  26826. height: math.unit(7, "feet"),
  26827. default: true
  26828. },
  26829. ]
  26830. ))
  26831. characterMakers.push(() => makeCharacter(
  26832. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26833. {
  26834. front: {
  26835. height: math.unit(15, "feet"),
  26836. weight: math.unit(7000, "lb"),
  26837. name: "Front",
  26838. image: {
  26839. source: "./media/characters/jay-direwolf/front.svg",
  26840. extra: 1810 / 1732,
  26841. bottom: 66 / 1892
  26842. }
  26843. },
  26844. },
  26845. [
  26846. {
  26847. name: "Normal",
  26848. height: math.unit(15, "feet"),
  26849. default: true
  26850. },
  26851. ]
  26852. ))
  26853. characterMakers.push(() => makeCharacter(
  26854. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26855. {
  26856. front: {
  26857. height: math.unit(4 + 9 / 12, "feet"),
  26858. weight: math.unit(130, "lb"),
  26859. name: "Front",
  26860. image: {
  26861. source: "./media/characters/anchovie/front.svg",
  26862. extra: 382 / 350,
  26863. bottom: 25 / 409
  26864. }
  26865. },
  26866. back: {
  26867. height: math.unit(4 + 9 / 12, "feet"),
  26868. weight: math.unit(130, "lb"),
  26869. name: "Back",
  26870. image: {
  26871. source: "./media/characters/anchovie/back.svg",
  26872. extra: 385 / 352,
  26873. bottom: 16.6 / 402
  26874. }
  26875. },
  26876. frontDressed: {
  26877. height: math.unit(4 + 9 / 12, "feet"),
  26878. weight: math.unit(130, "lb"),
  26879. name: "Front (Dressed)",
  26880. image: {
  26881. source: "./media/characters/anchovie/front-dressed.svg",
  26882. extra: 382 / 350,
  26883. bottom: 25 / 409
  26884. }
  26885. },
  26886. backDressed: {
  26887. height: math.unit(4 + 9 / 12, "feet"),
  26888. weight: math.unit(130, "lb"),
  26889. name: "Back (Dressed)",
  26890. image: {
  26891. source: "./media/characters/anchovie/back-dressed.svg",
  26892. extra: 385 / 352,
  26893. bottom: 16.6 / 402
  26894. }
  26895. },
  26896. },
  26897. [
  26898. {
  26899. name: "Micro",
  26900. height: math.unit(6.4, "inches")
  26901. },
  26902. {
  26903. name: "Normal",
  26904. height: math.unit(4 + 9 / 12, "feet"),
  26905. default: true
  26906. },
  26907. ]
  26908. ))
  26909. characterMakers.push(() => makeCharacter(
  26910. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26911. {
  26912. front: {
  26913. height: math.unit(2, "meters"),
  26914. weight: math.unit(180, "lb"),
  26915. name: "Front",
  26916. image: {
  26917. source: "./media/characters/acidrenamon/front.svg",
  26918. extra: 987 / 890,
  26919. bottom: 22.8 / 1009
  26920. }
  26921. },
  26922. back: {
  26923. height: math.unit(2, "meters"),
  26924. weight: math.unit(180, "lb"),
  26925. name: "Back",
  26926. image: {
  26927. source: "./media/characters/acidrenamon/back.svg",
  26928. extra: 983 / 891,
  26929. bottom: 8.4 / 992
  26930. }
  26931. },
  26932. head: {
  26933. height: math.unit(1.92, "feet"),
  26934. name: "Head",
  26935. image: {
  26936. source: "./media/characters/acidrenamon/head.svg"
  26937. }
  26938. },
  26939. rump: {
  26940. height: math.unit(1.72, "feet"),
  26941. name: "Rump",
  26942. image: {
  26943. source: "./media/characters/acidrenamon/rump.svg"
  26944. }
  26945. },
  26946. tail: {
  26947. height: math.unit(4.2, "feet"),
  26948. name: "Tail",
  26949. image: {
  26950. source: "./media/characters/acidrenamon/tail.svg"
  26951. }
  26952. },
  26953. },
  26954. [
  26955. {
  26956. name: "Normal",
  26957. height: math.unit(2, "meters"),
  26958. default: true
  26959. },
  26960. {
  26961. name: "Minimacro",
  26962. height: math.unit(7, "meters")
  26963. },
  26964. {
  26965. name: "Macro",
  26966. height: math.unit(200, "meters")
  26967. },
  26968. {
  26969. name: "Gigamacro",
  26970. height: math.unit(0.2, "earths")
  26971. },
  26972. ]
  26973. ))
  26974. characterMakers.push(() => makeCharacter(
  26975. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26976. {
  26977. front: {
  26978. height: math.unit(6, "feet"),
  26979. weight: math.unit(150, "lb"),
  26980. name: "Front",
  26981. image: {
  26982. source: "./media/characters/kenzie-lee/front.svg",
  26983. extra: 1525 / 1465,
  26984. bottom: 45 / 1570
  26985. }
  26986. },
  26987. side: {
  26988. height: math.unit(6, "feet"),
  26989. weight: math.unit(150, "lb"),
  26990. name: "Side",
  26991. image: {
  26992. source: "./media/characters/kenzie-lee/side.svg",
  26993. extra: 5505 / 5383,
  26994. bottom: 60 / 5573
  26995. }
  26996. },
  26997. paw: {
  26998. height: math.unit(0.57, "feet"),
  26999. name: "Paw",
  27000. image: {
  27001. source: "./media/characters/kenzie-lee/paw.svg"
  27002. }
  27003. },
  27004. },
  27005. [
  27006. {
  27007. name: "Normal",
  27008. height: math.unit(152, "feet"),
  27009. default: true
  27010. },
  27011. {
  27012. name: "Megamacro",
  27013. height: math.unit(7, "miles")
  27014. },
  27015. {
  27016. name: "Gigamacro",
  27017. height: math.unit(8000, "miles")
  27018. },
  27019. ]
  27020. ))
  27021. characterMakers.push(() => makeCharacter(
  27022. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27023. {
  27024. side: {
  27025. height: math.unit(6, "feet"),
  27026. weight: math.unit(150, "lb"),
  27027. name: "Side",
  27028. image: {
  27029. source: "./media/characters/withers/side.svg",
  27030. extra: 1830 / 1728,
  27031. bottom: 96 / 1927
  27032. }
  27033. },
  27034. front: {
  27035. height: math.unit(6, "feet"),
  27036. weight: math.unit(150, "lb"),
  27037. name: "Front",
  27038. image: {
  27039. source: "./media/characters/withers/front.svg",
  27040. extra: 1514 / 1438,
  27041. bottom: 118 / 1632
  27042. }
  27043. },
  27044. },
  27045. [
  27046. {
  27047. name: "Macro",
  27048. height: math.unit(168, "feet"),
  27049. default: true
  27050. },
  27051. {
  27052. name: "Megamacro",
  27053. height: math.unit(15, "miles")
  27054. }
  27055. ]
  27056. ))
  27057. characterMakers.push(() => makeCharacter(
  27058. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27059. {
  27060. front: {
  27061. height: math.unit(6 + 7 / 12, "feet"),
  27062. weight: math.unit(250, "lb"),
  27063. name: "Front",
  27064. image: {
  27065. source: "./media/characters/nemoskii/front.svg",
  27066. extra: 2270 / 1734,
  27067. bottom: 86 / 2354
  27068. }
  27069. },
  27070. back: {
  27071. height: math.unit(6 + 7 / 12, "feet"),
  27072. weight: math.unit(250, "lb"),
  27073. name: "Back",
  27074. image: {
  27075. source: "./media/characters/nemoskii/back.svg",
  27076. extra: 1845 / 1788,
  27077. bottom: 10.5 / 1852
  27078. }
  27079. },
  27080. head: {
  27081. height: math.unit(1.31, "feet"),
  27082. name: "Head",
  27083. image: {
  27084. source: "./media/characters/nemoskii/head.svg"
  27085. }
  27086. },
  27087. },
  27088. [
  27089. {
  27090. name: "Micro",
  27091. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27092. },
  27093. {
  27094. name: "Normal",
  27095. height: math.unit(6 + 7 / 12, "feet"),
  27096. default: true
  27097. },
  27098. {
  27099. name: "Macro",
  27100. height: math.unit((6 + 7 / 12) * 150, "feet")
  27101. },
  27102. {
  27103. name: "Macro+",
  27104. height: math.unit((6 + 7 / 12) * 500, "feet")
  27105. },
  27106. {
  27107. name: "Megamacro",
  27108. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27109. },
  27110. ]
  27111. ))
  27112. characterMakers.push(() => makeCharacter(
  27113. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27114. {
  27115. front: {
  27116. height: math.unit(1, "mile"),
  27117. weight: math.unit(265261.9, "lb"),
  27118. name: "Front",
  27119. image: {
  27120. source: "./media/characters/shui/front.svg",
  27121. extra: 1633 / 1564,
  27122. bottom: 91.5 / 1726
  27123. }
  27124. },
  27125. },
  27126. [
  27127. {
  27128. name: "Macro",
  27129. height: math.unit(1, "mile"),
  27130. default: true
  27131. },
  27132. ]
  27133. ))
  27134. characterMakers.push(() => makeCharacter(
  27135. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27136. {
  27137. front: {
  27138. height: math.unit(12 + 6 / 12, "feet"),
  27139. weight: math.unit(1342, "lb"),
  27140. name: "Front",
  27141. image: {
  27142. source: "./media/characters/arokh-takakura/front.svg",
  27143. extra: 1089 / 1043,
  27144. bottom: 77.4 / 1176.7
  27145. }
  27146. },
  27147. back: {
  27148. height: math.unit(12 + 6 / 12, "feet"),
  27149. weight: math.unit(1342, "lb"),
  27150. name: "Back",
  27151. image: {
  27152. source: "./media/characters/arokh-takakura/back.svg",
  27153. extra: 1046 / 1019,
  27154. bottom: 102 / 1150
  27155. }
  27156. },
  27157. },
  27158. [
  27159. {
  27160. name: "Big",
  27161. height: math.unit(12 + 6 / 12, "feet"),
  27162. default: true
  27163. },
  27164. ]
  27165. ))
  27166. characterMakers.push(() => makeCharacter(
  27167. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27168. {
  27169. front: {
  27170. height: math.unit(5 + 6 / 12, "feet"),
  27171. weight: math.unit(150, "lb"),
  27172. name: "Front",
  27173. image: {
  27174. source: "./media/characters/theo/front.svg",
  27175. extra: 1184 / 1131,
  27176. bottom: 7.4 / 1191
  27177. }
  27178. },
  27179. },
  27180. [
  27181. {
  27182. name: "Micro",
  27183. height: math.unit(5, "inches")
  27184. },
  27185. {
  27186. name: "Normal",
  27187. height: math.unit(5 + 6 / 12, "feet"),
  27188. default: true
  27189. },
  27190. ]
  27191. ))
  27192. characterMakers.push(() => makeCharacter(
  27193. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27194. {
  27195. front: {
  27196. height: math.unit(5 + 9 / 12, "feet"),
  27197. weight: math.unit(130, "lb"),
  27198. name: "Front",
  27199. image: {
  27200. source: "./media/characters/cecelia-swift/front.svg",
  27201. extra: 502 / 484,
  27202. bottom: 23 / 523
  27203. }
  27204. },
  27205. back: {
  27206. height: math.unit(5 + 9 / 12, "feet"),
  27207. weight: math.unit(130, "lb"),
  27208. name: "Back",
  27209. image: {
  27210. source: "./media/characters/cecelia-swift/back.svg",
  27211. extra: 499 / 485,
  27212. bottom: 12 / 511
  27213. }
  27214. },
  27215. head: {
  27216. height: math.unit(0.90, "feet"),
  27217. name: "Head",
  27218. image: {
  27219. source: "./media/characters/cecelia-swift/head.svg"
  27220. }
  27221. },
  27222. rump: {
  27223. height: math.unit(1.75, "feet"),
  27224. name: "Rump",
  27225. image: {
  27226. source: "./media/characters/cecelia-swift/rump.svg"
  27227. }
  27228. },
  27229. },
  27230. [
  27231. {
  27232. name: "Normal",
  27233. height: math.unit(5 + 9 / 12, "feet"),
  27234. default: true
  27235. },
  27236. {
  27237. name: "Big",
  27238. height: math.unit(50, "feet")
  27239. },
  27240. {
  27241. name: "Macro",
  27242. height: math.unit(100, "feet")
  27243. },
  27244. {
  27245. name: "Macro+",
  27246. height: math.unit(500, "feet")
  27247. },
  27248. {
  27249. name: "Macro++",
  27250. height: math.unit(1000, "feet")
  27251. },
  27252. ]
  27253. ))
  27254. characterMakers.push(() => makeCharacter(
  27255. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27256. {
  27257. front: {
  27258. height: math.unit(6, "feet"),
  27259. weight: math.unit(150, "lb"),
  27260. name: "Front",
  27261. image: {
  27262. source: "./media/characters/kaunan/front.svg",
  27263. extra: 2890 / 2523,
  27264. bottom: 49 / 2939
  27265. }
  27266. },
  27267. },
  27268. [
  27269. {
  27270. name: "Macro",
  27271. height: math.unit(150, "feet"),
  27272. default: true
  27273. },
  27274. ]
  27275. ))
  27276. characterMakers.push(() => makeCharacter(
  27277. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27278. {
  27279. front: {
  27280. height: math.unit(175, "cm"),
  27281. weight: math.unit(60, "kg"),
  27282. name: "Front",
  27283. image: {
  27284. source: "./media/characters/fei/front.svg",
  27285. extra: 2581 / 2400,
  27286. bottom: 82.2 / 2663
  27287. }
  27288. },
  27289. },
  27290. [
  27291. {
  27292. name: "Mortal",
  27293. height: math.unit(175, "cm")
  27294. },
  27295. {
  27296. name: "Normal",
  27297. height: math.unit(3500, "m"),
  27298. default: true
  27299. },
  27300. {
  27301. name: "Stroll",
  27302. height: math.unit(17.5, "km")
  27303. },
  27304. {
  27305. name: "Showoff",
  27306. height: math.unit(175, "km")
  27307. },
  27308. ]
  27309. ))
  27310. characterMakers.push(() => makeCharacter(
  27311. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27312. {
  27313. front: {
  27314. height: math.unit(7, "feet"),
  27315. weight: math.unit(1000, "kg"),
  27316. name: "Front",
  27317. image: {
  27318. source: "./media/characters/edrax/front.svg",
  27319. extra: 2838 / 2550,
  27320. bottom: 130 / 2968
  27321. }
  27322. },
  27323. },
  27324. [
  27325. {
  27326. name: "Small",
  27327. height: math.unit(7, "feet")
  27328. },
  27329. {
  27330. name: "Normal",
  27331. height: math.unit(1500, "meters")
  27332. },
  27333. {
  27334. name: "Mega",
  27335. height: math.unit(12000000, "km"),
  27336. default: true
  27337. },
  27338. {
  27339. name: "Megamacro",
  27340. height: math.unit(10600000, "lightyears")
  27341. },
  27342. {
  27343. name: "Hypermacro",
  27344. height: math.unit(256, "yottameters")
  27345. },
  27346. ]
  27347. ))
  27348. characterMakers.push(() => makeCharacter(
  27349. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27350. {
  27351. front: {
  27352. height: math.unit(10, "feet"),
  27353. weight: math.unit(750, "lb"),
  27354. name: "Front",
  27355. image: {
  27356. source: "./media/characters/clove/front.svg",
  27357. extra: 2031 / 1860,
  27358. bottom: 47.8 / 2080
  27359. }
  27360. },
  27361. back: {
  27362. height: math.unit(10, "feet"),
  27363. weight: math.unit(750, "lb"),
  27364. name: "Back",
  27365. image: {
  27366. source: "./media/characters/clove/back.svg",
  27367. extra: 2025 / 1859,
  27368. bottom: 46 / 2071
  27369. }
  27370. },
  27371. },
  27372. [
  27373. {
  27374. name: "Normal",
  27375. height: math.unit(10, "feet"),
  27376. default: true
  27377. },
  27378. ]
  27379. ))
  27380. characterMakers.push(() => makeCharacter(
  27381. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27382. {
  27383. front: {
  27384. height: math.unit(4, "feet"),
  27385. weight: math.unit(50, "lb"),
  27386. name: "Front",
  27387. image: {
  27388. source: "./media/characters/alex-rabbit/front.svg",
  27389. extra: 507 / 458,
  27390. bottom: 18.5 / 527
  27391. }
  27392. },
  27393. back: {
  27394. height: math.unit(4, "feet"),
  27395. weight: math.unit(50, "lb"),
  27396. name: "Back",
  27397. image: {
  27398. source: "./media/characters/alex-rabbit/back.svg",
  27399. extra: 502 / 460,
  27400. bottom: 18.9 / 521
  27401. }
  27402. },
  27403. },
  27404. [
  27405. {
  27406. name: "Normal",
  27407. height: math.unit(4, "feet"),
  27408. default: true
  27409. },
  27410. ]
  27411. ))
  27412. characterMakers.push(() => makeCharacter(
  27413. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27414. {
  27415. front: {
  27416. height: math.unit(1 + 3 / 12, "feet"),
  27417. weight: math.unit(80, "lb"),
  27418. name: "Front",
  27419. image: {
  27420. source: "./media/characters/zander-rose/front.svg",
  27421. extra: 916 / 797,
  27422. bottom: 17 / 933
  27423. }
  27424. },
  27425. back: {
  27426. height: math.unit(1 + 3 / 12, "feet"),
  27427. weight: math.unit(80, "lb"),
  27428. name: "Back",
  27429. image: {
  27430. source: "./media/characters/zander-rose/back.svg",
  27431. extra: 903 / 779,
  27432. bottom: 31 / 934
  27433. }
  27434. },
  27435. },
  27436. [
  27437. {
  27438. name: "Normal",
  27439. height: math.unit(1 + 3 / 12, "feet"),
  27440. default: true
  27441. },
  27442. ]
  27443. ))
  27444. characterMakers.push(() => makeCharacter(
  27445. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27446. {
  27447. anthro: {
  27448. height: math.unit(6, "feet"),
  27449. weight: math.unit(150, "lb"),
  27450. name: "Anthro",
  27451. image: {
  27452. source: "./media/characters/razz/anthro.svg",
  27453. extra: 1437 / 1343,
  27454. bottom: 48 / 1485
  27455. }
  27456. },
  27457. feral: {
  27458. height: math.unit(6, "feet"),
  27459. weight: math.unit(150, "lb"),
  27460. name: "Feral",
  27461. image: {
  27462. source: "./media/characters/razz/feral.svg",
  27463. extra: 2569 / 1385,
  27464. bottom: 95 / 2664
  27465. }
  27466. },
  27467. },
  27468. [
  27469. {
  27470. name: "Normal",
  27471. height: math.unit(6, "feet"),
  27472. default: true
  27473. },
  27474. ]
  27475. ))
  27476. characterMakers.push(() => makeCharacter(
  27477. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27478. {
  27479. front: {
  27480. height: math.unit(9 + 4 / 12, "feet"),
  27481. weight: math.unit(500, "lb"),
  27482. name: "Front",
  27483. image: {
  27484. source: "./media/characters/morrigan/front.svg",
  27485. extra: 2707 / 2579,
  27486. bottom: 156 / 2863
  27487. }
  27488. },
  27489. },
  27490. [
  27491. {
  27492. name: "Normal",
  27493. height: math.unit(9 + 4 / 12, "feet"),
  27494. default: true
  27495. },
  27496. ]
  27497. ))
  27498. characterMakers.push(() => makeCharacter(
  27499. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27500. {
  27501. front: {
  27502. height: math.unit(5, "stories"),
  27503. weight: math.unit(4000, "lb"),
  27504. name: "Front",
  27505. image: {
  27506. source: "./media/characters/jenene/front.svg",
  27507. extra: 1780 / 1710,
  27508. bottom: 57 / 1837
  27509. }
  27510. },
  27511. },
  27512. [
  27513. {
  27514. name: "Normal",
  27515. height: math.unit(5, "stories"),
  27516. default: true
  27517. },
  27518. ]
  27519. ))
  27520. characterMakers.push(() => makeCharacter(
  27521. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27522. {
  27523. front: {
  27524. height: math.unit(6, "feet"),
  27525. weight: math.unit(150, "lb"),
  27526. name: "Front",
  27527. image: {
  27528. source: "./media/characters/vix-archaser/front.svg",
  27529. extra: 2767 / 2562,
  27530. bottom: 36 / 2803
  27531. }
  27532. },
  27533. },
  27534. [
  27535. {
  27536. name: "Micro",
  27537. height: math.unit(1, "foot")
  27538. },
  27539. {
  27540. name: "Normal",
  27541. height: math.unit(6 + 5 / 12, "feet")
  27542. },
  27543. {
  27544. name: "Minimacro",
  27545. height: math.unit(500, "feet")
  27546. },
  27547. {
  27548. name: "Macro",
  27549. height: math.unit(4, "miles")
  27550. },
  27551. {
  27552. name: "Megamacro",
  27553. height: math.unit(250, "miles"),
  27554. default: true
  27555. },
  27556. {
  27557. name: "Gigamacro",
  27558. height: math.unit(1, "universe")
  27559. },
  27560. {
  27561. name: "Endgame",
  27562. height: math.unit(100, "multiverses")
  27563. }
  27564. ]
  27565. ))
  27566. characterMakers.push(() => makeCharacter(
  27567. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27568. {
  27569. taurSfw: {
  27570. height: math.unit(10, "meters"),
  27571. weight: math.unit(17500, "kg"),
  27572. name: "Taur",
  27573. image: {
  27574. source: "./media/characters/faey/taur-sfw.svg",
  27575. extra: 1200 / 968,
  27576. bottom: 41 / 1241
  27577. }
  27578. },
  27579. chestmaw: {
  27580. height: math.unit(2.01, "meters"),
  27581. name: "Chestmaw",
  27582. image: {
  27583. source: "./media/characters/faey/chestmaw.svg"
  27584. }
  27585. },
  27586. foot: {
  27587. height: math.unit(2.43, "meters"),
  27588. name: "Foot",
  27589. image: {
  27590. source: "./media/characters/faey/foot.svg"
  27591. }
  27592. },
  27593. jaws: {
  27594. height: math.unit(1.66, "meters"),
  27595. name: "Jaws",
  27596. image: {
  27597. source: "./media/characters/faey/jaws.svg"
  27598. }
  27599. },
  27600. tongues: {
  27601. height: math.unit(2.01, "meters"),
  27602. name: "Tongues",
  27603. image: {
  27604. source: "./media/characters/faey/tongues.svg"
  27605. }
  27606. },
  27607. },
  27608. [
  27609. {
  27610. name: "Small",
  27611. height: math.unit(10, "meters"),
  27612. default: true
  27613. },
  27614. {
  27615. name: "Big",
  27616. height: math.unit(500000, "km")
  27617. },
  27618. ]
  27619. ))
  27620. characterMakers.push(() => makeCharacter(
  27621. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27622. {
  27623. front: {
  27624. height: math.unit(7, "feet"),
  27625. weight: math.unit(275, "lb"),
  27626. name: "Front",
  27627. image: {
  27628. source: "./media/characters/roku/front.svg",
  27629. extra: 903 / 878,
  27630. bottom: 37 / 940
  27631. }
  27632. },
  27633. },
  27634. [
  27635. {
  27636. name: "Normal",
  27637. height: math.unit(7, "feet"),
  27638. default: true
  27639. },
  27640. {
  27641. name: "Macro",
  27642. height: math.unit(500, "feet")
  27643. },
  27644. {
  27645. name: "Megamacro",
  27646. height: math.unit(200, "miles")
  27647. },
  27648. ]
  27649. ))
  27650. characterMakers.push(() => makeCharacter(
  27651. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27652. {
  27653. front: {
  27654. height: math.unit(6 + 2 / 12, "feet"),
  27655. weight: math.unit(150, "lb"),
  27656. name: "Front",
  27657. image: {
  27658. source: "./media/characters/lira/front.svg",
  27659. extra: 1727 / 1605,
  27660. bottom: 26 / 1753
  27661. }
  27662. },
  27663. back: {
  27664. height: math.unit(6 + 2 / 12, "feet"),
  27665. weight: math.unit(150, "lb"),
  27666. name: "Back",
  27667. image: {
  27668. source: "./media/characters/lira/back.svg",
  27669. extra: 1713/1621,
  27670. bottom: 20/1733
  27671. }
  27672. },
  27673. hand: {
  27674. height: math.unit(0.75, "feet"),
  27675. name: "Hand",
  27676. image: {
  27677. source: "./media/characters/lira/hand.svg"
  27678. }
  27679. },
  27680. maw: {
  27681. height: math.unit(0.65, "feet"),
  27682. name: "Maw",
  27683. image: {
  27684. source: "./media/characters/lira/maw.svg"
  27685. }
  27686. },
  27687. pawDigi: {
  27688. height: math.unit(1.6, "feet"),
  27689. name: "Paw Digi",
  27690. image: {
  27691. source: "./media/characters/lira/paw-digi.svg"
  27692. }
  27693. },
  27694. pawPlanti: {
  27695. height: math.unit(1.4, "feet"),
  27696. name: "Paw Planti",
  27697. image: {
  27698. source: "./media/characters/lira/paw-planti.svg"
  27699. }
  27700. },
  27701. },
  27702. [
  27703. {
  27704. name: "Normal",
  27705. height: math.unit(6 + 2 / 12, "feet"),
  27706. default: true
  27707. },
  27708. {
  27709. name: "Macro",
  27710. height: math.unit(100, "feet")
  27711. },
  27712. {
  27713. name: "Macro²",
  27714. height: math.unit(1600, "feet")
  27715. },
  27716. {
  27717. name: "Planetary",
  27718. height: math.unit(20, "earths")
  27719. },
  27720. ]
  27721. ))
  27722. characterMakers.push(() => makeCharacter(
  27723. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27724. {
  27725. front: {
  27726. height: math.unit(6, "feet"),
  27727. weight: math.unit(150, "lb"),
  27728. name: "Front",
  27729. image: {
  27730. source: "./media/characters/hadjet/front.svg",
  27731. extra: 1480 / 1346,
  27732. bottom: 26 / 1506
  27733. }
  27734. },
  27735. frontNsfw: {
  27736. height: math.unit(6, "feet"),
  27737. weight: math.unit(150, "lb"),
  27738. name: "Front (NSFW)",
  27739. image: {
  27740. source: "./media/characters/hadjet/front-nsfw.svg",
  27741. extra: 1440 / 1358,
  27742. bottom: 52 / 1492
  27743. }
  27744. },
  27745. },
  27746. [
  27747. {
  27748. name: "Macro",
  27749. height: math.unit(10, "stories"),
  27750. default: true
  27751. },
  27752. {
  27753. name: "Megamacro",
  27754. height: math.unit(1.5, "miles")
  27755. },
  27756. {
  27757. name: "Megamacro+",
  27758. height: math.unit(5, "miles")
  27759. },
  27760. ]
  27761. ))
  27762. characterMakers.push(() => makeCharacter(
  27763. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27764. {
  27765. side: {
  27766. height: math.unit(106, "feet"),
  27767. weight: math.unit(500, "tonnes"),
  27768. name: "Side",
  27769. image: {
  27770. source: "./media/characters/kodran/side.svg",
  27771. extra: 553 / 480,
  27772. bottom: 33 / 586
  27773. }
  27774. },
  27775. front: {
  27776. height: math.unit(132, "feet"),
  27777. weight: math.unit(500, "tonnes"),
  27778. name: "Front",
  27779. image: {
  27780. source: "./media/characters/kodran/front.svg",
  27781. extra: 667 / 643,
  27782. bottom: 42 / 709
  27783. }
  27784. },
  27785. flying: {
  27786. height: math.unit(350, "feet"),
  27787. weight: math.unit(500, "tonnes"),
  27788. name: "Flying",
  27789. image: {
  27790. source: "./media/characters/kodran/flying.svg"
  27791. }
  27792. },
  27793. foot: {
  27794. height: math.unit(33, "feet"),
  27795. name: "Foot",
  27796. image: {
  27797. source: "./media/characters/kodran/foot.svg"
  27798. }
  27799. },
  27800. footFront: {
  27801. height: math.unit(19, "feet"),
  27802. name: "Foot (Front)",
  27803. image: {
  27804. source: "./media/characters/kodran/foot-front.svg",
  27805. extra: 261 / 261,
  27806. bottom: 91 / 352
  27807. }
  27808. },
  27809. headFront: {
  27810. height: math.unit(53, "feet"),
  27811. name: "Head (Front)",
  27812. image: {
  27813. source: "./media/characters/kodran/head-front.svg"
  27814. }
  27815. },
  27816. headSide: {
  27817. height: math.unit(65, "feet"),
  27818. name: "Head (Side)",
  27819. image: {
  27820. source: "./media/characters/kodran/head-side.svg"
  27821. }
  27822. },
  27823. throat: {
  27824. height: math.unit(79, "feet"),
  27825. name: "Throat",
  27826. image: {
  27827. source: "./media/characters/kodran/throat.svg"
  27828. }
  27829. },
  27830. },
  27831. [
  27832. {
  27833. name: "Large",
  27834. height: math.unit(106, "feet"),
  27835. default: true
  27836. },
  27837. ]
  27838. ))
  27839. characterMakers.push(() => makeCharacter(
  27840. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27841. {
  27842. side: {
  27843. height: math.unit(11, "feet"),
  27844. weight: math.unit(150, "lb"),
  27845. name: "Side",
  27846. image: {
  27847. source: "./media/characters/pyxaron/side.svg",
  27848. extra: 305 / 195,
  27849. bottom: 17 / 322
  27850. }
  27851. },
  27852. },
  27853. [
  27854. {
  27855. name: "Normal",
  27856. height: math.unit(11, "feet"),
  27857. default: true
  27858. },
  27859. ]
  27860. ))
  27861. characterMakers.push(() => makeCharacter(
  27862. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27863. {
  27864. front: {
  27865. height: math.unit(6, "feet"),
  27866. weight: math.unit(150, "lb"),
  27867. name: "Front",
  27868. image: {
  27869. source: "./media/characters/meep/front.svg",
  27870. extra: 88 / 80,
  27871. bottom: 6 / 94
  27872. }
  27873. },
  27874. },
  27875. [
  27876. {
  27877. name: "Fun Sized",
  27878. height: math.unit(2, "inches"),
  27879. default: true
  27880. },
  27881. {
  27882. name: "Friend Sized",
  27883. height: math.unit(8, "inches")
  27884. },
  27885. ]
  27886. ))
  27887. characterMakers.push(() => makeCharacter(
  27888. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27889. {
  27890. front: {
  27891. height: math.unit(15, "feet"),
  27892. weight: math.unit(2500, "lb"),
  27893. name: "Front",
  27894. image: {
  27895. source: "./media/characters/holly-rabbit/front.svg",
  27896. extra: 1433 / 1233,
  27897. bottom: 125 / 1558
  27898. }
  27899. },
  27900. dick: {
  27901. height: math.unit(4.6, "feet"),
  27902. name: "Dick",
  27903. image: {
  27904. source: "./media/characters/holly-rabbit/dick.svg"
  27905. }
  27906. },
  27907. },
  27908. [
  27909. {
  27910. name: "Normal",
  27911. height: math.unit(15, "feet"),
  27912. default: true
  27913. },
  27914. {
  27915. name: "Macro",
  27916. height: math.unit(250, "feet")
  27917. },
  27918. {
  27919. name: "Macro+",
  27920. height: math.unit(2500, "feet")
  27921. },
  27922. ]
  27923. ))
  27924. characterMakers.push(() => makeCharacter(
  27925. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27926. {
  27927. front: {
  27928. height: math.unit(3.02, "meters"),
  27929. weight: math.unit(500, "kg"),
  27930. name: "Front",
  27931. image: {
  27932. source: "./media/characters/drena/front.svg",
  27933. extra: 282 / 243,
  27934. bottom: 8 / 290
  27935. }
  27936. },
  27937. side: {
  27938. height: math.unit(3.02, "meters"),
  27939. weight: math.unit(500, "kg"),
  27940. name: "Side",
  27941. image: {
  27942. source: "./media/characters/drena/side.svg",
  27943. extra: 280 / 245,
  27944. bottom: 10 / 290
  27945. }
  27946. },
  27947. back: {
  27948. height: math.unit(3.02, "meters"),
  27949. weight: math.unit(500, "kg"),
  27950. name: "Back",
  27951. image: {
  27952. source: "./media/characters/drena/back.svg",
  27953. extra: 278 / 243,
  27954. bottom: 2 / 280
  27955. }
  27956. },
  27957. foot: {
  27958. height: math.unit(0.75, "meters"),
  27959. name: "Foot",
  27960. image: {
  27961. source: "./media/characters/drena/foot.svg"
  27962. }
  27963. },
  27964. maw: {
  27965. height: math.unit(0.82, "meters"),
  27966. name: "Maw",
  27967. image: {
  27968. source: "./media/characters/drena/maw.svg"
  27969. }
  27970. },
  27971. rump: {
  27972. height: math.unit(0.93, "meters"),
  27973. name: "Rump",
  27974. image: {
  27975. source: "./media/characters/drena/rump.svg"
  27976. }
  27977. },
  27978. },
  27979. [
  27980. {
  27981. name: "Normal",
  27982. height: math.unit(3.02, "meters"),
  27983. default: true
  27984. },
  27985. ]
  27986. ))
  27987. characterMakers.push(() => makeCharacter(
  27988. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27989. {
  27990. front: {
  27991. height: math.unit(6 + 4 / 12, "feet"),
  27992. weight: math.unit(250, "lb"),
  27993. name: "Front",
  27994. image: {
  27995. source: "./media/characters/remmyzilla/front.svg",
  27996. extra: 4033 / 3588,
  27997. bottom: 123 / 4156
  27998. }
  27999. },
  28000. back: {
  28001. height: math.unit(6 + 4 / 12, "feet"),
  28002. weight: math.unit(250, "lb"),
  28003. name: "Back",
  28004. image: {
  28005. source: "./media/characters/remmyzilla/back.svg",
  28006. extra: 2687 / 2555,
  28007. bottom: 48 / 2735
  28008. }
  28009. },
  28010. frontFancy: {
  28011. height: math.unit(6 + 4 / 12, "feet"),
  28012. weight: math.unit(250, "lb"),
  28013. name: "Front (Fancy)",
  28014. image: {
  28015. source: "./media/characters/remmyzilla/front-fancy.svg",
  28016. extra: 4119 / 3419,
  28017. bottom: 237 / 4356
  28018. }
  28019. },
  28020. paw: {
  28021. height: math.unit(1.73, "feet"),
  28022. name: "Paw",
  28023. image: {
  28024. source: "./media/characters/remmyzilla/paw.svg"
  28025. }
  28026. },
  28027. maw: {
  28028. height: math.unit(1.73, "feet"),
  28029. name: "Maw",
  28030. image: {
  28031. source: "./media/characters/remmyzilla/maw.svg"
  28032. }
  28033. },
  28034. },
  28035. [
  28036. {
  28037. name: "Normal",
  28038. height: math.unit(6 + 4 / 12, "feet")
  28039. },
  28040. {
  28041. name: "Minimacro",
  28042. height: math.unit(12 + 8 / 12, "feet")
  28043. },
  28044. {
  28045. name: "Normal",
  28046. height: math.unit(640, "feet"),
  28047. default: true
  28048. },
  28049. {
  28050. name: "Megamacro",
  28051. height: math.unit(6400, "feet")
  28052. },
  28053. {
  28054. name: "Gigamacro",
  28055. height: math.unit(64000, "miles")
  28056. },
  28057. ]
  28058. ))
  28059. characterMakers.push(() => makeCharacter(
  28060. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28061. {
  28062. front: {
  28063. height: math.unit(2.5, "meters"),
  28064. weight: math.unit(300, "lb"),
  28065. name: "Front",
  28066. image: {
  28067. source: "./media/characters/lawrence/front.svg",
  28068. extra: 357 / 335,
  28069. bottom: 30 / 387
  28070. }
  28071. },
  28072. back: {
  28073. height: math.unit(2.5, "meters"),
  28074. weight: math.unit(300, "lb"),
  28075. name: "Back",
  28076. image: {
  28077. source: "./media/characters/lawrence/back.svg",
  28078. extra: 357 / 338,
  28079. bottom: 16 / 373
  28080. }
  28081. },
  28082. head: {
  28083. height: math.unit(0.9, "meter"),
  28084. name: "Head",
  28085. image: {
  28086. source: "./media/characters/lawrence/head.svg"
  28087. }
  28088. },
  28089. maw: {
  28090. height: math.unit(0.7, "meter"),
  28091. name: "Maw",
  28092. image: {
  28093. source: "./media/characters/lawrence/maw.svg"
  28094. }
  28095. },
  28096. footBottom: {
  28097. height: math.unit(0.5, "meter"),
  28098. name: "Foot (Bottom)",
  28099. image: {
  28100. source: "./media/characters/lawrence/foot-bottom.svg"
  28101. }
  28102. },
  28103. footTop: {
  28104. height: math.unit(0.5, "meter"),
  28105. name: "Foot (Top)",
  28106. image: {
  28107. source: "./media/characters/lawrence/foot-top.svg"
  28108. }
  28109. },
  28110. },
  28111. [
  28112. {
  28113. name: "Normal",
  28114. height: math.unit(2.5, "meters"),
  28115. default: true
  28116. },
  28117. {
  28118. name: "Macro",
  28119. height: math.unit(95, "meters")
  28120. },
  28121. {
  28122. name: "Megamacro",
  28123. height: math.unit(150, "km")
  28124. },
  28125. ]
  28126. ))
  28127. characterMakers.push(() => makeCharacter(
  28128. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28129. {
  28130. front: {
  28131. height: math.unit(4.2, "meters"),
  28132. name: "Front",
  28133. image: {
  28134. source: "./media/characters/sydney/front.svg",
  28135. extra: 1323 / 1277,
  28136. bottom: 111 / 1434
  28137. }
  28138. },
  28139. },
  28140. [
  28141. {
  28142. name: "Normal",
  28143. height: math.unit(4.2, "meters"),
  28144. default: true
  28145. },
  28146. ]
  28147. ))
  28148. characterMakers.push(() => makeCharacter(
  28149. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28150. {
  28151. back: {
  28152. height: math.unit(201, "feet"),
  28153. name: "Back",
  28154. image: {
  28155. source: "./media/characters/jessica/back.svg",
  28156. extra: 273 / 259,
  28157. bottom: 7 / 280
  28158. }
  28159. },
  28160. },
  28161. [
  28162. {
  28163. name: "Normal",
  28164. height: math.unit(201, "feet"),
  28165. default: true
  28166. },
  28167. {
  28168. name: "Megamacro",
  28169. height: math.unit(8, "miles")
  28170. },
  28171. ]
  28172. ))
  28173. characterMakers.push(() => makeCharacter(
  28174. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28175. {
  28176. side: {
  28177. height: math.unit(320, "cm"),
  28178. name: "Side",
  28179. image: {
  28180. source: "./media/characters/victoria/side.svg",
  28181. extra: 778 / 346,
  28182. bottom: 56 / 834
  28183. }
  28184. },
  28185. maw: {
  28186. height: math.unit(5.9, "feet"),
  28187. name: "Maw",
  28188. image: {
  28189. source: "./media/characters/victoria/maw.svg"
  28190. }
  28191. },
  28192. },
  28193. [
  28194. {
  28195. name: "Normal",
  28196. height: math.unit(320, "cm"),
  28197. default: true
  28198. },
  28199. ]
  28200. ))
  28201. characterMakers.push(() => makeCharacter(
  28202. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28203. {
  28204. front: {
  28205. height: math.unit(5 + 6 / 12, "feet"),
  28206. name: "Front",
  28207. image: {
  28208. source: "./media/characters/cat/front.svg",
  28209. extra: 1374 / 1257,
  28210. bottom: 59 / 1433
  28211. }
  28212. },
  28213. back: {
  28214. height: math.unit(5 + 6 / 12, "feet"),
  28215. name: "Back",
  28216. image: {
  28217. source: "./media/characters/cat/back.svg",
  28218. extra: 1337 / 1226,
  28219. bottom: 34 / 1371
  28220. }
  28221. },
  28222. taur: {
  28223. height: math.unit(7, "feet"),
  28224. name: "Taur",
  28225. image: {
  28226. source: "./media/characters/cat/taur.svg",
  28227. extra: 1345 / 1231,
  28228. bottom: 66 / 1411
  28229. }
  28230. },
  28231. lucario: {
  28232. height: math.unit(4, "feet"),
  28233. name: "Lucario",
  28234. image: {
  28235. source: "./media/characters/cat/lucario.svg",
  28236. extra: 1470 / 1318,
  28237. bottom: 65 / 1535
  28238. }
  28239. },
  28240. megaLucario: {
  28241. height: math.unit(4, "feet"),
  28242. name: "Mega Lucario",
  28243. image: {
  28244. source: "./media/characters/cat/mega-lucario.svg",
  28245. extra: 1515 / 1319,
  28246. bottom: 63 / 1578
  28247. }
  28248. },
  28249. nickit: {
  28250. height: math.unit(2, "feet"),
  28251. name: "Nickit",
  28252. image: {
  28253. source: "./media/characters/cat/nickit.svg",
  28254. extra: 1980 / 1585,
  28255. bottom: 102 / 2082
  28256. }
  28257. },
  28258. lopunnyFront: {
  28259. height: math.unit(5, "feet"),
  28260. name: "Lopunny (Front)",
  28261. image: {
  28262. source: "./media/characters/cat/lopunny-front.svg",
  28263. extra: 1782 / 1469,
  28264. bottom: 38 / 1820
  28265. }
  28266. },
  28267. lopunnyBack: {
  28268. height: math.unit(5, "feet"),
  28269. name: "Lopunny (Back)",
  28270. image: {
  28271. source: "./media/characters/cat/lopunny-back.svg",
  28272. extra: 1660 / 1490,
  28273. bottom: 25 / 1685
  28274. }
  28275. },
  28276. },
  28277. [
  28278. {
  28279. name: "Really small",
  28280. height: math.unit(1, "nm")
  28281. },
  28282. {
  28283. name: "Micro",
  28284. height: math.unit(5, "inches")
  28285. },
  28286. {
  28287. name: "Normal",
  28288. height: math.unit(5 + 6 / 12, "feet"),
  28289. default: true
  28290. },
  28291. {
  28292. name: "Macro",
  28293. height: math.unit(50, "feet")
  28294. },
  28295. {
  28296. name: "Macro+",
  28297. height: math.unit(150, "feet")
  28298. },
  28299. {
  28300. name: "Megamacro",
  28301. height: math.unit(100, "miles")
  28302. },
  28303. ]
  28304. ))
  28305. characterMakers.push(() => makeCharacter(
  28306. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28307. {
  28308. front: {
  28309. height: math.unit(63.4, "meters"),
  28310. weight: math.unit(3.28349e+6, "kilograms"),
  28311. name: "Front",
  28312. image: {
  28313. source: "./media/characters/kirina-violet/front.svg",
  28314. extra: 2812 / 2725,
  28315. bottom: 0 / 2812
  28316. }
  28317. },
  28318. back: {
  28319. height: math.unit(63.4, "meters"),
  28320. weight: math.unit(3.28349e+6, "kilograms"),
  28321. name: "Back",
  28322. image: {
  28323. source: "./media/characters/kirina-violet/back.svg",
  28324. extra: 2812 / 2725,
  28325. bottom: 0 / 2812
  28326. }
  28327. },
  28328. mouth: {
  28329. height: math.unit(4.35, "meters"),
  28330. name: "Mouth",
  28331. image: {
  28332. source: "./media/characters/kirina-violet/mouth.svg"
  28333. }
  28334. },
  28335. paw: {
  28336. height: math.unit(5.6, "meters"),
  28337. name: "Paw",
  28338. image: {
  28339. source: "./media/characters/kirina-violet/paw.svg"
  28340. }
  28341. },
  28342. tail: {
  28343. height: math.unit(18, "meters"),
  28344. name: "Tail",
  28345. image: {
  28346. source: "./media/characters/kirina-violet/tail.svg"
  28347. }
  28348. },
  28349. },
  28350. [
  28351. {
  28352. name: "Macro",
  28353. height: math.unit(63.4, "meters"),
  28354. default: true
  28355. },
  28356. ]
  28357. ))
  28358. characterMakers.push(() => makeCharacter(
  28359. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28360. {
  28361. front: {
  28362. height: math.unit(60, "feet"),
  28363. name: "Front",
  28364. image: {
  28365. source: "./media/characters/cat-gigachu/front.svg",
  28366. extra: 1024 / 780,
  28367. bottom: 23 / 1047
  28368. }
  28369. },
  28370. back: {
  28371. height: math.unit(60, "feet"),
  28372. name: "Back",
  28373. image: {
  28374. source: "./media/characters/cat-gigachu/back.svg",
  28375. extra: 1024 / 780,
  28376. bottom: 23 / 1047
  28377. }
  28378. },
  28379. },
  28380. [
  28381. {
  28382. name: "Dynamax",
  28383. height: math.unit(60, "feet"),
  28384. default: true
  28385. },
  28386. ]
  28387. ))
  28388. characterMakers.push(() => makeCharacter(
  28389. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28390. {
  28391. front: {
  28392. height: math.unit(6, "feet"),
  28393. weight: math.unit(150, "lb"),
  28394. name: "Front",
  28395. image: {
  28396. source: "./media/characters/sfaiyan/front.svg",
  28397. extra: 999 / 978,
  28398. bottom: 5 / 1004
  28399. }
  28400. },
  28401. },
  28402. [
  28403. {
  28404. name: "Normal",
  28405. height: math.unit(1.82, "meters")
  28406. },
  28407. {
  28408. name: "Giant",
  28409. height: math.unit(2.27, "km"),
  28410. default: true
  28411. },
  28412. ]
  28413. ))
  28414. characterMakers.push(() => makeCharacter(
  28415. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28416. {
  28417. front: {
  28418. height: math.unit(179, "cm"),
  28419. weight: math.unit(100, "kg"),
  28420. name: "Front",
  28421. image: {
  28422. source: "./media/characters/raunehkeli/front.svg",
  28423. extra: 1934 / 1926,
  28424. bottom: 0 / 1934
  28425. }
  28426. },
  28427. },
  28428. [
  28429. {
  28430. name: "Normal",
  28431. height: math.unit(179, "cm")
  28432. },
  28433. {
  28434. name: "Maximum",
  28435. height: math.unit(575, "meters"),
  28436. default: true
  28437. },
  28438. ]
  28439. ))
  28440. characterMakers.push(() => makeCharacter(
  28441. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28442. {
  28443. front: {
  28444. height: math.unit(6, "feet"),
  28445. weight: math.unit(150, "lb"),
  28446. name: "Front",
  28447. image: {
  28448. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28449. extra: 2625 / 2518,
  28450. bottom: 60 / 2685
  28451. }
  28452. },
  28453. },
  28454. [
  28455. {
  28456. name: "Normal",
  28457. height: math.unit(6 + 2 / 12, "feet")
  28458. },
  28459. {
  28460. name: "Macro",
  28461. height: math.unit(1180, "feet"),
  28462. default: true
  28463. },
  28464. ]
  28465. ))
  28466. characterMakers.push(() => makeCharacter(
  28467. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28468. {
  28469. front: {
  28470. height: math.unit(5 + 6 / 12, "feet"),
  28471. weight: math.unit(108, "lb"),
  28472. name: "Front",
  28473. image: {
  28474. source: "./media/characters/lilith-zott/front.svg",
  28475. extra: 2510 / 2238,
  28476. bottom: 100 / 2610
  28477. }
  28478. },
  28479. frontDressed: {
  28480. height: math.unit(5 + 6 / 12, "feet"),
  28481. weight: math.unit(108, "lb"),
  28482. name: "Front (Dressed)",
  28483. image: {
  28484. source: "./media/characters/lilith-zott/front-dressed.svg",
  28485. extra: 2510 / 2238,
  28486. bottom: 100 / 2610
  28487. }
  28488. },
  28489. },
  28490. [
  28491. {
  28492. name: "Normal",
  28493. height: math.unit(5 + 6 / 12, "feet")
  28494. },
  28495. {
  28496. name: "Macro",
  28497. height: math.unit(1030, "feet"),
  28498. default: true
  28499. },
  28500. ]
  28501. ))
  28502. characterMakers.push(() => makeCharacter(
  28503. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28504. {
  28505. front: {
  28506. height: math.unit(6, "feet"),
  28507. weight: math.unit(150, "lb"),
  28508. name: "Front",
  28509. image: {
  28510. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28511. extra: 2567 / 2435,
  28512. bottom: 39 / 2606
  28513. }
  28514. },
  28515. frontSuper: {
  28516. height: math.unit(6, "feet"),
  28517. name: "Front (Super)",
  28518. image: {
  28519. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28520. extra: 2567 / 2435,
  28521. bottom: 39 / 2606
  28522. }
  28523. },
  28524. },
  28525. [
  28526. {
  28527. name: "Normal",
  28528. height: math.unit(5 + 10 / 12, "feet")
  28529. },
  28530. {
  28531. name: "Macro",
  28532. height: math.unit(1100, "feet"),
  28533. default: true
  28534. },
  28535. ]
  28536. ))
  28537. characterMakers.push(() => makeCharacter(
  28538. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28539. {
  28540. front: {
  28541. height: math.unit(100, "miles"),
  28542. name: "Front",
  28543. image: {
  28544. source: "./media/characters/sona/front.svg",
  28545. extra: 2433 / 2201,
  28546. bottom: 53 / 2486
  28547. }
  28548. },
  28549. foot: {
  28550. height: math.unit(16.1, "miles"),
  28551. name: "Foot",
  28552. image: {
  28553. source: "./media/characters/sona/foot.svg"
  28554. }
  28555. },
  28556. },
  28557. [
  28558. {
  28559. name: "Macro",
  28560. height: math.unit(100, "miles"),
  28561. default: true
  28562. },
  28563. ]
  28564. ))
  28565. characterMakers.push(() => makeCharacter(
  28566. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28567. {
  28568. front: {
  28569. height: math.unit(6, "feet"),
  28570. weight: math.unit(150, "lb"),
  28571. name: "Front",
  28572. image: {
  28573. source: "./media/characters/bailey/front.svg",
  28574. extra: 1778 / 1724,
  28575. bottom: 30 / 1808
  28576. }
  28577. },
  28578. },
  28579. [
  28580. {
  28581. name: "Micro",
  28582. height: math.unit(4, "inches")
  28583. },
  28584. {
  28585. name: "Normal",
  28586. height: math.unit(5 + 5 / 12, "feet"),
  28587. default: true
  28588. },
  28589. {
  28590. name: "Macro",
  28591. height: math.unit(250, "feet")
  28592. },
  28593. {
  28594. name: "Megamacro",
  28595. height: math.unit(100, "miles")
  28596. },
  28597. ]
  28598. ))
  28599. characterMakers.push(() => makeCharacter(
  28600. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28601. {
  28602. front: {
  28603. height: math.unit(5 + 2 / 12, "feet"),
  28604. weight: math.unit(120, "lb"),
  28605. name: "Front",
  28606. image: {
  28607. source: "./media/characters/snaps/front.svg",
  28608. extra: 2370 / 2177,
  28609. bottom: 48 / 2418
  28610. }
  28611. },
  28612. back: {
  28613. height: math.unit(5 + 2 / 12, "feet"),
  28614. weight: math.unit(120, "lb"),
  28615. name: "Back",
  28616. image: {
  28617. source: "./media/characters/snaps/back.svg",
  28618. extra: 2408 / 2258,
  28619. bottom: 15 / 2423
  28620. }
  28621. },
  28622. },
  28623. [
  28624. {
  28625. name: "Micro",
  28626. height: math.unit(9, "inches")
  28627. },
  28628. {
  28629. name: "Normal",
  28630. height: math.unit(5 + 2 / 12, "feet"),
  28631. default: true
  28632. },
  28633. {
  28634. name: "Mini Macro",
  28635. height: math.unit(10, "feet")
  28636. },
  28637. ]
  28638. ))
  28639. characterMakers.push(() => makeCharacter(
  28640. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28641. {
  28642. front: {
  28643. height: math.unit(1.8, "meters"),
  28644. weight: math.unit(85, "kg"),
  28645. name: "Front",
  28646. image: {
  28647. source: "./media/characters/azteck/front.svg",
  28648. extra: 2815 / 2625,
  28649. bottom: 89 / 2904
  28650. }
  28651. },
  28652. back: {
  28653. height: math.unit(1.8, "meters"),
  28654. weight: math.unit(85, "kg"),
  28655. name: "Back",
  28656. image: {
  28657. source: "./media/characters/azteck/back.svg",
  28658. extra: 2856 / 2648,
  28659. bottom: 85 / 2941
  28660. }
  28661. },
  28662. frontDressed: {
  28663. height: math.unit(1.8, "meters"),
  28664. weight: math.unit(85, "kg"),
  28665. name: "Front (Dressed)",
  28666. image: {
  28667. source: "./media/characters/azteck/front-dressed.svg",
  28668. extra: 2147 / 2003,
  28669. bottom: 68 / 2215
  28670. }
  28671. },
  28672. head: {
  28673. height: math.unit(0.47, "meters"),
  28674. weight: math.unit(85, "kg"),
  28675. name: "Head",
  28676. image: {
  28677. source: "./media/characters/azteck/head.svg"
  28678. }
  28679. },
  28680. },
  28681. [
  28682. {
  28683. name: "Bite sized",
  28684. height: math.unit(16, "cm")
  28685. },
  28686. {
  28687. name: "Normal",
  28688. height: math.unit(1.8, "meters"),
  28689. default: true
  28690. },
  28691. ]
  28692. ))
  28693. characterMakers.push(() => makeCharacter(
  28694. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28695. {
  28696. front: {
  28697. height: math.unit(6, "feet"),
  28698. weight: math.unit(150, "lb"),
  28699. name: "Front",
  28700. image: {
  28701. source: "./media/characters/pidge/front.svg",
  28702. extra: 620 / 588,
  28703. bottom: 9 / 629
  28704. }
  28705. },
  28706. back: {
  28707. height: math.unit(6, "feet"),
  28708. weight: math.unit(150, "lb"),
  28709. name: "Back",
  28710. image: {
  28711. source: "./media/characters/pidge/back.svg",
  28712. extra: 620 / 588,
  28713. bottom: 9 / 629
  28714. }
  28715. },
  28716. },
  28717. [
  28718. {
  28719. name: "Macro",
  28720. height: math.unit(1, "mile"),
  28721. default: true
  28722. },
  28723. ]
  28724. ))
  28725. characterMakers.push(() => makeCharacter(
  28726. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28727. {
  28728. front: {
  28729. height: math.unit(6, "feet"),
  28730. weight: math.unit(150, "lb"),
  28731. name: "Front",
  28732. image: {
  28733. source: "./media/characters/en/front.svg",
  28734. extra: 1697 / 1563,
  28735. bottom: 103 / 1800
  28736. }
  28737. },
  28738. back: {
  28739. height: math.unit(6, "feet"),
  28740. weight: math.unit(150, "lb"),
  28741. name: "Back",
  28742. image: {
  28743. source: "./media/characters/en/back.svg",
  28744. extra: 1700 / 1570,
  28745. bottom: 51 / 1751
  28746. }
  28747. },
  28748. frontDressed: {
  28749. height: math.unit(6, "feet"),
  28750. weight: math.unit(150, "lb"),
  28751. name: "Front (Dressed)",
  28752. image: {
  28753. source: "./media/characters/en/front-dressed.svg",
  28754. extra: 1697 / 1563,
  28755. bottom: 103 / 1800
  28756. }
  28757. },
  28758. backDressed: {
  28759. height: math.unit(6, "feet"),
  28760. weight: math.unit(150, "lb"),
  28761. name: "Back (Dressed)",
  28762. image: {
  28763. source: "./media/characters/en/back-dressed.svg",
  28764. extra: 1700 / 1570,
  28765. bottom: 51 / 1751
  28766. }
  28767. },
  28768. },
  28769. [
  28770. {
  28771. name: "Macro",
  28772. height: math.unit(210, "feet"),
  28773. default: true
  28774. },
  28775. ]
  28776. ))
  28777. characterMakers.push(() => makeCharacter(
  28778. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28779. {
  28780. front: {
  28781. height: math.unit(6, "feet"),
  28782. weight: math.unit(150, "lb"),
  28783. name: "Front",
  28784. image: {
  28785. source: "./media/characters/haze-orris/front.svg",
  28786. extra: 3975 / 3525,
  28787. bottom: 137 / 4112
  28788. }
  28789. },
  28790. },
  28791. [
  28792. {
  28793. name: "Micro",
  28794. height: math.unit(150, "mm"),
  28795. default: true
  28796. },
  28797. ]
  28798. ))
  28799. characterMakers.push(() => makeCharacter(
  28800. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28801. {
  28802. front: {
  28803. height: math.unit(6, "feet"),
  28804. weight: math.unit(150, "lb"),
  28805. name: "Front",
  28806. image: {
  28807. source: "./media/characters/casselene-yaro/front.svg",
  28808. extra: 4721 / 4541,
  28809. bottom: 82 / 4803
  28810. }
  28811. },
  28812. back: {
  28813. height: math.unit(6, "feet"),
  28814. weight: math.unit(150, "lb"),
  28815. name: "Back",
  28816. image: {
  28817. source: "./media/characters/casselene-yaro/back.svg",
  28818. extra: 4569 / 4377,
  28819. bottom: 69 / 4638
  28820. }
  28821. },
  28822. frontDressed: {
  28823. height: math.unit(6, "feet"),
  28824. weight: math.unit(150, "lb"),
  28825. name: "Front-dressed",
  28826. image: {
  28827. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28828. extra: 4721 / 4541,
  28829. bottom: 82 / 4803
  28830. }
  28831. },
  28832. },
  28833. [
  28834. {
  28835. name: "Macro",
  28836. height: math.unit(190, "feet"),
  28837. default: true
  28838. },
  28839. ]
  28840. ))
  28841. characterMakers.push(() => makeCharacter(
  28842. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28843. {
  28844. front: {
  28845. height: math.unit(6, "feet"),
  28846. weight: math.unit(150, "lb"),
  28847. name: "Front",
  28848. image: {
  28849. source: "./media/characters/myra-rue-delore/front.svg",
  28850. extra: 1340 / 1308,
  28851. bottom: 67 / 1407
  28852. }
  28853. },
  28854. back: {
  28855. height: math.unit(6, "feet"),
  28856. weight: math.unit(150, "lb"),
  28857. name: "Back",
  28858. image: {
  28859. source: "./media/characters/myra-rue-delore/back.svg",
  28860. extra: 1341 / 1310,
  28861. bottom: 40 / 1381
  28862. }
  28863. },
  28864. frontDressed: {
  28865. height: math.unit(6, "feet"),
  28866. weight: math.unit(150, "lb"),
  28867. name: "Front (Dressed)",
  28868. image: {
  28869. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28870. extra: 1340 / 1308,
  28871. bottom: 67 / 1407
  28872. }
  28873. },
  28874. },
  28875. [
  28876. {
  28877. name: "Macro",
  28878. height: math.unit(150, "feet"),
  28879. default: true
  28880. },
  28881. ]
  28882. ))
  28883. characterMakers.push(() => makeCharacter(
  28884. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28885. {
  28886. front: {
  28887. height: math.unit(10, "feet"),
  28888. weight: math.unit(15015, "lb"),
  28889. name: "Front",
  28890. image: {
  28891. source: "./media/characters/fem!plat/front.svg",
  28892. extra: 2799 / 2604,
  28893. bottom: 149 / 2948
  28894. }
  28895. },
  28896. },
  28897. [
  28898. {
  28899. name: "Normal",
  28900. height: math.unit(10, "feet"),
  28901. default: true
  28902. },
  28903. {
  28904. name: "Macro",
  28905. height: math.unit(100, "feet")
  28906. },
  28907. {
  28908. name: "Megamacro",
  28909. height: math.unit(1000, "feet")
  28910. },
  28911. ]
  28912. ))
  28913. characterMakers.push(() => makeCharacter(
  28914. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28915. {
  28916. front: {
  28917. height: math.unit(15 + 5 / 12, "feet"),
  28918. weight: math.unit(4600, "lb"),
  28919. name: "Front",
  28920. image: {
  28921. source: "./media/characters/neapolitan-ananassa/front.svg",
  28922. extra: 2903 / 2736,
  28923. bottom: 0 / 2903
  28924. }
  28925. },
  28926. side: {
  28927. height: math.unit(15 + 5 / 12, "feet"),
  28928. weight: math.unit(4600, "lb"),
  28929. name: "Side",
  28930. image: {
  28931. source: "./media/characters/neapolitan-ananassa/side.svg",
  28932. extra: 2925 / 2719,
  28933. bottom: 0 / 2925
  28934. }
  28935. },
  28936. back: {
  28937. height: math.unit(15 + 5 / 12, "feet"),
  28938. weight: math.unit(4600, "lb"),
  28939. name: "Back",
  28940. image: {
  28941. source: "./media/characters/neapolitan-ananassa/back.svg",
  28942. extra: 2903 / 2736,
  28943. bottom: 0 / 2903
  28944. }
  28945. },
  28946. },
  28947. [
  28948. {
  28949. name: "Normal",
  28950. height: math.unit(15 + 5 / 12, "feet"),
  28951. default: true
  28952. },
  28953. {
  28954. name: "Post-Millenium",
  28955. height: math.unit(35 + 5 / 12, "feet")
  28956. },
  28957. {
  28958. name: "Post-Era",
  28959. height: math.unit(450 + 5 / 12, "feet")
  28960. },
  28961. ]
  28962. ))
  28963. characterMakers.push(() => makeCharacter(
  28964. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28965. {
  28966. front: {
  28967. height: math.unit(300, "meters"),
  28968. weight: math.unit(125000, "tonnes"),
  28969. name: "Front",
  28970. image: {
  28971. source: "./media/characters/pazuzu/front.svg",
  28972. extra: 877 / 794,
  28973. bottom: 47 / 924
  28974. }
  28975. },
  28976. },
  28977. [
  28978. {
  28979. name: "Macro",
  28980. height: math.unit(300, "meters"),
  28981. default: true
  28982. },
  28983. ]
  28984. ))
  28985. characterMakers.push(() => makeCharacter(
  28986. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28987. {
  28988. side: {
  28989. height: math.unit(10 + 7 / 12, "feet"),
  28990. weight: math.unit(2.5, "tons"),
  28991. name: "Side",
  28992. image: {
  28993. source: "./media/characters/aasha/side.svg",
  28994. extra: 1345 / 1245,
  28995. bottom: 111 / 1456
  28996. }
  28997. },
  28998. back: {
  28999. height: math.unit(10 + 7 / 12, "feet"),
  29000. weight: math.unit(2.5, "tons"),
  29001. name: "Back",
  29002. image: {
  29003. source: "./media/characters/aasha/back.svg",
  29004. extra: 1133 / 1057,
  29005. bottom: 257 / 1390
  29006. }
  29007. },
  29008. },
  29009. [
  29010. {
  29011. name: "Normal",
  29012. height: math.unit(10 + 7 / 12, "feet"),
  29013. default: true
  29014. },
  29015. ]
  29016. ))
  29017. characterMakers.push(() => makeCharacter(
  29018. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29019. {
  29020. front: {
  29021. height: math.unit(6 + 3 / 12, "feet"),
  29022. name: "Front",
  29023. image: {
  29024. source: "./media/characters/nevan/front.svg",
  29025. extra: 704 / 704,
  29026. bottom: 28 / 732
  29027. }
  29028. },
  29029. back: {
  29030. height: math.unit(6 + 3 / 12, "feet"),
  29031. name: "Back",
  29032. image: {
  29033. source: "./media/characters/nevan/back.svg",
  29034. extra: 714 / 714,
  29035. bottom: 21 / 735
  29036. }
  29037. },
  29038. frontFlaccid: {
  29039. height: math.unit(6 + 3 / 12, "feet"),
  29040. name: "Front (Flaccid)",
  29041. image: {
  29042. source: "./media/characters/nevan/front-flaccid.svg",
  29043. extra: 704 / 704,
  29044. bottom: 28 / 732
  29045. }
  29046. },
  29047. frontErect: {
  29048. height: math.unit(6 + 3 / 12, "feet"),
  29049. name: "Front (Erect)",
  29050. image: {
  29051. source: "./media/characters/nevan/front-erect.svg",
  29052. extra: 704 / 704,
  29053. bottom: 28 / 732
  29054. }
  29055. },
  29056. backFlaccid: {
  29057. height: math.unit(6 + 3 / 12, "feet"),
  29058. name: "Back (Flaccid)",
  29059. image: {
  29060. source: "./media/characters/nevan/back-flaccid.svg",
  29061. extra: 714 / 714,
  29062. bottom: 21 / 735
  29063. }
  29064. },
  29065. },
  29066. [
  29067. {
  29068. name: "Normal",
  29069. height: math.unit(6 + 3 / 12, "feet"),
  29070. default: true
  29071. },
  29072. ]
  29073. ))
  29074. characterMakers.push(() => makeCharacter(
  29075. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29076. {
  29077. front: {
  29078. height: math.unit(4, "feet"),
  29079. name: "Front",
  29080. image: {
  29081. source: "./media/characters/arhan/front.svg",
  29082. extra: 3368 / 3133,
  29083. bottom: 0 / 3368
  29084. }
  29085. },
  29086. side: {
  29087. height: math.unit(4, "feet"),
  29088. name: "Side",
  29089. image: {
  29090. source: "./media/characters/arhan/side.svg",
  29091. extra: 3347 / 3105,
  29092. bottom: 0 / 3347
  29093. }
  29094. },
  29095. tongue: {
  29096. height: math.unit(1.42, "feet"),
  29097. name: "Tongue",
  29098. image: {
  29099. source: "./media/characters/arhan/tongue.svg"
  29100. }
  29101. },
  29102. head: {
  29103. height: math.unit(0.85, "feet"),
  29104. name: "Head",
  29105. image: {
  29106. source: "./media/characters/arhan/head.svg"
  29107. }
  29108. },
  29109. },
  29110. [
  29111. {
  29112. name: "Normal",
  29113. height: math.unit(4, "feet"),
  29114. default: true
  29115. },
  29116. ]
  29117. ))
  29118. characterMakers.push(() => makeCharacter(
  29119. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29120. {
  29121. front: {
  29122. height: math.unit(5 + 7.5 / 12, "feet"),
  29123. weight: math.unit(120, "lb"),
  29124. name: "Front",
  29125. image: {
  29126. source: "./media/characters/digi-duncan/front.svg",
  29127. extra: 330 / 326,
  29128. bottom: 16 / 346
  29129. }
  29130. },
  29131. side: {
  29132. height: math.unit(5 + 7.5 / 12, "feet"),
  29133. weight: math.unit(120, "lb"),
  29134. name: "Side",
  29135. image: {
  29136. source: "./media/characters/digi-duncan/side.svg",
  29137. extra: 341 / 337,
  29138. bottom: 1 / 342
  29139. }
  29140. },
  29141. back: {
  29142. height: math.unit(5 + 7.5 / 12, "feet"),
  29143. weight: math.unit(120, "lb"),
  29144. name: "Back",
  29145. image: {
  29146. source: "./media/characters/digi-duncan/back.svg",
  29147. extra: 330 / 326,
  29148. bottom: 12 / 342
  29149. }
  29150. },
  29151. },
  29152. [
  29153. {
  29154. name: "Speck",
  29155. height: math.unit(0.25, "mm")
  29156. },
  29157. {
  29158. name: "Micro",
  29159. height: math.unit(5, "mm")
  29160. },
  29161. {
  29162. name: "Tiny",
  29163. height: math.unit(0.5, "inches"),
  29164. default: true
  29165. },
  29166. {
  29167. name: "Human",
  29168. height: math.unit(5 + 7.5 / 12, "feet")
  29169. },
  29170. {
  29171. name: "Minigiant",
  29172. height: math.unit(8 + 5.25, "feet")
  29173. },
  29174. {
  29175. name: "Giant",
  29176. height: math.unit(2000, "feet")
  29177. },
  29178. {
  29179. name: "Mega",
  29180. height: math.unit(371.1, "miles")
  29181. },
  29182. ]
  29183. ))
  29184. characterMakers.push(() => makeCharacter(
  29185. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29186. {
  29187. front: {
  29188. height: math.unit(2, "meters"),
  29189. weight: math.unit(350, "kg"),
  29190. name: "Front",
  29191. image: {
  29192. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29193. extra: 898 / 838,
  29194. bottom: 9 / 907
  29195. }
  29196. },
  29197. },
  29198. [
  29199. {
  29200. name: "Micro",
  29201. height: math.unit(8, "meters")
  29202. },
  29203. {
  29204. name: "Normal",
  29205. height: math.unit(50, "meters"),
  29206. default: true
  29207. },
  29208. {
  29209. name: "Macro",
  29210. height: math.unit(500, "meters")
  29211. },
  29212. ]
  29213. ))
  29214. characterMakers.push(() => makeCharacter(
  29215. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29216. {
  29217. front: {
  29218. height: math.unit(6 + 6 / 12, "feet"),
  29219. name: "Front",
  29220. image: {
  29221. source: "./media/characters/khardesh/front.svg",
  29222. extra: 888 / 797,
  29223. bottom: 25 / 913
  29224. }
  29225. },
  29226. },
  29227. [
  29228. {
  29229. name: "Normal",
  29230. height: math.unit(6 + 6 / 12, "feet"),
  29231. default: true
  29232. },
  29233. {
  29234. name: "Normal+",
  29235. height: math.unit(4, "meters")
  29236. },
  29237. {
  29238. name: "Macro",
  29239. height: math.unit(50, "meters")
  29240. },
  29241. {
  29242. name: "Macro+",
  29243. height: math.unit(100, "meters")
  29244. },
  29245. {
  29246. name: "Megamacro",
  29247. height: math.unit(20, "km")
  29248. },
  29249. ]
  29250. ))
  29251. characterMakers.push(() => makeCharacter(
  29252. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29253. {
  29254. front: {
  29255. height: math.unit(6, "feet"),
  29256. weight: math.unit(150, "lb"),
  29257. name: "Front",
  29258. image: {
  29259. source: "./media/characters/kosho/front.svg",
  29260. extra: 1847 / 1847,
  29261. bottom: 86 / 1933
  29262. }
  29263. },
  29264. },
  29265. [
  29266. {
  29267. name: "Second-stage micro",
  29268. height: math.unit(0.5, "inches")
  29269. },
  29270. {
  29271. name: "First-stage micro",
  29272. height: math.unit(6, "inches")
  29273. },
  29274. {
  29275. name: "Normal",
  29276. height: math.unit(6, "feet"),
  29277. default: true
  29278. },
  29279. {
  29280. name: "First-stage macro",
  29281. height: math.unit(72, "feet")
  29282. },
  29283. {
  29284. name: "Second-stage macro",
  29285. height: math.unit(864, "feet")
  29286. },
  29287. ]
  29288. ))
  29289. characterMakers.push(() => makeCharacter(
  29290. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29291. {
  29292. normal: {
  29293. height: math.unit(4 + 6 / 12, "feet"),
  29294. name: "Normal",
  29295. image: {
  29296. source: "./media/characters/hydra/normal.svg",
  29297. extra: 2833 / 2634,
  29298. bottom: 68 / 2901
  29299. }
  29300. },
  29301. smol: {
  29302. height: math.unit(0.705, "inches"),
  29303. name: "Smol",
  29304. image: {
  29305. source: "./media/characters/hydra/smol.svg",
  29306. extra: 2715 / 2540,
  29307. bottom: 0 / 2715
  29308. }
  29309. },
  29310. },
  29311. [
  29312. {
  29313. name: "Normal",
  29314. height: math.unit(4 + 6 / 12, "feet"),
  29315. default: true
  29316. }
  29317. ]
  29318. ))
  29319. characterMakers.push(() => makeCharacter(
  29320. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29321. {
  29322. front: {
  29323. height: math.unit(0.6, "cm"),
  29324. name: "Front",
  29325. image: {
  29326. source: "./media/characters/daz/front.svg",
  29327. extra: 1682 / 1164,
  29328. bottom: 42 / 1724
  29329. }
  29330. },
  29331. },
  29332. [
  29333. {
  29334. name: "Normal",
  29335. height: math.unit(0.6, "cm"),
  29336. default: true
  29337. },
  29338. ]
  29339. ))
  29340. characterMakers.push(() => makeCharacter(
  29341. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29342. {
  29343. front: {
  29344. height: math.unit(6, "feet"),
  29345. weight: math.unit(235, "lb"),
  29346. name: "Front",
  29347. image: {
  29348. source: "./media/characters/theo-pangolin/front.svg",
  29349. extra: 1996 / 1969,
  29350. bottom: 115 / 2111
  29351. }
  29352. },
  29353. back: {
  29354. height: math.unit(6, "feet"),
  29355. weight: math.unit(235, "lb"),
  29356. name: "Back",
  29357. image: {
  29358. source: "./media/characters/theo-pangolin/back.svg",
  29359. extra: 1979 / 1979,
  29360. bottom: 40 / 2019
  29361. }
  29362. },
  29363. feral: {
  29364. height: math.unit(2, "feet"),
  29365. weight: math.unit(30, "lb"),
  29366. name: "Feral",
  29367. image: {
  29368. source: "./media/characters/theo-pangolin/feral.svg",
  29369. extra: 803 / 791,
  29370. bottom: 181 / 984
  29371. }
  29372. },
  29373. footFive: {
  29374. height: math.unit(1.43, "feet"),
  29375. name: "Foot (Five Toes)",
  29376. image: {
  29377. source: "./media/characters/theo-pangolin/foot-five.svg"
  29378. }
  29379. },
  29380. footFour: {
  29381. height: math.unit(1.43, "feet"),
  29382. name: "Foot (Four Toes)",
  29383. image: {
  29384. source: "./media/characters/theo-pangolin/foot-four.svg"
  29385. }
  29386. },
  29387. handFour: {
  29388. height: math.unit(0.81, "feet"),
  29389. name: "Hand (Four Fingers)",
  29390. image: {
  29391. source: "./media/characters/theo-pangolin/hand-four.svg"
  29392. }
  29393. },
  29394. handThree: {
  29395. height: math.unit(0.81, "feet"),
  29396. name: "Hand (Three Fingers)",
  29397. image: {
  29398. source: "./media/characters/theo-pangolin/hand-three.svg"
  29399. }
  29400. },
  29401. headFront: {
  29402. height: math.unit(1.37, "feet"),
  29403. name: "Head (Front)",
  29404. image: {
  29405. source: "./media/characters/theo-pangolin/head-front.svg"
  29406. }
  29407. },
  29408. headSide: {
  29409. height: math.unit(1.43, "feet"),
  29410. name: "Head (Side)",
  29411. image: {
  29412. source: "./media/characters/theo-pangolin/head-side.svg"
  29413. }
  29414. },
  29415. tongue: {
  29416. height: math.unit(2.29, "feet"),
  29417. name: "Tongue",
  29418. image: {
  29419. source: "./media/characters/theo-pangolin/tongue.svg"
  29420. }
  29421. },
  29422. },
  29423. [
  29424. {
  29425. name: "Normal",
  29426. height: math.unit(6, "feet")
  29427. },
  29428. {
  29429. name: "Macro",
  29430. height: math.unit(400, "feet"),
  29431. default: true
  29432. },
  29433. ]
  29434. ))
  29435. characterMakers.push(() => makeCharacter(
  29436. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29437. {
  29438. front: {
  29439. height: math.unit(6, "inches"),
  29440. weight: math.unit(0.036, "kg"),
  29441. name: "Front",
  29442. image: {
  29443. source: "./media/characters/renée/front.svg",
  29444. extra: 900 / 886,
  29445. bottom: 8 / 908
  29446. }
  29447. },
  29448. },
  29449. [
  29450. {
  29451. name: "Nano",
  29452. height: math.unit(1, "nm")
  29453. },
  29454. {
  29455. name: "Micro",
  29456. height: math.unit(1, "mm")
  29457. },
  29458. {
  29459. name: "Normal",
  29460. height: math.unit(6, "inches")
  29461. },
  29462. {
  29463. name: "Macro",
  29464. height: math.unit(2000, "feet"),
  29465. default: true
  29466. },
  29467. {
  29468. name: "Megamacro",
  29469. height: math.unit(2, "km")
  29470. },
  29471. {
  29472. name: "Gigamacro",
  29473. height: math.unit(2000, "km")
  29474. },
  29475. {
  29476. name: "Teramacro",
  29477. height: math.unit(250000, "km")
  29478. },
  29479. ]
  29480. ))
  29481. characterMakers.push(() => makeCharacter(
  29482. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29483. {
  29484. front: {
  29485. height: math.unit(4, "meters"),
  29486. weight: math.unit(150, "kg"),
  29487. name: "Front",
  29488. image: {
  29489. source: "./media/characters/caledvwlch/front.svg",
  29490. extra: 1760 / 1551,
  29491. bottom: 28 / 1788
  29492. }
  29493. },
  29494. side: {
  29495. height: math.unit(4, "meters"),
  29496. weight: math.unit(150, "kg"),
  29497. name: "Side",
  29498. image: {
  29499. source: "./media/characters/caledvwlch/side.svg",
  29500. extra: 1605 / 1536,
  29501. bottom: 31 / 1636
  29502. }
  29503. },
  29504. back: {
  29505. height: math.unit(4, "meters"),
  29506. weight: math.unit(150, "kg"),
  29507. name: "Back",
  29508. image: {
  29509. source: "./media/characters/caledvwlch/back.svg",
  29510. extra: 1635 / 1565,
  29511. bottom: 27 / 1662
  29512. }
  29513. },
  29514. },
  29515. [
  29516. {
  29517. name: "\"Incognito\"",
  29518. height: math.unit(4, "meters")
  29519. },
  29520. {
  29521. name: "Small rampage",
  29522. height: math.unit(600, "meters")
  29523. },
  29524. {
  29525. name: "Mega",
  29526. height: math.unit(30, "km")
  29527. },
  29528. {
  29529. name: "Home-size",
  29530. height: math.unit(50, "km"),
  29531. default: true
  29532. },
  29533. {
  29534. name: "Giga",
  29535. height: math.unit(300, "km")
  29536. },
  29537. {
  29538. name: "Lounging",
  29539. height: math.unit(11000, "km")
  29540. },
  29541. {
  29542. name: "Planet snacking",
  29543. height: math.unit(2000000, "km")
  29544. },
  29545. ]
  29546. ))
  29547. characterMakers.push(() => makeCharacter(
  29548. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29549. {
  29550. front: {
  29551. height: math.unit(6, "feet"),
  29552. weight: math.unit(215, "lb"),
  29553. name: "Front",
  29554. image: {
  29555. source: "./media/characters/sapphire-svell/front.svg",
  29556. extra: 495 / 455,
  29557. bottom: 20 / 515
  29558. }
  29559. },
  29560. back: {
  29561. height: math.unit(6, "feet"),
  29562. weight: math.unit(216, "lb"),
  29563. name: "Back",
  29564. image: {
  29565. source: "./media/characters/sapphire-svell/back.svg",
  29566. extra: 497 / 477,
  29567. bottom: 7 / 504
  29568. }
  29569. },
  29570. maw: {
  29571. height: math.unit(1.57, "feet"),
  29572. name: "Maw",
  29573. image: {
  29574. source: "./media/characters/sapphire-svell/maw.svg"
  29575. }
  29576. },
  29577. foot: {
  29578. height: math.unit(1.07, "feet"),
  29579. name: "Foot",
  29580. image: {
  29581. source: "./media/characters/sapphire-svell/foot.svg"
  29582. }
  29583. },
  29584. toering: {
  29585. height: math.unit(1.7, "inch"),
  29586. name: "Toering",
  29587. image: {
  29588. source: "./media/characters/sapphire-svell/toering.svg"
  29589. }
  29590. },
  29591. },
  29592. [
  29593. {
  29594. name: "Normal",
  29595. height: math.unit(300, "feet"),
  29596. default: true
  29597. },
  29598. {
  29599. name: "Augmented",
  29600. height: math.unit(1250, "feet")
  29601. },
  29602. {
  29603. name: "Unleashed",
  29604. height: math.unit(3000, "feet")
  29605. },
  29606. ]
  29607. ))
  29608. characterMakers.push(() => makeCharacter(
  29609. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29610. {
  29611. side: {
  29612. height: math.unit(2 + 3 / 12, "feet"),
  29613. weight: math.unit(110, "lb"),
  29614. name: "Side",
  29615. image: {
  29616. source: "./media/characters/glitch-flux/side.svg",
  29617. extra: 997 / 805,
  29618. bottom: 20 / 1017
  29619. }
  29620. },
  29621. },
  29622. [
  29623. {
  29624. name: "Normal",
  29625. height: math.unit(2 + 3 / 12, "feet"),
  29626. default: true
  29627. },
  29628. ]
  29629. ))
  29630. characterMakers.push(() => makeCharacter(
  29631. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29632. {
  29633. front: {
  29634. height: math.unit(4, "meters"),
  29635. name: "Front",
  29636. image: {
  29637. source: "./media/characters/mid/front.svg",
  29638. extra: 507 / 476,
  29639. bottom: 17 / 524
  29640. }
  29641. },
  29642. back: {
  29643. height: math.unit(4, "meters"),
  29644. name: "Back",
  29645. image: {
  29646. source: "./media/characters/mid/back.svg",
  29647. extra: 519 / 487,
  29648. bottom: 7 / 526
  29649. }
  29650. },
  29651. stuck: {
  29652. height: math.unit(2.2, "meters"),
  29653. name: "Stuck",
  29654. image: {
  29655. source: "./media/characters/mid/stuck.svg",
  29656. extra: 1951 / 1869,
  29657. bottom: 88 / 2039
  29658. }
  29659. }
  29660. },
  29661. [
  29662. {
  29663. name: "Normal",
  29664. height: math.unit(4, "meters"),
  29665. default: true
  29666. },
  29667. {
  29668. name: "Big",
  29669. height: math.unit(10, "meters")
  29670. },
  29671. {
  29672. name: "Macro",
  29673. height: math.unit(800, "meters")
  29674. },
  29675. {
  29676. name: "Megamacro",
  29677. height: math.unit(100, "km")
  29678. },
  29679. {
  29680. name: "Overgrown",
  29681. height: math.unit(1, "parsec")
  29682. },
  29683. ]
  29684. ))
  29685. characterMakers.push(() => makeCharacter(
  29686. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29687. {
  29688. front: {
  29689. height: math.unit(2.5, "meters"),
  29690. weight: math.unit(225, "kg"),
  29691. name: "Front",
  29692. image: {
  29693. source: "./media/characters/iris/front.svg",
  29694. extra: 3348 / 3251,
  29695. bottom: 205 / 3553
  29696. }
  29697. },
  29698. maw: {
  29699. height: math.unit(0.56, "meter"),
  29700. name: "Maw",
  29701. image: {
  29702. source: "./media/characters/iris/maw.svg"
  29703. }
  29704. },
  29705. },
  29706. [
  29707. {
  29708. name: "Mewter cat",
  29709. height: math.unit(1.2, "meters")
  29710. },
  29711. {
  29712. name: "Minimacro",
  29713. height: math.unit(2.5, "meters"),
  29714. default: true
  29715. },
  29716. {
  29717. name: "Macro",
  29718. height: math.unit(180, "meters")
  29719. },
  29720. {
  29721. name: "Megamacro",
  29722. height: math.unit(2746, "meters")
  29723. },
  29724. ]
  29725. ))
  29726. characterMakers.push(() => makeCharacter(
  29727. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29728. {
  29729. front: {
  29730. height: math.unit(6, "feet"),
  29731. weight: math.unit(135, "lb"),
  29732. name: "Front",
  29733. image: {
  29734. source: "./media/characters/axel/front.svg",
  29735. extra: 908 / 908,
  29736. bottom: 58 / 966
  29737. }
  29738. },
  29739. side: {
  29740. height: math.unit(6, "feet"),
  29741. weight: math.unit(135, "lb"),
  29742. name: "Side",
  29743. image: {
  29744. source: "./media/characters/axel/side.svg",
  29745. extra: 958 / 958,
  29746. bottom: 11 / 969
  29747. }
  29748. },
  29749. back: {
  29750. height: math.unit(6, "feet"),
  29751. weight: math.unit(135, "lb"),
  29752. name: "Back",
  29753. image: {
  29754. source: "./media/characters/axel/back.svg",
  29755. extra: 887 / 887,
  29756. bottom: 34 / 921
  29757. }
  29758. },
  29759. head: {
  29760. height: math.unit(1.07, "feet"),
  29761. name: "Head",
  29762. image: {
  29763. source: "./media/characters/axel/head.svg"
  29764. }
  29765. },
  29766. beak: {
  29767. height: math.unit(1.4, "feet"),
  29768. name: "Beak",
  29769. image: {
  29770. source: "./media/characters/axel/beak.svg"
  29771. }
  29772. },
  29773. beakSide: {
  29774. height: math.unit(1.4, "feet"),
  29775. name: "Beak Side",
  29776. image: {
  29777. source: "./media/characters/axel/beak-side.svg"
  29778. }
  29779. },
  29780. sheath: {
  29781. height: math.unit(0.5, "feet"),
  29782. name: "Sheath",
  29783. image: {
  29784. source: "./media/characters/axel/sheath.svg"
  29785. }
  29786. },
  29787. dick: {
  29788. height: math.unit(0.98, "feet"),
  29789. name: "Dick",
  29790. image: {
  29791. source: "./media/characters/axel/dick.svg"
  29792. }
  29793. },
  29794. },
  29795. [
  29796. {
  29797. name: "Macro",
  29798. height: math.unit(68, "meters"),
  29799. default: true
  29800. },
  29801. ]
  29802. ))
  29803. characterMakers.push(() => makeCharacter(
  29804. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29805. {
  29806. front: {
  29807. height: math.unit(3.5, "meters"),
  29808. weight: math.unit(1200, "kg"),
  29809. name: "Front",
  29810. image: {
  29811. source: "./media/characters/joanna/front.svg",
  29812. extra: 1596 / 1488,
  29813. bottom: 29 / 1625
  29814. }
  29815. },
  29816. back: {
  29817. height: math.unit(3.5, "meters"),
  29818. weight: math.unit(1200, "kg"),
  29819. name: "Back",
  29820. image: {
  29821. source: "./media/characters/joanna/back.svg",
  29822. extra: 1594 / 1495,
  29823. bottom: 26 / 1620
  29824. }
  29825. },
  29826. frontShorts: {
  29827. height: math.unit(3.5, "meters"),
  29828. weight: math.unit(1200, "kg"),
  29829. name: "Front (Shorts)",
  29830. image: {
  29831. source: "./media/characters/joanna/front-shorts.svg",
  29832. extra: 1596 / 1488,
  29833. bottom: 29 / 1625
  29834. }
  29835. },
  29836. frontBiker: {
  29837. height: math.unit(3.5, "meters"),
  29838. weight: math.unit(1200, "kg"),
  29839. name: "Front (Biker)",
  29840. image: {
  29841. source: "./media/characters/joanna/front-biker.svg",
  29842. extra: 1596 / 1488,
  29843. bottom: 29 / 1625
  29844. }
  29845. },
  29846. backBiker: {
  29847. height: math.unit(3.5, "meters"),
  29848. weight: math.unit(1200, "kg"),
  29849. name: "Back (Biker)",
  29850. image: {
  29851. source: "./media/characters/joanna/back-biker.svg",
  29852. extra: 1594 / 1495,
  29853. bottom: 88 / 1682
  29854. }
  29855. },
  29856. bikeLeft: {
  29857. height: math.unit(2.4, "meters"),
  29858. weight: math.unit(1600, "kg"),
  29859. name: "Bike (Left)",
  29860. image: {
  29861. source: "./media/characters/joanna/bike-left.svg",
  29862. extra: 720 / 720,
  29863. bottom: 8 / 728
  29864. }
  29865. },
  29866. bikeRight: {
  29867. height: math.unit(2.4, "meters"),
  29868. weight: math.unit(1600, "kg"),
  29869. name: "Bike (Right)",
  29870. image: {
  29871. source: "./media/characters/joanna/bike-right.svg",
  29872. extra: 720 / 720,
  29873. bottom: 8 / 728
  29874. }
  29875. },
  29876. },
  29877. [
  29878. {
  29879. name: "Incognito",
  29880. height: math.unit(3.5, "meters")
  29881. },
  29882. {
  29883. name: "Casual Big",
  29884. height: math.unit(200, "meters")
  29885. },
  29886. {
  29887. name: "Macro",
  29888. height: math.unit(600, "meters")
  29889. },
  29890. {
  29891. name: "Original",
  29892. height: math.unit(20, "km"),
  29893. default: true
  29894. },
  29895. {
  29896. name: "Giga",
  29897. height: math.unit(400, "km")
  29898. },
  29899. {
  29900. name: "Lounging",
  29901. height: math.unit(1500, "km")
  29902. },
  29903. {
  29904. name: "Planetary",
  29905. height: math.unit(200000, "km")
  29906. },
  29907. ]
  29908. ))
  29909. characterMakers.push(() => makeCharacter(
  29910. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29911. {
  29912. front: {
  29913. height: math.unit(6, "feet"),
  29914. weight: math.unit(150, "lb"),
  29915. name: "Front",
  29916. image: {
  29917. source: "./media/characters/hugo-sigil/front.svg",
  29918. extra: 522 / 500,
  29919. bottom: 2 / 524
  29920. }
  29921. },
  29922. back: {
  29923. height: math.unit(6, "feet"),
  29924. weight: math.unit(150, "lb"),
  29925. name: "Back",
  29926. image: {
  29927. source: "./media/characters/hugo-sigil/back.svg",
  29928. extra: 519 / 495,
  29929. bottom: 5 / 524
  29930. }
  29931. },
  29932. maw: {
  29933. height: math.unit(1.4, "feet"),
  29934. weight: math.unit(150, "lb"),
  29935. name: "Maw",
  29936. image: {
  29937. source: "./media/characters/hugo-sigil/maw.svg"
  29938. }
  29939. },
  29940. feet: {
  29941. height: math.unit(1.56, "feet"),
  29942. weight: math.unit(150, "lb"),
  29943. name: "Feet",
  29944. image: {
  29945. source: "./media/characters/hugo-sigil/feet.svg",
  29946. extra: 177 / 177,
  29947. bottom: 12 / 189
  29948. }
  29949. },
  29950. },
  29951. [
  29952. {
  29953. name: "Normal",
  29954. height: math.unit(6, "feet")
  29955. },
  29956. {
  29957. name: "Macro",
  29958. height: math.unit(200, "feet"),
  29959. default: true
  29960. },
  29961. ]
  29962. ))
  29963. characterMakers.push(() => makeCharacter(
  29964. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29965. {
  29966. front: {
  29967. height: math.unit(6, "feet"),
  29968. weight: math.unit(150, "lb"),
  29969. name: "Front",
  29970. image: {
  29971. source: "./media/characters/peri/front.svg",
  29972. extra: 2354 / 2233,
  29973. bottom: 49 / 2403
  29974. }
  29975. },
  29976. },
  29977. [
  29978. {
  29979. name: "Really Small",
  29980. height: math.unit(1, "nm")
  29981. },
  29982. {
  29983. name: "Micro",
  29984. height: math.unit(4, "inches")
  29985. },
  29986. {
  29987. name: "Normal",
  29988. height: math.unit(7, "inches"),
  29989. default: true
  29990. },
  29991. {
  29992. name: "Macro",
  29993. height: math.unit(400, "feet")
  29994. },
  29995. {
  29996. name: "Megamacro",
  29997. height: math.unit(100, "miles")
  29998. },
  29999. ]
  30000. ))
  30001. characterMakers.push(() => makeCharacter(
  30002. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30003. {
  30004. frontSlim: {
  30005. height: math.unit(7, "feet"),
  30006. name: "Front (Slim)",
  30007. image: {
  30008. source: "./media/characters/issilora/front-slim.svg",
  30009. extra: 529 / 449,
  30010. bottom: 53 / 582
  30011. }
  30012. },
  30013. sideSlim: {
  30014. height: math.unit(7, "feet"),
  30015. name: "Side (Slim)",
  30016. image: {
  30017. source: "./media/characters/issilora/side-slim.svg",
  30018. extra: 570 / 480,
  30019. bottom: 30 / 600
  30020. }
  30021. },
  30022. backSlim: {
  30023. height: math.unit(7, "feet"),
  30024. name: "Back (Slim)",
  30025. image: {
  30026. source: "./media/characters/issilora/back-slim.svg",
  30027. extra: 537 / 455,
  30028. bottom: 46 / 583
  30029. }
  30030. },
  30031. frontBuff: {
  30032. height: math.unit(7, "feet"),
  30033. name: "Front (Buff)",
  30034. image: {
  30035. source: "./media/characters/issilora/front-buff.svg",
  30036. extra: 2310 / 2035,
  30037. bottom: 335 / 2645
  30038. }
  30039. },
  30040. head: {
  30041. height: math.unit(1.94, "feet"),
  30042. name: "Head",
  30043. image: {
  30044. source: "./media/characters/issilora/head.svg"
  30045. }
  30046. },
  30047. },
  30048. [
  30049. {
  30050. name: "Minimum",
  30051. height: math.unit(7, "feet")
  30052. },
  30053. {
  30054. name: "Comfortable",
  30055. height: math.unit(17, "feet")
  30056. },
  30057. {
  30058. name: "Fun Size",
  30059. height: math.unit(47, "feet")
  30060. },
  30061. {
  30062. name: "Natural Macro",
  30063. height: math.unit(137, "feet"),
  30064. default: true
  30065. },
  30066. {
  30067. name: "Maximum Kaiju",
  30068. height: math.unit(397, "feet")
  30069. },
  30070. ]
  30071. ))
  30072. characterMakers.push(() => makeCharacter(
  30073. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30074. {
  30075. front: {
  30076. height: math.unit(50 + 9/12, "feet"),
  30077. weight: math.unit(32.8, "tons"),
  30078. name: "Front",
  30079. image: {
  30080. source: "./media/characters/irb'iiritaahn/front.svg",
  30081. extra: 1878/1826,
  30082. bottom: 326/2204
  30083. }
  30084. },
  30085. back: {
  30086. height: math.unit(50 + 9/12, "feet"),
  30087. weight: math.unit(32.8, "tons"),
  30088. name: "Back",
  30089. image: {
  30090. source: "./media/characters/irb'iiritaahn/back.svg",
  30091. extra: 2052/2018,
  30092. bottom: 152/2204
  30093. }
  30094. },
  30095. head: {
  30096. height: math.unit(12.86, "feet"),
  30097. name: "Head",
  30098. image: {
  30099. source: "./media/characters/irb'iiritaahn/head.svg"
  30100. }
  30101. },
  30102. maw: {
  30103. height: math.unit(9.66, "feet"),
  30104. name: "Maw",
  30105. image: {
  30106. source: "./media/characters/irb'iiritaahn/maw.svg"
  30107. }
  30108. },
  30109. frontDick: {
  30110. height: math.unit(8.78461, "feet"),
  30111. name: "Front Dick",
  30112. image: {
  30113. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30114. }
  30115. },
  30116. rearDick: {
  30117. height: math.unit(8.78461, "feet"),
  30118. name: "Rear Dick",
  30119. image: {
  30120. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30121. }
  30122. },
  30123. rearDickUnfolded: {
  30124. height: math.unit(8.78, "feet"),
  30125. name: "Rear Dick (Unfolded)",
  30126. image: {
  30127. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30128. }
  30129. },
  30130. wings: {
  30131. height: math.unit(43, "feet"),
  30132. name: "Wings",
  30133. image: {
  30134. source: "./media/characters/irb'iiritaahn/wings.svg"
  30135. }
  30136. },
  30137. },
  30138. [
  30139. {
  30140. name: "Macro",
  30141. height: math.unit(50 + 9/12, "feet"),
  30142. default: true
  30143. },
  30144. ]
  30145. ))
  30146. characterMakers.push(() => makeCharacter(
  30147. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30148. {
  30149. front: {
  30150. height: math.unit(205, "cm"),
  30151. weight: math.unit(102, "kg"),
  30152. name: "Front",
  30153. image: {
  30154. source: "./media/characters/irbisgreif/front.svg",
  30155. extra: 785/706,
  30156. bottom: 13/798
  30157. }
  30158. },
  30159. back: {
  30160. height: math.unit(205, "cm"),
  30161. weight: math.unit(102, "kg"),
  30162. name: "Back",
  30163. image: {
  30164. source: "./media/characters/irbisgreif/back.svg",
  30165. extra: 713/701,
  30166. bottom: 26/739
  30167. }
  30168. },
  30169. frontDressed: {
  30170. height: math.unit(216, "cm"),
  30171. weight: math.unit(102, "kg"),
  30172. name: "Front-dressed",
  30173. image: {
  30174. source: "./media/characters/irbisgreif/front-dressed.svg",
  30175. extra: 902/776,
  30176. bottom: 14/916
  30177. }
  30178. },
  30179. sideDressed: {
  30180. height: math.unit(195, "cm"),
  30181. weight: math.unit(102, "kg"),
  30182. name: "Side-dressed",
  30183. image: {
  30184. source: "./media/characters/irbisgreif/side-dressed.svg",
  30185. extra: 788/688,
  30186. bottom: 21/809
  30187. }
  30188. },
  30189. backDressed: {
  30190. height: math.unit(216, "cm"),
  30191. weight: math.unit(102, "kg"),
  30192. name: "Back-dressed",
  30193. image: {
  30194. source: "./media/characters/irbisgreif/back-dressed.svg",
  30195. extra: 901/783,
  30196. bottom: 10/911
  30197. }
  30198. },
  30199. dick: {
  30200. height: math.unit(0.49, "feet"),
  30201. name: "Dick",
  30202. image: {
  30203. source: "./media/characters/irbisgreif/dick.svg"
  30204. }
  30205. },
  30206. wingTop: {
  30207. height: math.unit(1.93 , "feet"),
  30208. name: "Wing-top",
  30209. image: {
  30210. source: "./media/characters/irbisgreif/wing-top.svg"
  30211. }
  30212. },
  30213. wingBottom: {
  30214. height: math.unit(1.93 , "feet"),
  30215. name: "Wing-bottom",
  30216. image: {
  30217. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30218. }
  30219. },
  30220. },
  30221. [
  30222. {
  30223. name: "Normal",
  30224. height: math.unit(216, "cm"),
  30225. default: true
  30226. },
  30227. ]
  30228. ))
  30229. characterMakers.push(() => makeCharacter(
  30230. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30231. {
  30232. front: {
  30233. height: math.unit(6, "feet"),
  30234. weight: math.unit(150, "lb"),
  30235. name: "Front",
  30236. image: {
  30237. source: "./media/characters/pride/front.svg",
  30238. extra: 1299/1230,
  30239. bottom: 18/1317
  30240. }
  30241. },
  30242. },
  30243. [
  30244. {
  30245. name: "Normal",
  30246. height: math.unit(7, "feet")
  30247. },
  30248. {
  30249. name: "Mini-macro",
  30250. height: math.unit(11, "feet")
  30251. },
  30252. {
  30253. name: "Macro",
  30254. height: math.unit(15, "meters"),
  30255. default: true
  30256. },
  30257. {
  30258. name: "Macro+",
  30259. height: math.unit(40, "meters")
  30260. },
  30261. ]
  30262. ))
  30263. characterMakers.push(() => makeCharacter(
  30264. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30265. {
  30266. front: {
  30267. height: math.unit(4 + 2 / 12, "feet"),
  30268. weight: math.unit(95, "lb"),
  30269. name: "Front",
  30270. image: {
  30271. source: "./media/characters/vaelophis-nyx/front.svg",
  30272. extra: 2532/2330,
  30273. bottom: 0/2532
  30274. }
  30275. },
  30276. back: {
  30277. height: math.unit(4 + 2 / 12, "feet"),
  30278. weight: math.unit(95, "lb"),
  30279. name: "Back",
  30280. image: {
  30281. source: "./media/characters/vaelophis-nyx/back.svg",
  30282. extra: 2484/2361,
  30283. bottom: 0/2484
  30284. }
  30285. },
  30286. feralSide: {
  30287. height: math.unit(2 + 1/12, "feet"),
  30288. weight: math.unit(20, "lb"),
  30289. name: "Feral (Side)",
  30290. image: {
  30291. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30292. extra: 1721/1581,
  30293. bottom: 70/1791
  30294. }
  30295. },
  30296. feralLazing: {
  30297. height: math.unit(1.08, "feet"),
  30298. weight: math.unit(20, "lb"),
  30299. name: "Feral (Lazing)",
  30300. image: {
  30301. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30302. extra: 822/822,
  30303. bottom: 248/1070
  30304. }
  30305. },
  30306. ear: {
  30307. height: math.unit(0.416, "feet"),
  30308. name: "Ear",
  30309. image: {
  30310. source: "./media/characters/vaelophis-nyx/ear.svg"
  30311. }
  30312. },
  30313. eye: {
  30314. height: math.unit(0.0748, "feet"),
  30315. name: "Eye",
  30316. image: {
  30317. source: "./media/characters/vaelophis-nyx/eye.svg"
  30318. }
  30319. },
  30320. mouth: {
  30321. height: math.unit(0.378, "feet"),
  30322. name: "Mouth",
  30323. image: {
  30324. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30325. }
  30326. },
  30327. spade: {
  30328. height: math.unit(0.55, "feet"),
  30329. name: "Spade",
  30330. image: {
  30331. source: "./media/characters/vaelophis-nyx/spade.svg"
  30332. }
  30333. },
  30334. },
  30335. [
  30336. {
  30337. name: "Normal",
  30338. height: math.unit(4 + 2/12, "feet"),
  30339. default: true
  30340. },
  30341. ]
  30342. ))
  30343. characterMakers.push(() => makeCharacter(
  30344. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30345. {
  30346. front: {
  30347. height: math.unit(7, "feet"),
  30348. weight: math.unit(231, "lb"),
  30349. name: "Front",
  30350. image: {
  30351. source: "./media/characters/flux/front.svg",
  30352. extra: 919/871,
  30353. bottom: 0/919
  30354. }
  30355. },
  30356. back: {
  30357. height: math.unit(7, "feet"),
  30358. weight: math.unit(231, "lb"),
  30359. name: "Back",
  30360. image: {
  30361. source: "./media/characters/flux/back.svg",
  30362. extra: 1040/992,
  30363. bottom: 0/1040
  30364. }
  30365. },
  30366. frontDressed: {
  30367. height: math.unit(7, "feet"),
  30368. weight: math.unit(231, "lb"),
  30369. name: "Front (Dressed)",
  30370. image: {
  30371. source: "./media/characters/flux/front-dressed.svg",
  30372. extra: 919/871,
  30373. bottom: 0/919
  30374. }
  30375. },
  30376. feralSide: {
  30377. height: math.unit(5, "feet"),
  30378. weight: math.unit(150, "lb"),
  30379. name: "Feral (Side)",
  30380. image: {
  30381. source: "./media/characters/flux/feral-side.svg",
  30382. extra: 598/528,
  30383. bottom: 28/626
  30384. }
  30385. },
  30386. head: {
  30387. height: math.unit(1.585, "feet"),
  30388. name: "Head",
  30389. image: {
  30390. source: "./media/characters/flux/head.svg"
  30391. }
  30392. },
  30393. headSide: {
  30394. height: math.unit(1.74, "feet"),
  30395. name: "Head (Side)",
  30396. image: {
  30397. source: "./media/characters/flux/head-side.svg"
  30398. }
  30399. },
  30400. headSideFire: {
  30401. height: math.unit(1.76, "feet"),
  30402. name: "Head (Side, Fire)",
  30403. image: {
  30404. source: "./media/characters/flux/head-side-fire.svg"
  30405. }
  30406. },
  30407. },
  30408. [
  30409. {
  30410. name: "Normal",
  30411. height: math.unit(7, "feet"),
  30412. default: true
  30413. },
  30414. ]
  30415. ))
  30416. characterMakers.push(() => makeCharacter(
  30417. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30418. {
  30419. front: {
  30420. height: math.unit(9, "feet"),
  30421. weight: math.unit(1012, "lb"),
  30422. name: "Front",
  30423. image: {
  30424. source: "./media/characters/ulfra-lupae/front.svg",
  30425. extra: 1083/1011,
  30426. bottom: 67/1150
  30427. }
  30428. },
  30429. },
  30430. [
  30431. {
  30432. name: "Micro",
  30433. height: math.unit(6, "inches")
  30434. },
  30435. {
  30436. name: "Socializing",
  30437. height: math.unit(6 + 5/12, "feet")
  30438. },
  30439. {
  30440. name: "Normal",
  30441. height: math.unit(9, "feet"),
  30442. default: true
  30443. },
  30444. {
  30445. name: "Macro",
  30446. height: math.unit(150, "feet")
  30447. },
  30448. ]
  30449. ))
  30450. characterMakers.push(() => makeCharacter(
  30451. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30452. {
  30453. front: {
  30454. height: math.unit(5 + 2/12, "feet"),
  30455. weight: math.unit(120, "lb"),
  30456. name: "Front",
  30457. image: {
  30458. source: "./media/characters/timber/front.svg",
  30459. extra: 2814/2705,
  30460. bottom: 181/2995
  30461. }
  30462. },
  30463. },
  30464. [
  30465. {
  30466. name: "Normal",
  30467. height: math.unit(5 + 2/12, "feet"),
  30468. default: true
  30469. },
  30470. ]
  30471. ))
  30472. characterMakers.push(() => makeCharacter(
  30473. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30474. {
  30475. front: {
  30476. height: math.unit(5 + 7/12, "feet"),
  30477. weight: math.unit(220, "lb"),
  30478. name: "Front",
  30479. image: {
  30480. source: "./media/characters/nicki/front.svg",
  30481. extra: 453/419,
  30482. bottom: 7/460
  30483. }
  30484. },
  30485. frontAlt: {
  30486. height: math.unit(5 + 7/12, "feet"),
  30487. weight: math.unit(220, "lb"),
  30488. name: "Front-alt",
  30489. image: {
  30490. source: "./media/characters/nicki/front-alt.svg",
  30491. extra: 435/411,
  30492. bottom: 12/447
  30493. }
  30494. },
  30495. back: {
  30496. height: math.unit(5 + 7/12, "feet"),
  30497. weight: math.unit(220, "lb"),
  30498. name: "Back",
  30499. image: {
  30500. source: "./media/characters/nicki/back.svg",
  30501. extra: 440/413,
  30502. bottom: 19/459
  30503. }
  30504. },
  30505. taur: {
  30506. height: math.unit(7 + 6/12, "feet"),
  30507. weight: math.unit(700, "lb"),
  30508. name: "Taur",
  30509. image: {
  30510. source: "./media/characters/nicki/taur.svg",
  30511. extra: 975/773,
  30512. bottom: 0/975
  30513. }
  30514. },
  30515. frontNsfw: {
  30516. height: math.unit(5 + 7/12, "feet"),
  30517. weight: math.unit(220, "lb"),
  30518. name: "Front (NSFW)",
  30519. image: {
  30520. source: "./media/characters/nicki/front-nsfw.svg",
  30521. extra: 453/419,
  30522. bottom: 7/460
  30523. }
  30524. },
  30525. frontNsfwAlt: {
  30526. height: math.unit(5 + 7/12, "feet"),
  30527. weight: math.unit(220, "lb"),
  30528. name: "Front (Alt, NSFW)",
  30529. image: {
  30530. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30531. extra: 435/411,
  30532. bottom: 12/447
  30533. }
  30534. },
  30535. backNsfw: {
  30536. height: math.unit(5 + 7/12, "feet"),
  30537. weight: math.unit(220, "lb"),
  30538. name: "Back (NSFW)",
  30539. image: {
  30540. source: "./media/characters/nicki/back-nsfw.svg",
  30541. extra: 440/413,
  30542. bottom: 19/459
  30543. }
  30544. },
  30545. head: {
  30546. height: math.unit(2.1, "feet"),
  30547. name: "Head",
  30548. image: {
  30549. source: "./media/characters/nicki/head.svg"
  30550. }
  30551. },
  30552. paw: {
  30553. height: math.unit(1.88, "feet"),
  30554. name: "Paw",
  30555. image: {
  30556. source: "./media/characters/nicki/paw.svg"
  30557. }
  30558. },
  30559. },
  30560. [
  30561. {
  30562. name: "Normal",
  30563. height: math.unit(5 + 7/12, "feet"),
  30564. default: true
  30565. },
  30566. ]
  30567. ))
  30568. characterMakers.push(() => makeCharacter(
  30569. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30570. {
  30571. front: {
  30572. height: math.unit(7 + 10/12, "feet"),
  30573. weight: math.unit(3.5, "tons"),
  30574. name: "Front",
  30575. image: {
  30576. source: "./media/characters/lee/front.svg",
  30577. extra: 1773/1615,
  30578. bottom: 86/1859
  30579. }
  30580. },
  30581. hand: {
  30582. height: math.unit(1.78, "feet"),
  30583. name: "Hand",
  30584. image: {
  30585. source: "./media/characters/lee/hand.svg"
  30586. }
  30587. },
  30588. maw: {
  30589. height: math.unit(1.18, "feet"),
  30590. name: "Maw",
  30591. image: {
  30592. source: "./media/characters/lee/maw.svg"
  30593. }
  30594. },
  30595. },
  30596. [
  30597. {
  30598. name: "Normal",
  30599. height: math.unit(7 + 10/12, "feet"),
  30600. default: true
  30601. },
  30602. ]
  30603. ))
  30604. characterMakers.push(() => makeCharacter(
  30605. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30606. {
  30607. front: {
  30608. height: math.unit(9, "feet"),
  30609. name: "Front",
  30610. image: {
  30611. source: "./media/characters/guti/front.svg",
  30612. extra: 4551/4355,
  30613. bottom: 123/4674
  30614. }
  30615. },
  30616. tongue: {
  30617. height: math.unit(1, "feet"),
  30618. name: "Tongue",
  30619. image: {
  30620. source: "./media/characters/guti/tongue.svg"
  30621. }
  30622. },
  30623. paw: {
  30624. height: math.unit(1.18, "feet"),
  30625. name: "Paw",
  30626. image: {
  30627. source: "./media/characters/guti/paw.svg"
  30628. }
  30629. },
  30630. },
  30631. [
  30632. {
  30633. name: "Normal",
  30634. height: math.unit(9, "feet"),
  30635. default: true
  30636. },
  30637. ]
  30638. ))
  30639. characterMakers.push(() => makeCharacter(
  30640. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30641. {
  30642. side: {
  30643. height: math.unit(5, "meters"),
  30644. name: "Side",
  30645. image: {
  30646. source: "./media/characters/vesper/side.svg",
  30647. extra: 1605/1518,
  30648. bottom: 0/1605
  30649. }
  30650. },
  30651. },
  30652. [
  30653. {
  30654. name: "Small",
  30655. height: math.unit(5, "meters")
  30656. },
  30657. {
  30658. name: "Sage",
  30659. height: math.unit(100, "meters"),
  30660. default: true
  30661. },
  30662. {
  30663. name: "Fun Size",
  30664. height: math.unit(600, "meters")
  30665. },
  30666. {
  30667. name: "Goddess",
  30668. height: math.unit(20000, "km")
  30669. },
  30670. {
  30671. name: "Maximum",
  30672. height: math.unit(5, "galaxies")
  30673. },
  30674. ]
  30675. ))
  30676. characterMakers.push(() => makeCharacter(
  30677. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30678. {
  30679. front: {
  30680. height: math.unit(6 + 3/12, "feet"),
  30681. weight: math.unit(190, "lb"),
  30682. name: "Front",
  30683. image: {
  30684. source: "./media/characters/gawain/front.svg",
  30685. extra: 2222/2139,
  30686. bottom: 90/2312
  30687. }
  30688. },
  30689. back: {
  30690. height: math.unit(6 + 3/12, "feet"),
  30691. weight: math.unit(190, "lb"),
  30692. name: "Back",
  30693. image: {
  30694. source: "./media/characters/gawain/back.svg",
  30695. extra: 2199/2111,
  30696. bottom: 73/2272
  30697. }
  30698. },
  30699. },
  30700. [
  30701. {
  30702. name: "Normal",
  30703. height: math.unit(6 + 3/12, "feet"),
  30704. default: true
  30705. },
  30706. ]
  30707. ))
  30708. characterMakers.push(() => makeCharacter(
  30709. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30710. {
  30711. side: {
  30712. height: math.unit(3.5, "meters"),
  30713. weight: math.unit(16000, "lb"),
  30714. name: "Side",
  30715. image: {
  30716. source: "./media/characters/dascalti/side.svg",
  30717. extra: 392/273,
  30718. bottom: 47/439
  30719. }
  30720. },
  30721. breath: {
  30722. height: math.unit(7.4, "feet"),
  30723. name: "Breath",
  30724. image: {
  30725. source: "./media/characters/dascalti/breath.svg"
  30726. }
  30727. },
  30728. fed: {
  30729. height: math.unit(3.6, "meters"),
  30730. weight: math.unit(16000, "lb"),
  30731. name: "Fed",
  30732. image: {
  30733. source: "./media/characters/dascalti/fed.svg",
  30734. extra: 1419/820,
  30735. bottom: 95/1514
  30736. }
  30737. },
  30738. },
  30739. [
  30740. {
  30741. name: "Normal",
  30742. height: math.unit(3.5, "meters"),
  30743. default: true
  30744. },
  30745. ]
  30746. ))
  30747. characterMakers.push(() => makeCharacter(
  30748. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30749. {
  30750. front: {
  30751. height: math.unit(3 + 5/12, "feet"),
  30752. name: "Front",
  30753. image: {
  30754. source: "./media/characters/mauve/front.svg",
  30755. extra: 1126/1033,
  30756. bottom: 65/1191
  30757. }
  30758. },
  30759. side: {
  30760. height: math.unit(3 + 5/12, "feet"),
  30761. name: "Side",
  30762. image: {
  30763. source: "./media/characters/mauve/side.svg",
  30764. extra: 1089/1001,
  30765. bottom: 29/1118
  30766. }
  30767. },
  30768. back: {
  30769. height: math.unit(3 + 5/12, "feet"),
  30770. name: "Back",
  30771. image: {
  30772. source: "./media/characters/mauve/back.svg",
  30773. extra: 1173/1053,
  30774. bottom: 109/1282
  30775. }
  30776. },
  30777. },
  30778. [
  30779. {
  30780. name: "Normal",
  30781. height: math.unit(3 + 5/12, "feet"),
  30782. default: true
  30783. },
  30784. ]
  30785. ))
  30786. characterMakers.push(() => makeCharacter(
  30787. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30788. {
  30789. front: {
  30790. height: math.unit(6 + 3/12, "feet"),
  30791. weight: math.unit(430, "lb"),
  30792. name: "Front",
  30793. image: {
  30794. source: "./media/characters/carlos/front.svg",
  30795. extra: 1964/1913,
  30796. bottom: 70/2034
  30797. }
  30798. },
  30799. },
  30800. [
  30801. {
  30802. name: "Normal",
  30803. height: math.unit(6 + 3/12, "feet"),
  30804. default: true
  30805. },
  30806. ]
  30807. ))
  30808. characterMakers.push(() => makeCharacter(
  30809. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30810. {
  30811. back: {
  30812. height: math.unit(5 + 10/12, "feet"),
  30813. weight: math.unit(200, "lb"),
  30814. name: "Back",
  30815. image: {
  30816. source: "./media/characters/jax/back.svg",
  30817. extra: 764/739,
  30818. bottom: 25/789
  30819. }
  30820. },
  30821. },
  30822. [
  30823. {
  30824. name: "Normal",
  30825. height: math.unit(5 + 10/12, "feet"),
  30826. default: true
  30827. },
  30828. ]
  30829. ))
  30830. characterMakers.push(() => makeCharacter(
  30831. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30832. {
  30833. front: {
  30834. height: math.unit(8, "feet"),
  30835. weight: math.unit(250, "lb"),
  30836. name: "Front",
  30837. image: {
  30838. source: "./media/characters/eikthynir/front.svg",
  30839. extra: 1332/1166,
  30840. bottom: 82/1414
  30841. }
  30842. },
  30843. back: {
  30844. height: math.unit(8, "feet"),
  30845. weight: math.unit(250, "lb"),
  30846. name: "Back",
  30847. image: {
  30848. source: "./media/characters/eikthynir/back.svg",
  30849. extra: 1342/1190,
  30850. bottom: 19/1361
  30851. }
  30852. },
  30853. dick: {
  30854. height: math.unit(2.35, "feet"),
  30855. name: "Dick",
  30856. image: {
  30857. source: "./media/characters/eikthynir/dick.svg"
  30858. }
  30859. },
  30860. },
  30861. [
  30862. {
  30863. name: "Normal",
  30864. height: math.unit(8, "feet"),
  30865. default: true
  30866. },
  30867. ]
  30868. ))
  30869. characterMakers.push(() => makeCharacter(
  30870. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30871. {
  30872. front: {
  30873. height: math.unit(99, "meters"),
  30874. weight: math.unit(13000, "tons"),
  30875. name: "Front",
  30876. image: {
  30877. source: "./media/characters/zlmos/front.svg",
  30878. extra: 2202/1992,
  30879. bottom: 315/2517
  30880. }
  30881. },
  30882. },
  30883. [
  30884. {
  30885. name: "Macro",
  30886. height: math.unit(99, "meters"),
  30887. default: true
  30888. },
  30889. ]
  30890. ))
  30891. characterMakers.push(() => makeCharacter(
  30892. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30893. {
  30894. front: {
  30895. height: math.unit(6 + 5/12, "feet"),
  30896. name: "Front",
  30897. image: {
  30898. source: "./media/characters/purri/front.svg",
  30899. extra: 1698/1610,
  30900. bottom: 32/1730
  30901. }
  30902. },
  30903. frontAlt: {
  30904. height: math.unit(6 + 5/12, "feet"),
  30905. name: "Front (Alt)",
  30906. image: {
  30907. source: "./media/characters/purri/front-alt.svg",
  30908. extra: 450/420,
  30909. bottom: 26/476
  30910. }
  30911. },
  30912. boots: {
  30913. height: math.unit(5.5, "feet"),
  30914. name: "Boots",
  30915. image: {
  30916. source: "./media/characters/purri/boots.svg",
  30917. extra: 905/853,
  30918. bottom: 18/923
  30919. }
  30920. },
  30921. lying: {
  30922. height: math.unit(2, "feet"),
  30923. name: "Lying",
  30924. image: {
  30925. source: "./media/characters/purri/lying.svg",
  30926. extra: 940/843,
  30927. bottom: 146/1086
  30928. }
  30929. },
  30930. devious: {
  30931. height: math.unit(1.77, "feet"),
  30932. name: "Devious",
  30933. image: {
  30934. source: "./media/characters/purri/devious.svg",
  30935. extra: 1440/1155,
  30936. bottom: 147/1587
  30937. }
  30938. },
  30939. bean: {
  30940. height: math.unit(1.94, "feet"),
  30941. name: "Bean",
  30942. image: {
  30943. source: "./media/characters/purri/bean.svg"
  30944. }
  30945. },
  30946. },
  30947. [
  30948. {
  30949. name: "Micro",
  30950. height: math.unit(1, "mm")
  30951. },
  30952. {
  30953. name: "Normal",
  30954. height: math.unit(6 + 5/12, "feet"),
  30955. default: true
  30956. },
  30957. {
  30958. name: "Macro :3c",
  30959. height: math.unit(2, "miles")
  30960. },
  30961. ]
  30962. ))
  30963. characterMakers.push(() => makeCharacter(
  30964. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  30965. {
  30966. front: {
  30967. height: math.unit(6 + 2/12, "feet"),
  30968. weight: math.unit(250, "lb"),
  30969. name: "Front",
  30970. image: {
  30971. source: "./media/characters/moonlight/front.svg",
  30972. extra: 1044/908,
  30973. bottom: 56/1100
  30974. }
  30975. },
  30976. feral: {
  30977. height: math.unit(3 + 1/12, "feet"),
  30978. weight: math.unit(50, "kg"),
  30979. name: "Feral",
  30980. image: {
  30981. source: "./media/characters/moonlight/feral.svg",
  30982. extra: 3705/2791,
  30983. bottom: 145/3850
  30984. }
  30985. },
  30986. paw: {
  30987. height: math.unit(1, "feet"),
  30988. name: "Paw",
  30989. image: {
  30990. source: "./media/characters/moonlight/paw.svg"
  30991. }
  30992. },
  30993. paws: {
  30994. height: math.unit(0.98, "feet"),
  30995. name: "Paws",
  30996. image: {
  30997. source: "./media/characters/moonlight/paws.svg",
  30998. extra: 939/939,
  30999. bottom: 50/989
  31000. }
  31001. },
  31002. mouth: {
  31003. height: math.unit(0.48, "feet"),
  31004. name: "Mouth",
  31005. image: {
  31006. source: "./media/characters/moonlight/mouth.svg"
  31007. }
  31008. },
  31009. dick: {
  31010. height: math.unit(1.46, "feet"),
  31011. name: "Dick",
  31012. image: {
  31013. source: "./media/characters/moonlight/dick.svg"
  31014. }
  31015. },
  31016. },
  31017. [
  31018. {
  31019. name: "Normal",
  31020. height: math.unit(6 + 2/12, "feet"),
  31021. default: true
  31022. },
  31023. {
  31024. name: "Macro",
  31025. height: math.unit(300, "feet")
  31026. },
  31027. {
  31028. name: "Macro+",
  31029. height: math.unit(1, "mile")
  31030. },
  31031. {
  31032. name: "Mt. Moon",
  31033. height: math.unit(5, "miles")
  31034. },
  31035. {
  31036. name: "Megamacro",
  31037. height: math.unit(15, "miles")
  31038. },
  31039. ]
  31040. ))
  31041. characterMakers.push(() => makeCharacter(
  31042. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31043. {
  31044. back: {
  31045. height: math.unit(6, "feet"),
  31046. weight: math.unit(150, "lb"),
  31047. name: "Back",
  31048. image: {
  31049. source: "./media/characters/sylen/back.svg",
  31050. extra: 1335/1273,
  31051. bottom: 107/1442
  31052. }
  31053. },
  31054. },
  31055. [
  31056. {
  31057. name: "Normal",
  31058. height: math.unit(5 + 5/12, "feet")
  31059. },
  31060. {
  31061. name: "Megamacro",
  31062. height: math.unit(3, "miles"),
  31063. default: true
  31064. },
  31065. ]
  31066. ))
  31067. characterMakers.push(() => makeCharacter(
  31068. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31069. {
  31070. front: {
  31071. height: math.unit(6, "feet"),
  31072. weight: math.unit(190, "lb"),
  31073. name: "Front",
  31074. image: {
  31075. source: "./media/characters/huttser/front.svg",
  31076. extra: 1152/1058,
  31077. bottom: 23/1175
  31078. }
  31079. },
  31080. side: {
  31081. height: math.unit(6, "feet"),
  31082. weight: math.unit(190, "lb"),
  31083. name: "Side",
  31084. image: {
  31085. source: "./media/characters/huttser/side.svg",
  31086. extra: 1174/1065,
  31087. bottom: 18/1192
  31088. }
  31089. },
  31090. back: {
  31091. height: math.unit(6, "feet"),
  31092. weight: math.unit(190, "lb"),
  31093. name: "Back",
  31094. image: {
  31095. source: "./media/characters/huttser/back.svg",
  31096. extra: 1158/1056,
  31097. bottom: 12/1170
  31098. }
  31099. },
  31100. },
  31101. [
  31102. ]
  31103. ))
  31104. characterMakers.push(() => makeCharacter(
  31105. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31106. {
  31107. side: {
  31108. height: math.unit(12 + 9/12, "feet"),
  31109. weight: math.unit(15000, "lb"),
  31110. name: "Side",
  31111. image: {
  31112. source: "./media/characters/faan/side.svg",
  31113. extra: 2747/2697,
  31114. bottom: 0/2747
  31115. }
  31116. },
  31117. front: {
  31118. height: math.unit(12 + 9/12, "feet"),
  31119. weight: math.unit(15000, "lb"),
  31120. name: "Front",
  31121. image: {
  31122. source: "./media/characters/faan/front.svg",
  31123. extra: 607/571,
  31124. bottom: 24/631
  31125. }
  31126. },
  31127. head: {
  31128. height: math.unit(2.85, "feet"),
  31129. name: "Head",
  31130. image: {
  31131. source: "./media/characters/faan/head.svg"
  31132. }
  31133. },
  31134. headAlt: {
  31135. height: math.unit(3.13, "feet"),
  31136. name: "Head-alt",
  31137. image: {
  31138. source: "./media/characters/faan/head-alt.svg"
  31139. }
  31140. },
  31141. },
  31142. [
  31143. {
  31144. name: "Normal",
  31145. height: math.unit(12 + 9/12, "feet"),
  31146. default: true
  31147. },
  31148. ]
  31149. ))
  31150. characterMakers.push(() => makeCharacter(
  31151. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31152. {
  31153. front: {
  31154. height: math.unit(6, "feet"),
  31155. weight: math.unit(300, "lb"),
  31156. name: "Front",
  31157. image: {
  31158. source: "./media/characters/tanio/front.svg",
  31159. extra: 711/673,
  31160. bottom: 25/736
  31161. }
  31162. },
  31163. },
  31164. [
  31165. {
  31166. name: "Normal",
  31167. height: math.unit(6, "feet"),
  31168. default: true
  31169. },
  31170. ]
  31171. ))
  31172. characterMakers.push(() => makeCharacter(
  31173. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31174. {
  31175. front: {
  31176. height: math.unit(3, "inches"),
  31177. name: "Front",
  31178. image: {
  31179. source: "./media/characters/noboru/front.svg",
  31180. extra: 1039/932,
  31181. bottom: 18/1057
  31182. }
  31183. },
  31184. },
  31185. [
  31186. {
  31187. name: "Micro",
  31188. height: math.unit(3, "inches"),
  31189. default: true
  31190. },
  31191. ]
  31192. ))
  31193. characterMakers.push(() => makeCharacter(
  31194. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31195. {
  31196. front: {
  31197. height: math.unit(1.85, "meters"),
  31198. weight: math.unit(80, "kg"),
  31199. name: "Front",
  31200. image: {
  31201. source: "./media/characters/daniel-barrett/front.svg",
  31202. extra: 355/337,
  31203. bottom: 9/364
  31204. }
  31205. },
  31206. },
  31207. [
  31208. {
  31209. name: "Pico",
  31210. height: math.unit(0.0433, "mm")
  31211. },
  31212. {
  31213. name: "Nano",
  31214. height: math.unit(1.5, "mm")
  31215. },
  31216. {
  31217. name: "Micro",
  31218. height: math.unit(5.3, "cm"),
  31219. default: true
  31220. },
  31221. {
  31222. name: "Normal",
  31223. height: math.unit(1.85, "meters")
  31224. },
  31225. {
  31226. name: "Macro",
  31227. height: math.unit(64.7, "meters")
  31228. },
  31229. {
  31230. name: "Megamacro",
  31231. height: math.unit(2.26, "km")
  31232. },
  31233. {
  31234. name: "Gigamacro",
  31235. height: math.unit(79, "km")
  31236. },
  31237. {
  31238. name: "Teramacro",
  31239. height: math.unit(2765, "km")
  31240. },
  31241. {
  31242. name: "Petamacro",
  31243. height: math.unit(96678, "km")
  31244. },
  31245. ]
  31246. ))
  31247. characterMakers.push(() => makeCharacter(
  31248. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31249. {
  31250. front: {
  31251. height: math.unit(30, "meters"),
  31252. weight: math.unit(400, "tons"),
  31253. name: "Front",
  31254. image: {
  31255. source: "./media/characters/zeel/front.svg",
  31256. extra: 2599/2599,
  31257. bottom: 226/2825
  31258. }
  31259. },
  31260. },
  31261. [
  31262. {
  31263. name: "Macro",
  31264. height: math.unit(30, "meters"),
  31265. default: true
  31266. },
  31267. ]
  31268. ))
  31269. characterMakers.push(() => makeCharacter(
  31270. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31271. {
  31272. front: {
  31273. height: math.unit(6 + 7/12, "feet"),
  31274. weight: math.unit(210, "lb"),
  31275. name: "Front",
  31276. image: {
  31277. source: "./media/characters/tarn/front.svg",
  31278. extra: 3517/3220,
  31279. bottom: 91/3608
  31280. }
  31281. },
  31282. back: {
  31283. height: math.unit(6 + 7/12, "feet"),
  31284. weight: math.unit(210, "lb"),
  31285. name: "Back",
  31286. image: {
  31287. source: "./media/characters/tarn/back.svg",
  31288. extra: 3566/3241,
  31289. bottom: 34/3600
  31290. }
  31291. },
  31292. dick: {
  31293. height: math.unit(1.65, "feet"),
  31294. name: "Dick",
  31295. image: {
  31296. source: "./media/characters/tarn/dick.svg"
  31297. }
  31298. },
  31299. paw: {
  31300. height: math.unit(1.80, "feet"),
  31301. name: "Paw",
  31302. image: {
  31303. source: "./media/characters/tarn/paw.svg"
  31304. }
  31305. },
  31306. tongue: {
  31307. height: math.unit(0.97, "feet"),
  31308. name: "Tongue",
  31309. image: {
  31310. source: "./media/characters/tarn/tongue.svg"
  31311. }
  31312. },
  31313. },
  31314. [
  31315. {
  31316. name: "Micro",
  31317. height: math.unit(4, "inches")
  31318. },
  31319. {
  31320. name: "Normal",
  31321. height: math.unit(6 + 7/12, "feet"),
  31322. default: true
  31323. },
  31324. {
  31325. name: "Macro",
  31326. height: math.unit(300, "feet")
  31327. },
  31328. ]
  31329. ))
  31330. characterMakers.push(() => makeCharacter(
  31331. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31332. {
  31333. front: {
  31334. height: math.unit(5 + 7/12, "feet"),
  31335. weight: math.unit(80, "kg"),
  31336. name: "Front",
  31337. image: {
  31338. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31339. extra: 3023/2865,
  31340. bottom: 33/3056
  31341. }
  31342. },
  31343. back: {
  31344. height: math.unit(5 + 7/12, "feet"),
  31345. weight: math.unit(80, "kg"),
  31346. name: "Back",
  31347. image: {
  31348. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31349. extra: 3020/2886,
  31350. bottom: 30/3050
  31351. }
  31352. },
  31353. dick: {
  31354. height: math.unit(0.98, "feet"),
  31355. name: "Dick",
  31356. image: {
  31357. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31358. }
  31359. },
  31360. anatomy: {
  31361. height: math.unit(2.86, "feet"),
  31362. name: "Anatomy",
  31363. image: {
  31364. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31365. }
  31366. },
  31367. },
  31368. [
  31369. {
  31370. name: "Really Small",
  31371. height: math.unit(2, "inches")
  31372. },
  31373. {
  31374. name: "Micro",
  31375. height: math.unit(5.583, "inches")
  31376. },
  31377. {
  31378. name: "Normal",
  31379. height: math.unit(5 + 7/12, "feet"),
  31380. default: true
  31381. },
  31382. {
  31383. name: "Macro",
  31384. height: math.unit(67, "feet")
  31385. },
  31386. {
  31387. name: "Megamacro",
  31388. height: math.unit(134, "feet")
  31389. },
  31390. ]
  31391. ))
  31392. characterMakers.push(() => makeCharacter(
  31393. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31394. {
  31395. front: {
  31396. height: math.unit(9, "feet"),
  31397. weight: math.unit(120, "lb"),
  31398. name: "Front",
  31399. image: {
  31400. source: "./media/characters/sally/front.svg",
  31401. extra: 1506/1349,
  31402. bottom: 66/1572
  31403. }
  31404. },
  31405. },
  31406. [
  31407. {
  31408. name: "Normal",
  31409. height: math.unit(9, "feet"),
  31410. default: true
  31411. },
  31412. ]
  31413. ))
  31414. characterMakers.push(() => makeCharacter(
  31415. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31416. {
  31417. front: {
  31418. height: math.unit(8, "feet"),
  31419. weight: math.unit(900, "lb"),
  31420. name: "Front",
  31421. image: {
  31422. source: "./media/characters/owen/front.svg",
  31423. extra: 1761/1657,
  31424. bottom: 74/1835
  31425. }
  31426. },
  31427. side: {
  31428. height: math.unit(8, "feet"),
  31429. weight: math.unit(900, "lb"),
  31430. name: "Side",
  31431. image: {
  31432. source: "./media/characters/owen/side.svg",
  31433. extra: 1797/1734,
  31434. bottom: 30/1827
  31435. }
  31436. },
  31437. back: {
  31438. height: math.unit(8, "feet"),
  31439. weight: math.unit(900, "lb"),
  31440. name: "Back",
  31441. image: {
  31442. source: "./media/characters/owen/back.svg",
  31443. extra: 1796/1706,
  31444. bottom: 59/1855
  31445. }
  31446. },
  31447. maw: {
  31448. height: math.unit(1.76, "feet"),
  31449. name: "Maw",
  31450. image: {
  31451. source: "./media/characters/owen/maw.svg"
  31452. }
  31453. },
  31454. },
  31455. [
  31456. {
  31457. name: "Normal",
  31458. height: math.unit(8, "feet"),
  31459. default: true
  31460. },
  31461. ]
  31462. ))
  31463. characterMakers.push(() => makeCharacter(
  31464. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31465. {
  31466. front: {
  31467. height: math.unit(4, "feet"),
  31468. weight: math.unit(400, "lb"),
  31469. name: "Front",
  31470. image: {
  31471. source: "./media/characters/ryth/front.svg",
  31472. extra: 876/691,
  31473. bottom: 25/901
  31474. }
  31475. },
  31476. goia: {
  31477. height: math.unit(12, "feet"),
  31478. weight: math.unit(10800, "lb"),
  31479. name: "Goia",
  31480. image: {
  31481. source: "./media/characters/ryth/goia.svg",
  31482. extra: 3450/3198,
  31483. bottom: 61/3511
  31484. }
  31485. },
  31486. },
  31487. [
  31488. {
  31489. name: "Normal",
  31490. height: math.unit(4, "feet"),
  31491. default: true
  31492. },
  31493. ]
  31494. ))
  31495. characterMakers.push(() => makeCharacter(
  31496. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31497. {
  31498. front: {
  31499. height: math.unit(7, "feet"),
  31500. weight: math.unit(180, "lb"),
  31501. name: "Front",
  31502. image: {
  31503. source: "./media/characters/necrolance/front.svg",
  31504. extra: 1062/947,
  31505. bottom: 41/1103
  31506. }
  31507. },
  31508. back: {
  31509. height: math.unit(7, "feet"),
  31510. weight: math.unit(180, "lb"),
  31511. name: "Back",
  31512. image: {
  31513. source: "./media/characters/necrolance/back.svg",
  31514. extra: 1045/984,
  31515. bottom: 14/1059
  31516. }
  31517. },
  31518. wing: {
  31519. height: math.unit(2.67, "feet"),
  31520. name: "Wing",
  31521. image: {
  31522. source: "./media/characters/necrolance/wing.svg"
  31523. }
  31524. },
  31525. },
  31526. [
  31527. {
  31528. name: "Normal",
  31529. height: math.unit(7, "feet"),
  31530. default: true
  31531. },
  31532. ]
  31533. ))
  31534. characterMakers.push(() => makeCharacter(
  31535. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31536. {
  31537. front: {
  31538. height: math.unit(76, "meters"),
  31539. weight: math.unit(30000, "tons"),
  31540. name: "Front",
  31541. image: {
  31542. source: "./media/characters/tyler/front.svg",
  31543. extra: 1640/1640,
  31544. bottom: 114/1754
  31545. }
  31546. },
  31547. },
  31548. [
  31549. {
  31550. name: "Macro",
  31551. height: math.unit(76, "meters"),
  31552. default: true
  31553. },
  31554. ]
  31555. ))
  31556. characterMakers.push(() => makeCharacter(
  31557. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31558. {
  31559. front: {
  31560. height: math.unit(4 + 11/12, "feet"),
  31561. weight: math.unit(132, "lb"),
  31562. name: "Front",
  31563. image: {
  31564. source: "./media/characters/icey/front.svg",
  31565. extra: 2750/2550,
  31566. bottom: 33/2783
  31567. }
  31568. },
  31569. back: {
  31570. height: math.unit(4 + 11/12, "feet"),
  31571. weight: math.unit(132, "lb"),
  31572. name: "Back",
  31573. image: {
  31574. source: "./media/characters/icey/back.svg",
  31575. extra: 2624/2481,
  31576. bottom: 35/2659
  31577. }
  31578. },
  31579. },
  31580. [
  31581. {
  31582. name: "Normal",
  31583. height: math.unit(4 + 11/12, "feet"),
  31584. default: true
  31585. },
  31586. ]
  31587. ))
  31588. characterMakers.push(() => makeCharacter(
  31589. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31590. {
  31591. front: {
  31592. height: math.unit(100, "feet"),
  31593. weight: math.unit(0, "lb"),
  31594. name: "Front",
  31595. image: {
  31596. source: "./media/characters/smile/front.svg",
  31597. extra: 2983/2912,
  31598. bottom: 162/3145
  31599. }
  31600. },
  31601. back: {
  31602. height: math.unit(100, "feet"),
  31603. weight: math.unit(0, "lb"),
  31604. name: "Back",
  31605. image: {
  31606. source: "./media/characters/smile/back.svg",
  31607. extra: 3143/3031,
  31608. bottom: 91/3234
  31609. }
  31610. },
  31611. head: {
  31612. height: math.unit(26.3, "feet"),
  31613. weight: math.unit(0, "lb"),
  31614. name: "Head",
  31615. image: {
  31616. source: "./media/characters/smile/head.svg"
  31617. }
  31618. },
  31619. collar: {
  31620. height: math.unit(5.3, "feet"),
  31621. weight: math.unit(0, "lb"),
  31622. name: "Collar",
  31623. image: {
  31624. source: "./media/characters/smile/collar.svg"
  31625. }
  31626. },
  31627. },
  31628. [
  31629. {
  31630. name: "Macro",
  31631. height: math.unit(100, "feet"),
  31632. default: true
  31633. },
  31634. ]
  31635. ))
  31636. characterMakers.push(() => makeCharacter(
  31637. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31638. {
  31639. dragon: {
  31640. height: math.unit(26, "feet"),
  31641. weight: math.unit(36, "tons"),
  31642. name: "Dragon",
  31643. image: {
  31644. source: "./media/characters/arimphae/dragon.svg",
  31645. extra: 1574/983,
  31646. bottom: 357/1931
  31647. }
  31648. },
  31649. drake: {
  31650. height: math.unit(9, "feet"),
  31651. weight: math.unit(1.5, "tons"),
  31652. name: "Drake",
  31653. image: {
  31654. source: "./media/characters/arimphae/drake.svg",
  31655. extra: 1120/925,
  31656. bottom: 435/1555
  31657. }
  31658. },
  31659. },
  31660. [
  31661. {
  31662. name: "Small",
  31663. height: math.unit(26*5/9, "feet")
  31664. },
  31665. {
  31666. name: "Normal",
  31667. height: math.unit(26, "feet"),
  31668. default: true
  31669. },
  31670. ]
  31671. ))
  31672. characterMakers.push(() => makeCharacter(
  31673. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31674. {
  31675. front: {
  31676. height: math.unit(8 + 9/12, "feet"),
  31677. name: "Front",
  31678. image: {
  31679. source: "./media/characters/xander/front.svg",
  31680. extra: 848/673,
  31681. bottom: 62/910
  31682. }
  31683. },
  31684. },
  31685. [
  31686. {
  31687. name: "Normal",
  31688. height: math.unit(8 + 9/12, "feet"),
  31689. default: true
  31690. },
  31691. {
  31692. name: "Gaze Grabber",
  31693. height: math.unit(13 + 8/12, "feet")
  31694. },
  31695. {
  31696. name: "Jaw Dropper",
  31697. height: math.unit(27, "feet")
  31698. },
  31699. {
  31700. name: "Show Stopper",
  31701. height: math.unit(136, "feet")
  31702. },
  31703. {
  31704. name: "Superstar",
  31705. height: math.unit(1.9e6, "miles")
  31706. },
  31707. ]
  31708. ))
  31709. characterMakers.push(() => makeCharacter(
  31710. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31711. {
  31712. side: {
  31713. height: math.unit(2100, "feet"),
  31714. name: "Side",
  31715. image: {
  31716. source: "./media/characters/osiris/side.svg",
  31717. extra: 1105/939,
  31718. bottom: 167/1272
  31719. }
  31720. },
  31721. },
  31722. [
  31723. {
  31724. name: "Macro",
  31725. height: math.unit(2100, "feet"),
  31726. default: true
  31727. },
  31728. ]
  31729. ))
  31730. characterMakers.push(() => makeCharacter(
  31731. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31732. {
  31733. front: {
  31734. height: math.unit(6 + 8/12, "feet"),
  31735. weight: math.unit(225, "lb"),
  31736. name: "Front",
  31737. image: {
  31738. source: "./media/characters/rhys-londe/front.svg",
  31739. extra: 2258/2141,
  31740. bottom: 188/2446
  31741. }
  31742. },
  31743. back: {
  31744. height: math.unit(6 + 8/12, "feet"),
  31745. weight: math.unit(225, "lb"),
  31746. name: "Back",
  31747. image: {
  31748. source: "./media/characters/rhys-londe/back.svg",
  31749. extra: 2237/2137,
  31750. bottom: 63/2300
  31751. }
  31752. },
  31753. frontNsfw: {
  31754. height: math.unit(6 + 8/12, "feet"),
  31755. weight: math.unit(225, "lb"),
  31756. name: "Front (NSFW)",
  31757. image: {
  31758. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31759. extra: 2258/2141,
  31760. bottom: 188/2446
  31761. }
  31762. },
  31763. backNsfw: {
  31764. height: math.unit(6 + 8/12, "feet"),
  31765. weight: math.unit(225, "lb"),
  31766. name: "Back (NSFW)",
  31767. image: {
  31768. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31769. extra: 2237/2137,
  31770. bottom: 63/2300
  31771. }
  31772. },
  31773. dick: {
  31774. height: math.unit(30, "inches"),
  31775. name: "Dick",
  31776. image: {
  31777. source: "./media/characters/rhys-londe/dick.svg"
  31778. }
  31779. },
  31780. maw: {
  31781. height: math.unit(1.6, "feet"),
  31782. name: "Maw",
  31783. image: {
  31784. source: "./media/characters/rhys-londe/maw.svg"
  31785. }
  31786. },
  31787. },
  31788. [
  31789. {
  31790. name: "Normal",
  31791. height: math.unit(6 + 8/12, "feet"),
  31792. default: true
  31793. },
  31794. ]
  31795. ))
  31796. characterMakers.push(() => makeCharacter(
  31797. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31798. {
  31799. front: {
  31800. height: math.unit(3 + 10/12, "feet"),
  31801. weight: math.unit(90, "lb"),
  31802. name: "Front",
  31803. image: {
  31804. source: "./media/characters/taivas-ensim/front.svg",
  31805. extra: 1327/1216,
  31806. bottom: 96/1423
  31807. }
  31808. },
  31809. back: {
  31810. height: math.unit(3 + 10/12, "feet"),
  31811. weight: math.unit(90, "lb"),
  31812. name: "Back",
  31813. image: {
  31814. source: "./media/characters/taivas-ensim/back.svg",
  31815. extra: 1355/1247,
  31816. bottom: 11/1366
  31817. }
  31818. },
  31819. frontNsfw: {
  31820. height: math.unit(3 + 10/12, "feet"),
  31821. weight: math.unit(90, "lb"),
  31822. name: "Front (NSFW)",
  31823. image: {
  31824. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  31825. extra: 1327/1216,
  31826. bottom: 96/1423
  31827. }
  31828. },
  31829. backNsfw: {
  31830. height: math.unit(3 + 10/12, "feet"),
  31831. weight: math.unit(90, "lb"),
  31832. name: "Back (NSFW)",
  31833. image: {
  31834. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  31835. extra: 1355/1247,
  31836. bottom: 11/1366
  31837. }
  31838. },
  31839. },
  31840. [
  31841. {
  31842. name: "Normal",
  31843. height: math.unit(3 + 10/12, "feet"),
  31844. default: true
  31845. },
  31846. ]
  31847. ))
  31848. characterMakers.push(() => makeCharacter(
  31849. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  31850. {
  31851. front: {
  31852. height: math.unit(9 + 6/12, "feet"),
  31853. weight: math.unit(940, "lb"),
  31854. name: "Front",
  31855. image: {
  31856. source: "./media/characters/byliss/front.svg",
  31857. extra: 1327/1290,
  31858. bottom: 82/1409
  31859. }
  31860. },
  31861. back: {
  31862. height: math.unit(9 + 6/12, "feet"),
  31863. weight: math.unit(940, "lb"),
  31864. name: "Back",
  31865. image: {
  31866. source: "./media/characters/byliss/back.svg",
  31867. extra: 1376/1349,
  31868. bottom: 9/1385
  31869. }
  31870. },
  31871. frontNsfw: {
  31872. height: math.unit(9 + 6/12, "feet"),
  31873. weight: math.unit(940, "lb"),
  31874. name: "Front (NSFW)",
  31875. image: {
  31876. source: "./media/characters/byliss/front-nsfw.svg",
  31877. extra: 1327/1290,
  31878. bottom: 82/1409
  31879. }
  31880. },
  31881. backNsfw: {
  31882. height: math.unit(9 + 6/12, "feet"),
  31883. weight: math.unit(940, "lb"),
  31884. name: "Back (NSFW)",
  31885. image: {
  31886. source: "./media/characters/byliss/back-nsfw.svg",
  31887. extra: 1376/1349,
  31888. bottom: 9/1385
  31889. }
  31890. },
  31891. },
  31892. [
  31893. {
  31894. name: "Normal",
  31895. height: math.unit(9 + 6/12, "feet"),
  31896. default: true
  31897. },
  31898. ]
  31899. ))
  31900. characterMakers.push(() => makeCharacter(
  31901. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  31902. {
  31903. front: {
  31904. height: math.unit(5 + 2/12, "feet"),
  31905. weight: math.unit(200, "lb"),
  31906. name: "Front",
  31907. image: {
  31908. source: "./media/characters/noraly/front.svg",
  31909. extra: 4985/4773,
  31910. bottom: 150/5135
  31911. }
  31912. },
  31913. full: {
  31914. height: math.unit(5 + 2/12, "feet"),
  31915. weight: math.unit(164, "lb"),
  31916. name: "Full",
  31917. image: {
  31918. source: "./media/characters/noraly/full.svg",
  31919. extra: 1114/1059,
  31920. bottom: 35/1149
  31921. }
  31922. },
  31923. fuller: {
  31924. height: math.unit(5 + 2/12, "feet"),
  31925. weight: math.unit(230, "lb"),
  31926. name: "Fuller",
  31927. image: {
  31928. source: "./media/characters/noraly/fuller.svg",
  31929. extra: 1114/1059,
  31930. bottom: 35/1149
  31931. }
  31932. },
  31933. fullest: {
  31934. height: math.unit(5 + 2/12, "feet"),
  31935. weight: math.unit(300, "lb"),
  31936. name: "Fullest",
  31937. image: {
  31938. source: "./media/characters/noraly/fullest.svg",
  31939. extra: 1114/1059,
  31940. bottom: 35/1149
  31941. }
  31942. },
  31943. },
  31944. [
  31945. {
  31946. name: "Normal",
  31947. height: math.unit(5 + 2/12, "feet"),
  31948. default: true
  31949. },
  31950. ]
  31951. ))
  31952. characterMakers.push(() => makeCharacter(
  31953. { name: "Pera", species: ["snake"], tags: ["naga"] },
  31954. {
  31955. front: {
  31956. height: math.unit(5 + 2/12, "feet"),
  31957. weight: math.unit(210, "lb"),
  31958. name: "Front",
  31959. image: {
  31960. source: "./media/characters/pera/front.svg",
  31961. extra: 1560/1531,
  31962. bottom: 165/1725
  31963. }
  31964. },
  31965. back: {
  31966. height: math.unit(5 + 2/12, "feet"),
  31967. weight: math.unit(210, "lb"),
  31968. name: "Back",
  31969. image: {
  31970. source: "./media/characters/pera/back.svg",
  31971. extra: 1523/1493,
  31972. bottom: 152/1675
  31973. }
  31974. },
  31975. dick: {
  31976. height: math.unit(2.4, "feet"),
  31977. name: "Dick",
  31978. image: {
  31979. source: "./media/characters/pera/dick.svg"
  31980. }
  31981. },
  31982. },
  31983. [
  31984. {
  31985. name: "Normal",
  31986. height: math.unit(5 + 2/12, "feet"),
  31987. default: true
  31988. },
  31989. ]
  31990. ))
  31991. characterMakers.push(() => makeCharacter(
  31992. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  31993. {
  31994. front: {
  31995. height: math.unit(12, "feet"),
  31996. weight: math.unit(3200, "lb"),
  31997. name: "Front",
  31998. image: {
  31999. source: "./media/characters/julian/front.svg",
  32000. extra: 2962/2701,
  32001. bottom: 184/3146
  32002. }
  32003. },
  32004. maw: {
  32005. height: math.unit(5.35, "feet"),
  32006. name: "Maw",
  32007. image: {
  32008. source: "./media/characters/julian/maw.svg"
  32009. }
  32010. },
  32011. paw: {
  32012. height: math.unit(3.07, "feet"),
  32013. name: "Paw",
  32014. image: {
  32015. source: "./media/characters/julian/paw.svg"
  32016. }
  32017. },
  32018. },
  32019. [
  32020. {
  32021. name: "Default",
  32022. height: math.unit(12, "feet"),
  32023. default: true
  32024. },
  32025. {
  32026. name: "Big",
  32027. height: math.unit(50, "feet")
  32028. },
  32029. {
  32030. name: "Really Big",
  32031. height: math.unit(1, "mile")
  32032. },
  32033. {
  32034. name: "Extremely Big",
  32035. height: math.unit(100, "miles")
  32036. },
  32037. {
  32038. name: "Planet Hugger",
  32039. height: math.unit(200, "megameters")
  32040. },
  32041. {
  32042. name: "Unreasonably Big",
  32043. height: math.unit(1e300, "meters")
  32044. },
  32045. ]
  32046. ))
  32047. characterMakers.push(() => makeCharacter(
  32048. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32049. {
  32050. solgooleo: {
  32051. height: math.unit(4, "meters"),
  32052. weight: math.unit(6000*1.5, "kg"),
  32053. volume: math.unit(6000, "liters"),
  32054. name: "Solgooleo",
  32055. image: {
  32056. source: "./media/characters/pi/solgooleo.svg",
  32057. extra: 388/331,
  32058. bottom: 29/417
  32059. }
  32060. },
  32061. },
  32062. [
  32063. {
  32064. name: "Normal",
  32065. height: math.unit(4, "meters"),
  32066. default: true
  32067. },
  32068. ]
  32069. ))
  32070. characterMakers.push(() => makeCharacter(
  32071. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32072. {
  32073. front: {
  32074. height: math.unit(8 + 2/12, "feet"),
  32075. weight: math.unit(4, "tons"),
  32076. name: "Front",
  32077. image: {
  32078. source: "./media/characters/shaun/front.svg",
  32079. extra: 1550/1505,
  32080. bottom: 353/1903
  32081. }
  32082. },
  32083. },
  32084. [
  32085. {
  32086. name: "Lorg",
  32087. height: math.unit(8 + 2/12, "feet"),
  32088. default: true
  32089. },
  32090. ]
  32091. ))
  32092. characterMakers.push(() => makeCharacter(
  32093. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32094. {
  32095. front: {
  32096. height: math.unit(7, "feet"),
  32097. name: "Front",
  32098. image: {
  32099. source: "./media/characters/sini/front.svg",
  32100. extra: 726/678,
  32101. bottom: 35/761
  32102. }
  32103. },
  32104. back: {
  32105. height: math.unit(7, "feet"),
  32106. name: "Back",
  32107. image: {
  32108. source: "./media/characters/sini/back.svg",
  32109. extra: 743/701,
  32110. bottom: 12/755
  32111. }
  32112. },
  32113. mawAnthro: {
  32114. height: math.unit(2.14, "feet"),
  32115. name: "Maw (Anthro)",
  32116. image: {
  32117. source: "./media/characters/sini/maw-anthro.svg"
  32118. }
  32119. },
  32120. dick: {
  32121. height: math.unit(1.45, "feet"),
  32122. name: "Dick (Anthro)",
  32123. image: {
  32124. source: "./media/characters/sini/dick-anthro.svg"
  32125. }
  32126. },
  32127. feral: {
  32128. height: math.unit(13, "feet"),
  32129. name: "Feral",
  32130. image: {
  32131. source: "./media/characters/sini/feral.svg",
  32132. extra: 814/605,
  32133. bottom: 11/825
  32134. }
  32135. },
  32136. mawFeral: {
  32137. height: math.unit(4.6, "feet"),
  32138. name: "Maw-feral",
  32139. image: {
  32140. source: "./media/characters/sini/maw-feral.svg"
  32141. }
  32142. },
  32143. footFeral: {
  32144. height: math.unit(4.2, "feet"),
  32145. name: "Foot-feral",
  32146. image: {
  32147. source: "./media/characters/sini/foot-feral.svg"
  32148. }
  32149. },
  32150. },
  32151. [
  32152. {
  32153. name: "Normal",
  32154. height: math.unit(7, "feet"),
  32155. default: true
  32156. },
  32157. ]
  32158. ))
  32159. characterMakers.push(() => makeCharacter(
  32160. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32161. {
  32162. side: {
  32163. height: math.unit(13, "meters"),
  32164. weight: math.unit(9072, "kg"),
  32165. name: "Side",
  32166. image: {
  32167. source: "./media/characters/raylldo/side.svg",
  32168. extra: 403/344,
  32169. bottom: 42/445
  32170. }
  32171. },
  32172. leaping: {
  32173. height: math.unit(12.3, "meters"),
  32174. weight: math.unit(9072, "kg"),
  32175. name: "Leaping",
  32176. image: {
  32177. source: "./media/characters/raylldo/leaping.svg",
  32178. extra: 470/249,
  32179. bottom: 13/483
  32180. }
  32181. },
  32182. flying: {
  32183. height: math.unit(18, "meters"),
  32184. weight: math.unit(9072, "kg"),
  32185. name: "Flying",
  32186. image: {
  32187. source: "./media/characters/raylldo/flying.svg"
  32188. }
  32189. },
  32190. head: {
  32191. height: math.unit(5.85, "meters"),
  32192. name: "Head",
  32193. image: {
  32194. source: "./media/characters/raylldo/head.svg"
  32195. }
  32196. },
  32197. maw: {
  32198. height: math.unit(5.32, "meters"),
  32199. name: "Maw",
  32200. image: {
  32201. source: "./media/characters/raylldo/maw.svg"
  32202. }
  32203. },
  32204. eye: {
  32205. height: math.unit(0.54, "meters"),
  32206. name: "Eye",
  32207. image: {
  32208. source: "./media/characters/raylldo/eye.svg"
  32209. }
  32210. },
  32211. },
  32212. [
  32213. {
  32214. name: "Normal",
  32215. height: math.unit(13, "meters"),
  32216. default: true
  32217. },
  32218. ]
  32219. ))
  32220. characterMakers.push(() => makeCharacter(
  32221. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32222. {
  32223. anthroFront: {
  32224. height: math.unit(9, "feet"),
  32225. weight: math.unit(600, "lb"),
  32226. name: "Anthro (Front)",
  32227. image: {
  32228. source: "./media/characters/glint/anthro-front.svg",
  32229. extra: 1097/1018,
  32230. bottom: 28/1125
  32231. }
  32232. },
  32233. anthroBack: {
  32234. height: math.unit(9, "feet"),
  32235. weight: math.unit(600, "lb"),
  32236. name: "Anthro (Back)",
  32237. image: {
  32238. source: "./media/characters/glint/anthro-back.svg",
  32239. extra: 1154/997,
  32240. bottom: 36/1190
  32241. }
  32242. },
  32243. feral: {
  32244. height: math.unit(11, "feet"),
  32245. weight: math.unit(50000, "lb"),
  32246. name: "Feral",
  32247. image: {
  32248. source: "./media/characters/glint/feral.svg",
  32249. extra: 3035/1585,
  32250. bottom: 1169/4204
  32251. }
  32252. },
  32253. dickAnthro: {
  32254. height: math.unit(0.7, "meters"),
  32255. name: "Dick (Anthro)",
  32256. image: {
  32257. source: "./media/characters/glint/dick-anthro.svg"
  32258. }
  32259. },
  32260. dickFeral: {
  32261. height: math.unit(2.65, "meters"),
  32262. name: "Dick (Feral)",
  32263. image: {
  32264. source: "./media/characters/glint/dick-feral.svg"
  32265. }
  32266. },
  32267. slitHidden: {
  32268. height: math.unit(5.85, "meters"),
  32269. name: "Slit (Hidden)",
  32270. image: {
  32271. source: "./media/characters/glint/slit-hidden.svg"
  32272. }
  32273. },
  32274. slitErect: {
  32275. height: math.unit(5.85, "meters"),
  32276. name: "Slit (Erect)",
  32277. image: {
  32278. source: "./media/characters/glint/slit-erect.svg"
  32279. }
  32280. },
  32281. mawAnthro: {
  32282. height: math.unit(0.63, "meters"),
  32283. name: "Maw (Anthro)",
  32284. image: {
  32285. source: "./media/characters/glint/maw.svg"
  32286. }
  32287. },
  32288. mawFeral: {
  32289. height: math.unit(2.89, "meters"),
  32290. name: "Maw (Feral)",
  32291. image: {
  32292. source: "./media/characters/glint/maw.svg"
  32293. }
  32294. },
  32295. },
  32296. [
  32297. {
  32298. name: "Normal",
  32299. height: math.unit(9, "feet"),
  32300. default: true
  32301. },
  32302. ]
  32303. ))
  32304. characterMakers.push(() => makeCharacter(
  32305. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32306. {
  32307. side: {
  32308. height: math.unit(15, "feet"),
  32309. weight: math.unit(5000, "kg"),
  32310. name: "Side",
  32311. image: {
  32312. source: "./media/characters/kairne/side.svg",
  32313. extra: 979/811,
  32314. bottom: 13/992
  32315. }
  32316. },
  32317. front: {
  32318. height: math.unit(15, "feet"),
  32319. weight: math.unit(5000, "kg"),
  32320. name: "Front",
  32321. image: {
  32322. source: "./media/characters/kairne/front.svg",
  32323. extra: 908/814,
  32324. bottom: 26/934
  32325. }
  32326. },
  32327. sideNsfw: {
  32328. height: math.unit(15, "feet"),
  32329. weight: math.unit(5000, "kg"),
  32330. name: "Side (NSFW)",
  32331. image: {
  32332. source: "./media/characters/kairne/side-nsfw.svg",
  32333. extra: 979/811,
  32334. bottom: 13/992
  32335. }
  32336. },
  32337. frontNsfw: {
  32338. height: math.unit(15, "feet"),
  32339. weight: math.unit(5000, "kg"),
  32340. name: "Front (NSFW)",
  32341. image: {
  32342. source: "./media/characters/kairne/front-nsfw.svg",
  32343. extra: 908/814,
  32344. bottom: 26/934
  32345. }
  32346. },
  32347. dickCaged: {
  32348. height: math.unit(0.65, "meters"),
  32349. name: "Dick-caged",
  32350. image: {
  32351. source: "./media/characters/kairne/dick-caged.svg"
  32352. }
  32353. },
  32354. dick: {
  32355. height: math.unit(0.79, "meters"),
  32356. name: "Dick",
  32357. image: {
  32358. source: "./media/characters/kairne/dick.svg"
  32359. }
  32360. },
  32361. genitals: {
  32362. height: math.unit(1.29, "meters"),
  32363. name: "Genitals",
  32364. image: {
  32365. source: "./media/characters/kairne/genitals.svg"
  32366. }
  32367. },
  32368. maw: {
  32369. height: math.unit(1.73, "meters"),
  32370. name: "Maw",
  32371. image: {
  32372. source: "./media/characters/kairne/maw.svg"
  32373. }
  32374. },
  32375. },
  32376. [
  32377. {
  32378. name: "Normal",
  32379. height: math.unit(15, "feet"),
  32380. default: true
  32381. },
  32382. ]
  32383. ))
  32384. characterMakers.push(() => makeCharacter(
  32385. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32386. {
  32387. front: {
  32388. height: math.unit(5 + 8/12, "feet"),
  32389. weight: math.unit(139, "lb"),
  32390. name: "Front",
  32391. image: {
  32392. source: "./media/characters/biscuit-jackal/front.svg",
  32393. extra: 2106/1961,
  32394. bottom: 58/2164
  32395. }
  32396. },
  32397. back: {
  32398. height: math.unit(5 + 8/12, "feet"),
  32399. weight: math.unit(139, "lb"),
  32400. name: "Back",
  32401. image: {
  32402. source: "./media/characters/biscuit-jackal/back.svg",
  32403. extra: 2132/1976,
  32404. bottom: 57/2189
  32405. }
  32406. },
  32407. werejackal: {
  32408. height: math.unit(6 + 3/12, "feet"),
  32409. weight: math.unit(188, "lb"),
  32410. name: "Werejackal",
  32411. image: {
  32412. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32413. extra: 2373/2178,
  32414. bottom: 53/2426
  32415. }
  32416. },
  32417. },
  32418. [
  32419. {
  32420. name: "Normal",
  32421. height: math.unit(5 + 8/12, "feet"),
  32422. default: true
  32423. },
  32424. ]
  32425. ))
  32426. characterMakers.push(() => makeCharacter(
  32427. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32428. {
  32429. front: {
  32430. height: math.unit(140, "cm"),
  32431. weight: math.unit(45, "kg"),
  32432. name: "Front",
  32433. image: {
  32434. source: "./media/characters/tayra-white/front.svg",
  32435. extra: 2229/2192,
  32436. bottom: 75/2304
  32437. }
  32438. },
  32439. },
  32440. [
  32441. {
  32442. name: "Normal",
  32443. height: math.unit(140, "cm"),
  32444. default: true
  32445. },
  32446. ]
  32447. ))
  32448. characterMakers.push(() => makeCharacter(
  32449. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32450. {
  32451. front: {
  32452. height: math.unit(4 + 5/12, "feet"),
  32453. name: "Front",
  32454. image: {
  32455. source: "./media/characters/scoop/front.svg",
  32456. extra: 1257/1136,
  32457. bottom: 69/1326
  32458. }
  32459. },
  32460. back: {
  32461. height: math.unit(4 + 5/12, "feet"),
  32462. name: "Back",
  32463. image: {
  32464. source: "./media/characters/scoop/back.svg",
  32465. extra: 1321/1152,
  32466. bottom: 32/1353
  32467. }
  32468. },
  32469. maw: {
  32470. height: math.unit(0.68, "feet"),
  32471. name: "Maw",
  32472. image: {
  32473. source: "./media/characters/scoop/maw.svg"
  32474. }
  32475. },
  32476. },
  32477. [
  32478. {
  32479. name: "Really Small",
  32480. height: math.unit(1, "mm")
  32481. },
  32482. {
  32483. name: "Micro",
  32484. height: math.unit(1, "inch")
  32485. },
  32486. {
  32487. name: "Normal",
  32488. height: math.unit(4 + 5/12, "feet"),
  32489. default: true
  32490. },
  32491. {
  32492. name: "Macro",
  32493. height: math.unit(200, "feet")
  32494. },
  32495. {
  32496. name: "Megamacro",
  32497. height: math.unit(3240, "feet")
  32498. },
  32499. {
  32500. name: "Teramacro",
  32501. height: math.unit(2500, "miles")
  32502. },
  32503. ]
  32504. ))
  32505. characterMakers.push(() => makeCharacter(
  32506. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32507. {
  32508. front: {
  32509. height: math.unit(15 + 7/12, "feet"),
  32510. name: "Front",
  32511. image: {
  32512. source: "./media/characters/saphinara/front.svg",
  32513. extra: 604/546,
  32514. bottom: 19/623
  32515. }
  32516. },
  32517. side: {
  32518. height: math.unit(15 + 7/12, "feet"),
  32519. name: "Side",
  32520. image: {
  32521. source: "./media/characters/saphinara/side.svg",
  32522. extra: 605/547,
  32523. bottom: 6/611
  32524. }
  32525. },
  32526. back: {
  32527. height: math.unit(15 + 7/12, "feet"),
  32528. name: "Back",
  32529. image: {
  32530. source: "./media/characters/saphinara/back.svg",
  32531. extra: 591/531,
  32532. bottom: 13/604
  32533. }
  32534. },
  32535. frontTail: {
  32536. height: math.unit(15 + 7/12, "feet"),
  32537. name: "Front (Full Tail)",
  32538. image: {
  32539. source: "./media/characters/saphinara/front-tail.svg",
  32540. extra: 748/547,
  32541. bottom: 66/814
  32542. }
  32543. },
  32544. },
  32545. [
  32546. {
  32547. name: "Normal",
  32548. height: math.unit(15 + 7/12, "feet"),
  32549. default: true
  32550. },
  32551. {
  32552. name: "Angry",
  32553. height: math.unit(30 + 6/12, "feet")
  32554. },
  32555. {
  32556. name: "Enraged",
  32557. height: math.unit(102 + 1/12, "feet")
  32558. },
  32559. ]
  32560. ))
  32561. characterMakers.push(() => makeCharacter(
  32562. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32563. {
  32564. front: {
  32565. height: math.unit(6 + 8/12, "feet"),
  32566. weight: math.unit(300, "lb"),
  32567. name: "Front",
  32568. image: {
  32569. source: "./media/characters/jrain/front.svg",
  32570. extra: 3039/2865,
  32571. bottom: 399/3438
  32572. }
  32573. },
  32574. back: {
  32575. height: math.unit(6 + 8/12, "feet"),
  32576. weight: math.unit(300, "lb"),
  32577. name: "Back",
  32578. image: {
  32579. source: "./media/characters/jrain/back.svg",
  32580. extra: 3089/2938,
  32581. bottom: 172/3261
  32582. }
  32583. },
  32584. head: {
  32585. height: math.unit(2.14, "feet"),
  32586. name: "Head",
  32587. image: {
  32588. source: "./media/characters/jrain/head.svg"
  32589. }
  32590. },
  32591. maw: {
  32592. height: math.unit(1.77, "feet"),
  32593. name: "Maw",
  32594. image: {
  32595. source: "./media/characters/jrain/maw.svg"
  32596. }
  32597. },
  32598. leftHand: {
  32599. height: math.unit(1.1, "feet"),
  32600. name: "Left Hand",
  32601. image: {
  32602. source: "./media/characters/jrain/left-hand.svg"
  32603. }
  32604. },
  32605. rightHand: {
  32606. height: math.unit(1.1, "feet"),
  32607. name: "Right Hand",
  32608. image: {
  32609. source: "./media/characters/jrain/right-hand.svg"
  32610. }
  32611. },
  32612. eye: {
  32613. height: math.unit(0.35, "feet"),
  32614. name: "Eye",
  32615. image: {
  32616. source: "./media/characters/jrain/eye.svg"
  32617. }
  32618. },
  32619. },
  32620. [
  32621. {
  32622. name: "Normal",
  32623. height: math.unit(6 + 8/12, "feet"),
  32624. default: true
  32625. },
  32626. {
  32627. name: "Casually Large",
  32628. height: math.unit(25, "feet")
  32629. },
  32630. {
  32631. name: "Giant",
  32632. height: math.unit(100, "feet")
  32633. },
  32634. {
  32635. name: "Kaiju",
  32636. height: math.unit(300, "feet")
  32637. },
  32638. ]
  32639. ))
  32640. characterMakers.push(() => makeCharacter(
  32641. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32642. {
  32643. dragon: {
  32644. height: math.unit(5, "meters"),
  32645. name: "Dragon",
  32646. image: {
  32647. source: "./media/characters/sabrina/dragon.svg",
  32648. extra: 3670 / 2365,
  32649. bottom: 333 / 4003
  32650. }
  32651. },
  32652. gryphon: {
  32653. height: math.unit(3, "meters"),
  32654. name: "Gryphon",
  32655. image: {
  32656. source: "./media/characters/sabrina/gryphon.svg",
  32657. extra: 1576 / 945,
  32658. bottom: 71 / 1647
  32659. }
  32660. },
  32661. snake: {
  32662. height: math.unit(12, "meters"),
  32663. name: "Snake",
  32664. image: {
  32665. source: "./media/characters/sabrina/snake.svg",
  32666. extra: 1758 / 1320,
  32667. bottom: 186 / 1944
  32668. }
  32669. },
  32670. collar: {
  32671. height: math.unit(1.86, "meters"),
  32672. name: "Collar",
  32673. image: {
  32674. source: "./media/characters/sabrina/collar.svg"
  32675. }
  32676. },
  32677. eye: {
  32678. height: math.unit(0.53, "meters"),
  32679. name: "Eye",
  32680. image: {
  32681. source: "./media/characters/sabrina/eye.svg"
  32682. }
  32683. },
  32684. foot: {
  32685. height: math.unit(1.86, "meters"),
  32686. name: "Foot",
  32687. image: {
  32688. source: "./media/characters/sabrina/foot.svg"
  32689. }
  32690. },
  32691. hand: {
  32692. height: math.unit(1.32, "meters"),
  32693. name: "Hand",
  32694. image: {
  32695. source: "./media/characters/sabrina/hand.svg"
  32696. }
  32697. },
  32698. head: {
  32699. height: math.unit(2.44, "meters"),
  32700. name: "Head",
  32701. image: {
  32702. source: "./media/characters/sabrina/head.svg"
  32703. }
  32704. },
  32705. headAngry: {
  32706. height: math.unit(2.44, "meters"),
  32707. name: "Head (Angry))",
  32708. image: {
  32709. source: "./media/characters/sabrina/head-angry.svg"
  32710. }
  32711. },
  32712. maw: {
  32713. height: math.unit(1.65, "meters"),
  32714. name: "Maw",
  32715. image: {
  32716. source: "./media/characters/sabrina/maw.svg"
  32717. }
  32718. },
  32719. spikes: {
  32720. height: math.unit(1.69, "meters"),
  32721. name: "Spikes",
  32722. image: {
  32723. source: "./media/characters/sabrina/spikes.svg"
  32724. }
  32725. },
  32726. stomach: {
  32727. height: math.unit(1.15, "meters"),
  32728. name: "Stomach",
  32729. image: {
  32730. source: "./media/characters/sabrina/stomach.svg"
  32731. }
  32732. },
  32733. tongue: {
  32734. height: math.unit(1.27, "meters"),
  32735. name: "Tongue",
  32736. image: {
  32737. source: "./media/characters/sabrina/tongue.svg"
  32738. }
  32739. },
  32740. wingDorsal: {
  32741. height: math.unit(4.85, "meters"),
  32742. name: "Wing (Dorsal)",
  32743. image: {
  32744. source: "./media/characters/sabrina/wing-dorsal.svg"
  32745. }
  32746. },
  32747. wingVentral: {
  32748. height: math.unit(4.85, "meters"),
  32749. name: "Wing (Ventral)",
  32750. image: {
  32751. source: "./media/characters/sabrina/wing-ventral.svg"
  32752. }
  32753. },
  32754. },
  32755. [
  32756. {
  32757. name: "Normal",
  32758. height: math.unit(5, "meters"),
  32759. default: true
  32760. },
  32761. ]
  32762. ))
  32763. characterMakers.push(() => makeCharacter(
  32764. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32765. {
  32766. frontMaid: {
  32767. height: math.unit(5 + 5/12, "feet"),
  32768. weight: math.unit(130, "lb"),
  32769. name: "Front (Maid)",
  32770. image: {
  32771. source: "./media/characters/midnight-tales/front-maid.svg",
  32772. extra: 489/454,
  32773. bottom: 61/550
  32774. }
  32775. },
  32776. frontFormal: {
  32777. height: math.unit(5 + 5/12, "feet"),
  32778. weight: math.unit(130, "lb"),
  32779. name: "Front (Formal)",
  32780. image: {
  32781. source: "./media/characters/midnight-tales/front-formal.svg",
  32782. extra: 489/454,
  32783. bottom: 61/550
  32784. }
  32785. },
  32786. back: {
  32787. height: math.unit(5 + 5/12, "feet"),
  32788. weight: math.unit(130, "lb"),
  32789. name: "Back",
  32790. image: {
  32791. source: "./media/characters/midnight-tales/back.svg",
  32792. extra: 498/456,
  32793. bottom: 33/531
  32794. }
  32795. },
  32796. frontBeast: {
  32797. height: math.unit(40, "feet"),
  32798. weight: math.unit(64000, "lb"),
  32799. name: "Front (Beast)",
  32800. image: {
  32801. source: "./media/characters/midnight-tales/front-beast.svg",
  32802. extra: 927/860,
  32803. bottom: 53/980
  32804. }
  32805. },
  32806. backBeast: {
  32807. height: math.unit(40, "feet"),
  32808. weight: math.unit(64000, "lb"),
  32809. name: "Back (Beast)",
  32810. image: {
  32811. source: "./media/characters/midnight-tales/back-beast.svg",
  32812. extra: 929/855,
  32813. bottom: 16/945
  32814. }
  32815. },
  32816. footBeast: {
  32817. height: math.unit(6.7, "feet"),
  32818. name: "Foot (Beast)",
  32819. image: {
  32820. source: "./media/characters/midnight-tales/foot-beast.svg"
  32821. }
  32822. },
  32823. headBeast: {
  32824. height: math.unit(8, "feet"),
  32825. name: "Head (Beast)",
  32826. image: {
  32827. source: "./media/characters/midnight-tales/head-beast.svg"
  32828. }
  32829. },
  32830. },
  32831. [
  32832. {
  32833. name: "Normal",
  32834. height: math.unit(5 + 5 / 12, "feet"),
  32835. default: true
  32836. },
  32837. {
  32838. name: "Macro",
  32839. height: math.unit(25, "feet")
  32840. },
  32841. ]
  32842. ))
  32843. characterMakers.push(() => makeCharacter(
  32844. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  32845. {
  32846. front: {
  32847. height: math.unit(5 + 10/12, "feet"),
  32848. name: "Front",
  32849. image: {
  32850. source: "./media/characters/argon/front.svg",
  32851. extra: 2009/1935,
  32852. bottom: 118/2127
  32853. }
  32854. },
  32855. back: {
  32856. height: math.unit(5 + 10/12, "feet"),
  32857. name: "Back",
  32858. image: {
  32859. source: "./media/characters/argon/back.svg",
  32860. extra: 2047/1992,
  32861. bottom: 20/2067
  32862. }
  32863. },
  32864. frontDressed: {
  32865. height: math.unit(5 + 10/12, "feet"),
  32866. name: "Front (Dressed)",
  32867. image: {
  32868. source: "./media/characters/argon/front-dressed.svg",
  32869. extra: 2009/1935,
  32870. bottom: 118/2127
  32871. }
  32872. },
  32873. },
  32874. [
  32875. {
  32876. name: "Normal",
  32877. height: math.unit(5 + 10/12, "feet"),
  32878. default: true
  32879. },
  32880. ]
  32881. ))
  32882. characterMakers.push(() => makeCharacter(
  32883. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  32884. {
  32885. front: {
  32886. height: math.unit(8 + 6/12, "feet"),
  32887. weight: math.unit(1150, "lb"),
  32888. name: "Front",
  32889. image: {
  32890. source: "./media/characters/kichi/front.svg",
  32891. extra: 1267/1164,
  32892. bottom: 61/1328
  32893. }
  32894. },
  32895. back: {
  32896. height: math.unit(8 + 6/12, "feet"),
  32897. weight: math.unit(1150, "lb"),
  32898. name: "Back",
  32899. image: {
  32900. source: "./media/characters/kichi/back.svg",
  32901. extra: 1273/1166,
  32902. bottom: 33/1306
  32903. }
  32904. },
  32905. },
  32906. [
  32907. {
  32908. name: "Normal",
  32909. height: math.unit(8 + 6/12, "feet"),
  32910. default: true
  32911. },
  32912. ]
  32913. ))
  32914. characterMakers.push(() => makeCharacter(
  32915. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  32916. {
  32917. front: {
  32918. height: math.unit(6, "feet"),
  32919. weight: math.unit(210, "lb"),
  32920. name: "Front",
  32921. image: {
  32922. source: "./media/characters/manetel-greyscale/front.svg",
  32923. extra: 350/312,
  32924. bottom: 8/358
  32925. }
  32926. },
  32927. },
  32928. [
  32929. {
  32930. name: "Micro",
  32931. height: math.unit(2, "inches")
  32932. },
  32933. {
  32934. name: "Normal",
  32935. height: math.unit(6, "feet"),
  32936. default: true
  32937. },
  32938. {
  32939. name: "Minimacro",
  32940. height: math.unit(17, "feet")
  32941. },
  32942. {
  32943. name: "Macro",
  32944. height: math.unit(117, "feet")
  32945. },
  32946. ]
  32947. ))
  32948. characterMakers.push(() => makeCharacter(
  32949. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  32950. {
  32951. side: {
  32952. height: math.unit(5 + 1/12, "feet"),
  32953. weight: math.unit(418, "lb"),
  32954. name: "Side",
  32955. image: {
  32956. source: "./media/characters/softpurr/side.svg",
  32957. extra: 1993/1945,
  32958. bottom: 134/2127
  32959. }
  32960. },
  32961. front: {
  32962. height: math.unit(5 + 1/12, "feet"),
  32963. weight: math.unit(418, "lb"),
  32964. name: "Front",
  32965. image: {
  32966. source: "./media/characters/softpurr/front.svg",
  32967. extra: 1950/1856,
  32968. bottom: 174/2124
  32969. }
  32970. },
  32971. paw: {
  32972. height: math.unit(1, "feet"),
  32973. name: "Paw",
  32974. image: {
  32975. source: "./media/characters/softpurr/paw.svg"
  32976. }
  32977. },
  32978. },
  32979. [
  32980. {
  32981. name: "Normal",
  32982. height: math.unit(5 + 1/12, "feet"),
  32983. default: true
  32984. },
  32985. ]
  32986. ))
  32987. characterMakers.push(() => makeCharacter(
  32988. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  32989. {
  32990. front: {
  32991. height: math.unit(260, "meters"),
  32992. name: "Front",
  32993. image: {
  32994. source: "./media/characters/anahita/front.svg",
  32995. extra: 665/635,
  32996. bottom: 89/754
  32997. }
  32998. },
  32999. },
  33000. [
  33001. {
  33002. name: "Macro",
  33003. height: math.unit(260, "meters"),
  33004. default: true
  33005. },
  33006. ]
  33007. ))
  33008. characterMakers.push(() => makeCharacter(
  33009. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33010. {
  33011. front: {
  33012. height: math.unit(4 + 10/12, "feet"),
  33013. weight: math.unit(160, "lb"),
  33014. name: "Front",
  33015. image: {
  33016. source: "./media/characters/chip-mouse/front.svg",
  33017. extra: 3528/3408,
  33018. bottom: 0/3528
  33019. }
  33020. },
  33021. frontNsfw: {
  33022. height: math.unit(4 + 10/12, "feet"),
  33023. weight: math.unit(160, "lb"),
  33024. name: "Front (NSFW)",
  33025. image: {
  33026. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33027. extra: 3528/3408,
  33028. bottom: 0/3528
  33029. }
  33030. },
  33031. },
  33032. [
  33033. {
  33034. name: "Normal",
  33035. height: math.unit(4 + 10/12, "feet"),
  33036. default: true
  33037. },
  33038. ]
  33039. ))
  33040. characterMakers.push(() => makeCharacter(
  33041. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33042. {
  33043. side: {
  33044. height: math.unit(10, "feet"),
  33045. weight: math.unit(14000, "lb"),
  33046. name: "Side",
  33047. image: {
  33048. source: "./media/characters/kremm/side.svg",
  33049. extra: 1390/1053,
  33050. bottom: 90/1480
  33051. }
  33052. },
  33053. gut: {
  33054. height: math.unit(5.8, "feet"),
  33055. name: "Gut",
  33056. image: {
  33057. source: "./media/characters/kremm/gut.svg"
  33058. }
  33059. },
  33060. ass: {
  33061. height: math.unit(6.1, "feet"),
  33062. name: "Ass",
  33063. image: {
  33064. source: "./media/characters/kremm/ass.svg"
  33065. }
  33066. },
  33067. jaws: {
  33068. height: math.unit(2.2, "feet"),
  33069. name: "Jaws",
  33070. image: {
  33071. source: "./media/characters/kremm/jaws.svg"
  33072. }
  33073. },
  33074. dick: {
  33075. height: math.unit(4.26, "feet"),
  33076. name: "Dick",
  33077. image: {
  33078. source: "./media/characters/kremm/dick.svg"
  33079. }
  33080. },
  33081. },
  33082. [
  33083. {
  33084. name: "Normal",
  33085. height: math.unit(10, "feet"),
  33086. default: true
  33087. },
  33088. ]
  33089. ))
  33090. characterMakers.push(() => makeCharacter(
  33091. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33092. {
  33093. front: {
  33094. height: math.unit(30, "stories"),
  33095. name: "Front",
  33096. image: {
  33097. source: "./media/characters/kai/front.svg",
  33098. extra: 1892/1718,
  33099. bottom: 162/2054
  33100. }
  33101. },
  33102. },
  33103. [
  33104. {
  33105. name: "Macro",
  33106. height: math.unit(30, "stories"),
  33107. default: true
  33108. },
  33109. ]
  33110. ))
  33111. characterMakers.push(() => makeCharacter(
  33112. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33113. {
  33114. front: {
  33115. height: math.unit(6 + 4/12, "feet"),
  33116. weight: math.unit(145, "lb"),
  33117. name: "Front",
  33118. image: {
  33119. source: "./media/characters/sykes/front.svg",
  33120. extra: 1321 / 1187,
  33121. bottom: 66 / 1387
  33122. }
  33123. },
  33124. back: {
  33125. height: math.unit(6 + 4/12, "feet"),
  33126. weight: math.unit(145, "lb"),
  33127. name: "Back",
  33128. image: {
  33129. source: "./media/characters/sykes/back.svg",
  33130. extra: 1326/1181,
  33131. bottom: 31/1357
  33132. }
  33133. },
  33134. handBack: {
  33135. height: math.unit(0.9, "feet"),
  33136. name: "Hand (Back)",
  33137. image: {
  33138. source: "./media/characters/sykes/hand-back.svg"
  33139. }
  33140. },
  33141. handFront: {
  33142. height: math.unit(0.839, "feet"),
  33143. name: "Hand (Front)",
  33144. image: {
  33145. source: "./media/characters/sykes/hand-front.svg"
  33146. }
  33147. },
  33148. leftFoot: {
  33149. height: math.unit(1.2, "feet"),
  33150. name: "Foot (Left)",
  33151. image: {
  33152. source: "./media/characters/sykes/foot-left.svg"
  33153. }
  33154. },
  33155. rightFoot: {
  33156. height: math.unit(1.2, "feet"),
  33157. name: "Foot (Right)",
  33158. image: {
  33159. source: "./media/characters/sykes/foot-right.svg"
  33160. }
  33161. },
  33162. maw: {
  33163. height: math.unit(1.93, "feet"),
  33164. name: "Maw",
  33165. image: {
  33166. source: "./media/characters/sykes/maw.svg"
  33167. }
  33168. },
  33169. teeth: {
  33170. height: math.unit(0.51, "feet"),
  33171. name: "Teeth",
  33172. image: {
  33173. source: "./media/characters/sykes/teeth.svg"
  33174. }
  33175. },
  33176. tongue: {
  33177. height: math.unit(2.13, "feet"),
  33178. name: "Tongue",
  33179. image: {
  33180. source: "./media/characters/sykes/tongue.svg"
  33181. }
  33182. },
  33183. uvula: {
  33184. height: math.unit(0.16, "feet"),
  33185. name: "Uvula",
  33186. image: {
  33187. source: "./media/characters/sykes/uvula.svg"
  33188. }
  33189. },
  33190. collar: {
  33191. height: math.unit(0.287, "feet"),
  33192. name: "Collar",
  33193. image: {
  33194. source: "./media/characters/sykes/collar.svg"
  33195. }
  33196. },
  33197. },
  33198. [
  33199. {
  33200. name: "Shrunken",
  33201. height: math.unit(5, "inches")
  33202. },
  33203. {
  33204. name: "Normal",
  33205. height: math.unit(6 + 4 / 12, "feet"),
  33206. default: true
  33207. },
  33208. {
  33209. name: "Big",
  33210. height: math.unit(15, "feet")
  33211. },
  33212. ]
  33213. ))
  33214. characterMakers.push(() => makeCharacter(
  33215. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33216. {
  33217. front: {
  33218. height: math.unit(5 + 8/12, "feet"),
  33219. weight: math.unit(190, "lb"),
  33220. name: "Front",
  33221. image: {
  33222. source: "./media/characters/oven-otter/front.svg",
  33223. extra: 1809/1740,
  33224. bottom: 181/1990
  33225. }
  33226. },
  33227. back: {
  33228. height: math.unit(5 + 8/12, "feet"),
  33229. weight: math.unit(190, "lb"),
  33230. name: "Back",
  33231. image: {
  33232. source: "./media/characters/oven-otter/back.svg",
  33233. extra: 1709/1635,
  33234. bottom: 118/1827
  33235. }
  33236. },
  33237. hand: {
  33238. height: math.unit(1.07, "feet"),
  33239. name: "Hand",
  33240. image: {
  33241. source: "./media/characters/oven-otter/hand.svg"
  33242. }
  33243. },
  33244. beans: {
  33245. height: math.unit(1.74, "feet"),
  33246. name: "Beans",
  33247. image: {
  33248. source: "./media/characters/oven-otter/beans.svg"
  33249. }
  33250. },
  33251. },
  33252. [
  33253. {
  33254. name: "Micro",
  33255. height: math.unit(0.5, "inches")
  33256. },
  33257. {
  33258. name: "Normal",
  33259. height: math.unit(5 + 8/12, "feet"),
  33260. default: true
  33261. },
  33262. {
  33263. name: "Macro",
  33264. height: math.unit(250, "feet")
  33265. },
  33266. {
  33267. name: "Really High",
  33268. height: math.unit(420, "feet")
  33269. },
  33270. ]
  33271. ))
  33272. characterMakers.push(() => makeCharacter(
  33273. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33274. {
  33275. front: {
  33276. height: math.unit(5, "meters"),
  33277. weight: math.unit(292000000000000, "kg"),
  33278. name: "Front",
  33279. image: {
  33280. source: "./media/characters/devourer/front.svg",
  33281. extra: 1800/1733,
  33282. bottom: 211/2011
  33283. }
  33284. },
  33285. maw: {
  33286. height: math.unit(1.1, "meter"),
  33287. name: "Maw",
  33288. image: {
  33289. source: "./media/characters/devourer/maw.svg"
  33290. }
  33291. },
  33292. },
  33293. [
  33294. {
  33295. name: "Small",
  33296. height: math.unit(3, "meters")
  33297. },
  33298. {
  33299. name: "Large",
  33300. height: math.unit(5, "meters"),
  33301. default: true
  33302. },
  33303. ]
  33304. ))
  33305. characterMakers.push(() => makeCharacter(
  33306. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33307. {
  33308. front: {
  33309. height: math.unit(6, "feet"),
  33310. weight: math.unit(400, "lb"),
  33311. name: "Front",
  33312. image: {
  33313. source: "./media/characters/ellarby/front.svg",
  33314. extra: 1909/1763,
  33315. bottom: 80/1989
  33316. }
  33317. },
  33318. back: {
  33319. height: math.unit(6, "feet"),
  33320. weight: math.unit(400, "lb"),
  33321. name: "Back",
  33322. image: {
  33323. source: "./media/characters/ellarby/back.svg",
  33324. extra: 1914/1784,
  33325. bottom: 172/2086
  33326. }
  33327. },
  33328. },
  33329. [
  33330. {
  33331. name: "Mischief",
  33332. height: math.unit(18, "inches")
  33333. },
  33334. {
  33335. name: "Trouble",
  33336. height: math.unit(12, "feet")
  33337. },
  33338. {
  33339. name: "Havoc",
  33340. height: math.unit(200, "feet"),
  33341. default: true
  33342. },
  33343. {
  33344. name: "Pandemonium",
  33345. height: math.unit(1, "mile")
  33346. },
  33347. {
  33348. name: "Catastrophe",
  33349. height: math.unit(100, "miles")
  33350. },
  33351. ]
  33352. ))
  33353. characterMakers.push(() => makeCharacter(
  33354. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33355. {
  33356. front: {
  33357. height: math.unit(4.7, "meters"),
  33358. weight: math.unit(6500, "kg"),
  33359. name: "Front",
  33360. image: {
  33361. source: "./media/characters/vex/front.svg",
  33362. extra: 1288/1140,
  33363. bottom: 100/1388
  33364. }
  33365. },
  33366. },
  33367. [
  33368. {
  33369. name: "Normal",
  33370. height: math.unit(4.7, "meters"),
  33371. default: true
  33372. },
  33373. ]
  33374. ))
  33375. characterMakers.push(() => makeCharacter(
  33376. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33377. {
  33378. normal: {
  33379. height: math.unit(6, "feet"),
  33380. weight: math.unit(350, "lb"),
  33381. name: "Normal",
  33382. image: {
  33383. source: "./media/characters/teshy/normal.svg",
  33384. extra: 1795/1735,
  33385. bottom: 16/1811
  33386. }
  33387. },
  33388. monsterFront: {
  33389. height: math.unit(12, "feet"),
  33390. weight: math.unit(4700, "lb"),
  33391. name: "Monster (Front)",
  33392. image: {
  33393. source: "./media/characters/teshy/monster-front.svg",
  33394. extra: 2042/2034,
  33395. bottom: 128/2170
  33396. }
  33397. },
  33398. monsterSide: {
  33399. height: math.unit(12, "feet"),
  33400. weight: math.unit(4700, "lb"),
  33401. name: "Monster (Side)",
  33402. image: {
  33403. source: "./media/characters/teshy/monster-side.svg",
  33404. extra: 2067/2056,
  33405. bottom: 70/2137
  33406. }
  33407. },
  33408. monsterBack: {
  33409. height: math.unit(12, "feet"),
  33410. weight: math.unit(4700, "lb"),
  33411. name: "Monster (Back)",
  33412. image: {
  33413. source: "./media/characters/teshy/monster-back.svg",
  33414. extra: 1921/1914,
  33415. bottom: 171/2092
  33416. }
  33417. },
  33418. },
  33419. [
  33420. {
  33421. name: "Normal",
  33422. height: math.unit(6, "feet"),
  33423. default: true
  33424. },
  33425. ]
  33426. ))
  33427. characterMakers.push(() => makeCharacter(
  33428. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33429. {
  33430. front: {
  33431. height: math.unit(6, "feet"),
  33432. name: "Front",
  33433. image: {
  33434. source: "./media/characters/ramey/front.svg",
  33435. extra: 790/787,
  33436. bottom: 27/817
  33437. }
  33438. },
  33439. },
  33440. [
  33441. {
  33442. name: "Normal",
  33443. height: math.unit(6, "feet"),
  33444. default: true
  33445. },
  33446. ]
  33447. ))
  33448. characterMakers.push(() => makeCharacter(
  33449. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33450. {
  33451. front: {
  33452. height: math.unit(5 + 5/12, "feet"),
  33453. weight: math.unit(120, "lb"),
  33454. name: "Front",
  33455. image: {
  33456. source: "./media/characters/phirae/front.svg",
  33457. extra: 2491/2436,
  33458. bottom: 38/2529
  33459. }
  33460. },
  33461. },
  33462. [
  33463. {
  33464. name: "Normal",
  33465. height: math.unit(5 + 5/12, "feet"),
  33466. default: true
  33467. },
  33468. ]
  33469. ))
  33470. characterMakers.push(() => makeCharacter(
  33471. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33472. {
  33473. front: {
  33474. height: math.unit(6, "feet"),
  33475. weight: math.unit(150, "lb"),
  33476. name: "Front",
  33477. image: {
  33478. source: "./media/characters/stagglas/front.svg",
  33479. extra: 962/882,
  33480. bottom: 53/1015
  33481. }
  33482. },
  33483. },
  33484. [
  33485. {
  33486. name: "Normal",
  33487. height: math.unit(5 + 3/12, "feet"),
  33488. default: true
  33489. },
  33490. ]
  33491. ))
  33492. characterMakers.push(() => makeCharacter(
  33493. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33494. {
  33495. front: {
  33496. height: math.unit(5 + 4/12, "feet"),
  33497. weight: math.unit(145, "lb"),
  33498. name: "Front",
  33499. image: {
  33500. source: "./media/characters/starra/front.svg",
  33501. extra: 1790/1691,
  33502. bottom: 91/1881
  33503. }
  33504. },
  33505. },
  33506. [
  33507. {
  33508. name: "Normal",
  33509. height: math.unit(5 + 4/12, "feet"),
  33510. default: true
  33511. },
  33512. ]
  33513. ))
  33514. characterMakers.push(() => makeCharacter(
  33515. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33516. {
  33517. front: {
  33518. height: math.unit(2.2, "meters"),
  33519. name: "Front",
  33520. image: {
  33521. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33522. extra: 1194/1005,
  33523. bottom: 25/1219
  33524. }
  33525. },
  33526. },
  33527. [
  33528. {
  33529. name: "Normal",
  33530. height: math.unit(2.2, "meters"),
  33531. default: true
  33532. },
  33533. ]
  33534. ))
  33535. characterMakers.push(() => makeCharacter(
  33536. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33537. {
  33538. side: {
  33539. height: math.unit(8 + 2/12, "feet"),
  33540. weight: math.unit(1240, "lb"),
  33541. name: "Side",
  33542. image: {
  33543. source: "./media/characters/mika-valentine/side.svg",
  33544. extra: 2670/2501,
  33545. bottom: 250/2920
  33546. }
  33547. },
  33548. },
  33549. [
  33550. {
  33551. name: "Normal",
  33552. height: math.unit(8 + 2/12, "feet"),
  33553. default: true
  33554. },
  33555. ]
  33556. ))
  33557. characterMakers.push(() => makeCharacter(
  33558. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33559. {
  33560. front: {
  33561. height: math.unit(7 + 2/12, "feet"),
  33562. name: "Front",
  33563. image: {
  33564. source: "./media/characters/xoltol/front.svg",
  33565. extra: 2212/2124,
  33566. bottom: 84/2296
  33567. }
  33568. },
  33569. side: {
  33570. height: math.unit(7 + 2/12, "feet"),
  33571. name: "Side",
  33572. image: {
  33573. source: "./media/characters/xoltol/side.svg",
  33574. extra: 2273/2197,
  33575. bottom: 26/2299
  33576. }
  33577. },
  33578. hand: {
  33579. height: math.unit(2.5, "feet"),
  33580. name: "Hand",
  33581. image: {
  33582. source: "./media/characters/xoltol/hand.svg"
  33583. }
  33584. },
  33585. },
  33586. [
  33587. {
  33588. name: "Small-ish",
  33589. height: math.unit(5 + 11/12, "feet")
  33590. },
  33591. {
  33592. name: "Normal",
  33593. height: math.unit(7 + 2/12, "feet")
  33594. },
  33595. {
  33596. name: "\"Macro\"",
  33597. height: math.unit(14 + 9/12, "feet"),
  33598. default: true
  33599. },
  33600. {
  33601. name: "Alternate Height",
  33602. height: math.unit(20, "feet")
  33603. },
  33604. {
  33605. name: "Actually Macro",
  33606. height: math.unit(100, "feet")
  33607. },
  33608. ]
  33609. ))
  33610. characterMakers.push(() => makeCharacter(
  33611. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33612. {
  33613. front: {
  33614. height: math.unit(5 + 2/12, "feet"),
  33615. name: "Front",
  33616. image: {
  33617. source: "./media/characters/kotetsu-redwood/front.svg",
  33618. extra: 1053/942,
  33619. bottom: 60/1113
  33620. }
  33621. },
  33622. },
  33623. [
  33624. {
  33625. name: "Normal",
  33626. height: math.unit(5 + 2/12, "feet"),
  33627. default: true
  33628. },
  33629. ]
  33630. ))
  33631. characterMakers.push(() => makeCharacter(
  33632. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33633. {
  33634. front: {
  33635. height: math.unit(2.4, "meters"),
  33636. weight: math.unit(125, "kg"),
  33637. name: "Front",
  33638. image: {
  33639. source: "./media/characters/lilith/front.svg",
  33640. extra: 1590/1513,
  33641. bottom: 203/1793
  33642. }
  33643. },
  33644. },
  33645. [
  33646. {
  33647. name: "Humanoid",
  33648. height: math.unit(2.4, "meters")
  33649. },
  33650. {
  33651. name: "Normal",
  33652. height: math.unit(6, "meters"),
  33653. default: true
  33654. },
  33655. {
  33656. name: "Largest",
  33657. height: math.unit(55, "meters")
  33658. },
  33659. ]
  33660. ))
  33661. characterMakers.push(() => makeCharacter(
  33662. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33663. {
  33664. front: {
  33665. height: math.unit(8 + 4/12, "feet"),
  33666. weight: math.unit(535, "lb"),
  33667. name: "Front",
  33668. image: {
  33669. source: "./media/characters/beh'kah-bolger/front.svg",
  33670. extra: 1660/1603,
  33671. bottom: 37/1697
  33672. }
  33673. },
  33674. },
  33675. [
  33676. {
  33677. name: "Normal",
  33678. height: math.unit(8 + 4/12, "feet"),
  33679. default: true
  33680. },
  33681. {
  33682. name: "Kaiju",
  33683. height: math.unit(250, "feet")
  33684. },
  33685. {
  33686. name: "Still Growing",
  33687. height: math.unit(10, "miles")
  33688. },
  33689. {
  33690. name: "Continental",
  33691. height: math.unit(5000, "miles")
  33692. },
  33693. {
  33694. name: "Final Form",
  33695. height: math.unit(2500000, "miles")
  33696. },
  33697. ]
  33698. ))
  33699. characterMakers.push(() => makeCharacter(
  33700. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33701. {
  33702. front: {
  33703. height: math.unit(7 + 2/12, "feet"),
  33704. weight: math.unit(230, "kg"),
  33705. name: "Front",
  33706. image: {
  33707. source: "./media/characters/tatyana-milewska/front.svg",
  33708. extra: 1199/1150,
  33709. bottom: 86/1285
  33710. }
  33711. },
  33712. },
  33713. [
  33714. {
  33715. name: "Normal",
  33716. height: math.unit(7 + 2/12, "feet"),
  33717. default: true
  33718. },
  33719. {
  33720. name: "Big",
  33721. height: math.unit(12, "feet")
  33722. },
  33723. {
  33724. name: "Minimacro",
  33725. height: math.unit(20, "feet")
  33726. },
  33727. {
  33728. name: "Macro",
  33729. height: math.unit(120, "feet")
  33730. },
  33731. ]
  33732. ))
  33733. characterMakers.push(() => makeCharacter(
  33734. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  33735. {
  33736. front: {
  33737. height: math.unit(7 + 8/12, "feet"),
  33738. weight: math.unit(152, "kg"),
  33739. name: "Front",
  33740. image: {
  33741. source: "./media/characters/helen-arri/front.svg",
  33742. extra: 440/423,
  33743. bottom: 14/454
  33744. }
  33745. },
  33746. back: {
  33747. height: math.unit(7 + 8/12, "feet"),
  33748. weight: math.unit(152, "kg"),
  33749. name: "Back",
  33750. image: {
  33751. source: "./media/characters/helen-arri/back.svg",
  33752. extra: 443/426,
  33753. bottom: 8/451
  33754. }
  33755. },
  33756. },
  33757. [
  33758. {
  33759. name: "Normal",
  33760. height: math.unit(7 + 8/12, "feet"),
  33761. default: true
  33762. },
  33763. {
  33764. name: "Big",
  33765. height: math.unit(14, "feet")
  33766. },
  33767. {
  33768. name: "Minimacro",
  33769. height: math.unit(24, "feet")
  33770. },
  33771. {
  33772. name: "Macro",
  33773. height: math.unit(140, "feet")
  33774. },
  33775. ]
  33776. ))
  33777. characterMakers.push(() => makeCharacter(
  33778. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  33779. {
  33780. front: {
  33781. height: math.unit(6, "meters"),
  33782. name: "Front",
  33783. image: {
  33784. source: "./media/characters/ehanu-rehu/front.svg",
  33785. extra: 1800/1800,
  33786. bottom: 59/1859
  33787. }
  33788. },
  33789. },
  33790. [
  33791. {
  33792. name: "Normal",
  33793. height: math.unit(6, "meters"),
  33794. default: true
  33795. },
  33796. ]
  33797. ))
  33798. characterMakers.push(() => makeCharacter(
  33799. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  33800. {
  33801. front: {
  33802. height: math.unit(7 + 3/12, "feet"),
  33803. name: "Front",
  33804. image: {
  33805. source: "./media/characters/renholder/front.svg",
  33806. extra: 3096/2960,
  33807. bottom: 250/3346
  33808. }
  33809. },
  33810. },
  33811. [
  33812. {
  33813. name: "Normal Bat",
  33814. height: math.unit(7 + 3/12, "feet"),
  33815. default: true
  33816. },
  33817. {
  33818. name: "Slightly Tall Bat",
  33819. height: math.unit(100, "feet")
  33820. },
  33821. {
  33822. name: "Big Bat",
  33823. height: math.unit(1000, "feet")
  33824. },
  33825. {
  33826. name: "City-Sized Bat",
  33827. height: math.unit(200000, "feet")
  33828. },
  33829. {
  33830. name: "Bigger Bat",
  33831. height: math.unit(10000, "miles")
  33832. },
  33833. {
  33834. name: "Solar Sized Bat",
  33835. height: math.unit(100, "AU")
  33836. },
  33837. {
  33838. name: "Galactic Bat",
  33839. height: math.unit(200000, "lightyears")
  33840. },
  33841. {
  33842. name: "Universally Known Bat",
  33843. height: math.unit(1, "universe")
  33844. },
  33845. ]
  33846. ))
  33847. characterMakers.push(() => makeCharacter(
  33848. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  33849. {
  33850. front: {
  33851. height: math.unit(6 + 11/12, "feet"),
  33852. weight: math.unit(250, "lb"),
  33853. name: "Front",
  33854. image: {
  33855. source: "./media/characters/cookiecat/front.svg",
  33856. extra: 893/827,
  33857. bottom: 14/907
  33858. }
  33859. },
  33860. },
  33861. [
  33862. {
  33863. name: "Micro",
  33864. height: math.unit(3, "inches")
  33865. },
  33866. {
  33867. name: "Normal",
  33868. height: math.unit(6 + 11/12, "feet"),
  33869. default: true
  33870. },
  33871. {
  33872. name: "Macro",
  33873. height: math.unit(100, "feet")
  33874. },
  33875. {
  33876. name: "Macro+",
  33877. height: math.unit(404, "feet")
  33878. },
  33879. {
  33880. name: "Megamacro",
  33881. height: math.unit(165, "miles")
  33882. },
  33883. {
  33884. name: "Planetary",
  33885. height: math.unit(4600, "miles")
  33886. },
  33887. ]
  33888. ))
  33889. characterMakers.push(() => makeCharacter(
  33890. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  33891. {
  33892. front: {
  33893. height: math.unit(10 + 3/12, "feet"),
  33894. weight: math.unit(1500, "lb"),
  33895. name: "Front",
  33896. image: {
  33897. source: "./media/characters/tux-kusanagi/front.svg",
  33898. extra: 944/840,
  33899. bottom: 39/983
  33900. }
  33901. },
  33902. back: {
  33903. height: math.unit(10 + 3/12, "feet"),
  33904. weight: math.unit(1500, "lb"),
  33905. name: "Back",
  33906. image: {
  33907. source: "./media/characters/tux-kusanagi/back.svg",
  33908. extra: 941/842,
  33909. bottom: 28/969
  33910. }
  33911. },
  33912. rump: {
  33913. height: math.unit(5.25, "feet"),
  33914. name: "Rump",
  33915. image: {
  33916. source: "./media/characters/tux-kusanagi/rump.svg"
  33917. }
  33918. },
  33919. beak: {
  33920. height: math.unit(1.54, "feet"),
  33921. name: "Beak",
  33922. image: {
  33923. source: "./media/characters/tux-kusanagi/beak.svg"
  33924. }
  33925. },
  33926. },
  33927. [
  33928. {
  33929. name: "Normal",
  33930. height: math.unit(10 + 3/12, "feet"),
  33931. default: true
  33932. },
  33933. ]
  33934. ))
  33935. characterMakers.push(() => makeCharacter(
  33936. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  33937. {
  33938. front: {
  33939. height: math.unit(58, "feet"),
  33940. weight: math.unit(200, "tons"),
  33941. name: "Front",
  33942. image: {
  33943. source: "./media/characters/uzarmazari/front.svg",
  33944. extra: 1575/1455,
  33945. bottom: 152/1727
  33946. }
  33947. },
  33948. back: {
  33949. height: math.unit(58, "feet"),
  33950. weight: math.unit(200, "tons"),
  33951. name: "Back",
  33952. image: {
  33953. source: "./media/characters/uzarmazari/back.svg",
  33954. extra: 1585/1510,
  33955. bottom: 157/1742
  33956. }
  33957. },
  33958. head: {
  33959. height: math.unit(26, "feet"),
  33960. name: "Head",
  33961. image: {
  33962. source: "./media/characters/uzarmazari/head.svg"
  33963. }
  33964. },
  33965. },
  33966. [
  33967. {
  33968. name: "Normal",
  33969. height: math.unit(58, "feet"),
  33970. default: true
  33971. },
  33972. ]
  33973. ))
  33974. characterMakers.push(() => makeCharacter(
  33975. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  33976. {
  33977. side: {
  33978. height: math.unit(15, "feet"),
  33979. name: "Side",
  33980. image: {
  33981. source: "./media/characters/akitu/side.svg",
  33982. extra: 1421/1321,
  33983. bottom: 157/1578
  33984. }
  33985. },
  33986. front: {
  33987. height: math.unit(15, "feet"),
  33988. name: "Front",
  33989. image: {
  33990. source: "./media/characters/akitu/front.svg",
  33991. extra: 1435/1326,
  33992. bottom: 232/1667
  33993. }
  33994. },
  33995. },
  33996. [
  33997. {
  33998. name: "Normal",
  33999. height: math.unit(15, "feet"),
  34000. default: true
  34001. },
  34002. ]
  34003. ))
  34004. characterMakers.push(() => makeCharacter(
  34005. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34006. {
  34007. front: {
  34008. height: math.unit(10 + 8/12, "feet"),
  34009. name: "Front",
  34010. image: {
  34011. source: "./media/characters/azalie-croixland/front.svg",
  34012. extra: 1972/1856,
  34013. bottom: 31/2003
  34014. }
  34015. },
  34016. },
  34017. [
  34018. {
  34019. name: "Original Height",
  34020. height: math.unit(5 + 4/12, "feet")
  34021. },
  34022. {
  34023. name: "Normal Height",
  34024. height: math.unit(10 + 8/12, "feet"),
  34025. default: true
  34026. },
  34027. ]
  34028. ))
  34029. characterMakers.push(() => makeCharacter(
  34030. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34031. {
  34032. side: {
  34033. height: math.unit(7 + 1/12, "feet"),
  34034. weight: math.unit(245, "lb"),
  34035. name: "Side",
  34036. image: {
  34037. source: "./media/characters/kavus-kazian/side.svg",
  34038. extra: 349/342,
  34039. bottom: 15/364
  34040. }
  34041. },
  34042. },
  34043. [
  34044. {
  34045. name: "Normal",
  34046. height: math.unit(7 + 1/12, "feet"),
  34047. default: true
  34048. },
  34049. ]
  34050. ))
  34051. characterMakers.push(() => makeCharacter(
  34052. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34053. {
  34054. normal: {
  34055. height: math.unit(5 + 11/12, "feet"),
  34056. name: "Normal",
  34057. image: {
  34058. source: "./media/characters/moonlight-rose/normal.svg",
  34059. extra: 1979/1835,
  34060. bottom: 14/1993
  34061. }
  34062. },
  34063. demon: {
  34064. height: math.unit(5, "km"),
  34065. name: "Demon",
  34066. image: {
  34067. source: "./media/characters/moonlight-rose/demon.svg",
  34068. extra: 986/916,
  34069. bottom: 28/1014
  34070. }
  34071. },
  34072. },
  34073. [
  34074. {
  34075. name: "\"Natural\" height",
  34076. height: math.unit(5 + 11/12, "feet")
  34077. },
  34078. {
  34079. name: "Comfortable Size",
  34080. height: math.unit(40, "meters")
  34081. },
  34082. {
  34083. name: "Common Size",
  34084. height: math.unit(50, "km"),
  34085. default: true
  34086. },
  34087. {
  34088. name: "Demonic",
  34089. height: math.unit(1.24415e+21, "meters")
  34090. },
  34091. ]
  34092. ))
  34093. characterMakers.push(() => makeCharacter(
  34094. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34095. {
  34096. front: {
  34097. height: math.unit(16, "feet"),
  34098. weight: math.unit(610, "kg"),
  34099. name: "Front",
  34100. image: {
  34101. source: "./media/characters/huckle/front.svg",
  34102. extra: 1731/1625,
  34103. bottom: 33/1764
  34104. }
  34105. },
  34106. back: {
  34107. height: math.unit(16, "feet"),
  34108. weight: math.unit(610, "kg"),
  34109. name: "Back",
  34110. image: {
  34111. source: "./media/characters/huckle/back.svg",
  34112. extra: 1738/1651,
  34113. bottom: 37/1775
  34114. }
  34115. },
  34116. laughing: {
  34117. height: math.unit(3.75, "feet"),
  34118. name: "Laughing",
  34119. image: {
  34120. source: "./media/characters/huckle/laughing.svg"
  34121. }
  34122. },
  34123. angry: {
  34124. height: math.unit(4.15, "feet"),
  34125. name: "Angry",
  34126. image: {
  34127. source: "./media/characters/huckle/angry.svg"
  34128. }
  34129. },
  34130. },
  34131. [
  34132. {
  34133. name: "Normal",
  34134. height: math.unit(16, "feet"),
  34135. default: true
  34136. },
  34137. {
  34138. name: "Mini Macro",
  34139. height: math.unit(463, "feet")
  34140. },
  34141. {
  34142. name: "Macro",
  34143. height: math.unit(1680, "meters")
  34144. },
  34145. {
  34146. name: "Mega Macro",
  34147. height: math.unit(175, "km")
  34148. },
  34149. {
  34150. name: "Terra Macro",
  34151. height: math.unit(32, "gigameters")
  34152. },
  34153. {
  34154. name: "Multiverse+",
  34155. height: math.unit(2.56e23, "yottameters")
  34156. },
  34157. ]
  34158. ))
  34159. characterMakers.push(() => makeCharacter(
  34160. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34161. {
  34162. front: {
  34163. height: math.unit(6 + 9/12, "feet"),
  34164. weight: math.unit(280, "lb"),
  34165. name: "Front",
  34166. image: {
  34167. source: "./media/characters/candy/front.svg",
  34168. extra: 234/217,
  34169. bottom: 11/245
  34170. }
  34171. },
  34172. },
  34173. [
  34174. {
  34175. name: "Really Small",
  34176. height: math.unit(0.1, "nm")
  34177. },
  34178. {
  34179. name: "Micro",
  34180. height: math.unit(2, "inches")
  34181. },
  34182. {
  34183. name: "Normal",
  34184. height: math.unit(6 + 9/12, "feet"),
  34185. default: true
  34186. },
  34187. {
  34188. name: "Small Macro",
  34189. height: math.unit(69, "feet")
  34190. },
  34191. {
  34192. name: "Macro",
  34193. height: math.unit(160, "feet")
  34194. },
  34195. {
  34196. name: "Megamacro",
  34197. height: math.unit(22000, "miles")
  34198. },
  34199. {
  34200. name: "Gigamacro",
  34201. height: math.unit(50000, "miles")
  34202. },
  34203. ]
  34204. ))
  34205. characterMakers.push(() => makeCharacter(
  34206. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34207. {
  34208. front: {
  34209. height: math.unit(4, "feet"),
  34210. weight: math.unit(90, "lb"),
  34211. name: "Front",
  34212. image: {
  34213. source: "./media/characters/joey-mcdonald/front.svg",
  34214. extra: 1059/852,
  34215. bottom: 33/1092
  34216. }
  34217. },
  34218. back: {
  34219. height: math.unit(4, "feet"),
  34220. weight: math.unit(90, "lb"),
  34221. name: "Back",
  34222. image: {
  34223. source: "./media/characters/joey-mcdonald/back.svg",
  34224. extra: 1077/879,
  34225. bottom: 5/1082
  34226. }
  34227. },
  34228. },
  34229. [
  34230. {
  34231. name: "Normal",
  34232. height: math.unit(4, "feet"),
  34233. default: true
  34234. },
  34235. ]
  34236. ))
  34237. characterMakers.push(() => makeCharacter(
  34238. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34239. {
  34240. front: {
  34241. height: math.unit(12 + 6/12, "feet"),
  34242. name: "Front",
  34243. image: {
  34244. source: "./media/characters/kass-lockheed/front.svg",
  34245. extra: 354/343,
  34246. bottom: 9/363
  34247. }
  34248. },
  34249. back: {
  34250. height: math.unit(12 + 6/12, "feet"),
  34251. name: "Back",
  34252. image: {
  34253. source: "./media/characters/kass-lockheed/back.svg",
  34254. extra: 364/352,
  34255. bottom: 3/367
  34256. }
  34257. },
  34258. dick: {
  34259. height: math.unit(3.12, "feet"),
  34260. name: "Dick",
  34261. image: {
  34262. source: "./media/characters/kass-lockheed/dick.svg"
  34263. }
  34264. },
  34265. head: {
  34266. height: math.unit(2.6, "feet"),
  34267. name: "Head",
  34268. image: {
  34269. source: "./media/characters/kass-lockheed/head.svg"
  34270. }
  34271. },
  34272. bleh: {
  34273. height: math.unit(2.85, "feet"),
  34274. name: "Bleh",
  34275. image: {
  34276. source: "./media/characters/kass-lockheed/bleh.svg"
  34277. }
  34278. },
  34279. smug: {
  34280. height: math.unit(2.85, "feet"),
  34281. name: "Smug",
  34282. image: {
  34283. source: "./media/characters/kass-lockheed/smug.svg"
  34284. }
  34285. },
  34286. },
  34287. [
  34288. {
  34289. name: "Normal",
  34290. height: math.unit(12 + 6/12, "feet"),
  34291. default: true
  34292. },
  34293. ]
  34294. ))
  34295. characterMakers.push(() => makeCharacter(
  34296. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34297. {
  34298. front: {
  34299. height: math.unit(6 + 2/12, "feet"),
  34300. name: "Front",
  34301. image: {
  34302. source: "./media/characters/taylor/front.svg",
  34303. extra: 639/495,
  34304. bottom: 12/651
  34305. }
  34306. },
  34307. },
  34308. [
  34309. {
  34310. name: "Normal",
  34311. height: math.unit(6 + 2/12, "feet"),
  34312. default: true
  34313. },
  34314. {
  34315. name: "Big",
  34316. height: math.unit(15, "feet")
  34317. },
  34318. {
  34319. name: "Lorg",
  34320. height: math.unit(80, "feet")
  34321. },
  34322. {
  34323. name: "Too Lorg",
  34324. height: math.unit(120, "feet")
  34325. },
  34326. ]
  34327. ))
  34328. characterMakers.push(() => makeCharacter(
  34329. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34330. {
  34331. front: {
  34332. height: math.unit(15, "feet"),
  34333. name: "Front",
  34334. image: {
  34335. source: "./media/characters/kaizer/front.svg",
  34336. extra: 1612/1436,
  34337. bottom: 43/1655
  34338. }
  34339. },
  34340. },
  34341. [
  34342. {
  34343. name: "Normal",
  34344. height: math.unit(15, "feet"),
  34345. default: true
  34346. },
  34347. ]
  34348. ))
  34349. characterMakers.push(() => makeCharacter(
  34350. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34351. {
  34352. front: {
  34353. height: math.unit(2, "feet"),
  34354. weight: math.unit(30, "lb"),
  34355. name: "Front",
  34356. image: {
  34357. source: "./media/characters/sandy/front.svg",
  34358. extra: 1439/1307,
  34359. bottom: 194/1633
  34360. }
  34361. },
  34362. },
  34363. [
  34364. {
  34365. name: "Normal",
  34366. height: math.unit(2, "feet"),
  34367. default: true
  34368. },
  34369. ]
  34370. ))
  34371. characterMakers.push(() => makeCharacter(
  34372. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34373. {
  34374. front: {
  34375. height: math.unit(3, "feet"),
  34376. name: "Front",
  34377. image: {
  34378. source: "./media/characters/mellvi/front.svg",
  34379. extra: 1831/1630,
  34380. bottom: 58/1889
  34381. }
  34382. },
  34383. },
  34384. [
  34385. {
  34386. name: "Normal",
  34387. height: math.unit(3, "feet"),
  34388. default: true
  34389. },
  34390. ]
  34391. ))
  34392. characterMakers.push(() => makeCharacter(
  34393. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34394. {
  34395. front: {
  34396. height: math.unit(5 + 11/12, "feet"),
  34397. weight: math.unit(200, "lb"),
  34398. name: "Front",
  34399. image: {
  34400. source: "./media/characters/shirou/front.svg",
  34401. extra: 2491/2383,
  34402. bottom: 189/2680
  34403. }
  34404. },
  34405. back: {
  34406. height: math.unit(5 + 11/12, "feet"),
  34407. weight: math.unit(200, "lb"),
  34408. name: "Back",
  34409. image: {
  34410. source: "./media/characters/shirou/back.svg",
  34411. extra: 2554/2450,
  34412. bottom: 76/2630
  34413. }
  34414. },
  34415. },
  34416. [
  34417. {
  34418. name: "Normal",
  34419. height: math.unit(5 + 11/12, "feet"),
  34420. default: true
  34421. },
  34422. ]
  34423. ))
  34424. characterMakers.push(() => makeCharacter(
  34425. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34426. {
  34427. front: {
  34428. height: math.unit(6 + 3/12, "feet"),
  34429. weight: math.unit(177, "lb"),
  34430. name: "Front",
  34431. image: {
  34432. source: "./media/characters/noryu/front.svg",
  34433. extra: 973/885,
  34434. bottom: 10/983
  34435. }
  34436. },
  34437. },
  34438. [
  34439. {
  34440. name: "Normal",
  34441. height: math.unit(6 + 3/12, "feet"),
  34442. default: true
  34443. },
  34444. ]
  34445. ))
  34446. characterMakers.push(() => makeCharacter(
  34447. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34448. {
  34449. front: {
  34450. height: math.unit(5 + 6/12, "feet"),
  34451. weight: math.unit(170, "lb"),
  34452. name: "Front",
  34453. image: {
  34454. source: "./media/characters/mevolas-rubenido/front.svg",
  34455. extra: 2109/1901,
  34456. bottom: 96/2205
  34457. }
  34458. },
  34459. },
  34460. [
  34461. {
  34462. name: "Normal",
  34463. height: math.unit(5 + 6/12, "feet"),
  34464. default: true
  34465. },
  34466. ]
  34467. ))
  34468. characterMakers.push(() => makeCharacter(
  34469. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34470. {
  34471. front: {
  34472. height: math.unit(100, "feet"),
  34473. name: "Front",
  34474. image: {
  34475. source: "./media/characters/dee/front.svg",
  34476. extra: 2153/2036,
  34477. bottom: 59/2212
  34478. }
  34479. },
  34480. back: {
  34481. height: math.unit(100, "feet"),
  34482. name: "Back",
  34483. image: {
  34484. source: "./media/characters/dee/back.svg",
  34485. extra: 2183/2058,
  34486. bottom: 75/2258
  34487. }
  34488. },
  34489. foot: {
  34490. height: math.unit(19.43, "feet"),
  34491. name: "Foot",
  34492. image: {
  34493. source: "./media/characters/dee/foot.svg"
  34494. }
  34495. },
  34496. hoof: {
  34497. height: math.unit(20.6, "feet"),
  34498. name: "Hoof",
  34499. image: {
  34500. source: "./media/characters/dee/hoof.svg"
  34501. }
  34502. },
  34503. },
  34504. [
  34505. {
  34506. name: "Macro",
  34507. height: math.unit(100, "feet"),
  34508. default: true
  34509. },
  34510. ]
  34511. ))
  34512. characterMakers.push(() => makeCharacter(
  34513. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34514. {
  34515. front: {
  34516. height: math.unit(5 + 6/12, "feet"),
  34517. name: "Front",
  34518. image: {
  34519. source: "./media/characters/teh/front.svg",
  34520. extra: 1002/847,
  34521. bottom: 62/1064
  34522. }
  34523. },
  34524. },
  34525. [
  34526. {
  34527. name: "Normal",
  34528. height: math.unit(5 + 6/12, "feet"),
  34529. default: true
  34530. },
  34531. ]
  34532. ))
  34533. characterMakers.push(() => makeCharacter(
  34534. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34535. {
  34536. side: {
  34537. height: math.unit(6 + 1/12, "feet"),
  34538. weight: math.unit(204, "lb"),
  34539. name: "Side",
  34540. image: {
  34541. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34542. extra: 974/775,
  34543. bottom: 169/1143
  34544. }
  34545. },
  34546. sitting: {
  34547. height: math.unit(6 + 2/12, "feet"),
  34548. weight: math.unit(204, "lb"),
  34549. name: "Sitting",
  34550. image: {
  34551. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34552. extra: 1175/964,
  34553. bottom: 378/1553
  34554. }
  34555. },
  34556. },
  34557. [
  34558. {
  34559. name: "Normal",
  34560. height: math.unit(6 + 1/12, "feet"),
  34561. default: true
  34562. },
  34563. ]
  34564. ))
  34565. characterMakers.push(() => makeCharacter(
  34566. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34567. {
  34568. front: {
  34569. height: math.unit(6, "inches"),
  34570. name: "Front",
  34571. image: {
  34572. source: "./media/characters/tululi/front.svg",
  34573. extra: 1997/1876,
  34574. bottom: 20/2017
  34575. }
  34576. },
  34577. },
  34578. [
  34579. {
  34580. name: "Normal",
  34581. height: math.unit(6, "inches"),
  34582. default: true
  34583. },
  34584. ]
  34585. ))
  34586. characterMakers.push(() => makeCharacter(
  34587. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34588. {
  34589. front: {
  34590. height: math.unit(4 + 1/12, "feet"),
  34591. name: "Front",
  34592. image: {
  34593. source: "./media/characters/star/front.svg",
  34594. extra: 1493/1189,
  34595. bottom: 48/1541
  34596. }
  34597. },
  34598. },
  34599. [
  34600. {
  34601. name: "Normal",
  34602. height: math.unit(4 + 1/12, "feet"),
  34603. default: true
  34604. },
  34605. ]
  34606. ))
  34607. characterMakers.push(() => makeCharacter(
  34608. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34609. {
  34610. front: {
  34611. height: math.unit(6 + 3/12, "feet"),
  34612. name: "Front",
  34613. image: {
  34614. source: "./media/characters/comet/front.svg",
  34615. extra: 1681/1462,
  34616. bottom: 26/1707
  34617. }
  34618. },
  34619. },
  34620. [
  34621. {
  34622. name: "Normal",
  34623. height: math.unit(6 + 3/12, "feet"),
  34624. default: true
  34625. },
  34626. ]
  34627. ))
  34628. characterMakers.push(() => makeCharacter(
  34629. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34630. {
  34631. front: {
  34632. height: math.unit(950, "feet"),
  34633. name: "Front",
  34634. image: {
  34635. source: "./media/characters/vortex/front.svg",
  34636. extra: 1497/1434,
  34637. bottom: 56/1553
  34638. }
  34639. },
  34640. maw: {
  34641. height: math.unit(285, "feet"),
  34642. name: "Maw",
  34643. image: {
  34644. source: "./media/characters/vortex/maw.svg"
  34645. }
  34646. },
  34647. },
  34648. [
  34649. {
  34650. name: "Macro",
  34651. height: math.unit(950, "feet"),
  34652. default: true
  34653. },
  34654. ]
  34655. ))
  34656. characterMakers.push(() => makeCharacter(
  34657. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34658. {
  34659. front: {
  34660. height: math.unit(600, "feet"),
  34661. weight: math.unit(0.02, "grams"),
  34662. name: "Front",
  34663. image: {
  34664. source: "./media/characters/doodle/front.svg",
  34665. extra: 1578/1413,
  34666. bottom: 37/1615
  34667. }
  34668. },
  34669. },
  34670. [
  34671. {
  34672. name: "Macro",
  34673. height: math.unit(600, "feet"),
  34674. default: true
  34675. },
  34676. ]
  34677. ))
  34678. characterMakers.push(() => makeCharacter(
  34679. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  34680. {
  34681. front: {
  34682. height: math.unit(6 + 6/12, "feet"),
  34683. name: "Front",
  34684. image: {
  34685. source: "./media/characters/jai/front.svg",
  34686. extra: 1645/1534,
  34687. bottom: 115/1760
  34688. }
  34689. },
  34690. },
  34691. [
  34692. {
  34693. name: "Normal",
  34694. height: math.unit(6 + 6/12, "feet"),
  34695. default: true
  34696. },
  34697. ]
  34698. ))
  34699. characterMakers.push(() => makeCharacter(
  34700. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  34701. {
  34702. front: {
  34703. height: math.unit(6 + 8/12, "feet"),
  34704. name: "Front",
  34705. image: {
  34706. source: "./media/characters/pixel/front.svg",
  34707. extra: 1900/1735,
  34708. bottom: 63/1963
  34709. }
  34710. },
  34711. },
  34712. [
  34713. {
  34714. name: "Normal",
  34715. height: math.unit(6 + 8/12, "feet"),
  34716. default: true
  34717. },
  34718. ]
  34719. ))
  34720. characterMakers.push(() => makeCharacter(
  34721. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  34722. {
  34723. front: {
  34724. height: math.unit(4 + 11/12, "feet"),
  34725. weight: math.unit(111, "lb"),
  34726. name: "Front",
  34727. image: {
  34728. source: "./media/characters/rhett/front.svg",
  34729. extra: 1682/1586,
  34730. bottom: 92/1774
  34731. }
  34732. },
  34733. },
  34734. [
  34735. {
  34736. name: "Mini",
  34737. height: math.unit(1 + 1/12, "feet")
  34738. },
  34739. {
  34740. name: "Normal",
  34741. height: math.unit(4 + 11/12, "feet"),
  34742. default: true
  34743. },
  34744. ]
  34745. ))
  34746. characterMakers.push(() => makeCharacter(
  34747. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  34748. {
  34749. front: {
  34750. height: math.unit(3 + 3/12, "feet"),
  34751. name: "Front",
  34752. image: {
  34753. source: "./media/characters/penny/front.svg",
  34754. extra: 1406/1311,
  34755. bottom: 26/1432
  34756. }
  34757. },
  34758. },
  34759. [
  34760. {
  34761. name: "Normal",
  34762. height: math.unit(3 + 3/12, "feet"),
  34763. default: true
  34764. },
  34765. ]
  34766. ))
  34767. characterMakers.push(() => makeCharacter(
  34768. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  34769. {
  34770. front: {
  34771. height: math.unit(4 + 11/12, "feet"),
  34772. name: "Front",
  34773. image: {
  34774. source: "./media/characters/monty/front.svg",
  34775. extra: 1479/1209,
  34776. bottom: 0/1479
  34777. }
  34778. },
  34779. },
  34780. [
  34781. {
  34782. name: "Normal",
  34783. height: math.unit(4 + 11/12, "feet"),
  34784. default: true
  34785. },
  34786. ]
  34787. ))
  34788. characterMakers.push(() => makeCharacter(
  34789. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  34790. {
  34791. front: {
  34792. height: math.unit(8 + 4/12, "feet"),
  34793. name: "Front",
  34794. image: {
  34795. source: "./media/characters/sterling/front.svg",
  34796. extra: 1420/1236,
  34797. bottom: 27/1447
  34798. }
  34799. },
  34800. },
  34801. [
  34802. {
  34803. name: "Normal",
  34804. height: math.unit(8 + 4/12, "feet"),
  34805. default: true
  34806. },
  34807. ]
  34808. ))
  34809. characterMakers.push(() => makeCharacter(
  34810. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  34811. {
  34812. front: {
  34813. height: math.unit(15, "feet"),
  34814. name: "Front",
  34815. image: {
  34816. source: "./media/characters/marble/front.svg",
  34817. extra: 973/937,
  34818. bottom: 32/1005
  34819. }
  34820. },
  34821. },
  34822. [
  34823. {
  34824. name: "Normal",
  34825. height: math.unit(15, "feet"),
  34826. default: true
  34827. },
  34828. ]
  34829. ))
  34830. characterMakers.push(() => makeCharacter(
  34831. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  34832. {
  34833. front: {
  34834. height: math.unit(3, "inches"),
  34835. name: "Front",
  34836. image: {
  34837. source: "./media/characters/powder/front.svg",
  34838. extra: 1504/1334,
  34839. bottom: 518/2022
  34840. }
  34841. },
  34842. },
  34843. [
  34844. {
  34845. name: "Normal",
  34846. height: math.unit(3, "inches"),
  34847. default: true
  34848. },
  34849. ]
  34850. ))
  34851. characterMakers.push(() => makeCharacter(
  34852. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  34853. {
  34854. front: {
  34855. height: math.unit(4 + 5/12, "feet"),
  34856. name: "Front",
  34857. image: {
  34858. source: "./media/characters/joey-raccoon/front.svg",
  34859. extra: 1273/1197,
  34860. bottom: 0/1273
  34861. }
  34862. },
  34863. },
  34864. [
  34865. {
  34866. name: "Normal",
  34867. height: math.unit(4 + 5/12, "feet"),
  34868. default: true
  34869. },
  34870. ]
  34871. ))
  34872. characterMakers.push(() => makeCharacter(
  34873. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  34874. {
  34875. front: {
  34876. height: math.unit(8 + 4/12, "feet"),
  34877. name: "Front",
  34878. image: {
  34879. source: "./media/characters/vick/front.svg",
  34880. extra: 2187/2118,
  34881. bottom: 47/2234
  34882. }
  34883. },
  34884. },
  34885. [
  34886. {
  34887. name: "Normal",
  34888. height: math.unit(8 + 4/12, "feet"),
  34889. default: true
  34890. },
  34891. ]
  34892. ))
  34893. characterMakers.push(() => makeCharacter(
  34894. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  34895. {
  34896. front: {
  34897. height: math.unit(5 + 5/12, "feet"),
  34898. name: "Front",
  34899. image: {
  34900. source: "./media/characters/mitsy/front.svg",
  34901. extra: 1842/1695,
  34902. bottom: 0/1842
  34903. }
  34904. },
  34905. },
  34906. [
  34907. {
  34908. name: "Normal",
  34909. height: math.unit(5 + 5/12, "feet"),
  34910. default: true
  34911. },
  34912. ]
  34913. ))
  34914. characterMakers.push(() => makeCharacter(
  34915. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  34916. {
  34917. front: {
  34918. height: math.unit(6 + 3/12, "feet"),
  34919. name: "Front",
  34920. image: {
  34921. source: "./media/characters/silvy/front.svg",
  34922. extra: 1995/1836,
  34923. bottom: 225/2220
  34924. }
  34925. },
  34926. },
  34927. [
  34928. {
  34929. name: "Normal",
  34930. height: math.unit(6 + 3/12, "feet"),
  34931. default: true
  34932. },
  34933. ]
  34934. ))
  34935. characterMakers.push(() => makeCharacter(
  34936. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  34937. {
  34938. front: {
  34939. height: math.unit(3 + 8/12, "feet"),
  34940. name: "Front",
  34941. image: {
  34942. source: "./media/characters/rodney/front.svg",
  34943. extra: 1956/1747,
  34944. bottom: 31/1987
  34945. }
  34946. },
  34947. frontDressed: {
  34948. height: math.unit(2.9, "feet"),
  34949. name: "Front (Dressed)",
  34950. image: {
  34951. source: "./media/characters/rodney/front-dressed.svg",
  34952. extra: 1382/1241,
  34953. bottom: 385/1767
  34954. }
  34955. },
  34956. },
  34957. [
  34958. {
  34959. name: "Normal",
  34960. height: math.unit(3 + 8/12, "feet"),
  34961. default: true
  34962. },
  34963. ]
  34964. ))
  34965. characterMakers.push(() => makeCharacter(
  34966. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  34967. {
  34968. front: {
  34969. height: math.unit(5 + 9/12, "feet"),
  34970. weight: math.unit(194, "lbs"),
  34971. name: "Front",
  34972. image: {
  34973. source: "./media/characters/zakail-sudekai/front.svg",
  34974. extra: 2696/2533,
  34975. bottom: 248/2944
  34976. }
  34977. },
  34978. maw: {
  34979. height: math.unit(1.35, "feet"),
  34980. name: "Maw",
  34981. image: {
  34982. source: "./media/characters/zakail-sudekai/maw.svg"
  34983. }
  34984. },
  34985. },
  34986. [
  34987. {
  34988. name: "Normal",
  34989. height: math.unit(5 + 9/12, "feet"),
  34990. default: true
  34991. },
  34992. ]
  34993. ))
  34994. characterMakers.push(() => makeCharacter(
  34995. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  34996. {
  34997. front: {
  34998. height: math.unit(8 + 4/12, "feet"),
  34999. weight: math.unit(1200, "lb"),
  35000. name: "Front",
  35001. image: {
  35002. source: "./media/characters/eleanor/front.svg",
  35003. extra: 1226/1192,
  35004. bottom: 52/1278
  35005. }
  35006. },
  35007. back: {
  35008. height: math.unit(8 + 4/12, "feet"),
  35009. weight: math.unit(1200, "lb"),
  35010. name: "Back",
  35011. image: {
  35012. source: "./media/characters/eleanor/back.svg",
  35013. extra: 1242/1184,
  35014. bottom: 60/1302
  35015. }
  35016. },
  35017. head: {
  35018. height: math.unit(2.62, "feet"),
  35019. name: "Head",
  35020. image: {
  35021. source: "./media/characters/eleanor/head.svg"
  35022. }
  35023. },
  35024. },
  35025. [
  35026. {
  35027. name: "Normal",
  35028. height: math.unit(8 + 4/12, "feet"),
  35029. default: true
  35030. },
  35031. ]
  35032. ))
  35033. characterMakers.push(() => makeCharacter(
  35034. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35035. {
  35036. front: {
  35037. height: math.unit(8 + 4/12, "feet"),
  35038. weight: math.unit(750, "lb"),
  35039. name: "Front",
  35040. image: {
  35041. source: "./media/characters/tanya/front.svg",
  35042. extra: 1749/1615,
  35043. bottom: 33/1782
  35044. }
  35045. },
  35046. },
  35047. [
  35048. {
  35049. name: "Normal",
  35050. height: math.unit(8 + 4/12, "feet"),
  35051. default: true
  35052. },
  35053. ]
  35054. ))
  35055. characterMakers.push(() => makeCharacter(
  35056. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35057. {
  35058. front: {
  35059. height: math.unit(5, "feet"),
  35060. weight: math.unit(225, "lb"),
  35061. name: "Front",
  35062. image: {
  35063. source: "./media/characters/cindy/front.svg",
  35064. extra: 1320/1250,
  35065. bottom: 42/1362
  35066. }
  35067. },
  35068. frontDressed: {
  35069. height: math.unit(5, "feet"),
  35070. weight: math.unit(225, "lb"),
  35071. name: "Front (Dressed)",
  35072. image: {
  35073. source: "./media/characters/cindy/front-dressed.svg",
  35074. extra: 1320/1250,
  35075. bottom: 42/1362
  35076. }
  35077. },
  35078. back: {
  35079. height: math.unit(5, "feet"),
  35080. weight: math.unit(225, "lb"),
  35081. name: "Back",
  35082. image: {
  35083. source: "./media/characters/cindy/back.svg",
  35084. extra: 1384/1346,
  35085. bottom: 14/1398
  35086. }
  35087. },
  35088. },
  35089. [
  35090. {
  35091. name: "Normal",
  35092. height: math.unit(5, "feet"),
  35093. default: true
  35094. },
  35095. ]
  35096. ))
  35097. characterMakers.push(() => makeCharacter(
  35098. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35099. {
  35100. front: {
  35101. height: math.unit(6 + 9/12, "feet"),
  35102. weight: math.unit(440, "lb"),
  35103. name: "Front",
  35104. image: {
  35105. source: "./media/characters/wilbur-owen/front.svg",
  35106. extra: 1575/1448,
  35107. bottom: 72/1647
  35108. }
  35109. },
  35110. back: {
  35111. height: math.unit(6 + 9/12, "feet"),
  35112. weight: math.unit(440, "lb"),
  35113. name: "Back",
  35114. image: {
  35115. source: "./media/characters/wilbur-owen/back.svg",
  35116. extra: 1578/1445,
  35117. bottom: 36/1614
  35118. }
  35119. },
  35120. },
  35121. [
  35122. {
  35123. name: "Normal",
  35124. height: math.unit(6 + 9/12, "feet"),
  35125. default: true
  35126. },
  35127. ]
  35128. ))
  35129. characterMakers.push(() => makeCharacter(
  35130. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35131. {
  35132. front: {
  35133. height: math.unit(6 + 5/12, "feet"),
  35134. weight: math.unit(650, "lb"),
  35135. name: "Front",
  35136. image: {
  35137. source: "./media/characters/keegan/front.svg",
  35138. extra: 2387/2198,
  35139. bottom: 33/2420
  35140. }
  35141. },
  35142. side: {
  35143. height: math.unit(6 + 5/12, "feet"),
  35144. weight: math.unit(650, "lb"),
  35145. name: "Side",
  35146. image: {
  35147. source: "./media/characters/keegan/side.svg",
  35148. extra: 2390/2202,
  35149. bottom: 47/2437
  35150. }
  35151. },
  35152. back: {
  35153. height: math.unit(6 + 5/12, "feet"),
  35154. weight: math.unit(650, "lb"),
  35155. name: "Back",
  35156. image: {
  35157. source: "./media/characters/keegan/back.svg",
  35158. extra: 2418/2268,
  35159. bottom: 15/2433
  35160. }
  35161. },
  35162. frontSfw: {
  35163. height: math.unit(6 + 5/12, "feet"),
  35164. weight: math.unit(650, "lb"),
  35165. name: "Front (SFW)",
  35166. image: {
  35167. source: "./media/characters/keegan/front-sfw.svg",
  35168. extra: 2387/2198,
  35169. bottom: 33/2420
  35170. }
  35171. },
  35172. beans: {
  35173. height: math.unit(1.85, "feet"),
  35174. name: "Beans",
  35175. image: {
  35176. source: "./media/characters/keegan/beans.svg"
  35177. }
  35178. },
  35179. },
  35180. [
  35181. {
  35182. name: "Normal",
  35183. height: math.unit(6 + 5/12, "feet"),
  35184. default: true
  35185. },
  35186. ]
  35187. ))
  35188. characterMakers.push(() => makeCharacter(
  35189. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35190. {
  35191. front: {
  35192. height: math.unit(9, "feet"),
  35193. name: "Front",
  35194. image: {
  35195. source: "./media/characters/colton/front.svg",
  35196. extra: 1589/1326,
  35197. bottom: 139/1728
  35198. }
  35199. },
  35200. },
  35201. [
  35202. {
  35203. name: "Normal",
  35204. height: math.unit(9, "feet"),
  35205. default: true
  35206. },
  35207. ]
  35208. ))
  35209. characterMakers.push(() => makeCharacter(
  35210. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35211. {
  35212. front: {
  35213. height: math.unit(2 + 9/12, "feet"),
  35214. name: "Front",
  35215. image: {
  35216. source: "./media/characters/bora/front.svg",
  35217. extra: 1265/1250,
  35218. bottom: 24/1289
  35219. }
  35220. },
  35221. },
  35222. [
  35223. {
  35224. name: "Normal",
  35225. height: math.unit(2 + 9/12, "feet"),
  35226. default: true
  35227. },
  35228. ]
  35229. ))
  35230. characterMakers.push(() => makeCharacter(
  35231. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35232. {
  35233. front: {
  35234. height: math.unit(8, "feet"),
  35235. name: "Front",
  35236. image: {
  35237. source: "./media/characters/myu-myu/front.svg",
  35238. extra: 1949/1857,
  35239. bottom: 90/2039
  35240. }
  35241. },
  35242. },
  35243. [
  35244. {
  35245. name: "Normal",
  35246. height: math.unit(8, "feet"),
  35247. default: true
  35248. },
  35249. {
  35250. name: "Big",
  35251. height: math.unit(15, "feet")
  35252. },
  35253. {
  35254. name: "BIG",
  35255. height: math.unit(25, "feet")
  35256. },
  35257. ]
  35258. ))
  35259. characterMakers.push(() => makeCharacter(
  35260. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35261. {
  35262. side: {
  35263. height: math.unit(7 + 5/12, "feet"),
  35264. weight: math.unit(2800, "lb"),
  35265. name: "Side",
  35266. image: {
  35267. source: "./media/characters/haloren/side.svg",
  35268. extra: 1793/409,
  35269. bottom: 59/1852
  35270. }
  35271. },
  35272. frontPaw: {
  35273. height: math.unit(2.36, "feet"),
  35274. name: "Front paw",
  35275. image: {
  35276. source: "./media/characters/haloren/front-paw.svg"
  35277. }
  35278. },
  35279. hindPaw: {
  35280. height: math.unit(3.18, "feet"),
  35281. name: "Hind paw",
  35282. image: {
  35283. source: "./media/characters/haloren/hind-paw.svg"
  35284. }
  35285. },
  35286. maw: {
  35287. height: math.unit(5.05, "feet"),
  35288. name: "Maw",
  35289. image: {
  35290. source: "./media/characters/haloren/maw.svg"
  35291. }
  35292. },
  35293. dick: {
  35294. height: math.unit(2.90, "feet"),
  35295. name: "Dick",
  35296. image: {
  35297. source: "./media/characters/haloren/dick.svg"
  35298. }
  35299. },
  35300. },
  35301. [
  35302. {
  35303. name: "Normal",
  35304. height: math.unit(7 + 5/12, "feet"),
  35305. default: true
  35306. },
  35307. {
  35308. name: "Enhanced",
  35309. height: math.unit(14 + 3/12, "feet")
  35310. },
  35311. ]
  35312. ))
  35313. characterMakers.push(() => makeCharacter(
  35314. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35315. {
  35316. front: {
  35317. height: math.unit(171, "cm"),
  35318. name: "Front",
  35319. image: {
  35320. source: "./media/characters/kimmy/front.svg",
  35321. extra: 1491/1435,
  35322. bottom: 53/1544
  35323. }
  35324. },
  35325. },
  35326. [
  35327. {
  35328. name: "Small",
  35329. height: math.unit(9, "cm")
  35330. },
  35331. {
  35332. name: "Normal",
  35333. height: math.unit(171, "cm"),
  35334. default: true
  35335. },
  35336. ]
  35337. ))
  35338. characterMakers.push(() => makeCharacter(
  35339. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35340. {
  35341. front: {
  35342. height: math.unit(8, "feet"),
  35343. weight: math.unit(300, "lb"),
  35344. name: "Front",
  35345. image: {
  35346. source: "./media/characters/galeboomer/front.svg",
  35347. extra: 4651/4415,
  35348. bottom: 162/4813
  35349. }
  35350. },
  35351. back: {
  35352. height: math.unit(8, "feet"),
  35353. weight: math.unit(300, "lb"),
  35354. name: "Back",
  35355. image: {
  35356. source: "./media/characters/galeboomer/back.svg",
  35357. extra: 4544/4314,
  35358. bottom: 16/4560
  35359. }
  35360. },
  35361. frontAlt: {
  35362. height: math.unit(8, "feet"),
  35363. weight: math.unit(300, "lb"),
  35364. name: "Front (Alt)",
  35365. image: {
  35366. source: "./media/characters/galeboomer/front-alt.svg",
  35367. extra: 4458/4228,
  35368. bottom: 68/4526
  35369. }
  35370. },
  35371. maw: {
  35372. height: math.unit(1.2, "feet"),
  35373. name: "Maw",
  35374. image: {
  35375. source: "./media/characters/galeboomer/maw.svg"
  35376. }
  35377. },
  35378. },
  35379. [
  35380. {
  35381. name: "Normal",
  35382. height: math.unit(8, "feet"),
  35383. default: true
  35384. },
  35385. ]
  35386. ))
  35387. characterMakers.push(() => makeCharacter(
  35388. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35389. {
  35390. front: {
  35391. height: math.unit(5 + 9/12, "feet"),
  35392. weight: math.unit(120, "lb"),
  35393. name: "Front",
  35394. image: {
  35395. source: "./media/characters/chyr/front.svg",
  35396. extra: 1323/1254,
  35397. bottom: 63/1386
  35398. }
  35399. },
  35400. back: {
  35401. height: math.unit(5 + 9/12, "feet"),
  35402. weight: math.unit(120, "lb"),
  35403. name: "Back",
  35404. image: {
  35405. source: "./media/characters/chyr/back.svg",
  35406. extra: 1323/1252,
  35407. bottom: 48/1371
  35408. }
  35409. },
  35410. },
  35411. [
  35412. {
  35413. name: "Normal",
  35414. height: math.unit(5 + 9/12, "feet"),
  35415. default: true
  35416. },
  35417. ]
  35418. ))
  35419. characterMakers.push(() => makeCharacter(
  35420. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35421. {
  35422. front: {
  35423. height: math.unit(7, "feet"),
  35424. weight: math.unit(310, "lb"),
  35425. name: "Front",
  35426. image: {
  35427. source: "./media/characters/solarus/front.svg",
  35428. extra: 2415/2021,
  35429. bottom: 103/2518
  35430. }
  35431. },
  35432. back: {
  35433. height: math.unit(7, "feet"),
  35434. weight: math.unit(310, "lb"),
  35435. name: "Back",
  35436. image: {
  35437. source: "./media/characters/solarus/back.svg",
  35438. extra: 2463/2089,
  35439. bottom: 79/2542
  35440. }
  35441. },
  35442. },
  35443. [
  35444. {
  35445. name: "Normal",
  35446. height: math.unit(7, "feet"),
  35447. default: true
  35448. },
  35449. ]
  35450. ))
  35451. characterMakers.push(() => makeCharacter(
  35452. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35453. {
  35454. front: {
  35455. height: math.unit(16, "feet"),
  35456. name: "Front",
  35457. image: {
  35458. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35459. extra: 1844/1780,
  35460. bottom: 58/1902
  35461. }
  35462. },
  35463. },
  35464. [
  35465. {
  35466. name: "Normal",
  35467. height: math.unit(16, "feet"),
  35468. default: true
  35469. },
  35470. ]
  35471. ))
  35472. characterMakers.push(() => makeCharacter(
  35473. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35474. {
  35475. front: {
  35476. height: math.unit(11 + 6/12, "feet"),
  35477. weight: math.unit(1366, "lb"),
  35478. name: "Front",
  35479. image: {
  35480. source: "./media/characters/lexor/front.svg",
  35481. extra: 1560/1481,
  35482. bottom: 211/1771
  35483. }
  35484. },
  35485. back: {
  35486. height: math.unit(11 + 6/12, "feet"),
  35487. weight: math.unit(1366, "lb"),
  35488. name: "Back",
  35489. image: {
  35490. source: "./media/characters/lexor/back.svg",
  35491. extra: 1614/1533,
  35492. bottom: 76/1690
  35493. }
  35494. },
  35495. maw: {
  35496. height: math.unit(3, "feet"),
  35497. name: "Maw",
  35498. image: {
  35499. source: "./media/characters/lexor/maw.svg"
  35500. }
  35501. },
  35502. dick: {
  35503. height: math.unit(2.59, "feet"),
  35504. name: "Dick",
  35505. image: {
  35506. source: "./media/characters/lexor/dick.svg"
  35507. }
  35508. },
  35509. },
  35510. [
  35511. {
  35512. name: "Normal",
  35513. height: math.unit(11 + 6/12, "feet"),
  35514. default: true
  35515. },
  35516. ]
  35517. ))
  35518. characterMakers.push(() => makeCharacter(
  35519. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35520. {
  35521. front: {
  35522. height: math.unit(5 + 8/12, "feet"),
  35523. name: "Front",
  35524. image: {
  35525. source: "./media/characters/magnum/front.svg",
  35526. extra: 942/855,
  35527. bottom: 26/968
  35528. }
  35529. },
  35530. },
  35531. [
  35532. {
  35533. name: "Normal",
  35534. height: math.unit(5 + 8/12, "feet"),
  35535. default: true
  35536. },
  35537. ]
  35538. ))
  35539. //characters
  35540. function makeCharacters() {
  35541. const results = [];
  35542. characterMakers.forEach(character => {
  35543. results.push(character());
  35544. });
  35545. return results;
  35546. }