less copy protection, more size visualization
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 

36854 строки
927 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. "pooltoy": {
  1580. name: "Pooltoy",
  1581. parents: ["construct"]
  1582. },
  1583. "demi": {
  1584. name: "Demi",
  1585. parents: ["human"]
  1586. },
  1587. }
  1588. //species
  1589. function getSpeciesInfo(speciesList) {
  1590. let result = new Set();
  1591. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1592. result.add(entry)
  1593. });
  1594. return Array.from(result);
  1595. };
  1596. function getSpeciesInfoHelper(species) {
  1597. if (!speciesData[species]) {
  1598. console.warn(species + " doesn't exist");
  1599. return [];
  1600. }
  1601. if (speciesData[species].parents) {
  1602. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1603. } else {
  1604. return [species];
  1605. }
  1606. }
  1607. characterMakers.push(() => makeCharacter(
  1608. {
  1609. name: "Fen",
  1610. species: ["crux"],
  1611. description: {
  1612. title: "Bio",
  1613. text: "Very furry. Sheds on everything."
  1614. },
  1615. tags: [
  1616. "anthro",
  1617. "goo"
  1618. ]
  1619. },
  1620. {
  1621. back: {
  1622. height: math.unit(2.2428, "meter"),
  1623. weight: math.unit(124.738, "kg"),
  1624. name: "Back",
  1625. image: {
  1626. source: "./media/characters/fen/back.svg",
  1627. extra: 2024 / 1867,
  1628. bottom: 13 / 2037
  1629. },
  1630. info: {
  1631. description: {
  1632. mode: "append",
  1633. text: "\n\nHe is not currently looking at you."
  1634. }
  1635. }
  1636. },
  1637. full: {
  1638. height: math.unit(1.34, "meter"),
  1639. weight: math.unit(225, "kg"),
  1640. name: "Full",
  1641. image: {
  1642. source: "./media/characters/fen/full.svg"
  1643. },
  1644. info: {
  1645. description: {
  1646. mode: "append",
  1647. text: "\n\nMunch."
  1648. }
  1649. }
  1650. },
  1651. kneeling: {
  1652. height: math.unit(5.4, "feet"),
  1653. weight: math.unit(124.738, "kg"),
  1654. name: "Kneeling",
  1655. image: {
  1656. source: "./media/characters/fen/kneeling.svg",
  1657. extra: 563 / 507
  1658. }
  1659. },
  1660. goo: {
  1661. height: math.unit(2.8, "feet"),
  1662. weight: math.unit(125, "kg"),
  1663. capacity: math.unit(1, "people"),
  1664. name: "Goo",
  1665. image: {
  1666. source: "./media/characters/fen/goo.svg",
  1667. bottom: 116 / 613
  1668. }
  1669. },
  1670. lounging: {
  1671. height: math.unit(6.5, "feet"),
  1672. weight: math.unit(125, "kg"),
  1673. name: "Lounging",
  1674. image: {
  1675. source: "./media/characters/fen/lounging.svg"
  1676. }
  1677. },
  1678. },
  1679. [
  1680. {
  1681. name: "Normal",
  1682. height: math.unit(2.2428, "meter")
  1683. },
  1684. {
  1685. name: "Big",
  1686. height: math.unit(12, "feet")
  1687. },
  1688. {
  1689. name: "Minimacro",
  1690. height: math.unit(40, "feet"),
  1691. default: true,
  1692. info: {
  1693. description: {
  1694. mode: "append",
  1695. text: "\n\nTOO DAMN BIG"
  1696. }
  1697. }
  1698. },
  1699. {
  1700. name: "Macro",
  1701. height: math.unit(100, "feet"),
  1702. info: {
  1703. description: {
  1704. mode: "append",
  1705. text: "\n\nTOO DAMN BIG"
  1706. }
  1707. }
  1708. },
  1709. {
  1710. name: "Macro+",
  1711. height: math.unit(300, "feet")
  1712. },
  1713. {
  1714. name: "Megamacro",
  1715. height: math.unit(2, "miles")
  1716. }
  1717. ]
  1718. ))
  1719. characterMakers.push(() => makeCharacter(
  1720. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1721. {
  1722. front: {
  1723. height: math.unit(183, "cm"),
  1724. weight: math.unit(80, "kg"),
  1725. name: "Front",
  1726. image: {
  1727. source: "./media/characters/sofia-fluttertail/front.svg",
  1728. bottom: 0.01,
  1729. extra: 2154 / 2081
  1730. }
  1731. },
  1732. frontAlt: {
  1733. height: math.unit(183, "cm"),
  1734. weight: math.unit(80, "kg"),
  1735. name: "Front (alt)",
  1736. image: {
  1737. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1738. }
  1739. },
  1740. back: {
  1741. height: math.unit(183, "cm"),
  1742. weight: math.unit(80, "kg"),
  1743. name: "Back",
  1744. image: {
  1745. source: "./media/characters/sofia-fluttertail/back.svg"
  1746. }
  1747. },
  1748. kneeling: {
  1749. height: math.unit(125, "cm"),
  1750. weight: math.unit(80, "kg"),
  1751. name: "Kneeling",
  1752. image: {
  1753. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1754. extra: 1033 / 977,
  1755. bottom: 23.7 / 1057
  1756. }
  1757. },
  1758. maw: {
  1759. height: math.unit(183 / 5, "cm"),
  1760. name: "Maw",
  1761. image: {
  1762. source: "./media/characters/sofia-fluttertail/maw.svg"
  1763. }
  1764. },
  1765. mawcloseup: {
  1766. height: math.unit(183 / 5 * 0.41, "cm"),
  1767. name: "Maw (Closeup)",
  1768. image: {
  1769. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1770. }
  1771. },
  1772. paws: {
  1773. height: math.unit(1.17, "feet"),
  1774. name: "Paws",
  1775. image: {
  1776. source: "./media/characters/sofia-fluttertail/paws.svg",
  1777. extra: 851 / 851,
  1778. bottom: 17 / 868
  1779. }
  1780. },
  1781. },
  1782. [
  1783. {
  1784. name: "Normal",
  1785. height: math.unit(1.83, "meter")
  1786. },
  1787. {
  1788. name: "Size Thief",
  1789. height: math.unit(18, "feet")
  1790. },
  1791. {
  1792. name: "50 Foot Collie",
  1793. height: math.unit(50, "feet")
  1794. },
  1795. {
  1796. name: "Macro",
  1797. height: math.unit(96, "feet"),
  1798. default: true
  1799. },
  1800. {
  1801. name: "Megamerger",
  1802. height: math.unit(650, "feet")
  1803. },
  1804. ]
  1805. ))
  1806. characterMakers.push(() => makeCharacter(
  1807. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1808. {
  1809. front: {
  1810. height: math.unit(7, "feet"),
  1811. weight: math.unit(100, "kg"),
  1812. name: "Front",
  1813. image: {
  1814. source: "./media/characters/march/front.svg",
  1815. extra: 1,
  1816. bottom: 0.015
  1817. }
  1818. },
  1819. foot: {
  1820. height: math.unit(0.9, "feet"),
  1821. name: "Foot",
  1822. image: {
  1823. source: "./media/characters/march/foot.svg"
  1824. }
  1825. },
  1826. },
  1827. [
  1828. {
  1829. name: "Normal",
  1830. height: math.unit(7.9, "feet")
  1831. },
  1832. {
  1833. name: "Macro",
  1834. height: math.unit(220, "meters")
  1835. },
  1836. {
  1837. name: "Megamacro",
  1838. height: math.unit(2.98, "km"),
  1839. default: true
  1840. },
  1841. {
  1842. name: "Gigamacro",
  1843. height: math.unit(15963, "km")
  1844. },
  1845. {
  1846. name: "Teramacro",
  1847. height: math.unit(2980000000, "km")
  1848. },
  1849. {
  1850. name: "Examacro",
  1851. height: math.unit(250, "parsecs")
  1852. },
  1853. ]
  1854. ))
  1855. characterMakers.push(() => makeCharacter(
  1856. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1857. {
  1858. front: {
  1859. height: math.unit(6, "feet"),
  1860. weight: math.unit(60, "kg"),
  1861. name: "Front",
  1862. image: {
  1863. source: "./media/characters/noir/front.svg",
  1864. extra: 1,
  1865. bottom: 0.032
  1866. }
  1867. },
  1868. },
  1869. [
  1870. {
  1871. name: "Normal",
  1872. height: math.unit(6.6, "feet")
  1873. },
  1874. {
  1875. name: "Macro",
  1876. height: math.unit(500, "feet")
  1877. },
  1878. {
  1879. name: "Megamacro",
  1880. height: math.unit(2.5, "km"),
  1881. default: true
  1882. },
  1883. {
  1884. name: "Gigamacro",
  1885. height: math.unit(22500, "km")
  1886. },
  1887. {
  1888. name: "Teramacro",
  1889. height: math.unit(2500000000, "km")
  1890. },
  1891. {
  1892. name: "Examacro",
  1893. height: math.unit(200, "parsecs")
  1894. },
  1895. ]
  1896. ))
  1897. characterMakers.push(() => makeCharacter(
  1898. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1899. {
  1900. front: {
  1901. height: math.unit(7, "feet"),
  1902. weight: math.unit(100, "kg"),
  1903. name: "Front",
  1904. image: {
  1905. source: "./media/characters/okuri/front.svg",
  1906. extra: 1,
  1907. bottom: 0.037
  1908. }
  1909. },
  1910. back: {
  1911. height: math.unit(7, "feet"),
  1912. weight: math.unit(100, "kg"),
  1913. name: "Back",
  1914. image: {
  1915. source: "./media/characters/okuri/back.svg",
  1916. extra: 1,
  1917. bottom: 0.007
  1918. }
  1919. },
  1920. },
  1921. [
  1922. {
  1923. name: "Megamacro",
  1924. height: math.unit(100, "miles"),
  1925. default: true
  1926. },
  1927. ]
  1928. ))
  1929. characterMakers.push(() => makeCharacter(
  1930. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1931. {
  1932. front: {
  1933. height: math.unit(7, "feet"),
  1934. weight: math.unit(100, "kg"),
  1935. name: "Front",
  1936. image: {
  1937. source: "./media/characters/manny/front.svg",
  1938. extra: 1,
  1939. bottom: 0.06
  1940. }
  1941. },
  1942. back: {
  1943. height: math.unit(7, "feet"),
  1944. weight: math.unit(100, "kg"),
  1945. name: "Back",
  1946. image: {
  1947. source: "./media/characters/manny/back.svg",
  1948. extra: 1,
  1949. bottom: 0.014
  1950. }
  1951. },
  1952. },
  1953. [
  1954. {
  1955. name: "Normal",
  1956. height: math.unit(7, "feet"),
  1957. },
  1958. {
  1959. name: "Macro",
  1960. height: math.unit(78, "feet"),
  1961. default: true
  1962. },
  1963. {
  1964. name: "Macro+",
  1965. height: math.unit(300, "meters")
  1966. },
  1967. {
  1968. name: "Macro++",
  1969. height: math.unit(2400, "meters")
  1970. },
  1971. {
  1972. name: "Megamacro",
  1973. height: math.unit(5167, "meters")
  1974. },
  1975. {
  1976. name: "Gigamacro",
  1977. height: math.unit(41769, "miles")
  1978. },
  1979. ]
  1980. ))
  1981. characterMakers.push(() => makeCharacter(
  1982. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1983. {
  1984. front: {
  1985. height: math.unit(7, "feet"),
  1986. weight: math.unit(100, "kg"),
  1987. name: "Front",
  1988. image: {
  1989. source: "./media/characters/adake/front-1.svg"
  1990. }
  1991. },
  1992. frontAlt: {
  1993. height: math.unit(7, "feet"),
  1994. weight: math.unit(100, "kg"),
  1995. name: "Front (Alt)",
  1996. image: {
  1997. source: "./media/characters/adake/front-2.svg",
  1998. extra: 1,
  1999. bottom: 0.01
  2000. }
  2001. },
  2002. back: {
  2003. height: math.unit(7, "feet"),
  2004. weight: math.unit(100, "kg"),
  2005. name: "Back",
  2006. image: {
  2007. source: "./media/characters/adake/back.svg",
  2008. }
  2009. },
  2010. kneel: {
  2011. height: math.unit(5.385, "feet"),
  2012. weight: math.unit(100, "kg"),
  2013. name: "Kneeling",
  2014. image: {
  2015. source: "./media/characters/adake/kneel.svg",
  2016. bottom: 0.052
  2017. }
  2018. },
  2019. },
  2020. [
  2021. {
  2022. name: "Normal",
  2023. height: math.unit(7, "feet"),
  2024. },
  2025. {
  2026. name: "Macro",
  2027. height: math.unit(78, "feet"),
  2028. default: true
  2029. },
  2030. {
  2031. name: "Macro+",
  2032. height: math.unit(300, "meters")
  2033. },
  2034. {
  2035. name: "Macro++",
  2036. height: math.unit(2400, "meters")
  2037. },
  2038. {
  2039. name: "Megamacro",
  2040. height: math.unit(5167, "meters")
  2041. },
  2042. {
  2043. name: "Gigamacro",
  2044. height: math.unit(41769, "miles")
  2045. },
  2046. ]
  2047. ))
  2048. characterMakers.push(() => makeCharacter(
  2049. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2050. {
  2051. front: {
  2052. height: math.unit(1.65, "meters"),
  2053. weight: math.unit(50, "kg"),
  2054. name: "Front",
  2055. image: {
  2056. source: "./media/characters/elijah/front.svg",
  2057. extra: 858 / 830,
  2058. bottom: 95.5 / 953.8559
  2059. }
  2060. },
  2061. back: {
  2062. height: math.unit(1.65, "meters"),
  2063. weight: math.unit(50, "kg"),
  2064. name: "Back",
  2065. image: {
  2066. source: "./media/characters/elijah/back.svg",
  2067. extra: 895 / 850,
  2068. bottom: 5.3 / 897.956
  2069. }
  2070. },
  2071. frontNsfw: {
  2072. height: math.unit(1.65, "meters"),
  2073. weight: math.unit(50, "kg"),
  2074. name: "Front (NSFW)",
  2075. image: {
  2076. source: "./media/characters/elijah/front-nsfw.svg",
  2077. extra: 858 / 830,
  2078. bottom: 95.5 / 953.8559
  2079. }
  2080. },
  2081. backNsfw: {
  2082. height: math.unit(1.65, "meters"),
  2083. weight: math.unit(50, "kg"),
  2084. name: "Back (NSFW)",
  2085. image: {
  2086. source: "./media/characters/elijah/back-nsfw.svg",
  2087. extra: 895 / 850,
  2088. bottom: 5.3 / 897.956
  2089. }
  2090. },
  2091. dick: {
  2092. height: math.unit(1, "feet"),
  2093. name: "Dick",
  2094. image: {
  2095. source: "./media/characters/elijah/dick.svg"
  2096. }
  2097. },
  2098. beakOpen: {
  2099. height: math.unit(1.25, "feet"),
  2100. name: "Beak (Open)",
  2101. image: {
  2102. source: "./media/characters/elijah/beak-open.svg"
  2103. }
  2104. },
  2105. beakShut: {
  2106. height: math.unit(1.25, "feet"),
  2107. name: "Beak (Shut)",
  2108. image: {
  2109. source: "./media/characters/elijah/beak-shut.svg"
  2110. }
  2111. },
  2112. footFlexing: {
  2113. height: math.unit(1.61, "feet"),
  2114. name: "Foot (Flexing)",
  2115. image: {
  2116. source: "./media/characters/elijah/foot-flexing.svg"
  2117. }
  2118. },
  2119. footStepping: {
  2120. height: math.unit(1.44, "feet"),
  2121. name: "Foot (Stepping)",
  2122. image: {
  2123. source: "./media/characters/elijah/foot-stepping.svg"
  2124. }
  2125. },
  2126. plantigradeLeg: {
  2127. height: math.unit(2.34, "feet"),
  2128. name: "Plantigrade Leg",
  2129. image: {
  2130. source: "./media/characters/elijah/plantigrade-leg.svg"
  2131. }
  2132. },
  2133. plantigradeFootLeft: {
  2134. height: math.unit(0.9, "feet"),
  2135. name: "Plantigrade Foot (Left)",
  2136. image: {
  2137. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2138. }
  2139. },
  2140. plantigradeFootRight: {
  2141. height: math.unit(0.9, "feet"),
  2142. name: "Plantigrade Foot (Right)",
  2143. image: {
  2144. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2145. }
  2146. },
  2147. },
  2148. [
  2149. {
  2150. name: "Normal",
  2151. height: math.unit(1.65, "meters")
  2152. },
  2153. {
  2154. name: "Macro",
  2155. height: math.unit(55, "meters"),
  2156. default: true
  2157. },
  2158. {
  2159. name: "Macro+",
  2160. height: math.unit(105, "meters")
  2161. },
  2162. ]
  2163. ))
  2164. characterMakers.push(() => makeCharacter(
  2165. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2166. {
  2167. front: {
  2168. height: math.unit(11, "feet"),
  2169. weight: math.unit(320, "kg"),
  2170. name: "Front",
  2171. image: {
  2172. source: "./media/characters/rai/front.svg",
  2173. extra: 1802/1696,
  2174. bottom: 68/1870
  2175. }
  2176. },
  2177. frontDressed: {
  2178. height: math.unit(11, "feet"),
  2179. weight: math.unit(320, "kg"),
  2180. name: "Front (Dressed)",
  2181. image: {
  2182. source: "./media/characters/rai/front-dressed.svg",
  2183. extra: 1802/1696,
  2184. bottom: 68/1870
  2185. }
  2186. },
  2187. side: {
  2188. height: math.unit(11, "feet"),
  2189. weight: math.unit(320, "kg"),
  2190. name: "Side",
  2191. image: {
  2192. source: "./media/characters/rai/side.svg",
  2193. extra: 1789/1710,
  2194. bottom: 115/1904
  2195. }
  2196. },
  2197. back: {
  2198. height: math.unit(11, "feet"),
  2199. weight: math.unit(320, "kg"),
  2200. name: "Back",
  2201. image: {
  2202. source: "./media/characters/rai/back.svg",
  2203. extra: 1770/1707,
  2204. bottom: 28/1798
  2205. }
  2206. },
  2207. feral: {
  2208. height: math.unit(11, "feet"),
  2209. weight: math.unit(640, "kg"),
  2210. name: "Feral",
  2211. image: {
  2212. source: "./media/characters/rai/feral.svg",
  2213. extra: 1035/642,
  2214. bottom: 86/1121
  2215. }
  2216. },
  2217. dragon: {
  2218. height: math.unit(23, "feet"),
  2219. weight: math.unit(50000, "lb"),
  2220. name: "Dragon",
  2221. image: {
  2222. source: "./media/characters/rai/dragon.svg",
  2223. extra: 2498 / 2030,
  2224. bottom: 85.2 / 2584
  2225. }
  2226. },
  2227. maw: {
  2228. height: math.unit(6 / 3.81416, "feet"),
  2229. name: "Maw",
  2230. image: {
  2231. source: "./media/characters/rai/maw.svg"
  2232. }
  2233. },
  2234. },
  2235. [
  2236. {
  2237. name: "Normal",
  2238. height: math.unit(11, "feet")
  2239. },
  2240. {
  2241. name: "Macro",
  2242. height: math.unit(302, "feet"),
  2243. default: true
  2244. },
  2245. ]
  2246. ))
  2247. characterMakers.push(() => makeCharacter(
  2248. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2249. {
  2250. frontDressed: {
  2251. height: math.unit(216, "feet"),
  2252. weight: math.unit(7000000, "lb"),
  2253. name: "Front (Dressed)",
  2254. image: {
  2255. source: "./media/characters/jazzy/front-dressed.svg",
  2256. extra: 2738 / 2651,
  2257. bottom: 41.8 / 2786
  2258. }
  2259. },
  2260. backDressed: {
  2261. height: math.unit(216, "feet"),
  2262. weight: math.unit(7000000, "lb"),
  2263. name: "Back (Dressed)",
  2264. image: {
  2265. source: "./media/characters/jazzy/back-dressed.svg",
  2266. extra: 2775 / 2673,
  2267. bottom: 36.8 / 2817
  2268. }
  2269. },
  2270. front: {
  2271. height: math.unit(216, "feet"),
  2272. weight: math.unit(7000000, "lb"),
  2273. name: "Front",
  2274. image: {
  2275. source: "./media/characters/jazzy/front.svg",
  2276. extra: 2738 / 2651,
  2277. bottom: 41.8 / 2786
  2278. }
  2279. },
  2280. back: {
  2281. height: math.unit(216, "feet"),
  2282. weight: math.unit(7000000, "lb"),
  2283. name: "Back",
  2284. image: {
  2285. source: "./media/characters/jazzy/back.svg",
  2286. extra: 2775 / 2673,
  2287. bottom: 36.8 / 2817
  2288. }
  2289. },
  2290. maw: {
  2291. height: math.unit(20, "feet"),
  2292. name: "Maw",
  2293. image: {
  2294. source: "./media/characters/jazzy/maw.svg"
  2295. }
  2296. },
  2297. paws: {
  2298. height: math.unit(27.5, "feet"),
  2299. name: "Paws",
  2300. image: {
  2301. source: "./media/characters/jazzy/paws.svg"
  2302. }
  2303. },
  2304. eye: {
  2305. height: math.unit(4.4, "feet"),
  2306. name: "Eye",
  2307. image: {
  2308. source: "./media/characters/jazzy/eye.svg"
  2309. }
  2310. },
  2311. droneOffense: {
  2312. height: math.unit(9.5, "inches"),
  2313. name: "Drone (Offense)",
  2314. image: {
  2315. source: "./media/characters/jazzy/drone-offense.svg"
  2316. }
  2317. },
  2318. droneRecon: {
  2319. height: math.unit(9.5, "inches"),
  2320. name: "Drone (Recon)",
  2321. image: {
  2322. source: "./media/characters/jazzy/drone-recon.svg"
  2323. }
  2324. },
  2325. droneDefense: {
  2326. height: math.unit(9.5, "inches"),
  2327. name: "Drone (Defense)",
  2328. image: {
  2329. source: "./media/characters/jazzy/drone-defense.svg"
  2330. }
  2331. },
  2332. },
  2333. [
  2334. {
  2335. name: "Macro",
  2336. height: math.unit(216, "feet"),
  2337. default: true
  2338. },
  2339. ]
  2340. ))
  2341. characterMakers.push(() => makeCharacter(
  2342. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2343. {
  2344. front: {
  2345. height: math.unit(9 + 6/12, "feet"),
  2346. weight: math.unit(700, "lb"),
  2347. name: "Front",
  2348. image: {
  2349. source: "./media/characters/flamm/front.svg",
  2350. extra: 1751/1632,
  2351. bottom: 46/1797
  2352. }
  2353. },
  2354. buff: {
  2355. height: math.unit(9 + 6/12, "feet"),
  2356. weight: math.unit(950, "lb"),
  2357. name: "Buff",
  2358. image: {
  2359. source: "./media/characters/flamm/buff.svg",
  2360. extra: 3018/2874,
  2361. bottom: 221/3239
  2362. }
  2363. },
  2364. },
  2365. [
  2366. {
  2367. name: "Normal",
  2368. height: math.unit(9.5, "feet")
  2369. },
  2370. {
  2371. name: "Macro",
  2372. height: math.unit(200, "feet"),
  2373. default: true
  2374. },
  2375. ]
  2376. ))
  2377. characterMakers.push(() => makeCharacter(
  2378. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2379. {
  2380. front: {
  2381. height: math.unit(5 + 3/12, "feet"),
  2382. weight: math.unit(60, "kg"),
  2383. name: "Front",
  2384. image: {
  2385. source: "./media/characters/zephiro/front.svg",
  2386. extra: 2309 / 2162,
  2387. bottom: 0.069
  2388. }
  2389. },
  2390. side: {
  2391. height: math.unit(5 + 3/12, "feet"),
  2392. weight: math.unit(60, "kg"),
  2393. name: "Side",
  2394. image: {
  2395. source: "./media/characters/zephiro/side.svg",
  2396. extra: 2403 / 2279,
  2397. bottom: 0.015
  2398. }
  2399. },
  2400. back: {
  2401. height: math.unit(5 + 3/12, "feet"),
  2402. weight: math.unit(60, "kg"),
  2403. name: "Back",
  2404. image: {
  2405. source: "./media/characters/zephiro/back.svg",
  2406. extra: 2373 / 2244,
  2407. bottom: 0.013
  2408. }
  2409. },
  2410. hand: {
  2411. height: math.unit(0.68, "feet"),
  2412. name: "Hand",
  2413. image: {
  2414. source: "./media/characters/zephiro/hand.svg"
  2415. }
  2416. },
  2417. paw: {
  2418. height: math.unit(1, "feet"),
  2419. name: "Paw",
  2420. image: {
  2421. source: "./media/characters/zephiro/paw.svg"
  2422. }
  2423. },
  2424. beans: {
  2425. height: math.unit(0.93, "feet"),
  2426. name: "Beans",
  2427. image: {
  2428. source: "./media/characters/zephiro/beans.svg"
  2429. }
  2430. },
  2431. },
  2432. [
  2433. {
  2434. name: "Micro",
  2435. height: math.unit(3, "inches")
  2436. },
  2437. {
  2438. name: "Normal",
  2439. height: math.unit(5 + 3 / 12, "feet"),
  2440. default: true
  2441. },
  2442. {
  2443. name: "Macro",
  2444. height: math.unit(118, "feet")
  2445. },
  2446. ]
  2447. ))
  2448. characterMakers.push(() => makeCharacter(
  2449. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2450. {
  2451. front: {
  2452. height: math.unit(5, "feet"),
  2453. weight: math.unit(90, "kg"),
  2454. name: "Front",
  2455. image: {
  2456. source: "./media/characters/fory/front.svg",
  2457. extra: 2862 / 2674,
  2458. bottom: 180 / 3043.8
  2459. }
  2460. },
  2461. back: {
  2462. height: math.unit(5, "feet"),
  2463. weight: math.unit(90, "kg"),
  2464. name: "Back",
  2465. image: {
  2466. source: "./media/characters/fory/back.svg",
  2467. extra: 2962 / 2791,
  2468. bottom: 106 / 3071.8
  2469. }
  2470. },
  2471. foot: {
  2472. height: math.unit(2.14, "feet"),
  2473. name: "Foot",
  2474. image: {
  2475. source: "./media/characters/fory/foot.svg"
  2476. }
  2477. },
  2478. },
  2479. [
  2480. {
  2481. name: "Normal",
  2482. height: math.unit(5, "feet")
  2483. },
  2484. {
  2485. name: "Macro",
  2486. height: math.unit(50, "feet"),
  2487. default: true
  2488. },
  2489. {
  2490. name: "Megamacro",
  2491. height: math.unit(10, "miles")
  2492. },
  2493. {
  2494. name: "Gigamacro",
  2495. height: math.unit(5, "earths")
  2496. },
  2497. ]
  2498. ))
  2499. characterMakers.push(() => makeCharacter(
  2500. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2501. {
  2502. front: {
  2503. height: math.unit(7, "feet"),
  2504. weight: math.unit(90, "kg"),
  2505. name: "Front",
  2506. image: {
  2507. source: "./media/characters/kurrikage/front.svg",
  2508. extra: 1,
  2509. bottom: 0.035
  2510. }
  2511. },
  2512. back: {
  2513. height: math.unit(7, "feet"),
  2514. weight: math.unit(90, "lb"),
  2515. name: "Back",
  2516. image: {
  2517. source: "./media/characters/kurrikage/back.svg"
  2518. }
  2519. },
  2520. paw: {
  2521. height: math.unit(1.5, "feet"),
  2522. name: "Paw",
  2523. image: {
  2524. source: "./media/characters/kurrikage/paw.svg"
  2525. }
  2526. },
  2527. staff: {
  2528. height: math.unit(6.7, "feet"),
  2529. name: "Staff",
  2530. image: {
  2531. source: "./media/characters/kurrikage/staff.svg"
  2532. }
  2533. },
  2534. peek: {
  2535. height: math.unit(1.05, "feet"),
  2536. name: "Peeking",
  2537. image: {
  2538. source: "./media/characters/kurrikage/peek.svg",
  2539. bottom: 0.08
  2540. }
  2541. },
  2542. },
  2543. [
  2544. {
  2545. name: "Normal",
  2546. height: math.unit(12, "feet"),
  2547. default: true
  2548. },
  2549. {
  2550. name: "Big",
  2551. height: math.unit(20, "feet")
  2552. },
  2553. {
  2554. name: "Macro",
  2555. height: math.unit(500, "feet")
  2556. },
  2557. {
  2558. name: "Megamacro",
  2559. height: math.unit(20, "miles")
  2560. },
  2561. ]
  2562. ))
  2563. characterMakers.push(() => makeCharacter(
  2564. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2565. {
  2566. front: {
  2567. height: math.unit(6, "feet"),
  2568. weight: math.unit(75, "kg"),
  2569. name: "Front",
  2570. image: {
  2571. source: "./media/characters/shingo/front.svg",
  2572. extra: 706/681,
  2573. bottom: 11/717
  2574. }
  2575. },
  2576. frontAlt: {
  2577. height: math.unit(6, "feet"),
  2578. weight: math.unit(75, "kg"),
  2579. name: "Front (Alt)",
  2580. image: {
  2581. source: "./media/characters/shingo/front-alt.svg",
  2582. extra: 3511 / 3338,
  2583. bottom: 0.005
  2584. }
  2585. },
  2586. paw: {
  2587. height: math.unit(1, "feet"),
  2588. name: "Paw",
  2589. image: {
  2590. source: "./media/characters/shingo/paw.svg"
  2591. }
  2592. },
  2593. },
  2594. [
  2595. {
  2596. name: "Micro",
  2597. height: math.unit(4, "inches")
  2598. },
  2599. {
  2600. name: "Normal",
  2601. height: math.unit(6, "feet"),
  2602. default: true
  2603. },
  2604. {
  2605. name: "Macro",
  2606. height: math.unit(108, "feet")
  2607. },
  2608. {
  2609. name: "Macro+",
  2610. height: math.unit(1500, "feet")
  2611. },
  2612. ]
  2613. ))
  2614. characterMakers.push(() => makeCharacter(
  2615. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2616. {
  2617. side: {
  2618. height: math.unit(6, "feet"),
  2619. weight: math.unit(75, "kg"),
  2620. name: "Side",
  2621. image: {
  2622. source: "./media/characters/aigey/side.svg"
  2623. }
  2624. },
  2625. },
  2626. [
  2627. {
  2628. name: "Macro",
  2629. height: math.unit(200, "feet"),
  2630. default: true
  2631. },
  2632. {
  2633. name: "Megamacro",
  2634. height: math.unit(100, "miles")
  2635. },
  2636. ]
  2637. )
  2638. )
  2639. characterMakers.push(() => makeCharacter(
  2640. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2641. {
  2642. front: {
  2643. height: math.unit(5 + 5 / 12, "feet"),
  2644. weight: math.unit(75, "kg"),
  2645. name: "Front",
  2646. image: {
  2647. source: "./media/characters/natasha/front.svg",
  2648. extra: 859 / 824,
  2649. bottom: 23 / 879.6
  2650. }
  2651. },
  2652. frontNsfw: {
  2653. height: math.unit(5 + 5 / 12, "feet"),
  2654. weight: math.unit(75, "kg"),
  2655. name: "Front (NSFW)",
  2656. image: {
  2657. source: "./media/characters/natasha/front-nsfw.svg",
  2658. extra: 859 / 824,
  2659. bottom: 23 / 879.6
  2660. }
  2661. },
  2662. frontErect: {
  2663. height: math.unit(5 + 5 / 12, "feet"),
  2664. weight: math.unit(75, "kg"),
  2665. name: "Front (Erect)",
  2666. image: {
  2667. source: "./media/characters/natasha/front-erect.svg",
  2668. extra: 859 / 824,
  2669. bottom: 23 / 879.6
  2670. }
  2671. },
  2672. back: {
  2673. height: math.unit(5 + 5 / 12, "feet"),
  2674. weight: math.unit(75, "kg"),
  2675. name: "Back",
  2676. image: {
  2677. source: "./media/characters/natasha/back.svg",
  2678. extra: 887.9 / 852.6,
  2679. bottom: 9.7 / 896.4
  2680. }
  2681. },
  2682. backAlt: {
  2683. height: math.unit(5 + 5 / 12, "feet"),
  2684. weight: math.unit(75, "kg"),
  2685. name: "Back (Alt)",
  2686. image: {
  2687. source: "./media/characters/natasha/back-alt.svg",
  2688. extra: 1236.7 / 1192,
  2689. bottom: 22.3 / 1258.2
  2690. }
  2691. },
  2692. dick: {
  2693. height: math.unit(1.772, "feet"),
  2694. name: "Dick",
  2695. image: {
  2696. source: "./media/characters/natasha/dick.svg"
  2697. }
  2698. },
  2699. paw: {
  2700. height: math.unit(0.250, "meters"),
  2701. name: "Paw",
  2702. image: {
  2703. source: "./media/characters/natasha/paw.svg"
  2704. }
  2705. },
  2706. },
  2707. [
  2708. {
  2709. name: "Normal",
  2710. height: math.unit(5 + 5 / 12, "feet")
  2711. },
  2712. {
  2713. name: "Large",
  2714. height: math.unit(12, "feet")
  2715. },
  2716. {
  2717. name: "Macro",
  2718. height: math.unit(100, "feet"),
  2719. default: true
  2720. },
  2721. {
  2722. name: "Macro+",
  2723. height: math.unit(260, "feet")
  2724. },
  2725. {
  2726. name: "Macro++",
  2727. height: math.unit(1, "mile")
  2728. },
  2729. ]
  2730. ))
  2731. characterMakers.push(() => makeCharacter(
  2732. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2733. {
  2734. front: {
  2735. height: math.unit(6, "feet"),
  2736. weight: math.unit(75, "kg"),
  2737. name: "Front",
  2738. image: {
  2739. source: "./media/characters/malik/front.svg"
  2740. }
  2741. },
  2742. side: {
  2743. height: math.unit(6, "feet"),
  2744. weight: math.unit(75, "kg"),
  2745. name: "Side",
  2746. image: {
  2747. source: "./media/characters/malik/side.svg",
  2748. extra: 1.1539
  2749. }
  2750. },
  2751. back: {
  2752. height: math.unit(6, "feet"),
  2753. weight: math.unit(75, "kg"),
  2754. name: "Back",
  2755. image: {
  2756. source: "./media/characters/malik/back.svg"
  2757. }
  2758. },
  2759. },
  2760. [
  2761. {
  2762. name: "Macro",
  2763. height: math.unit(156, "feet"),
  2764. default: true
  2765. },
  2766. {
  2767. name: "Macro+",
  2768. height: math.unit(1188, "feet")
  2769. },
  2770. ]
  2771. ))
  2772. characterMakers.push(() => makeCharacter(
  2773. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2774. {
  2775. front: {
  2776. height: math.unit(6, "feet"),
  2777. weight: math.unit(75, "kg"),
  2778. name: "Front",
  2779. image: {
  2780. source: "./media/characters/sefer/front.svg",
  2781. extra: 848 / 659,
  2782. bottom: 28.3 / 876.442
  2783. }
  2784. },
  2785. back: {
  2786. height: math.unit(6, "feet"),
  2787. weight: math.unit(75, "kg"),
  2788. name: "Back",
  2789. image: {
  2790. source: "./media/characters/sefer/back.svg",
  2791. extra: 864 / 695,
  2792. bottom: 10 / 871
  2793. }
  2794. },
  2795. frontDressed: {
  2796. height: math.unit(6, "feet"),
  2797. weight: math.unit(75, "kg"),
  2798. name: "Front (Dressed)",
  2799. image: {
  2800. source: "./media/characters/sefer/front-dressed.svg",
  2801. extra: 839 / 653,
  2802. bottom: 37.6 / 878
  2803. }
  2804. },
  2805. },
  2806. [
  2807. {
  2808. name: "Normal",
  2809. height: math.unit(6, "feet"),
  2810. default: true
  2811. },
  2812. ]
  2813. ))
  2814. characterMakers.push(() => makeCharacter(
  2815. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2816. {
  2817. body: {
  2818. height: math.unit(2.2428, "meter"),
  2819. weight: math.unit(124.738, "kg"),
  2820. name: "Body",
  2821. image: {
  2822. extra: 1225 / 1050,
  2823. source: "./media/characters/north/front.svg"
  2824. }
  2825. }
  2826. },
  2827. [
  2828. {
  2829. name: "Micro",
  2830. height: math.unit(4, "inches")
  2831. },
  2832. {
  2833. name: "Macro",
  2834. height: math.unit(63, "meters")
  2835. },
  2836. {
  2837. name: "Megamacro",
  2838. height: math.unit(101, "miles"),
  2839. default: true
  2840. }
  2841. ]
  2842. ))
  2843. characterMakers.push(() => makeCharacter(
  2844. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2845. {
  2846. angled: {
  2847. height: math.unit(4, "meter"),
  2848. weight: math.unit(150, "kg"),
  2849. name: "Angled",
  2850. image: {
  2851. source: "./media/characters/talan/angled-sfw.svg",
  2852. bottom: 29 / 3734
  2853. }
  2854. },
  2855. angledNsfw: {
  2856. height: math.unit(4, "meter"),
  2857. weight: math.unit(150, "kg"),
  2858. name: "Angled (NSFW)",
  2859. image: {
  2860. source: "./media/characters/talan/angled-nsfw.svg",
  2861. bottom: 29 / 3734
  2862. }
  2863. },
  2864. frontNsfw: {
  2865. height: math.unit(4, "meter"),
  2866. weight: math.unit(150, "kg"),
  2867. name: "Front (NSFW)",
  2868. image: {
  2869. source: "./media/characters/talan/front-nsfw.svg",
  2870. bottom: 29 / 3734
  2871. }
  2872. },
  2873. sideNsfw: {
  2874. height: math.unit(4, "meter"),
  2875. weight: math.unit(150, "kg"),
  2876. name: "Side (NSFW)",
  2877. image: {
  2878. source: "./media/characters/talan/side-nsfw.svg",
  2879. bottom: 29 / 3734
  2880. }
  2881. },
  2882. back: {
  2883. height: math.unit(4, "meter"),
  2884. weight: math.unit(150, "kg"),
  2885. name: "Back",
  2886. image: {
  2887. source: "./media/characters/talan/back.svg"
  2888. }
  2889. },
  2890. dickBottom: {
  2891. height: math.unit(0.621, "meter"),
  2892. name: "Dick (Bottom)",
  2893. image: {
  2894. source: "./media/characters/talan/dick-bottom.svg"
  2895. }
  2896. },
  2897. dickTop: {
  2898. height: math.unit(0.621, "meter"),
  2899. name: "Dick (Top)",
  2900. image: {
  2901. source: "./media/characters/talan/dick-top.svg"
  2902. }
  2903. },
  2904. dickSide: {
  2905. height: math.unit(0.305, "meter"),
  2906. name: "Dick (Side)",
  2907. image: {
  2908. source: "./media/characters/talan/dick-side.svg"
  2909. }
  2910. },
  2911. dickFront: {
  2912. height: math.unit(0.305, "meter"),
  2913. name: "Dick (Front)",
  2914. image: {
  2915. source: "./media/characters/talan/dick-front.svg"
  2916. }
  2917. },
  2918. },
  2919. [
  2920. {
  2921. name: "Normal",
  2922. height: math.unit(4, "meters")
  2923. },
  2924. {
  2925. name: "Macro",
  2926. height: math.unit(100, "meters")
  2927. },
  2928. {
  2929. name: "Megamacro",
  2930. height: math.unit(2, "miles"),
  2931. default: true
  2932. },
  2933. {
  2934. name: "Gigamacro",
  2935. height: math.unit(5000, "miles")
  2936. },
  2937. {
  2938. name: "Teramacro",
  2939. height: math.unit(100, "parsecs")
  2940. }
  2941. ]
  2942. ))
  2943. characterMakers.push(() => makeCharacter(
  2944. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2945. {
  2946. front: {
  2947. height: math.unit(2, "meter"),
  2948. weight: math.unit(90, "kg"),
  2949. name: "Front",
  2950. image: {
  2951. source: "./media/characters/gael'rathus/front.svg"
  2952. }
  2953. },
  2954. frontAlt: {
  2955. height: math.unit(2, "meter"),
  2956. weight: math.unit(90, "kg"),
  2957. name: "Front (alt)",
  2958. image: {
  2959. source: "./media/characters/gael'rathus/front-alt.svg"
  2960. }
  2961. },
  2962. frontAlt2: {
  2963. height: math.unit(2, "meter"),
  2964. weight: math.unit(90, "kg"),
  2965. name: "Front (alt 2)",
  2966. image: {
  2967. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2968. }
  2969. }
  2970. },
  2971. [
  2972. {
  2973. name: "Normal",
  2974. height: math.unit(9, "feet"),
  2975. default: true
  2976. },
  2977. {
  2978. name: "Large",
  2979. height: math.unit(25, "feet")
  2980. },
  2981. {
  2982. name: "Macro",
  2983. height: math.unit(0.25, "miles")
  2984. },
  2985. {
  2986. name: "Megamacro",
  2987. height: math.unit(10, "miles")
  2988. }
  2989. ]
  2990. ))
  2991. characterMakers.push(() => makeCharacter(
  2992. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2993. {
  2994. side: {
  2995. height: math.unit(2, "meter"),
  2996. weight: math.unit(140, "kg"),
  2997. name: "Side",
  2998. image: {
  2999. source: "./media/characters/sosha/side.svg",
  3000. bottom: 0.042
  3001. }
  3002. },
  3003. },
  3004. [
  3005. {
  3006. name: "Normal",
  3007. height: math.unit(12, "feet"),
  3008. default: true
  3009. }
  3010. ]
  3011. ))
  3012. characterMakers.push(() => makeCharacter(
  3013. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3014. {
  3015. side: {
  3016. height: math.unit(5 + 5 / 12, "feet"),
  3017. weight: math.unit(170, "kg"),
  3018. name: "Side",
  3019. image: {
  3020. source: "./media/characters/runnola/side.svg",
  3021. extra: 741 / 448,
  3022. bottom: 0.05
  3023. }
  3024. },
  3025. },
  3026. [
  3027. {
  3028. name: "Small",
  3029. height: math.unit(3, "feet")
  3030. },
  3031. {
  3032. name: "Normal",
  3033. height: math.unit(5 + 5 / 12, "feet"),
  3034. default: true
  3035. },
  3036. {
  3037. name: "Big",
  3038. height: math.unit(10, "feet")
  3039. },
  3040. ]
  3041. ))
  3042. characterMakers.push(() => makeCharacter(
  3043. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3044. {
  3045. front: {
  3046. height: math.unit(2, "meter"),
  3047. weight: math.unit(50, "kg"),
  3048. name: "Front",
  3049. image: {
  3050. source: "./media/characters/kurribird/front.svg",
  3051. bottom: 0.015
  3052. }
  3053. },
  3054. frontAlt: {
  3055. height: math.unit(1.5, "meter"),
  3056. weight: math.unit(50, "kg"),
  3057. name: "Front (Alt)",
  3058. image: {
  3059. source: "./media/characters/kurribird/front-alt.svg",
  3060. extra: 1.45
  3061. }
  3062. },
  3063. },
  3064. [
  3065. {
  3066. name: "Normal",
  3067. height: math.unit(7, "feet")
  3068. },
  3069. {
  3070. name: "Big",
  3071. height: math.unit(12, "feet"),
  3072. default: true
  3073. },
  3074. {
  3075. name: "Macro",
  3076. height: math.unit(1500, "feet")
  3077. },
  3078. {
  3079. name: "Megamacro",
  3080. height: math.unit(2, "miles")
  3081. }
  3082. ]
  3083. ))
  3084. characterMakers.push(() => makeCharacter(
  3085. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3086. {
  3087. front: {
  3088. height: math.unit(2, "meter"),
  3089. weight: math.unit(80, "kg"),
  3090. name: "Front",
  3091. image: {
  3092. source: "./media/characters/elbial/front.svg",
  3093. extra: 1643 / 1556,
  3094. bottom: 60.2 / 1696
  3095. }
  3096. },
  3097. side: {
  3098. height: math.unit(2, "meter"),
  3099. weight: math.unit(80, "kg"),
  3100. name: "Side",
  3101. image: {
  3102. source: "./media/characters/elbial/side.svg",
  3103. extra: 1630 / 1565,
  3104. bottom: 71.5 / 1697
  3105. }
  3106. },
  3107. back: {
  3108. height: math.unit(2, "meter"),
  3109. weight: math.unit(80, "kg"),
  3110. name: "Back",
  3111. image: {
  3112. source: "./media/characters/elbial/back.svg",
  3113. extra: 1668 / 1595,
  3114. bottom: 5.6 / 1672
  3115. }
  3116. },
  3117. frontDressed: {
  3118. height: math.unit(2, "meter"),
  3119. weight: math.unit(80, "kg"),
  3120. name: "Front (Dressed)",
  3121. image: {
  3122. source: "./media/characters/elbial/front-dressed.svg",
  3123. extra: 1653 / 1584,
  3124. bottom: 57 / 1708
  3125. }
  3126. },
  3127. genitals: {
  3128. height: math.unit(2 / 3.367, "meter"),
  3129. name: "Genitals",
  3130. image: {
  3131. source: "./media/characters/elbial/genitals.svg"
  3132. }
  3133. },
  3134. },
  3135. [
  3136. {
  3137. name: "Large",
  3138. height: math.unit(100, "feet")
  3139. },
  3140. {
  3141. name: "Macro",
  3142. height: math.unit(500, "feet"),
  3143. default: true
  3144. },
  3145. {
  3146. name: "Megamacro",
  3147. height: math.unit(10, "miles")
  3148. },
  3149. {
  3150. name: "Gigamacro",
  3151. height: math.unit(25000, "miles")
  3152. },
  3153. {
  3154. name: "Full-Size",
  3155. height: math.unit(8000000, "gigaparsecs")
  3156. }
  3157. ]
  3158. ))
  3159. characterMakers.push(() => makeCharacter(
  3160. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3161. {
  3162. front: {
  3163. height: math.unit(2, "meter"),
  3164. weight: math.unit(60, "kg"),
  3165. name: "Front",
  3166. image: {
  3167. source: "./media/characters/noah/front.svg"
  3168. }
  3169. },
  3170. talons: {
  3171. height: math.unit(0.315, "meter"),
  3172. name: "Talons",
  3173. image: {
  3174. source: "./media/characters/noah/talons.svg"
  3175. }
  3176. }
  3177. },
  3178. [
  3179. {
  3180. name: "Large",
  3181. height: math.unit(50, "feet")
  3182. },
  3183. {
  3184. name: "Macro",
  3185. height: math.unit(750, "feet"),
  3186. default: true
  3187. },
  3188. {
  3189. name: "Megamacro",
  3190. height: math.unit(50, "miles")
  3191. },
  3192. {
  3193. name: "Gigamacro",
  3194. height: math.unit(100000, "miles")
  3195. },
  3196. {
  3197. name: "Full-Size",
  3198. height: math.unit(3000000000, "miles")
  3199. }
  3200. ]
  3201. ))
  3202. characterMakers.push(() => makeCharacter(
  3203. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3204. {
  3205. front: {
  3206. height: math.unit(2, "meter"),
  3207. weight: math.unit(80, "kg"),
  3208. name: "Front",
  3209. image: {
  3210. source: "./media/characters/natalya/front.svg"
  3211. }
  3212. },
  3213. back: {
  3214. height: math.unit(2, "meter"),
  3215. weight: math.unit(80, "kg"),
  3216. name: "Back",
  3217. image: {
  3218. source: "./media/characters/natalya/back.svg"
  3219. }
  3220. }
  3221. },
  3222. [
  3223. {
  3224. name: "Normal",
  3225. height: math.unit(150, "feet"),
  3226. default: true
  3227. },
  3228. {
  3229. name: "Megamacro",
  3230. height: math.unit(5, "miles")
  3231. },
  3232. {
  3233. name: "Full-Size",
  3234. height: math.unit(600, "kiloparsecs")
  3235. }
  3236. ]
  3237. ))
  3238. characterMakers.push(() => makeCharacter(
  3239. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3240. {
  3241. front: {
  3242. height: math.unit(2, "meter"),
  3243. weight: math.unit(50, "kg"),
  3244. name: "Front",
  3245. image: {
  3246. source: "./media/characters/erestrebah/front.svg",
  3247. extra: 208 / 193,
  3248. bottom: 0.055
  3249. }
  3250. },
  3251. back: {
  3252. height: math.unit(2, "meter"),
  3253. weight: math.unit(50, "kg"),
  3254. name: "Back",
  3255. image: {
  3256. source: "./media/characters/erestrebah/back.svg",
  3257. extra: 1.3
  3258. }
  3259. }
  3260. },
  3261. [
  3262. {
  3263. name: "Normal",
  3264. height: math.unit(10, "feet")
  3265. },
  3266. {
  3267. name: "Large",
  3268. height: math.unit(50, "feet"),
  3269. default: true
  3270. },
  3271. {
  3272. name: "Macro",
  3273. height: math.unit(300, "feet")
  3274. },
  3275. {
  3276. name: "Macro+",
  3277. height: math.unit(750, "feet")
  3278. },
  3279. {
  3280. name: "Megamacro",
  3281. height: math.unit(3, "miles")
  3282. }
  3283. ]
  3284. ))
  3285. characterMakers.push(() => makeCharacter(
  3286. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3287. {
  3288. front: {
  3289. height: math.unit(2, "meter"),
  3290. weight: math.unit(80, "kg"),
  3291. name: "Front",
  3292. image: {
  3293. source: "./media/characters/jennifer/front.svg",
  3294. bottom: 0.11,
  3295. extra: 1.16
  3296. }
  3297. },
  3298. frontAlt: {
  3299. height: math.unit(2, "meter"),
  3300. weight: math.unit(80, "kg"),
  3301. name: "Front (Alt)",
  3302. image: {
  3303. source: "./media/characters/jennifer/front-alt.svg"
  3304. }
  3305. }
  3306. },
  3307. [
  3308. {
  3309. name: "Canon Height",
  3310. height: math.unit(120, "feet"),
  3311. default: true
  3312. },
  3313. {
  3314. name: "Macro+",
  3315. height: math.unit(300, "feet")
  3316. },
  3317. {
  3318. name: "Megamacro",
  3319. height: math.unit(20000, "feet")
  3320. }
  3321. ]
  3322. ))
  3323. characterMakers.push(() => makeCharacter(
  3324. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3325. {
  3326. front: {
  3327. height: math.unit(2, "meter"),
  3328. weight: math.unit(50, "kg"),
  3329. name: "Front",
  3330. image: {
  3331. source: "./media/characters/kalista/front.svg",
  3332. extra: 1947 / 1700,
  3333. bottom: 76.6 / 1412.98
  3334. }
  3335. },
  3336. back: {
  3337. height: math.unit(2, "meter"),
  3338. weight: math.unit(50, "kg"),
  3339. name: "Back",
  3340. image: {
  3341. source: "./media/characters/kalista/back.svg",
  3342. extra: 1366 / 1156,
  3343. bottom: 33.9 / 1362.78
  3344. }
  3345. }
  3346. },
  3347. [
  3348. {
  3349. name: "Uncomfortably Small",
  3350. height: math.unit(10, "feet")
  3351. },
  3352. {
  3353. name: "Small",
  3354. height: math.unit(30, "feet")
  3355. },
  3356. {
  3357. name: "Macro",
  3358. height: math.unit(100, "feet"),
  3359. default: true
  3360. },
  3361. {
  3362. name: "Macro+",
  3363. height: math.unit(2000, "feet")
  3364. },
  3365. {
  3366. name: "True Form",
  3367. height: math.unit(8924, "miles")
  3368. }
  3369. ]
  3370. ))
  3371. characterMakers.push(() => makeCharacter(
  3372. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3373. {
  3374. front: {
  3375. height: math.unit(2, "meter"),
  3376. weight: math.unit(120, "kg"),
  3377. name: "Front",
  3378. image: {
  3379. source: "./media/characters/ggv/front.svg"
  3380. }
  3381. },
  3382. side: {
  3383. height: math.unit(2, "meter"),
  3384. weight: math.unit(120, "kg"),
  3385. name: "Side",
  3386. image: {
  3387. source: "./media/characters/ggv/side.svg"
  3388. }
  3389. }
  3390. },
  3391. [
  3392. {
  3393. name: "Extremely Puny",
  3394. height: math.unit(9 + 5 / 12, "feet")
  3395. },
  3396. {
  3397. name: "Horribly Small",
  3398. height: math.unit(47.7, "miles"),
  3399. default: true
  3400. },
  3401. {
  3402. name: "Reasonably Sized",
  3403. height: math.unit(25000, "parsecs")
  3404. },
  3405. {
  3406. name: "Slightly Uncompressed",
  3407. height: math.unit(7.77e31, "parsecs")
  3408. },
  3409. {
  3410. name: "Omniversal",
  3411. height: math.unit(1e300, "meters")
  3412. },
  3413. ]
  3414. ))
  3415. characterMakers.push(() => makeCharacter(
  3416. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3417. {
  3418. front: {
  3419. height: math.unit(2, "meter"),
  3420. weight: math.unit(75, "lb"),
  3421. name: "Front",
  3422. image: {
  3423. source: "./media/characters/napalm/front.svg"
  3424. }
  3425. },
  3426. back: {
  3427. height: math.unit(2, "meter"),
  3428. weight: math.unit(75, "lb"),
  3429. name: "Back",
  3430. image: {
  3431. source: "./media/characters/napalm/back.svg"
  3432. }
  3433. }
  3434. },
  3435. [
  3436. {
  3437. name: "Standard",
  3438. height: math.unit(55, "feet"),
  3439. default: true
  3440. }
  3441. ]
  3442. ))
  3443. characterMakers.push(() => makeCharacter(
  3444. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3445. {
  3446. front: {
  3447. height: math.unit(7 + 5 / 6, "feet"),
  3448. weight: math.unit(325, "lb"),
  3449. name: "Front",
  3450. image: {
  3451. source: "./media/characters/asana/front.svg",
  3452. extra: 1133 / 1060,
  3453. bottom: 15.2 / 1148.6
  3454. }
  3455. },
  3456. back: {
  3457. height: math.unit(7 + 5 / 6, "feet"),
  3458. weight: math.unit(325, "lb"),
  3459. name: "Back",
  3460. image: {
  3461. source: "./media/characters/asana/back.svg",
  3462. extra: 1114 / 1043,
  3463. bottom: 5 / 1120
  3464. }
  3465. },
  3466. dressedDark: {
  3467. height: math.unit(7 + 5 / 6, "feet"),
  3468. weight: math.unit(325, "lb"),
  3469. name: "Dressed (Dark)",
  3470. image: {
  3471. source: "./media/characters/asana/dressed-dark.svg",
  3472. extra: 1133 / 1060,
  3473. bottom: 15.2 / 1148.6
  3474. }
  3475. },
  3476. dressedLight: {
  3477. height: math.unit(7 + 5 / 6, "feet"),
  3478. weight: math.unit(325, "lb"),
  3479. name: "Dressed (Light)",
  3480. image: {
  3481. source: "./media/characters/asana/dressed-light.svg",
  3482. extra: 1133 / 1060,
  3483. bottom: 15.2 / 1148.6
  3484. }
  3485. },
  3486. },
  3487. [
  3488. {
  3489. name: "Standard",
  3490. height: math.unit(7 + 5 / 6, "feet"),
  3491. default: true
  3492. },
  3493. {
  3494. name: "Large",
  3495. height: math.unit(10, "meters")
  3496. },
  3497. {
  3498. name: "Macro",
  3499. height: math.unit(2500, "meters")
  3500. },
  3501. {
  3502. name: "Megamacro",
  3503. height: math.unit(5e6, "meters")
  3504. },
  3505. {
  3506. name: "Examacro",
  3507. height: math.unit(5e12, "lightyears")
  3508. },
  3509. {
  3510. name: "Max Size",
  3511. height: math.unit(1e31, "lightyears")
  3512. }
  3513. ]
  3514. ))
  3515. characterMakers.push(() => makeCharacter(
  3516. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3517. {
  3518. front: {
  3519. height: math.unit(2, "meter"),
  3520. weight: math.unit(60, "kg"),
  3521. name: "Front",
  3522. image: {
  3523. source: "./media/characters/ebony/front.svg",
  3524. bottom: 0.03,
  3525. extra: 1045 / 810 + 0.03
  3526. }
  3527. },
  3528. side: {
  3529. height: math.unit(2, "meter"),
  3530. weight: math.unit(60, "kg"),
  3531. name: "Side",
  3532. image: {
  3533. source: "./media/characters/ebony/side.svg",
  3534. bottom: 0.03,
  3535. extra: 1045 / 810 + 0.03
  3536. }
  3537. },
  3538. back: {
  3539. height: math.unit(2, "meter"),
  3540. weight: math.unit(60, "kg"),
  3541. name: "Back",
  3542. image: {
  3543. source: "./media/characters/ebony/back.svg",
  3544. bottom: 0.01,
  3545. extra: 1045 / 810 + 0.01
  3546. }
  3547. },
  3548. },
  3549. [
  3550. // TODO check why I did this lol
  3551. {
  3552. name: "Standard",
  3553. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3554. default: true
  3555. },
  3556. {
  3557. name: "Macro",
  3558. height: math.unit(200, "feet")
  3559. },
  3560. {
  3561. name: "Gigamacro",
  3562. height: math.unit(13000, "km")
  3563. }
  3564. ]
  3565. ))
  3566. characterMakers.push(() => makeCharacter(
  3567. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3568. {
  3569. front: {
  3570. height: math.unit(6, "feet"),
  3571. weight: math.unit(175, "lb"),
  3572. name: "Front",
  3573. image: {
  3574. source: "./media/characters/mountain/front.svg",
  3575. extra: 972 / 955,
  3576. bottom: 64 / 1036.6
  3577. }
  3578. },
  3579. back: {
  3580. height: math.unit(6, "feet"),
  3581. weight: math.unit(175, "lb"),
  3582. name: "Back",
  3583. image: {
  3584. source: "./media/characters/mountain/back.svg",
  3585. extra: 970 / 950,
  3586. bottom: 28.25 / 999
  3587. }
  3588. },
  3589. },
  3590. [
  3591. {
  3592. name: "Large",
  3593. height: math.unit(20, "meters")
  3594. },
  3595. {
  3596. name: "Macro",
  3597. height: math.unit(300, "meters")
  3598. },
  3599. {
  3600. name: "Gigamacro",
  3601. height: math.unit(10000, "km"),
  3602. default: true
  3603. },
  3604. {
  3605. name: "Examacro",
  3606. height: math.unit(10e9, "lightyears")
  3607. }
  3608. ]
  3609. ))
  3610. characterMakers.push(() => makeCharacter(
  3611. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3612. {
  3613. front: {
  3614. height: math.unit(8, "feet"),
  3615. weight: math.unit(500, "lb"),
  3616. name: "Front",
  3617. image: {
  3618. source: "./media/characters/rick/front.svg"
  3619. }
  3620. }
  3621. },
  3622. [
  3623. {
  3624. name: "Normal",
  3625. height: math.unit(8, "feet"),
  3626. default: true
  3627. },
  3628. {
  3629. name: "Macro",
  3630. height: math.unit(5, "km")
  3631. }
  3632. ]
  3633. ))
  3634. characterMakers.push(() => makeCharacter(
  3635. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3636. {
  3637. front: {
  3638. height: math.unit(8, "feet"),
  3639. weight: math.unit(120, "lb"),
  3640. name: "Front",
  3641. image: {
  3642. source: "./media/characters/ona/front.svg"
  3643. }
  3644. },
  3645. frontAlt: {
  3646. height: math.unit(8, "feet"),
  3647. weight: math.unit(120, "lb"),
  3648. name: "Front (Alt)",
  3649. image: {
  3650. source: "./media/characters/ona/front-alt.svg"
  3651. }
  3652. },
  3653. back: {
  3654. height: math.unit(8, "feet"),
  3655. weight: math.unit(120, "lb"),
  3656. name: "Back",
  3657. image: {
  3658. source: "./media/characters/ona/back.svg"
  3659. }
  3660. },
  3661. foot: {
  3662. height: math.unit(1.1, "feet"),
  3663. name: "Foot",
  3664. image: {
  3665. source: "./media/characters/ona/foot.svg"
  3666. }
  3667. }
  3668. },
  3669. [
  3670. {
  3671. name: "Megamacro",
  3672. height: math.unit(70, "km"),
  3673. default: true
  3674. },
  3675. {
  3676. name: "Gigamacro",
  3677. height: math.unit(681818, "miles")
  3678. },
  3679. {
  3680. name: "Examacro",
  3681. height: math.unit(3800000, "lightyears")
  3682. },
  3683. ]
  3684. ))
  3685. characterMakers.push(() => makeCharacter(
  3686. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3687. {
  3688. front: {
  3689. height: math.unit(12, "feet"),
  3690. weight: math.unit(3000, "lb"),
  3691. name: "Front",
  3692. image: {
  3693. source: "./media/characters/mech/front.svg",
  3694. extra: 2900 / 2770,
  3695. bottom: 110 / 3010
  3696. }
  3697. },
  3698. back: {
  3699. height: math.unit(12, "feet"),
  3700. weight: math.unit(3000, "lb"),
  3701. name: "Back",
  3702. image: {
  3703. source: "./media/characters/mech/back.svg",
  3704. extra: 3011 / 2890,
  3705. bottom: 94 / 3105
  3706. }
  3707. },
  3708. maw: {
  3709. height: math.unit(3.07, "feet"),
  3710. name: "Maw",
  3711. image: {
  3712. source: "./media/characters/mech/maw.svg"
  3713. }
  3714. },
  3715. head: {
  3716. height: math.unit(2.82, "feet"),
  3717. name: "Head",
  3718. image: {
  3719. source: "./media/characters/mech/head.svg"
  3720. }
  3721. },
  3722. dick: {
  3723. height: math.unit(1.43, "feet"),
  3724. name: "Dick",
  3725. image: {
  3726. source: "./media/characters/mech/dick.svg"
  3727. }
  3728. },
  3729. },
  3730. [
  3731. {
  3732. name: "Normal",
  3733. height: math.unit(12, "feet")
  3734. },
  3735. {
  3736. name: "Macro",
  3737. height: math.unit(300, "feet"),
  3738. default: true
  3739. },
  3740. {
  3741. name: "Macro+",
  3742. height: math.unit(1500, "feet")
  3743. },
  3744. ]
  3745. ))
  3746. characterMakers.push(() => makeCharacter(
  3747. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3748. {
  3749. front: {
  3750. height: math.unit(1.3, "meter"),
  3751. weight: math.unit(30, "kg"),
  3752. name: "Front",
  3753. image: {
  3754. source: "./media/characters/gregory/front.svg",
  3755. }
  3756. }
  3757. },
  3758. [
  3759. {
  3760. name: "Normal",
  3761. height: math.unit(1.3, "meter"),
  3762. default: true
  3763. },
  3764. {
  3765. name: "Macro",
  3766. height: math.unit(20, "meter")
  3767. }
  3768. ]
  3769. ))
  3770. characterMakers.push(() => makeCharacter(
  3771. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3772. {
  3773. front: {
  3774. height: math.unit(2.8, "meter"),
  3775. weight: math.unit(200, "kg"),
  3776. name: "Front",
  3777. image: {
  3778. source: "./media/characters/elory/front.svg",
  3779. }
  3780. }
  3781. },
  3782. [
  3783. {
  3784. name: "Normal",
  3785. height: math.unit(2.8, "meter"),
  3786. default: true
  3787. },
  3788. {
  3789. name: "Macro",
  3790. height: math.unit(38, "meter")
  3791. }
  3792. ]
  3793. ))
  3794. characterMakers.push(() => makeCharacter(
  3795. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3796. {
  3797. front: {
  3798. height: math.unit(470, "feet"),
  3799. weight: math.unit(924, "tons"),
  3800. name: "Front",
  3801. image: {
  3802. source: "./media/characters/angelpatamon/front.svg",
  3803. }
  3804. }
  3805. },
  3806. [
  3807. {
  3808. name: "Normal",
  3809. height: math.unit(470, "feet"),
  3810. default: true
  3811. },
  3812. {
  3813. name: "Deity Size I",
  3814. height: math.unit(28651.2, "km")
  3815. },
  3816. {
  3817. name: "Deity Size II",
  3818. height: math.unit(171907.2, "km")
  3819. }
  3820. ]
  3821. ))
  3822. characterMakers.push(() => makeCharacter(
  3823. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3824. {
  3825. side: {
  3826. height: math.unit(7.2, "meter"),
  3827. weight: math.unit(8.2, "tons"),
  3828. name: "Side",
  3829. image: {
  3830. source: "./media/characters/cryae/side.svg",
  3831. extra: 3500 / 1500
  3832. }
  3833. }
  3834. },
  3835. [
  3836. {
  3837. name: "Normal",
  3838. height: math.unit(7.2, "meter"),
  3839. default: true
  3840. }
  3841. ]
  3842. ))
  3843. characterMakers.push(() => makeCharacter(
  3844. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3845. {
  3846. front: {
  3847. height: math.unit(6, "feet"),
  3848. weight: math.unit(175, "lb"),
  3849. name: "Front",
  3850. image: {
  3851. source: "./media/characters/xera/front.svg",
  3852. extra: 2377 / 1972,
  3853. bottom: 75.5 / 2452
  3854. }
  3855. },
  3856. side: {
  3857. height: math.unit(6, "feet"),
  3858. weight: math.unit(175, "lb"),
  3859. name: "Side",
  3860. image: {
  3861. source: "./media/characters/xera/side.svg",
  3862. extra: 2345 / 2019,
  3863. bottom: 39.7 / 2384
  3864. }
  3865. },
  3866. back: {
  3867. height: math.unit(6, "feet"),
  3868. weight: math.unit(175, "lb"),
  3869. name: "Back",
  3870. image: {
  3871. source: "./media/characters/xera/back.svg",
  3872. extra: 2095 / 1984,
  3873. bottom: 67 / 2166
  3874. }
  3875. },
  3876. },
  3877. [
  3878. {
  3879. name: "Small",
  3880. height: math.unit(10, "feet")
  3881. },
  3882. {
  3883. name: "Macro",
  3884. height: math.unit(500, "meters"),
  3885. default: true
  3886. },
  3887. {
  3888. name: "Macro+",
  3889. height: math.unit(10, "km")
  3890. },
  3891. {
  3892. name: "Gigamacro",
  3893. height: math.unit(25000, "km")
  3894. },
  3895. {
  3896. name: "Teramacro",
  3897. height: math.unit(3e6, "km")
  3898. }
  3899. ]
  3900. ))
  3901. characterMakers.push(() => makeCharacter(
  3902. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3903. {
  3904. front: {
  3905. height: math.unit(6, "feet"),
  3906. weight: math.unit(175, "lb"),
  3907. name: "Front",
  3908. image: {
  3909. source: "./media/characters/nebula/front.svg",
  3910. extra: 2566 / 2362,
  3911. bottom: 81 / 2644
  3912. }
  3913. }
  3914. },
  3915. [
  3916. {
  3917. name: "Small",
  3918. height: math.unit(4.5, "meters")
  3919. },
  3920. {
  3921. name: "Macro",
  3922. height: math.unit(1500, "meters"),
  3923. default: true
  3924. },
  3925. {
  3926. name: "Megamacro",
  3927. height: math.unit(150, "km")
  3928. },
  3929. {
  3930. name: "Gigamacro",
  3931. height: math.unit(27000, "km")
  3932. }
  3933. ]
  3934. ))
  3935. characterMakers.push(() => makeCharacter(
  3936. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3937. {
  3938. front: {
  3939. height: math.unit(6, "feet"),
  3940. weight: math.unit(225, "lb"),
  3941. name: "Front",
  3942. image: {
  3943. source: "./media/characters/abysgar/front.svg"
  3944. }
  3945. }
  3946. },
  3947. [
  3948. {
  3949. name: "Small",
  3950. height: math.unit(4.5, "meters")
  3951. },
  3952. {
  3953. name: "Macro",
  3954. height: math.unit(1250, "meters"),
  3955. default: true
  3956. },
  3957. {
  3958. name: "Megamacro",
  3959. height: math.unit(125, "km")
  3960. },
  3961. {
  3962. name: "Gigamacro",
  3963. height: math.unit(26000, "km")
  3964. }
  3965. ]
  3966. ))
  3967. characterMakers.push(() => makeCharacter(
  3968. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3969. {
  3970. front: {
  3971. height: math.unit(6, "feet"),
  3972. weight: math.unit(180, "lb"),
  3973. name: "Front",
  3974. image: {
  3975. source: "./media/characters/yakuz/front.svg"
  3976. }
  3977. }
  3978. },
  3979. [
  3980. {
  3981. name: "Small",
  3982. height: math.unit(5, "meters")
  3983. },
  3984. {
  3985. name: "Macro",
  3986. height: math.unit(1500, "meters"),
  3987. default: true
  3988. },
  3989. {
  3990. name: "Megamacro",
  3991. height: math.unit(200, "km")
  3992. },
  3993. {
  3994. name: "Gigamacro",
  3995. height: math.unit(100000, "km")
  3996. }
  3997. ]
  3998. ))
  3999. characterMakers.push(() => makeCharacter(
  4000. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4001. {
  4002. front: {
  4003. height: math.unit(6, "feet"),
  4004. weight: math.unit(175, "lb"),
  4005. name: "Front",
  4006. image: {
  4007. source: "./media/characters/mirova/front.svg",
  4008. extra: 3334 / 3071,
  4009. bottom: 42 / 3375.6
  4010. }
  4011. }
  4012. },
  4013. [
  4014. {
  4015. name: "Small",
  4016. height: math.unit(5, "meters")
  4017. },
  4018. {
  4019. name: "Macro",
  4020. height: math.unit(900, "meters"),
  4021. default: true
  4022. },
  4023. {
  4024. name: "Megamacro",
  4025. height: math.unit(135, "km")
  4026. },
  4027. {
  4028. name: "Gigamacro",
  4029. height: math.unit(20000, "km")
  4030. }
  4031. ]
  4032. ))
  4033. characterMakers.push(() => makeCharacter(
  4034. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4035. {
  4036. side: {
  4037. height: math.unit(28.35, "feet"),
  4038. weight: math.unit(99.75, "tons"),
  4039. name: "Side",
  4040. image: {
  4041. source: "./media/characters/asana-mech/side.svg",
  4042. extra: 923 / 699,
  4043. bottom: 50 / 975
  4044. }
  4045. },
  4046. chaingun: {
  4047. height: math.unit(7, "feet"),
  4048. weight: math.unit(2400, "lb"),
  4049. name: "Chaingun",
  4050. image: {
  4051. source: "./media/characters/asana-mech/chaingun.svg"
  4052. }
  4053. },
  4054. laser: {
  4055. height: math.unit(7.12, "feet"),
  4056. weight: math.unit(2000, "lb"),
  4057. name: "Laser",
  4058. image: {
  4059. source: "./media/characters/asana-mech/laser.svg"
  4060. }
  4061. },
  4062. },
  4063. [
  4064. {
  4065. name: "Normal",
  4066. height: math.unit(28.35, "feet"),
  4067. default: true
  4068. },
  4069. {
  4070. name: "Macro",
  4071. height: math.unit(2500, "feet")
  4072. },
  4073. {
  4074. name: "Megamacro",
  4075. height: math.unit(25, "miles")
  4076. },
  4077. {
  4078. name: "Examacro",
  4079. height: math.unit(6e8, "lightyears")
  4080. },
  4081. ]
  4082. ))
  4083. characterMakers.push(() => makeCharacter(
  4084. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4085. {
  4086. front: {
  4087. height: math.unit(5, "meters"),
  4088. weight: math.unit(1000, "kg"),
  4089. name: "Front",
  4090. image: {
  4091. source: "./media/characters/asche/front.svg",
  4092. extra: 1258 / 1190,
  4093. bottom: 47 / 1305
  4094. }
  4095. },
  4096. frontUnderwear: {
  4097. height: math.unit(5, "meters"),
  4098. weight: math.unit(1000, "kg"),
  4099. name: "Front (Underwear)",
  4100. image: {
  4101. source: "./media/characters/asche/front-underwear.svg",
  4102. extra: 1258 / 1190,
  4103. bottom: 47 / 1305
  4104. }
  4105. },
  4106. frontDressed: {
  4107. height: math.unit(5, "meters"),
  4108. weight: math.unit(1000, "kg"),
  4109. name: "Front (Dressed)",
  4110. image: {
  4111. source: "./media/characters/asche/front-dressed.svg",
  4112. extra: 1258 / 1190,
  4113. bottom: 47 / 1305
  4114. }
  4115. },
  4116. frontArmor: {
  4117. height: math.unit(5, "meters"),
  4118. weight: math.unit(1000, "kg"),
  4119. name: "Front (Armored)",
  4120. image: {
  4121. source: "./media/characters/asche/front-armored.svg",
  4122. extra: 1374 / 1308,
  4123. bottom: 23 / 1397
  4124. }
  4125. },
  4126. mp724: {
  4127. height: math.unit(0.96, "meters"),
  4128. weight: math.unit(38, "kg"),
  4129. name: "H&K MP724",
  4130. image: {
  4131. source: "./media/characters/asche/h&k-mp724.svg"
  4132. }
  4133. },
  4134. side: {
  4135. height: math.unit(5, "meters"),
  4136. weight: math.unit(1000, "kg"),
  4137. name: "Side",
  4138. image: {
  4139. source: "./media/characters/asche/side.svg",
  4140. extra: 1717 / 1609,
  4141. bottom: 0.005
  4142. }
  4143. },
  4144. back: {
  4145. height: math.unit(5, "meters"),
  4146. weight: math.unit(1000, "kg"),
  4147. name: "Back",
  4148. image: {
  4149. source: "./media/characters/asche/back.svg",
  4150. extra: 1570 / 1501
  4151. }
  4152. },
  4153. },
  4154. [
  4155. {
  4156. name: "DEFCON 5",
  4157. height: math.unit(5, "meters")
  4158. },
  4159. {
  4160. name: "DEFCON 4",
  4161. height: math.unit(500, "meters"),
  4162. default: true
  4163. },
  4164. {
  4165. name: "DEFCON 3",
  4166. height: math.unit(5, "km")
  4167. },
  4168. {
  4169. name: "DEFCON 2",
  4170. height: math.unit(500, "km")
  4171. },
  4172. {
  4173. name: "DEFCON 1",
  4174. height: math.unit(500000, "km")
  4175. },
  4176. {
  4177. name: "DEFCON 0",
  4178. height: math.unit(3, "gigaparsecs")
  4179. },
  4180. ]
  4181. ))
  4182. characterMakers.push(() => makeCharacter(
  4183. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4184. {
  4185. front: {
  4186. height: math.unit(2, "meters"),
  4187. weight: math.unit(76, "kg"),
  4188. name: "Front",
  4189. image: {
  4190. source: "./media/characters/gale/front.svg"
  4191. }
  4192. },
  4193. frontAlt1: {
  4194. height: math.unit(2, "meters"),
  4195. weight: math.unit(76, "kg"),
  4196. name: "Front (Alt 1)",
  4197. image: {
  4198. source: "./media/characters/gale/front-alt-1.svg"
  4199. }
  4200. },
  4201. frontAlt2: {
  4202. height: math.unit(2, "meters"),
  4203. weight: math.unit(76, "kg"),
  4204. name: "Front (Alt 2)",
  4205. image: {
  4206. source: "./media/characters/gale/front-alt-2.svg"
  4207. }
  4208. },
  4209. },
  4210. [
  4211. {
  4212. name: "Normal",
  4213. height: math.unit(7, "feet")
  4214. },
  4215. {
  4216. name: "Macro",
  4217. height: math.unit(150, "feet"),
  4218. default: true
  4219. },
  4220. {
  4221. name: "Macro+",
  4222. height: math.unit(300, "feet")
  4223. },
  4224. ]
  4225. ))
  4226. characterMakers.push(() => makeCharacter(
  4227. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4228. {
  4229. front: {
  4230. height: math.unit(2, "meters"),
  4231. weight: math.unit(76, "kg"),
  4232. name: "Front",
  4233. image: {
  4234. source: "./media/characters/draylen/front.svg"
  4235. }
  4236. }
  4237. },
  4238. [
  4239. {
  4240. name: "Macro",
  4241. height: math.unit(150, "feet"),
  4242. default: true
  4243. }
  4244. ]
  4245. ))
  4246. characterMakers.push(() => makeCharacter(
  4247. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4248. {
  4249. front: {
  4250. height: math.unit(7 + 9 / 12, "feet"),
  4251. weight: math.unit(379, "lbs"),
  4252. name: "Front",
  4253. image: {
  4254. source: "./media/characters/chez/front.svg"
  4255. }
  4256. },
  4257. side: {
  4258. height: math.unit(7 + 9 / 12, "feet"),
  4259. weight: math.unit(379, "lbs"),
  4260. name: "Side",
  4261. image: {
  4262. source: "./media/characters/chez/side.svg"
  4263. }
  4264. }
  4265. },
  4266. [
  4267. {
  4268. name: "Normal",
  4269. height: math.unit(7 + 9 / 12, "feet"),
  4270. default: true
  4271. },
  4272. {
  4273. name: "God King",
  4274. height: math.unit(9750000, "meters")
  4275. }
  4276. ]
  4277. ))
  4278. characterMakers.push(() => makeCharacter(
  4279. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4280. {
  4281. front: {
  4282. height: math.unit(6, "feet"),
  4283. weight: math.unit(275, "lbs"),
  4284. name: "Front",
  4285. image: {
  4286. source: "./media/characters/kaylum/front.svg",
  4287. bottom: 0.01,
  4288. extra: 1166 / 1031
  4289. }
  4290. },
  4291. frontWingless: {
  4292. height: math.unit(6, "feet"),
  4293. weight: math.unit(275, "lbs"),
  4294. name: "Front (Wingless)",
  4295. image: {
  4296. source: "./media/characters/kaylum/front-wingless.svg",
  4297. bottom: 0.01,
  4298. extra: 1117 / 1031
  4299. }
  4300. }
  4301. },
  4302. [
  4303. {
  4304. name: "Normal",
  4305. height: math.unit(3.05, "meters")
  4306. },
  4307. {
  4308. name: "Master",
  4309. height: math.unit(5.5, "meters")
  4310. },
  4311. {
  4312. name: "Rampage",
  4313. height: math.unit(19, "meters")
  4314. },
  4315. {
  4316. name: "Macro Lite",
  4317. height: math.unit(37, "meters")
  4318. },
  4319. {
  4320. name: "Hyper Predator",
  4321. height: math.unit(61, "meters")
  4322. },
  4323. {
  4324. name: "Macro",
  4325. height: math.unit(138, "meters"),
  4326. default: true
  4327. }
  4328. ]
  4329. ))
  4330. characterMakers.push(() => makeCharacter(
  4331. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4332. {
  4333. front: {
  4334. height: math.unit(6, "feet"),
  4335. weight: math.unit(150, "lbs"),
  4336. name: "Front",
  4337. image: {
  4338. source: "./media/characters/geta/front.svg"
  4339. }
  4340. }
  4341. },
  4342. [
  4343. {
  4344. name: "Micro",
  4345. height: math.unit(3, "inches"),
  4346. default: true
  4347. },
  4348. {
  4349. name: "Normal",
  4350. height: math.unit(5 + 5 / 12, "feet")
  4351. }
  4352. ]
  4353. ))
  4354. characterMakers.push(() => makeCharacter(
  4355. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4356. {
  4357. front: {
  4358. height: math.unit(6, "feet"),
  4359. weight: math.unit(300, "lbs"),
  4360. name: "Front",
  4361. image: {
  4362. source: "./media/characters/tyrnn/front.svg"
  4363. }
  4364. }
  4365. },
  4366. [
  4367. {
  4368. name: "Main Height",
  4369. height: math.unit(355, "feet"),
  4370. default: true
  4371. },
  4372. {
  4373. name: "Fave. Height",
  4374. height: math.unit(2400, "feet")
  4375. }
  4376. ]
  4377. ))
  4378. characterMakers.push(() => makeCharacter(
  4379. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4380. {
  4381. front: {
  4382. height: math.unit(6, "feet"),
  4383. weight: math.unit(300, "lbs"),
  4384. name: "Front",
  4385. image: {
  4386. source: "./media/characters/appledectomy/front.svg"
  4387. }
  4388. }
  4389. },
  4390. [
  4391. {
  4392. name: "Macro",
  4393. height: math.unit(2500, "feet")
  4394. },
  4395. {
  4396. name: "Megamacro",
  4397. height: math.unit(50, "miles"),
  4398. default: true
  4399. },
  4400. {
  4401. name: "Gigamacro",
  4402. height: math.unit(5000, "miles")
  4403. },
  4404. {
  4405. name: "Teramacro",
  4406. height: math.unit(250000, "miles")
  4407. },
  4408. ]
  4409. ))
  4410. characterMakers.push(() => makeCharacter(
  4411. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4412. {
  4413. front: {
  4414. height: math.unit(6, "feet"),
  4415. weight: math.unit(200, "lbs"),
  4416. name: "Front",
  4417. image: {
  4418. source: "./media/characters/vulpes/front.svg",
  4419. extra: 573 / 543,
  4420. bottom: 0.033
  4421. }
  4422. },
  4423. side: {
  4424. height: math.unit(6, "feet"),
  4425. weight: math.unit(200, "lbs"),
  4426. name: "Side",
  4427. image: {
  4428. source: "./media/characters/vulpes/side.svg",
  4429. extra: 577 / 549,
  4430. bottom: 11 / 588
  4431. }
  4432. },
  4433. back: {
  4434. height: math.unit(6, "feet"),
  4435. weight: math.unit(200, "lbs"),
  4436. name: "Back",
  4437. image: {
  4438. source: "./media/characters/vulpes/back.svg",
  4439. extra: 573 / 549,
  4440. bottom: 20 / 593
  4441. }
  4442. },
  4443. feet: {
  4444. height: math.unit(1.276, "feet"),
  4445. name: "Feet",
  4446. image: {
  4447. source: "./media/characters/vulpes/feet.svg"
  4448. }
  4449. },
  4450. maw: {
  4451. height: math.unit(1.18, "feet"),
  4452. name: "Maw",
  4453. image: {
  4454. source: "./media/characters/vulpes/maw.svg"
  4455. }
  4456. },
  4457. },
  4458. [
  4459. {
  4460. name: "Micro",
  4461. height: math.unit(2, "inches")
  4462. },
  4463. {
  4464. name: "Normal",
  4465. height: math.unit(6.3, "feet")
  4466. },
  4467. {
  4468. name: "Macro",
  4469. height: math.unit(850, "feet")
  4470. },
  4471. {
  4472. name: "Megamacro",
  4473. height: math.unit(7500, "feet"),
  4474. default: true
  4475. },
  4476. {
  4477. name: "Gigamacro",
  4478. height: math.unit(570000, "miles")
  4479. }
  4480. ]
  4481. ))
  4482. characterMakers.push(() => makeCharacter(
  4483. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4484. {
  4485. front: {
  4486. height: math.unit(6, "feet"),
  4487. weight: math.unit(210, "lbs"),
  4488. name: "Front",
  4489. image: {
  4490. source: "./media/characters/rain-fallen/front.svg"
  4491. }
  4492. },
  4493. side: {
  4494. height: math.unit(6, "feet"),
  4495. weight: math.unit(210, "lbs"),
  4496. name: "Side",
  4497. image: {
  4498. source: "./media/characters/rain-fallen/side.svg"
  4499. }
  4500. },
  4501. back: {
  4502. height: math.unit(6, "feet"),
  4503. weight: math.unit(210, "lbs"),
  4504. name: "Back",
  4505. image: {
  4506. source: "./media/characters/rain-fallen/back.svg"
  4507. }
  4508. },
  4509. feral: {
  4510. height: math.unit(9, "feet"),
  4511. weight: math.unit(700, "lbs"),
  4512. name: "Feral",
  4513. image: {
  4514. source: "./media/characters/rain-fallen/feral.svg"
  4515. }
  4516. },
  4517. },
  4518. [
  4519. {
  4520. name: "Meddling with Mortals",
  4521. height: math.unit(8 + 8/12, "feet")
  4522. },
  4523. {
  4524. name: "Normal",
  4525. height: math.unit(5, "meter")
  4526. },
  4527. {
  4528. name: "Macro",
  4529. height: math.unit(150, "meter"),
  4530. default: true
  4531. },
  4532. {
  4533. name: "Megamacro",
  4534. height: math.unit(278e6, "meter")
  4535. },
  4536. {
  4537. name: "Gigamacro",
  4538. height: math.unit(2e9, "meter")
  4539. },
  4540. {
  4541. name: "Teramacro",
  4542. height: math.unit(8e12, "meter")
  4543. },
  4544. {
  4545. name: "Devourer",
  4546. height: math.unit(14, "zettameters")
  4547. },
  4548. {
  4549. name: "Scarlet King",
  4550. height: math.unit(18, "yottameters")
  4551. },
  4552. {
  4553. name: "Void",
  4554. height: math.unit(1e88, "yottameters")
  4555. }
  4556. ]
  4557. ))
  4558. characterMakers.push(() => makeCharacter(
  4559. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4560. {
  4561. standing: {
  4562. height: math.unit(6, "feet"),
  4563. weight: math.unit(180, "lbs"),
  4564. name: "Standing",
  4565. image: {
  4566. source: "./media/characters/zaakira/standing.svg",
  4567. extra: 1599/1504,
  4568. bottom: 39/1638
  4569. }
  4570. },
  4571. laying: {
  4572. height: math.unit(3, "feet"),
  4573. weight: math.unit(180, "lbs"),
  4574. name: "Laying",
  4575. image: {
  4576. source: "./media/characters/zaakira/laying.svg"
  4577. }
  4578. },
  4579. },
  4580. [
  4581. {
  4582. name: "Normal",
  4583. height: math.unit(12, "feet")
  4584. },
  4585. {
  4586. name: "Macro",
  4587. height: math.unit(279, "feet"),
  4588. default: true
  4589. }
  4590. ]
  4591. ))
  4592. characterMakers.push(() => makeCharacter(
  4593. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4594. {
  4595. femSfw: {
  4596. height: math.unit(8, "feet"),
  4597. weight: math.unit(350, "lb"),
  4598. name: "Fem",
  4599. image: {
  4600. source: "./media/characters/sigvald/fem-sfw.svg",
  4601. extra: 182 / 164,
  4602. bottom: 8.7 / 190.5
  4603. }
  4604. },
  4605. femNsfw: {
  4606. height: math.unit(8, "feet"),
  4607. weight: math.unit(350, "lb"),
  4608. name: "Fem (NSFW)",
  4609. image: {
  4610. source: "./media/characters/sigvald/fem-nsfw.svg",
  4611. extra: 182 / 164,
  4612. bottom: 8.7 / 190.5
  4613. }
  4614. },
  4615. maleNsfw: {
  4616. height: math.unit(8, "feet"),
  4617. weight: math.unit(350, "lb"),
  4618. name: "Male (NSFW)",
  4619. image: {
  4620. source: "./media/characters/sigvald/male-nsfw.svg",
  4621. extra: 182 / 164,
  4622. bottom: 8.7 / 190.5
  4623. }
  4624. },
  4625. hermNsfw: {
  4626. height: math.unit(8, "feet"),
  4627. weight: math.unit(350, "lb"),
  4628. name: "Herm (NSFW)",
  4629. image: {
  4630. source: "./media/characters/sigvald/herm-nsfw.svg",
  4631. extra: 182 / 164,
  4632. bottom: 8.7 / 190.5
  4633. }
  4634. },
  4635. dick: {
  4636. height: math.unit(2.36, "feet"),
  4637. name: "Dick",
  4638. image: {
  4639. source: "./media/characters/sigvald/dick.svg"
  4640. }
  4641. },
  4642. eye: {
  4643. height: math.unit(0.31, "feet"),
  4644. name: "Eye",
  4645. image: {
  4646. source: "./media/characters/sigvald/eye.svg"
  4647. }
  4648. },
  4649. mouth: {
  4650. height: math.unit(0.92, "feet"),
  4651. name: "Mouth",
  4652. image: {
  4653. source: "./media/characters/sigvald/mouth.svg"
  4654. }
  4655. },
  4656. paws: {
  4657. height: math.unit(2.2, "feet"),
  4658. name: "Paws",
  4659. image: {
  4660. source: "./media/characters/sigvald/paws.svg"
  4661. }
  4662. }
  4663. },
  4664. [
  4665. {
  4666. name: "Normal",
  4667. height: math.unit(8, "feet")
  4668. },
  4669. {
  4670. name: "Large",
  4671. height: math.unit(12, "feet")
  4672. },
  4673. {
  4674. name: "Larger",
  4675. height: math.unit(20, "feet")
  4676. },
  4677. {
  4678. name: "Macro",
  4679. height: math.unit(150, "feet")
  4680. },
  4681. {
  4682. name: "Macro+",
  4683. height: math.unit(200, "feet"),
  4684. default: true
  4685. },
  4686. ]
  4687. ))
  4688. characterMakers.push(() => makeCharacter(
  4689. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4690. {
  4691. side: {
  4692. height: math.unit(12, "feet"),
  4693. weight: math.unit(2000, "kg"),
  4694. name: "Side",
  4695. image: {
  4696. source: "./media/characters/scott/side.svg",
  4697. extra: 754 / 724,
  4698. bottom: 0.069
  4699. }
  4700. },
  4701. upright: {
  4702. height: math.unit(12, "feet"),
  4703. weight: math.unit(2000, "kg"),
  4704. name: "Upright",
  4705. image: {
  4706. source: "./media/characters/scott/upright.svg",
  4707. extra: 3881 / 3722,
  4708. bottom: 0.05
  4709. }
  4710. },
  4711. },
  4712. [
  4713. {
  4714. name: "Normal",
  4715. height: math.unit(12, "feet"),
  4716. default: true
  4717. },
  4718. ]
  4719. ))
  4720. characterMakers.push(() => makeCharacter(
  4721. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4722. {
  4723. side: {
  4724. height: math.unit(8, "meters"),
  4725. weight: math.unit(84755, "lbs"),
  4726. name: "Side",
  4727. image: {
  4728. source: "./media/characters/tobias/side.svg",
  4729. extra: 1474 / 1096,
  4730. bottom: 38.9 / 1513.1235
  4731. }
  4732. },
  4733. },
  4734. [
  4735. {
  4736. name: "Normal",
  4737. height: math.unit(8, "meters"),
  4738. default: true
  4739. },
  4740. ]
  4741. ))
  4742. characterMakers.push(() => makeCharacter(
  4743. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4744. {
  4745. front: {
  4746. height: math.unit(5.5, "feet"),
  4747. weight: math.unit(400, "lbs"),
  4748. name: "Front",
  4749. image: {
  4750. source: "./media/characters/kieran/front.svg",
  4751. extra: 2694 / 2364,
  4752. bottom: 217 / 2908
  4753. }
  4754. },
  4755. side: {
  4756. height: math.unit(5.5, "feet"),
  4757. weight: math.unit(400, "lbs"),
  4758. name: "Side",
  4759. image: {
  4760. source: "./media/characters/kieran/side.svg",
  4761. extra: 875 / 777,
  4762. bottom: 84.6 / 959
  4763. }
  4764. },
  4765. },
  4766. [
  4767. {
  4768. name: "Normal",
  4769. height: math.unit(5.5, "feet"),
  4770. default: true
  4771. },
  4772. ]
  4773. ))
  4774. characterMakers.push(() => makeCharacter(
  4775. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4776. {
  4777. side: {
  4778. height: math.unit(2, "meters"),
  4779. weight: math.unit(70, "kg"),
  4780. name: "Side",
  4781. image: {
  4782. source: "./media/characters/sanya/side.svg",
  4783. bottom: 0.02,
  4784. extra: 1.02
  4785. }
  4786. },
  4787. },
  4788. [
  4789. {
  4790. name: "Small",
  4791. height: math.unit(2, "meters")
  4792. },
  4793. {
  4794. name: "Normal",
  4795. height: math.unit(3, "meters")
  4796. },
  4797. {
  4798. name: "Macro",
  4799. height: math.unit(16, "meters"),
  4800. default: true
  4801. },
  4802. ]
  4803. ))
  4804. characterMakers.push(() => makeCharacter(
  4805. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4806. {
  4807. front: {
  4808. height: math.unit(2, "meters"),
  4809. weight: math.unit(120, "kg"),
  4810. name: "Front",
  4811. image: {
  4812. source: "./media/characters/miranda/front.svg",
  4813. extra: 195 / 185,
  4814. bottom: 10.9 / 206.5
  4815. }
  4816. },
  4817. back: {
  4818. height: math.unit(2, "meters"),
  4819. weight: math.unit(120, "kg"),
  4820. name: "Back",
  4821. image: {
  4822. source: "./media/characters/miranda/back.svg",
  4823. extra: 201 / 193,
  4824. bottom: 2.3 / 203.7
  4825. }
  4826. },
  4827. },
  4828. [
  4829. {
  4830. name: "Normal",
  4831. height: math.unit(10, "feet"),
  4832. default: true
  4833. }
  4834. ]
  4835. ))
  4836. characterMakers.push(() => makeCharacter(
  4837. { name: "James", species: ["deer"], tags: ["anthro"] },
  4838. {
  4839. side: {
  4840. height: math.unit(2, "meters"),
  4841. weight: math.unit(100, "kg"),
  4842. name: "Front",
  4843. image: {
  4844. source: "./media/characters/james/front.svg",
  4845. extra: 10 / 8.5
  4846. }
  4847. },
  4848. },
  4849. [
  4850. {
  4851. name: "Normal",
  4852. height: math.unit(8.5, "feet"),
  4853. default: true
  4854. }
  4855. ]
  4856. ))
  4857. characterMakers.push(() => makeCharacter(
  4858. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4859. {
  4860. side: {
  4861. height: math.unit(9.5, "feet"),
  4862. weight: math.unit(2500, "lbs"),
  4863. name: "Side",
  4864. image: {
  4865. source: "./media/characters/heather/side.svg"
  4866. }
  4867. },
  4868. },
  4869. [
  4870. {
  4871. name: "Normal",
  4872. height: math.unit(9.5, "feet"),
  4873. default: true
  4874. }
  4875. ]
  4876. ))
  4877. characterMakers.push(() => makeCharacter(
  4878. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4879. {
  4880. side: {
  4881. height: math.unit(6.5, "feet"),
  4882. weight: math.unit(400, "lbs"),
  4883. name: "Side",
  4884. image: {
  4885. source: "./media/characters/lukas/side.svg",
  4886. extra: 7.25 / 6.5
  4887. }
  4888. },
  4889. },
  4890. [
  4891. {
  4892. name: "Normal",
  4893. height: math.unit(6.5, "feet"),
  4894. default: true
  4895. }
  4896. ]
  4897. ))
  4898. characterMakers.push(() => makeCharacter(
  4899. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4900. {
  4901. side: {
  4902. height: math.unit(5, "feet"),
  4903. weight: math.unit(3000, "lbs"),
  4904. name: "Side",
  4905. image: {
  4906. source: "./media/characters/louise/side.svg"
  4907. }
  4908. },
  4909. },
  4910. [
  4911. {
  4912. name: "Normal",
  4913. height: math.unit(5, "feet"),
  4914. default: true
  4915. }
  4916. ]
  4917. ))
  4918. characterMakers.push(() => makeCharacter(
  4919. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4920. {
  4921. side: {
  4922. height: math.unit(6, "feet"),
  4923. weight: math.unit(150, "lbs"),
  4924. name: "Side",
  4925. image: {
  4926. source: "./media/characters/ramona/side.svg"
  4927. }
  4928. },
  4929. },
  4930. [
  4931. {
  4932. name: "Normal",
  4933. height: math.unit(5.3, "meters"),
  4934. default: true
  4935. },
  4936. {
  4937. name: "Macro",
  4938. height: math.unit(20, "stories")
  4939. },
  4940. {
  4941. name: "Macro+",
  4942. height: math.unit(50, "stories")
  4943. },
  4944. ]
  4945. ))
  4946. characterMakers.push(() => makeCharacter(
  4947. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4948. {
  4949. standing: {
  4950. height: math.unit(5.75, "feet"),
  4951. weight: math.unit(160, "lbs"),
  4952. name: "Standing",
  4953. image: {
  4954. source: "./media/characters/deerpuff/standing.svg",
  4955. extra: 682 / 624
  4956. }
  4957. },
  4958. sitting: {
  4959. height: math.unit(5.75 / 1.79, "feet"),
  4960. weight: math.unit(160, "lbs"),
  4961. name: "Sitting",
  4962. image: {
  4963. source: "./media/characters/deerpuff/sitting.svg",
  4964. bottom: 44 / 400,
  4965. extra: 1
  4966. }
  4967. },
  4968. taurLaying: {
  4969. height: math.unit(6, "feet"),
  4970. weight: math.unit(400, "lbs"),
  4971. name: "Taur (Laying)",
  4972. image: {
  4973. source: "./media/characters/deerpuff/taur-laying.svg"
  4974. }
  4975. },
  4976. },
  4977. [
  4978. {
  4979. name: "Puffball",
  4980. height: math.unit(6, "inches")
  4981. },
  4982. {
  4983. name: "Normalpuff",
  4984. height: math.unit(5.75, "feet")
  4985. },
  4986. {
  4987. name: "Macropuff",
  4988. height: math.unit(1500, "feet"),
  4989. default: true
  4990. },
  4991. {
  4992. name: "Megapuff",
  4993. height: math.unit(500, "miles")
  4994. },
  4995. {
  4996. name: "Gigapuff",
  4997. height: math.unit(250000, "miles")
  4998. },
  4999. {
  5000. name: "Omegapuff",
  5001. height: math.unit(1000, "lightyears")
  5002. },
  5003. ]
  5004. ))
  5005. characterMakers.push(() => makeCharacter(
  5006. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5007. {
  5008. stomping: {
  5009. height: math.unit(6, "feet"),
  5010. weight: math.unit(170, "lbs"),
  5011. name: "Stomping",
  5012. image: {
  5013. source: "./media/characters/vivian/stomping.svg"
  5014. }
  5015. },
  5016. sitting: {
  5017. height: math.unit(6 / 1.75, "feet"),
  5018. weight: math.unit(170, "lbs"),
  5019. name: "Sitting",
  5020. image: {
  5021. source: "./media/characters/vivian/sitting.svg",
  5022. bottom: 1 / 6.4,
  5023. extra: 1,
  5024. }
  5025. },
  5026. },
  5027. [
  5028. {
  5029. name: "Normal",
  5030. height: math.unit(7, "feet"),
  5031. default: true
  5032. },
  5033. {
  5034. name: "Macro",
  5035. height: math.unit(10, "stories")
  5036. },
  5037. {
  5038. name: "Macro+",
  5039. height: math.unit(30, "stories")
  5040. },
  5041. {
  5042. name: "Megamacro",
  5043. height: math.unit(10, "miles")
  5044. },
  5045. {
  5046. name: "Megamacro+",
  5047. height: math.unit(2750000, "meters")
  5048. },
  5049. ]
  5050. ))
  5051. characterMakers.push(() => makeCharacter(
  5052. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5053. {
  5054. front: {
  5055. height: math.unit(6, "feet"),
  5056. weight: math.unit(160, "lbs"),
  5057. name: "Front",
  5058. image: {
  5059. source: "./media/characters/prince/front.svg",
  5060. extra: 3400 / 3000
  5061. }
  5062. },
  5063. jumping: {
  5064. height: math.unit(6, "feet"),
  5065. weight: math.unit(160, "lbs"),
  5066. name: "Jumping",
  5067. image: {
  5068. source: "./media/characters/prince/jump.svg",
  5069. extra: 2555 / 2134
  5070. }
  5071. },
  5072. },
  5073. [
  5074. {
  5075. name: "Normal",
  5076. height: math.unit(7.75, "feet"),
  5077. default: true
  5078. },
  5079. {
  5080. name: "Not cute",
  5081. height: math.unit(17, "feet")
  5082. },
  5083. {
  5084. name: "I said NOT",
  5085. height: math.unit(91, "feet")
  5086. },
  5087. {
  5088. name: "Please stop",
  5089. height: math.unit(560, "feet")
  5090. },
  5091. {
  5092. name: "What have you done",
  5093. height: math.unit(2200, "feet")
  5094. },
  5095. {
  5096. name: "Deer God",
  5097. height: math.unit(3.6, "miles")
  5098. },
  5099. ]
  5100. ))
  5101. characterMakers.push(() => makeCharacter(
  5102. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5103. {
  5104. standing: {
  5105. height: math.unit(6, "feet"),
  5106. weight: math.unit(300, "lbs"),
  5107. name: "Standing",
  5108. image: {
  5109. source: "./media/characters/psymon/standing.svg",
  5110. extra: 1888 / 1810,
  5111. bottom: 0.05
  5112. }
  5113. },
  5114. slithering: {
  5115. height: math.unit(6, "feet"),
  5116. weight: math.unit(300, "lbs"),
  5117. name: "Slithering",
  5118. image: {
  5119. source: "./media/characters/psymon/slithering.svg",
  5120. extra: 1330 / 1224
  5121. }
  5122. },
  5123. slitheringAlt: {
  5124. height: math.unit(6, "feet"),
  5125. weight: math.unit(300, "lbs"),
  5126. name: "Slithering (Alt)",
  5127. image: {
  5128. source: "./media/characters/psymon/slithering-alt.svg",
  5129. extra: 1330 / 1224
  5130. }
  5131. },
  5132. },
  5133. [
  5134. {
  5135. name: "Normal",
  5136. height: math.unit(11.25, "feet"),
  5137. default: true
  5138. },
  5139. {
  5140. name: "Large",
  5141. height: math.unit(27, "feet")
  5142. },
  5143. {
  5144. name: "Giant",
  5145. height: math.unit(87, "feet")
  5146. },
  5147. {
  5148. name: "Macro",
  5149. height: math.unit(365, "feet")
  5150. },
  5151. {
  5152. name: "Megamacro",
  5153. height: math.unit(3, "miles")
  5154. },
  5155. {
  5156. name: "World Serpent",
  5157. height: math.unit(8000, "miles")
  5158. },
  5159. ]
  5160. ))
  5161. characterMakers.push(() => makeCharacter(
  5162. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5163. {
  5164. front: {
  5165. height: math.unit(6, "feet"),
  5166. weight: math.unit(180, "lbs"),
  5167. name: "Front",
  5168. image: {
  5169. source: "./media/characters/daimos/front.svg",
  5170. extra: 4160 / 3897,
  5171. bottom: 0.021
  5172. }
  5173. }
  5174. },
  5175. [
  5176. {
  5177. name: "Normal",
  5178. height: math.unit(8, "feet"),
  5179. default: true
  5180. },
  5181. {
  5182. name: "Big Dog",
  5183. height: math.unit(22, "feet")
  5184. },
  5185. {
  5186. name: "Macro",
  5187. height: math.unit(127, "feet")
  5188. },
  5189. {
  5190. name: "Megamacro",
  5191. height: math.unit(3600, "feet")
  5192. },
  5193. ]
  5194. ))
  5195. characterMakers.push(() => makeCharacter(
  5196. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5197. {
  5198. side: {
  5199. height: math.unit(6, "feet"),
  5200. weight: math.unit(180, "lbs"),
  5201. name: "Side",
  5202. image: {
  5203. source: "./media/characters/blake/side.svg",
  5204. extra: 1212 / 1120,
  5205. bottom: 0.05
  5206. }
  5207. },
  5208. crouched: {
  5209. height: math.unit(6 * 0.57, "feet"),
  5210. weight: math.unit(180, "lbs"),
  5211. name: "Crouched",
  5212. image: {
  5213. source: "./media/characters/blake/crouched.svg",
  5214. extra: 840 / 587,
  5215. bottom: 0.04
  5216. }
  5217. },
  5218. bent: {
  5219. height: math.unit(6 * 0.75, "feet"),
  5220. weight: math.unit(180, "lbs"),
  5221. name: "Bent",
  5222. image: {
  5223. source: "./media/characters/blake/bent.svg",
  5224. extra: 592 / 544,
  5225. bottom: 0.035
  5226. }
  5227. },
  5228. },
  5229. [
  5230. {
  5231. name: "Normal",
  5232. height: math.unit(8 + 1 / 6, "feet"),
  5233. default: true
  5234. },
  5235. {
  5236. name: "Big Backside",
  5237. height: math.unit(37, "feet")
  5238. },
  5239. {
  5240. name: "Subway Shredder",
  5241. height: math.unit(72, "feet")
  5242. },
  5243. {
  5244. name: "City Carver",
  5245. height: math.unit(1675, "feet")
  5246. },
  5247. {
  5248. name: "Tectonic Tweaker",
  5249. height: math.unit(2300, "miles")
  5250. },
  5251. ]
  5252. ))
  5253. characterMakers.push(() => makeCharacter(
  5254. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5255. {
  5256. front: {
  5257. height: math.unit(6, "feet"),
  5258. weight: math.unit(180, "lbs"),
  5259. name: "Front",
  5260. image: {
  5261. source: "./media/characters/guisetto/front.svg",
  5262. extra: 856 / 817,
  5263. bottom: 0.06
  5264. }
  5265. },
  5266. airborne: {
  5267. height: math.unit(6, "feet"),
  5268. weight: math.unit(180, "lbs"),
  5269. name: "Airborne",
  5270. image: {
  5271. source: "./media/characters/guisetto/airborne.svg",
  5272. extra: 584 / 525
  5273. }
  5274. },
  5275. },
  5276. [
  5277. {
  5278. name: "Normal",
  5279. height: math.unit(10 + 11 / 12, "feet"),
  5280. default: true
  5281. },
  5282. {
  5283. name: "Large",
  5284. height: math.unit(35, "feet")
  5285. },
  5286. {
  5287. name: "Macro",
  5288. height: math.unit(475, "feet")
  5289. },
  5290. ]
  5291. ))
  5292. characterMakers.push(() => makeCharacter(
  5293. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5294. {
  5295. front: {
  5296. height: math.unit(6, "feet"),
  5297. weight: math.unit(180, "lbs"),
  5298. name: "Front",
  5299. image: {
  5300. source: "./media/characters/luxor/front.svg",
  5301. extra: 2940 / 2152
  5302. }
  5303. },
  5304. back: {
  5305. height: math.unit(6, "feet"),
  5306. weight: math.unit(180, "lbs"),
  5307. name: "Back",
  5308. image: {
  5309. source: "./media/characters/luxor/back.svg",
  5310. extra: 1083 / 960
  5311. }
  5312. },
  5313. },
  5314. [
  5315. {
  5316. name: "Normal",
  5317. height: math.unit(5 + 5 / 6, "feet"),
  5318. default: true
  5319. },
  5320. {
  5321. name: "Lamp",
  5322. height: math.unit(50, "feet")
  5323. },
  5324. {
  5325. name: "Lämp",
  5326. height: math.unit(300, "feet")
  5327. },
  5328. {
  5329. name: "The sun is a lamp",
  5330. height: math.unit(250000, "miles")
  5331. },
  5332. ]
  5333. ))
  5334. characterMakers.push(() => makeCharacter(
  5335. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5336. {
  5337. front: {
  5338. height: math.unit(6, "feet"),
  5339. weight: math.unit(50, "lbs"),
  5340. name: "Front",
  5341. image: {
  5342. source: "./media/characters/huoyan/front.svg"
  5343. }
  5344. },
  5345. side: {
  5346. height: math.unit(6, "feet"),
  5347. weight: math.unit(180, "lbs"),
  5348. name: "Side",
  5349. image: {
  5350. source: "./media/characters/huoyan/side.svg"
  5351. }
  5352. },
  5353. },
  5354. [
  5355. {
  5356. name: "Chef",
  5357. height: math.unit(9, "feet")
  5358. },
  5359. {
  5360. name: "Normal",
  5361. height: math.unit(65, "feet"),
  5362. default: true
  5363. },
  5364. {
  5365. name: "Macro",
  5366. height: math.unit(780, "feet")
  5367. },
  5368. {
  5369. name: "Flaming Mountain",
  5370. height: math.unit(4.8, "miles")
  5371. },
  5372. {
  5373. name: "Celestial",
  5374. height: math.unit(765000, "miles")
  5375. },
  5376. ]
  5377. ))
  5378. characterMakers.push(() => makeCharacter(
  5379. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5380. {
  5381. front: {
  5382. height: math.unit(5 + 3 / 4, "feet"),
  5383. weight: math.unit(120, "lbs"),
  5384. name: "Front",
  5385. image: {
  5386. source: "./media/characters/tails/front.svg"
  5387. }
  5388. }
  5389. },
  5390. [
  5391. {
  5392. name: "Normal",
  5393. height: math.unit(5 + 3 / 4, "feet"),
  5394. default: true
  5395. }
  5396. ]
  5397. ))
  5398. characterMakers.push(() => makeCharacter(
  5399. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5400. {
  5401. front: {
  5402. height: math.unit(4, "feet"),
  5403. weight: math.unit(50, "lbs"),
  5404. name: "Front",
  5405. image: {
  5406. source: "./media/characters/rainy/front.svg"
  5407. }
  5408. }
  5409. },
  5410. [
  5411. {
  5412. name: "Macro",
  5413. height: math.unit(800, "feet"),
  5414. default: true
  5415. }
  5416. ]
  5417. ))
  5418. characterMakers.push(() => makeCharacter(
  5419. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5420. {
  5421. front: {
  5422. height: math.unit(6, "feet"),
  5423. weight: math.unit(150, "lbs"),
  5424. name: "Front",
  5425. image: {
  5426. source: "./media/characters/rainier/front.svg"
  5427. }
  5428. }
  5429. },
  5430. [
  5431. {
  5432. name: "Micro",
  5433. height: math.unit(2, "mm"),
  5434. default: true
  5435. }
  5436. ]
  5437. ))
  5438. characterMakers.push(() => makeCharacter(
  5439. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5440. {
  5441. front: {
  5442. height: math.unit(6, "feet"),
  5443. weight: math.unit(180, "lbs"),
  5444. name: "Front",
  5445. image: {
  5446. source: "./media/characters/andy/front.svg"
  5447. }
  5448. }
  5449. },
  5450. [
  5451. {
  5452. name: "Normal",
  5453. height: math.unit(8, "feet"),
  5454. default: true
  5455. },
  5456. {
  5457. name: "Macro",
  5458. height: math.unit(1000, "feet")
  5459. },
  5460. {
  5461. name: "Megamacro",
  5462. height: math.unit(5, "miles")
  5463. },
  5464. {
  5465. name: "Gigamacro",
  5466. height: math.unit(5000, "miles")
  5467. },
  5468. ]
  5469. ))
  5470. characterMakers.push(() => makeCharacter(
  5471. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5472. {
  5473. front: {
  5474. height: math.unit(6, "feet"),
  5475. weight: math.unit(210, "lbs"),
  5476. name: "Front",
  5477. image: {
  5478. source: "./media/characters/cimmaron/front-sfw.svg",
  5479. extra: 701 / 676,
  5480. bottom: 0.046
  5481. }
  5482. },
  5483. back: {
  5484. height: math.unit(6, "feet"),
  5485. weight: math.unit(210, "lbs"),
  5486. name: "Back",
  5487. image: {
  5488. source: "./media/characters/cimmaron/back-sfw.svg",
  5489. extra: 701 / 676,
  5490. bottom: 0.046
  5491. }
  5492. },
  5493. frontNsfw: {
  5494. height: math.unit(6, "feet"),
  5495. weight: math.unit(210, "lbs"),
  5496. name: "Front (NSFW)",
  5497. image: {
  5498. source: "./media/characters/cimmaron/front-nsfw.svg",
  5499. extra: 701 / 676,
  5500. bottom: 0.046
  5501. }
  5502. },
  5503. backNsfw: {
  5504. height: math.unit(6, "feet"),
  5505. weight: math.unit(210, "lbs"),
  5506. name: "Back (NSFW)",
  5507. image: {
  5508. source: "./media/characters/cimmaron/back-nsfw.svg",
  5509. extra: 701 / 676,
  5510. bottom: 0.046
  5511. }
  5512. },
  5513. dick: {
  5514. height: math.unit(1.714, "feet"),
  5515. name: "Dick",
  5516. image: {
  5517. source: "./media/characters/cimmaron/dick.svg"
  5518. }
  5519. },
  5520. },
  5521. [
  5522. {
  5523. name: "Normal",
  5524. height: math.unit(6, "feet"),
  5525. default: true
  5526. },
  5527. {
  5528. name: "Macro Mayor",
  5529. height: math.unit(350, "meters")
  5530. },
  5531. ]
  5532. ))
  5533. characterMakers.push(() => makeCharacter(
  5534. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5535. {
  5536. front: {
  5537. height: math.unit(6, "feet"),
  5538. weight: math.unit(200, "lbs"),
  5539. name: "Front",
  5540. image: {
  5541. source: "./media/characters/akari/front.svg",
  5542. extra: 962 / 901,
  5543. bottom: 0.04
  5544. }
  5545. }
  5546. },
  5547. [
  5548. {
  5549. name: "Micro",
  5550. height: math.unit(5, "inches"),
  5551. default: true
  5552. },
  5553. {
  5554. name: "Normal",
  5555. height: math.unit(7, "feet")
  5556. },
  5557. ]
  5558. ))
  5559. characterMakers.push(() => makeCharacter(
  5560. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5561. {
  5562. front: {
  5563. height: math.unit(6, "feet"),
  5564. weight: math.unit(140, "lbs"),
  5565. name: "Front",
  5566. image: {
  5567. source: "./media/characters/cynosura/front.svg",
  5568. extra: 896 / 847
  5569. }
  5570. },
  5571. back: {
  5572. height: math.unit(6, "feet"),
  5573. weight: math.unit(140, "lbs"),
  5574. name: "Back",
  5575. image: {
  5576. source: "./media/characters/cynosura/back.svg",
  5577. extra: 1365 / 1250
  5578. }
  5579. },
  5580. },
  5581. [
  5582. {
  5583. name: "Micro",
  5584. height: math.unit(4, "inches")
  5585. },
  5586. {
  5587. name: "Normal",
  5588. height: math.unit(5.75, "feet"),
  5589. default: true
  5590. },
  5591. {
  5592. name: "Tall",
  5593. height: math.unit(10, "feet")
  5594. },
  5595. {
  5596. name: "Big",
  5597. height: math.unit(20, "feet")
  5598. },
  5599. {
  5600. name: "Macro",
  5601. height: math.unit(50, "feet")
  5602. },
  5603. ]
  5604. ))
  5605. characterMakers.push(() => makeCharacter(
  5606. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5607. {
  5608. front: {
  5609. height: math.unit(13 + 2/12, "feet"),
  5610. weight: math.unit(800, "kg"),
  5611. name: "Front",
  5612. image: {
  5613. source: "./media/characters/gin/front.svg",
  5614. extra: 1312/1191,
  5615. bottom: 45/1357
  5616. }
  5617. },
  5618. mouth: {
  5619. height: math.unit(2.39 * 1.8, "feet"),
  5620. name: "Mouth",
  5621. image: {
  5622. source: "./media/characters/gin/mouth.svg"
  5623. }
  5624. },
  5625. hand: {
  5626. height: math.unit(1.57 * 2.19, "feet"),
  5627. name: "Hand",
  5628. image: {
  5629. source: "./media/characters/gin/hand.svg"
  5630. }
  5631. },
  5632. foot: {
  5633. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5634. name: "Foot",
  5635. image: {
  5636. source: "./media/characters/gin/foot.svg"
  5637. }
  5638. },
  5639. sole: {
  5640. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5641. name: "Sole",
  5642. image: {
  5643. source: "./media/characters/gin/sole.svg"
  5644. }
  5645. },
  5646. },
  5647. [
  5648. {
  5649. name: "Very Small",
  5650. height: math.unit(13 + 2 / 12, "feet")
  5651. },
  5652. {
  5653. name: "Micro",
  5654. height: math.unit(600, "miles")
  5655. },
  5656. {
  5657. name: "Regular",
  5658. height: math.unit(20, "earths"),
  5659. default: true
  5660. },
  5661. {
  5662. name: "Macro",
  5663. height: math.unit(2.2, "solarradii")
  5664. },
  5665. {
  5666. name: "Teramacro",
  5667. height: math.unit(1.2, "galaxies")
  5668. },
  5669. {
  5670. name: "Omegamacro",
  5671. height: math.unit(200, "universes")
  5672. },
  5673. ]
  5674. ))
  5675. characterMakers.push(() => makeCharacter(
  5676. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5677. {
  5678. front: {
  5679. height: math.unit(6 + 1 / 6, "feet"),
  5680. weight: math.unit(178, "lbs"),
  5681. name: "Front",
  5682. image: {
  5683. source: "./media/characters/guy/front.svg"
  5684. }
  5685. }
  5686. },
  5687. [
  5688. {
  5689. name: "Normal",
  5690. height: math.unit(6 + 1 / 6, "feet"),
  5691. default: true
  5692. },
  5693. {
  5694. name: "Large",
  5695. height: math.unit(25 + 7 / 12, "feet")
  5696. },
  5697. {
  5698. name: "Macro",
  5699. height: math.unit(60 + 9 / 12, "feet")
  5700. },
  5701. {
  5702. name: "Macro+",
  5703. height: math.unit(246, "feet")
  5704. },
  5705. {
  5706. name: "Macro++",
  5707. height: math.unit(878, "feet")
  5708. }
  5709. ]
  5710. ))
  5711. characterMakers.push(() => makeCharacter(
  5712. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5713. {
  5714. front: {
  5715. height: math.unit(9, "feet"),
  5716. weight: math.unit(800, "lbs"),
  5717. name: "Front",
  5718. image: {
  5719. source: "./media/characters/tiberius/front.svg",
  5720. extra: 2295 / 2071
  5721. }
  5722. },
  5723. back: {
  5724. height: math.unit(9, "feet"),
  5725. weight: math.unit(800, "lbs"),
  5726. name: "Back",
  5727. image: {
  5728. source: "./media/characters/tiberius/back.svg",
  5729. extra: 2373 / 2160
  5730. }
  5731. },
  5732. },
  5733. [
  5734. {
  5735. name: "Normal",
  5736. height: math.unit(9, "feet"),
  5737. default: true
  5738. }
  5739. ]
  5740. ))
  5741. characterMakers.push(() => makeCharacter(
  5742. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5743. {
  5744. front: {
  5745. height: math.unit(6, "feet"),
  5746. weight: math.unit(600, "lbs"),
  5747. name: "Front",
  5748. image: {
  5749. source: "./media/characters/surgo/front.svg",
  5750. extra: 3591 / 2227
  5751. }
  5752. },
  5753. back: {
  5754. height: math.unit(6, "feet"),
  5755. weight: math.unit(600, "lbs"),
  5756. name: "Back",
  5757. image: {
  5758. source: "./media/characters/surgo/back.svg",
  5759. extra: 3557 / 2228
  5760. }
  5761. },
  5762. laying: {
  5763. height: math.unit(6 * 0.85, "feet"),
  5764. weight: math.unit(600, "lbs"),
  5765. name: "Laying",
  5766. image: {
  5767. source: "./media/characters/surgo/laying.svg"
  5768. }
  5769. },
  5770. },
  5771. [
  5772. {
  5773. name: "Normal",
  5774. height: math.unit(6, "feet"),
  5775. default: true
  5776. }
  5777. ]
  5778. ))
  5779. characterMakers.push(() => makeCharacter(
  5780. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5781. {
  5782. side: {
  5783. height: math.unit(6, "feet"),
  5784. weight: math.unit(150, "lbs"),
  5785. name: "Side",
  5786. image: {
  5787. source: "./media/characters/cibus/side.svg",
  5788. extra: 800 / 400
  5789. }
  5790. },
  5791. },
  5792. [
  5793. {
  5794. name: "Normal",
  5795. height: math.unit(6, "feet"),
  5796. default: true
  5797. }
  5798. ]
  5799. ))
  5800. characterMakers.push(() => makeCharacter(
  5801. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5802. {
  5803. front: {
  5804. height: math.unit(6, "feet"),
  5805. weight: math.unit(240, "lbs"),
  5806. name: "Front",
  5807. image: {
  5808. source: "./media/characters/nibbles/front.svg"
  5809. }
  5810. },
  5811. side: {
  5812. height: math.unit(6, "feet"),
  5813. weight: math.unit(240, "lbs"),
  5814. name: "Side",
  5815. image: {
  5816. source: "./media/characters/nibbles/side.svg"
  5817. }
  5818. },
  5819. },
  5820. [
  5821. {
  5822. name: "Normal",
  5823. height: math.unit(9, "feet"),
  5824. default: true
  5825. }
  5826. ]
  5827. ))
  5828. characterMakers.push(() => makeCharacter(
  5829. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5830. {
  5831. side: {
  5832. height: math.unit(5 + 1 / 6, "feet"),
  5833. weight: math.unit(130, "lbs"),
  5834. name: "Side",
  5835. image: {
  5836. source: "./media/characters/rikky/side.svg",
  5837. extra: 851 / 801
  5838. }
  5839. },
  5840. },
  5841. [
  5842. {
  5843. name: "Normal",
  5844. height: math.unit(5 + 1 / 6, "feet")
  5845. },
  5846. {
  5847. name: "Macro",
  5848. height: math.unit(152, "feet"),
  5849. default: true
  5850. },
  5851. {
  5852. name: "Megamacro",
  5853. height: math.unit(7, "miles")
  5854. }
  5855. ]
  5856. ))
  5857. characterMakers.push(() => makeCharacter(
  5858. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5859. {
  5860. side: {
  5861. height: math.unit(370, "cm"),
  5862. weight: math.unit(350, "lbs"),
  5863. name: "Side",
  5864. image: {
  5865. source: "./media/characters/malfressa/side.svg"
  5866. }
  5867. },
  5868. walking: {
  5869. height: math.unit(370, "cm"),
  5870. weight: math.unit(350, "lbs"),
  5871. name: "Walking",
  5872. image: {
  5873. source: "./media/characters/malfressa/walking.svg"
  5874. }
  5875. },
  5876. feral: {
  5877. height: math.unit(2500, "cm"),
  5878. weight: math.unit(100000, "lbs"),
  5879. name: "Feral",
  5880. image: {
  5881. source: "./media/characters/malfressa/feral.svg",
  5882. extra: 2108 / 837,
  5883. bottom: 0.02
  5884. }
  5885. },
  5886. },
  5887. [
  5888. {
  5889. name: "Normal",
  5890. height: math.unit(370, "cm")
  5891. },
  5892. {
  5893. name: "Macro",
  5894. height: math.unit(300, "meters"),
  5895. default: true
  5896. }
  5897. ]
  5898. ))
  5899. characterMakers.push(() => makeCharacter(
  5900. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5901. {
  5902. front: {
  5903. height: math.unit(6, "feet"),
  5904. weight: math.unit(60, "kg"),
  5905. name: "Front",
  5906. image: {
  5907. source: "./media/characters/jaro/front.svg"
  5908. }
  5909. },
  5910. back: {
  5911. height: math.unit(6, "feet"),
  5912. weight: math.unit(60, "kg"),
  5913. name: "Back",
  5914. image: {
  5915. source: "./media/characters/jaro/back.svg"
  5916. }
  5917. },
  5918. },
  5919. [
  5920. {
  5921. name: "Micro",
  5922. height: math.unit(7, "inches")
  5923. },
  5924. {
  5925. name: "Normal",
  5926. height: math.unit(5.5, "feet"),
  5927. default: true
  5928. },
  5929. {
  5930. name: "Minimacro",
  5931. height: math.unit(20, "feet")
  5932. },
  5933. {
  5934. name: "Macro",
  5935. height: math.unit(200, "meters")
  5936. }
  5937. ]
  5938. ))
  5939. characterMakers.push(() => makeCharacter(
  5940. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5941. {
  5942. front: {
  5943. height: math.unit(6, "feet"),
  5944. weight: math.unit(195, "lb"),
  5945. name: "Front",
  5946. image: {
  5947. source: "./media/characters/rogue/front.svg"
  5948. }
  5949. },
  5950. },
  5951. [
  5952. {
  5953. name: "Macro",
  5954. height: math.unit(90, "feet"),
  5955. default: true
  5956. },
  5957. ]
  5958. ))
  5959. characterMakers.push(() => makeCharacter(
  5960. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5961. {
  5962. front: {
  5963. height: math.unit(5 + 8 / 12, "feet"),
  5964. weight: math.unit(140, "lb"),
  5965. name: "Front",
  5966. image: {
  5967. source: "./media/characters/piper/front.svg",
  5968. extra: 3948/3655,
  5969. bottom: 0/3948
  5970. }
  5971. },
  5972. },
  5973. [
  5974. {
  5975. name: "Micro",
  5976. height: math.unit(2, "inches")
  5977. },
  5978. {
  5979. name: "Normal",
  5980. height: math.unit(5 + 8 / 12, "feet")
  5981. },
  5982. {
  5983. name: "Macro",
  5984. height: math.unit(250, "feet"),
  5985. default: true
  5986. },
  5987. {
  5988. name: "Megamacro",
  5989. height: math.unit(7, "miles")
  5990. },
  5991. ]
  5992. ))
  5993. characterMakers.push(() => makeCharacter(
  5994. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5995. {
  5996. front: {
  5997. height: math.unit(6, "feet"),
  5998. weight: math.unit(220, "lb"),
  5999. name: "Front",
  6000. image: {
  6001. source: "./media/characters/gemini/front.svg"
  6002. }
  6003. },
  6004. back: {
  6005. height: math.unit(6, "feet"),
  6006. weight: math.unit(220, "lb"),
  6007. name: "Back",
  6008. image: {
  6009. source: "./media/characters/gemini/back.svg"
  6010. }
  6011. },
  6012. kneeling: {
  6013. height: math.unit(6 / 1.5, "feet"),
  6014. weight: math.unit(220, "lb"),
  6015. name: "Kneeling",
  6016. image: {
  6017. source: "./media/characters/gemini/kneeling.svg",
  6018. bottom: 0.02
  6019. }
  6020. },
  6021. },
  6022. [
  6023. {
  6024. name: "Macro",
  6025. height: math.unit(300, "meters"),
  6026. default: true
  6027. },
  6028. {
  6029. name: "Megamacro",
  6030. height: math.unit(6900, "meters")
  6031. },
  6032. ]
  6033. ))
  6034. characterMakers.push(() => makeCharacter(
  6035. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6036. {
  6037. anthro: {
  6038. height: math.unit(2.35, "meters"),
  6039. weight: math.unit(73, "kg"),
  6040. name: "Anthro",
  6041. image: {
  6042. source: "./media/characters/alicia/anthro.svg",
  6043. extra: 2571 / 2385,
  6044. bottom: 75 / 2648
  6045. }
  6046. },
  6047. paw: {
  6048. height: math.unit(1.32, "feet"),
  6049. name: "Paw",
  6050. image: {
  6051. source: "./media/characters/alicia/paw.svg"
  6052. }
  6053. },
  6054. feral: {
  6055. height: math.unit(1.69, "meters"),
  6056. weight: math.unit(73, "kg"),
  6057. name: "Feral",
  6058. image: {
  6059. source: "./media/characters/alicia/feral.svg",
  6060. extra: 2123 / 1715,
  6061. bottom: 222 / 2349
  6062. }
  6063. },
  6064. },
  6065. [
  6066. {
  6067. name: "Normal",
  6068. height: math.unit(2.35, "meters")
  6069. },
  6070. {
  6071. name: "Macro",
  6072. height: math.unit(60, "meters"),
  6073. default: true
  6074. },
  6075. {
  6076. name: "Megamacro",
  6077. height: math.unit(10000, "kilometers")
  6078. },
  6079. ]
  6080. ))
  6081. characterMakers.push(() => makeCharacter(
  6082. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6083. {
  6084. front: {
  6085. height: math.unit(7, "feet"),
  6086. weight: math.unit(250, "lbs"),
  6087. name: "Front",
  6088. image: {
  6089. source: "./media/characters/archy/front.svg"
  6090. }
  6091. }
  6092. },
  6093. [
  6094. {
  6095. name: "Micro",
  6096. height: math.unit(1, "inch")
  6097. },
  6098. {
  6099. name: "Shorty",
  6100. height: math.unit(5, "feet")
  6101. },
  6102. {
  6103. name: "Normal",
  6104. height: math.unit(7, "feet")
  6105. },
  6106. {
  6107. name: "Macro",
  6108. height: math.unit(600, "meters"),
  6109. default: true
  6110. },
  6111. {
  6112. name: "Megamacro",
  6113. height: math.unit(1, "mile")
  6114. },
  6115. ]
  6116. ))
  6117. characterMakers.push(() => makeCharacter(
  6118. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6119. {
  6120. front: {
  6121. height: math.unit(1.65, "meters"),
  6122. weight: math.unit(74, "kg"),
  6123. name: "Front",
  6124. image: {
  6125. source: "./media/characters/berri/front.svg",
  6126. extra: 857 / 837,
  6127. bottom: 18 / 877
  6128. }
  6129. },
  6130. bum: {
  6131. height: math.unit(1.46, "feet"),
  6132. name: "Bum",
  6133. image: {
  6134. source: "./media/characters/berri/bum.svg"
  6135. }
  6136. },
  6137. mouth: {
  6138. height: math.unit(0.44, "feet"),
  6139. name: "Mouth",
  6140. image: {
  6141. source: "./media/characters/berri/mouth.svg"
  6142. }
  6143. },
  6144. paw: {
  6145. height: math.unit(0.826, "feet"),
  6146. name: "Paw",
  6147. image: {
  6148. source: "./media/characters/berri/paw.svg"
  6149. }
  6150. },
  6151. },
  6152. [
  6153. {
  6154. name: "Normal",
  6155. height: math.unit(1.65, "meters")
  6156. },
  6157. {
  6158. name: "Macro",
  6159. height: math.unit(60, "m"),
  6160. default: true
  6161. },
  6162. {
  6163. name: "Megamacro",
  6164. height: math.unit(9.213, "km")
  6165. },
  6166. {
  6167. name: "Planet Eater",
  6168. height: math.unit(489, "megameters")
  6169. },
  6170. {
  6171. name: "Teramacro",
  6172. height: math.unit(2471635000000, "meters")
  6173. },
  6174. {
  6175. name: "Examacro",
  6176. height: math.unit(8.0624e+26, "meters")
  6177. }
  6178. ]
  6179. ))
  6180. characterMakers.push(() => makeCharacter(
  6181. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6182. {
  6183. front: {
  6184. height: math.unit(1.72, "meters"),
  6185. weight: math.unit(68, "kg"),
  6186. name: "Front",
  6187. image: {
  6188. source: "./media/characters/lexi/front.svg"
  6189. }
  6190. }
  6191. },
  6192. [
  6193. {
  6194. name: "Very Smol",
  6195. height: math.unit(10, "mm")
  6196. },
  6197. {
  6198. name: "Micro",
  6199. height: math.unit(6.8, "cm"),
  6200. default: true
  6201. },
  6202. {
  6203. name: "Normal",
  6204. height: math.unit(1.72, "m")
  6205. }
  6206. ]
  6207. ))
  6208. characterMakers.push(() => makeCharacter(
  6209. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6210. {
  6211. front: {
  6212. height: math.unit(1.69, "meters"),
  6213. weight: math.unit(68, "kg"),
  6214. name: "Front",
  6215. image: {
  6216. source: "./media/characters/martin/front.svg",
  6217. extra: 596 / 581
  6218. }
  6219. }
  6220. },
  6221. [
  6222. {
  6223. name: "Micro",
  6224. height: math.unit(6.85, "cm"),
  6225. default: true
  6226. },
  6227. {
  6228. name: "Normal",
  6229. height: math.unit(1.69, "m")
  6230. }
  6231. ]
  6232. ))
  6233. characterMakers.push(() => makeCharacter(
  6234. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6235. {
  6236. front: {
  6237. height: math.unit(1.69, "meters"),
  6238. weight: math.unit(68, "kg"),
  6239. name: "Front",
  6240. image: {
  6241. source: "./media/characters/juno/front.svg"
  6242. }
  6243. }
  6244. },
  6245. [
  6246. {
  6247. name: "Micro",
  6248. height: math.unit(7, "cm")
  6249. },
  6250. {
  6251. name: "Normal",
  6252. height: math.unit(1.89, "m")
  6253. },
  6254. {
  6255. name: "Macro",
  6256. height: math.unit(353, "meters"),
  6257. default: true
  6258. }
  6259. ]
  6260. ))
  6261. characterMakers.push(() => makeCharacter(
  6262. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6263. {
  6264. front: {
  6265. height: math.unit(1.93, "meters"),
  6266. weight: math.unit(83, "kg"),
  6267. name: "Front",
  6268. image: {
  6269. source: "./media/characters/samantha/front.svg"
  6270. }
  6271. },
  6272. frontClothed: {
  6273. height: math.unit(1.93, "meters"),
  6274. weight: math.unit(83, "kg"),
  6275. name: "Front (Clothed)",
  6276. image: {
  6277. source: "./media/characters/samantha/front-clothed.svg"
  6278. }
  6279. },
  6280. back: {
  6281. height: math.unit(1.93, "meters"),
  6282. weight: math.unit(83, "kg"),
  6283. name: "Back",
  6284. image: {
  6285. source: "./media/characters/samantha/back.svg"
  6286. }
  6287. },
  6288. },
  6289. [
  6290. {
  6291. name: "Normal",
  6292. height: math.unit(1.93, "m")
  6293. },
  6294. {
  6295. name: "Macro",
  6296. height: math.unit(74, "meters"),
  6297. default: true
  6298. },
  6299. {
  6300. name: "Macro+",
  6301. height: math.unit(223, "meters"),
  6302. },
  6303. {
  6304. name: "Megamacro",
  6305. height: math.unit(8381, "meters"),
  6306. },
  6307. {
  6308. name: "Megamacro+",
  6309. height: math.unit(12000, "kilometers")
  6310. },
  6311. ]
  6312. ))
  6313. characterMakers.push(() => makeCharacter(
  6314. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6315. {
  6316. front: {
  6317. height: math.unit(1.92, "meters"),
  6318. weight: math.unit(80, "kg"),
  6319. name: "Front",
  6320. image: {
  6321. source: "./media/characters/dr-clay/front.svg"
  6322. }
  6323. },
  6324. frontClothed: {
  6325. height: math.unit(1.92, "meters"),
  6326. weight: math.unit(80, "kg"),
  6327. name: "Front (Clothed)",
  6328. image: {
  6329. source: "./media/characters/dr-clay/front-clothed.svg"
  6330. }
  6331. }
  6332. },
  6333. [
  6334. {
  6335. name: "Normal",
  6336. height: math.unit(1.92, "m")
  6337. },
  6338. {
  6339. name: "Macro",
  6340. height: math.unit(214, "meters"),
  6341. default: true
  6342. },
  6343. {
  6344. name: "Macro+",
  6345. height: math.unit(12.237, "meters"),
  6346. },
  6347. {
  6348. name: "Megamacro",
  6349. height: math.unit(557, "megameters"),
  6350. },
  6351. {
  6352. name: "Unimaginable",
  6353. height: math.unit(120e9, "lightyears")
  6354. },
  6355. ]
  6356. ))
  6357. characterMakers.push(() => makeCharacter(
  6358. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6359. {
  6360. front: {
  6361. height: math.unit(2, "meters"),
  6362. weight: math.unit(80, "kg"),
  6363. name: "Front",
  6364. image: {
  6365. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6366. }
  6367. }
  6368. },
  6369. [
  6370. {
  6371. name: "Teramacro",
  6372. height: math.unit(500000, "lightyears"),
  6373. default: true
  6374. },
  6375. ]
  6376. ))
  6377. characterMakers.push(() => makeCharacter(
  6378. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6379. {
  6380. front: {
  6381. height: math.unit(2, "meters"),
  6382. weight: math.unit(150, "kg"),
  6383. name: "Front",
  6384. image: {
  6385. source: "./media/characters/vemus/front.svg",
  6386. extra: 1074/936,
  6387. bottom: 23/1097
  6388. }
  6389. }
  6390. },
  6391. [
  6392. {
  6393. name: "Normal",
  6394. height: math.unit(3.75, "meters"),
  6395. default: true
  6396. },
  6397. {
  6398. name: "Big",
  6399. height: math.unit(8, "meters")
  6400. },
  6401. {
  6402. name: "Macro",
  6403. height: math.unit(100, "meters")
  6404. },
  6405. {
  6406. name: "Macro+",
  6407. height: math.unit(1500, "meters")
  6408. },
  6409. {
  6410. name: "Stellar",
  6411. height: math.unit(14e8, "meters")
  6412. },
  6413. ]
  6414. ))
  6415. characterMakers.push(() => makeCharacter(
  6416. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6417. {
  6418. front: {
  6419. height: math.unit(2, "meters"),
  6420. weight: math.unit(70, "kg"),
  6421. name: "Front",
  6422. image: {
  6423. source: "./media/characters/beherit/front.svg",
  6424. extra: 1408 / 1242
  6425. }
  6426. }
  6427. },
  6428. [
  6429. {
  6430. name: "Normal",
  6431. height: math.unit(6, "feet")
  6432. },
  6433. {
  6434. name: "Lorg",
  6435. height: math.unit(25, "feet"),
  6436. default: true
  6437. },
  6438. {
  6439. name: "Lorger",
  6440. height: math.unit(75, "feet")
  6441. },
  6442. {
  6443. name: "Macro",
  6444. height: math.unit(200, "meters")
  6445. },
  6446. ]
  6447. ))
  6448. characterMakers.push(() => makeCharacter(
  6449. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6450. {
  6451. front: {
  6452. height: math.unit(2, "meters"),
  6453. weight: math.unit(150, "kg"),
  6454. name: "Front",
  6455. image: {
  6456. source: "./media/characters/everett/front.svg",
  6457. extra: 2038 / 1737,
  6458. bottom: 0.03
  6459. }
  6460. },
  6461. paw: {
  6462. height: math.unit(2 / 3.6, "meters"),
  6463. name: "Paw",
  6464. image: {
  6465. source: "./media/characters/everett/paw.svg"
  6466. }
  6467. },
  6468. },
  6469. [
  6470. {
  6471. name: "Normal",
  6472. height: math.unit(15, "feet"),
  6473. default: true
  6474. },
  6475. {
  6476. name: "Lorg",
  6477. height: math.unit(70, "feet"),
  6478. default: true
  6479. },
  6480. {
  6481. name: "Lorger",
  6482. height: math.unit(250, "feet")
  6483. },
  6484. {
  6485. name: "Macro",
  6486. height: math.unit(500, "meters")
  6487. },
  6488. ]
  6489. ))
  6490. characterMakers.push(() => makeCharacter(
  6491. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6492. {
  6493. front: {
  6494. height: math.unit(2, "meters"),
  6495. weight: math.unit(86, "kg"),
  6496. name: "Front",
  6497. image: {
  6498. source: "./media/characters/rose/front.svg",
  6499. extra: 350/335,
  6500. bottom: 10/360
  6501. }
  6502. },
  6503. frontAlt: {
  6504. height: math.unit(1.6, "meters"),
  6505. weight: math.unit(86, "kg"),
  6506. name: "Front (Alt)",
  6507. image: {
  6508. source: "./media/characters/rose/front-alt.svg",
  6509. extra: 299/283,
  6510. bottom: 3/302
  6511. }
  6512. },
  6513. plush: {
  6514. height: math.unit(2, "meters"),
  6515. weight: math.unit(86/3, "kg"),
  6516. name: "Plush",
  6517. image: {
  6518. source: "./media/characters/rose/plush.svg",
  6519. extra: 361/337,
  6520. bottom: 11/372
  6521. }
  6522. },
  6523. },
  6524. [
  6525. {
  6526. name: "Mini-Micro",
  6527. height: math.unit(1, "cm")
  6528. },
  6529. {
  6530. name: "Micro",
  6531. height: math.unit(3.5, "inches"),
  6532. default: true
  6533. },
  6534. {
  6535. name: "Normal",
  6536. height: math.unit(6 + 1 / 6, "feet")
  6537. },
  6538. {
  6539. name: "Mini-Macro",
  6540. height: math.unit(9 + 10 / 12, "feet")
  6541. },
  6542. ]
  6543. ))
  6544. characterMakers.push(() => makeCharacter(
  6545. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6546. {
  6547. front: {
  6548. height: math.unit(2, "meters"),
  6549. weight: math.unit(350, "lbs"),
  6550. name: "Front",
  6551. image: {
  6552. source: "./media/characters/regal/front.svg"
  6553. }
  6554. },
  6555. back: {
  6556. height: math.unit(2, "meters"),
  6557. weight: math.unit(350, "lbs"),
  6558. name: "Back",
  6559. image: {
  6560. source: "./media/characters/regal/back.svg"
  6561. }
  6562. },
  6563. },
  6564. [
  6565. {
  6566. name: "Macro",
  6567. height: math.unit(350, "feet"),
  6568. default: true
  6569. }
  6570. ]
  6571. ))
  6572. characterMakers.push(() => makeCharacter(
  6573. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6574. {
  6575. front: {
  6576. height: math.unit(4 + 11 / 12, "feet"),
  6577. weight: math.unit(100, "lbs"),
  6578. name: "Front",
  6579. image: {
  6580. source: "./media/characters/opal/front.svg"
  6581. }
  6582. },
  6583. frontAlt: {
  6584. height: math.unit(4 + 11 / 12, "feet"),
  6585. weight: math.unit(100, "lbs"),
  6586. name: "Front (Alt)",
  6587. image: {
  6588. source: "./media/characters/opal/front-alt.svg"
  6589. }
  6590. },
  6591. },
  6592. [
  6593. {
  6594. name: "Small",
  6595. height: math.unit(4 + 11 / 12, "feet")
  6596. },
  6597. {
  6598. name: "Normal",
  6599. height: math.unit(20, "feet"),
  6600. default: true
  6601. },
  6602. {
  6603. name: "Macro",
  6604. height: math.unit(120, "feet")
  6605. },
  6606. {
  6607. name: "Megamacro",
  6608. height: math.unit(80, "miles")
  6609. },
  6610. {
  6611. name: "True Size",
  6612. height: math.unit(100000, "lightyears")
  6613. },
  6614. ]
  6615. ))
  6616. characterMakers.push(() => makeCharacter(
  6617. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6618. {
  6619. front: {
  6620. height: math.unit(6, "feet"),
  6621. weight: math.unit(200, "lbs"),
  6622. name: "Front",
  6623. image: {
  6624. source: "./media/characters/vector-wuff/front.svg"
  6625. }
  6626. }
  6627. },
  6628. [
  6629. {
  6630. name: "Normal",
  6631. height: math.unit(2.8, "meters")
  6632. },
  6633. {
  6634. name: "Macro",
  6635. height: math.unit(450, "meters"),
  6636. default: true
  6637. },
  6638. {
  6639. name: "Megamacro",
  6640. height: math.unit(15, "kilometers")
  6641. }
  6642. ]
  6643. ))
  6644. characterMakers.push(() => makeCharacter(
  6645. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6646. {
  6647. front: {
  6648. height: math.unit(6, "feet"),
  6649. weight: math.unit(256, "lbs"),
  6650. name: "Front",
  6651. image: {
  6652. source: "./media/characters/dannik/front.svg"
  6653. }
  6654. }
  6655. },
  6656. [
  6657. {
  6658. name: "Macro",
  6659. height: math.unit(69.57, "meters"),
  6660. default: true
  6661. },
  6662. ]
  6663. ))
  6664. characterMakers.push(() => makeCharacter(
  6665. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6666. {
  6667. front: {
  6668. height: math.unit(6, "feet"),
  6669. weight: math.unit(120, "lbs"),
  6670. name: "Front",
  6671. image: {
  6672. source: "./media/characters/azura-saharah/front.svg"
  6673. }
  6674. },
  6675. back: {
  6676. height: math.unit(6, "feet"),
  6677. weight: math.unit(120, "lbs"),
  6678. name: "Back",
  6679. image: {
  6680. source: "./media/characters/azura-saharah/back.svg"
  6681. }
  6682. },
  6683. },
  6684. [
  6685. {
  6686. name: "Macro",
  6687. height: math.unit(100, "feet"),
  6688. default: true
  6689. },
  6690. ]
  6691. ))
  6692. characterMakers.push(() => makeCharacter(
  6693. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6694. {
  6695. side: {
  6696. height: math.unit(5 + 4 / 12, "feet"),
  6697. weight: math.unit(163, "lbs"),
  6698. name: "Side",
  6699. image: {
  6700. source: "./media/characters/kennedy/side.svg"
  6701. }
  6702. }
  6703. },
  6704. [
  6705. {
  6706. name: "Standard Doggo",
  6707. height: math.unit(5 + 4 / 12, "feet")
  6708. },
  6709. {
  6710. name: "Big Doggo",
  6711. height: math.unit(25 + 3 / 12, "feet"),
  6712. default: true
  6713. },
  6714. ]
  6715. ))
  6716. characterMakers.push(() => makeCharacter(
  6717. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6718. {
  6719. front: {
  6720. height: math.unit(6, "feet"),
  6721. weight: math.unit(90, "lbs"),
  6722. name: "Front",
  6723. image: {
  6724. source: "./media/characters/odi-lunar/front.svg"
  6725. }
  6726. }
  6727. },
  6728. [
  6729. {
  6730. name: "Micro",
  6731. height: math.unit(3, "inches"),
  6732. default: true
  6733. },
  6734. {
  6735. name: "Normal",
  6736. height: math.unit(5.5, "feet")
  6737. }
  6738. ]
  6739. ))
  6740. characterMakers.push(() => makeCharacter(
  6741. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6742. {
  6743. back: {
  6744. height: math.unit(6, "feet"),
  6745. weight: math.unit(220, "lbs"),
  6746. name: "Back",
  6747. image: {
  6748. source: "./media/characters/mandake/back.svg"
  6749. }
  6750. }
  6751. },
  6752. [
  6753. {
  6754. name: "Normal",
  6755. height: math.unit(7, "feet"),
  6756. default: true
  6757. },
  6758. {
  6759. name: "Macro",
  6760. height: math.unit(78, "feet")
  6761. },
  6762. {
  6763. name: "Macro+",
  6764. height: math.unit(300, "meters")
  6765. },
  6766. {
  6767. name: "Macro++",
  6768. height: math.unit(2400, "feet")
  6769. },
  6770. {
  6771. name: "Megamacro",
  6772. height: math.unit(5167, "meters")
  6773. },
  6774. {
  6775. name: "Gigamacro",
  6776. height: math.unit(41769, "miles")
  6777. },
  6778. ]
  6779. ))
  6780. characterMakers.push(() => makeCharacter(
  6781. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6782. {
  6783. front: {
  6784. height: math.unit(6, "feet"),
  6785. weight: math.unit(120, "lbs"),
  6786. name: "Front",
  6787. image: {
  6788. source: "./media/characters/yozey/front.svg"
  6789. }
  6790. },
  6791. frontAlt: {
  6792. height: math.unit(6, "feet"),
  6793. weight: math.unit(120, "lbs"),
  6794. name: "Front (Alt)",
  6795. image: {
  6796. source: "./media/characters/yozey/front-alt.svg"
  6797. }
  6798. },
  6799. side: {
  6800. height: math.unit(6, "feet"),
  6801. weight: math.unit(120, "lbs"),
  6802. name: "Side",
  6803. image: {
  6804. source: "./media/characters/yozey/side.svg"
  6805. }
  6806. },
  6807. },
  6808. [
  6809. {
  6810. name: "Micro",
  6811. height: math.unit(3, "inches"),
  6812. default: true
  6813. },
  6814. {
  6815. name: "Normal",
  6816. height: math.unit(6, "feet")
  6817. }
  6818. ]
  6819. ))
  6820. characterMakers.push(() => makeCharacter(
  6821. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6822. {
  6823. front: {
  6824. height: math.unit(6, "feet"),
  6825. weight: math.unit(103, "lbs"),
  6826. name: "Front",
  6827. image: {
  6828. source: "./media/characters/valeska-voss/front.svg"
  6829. }
  6830. }
  6831. },
  6832. [
  6833. {
  6834. name: "Mini-Sized Sub",
  6835. height: math.unit(3.1, "inches")
  6836. },
  6837. {
  6838. name: "Mid-Sized Sub",
  6839. height: math.unit(6.2, "inches")
  6840. },
  6841. {
  6842. name: "Full-Sized Sub",
  6843. height: math.unit(9.3, "inches")
  6844. },
  6845. {
  6846. name: "Normal",
  6847. height: math.unit(5 + 2 / 12, "foot"),
  6848. default: true
  6849. },
  6850. ]
  6851. ))
  6852. characterMakers.push(() => makeCharacter(
  6853. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6854. {
  6855. front: {
  6856. height: math.unit(6, "feet"),
  6857. weight: math.unit(160, "lbs"),
  6858. name: "Front",
  6859. image: {
  6860. source: "./media/characters/gene-zeta/front.svg",
  6861. extra: 3006 / 2826,
  6862. bottom: 182 / 3188
  6863. }
  6864. }
  6865. },
  6866. [
  6867. {
  6868. name: "Micro",
  6869. height: math.unit(6, "inches")
  6870. },
  6871. {
  6872. name: "Normal",
  6873. height: math.unit(5 + 11 / 12, "foot"),
  6874. default: true
  6875. },
  6876. {
  6877. name: "Macro",
  6878. height: math.unit(140, "feet")
  6879. },
  6880. {
  6881. name: "Supercharged",
  6882. height: math.unit(2500, "feet")
  6883. },
  6884. ]
  6885. ))
  6886. characterMakers.push(() => makeCharacter(
  6887. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6888. {
  6889. front: {
  6890. height: math.unit(6, "feet"),
  6891. weight: math.unit(350, "lbs"),
  6892. name: "Front",
  6893. image: {
  6894. source: "./media/characters/razinox/front.svg",
  6895. extra: 1686 / 1548,
  6896. bottom: 28.2 / 1868
  6897. }
  6898. },
  6899. back: {
  6900. height: math.unit(6, "feet"),
  6901. weight: math.unit(350, "lbs"),
  6902. name: "Back",
  6903. image: {
  6904. source: "./media/characters/razinox/back.svg",
  6905. extra: 1660 / 1590,
  6906. bottom: 15 / 1665
  6907. }
  6908. },
  6909. },
  6910. [
  6911. {
  6912. name: "Normal",
  6913. height: math.unit(10 + 8 / 12, "foot")
  6914. },
  6915. {
  6916. name: "Minimacro",
  6917. height: math.unit(15, "foot")
  6918. },
  6919. {
  6920. name: "Macro",
  6921. height: math.unit(60, "foot"),
  6922. default: true
  6923. },
  6924. {
  6925. name: "Megamacro",
  6926. height: math.unit(5, "miles")
  6927. },
  6928. {
  6929. name: "Gigamacro",
  6930. height: math.unit(6000, "miles")
  6931. },
  6932. ]
  6933. ))
  6934. characterMakers.push(() => makeCharacter(
  6935. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6936. {
  6937. front: {
  6938. height: math.unit(6, "feet"),
  6939. weight: math.unit(150, "lbs"),
  6940. name: "Front",
  6941. image: {
  6942. source: "./media/characters/cobalt/front.svg"
  6943. }
  6944. }
  6945. },
  6946. [
  6947. {
  6948. name: "Normal",
  6949. height: math.unit(8 + 1 / 12, "foot")
  6950. },
  6951. {
  6952. name: "Macro",
  6953. height: math.unit(111, "foot"),
  6954. default: true
  6955. },
  6956. {
  6957. name: "Supracosmic",
  6958. height: math.unit(1e42, "feet")
  6959. },
  6960. ]
  6961. ))
  6962. characterMakers.push(() => makeCharacter(
  6963. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6964. {
  6965. front: {
  6966. height: math.unit(6, "feet"),
  6967. weight: math.unit(140, "lbs"),
  6968. name: "Front",
  6969. image: {
  6970. source: "./media/characters/amanda/front.svg"
  6971. }
  6972. }
  6973. },
  6974. [
  6975. {
  6976. name: "Micro",
  6977. height: math.unit(5, "inches"),
  6978. default: true
  6979. },
  6980. ]
  6981. ))
  6982. characterMakers.push(() => makeCharacter(
  6983. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6984. {
  6985. front: {
  6986. height: math.unit(2.75, "meters"),
  6987. weight: math.unit(1200, "lb"),
  6988. name: "Front",
  6989. image: {
  6990. source: "./media/characters/teal/front.svg",
  6991. extra: 2463 / 2320,
  6992. bottom: 166 / 2629
  6993. }
  6994. },
  6995. back: {
  6996. height: math.unit(2.75, "meters"),
  6997. weight: math.unit(1200, "lb"),
  6998. name: "Back",
  6999. image: {
  7000. source: "./media/characters/teal/back.svg",
  7001. extra: 2580 / 2489,
  7002. bottom: 151 / 2731
  7003. }
  7004. },
  7005. sitting: {
  7006. height: math.unit(1.9, "meters"),
  7007. weight: math.unit(1200, "lb"),
  7008. name: "Sitting",
  7009. image: {
  7010. source: "./media/characters/teal/sitting.svg",
  7011. extra: 623 / 590,
  7012. bottom: 121 / 744
  7013. }
  7014. },
  7015. standing: {
  7016. height: math.unit(2.75, "meters"),
  7017. weight: math.unit(1200, "lb"),
  7018. name: "Standing",
  7019. image: {
  7020. source: "./media/characters/teal/standing.svg",
  7021. extra: 923 / 893,
  7022. bottom: 60 / 983
  7023. }
  7024. },
  7025. stretching: {
  7026. height: math.unit(3.65, "meters"),
  7027. weight: math.unit(1200, "lb"),
  7028. name: "Stretching",
  7029. image: {
  7030. source: "./media/characters/teal/stretching.svg",
  7031. extra: 1276 / 1244,
  7032. bottom: 0 / 1276
  7033. }
  7034. },
  7035. legged: {
  7036. height: math.unit(1.3, "meters"),
  7037. weight: math.unit(100, "lb"),
  7038. name: "Legged",
  7039. image: {
  7040. source: "./media/characters/teal/legged.svg",
  7041. extra: 462 / 437,
  7042. bottom: 24 / 486
  7043. }
  7044. },
  7045. naga: {
  7046. height: math.unit(5.4, "meters"),
  7047. weight: math.unit(4000, "lb"),
  7048. name: "Naga",
  7049. image: {
  7050. source: "./media/characters/teal/naga.svg",
  7051. extra: 1902 / 1858,
  7052. bottom: 0 / 1902
  7053. }
  7054. },
  7055. hand: {
  7056. height: math.unit(0.52, "meters"),
  7057. name: "Hand",
  7058. image: {
  7059. source: "./media/characters/teal/hand.svg"
  7060. }
  7061. },
  7062. maw: {
  7063. height: math.unit(0.43, "meters"),
  7064. name: "Maw",
  7065. image: {
  7066. source: "./media/characters/teal/maw.svg"
  7067. }
  7068. },
  7069. slit: {
  7070. height: math.unit(0.25, "meters"),
  7071. name: "Slit",
  7072. image: {
  7073. source: "./media/characters/teal/slit.svg"
  7074. }
  7075. },
  7076. },
  7077. [
  7078. {
  7079. name: "Normal",
  7080. height: math.unit(2.75, "meters"),
  7081. default: true
  7082. },
  7083. {
  7084. name: "Macro",
  7085. height: math.unit(300, "feet")
  7086. },
  7087. {
  7088. name: "Macro+",
  7089. height: math.unit(2000, "feet")
  7090. },
  7091. ]
  7092. ))
  7093. characterMakers.push(() => makeCharacter(
  7094. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7095. {
  7096. frontCat: {
  7097. height: math.unit(6, "feet"),
  7098. weight: math.unit(180, "lbs"),
  7099. name: "Front (Cat)",
  7100. image: {
  7101. source: "./media/characters/ravin-amulet/front-cat.svg"
  7102. }
  7103. },
  7104. frontCatAlt: {
  7105. height: math.unit(6, "feet"),
  7106. weight: math.unit(180, "lbs"),
  7107. name: "Front (Alt, Cat)",
  7108. image: {
  7109. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7110. }
  7111. },
  7112. frontWerewolf: {
  7113. height: math.unit(6 * 1.2, "feet"),
  7114. weight: math.unit(225, "lbs"),
  7115. name: "Front (Werewolf)",
  7116. image: {
  7117. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7118. }
  7119. },
  7120. backWerewolf: {
  7121. height: math.unit(6 * 1.2, "feet"),
  7122. weight: math.unit(225, "lbs"),
  7123. name: "Back (Werewolf)",
  7124. image: {
  7125. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7126. }
  7127. },
  7128. },
  7129. [
  7130. {
  7131. name: "Nano",
  7132. height: math.unit(1, "micrometer")
  7133. },
  7134. {
  7135. name: "Micro",
  7136. height: math.unit(1, "inch")
  7137. },
  7138. {
  7139. name: "Normal",
  7140. height: math.unit(6, "feet"),
  7141. default: true
  7142. },
  7143. {
  7144. name: "Macro",
  7145. height: math.unit(60, "feet")
  7146. }
  7147. ]
  7148. ))
  7149. characterMakers.push(() => makeCharacter(
  7150. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7151. {
  7152. front: {
  7153. height: math.unit(6, "feet"),
  7154. weight: math.unit(165, "lbs"),
  7155. name: "Front",
  7156. image: {
  7157. source: "./media/characters/fluoresce/front.svg"
  7158. }
  7159. }
  7160. },
  7161. [
  7162. {
  7163. name: "Micro",
  7164. height: math.unit(6, "cm")
  7165. },
  7166. {
  7167. name: "Normal",
  7168. height: math.unit(5 + 7 / 12, "feet"),
  7169. default: true
  7170. },
  7171. {
  7172. name: "Macro",
  7173. height: math.unit(56, "feet")
  7174. },
  7175. {
  7176. name: "Megamacro",
  7177. height: math.unit(1.9, "miles")
  7178. },
  7179. ]
  7180. ))
  7181. characterMakers.push(() => makeCharacter(
  7182. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7183. {
  7184. front: {
  7185. height: math.unit(9 + 6 / 12, "feet"),
  7186. weight: math.unit(523, "lbs"),
  7187. name: "Side",
  7188. image: {
  7189. source: "./media/characters/aurora/side.svg"
  7190. }
  7191. }
  7192. },
  7193. [
  7194. {
  7195. name: "Normal",
  7196. height: math.unit(9 + 6 / 12, "feet")
  7197. },
  7198. {
  7199. name: "Macro",
  7200. height: math.unit(96, "feet"),
  7201. default: true
  7202. },
  7203. {
  7204. name: "Macro+",
  7205. height: math.unit(243, "feet")
  7206. },
  7207. ]
  7208. ))
  7209. characterMakers.push(() => makeCharacter(
  7210. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7211. {
  7212. front: {
  7213. height: math.unit(194, "cm"),
  7214. weight: math.unit(90, "kg"),
  7215. name: "Front",
  7216. image: {
  7217. source: "./media/characters/ranek/front.svg"
  7218. }
  7219. },
  7220. side: {
  7221. height: math.unit(194, "cm"),
  7222. weight: math.unit(90, "kg"),
  7223. name: "Side",
  7224. image: {
  7225. source: "./media/characters/ranek/side.svg"
  7226. }
  7227. },
  7228. back: {
  7229. height: math.unit(194, "cm"),
  7230. weight: math.unit(90, "kg"),
  7231. name: "Back",
  7232. image: {
  7233. source: "./media/characters/ranek/back.svg"
  7234. }
  7235. },
  7236. feral: {
  7237. height: math.unit(30, "cm"),
  7238. weight: math.unit(1.6, "lbs"),
  7239. name: "Feral",
  7240. image: {
  7241. source: "./media/characters/ranek/feral.svg"
  7242. }
  7243. },
  7244. },
  7245. [
  7246. {
  7247. name: "Normal",
  7248. height: math.unit(194, "cm"),
  7249. default: true
  7250. },
  7251. {
  7252. name: "Macro",
  7253. height: math.unit(100, "meters")
  7254. },
  7255. ]
  7256. ))
  7257. characterMakers.push(() => makeCharacter(
  7258. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7259. {
  7260. front: {
  7261. height: math.unit(5 + 6 / 12, "feet"),
  7262. weight: math.unit(153, "lbs"),
  7263. name: "Front",
  7264. image: {
  7265. source: "./media/characters/andrew-cooper/front.svg"
  7266. }
  7267. },
  7268. },
  7269. [
  7270. {
  7271. name: "Nano",
  7272. height: math.unit(1, "mm")
  7273. },
  7274. {
  7275. name: "Micro",
  7276. height: math.unit(2, "inches")
  7277. },
  7278. {
  7279. name: "Normal",
  7280. height: math.unit(5 + 6 / 12, "feet"),
  7281. default: true
  7282. }
  7283. ]
  7284. ))
  7285. characterMakers.push(() => makeCharacter(
  7286. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7287. {
  7288. front: {
  7289. height: math.unit(6, "feet"),
  7290. weight: math.unit(180, "lbs"),
  7291. name: "Front",
  7292. image: {
  7293. source: "./media/characters/akane-sato/front.svg",
  7294. extra: 1219 / 1140
  7295. }
  7296. },
  7297. back: {
  7298. height: math.unit(6, "feet"),
  7299. weight: math.unit(180, "lbs"),
  7300. name: "Back",
  7301. image: {
  7302. source: "./media/characters/akane-sato/back.svg",
  7303. extra: 1219 / 1170
  7304. }
  7305. },
  7306. },
  7307. [
  7308. {
  7309. name: "Normal",
  7310. height: math.unit(2.5, "meters")
  7311. },
  7312. {
  7313. name: "Macro",
  7314. height: math.unit(250, "meters"),
  7315. default: true
  7316. },
  7317. {
  7318. name: "Megamacro",
  7319. height: math.unit(25, "km")
  7320. },
  7321. ]
  7322. ))
  7323. characterMakers.push(() => makeCharacter(
  7324. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7325. {
  7326. front: {
  7327. height: math.unit(6, "feet"),
  7328. weight: math.unit(65, "kg"),
  7329. name: "Front",
  7330. image: {
  7331. source: "./media/characters/rook/front.svg",
  7332. extra: 960 / 950
  7333. }
  7334. }
  7335. },
  7336. [
  7337. {
  7338. name: "Normal",
  7339. height: math.unit(8.8, "feet")
  7340. },
  7341. {
  7342. name: "Macro",
  7343. height: math.unit(88, "feet"),
  7344. default: true
  7345. },
  7346. {
  7347. name: "Megamacro",
  7348. height: math.unit(8, "miles")
  7349. },
  7350. ]
  7351. ))
  7352. characterMakers.push(() => makeCharacter(
  7353. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7354. {
  7355. front: {
  7356. height: math.unit(12 + 2 / 12, "feet"),
  7357. weight: math.unit(808, "lbs"),
  7358. name: "Front",
  7359. image: {
  7360. source: "./media/characters/prodigy/front.svg"
  7361. }
  7362. }
  7363. },
  7364. [
  7365. {
  7366. name: "Normal",
  7367. height: math.unit(12 + 2 / 12, "feet"),
  7368. default: true
  7369. },
  7370. {
  7371. name: "Macro",
  7372. height: math.unit(143, "feet")
  7373. },
  7374. {
  7375. name: "Macro+",
  7376. height: math.unit(400, "feet")
  7377. },
  7378. ]
  7379. ))
  7380. characterMakers.push(() => makeCharacter(
  7381. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7382. {
  7383. front: {
  7384. height: math.unit(6, "feet"),
  7385. weight: math.unit(225, "lbs"),
  7386. name: "Front",
  7387. image: {
  7388. source: "./media/characters/daniel/front.svg"
  7389. }
  7390. },
  7391. leaning: {
  7392. height: math.unit(6, "feet"),
  7393. weight: math.unit(225, "lbs"),
  7394. name: "Leaning",
  7395. image: {
  7396. source: "./media/characters/daniel/leaning.svg"
  7397. }
  7398. },
  7399. },
  7400. [
  7401. {
  7402. name: "Macro",
  7403. height: math.unit(1000, "feet"),
  7404. default: true
  7405. },
  7406. ]
  7407. ))
  7408. characterMakers.push(() => makeCharacter(
  7409. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7410. {
  7411. front: {
  7412. height: math.unit(6, "feet"),
  7413. weight: math.unit(88, "lbs"),
  7414. name: "Front",
  7415. image: {
  7416. source: "./media/characters/chiros/front.svg",
  7417. extra: 306 / 226
  7418. }
  7419. },
  7420. side: {
  7421. height: math.unit(6, "feet"),
  7422. weight: math.unit(88, "lbs"),
  7423. name: "Side",
  7424. image: {
  7425. source: "./media/characters/chiros/side.svg",
  7426. extra: 306 / 226
  7427. }
  7428. },
  7429. },
  7430. [
  7431. {
  7432. name: "Normal",
  7433. height: math.unit(6, "cm"),
  7434. default: true
  7435. },
  7436. ]
  7437. ))
  7438. characterMakers.push(() => makeCharacter(
  7439. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7440. {
  7441. front: {
  7442. height: math.unit(6, "feet"),
  7443. weight: math.unit(100, "lbs"),
  7444. name: "Front",
  7445. image: {
  7446. source: "./media/characters/selka/front.svg",
  7447. extra: 947 / 887
  7448. }
  7449. }
  7450. },
  7451. [
  7452. {
  7453. name: "Normal",
  7454. height: math.unit(5, "cm"),
  7455. default: true
  7456. },
  7457. ]
  7458. ))
  7459. characterMakers.push(() => makeCharacter(
  7460. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7461. {
  7462. front: {
  7463. height: math.unit(8 + 3 / 12, "feet"),
  7464. weight: math.unit(424, "lbs"),
  7465. name: "Front",
  7466. image: {
  7467. source: "./media/characters/verin/front.svg",
  7468. extra: 1845 / 1550
  7469. }
  7470. },
  7471. frontArmored: {
  7472. height: math.unit(8 + 3 / 12, "feet"),
  7473. weight: math.unit(424, "lbs"),
  7474. name: "Front (Armored)",
  7475. image: {
  7476. source: "./media/characters/verin/front-armor.svg",
  7477. extra: 1845 / 1550,
  7478. bottom: 0.01
  7479. }
  7480. },
  7481. back: {
  7482. height: math.unit(8 + 3 / 12, "feet"),
  7483. weight: math.unit(424, "lbs"),
  7484. name: "Back",
  7485. image: {
  7486. source: "./media/characters/verin/back.svg",
  7487. bottom: 0.1,
  7488. extra: 1
  7489. }
  7490. },
  7491. foot: {
  7492. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7493. name: "Foot",
  7494. image: {
  7495. source: "./media/characters/verin/foot.svg"
  7496. }
  7497. },
  7498. },
  7499. [
  7500. {
  7501. name: "Normal",
  7502. height: math.unit(8 + 3 / 12, "feet")
  7503. },
  7504. {
  7505. name: "Minimacro",
  7506. height: math.unit(21, "feet"),
  7507. default: true
  7508. },
  7509. {
  7510. name: "Macro",
  7511. height: math.unit(626, "feet")
  7512. },
  7513. ]
  7514. ))
  7515. characterMakers.push(() => makeCharacter(
  7516. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7517. {
  7518. front: {
  7519. height: math.unit(2.718, "meters"),
  7520. weight: math.unit(150, "lbs"),
  7521. name: "Front",
  7522. image: {
  7523. source: "./media/characters/sovrim-terraquian/front.svg"
  7524. }
  7525. },
  7526. back: {
  7527. height: math.unit(2.718, "meters"),
  7528. weight: math.unit(150, "lbs"),
  7529. name: "Back",
  7530. image: {
  7531. source: "./media/characters/sovrim-terraquian/back.svg"
  7532. }
  7533. }
  7534. },
  7535. [
  7536. {
  7537. name: "Micro",
  7538. height: math.unit(2, "inches")
  7539. },
  7540. {
  7541. name: "Small",
  7542. height: math.unit(1, "meter")
  7543. },
  7544. {
  7545. name: "Normal",
  7546. height: math.unit(Math.E, "meters"),
  7547. default: true
  7548. },
  7549. {
  7550. name: "Macro",
  7551. height: math.unit(20, "meters")
  7552. },
  7553. {
  7554. name: "Macro+",
  7555. height: math.unit(400, "meters")
  7556. },
  7557. ]
  7558. ))
  7559. characterMakers.push(() => makeCharacter(
  7560. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7561. {
  7562. front: {
  7563. height: math.unit(7, "feet"),
  7564. weight: math.unit(489, "lbs"),
  7565. name: "Front",
  7566. image: {
  7567. source: "./media/characters/reece-silvermane/front.svg",
  7568. bottom: 0.02,
  7569. extra: 1
  7570. }
  7571. },
  7572. },
  7573. [
  7574. {
  7575. name: "Macro",
  7576. height: math.unit(1.5, "miles"),
  7577. default: true
  7578. },
  7579. ]
  7580. ))
  7581. characterMakers.push(() => makeCharacter(
  7582. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7583. {
  7584. front: {
  7585. height: math.unit(6, "feet"),
  7586. weight: math.unit(78, "kg"),
  7587. name: "Front",
  7588. image: {
  7589. source: "./media/characters/kane/front.svg",
  7590. extra: 978 / 899
  7591. }
  7592. },
  7593. },
  7594. [
  7595. {
  7596. name: "Normal",
  7597. height: math.unit(2.1, "m"),
  7598. },
  7599. {
  7600. name: "Macro",
  7601. height: math.unit(1, "km"),
  7602. default: true
  7603. },
  7604. ]
  7605. ))
  7606. characterMakers.push(() => makeCharacter(
  7607. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7608. {
  7609. front: {
  7610. height: math.unit(6, "feet"),
  7611. weight: math.unit(200, "kg"),
  7612. name: "Front",
  7613. image: {
  7614. source: "./media/characters/tegon/front.svg",
  7615. bottom: 0.01,
  7616. extra: 1
  7617. }
  7618. },
  7619. },
  7620. [
  7621. {
  7622. name: "Micro",
  7623. height: math.unit(1, "inch")
  7624. },
  7625. {
  7626. name: "Normal",
  7627. height: math.unit(6 + 3 / 12, "feet"),
  7628. default: true
  7629. },
  7630. {
  7631. name: "Macro",
  7632. height: math.unit(300, "feet")
  7633. },
  7634. {
  7635. name: "Megamacro",
  7636. height: math.unit(69, "miles")
  7637. },
  7638. ]
  7639. ))
  7640. characterMakers.push(() => makeCharacter(
  7641. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7642. {
  7643. side: {
  7644. height: math.unit(6, "feet"),
  7645. weight: math.unit(2304, "lbs"),
  7646. name: "Side",
  7647. image: {
  7648. source: "./media/characters/arcturax/side.svg",
  7649. extra: 790 / 376,
  7650. bottom: 0.01
  7651. }
  7652. },
  7653. },
  7654. [
  7655. {
  7656. name: "Micro",
  7657. height: math.unit(2, "inch")
  7658. },
  7659. {
  7660. name: "Normal",
  7661. height: math.unit(6, "feet")
  7662. },
  7663. {
  7664. name: "Macro",
  7665. height: math.unit(39, "feet"),
  7666. default: true
  7667. },
  7668. {
  7669. name: "Megamacro",
  7670. height: math.unit(7, "miles")
  7671. },
  7672. ]
  7673. ))
  7674. characterMakers.push(() => makeCharacter(
  7675. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7676. {
  7677. front: {
  7678. height: math.unit(6, "feet"),
  7679. weight: math.unit(50, "lbs"),
  7680. name: "Front",
  7681. image: {
  7682. source: "./media/characters/sentri/front.svg",
  7683. extra: 1750 / 1570,
  7684. bottom: 0.025
  7685. }
  7686. },
  7687. frontAlt: {
  7688. height: math.unit(6, "feet"),
  7689. weight: math.unit(50, "lbs"),
  7690. name: "Front (Alt)",
  7691. image: {
  7692. source: "./media/characters/sentri/front-alt.svg",
  7693. extra: 1750 / 1570,
  7694. bottom: 0.025
  7695. }
  7696. },
  7697. },
  7698. [
  7699. {
  7700. name: "Normal",
  7701. height: math.unit(15, "feet"),
  7702. default: true
  7703. },
  7704. {
  7705. name: "Macro",
  7706. height: math.unit(2500, "feet")
  7707. }
  7708. ]
  7709. ))
  7710. characterMakers.push(() => makeCharacter(
  7711. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7712. {
  7713. front: {
  7714. height: math.unit(5 + 8 / 12, "feet"),
  7715. weight: math.unit(130, "lbs"),
  7716. name: "Front",
  7717. image: {
  7718. source: "./media/characters/corvin/front.svg",
  7719. extra: 1803 / 1629
  7720. }
  7721. },
  7722. frontShirt: {
  7723. height: math.unit(5 + 8 / 12, "feet"),
  7724. weight: math.unit(130, "lbs"),
  7725. name: "Front (Shirt)",
  7726. image: {
  7727. source: "./media/characters/corvin/front-shirt.svg",
  7728. extra: 1803 / 1629
  7729. }
  7730. },
  7731. frontPoncho: {
  7732. height: math.unit(5 + 8 / 12, "feet"),
  7733. weight: math.unit(130, "lbs"),
  7734. name: "Front (Poncho)",
  7735. image: {
  7736. source: "./media/characters/corvin/front-poncho.svg",
  7737. extra: 1803 / 1629
  7738. }
  7739. },
  7740. side: {
  7741. height: math.unit(5 + 8 / 12, "feet"),
  7742. weight: math.unit(130, "lbs"),
  7743. name: "Side",
  7744. image: {
  7745. source: "./media/characters/corvin/side.svg",
  7746. extra: 1012 / 945
  7747. }
  7748. },
  7749. back: {
  7750. height: math.unit(5 + 8 / 12, "feet"),
  7751. weight: math.unit(130, "lbs"),
  7752. name: "Back",
  7753. image: {
  7754. source: "./media/characters/corvin/back.svg",
  7755. extra: 1803 / 1629
  7756. }
  7757. },
  7758. },
  7759. [
  7760. {
  7761. name: "Micro",
  7762. height: math.unit(3, "inches")
  7763. },
  7764. {
  7765. name: "Normal",
  7766. height: math.unit(5 + 8 / 12, "feet")
  7767. },
  7768. {
  7769. name: "Macro",
  7770. height: math.unit(300, "feet"),
  7771. default: true
  7772. },
  7773. {
  7774. name: "Megamacro",
  7775. height: math.unit(500, "miles")
  7776. }
  7777. ]
  7778. ))
  7779. characterMakers.push(() => makeCharacter(
  7780. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7781. {
  7782. front: {
  7783. height: math.unit(6, "feet"),
  7784. weight: math.unit(135, "lbs"),
  7785. name: "Front",
  7786. image: {
  7787. source: "./media/characters/q/front.svg",
  7788. extra: 854 / 752,
  7789. bottom: 0.005
  7790. }
  7791. },
  7792. back: {
  7793. height: math.unit(6, "feet"),
  7794. weight: math.unit(130, "lbs"),
  7795. name: "Back",
  7796. image: {
  7797. source: "./media/characters/q/back.svg",
  7798. extra: 854 / 752
  7799. }
  7800. },
  7801. },
  7802. [
  7803. {
  7804. name: "Macro",
  7805. height: math.unit(90, "feet"),
  7806. default: true
  7807. },
  7808. {
  7809. name: "Extra Macro",
  7810. height: math.unit(300, "feet"),
  7811. },
  7812. {
  7813. name: "BIG WALF",
  7814. height: math.unit(750, "feet"),
  7815. },
  7816. ]
  7817. ))
  7818. characterMakers.push(() => makeCharacter(
  7819. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7820. {
  7821. front: {
  7822. height: math.unit(6, "feet"),
  7823. weight: math.unit(150, "lbs"),
  7824. name: "Front",
  7825. image: {
  7826. source: "./media/characters/carley/front.svg",
  7827. extra: 3927 / 3540,
  7828. bottom: 29.2 / 735
  7829. }
  7830. }
  7831. },
  7832. [
  7833. {
  7834. name: "Normal",
  7835. height: math.unit(6 + 3 / 12, "feet")
  7836. },
  7837. {
  7838. name: "Macro",
  7839. height: math.unit(185, "feet"),
  7840. default: true
  7841. },
  7842. {
  7843. name: "Megamacro",
  7844. height: math.unit(8, "miles"),
  7845. },
  7846. ]
  7847. ))
  7848. characterMakers.push(() => makeCharacter(
  7849. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7850. {
  7851. front: {
  7852. height: math.unit(3, "feet"),
  7853. weight: math.unit(28, "lbs"),
  7854. name: "Front",
  7855. image: {
  7856. source: "./media/characters/citrine/front.svg"
  7857. }
  7858. }
  7859. },
  7860. [
  7861. {
  7862. name: "Normal",
  7863. height: math.unit(3, "feet"),
  7864. default: true
  7865. }
  7866. ]
  7867. ))
  7868. characterMakers.push(() => makeCharacter(
  7869. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7870. {
  7871. front: {
  7872. height: math.unit(14, "feet"),
  7873. weight: math.unit(1450, "kg"),
  7874. capacity: math.unit(15, "people"),
  7875. name: "Front",
  7876. image: {
  7877. source: "./media/characters/aura-starwind/front.svg",
  7878. extra: 1455 / 1335
  7879. }
  7880. },
  7881. side: {
  7882. height: math.unit(14, "feet"),
  7883. weight: math.unit(1450, "kg"),
  7884. capacity: math.unit(15, "people"),
  7885. name: "Side",
  7886. image: {
  7887. source: "./media/characters/aura-starwind/side.svg",
  7888. extra: 1654 / 1497
  7889. }
  7890. },
  7891. taur: {
  7892. height: math.unit(18, "feet"),
  7893. weight: math.unit(5500, "kg"),
  7894. capacity: math.unit(50, "people"),
  7895. name: "Taur",
  7896. image: {
  7897. source: "./media/characters/aura-starwind/taur.svg",
  7898. extra: 1760 / 1650
  7899. }
  7900. },
  7901. feral: {
  7902. height: math.unit(46, "feet"),
  7903. weight: math.unit(25000, "kg"),
  7904. capacity: math.unit(120, "people"),
  7905. name: "Feral",
  7906. image: {
  7907. source: "./media/characters/aura-starwind/feral.svg"
  7908. }
  7909. },
  7910. },
  7911. [
  7912. {
  7913. name: "Normal",
  7914. height: math.unit(14, "feet"),
  7915. default: true
  7916. },
  7917. {
  7918. name: "Macro",
  7919. height: math.unit(50, "meters")
  7920. },
  7921. {
  7922. name: "Megamacro",
  7923. height: math.unit(5000, "meters")
  7924. },
  7925. {
  7926. name: "Gigamacro",
  7927. height: math.unit(100000, "kilometers")
  7928. },
  7929. ]
  7930. ))
  7931. characterMakers.push(() => makeCharacter(
  7932. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7933. {
  7934. front: {
  7935. height: math.unit(2 + 7 / 12, "feet"),
  7936. weight: math.unit(32, "lbs"),
  7937. name: "Front",
  7938. image: {
  7939. source: "./media/characters/rivet/front.svg",
  7940. extra: 1716 / 1658,
  7941. bottom: 0.03
  7942. }
  7943. },
  7944. foot: {
  7945. height: math.unit(0.551, "feet"),
  7946. name: "Rivet's Foot",
  7947. image: {
  7948. source: "./media/characters/rivet/foot.svg"
  7949. },
  7950. rename: true
  7951. }
  7952. },
  7953. [
  7954. {
  7955. name: "Micro",
  7956. height: math.unit(1.5, "inches"),
  7957. },
  7958. {
  7959. name: "Normal",
  7960. height: math.unit(2 + 7 / 12, "feet"),
  7961. default: true
  7962. },
  7963. {
  7964. name: "Macro",
  7965. height: math.unit(85, "feet")
  7966. },
  7967. {
  7968. name: "Megamacro",
  7969. height: math.unit(2.2, "km")
  7970. }
  7971. ]
  7972. ))
  7973. characterMakers.push(() => makeCharacter(
  7974. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7975. {
  7976. front: {
  7977. height: math.unit(5 + 9 / 12, "feet"),
  7978. weight: math.unit(150, "lbs"),
  7979. name: "Front",
  7980. image: {
  7981. source: "./media/characters/coffee/front.svg",
  7982. extra: 3666 / 3032,
  7983. bottom: 0.04
  7984. }
  7985. },
  7986. foot: {
  7987. height: math.unit(1.29, "feet"),
  7988. name: "Foot",
  7989. image: {
  7990. source: "./media/characters/coffee/foot.svg"
  7991. }
  7992. },
  7993. },
  7994. [
  7995. {
  7996. name: "Micro",
  7997. height: math.unit(2, "inches"),
  7998. },
  7999. {
  8000. name: "Normal",
  8001. height: math.unit(5 + 9 / 12, "feet"),
  8002. default: true
  8003. },
  8004. {
  8005. name: "Macro",
  8006. height: math.unit(800, "feet")
  8007. },
  8008. {
  8009. name: "Megamacro",
  8010. height: math.unit(25, "miles")
  8011. }
  8012. ]
  8013. ))
  8014. characterMakers.push(() => makeCharacter(
  8015. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8016. {
  8017. front: {
  8018. height: math.unit(6, "feet"),
  8019. weight: math.unit(200, "lbs"),
  8020. name: "Front",
  8021. image: {
  8022. source: "./media/characters/chari-gal/front.svg",
  8023. extra: 1568 / 1385,
  8024. bottom: 0.047
  8025. }
  8026. },
  8027. gigantamax: {
  8028. height: math.unit(6 * 16, "feet"),
  8029. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8030. name: "Gigantamax",
  8031. image: {
  8032. source: "./media/characters/chari-gal/gigantamax.svg",
  8033. extra: 1124 / 888,
  8034. bottom: 0.03
  8035. }
  8036. },
  8037. },
  8038. [
  8039. {
  8040. name: "Normal",
  8041. height: math.unit(5 + 7 / 12, "feet")
  8042. },
  8043. {
  8044. name: "Macro",
  8045. height: math.unit(200, "feet"),
  8046. default: true
  8047. }
  8048. ]
  8049. ))
  8050. characterMakers.push(() => makeCharacter(
  8051. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8052. {
  8053. front: {
  8054. height: math.unit(6, "feet"),
  8055. weight: math.unit(150, "lbs"),
  8056. name: "Front",
  8057. image: {
  8058. source: "./media/characters/nova/front.svg",
  8059. extra: 5000 / 4722,
  8060. bottom: 0.02
  8061. }
  8062. }
  8063. },
  8064. [
  8065. {
  8066. name: "Micro-",
  8067. height: math.unit(0.8, "inches")
  8068. },
  8069. {
  8070. name: "Micro",
  8071. height: math.unit(2, "inches"),
  8072. default: true
  8073. },
  8074. ]
  8075. ))
  8076. characterMakers.push(() => makeCharacter(
  8077. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8078. {
  8079. front: {
  8080. height: math.unit(3 + 1 / 12, "feet"),
  8081. weight: math.unit(21.7, "lbs"),
  8082. name: "Front",
  8083. image: {
  8084. source: "./media/characters/argent/front.svg",
  8085. extra: 1471 / 1331,
  8086. bottom: 100.8 / 1575.5
  8087. }
  8088. }
  8089. },
  8090. [
  8091. {
  8092. name: "Micro",
  8093. height: math.unit(2, "inches")
  8094. },
  8095. {
  8096. name: "Normal",
  8097. height: math.unit(3 + 1 / 12, "feet"),
  8098. default: true
  8099. },
  8100. {
  8101. name: "Macro",
  8102. height: math.unit(120, "feet")
  8103. },
  8104. ]
  8105. ))
  8106. characterMakers.push(() => makeCharacter(
  8107. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8108. {
  8109. lamp: {
  8110. height: math.unit(7 * 1559 / 989, "feet"),
  8111. name: "Magic Lamp",
  8112. image: {
  8113. source: "./media/characters/mira-al-cul/lamp.svg",
  8114. extra: 1617 / 1559
  8115. }
  8116. },
  8117. front: {
  8118. height: math.unit(7, "feet"),
  8119. name: "Front",
  8120. image: {
  8121. source: "./media/characters/mira-al-cul/front.svg",
  8122. extra: 1044 / 990
  8123. }
  8124. },
  8125. },
  8126. [
  8127. {
  8128. name: "Heavily Restricted",
  8129. height: math.unit(7 * 1559 / 989, "feet")
  8130. },
  8131. {
  8132. name: "Freshly Freed",
  8133. height: math.unit(50 * 1559 / 989, "feet")
  8134. },
  8135. {
  8136. name: "World Encompassing",
  8137. height: math.unit(10000 * 1559 / 989, "miles")
  8138. },
  8139. {
  8140. name: "Galactic",
  8141. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8142. },
  8143. {
  8144. name: "Palmed Universe",
  8145. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8146. default: true
  8147. },
  8148. {
  8149. name: "Multiversal Matriarch",
  8150. height: math.unit(8.87e10, "yottameters")
  8151. },
  8152. {
  8153. name: "Void Mother",
  8154. height: math.unit(3.14e110, "yottaparsecs")
  8155. },
  8156. {
  8157. name: "Toying with Transcendence",
  8158. height: math.unit(1e307, "meters")
  8159. },
  8160. ]
  8161. ))
  8162. characterMakers.push(() => makeCharacter(
  8163. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8164. {
  8165. front: {
  8166. height: math.unit(17 + 1 / 12, "feet"),
  8167. weight: math.unit(476.2 * 5, "lbs"),
  8168. name: "Front",
  8169. image: {
  8170. source: "./media/characters/kuro-shi-uchū/front.svg",
  8171. extra: 2329 / 1835,
  8172. bottom: 0.02
  8173. }
  8174. },
  8175. },
  8176. [
  8177. {
  8178. name: "Micro",
  8179. height: math.unit(2, "inches")
  8180. },
  8181. {
  8182. name: "Normal",
  8183. height: math.unit(12, "meters")
  8184. },
  8185. {
  8186. name: "Planetary",
  8187. height: math.unit(0.00929, "AU"),
  8188. default: true
  8189. },
  8190. {
  8191. name: "Universal",
  8192. height: math.unit(20, "gigaparsecs")
  8193. },
  8194. ]
  8195. ))
  8196. characterMakers.push(() => makeCharacter(
  8197. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8198. {
  8199. front: {
  8200. height: math.unit(5 + 2 / 12, "feet"),
  8201. weight: math.unit(120, "lbs"),
  8202. name: "Front",
  8203. image: {
  8204. source: "./media/characters/katherine/front.svg",
  8205. extra: 2075 / 1969
  8206. }
  8207. },
  8208. dress: {
  8209. height: math.unit(5 + 2 / 12, "feet"),
  8210. weight: math.unit(120, "lbs"),
  8211. name: "Dress",
  8212. image: {
  8213. source: "./media/characters/katherine/dress.svg",
  8214. extra: 2258 / 2064
  8215. }
  8216. },
  8217. },
  8218. [
  8219. {
  8220. name: "Micro",
  8221. height: math.unit(1, "inches"),
  8222. default: true
  8223. },
  8224. {
  8225. name: "Normal",
  8226. height: math.unit(5 + 2 / 12, "feet")
  8227. },
  8228. {
  8229. name: "Macro",
  8230. height: math.unit(100, "meters")
  8231. },
  8232. {
  8233. name: "Megamacro",
  8234. height: math.unit(80, "miles")
  8235. },
  8236. ]
  8237. ))
  8238. characterMakers.push(() => makeCharacter(
  8239. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8240. {
  8241. front: {
  8242. height: math.unit(7 + 8 / 12, "feet"),
  8243. weight: math.unit(250, "lbs"),
  8244. name: "Front",
  8245. image: {
  8246. source: "./media/characters/yevis/front.svg",
  8247. extra: 1938 / 1755
  8248. }
  8249. }
  8250. },
  8251. [
  8252. {
  8253. name: "Mortal",
  8254. height: math.unit(7 + 8 / 12, "feet")
  8255. },
  8256. {
  8257. name: "Battle",
  8258. height: math.unit(25 + 11 / 12, "feet")
  8259. },
  8260. {
  8261. name: "Wrath",
  8262. height: math.unit(1654 + 11 / 12, "feet")
  8263. },
  8264. {
  8265. name: "Planet Destroyer",
  8266. height: math.unit(12000, "miles")
  8267. },
  8268. {
  8269. name: "Galaxy Conqueror",
  8270. height: math.unit(1.45, "zettameters"),
  8271. default: true
  8272. },
  8273. {
  8274. name: "Universal War",
  8275. height: math.unit(184, "gigaparsecs")
  8276. },
  8277. {
  8278. name: "Eternity War",
  8279. height: math.unit(1.98e55, "yottaparsecs")
  8280. },
  8281. ]
  8282. ))
  8283. characterMakers.push(() => makeCharacter(
  8284. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8285. {
  8286. front: {
  8287. height: math.unit(5 + 8 / 12, "feet"),
  8288. weight: math.unit(63, "kg"),
  8289. name: "Front",
  8290. image: {
  8291. source: "./media/characters/xavier/front.svg",
  8292. extra: 944 / 883
  8293. }
  8294. },
  8295. frontStretch: {
  8296. height: math.unit(5 + 8 / 12, "feet"),
  8297. weight: math.unit(63, "kg"),
  8298. name: "Stretching",
  8299. image: {
  8300. source: "./media/characters/xavier/front-stretch.svg",
  8301. extra: 962 / 820
  8302. }
  8303. },
  8304. },
  8305. [
  8306. {
  8307. name: "Normal",
  8308. height: math.unit(5 + 8 / 12, "feet")
  8309. },
  8310. {
  8311. name: "Macro",
  8312. height: math.unit(100, "meters"),
  8313. default: true
  8314. },
  8315. {
  8316. name: "McLargeHuge",
  8317. height: math.unit(10, "miles")
  8318. },
  8319. ]
  8320. ))
  8321. characterMakers.push(() => makeCharacter(
  8322. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8323. {
  8324. front: {
  8325. height: math.unit(5 + 5 / 12, "feet"),
  8326. weight: math.unit(150, "lb"),
  8327. name: "Front",
  8328. image: {
  8329. source: "./media/characters/joshii/front.svg",
  8330. extra: 765 / 653,
  8331. bottom: 51 / 816
  8332. }
  8333. },
  8334. foot: {
  8335. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8336. name: "Foot",
  8337. image: {
  8338. source: "./media/characters/joshii/foot.svg"
  8339. }
  8340. },
  8341. },
  8342. [
  8343. {
  8344. name: "Micro",
  8345. height: math.unit(2, "inches"),
  8346. default: true
  8347. },
  8348. {
  8349. name: "Normal",
  8350. height: math.unit(5 + 5 / 12, "feet")
  8351. },
  8352. {
  8353. name: "Macro",
  8354. height: math.unit(785, "feet")
  8355. },
  8356. {
  8357. name: "Megamacro",
  8358. height: math.unit(24.5, "miles")
  8359. },
  8360. ]
  8361. ))
  8362. characterMakers.push(() => makeCharacter(
  8363. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8364. {
  8365. front: {
  8366. height: math.unit(6, "feet"),
  8367. weight: math.unit(150, "lb"),
  8368. name: "Front",
  8369. image: {
  8370. source: "./media/characters/goddess-elizabeth/front.svg",
  8371. extra: 1800 / 1525,
  8372. bottom: 0.005
  8373. }
  8374. },
  8375. foot: {
  8376. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8377. name: "Foot",
  8378. image: {
  8379. source: "./media/characters/goddess-elizabeth/foot.svg"
  8380. }
  8381. },
  8382. mouth: {
  8383. height: math.unit(6, "feet"),
  8384. name: "Mouth",
  8385. image: {
  8386. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8387. }
  8388. },
  8389. },
  8390. [
  8391. {
  8392. name: "Micro",
  8393. height: math.unit(12, "feet")
  8394. },
  8395. {
  8396. name: "Normal",
  8397. height: math.unit(80, "miles"),
  8398. default: true
  8399. },
  8400. {
  8401. name: "Macro",
  8402. height: math.unit(15000, "parsecs")
  8403. },
  8404. ]
  8405. ))
  8406. characterMakers.push(() => makeCharacter(
  8407. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8408. {
  8409. front: {
  8410. height: math.unit(5 + 9 / 12, "feet"),
  8411. weight: math.unit(144, "lb"),
  8412. name: "Front",
  8413. image: {
  8414. source: "./media/characters/kara/front.svg"
  8415. }
  8416. },
  8417. feet: {
  8418. height: math.unit(6 / 6.765, "feet"),
  8419. name: "Kara's Feet",
  8420. rename: true,
  8421. image: {
  8422. source: "./media/characters/kara/feet.svg"
  8423. }
  8424. },
  8425. },
  8426. [
  8427. {
  8428. name: "Normal",
  8429. height: math.unit(5 + 9 / 12, "feet")
  8430. },
  8431. {
  8432. name: "Macro",
  8433. height: math.unit(174, "feet"),
  8434. default: true
  8435. },
  8436. ]
  8437. ))
  8438. characterMakers.push(() => makeCharacter(
  8439. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8440. {
  8441. front: {
  8442. height: math.unit(18, "feet"),
  8443. weight: math.unit(4050, "lb"),
  8444. name: "Front",
  8445. image: {
  8446. source: "./media/characters/tyrone/front.svg",
  8447. extra: 2405 / 2270,
  8448. bottom: 182 / 2587
  8449. }
  8450. },
  8451. },
  8452. [
  8453. {
  8454. name: "Normal",
  8455. height: math.unit(18, "feet"),
  8456. default: true
  8457. },
  8458. {
  8459. name: "Macro",
  8460. height: math.unit(300, "feet")
  8461. },
  8462. {
  8463. name: "Megamacro",
  8464. height: math.unit(15, "km")
  8465. },
  8466. {
  8467. name: "Gigamacro",
  8468. height: math.unit(500, "km")
  8469. },
  8470. {
  8471. name: "Teramacro",
  8472. height: math.unit(0.5, "gigameters")
  8473. },
  8474. {
  8475. name: "Omnimacro",
  8476. height: math.unit(1e252, "yottauniverse")
  8477. },
  8478. ]
  8479. ))
  8480. characterMakers.push(() => makeCharacter(
  8481. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8482. {
  8483. front: {
  8484. height: math.unit(7 + 8 / 12, "feet"),
  8485. weight: math.unit(120, "lb"),
  8486. name: "Front",
  8487. image: {
  8488. source: "./media/characters/danny/front.svg",
  8489. extra: 1490 / 1350
  8490. }
  8491. },
  8492. back: {
  8493. height: math.unit(7 + 8 / 12, "feet"),
  8494. weight: math.unit(120, "lb"),
  8495. name: "Back",
  8496. image: {
  8497. source: "./media/characters/danny/back.svg",
  8498. extra: 1490 / 1350
  8499. }
  8500. },
  8501. },
  8502. [
  8503. {
  8504. name: "Normal",
  8505. height: math.unit(7 + 8 / 12, "feet"),
  8506. default: true
  8507. },
  8508. ]
  8509. ))
  8510. characterMakers.push(() => makeCharacter(
  8511. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8512. {
  8513. front: {
  8514. height: math.unit(3.5, "inches"),
  8515. weight: math.unit(19, "grams"),
  8516. name: "Front",
  8517. image: {
  8518. source: "./media/characters/mallow/front.svg",
  8519. extra: 471 / 431
  8520. }
  8521. },
  8522. back: {
  8523. height: math.unit(3.5, "inches"),
  8524. weight: math.unit(19, "grams"),
  8525. name: "Back",
  8526. image: {
  8527. source: "./media/characters/mallow/back.svg",
  8528. extra: 471 / 431
  8529. }
  8530. },
  8531. },
  8532. [
  8533. {
  8534. name: "Normal",
  8535. height: math.unit(3.5, "inches"),
  8536. default: true
  8537. },
  8538. ]
  8539. ))
  8540. characterMakers.push(() => makeCharacter(
  8541. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8542. {
  8543. front: {
  8544. height: math.unit(9, "feet"),
  8545. weight: math.unit(230, "kg"),
  8546. name: "Front",
  8547. image: {
  8548. source: "./media/characters/starry-aqua/front.svg"
  8549. }
  8550. },
  8551. back: {
  8552. height: math.unit(9, "feet"),
  8553. weight: math.unit(230, "kg"),
  8554. name: "Back",
  8555. image: {
  8556. source: "./media/characters/starry-aqua/back.svg"
  8557. }
  8558. },
  8559. hand: {
  8560. height: math.unit(9 * 0.1168, "feet"),
  8561. name: "Hand",
  8562. image: {
  8563. source: "./media/characters/starry-aqua/hand.svg"
  8564. }
  8565. },
  8566. foot: {
  8567. height: math.unit(9 * 0.18, "feet"),
  8568. name: "Foot",
  8569. image: {
  8570. source: "./media/characters/starry-aqua/foot.svg"
  8571. }
  8572. }
  8573. },
  8574. [
  8575. {
  8576. name: "Micro",
  8577. height: math.unit(3, "inches")
  8578. },
  8579. {
  8580. name: "Normal",
  8581. height: math.unit(9, "feet")
  8582. },
  8583. {
  8584. name: "Macro",
  8585. height: math.unit(300, "feet"),
  8586. default: true
  8587. },
  8588. {
  8589. name: "Megamacro",
  8590. height: math.unit(3200, "feet")
  8591. }
  8592. ]
  8593. ))
  8594. characterMakers.push(() => makeCharacter(
  8595. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8596. {
  8597. front: {
  8598. height: math.unit(6, "feet"),
  8599. weight: math.unit(230, "lb"),
  8600. name: "Front",
  8601. image: {
  8602. source: "./media/characters/luka/front.svg",
  8603. extra: 1,
  8604. bottom: 0.025
  8605. }
  8606. },
  8607. },
  8608. [
  8609. {
  8610. name: "Normal",
  8611. height: math.unit(12 + 8 / 12, "feet"),
  8612. default: true
  8613. },
  8614. {
  8615. name: "Minimacro",
  8616. height: math.unit(20, "feet")
  8617. },
  8618. {
  8619. name: "Macro",
  8620. height: math.unit(250, "feet")
  8621. },
  8622. {
  8623. name: "Megamacro",
  8624. height: math.unit(5, "miles")
  8625. },
  8626. {
  8627. name: "Gigamacro",
  8628. height: math.unit(8000, "miles")
  8629. },
  8630. ]
  8631. ))
  8632. characterMakers.push(() => makeCharacter(
  8633. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8634. {
  8635. front: {
  8636. height: math.unit(6, "feet"),
  8637. weight: math.unit(150, "lb"),
  8638. name: "Front",
  8639. image: {
  8640. source: "./media/characters/natalie-nightring/front.svg",
  8641. extra: 1,
  8642. bottom: 0.06
  8643. }
  8644. },
  8645. },
  8646. [
  8647. {
  8648. name: "Uh Oh",
  8649. height: math.unit(0.1, "mm")
  8650. },
  8651. {
  8652. name: "Small",
  8653. height: math.unit(3, "inches")
  8654. },
  8655. {
  8656. name: "Human Scale",
  8657. height: math.unit(6, "feet")
  8658. },
  8659. {
  8660. name: "Librarian",
  8661. height: math.unit(50, "feet"),
  8662. default: true
  8663. },
  8664. {
  8665. name: "Immense",
  8666. height: math.unit(200, "miles")
  8667. },
  8668. ]
  8669. ))
  8670. characterMakers.push(() => makeCharacter(
  8671. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8672. {
  8673. front: {
  8674. height: math.unit(6, "feet"),
  8675. weight: math.unit(180, "lbs"),
  8676. name: "Front",
  8677. image: {
  8678. source: "./media/characters/danni-rosie/front.svg",
  8679. extra: 1260 / 1128,
  8680. bottom: 0.022
  8681. }
  8682. },
  8683. },
  8684. [
  8685. {
  8686. name: "Micro",
  8687. height: math.unit(2, "inches"),
  8688. default: true
  8689. },
  8690. ]
  8691. ))
  8692. characterMakers.push(() => makeCharacter(
  8693. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8694. {
  8695. front: {
  8696. height: math.unit(5 + 9 / 12, "feet"),
  8697. weight: math.unit(220, "lb"),
  8698. name: "Front",
  8699. image: {
  8700. source: "./media/characters/samantha-kruse/front.svg",
  8701. extra: (985 / 935),
  8702. bottom: 0.03
  8703. }
  8704. },
  8705. frontUndressed: {
  8706. height: math.unit(5 + 9 / 12, "feet"),
  8707. weight: math.unit(220, "lb"),
  8708. name: "Front (Undressed)",
  8709. image: {
  8710. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8711. extra: (973 / 923),
  8712. bottom: 0.025
  8713. }
  8714. },
  8715. fat: {
  8716. height: math.unit(5 + 9 / 12, "feet"),
  8717. weight: math.unit(900, "lb"),
  8718. name: "Front (Fat)",
  8719. image: {
  8720. source: "./media/characters/samantha-kruse/fat.svg",
  8721. extra: 2688 / 2561
  8722. }
  8723. },
  8724. },
  8725. [
  8726. {
  8727. name: "Normal",
  8728. height: math.unit(5 + 9 / 12, "feet"),
  8729. default: true
  8730. }
  8731. ]
  8732. ))
  8733. characterMakers.push(() => makeCharacter(
  8734. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8735. {
  8736. back: {
  8737. height: math.unit(5 + 4 / 12, "feet"),
  8738. weight: math.unit(4963, "lb"),
  8739. name: "Back",
  8740. image: {
  8741. source: "./media/characters/amelia-rosie/back.svg",
  8742. extra: 1113 / 963,
  8743. bottom: 0.01
  8744. }
  8745. },
  8746. },
  8747. [
  8748. {
  8749. name: "Level 0",
  8750. height: math.unit(5 + 4 / 12, "feet")
  8751. },
  8752. {
  8753. name: "Level 1",
  8754. height: math.unit(164597, "feet"),
  8755. default: true
  8756. },
  8757. {
  8758. name: "Level 2",
  8759. height: math.unit(956243, "miles")
  8760. },
  8761. {
  8762. name: "Level 3",
  8763. height: math.unit(29421709423, "miles")
  8764. },
  8765. {
  8766. name: "Level 4",
  8767. height: math.unit(154, "lightyears")
  8768. },
  8769. {
  8770. name: "Level 5",
  8771. height: math.unit(4738272, "lightyears")
  8772. },
  8773. {
  8774. name: "Level 6",
  8775. height: math.unit(145787152896, "lightyears")
  8776. },
  8777. ]
  8778. ))
  8779. characterMakers.push(() => makeCharacter(
  8780. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8781. {
  8782. front: {
  8783. height: math.unit(5 + 11 / 12, "feet"),
  8784. weight: math.unit(65, "kg"),
  8785. name: "Front",
  8786. image: {
  8787. source: "./media/characters/rook-kitara/front.svg",
  8788. extra: 1347 / 1274,
  8789. bottom: 0.005
  8790. }
  8791. },
  8792. },
  8793. [
  8794. {
  8795. name: "Totally Unfair",
  8796. height: math.unit(1.8, "mm")
  8797. },
  8798. {
  8799. name: "Lap Rookie",
  8800. height: math.unit(1.4, "feet")
  8801. },
  8802. {
  8803. name: "Normal",
  8804. height: math.unit(5 + 11 / 12, "feet"),
  8805. default: true
  8806. },
  8807. {
  8808. name: "How Did This Happen",
  8809. height: math.unit(80, "miles")
  8810. }
  8811. ]
  8812. ))
  8813. characterMakers.push(() => makeCharacter(
  8814. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8815. {
  8816. front: {
  8817. height: math.unit(7, "feet"),
  8818. weight: math.unit(300, "lb"),
  8819. name: "Front",
  8820. image: {
  8821. source: "./media/characters/pisces/front.svg",
  8822. extra: 2255 / 2115,
  8823. bottom: 0.03
  8824. }
  8825. },
  8826. back: {
  8827. height: math.unit(7, "feet"),
  8828. weight: math.unit(300, "lb"),
  8829. name: "Back",
  8830. image: {
  8831. source: "./media/characters/pisces/back.svg",
  8832. extra: 2146 / 2055,
  8833. bottom: 0.04
  8834. }
  8835. },
  8836. },
  8837. [
  8838. {
  8839. name: "Normal",
  8840. height: math.unit(7, "feet"),
  8841. default: true
  8842. },
  8843. {
  8844. name: "Swimming Pool",
  8845. height: math.unit(12.2, "meters")
  8846. },
  8847. {
  8848. name: "Olympic Swimming Pool",
  8849. height: math.unit(56.3, "meters")
  8850. },
  8851. {
  8852. name: "Lake Superior",
  8853. height: math.unit(93900, "meters")
  8854. },
  8855. {
  8856. name: "Mediterranean Sea",
  8857. height: math.unit(644457, "meters")
  8858. },
  8859. {
  8860. name: "World's Oceans",
  8861. height: math.unit(4567491, "meters")
  8862. },
  8863. ]
  8864. ))
  8865. characterMakers.push(() => makeCharacter(
  8866. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8867. {
  8868. front: {
  8869. height: math.unit(2.3, "meters"),
  8870. weight: math.unit(120, "kg"),
  8871. name: "Front",
  8872. image: {
  8873. source: "./media/characters/zelas/front.svg"
  8874. }
  8875. },
  8876. side: {
  8877. height: math.unit(2.3, "meters"),
  8878. weight: math.unit(120, "kg"),
  8879. name: "Side",
  8880. image: {
  8881. source: "./media/characters/zelas/side.svg"
  8882. }
  8883. },
  8884. back: {
  8885. height: math.unit(2.3, "meters"),
  8886. weight: math.unit(120, "kg"),
  8887. name: "Back",
  8888. image: {
  8889. source: "./media/characters/zelas/back.svg"
  8890. }
  8891. },
  8892. foot: {
  8893. height: math.unit(1.116, "feet"),
  8894. name: "Foot",
  8895. image: {
  8896. source: "./media/characters/zelas/foot.svg"
  8897. }
  8898. },
  8899. },
  8900. [
  8901. {
  8902. name: "Normal",
  8903. height: math.unit(2.3, "meters")
  8904. },
  8905. {
  8906. name: "Macro",
  8907. height: math.unit(30, "meters"),
  8908. default: true
  8909. },
  8910. ]
  8911. ))
  8912. characterMakers.push(() => makeCharacter(
  8913. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8914. {
  8915. front: {
  8916. height: math.unit(1, "inch"),
  8917. weight: math.unit(0.21, "grams"),
  8918. name: "Front",
  8919. image: {
  8920. source: "./media/characters/talbot/front.svg",
  8921. extra: 594 / 544
  8922. }
  8923. },
  8924. },
  8925. [
  8926. {
  8927. name: "Micro",
  8928. height: math.unit(1, "inch"),
  8929. default: true
  8930. },
  8931. ]
  8932. ))
  8933. characterMakers.push(() => makeCharacter(
  8934. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8935. {
  8936. front: {
  8937. height: math.unit(3 + 3 / 12, "feet"),
  8938. weight: math.unit(51.8, "lb"),
  8939. name: "Front",
  8940. image: {
  8941. source: "./media/characters/fliss/front.svg",
  8942. extra: 840 / 640
  8943. }
  8944. },
  8945. },
  8946. [
  8947. {
  8948. name: "Teeny Tiny",
  8949. height: math.unit(1, "mm")
  8950. },
  8951. {
  8952. name: "Small",
  8953. height: math.unit(1, "inch"),
  8954. default: true
  8955. },
  8956. {
  8957. name: "Standard Sylveon",
  8958. height: math.unit(3 + 3 / 12, "feet")
  8959. },
  8960. {
  8961. name: "Large Nuisance",
  8962. height: math.unit(33, "feet")
  8963. },
  8964. {
  8965. name: "City Filler",
  8966. height: math.unit(3000, "feet")
  8967. },
  8968. {
  8969. name: "New Horizon",
  8970. height: math.unit(6000, "miles")
  8971. },
  8972. ]
  8973. ))
  8974. characterMakers.push(() => makeCharacter(
  8975. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8976. {
  8977. front: {
  8978. height: math.unit(5, "cm"),
  8979. weight: math.unit(1.94, "g"),
  8980. name: "Front",
  8981. image: {
  8982. source: "./media/characters/fleta/front.svg",
  8983. extra: 835 / 803
  8984. }
  8985. },
  8986. back: {
  8987. height: math.unit(5, "cm"),
  8988. weight: math.unit(1.94, "g"),
  8989. name: "Back",
  8990. image: {
  8991. source: "./media/characters/fleta/back.svg",
  8992. extra: 835 / 803
  8993. }
  8994. },
  8995. },
  8996. [
  8997. {
  8998. name: "Micro",
  8999. height: math.unit(5, "cm"),
  9000. default: true
  9001. },
  9002. ]
  9003. ))
  9004. characterMakers.push(() => makeCharacter(
  9005. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9006. {
  9007. front: {
  9008. height: math.unit(6, "feet"),
  9009. weight: math.unit(225, "lb"),
  9010. name: "Front",
  9011. image: {
  9012. source: "./media/characters/dominic/front.svg",
  9013. extra: 1770 / 1620,
  9014. bottom: 0.025
  9015. }
  9016. },
  9017. back: {
  9018. height: math.unit(6, "feet"),
  9019. weight: math.unit(225, "lb"),
  9020. name: "Back",
  9021. image: {
  9022. source: "./media/characters/dominic/back.svg",
  9023. extra: 1745 / 1620,
  9024. bottom: 0.065
  9025. }
  9026. },
  9027. },
  9028. [
  9029. {
  9030. name: "Nano",
  9031. height: math.unit(0.1, "mm")
  9032. },
  9033. {
  9034. name: "Micro-",
  9035. height: math.unit(1, "mm")
  9036. },
  9037. {
  9038. name: "Micro",
  9039. height: math.unit(4, "inches")
  9040. },
  9041. {
  9042. name: "Normal",
  9043. height: math.unit(6 + 4 / 12, "feet"),
  9044. default: true
  9045. },
  9046. {
  9047. name: "Macro",
  9048. height: math.unit(115, "feet")
  9049. },
  9050. {
  9051. name: "Macro+",
  9052. height: math.unit(955, "feet")
  9053. },
  9054. {
  9055. name: "Megamacro",
  9056. height: math.unit(8990, "feet")
  9057. },
  9058. {
  9059. name: "Gigmacro",
  9060. height: math.unit(9310, "miles")
  9061. },
  9062. {
  9063. name: "Teramacro",
  9064. height: math.unit(1567005010, "miles")
  9065. },
  9066. {
  9067. name: "Examacro",
  9068. height: math.unit(1425, "parsecs")
  9069. },
  9070. ]
  9071. ))
  9072. characterMakers.push(() => makeCharacter(
  9073. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9074. {
  9075. front: {
  9076. height: math.unit(400, "feet"),
  9077. weight: math.unit(44444444, "lb"),
  9078. name: "Front",
  9079. image: {
  9080. source: "./media/characters/major-colonel/front.svg"
  9081. }
  9082. },
  9083. back: {
  9084. height: math.unit(400, "feet"),
  9085. weight: math.unit(44444444, "lb"),
  9086. name: "Back",
  9087. image: {
  9088. source: "./media/characters/major-colonel/back.svg"
  9089. }
  9090. },
  9091. },
  9092. [
  9093. {
  9094. name: "Macro",
  9095. height: math.unit(400, "feet"),
  9096. default: true
  9097. },
  9098. ]
  9099. ))
  9100. characterMakers.push(() => makeCharacter(
  9101. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9102. {
  9103. catFront: {
  9104. height: math.unit(6, "feet"),
  9105. weight: math.unit(120, "lb"),
  9106. name: "Front (Cat Side)",
  9107. image: {
  9108. source: "./media/characters/axel-lycan/cat-front.svg",
  9109. extra: 430 / 402,
  9110. bottom: 43 / 472.35
  9111. }
  9112. },
  9113. catBack: {
  9114. height: math.unit(6, "feet"),
  9115. weight: math.unit(120, "lb"),
  9116. name: "Back (Cat Side)",
  9117. image: {
  9118. source: "./media/characters/axel-lycan/cat-back.svg",
  9119. extra: 447 / 419,
  9120. bottom: 23.3 / 469
  9121. }
  9122. },
  9123. wolfFront: {
  9124. height: math.unit(6, "feet"),
  9125. weight: math.unit(120, "lb"),
  9126. name: "Front (Wolf Side)",
  9127. image: {
  9128. source: "./media/characters/axel-lycan/wolf-front.svg",
  9129. extra: 485 / 456,
  9130. bottom: 19 / 504
  9131. }
  9132. },
  9133. wolfBack: {
  9134. height: math.unit(6, "feet"),
  9135. weight: math.unit(120, "lb"),
  9136. name: "Back (Wolf Side)",
  9137. image: {
  9138. source: "./media/characters/axel-lycan/wolf-back.svg",
  9139. extra: 475 / 438,
  9140. bottom: 39.2 / 514
  9141. }
  9142. },
  9143. },
  9144. [
  9145. {
  9146. name: "Macro",
  9147. height: math.unit(1, "km"),
  9148. default: true
  9149. },
  9150. ]
  9151. ))
  9152. characterMakers.push(() => makeCharacter(
  9153. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9154. {
  9155. front: {
  9156. height: math.unit(5 + 9 / 12, "feet"),
  9157. weight: math.unit(175, "lb"),
  9158. name: "Front",
  9159. image: {
  9160. source: "./media/characters/vanrel-hyena/front.svg",
  9161. extra: 1086 / 1010,
  9162. bottom: 0.04
  9163. }
  9164. },
  9165. },
  9166. [
  9167. {
  9168. name: "Normal",
  9169. height: math.unit(5 + 9 / 12, "feet"),
  9170. default: true
  9171. },
  9172. ]
  9173. ))
  9174. characterMakers.push(() => makeCharacter(
  9175. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9176. {
  9177. front: {
  9178. height: math.unit(6, "feet"),
  9179. weight: math.unit(103, "lb"),
  9180. name: "Front",
  9181. image: {
  9182. source: "./media/characters/abbott-absol/front.svg",
  9183. extra: 2010 / 1842
  9184. }
  9185. },
  9186. },
  9187. [
  9188. {
  9189. name: "Megamicro",
  9190. height: math.unit(0.1, "mm")
  9191. },
  9192. {
  9193. name: "Micro",
  9194. height: math.unit(1, "inch")
  9195. },
  9196. {
  9197. name: "Normal",
  9198. height: math.unit(6, "feet"),
  9199. default: true
  9200. },
  9201. ]
  9202. ))
  9203. characterMakers.push(() => makeCharacter(
  9204. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9205. {
  9206. front: {
  9207. height: math.unit(6, "feet"),
  9208. weight: math.unit(264, "lb"),
  9209. name: "Front",
  9210. image: {
  9211. source: "./media/characters/hector/front.svg",
  9212. extra: 2280 / 2130,
  9213. bottom: 0.07
  9214. }
  9215. },
  9216. },
  9217. [
  9218. {
  9219. name: "Normal",
  9220. height: math.unit(12.25, "foot"),
  9221. default: true
  9222. },
  9223. {
  9224. name: "Macro",
  9225. height: math.unit(160, "feet")
  9226. },
  9227. ]
  9228. ))
  9229. characterMakers.push(() => makeCharacter(
  9230. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9231. {
  9232. front: {
  9233. height: math.unit(6, "feet"),
  9234. weight: math.unit(150, "lb"),
  9235. name: "Front",
  9236. image: {
  9237. source: "./media/characters/sal/front.svg",
  9238. extra: 1846 / 1699,
  9239. bottom: 0.04
  9240. }
  9241. },
  9242. },
  9243. [
  9244. {
  9245. name: "Megamacro",
  9246. height: math.unit(10, "miles"),
  9247. default: true
  9248. },
  9249. ]
  9250. ))
  9251. characterMakers.push(() => makeCharacter(
  9252. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9253. {
  9254. front: {
  9255. height: math.unit(3, "meters"),
  9256. weight: math.unit(450, "kg"),
  9257. name: "front",
  9258. image: {
  9259. source: "./media/characters/ranger/front.svg",
  9260. extra: 2401 / 2243,
  9261. bottom: 0.05
  9262. }
  9263. },
  9264. },
  9265. [
  9266. {
  9267. name: "Normal",
  9268. height: math.unit(3, "meters"),
  9269. default: true
  9270. },
  9271. ]
  9272. ))
  9273. characterMakers.push(() => makeCharacter(
  9274. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9275. {
  9276. front: {
  9277. height: math.unit(14, "feet"),
  9278. weight: math.unit(800, "kg"),
  9279. name: "Front",
  9280. image: {
  9281. source: "./media/characters/theresa/front.svg",
  9282. extra: 3575 / 3346,
  9283. bottom: 0.03
  9284. }
  9285. },
  9286. },
  9287. [
  9288. {
  9289. name: "Normal",
  9290. height: math.unit(14, "feet"),
  9291. default: true
  9292. },
  9293. ]
  9294. ))
  9295. characterMakers.push(() => makeCharacter(
  9296. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9297. {
  9298. front: {
  9299. height: math.unit(6, "feet"),
  9300. weight: math.unit(3, "kg"),
  9301. name: "Front",
  9302. image: {
  9303. source: "./media/characters/ine/front.svg",
  9304. extra: 678 / 539,
  9305. bottom: 0.023
  9306. }
  9307. },
  9308. },
  9309. [
  9310. {
  9311. name: "Normal",
  9312. height: math.unit(2.265, "feet"),
  9313. default: true
  9314. },
  9315. ]
  9316. ))
  9317. characterMakers.push(() => makeCharacter(
  9318. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9319. {
  9320. front: {
  9321. height: math.unit(5, "feet"),
  9322. weight: math.unit(30, "kg"),
  9323. name: "Front",
  9324. image: {
  9325. source: "./media/characters/vial/front.svg",
  9326. extra: 1365 / 1277,
  9327. bottom: 0.04
  9328. }
  9329. },
  9330. },
  9331. [
  9332. {
  9333. name: "Normal",
  9334. height: math.unit(5, "feet"),
  9335. default: true
  9336. },
  9337. ]
  9338. ))
  9339. characterMakers.push(() => makeCharacter(
  9340. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9341. {
  9342. side: {
  9343. height: math.unit(3.4, "meters"),
  9344. weight: math.unit(1000, "lb"),
  9345. name: "Side",
  9346. image: {
  9347. source: "./media/characters/rovoska/side.svg",
  9348. extra: 4403 / 1515
  9349. }
  9350. },
  9351. },
  9352. [
  9353. {
  9354. name: "Normal",
  9355. height: math.unit(3.4, "meters"),
  9356. default: true
  9357. },
  9358. ]
  9359. ))
  9360. characterMakers.push(() => makeCharacter(
  9361. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9362. {
  9363. front: {
  9364. height: math.unit(8, "feet"),
  9365. weight: math.unit(315, "lb"),
  9366. name: "Front",
  9367. image: {
  9368. source: "./media/characters/gunner-rotthbauer/front.svg"
  9369. }
  9370. },
  9371. back: {
  9372. height: math.unit(8, "feet"),
  9373. weight: math.unit(315, "lb"),
  9374. name: "Back",
  9375. image: {
  9376. source: "./media/characters/gunner-rotthbauer/back.svg"
  9377. }
  9378. },
  9379. },
  9380. [
  9381. {
  9382. name: "Micro",
  9383. height: math.unit(3.5, "inches")
  9384. },
  9385. {
  9386. name: "Normal",
  9387. height: math.unit(8, "feet"),
  9388. default: true
  9389. },
  9390. {
  9391. name: "Macro",
  9392. height: math.unit(250, "feet")
  9393. },
  9394. {
  9395. name: "Megamacro",
  9396. height: math.unit(1, "AU")
  9397. },
  9398. ]
  9399. ))
  9400. characterMakers.push(() => makeCharacter(
  9401. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9402. {
  9403. front: {
  9404. height: math.unit(5 + 5 / 12, "feet"),
  9405. weight: math.unit(140, "lb"),
  9406. name: "Front",
  9407. image: {
  9408. source: "./media/characters/allatia/front.svg",
  9409. extra: 1227 / 1180,
  9410. bottom: 0.027
  9411. }
  9412. },
  9413. },
  9414. [
  9415. {
  9416. name: "Normal",
  9417. height: math.unit(5 + 5 / 12, "feet")
  9418. },
  9419. {
  9420. name: "Macro",
  9421. height: math.unit(250, "feet"),
  9422. default: true
  9423. },
  9424. {
  9425. name: "Megamacro",
  9426. height: math.unit(8, "miles")
  9427. }
  9428. ]
  9429. ))
  9430. characterMakers.push(() => makeCharacter(
  9431. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9432. {
  9433. front: {
  9434. height: math.unit(6, "feet"),
  9435. weight: math.unit(120, "lb"),
  9436. name: "Front",
  9437. image: {
  9438. source: "./media/characters/tene/front.svg",
  9439. extra: 1728 / 1578,
  9440. bottom: 0.022
  9441. }
  9442. },
  9443. stomping: {
  9444. height: math.unit(2.025, "meters"),
  9445. weight: math.unit(120, "lb"),
  9446. name: "Stomping",
  9447. image: {
  9448. source: "./media/characters/tene/stomping.svg",
  9449. extra: 938 / 873,
  9450. bottom: 0.01
  9451. }
  9452. },
  9453. sitting: {
  9454. height: math.unit(1, "meter"),
  9455. weight: math.unit(120, "lb"),
  9456. name: "Sitting",
  9457. image: {
  9458. source: "./media/characters/tene/sitting.svg",
  9459. extra: 437 / 415,
  9460. bottom: 0.1
  9461. }
  9462. },
  9463. feral: {
  9464. height: math.unit(3.9, "feet"),
  9465. weight: math.unit(250, "lb"),
  9466. name: "Feral",
  9467. image: {
  9468. source: "./media/characters/tene/feral.svg",
  9469. extra: 717 / 458,
  9470. bottom: 0.179
  9471. }
  9472. },
  9473. },
  9474. [
  9475. {
  9476. name: "Normal",
  9477. height: math.unit(6, "feet")
  9478. },
  9479. {
  9480. name: "Macro",
  9481. height: math.unit(300, "feet"),
  9482. default: true
  9483. },
  9484. {
  9485. name: "Megamacro",
  9486. height: math.unit(5, "miles")
  9487. },
  9488. ]
  9489. ))
  9490. characterMakers.push(() => makeCharacter(
  9491. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9492. {
  9493. side: {
  9494. height: math.unit(6, "feet"),
  9495. name: "Side",
  9496. image: {
  9497. source: "./media/characters/evander/side.svg",
  9498. extra: 877 / 477
  9499. }
  9500. },
  9501. },
  9502. [
  9503. {
  9504. name: "Normal",
  9505. height: math.unit(0.83, "meters"),
  9506. default: true
  9507. },
  9508. ]
  9509. ))
  9510. characterMakers.push(() => makeCharacter(
  9511. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9512. {
  9513. front: {
  9514. height: math.unit(12, "feet"),
  9515. weight: math.unit(1000, "lb"),
  9516. name: "Front",
  9517. image: {
  9518. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9519. extra: 1762 / 1611
  9520. }
  9521. },
  9522. back: {
  9523. height: math.unit(12, "feet"),
  9524. weight: math.unit(1000, "lb"),
  9525. name: "Back",
  9526. image: {
  9527. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9528. extra: 1762 / 1611
  9529. }
  9530. },
  9531. },
  9532. [
  9533. {
  9534. name: "Normal",
  9535. height: math.unit(12, "feet"),
  9536. default: true
  9537. },
  9538. {
  9539. name: "Kaiju",
  9540. height: math.unit(150, "feet")
  9541. },
  9542. ]
  9543. ))
  9544. characterMakers.push(() => makeCharacter(
  9545. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9546. {
  9547. front: {
  9548. height: math.unit(6, "feet"),
  9549. weight: math.unit(150, "lb"),
  9550. name: "Front",
  9551. image: {
  9552. source: "./media/characters/zero-alurus/front.svg"
  9553. }
  9554. },
  9555. back: {
  9556. height: math.unit(6, "feet"),
  9557. weight: math.unit(150, "lb"),
  9558. name: "Back",
  9559. image: {
  9560. source: "./media/characters/zero-alurus/back.svg"
  9561. }
  9562. },
  9563. },
  9564. [
  9565. {
  9566. name: "Normal",
  9567. height: math.unit(5 + 10 / 12, "feet")
  9568. },
  9569. {
  9570. name: "Macro",
  9571. height: math.unit(60, "feet"),
  9572. default: true
  9573. },
  9574. {
  9575. name: "Macro+",
  9576. height: math.unit(450, "feet")
  9577. },
  9578. ]
  9579. ))
  9580. characterMakers.push(() => makeCharacter(
  9581. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9582. {
  9583. front: {
  9584. height: math.unit(6, "feet"),
  9585. weight: math.unit(200, "lb"),
  9586. name: "Front",
  9587. image: {
  9588. source: "./media/characters/mega-shi/front.svg",
  9589. extra: 1279 / 1250,
  9590. bottom: 0.02
  9591. }
  9592. },
  9593. back: {
  9594. height: math.unit(6, "feet"),
  9595. weight: math.unit(200, "lb"),
  9596. name: "Back",
  9597. image: {
  9598. source: "./media/characters/mega-shi/back.svg",
  9599. extra: 1279 / 1250,
  9600. bottom: 0.02
  9601. }
  9602. },
  9603. },
  9604. [
  9605. {
  9606. name: "Micro",
  9607. height: math.unit(16 + 6 / 12, "feet")
  9608. },
  9609. {
  9610. name: "Third Dimension",
  9611. height: math.unit(40, "meters")
  9612. },
  9613. {
  9614. name: "Normal",
  9615. height: math.unit(660, "feet"),
  9616. default: true
  9617. },
  9618. {
  9619. name: "Megamacro",
  9620. height: math.unit(10, "miles")
  9621. },
  9622. {
  9623. name: "Planetary Launch",
  9624. height: math.unit(500, "miles")
  9625. },
  9626. {
  9627. name: "Interstellar",
  9628. height: math.unit(1e9, "miles")
  9629. },
  9630. {
  9631. name: "Leaving the Universe",
  9632. height: math.unit(1, "gigaparsec")
  9633. },
  9634. {
  9635. name: "Travelling Universes",
  9636. height: math.unit(30e15, "parsecs")
  9637. },
  9638. ]
  9639. ))
  9640. characterMakers.push(() => makeCharacter(
  9641. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9642. {
  9643. front: {
  9644. height: math.unit(6, "feet"),
  9645. weight: math.unit(150, "lb"),
  9646. name: "Front",
  9647. image: {
  9648. source: "./media/characters/odyssey/front.svg",
  9649. extra: 1782 / 1582,
  9650. bottom: 0.01
  9651. }
  9652. },
  9653. side: {
  9654. height: math.unit(5.7, "feet"),
  9655. weight: math.unit(140, "lb"),
  9656. name: "Side",
  9657. image: {
  9658. source: "./media/characters/odyssey/side.svg",
  9659. extra: 6462 / 5700
  9660. }
  9661. },
  9662. },
  9663. [
  9664. {
  9665. name: "Normal",
  9666. height: math.unit(5 + 4 / 12, "feet")
  9667. },
  9668. {
  9669. name: "Macro",
  9670. height: math.unit(1, "km")
  9671. },
  9672. {
  9673. name: "Megamacro",
  9674. height: math.unit(3000, "km")
  9675. },
  9676. {
  9677. name: "Gigamacro",
  9678. height: math.unit(1, "AU"),
  9679. default: true
  9680. },
  9681. {
  9682. name: "Omniversal",
  9683. height: math.unit(100e14, "lightyears")
  9684. },
  9685. ]
  9686. ))
  9687. characterMakers.push(() => makeCharacter(
  9688. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9689. {
  9690. front: {
  9691. height: math.unit(6, "feet"),
  9692. weight: math.unit(300, "lb"),
  9693. name: "Front",
  9694. image: {
  9695. source: "./media/characters/mekuto/front.svg",
  9696. extra: 921 / 832,
  9697. bottom: 0.03
  9698. }
  9699. },
  9700. hand: {
  9701. height: math.unit(6 / 10.24, "feet"),
  9702. name: "Hand",
  9703. image: {
  9704. source: "./media/characters/mekuto/hand.svg"
  9705. }
  9706. },
  9707. foot: {
  9708. height: math.unit(6 / 5.05, "feet"),
  9709. name: "Foot",
  9710. image: {
  9711. source: "./media/characters/mekuto/foot.svg"
  9712. }
  9713. },
  9714. },
  9715. [
  9716. {
  9717. name: "Minimicro",
  9718. height: math.unit(0.2, "inches")
  9719. },
  9720. {
  9721. name: "Micro",
  9722. height: math.unit(1.5, "inches")
  9723. },
  9724. {
  9725. name: "Normal",
  9726. height: math.unit(5 + 11 / 12, "feet"),
  9727. default: true
  9728. },
  9729. {
  9730. name: "Minimacro",
  9731. height: math.unit(17 + 9 / 12, "feet")
  9732. },
  9733. {
  9734. name: "Macro",
  9735. height: math.unit(177.5, "feet")
  9736. },
  9737. {
  9738. name: "Megamacro",
  9739. height: math.unit(152, "miles")
  9740. },
  9741. ]
  9742. ))
  9743. characterMakers.push(() => makeCharacter(
  9744. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9745. {
  9746. front: {
  9747. height: math.unit(6.5, "inches"),
  9748. weight: math.unit(13, "oz"),
  9749. name: "Front",
  9750. image: {
  9751. source: "./media/characters/dafydd-tomos/front.svg",
  9752. extra: 2990 / 2603,
  9753. bottom: 0.03
  9754. }
  9755. },
  9756. },
  9757. [
  9758. {
  9759. name: "Micro",
  9760. height: math.unit(6.5, "inches"),
  9761. default: true
  9762. },
  9763. ]
  9764. ))
  9765. characterMakers.push(() => makeCharacter(
  9766. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9767. {
  9768. front: {
  9769. height: math.unit(6, "feet"),
  9770. weight: math.unit(150, "lb"),
  9771. name: "Front",
  9772. image: {
  9773. source: "./media/characters/splinter/front.svg",
  9774. extra: 2990 / 2882,
  9775. bottom: 0.04
  9776. }
  9777. },
  9778. back: {
  9779. height: math.unit(6, "feet"),
  9780. weight: math.unit(150, "lb"),
  9781. name: "Back",
  9782. image: {
  9783. source: "./media/characters/splinter/back.svg",
  9784. extra: 2990 / 2882,
  9785. bottom: 0.04
  9786. }
  9787. },
  9788. },
  9789. [
  9790. {
  9791. name: "Normal",
  9792. height: math.unit(6, "feet")
  9793. },
  9794. {
  9795. name: "Macro",
  9796. height: math.unit(230, "meters"),
  9797. default: true
  9798. },
  9799. ]
  9800. ))
  9801. characterMakers.push(() => makeCharacter(
  9802. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9803. {
  9804. front: {
  9805. height: math.unit(4 + 10 / 12, "feet"),
  9806. weight: math.unit(480, "lb"),
  9807. name: "Front",
  9808. image: {
  9809. source: "./media/characters/snow-gabumon/front.svg",
  9810. extra: 1140 / 963,
  9811. bottom: 0.058
  9812. }
  9813. },
  9814. back: {
  9815. height: math.unit(4 + 10 / 12, "feet"),
  9816. weight: math.unit(480, "lb"),
  9817. name: "Back",
  9818. image: {
  9819. source: "./media/characters/snow-gabumon/back.svg",
  9820. extra: 1115 / 962,
  9821. bottom: 0.041
  9822. }
  9823. },
  9824. frontUndresed: {
  9825. height: math.unit(4 + 10 / 12, "feet"),
  9826. weight: math.unit(480, "lb"),
  9827. name: "Front (Undressed)",
  9828. image: {
  9829. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9830. extra: 1061 / 960,
  9831. bottom: 0.045
  9832. }
  9833. },
  9834. },
  9835. [
  9836. {
  9837. name: "Micro",
  9838. height: math.unit(1, "inch")
  9839. },
  9840. {
  9841. name: "Normal",
  9842. height: math.unit(4 + 10 / 12, "feet"),
  9843. default: true
  9844. },
  9845. {
  9846. name: "Macro",
  9847. height: math.unit(200, "feet")
  9848. },
  9849. {
  9850. name: "Megamacro",
  9851. height: math.unit(120, "miles")
  9852. },
  9853. {
  9854. name: "Gigamacro",
  9855. height: math.unit(9800, "miles")
  9856. },
  9857. ]
  9858. ))
  9859. characterMakers.push(() => makeCharacter(
  9860. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9861. {
  9862. front: {
  9863. height: math.unit(1.7, "meters"),
  9864. weight: math.unit(140, "lb"),
  9865. name: "Front",
  9866. image: {
  9867. source: "./media/characters/moody/front.svg",
  9868. extra: 3226 / 3007,
  9869. bottom: 0.087
  9870. }
  9871. },
  9872. },
  9873. [
  9874. {
  9875. name: "Micro",
  9876. height: math.unit(1, "mm")
  9877. },
  9878. {
  9879. name: "Normal",
  9880. height: math.unit(1.7, "meters"),
  9881. default: true
  9882. },
  9883. {
  9884. name: "Macro",
  9885. height: math.unit(80, "meters")
  9886. },
  9887. {
  9888. name: "Macro+",
  9889. height: math.unit(500, "meters")
  9890. },
  9891. ]
  9892. ))
  9893. characterMakers.push(() => makeCharacter(
  9894. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9895. {
  9896. front: {
  9897. height: math.unit(6, "feet"),
  9898. weight: math.unit(150, "lb"),
  9899. name: "Front",
  9900. image: {
  9901. source: "./media/characters/zyas/front.svg",
  9902. extra: 1180 / 1120,
  9903. bottom: 0.045
  9904. }
  9905. },
  9906. },
  9907. [
  9908. {
  9909. name: "Normal",
  9910. height: math.unit(10, "feet"),
  9911. default: true
  9912. },
  9913. {
  9914. name: "Macro",
  9915. height: math.unit(500, "feet")
  9916. },
  9917. {
  9918. name: "Megamacro",
  9919. height: math.unit(5, "miles")
  9920. },
  9921. {
  9922. name: "Teramacro",
  9923. height: math.unit(150000, "miles")
  9924. },
  9925. ]
  9926. ))
  9927. characterMakers.push(() => makeCharacter(
  9928. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9929. {
  9930. front: {
  9931. height: math.unit(6, "feet"),
  9932. weight: math.unit(150, "lb"),
  9933. name: "Front",
  9934. image: {
  9935. source: "./media/characters/cuon/front.svg",
  9936. extra: 1390 / 1320,
  9937. bottom: 0.008
  9938. }
  9939. },
  9940. },
  9941. [
  9942. {
  9943. name: "Micro",
  9944. height: math.unit(3, "inches")
  9945. },
  9946. {
  9947. name: "Normal",
  9948. height: math.unit(18 + 9 / 12, "feet"),
  9949. default: true
  9950. },
  9951. {
  9952. name: "Macro",
  9953. height: math.unit(360, "feet")
  9954. },
  9955. {
  9956. name: "Megamacro",
  9957. height: math.unit(360, "miles")
  9958. },
  9959. ]
  9960. ))
  9961. characterMakers.push(() => makeCharacter(
  9962. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9963. {
  9964. front: {
  9965. height: math.unit(2.4, "meters"),
  9966. weight: math.unit(70, "kg"),
  9967. name: "Front",
  9968. image: {
  9969. source: "./media/characters/nyanuxk/front.svg",
  9970. extra: 1172 / 1084,
  9971. bottom: 0.065
  9972. }
  9973. },
  9974. side: {
  9975. height: math.unit(2.4, "meters"),
  9976. weight: math.unit(70, "kg"),
  9977. name: "Side",
  9978. image: {
  9979. source: "./media/characters/nyanuxk/side.svg",
  9980. extra: 1190 / 1132,
  9981. bottom: 0.007
  9982. }
  9983. },
  9984. back: {
  9985. height: math.unit(2.4, "meters"),
  9986. weight: math.unit(70, "kg"),
  9987. name: "Back",
  9988. image: {
  9989. source: "./media/characters/nyanuxk/back.svg",
  9990. extra: 1200 / 1141,
  9991. bottom: 0.015
  9992. }
  9993. },
  9994. foot: {
  9995. height: math.unit(0.52, "meters"),
  9996. name: "Foot",
  9997. image: {
  9998. source: "./media/characters/nyanuxk/foot.svg"
  9999. }
  10000. },
  10001. },
  10002. [
  10003. {
  10004. name: "Micro",
  10005. height: math.unit(2, "cm")
  10006. },
  10007. {
  10008. name: "Normal",
  10009. height: math.unit(2.4, "meters"),
  10010. default: true
  10011. },
  10012. {
  10013. name: "Smaller Macro",
  10014. height: math.unit(120, "meters")
  10015. },
  10016. {
  10017. name: "Bigger Macro",
  10018. height: math.unit(1.2, "km")
  10019. },
  10020. {
  10021. name: "Megamacro",
  10022. height: math.unit(15, "kilometers")
  10023. },
  10024. {
  10025. name: "Gigamacro",
  10026. height: math.unit(2000, "km")
  10027. },
  10028. {
  10029. name: "Teramacro",
  10030. height: math.unit(500000, "km")
  10031. },
  10032. ]
  10033. ))
  10034. characterMakers.push(() => makeCharacter(
  10035. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10036. {
  10037. side: {
  10038. height: math.unit(6, "feet"),
  10039. name: "Side",
  10040. image: {
  10041. source: "./media/characters/ailbhe/side.svg",
  10042. extra: 757 / 464,
  10043. bottom: 0.041
  10044. }
  10045. },
  10046. },
  10047. [
  10048. {
  10049. name: "Normal",
  10050. height: math.unit(1.07, "meters"),
  10051. default: true
  10052. },
  10053. ]
  10054. ))
  10055. characterMakers.push(() => makeCharacter(
  10056. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10057. {
  10058. front: {
  10059. height: math.unit(6, "feet"),
  10060. weight: math.unit(120, "kg"),
  10061. name: "Front",
  10062. image: {
  10063. source: "./media/characters/zevulfius/front.svg",
  10064. extra: 965 / 903
  10065. }
  10066. },
  10067. side: {
  10068. height: math.unit(6, "feet"),
  10069. weight: math.unit(120, "kg"),
  10070. name: "Side",
  10071. image: {
  10072. source: "./media/characters/zevulfius/side.svg",
  10073. extra: 939 / 900
  10074. }
  10075. },
  10076. back: {
  10077. height: math.unit(6, "feet"),
  10078. weight: math.unit(120, "kg"),
  10079. name: "Back",
  10080. image: {
  10081. source: "./media/characters/zevulfius/back.svg",
  10082. extra: 918 / 854,
  10083. bottom: 0.005
  10084. }
  10085. },
  10086. foot: {
  10087. height: math.unit(6 / 3.72, "feet"),
  10088. name: "Foot",
  10089. image: {
  10090. source: "./media/characters/zevulfius/foot.svg"
  10091. }
  10092. },
  10093. },
  10094. [
  10095. {
  10096. name: "Macro",
  10097. height: math.unit(750, "meters")
  10098. },
  10099. {
  10100. name: "Megamacro",
  10101. height: math.unit(20, "km"),
  10102. default: true
  10103. },
  10104. {
  10105. name: "Gigamacro",
  10106. height: math.unit(2000, "km")
  10107. },
  10108. {
  10109. name: "Teramacro",
  10110. height: math.unit(250000, "km")
  10111. },
  10112. ]
  10113. ))
  10114. characterMakers.push(() => makeCharacter(
  10115. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10116. {
  10117. front: {
  10118. height: math.unit(100, "feet"),
  10119. weight: math.unit(350, "kg"),
  10120. name: "Front",
  10121. image: {
  10122. source: "./media/characters/rikes/front.svg",
  10123. extra: 1565 / 1483,
  10124. bottom: 0.017
  10125. }
  10126. },
  10127. },
  10128. [
  10129. {
  10130. name: "Macro",
  10131. height: math.unit(100, "feet"),
  10132. default: true
  10133. },
  10134. ]
  10135. ))
  10136. characterMakers.push(() => makeCharacter(
  10137. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10138. {
  10139. anthro: {
  10140. height: math.unit(8, "feet"),
  10141. weight: math.unit(120, "kg"),
  10142. name: "Anthro",
  10143. image: {
  10144. source: "./media/characters/adam-silver-mane/anthro.svg",
  10145. extra: 5743 / 5339,
  10146. bottom: 0.07
  10147. }
  10148. },
  10149. taur: {
  10150. height: math.unit(16, "feet"),
  10151. weight: math.unit(1500, "kg"),
  10152. name: "Taur",
  10153. image: {
  10154. source: "./media/characters/adam-silver-mane/taur.svg",
  10155. extra: 1713 / 1571,
  10156. bottom: 0.01
  10157. }
  10158. },
  10159. },
  10160. [
  10161. {
  10162. name: "Normal",
  10163. height: math.unit(8, "feet")
  10164. },
  10165. {
  10166. name: "Minimacro",
  10167. height: math.unit(80, "feet")
  10168. },
  10169. {
  10170. name: "Macro",
  10171. height: math.unit(800, "feet"),
  10172. default: true
  10173. },
  10174. {
  10175. name: "Megamacro",
  10176. height: math.unit(8000, "feet")
  10177. },
  10178. {
  10179. name: "Gigamacro",
  10180. height: math.unit(800, "miles")
  10181. },
  10182. {
  10183. name: "Teramacro",
  10184. height: math.unit(80000, "miles")
  10185. },
  10186. {
  10187. name: "Celestial",
  10188. height: math.unit(8e6, "miles")
  10189. },
  10190. {
  10191. name: "Star Dragon",
  10192. height: math.unit(800000, "parsecs")
  10193. },
  10194. {
  10195. name: "Godly",
  10196. height: math.unit(800, "teraparsecs")
  10197. },
  10198. ]
  10199. ))
  10200. characterMakers.push(() => makeCharacter(
  10201. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10202. {
  10203. front: {
  10204. height: math.unit(6, "feet"),
  10205. weight: math.unit(150, "lb"),
  10206. name: "Front",
  10207. image: {
  10208. source: "./media/characters/ky'owin/front.svg",
  10209. extra: 3888 / 3068,
  10210. bottom: 0.015
  10211. }
  10212. },
  10213. },
  10214. [
  10215. {
  10216. name: "Normal",
  10217. height: math.unit(6 + 8 / 12, "feet")
  10218. },
  10219. {
  10220. name: "Large",
  10221. height: math.unit(68, "feet")
  10222. },
  10223. {
  10224. name: "Macro",
  10225. height: math.unit(132, "feet")
  10226. },
  10227. {
  10228. name: "Macro+",
  10229. height: math.unit(340, "feet")
  10230. },
  10231. {
  10232. name: "Macro++",
  10233. height: math.unit(680, "feet"),
  10234. default: true
  10235. },
  10236. {
  10237. name: "Megamacro",
  10238. height: math.unit(1, "mile")
  10239. },
  10240. {
  10241. name: "Megamacro+",
  10242. height: math.unit(10, "miles")
  10243. },
  10244. ]
  10245. ))
  10246. characterMakers.push(() => makeCharacter(
  10247. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10248. {
  10249. front: {
  10250. height: math.unit(4, "feet"),
  10251. weight: math.unit(50, "lb"),
  10252. name: "Front",
  10253. image: {
  10254. source: "./media/characters/mal/front.svg",
  10255. extra: 785 / 724,
  10256. bottom: 0.07
  10257. }
  10258. },
  10259. },
  10260. [
  10261. {
  10262. name: "Micro",
  10263. height: math.unit(4, "inches")
  10264. },
  10265. {
  10266. name: "Normal",
  10267. height: math.unit(4, "feet"),
  10268. default: true
  10269. },
  10270. {
  10271. name: "Macro",
  10272. height: math.unit(200, "feet")
  10273. },
  10274. ]
  10275. ))
  10276. characterMakers.push(() => makeCharacter(
  10277. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10278. {
  10279. front: {
  10280. height: math.unit(6, "feet"),
  10281. weight: math.unit(150, "lb"),
  10282. name: "Front",
  10283. image: {
  10284. source: "./media/characters/jordan-deware/front.svg",
  10285. extra: 1191 / 1012
  10286. }
  10287. },
  10288. },
  10289. [
  10290. {
  10291. name: "Nano",
  10292. height: math.unit(0.01, "mm")
  10293. },
  10294. {
  10295. name: "Minimicro",
  10296. height: math.unit(1, "mm")
  10297. },
  10298. {
  10299. name: "Micro",
  10300. height: math.unit(0.5, "inches")
  10301. },
  10302. {
  10303. name: "Normal",
  10304. height: math.unit(4, "feet"),
  10305. default: true
  10306. },
  10307. {
  10308. name: "Minimacro",
  10309. height: math.unit(40, "meters")
  10310. },
  10311. {
  10312. name: "Small Macro",
  10313. height: math.unit(400, "meters")
  10314. },
  10315. {
  10316. name: "Macro",
  10317. height: math.unit(4, "miles")
  10318. },
  10319. {
  10320. name: "Megamacro",
  10321. height: math.unit(40, "miles")
  10322. },
  10323. {
  10324. name: "Megamacro+",
  10325. height: math.unit(400, "miles")
  10326. },
  10327. {
  10328. name: "Gigamacro",
  10329. height: math.unit(400000, "miles")
  10330. },
  10331. ]
  10332. ))
  10333. characterMakers.push(() => makeCharacter(
  10334. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10335. {
  10336. side: {
  10337. height: math.unit(6, "feet"),
  10338. weight: math.unit(150, "lb"),
  10339. name: "Side",
  10340. image: {
  10341. source: "./media/characters/kimiko/side.svg",
  10342. extra: 600 / 358
  10343. }
  10344. },
  10345. },
  10346. [
  10347. {
  10348. name: "Normal",
  10349. height: math.unit(15, "feet"),
  10350. default: true
  10351. },
  10352. {
  10353. name: "Macro",
  10354. height: math.unit(220, "feet")
  10355. },
  10356. {
  10357. name: "Macro+",
  10358. height: math.unit(1450, "feet")
  10359. },
  10360. {
  10361. name: "Megamacro",
  10362. height: math.unit(11500, "feet")
  10363. },
  10364. {
  10365. name: "Gigamacro",
  10366. height: math.unit(9500, "miles")
  10367. },
  10368. {
  10369. name: "Teramacro",
  10370. height: math.unit(2208005005, "miles")
  10371. },
  10372. {
  10373. name: "Examacro",
  10374. height: math.unit(2750, "parsecs")
  10375. },
  10376. {
  10377. name: "Zettamacro",
  10378. height: math.unit(101500, "parsecs")
  10379. },
  10380. ]
  10381. ))
  10382. characterMakers.push(() => makeCharacter(
  10383. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10384. {
  10385. front: {
  10386. height: math.unit(6, "feet"),
  10387. weight: math.unit(70, "kg"),
  10388. name: "Front",
  10389. image: {
  10390. source: "./media/characters/andrew-sleepy/front.svg"
  10391. }
  10392. },
  10393. side: {
  10394. height: math.unit(6, "feet"),
  10395. weight: math.unit(70, "kg"),
  10396. name: "Side",
  10397. image: {
  10398. source: "./media/characters/andrew-sleepy/side.svg"
  10399. }
  10400. },
  10401. },
  10402. [
  10403. {
  10404. name: "Micro",
  10405. height: math.unit(1, "mm"),
  10406. default: true
  10407. },
  10408. ]
  10409. ))
  10410. characterMakers.push(() => makeCharacter(
  10411. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10412. {
  10413. front: {
  10414. height: math.unit(6, "feet"),
  10415. weight: math.unit(150, "lb"),
  10416. name: "Front",
  10417. image: {
  10418. source: "./media/characters/judio/front.svg",
  10419. extra: 1258 / 1110
  10420. }
  10421. },
  10422. },
  10423. [
  10424. {
  10425. name: "Normal",
  10426. height: math.unit(5 + 6 / 12, "feet")
  10427. },
  10428. {
  10429. name: "Macro",
  10430. height: math.unit(1000, "feet"),
  10431. default: true
  10432. },
  10433. {
  10434. name: "Megamacro",
  10435. height: math.unit(10, "miles")
  10436. },
  10437. ]
  10438. ))
  10439. characterMakers.push(() => makeCharacter(
  10440. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10441. {
  10442. front: {
  10443. height: math.unit(6, "feet"),
  10444. weight: math.unit(68, "kg"),
  10445. name: "Front",
  10446. image: {
  10447. source: "./media/characters/nomaxice/front.svg",
  10448. extra: 1498 / 1073,
  10449. bottom: 0.075
  10450. }
  10451. },
  10452. foot: {
  10453. height: math.unit(1.1, "feet"),
  10454. name: "Foot",
  10455. image: {
  10456. source: "./media/characters/nomaxice/foot.svg"
  10457. }
  10458. },
  10459. },
  10460. [
  10461. {
  10462. name: "Micro",
  10463. height: math.unit(8, "cm")
  10464. },
  10465. {
  10466. name: "Norm",
  10467. height: math.unit(1.82, "m")
  10468. },
  10469. {
  10470. name: "Norm+",
  10471. height: math.unit(8.8, "feet")
  10472. },
  10473. {
  10474. name: "Big",
  10475. height: math.unit(8, "meters"),
  10476. default: true
  10477. },
  10478. {
  10479. name: "Macro",
  10480. height: math.unit(18, "meters")
  10481. },
  10482. {
  10483. name: "Macro+",
  10484. height: math.unit(88, "meters")
  10485. },
  10486. ]
  10487. ))
  10488. characterMakers.push(() => makeCharacter(
  10489. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10490. {
  10491. front: {
  10492. height: math.unit(12, "feet"),
  10493. weight: math.unit(1.5, "tons"),
  10494. name: "Front",
  10495. image: {
  10496. source: "./media/characters/dydros/front.svg",
  10497. extra: 863 / 800,
  10498. bottom: 0.015
  10499. }
  10500. },
  10501. back: {
  10502. height: math.unit(12, "feet"),
  10503. weight: math.unit(1.5, "tons"),
  10504. name: "Back",
  10505. image: {
  10506. source: "./media/characters/dydros/back.svg",
  10507. extra: 900 / 843,
  10508. bottom: 0.005
  10509. }
  10510. },
  10511. },
  10512. [
  10513. {
  10514. name: "Normal",
  10515. height: math.unit(12, "feet"),
  10516. default: true
  10517. },
  10518. ]
  10519. ))
  10520. characterMakers.push(() => makeCharacter(
  10521. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10522. {
  10523. front: {
  10524. height: math.unit(6, "feet"),
  10525. weight: math.unit(100, "kg"),
  10526. name: "Front",
  10527. image: {
  10528. source: "./media/characters/riggi/front.svg",
  10529. extra: 5787 / 5303
  10530. }
  10531. },
  10532. hyper: {
  10533. height: math.unit(6 * 5 / 3, "feet"),
  10534. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10535. name: "Hyper",
  10536. image: {
  10537. source: "./media/characters/riggi/hyper.svg",
  10538. extra: 3595 / 3485
  10539. }
  10540. },
  10541. },
  10542. [
  10543. {
  10544. name: "Small Macro",
  10545. height: math.unit(50, "feet")
  10546. },
  10547. {
  10548. name: "Default",
  10549. height: math.unit(200, "feet"),
  10550. default: true
  10551. },
  10552. {
  10553. name: "Loom",
  10554. height: math.unit(10000, "feet")
  10555. },
  10556. {
  10557. name: "Cruising Altitude",
  10558. height: math.unit(30000, "feet")
  10559. },
  10560. {
  10561. name: "Megamacro",
  10562. height: math.unit(100, "miles")
  10563. },
  10564. {
  10565. name: "Continent Sized",
  10566. height: math.unit(2800, "miles")
  10567. },
  10568. {
  10569. name: "Earth Sized",
  10570. height: math.unit(8000, "miles")
  10571. },
  10572. ]
  10573. ))
  10574. characterMakers.push(() => makeCharacter(
  10575. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10576. {
  10577. front: {
  10578. height: math.unit(6, "feet"),
  10579. weight: math.unit(250, "lb"),
  10580. name: "Front",
  10581. image: {
  10582. source: "./media/characters/alexi/front.svg",
  10583. extra: 3483 / 3291,
  10584. bottom: 0.04
  10585. }
  10586. },
  10587. back: {
  10588. height: math.unit(6, "feet"),
  10589. weight: math.unit(250, "lb"),
  10590. name: "Back",
  10591. image: {
  10592. source: "./media/characters/alexi/back.svg",
  10593. extra: 3533 / 3356,
  10594. bottom: 0.021
  10595. }
  10596. },
  10597. frontTransforming: {
  10598. height: math.unit(8.58, "feet"),
  10599. weight: math.unit(1300, "lb"),
  10600. name: "Transforming",
  10601. image: {
  10602. source: "./media/characters/alexi/front-transforming.svg",
  10603. extra: 437 / 409,
  10604. bottom: 19 / 458.66
  10605. }
  10606. },
  10607. frontTransformed: {
  10608. height: math.unit(12.5, "feet"),
  10609. weight: math.unit(4000, "lb"),
  10610. name: "Transformed",
  10611. image: {
  10612. source: "./media/characters/alexi/front-transformed.svg",
  10613. extra: 639 / 614,
  10614. bottom: 30.55 / 671
  10615. }
  10616. },
  10617. },
  10618. [
  10619. {
  10620. name: "Normal",
  10621. height: math.unit(14, "feet"),
  10622. default: true
  10623. },
  10624. {
  10625. name: "Minimacro",
  10626. height: math.unit(30, "meters")
  10627. },
  10628. {
  10629. name: "Macro",
  10630. height: math.unit(500, "meters")
  10631. },
  10632. {
  10633. name: "Megamacro",
  10634. height: math.unit(9000, "km")
  10635. },
  10636. {
  10637. name: "Teramacro",
  10638. height: math.unit(384000, "km")
  10639. },
  10640. ]
  10641. ))
  10642. characterMakers.push(() => makeCharacter(
  10643. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10644. {
  10645. front: {
  10646. height: math.unit(6, "feet"),
  10647. weight: math.unit(150, "lb"),
  10648. name: "Front",
  10649. image: {
  10650. source: "./media/characters/kayroo/front.svg",
  10651. extra: 1153 / 1038,
  10652. bottom: 0.06
  10653. }
  10654. },
  10655. foot: {
  10656. height: math.unit(6, "feet"),
  10657. weight: math.unit(150, "lb"),
  10658. name: "Foot",
  10659. image: {
  10660. source: "./media/characters/kayroo/foot.svg"
  10661. }
  10662. },
  10663. },
  10664. [
  10665. {
  10666. name: "Normal",
  10667. height: math.unit(8, "feet"),
  10668. default: true
  10669. },
  10670. {
  10671. name: "Minimacro",
  10672. height: math.unit(250, "feet")
  10673. },
  10674. {
  10675. name: "Macro",
  10676. height: math.unit(2800, "feet")
  10677. },
  10678. {
  10679. name: "Megamacro",
  10680. height: math.unit(5200, "feet")
  10681. },
  10682. {
  10683. name: "Gigamacro",
  10684. height: math.unit(27000, "feet")
  10685. },
  10686. {
  10687. name: "Omega",
  10688. height: math.unit(45000, "feet")
  10689. },
  10690. ]
  10691. ))
  10692. characterMakers.push(() => makeCharacter(
  10693. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10694. {
  10695. front: {
  10696. height: math.unit(18, "feet"),
  10697. weight: math.unit(5800, "lb"),
  10698. name: "Front",
  10699. image: {
  10700. source: "./media/characters/rhys/front.svg",
  10701. extra: 3386 / 3090,
  10702. bottom: 0.07
  10703. }
  10704. },
  10705. },
  10706. [
  10707. {
  10708. name: "Normal",
  10709. height: math.unit(18, "feet"),
  10710. default: true
  10711. },
  10712. {
  10713. name: "Working Size",
  10714. height: math.unit(200, "feet")
  10715. },
  10716. {
  10717. name: "Demolition Size",
  10718. height: math.unit(2000, "feet")
  10719. },
  10720. {
  10721. name: "Maximum Licensed Size",
  10722. height: math.unit(5, "miles")
  10723. },
  10724. {
  10725. name: "Maximum Observed Size",
  10726. height: math.unit(10, "yottameters")
  10727. },
  10728. ]
  10729. ))
  10730. characterMakers.push(() => makeCharacter(
  10731. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10732. {
  10733. front: {
  10734. height: math.unit(6, "feet"),
  10735. weight: math.unit(250, "lb"),
  10736. name: "Front",
  10737. image: {
  10738. source: "./media/characters/toto/front.svg",
  10739. extra: 527 / 479,
  10740. bottom: 0.05
  10741. }
  10742. },
  10743. },
  10744. [
  10745. {
  10746. name: "Micro",
  10747. height: math.unit(3, "feet")
  10748. },
  10749. {
  10750. name: "Normal",
  10751. height: math.unit(10, "feet")
  10752. },
  10753. {
  10754. name: "Macro",
  10755. height: math.unit(150, "feet"),
  10756. default: true
  10757. },
  10758. {
  10759. name: "Megamacro",
  10760. height: math.unit(1200, "feet")
  10761. },
  10762. ]
  10763. ))
  10764. characterMakers.push(() => makeCharacter(
  10765. { name: "King", species: ["lion"], tags: ["anthro"] },
  10766. {
  10767. back: {
  10768. height: math.unit(6, "feet"),
  10769. weight: math.unit(150, "lb"),
  10770. name: "Back",
  10771. image: {
  10772. source: "./media/characters/king/back.svg"
  10773. }
  10774. },
  10775. },
  10776. [
  10777. {
  10778. name: "Micro",
  10779. height: math.unit(2, "inches")
  10780. },
  10781. {
  10782. name: "Normal",
  10783. height: math.unit(8, "feet")
  10784. },
  10785. {
  10786. name: "Macro",
  10787. height: math.unit(200, "feet"),
  10788. default: true
  10789. },
  10790. {
  10791. name: "Megamacro",
  10792. height: math.unit(50, "miles")
  10793. },
  10794. ]
  10795. ))
  10796. characterMakers.push(() => makeCharacter(
  10797. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10798. {
  10799. anthro: {
  10800. height: math.unit(6 + 5 / 12, "feet"),
  10801. weight: math.unit(280, "lb"),
  10802. name: "Anthro",
  10803. image: {
  10804. source: "./media/characters/cordite/anthro.svg",
  10805. extra: 1986 / 1905,
  10806. bottom: 0.025
  10807. }
  10808. },
  10809. feral: {
  10810. height: math.unit(2, "feet"),
  10811. weight: math.unit(90, "lb"),
  10812. name: "Feral",
  10813. image: {
  10814. source: "./media/characters/cordite/feral.svg",
  10815. extra: 1260 / 755,
  10816. bottom: 0.05
  10817. }
  10818. },
  10819. },
  10820. [
  10821. {
  10822. name: "Normal",
  10823. height: math.unit(6 + 5 / 12, "feet"),
  10824. default: true
  10825. },
  10826. ]
  10827. ))
  10828. characterMakers.push(() => makeCharacter(
  10829. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10830. {
  10831. front: {
  10832. height: math.unit(6, "feet"),
  10833. weight: math.unit(150, "lb"),
  10834. name: "Front",
  10835. image: {
  10836. source: "./media/characters/pianostrong/front.svg",
  10837. extra: 6577 / 6254,
  10838. bottom: 0.02
  10839. }
  10840. },
  10841. side: {
  10842. height: math.unit(6, "feet"),
  10843. weight: math.unit(150, "lb"),
  10844. name: "Side",
  10845. image: {
  10846. source: "./media/characters/pianostrong/side.svg",
  10847. extra: 6106 / 5730
  10848. }
  10849. },
  10850. back: {
  10851. height: math.unit(6, "feet"),
  10852. weight: math.unit(150, "lb"),
  10853. name: "Back",
  10854. image: {
  10855. source: "./media/characters/pianostrong/back.svg",
  10856. extra: 6085 / 5733,
  10857. bottom: 0.01
  10858. }
  10859. },
  10860. },
  10861. [
  10862. {
  10863. name: "Macro",
  10864. height: math.unit(100, "feet")
  10865. },
  10866. {
  10867. name: "Macro+",
  10868. height: math.unit(300, "feet"),
  10869. default: true
  10870. },
  10871. {
  10872. name: "Macro++",
  10873. height: math.unit(1000, "feet")
  10874. },
  10875. ]
  10876. ))
  10877. characterMakers.push(() => makeCharacter(
  10878. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10879. {
  10880. front: {
  10881. height: math.unit(6, "feet"),
  10882. weight: math.unit(150, "lb"),
  10883. name: "Front",
  10884. image: {
  10885. source: "./media/characters/kona/front.svg",
  10886. extra: 2960 / 2629,
  10887. bottom: 0.005
  10888. }
  10889. },
  10890. },
  10891. [
  10892. {
  10893. name: "Normal",
  10894. height: math.unit(11 + 8 / 12, "feet")
  10895. },
  10896. {
  10897. name: "Macro",
  10898. height: math.unit(850, "feet"),
  10899. default: true
  10900. },
  10901. {
  10902. name: "Macro+",
  10903. height: math.unit(1.5, "km"),
  10904. default: true
  10905. },
  10906. {
  10907. name: "Megamacro",
  10908. height: math.unit(80, "miles")
  10909. },
  10910. {
  10911. name: "Gigamacro",
  10912. height: math.unit(3500, "miles")
  10913. },
  10914. ]
  10915. ))
  10916. characterMakers.push(() => makeCharacter(
  10917. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10918. {
  10919. side: {
  10920. height: math.unit(1.9, "meters"),
  10921. weight: math.unit(326, "kg"),
  10922. name: "Side",
  10923. image: {
  10924. source: "./media/characters/levi/side.svg",
  10925. extra: 1704 / 1334,
  10926. bottom: 0.02
  10927. }
  10928. },
  10929. },
  10930. [
  10931. {
  10932. name: "Normal",
  10933. height: math.unit(1.9, "meters"),
  10934. default: true
  10935. },
  10936. {
  10937. name: "Macro",
  10938. height: math.unit(20, "meters")
  10939. },
  10940. {
  10941. name: "Macro+",
  10942. height: math.unit(200, "meters")
  10943. },
  10944. {
  10945. name: "Megamacro",
  10946. height: math.unit(2, "km")
  10947. },
  10948. {
  10949. name: "Megamacro+",
  10950. height: math.unit(20, "km")
  10951. },
  10952. {
  10953. name: "Gigamacro",
  10954. height: math.unit(2500, "km")
  10955. },
  10956. {
  10957. name: "Gigamacro+",
  10958. height: math.unit(120000, "km")
  10959. },
  10960. {
  10961. name: "Teramacro",
  10962. height: math.unit(7.77e6, "km")
  10963. },
  10964. ]
  10965. ))
  10966. characterMakers.push(() => makeCharacter(
  10967. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10968. {
  10969. front: {
  10970. height: math.unit(6 + 4 / 12, "feet"),
  10971. weight: math.unit(188, "lb"),
  10972. name: "Front",
  10973. image: {
  10974. source: "./media/characters/bmc/front.svg",
  10975. extra: 1067 / 1022,
  10976. bottom: 0.047
  10977. }
  10978. },
  10979. },
  10980. [
  10981. {
  10982. name: "Human-sized",
  10983. height: math.unit(6 + 4 / 12, "feet")
  10984. },
  10985. {
  10986. name: "Small",
  10987. height: math.unit(250, "feet")
  10988. },
  10989. {
  10990. name: "Normal",
  10991. height: math.unit(1250, "feet"),
  10992. default: true
  10993. },
  10994. {
  10995. name: "Good Day",
  10996. height: math.unit(88, "miles")
  10997. },
  10998. {
  10999. name: "Largest Measured Size",
  11000. height: math.unit(11.2e6, "lightyears")
  11001. },
  11002. ]
  11003. ))
  11004. characterMakers.push(() => makeCharacter(
  11005. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11006. {
  11007. front: {
  11008. height: math.unit(20, "feet"),
  11009. weight: math.unit(2016, "kg"),
  11010. name: "Front",
  11011. image: {
  11012. source: "./media/characters/sven-the-kaiju/front.svg",
  11013. extra: 1479 / 1449,
  11014. bottom: 0.05
  11015. }
  11016. },
  11017. },
  11018. [
  11019. {
  11020. name: "Fairy",
  11021. height: math.unit(6, "inches")
  11022. },
  11023. {
  11024. name: "Normal",
  11025. height: math.unit(20, "feet"),
  11026. default: true
  11027. },
  11028. {
  11029. name: "Rampage",
  11030. height: math.unit(200, "feet")
  11031. },
  11032. {
  11033. name: "Archfey Forest Guardian",
  11034. height: math.unit(1, "mile")
  11035. },
  11036. ]
  11037. ))
  11038. characterMakers.push(() => makeCharacter(
  11039. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11040. {
  11041. front: {
  11042. height: math.unit(4, "meters"),
  11043. weight: math.unit(2, "tons"),
  11044. name: "Front",
  11045. image: {
  11046. source: "./media/characters/marik/front.svg",
  11047. extra: 1057 / 1003,
  11048. bottom: 0.08
  11049. }
  11050. },
  11051. },
  11052. [
  11053. {
  11054. name: "Normal",
  11055. height: math.unit(4, "meters"),
  11056. default: true
  11057. },
  11058. {
  11059. name: "Macro",
  11060. height: math.unit(20, "meters")
  11061. },
  11062. {
  11063. name: "Megamacro",
  11064. height: math.unit(50, "km")
  11065. },
  11066. {
  11067. name: "Gigamacro",
  11068. height: math.unit(100, "km")
  11069. },
  11070. {
  11071. name: "Alpha Macro",
  11072. height: math.unit(7.88e7, "yottameters")
  11073. },
  11074. ]
  11075. ))
  11076. characterMakers.push(() => makeCharacter(
  11077. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11078. {
  11079. front: {
  11080. height: math.unit(6, "feet"),
  11081. weight: math.unit(110, "lb"),
  11082. name: "Front",
  11083. image: {
  11084. source: "./media/characters/mel/front.svg",
  11085. extra: 736 / 617,
  11086. bottom: 0.017
  11087. }
  11088. },
  11089. },
  11090. [
  11091. {
  11092. name: "Pico",
  11093. height: math.unit(3, "pm")
  11094. },
  11095. {
  11096. name: "Nano",
  11097. height: math.unit(3, "nm")
  11098. },
  11099. {
  11100. name: "Micro",
  11101. height: math.unit(0.3, "mm"),
  11102. default: true
  11103. },
  11104. {
  11105. name: "Micro+",
  11106. height: math.unit(3, "mm")
  11107. },
  11108. {
  11109. name: "Normal",
  11110. height: math.unit(5 + 10.5 / 12, "feet")
  11111. },
  11112. ]
  11113. ))
  11114. characterMakers.push(() => makeCharacter(
  11115. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11116. {
  11117. kaiju: {
  11118. height: math.unit(1.75, "meters"),
  11119. weight: math.unit(55, "kg"),
  11120. name: "Kaiju",
  11121. image: {
  11122. source: "./media/characters/lykonous/kaiju.svg",
  11123. extra: 1055 / 946,
  11124. bottom: 0.135
  11125. }
  11126. },
  11127. },
  11128. [
  11129. {
  11130. name: "Normal",
  11131. height: math.unit(2.5, "meters"),
  11132. default: true
  11133. },
  11134. {
  11135. name: "Kaiju Dragon",
  11136. height: math.unit(60, "meters")
  11137. },
  11138. {
  11139. name: "Mega Kaiju",
  11140. height: math.unit(120, "km")
  11141. },
  11142. {
  11143. name: "Giga Kaiju",
  11144. height: math.unit(200, "megameters")
  11145. },
  11146. {
  11147. name: "Terra Kaiju",
  11148. height: math.unit(400, "gigameters")
  11149. },
  11150. {
  11151. name: "Kaiju Dragon God",
  11152. height: math.unit(13000, "exaparsecs")
  11153. },
  11154. ]
  11155. ))
  11156. characterMakers.push(() => makeCharacter(
  11157. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11158. {
  11159. front: {
  11160. height: math.unit(6, "feet"),
  11161. weight: math.unit(150, "lb"),
  11162. name: "Front",
  11163. image: {
  11164. source: "./media/characters/blü/front.svg",
  11165. extra: 1883 / 1564,
  11166. bottom: 0.031
  11167. }
  11168. },
  11169. },
  11170. [
  11171. {
  11172. name: "Normal",
  11173. height: math.unit(13, "feet"),
  11174. default: true
  11175. },
  11176. {
  11177. name: "Big Boi",
  11178. height: math.unit(150, "meters")
  11179. },
  11180. {
  11181. name: "Mini Stomper",
  11182. height: math.unit(300, "meters")
  11183. },
  11184. {
  11185. name: "Macro",
  11186. height: math.unit(1000, "meters")
  11187. },
  11188. {
  11189. name: "Megamacro",
  11190. height: math.unit(11000, "meters")
  11191. },
  11192. {
  11193. name: "Gigamacro",
  11194. height: math.unit(11000, "km")
  11195. },
  11196. {
  11197. name: "Teramacro",
  11198. height: math.unit(420000, "km")
  11199. },
  11200. {
  11201. name: "Examacro",
  11202. height: math.unit(120, "parsecs")
  11203. },
  11204. {
  11205. name: "God Tho",
  11206. height: math.unit(98000000000, "parsecs")
  11207. },
  11208. ]
  11209. ))
  11210. characterMakers.push(() => makeCharacter(
  11211. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11212. {
  11213. taurFront: {
  11214. height: math.unit(6, "feet"),
  11215. weight: math.unit(200, "lb"),
  11216. name: "Taur (Front)",
  11217. image: {
  11218. source: "./media/characters/scales/taur-front.svg",
  11219. extra: 1,
  11220. bottom: 0.05
  11221. }
  11222. },
  11223. taurBack: {
  11224. height: math.unit(6, "feet"),
  11225. weight: math.unit(200, "lb"),
  11226. name: "Taur (Back)",
  11227. image: {
  11228. source: "./media/characters/scales/taur-back.svg",
  11229. extra: 1,
  11230. bottom: 0.08
  11231. }
  11232. },
  11233. anthro: {
  11234. height: math.unit(6 * 7 / 12, "feet"),
  11235. weight: math.unit(100, "lb"),
  11236. name: "Anthro",
  11237. image: {
  11238. source: "./media/characters/scales/anthro.svg",
  11239. extra: 1,
  11240. bottom: 0.06
  11241. }
  11242. },
  11243. },
  11244. [
  11245. {
  11246. name: "Normal",
  11247. height: math.unit(12, "feet"),
  11248. default: true
  11249. },
  11250. ]
  11251. ))
  11252. characterMakers.push(() => makeCharacter(
  11253. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11254. {
  11255. front: {
  11256. height: math.unit(6, "feet"),
  11257. weight: math.unit(150, "lb"),
  11258. name: "Front",
  11259. image: {
  11260. source: "./media/characters/koragos/front.svg",
  11261. extra: 841 / 794,
  11262. bottom: 0.035
  11263. }
  11264. },
  11265. back: {
  11266. height: math.unit(6, "feet"),
  11267. weight: math.unit(150, "lb"),
  11268. name: "Back",
  11269. image: {
  11270. source: "./media/characters/koragos/back.svg",
  11271. extra: 841 / 810,
  11272. bottom: 0.022
  11273. }
  11274. },
  11275. },
  11276. [
  11277. {
  11278. name: "Normal",
  11279. height: math.unit(6 + 11 / 12, "feet"),
  11280. default: true
  11281. },
  11282. {
  11283. name: "Macro",
  11284. height: math.unit(490, "feet")
  11285. },
  11286. {
  11287. name: "Megamacro",
  11288. height: math.unit(10, "miles")
  11289. },
  11290. {
  11291. name: "Gigamacro",
  11292. height: math.unit(50, "miles")
  11293. },
  11294. ]
  11295. ))
  11296. characterMakers.push(() => makeCharacter(
  11297. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11298. {
  11299. front: {
  11300. height: math.unit(6, "feet"),
  11301. weight: math.unit(250, "lb"),
  11302. name: "Front",
  11303. image: {
  11304. source: "./media/characters/xylrem/front.svg",
  11305. extra: 3323 / 3050,
  11306. bottom: 0.065
  11307. }
  11308. },
  11309. },
  11310. [
  11311. {
  11312. name: "Micro",
  11313. height: math.unit(4, "feet")
  11314. },
  11315. {
  11316. name: "Normal",
  11317. height: math.unit(16, "feet"),
  11318. default: true
  11319. },
  11320. {
  11321. name: "Macro",
  11322. height: math.unit(2720, "feet")
  11323. },
  11324. {
  11325. name: "Megamacro",
  11326. height: math.unit(25000, "miles")
  11327. },
  11328. ]
  11329. ))
  11330. characterMakers.push(() => makeCharacter(
  11331. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11332. {
  11333. front: {
  11334. height: math.unit(8, "feet"),
  11335. weight: math.unit(250, "kg"),
  11336. name: "Front",
  11337. image: {
  11338. source: "./media/characters/ikideru/front.svg",
  11339. extra: 930 / 870,
  11340. bottom: 0.087
  11341. }
  11342. },
  11343. back: {
  11344. height: math.unit(8, "feet"),
  11345. weight: math.unit(250, "kg"),
  11346. name: "Back",
  11347. image: {
  11348. source: "./media/characters/ikideru/back.svg",
  11349. extra: 919 / 852,
  11350. bottom: 0.055
  11351. }
  11352. },
  11353. },
  11354. [
  11355. {
  11356. name: "Rare",
  11357. height: math.unit(8, "feet"),
  11358. default: true
  11359. },
  11360. {
  11361. name: "Playful Loom",
  11362. height: math.unit(80, "feet")
  11363. },
  11364. {
  11365. name: "City Leaner",
  11366. height: math.unit(230, "feet")
  11367. },
  11368. {
  11369. name: "Megamacro",
  11370. height: math.unit(2500, "feet")
  11371. },
  11372. {
  11373. name: "Gigamacro",
  11374. height: math.unit(26400, "feet")
  11375. },
  11376. {
  11377. name: "Tectonic Shifter",
  11378. height: math.unit(1.7, "megameters")
  11379. },
  11380. {
  11381. name: "Planet Carer",
  11382. height: math.unit(21, "megameters")
  11383. },
  11384. {
  11385. name: "God",
  11386. height: math.unit(11157.22, "parsecs")
  11387. },
  11388. ]
  11389. ))
  11390. characterMakers.push(() => makeCharacter(
  11391. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11392. {
  11393. front: {
  11394. height: math.unit(6, "feet"),
  11395. weight: math.unit(120, "lb"),
  11396. name: "Front",
  11397. image: {
  11398. source: "./media/characters/neo/front.svg"
  11399. }
  11400. },
  11401. },
  11402. [
  11403. {
  11404. name: "Micro",
  11405. height: math.unit(2, "inches"),
  11406. default: true
  11407. },
  11408. {
  11409. name: "Human Size",
  11410. height: math.unit(5 + 8 / 12, "feet")
  11411. },
  11412. ]
  11413. ))
  11414. characterMakers.push(() => makeCharacter(
  11415. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11416. {
  11417. front: {
  11418. height: math.unit(13 + 10 / 12, "feet"),
  11419. weight: math.unit(5320, "lb"),
  11420. name: "Front",
  11421. image: {
  11422. source: "./media/characters/chauncey-chantz/front.svg",
  11423. extra: 1587 / 1435,
  11424. bottom: 0.02
  11425. }
  11426. },
  11427. },
  11428. [
  11429. {
  11430. name: "Normal",
  11431. height: math.unit(13 + 10 / 12, "feet"),
  11432. default: true
  11433. },
  11434. {
  11435. name: "Macro",
  11436. height: math.unit(45, "feet")
  11437. },
  11438. {
  11439. name: "Megamacro",
  11440. height: math.unit(250, "miles")
  11441. },
  11442. {
  11443. name: "Planetary",
  11444. height: math.unit(10000, "miles")
  11445. },
  11446. {
  11447. name: "Galactic",
  11448. height: math.unit(40000, "parsecs")
  11449. },
  11450. {
  11451. name: "Universal",
  11452. height: math.unit(1, "yottameter")
  11453. },
  11454. ]
  11455. ))
  11456. characterMakers.push(() => makeCharacter(
  11457. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11458. {
  11459. front: {
  11460. height: math.unit(6, "feet"),
  11461. weight: math.unit(150, "lb"),
  11462. name: "Front",
  11463. image: {
  11464. source: "./media/characters/epifox/front.svg",
  11465. extra: 1,
  11466. bottom: 0.075
  11467. }
  11468. },
  11469. },
  11470. [
  11471. {
  11472. name: "Micro",
  11473. height: math.unit(6, "inches")
  11474. },
  11475. {
  11476. name: "Normal",
  11477. height: math.unit(12, "feet"),
  11478. default: true
  11479. },
  11480. {
  11481. name: "Macro",
  11482. height: math.unit(3810, "feet")
  11483. },
  11484. {
  11485. name: "Megamacro",
  11486. height: math.unit(500, "miles")
  11487. },
  11488. ]
  11489. ))
  11490. characterMakers.push(() => makeCharacter(
  11491. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11492. {
  11493. front: {
  11494. height: math.unit(1.8796, "m"),
  11495. weight: math.unit(230, "lb"),
  11496. name: "Front",
  11497. image: {
  11498. source: "./media/characters/colin-t/front.svg",
  11499. extra: 1272 / 1193,
  11500. bottom: 0.07
  11501. }
  11502. },
  11503. },
  11504. [
  11505. {
  11506. name: "Micro",
  11507. height: math.unit(0.571, "meters")
  11508. },
  11509. {
  11510. name: "Normal",
  11511. height: math.unit(1.8796, "meters"),
  11512. default: true
  11513. },
  11514. {
  11515. name: "Tall",
  11516. height: math.unit(4, "meters")
  11517. },
  11518. {
  11519. name: "Macro",
  11520. height: math.unit(67.241, "meters")
  11521. },
  11522. {
  11523. name: "Megamacro",
  11524. height: math.unit(371.856, "meters")
  11525. },
  11526. {
  11527. name: "Planetary",
  11528. height: math.unit(12631.5689, "km")
  11529. },
  11530. ]
  11531. ))
  11532. characterMakers.push(() => makeCharacter(
  11533. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11534. {
  11535. front: {
  11536. height: math.unit(1.85, "meters"),
  11537. weight: math.unit(80, "kg"),
  11538. name: "Front",
  11539. image: {
  11540. source: "./media/characters/matvei/front.svg",
  11541. extra: 614 / 594,
  11542. bottom: 0.01
  11543. }
  11544. },
  11545. },
  11546. [
  11547. {
  11548. name: "Normal",
  11549. height: math.unit(1.85, "meters"),
  11550. default: true
  11551. },
  11552. ]
  11553. ))
  11554. characterMakers.push(() => makeCharacter(
  11555. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11556. {
  11557. front: {
  11558. height: math.unit(5 + 9 / 12, "feet"),
  11559. weight: math.unit(70, "lb"),
  11560. name: "Front",
  11561. image: {
  11562. source: "./media/characters/quincy/front.svg",
  11563. extra: 3041 / 2751
  11564. }
  11565. },
  11566. back: {
  11567. height: math.unit(5 + 9 / 12, "feet"),
  11568. weight: math.unit(70, "lb"),
  11569. name: "Back",
  11570. image: {
  11571. source: "./media/characters/quincy/back.svg",
  11572. extra: 3041 / 2751
  11573. }
  11574. },
  11575. flying: {
  11576. height: math.unit(5 + 4 / 12, "feet"),
  11577. weight: math.unit(70, "lb"),
  11578. name: "Flying",
  11579. image: {
  11580. source: "./media/characters/quincy/flying.svg",
  11581. extra: 1044 / 930
  11582. }
  11583. },
  11584. },
  11585. [
  11586. {
  11587. name: "Micro",
  11588. height: math.unit(3, "cm")
  11589. },
  11590. {
  11591. name: "Normal",
  11592. height: math.unit(5 + 9 / 12, "feet")
  11593. },
  11594. {
  11595. name: "Macro",
  11596. height: math.unit(200, "meters"),
  11597. default: true
  11598. },
  11599. {
  11600. name: "Megamacro",
  11601. height: math.unit(1000, "meters")
  11602. },
  11603. ]
  11604. ))
  11605. characterMakers.push(() => makeCharacter(
  11606. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11607. {
  11608. front: {
  11609. height: math.unit(4 + 7 / 12, "feet"),
  11610. weight: math.unit(50, "lb"),
  11611. name: "Front",
  11612. image: {
  11613. source: "./media/characters/vanrel/front.svg",
  11614. extra: 1,
  11615. bottom: 0.02
  11616. }
  11617. },
  11618. frontAlt: {
  11619. height: math.unit(4 + 7 / 12, "feet"),
  11620. weight: math.unit(50, "lb"),
  11621. name: "Front-alt",
  11622. image: {
  11623. source: "./media/characters/vanrel/front-alt.svg",
  11624. extra: 1,
  11625. bottom: 15 / 1511
  11626. }
  11627. },
  11628. elemental: {
  11629. height: math.unit(3, "feet"),
  11630. weight: math.unit(50, "lb"),
  11631. name: "Elemental",
  11632. image: {
  11633. source: "./media/characters/vanrel/elemental.svg",
  11634. extra: 192.3 / 162.8,
  11635. bottom: 1.79 / 194.17
  11636. }
  11637. },
  11638. side: {
  11639. height: math.unit(4 + 7 / 12, "feet"),
  11640. weight: math.unit(50, "lb"),
  11641. name: "Side",
  11642. image: {
  11643. source: "./media/characters/vanrel/side.svg",
  11644. extra: 1,
  11645. bottom: 0.025
  11646. }
  11647. },
  11648. tome: {
  11649. height: math.unit(1.35, "feet"),
  11650. weight: math.unit(10, "lb"),
  11651. name: "Vanrel's Tome",
  11652. rename: true,
  11653. image: {
  11654. source: "./media/characters/vanrel/tome.svg"
  11655. }
  11656. },
  11657. beans: {
  11658. height: math.unit(0.89, "feet"),
  11659. name: "Beans",
  11660. image: {
  11661. source: "./media/characters/vanrel/beans.svg"
  11662. }
  11663. },
  11664. },
  11665. [
  11666. {
  11667. name: "Normal",
  11668. height: math.unit(4 + 7 / 12, "feet"),
  11669. default: true
  11670. },
  11671. ]
  11672. ))
  11673. characterMakers.push(() => makeCharacter(
  11674. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11675. {
  11676. front: {
  11677. height: math.unit(7 + 5 / 12, "feet"),
  11678. weight: math.unit(150, "lb"),
  11679. name: "Front",
  11680. image: {
  11681. source: "./media/characters/kuiper-vanrel/front.svg",
  11682. extra: 1118 / 1068,
  11683. bottom: 0.09
  11684. }
  11685. },
  11686. foot: {
  11687. height: math.unit(0.55, "meters"),
  11688. name: "Foot",
  11689. image: {
  11690. source: "./media/characters/kuiper-vanrel/foot.svg",
  11691. }
  11692. },
  11693. battle: {
  11694. height: math.unit(6.824, "feet"),
  11695. weight: math.unit(150, "lb"),
  11696. name: "Battle",
  11697. image: {
  11698. source: "./media/characters/kuiper-vanrel/battle.svg",
  11699. extra: 1466 / 1327,
  11700. bottom: 29 / 1492.5
  11701. }
  11702. },
  11703. battleAlt: {
  11704. height: math.unit(6.824, "feet"),
  11705. weight: math.unit(150, "lb"),
  11706. name: "Battle (Alt)",
  11707. image: {
  11708. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11709. extra: 2081 / 1965,
  11710. bottom: 40 / 2121
  11711. }
  11712. },
  11713. },
  11714. [
  11715. {
  11716. name: "Normal",
  11717. height: math.unit(7 + 5 / 12, "feet"),
  11718. default: true
  11719. },
  11720. ]
  11721. ))
  11722. characterMakers.push(() => makeCharacter(
  11723. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11724. {
  11725. front: {
  11726. height: math.unit(8 + 5 / 12, "feet"),
  11727. weight: math.unit(150, "lb"),
  11728. name: "Front",
  11729. image: {
  11730. source: "./media/characters/keset-vanrel/front.svg",
  11731. extra: 1150 / 1084,
  11732. bottom: 0.05
  11733. }
  11734. },
  11735. hand: {
  11736. height: math.unit(0.6, "meters"),
  11737. name: "Hand",
  11738. image: {
  11739. source: "./media/characters/keset-vanrel/hand.svg"
  11740. }
  11741. },
  11742. foot: {
  11743. height: math.unit(0.94978, "meters"),
  11744. name: "Foot",
  11745. image: {
  11746. source: "./media/characters/keset-vanrel/foot.svg"
  11747. }
  11748. },
  11749. battle: {
  11750. height: math.unit(7.408, "feet"),
  11751. weight: math.unit(150, "lb"),
  11752. name: "Battle",
  11753. image: {
  11754. source: "./media/characters/keset-vanrel/battle.svg",
  11755. extra: 1890 / 1386,
  11756. bottom: 73.28 / 1970
  11757. }
  11758. },
  11759. },
  11760. [
  11761. {
  11762. name: "Normal",
  11763. height: math.unit(8 + 5 / 12, "feet"),
  11764. default: true
  11765. },
  11766. ]
  11767. ))
  11768. characterMakers.push(() => makeCharacter(
  11769. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11770. {
  11771. front: {
  11772. height: math.unit(6, "feet"),
  11773. weight: math.unit(150, "lb"),
  11774. name: "Front",
  11775. image: {
  11776. source: "./media/characters/neos/front.svg",
  11777. extra: 1696 / 992,
  11778. bottom: 0.14
  11779. }
  11780. },
  11781. },
  11782. [
  11783. {
  11784. name: "Normal",
  11785. height: math.unit(54, "cm"),
  11786. default: true
  11787. },
  11788. {
  11789. name: "Macro",
  11790. height: math.unit(100, "m")
  11791. },
  11792. {
  11793. name: "Megamacro",
  11794. height: math.unit(10, "km")
  11795. },
  11796. {
  11797. name: "Megamacro+",
  11798. height: math.unit(100, "km")
  11799. },
  11800. {
  11801. name: "Gigamacro",
  11802. height: math.unit(100, "Mm")
  11803. },
  11804. {
  11805. name: "Teramacro",
  11806. height: math.unit(100, "Gm")
  11807. },
  11808. {
  11809. name: "Examacro",
  11810. height: math.unit(100, "Em")
  11811. },
  11812. {
  11813. name: "Godly",
  11814. height: math.unit(10000, "Ym")
  11815. },
  11816. {
  11817. name: "Beyond Godly",
  11818. height: math.unit(25, "multiverses")
  11819. },
  11820. ]
  11821. ))
  11822. characterMakers.push(() => makeCharacter(
  11823. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11824. {
  11825. feminine: {
  11826. height: math.unit(5, "feet"),
  11827. weight: math.unit(100, "lb"),
  11828. name: "Feminine",
  11829. image: {
  11830. source: "./media/characters/sammy-mouse/feminine.svg",
  11831. extra: 2526 / 2425,
  11832. bottom: 0.123
  11833. }
  11834. },
  11835. masculine: {
  11836. height: math.unit(5, "feet"),
  11837. weight: math.unit(100, "lb"),
  11838. name: "Masculine",
  11839. image: {
  11840. source: "./media/characters/sammy-mouse/masculine.svg",
  11841. extra: 2526 / 2425,
  11842. bottom: 0.123
  11843. }
  11844. },
  11845. },
  11846. [
  11847. {
  11848. name: "Micro",
  11849. height: math.unit(5, "inches")
  11850. },
  11851. {
  11852. name: "Normal",
  11853. height: math.unit(5, "feet"),
  11854. default: true
  11855. },
  11856. {
  11857. name: "Macro",
  11858. height: math.unit(60, "feet")
  11859. },
  11860. ]
  11861. ))
  11862. characterMakers.push(() => makeCharacter(
  11863. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11864. {
  11865. front: {
  11866. height: math.unit(4, "feet"),
  11867. weight: math.unit(50, "lb"),
  11868. name: "Front",
  11869. image: {
  11870. source: "./media/characters/kole/front.svg",
  11871. extra: 1423 / 1303,
  11872. bottom: 0.025
  11873. }
  11874. },
  11875. back: {
  11876. height: math.unit(4, "feet"),
  11877. weight: math.unit(50, "lb"),
  11878. name: "Back",
  11879. image: {
  11880. source: "./media/characters/kole/back.svg",
  11881. extra: 1426 / 1280,
  11882. bottom: 0.02
  11883. }
  11884. },
  11885. },
  11886. [
  11887. {
  11888. name: "Normal",
  11889. height: math.unit(4, "feet"),
  11890. default: true
  11891. },
  11892. ]
  11893. ))
  11894. characterMakers.push(() => makeCharacter(
  11895. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11896. {
  11897. front: {
  11898. height: math.unit(2 + 6 / 12, "feet"),
  11899. weight: math.unit(20, "lb"),
  11900. name: "Front",
  11901. image: {
  11902. source: "./media/characters/rufran/front.svg",
  11903. extra: 2041 / 1839,
  11904. bottom: 0.055
  11905. }
  11906. },
  11907. back: {
  11908. height: math.unit(2 + 6 / 12, "feet"),
  11909. weight: math.unit(20, "lb"),
  11910. name: "Back",
  11911. image: {
  11912. source: "./media/characters/rufran/back.svg",
  11913. extra: 2054 / 1839,
  11914. bottom: 0.01
  11915. }
  11916. },
  11917. hand: {
  11918. height: math.unit(0.2166, "meters"),
  11919. name: "Hand",
  11920. image: {
  11921. source: "./media/characters/rufran/hand.svg"
  11922. }
  11923. },
  11924. foot: {
  11925. height: math.unit(0.185, "meters"),
  11926. name: "Foot",
  11927. image: {
  11928. source: "./media/characters/rufran/foot.svg"
  11929. }
  11930. },
  11931. },
  11932. [
  11933. {
  11934. name: "Micro",
  11935. height: math.unit(1, "inch")
  11936. },
  11937. {
  11938. name: "Normal",
  11939. height: math.unit(2 + 6 / 12, "feet"),
  11940. default: true
  11941. },
  11942. {
  11943. name: "Big",
  11944. height: math.unit(60, "feet")
  11945. },
  11946. {
  11947. name: "Macro",
  11948. height: math.unit(325, "feet")
  11949. },
  11950. ]
  11951. ))
  11952. characterMakers.push(() => makeCharacter(
  11953. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11954. {
  11955. front: {
  11956. height: math.unit(0.3, "meters"),
  11957. weight: math.unit(3.5, "kg"),
  11958. name: "Front",
  11959. image: {
  11960. source: "./media/characters/chip/front.svg",
  11961. extra: 748 / 674
  11962. }
  11963. },
  11964. },
  11965. [
  11966. {
  11967. name: "Micro",
  11968. height: math.unit(1, "inch"),
  11969. default: true
  11970. },
  11971. ]
  11972. ))
  11973. characterMakers.push(() => makeCharacter(
  11974. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11975. {
  11976. side: {
  11977. height: math.unit(2.3, "meters"),
  11978. weight: math.unit(3500, "lb"),
  11979. name: "Side",
  11980. image: {
  11981. source: "./media/characters/torvid/side.svg",
  11982. extra: 1972 / 722,
  11983. bottom: 0.035
  11984. }
  11985. },
  11986. },
  11987. [
  11988. {
  11989. name: "Normal",
  11990. height: math.unit(2.3, "meters"),
  11991. default: true
  11992. },
  11993. ]
  11994. ))
  11995. characterMakers.push(() => makeCharacter(
  11996. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11997. {
  11998. front: {
  11999. height: math.unit(2, "meters"),
  12000. weight: math.unit(150.5, "kg"),
  12001. name: "Front",
  12002. image: {
  12003. source: "./media/characters/susan/front.svg",
  12004. extra: 693 / 635,
  12005. bottom: 0.05
  12006. }
  12007. },
  12008. },
  12009. [
  12010. {
  12011. name: "Megamacro",
  12012. height: math.unit(505, "miles"),
  12013. default: true
  12014. },
  12015. ]
  12016. ))
  12017. characterMakers.push(() => makeCharacter(
  12018. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12019. {
  12020. front: {
  12021. height: math.unit(6, "feet"),
  12022. weight: math.unit(150, "lb"),
  12023. name: "Front",
  12024. image: {
  12025. source: "./media/characters/raindrops/front.svg",
  12026. extra: 2655 / 2461,
  12027. bottom: 49 / 2705
  12028. }
  12029. },
  12030. back: {
  12031. height: math.unit(6, "feet"),
  12032. weight: math.unit(150, "lb"),
  12033. name: "Back",
  12034. image: {
  12035. source: "./media/characters/raindrops/back.svg",
  12036. extra: 2574 / 2400,
  12037. bottom: 65 / 2634
  12038. }
  12039. },
  12040. },
  12041. [
  12042. {
  12043. name: "Micro",
  12044. height: math.unit(6, "inches")
  12045. },
  12046. {
  12047. name: "Normal",
  12048. height: math.unit(6 + 2 / 12, "feet")
  12049. },
  12050. {
  12051. name: "Macro",
  12052. height: math.unit(131, "feet"),
  12053. default: true
  12054. },
  12055. {
  12056. name: "Megamacro",
  12057. height: math.unit(15, "miles")
  12058. },
  12059. {
  12060. name: "Gigamacro",
  12061. height: math.unit(4000, "miles")
  12062. },
  12063. {
  12064. name: "Teramacro",
  12065. height: math.unit(315000, "miles")
  12066. },
  12067. ]
  12068. ))
  12069. characterMakers.push(() => makeCharacter(
  12070. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12071. {
  12072. front: {
  12073. height: math.unit(2.794, "meters"),
  12074. weight: math.unit(325, "kg"),
  12075. name: "Front",
  12076. image: {
  12077. source: "./media/characters/tezwa/front.svg",
  12078. extra: 2083 / 1906,
  12079. bottom: 0.031
  12080. }
  12081. },
  12082. foot: {
  12083. height: math.unit(0.687, "meters"),
  12084. name: "Foot",
  12085. image: {
  12086. source: "./media/characters/tezwa/foot.svg"
  12087. }
  12088. },
  12089. },
  12090. [
  12091. {
  12092. name: "Normal",
  12093. height: math.unit(9 + 2 / 12, "feet"),
  12094. default: true
  12095. },
  12096. ]
  12097. ))
  12098. characterMakers.push(() => makeCharacter(
  12099. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12100. {
  12101. front: {
  12102. height: math.unit(58, "feet"),
  12103. weight: math.unit(89000, "lb"),
  12104. name: "Front",
  12105. image: {
  12106. source: "./media/characters/typhus/front.svg",
  12107. extra: 816 / 800,
  12108. bottom: 0.065
  12109. }
  12110. },
  12111. },
  12112. [
  12113. {
  12114. name: "Macro",
  12115. height: math.unit(58, "feet"),
  12116. default: true
  12117. },
  12118. ]
  12119. ))
  12120. characterMakers.push(() => makeCharacter(
  12121. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12122. {
  12123. front: {
  12124. height: math.unit(12, "feet"),
  12125. weight: math.unit(6, "tonnes"),
  12126. name: "Front",
  12127. image: {
  12128. source: "./media/characters/lyra-von-wulf/front.svg",
  12129. extra: 1,
  12130. bottom: 0.10
  12131. }
  12132. },
  12133. frontMecha: {
  12134. height: math.unit(12, "feet"),
  12135. weight: math.unit(12, "tonnes"),
  12136. name: "Front (Mecha)",
  12137. image: {
  12138. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12139. extra: 1,
  12140. bottom: 0.042
  12141. }
  12142. },
  12143. maw: {
  12144. height: math.unit(2.2, "feet"),
  12145. name: "Maw",
  12146. image: {
  12147. source: "./media/characters/lyra-von-wulf/maw.svg"
  12148. }
  12149. },
  12150. },
  12151. [
  12152. {
  12153. name: "Normal",
  12154. height: math.unit(12, "feet"),
  12155. default: true
  12156. },
  12157. {
  12158. name: "Classic",
  12159. height: math.unit(50, "feet")
  12160. },
  12161. {
  12162. name: "Macro",
  12163. height: math.unit(500, "feet")
  12164. },
  12165. {
  12166. name: "Megamacro",
  12167. height: math.unit(1, "mile")
  12168. },
  12169. {
  12170. name: "Gigamacro",
  12171. height: math.unit(400, "miles")
  12172. },
  12173. {
  12174. name: "Teramacro",
  12175. height: math.unit(22000, "miles")
  12176. },
  12177. {
  12178. name: "Solarmacro",
  12179. height: math.unit(8600000, "miles")
  12180. },
  12181. {
  12182. name: "Galactic",
  12183. height: math.unit(1057000, "lightyears")
  12184. },
  12185. ]
  12186. ))
  12187. characterMakers.push(() => makeCharacter(
  12188. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12189. {
  12190. front: {
  12191. height: math.unit(6 + 10 / 12, "feet"),
  12192. weight: math.unit(150, "lb"),
  12193. name: "Front",
  12194. image: {
  12195. source: "./media/characters/dixon/front.svg",
  12196. extra: 3361 / 3209,
  12197. bottom: 0.01
  12198. }
  12199. },
  12200. },
  12201. [
  12202. {
  12203. name: "Normal",
  12204. height: math.unit(6 + 10 / 12, "feet"),
  12205. default: true
  12206. },
  12207. {
  12208. name: "Big",
  12209. height: math.unit(12, "meters")
  12210. },
  12211. {
  12212. name: "Macro",
  12213. height: math.unit(500, "meters")
  12214. },
  12215. {
  12216. name: "Megamacro",
  12217. height: math.unit(2, "km")
  12218. },
  12219. ]
  12220. ))
  12221. characterMakers.push(() => makeCharacter(
  12222. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12223. {
  12224. front: {
  12225. height: math.unit(185, "cm"),
  12226. weight: math.unit(68, "kg"),
  12227. name: "Front",
  12228. image: {
  12229. source: "./media/characters/kauko/front.svg",
  12230. extra: 1455 / 1421,
  12231. bottom: 0.03
  12232. }
  12233. },
  12234. back: {
  12235. height: math.unit(185, "cm"),
  12236. weight: math.unit(68, "kg"),
  12237. name: "Back",
  12238. image: {
  12239. source: "./media/characters/kauko/back.svg",
  12240. extra: 1455 / 1421,
  12241. bottom: 0.004
  12242. }
  12243. },
  12244. },
  12245. [
  12246. {
  12247. name: "Normal",
  12248. height: math.unit(185, "cm"),
  12249. default: true
  12250. },
  12251. ]
  12252. ))
  12253. characterMakers.push(() => makeCharacter(
  12254. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12255. {
  12256. front: {
  12257. height: math.unit(6, "feet"),
  12258. weight: math.unit(150, "kg"),
  12259. name: "Front",
  12260. image: {
  12261. source: "./media/characters/varg/front.svg",
  12262. extra: 1108 / 1018,
  12263. bottom: 0.0375
  12264. }
  12265. },
  12266. },
  12267. [
  12268. {
  12269. name: "Normal",
  12270. height: math.unit(5, "meters")
  12271. },
  12272. {
  12273. name: "Macro",
  12274. height: math.unit(200, "meters")
  12275. },
  12276. {
  12277. name: "Megamacro",
  12278. height: math.unit(20, "kilometers")
  12279. },
  12280. {
  12281. name: "True Size",
  12282. height: math.unit(211, "km"),
  12283. default: true
  12284. },
  12285. {
  12286. name: "Gigamacro",
  12287. height: math.unit(1000, "km")
  12288. },
  12289. {
  12290. name: "Gigamacro+",
  12291. height: math.unit(8000, "km")
  12292. },
  12293. {
  12294. name: "Teramacro",
  12295. height: math.unit(1000000, "km")
  12296. },
  12297. ]
  12298. ))
  12299. characterMakers.push(() => makeCharacter(
  12300. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12301. {
  12302. front: {
  12303. height: math.unit(7 + 7 / 12, "feet"),
  12304. weight: math.unit(267, "lb"),
  12305. name: "Front",
  12306. image: {
  12307. source: "./media/characters/dayza/front.svg",
  12308. extra: 1262 / 1200,
  12309. bottom: 0.035
  12310. }
  12311. },
  12312. side: {
  12313. height: math.unit(7 + 7 / 12, "feet"),
  12314. weight: math.unit(267, "lb"),
  12315. name: "Side",
  12316. image: {
  12317. source: "./media/characters/dayza/side.svg",
  12318. extra: 1295 / 1245,
  12319. bottom: 0.05
  12320. }
  12321. },
  12322. back: {
  12323. height: math.unit(7 + 7 / 12, "feet"),
  12324. weight: math.unit(267, "lb"),
  12325. name: "Back",
  12326. image: {
  12327. source: "./media/characters/dayza/back.svg",
  12328. extra: 1241 / 1170
  12329. }
  12330. },
  12331. },
  12332. [
  12333. {
  12334. name: "Normal",
  12335. height: math.unit(7 + 7 / 12, "feet"),
  12336. default: true
  12337. },
  12338. {
  12339. name: "Macro",
  12340. height: math.unit(155, "feet")
  12341. },
  12342. ]
  12343. ))
  12344. characterMakers.push(() => makeCharacter(
  12345. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12346. {
  12347. front: {
  12348. height: math.unit(6 + 5 / 12, "feet"),
  12349. weight: math.unit(160, "lb"),
  12350. name: "Front",
  12351. image: {
  12352. source: "./media/characters/xanthos/front.svg",
  12353. extra: 1,
  12354. bottom: 0.04
  12355. }
  12356. },
  12357. back: {
  12358. height: math.unit(6 + 5 / 12, "feet"),
  12359. weight: math.unit(160, "lb"),
  12360. name: "Back",
  12361. image: {
  12362. source: "./media/characters/xanthos/back.svg",
  12363. extra: 1,
  12364. bottom: 0.03
  12365. }
  12366. },
  12367. hand: {
  12368. height: math.unit(0.928, "feet"),
  12369. name: "Hand",
  12370. image: {
  12371. source: "./media/characters/xanthos/hand.svg"
  12372. }
  12373. },
  12374. foot: {
  12375. height: math.unit(1.286, "feet"),
  12376. name: "Foot",
  12377. image: {
  12378. source: "./media/characters/xanthos/foot.svg"
  12379. }
  12380. },
  12381. },
  12382. [
  12383. {
  12384. name: "Normal",
  12385. height: math.unit(6 + 5 / 12, "feet"),
  12386. default: true
  12387. },
  12388. {
  12389. name: "Normal+",
  12390. height: math.unit(6, "meters")
  12391. },
  12392. {
  12393. name: "Macro",
  12394. height: math.unit(40, "feet")
  12395. },
  12396. {
  12397. name: "Macro+",
  12398. height: math.unit(200, "meters")
  12399. },
  12400. {
  12401. name: "Megamacro",
  12402. height: math.unit(20, "km")
  12403. },
  12404. {
  12405. name: "Megamacro+",
  12406. height: math.unit(100, "km")
  12407. },
  12408. ]
  12409. ))
  12410. characterMakers.push(() => makeCharacter(
  12411. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12412. {
  12413. front: {
  12414. height: math.unit(6 + 3 / 12, "feet"),
  12415. weight: math.unit(215, "lb"),
  12416. name: "Front",
  12417. image: {
  12418. source: "./media/characters/grynn/front.svg",
  12419. extra: 4627 / 4209,
  12420. bottom: 0.047
  12421. }
  12422. },
  12423. },
  12424. [
  12425. {
  12426. name: "Micro",
  12427. height: math.unit(6, "inches")
  12428. },
  12429. {
  12430. name: "Normal",
  12431. height: math.unit(6 + 3 / 12, "feet"),
  12432. default: true
  12433. },
  12434. {
  12435. name: "Big",
  12436. height: math.unit(104, "feet")
  12437. },
  12438. {
  12439. name: "Macro",
  12440. height: math.unit(944, "feet")
  12441. },
  12442. {
  12443. name: "Macro+",
  12444. height: math.unit(9480, "feet")
  12445. },
  12446. {
  12447. name: "Megamacro",
  12448. height: math.unit(78752, "feet")
  12449. },
  12450. {
  12451. name: "Megamacro+",
  12452. height: math.unit(630128, "feet")
  12453. },
  12454. {
  12455. name: "Megamacro++",
  12456. height: math.unit(3150695, "feet")
  12457. },
  12458. ]
  12459. ))
  12460. characterMakers.push(() => makeCharacter(
  12461. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12462. {
  12463. front: {
  12464. height: math.unit(7 + 5 / 12, "feet"),
  12465. weight: math.unit(450, "lb"),
  12466. name: "Front",
  12467. image: {
  12468. source: "./media/characters/mocha-aura/front.svg",
  12469. extra: 1907 / 1817,
  12470. bottom: 0.04
  12471. }
  12472. },
  12473. back: {
  12474. height: math.unit(7 + 5 / 12, "feet"),
  12475. weight: math.unit(450, "lb"),
  12476. name: "Back",
  12477. image: {
  12478. source: "./media/characters/mocha-aura/back.svg",
  12479. extra: 1900 / 1825,
  12480. bottom: 0.045
  12481. }
  12482. },
  12483. },
  12484. [
  12485. {
  12486. name: "Nano",
  12487. height: math.unit(1, "nm")
  12488. },
  12489. {
  12490. name: "Megamicro",
  12491. height: math.unit(1, "mm")
  12492. },
  12493. {
  12494. name: "Micro",
  12495. height: math.unit(3, "inches")
  12496. },
  12497. {
  12498. name: "Normal",
  12499. height: math.unit(7 + 5 / 12, "feet"),
  12500. default: true
  12501. },
  12502. {
  12503. name: "Macro",
  12504. height: math.unit(30, "feet")
  12505. },
  12506. {
  12507. name: "Megamacro",
  12508. height: math.unit(3500, "feet")
  12509. },
  12510. {
  12511. name: "Teramacro",
  12512. height: math.unit(500000, "miles")
  12513. },
  12514. {
  12515. name: "Petamacro",
  12516. height: math.unit(50000000000000000, "parsecs")
  12517. },
  12518. ]
  12519. ))
  12520. characterMakers.push(() => makeCharacter(
  12521. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12522. {
  12523. front: {
  12524. height: math.unit(6, "feet"),
  12525. weight: math.unit(150, "lb"),
  12526. name: "Front",
  12527. image: {
  12528. source: "./media/characters/ilisha-devya/front.svg",
  12529. extra: 1,
  12530. bottom: 0.175
  12531. }
  12532. },
  12533. back: {
  12534. height: math.unit(6, "feet"),
  12535. weight: math.unit(150, "lb"),
  12536. name: "Back",
  12537. image: {
  12538. source: "./media/characters/ilisha-devya/back.svg",
  12539. extra: 1,
  12540. bottom: 0.015
  12541. }
  12542. },
  12543. },
  12544. [
  12545. {
  12546. name: "Macro",
  12547. height: math.unit(500, "feet"),
  12548. default: true
  12549. },
  12550. {
  12551. name: "Megamacro",
  12552. height: math.unit(10, "miles")
  12553. },
  12554. {
  12555. name: "Gigamacro",
  12556. height: math.unit(100000, "miles")
  12557. },
  12558. {
  12559. name: "Examacro",
  12560. height: math.unit(1e9, "lightyears")
  12561. },
  12562. {
  12563. name: "Omniversal",
  12564. height: math.unit(1e33, "lightyears")
  12565. },
  12566. {
  12567. name: "Beyond Infinite",
  12568. height: math.unit(1e100, "lightyears")
  12569. },
  12570. ]
  12571. ))
  12572. characterMakers.push(() => makeCharacter(
  12573. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12574. {
  12575. Side: {
  12576. height: math.unit(6, "feet"),
  12577. weight: math.unit(150, "lb"),
  12578. name: "Side",
  12579. image: {
  12580. source: "./media/characters/mira/side.svg",
  12581. extra: 900 / 799,
  12582. bottom: 0.02
  12583. }
  12584. },
  12585. },
  12586. [
  12587. {
  12588. name: "Human Size",
  12589. height: math.unit(6, "feet")
  12590. },
  12591. {
  12592. name: "Macro",
  12593. height: math.unit(100, "feet"),
  12594. default: true
  12595. },
  12596. {
  12597. name: "Megamacro",
  12598. height: math.unit(10, "miles")
  12599. },
  12600. {
  12601. name: "Gigamacro",
  12602. height: math.unit(25000, "miles")
  12603. },
  12604. {
  12605. name: "Teramacro",
  12606. height: math.unit(300, "AU")
  12607. },
  12608. {
  12609. name: "Full Size",
  12610. height: math.unit(4.5e10, "lightyears")
  12611. },
  12612. ]
  12613. ))
  12614. characterMakers.push(() => makeCharacter(
  12615. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12616. {
  12617. front: {
  12618. height: math.unit(6, "feet"),
  12619. weight: math.unit(150, "lb"),
  12620. name: "Front",
  12621. image: {
  12622. source: "./media/characters/holly/front.svg",
  12623. extra: 639 / 606
  12624. }
  12625. },
  12626. back: {
  12627. height: math.unit(6, "feet"),
  12628. weight: math.unit(150, "lb"),
  12629. name: "Back",
  12630. image: {
  12631. source: "./media/characters/holly/back.svg",
  12632. extra: 623 / 598
  12633. }
  12634. },
  12635. frontWorking: {
  12636. height: math.unit(6, "feet"),
  12637. weight: math.unit(150, "lb"),
  12638. name: "Front (Working)",
  12639. image: {
  12640. source: "./media/characters/holly/front-working.svg",
  12641. extra: 607 / 577,
  12642. bottom: 0.048
  12643. }
  12644. },
  12645. },
  12646. [
  12647. {
  12648. name: "Normal",
  12649. height: math.unit(12 + 3 / 12, "feet"),
  12650. default: true
  12651. },
  12652. ]
  12653. ))
  12654. characterMakers.push(() => makeCharacter(
  12655. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12656. {
  12657. front: {
  12658. height: math.unit(6, "feet"),
  12659. weight: math.unit(150, "lb"),
  12660. name: "Front",
  12661. image: {
  12662. source: "./media/characters/porter/front.svg",
  12663. extra: 1,
  12664. bottom: 0.01
  12665. }
  12666. },
  12667. frontRobes: {
  12668. height: math.unit(6, "feet"),
  12669. weight: math.unit(150, "lb"),
  12670. name: "Front (Robes)",
  12671. image: {
  12672. source: "./media/characters/porter/front-robes.svg",
  12673. extra: 1.01,
  12674. bottom: 0.01
  12675. }
  12676. },
  12677. },
  12678. [
  12679. {
  12680. name: "Normal",
  12681. height: math.unit(11 + 9 / 12, "feet"),
  12682. default: true
  12683. },
  12684. ]
  12685. ))
  12686. characterMakers.push(() => makeCharacter(
  12687. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12688. {
  12689. legendary: {
  12690. height: math.unit(6, "feet"),
  12691. weight: math.unit(150, "lb"),
  12692. name: "Legendary",
  12693. image: {
  12694. source: "./media/characters/lucy/legendary.svg",
  12695. extra: 1355 / 1100,
  12696. bottom: 0.045
  12697. }
  12698. },
  12699. },
  12700. [
  12701. {
  12702. name: "Legendary",
  12703. height: math.unit(86882 * 2, "miles"),
  12704. default: true
  12705. },
  12706. ]
  12707. ))
  12708. characterMakers.push(() => makeCharacter(
  12709. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12710. {
  12711. front: {
  12712. height: math.unit(6, "feet"),
  12713. weight: math.unit(150, "lb"),
  12714. name: "Front",
  12715. image: {
  12716. source: "./media/characters/drusilla/front.svg",
  12717. extra: 678 / 635,
  12718. bottom: 0.03
  12719. }
  12720. },
  12721. back: {
  12722. height: math.unit(6, "feet"),
  12723. weight: math.unit(150, "lb"),
  12724. name: "Back",
  12725. image: {
  12726. source: "./media/characters/drusilla/back.svg",
  12727. extra: 678 / 635,
  12728. bottom: 0.005
  12729. }
  12730. },
  12731. },
  12732. [
  12733. {
  12734. name: "Macro",
  12735. height: math.unit(100, "feet")
  12736. },
  12737. {
  12738. name: "Canon Height",
  12739. height: math.unit(2000, "feet"),
  12740. default: true
  12741. },
  12742. ]
  12743. ))
  12744. characterMakers.push(() => makeCharacter(
  12745. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12746. {
  12747. front: {
  12748. height: math.unit(6, "feet"),
  12749. weight: math.unit(180, "lb"),
  12750. name: "Front",
  12751. image: {
  12752. source: "./media/characters/renard-thatch/front.svg",
  12753. extra: 2411 / 2275,
  12754. bottom: 0.01
  12755. }
  12756. },
  12757. frontPosing: {
  12758. height: math.unit(6, "feet"),
  12759. weight: math.unit(180, "lb"),
  12760. name: "Front (Posing)",
  12761. image: {
  12762. source: "./media/characters/renard-thatch/front-posing.svg",
  12763. extra: 2381 / 2261,
  12764. bottom: 0.01
  12765. }
  12766. },
  12767. back: {
  12768. height: math.unit(6, "feet"),
  12769. weight: math.unit(180, "lb"),
  12770. name: "Back",
  12771. image: {
  12772. source: "./media/characters/renard-thatch/back.svg",
  12773. extra: 2428 / 2288
  12774. }
  12775. },
  12776. },
  12777. [
  12778. {
  12779. name: "Micro",
  12780. height: math.unit(3, "inches")
  12781. },
  12782. {
  12783. name: "Default",
  12784. height: math.unit(6, "feet"),
  12785. default: true
  12786. },
  12787. {
  12788. name: "Macro",
  12789. height: math.unit(75, "feet")
  12790. },
  12791. ]
  12792. ))
  12793. characterMakers.push(() => makeCharacter(
  12794. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12795. {
  12796. front: {
  12797. height: math.unit(1450, "feet"),
  12798. weight: math.unit(1.21e6, "tons"),
  12799. name: "Front",
  12800. image: {
  12801. source: "./media/characters/sekvra/front.svg",
  12802. extra: 1,
  12803. bottom: 0.03
  12804. }
  12805. },
  12806. frontClothed: {
  12807. height: math.unit(1450, "feet"),
  12808. weight: math.unit(1.21e6, "tons"),
  12809. name: "Front (Clothed)",
  12810. image: {
  12811. source: "./media/characters/sekvra/front-clothed.svg",
  12812. extra: 1,
  12813. bottom: 0.03
  12814. }
  12815. },
  12816. side: {
  12817. height: math.unit(1450, "feet"),
  12818. weight: math.unit(1.21e6, "tons"),
  12819. name: "Side",
  12820. image: {
  12821. source: "./media/characters/sekvra/side.svg",
  12822. extra: 1,
  12823. bottom: 0.025
  12824. }
  12825. },
  12826. back: {
  12827. height: math.unit(1450, "feet"),
  12828. weight: math.unit(1.21e6, "tons"),
  12829. name: "Back",
  12830. image: {
  12831. source: "./media/characters/sekvra/back.svg",
  12832. extra: 1,
  12833. bottom: 0.005
  12834. }
  12835. },
  12836. },
  12837. [
  12838. {
  12839. name: "Macro",
  12840. height: math.unit(1450, "feet"),
  12841. default: true
  12842. },
  12843. {
  12844. name: "Megamacro",
  12845. height: math.unit(15000, "feet")
  12846. },
  12847. ]
  12848. ))
  12849. characterMakers.push(() => makeCharacter(
  12850. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12851. {
  12852. front: {
  12853. height: math.unit(6, "feet"),
  12854. weight: math.unit(150, "lb"),
  12855. name: "Front",
  12856. image: {
  12857. source: "./media/characters/carmine/front.svg",
  12858. extra: 1,
  12859. bottom: 0.035
  12860. }
  12861. },
  12862. frontArmor: {
  12863. height: math.unit(6, "feet"),
  12864. weight: math.unit(150, "lb"),
  12865. name: "Front (Armor)",
  12866. image: {
  12867. source: "./media/characters/carmine/front-armor.svg",
  12868. extra: 1,
  12869. bottom: 0.035
  12870. }
  12871. },
  12872. },
  12873. [
  12874. {
  12875. name: "Large",
  12876. height: math.unit(1, "mile")
  12877. },
  12878. {
  12879. name: "Huge",
  12880. height: math.unit(40, "miles"),
  12881. default: true
  12882. },
  12883. {
  12884. name: "Colossal",
  12885. height: math.unit(2500, "miles")
  12886. },
  12887. ]
  12888. ))
  12889. characterMakers.push(() => makeCharacter(
  12890. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12891. {
  12892. front: {
  12893. height: math.unit(6, "feet"),
  12894. weight: math.unit(150, "lb"),
  12895. name: "Front",
  12896. image: {
  12897. source: "./media/characters/elyssia/front.svg",
  12898. extra: 2201 / 2035,
  12899. bottom: 0.05
  12900. }
  12901. },
  12902. frontClothed: {
  12903. height: math.unit(6, "feet"),
  12904. weight: math.unit(150, "lb"),
  12905. name: "Front (Clothed)",
  12906. image: {
  12907. source: "./media/characters/elyssia/front-clothed.svg",
  12908. extra: 2201 / 2035,
  12909. bottom: 0.05
  12910. }
  12911. },
  12912. back: {
  12913. height: math.unit(6, "feet"),
  12914. weight: math.unit(150, "lb"),
  12915. name: "Back",
  12916. image: {
  12917. source: "./media/characters/elyssia/back.svg",
  12918. extra: 2201 / 2035,
  12919. bottom: 0.013
  12920. }
  12921. },
  12922. },
  12923. [
  12924. {
  12925. name: "Smaller",
  12926. height: math.unit(150, "feet")
  12927. },
  12928. {
  12929. name: "Standard",
  12930. height: math.unit(1400, "feet"),
  12931. default: true
  12932. },
  12933. {
  12934. name: "Distracted",
  12935. height: math.unit(15000, "feet")
  12936. },
  12937. ]
  12938. ))
  12939. characterMakers.push(() => makeCharacter(
  12940. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12941. {
  12942. front: {
  12943. height: math.unit(7 + 4 / 12, "feet"),
  12944. weight: math.unit(500, "lb"),
  12945. name: "Front",
  12946. image: {
  12947. source: "./media/characters/geno-maxwell/front.svg",
  12948. extra: 2207 / 2040,
  12949. bottom: 0.015
  12950. }
  12951. },
  12952. },
  12953. [
  12954. {
  12955. name: "Micro",
  12956. height: math.unit(3, "inches")
  12957. },
  12958. {
  12959. name: "Normal",
  12960. height: math.unit(7 + 4 / 12, "feet"),
  12961. default: true
  12962. },
  12963. {
  12964. name: "Macro",
  12965. height: math.unit(220, "feet")
  12966. },
  12967. {
  12968. name: "Megamacro",
  12969. height: math.unit(11, "miles")
  12970. },
  12971. ]
  12972. ))
  12973. characterMakers.push(() => makeCharacter(
  12974. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12975. {
  12976. front: {
  12977. height: math.unit(7 + 4 / 12, "feet"),
  12978. weight: math.unit(500, "lb"),
  12979. name: "Front",
  12980. image: {
  12981. source: "./media/characters/regena-maxwell/front.svg",
  12982. extra: 3115 / 2770,
  12983. bottom: 0.02
  12984. }
  12985. },
  12986. },
  12987. [
  12988. {
  12989. name: "Normal",
  12990. height: math.unit(7 + 4 / 12, "feet"),
  12991. default: true
  12992. },
  12993. {
  12994. name: "Macro",
  12995. height: math.unit(220, "feet")
  12996. },
  12997. {
  12998. name: "Megamacro",
  12999. height: math.unit(11, "miles")
  13000. },
  13001. ]
  13002. ))
  13003. characterMakers.push(() => makeCharacter(
  13004. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13005. {
  13006. front: {
  13007. height: math.unit(6, "feet"),
  13008. weight: math.unit(150, "lb"),
  13009. name: "Front",
  13010. image: {
  13011. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13012. extra: 860 / 690,
  13013. bottom: 0.03
  13014. }
  13015. },
  13016. },
  13017. [
  13018. {
  13019. name: "Normal",
  13020. height: math.unit(1.7, "meters"),
  13021. default: true
  13022. },
  13023. ]
  13024. ))
  13025. characterMakers.push(() => makeCharacter(
  13026. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13027. {
  13028. front: {
  13029. height: math.unit(6, "feet"),
  13030. weight: math.unit(150, "lb"),
  13031. name: "Front",
  13032. image: {
  13033. source: "./media/characters/quilly/front.svg",
  13034. extra: 890 / 776
  13035. }
  13036. },
  13037. },
  13038. [
  13039. {
  13040. name: "Gigamacro",
  13041. height: math.unit(404090, "miles"),
  13042. default: true
  13043. },
  13044. ]
  13045. ))
  13046. characterMakers.push(() => makeCharacter(
  13047. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13048. {
  13049. front: {
  13050. height: math.unit(7 + 8 / 12, "feet"),
  13051. weight: math.unit(350, "lb"),
  13052. name: "Front",
  13053. image: {
  13054. source: "./media/characters/tempest/front.svg",
  13055. extra: 1175 / 1086,
  13056. bottom: 0.02
  13057. }
  13058. },
  13059. },
  13060. [
  13061. {
  13062. name: "Normal",
  13063. height: math.unit(7 + 8 / 12, "feet"),
  13064. default: true
  13065. },
  13066. ]
  13067. ))
  13068. characterMakers.push(() => makeCharacter(
  13069. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13070. {
  13071. side: {
  13072. height: math.unit(4 + 5 / 12, "feet"),
  13073. weight: math.unit(80, "lb"),
  13074. name: "Side",
  13075. image: {
  13076. source: "./media/characters/rodger/side.svg",
  13077. extra: 1235 / 1118
  13078. }
  13079. },
  13080. },
  13081. [
  13082. {
  13083. name: "Micro",
  13084. height: math.unit(1, "inch")
  13085. },
  13086. {
  13087. name: "Normal",
  13088. height: math.unit(4 + 5 / 12, "feet"),
  13089. default: true
  13090. },
  13091. {
  13092. name: "Macro",
  13093. height: math.unit(120, "feet")
  13094. },
  13095. ]
  13096. ))
  13097. characterMakers.push(() => makeCharacter(
  13098. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13099. {
  13100. front: {
  13101. height: math.unit(6, "feet"),
  13102. weight: math.unit(150, "lb"),
  13103. name: "Front",
  13104. image: {
  13105. source: "./media/characters/danyel/front.svg",
  13106. extra: 1185 / 1123,
  13107. bottom: 0.05
  13108. }
  13109. },
  13110. },
  13111. [
  13112. {
  13113. name: "Shrunken",
  13114. height: math.unit(0.5, "mm")
  13115. },
  13116. {
  13117. name: "Micro",
  13118. height: math.unit(1, "mm"),
  13119. default: true
  13120. },
  13121. {
  13122. name: "Upsized",
  13123. height: math.unit(5 + 5 / 12, "feet")
  13124. },
  13125. ]
  13126. ))
  13127. characterMakers.push(() => makeCharacter(
  13128. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13129. {
  13130. front: {
  13131. height: math.unit(5 + 6 / 12, "feet"),
  13132. weight: math.unit(200, "lb"),
  13133. name: "Front",
  13134. image: {
  13135. source: "./media/characters/vivian-bijoux/front.svg",
  13136. extra: 1,
  13137. bottom: 0.072
  13138. }
  13139. },
  13140. },
  13141. [
  13142. {
  13143. name: "Normal",
  13144. height: math.unit(5 + 6 / 12, "feet"),
  13145. default: true
  13146. },
  13147. {
  13148. name: "Bad Dream",
  13149. height: math.unit(500, "feet")
  13150. },
  13151. {
  13152. name: "Nightmare",
  13153. height: math.unit(500, "miles")
  13154. },
  13155. ]
  13156. ))
  13157. characterMakers.push(() => makeCharacter(
  13158. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13159. {
  13160. front: {
  13161. height: math.unit(6 + 1 / 12, "feet"),
  13162. weight: math.unit(260, "lb"),
  13163. name: "Front",
  13164. image: {
  13165. source: "./media/characters/zeta/front.svg",
  13166. extra: 1968 / 1889,
  13167. bottom: 0.06
  13168. }
  13169. },
  13170. back: {
  13171. height: math.unit(6 + 1 / 12, "feet"),
  13172. weight: math.unit(260, "lb"),
  13173. name: "Back",
  13174. image: {
  13175. source: "./media/characters/zeta/back.svg",
  13176. extra: 1944 / 1858,
  13177. bottom: 0.03
  13178. }
  13179. },
  13180. hand: {
  13181. height: math.unit(1.112, "feet"),
  13182. name: "Hand",
  13183. image: {
  13184. source: "./media/characters/zeta/hand.svg"
  13185. }
  13186. },
  13187. foot: {
  13188. height: math.unit(1.48, "feet"),
  13189. name: "Foot",
  13190. image: {
  13191. source: "./media/characters/zeta/foot.svg"
  13192. }
  13193. },
  13194. },
  13195. [
  13196. {
  13197. name: "Micro",
  13198. height: math.unit(6, "inches")
  13199. },
  13200. {
  13201. name: "Normal",
  13202. height: math.unit(6 + 1 / 12, "feet"),
  13203. default: true
  13204. },
  13205. {
  13206. name: "Macro",
  13207. height: math.unit(20, "feet")
  13208. },
  13209. ]
  13210. ))
  13211. characterMakers.push(() => makeCharacter(
  13212. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13213. {
  13214. front: {
  13215. height: math.unit(6, "feet"),
  13216. weight: math.unit(150, "lb"),
  13217. name: "Front",
  13218. image: {
  13219. source: "./media/characters/jamie-larsen/front.svg",
  13220. extra: 962 / 933,
  13221. bottom: 0.02
  13222. }
  13223. },
  13224. back: {
  13225. height: math.unit(6, "feet"),
  13226. weight: math.unit(150, "lb"),
  13227. name: "Back",
  13228. image: {
  13229. source: "./media/characters/jamie-larsen/back.svg",
  13230. extra: 997 / 946
  13231. }
  13232. },
  13233. },
  13234. [
  13235. {
  13236. name: "Macro",
  13237. height: math.unit(28 + 7 / 12, "feet"),
  13238. default: true
  13239. },
  13240. {
  13241. name: "Macro+",
  13242. height: math.unit(180, "feet")
  13243. },
  13244. {
  13245. name: "Megamacro",
  13246. height: math.unit(10, "miles")
  13247. },
  13248. {
  13249. name: "Gigamacro",
  13250. height: math.unit(200000, "miles")
  13251. },
  13252. ]
  13253. ))
  13254. characterMakers.push(() => makeCharacter(
  13255. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13256. {
  13257. front: {
  13258. height: math.unit(6, "feet"),
  13259. weight: math.unit(120, "lb"),
  13260. name: "Front",
  13261. image: {
  13262. source: "./media/characters/vance/front.svg",
  13263. extra: 1980 / 1890,
  13264. bottom: 0.09
  13265. }
  13266. },
  13267. back: {
  13268. height: math.unit(6, "feet"),
  13269. weight: math.unit(120, "lb"),
  13270. name: "Back",
  13271. image: {
  13272. source: "./media/characters/vance/back.svg",
  13273. extra: 2081 / 1994,
  13274. bottom: 0.014
  13275. }
  13276. },
  13277. hand: {
  13278. height: math.unit(0.88, "feet"),
  13279. name: "Hand",
  13280. image: {
  13281. source: "./media/characters/vance/hand.svg"
  13282. }
  13283. },
  13284. foot: {
  13285. height: math.unit(0.64, "feet"),
  13286. name: "Foot",
  13287. image: {
  13288. source: "./media/characters/vance/foot.svg"
  13289. }
  13290. },
  13291. },
  13292. [
  13293. {
  13294. name: "Small",
  13295. height: math.unit(90, "feet"),
  13296. default: true
  13297. },
  13298. {
  13299. name: "Macro",
  13300. height: math.unit(100, "meters")
  13301. },
  13302. {
  13303. name: "Megamacro",
  13304. height: math.unit(15, "miles")
  13305. },
  13306. ]
  13307. ))
  13308. characterMakers.push(() => makeCharacter(
  13309. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13310. {
  13311. front: {
  13312. height: math.unit(6, "feet"),
  13313. weight: math.unit(180, "lb"),
  13314. name: "Front",
  13315. image: {
  13316. source: "./media/characters/xochitl/front.svg",
  13317. extra: 2297 / 2261,
  13318. bottom: 0.065
  13319. }
  13320. },
  13321. back: {
  13322. height: math.unit(6, "feet"),
  13323. weight: math.unit(180, "lb"),
  13324. name: "Back",
  13325. image: {
  13326. source: "./media/characters/xochitl/back.svg",
  13327. extra: 2386 / 2354,
  13328. bottom: 0.01
  13329. }
  13330. },
  13331. foot: {
  13332. height: math.unit(6 / 5 * 1.15, "feet"),
  13333. weight: math.unit(150, "lb"),
  13334. name: "Foot",
  13335. image: {
  13336. source: "./media/characters/xochitl/foot.svg"
  13337. }
  13338. },
  13339. },
  13340. [
  13341. {
  13342. name: "Macro",
  13343. height: math.unit(80, "feet")
  13344. },
  13345. {
  13346. name: "Macro+",
  13347. height: math.unit(400, "feet"),
  13348. default: true
  13349. },
  13350. {
  13351. name: "Gigamacro",
  13352. height: math.unit(80000, "miles")
  13353. },
  13354. {
  13355. name: "Gigamacro+",
  13356. height: math.unit(400000, "miles")
  13357. },
  13358. {
  13359. name: "Teramacro",
  13360. height: math.unit(300, "AU")
  13361. },
  13362. ]
  13363. ))
  13364. characterMakers.push(() => makeCharacter(
  13365. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13366. {
  13367. front: {
  13368. height: math.unit(6, "feet"),
  13369. weight: math.unit(150, "lb"),
  13370. name: "Front",
  13371. image: {
  13372. source: "./media/characters/vincent/front.svg",
  13373. extra: 1130 / 1080,
  13374. bottom: 0.055
  13375. }
  13376. },
  13377. beak: {
  13378. height: math.unit(6 * 0.1, "feet"),
  13379. name: "Beak",
  13380. image: {
  13381. source: "./media/characters/vincent/beak.svg"
  13382. }
  13383. },
  13384. hand: {
  13385. height: math.unit(6 * 0.85, "feet"),
  13386. weight: math.unit(150, "lb"),
  13387. name: "Hand",
  13388. image: {
  13389. source: "./media/characters/vincent/hand.svg"
  13390. }
  13391. },
  13392. foot: {
  13393. height: math.unit(6 * 0.19, "feet"),
  13394. weight: math.unit(150, "lb"),
  13395. name: "Foot",
  13396. image: {
  13397. source: "./media/characters/vincent/foot.svg"
  13398. }
  13399. },
  13400. },
  13401. [
  13402. {
  13403. name: "Base",
  13404. height: math.unit(6 + 5 / 12, "feet"),
  13405. default: true
  13406. },
  13407. {
  13408. name: "Macro",
  13409. height: math.unit(300, "feet")
  13410. },
  13411. {
  13412. name: "Megamacro",
  13413. height: math.unit(2, "miles")
  13414. },
  13415. {
  13416. name: "Gigamacro",
  13417. height: math.unit(1000, "miles")
  13418. },
  13419. ]
  13420. ))
  13421. characterMakers.push(() => makeCharacter(
  13422. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13423. {
  13424. front: {
  13425. height: math.unit(2, "meters"),
  13426. weight: math.unit(500, "kg"),
  13427. name: "Front",
  13428. image: {
  13429. source: "./media/characters/coatl/front.svg",
  13430. extra: 3948 / 3500,
  13431. bottom: 0.082
  13432. }
  13433. },
  13434. },
  13435. [
  13436. {
  13437. name: "Normal",
  13438. height: math.unit(4, "meters")
  13439. },
  13440. {
  13441. name: "Macro",
  13442. height: math.unit(100, "meters"),
  13443. default: true
  13444. },
  13445. {
  13446. name: "Macro+",
  13447. height: math.unit(300, "meters")
  13448. },
  13449. {
  13450. name: "Megamacro",
  13451. height: math.unit(3, "gigameters")
  13452. },
  13453. {
  13454. name: "Megamacro+",
  13455. height: math.unit(300, "terameters")
  13456. },
  13457. {
  13458. name: "Megamacro++",
  13459. height: math.unit(3, "lightyears")
  13460. },
  13461. ]
  13462. ))
  13463. characterMakers.push(() => makeCharacter(
  13464. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13465. {
  13466. front: {
  13467. height: math.unit(6, "feet"),
  13468. weight: math.unit(50, "kg"),
  13469. name: "front",
  13470. image: {
  13471. source: "./media/characters/shiroryu/front.svg",
  13472. extra: 1990 / 1935
  13473. }
  13474. },
  13475. },
  13476. [
  13477. {
  13478. name: "Mortal Mingling",
  13479. height: math.unit(3, "meters")
  13480. },
  13481. {
  13482. name: "Kaiju-ish",
  13483. height: math.unit(250, "meters")
  13484. },
  13485. {
  13486. name: "Somewhat Godly",
  13487. height: math.unit(400, "km"),
  13488. default: true
  13489. },
  13490. {
  13491. name: "Planetary",
  13492. height: math.unit(300, "megameters")
  13493. },
  13494. {
  13495. name: "Galaxy-dwarfing",
  13496. height: math.unit(450, "kiloparsecs")
  13497. },
  13498. {
  13499. name: "Universe Eater",
  13500. height: math.unit(150, "gigaparsecs")
  13501. },
  13502. {
  13503. name: "Almost Immeasurable",
  13504. height: math.unit(1.3e266, "yottaparsecs")
  13505. },
  13506. ]
  13507. ))
  13508. characterMakers.push(() => makeCharacter(
  13509. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13510. {
  13511. front: {
  13512. height: math.unit(6, "feet"),
  13513. weight: math.unit(150, "lb"),
  13514. name: "Front",
  13515. image: {
  13516. source: "./media/characters/umeko/front.svg",
  13517. extra: 1,
  13518. bottom: 0.019
  13519. }
  13520. },
  13521. frontArmored: {
  13522. height: math.unit(6, "feet"),
  13523. weight: math.unit(150, "lb"),
  13524. name: "Front (Armored)",
  13525. image: {
  13526. source: "./media/characters/umeko/front-armored.svg",
  13527. extra: 1,
  13528. bottom: 0.021
  13529. }
  13530. },
  13531. },
  13532. [
  13533. {
  13534. name: "Macro",
  13535. height: math.unit(220, "feet"),
  13536. default: true
  13537. },
  13538. {
  13539. name: "Guardian Dragon",
  13540. height: math.unit(50, "miles")
  13541. },
  13542. {
  13543. name: "Cosmic",
  13544. height: math.unit(800000, "miles")
  13545. },
  13546. ]
  13547. ))
  13548. characterMakers.push(() => makeCharacter(
  13549. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13550. {
  13551. front: {
  13552. height: math.unit(6, "feet"),
  13553. weight: math.unit(150, "lb"),
  13554. name: "Front",
  13555. image: {
  13556. source: "./media/characters/cassidy/front.svg",
  13557. extra: 1,
  13558. bottom: 0.043
  13559. }
  13560. },
  13561. },
  13562. [
  13563. {
  13564. name: "Canon Height",
  13565. height: math.unit(120, "feet"),
  13566. default: true
  13567. },
  13568. {
  13569. name: "Macro+",
  13570. height: math.unit(400, "feet")
  13571. },
  13572. {
  13573. name: "Macro++",
  13574. height: math.unit(4000, "feet")
  13575. },
  13576. {
  13577. name: "Megamacro",
  13578. height: math.unit(3, "miles")
  13579. },
  13580. ]
  13581. ))
  13582. characterMakers.push(() => makeCharacter(
  13583. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13584. {
  13585. front: {
  13586. height: math.unit(6, "feet"),
  13587. weight: math.unit(150, "lb"),
  13588. name: "Front",
  13589. image: {
  13590. source: "./media/characters/isaac/front.svg",
  13591. extra: 896 / 815,
  13592. bottom: 0.11
  13593. }
  13594. },
  13595. },
  13596. [
  13597. {
  13598. name: "Human Size",
  13599. height: math.unit(8, "feet"),
  13600. default: true
  13601. },
  13602. {
  13603. name: "Macro",
  13604. height: math.unit(400, "feet")
  13605. },
  13606. {
  13607. name: "Megamacro",
  13608. height: math.unit(50, "miles")
  13609. },
  13610. {
  13611. name: "Canon Height",
  13612. height: math.unit(200, "AU")
  13613. },
  13614. ]
  13615. ))
  13616. characterMakers.push(() => makeCharacter(
  13617. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13618. {
  13619. front: {
  13620. height: math.unit(6, "feet"),
  13621. weight: math.unit(72, "kg"),
  13622. name: "Front",
  13623. image: {
  13624. source: "./media/characters/sleekit/front.svg",
  13625. extra: 4693 / 4487,
  13626. bottom: 0.012
  13627. }
  13628. },
  13629. },
  13630. [
  13631. {
  13632. name: "Minimum Height",
  13633. height: math.unit(10, "meters")
  13634. },
  13635. {
  13636. name: "Smaller",
  13637. height: math.unit(25, "meters")
  13638. },
  13639. {
  13640. name: "Larger",
  13641. height: math.unit(38, "meters"),
  13642. default: true
  13643. },
  13644. {
  13645. name: "Maximum height",
  13646. height: math.unit(100, "meters")
  13647. },
  13648. ]
  13649. ))
  13650. characterMakers.push(() => makeCharacter(
  13651. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13652. {
  13653. front: {
  13654. height: math.unit(6, "feet"),
  13655. weight: math.unit(150, "lb"),
  13656. name: "Front",
  13657. image: {
  13658. source: "./media/characters/nillia/front.svg",
  13659. extra: 2195 / 2037,
  13660. bottom: 0.005
  13661. }
  13662. },
  13663. back: {
  13664. height: math.unit(6, "feet"),
  13665. weight: math.unit(150, "lb"),
  13666. name: "Back",
  13667. image: {
  13668. source: "./media/characters/nillia/back.svg",
  13669. extra: 2195 / 2037,
  13670. bottom: 0.005
  13671. }
  13672. },
  13673. },
  13674. [
  13675. {
  13676. name: "Canon Height",
  13677. height: math.unit(489, "feet"),
  13678. default: true
  13679. }
  13680. ]
  13681. ))
  13682. characterMakers.push(() => makeCharacter(
  13683. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13684. {
  13685. front: {
  13686. height: math.unit(6, "feet"),
  13687. weight: math.unit(150, "lb"),
  13688. name: "Front",
  13689. image: {
  13690. source: "./media/characters/mesmyriza/front.svg",
  13691. extra: 2067 / 1784,
  13692. bottom: 0.035
  13693. }
  13694. },
  13695. foot: {
  13696. height: math.unit(6 / (250 / 35), "feet"),
  13697. name: "Foot",
  13698. image: {
  13699. source: "./media/characters/mesmyriza/foot.svg"
  13700. }
  13701. },
  13702. },
  13703. [
  13704. {
  13705. name: "Macro",
  13706. height: math.unit(457, "meters"),
  13707. default: true
  13708. },
  13709. {
  13710. name: "Megamacro",
  13711. height: math.unit(8, "megameters")
  13712. },
  13713. ]
  13714. ))
  13715. characterMakers.push(() => makeCharacter(
  13716. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13717. {
  13718. front: {
  13719. height: math.unit(6, "feet"),
  13720. weight: math.unit(250, "lb"),
  13721. name: "Front",
  13722. image: {
  13723. source: "./media/characters/saudade/front.svg",
  13724. extra: 1172 / 1139,
  13725. bottom: 0.035
  13726. }
  13727. },
  13728. },
  13729. [
  13730. {
  13731. name: "Micro",
  13732. height: math.unit(3, "inches")
  13733. },
  13734. {
  13735. name: "Normal",
  13736. height: math.unit(6, "feet"),
  13737. default: true
  13738. },
  13739. {
  13740. name: "Macro",
  13741. height: math.unit(50, "feet")
  13742. },
  13743. {
  13744. name: "Megamacro",
  13745. height: math.unit(2800, "feet")
  13746. },
  13747. ]
  13748. ))
  13749. characterMakers.push(() => makeCharacter(
  13750. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13751. {
  13752. front: {
  13753. height: math.unit(5 + 4 / 12, "feet"),
  13754. weight: math.unit(100, "lb"),
  13755. name: "Front",
  13756. image: {
  13757. source: "./media/characters/keireer/front.svg",
  13758. extra: 716 / 666,
  13759. bottom: 0.05
  13760. }
  13761. },
  13762. },
  13763. [
  13764. {
  13765. name: "Normal",
  13766. height: math.unit(5 + 4 / 12, "feet"),
  13767. default: true
  13768. },
  13769. ]
  13770. ))
  13771. characterMakers.push(() => makeCharacter(
  13772. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13773. {
  13774. front: {
  13775. height: math.unit(6, "feet"),
  13776. weight: math.unit(90, "kg"),
  13777. name: "Front",
  13778. image: {
  13779. source: "./media/characters/mirja/front.svg",
  13780. extra: 1789 / 1683,
  13781. bottom: 0.05
  13782. }
  13783. },
  13784. frontDressed: {
  13785. height: math.unit(6, "feet"),
  13786. weight: math.unit(90, "lb"),
  13787. name: "Front (Dressed)",
  13788. image: {
  13789. source: "./media/characters/mirja/front-dressed.svg",
  13790. extra: 1789 / 1683,
  13791. bottom: 0.05
  13792. }
  13793. },
  13794. back: {
  13795. height: math.unit(6, "feet"),
  13796. weight: math.unit(90, "lb"),
  13797. name: "Back",
  13798. image: {
  13799. source: "./media/characters/mirja/back.svg",
  13800. extra: 953 / 917,
  13801. bottom: 0.017
  13802. }
  13803. },
  13804. },
  13805. [
  13806. {
  13807. name: "\"Incognito\"",
  13808. height: math.unit(3, "meters")
  13809. },
  13810. {
  13811. name: "Strolling Size",
  13812. height: math.unit(15, "km")
  13813. },
  13814. {
  13815. name: "Larger Strolling Size",
  13816. height: math.unit(400, "km")
  13817. },
  13818. {
  13819. name: "Preferred Size",
  13820. height: math.unit(5000, "km")
  13821. },
  13822. {
  13823. name: "True Size",
  13824. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13825. default: true
  13826. },
  13827. ]
  13828. ))
  13829. characterMakers.push(() => makeCharacter(
  13830. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13831. {
  13832. front: {
  13833. height: math.unit(15, "feet"),
  13834. weight: math.unit(880, "kg"),
  13835. name: "Front",
  13836. image: {
  13837. source: "./media/characters/nightraver/front.svg",
  13838. extra: 2444 / 2160,
  13839. bottom: 0.027
  13840. }
  13841. },
  13842. back: {
  13843. height: math.unit(15, "feet"),
  13844. weight: math.unit(880, "kg"),
  13845. name: "Back",
  13846. image: {
  13847. source: "./media/characters/nightraver/back.svg",
  13848. extra: 2309 / 2180,
  13849. bottom: 0.005
  13850. }
  13851. },
  13852. sole: {
  13853. height: math.unit(2.878, "feet"),
  13854. name: "Sole",
  13855. image: {
  13856. source: "./media/characters/nightraver/sole.svg"
  13857. }
  13858. },
  13859. foot: {
  13860. height: math.unit(2.285, "feet"),
  13861. name: "Foot",
  13862. image: {
  13863. source: "./media/characters/nightraver/foot.svg"
  13864. }
  13865. },
  13866. maw: {
  13867. height: math.unit(2.67, "feet"),
  13868. name: "Maw",
  13869. image: {
  13870. source: "./media/characters/nightraver/maw.svg"
  13871. }
  13872. },
  13873. },
  13874. [
  13875. {
  13876. name: "Micro",
  13877. height: math.unit(1, "cm")
  13878. },
  13879. {
  13880. name: "Normal",
  13881. height: math.unit(15, "feet"),
  13882. default: true
  13883. },
  13884. {
  13885. name: "Macro",
  13886. height: math.unit(300, "feet")
  13887. },
  13888. {
  13889. name: "Megamacro",
  13890. height: math.unit(300, "miles")
  13891. },
  13892. {
  13893. name: "Gigamacro",
  13894. height: math.unit(10000, "miles")
  13895. },
  13896. ]
  13897. ))
  13898. characterMakers.push(() => makeCharacter(
  13899. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13900. {
  13901. side: {
  13902. height: math.unit(2, "inches"),
  13903. weight: math.unit(5, "grams"),
  13904. name: "Side",
  13905. image: {
  13906. source: "./media/characters/arc/side.svg"
  13907. }
  13908. },
  13909. },
  13910. [
  13911. {
  13912. name: "Micro",
  13913. height: math.unit(2, "inches"),
  13914. default: true
  13915. },
  13916. ]
  13917. ))
  13918. characterMakers.push(() => makeCharacter(
  13919. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13920. {
  13921. front: {
  13922. height: math.unit(1.1938, "meters"),
  13923. weight: math.unit(54, "kg"),
  13924. name: "Front",
  13925. image: {
  13926. source: "./media/characters/nebula-shahar/front.svg",
  13927. extra: 1642 / 1436,
  13928. bottom: 0.06
  13929. }
  13930. },
  13931. },
  13932. [
  13933. {
  13934. name: "Megamicro",
  13935. height: math.unit(0.3, "mm")
  13936. },
  13937. {
  13938. name: "Micro",
  13939. height: math.unit(3, "cm")
  13940. },
  13941. {
  13942. name: "Normal",
  13943. height: math.unit(138, "cm"),
  13944. default: true
  13945. },
  13946. {
  13947. name: "Macro",
  13948. height: math.unit(30, "m")
  13949. },
  13950. ]
  13951. ))
  13952. characterMakers.push(() => makeCharacter(
  13953. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13954. {
  13955. front: {
  13956. height: math.unit(5.24, "feet"),
  13957. weight: math.unit(150, "lb"),
  13958. name: "Front",
  13959. image: {
  13960. source: "./media/characters/shayla/front.svg",
  13961. extra: 1512 / 1414,
  13962. bottom: 0.01
  13963. }
  13964. },
  13965. back: {
  13966. height: math.unit(5.24, "feet"),
  13967. weight: math.unit(150, "lb"),
  13968. name: "Back",
  13969. image: {
  13970. source: "./media/characters/shayla/back.svg",
  13971. extra: 1512 / 1414
  13972. }
  13973. },
  13974. hand: {
  13975. height: math.unit(0.7781496062992126, "feet"),
  13976. name: "Hand",
  13977. image: {
  13978. source: "./media/characters/shayla/hand.svg"
  13979. }
  13980. },
  13981. foot: {
  13982. height: math.unit(1.4206036745406823, "feet"),
  13983. name: "Foot",
  13984. image: {
  13985. source: "./media/characters/shayla/foot.svg"
  13986. }
  13987. },
  13988. },
  13989. [
  13990. {
  13991. name: "Micro",
  13992. height: math.unit(0.32, "feet")
  13993. },
  13994. {
  13995. name: "Normal",
  13996. height: math.unit(5.24, "feet"),
  13997. default: true
  13998. },
  13999. {
  14000. name: "Macro",
  14001. height: math.unit(492.12, "feet")
  14002. },
  14003. {
  14004. name: "Megamacro",
  14005. height: math.unit(186.41, "miles")
  14006. },
  14007. ]
  14008. ))
  14009. characterMakers.push(() => makeCharacter(
  14010. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14011. {
  14012. front: {
  14013. height: math.unit(2.2, "m"),
  14014. weight: math.unit(120, "kg"),
  14015. name: "Front",
  14016. image: {
  14017. source: "./media/characters/pia-jr/front.svg",
  14018. extra: 1000 / 970,
  14019. bottom: 0.035
  14020. }
  14021. },
  14022. hand: {
  14023. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14024. name: "Hand",
  14025. image: {
  14026. source: "./media/characters/pia-jr/hand.svg"
  14027. }
  14028. },
  14029. paw: {
  14030. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14031. name: "Paw",
  14032. image: {
  14033. source: "./media/characters/pia-jr/paw.svg"
  14034. }
  14035. },
  14036. },
  14037. [
  14038. {
  14039. name: "Micro",
  14040. height: math.unit(1.2, "cm")
  14041. },
  14042. {
  14043. name: "Normal",
  14044. height: math.unit(2.2, "m"),
  14045. default: true
  14046. },
  14047. {
  14048. name: "Macro",
  14049. height: math.unit(180, "m")
  14050. },
  14051. {
  14052. name: "Megamacro",
  14053. height: math.unit(420, "km")
  14054. },
  14055. ]
  14056. ))
  14057. characterMakers.push(() => makeCharacter(
  14058. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14059. {
  14060. front: {
  14061. height: math.unit(2, "m"),
  14062. weight: math.unit(115, "kg"),
  14063. name: "Front",
  14064. image: {
  14065. source: "./media/characters/pia-sr/front.svg",
  14066. extra: 760 / 730,
  14067. bottom: 0.015
  14068. }
  14069. },
  14070. back: {
  14071. height: math.unit(2, "m"),
  14072. weight: math.unit(115, "kg"),
  14073. name: "Back",
  14074. image: {
  14075. source: "./media/characters/pia-sr/back.svg",
  14076. extra: 760 / 730,
  14077. bottom: 0.01
  14078. }
  14079. },
  14080. hand: {
  14081. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14082. name: "Hand",
  14083. image: {
  14084. source: "./media/characters/pia-sr/hand.svg"
  14085. }
  14086. },
  14087. foot: {
  14088. height: math.unit(1.83, "feet"),
  14089. name: "Foot",
  14090. image: {
  14091. source: "./media/characters/pia-sr/foot.svg"
  14092. }
  14093. },
  14094. },
  14095. [
  14096. {
  14097. name: "Micro",
  14098. height: math.unit(88, "mm")
  14099. },
  14100. {
  14101. name: "Normal",
  14102. height: math.unit(2, "m"),
  14103. default: true
  14104. },
  14105. {
  14106. name: "Macro",
  14107. height: math.unit(200, "m")
  14108. },
  14109. {
  14110. name: "Megamacro",
  14111. height: math.unit(420, "km")
  14112. },
  14113. ]
  14114. ))
  14115. characterMakers.push(() => makeCharacter(
  14116. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14117. {
  14118. front: {
  14119. height: math.unit(8 + 2 / 12, "feet"),
  14120. weight: math.unit(300, "lb"),
  14121. name: "Front",
  14122. image: {
  14123. source: "./media/characters/kibibyte/front.svg",
  14124. extra: 2221 / 2098,
  14125. bottom: 0.04
  14126. }
  14127. },
  14128. },
  14129. [
  14130. {
  14131. name: "Normal",
  14132. height: math.unit(8 + 2 / 12, "feet"),
  14133. default: true
  14134. },
  14135. {
  14136. name: "Socialable Macro",
  14137. height: math.unit(50, "feet")
  14138. },
  14139. {
  14140. name: "Macro",
  14141. height: math.unit(300, "feet")
  14142. },
  14143. {
  14144. name: "Megamacro",
  14145. height: math.unit(500, "miles")
  14146. },
  14147. ]
  14148. ))
  14149. characterMakers.push(() => makeCharacter(
  14150. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14151. {
  14152. front: {
  14153. height: math.unit(6, "feet"),
  14154. weight: math.unit(150, "lb"),
  14155. name: "Front",
  14156. image: {
  14157. source: "./media/characters/felix/front.svg",
  14158. extra: 762 / 722,
  14159. bottom: 0.02
  14160. }
  14161. },
  14162. frontClothed: {
  14163. height: math.unit(6, "feet"),
  14164. weight: math.unit(150, "lb"),
  14165. name: "Front (Clothed)",
  14166. image: {
  14167. source: "./media/characters/felix/front-clothed.svg",
  14168. extra: 762 / 722,
  14169. bottom: 0.02
  14170. }
  14171. },
  14172. },
  14173. [
  14174. {
  14175. name: "Normal",
  14176. height: math.unit(6 + 8 / 12, "feet"),
  14177. default: true
  14178. },
  14179. {
  14180. name: "Macro",
  14181. height: math.unit(2600, "feet")
  14182. },
  14183. {
  14184. name: "Megamacro",
  14185. height: math.unit(450, "miles")
  14186. },
  14187. ]
  14188. ))
  14189. characterMakers.push(() => makeCharacter(
  14190. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14191. {
  14192. front: {
  14193. height: math.unit(6 + 1 / 12, "feet"),
  14194. weight: math.unit(250, "lb"),
  14195. name: "Front",
  14196. image: {
  14197. source: "./media/characters/tobo/front.svg",
  14198. extra: 608 / 586,
  14199. bottom: 0.023
  14200. }
  14201. },
  14202. back: {
  14203. height: math.unit(6 + 1 / 12, "feet"),
  14204. weight: math.unit(250, "lb"),
  14205. name: "Back",
  14206. image: {
  14207. source: "./media/characters/tobo/back.svg",
  14208. extra: 608 / 586
  14209. }
  14210. },
  14211. },
  14212. [
  14213. {
  14214. name: "Nano",
  14215. height: math.unit(2, "nm")
  14216. },
  14217. {
  14218. name: "Megamicro",
  14219. height: math.unit(0.1, "mm")
  14220. },
  14221. {
  14222. name: "Micro",
  14223. height: math.unit(1, "inch"),
  14224. default: true
  14225. },
  14226. {
  14227. name: "Human-sized",
  14228. height: math.unit(6 + 1 / 12, "feet")
  14229. },
  14230. {
  14231. name: "Macro",
  14232. height: math.unit(250, "feet")
  14233. },
  14234. {
  14235. name: "Megamacro",
  14236. height: math.unit(75, "miles")
  14237. },
  14238. {
  14239. name: "Texas-sized",
  14240. height: math.unit(750, "miles")
  14241. },
  14242. {
  14243. name: "Teramacro",
  14244. height: math.unit(50000, "miles")
  14245. },
  14246. ]
  14247. ))
  14248. characterMakers.push(() => makeCharacter(
  14249. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14250. {
  14251. front: {
  14252. height: math.unit(6, "feet"),
  14253. weight: math.unit(269, "lb"),
  14254. name: "Front",
  14255. image: {
  14256. source: "./media/characters/danny-kapowsky/front.svg",
  14257. extra: 766 / 736,
  14258. bottom: 0.044
  14259. }
  14260. },
  14261. back: {
  14262. height: math.unit(6, "feet"),
  14263. weight: math.unit(269, "lb"),
  14264. name: "Back",
  14265. image: {
  14266. source: "./media/characters/danny-kapowsky/back.svg",
  14267. extra: 797 / 760,
  14268. bottom: 0.025
  14269. }
  14270. },
  14271. },
  14272. [
  14273. {
  14274. name: "Macro",
  14275. height: math.unit(150, "feet"),
  14276. default: true
  14277. },
  14278. {
  14279. name: "Macro+",
  14280. height: math.unit(200, "feet")
  14281. },
  14282. {
  14283. name: "Macro++",
  14284. height: math.unit(300, "feet")
  14285. },
  14286. {
  14287. name: "Macro+++",
  14288. height: math.unit(400, "feet")
  14289. },
  14290. ]
  14291. ))
  14292. characterMakers.push(() => makeCharacter(
  14293. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14294. {
  14295. side: {
  14296. height: math.unit(6, "feet"),
  14297. weight: math.unit(170, "lb"),
  14298. name: "Side",
  14299. image: {
  14300. source: "./media/characters/finn/side.svg",
  14301. extra: 1953 / 1807,
  14302. bottom: 0.057
  14303. }
  14304. },
  14305. },
  14306. [
  14307. {
  14308. name: "Megamacro",
  14309. height: math.unit(14445, "feet"),
  14310. default: true
  14311. },
  14312. ]
  14313. ))
  14314. characterMakers.push(() => makeCharacter(
  14315. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14316. {
  14317. front: {
  14318. height: math.unit(5 + 6 / 12, "feet"),
  14319. weight: math.unit(125, "lb"),
  14320. name: "Front",
  14321. image: {
  14322. source: "./media/characters/roy/front.svg",
  14323. extra: 1,
  14324. bottom: 0.11
  14325. }
  14326. },
  14327. },
  14328. [
  14329. {
  14330. name: "Micro",
  14331. height: math.unit(3, "inches"),
  14332. default: true
  14333. },
  14334. {
  14335. name: "Normal",
  14336. height: math.unit(5 + 6 / 12, "feet")
  14337. },
  14338. {
  14339. name: "Lesser Macro",
  14340. height: math.unit(60, "feet")
  14341. },
  14342. {
  14343. name: "Greater Macro",
  14344. height: math.unit(120, "feet")
  14345. },
  14346. ]
  14347. ))
  14348. characterMakers.push(() => makeCharacter(
  14349. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14350. {
  14351. front: {
  14352. height: math.unit(6, "feet"),
  14353. weight: math.unit(100, "lb"),
  14354. name: "Front",
  14355. image: {
  14356. source: "./media/characters/aevsivs/front.svg",
  14357. extra: 1,
  14358. bottom: 0.03
  14359. }
  14360. },
  14361. back: {
  14362. height: math.unit(6, "feet"),
  14363. weight: math.unit(100, "lb"),
  14364. name: "Back",
  14365. image: {
  14366. source: "./media/characters/aevsivs/back.svg"
  14367. }
  14368. },
  14369. },
  14370. [
  14371. {
  14372. name: "Micro",
  14373. height: math.unit(2, "inches"),
  14374. default: true
  14375. },
  14376. {
  14377. name: "Normal",
  14378. height: math.unit(5, "feet")
  14379. },
  14380. ]
  14381. ))
  14382. characterMakers.push(() => makeCharacter(
  14383. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14384. {
  14385. front: {
  14386. height: math.unit(5 + 7 / 12, "feet"),
  14387. weight: math.unit(159, "lb"),
  14388. name: "Front",
  14389. image: {
  14390. source: "./media/characters/hildegard/front.svg",
  14391. extra: 289 / 269,
  14392. bottom: 7.63 / 297.8
  14393. }
  14394. },
  14395. back: {
  14396. height: math.unit(5 + 7 / 12, "feet"),
  14397. weight: math.unit(159, "lb"),
  14398. name: "Back",
  14399. image: {
  14400. source: "./media/characters/hildegard/back.svg",
  14401. extra: 280 / 260,
  14402. bottom: 2.3 / 282
  14403. }
  14404. },
  14405. },
  14406. [
  14407. {
  14408. name: "Normal",
  14409. height: math.unit(5 + 7 / 12, "feet"),
  14410. default: true
  14411. },
  14412. ]
  14413. ))
  14414. characterMakers.push(() => makeCharacter(
  14415. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14416. {
  14417. bernard: {
  14418. height: math.unit(2 + 7 / 12, "feet"),
  14419. weight: math.unit(66, "lb"),
  14420. name: "Bernard",
  14421. rename: true,
  14422. image: {
  14423. source: "./media/characters/bernard-wilder/bernard.svg",
  14424. extra: 192 / 128,
  14425. bottom: 0.05
  14426. }
  14427. },
  14428. wilder: {
  14429. height: math.unit(5 + 8 / 12, "feet"),
  14430. weight: math.unit(143, "lb"),
  14431. name: "Wilder",
  14432. rename: true,
  14433. image: {
  14434. source: "./media/characters/bernard-wilder/wilder.svg",
  14435. extra: 361 / 312,
  14436. bottom: 0.02
  14437. }
  14438. },
  14439. },
  14440. [
  14441. {
  14442. name: "Normal",
  14443. height: math.unit(2 + 7 / 12, "feet"),
  14444. default: true
  14445. },
  14446. ]
  14447. ))
  14448. characterMakers.push(() => makeCharacter(
  14449. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14450. {
  14451. anthro: {
  14452. height: math.unit(6 + 1 / 12, "feet"),
  14453. weight: math.unit(155, "lb"),
  14454. name: "Anthro",
  14455. image: {
  14456. source: "./media/characters/hearth/anthro.svg",
  14457. extra: 260 / 250,
  14458. bottom: 0.02
  14459. }
  14460. },
  14461. feral: {
  14462. height: math.unit(3.78, "feet"),
  14463. weight: math.unit(35, "kg"),
  14464. name: "Feral",
  14465. image: {
  14466. source: "./media/characters/hearth/feral.svg",
  14467. extra: 153 / 135,
  14468. bottom: 0.03
  14469. }
  14470. },
  14471. },
  14472. [
  14473. {
  14474. name: "Normal",
  14475. height: math.unit(6 + 1 / 12, "feet"),
  14476. default: true
  14477. },
  14478. ]
  14479. ))
  14480. characterMakers.push(() => makeCharacter(
  14481. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14482. {
  14483. front: {
  14484. height: math.unit(6, "feet"),
  14485. weight: math.unit(182, "lb"),
  14486. name: "Front",
  14487. image: {
  14488. source: "./media/characters/ingrid/front.svg",
  14489. extra: 294 / 268,
  14490. bottom: 0.027
  14491. }
  14492. },
  14493. },
  14494. [
  14495. {
  14496. name: "Normal",
  14497. height: math.unit(6, "feet"),
  14498. default: true
  14499. },
  14500. ]
  14501. ))
  14502. characterMakers.push(() => makeCharacter(
  14503. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14504. {
  14505. eevee: {
  14506. height: math.unit(2 + 10 / 12, "feet"),
  14507. weight: math.unit(86, "lb"),
  14508. name: "Malgam",
  14509. image: {
  14510. source: "./media/characters/malgam/eevee.svg",
  14511. extra: 218 / 180,
  14512. bottom: 0.2
  14513. }
  14514. },
  14515. sylveon: {
  14516. height: math.unit(4, "feet"),
  14517. weight: math.unit(101, "lb"),
  14518. name: "Future Malgam",
  14519. rename: true,
  14520. image: {
  14521. source: "./media/characters/malgam/sylveon.svg",
  14522. extra: 371 / 325,
  14523. bottom: 0.015
  14524. }
  14525. },
  14526. gigantamax: {
  14527. height: math.unit(50, "feet"),
  14528. name: "Gigantamax Malgam",
  14529. rename: true,
  14530. image: {
  14531. source: "./media/characters/malgam/gigantamax.svg"
  14532. }
  14533. },
  14534. },
  14535. [
  14536. {
  14537. name: "Normal",
  14538. height: math.unit(2 + 10 / 12, "feet"),
  14539. default: true
  14540. },
  14541. ]
  14542. ))
  14543. characterMakers.push(() => makeCharacter(
  14544. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14545. {
  14546. front: {
  14547. height: math.unit(5 + 11 / 12, "feet"),
  14548. weight: math.unit(188, "lb"),
  14549. name: "Front",
  14550. image: {
  14551. source: "./media/characters/fleur/front.svg",
  14552. extra: 309 / 283,
  14553. bottom: 0.007
  14554. }
  14555. },
  14556. },
  14557. [
  14558. {
  14559. name: "Normal",
  14560. height: math.unit(5 + 11 / 12, "feet"),
  14561. default: true
  14562. },
  14563. ]
  14564. ))
  14565. characterMakers.push(() => makeCharacter(
  14566. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14567. {
  14568. front: {
  14569. height: math.unit(5 + 4 / 12, "feet"),
  14570. weight: math.unit(122, "lb"),
  14571. name: "Front",
  14572. image: {
  14573. source: "./media/characters/jude/front.svg",
  14574. extra: 288 / 273,
  14575. bottom: 0.03
  14576. }
  14577. },
  14578. },
  14579. [
  14580. {
  14581. name: "Normal",
  14582. height: math.unit(5 + 4 / 12, "feet"),
  14583. default: true
  14584. },
  14585. ]
  14586. ))
  14587. characterMakers.push(() => makeCharacter(
  14588. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14589. {
  14590. front: {
  14591. height: math.unit(5 + 11 / 12, "feet"),
  14592. weight: math.unit(190, "lb"),
  14593. name: "Front",
  14594. image: {
  14595. source: "./media/characters/seara/front.svg",
  14596. extra: 1,
  14597. bottom: 0.05
  14598. }
  14599. },
  14600. },
  14601. [
  14602. {
  14603. name: "Normal",
  14604. height: math.unit(5 + 11 / 12, "feet"),
  14605. default: true
  14606. },
  14607. ]
  14608. ))
  14609. characterMakers.push(() => makeCharacter(
  14610. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14611. {
  14612. front: {
  14613. height: math.unit(16 + 5 / 12, "feet"),
  14614. weight: math.unit(524, "lb"),
  14615. name: "Front",
  14616. image: {
  14617. source: "./media/characters/caspian/front.svg",
  14618. extra: 1,
  14619. bottom: 0.04
  14620. }
  14621. },
  14622. },
  14623. [
  14624. {
  14625. name: "Normal",
  14626. height: math.unit(16 + 5 / 12, "feet"),
  14627. default: true
  14628. },
  14629. ]
  14630. ))
  14631. characterMakers.push(() => makeCharacter(
  14632. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14633. {
  14634. front: {
  14635. height: math.unit(5 + 7 / 12, "feet"),
  14636. weight: math.unit(170, "lb"),
  14637. name: "Front",
  14638. image: {
  14639. source: "./media/characters/mika/front.svg",
  14640. extra: 1,
  14641. bottom: 0.016
  14642. }
  14643. },
  14644. },
  14645. [
  14646. {
  14647. name: "Normal",
  14648. height: math.unit(5 + 7 / 12, "feet"),
  14649. default: true
  14650. },
  14651. ]
  14652. ))
  14653. characterMakers.push(() => makeCharacter(
  14654. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14655. {
  14656. front: {
  14657. height: math.unit(6 + 2 / 12, "feet"),
  14658. weight: math.unit(268, "lb"),
  14659. name: "Front",
  14660. image: {
  14661. source: "./media/characters/sol/front.svg",
  14662. extra: 247 / 231,
  14663. bottom: 0.05
  14664. }
  14665. },
  14666. },
  14667. [
  14668. {
  14669. name: "Normal",
  14670. height: math.unit(6 + 2 / 12, "feet"),
  14671. default: true
  14672. },
  14673. ]
  14674. ))
  14675. characterMakers.push(() => makeCharacter(
  14676. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14677. {
  14678. buizel: {
  14679. height: math.unit(2 + 5 / 12, "feet"),
  14680. weight: math.unit(87, "lb"),
  14681. name: "Buizel",
  14682. image: {
  14683. source: "./media/characters/umiko/buizel.svg",
  14684. extra: 172 / 157,
  14685. bottom: 0.01
  14686. }
  14687. },
  14688. floatzel: {
  14689. height: math.unit(5 + 9 / 12, "feet"),
  14690. weight: math.unit(250, "lb"),
  14691. name: "Floatzel",
  14692. image: {
  14693. source: "./media/characters/umiko/floatzel.svg",
  14694. extra: 262 / 248
  14695. }
  14696. },
  14697. },
  14698. [
  14699. {
  14700. name: "Normal",
  14701. height: math.unit(2 + 5 / 12, "feet"),
  14702. default: true
  14703. },
  14704. ]
  14705. ))
  14706. characterMakers.push(() => makeCharacter(
  14707. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14708. {
  14709. front: {
  14710. height: math.unit(6 + 2 / 12, "feet"),
  14711. weight: math.unit(146, "lb"),
  14712. name: "Front",
  14713. image: {
  14714. source: "./media/characters/iliac/front.svg",
  14715. extra: 389 / 365,
  14716. bottom: 0.035
  14717. }
  14718. },
  14719. },
  14720. [
  14721. {
  14722. name: "Normal",
  14723. height: math.unit(6 + 2 / 12, "feet"),
  14724. default: true
  14725. },
  14726. ]
  14727. ))
  14728. characterMakers.push(() => makeCharacter(
  14729. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14730. {
  14731. front: {
  14732. height: math.unit(6, "feet"),
  14733. weight: math.unit(170, "lb"),
  14734. name: "Front",
  14735. image: {
  14736. source: "./media/characters/topaz/front.svg",
  14737. extra: 317 / 303,
  14738. bottom: 0.055
  14739. }
  14740. },
  14741. },
  14742. [
  14743. {
  14744. name: "Normal",
  14745. height: math.unit(6, "feet"),
  14746. default: true
  14747. },
  14748. ]
  14749. ))
  14750. characterMakers.push(() => makeCharacter(
  14751. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14752. {
  14753. front: {
  14754. height: math.unit(5 + 11 / 12, "feet"),
  14755. weight: math.unit(144, "lb"),
  14756. name: "Front",
  14757. image: {
  14758. source: "./media/characters/gabriel/front.svg",
  14759. extra: 285 / 262,
  14760. bottom: 0.004
  14761. }
  14762. },
  14763. },
  14764. [
  14765. {
  14766. name: "Normal",
  14767. height: math.unit(5 + 11 / 12, "feet"),
  14768. default: true
  14769. },
  14770. ]
  14771. ))
  14772. characterMakers.push(() => makeCharacter(
  14773. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14774. {
  14775. side: {
  14776. height: math.unit(6 + 5 / 12, "feet"),
  14777. weight: math.unit(300, "lb"),
  14778. name: "Side",
  14779. image: {
  14780. source: "./media/characters/tempest-suicune/side.svg",
  14781. extra: 195 / 154,
  14782. bottom: 0.04
  14783. }
  14784. },
  14785. },
  14786. [
  14787. {
  14788. name: "Normal",
  14789. height: math.unit(6 + 5 / 12, "feet"),
  14790. default: true
  14791. },
  14792. ]
  14793. ))
  14794. characterMakers.push(() => makeCharacter(
  14795. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14796. {
  14797. front: {
  14798. height: math.unit(7 + 2 / 12, "feet"),
  14799. weight: math.unit(322, "lb"),
  14800. name: "Front",
  14801. image: {
  14802. source: "./media/characters/vulcan/front.svg",
  14803. extra: 154 / 147,
  14804. bottom: 0.04
  14805. }
  14806. },
  14807. },
  14808. [
  14809. {
  14810. name: "Normal",
  14811. height: math.unit(7 + 2 / 12, "feet"),
  14812. default: true
  14813. },
  14814. ]
  14815. ))
  14816. characterMakers.push(() => makeCharacter(
  14817. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14818. {
  14819. front: {
  14820. height: math.unit(5 + 10 / 12, "feet"),
  14821. weight: math.unit(264, "lb"),
  14822. name: "Front",
  14823. image: {
  14824. source: "./media/characters/gault/front.svg",
  14825. extra: 161 / 140,
  14826. bottom: 0.028
  14827. }
  14828. },
  14829. },
  14830. [
  14831. {
  14832. name: "Normal",
  14833. height: math.unit(5 + 10 / 12, "feet"),
  14834. default: true
  14835. },
  14836. ]
  14837. ))
  14838. characterMakers.push(() => makeCharacter(
  14839. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14840. {
  14841. front: {
  14842. height: math.unit(6, "feet"),
  14843. weight: math.unit(150, "lb"),
  14844. name: "Front",
  14845. image: {
  14846. source: "./media/characters/shard/front.svg",
  14847. extra: 273 / 238,
  14848. bottom: 0.02
  14849. }
  14850. },
  14851. },
  14852. [
  14853. {
  14854. name: "Normal",
  14855. height: math.unit(3 + 6 / 12, "feet"),
  14856. default: true
  14857. },
  14858. ]
  14859. ))
  14860. characterMakers.push(() => makeCharacter(
  14861. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14862. {
  14863. front: {
  14864. height: math.unit(5 + 11 / 12, "feet"),
  14865. weight: math.unit(146, "lb"),
  14866. name: "Front",
  14867. image: {
  14868. source: "./media/characters/ashe/front.svg",
  14869. extra: 400 / 373,
  14870. bottom: 0.01
  14871. }
  14872. },
  14873. },
  14874. [
  14875. {
  14876. name: "Normal",
  14877. height: math.unit(5 + 11 / 12, "feet"),
  14878. default: true
  14879. },
  14880. ]
  14881. ))
  14882. characterMakers.push(() => makeCharacter(
  14883. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14884. {
  14885. front: {
  14886. height: math.unit(5 + 5 / 12, "feet"),
  14887. weight: math.unit(135, "lb"),
  14888. name: "Front",
  14889. image: {
  14890. source: "./media/characters/beatrix/front.svg",
  14891. extra: 392 / 379,
  14892. bottom: 0.01
  14893. }
  14894. },
  14895. },
  14896. [
  14897. {
  14898. name: "Normal",
  14899. height: math.unit(6, "feet"),
  14900. default: true
  14901. },
  14902. ]
  14903. ))
  14904. characterMakers.push(() => makeCharacter(
  14905. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14906. {
  14907. front: {
  14908. height: math.unit(6, "feet"),
  14909. weight: math.unit(150, "lb"),
  14910. name: "Front",
  14911. image: {
  14912. source: "./media/characters/ignatius/front.svg",
  14913. extra: 245 / 222,
  14914. bottom: 0.01
  14915. }
  14916. },
  14917. },
  14918. [
  14919. {
  14920. name: "Normal",
  14921. height: math.unit(5 + 5 / 12, "feet"),
  14922. default: true
  14923. },
  14924. ]
  14925. ))
  14926. characterMakers.push(() => makeCharacter(
  14927. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14928. {
  14929. front: {
  14930. height: math.unit(6 + 2 / 12, "feet"),
  14931. weight: math.unit(138, "lb"),
  14932. name: "Front",
  14933. image: {
  14934. source: "./media/characters/mei-li/front.svg",
  14935. extra: 237 / 229,
  14936. bottom: 0.03
  14937. }
  14938. },
  14939. },
  14940. [
  14941. {
  14942. name: "Normal",
  14943. height: math.unit(6 + 2 / 12, "feet"),
  14944. default: true
  14945. },
  14946. ]
  14947. ))
  14948. characterMakers.push(() => makeCharacter(
  14949. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14950. {
  14951. front: {
  14952. height: math.unit(2 + 4 / 12, "feet"),
  14953. weight: math.unit(62, "lb"),
  14954. name: "Front",
  14955. image: {
  14956. source: "./media/characters/puru/front.svg",
  14957. extra: 206 / 149,
  14958. bottom: 0.06
  14959. }
  14960. },
  14961. },
  14962. [
  14963. {
  14964. name: "Normal",
  14965. height: math.unit(2 + 4 / 12, "feet"),
  14966. default: true
  14967. },
  14968. ]
  14969. ))
  14970. characterMakers.push(() => makeCharacter(
  14971. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  14972. {
  14973. anthro: {
  14974. height: math.unit(5 + 8/12, "feet"),
  14975. weight: math.unit(200, "lb"),
  14976. energyNeed: math.unit(2000, "kcal"),
  14977. name: "Anthro",
  14978. image: {
  14979. source: "./media/characters/kee/anthro.svg",
  14980. extra: 3251/3184,
  14981. bottom: 250/3501
  14982. }
  14983. },
  14984. taur: {
  14985. height: math.unit(11, "feet"),
  14986. weight: math.unit(500, "lb"),
  14987. energyNeed: math.unit(5000, "kcal"),
  14988. name: "Taur",
  14989. image: {
  14990. source: "./media/characters/kee/taur.svg",
  14991. extra: 1362/1320,
  14992. bottom: 83/1445
  14993. }
  14994. },
  14995. },
  14996. [
  14997. {
  14998. name: "Normal",
  14999. height: math.unit(5 + 8/12, "feet"),
  15000. default: true
  15001. },
  15002. {
  15003. name: "Macro",
  15004. height: math.unit(35, "feet")
  15005. },
  15006. ]
  15007. ))
  15008. characterMakers.push(() => makeCharacter(
  15009. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15010. {
  15011. anthro: {
  15012. height: math.unit(7, "feet"),
  15013. weight: math.unit(190, "lb"),
  15014. name: "Anthro",
  15015. image: {
  15016. source: "./media/characters/cobalt-dracha/anthro.svg",
  15017. extra: 231 / 225,
  15018. bottom: 0.04
  15019. }
  15020. },
  15021. feral: {
  15022. height: math.unit(9 + 7 / 12, "feet"),
  15023. weight: math.unit(294, "lb"),
  15024. name: "Feral",
  15025. image: {
  15026. source: "./media/characters/cobalt-dracha/feral.svg",
  15027. extra: 692 / 633,
  15028. bottom: 0.05
  15029. }
  15030. },
  15031. },
  15032. [
  15033. {
  15034. name: "Normal",
  15035. height: math.unit(7, "feet"),
  15036. default: true
  15037. },
  15038. ]
  15039. ))
  15040. characterMakers.push(() => makeCharacter(
  15041. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15042. {
  15043. fallen: {
  15044. height: math.unit(11 + 8 / 12, "feet"),
  15045. weight: math.unit(485, "lb"),
  15046. name: "Java (Fallen)",
  15047. rename: true,
  15048. image: {
  15049. source: "./media/characters/java/fallen.svg",
  15050. extra: 226 / 208,
  15051. bottom: 0.005
  15052. }
  15053. },
  15054. godkin: {
  15055. height: math.unit(10 + 6 / 12, "feet"),
  15056. weight: math.unit(328, "lb"),
  15057. name: "Java (Godkin)",
  15058. rename: true,
  15059. image: {
  15060. source: "./media/characters/java/godkin.svg",
  15061. extra: 270 / 262,
  15062. bottom: 0.02
  15063. }
  15064. },
  15065. },
  15066. [
  15067. {
  15068. name: "Normal",
  15069. height: math.unit(11 + 8 / 12, "feet"),
  15070. default: true
  15071. },
  15072. ]
  15073. ))
  15074. characterMakers.push(() => makeCharacter(
  15075. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15076. {
  15077. front: {
  15078. height: math.unit(7 + 8 / 12, "feet"),
  15079. weight: math.unit(320, "lb"),
  15080. name: "Front",
  15081. image: {
  15082. source: "./media/characters/skoll/front.svg",
  15083. extra: 232 / 220,
  15084. bottom: 0.02
  15085. }
  15086. },
  15087. },
  15088. [
  15089. {
  15090. name: "Normal",
  15091. height: math.unit(7 + 8 / 12, "feet"),
  15092. default: true
  15093. },
  15094. ]
  15095. ))
  15096. characterMakers.push(() => makeCharacter(
  15097. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15098. {
  15099. front: {
  15100. height: math.unit(5 + 9 / 12, "feet"),
  15101. weight: math.unit(170, "lb"),
  15102. name: "Front",
  15103. image: {
  15104. source: "./media/characters/purna/front.svg",
  15105. extra: 239 / 229,
  15106. bottom: 0.01
  15107. }
  15108. },
  15109. },
  15110. [
  15111. {
  15112. name: "Normal",
  15113. height: math.unit(5 + 9 / 12, "feet"),
  15114. default: true
  15115. },
  15116. ]
  15117. ))
  15118. characterMakers.push(() => makeCharacter(
  15119. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15120. {
  15121. front: {
  15122. height: math.unit(5 + 9 / 12, "feet"),
  15123. weight: math.unit(142, "lb"),
  15124. name: "Front",
  15125. image: {
  15126. source: "./media/characters/kuva/front.svg",
  15127. extra: 281 / 271,
  15128. bottom: 0.006
  15129. }
  15130. },
  15131. },
  15132. [
  15133. {
  15134. name: "Normal",
  15135. height: math.unit(5 + 9 / 12, "feet"),
  15136. default: true
  15137. },
  15138. ]
  15139. ))
  15140. characterMakers.push(() => makeCharacter(
  15141. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15142. {
  15143. anthro: {
  15144. height: math.unit(9 + 2 / 12, "feet"),
  15145. weight: math.unit(270, "lb"),
  15146. name: "Anthro",
  15147. image: {
  15148. source: "./media/characters/embra/anthro.svg",
  15149. extra: 200 / 187,
  15150. bottom: 0.02
  15151. }
  15152. },
  15153. feral: {
  15154. height: math.unit(18 + 8 / 12, "feet"),
  15155. weight: math.unit(576, "lb"),
  15156. name: "Feral",
  15157. image: {
  15158. source: "./media/characters/embra/feral.svg",
  15159. extra: 152 / 137,
  15160. bottom: 0.037
  15161. }
  15162. },
  15163. },
  15164. [
  15165. {
  15166. name: "Normal",
  15167. height: math.unit(9 + 2 / 12, "feet"),
  15168. default: true
  15169. },
  15170. ]
  15171. ))
  15172. characterMakers.push(() => makeCharacter(
  15173. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15174. {
  15175. anthro: {
  15176. height: math.unit(10 + 9 / 12, "feet"),
  15177. weight: math.unit(224, "lb"),
  15178. name: "Anthro",
  15179. image: {
  15180. source: "./media/characters/grottos/anthro.svg",
  15181. extra: 350 / 332,
  15182. bottom: 0.045
  15183. }
  15184. },
  15185. feral: {
  15186. height: math.unit(20 + 7 / 12, "feet"),
  15187. weight: math.unit(629, "lb"),
  15188. name: "Feral",
  15189. image: {
  15190. source: "./media/characters/grottos/feral.svg",
  15191. extra: 207 / 190,
  15192. bottom: 0.05
  15193. }
  15194. },
  15195. },
  15196. [
  15197. {
  15198. name: "Normal",
  15199. height: math.unit(10 + 9 / 12, "feet"),
  15200. default: true
  15201. },
  15202. ]
  15203. ))
  15204. characterMakers.push(() => makeCharacter(
  15205. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15206. {
  15207. anthro: {
  15208. height: math.unit(9 + 6 / 12, "feet"),
  15209. weight: math.unit(298, "lb"),
  15210. name: "Anthro",
  15211. image: {
  15212. source: "./media/characters/frifna/anthro.svg",
  15213. extra: 282 / 269,
  15214. bottom: 0.015
  15215. }
  15216. },
  15217. feral: {
  15218. height: math.unit(16 + 2 / 12, "feet"),
  15219. weight: math.unit(624, "lb"),
  15220. name: "Feral",
  15221. image: {
  15222. source: "./media/characters/frifna/feral.svg"
  15223. }
  15224. },
  15225. },
  15226. [
  15227. {
  15228. name: "Normal",
  15229. height: math.unit(9 + 6 / 12, "feet"),
  15230. default: true
  15231. },
  15232. ]
  15233. ))
  15234. characterMakers.push(() => makeCharacter(
  15235. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15236. {
  15237. front: {
  15238. height: math.unit(6 + 2 / 12, "feet"),
  15239. weight: math.unit(168, "lb"),
  15240. name: "Front",
  15241. image: {
  15242. source: "./media/characters/elise/front.svg",
  15243. extra: 276 / 271
  15244. }
  15245. },
  15246. },
  15247. [
  15248. {
  15249. name: "Normal",
  15250. height: math.unit(6 + 2 / 12, "feet"),
  15251. default: true
  15252. },
  15253. ]
  15254. ))
  15255. characterMakers.push(() => makeCharacter(
  15256. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15257. {
  15258. front: {
  15259. height: math.unit(5 + 10 / 12, "feet"),
  15260. weight: math.unit(210, "lb"),
  15261. name: "Front",
  15262. image: {
  15263. source: "./media/characters/glade/front.svg",
  15264. extra: 258 / 247,
  15265. bottom: 0.008
  15266. }
  15267. },
  15268. },
  15269. [
  15270. {
  15271. name: "Normal",
  15272. height: math.unit(5 + 10 / 12, "feet"),
  15273. default: true
  15274. },
  15275. ]
  15276. ))
  15277. characterMakers.push(() => makeCharacter(
  15278. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15279. {
  15280. front: {
  15281. height: math.unit(5 + 10 / 12, "feet"),
  15282. weight: math.unit(129, "lb"),
  15283. name: "Front",
  15284. image: {
  15285. source: "./media/characters/rina/front.svg",
  15286. extra: 266 / 255,
  15287. bottom: 0.005
  15288. }
  15289. },
  15290. },
  15291. [
  15292. {
  15293. name: "Normal",
  15294. height: math.unit(5 + 10 / 12, "feet"),
  15295. default: true
  15296. },
  15297. ]
  15298. ))
  15299. characterMakers.push(() => makeCharacter(
  15300. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15301. {
  15302. front: {
  15303. height: math.unit(6 + 1 / 12, "feet"),
  15304. weight: math.unit(192, "lb"),
  15305. name: "Front",
  15306. image: {
  15307. source: "./media/characters/veronica/front.svg",
  15308. extra: 319 / 309,
  15309. bottom: 0.005
  15310. }
  15311. },
  15312. },
  15313. [
  15314. {
  15315. name: "Normal",
  15316. height: math.unit(6 + 1 / 12, "feet"),
  15317. default: true
  15318. },
  15319. ]
  15320. ))
  15321. characterMakers.push(() => makeCharacter(
  15322. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15323. {
  15324. front: {
  15325. height: math.unit(9 + 3 / 12, "feet"),
  15326. weight: math.unit(1100, "lb"),
  15327. name: "Front",
  15328. image: {
  15329. source: "./media/characters/braxton/front.svg",
  15330. extra: 1057 / 984,
  15331. bottom: 0.05
  15332. }
  15333. },
  15334. },
  15335. [
  15336. {
  15337. name: "Normal",
  15338. height: math.unit(9 + 3 / 12, "feet")
  15339. },
  15340. {
  15341. name: "Giant",
  15342. height: math.unit(300, "feet"),
  15343. default: true
  15344. },
  15345. {
  15346. name: "Macro",
  15347. height: math.unit(700, "feet")
  15348. },
  15349. {
  15350. name: "Megamacro",
  15351. height: math.unit(6000, "feet")
  15352. },
  15353. ]
  15354. ))
  15355. characterMakers.push(() => makeCharacter(
  15356. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15357. {
  15358. front: {
  15359. height: math.unit(6 + 7 / 12, "feet"),
  15360. weight: math.unit(150, "lb"),
  15361. name: "Front",
  15362. image: {
  15363. source: "./media/characters/blue-feyonics/front.svg",
  15364. extra: 1403 / 1306,
  15365. bottom: 0.047
  15366. }
  15367. },
  15368. },
  15369. [
  15370. {
  15371. name: "Normal",
  15372. height: math.unit(6 + 7 / 12, "feet"),
  15373. default: true
  15374. },
  15375. ]
  15376. ))
  15377. characterMakers.push(() => makeCharacter(
  15378. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15379. {
  15380. front: {
  15381. height: math.unit(1.8, "meters"),
  15382. weight: math.unit(60, "kg"),
  15383. name: "Front",
  15384. image: {
  15385. source: "./media/characters/maxwell/front.svg",
  15386. extra: 2060 / 1873
  15387. }
  15388. },
  15389. },
  15390. [
  15391. {
  15392. name: "Micro",
  15393. height: math.unit(1, "mm")
  15394. },
  15395. {
  15396. name: "Normal",
  15397. height: math.unit(1.8, "meter"),
  15398. default: true
  15399. },
  15400. {
  15401. name: "Macro",
  15402. height: math.unit(30, "meters")
  15403. },
  15404. {
  15405. name: "Megamacro",
  15406. height: math.unit(10, "km")
  15407. },
  15408. ]
  15409. ))
  15410. characterMakers.push(() => makeCharacter(
  15411. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15412. {
  15413. front: {
  15414. height: math.unit(6, "feet"),
  15415. weight: math.unit(150, "lb"),
  15416. name: "Front",
  15417. image: {
  15418. source: "./media/characters/jack/front.svg",
  15419. extra: 1754 / 1640,
  15420. bottom: 0.01
  15421. }
  15422. },
  15423. },
  15424. [
  15425. {
  15426. name: "Normal",
  15427. height: math.unit(80000, "feet"),
  15428. default: true
  15429. },
  15430. {
  15431. name: "Max size",
  15432. height: math.unit(10, "lightyears")
  15433. },
  15434. ]
  15435. ))
  15436. characterMakers.push(() => makeCharacter(
  15437. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15438. {
  15439. upright: {
  15440. height: math.unit(7, "feet"),
  15441. weight: math.unit(170, "lb"),
  15442. name: "Upright",
  15443. image: {
  15444. source: "./media/characters/cafat/upright.svg",
  15445. bottom: 0.01
  15446. }
  15447. },
  15448. uprightFull: {
  15449. height: math.unit(7, "feet"),
  15450. weight: math.unit(170, "lb"),
  15451. name: "Upright (Full)",
  15452. image: {
  15453. source: "./media/characters/cafat/upright-full.svg",
  15454. bottom: 0.01
  15455. }
  15456. },
  15457. side: {
  15458. height: math.unit(5, "feet"),
  15459. weight: math.unit(150, "lb"),
  15460. name: "Side",
  15461. image: {
  15462. source: "./media/characters/cafat/side.svg"
  15463. }
  15464. },
  15465. },
  15466. [
  15467. {
  15468. name: "Small",
  15469. height: math.unit(7, "feet"),
  15470. default: true
  15471. },
  15472. {
  15473. name: "Large",
  15474. height: math.unit(15.5, "feet")
  15475. },
  15476. ]
  15477. ))
  15478. characterMakers.push(() => makeCharacter(
  15479. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15480. {
  15481. front: {
  15482. height: math.unit(6, "feet"),
  15483. weight: math.unit(150, "lb"),
  15484. name: "Front",
  15485. image: {
  15486. source: "./media/characters/verin-raharra/front.svg",
  15487. extra: 5019 / 4835,
  15488. bottom: 0.023
  15489. }
  15490. },
  15491. },
  15492. [
  15493. {
  15494. name: "Normal",
  15495. height: math.unit(7 + 5 / 12, "feet"),
  15496. default: true
  15497. },
  15498. {
  15499. name: "Upsized",
  15500. height: math.unit(20, "feet")
  15501. },
  15502. ]
  15503. ))
  15504. characterMakers.push(() => makeCharacter(
  15505. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15506. {
  15507. front: {
  15508. height: math.unit(7, "feet"),
  15509. weight: math.unit(230, "lb"),
  15510. name: "Front",
  15511. image: {
  15512. source: "./media/characters/nakata/front.svg",
  15513. extra: 1.005,
  15514. bottom: 0.01
  15515. }
  15516. },
  15517. },
  15518. [
  15519. {
  15520. name: "Normal",
  15521. height: math.unit(7, "feet"),
  15522. default: true
  15523. },
  15524. {
  15525. name: "Big",
  15526. height: math.unit(14, "feet")
  15527. },
  15528. {
  15529. name: "Macro",
  15530. height: math.unit(400, "feet")
  15531. },
  15532. ]
  15533. ))
  15534. characterMakers.push(() => makeCharacter(
  15535. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15536. {
  15537. front: {
  15538. height: math.unit(4.91, "feet"),
  15539. weight: math.unit(100, "lb"),
  15540. name: "Front",
  15541. image: {
  15542. source: "./media/characters/lily/front.svg",
  15543. extra: 1585 / 1415,
  15544. bottom: 0.02
  15545. }
  15546. },
  15547. },
  15548. [
  15549. {
  15550. name: "Normal",
  15551. height: math.unit(4.91, "feet"),
  15552. default: true
  15553. },
  15554. ]
  15555. ))
  15556. characterMakers.push(() => makeCharacter(
  15557. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15558. {
  15559. laying: {
  15560. height: math.unit(4 + 4 / 12, "feet"),
  15561. weight: math.unit(600, "lb"),
  15562. name: "Laying",
  15563. image: {
  15564. source: "./media/characters/sheila/laying.svg",
  15565. extra: 1333 / 1265,
  15566. bottom: 0.16
  15567. }
  15568. },
  15569. },
  15570. [
  15571. {
  15572. name: "Normal",
  15573. height: math.unit(4 + 4 / 12, "feet"),
  15574. default: true
  15575. },
  15576. ]
  15577. ))
  15578. characterMakers.push(() => makeCharacter(
  15579. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15580. {
  15581. front: {
  15582. height: math.unit(6, "feet"),
  15583. weight: math.unit(190, "lb"),
  15584. name: "Front",
  15585. image: {
  15586. source: "./media/characters/sax/front.svg",
  15587. extra: 1187 / 973,
  15588. bottom: 0.042
  15589. }
  15590. },
  15591. },
  15592. [
  15593. {
  15594. name: "Micro",
  15595. height: math.unit(4, "inches"),
  15596. default: true
  15597. },
  15598. ]
  15599. ))
  15600. characterMakers.push(() => makeCharacter(
  15601. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15602. {
  15603. front: {
  15604. height: math.unit(6, "feet"),
  15605. weight: math.unit(150, "lb"),
  15606. name: "Front",
  15607. image: {
  15608. source: "./media/characters/pandora/front.svg",
  15609. extra: 2720 / 2556,
  15610. bottom: 0.015
  15611. }
  15612. },
  15613. back: {
  15614. height: math.unit(6, "feet"),
  15615. weight: math.unit(150, "lb"),
  15616. name: "Back",
  15617. image: {
  15618. source: "./media/characters/pandora/back.svg",
  15619. extra: 2720 / 2556,
  15620. bottom: 0.01
  15621. }
  15622. },
  15623. beans: {
  15624. height: math.unit(6 / 8, "feet"),
  15625. name: "Beans",
  15626. image: {
  15627. source: "./media/characters/pandora/beans.svg"
  15628. }
  15629. },
  15630. skirt: {
  15631. height: math.unit(6, "feet"),
  15632. weight: math.unit(150, "lb"),
  15633. name: "Skirt",
  15634. image: {
  15635. source: "./media/characters/pandora/skirt.svg",
  15636. extra: 1622 / 1525,
  15637. bottom: 0.015
  15638. }
  15639. },
  15640. hoodie: {
  15641. height: math.unit(6, "feet"),
  15642. weight: math.unit(150, "lb"),
  15643. name: "Hoodie",
  15644. image: {
  15645. source: "./media/characters/pandora/hoodie.svg",
  15646. extra: 1622 / 1525,
  15647. bottom: 0.015
  15648. }
  15649. },
  15650. casual: {
  15651. height: math.unit(6, "feet"),
  15652. weight: math.unit(150, "lb"),
  15653. name: "Casual",
  15654. image: {
  15655. source: "./media/characters/pandora/casual.svg",
  15656. extra: 1622 / 1525,
  15657. bottom: 0.015
  15658. }
  15659. },
  15660. },
  15661. [
  15662. {
  15663. name: "Normal",
  15664. height: math.unit(6, "feet")
  15665. },
  15666. {
  15667. name: "Big Steppy",
  15668. height: math.unit(1, "km"),
  15669. default: true
  15670. },
  15671. ]
  15672. ))
  15673. characterMakers.push(() => makeCharacter(
  15674. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15675. {
  15676. side: {
  15677. height: math.unit(10, "feet"),
  15678. weight: math.unit(800, "kg"),
  15679. name: "Side",
  15680. image: {
  15681. source: "./media/characters/venio-darcony/side.svg",
  15682. extra: 1373 / 1003,
  15683. bottom: 0.037
  15684. }
  15685. },
  15686. front: {
  15687. height: math.unit(19, "feet"),
  15688. weight: math.unit(800, "kg"),
  15689. name: "Front",
  15690. image: {
  15691. source: "./media/characters/venio-darcony/front.svg"
  15692. }
  15693. },
  15694. back: {
  15695. height: math.unit(19, "feet"),
  15696. weight: math.unit(800, "kg"),
  15697. name: "Back",
  15698. image: {
  15699. source: "./media/characters/venio-darcony/back.svg"
  15700. }
  15701. },
  15702. sideNsfw: {
  15703. height: math.unit(10, "feet"),
  15704. weight: math.unit(800, "kg"),
  15705. name: "Side (NSFW)",
  15706. image: {
  15707. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15708. extra: 1373 / 1003,
  15709. bottom: 0.037
  15710. }
  15711. },
  15712. frontNsfw: {
  15713. height: math.unit(19, "feet"),
  15714. weight: math.unit(800, "kg"),
  15715. name: "Front (NSFW)",
  15716. image: {
  15717. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15718. }
  15719. },
  15720. backNsfw: {
  15721. height: math.unit(19, "feet"),
  15722. weight: math.unit(800, "kg"),
  15723. name: "Back (NSFW)",
  15724. image: {
  15725. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15726. }
  15727. },
  15728. sideArmored: {
  15729. height: math.unit(10, "feet"),
  15730. weight: math.unit(800, "kg"),
  15731. name: "Side (Armored)",
  15732. image: {
  15733. source: "./media/characters/venio-darcony/side-armored.svg",
  15734. extra: 1373 / 1003,
  15735. bottom: 0.037
  15736. }
  15737. },
  15738. frontArmored: {
  15739. height: math.unit(19, "feet"),
  15740. weight: math.unit(900, "kg"),
  15741. name: "Front (Armored)",
  15742. image: {
  15743. source: "./media/characters/venio-darcony/front-armored.svg"
  15744. }
  15745. },
  15746. backArmored: {
  15747. height: math.unit(19, "feet"),
  15748. weight: math.unit(900, "kg"),
  15749. name: "Back (Armored)",
  15750. image: {
  15751. source: "./media/characters/venio-darcony/back-armored.svg"
  15752. }
  15753. },
  15754. sword: {
  15755. height: math.unit(10, "feet"),
  15756. weight: math.unit(50, "lb"),
  15757. name: "Sword",
  15758. image: {
  15759. source: "./media/characters/venio-darcony/sword.svg"
  15760. }
  15761. },
  15762. },
  15763. [
  15764. {
  15765. name: "Normal",
  15766. height: math.unit(10, "feet")
  15767. },
  15768. {
  15769. name: "Macro",
  15770. height: math.unit(130, "feet"),
  15771. default: true
  15772. },
  15773. {
  15774. name: "Macro+",
  15775. height: math.unit(240, "feet")
  15776. },
  15777. ]
  15778. ))
  15779. characterMakers.push(() => makeCharacter(
  15780. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15781. {
  15782. front: {
  15783. height: math.unit(6, "feet"),
  15784. weight: math.unit(150, "lb"),
  15785. name: "Front",
  15786. image: {
  15787. source: "./media/characters/veski/front.svg",
  15788. extra: 1299 / 1225,
  15789. bottom: 0.04
  15790. }
  15791. },
  15792. back: {
  15793. height: math.unit(6, "feet"),
  15794. weight: math.unit(150, "lb"),
  15795. name: "Back",
  15796. image: {
  15797. source: "./media/characters/veski/back.svg",
  15798. extra: 1299 / 1225,
  15799. bottom: 0.008
  15800. }
  15801. },
  15802. maw: {
  15803. height: math.unit(1.5 * 1.21, "feet"),
  15804. name: "Maw",
  15805. image: {
  15806. source: "./media/characters/veski/maw.svg"
  15807. }
  15808. },
  15809. },
  15810. [
  15811. {
  15812. name: "Macro",
  15813. height: math.unit(2, "km"),
  15814. default: true
  15815. },
  15816. ]
  15817. ))
  15818. characterMakers.push(() => makeCharacter(
  15819. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15820. {
  15821. front: {
  15822. height: math.unit(5 + 7 / 12, "feet"),
  15823. name: "Front",
  15824. image: {
  15825. source: "./media/characters/isabelle/front.svg",
  15826. extra: 2130 / 1976,
  15827. bottom: 0.05
  15828. }
  15829. },
  15830. },
  15831. [
  15832. {
  15833. name: "Supermicro",
  15834. height: math.unit(10, "micrometers")
  15835. },
  15836. {
  15837. name: "Micro",
  15838. height: math.unit(1, "inch")
  15839. },
  15840. {
  15841. name: "Tiny",
  15842. height: math.unit(5, "inches")
  15843. },
  15844. {
  15845. name: "Standard",
  15846. height: math.unit(5 + 7 / 12, "inches")
  15847. },
  15848. {
  15849. name: "Macro",
  15850. height: math.unit(80, "meters"),
  15851. default: true
  15852. },
  15853. {
  15854. name: "Megamacro",
  15855. height: math.unit(250, "meters")
  15856. },
  15857. {
  15858. name: "Gigamacro",
  15859. height: math.unit(5, "km")
  15860. },
  15861. {
  15862. name: "Cosmic",
  15863. height: math.unit(2.5e6, "miles")
  15864. },
  15865. ]
  15866. ))
  15867. characterMakers.push(() => makeCharacter(
  15868. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15869. {
  15870. front: {
  15871. height: math.unit(6, "feet"),
  15872. weight: math.unit(150, "lb"),
  15873. name: "Front",
  15874. image: {
  15875. source: "./media/characters/hanzo/front.svg",
  15876. extra: 374 / 344,
  15877. bottom: 0.02
  15878. }
  15879. },
  15880. },
  15881. [
  15882. {
  15883. name: "Normal",
  15884. height: math.unit(8, "feet"),
  15885. default: true
  15886. },
  15887. ]
  15888. ))
  15889. characterMakers.push(() => makeCharacter(
  15890. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15891. {
  15892. front: {
  15893. height: math.unit(7, "feet"),
  15894. weight: math.unit(130, "lb"),
  15895. name: "Front",
  15896. image: {
  15897. source: "./media/characters/anna/front.svg",
  15898. extra: 169 / 145,
  15899. bottom: 0.06
  15900. }
  15901. },
  15902. full: {
  15903. height: math.unit(4.96, "feet"),
  15904. weight: math.unit(220, "lb"),
  15905. name: "Full",
  15906. image: {
  15907. source: "./media/characters/anna/full.svg",
  15908. extra: 138 / 114,
  15909. bottom: 0.15
  15910. }
  15911. },
  15912. tongue: {
  15913. height: math.unit(2.53, "feet"),
  15914. name: "Tongue",
  15915. image: {
  15916. source: "./media/characters/anna/tongue.svg"
  15917. }
  15918. },
  15919. },
  15920. [
  15921. {
  15922. name: "Normal",
  15923. height: math.unit(7, "feet"),
  15924. default: true
  15925. },
  15926. ]
  15927. ))
  15928. characterMakers.push(() => makeCharacter(
  15929. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15930. {
  15931. front: {
  15932. height: math.unit(7, "feet"),
  15933. weight: math.unit(150, "lb"),
  15934. name: "Front",
  15935. image: {
  15936. source: "./media/characters/ian-corvid/front.svg",
  15937. extra: 150 / 142,
  15938. bottom: 0.02
  15939. }
  15940. },
  15941. back: {
  15942. height: math.unit(7, "feet"),
  15943. weight: math.unit(150, "lb"),
  15944. name: "Back",
  15945. image: {
  15946. source: "./media/characters/ian-corvid/back.svg",
  15947. extra: 150 / 143,
  15948. bottom: 0.01
  15949. }
  15950. },
  15951. stomping: {
  15952. height: math.unit(7, "feet"),
  15953. weight: math.unit(150, "lb"),
  15954. name: "Stomping",
  15955. image: {
  15956. source: "./media/characters/ian-corvid/stomping.svg",
  15957. extra: 76 / 72
  15958. }
  15959. },
  15960. sitting: {
  15961. height: math.unit(7 / 1.8, "feet"),
  15962. weight: math.unit(150, "lb"),
  15963. name: "Sitting",
  15964. image: {
  15965. source: "./media/characters/ian-corvid/sitting.svg",
  15966. extra: 1400 / 1269,
  15967. bottom: 0.15
  15968. }
  15969. },
  15970. },
  15971. [
  15972. {
  15973. name: "Tiny Microw",
  15974. height: math.unit(1, "inch")
  15975. },
  15976. {
  15977. name: "Microw",
  15978. height: math.unit(6, "inches")
  15979. },
  15980. {
  15981. name: "Crow",
  15982. height: math.unit(7 + 1 / 12, "feet"),
  15983. default: true
  15984. },
  15985. {
  15986. name: "Macrow",
  15987. height: math.unit(176, "feet")
  15988. },
  15989. ]
  15990. ))
  15991. characterMakers.push(() => makeCharacter(
  15992. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15993. {
  15994. front: {
  15995. height: math.unit(5 + 7 / 12, "feet"),
  15996. weight: math.unit(147, "lb"),
  15997. name: "Front",
  15998. image: {
  15999. source: "./media/characters/natalie-kellon/front.svg",
  16000. extra: 1214 / 1141,
  16001. bottom: 0.02
  16002. }
  16003. },
  16004. },
  16005. [
  16006. {
  16007. name: "Micro",
  16008. height: math.unit(1 / 16, "inch")
  16009. },
  16010. {
  16011. name: "Tiny",
  16012. height: math.unit(4, "inches")
  16013. },
  16014. {
  16015. name: "Normal",
  16016. height: math.unit(5 + 7 / 12, "feet"),
  16017. default: true
  16018. },
  16019. {
  16020. name: "Amazon",
  16021. height: math.unit(12, "feet")
  16022. },
  16023. {
  16024. name: "Giantess",
  16025. height: math.unit(160, "meters")
  16026. },
  16027. {
  16028. name: "Titaness",
  16029. height: math.unit(800, "meters")
  16030. },
  16031. ]
  16032. ))
  16033. characterMakers.push(() => makeCharacter(
  16034. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16035. {
  16036. front: {
  16037. height: math.unit(6, "feet"),
  16038. weight: math.unit(150, "lb"),
  16039. name: "Front",
  16040. image: {
  16041. source: "./media/characters/alluria/front.svg",
  16042. extra: 806 / 738,
  16043. bottom: 0.01
  16044. }
  16045. },
  16046. side: {
  16047. height: math.unit(6, "feet"),
  16048. weight: math.unit(150, "lb"),
  16049. name: "Side",
  16050. image: {
  16051. source: "./media/characters/alluria/side.svg",
  16052. extra: 800 / 750,
  16053. }
  16054. },
  16055. back: {
  16056. height: math.unit(6, "feet"),
  16057. weight: math.unit(150, "lb"),
  16058. name: "Back",
  16059. image: {
  16060. source: "./media/characters/alluria/back.svg",
  16061. extra: 806 / 738,
  16062. }
  16063. },
  16064. frontMaid: {
  16065. height: math.unit(6, "feet"),
  16066. weight: math.unit(150, "lb"),
  16067. name: "Front (Maid)",
  16068. image: {
  16069. source: "./media/characters/alluria/front-maid.svg",
  16070. extra: 806 / 738,
  16071. bottom: 0.01
  16072. }
  16073. },
  16074. sideMaid: {
  16075. height: math.unit(6, "feet"),
  16076. weight: math.unit(150, "lb"),
  16077. name: "Side (Maid)",
  16078. image: {
  16079. source: "./media/characters/alluria/side-maid.svg",
  16080. extra: 800 / 750,
  16081. bottom: 0.005
  16082. }
  16083. },
  16084. backMaid: {
  16085. height: math.unit(6, "feet"),
  16086. weight: math.unit(150, "lb"),
  16087. name: "Back (Maid)",
  16088. image: {
  16089. source: "./media/characters/alluria/back-maid.svg",
  16090. extra: 806 / 738,
  16091. }
  16092. },
  16093. },
  16094. [
  16095. {
  16096. name: "Micro",
  16097. height: math.unit(6, "inches"),
  16098. default: true
  16099. },
  16100. ]
  16101. ))
  16102. characterMakers.push(() => makeCharacter(
  16103. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16104. {
  16105. front: {
  16106. height: math.unit(6, "feet"),
  16107. weight: math.unit(150, "lb"),
  16108. name: "Front",
  16109. image: {
  16110. source: "./media/characters/kyle/front.svg",
  16111. extra: 1069 / 962,
  16112. bottom: 77.228 / 1727.45
  16113. }
  16114. },
  16115. },
  16116. [
  16117. {
  16118. name: "Macro",
  16119. height: math.unit(150, "feet"),
  16120. default: true
  16121. },
  16122. ]
  16123. ))
  16124. characterMakers.push(() => makeCharacter(
  16125. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16126. {
  16127. front: {
  16128. height: math.unit(6, "feet"),
  16129. weight: math.unit(300, "lb"),
  16130. name: "Front",
  16131. image: {
  16132. source: "./media/characters/duncan/front.svg",
  16133. extra: 1650 / 1482,
  16134. bottom: 0.05
  16135. }
  16136. },
  16137. },
  16138. [
  16139. {
  16140. name: "Macro",
  16141. height: math.unit(100, "feet"),
  16142. default: true
  16143. },
  16144. ]
  16145. ))
  16146. characterMakers.push(() => makeCharacter(
  16147. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16148. {
  16149. front: {
  16150. height: math.unit(5 + 4 / 12, "feet"),
  16151. weight: math.unit(220, "lb"),
  16152. name: "Front",
  16153. image: {
  16154. source: "./media/characters/memory/front.svg",
  16155. extra: 3641 / 3545,
  16156. bottom: 0.03
  16157. }
  16158. },
  16159. back: {
  16160. height: math.unit(5 + 4 / 12, "feet"),
  16161. weight: math.unit(220, "lb"),
  16162. name: "Back",
  16163. image: {
  16164. source: "./media/characters/memory/back.svg",
  16165. extra: 3641 / 3545,
  16166. bottom: 0.025
  16167. }
  16168. },
  16169. frontSkirt: {
  16170. height: math.unit(5 + 4 / 12, "feet"),
  16171. weight: math.unit(220, "lb"),
  16172. name: "Front (Skirt)",
  16173. image: {
  16174. source: "./media/characters/memory/front-skirt.svg",
  16175. extra: 3641 / 3545,
  16176. bottom: 0.03
  16177. }
  16178. },
  16179. frontDress: {
  16180. height: math.unit(5 + 4 / 12, "feet"),
  16181. weight: math.unit(220, "lb"),
  16182. name: "Front (Dress)",
  16183. image: {
  16184. source: "./media/characters/memory/front-dress.svg",
  16185. extra: 3641 / 3545,
  16186. bottom: 0.03
  16187. }
  16188. },
  16189. },
  16190. [
  16191. {
  16192. name: "Micro",
  16193. height: math.unit(6, "inches"),
  16194. default: true
  16195. },
  16196. {
  16197. name: "Normal",
  16198. height: math.unit(5 + 4 / 12, "feet")
  16199. },
  16200. ]
  16201. ))
  16202. characterMakers.push(() => makeCharacter(
  16203. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16204. {
  16205. front: {
  16206. height: math.unit(4 + 11 / 12, "feet"),
  16207. weight: math.unit(100, "lb"),
  16208. name: "Front",
  16209. image: {
  16210. source: "./media/characters/luno/front.svg",
  16211. extra: 1535 / 1487,
  16212. bottom: 0.03
  16213. }
  16214. },
  16215. },
  16216. [
  16217. {
  16218. name: "Micro",
  16219. height: math.unit(3, "inches")
  16220. },
  16221. {
  16222. name: "Normal",
  16223. height: math.unit(4 + 11 / 12, "feet"),
  16224. default: true
  16225. },
  16226. {
  16227. name: "Macro",
  16228. height: math.unit(300, "feet")
  16229. },
  16230. {
  16231. name: "Megamacro",
  16232. height: math.unit(700, "miles")
  16233. },
  16234. ]
  16235. ))
  16236. characterMakers.push(() => makeCharacter(
  16237. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16238. {
  16239. front: {
  16240. height: math.unit(6 + 2 / 12, "feet"),
  16241. weight: math.unit(170, "lb"),
  16242. name: "Front",
  16243. image: {
  16244. source: "./media/characters/jamesy/front.svg",
  16245. extra: 440 / 382,
  16246. bottom: 0.005
  16247. }
  16248. },
  16249. },
  16250. [
  16251. {
  16252. name: "Micro",
  16253. height: math.unit(3, "inches")
  16254. },
  16255. {
  16256. name: "Normal",
  16257. height: math.unit(6 + 2 / 12, "feet"),
  16258. default: true
  16259. },
  16260. {
  16261. name: "Macro",
  16262. height: math.unit(300, "feet")
  16263. },
  16264. {
  16265. name: "Megamacro",
  16266. height: math.unit(700, "miles")
  16267. },
  16268. ]
  16269. ))
  16270. characterMakers.push(() => makeCharacter(
  16271. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16272. {
  16273. front: {
  16274. height: math.unit(6, "feet"),
  16275. weight: math.unit(160, "lb"),
  16276. name: "Front",
  16277. image: {
  16278. source: "./media/characters/mark/front.svg",
  16279. extra: 3300 / 3100,
  16280. bottom: 136.42 / 3440.47
  16281. }
  16282. },
  16283. },
  16284. [
  16285. {
  16286. name: "Macro",
  16287. height: math.unit(120, "meters")
  16288. },
  16289. {
  16290. name: "Bigger Macro",
  16291. height: math.unit(350, "meters")
  16292. },
  16293. {
  16294. name: "Megamacro",
  16295. height: math.unit(8, "km"),
  16296. default: true
  16297. },
  16298. {
  16299. name: "Continental",
  16300. height: math.unit(4550, "km")
  16301. },
  16302. {
  16303. name: "Planetary",
  16304. height: math.unit(65000, "km")
  16305. },
  16306. ]
  16307. ))
  16308. characterMakers.push(() => makeCharacter(
  16309. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16310. {
  16311. front: {
  16312. height: math.unit(6, "feet"),
  16313. weight: math.unit(400, "lb"),
  16314. name: "Front",
  16315. image: {
  16316. source: "./media/characters/mac/front.svg",
  16317. extra: 1048 / 987.7,
  16318. bottom: 60 / 1107.6,
  16319. }
  16320. },
  16321. },
  16322. [
  16323. {
  16324. name: "Macro",
  16325. height: math.unit(500, "feet"),
  16326. default: true
  16327. },
  16328. ]
  16329. ))
  16330. characterMakers.push(() => makeCharacter(
  16331. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16332. {
  16333. front: {
  16334. height: math.unit(5 + 2 / 12, "feet"),
  16335. weight: math.unit(190, "lb"),
  16336. name: "Front",
  16337. image: {
  16338. source: "./media/characters/bari/front.svg",
  16339. extra: 3156 / 2880,
  16340. bottom: 0.03
  16341. }
  16342. },
  16343. back: {
  16344. height: math.unit(5 + 2 / 12, "feet"),
  16345. weight: math.unit(190, "lb"),
  16346. name: "Back",
  16347. image: {
  16348. source: "./media/characters/bari/back.svg",
  16349. extra: 3260 / 2834,
  16350. bottom: 0.025
  16351. }
  16352. },
  16353. frontPlush: {
  16354. height: math.unit(5 + 2 / 12, "feet"),
  16355. weight: math.unit(190, "lb"),
  16356. name: "Front (Plush)",
  16357. image: {
  16358. source: "./media/characters/bari/front-plush.svg",
  16359. extra: 1112 / 1061,
  16360. bottom: 0.002
  16361. }
  16362. },
  16363. },
  16364. [
  16365. {
  16366. name: "Micro",
  16367. height: math.unit(3, "inches")
  16368. },
  16369. {
  16370. name: "Normal",
  16371. height: math.unit(5 + 2 / 12, "feet"),
  16372. default: true
  16373. },
  16374. {
  16375. name: "Macro",
  16376. height: math.unit(20, "feet")
  16377. },
  16378. ]
  16379. ))
  16380. characterMakers.push(() => makeCharacter(
  16381. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16382. {
  16383. front: {
  16384. height: math.unit(6 + 1 / 12, "feet"),
  16385. weight: math.unit(275, "lb"),
  16386. name: "Front",
  16387. image: {
  16388. source: "./media/characters/hunter-misha-raven/front.svg"
  16389. }
  16390. },
  16391. },
  16392. [
  16393. {
  16394. name: "Mortal",
  16395. height: math.unit(6 + 1 / 12, "feet")
  16396. },
  16397. {
  16398. name: "Divine",
  16399. height: math.unit(1.12134e34, "parsecs"),
  16400. default: true
  16401. },
  16402. ]
  16403. ))
  16404. characterMakers.push(() => makeCharacter(
  16405. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16406. {
  16407. front: {
  16408. height: math.unit(6 + 3 / 12, "feet"),
  16409. weight: math.unit(220, "lb"),
  16410. name: "Front",
  16411. image: {
  16412. source: "./media/characters/max-calore/front.svg",
  16413. extra: 1700 / 1648,
  16414. bottom: 0.01
  16415. }
  16416. },
  16417. back: {
  16418. height: math.unit(6 + 3 / 12, "feet"),
  16419. weight: math.unit(220, "lb"),
  16420. name: "Back",
  16421. image: {
  16422. source: "./media/characters/max-calore/back.svg",
  16423. extra: 1700 / 1648,
  16424. bottom: 0.01
  16425. }
  16426. },
  16427. },
  16428. [
  16429. {
  16430. name: "Normal",
  16431. height: math.unit(6 + 3 / 12, "feet"),
  16432. default: true
  16433. },
  16434. ]
  16435. ))
  16436. characterMakers.push(() => makeCharacter(
  16437. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16438. {
  16439. side: {
  16440. height: math.unit(2 + 8 / 12, "feet"),
  16441. weight: math.unit(99, "lb"),
  16442. name: "Side",
  16443. image: {
  16444. source: "./media/characters/aspen/side.svg",
  16445. extra: 152 / 138,
  16446. bottom: 0.032
  16447. }
  16448. },
  16449. },
  16450. [
  16451. {
  16452. name: "Normal",
  16453. height: math.unit(2 + 8 / 12, "feet"),
  16454. default: true
  16455. },
  16456. ]
  16457. ))
  16458. characterMakers.push(() => makeCharacter(
  16459. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16460. {
  16461. side: {
  16462. height: math.unit(3 + 2 / 12, "feet"),
  16463. weight: math.unit(224, "lb"),
  16464. name: "Side",
  16465. image: {
  16466. source: "./media/characters/sheila-feral-wolf/side.svg",
  16467. extra: 179 / 166,
  16468. bottom: 0.03
  16469. }
  16470. },
  16471. },
  16472. [
  16473. {
  16474. name: "Normal",
  16475. height: math.unit(3 + 2 / 12, "feet"),
  16476. default: true
  16477. },
  16478. ]
  16479. ))
  16480. characterMakers.push(() => makeCharacter(
  16481. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16482. {
  16483. side: {
  16484. height: math.unit(1 + 9 / 12, "feet"),
  16485. weight: math.unit(38, "lb"),
  16486. name: "Side",
  16487. image: {
  16488. source: "./media/characters/michelle/side.svg",
  16489. extra: 147 / 136.7,
  16490. bottom: 0.03
  16491. }
  16492. },
  16493. },
  16494. [
  16495. {
  16496. name: "Normal",
  16497. height: math.unit(1 + 9 / 12, "feet"),
  16498. default: true
  16499. },
  16500. ]
  16501. ))
  16502. characterMakers.push(() => makeCharacter(
  16503. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16504. {
  16505. front: {
  16506. height: math.unit(1 + 1 / 12, "feet"),
  16507. weight: math.unit(18, "lb"),
  16508. name: "Front",
  16509. image: {
  16510. source: "./media/characters/nino/front.svg"
  16511. }
  16512. },
  16513. },
  16514. [
  16515. {
  16516. name: "Normal",
  16517. height: math.unit(1 + 1 / 12, "feet"),
  16518. default: true
  16519. },
  16520. ]
  16521. ))
  16522. characterMakers.push(() => makeCharacter(
  16523. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16524. {
  16525. front: {
  16526. height: math.unit(1, "feet"),
  16527. weight: math.unit(16, "lb"),
  16528. name: "Front",
  16529. image: {
  16530. source: "./media/characters/viola/front.svg"
  16531. }
  16532. },
  16533. },
  16534. [
  16535. {
  16536. name: "Normal",
  16537. height: math.unit(1, "feet"),
  16538. default: true
  16539. },
  16540. ]
  16541. ))
  16542. characterMakers.push(() => makeCharacter(
  16543. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16544. {
  16545. front: {
  16546. height: math.unit(6 + 5 / 12, "feet"),
  16547. weight: math.unit(580, "lb"),
  16548. name: "Front",
  16549. image: {
  16550. source: "./media/characters/atlas/front.svg",
  16551. extra: 298.5 / 290,
  16552. bottom: 0.015
  16553. }
  16554. },
  16555. },
  16556. [
  16557. {
  16558. name: "Normal",
  16559. height: math.unit(6 + 5 / 12, "feet"),
  16560. default: true
  16561. },
  16562. ]
  16563. ))
  16564. characterMakers.push(() => makeCharacter(
  16565. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16566. {
  16567. side: {
  16568. height: math.unit(1 + 10 / 12, "feet"),
  16569. weight: math.unit(25, "lb"),
  16570. name: "Side",
  16571. image: {
  16572. source: "./media/characters/davy/side.svg",
  16573. extra: 200 / 170,
  16574. bottom: 0.01
  16575. }
  16576. },
  16577. },
  16578. [
  16579. {
  16580. name: "Normal",
  16581. height: math.unit(1 + 10 / 12, "feet"),
  16582. default: true
  16583. },
  16584. ]
  16585. ))
  16586. characterMakers.push(() => makeCharacter(
  16587. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16588. {
  16589. side: {
  16590. height: math.unit(4 + 8 / 12, "feet"),
  16591. weight: math.unit(166, "lb"),
  16592. name: "Side",
  16593. image: {
  16594. source: "./media/characters/fiona/side.svg",
  16595. extra: 232 / 220,
  16596. bottom: 0.03
  16597. }
  16598. },
  16599. },
  16600. [
  16601. {
  16602. name: "Normal",
  16603. height: math.unit(4 + 8 / 12, "feet"),
  16604. default: true
  16605. },
  16606. ]
  16607. ))
  16608. characterMakers.push(() => makeCharacter(
  16609. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16610. {
  16611. front: {
  16612. height: math.unit(2, "feet"),
  16613. weight: math.unit(62, "lb"),
  16614. name: "Front",
  16615. image: {
  16616. source: "./media/characters/lyla/front.svg",
  16617. bottom: 0.1
  16618. }
  16619. },
  16620. },
  16621. [
  16622. {
  16623. name: "Normal",
  16624. height: math.unit(2, "feet"),
  16625. default: true
  16626. },
  16627. ]
  16628. ))
  16629. characterMakers.push(() => makeCharacter(
  16630. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16631. {
  16632. side: {
  16633. height: math.unit(1.8, "feet"),
  16634. weight: math.unit(44, "lb"),
  16635. name: "Side",
  16636. image: {
  16637. source: "./media/characters/perseus/side.svg",
  16638. bottom: 0.21
  16639. }
  16640. },
  16641. },
  16642. [
  16643. {
  16644. name: "Normal",
  16645. height: math.unit(1.8, "feet"),
  16646. default: true
  16647. },
  16648. ]
  16649. ))
  16650. characterMakers.push(() => makeCharacter(
  16651. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16652. {
  16653. side: {
  16654. height: math.unit(4 + 2 / 12, "feet"),
  16655. weight: math.unit(20, "lb"),
  16656. name: "Side",
  16657. image: {
  16658. source: "./media/characters/remus/side.svg"
  16659. }
  16660. },
  16661. },
  16662. [
  16663. {
  16664. name: "Normal",
  16665. height: math.unit(4 + 2 / 12, "feet"),
  16666. default: true
  16667. },
  16668. ]
  16669. ))
  16670. characterMakers.push(() => makeCharacter(
  16671. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16672. {
  16673. front: {
  16674. height: math.unit(4 + 11 / 12, "feet"),
  16675. weight: math.unit(114, "lb"),
  16676. name: "Front",
  16677. image: {
  16678. source: "./media/characters/raf/front.svg",
  16679. bottom: 20.5 / 1863
  16680. }
  16681. },
  16682. side: {
  16683. height: math.unit(4 + 11 / 12, "feet"),
  16684. weight: math.unit(114, "lb"),
  16685. name: "Side",
  16686. image: {
  16687. source: "./media/characters/raf/side.svg",
  16688. bottom: 22 / 1822
  16689. }
  16690. },
  16691. },
  16692. [
  16693. {
  16694. name: "Micro",
  16695. height: math.unit(2, "inches")
  16696. },
  16697. {
  16698. name: "Normal",
  16699. height: math.unit(4 + 11 / 12, "feet"),
  16700. default: true
  16701. },
  16702. {
  16703. name: "Macro",
  16704. height: math.unit(70, "feet")
  16705. },
  16706. ]
  16707. ))
  16708. characterMakers.push(() => makeCharacter(
  16709. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16710. {
  16711. front: {
  16712. height: math.unit(1.5, "meters"),
  16713. weight: math.unit(68, "kg"),
  16714. name: "Front",
  16715. image: {
  16716. source: "./media/characters/liam-einarr/front.svg",
  16717. extra: 2822 / 2666
  16718. }
  16719. },
  16720. back: {
  16721. height: math.unit(1.5, "meters"),
  16722. weight: math.unit(68, "kg"),
  16723. name: "Back",
  16724. image: {
  16725. source: "./media/characters/liam-einarr/back.svg",
  16726. extra: 2822 / 2666,
  16727. bottom: 0.015
  16728. }
  16729. },
  16730. },
  16731. [
  16732. {
  16733. name: "Normal",
  16734. height: math.unit(1.5, "meters"),
  16735. default: true
  16736. },
  16737. {
  16738. name: "Macro",
  16739. height: math.unit(150, "meters")
  16740. },
  16741. {
  16742. name: "Megamacro",
  16743. height: math.unit(35, "km")
  16744. },
  16745. ]
  16746. ))
  16747. characterMakers.push(() => makeCharacter(
  16748. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16749. {
  16750. front: {
  16751. height: math.unit(6, "feet"),
  16752. weight: math.unit(75, "kg"),
  16753. name: "Front",
  16754. image: {
  16755. source: "./media/characters/linda/front.svg",
  16756. extra: 930 / 874,
  16757. bottom: 0.004
  16758. }
  16759. },
  16760. },
  16761. [
  16762. {
  16763. name: "Normal",
  16764. height: math.unit(6, "feet"),
  16765. default: true
  16766. },
  16767. ]
  16768. ))
  16769. characterMakers.push(() => makeCharacter(
  16770. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16771. {
  16772. front: {
  16773. height: math.unit(6 + 8 / 12, "feet"),
  16774. weight: math.unit(220, "lb"),
  16775. name: "Front",
  16776. image: {
  16777. source: "./media/characters/caylex/front.svg",
  16778. extra: 821 / 772,
  16779. bottom: 0.07
  16780. }
  16781. },
  16782. back: {
  16783. height: math.unit(6 + 8 / 12, "feet"),
  16784. weight: math.unit(220, "lb"),
  16785. name: "Back",
  16786. image: {
  16787. source: "./media/characters/caylex/back.svg",
  16788. extra: 821 / 772,
  16789. bottom: 0.022
  16790. }
  16791. },
  16792. hand: {
  16793. height: math.unit(1.25, "feet"),
  16794. name: "Hand",
  16795. image: {
  16796. source: "./media/characters/caylex/hand.svg"
  16797. }
  16798. },
  16799. foot: {
  16800. height: math.unit(1.6, "feet"),
  16801. name: "Foot",
  16802. image: {
  16803. source: "./media/characters/caylex/foot.svg"
  16804. }
  16805. },
  16806. armored: {
  16807. height: math.unit(6 + 8 / 12, "feet"),
  16808. weight: math.unit(250, "lb"),
  16809. name: "Armored",
  16810. image: {
  16811. source: "./media/characters/caylex/armored.svg",
  16812. extra: 1420 / 1310,
  16813. bottom: 0.045
  16814. }
  16815. },
  16816. },
  16817. [
  16818. {
  16819. name: "Normal",
  16820. height: math.unit(6 + 8 / 12, "feet"),
  16821. default: true
  16822. },
  16823. {
  16824. name: "Normal+",
  16825. height: math.unit(12, "feet")
  16826. },
  16827. ]
  16828. ))
  16829. characterMakers.push(() => makeCharacter(
  16830. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16831. {
  16832. front: {
  16833. height: math.unit(7 + 6 / 12, "feet"),
  16834. weight: math.unit(288, "lb"),
  16835. name: "Front",
  16836. image: {
  16837. source: "./media/characters/alana/front.svg",
  16838. extra: 679 / 653,
  16839. bottom: 22.5 / 701
  16840. }
  16841. },
  16842. },
  16843. [
  16844. {
  16845. name: "Normal",
  16846. height: math.unit(7 + 6 / 12, "feet")
  16847. },
  16848. {
  16849. name: "Large",
  16850. height: math.unit(50, "feet")
  16851. },
  16852. {
  16853. name: "Macro",
  16854. height: math.unit(100, "feet"),
  16855. default: true
  16856. },
  16857. {
  16858. name: "Macro+",
  16859. height: math.unit(200, "feet")
  16860. },
  16861. ]
  16862. ))
  16863. characterMakers.push(() => makeCharacter(
  16864. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16865. {
  16866. front: {
  16867. height: math.unit(6 + 1 / 12, "feet"),
  16868. weight: math.unit(210, "lb"),
  16869. name: "Front",
  16870. image: {
  16871. source: "./media/characters/hasani/front.svg",
  16872. extra: 244 / 232,
  16873. bottom: 0.01
  16874. }
  16875. },
  16876. back: {
  16877. height: math.unit(6 + 1 / 12, "feet"),
  16878. weight: math.unit(210, "lb"),
  16879. name: "Back",
  16880. image: {
  16881. source: "./media/characters/hasani/back.svg",
  16882. extra: 244 / 232,
  16883. bottom: 0.01
  16884. }
  16885. },
  16886. },
  16887. [
  16888. {
  16889. name: "Normal",
  16890. height: math.unit(6 + 1 / 12, "feet")
  16891. },
  16892. {
  16893. name: "Macro",
  16894. height: math.unit(175, "feet"),
  16895. default: true
  16896. },
  16897. ]
  16898. ))
  16899. characterMakers.push(() => makeCharacter(
  16900. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16901. {
  16902. front: {
  16903. height: math.unit(1.82, "meters"),
  16904. weight: math.unit(140, "lb"),
  16905. name: "Front",
  16906. image: {
  16907. source: "./media/characters/nita/front.svg",
  16908. extra: 2473 / 2363,
  16909. bottom: 0.01
  16910. }
  16911. },
  16912. },
  16913. [
  16914. {
  16915. name: "Normal",
  16916. height: math.unit(1.82, "m")
  16917. },
  16918. {
  16919. name: "Macro",
  16920. height: math.unit(300, "m")
  16921. },
  16922. {
  16923. name: "Mistake Canon",
  16924. height: math.unit(0.5, "miles"),
  16925. default: true
  16926. },
  16927. {
  16928. name: "Big Mistake",
  16929. height: math.unit(13, "miles")
  16930. },
  16931. {
  16932. name: "Playing God",
  16933. height: math.unit(2450, "miles")
  16934. },
  16935. ]
  16936. ))
  16937. characterMakers.push(() => makeCharacter(
  16938. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16939. {
  16940. front: {
  16941. height: math.unit(4, "feet"),
  16942. weight: math.unit(120, "lb"),
  16943. name: "Front",
  16944. image: {
  16945. source: "./media/characters/shiriko/front.svg",
  16946. extra: 195 / 188
  16947. }
  16948. },
  16949. },
  16950. [
  16951. {
  16952. name: "Normal",
  16953. height: math.unit(4, "feet"),
  16954. default: true
  16955. },
  16956. ]
  16957. ))
  16958. characterMakers.push(() => makeCharacter(
  16959. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16960. {
  16961. front: {
  16962. height: math.unit(6, "feet"),
  16963. name: "front",
  16964. image: {
  16965. source: "./media/characters/deja/front.svg",
  16966. extra: 926 / 840,
  16967. bottom: 0.07
  16968. }
  16969. },
  16970. },
  16971. [
  16972. {
  16973. name: "Planck Length",
  16974. height: math.unit(1.6e-35, "meters")
  16975. },
  16976. {
  16977. name: "Normal",
  16978. height: math.unit(30.48, "meters"),
  16979. default: true
  16980. },
  16981. {
  16982. name: "Universal",
  16983. height: math.unit(8.8e26, "meters")
  16984. },
  16985. ]
  16986. ))
  16987. characterMakers.push(() => makeCharacter(
  16988. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16989. {
  16990. side: {
  16991. height: math.unit(8, "feet"),
  16992. weight: math.unit(6300, "lb"),
  16993. name: "Side",
  16994. image: {
  16995. source: "./media/characters/anima/side.svg",
  16996. bottom: 0.035
  16997. }
  16998. },
  16999. },
  17000. [
  17001. {
  17002. name: "Normal",
  17003. height: math.unit(8, "feet"),
  17004. default: true
  17005. },
  17006. ]
  17007. ))
  17008. characterMakers.push(() => makeCharacter(
  17009. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17010. {
  17011. front: {
  17012. height: math.unit(8, "feet"),
  17013. weight: math.unit(350, "lb"),
  17014. name: "Front",
  17015. image: {
  17016. source: "./media/characters/bianca/front.svg",
  17017. extra: 234 / 225,
  17018. bottom: 0.03
  17019. }
  17020. },
  17021. },
  17022. [
  17023. {
  17024. name: "Normal",
  17025. height: math.unit(8, "feet"),
  17026. default: true
  17027. },
  17028. ]
  17029. ))
  17030. characterMakers.push(() => makeCharacter(
  17031. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17032. {
  17033. front: {
  17034. height: math.unit(6, "feet"),
  17035. weight: math.unit(150, "lb"),
  17036. name: "Front",
  17037. image: {
  17038. source: "./media/characters/adinia/front.svg",
  17039. extra: 1845 / 1672,
  17040. bottom: 0.02
  17041. }
  17042. },
  17043. back: {
  17044. height: math.unit(6, "feet"),
  17045. weight: math.unit(150, "lb"),
  17046. name: "Back",
  17047. image: {
  17048. source: "./media/characters/adinia/back.svg",
  17049. extra: 1845 / 1672,
  17050. bottom: 0.002
  17051. }
  17052. },
  17053. },
  17054. [
  17055. {
  17056. name: "Normal",
  17057. height: math.unit(11 + 5 / 12, "feet"),
  17058. default: true
  17059. },
  17060. ]
  17061. ))
  17062. characterMakers.push(() => makeCharacter(
  17063. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17064. {
  17065. front: {
  17066. height: math.unit(3, "meters"),
  17067. weight: math.unit(200, "kg"),
  17068. name: "Front",
  17069. image: {
  17070. source: "./media/characters/lykasa/front.svg",
  17071. extra: 1076 / 976,
  17072. bottom: 0.06
  17073. }
  17074. },
  17075. },
  17076. [
  17077. {
  17078. name: "Normal",
  17079. height: math.unit(3, "meters")
  17080. },
  17081. {
  17082. name: "Kaiju",
  17083. height: math.unit(120, "meters"),
  17084. default: true
  17085. },
  17086. {
  17087. name: "Mega Kaiju",
  17088. height: math.unit(240, "km")
  17089. },
  17090. {
  17091. name: "Giga Kaiju",
  17092. height: math.unit(400, "megameters")
  17093. },
  17094. {
  17095. name: "Tera Kaiju",
  17096. height: math.unit(800, "gigameters")
  17097. },
  17098. {
  17099. name: "Kaiju Dragon Goddess",
  17100. height: math.unit(26, "zettaparsecs")
  17101. },
  17102. ]
  17103. ))
  17104. characterMakers.push(() => makeCharacter(
  17105. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17106. {
  17107. side: {
  17108. height: math.unit(283 / 124 * 6, "feet"),
  17109. weight: math.unit(35000, "lb"),
  17110. name: "Side",
  17111. image: {
  17112. source: "./media/characters/malfaren/side.svg",
  17113. extra: 2500 / 1010,
  17114. bottom: 0.01
  17115. }
  17116. },
  17117. front: {
  17118. height: math.unit(22.36, "feet"),
  17119. weight: math.unit(35000, "lb"),
  17120. name: "Front",
  17121. image: {
  17122. source: "./media/characters/malfaren/front.svg",
  17123. extra: 1631 / 1476,
  17124. bottom: 0.01
  17125. }
  17126. },
  17127. maw: {
  17128. height: math.unit(6.9, "feet"),
  17129. name: "Maw",
  17130. image: {
  17131. source: "./media/characters/malfaren/maw.svg"
  17132. }
  17133. },
  17134. },
  17135. [
  17136. {
  17137. name: "Big",
  17138. height: math.unit(283 / 162 * 6, "feet"),
  17139. },
  17140. {
  17141. name: "Bigger",
  17142. height: math.unit(283 / 124 * 6, "feet")
  17143. },
  17144. {
  17145. name: "Massive",
  17146. height: math.unit(283 / 92 * 6, "feet"),
  17147. default: true
  17148. },
  17149. {
  17150. name: "👀💦",
  17151. height: math.unit(283 / 73 * 6, "feet"),
  17152. },
  17153. ]
  17154. ))
  17155. characterMakers.push(() => makeCharacter(
  17156. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17157. {
  17158. front: {
  17159. height: math.unit(1.7, "m"),
  17160. weight: math.unit(70, "kg"),
  17161. name: "Front",
  17162. image: {
  17163. source: "./media/characters/kernel/front.svg",
  17164. extra: 222 / 210,
  17165. bottom: 0.007
  17166. }
  17167. },
  17168. },
  17169. [
  17170. {
  17171. name: "Nano",
  17172. height: math.unit(17, "micrometers")
  17173. },
  17174. {
  17175. name: "Micro",
  17176. height: math.unit(1.7, "mm")
  17177. },
  17178. {
  17179. name: "Small",
  17180. height: math.unit(1.7, "cm")
  17181. },
  17182. {
  17183. name: "Normal",
  17184. height: math.unit(1.7, "m"),
  17185. default: true
  17186. },
  17187. ]
  17188. ))
  17189. characterMakers.push(() => makeCharacter(
  17190. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17191. {
  17192. front: {
  17193. height: math.unit(1.75, "meters"),
  17194. weight: math.unit(65, "kg"),
  17195. name: "Front",
  17196. image: {
  17197. source: "./media/characters/jayne-folest/front.svg",
  17198. extra: 2115 / 2007,
  17199. bottom: 0.02
  17200. }
  17201. },
  17202. back: {
  17203. height: math.unit(1.75, "meters"),
  17204. weight: math.unit(65, "kg"),
  17205. name: "Back",
  17206. image: {
  17207. source: "./media/characters/jayne-folest/back.svg",
  17208. extra: 2115 / 2007,
  17209. bottom: 0.005
  17210. }
  17211. },
  17212. frontClothed: {
  17213. height: math.unit(1.75, "meters"),
  17214. weight: math.unit(65, "kg"),
  17215. name: "Front (Clothed)",
  17216. image: {
  17217. source: "./media/characters/jayne-folest/front-clothed.svg",
  17218. extra: 2115 / 2007,
  17219. bottom: 0.035
  17220. }
  17221. },
  17222. hand: {
  17223. height: math.unit(1 / 1.260, "feet"),
  17224. name: "Hand",
  17225. image: {
  17226. source: "./media/characters/jayne-folest/hand.svg"
  17227. }
  17228. },
  17229. foot: {
  17230. height: math.unit(1 / 0.918, "feet"),
  17231. name: "Foot",
  17232. image: {
  17233. source: "./media/characters/jayne-folest/foot.svg"
  17234. }
  17235. },
  17236. },
  17237. [
  17238. {
  17239. name: "Micro",
  17240. height: math.unit(4, "cm")
  17241. },
  17242. {
  17243. name: "Normal",
  17244. height: math.unit(1.75, "meters")
  17245. },
  17246. {
  17247. name: "Macro",
  17248. height: math.unit(47.5, "meters"),
  17249. default: true
  17250. },
  17251. ]
  17252. ))
  17253. characterMakers.push(() => makeCharacter(
  17254. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17255. {
  17256. front: {
  17257. height: math.unit(180, "cm"),
  17258. weight: math.unit(70, "kg"),
  17259. name: "Front",
  17260. image: {
  17261. source: "./media/characters/algier/front.svg",
  17262. extra: 596 / 572,
  17263. bottom: 0.04
  17264. }
  17265. },
  17266. back: {
  17267. height: math.unit(180, "cm"),
  17268. weight: math.unit(70, "kg"),
  17269. name: "Back",
  17270. image: {
  17271. source: "./media/characters/algier/back.svg",
  17272. extra: 596 / 572,
  17273. bottom: 0.025
  17274. }
  17275. },
  17276. frontdressed: {
  17277. height: math.unit(180, "cm"),
  17278. weight: math.unit(150, "kg"),
  17279. name: "Front-dressed",
  17280. image: {
  17281. source: "./media/characters/algier/front-dressed.svg",
  17282. extra: 596 / 572,
  17283. bottom: 0.038
  17284. }
  17285. },
  17286. },
  17287. [
  17288. {
  17289. name: "Micro",
  17290. height: math.unit(5, "cm")
  17291. },
  17292. {
  17293. name: "Normal",
  17294. height: math.unit(180, "cm"),
  17295. default: true
  17296. },
  17297. {
  17298. name: "Macro",
  17299. height: math.unit(64, "m")
  17300. },
  17301. ]
  17302. ))
  17303. characterMakers.push(() => makeCharacter(
  17304. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17305. {
  17306. upright: {
  17307. height: math.unit(7, "feet"),
  17308. weight: math.unit(300, "lb"),
  17309. name: "Upright",
  17310. image: {
  17311. source: "./media/characters/pretzel/upright.svg",
  17312. extra: 534 / 522,
  17313. bottom: 0.065
  17314. }
  17315. },
  17316. sprawling: {
  17317. height: math.unit(3.75, "feet"),
  17318. weight: math.unit(300, "lb"),
  17319. name: "Sprawling",
  17320. image: {
  17321. source: "./media/characters/pretzel/sprawling.svg",
  17322. extra: 314 / 281,
  17323. bottom: 0.1
  17324. }
  17325. },
  17326. tongue: {
  17327. height: math.unit(2, "feet"),
  17328. name: "Tongue",
  17329. image: {
  17330. source: "./media/characters/pretzel/tongue.svg"
  17331. }
  17332. },
  17333. },
  17334. [
  17335. {
  17336. name: "Normal",
  17337. height: math.unit(7, "feet"),
  17338. default: true
  17339. },
  17340. {
  17341. name: "Oversized",
  17342. height: math.unit(15, "feet")
  17343. },
  17344. {
  17345. name: "Huge",
  17346. height: math.unit(30, "feet")
  17347. },
  17348. {
  17349. name: "Macro",
  17350. height: math.unit(250, "feet")
  17351. },
  17352. ]
  17353. ))
  17354. characterMakers.push(() => makeCharacter(
  17355. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17356. {
  17357. sideFront: {
  17358. height: math.unit(5 + 2 / 12, "feet"),
  17359. weight: math.unit(120, "lb"),
  17360. name: "Front Side",
  17361. image: {
  17362. source: "./media/characters/roxi/side-front.svg",
  17363. extra: 2924 / 2717,
  17364. bottom: 0.08
  17365. }
  17366. },
  17367. sideBack: {
  17368. height: math.unit(5 + 2 / 12, "feet"),
  17369. weight: math.unit(120, "lb"),
  17370. name: "Back Side",
  17371. image: {
  17372. source: "./media/characters/roxi/side-back.svg",
  17373. extra: 2904 / 2693,
  17374. bottom: 0.06
  17375. }
  17376. },
  17377. front: {
  17378. height: math.unit(5 + 2 / 12, "feet"),
  17379. weight: math.unit(120, "lb"),
  17380. name: "Front",
  17381. image: {
  17382. source: "./media/characters/roxi/front.svg",
  17383. extra: 2028 / 1907,
  17384. bottom: 0.01
  17385. }
  17386. },
  17387. frontAlt: {
  17388. height: math.unit(5 + 2 / 12, "feet"),
  17389. weight: math.unit(120, "lb"),
  17390. name: "Front (Alt)",
  17391. image: {
  17392. source: "./media/characters/roxi/front-alt.svg",
  17393. extra: 1828 / 1798,
  17394. bottom: 0.01
  17395. }
  17396. },
  17397. sitting: {
  17398. height: math.unit(2.8, "feet"),
  17399. weight: math.unit(120, "lb"),
  17400. name: "Sitting",
  17401. image: {
  17402. source: "./media/characters/roxi/sitting.svg",
  17403. extra: 2660 / 2462,
  17404. bottom: 0.1
  17405. }
  17406. },
  17407. },
  17408. [
  17409. {
  17410. name: "Normal",
  17411. height: math.unit(5 + 2 / 12, "feet"),
  17412. default: true
  17413. },
  17414. ]
  17415. ))
  17416. characterMakers.push(() => makeCharacter(
  17417. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17418. {
  17419. side: {
  17420. height: math.unit(55, "feet"),
  17421. weight: math.unit(153, "tons"),
  17422. name: "Side",
  17423. image: {
  17424. source: "./media/characters/shadow/side.svg",
  17425. extra: 701 / 628,
  17426. bottom: 0.02
  17427. }
  17428. },
  17429. flying: {
  17430. height: math.unit(145, "feet"),
  17431. weight: math.unit(153, "tons"),
  17432. name: "Flying",
  17433. image: {
  17434. source: "./media/characters/shadow/flying.svg"
  17435. }
  17436. },
  17437. },
  17438. [
  17439. {
  17440. name: "Normal",
  17441. height: math.unit(55, "feet"),
  17442. default: true
  17443. },
  17444. ]
  17445. ))
  17446. characterMakers.push(() => makeCharacter(
  17447. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17448. {
  17449. front: {
  17450. height: math.unit(6, "feet"),
  17451. weight: math.unit(200, "lb"),
  17452. name: "Front",
  17453. image: {
  17454. source: "./media/characters/marcie/front.svg",
  17455. extra: 960 / 876,
  17456. bottom: 58 / 1017.87
  17457. }
  17458. },
  17459. },
  17460. [
  17461. {
  17462. name: "Macro",
  17463. height: math.unit(1, "mile"),
  17464. default: true
  17465. },
  17466. ]
  17467. ))
  17468. characterMakers.push(() => makeCharacter(
  17469. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17470. {
  17471. front: {
  17472. height: math.unit(7, "feet"),
  17473. weight: math.unit(200, "lb"),
  17474. name: "Front",
  17475. image: {
  17476. source: "./media/characters/kachina/front.svg",
  17477. extra: 1290.68 / 1119,
  17478. bottom: 36.5 / 1327.18
  17479. }
  17480. },
  17481. },
  17482. [
  17483. {
  17484. name: "Normal",
  17485. height: math.unit(7, "feet"),
  17486. default: true
  17487. },
  17488. ]
  17489. ))
  17490. characterMakers.push(() => makeCharacter(
  17491. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17492. {
  17493. looking: {
  17494. height: math.unit(2, "meters"),
  17495. weight: math.unit(300, "kg"),
  17496. name: "Looking",
  17497. image: {
  17498. source: "./media/characters/kash/looking.svg",
  17499. extra: 474 / 344,
  17500. bottom: 0.03
  17501. }
  17502. },
  17503. side: {
  17504. height: math.unit(2, "meters"),
  17505. weight: math.unit(300, "kg"),
  17506. name: "Side",
  17507. image: {
  17508. source: "./media/characters/kash/side.svg",
  17509. extra: 302 / 251,
  17510. bottom: 0.03
  17511. }
  17512. },
  17513. front: {
  17514. height: math.unit(2, "meters"),
  17515. weight: math.unit(300, "kg"),
  17516. name: "Front",
  17517. image: {
  17518. source: "./media/characters/kash/front.svg",
  17519. extra: 495 / 360,
  17520. bottom: 0.015
  17521. }
  17522. },
  17523. },
  17524. [
  17525. {
  17526. name: "Normal",
  17527. height: math.unit(2, "meters"),
  17528. default: true
  17529. },
  17530. {
  17531. name: "Big",
  17532. height: math.unit(3, "meters")
  17533. },
  17534. {
  17535. name: "Large",
  17536. height: math.unit(5, "meters")
  17537. },
  17538. ]
  17539. ))
  17540. characterMakers.push(() => makeCharacter(
  17541. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17542. {
  17543. feeding: {
  17544. height: math.unit(6.7, "feet"),
  17545. weight: math.unit(350, "lb"),
  17546. name: "Feeding",
  17547. image: {
  17548. source: "./media/characters/lalim/feeding.svg",
  17549. }
  17550. },
  17551. },
  17552. [
  17553. {
  17554. name: "Normal",
  17555. height: math.unit(6.7, "feet"),
  17556. default: true
  17557. },
  17558. ]
  17559. ))
  17560. characterMakers.push(() => makeCharacter(
  17561. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17562. {
  17563. front: {
  17564. height: math.unit(9.5, "feet"),
  17565. weight: math.unit(600, "lb"),
  17566. name: "Front",
  17567. image: {
  17568. source: "./media/characters/de'vout/front.svg",
  17569. extra: 1443 / 1328,
  17570. bottom: 0.025
  17571. }
  17572. },
  17573. back: {
  17574. height: math.unit(9.5, "feet"),
  17575. weight: math.unit(600, "lb"),
  17576. name: "Back",
  17577. image: {
  17578. source: "./media/characters/de'vout/back.svg",
  17579. extra: 1443 / 1328
  17580. }
  17581. },
  17582. frontDressed: {
  17583. height: math.unit(9.5, "feet"),
  17584. weight: math.unit(600, "lb"),
  17585. name: "Front (Dressed",
  17586. image: {
  17587. source: "./media/characters/de'vout/front-dressed.svg",
  17588. extra: 1443 / 1328,
  17589. bottom: 0.025
  17590. }
  17591. },
  17592. backDressed: {
  17593. height: math.unit(9.5, "feet"),
  17594. weight: math.unit(600, "lb"),
  17595. name: "Back (Dressed",
  17596. image: {
  17597. source: "./media/characters/de'vout/back-dressed.svg",
  17598. extra: 1443 / 1328
  17599. }
  17600. },
  17601. },
  17602. [
  17603. {
  17604. name: "Normal",
  17605. height: math.unit(9.5, "feet"),
  17606. default: true
  17607. },
  17608. ]
  17609. ))
  17610. characterMakers.push(() => makeCharacter(
  17611. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17612. {
  17613. front: {
  17614. height: math.unit(8, "feet"),
  17615. weight: math.unit(225, "lb"),
  17616. name: "Front",
  17617. image: {
  17618. source: "./media/characters/talana/front.svg",
  17619. extra: 1410 / 1300,
  17620. bottom: 0.015
  17621. }
  17622. },
  17623. frontDressed: {
  17624. height: math.unit(8, "feet"),
  17625. weight: math.unit(225, "lb"),
  17626. name: "Front (Dressed",
  17627. image: {
  17628. source: "./media/characters/talana/front-dressed.svg",
  17629. extra: 1410 / 1300,
  17630. bottom: 0.015
  17631. }
  17632. },
  17633. },
  17634. [
  17635. {
  17636. name: "Normal",
  17637. height: math.unit(8, "feet"),
  17638. default: true
  17639. },
  17640. ]
  17641. ))
  17642. characterMakers.push(() => makeCharacter(
  17643. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17644. {
  17645. side: {
  17646. height: math.unit(7.2, "feet"),
  17647. weight: math.unit(150, "lb"),
  17648. name: "Side",
  17649. image: {
  17650. source: "./media/characters/xeauvok/side.svg",
  17651. extra: 1975 / 1523,
  17652. bottom: 0.07
  17653. }
  17654. },
  17655. },
  17656. [
  17657. {
  17658. name: "Normal",
  17659. height: math.unit(7.2, "feet"),
  17660. default: true
  17661. },
  17662. ]
  17663. ))
  17664. characterMakers.push(() => makeCharacter(
  17665. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17666. {
  17667. side: {
  17668. height: math.unit(10, "feet"),
  17669. weight: math.unit(900, "kg"),
  17670. name: "Side",
  17671. image: {
  17672. source: "./media/characters/zara/side.svg",
  17673. extra: 504 / 498
  17674. }
  17675. },
  17676. },
  17677. [
  17678. {
  17679. name: "Normal",
  17680. height: math.unit(10, "feet"),
  17681. default: true
  17682. },
  17683. ]
  17684. ))
  17685. characterMakers.push(() => makeCharacter(
  17686. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17687. {
  17688. side: {
  17689. height: math.unit(6, "feet"),
  17690. weight: math.unit(150, "lb"),
  17691. name: "Side",
  17692. image: {
  17693. source: "./media/characters/richard-dragon/side.svg",
  17694. extra: 845 / 340,
  17695. bottom: 0.017
  17696. }
  17697. },
  17698. maw: {
  17699. height: math.unit(2.97, "feet"),
  17700. name: "Maw",
  17701. image: {
  17702. source: "./media/characters/richard-dragon/maw.svg"
  17703. }
  17704. },
  17705. },
  17706. [
  17707. ]
  17708. ))
  17709. characterMakers.push(() => makeCharacter(
  17710. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17711. {
  17712. front: {
  17713. height: math.unit(4, "feet"),
  17714. weight: math.unit(100, "lb"),
  17715. name: "Front",
  17716. image: {
  17717. source: "./media/characters/richard-smeargle/front.svg",
  17718. extra: 2952 / 2820,
  17719. bottom: 0.028
  17720. }
  17721. },
  17722. },
  17723. [
  17724. {
  17725. name: "Normal",
  17726. height: math.unit(4, "feet"),
  17727. default: true
  17728. },
  17729. {
  17730. name: "Dynamax",
  17731. height: math.unit(20, "meters")
  17732. },
  17733. ]
  17734. ))
  17735. characterMakers.push(() => makeCharacter(
  17736. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17737. {
  17738. front: {
  17739. height: math.unit(6, "feet"),
  17740. weight: math.unit(110, "lb"),
  17741. name: "Front",
  17742. image: {
  17743. source: "./media/characters/klay/front.svg",
  17744. extra: 962 / 883,
  17745. bottom: 0.04
  17746. }
  17747. },
  17748. back: {
  17749. height: math.unit(6, "feet"),
  17750. weight: math.unit(110, "lb"),
  17751. name: "Back",
  17752. image: {
  17753. source: "./media/characters/klay/back.svg",
  17754. extra: 962 / 883
  17755. }
  17756. },
  17757. beans: {
  17758. height: math.unit(1.15, "feet"),
  17759. name: "Beans",
  17760. image: {
  17761. source: "./media/characters/klay/beans.svg"
  17762. }
  17763. },
  17764. },
  17765. [
  17766. {
  17767. name: "Micro",
  17768. height: math.unit(6, "inches")
  17769. },
  17770. {
  17771. name: "Mini",
  17772. height: math.unit(3, "feet")
  17773. },
  17774. {
  17775. name: "Normal",
  17776. height: math.unit(6, "feet"),
  17777. default: true
  17778. },
  17779. {
  17780. name: "Big",
  17781. height: math.unit(25, "feet")
  17782. },
  17783. {
  17784. name: "Macro",
  17785. height: math.unit(100, "feet")
  17786. },
  17787. {
  17788. name: "Megamacro",
  17789. height: math.unit(400, "feet")
  17790. },
  17791. ]
  17792. ))
  17793. characterMakers.push(() => makeCharacter(
  17794. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17795. {
  17796. front: {
  17797. height: math.unit(6, "feet"),
  17798. weight: math.unit(160, "lb"),
  17799. name: "Front",
  17800. image: {
  17801. source: "./media/characters/marcus/front.svg",
  17802. extra: 734 / 676,
  17803. bottom: 0.03
  17804. }
  17805. },
  17806. },
  17807. [
  17808. {
  17809. name: "Little",
  17810. height: math.unit(6, "feet")
  17811. },
  17812. {
  17813. name: "Normal",
  17814. height: math.unit(110, "feet"),
  17815. default: true
  17816. },
  17817. {
  17818. name: "Macro",
  17819. height: math.unit(250, "feet")
  17820. },
  17821. {
  17822. name: "Megamacro",
  17823. height: math.unit(1000, "feet")
  17824. },
  17825. ]
  17826. ))
  17827. characterMakers.push(() => makeCharacter(
  17828. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17829. {
  17830. front: {
  17831. height: math.unit(7, "feet"),
  17832. weight: math.unit(275, "lb"),
  17833. name: "Front",
  17834. image: {
  17835. source: "./media/characters/claude-delroute/front.svg",
  17836. extra: 230 / 214,
  17837. bottom: 0.007
  17838. }
  17839. },
  17840. side: {
  17841. height: math.unit(7, "feet"),
  17842. weight: math.unit(275, "lb"),
  17843. name: "Side",
  17844. image: {
  17845. source: "./media/characters/claude-delroute/side.svg",
  17846. extra: 222 / 214,
  17847. bottom: 0.01
  17848. }
  17849. },
  17850. back: {
  17851. height: math.unit(7, "feet"),
  17852. weight: math.unit(275, "lb"),
  17853. name: "Back",
  17854. image: {
  17855. source: "./media/characters/claude-delroute/back.svg",
  17856. extra: 230 / 214,
  17857. bottom: 0.015
  17858. }
  17859. },
  17860. maw: {
  17861. height: math.unit(0.6407, "meters"),
  17862. name: "Maw",
  17863. image: {
  17864. source: "./media/characters/claude-delroute/maw.svg"
  17865. }
  17866. },
  17867. },
  17868. [
  17869. {
  17870. name: "Normal",
  17871. height: math.unit(7, "feet"),
  17872. default: true
  17873. },
  17874. {
  17875. name: "Lorge",
  17876. height: math.unit(20, "feet")
  17877. },
  17878. ]
  17879. ))
  17880. characterMakers.push(() => makeCharacter(
  17881. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17882. {
  17883. front: {
  17884. height: math.unit(8 + 4 / 12, "feet"),
  17885. weight: math.unit(600, "lb"),
  17886. name: "Front",
  17887. image: {
  17888. source: "./media/characters/dragonien/front.svg",
  17889. extra: 100 / 94,
  17890. bottom: 3.3 / 103.3445
  17891. }
  17892. },
  17893. back: {
  17894. height: math.unit(8 + 4 / 12, "feet"),
  17895. weight: math.unit(600, "lb"),
  17896. name: "Back",
  17897. image: {
  17898. source: "./media/characters/dragonien/back.svg",
  17899. extra: 776 / 746,
  17900. bottom: 6.4 / 782.0616
  17901. }
  17902. },
  17903. foot: {
  17904. height: math.unit(1.54, "feet"),
  17905. name: "Foot",
  17906. image: {
  17907. source: "./media/characters/dragonien/foot.svg",
  17908. }
  17909. },
  17910. },
  17911. [
  17912. {
  17913. name: "Normal",
  17914. height: math.unit(8 + 4 / 12, "feet"),
  17915. default: true
  17916. },
  17917. {
  17918. name: "Macro",
  17919. height: math.unit(200, "feet")
  17920. },
  17921. {
  17922. name: "Megamacro",
  17923. height: math.unit(1, "mile")
  17924. },
  17925. {
  17926. name: "Gigamacro",
  17927. height: math.unit(1000, "miles")
  17928. },
  17929. ]
  17930. ))
  17931. characterMakers.push(() => makeCharacter(
  17932. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17933. {
  17934. front: {
  17935. height: math.unit(5 + 2 / 12, "feet"),
  17936. weight: math.unit(110, "lb"),
  17937. name: "Front",
  17938. image: {
  17939. source: "./media/characters/desta/front.svg",
  17940. extra: 767 / 726,
  17941. bottom: 11.7 / 779
  17942. }
  17943. },
  17944. back: {
  17945. height: math.unit(5 + 2 / 12, "feet"),
  17946. weight: math.unit(110, "lb"),
  17947. name: "Back",
  17948. image: {
  17949. source: "./media/characters/desta/back.svg",
  17950. extra: 777 / 728,
  17951. bottom: 6 / 784
  17952. }
  17953. },
  17954. frontAlt: {
  17955. height: math.unit(5 + 2 / 12, "feet"),
  17956. weight: math.unit(110, "lb"),
  17957. name: "Front",
  17958. image: {
  17959. source: "./media/characters/desta/front-alt.svg",
  17960. extra: 1482 / 1417
  17961. }
  17962. },
  17963. side: {
  17964. height: math.unit(5 + 2 / 12, "feet"),
  17965. weight: math.unit(110, "lb"),
  17966. name: "Side",
  17967. image: {
  17968. source: "./media/characters/desta/side.svg",
  17969. extra: 2579 / 2491,
  17970. bottom: 0.053
  17971. }
  17972. },
  17973. },
  17974. [
  17975. {
  17976. name: "Micro",
  17977. height: math.unit(6, "inches")
  17978. },
  17979. {
  17980. name: "Normal",
  17981. height: math.unit(5 + 2 / 12, "feet"),
  17982. default: true
  17983. },
  17984. {
  17985. name: "Macro",
  17986. height: math.unit(62, "feet")
  17987. },
  17988. {
  17989. name: "Megamacro",
  17990. height: math.unit(1800, "feet")
  17991. },
  17992. ]
  17993. ))
  17994. characterMakers.push(() => makeCharacter(
  17995. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17996. {
  17997. front: {
  17998. height: math.unit(10, "feet"),
  17999. weight: math.unit(700, "lb"),
  18000. name: "Front",
  18001. image: {
  18002. source: "./media/characters/storm-alystar/front.svg",
  18003. extra: 2112 / 1898,
  18004. bottom: 0.034
  18005. }
  18006. },
  18007. },
  18008. [
  18009. {
  18010. name: "Micro",
  18011. height: math.unit(3.5, "inches")
  18012. },
  18013. {
  18014. name: "Normal",
  18015. height: math.unit(10, "feet"),
  18016. default: true
  18017. },
  18018. {
  18019. name: "Macro",
  18020. height: math.unit(400, "feet")
  18021. },
  18022. {
  18023. name: "Deific",
  18024. height: math.unit(60, "miles")
  18025. },
  18026. ]
  18027. ))
  18028. characterMakers.push(() => makeCharacter(
  18029. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18030. {
  18031. front: {
  18032. height: math.unit(2.35, "meters"),
  18033. weight: math.unit(119, "kg"),
  18034. name: "Front",
  18035. image: {
  18036. source: "./media/characters/ilia/front.svg",
  18037. extra: 1285 / 1255,
  18038. bottom: 0.06
  18039. }
  18040. },
  18041. },
  18042. [
  18043. {
  18044. name: "Normal",
  18045. height: math.unit(2.35, "meters")
  18046. },
  18047. {
  18048. name: "Macro",
  18049. height: math.unit(140, "meters"),
  18050. default: true
  18051. },
  18052. {
  18053. name: "Megamacro",
  18054. height: math.unit(100, "miles")
  18055. },
  18056. ]
  18057. ))
  18058. characterMakers.push(() => makeCharacter(
  18059. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18060. {
  18061. front: {
  18062. height: math.unit(6 + 5 / 12, "feet"),
  18063. weight: math.unit(190, "lb"),
  18064. name: "Front",
  18065. image: {
  18066. source: "./media/characters/kingdead/front.svg",
  18067. extra: 1228 / 1177
  18068. }
  18069. },
  18070. },
  18071. [
  18072. {
  18073. name: "Micro",
  18074. height: math.unit(7, "inches")
  18075. },
  18076. {
  18077. name: "Normal",
  18078. height: math.unit(6 + 5 / 12, "feet")
  18079. },
  18080. {
  18081. name: "Macro",
  18082. height: math.unit(150, "feet"),
  18083. default: true
  18084. },
  18085. {
  18086. name: "Megamacro",
  18087. height: math.unit(200, "miles")
  18088. },
  18089. ]
  18090. ))
  18091. characterMakers.push(() => makeCharacter(
  18092. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18093. {
  18094. front: {
  18095. height: math.unit(8, "feet"),
  18096. weight: math.unit(600, "lb"),
  18097. name: "Front",
  18098. image: {
  18099. source: "./media/characters/kyrehx/front.svg",
  18100. extra: 1195 / 1095,
  18101. bottom: 0.034
  18102. }
  18103. },
  18104. },
  18105. [
  18106. {
  18107. name: "Micro",
  18108. height: math.unit(2, "inches")
  18109. },
  18110. {
  18111. name: "Normal",
  18112. height: math.unit(8, "feet"),
  18113. default: true
  18114. },
  18115. {
  18116. name: "Macro",
  18117. height: math.unit(255, "feet")
  18118. },
  18119. ]
  18120. ))
  18121. characterMakers.push(() => makeCharacter(
  18122. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18123. {
  18124. front: {
  18125. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18126. weight: math.unit(184, "lb"),
  18127. name: "Front",
  18128. image: {
  18129. source: "./media/characters/xang/front.svg",
  18130. extra: 845 / 755
  18131. }
  18132. },
  18133. },
  18134. [
  18135. {
  18136. name: "Normal",
  18137. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18138. default: true
  18139. },
  18140. {
  18141. name: "Macro",
  18142. height: math.unit(0.935 * 146, "feet")
  18143. },
  18144. {
  18145. name: "Megamacro",
  18146. height: math.unit(0.935 * 3, "miles")
  18147. },
  18148. ]
  18149. ))
  18150. characterMakers.push(() => makeCharacter(
  18151. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18152. {
  18153. frontDressed: {
  18154. height: math.unit(5 + 7 / 12, "feet"),
  18155. weight: math.unit(140, "lb"),
  18156. name: "Front (Dressed)",
  18157. image: {
  18158. source: "./media/characters/doc-weardno/front-dressed.svg",
  18159. extra: 263 / 234
  18160. }
  18161. },
  18162. backDressed: {
  18163. height: math.unit(5 + 7 / 12, "feet"),
  18164. weight: math.unit(140, "lb"),
  18165. name: "Back (Dressed)",
  18166. image: {
  18167. source: "./media/characters/doc-weardno/back-dressed.svg",
  18168. extra: 266 / 238
  18169. }
  18170. },
  18171. front: {
  18172. height: math.unit(5 + 7 / 12, "feet"),
  18173. weight: math.unit(140, "lb"),
  18174. name: "Front",
  18175. image: {
  18176. source: "./media/characters/doc-weardno/front.svg",
  18177. extra: 254 / 233
  18178. }
  18179. },
  18180. },
  18181. [
  18182. {
  18183. name: "Micro",
  18184. height: math.unit(3, "inches")
  18185. },
  18186. {
  18187. name: "Normal",
  18188. height: math.unit(5 + 7 / 12, "feet"),
  18189. default: true
  18190. },
  18191. {
  18192. name: "Macro",
  18193. height: math.unit(25, "feet")
  18194. },
  18195. {
  18196. name: "Megamacro",
  18197. height: math.unit(2, "miles")
  18198. },
  18199. ]
  18200. ))
  18201. characterMakers.push(() => makeCharacter(
  18202. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18203. {
  18204. front: {
  18205. height: math.unit(6 + 2 / 12, "feet"),
  18206. weight: math.unit(153, "lb"),
  18207. name: "Front",
  18208. image: {
  18209. source: "./media/characters/seth-whilst/front.svg",
  18210. bottom: 0.07
  18211. }
  18212. },
  18213. },
  18214. [
  18215. {
  18216. name: "Micro",
  18217. height: math.unit(5, "inches")
  18218. },
  18219. {
  18220. name: "Normal",
  18221. height: math.unit(6 + 2 / 12, "feet"),
  18222. default: true
  18223. },
  18224. ]
  18225. ))
  18226. characterMakers.push(() => makeCharacter(
  18227. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18228. {
  18229. front: {
  18230. height: math.unit(3, "inches"),
  18231. weight: math.unit(8, "grams"),
  18232. name: "Front",
  18233. image: {
  18234. source: "./media/characters/pocket-jabari/front.svg",
  18235. extra: 1024 / 974,
  18236. bottom: 0.039
  18237. }
  18238. },
  18239. },
  18240. [
  18241. {
  18242. name: "Minimicro",
  18243. height: math.unit(8, "mm")
  18244. },
  18245. {
  18246. name: "Micro",
  18247. height: math.unit(3, "inches"),
  18248. default: true
  18249. },
  18250. {
  18251. name: "Normal",
  18252. height: math.unit(3, "feet")
  18253. },
  18254. ]
  18255. ))
  18256. characterMakers.push(() => makeCharacter(
  18257. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18258. {
  18259. front: {
  18260. height: math.unit(15, "feet"),
  18261. weight: math.unit(3280, "lb"),
  18262. name: "Front",
  18263. image: {
  18264. source: "./media/characters/sapphy/front.svg",
  18265. extra: 671 / 577,
  18266. bottom: 0.085
  18267. }
  18268. },
  18269. back: {
  18270. height: math.unit(15, "feet"),
  18271. weight: math.unit(3280, "lb"),
  18272. name: "Back",
  18273. image: {
  18274. source: "./media/characters/sapphy/back.svg",
  18275. extra: 631 / 607,
  18276. bottom: 0.045
  18277. }
  18278. },
  18279. },
  18280. [
  18281. {
  18282. name: "Normal",
  18283. height: math.unit(15, "feet")
  18284. },
  18285. {
  18286. name: "Casual Macro",
  18287. height: math.unit(120, "feet")
  18288. },
  18289. {
  18290. name: "Macro",
  18291. height: math.unit(2150, "feet"),
  18292. default: true
  18293. },
  18294. {
  18295. name: "Megamacro",
  18296. height: math.unit(8, "miles")
  18297. },
  18298. {
  18299. name: "Galaxy Mom",
  18300. height: math.unit(6, "megalightyears")
  18301. },
  18302. ]
  18303. ))
  18304. characterMakers.push(() => makeCharacter(
  18305. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18306. {
  18307. front: {
  18308. height: math.unit(6, "feet"),
  18309. weight: math.unit(170, "lb"),
  18310. name: "Front",
  18311. image: {
  18312. source: "./media/characters/kiro/front.svg",
  18313. extra: 1064 / 1012,
  18314. bottom: 0.052
  18315. }
  18316. },
  18317. },
  18318. [
  18319. {
  18320. name: "Micro",
  18321. height: math.unit(6, "inches")
  18322. },
  18323. {
  18324. name: "Normal",
  18325. height: math.unit(6, "feet"),
  18326. default: true
  18327. },
  18328. {
  18329. name: "Macro",
  18330. height: math.unit(72, "feet")
  18331. },
  18332. ]
  18333. ))
  18334. characterMakers.push(() => makeCharacter(
  18335. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18336. {
  18337. front: {
  18338. height: math.unit(5 + 9 / 12, "feet"),
  18339. weight: math.unit(175, "lb"),
  18340. name: "Front",
  18341. image: {
  18342. source: "./media/characters/irishfox/front.svg",
  18343. extra: 1912 / 1680,
  18344. bottom: 0.02
  18345. }
  18346. },
  18347. },
  18348. [
  18349. {
  18350. name: "Nano",
  18351. height: math.unit(1, "mm")
  18352. },
  18353. {
  18354. name: "Micro",
  18355. height: math.unit(2, "inches")
  18356. },
  18357. {
  18358. name: "Normal",
  18359. height: math.unit(5 + 9 / 12, "feet"),
  18360. default: true
  18361. },
  18362. {
  18363. name: "Macro",
  18364. height: math.unit(45, "feet")
  18365. },
  18366. ]
  18367. ))
  18368. characterMakers.push(() => makeCharacter(
  18369. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18370. {
  18371. front: {
  18372. height: math.unit(6 + 1 / 12, "feet"),
  18373. weight: math.unit(75, "lb"),
  18374. name: "Front",
  18375. image: {
  18376. source: "./media/characters/aronai-sieyes/front.svg",
  18377. extra: 1556 / 1480,
  18378. bottom: 0.015
  18379. }
  18380. },
  18381. side: {
  18382. height: math.unit(6 + 1 / 12, "feet"),
  18383. weight: math.unit(75, "lb"),
  18384. name: "Side",
  18385. image: {
  18386. source: "./media/characters/aronai-sieyes/side.svg",
  18387. extra: 1433 / 1390,
  18388. bottom: 0.0393
  18389. }
  18390. },
  18391. back: {
  18392. height: math.unit(6 + 1 / 12, "feet"),
  18393. weight: math.unit(75, "lb"),
  18394. name: "Back",
  18395. image: {
  18396. source: "./media/characters/aronai-sieyes/back.svg",
  18397. extra: 1544 / 1494,
  18398. bottom: 0.02
  18399. }
  18400. },
  18401. frontClothed: {
  18402. height: math.unit(6 + 1 / 12, "feet"),
  18403. weight: math.unit(75, "lb"),
  18404. name: "Front (Clothed)",
  18405. image: {
  18406. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18407. extra: 1582 / 1527
  18408. }
  18409. },
  18410. feral: {
  18411. height: math.unit(18, "feet"),
  18412. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18413. name: "Feral",
  18414. image: {
  18415. source: "./media/characters/aronai-sieyes/feral.svg",
  18416. extra: 1530 / 1240,
  18417. bottom: 0.035
  18418. }
  18419. },
  18420. },
  18421. [
  18422. {
  18423. name: "Micro",
  18424. height: math.unit(2, "inches")
  18425. },
  18426. {
  18427. name: "Normal",
  18428. height: math.unit(6 + 1 / 12, "feet"),
  18429. default: true
  18430. }
  18431. ]
  18432. ))
  18433. characterMakers.push(() => makeCharacter(
  18434. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18435. {
  18436. front: {
  18437. height: math.unit(12, "feet"),
  18438. weight: math.unit(410, "kg"),
  18439. name: "Front",
  18440. image: {
  18441. source: "./media/characters/xuna/front.svg",
  18442. extra: 2184 / 1980
  18443. }
  18444. },
  18445. side: {
  18446. height: math.unit(12, "feet"),
  18447. weight: math.unit(410, "kg"),
  18448. name: "Side",
  18449. image: {
  18450. source: "./media/characters/xuna/side.svg",
  18451. extra: 2184 / 1980
  18452. }
  18453. },
  18454. back: {
  18455. height: math.unit(12, "feet"),
  18456. weight: math.unit(410, "kg"),
  18457. name: "Back",
  18458. image: {
  18459. source: "./media/characters/xuna/back.svg",
  18460. extra: 2184 / 1980
  18461. }
  18462. },
  18463. },
  18464. [
  18465. {
  18466. name: "Nano glow",
  18467. height: math.unit(10, "nm")
  18468. },
  18469. {
  18470. name: "Micro floof",
  18471. height: math.unit(0.3, "m")
  18472. },
  18473. {
  18474. name: "Huggable softy boi",
  18475. height: math.unit(3.6576, "m"),
  18476. default: true
  18477. },
  18478. {
  18479. name: "Admirable floof",
  18480. height: math.unit(80, "meters")
  18481. },
  18482. {
  18483. name: "Gentle macro",
  18484. height: math.unit(300, "meters")
  18485. },
  18486. {
  18487. name: "Very careful floof",
  18488. height: math.unit(3200, "meters")
  18489. },
  18490. {
  18491. name: "The mega floof",
  18492. height: math.unit(36000, "meters")
  18493. },
  18494. {
  18495. name: "Giga-fur-Wicker",
  18496. height: math.unit(4800000, "meters")
  18497. },
  18498. {
  18499. name: "Licky world",
  18500. height: math.unit(20000000, "meters")
  18501. },
  18502. {
  18503. name: "Floofy cyan sun",
  18504. height: math.unit(1500000000, "meters")
  18505. },
  18506. {
  18507. name: "Milky Wicker",
  18508. height: math.unit(1000000000000000000000, "meters")
  18509. },
  18510. {
  18511. name: "The observing Wicker",
  18512. height: math.unit(999999999999999999999999999, "meters")
  18513. },
  18514. ]
  18515. ))
  18516. characterMakers.push(() => makeCharacter(
  18517. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18518. {
  18519. front: {
  18520. height: math.unit(5 + 9 / 12, "feet"),
  18521. weight: math.unit(150, "lb"),
  18522. name: "Front",
  18523. image: {
  18524. source: "./media/characters/arokha-sieyes/front.svg",
  18525. extra: 1425 / 1284,
  18526. bottom: 0.05
  18527. }
  18528. },
  18529. },
  18530. [
  18531. {
  18532. name: "Normal",
  18533. height: math.unit(5 + 9 / 12, "feet")
  18534. },
  18535. {
  18536. name: "Macro",
  18537. height: math.unit(30, "meters"),
  18538. default: true
  18539. },
  18540. ]
  18541. ))
  18542. characterMakers.push(() => makeCharacter(
  18543. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18544. {
  18545. front: {
  18546. height: math.unit(6, "feet"),
  18547. weight: math.unit(180, "lb"),
  18548. name: "Front",
  18549. image: {
  18550. source: "./media/characters/arokh-sieyes/front.svg",
  18551. extra: 1830 / 1769,
  18552. bottom: 0.01
  18553. }
  18554. },
  18555. },
  18556. [
  18557. {
  18558. name: "Normal",
  18559. height: math.unit(6, "feet")
  18560. },
  18561. {
  18562. name: "Macro",
  18563. height: math.unit(30, "meters"),
  18564. default: true
  18565. },
  18566. ]
  18567. ))
  18568. characterMakers.push(() => makeCharacter(
  18569. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18570. {
  18571. side: {
  18572. height: math.unit(13 + 1 / 12, "feet"),
  18573. weight: math.unit(8.5, "tonnes"),
  18574. name: "Side",
  18575. image: {
  18576. source: "./media/characters/goldeneye/side.svg",
  18577. extra: 1182 / 778,
  18578. bottom: 0.067
  18579. }
  18580. },
  18581. paw: {
  18582. height: math.unit(3.4, "feet"),
  18583. name: "Paw",
  18584. image: {
  18585. source: "./media/characters/goldeneye/paw.svg"
  18586. }
  18587. },
  18588. },
  18589. [
  18590. {
  18591. name: "Normal",
  18592. height: math.unit(13 + 1 / 12, "feet"),
  18593. default: true
  18594. },
  18595. ]
  18596. ))
  18597. characterMakers.push(() => makeCharacter(
  18598. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18599. {
  18600. front: {
  18601. height: math.unit(6 + 1 / 12, "feet"),
  18602. weight: math.unit(210, "lb"),
  18603. name: "Front",
  18604. image: {
  18605. source: "./media/characters/leonardo-lycheborne/front.svg",
  18606. extra: 390 / 365,
  18607. bottom: 0.032
  18608. }
  18609. },
  18610. side: {
  18611. height: math.unit(6 + 1 / 12, "feet"),
  18612. weight: math.unit(210, "lb"),
  18613. name: "Side",
  18614. image: {
  18615. source: "./media/characters/leonardo-lycheborne/side.svg",
  18616. extra: 390 / 365,
  18617. bottom: 0.005
  18618. }
  18619. },
  18620. back: {
  18621. height: math.unit(6 + 1 / 12, "feet"),
  18622. weight: math.unit(210, "lb"),
  18623. name: "Back",
  18624. image: {
  18625. source: "./media/characters/leonardo-lycheborne/back.svg",
  18626. extra: 392 / 366,
  18627. bottom: 0.01
  18628. }
  18629. },
  18630. hand: {
  18631. height: math.unit(1.08, "feet"),
  18632. name: "Hand",
  18633. image: {
  18634. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18635. }
  18636. },
  18637. foot: {
  18638. height: math.unit(1.32, "feet"),
  18639. name: "Foot",
  18640. image: {
  18641. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18642. }
  18643. },
  18644. were: {
  18645. height: math.unit(20, "feet"),
  18646. weight: math.unit(7800, "lb"),
  18647. name: "Were",
  18648. image: {
  18649. source: "./media/characters/leonardo-lycheborne/were.svg",
  18650. extra: 308 / 294,
  18651. bottom: 0.048
  18652. }
  18653. },
  18654. feral: {
  18655. height: math.unit(7.5, "feet"),
  18656. weight: math.unit(600, "lb"),
  18657. name: "Feral",
  18658. image: {
  18659. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18660. extra: 210 / 186,
  18661. bottom: 0.108
  18662. }
  18663. },
  18664. taur: {
  18665. height: math.unit(11, "feet"),
  18666. weight: math.unit(3300, "lb"),
  18667. name: "Taur",
  18668. image: {
  18669. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18670. extra: 320 / 303,
  18671. bottom: 0.025
  18672. }
  18673. },
  18674. barghest: {
  18675. height: math.unit(11, "feet"),
  18676. weight: math.unit(1300, "lb"),
  18677. name: "Barghest",
  18678. image: {
  18679. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18680. extra: 323 / 302,
  18681. bottom: 0.027
  18682. }
  18683. },
  18684. dick: {
  18685. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18686. name: "Dick",
  18687. image: {
  18688. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18689. }
  18690. },
  18691. dickWere: {
  18692. height: math.unit((20) / 3.8, "feet"),
  18693. name: "Dick (Were)",
  18694. image: {
  18695. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18696. }
  18697. },
  18698. },
  18699. [
  18700. {
  18701. name: "Normal",
  18702. height: math.unit(6 + 1 / 12, "feet"),
  18703. default: true
  18704. },
  18705. ]
  18706. ))
  18707. characterMakers.push(() => makeCharacter(
  18708. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18709. {
  18710. front: {
  18711. height: math.unit(10, "feet"),
  18712. weight: math.unit(350, "lb"),
  18713. name: "Front",
  18714. image: {
  18715. source: "./media/characters/jet/front.svg",
  18716. extra: 2050 / 1980,
  18717. bottom: 0.013
  18718. }
  18719. },
  18720. back: {
  18721. height: math.unit(10, "feet"),
  18722. weight: math.unit(350, "lb"),
  18723. name: "Back",
  18724. image: {
  18725. source: "./media/characters/jet/back.svg",
  18726. extra: 2050 / 1980,
  18727. bottom: 0.013
  18728. }
  18729. },
  18730. },
  18731. [
  18732. {
  18733. name: "Micro",
  18734. height: math.unit(6, "inches")
  18735. },
  18736. {
  18737. name: "Normal",
  18738. height: math.unit(10, "feet"),
  18739. default: true
  18740. },
  18741. {
  18742. name: "Macro",
  18743. height: math.unit(100, "feet")
  18744. },
  18745. ]
  18746. ))
  18747. characterMakers.push(() => makeCharacter(
  18748. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18749. {
  18750. front: {
  18751. height: math.unit(15, "feet"),
  18752. weight: math.unit(2800, "lb"),
  18753. name: "Front",
  18754. image: {
  18755. source: "./media/characters/tanarath/front.svg",
  18756. extra: 2392 / 2220,
  18757. bottom: 0.03
  18758. }
  18759. },
  18760. back: {
  18761. height: math.unit(15, "feet"),
  18762. weight: math.unit(2800, "lb"),
  18763. name: "Back",
  18764. image: {
  18765. source: "./media/characters/tanarath/back.svg",
  18766. extra: 2392 / 2220,
  18767. bottom: 0.03
  18768. }
  18769. },
  18770. },
  18771. [
  18772. {
  18773. name: "Normal",
  18774. height: math.unit(15, "feet"),
  18775. default: true
  18776. },
  18777. ]
  18778. ))
  18779. characterMakers.push(() => makeCharacter(
  18780. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18781. {
  18782. front: {
  18783. height: math.unit(7 + 1 / 12, "feet"),
  18784. weight: math.unit(175, "lb"),
  18785. name: "Front",
  18786. image: {
  18787. source: "./media/characters/patty-cattybatty/front.svg",
  18788. extra: 908 / 874,
  18789. bottom: 0.025
  18790. }
  18791. },
  18792. },
  18793. [
  18794. {
  18795. name: "Micro",
  18796. height: math.unit(1, "inch")
  18797. },
  18798. {
  18799. name: "Normal",
  18800. height: math.unit(7 + 1 / 12, "feet")
  18801. },
  18802. {
  18803. name: "Mini Macro",
  18804. height: math.unit(155, "feet")
  18805. },
  18806. {
  18807. name: "Macro",
  18808. height: math.unit(1077, "feet")
  18809. },
  18810. {
  18811. name: "Mega Macro",
  18812. height: math.unit(47650, "feet"),
  18813. default: true
  18814. },
  18815. {
  18816. name: "Giga Macro",
  18817. height: math.unit(440, "miles")
  18818. },
  18819. {
  18820. name: "Tera Macro",
  18821. height: math.unit(8700, "miles")
  18822. },
  18823. {
  18824. name: "Planetary Macro",
  18825. height: math.unit(32700, "miles")
  18826. },
  18827. {
  18828. name: "Solar Macro",
  18829. height: math.unit(550000, "miles")
  18830. },
  18831. {
  18832. name: "Celestial Macro",
  18833. height: math.unit(2.5, "AU")
  18834. },
  18835. ]
  18836. ))
  18837. characterMakers.push(() => makeCharacter(
  18838. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18839. {
  18840. front: {
  18841. height: math.unit(4 + 5 / 12, "feet"),
  18842. weight: math.unit(90, "lb"),
  18843. name: "Front",
  18844. image: {
  18845. source: "./media/characters/cappu/front.svg",
  18846. extra: 1247 / 1152,
  18847. bottom: 0.012
  18848. }
  18849. },
  18850. },
  18851. [
  18852. {
  18853. name: "Normal",
  18854. height: math.unit(4 + 5 / 12, "feet"),
  18855. default: true
  18856. },
  18857. ]
  18858. ))
  18859. characterMakers.push(() => makeCharacter(
  18860. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18861. {
  18862. frontDressed: {
  18863. height: math.unit(70, "cm"),
  18864. weight: math.unit(6, "kg"),
  18865. name: "Front (Dressed)",
  18866. image: {
  18867. source: "./media/characters/sebi/front-dressed.svg",
  18868. extra: 713.5 / 686.5,
  18869. bottom: 0.003
  18870. }
  18871. },
  18872. front: {
  18873. height: math.unit(70, "cm"),
  18874. weight: math.unit(5, "kg"),
  18875. name: "Front",
  18876. image: {
  18877. source: "./media/characters/sebi/front.svg",
  18878. extra: 713.5 / 686.5,
  18879. bottom: 0.003
  18880. }
  18881. }
  18882. },
  18883. [
  18884. {
  18885. name: "Normal",
  18886. height: math.unit(70, "cm"),
  18887. default: true
  18888. },
  18889. {
  18890. name: "Macro",
  18891. height: math.unit(8, "meters")
  18892. },
  18893. ]
  18894. ))
  18895. characterMakers.push(() => makeCharacter(
  18896. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18897. {
  18898. front: {
  18899. height: math.unit(6, "feet"),
  18900. weight: math.unit(150, "lb"),
  18901. name: "Front",
  18902. image: {
  18903. source: "./media/characters/typhek/front.svg",
  18904. extra: 1948 / 1929,
  18905. bottom: 0.025
  18906. }
  18907. },
  18908. side: {
  18909. height: math.unit(6, "feet"),
  18910. weight: math.unit(150, "lb"),
  18911. name: "Side",
  18912. image: {
  18913. source: "./media/characters/typhek/side.svg",
  18914. extra: 2034 / 2010,
  18915. bottom: 0.003
  18916. }
  18917. },
  18918. back: {
  18919. height: math.unit(6, "feet"),
  18920. weight: math.unit(150, "lb"),
  18921. name: "Back",
  18922. image: {
  18923. source: "./media/characters/typhek/back.svg",
  18924. extra: 2005 / 1978,
  18925. bottom: 0.004
  18926. }
  18927. },
  18928. palm: {
  18929. height: math.unit(1.2, "feet"),
  18930. name: "Palm",
  18931. image: {
  18932. source: "./media/characters/typhek/palm.svg"
  18933. }
  18934. },
  18935. fist: {
  18936. height: math.unit(1.1, "feet"),
  18937. name: "Fist",
  18938. image: {
  18939. source: "./media/characters/typhek/fist.svg"
  18940. }
  18941. },
  18942. foot: {
  18943. height: math.unit(1.57, "feet"),
  18944. name: "Foot",
  18945. image: {
  18946. source: "./media/characters/typhek/foot.svg"
  18947. }
  18948. },
  18949. sole: {
  18950. height: math.unit(2.05, "feet"),
  18951. name: "Sole",
  18952. image: {
  18953. source: "./media/characters/typhek/sole.svg"
  18954. }
  18955. },
  18956. },
  18957. [
  18958. {
  18959. name: "Macro",
  18960. height: math.unit(40, "stories"),
  18961. default: true
  18962. },
  18963. {
  18964. name: "Megamacro",
  18965. height: math.unit(1, "mile")
  18966. },
  18967. {
  18968. name: "Gigamacro",
  18969. height: math.unit(4000, "solarradii")
  18970. },
  18971. {
  18972. name: "Universal",
  18973. height: math.unit(1.1, "universes")
  18974. }
  18975. ]
  18976. ))
  18977. characterMakers.push(() => makeCharacter(
  18978. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18979. {
  18980. side: {
  18981. height: math.unit(5 + 7 / 12, "feet"),
  18982. weight: math.unit(150, "lb"),
  18983. name: "Side",
  18984. image: {
  18985. source: "./media/characters/kassy/side.svg",
  18986. extra: 1280 / 1225,
  18987. bottom: 0.002
  18988. }
  18989. },
  18990. front: {
  18991. height: math.unit(5 + 7 / 12, "feet"),
  18992. weight: math.unit(150, "lb"),
  18993. name: "Front",
  18994. image: {
  18995. source: "./media/characters/kassy/front.svg",
  18996. extra: 1280 / 1225,
  18997. bottom: 0.025
  18998. }
  18999. },
  19000. back: {
  19001. height: math.unit(5 + 7 / 12, "feet"),
  19002. weight: math.unit(150, "lb"),
  19003. name: "Back",
  19004. image: {
  19005. source: "./media/characters/kassy/back.svg",
  19006. extra: 1280 / 1225,
  19007. bottom: 0.002
  19008. }
  19009. },
  19010. foot: {
  19011. height: math.unit(1.266, "feet"),
  19012. name: "Foot",
  19013. image: {
  19014. source: "./media/characters/kassy/foot.svg"
  19015. }
  19016. },
  19017. },
  19018. [
  19019. {
  19020. name: "Normal",
  19021. height: math.unit(5 + 7 / 12, "feet")
  19022. },
  19023. {
  19024. name: "Macro",
  19025. height: math.unit(137, "feet"),
  19026. default: true
  19027. },
  19028. {
  19029. name: "Megamacro",
  19030. height: math.unit(1, "mile")
  19031. },
  19032. ]
  19033. ))
  19034. characterMakers.push(() => makeCharacter(
  19035. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19036. {
  19037. front: {
  19038. height: math.unit(6 + 1 / 12, "feet"),
  19039. weight: math.unit(200, "lb"),
  19040. name: "Front",
  19041. image: {
  19042. source: "./media/characters/neil/front.svg",
  19043. extra: 1326 / 1250,
  19044. bottom: 0.023
  19045. }
  19046. },
  19047. },
  19048. [
  19049. {
  19050. name: "Normal",
  19051. height: math.unit(6 + 1 / 12, "feet"),
  19052. default: true
  19053. },
  19054. {
  19055. name: "Macro",
  19056. height: math.unit(200, "feet")
  19057. },
  19058. ]
  19059. ))
  19060. characterMakers.push(() => makeCharacter(
  19061. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19062. {
  19063. front: {
  19064. height: math.unit(5 + 9 / 12, "feet"),
  19065. weight: math.unit(190, "lb"),
  19066. name: "Front",
  19067. image: {
  19068. source: "./media/characters/atticus/front.svg",
  19069. extra: 2934 / 2785,
  19070. bottom: 0.025
  19071. }
  19072. },
  19073. },
  19074. [
  19075. {
  19076. name: "Normal",
  19077. height: math.unit(5 + 9 / 12, "feet"),
  19078. default: true
  19079. },
  19080. {
  19081. name: "Macro",
  19082. height: math.unit(180, "feet")
  19083. },
  19084. ]
  19085. ))
  19086. characterMakers.push(() => makeCharacter(
  19087. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19088. {
  19089. side: {
  19090. height: math.unit(9, "feet"),
  19091. weight: math.unit(650, "lb"),
  19092. name: "Side",
  19093. image: {
  19094. source: "./media/characters/milo/side.svg",
  19095. extra: 2644 / 2310,
  19096. bottom: 0.032
  19097. }
  19098. },
  19099. },
  19100. [
  19101. {
  19102. name: "Normal",
  19103. height: math.unit(9, "feet"),
  19104. default: true
  19105. },
  19106. {
  19107. name: "Macro",
  19108. height: math.unit(300, "feet")
  19109. },
  19110. ]
  19111. ))
  19112. characterMakers.push(() => makeCharacter(
  19113. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19114. {
  19115. side: {
  19116. height: math.unit(8, "meters"),
  19117. weight: math.unit(90000, "kg"),
  19118. name: "Side",
  19119. image: {
  19120. source: "./media/characters/ijzer/side.svg",
  19121. extra: 2756 / 1600,
  19122. bottom: 0.01
  19123. }
  19124. },
  19125. },
  19126. [
  19127. {
  19128. name: "Small",
  19129. height: math.unit(3, "meters")
  19130. },
  19131. {
  19132. name: "Normal",
  19133. height: math.unit(8, "meters"),
  19134. default: true
  19135. },
  19136. {
  19137. name: "Normal+",
  19138. height: math.unit(10, "meters")
  19139. },
  19140. {
  19141. name: "Bigger",
  19142. height: math.unit(24, "meters")
  19143. },
  19144. {
  19145. name: "Huge",
  19146. height: math.unit(80, "meters")
  19147. },
  19148. ]
  19149. ))
  19150. characterMakers.push(() => makeCharacter(
  19151. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19152. {
  19153. front: {
  19154. height: math.unit(6 + 2 / 12, "feet"),
  19155. weight: math.unit(153, "lb"),
  19156. name: "Front",
  19157. image: {
  19158. source: "./media/characters/luca-cervicum/front.svg",
  19159. extra: 370 / 327,
  19160. bottom: 0.015
  19161. }
  19162. },
  19163. back: {
  19164. height: math.unit(6 + 2 / 12, "feet"),
  19165. weight: math.unit(153, "lb"),
  19166. name: "Back",
  19167. image: {
  19168. source: "./media/characters/luca-cervicum/back.svg",
  19169. extra: 367 / 333,
  19170. bottom: 0.005
  19171. }
  19172. },
  19173. frontGear: {
  19174. height: math.unit(6 + 2 / 12, "feet"),
  19175. weight: math.unit(173, "lb"),
  19176. name: "Front (Gear)",
  19177. image: {
  19178. source: "./media/characters/luca-cervicum/front-gear.svg",
  19179. extra: 377 / 333,
  19180. bottom: 0.006
  19181. }
  19182. },
  19183. },
  19184. [
  19185. {
  19186. name: "Normal",
  19187. height: math.unit(6 + 2 / 12, "feet"),
  19188. default: true
  19189. },
  19190. ]
  19191. ))
  19192. characterMakers.push(() => makeCharacter(
  19193. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19194. {
  19195. front: {
  19196. height: math.unit(6 + 1 / 12, "feet"),
  19197. weight: math.unit(304, "lb"),
  19198. name: "Front",
  19199. image: {
  19200. source: "./media/characters/oliver/front.svg",
  19201. extra: 157 / 143,
  19202. bottom: 0.08
  19203. }
  19204. },
  19205. },
  19206. [
  19207. {
  19208. name: "Normal",
  19209. height: math.unit(6 + 1 / 12, "feet"),
  19210. default: true
  19211. },
  19212. ]
  19213. ))
  19214. characterMakers.push(() => makeCharacter(
  19215. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19216. {
  19217. front: {
  19218. height: math.unit(5 + 7 / 12, "feet"),
  19219. weight: math.unit(140, "lb"),
  19220. name: "Front",
  19221. image: {
  19222. source: "./media/characters/shane/front.svg",
  19223. extra: 304 / 289,
  19224. bottom: 0.005
  19225. }
  19226. },
  19227. },
  19228. [
  19229. {
  19230. name: "Normal",
  19231. height: math.unit(5 + 7 / 12, "feet"),
  19232. default: true
  19233. },
  19234. ]
  19235. ))
  19236. characterMakers.push(() => makeCharacter(
  19237. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19238. {
  19239. front: {
  19240. height: math.unit(5 + 9 / 12, "feet"),
  19241. weight: math.unit(178, "lb"),
  19242. name: "Front",
  19243. image: {
  19244. source: "./media/characters/shin/front.svg",
  19245. extra: 159 / 151,
  19246. bottom: 0.015
  19247. }
  19248. },
  19249. },
  19250. [
  19251. {
  19252. name: "Normal",
  19253. height: math.unit(5 + 9 / 12, "feet"),
  19254. default: true
  19255. },
  19256. ]
  19257. ))
  19258. characterMakers.push(() => makeCharacter(
  19259. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19260. {
  19261. front: {
  19262. height: math.unit(5 + 10 / 12, "feet"),
  19263. weight: math.unit(168, "lb"),
  19264. name: "Front",
  19265. image: {
  19266. source: "./media/characters/xerxes/front.svg",
  19267. extra: 282 / 260,
  19268. bottom: 0.045
  19269. }
  19270. },
  19271. },
  19272. [
  19273. {
  19274. name: "Normal",
  19275. height: math.unit(5 + 10 / 12, "feet"),
  19276. default: true
  19277. },
  19278. ]
  19279. ))
  19280. characterMakers.push(() => makeCharacter(
  19281. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19282. {
  19283. front: {
  19284. height: math.unit(6 + 7 / 12, "feet"),
  19285. weight: math.unit(208, "lb"),
  19286. name: "Front",
  19287. image: {
  19288. source: "./media/characters/chaska/front.svg",
  19289. extra: 332 / 319,
  19290. bottom: 0.015
  19291. }
  19292. },
  19293. },
  19294. [
  19295. {
  19296. name: "Normal",
  19297. height: math.unit(6 + 7 / 12, "feet"),
  19298. default: true
  19299. },
  19300. ]
  19301. ))
  19302. characterMakers.push(() => makeCharacter(
  19303. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19304. {
  19305. front: {
  19306. height: math.unit(5 + 8 / 12, "feet"),
  19307. weight: math.unit(208, "lb"),
  19308. name: "Front",
  19309. image: {
  19310. source: "./media/characters/enuk/front.svg",
  19311. extra: 437 / 406,
  19312. bottom: 0.02
  19313. }
  19314. },
  19315. },
  19316. [
  19317. {
  19318. name: "Normal",
  19319. height: math.unit(5 + 8 / 12, "feet"),
  19320. default: true
  19321. },
  19322. ]
  19323. ))
  19324. characterMakers.push(() => makeCharacter(
  19325. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19326. {
  19327. front: {
  19328. height: math.unit(5 + 10 / 12, "feet"),
  19329. weight: math.unit(252, "lb"),
  19330. name: "Front",
  19331. image: {
  19332. source: "./media/characters/bruun/front.svg",
  19333. extra: 197 / 187,
  19334. bottom: 0.012
  19335. }
  19336. },
  19337. },
  19338. [
  19339. {
  19340. name: "Normal",
  19341. height: math.unit(5 + 10 / 12, "feet"),
  19342. default: true
  19343. },
  19344. ]
  19345. ))
  19346. characterMakers.push(() => makeCharacter(
  19347. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19348. {
  19349. front: {
  19350. height: math.unit(6 + 10 / 12, "feet"),
  19351. weight: math.unit(255, "lb"),
  19352. name: "Front",
  19353. image: {
  19354. source: "./media/characters/alexeev/front.svg",
  19355. extra: 213 / 200,
  19356. bottom: 0.05
  19357. }
  19358. },
  19359. },
  19360. [
  19361. {
  19362. name: "Normal",
  19363. height: math.unit(6 + 10 / 12, "feet"),
  19364. default: true
  19365. },
  19366. ]
  19367. ))
  19368. characterMakers.push(() => makeCharacter(
  19369. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19370. {
  19371. front: {
  19372. height: math.unit(2 + 8 / 12, "feet"),
  19373. weight: math.unit(22, "lb"),
  19374. name: "Front",
  19375. image: {
  19376. source: "./media/characters/evelyn/front.svg",
  19377. extra: 208 / 180
  19378. }
  19379. },
  19380. },
  19381. [
  19382. {
  19383. name: "Normal",
  19384. height: math.unit(2 + 8 / 12, "feet"),
  19385. default: true
  19386. },
  19387. ]
  19388. ))
  19389. characterMakers.push(() => makeCharacter(
  19390. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19391. {
  19392. front: {
  19393. height: math.unit(5 + 9 / 12, "feet"),
  19394. weight: math.unit(139, "lb"),
  19395. name: "Front",
  19396. image: {
  19397. source: "./media/characters/inca/front.svg",
  19398. extra: 294 / 291,
  19399. bottom: 0.03
  19400. }
  19401. },
  19402. },
  19403. [
  19404. {
  19405. name: "Normal",
  19406. height: math.unit(5 + 9 / 12, "feet"),
  19407. default: true
  19408. },
  19409. ]
  19410. ))
  19411. characterMakers.push(() => makeCharacter(
  19412. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19413. {
  19414. front: {
  19415. height: math.unit(5 + 1 / 12, "feet"),
  19416. weight: math.unit(84, "lb"),
  19417. name: "Front",
  19418. image: {
  19419. source: "./media/characters/magdalene/front.svg",
  19420. extra: 293 / 273
  19421. }
  19422. },
  19423. },
  19424. [
  19425. {
  19426. name: "Normal",
  19427. height: math.unit(5 + 1 / 12, "feet"),
  19428. default: true
  19429. },
  19430. ]
  19431. ))
  19432. characterMakers.push(() => makeCharacter(
  19433. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19434. {
  19435. front: {
  19436. height: math.unit(6 + 3 / 12, "feet"),
  19437. weight: math.unit(185, "lb"),
  19438. name: "Front",
  19439. image: {
  19440. source: "./media/characters/mera/front.svg",
  19441. extra: 291 / 277,
  19442. bottom: 0.03
  19443. }
  19444. },
  19445. },
  19446. [
  19447. {
  19448. name: "Normal",
  19449. height: math.unit(6 + 3 / 12, "feet"),
  19450. default: true
  19451. },
  19452. ]
  19453. ))
  19454. characterMakers.push(() => makeCharacter(
  19455. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19456. {
  19457. front: {
  19458. height: math.unit(6 + 7 / 12, "feet"),
  19459. weight: math.unit(160, "lb"),
  19460. name: "Front",
  19461. image: {
  19462. source: "./media/characters/ceres/front.svg",
  19463. extra: 1023 / 950,
  19464. bottom: 0.027
  19465. }
  19466. },
  19467. back: {
  19468. height: math.unit(6 + 7 / 12, "feet"),
  19469. weight: math.unit(160, "lb"),
  19470. name: "Back",
  19471. image: {
  19472. source: "./media/characters/ceres/back.svg",
  19473. extra: 1023 / 950
  19474. }
  19475. },
  19476. },
  19477. [
  19478. {
  19479. name: "Normal",
  19480. height: math.unit(6 + 7 / 12, "feet"),
  19481. default: true
  19482. },
  19483. ]
  19484. ))
  19485. characterMakers.push(() => makeCharacter(
  19486. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19487. {
  19488. front: {
  19489. height: math.unit(5 + 10 / 12, "feet"),
  19490. weight: math.unit(150, "lb"),
  19491. name: "Front",
  19492. image: {
  19493. source: "./media/characters/kris/front.svg",
  19494. extra: 885 / 803,
  19495. bottom: 0.03
  19496. }
  19497. },
  19498. },
  19499. [
  19500. {
  19501. name: "Normal",
  19502. height: math.unit(5 + 10 / 12, "feet"),
  19503. default: true
  19504. },
  19505. ]
  19506. ))
  19507. characterMakers.push(() => makeCharacter(
  19508. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19509. {
  19510. front: {
  19511. height: math.unit(7, "feet"),
  19512. weight: math.unit(120, "kg"),
  19513. name: "Front",
  19514. image: {
  19515. source: "./media/characters/taluthus/front.svg",
  19516. extra: 903 / 833,
  19517. bottom: 0.015
  19518. }
  19519. },
  19520. },
  19521. [
  19522. {
  19523. name: "Normal",
  19524. height: math.unit(7, "feet"),
  19525. default: true
  19526. },
  19527. {
  19528. name: "Macro",
  19529. height: math.unit(300, "feet")
  19530. },
  19531. ]
  19532. ))
  19533. characterMakers.push(() => makeCharacter(
  19534. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19535. {
  19536. front: {
  19537. height: math.unit(5 + 9 / 12, "feet"),
  19538. weight: math.unit(145, "lb"),
  19539. name: "Front",
  19540. image: {
  19541. source: "./media/characters/dawn/front.svg",
  19542. extra: 2094 / 2016,
  19543. bottom: 0.025
  19544. }
  19545. },
  19546. back: {
  19547. height: math.unit(5 + 9 / 12, "feet"),
  19548. weight: math.unit(160, "lb"),
  19549. name: "Back",
  19550. image: {
  19551. source: "./media/characters/dawn/back.svg",
  19552. extra: 2112 / 2080,
  19553. bottom: 0.005
  19554. }
  19555. },
  19556. },
  19557. [
  19558. {
  19559. name: "Normal",
  19560. height: math.unit(6 + 7 / 12, "feet"),
  19561. default: true
  19562. },
  19563. ]
  19564. ))
  19565. characterMakers.push(() => makeCharacter(
  19566. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19567. {
  19568. anthro: {
  19569. height: math.unit(8 + 3 / 12, "feet"),
  19570. weight: math.unit(450, "lb"),
  19571. name: "Anthro",
  19572. image: {
  19573. source: "./media/characters/arador/anthro.svg",
  19574. extra: 1835 / 1718,
  19575. bottom: 0.025
  19576. }
  19577. },
  19578. feral: {
  19579. height: math.unit(4, "feet"),
  19580. weight: math.unit(200, "lb"),
  19581. name: "Feral",
  19582. image: {
  19583. source: "./media/characters/arador/feral.svg",
  19584. extra: 1683 / 1514,
  19585. bottom: 0.07
  19586. }
  19587. },
  19588. },
  19589. [
  19590. {
  19591. name: "Normal",
  19592. height: math.unit(8 + 3 / 12, "feet")
  19593. },
  19594. {
  19595. name: "Macro",
  19596. height: math.unit(82.5, "feet"),
  19597. default: true
  19598. },
  19599. ]
  19600. ))
  19601. characterMakers.push(() => makeCharacter(
  19602. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19603. {
  19604. front: {
  19605. height: math.unit(5 + 10 / 12, "feet"),
  19606. weight: math.unit(125, "lb"),
  19607. name: "Front",
  19608. image: {
  19609. source: "./media/characters/dharsi/front.svg",
  19610. extra: 716 / 630,
  19611. bottom: 0.035
  19612. }
  19613. },
  19614. },
  19615. [
  19616. {
  19617. name: "Nano",
  19618. height: math.unit(100, "nm")
  19619. },
  19620. {
  19621. name: "Micro",
  19622. height: math.unit(2, "inches")
  19623. },
  19624. {
  19625. name: "Normal",
  19626. height: math.unit(5 + 10 / 12, "feet"),
  19627. default: true
  19628. },
  19629. {
  19630. name: "Macro",
  19631. height: math.unit(1000, "feet")
  19632. },
  19633. {
  19634. name: "Megamacro",
  19635. height: math.unit(10, "miles")
  19636. },
  19637. {
  19638. name: "Gigamacro",
  19639. height: math.unit(3000, "miles")
  19640. },
  19641. {
  19642. name: "Teramacro",
  19643. height: math.unit(500000, "miles")
  19644. },
  19645. {
  19646. name: "Teramacro+",
  19647. height: math.unit(30, "galaxies")
  19648. },
  19649. ]
  19650. ))
  19651. characterMakers.push(() => makeCharacter(
  19652. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19653. {
  19654. front: {
  19655. height: math.unit(6, "feet"),
  19656. weight: math.unit(150, "lb"),
  19657. name: "Front",
  19658. image: {
  19659. source: "./media/characters/deathy/front.svg",
  19660. extra: 1552 / 1463,
  19661. bottom: 0.025
  19662. }
  19663. },
  19664. side: {
  19665. height: math.unit(6, "feet"),
  19666. weight: math.unit(150, "lb"),
  19667. name: "Side",
  19668. image: {
  19669. source: "./media/characters/deathy/side.svg",
  19670. extra: 1604 / 1455,
  19671. bottom: 0.025
  19672. }
  19673. },
  19674. back: {
  19675. height: math.unit(6, "feet"),
  19676. weight: math.unit(150, "lb"),
  19677. name: "Back",
  19678. image: {
  19679. source: "./media/characters/deathy/back.svg",
  19680. extra: 1580 / 1463,
  19681. bottom: 0.005
  19682. }
  19683. },
  19684. },
  19685. [
  19686. {
  19687. name: "Micro",
  19688. height: math.unit(5, "millimeters")
  19689. },
  19690. {
  19691. name: "Normal",
  19692. height: math.unit(6 + 5 / 12, "feet"),
  19693. default: true
  19694. },
  19695. ]
  19696. ))
  19697. characterMakers.push(() => makeCharacter(
  19698. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19699. {
  19700. front: {
  19701. height: math.unit(16, "feet"),
  19702. weight: math.unit(4000, "lb"),
  19703. name: "Front",
  19704. image: {
  19705. source: "./media/characters/juniper/front.svg",
  19706. bottom: 0.04
  19707. }
  19708. },
  19709. },
  19710. [
  19711. {
  19712. name: "Normal",
  19713. height: math.unit(16, "feet"),
  19714. default: true
  19715. },
  19716. ]
  19717. ))
  19718. characterMakers.push(() => makeCharacter(
  19719. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19720. {
  19721. front: {
  19722. height: math.unit(6, "feet"),
  19723. weight: math.unit(150, "lb"),
  19724. name: "Front",
  19725. image: {
  19726. source: "./media/characters/hipster/front.svg",
  19727. extra: 1312 / 1209,
  19728. bottom: 0.025
  19729. }
  19730. },
  19731. back: {
  19732. height: math.unit(6, "feet"),
  19733. weight: math.unit(150, "lb"),
  19734. name: "Back",
  19735. image: {
  19736. source: "./media/characters/hipster/back.svg",
  19737. extra: 1281 / 1196,
  19738. bottom: 0.01
  19739. }
  19740. },
  19741. },
  19742. [
  19743. {
  19744. name: "Micro",
  19745. height: math.unit(1, "mm")
  19746. },
  19747. {
  19748. name: "Normal",
  19749. height: math.unit(4, "inches"),
  19750. default: true
  19751. },
  19752. {
  19753. name: "Macro",
  19754. height: math.unit(500, "feet")
  19755. },
  19756. {
  19757. name: "Megamacro",
  19758. height: math.unit(1000, "miles")
  19759. },
  19760. ]
  19761. ))
  19762. characterMakers.push(() => makeCharacter(
  19763. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19764. {
  19765. front: {
  19766. height: math.unit(6, "feet"),
  19767. weight: math.unit(150, "lb"),
  19768. name: "Front",
  19769. image: {
  19770. source: "./media/characters/tendirmuldr/front.svg",
  19771. extra: 1878 / 1772,
  19772. bottom: 0.015
  19773. }
  19774. },
  19775. },
  19776. [
  19777. {
  19778. name: "Megamacro",
  19779. height: math.unit(1500, "miles"),
  19780. default: true
  19781. },
  19782. ]
  19783. ))
  19784. characterMakers.push(() => makeCharacter(
  19785. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19786. {
  19787. front: {
  19788. height: math.unit(14, "feet"),
  19789. weight: math.unit(12000, "lb"),
  19790. name: "Front",
  19791. image: {
  19792. source: "./media/characters/mort/front.svg",
  19793. extra: 365 / 318,
  19794. bottom: 0.01
  19795. }
  19796. },
  19797. side: {
  19798. height: math.unit(14, "feet"),
  19799. weight: math.unit(12000, "lb"),
  19800. name: "Side",
  19801. image: {
  19802. source: "./media/characters/mort/side.svg",
  19803. extra: 365 / 318,
  19804. bottom: 0.052
  19805. },
  19806. default: true
  19807. },
  19808. back: {
  19809. height: math.unit(14, "feet"),
  19810. weight: math.unit(12000, "lb"),
  19811. name: "Back",
  19812. image: {
  19813. source: "./media/characters/mort/back.svg",
  19814. extra: 371 / 332,
  19815. bottom: 0.18
  19816. }
  19817. },
  19818. },
  19819. [
  19820. {
  19821. name: "Normal",
  19822. height: math.unit(14, "feet"),
  19823. default: true
  19824. },
  19825. ]
  19826. ))
  19827. characterMakers.push(() => makeCharacter(
  19828. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19829. {
  19830. front: {
  19831. height: math.unit(8, "feet"),
  19832. weight: math.unit(1, "ton"),
  19833. name: "Front",
  19834. image: {
  19835. source: "./media/characters/lycoa/front.svg",
  19836. extra: 1875 / 1789,
  19837. bottom: 0.022
  19838. }
  19839. },
  19840. back: {
  19841. height: math.unit(8, "feet"),
  19842. weight: math.unit(1, "ton"),
  19843. name: "Back",
  19844. image: {
  19845. source: "./media/characters/lycoa/back.svg",
  19846. extra: 1835 / 1781,
  19847. bottom: 0.03
  19848. }
  19849. },
  19850. head: {
  19851. height: math.unit(2.1, "feet"),
  19852. name: "Head",
  19853. image: {
  19854. source: "./media/characters/lycoa/head.svg"
  19855. }
  19856. },
  19857. tailmaw: {
  19858. height: math.unit(1.9, "feet"),
  19859. name: "Tailmaw",
  19860. image: {
  19861. source: "./media/characters/lycoa/tailmaw.svg"
  19862. }
  19863. },
  19864. tentacles: {
  19865. height: math.unit(2.1, "feet"),
  19866. name: "Tentacles",
  19867. image: {
  19868. source: "./media/characters/lycoa/tentacles.svg"
  19869. }
  19870. },
  19871. dick: {
  19872. height: math.unit(1.73, "feet"),
  19873. name: "Dick",
  19874. image: {
  19875. source: "./media/characters/lycoa/dick.svg"
  19876. }
  19877. },
  19878. },
  19879. [
  19880. {
  19881. name: "Normal",
  19882. height: math.unit(8, "feet"),
  19883. default: true
  19884. },
  19885. {
  19886. name: "Macro",
  19887. height: math.unit(30, "feet")
  19888. },
  19889. ]
  19890. ))
  19891. characterMakers.push(() => makeCharacter(
  19892. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19893. {
  19894. front: {
  19895. height: math.unit(4 + 2 / 12, "feet"),
  19896. weight: math.unit(70, "lb"),
  19897. name: "Front",
  19898. image: {
  19899. source: "./media/characters/naldara/front.svg",
  19900. extra: 841 / 720,
  19901. bottom: 0.04
  19902. }
  19903. },
  19904. naga: {
  19905. height: math.unit(23, "feet"),
  19906. weight: math.unit(15000, "kg"),
  19907. name: "Naga",
  19908. image: {
  19909. source: "./media/characters/naldara/naga.svg",
  19910. extra: 3290 / 2959,
  19911. bottom: 124 / 3432
  19912. }
  19913. },
  19914. },
  19915. [
  19916. {
  19917. name: "Normal",
  19918. height: math.unit(4 + 2 / 12, "feet"),
  19919. default: true
  19920. },
  19921. ]
  19922. ))
  19923. characterMakers.push(() => makeCharacter(
  19924. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19925. {
  19926. front: {
  19927. height: math.unit(13 + 7 / 12, "feet"),
  19928. weight: math.unit(1500, "lb"),
  19929. name: "Front",
  19930. image: {
  19931. source: "./media/characters/briar/front.svg",
  19932. extra: 626 / 596,
  19933. bottom: 0.08
  19934. }
  19935. },
  19936. },
  19937. [
  19938. {
  19939. name: "Normal",
  19940. height: math.unit(13 + 7 / 12, "feet"),
  19941. default: true
  19942. },
  19943. ]
  19944. ))
  19945. characterMakers.push(() => makeCharacter(
  19946. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19947. {
  19948. side: {
  19949. height: math.unit(10, "feet"),
  19950. weight: math.unit(500, "lb"),
  19951. name: "Side",
  19952. image: {
  19953. source: "./media/characters/vanguard/side.svg",
  19954. extra: 502 / 425,
  19955. bottom: 0.087
  19956. }
  19957. },
  19958. },
  19959. [
  19960. {
  19961. name: "Normal",
  19962. height: math.unit(10, "feet"),
  19963. default: true
  19964. },
  19965. ]
  19966. ))
  19967. characterMakers.push(() => makeCharacter(
  19968. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19969. {
  19970. front: {
  19971. height: math.unit(7.5, "feet"),
  19972. weight: math.unit(2, "lb"),
  19973. name: "Front",
  19974. image: {
  19975. source: "./media/characters/artemis/front.svg",
  19976. extra: 1192 / 1075,
  19977. bottom: 0.07
  19978. }
  19979. },
  19980. frontNsfw: {
  19981. height: math.unit(7.5, "feet"),
  19982. weight: math.unit(2, "lb"),
  19983. name: "Front (NSFW)",
  19984. image: {
  19985. source: "./media/characters/artemis/front-nsfw.svg",
  19986. extra: 1192 / 1075,
  19987. bottom: 0.07
  19988. }
  19989. },
  19990. frontNsfwer: {
  19991. height: math.unit(7.5, "feet"),
  19992. weight: math.unit(2, "lb"),
  19993. name: "Front (NSFW-er)",
  19994. image: {
  19995. source: "./media/characters/artemis/front-nsfwer.svg",
  19996. extra: 1192 / 1075,
  19997. bottom: 0.07
  19998. }
  19999. },
  20000. side: {
  20001. height: math.unit(7.5, "feet"),
  20002. weight: math.unit(2, "lb"),
  20003. name: "Side",
  20004. image: {
  20005. source: "./media/characters/artemis/side.svg",
  20006. extra: 1192 / 1075,
  20007. bottom: 0.07
  20008. }
  20009. },
  20010. sideNsfw: {
  20011. height: math.unit(7.5, "feet"),
  20012. weight: math.unit(2, "lb"),
  20013. name: "Side (NSFW)",
  20014. image: {
  20015. source: "./media/characters/artemis/side-nsfw.svg",
  20016. extra: 1192 / 1075,
  20017. bottom: 0.07
  20018. }
  20019. },
  20020. sideNsfwer: {
  20021. height: math.unit(7.5, "feet"),
  20022. weight: math.unit(2, "lb"),
  20023. name: "Side (NSFW-er)",
  20024. image: {
  20025. source: "./media/characters/artemis/side-nsfwer.svg",
  20026. extra: 1192 / 1075,
  20027. bottom: 0.07
  20028. }
  20029. },
  20030. maw: {
  20031. height: math.unit(1.1, "feet"),
  20032. name: "Maw",
  20033. image: {
  20034. source: "./media/characters/artemis/maw.svg"
  20035. }
  20036. },
  20037. stomach: {
  20038. height: math.unit(0.95, "feet"),
  20039. name: "Stomach",
  20040. image: {
  20041. source: "./media/characters/artemis/stomach.svg"
  20042. }
  20043. },
  20044. dickCanine: {
  20045. height: math.unit(1, "feet"),
  20046. name: "Dick (Canine)",
  20047. image: {
  20048. source: "./media/characters/artemis/dick-canine.svg"
  20049. }
  20050. },
  20051. dickEquine: {
  20052. height: math.unit(0.85, "feet"),
  20053. name: "Dick (Equine)",
  20054. image: {
  20055. source: "./media/characters/artemis/dick-equine.svg"
  20056. }
  20057. },
  20058. dickExotic: {
  20059. height: math.unit(0.85, "feet"),
  20060. name: "Dick (Exotic)",
  20061. image: {
  20062. source: "./media/characters/artemis/dick-exotic.svg"
  20063. }
  20064. },
  20065. },
  20066. [
  20067. {
  20068. name: "Normal",
  20069. height: math.unit(7.5, "feet"),
  20070. default: true
  20071. },
  20072. {
  20073. name: "Enlarged",
  20074. height: math.unit(12, "feet")
  20075. },
  20076. ]
  20077. ))
  20078. characterMakers.push(() => makeCharacter(
  20079. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20080. {
  20081. front: {
  20082. height: math.unit(5 + 3 / 12, "feet"),
  20083. weight: math.unit(160, "lb"),
  20084. name: "Front",
  20085. image: {
  20086. source: "./media/characters/kira/front.svg",
  20087. extra: 906 / 786,
  20088. bottom: 0.01
  20089. }
  20090. },
  20091. back: {
  20092. height: math.unit(5 + 3 / 12, "feet"),
  20093. weight: math.unit(160, "lb"),
  20094. name: "Back",
  20095. image: {
  20096. source: "./media/characters/kira/back.svg",
  20097. extra: 882 / 757,
  20098. bottom: 0.005
  20099. }
  20100. },
  20101. frontDressed: {
  20102. height: math.unit(5 + 3 / 12, "feet"),
  20103. weight: math.unit(160, "lb"),
  20104. name: "Front (Dressed)",
  20105. image: {
  20106. source: "./media/characters/kira/front-dressed.svg",
  20107. extra: 906 / 786,
  20108. bottom: 0.01
  20109. }
  20110. },
  20111. beans: {
  20112. height: math.unit(0.92, "feet"),
  20113. name: "Beans",
  20114. image: {
  20115. source: "./media/characters/kira/beans.svg"
  20116. }
  20117. },
  20118. },
  20119. [
  20120. {
  20121. name: "Normal",
  20122. height: math.unit(5 + 3 / 12, "feet"),
  20123. default: true
  20124. },
  20125. ]
  20126. ))
  20127. characterMakers.push(() => makeCharacter(
  20128. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20129. {
  20130. front: {
  20131. height: math.unit(5 + 4 / 12, "feet"),
  20132. weight: math.unit(145, "lb"),
  20133. name: "Front",
  20134. image: {
  20135. source: "./media/characters/scramble/front.svg",
  20136. extra: 763 / 727,
  20137. bottom: 0.05
  20138. }
  20139. },
  20140. back: {
  20141. height: math.unit(5 + 4 / 12, "feet"),
  20142. weight: math.unit(145, "lb"),
  20143. name: "Back",
  20144. image: {
  20145. source: "./media/characters/scramble/back.svg",
  20146. extra: 826 / 737,
  20147. bottom: 0.002
  20148. }
  20149. },
  20150. },
  20151. [
  20152. {
  20153. name: "Normal",
  20154. height: math.unit(5 + 4 / 12, "feet"),
  20155. default: true
  20156. },
  20157. ]
  20158. ))
  20159. characterMakers.push(() => makeCharacter(
  20160. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20161. {
  20162. side: {
  20163. height: math.unit(6 + 2 / 12, "feet"),
  20164. weight: math.unit(190, "lb"),
  20165. name: "Side",
  20166. image: {
  20167. source: "./media/characters/biscuit/side.svg",
  20168. extra: 858 / 791,
  20169. bottom: 0.044
  20170. }
  20171. },
  20172. },
  20173. [
  20174. {
  20175. name: "Normal",
  20176. height: math.unit(6 + 2 / 12, "feet"),
  20177. default: true
  20178. },
  20179. ]
  20180. ))
  20181. characterMakers.push(() => makeCharacter(
  20182. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20183. {
  20184. front: {
  20185. height: math.unit(5 + 2 / 12, "feet"),
  20186. weight: math.unit(120, "lb"),
  20187. name: "Front",
  20188. image: {
  20189. source: "./media/characters/poffin/front.svg",
  20190. extra: 786 / 680,
  20191. bottom: 0.005
  20192. }
  20193. },
  20194. },
  20195. [
  20196. {
  20197. name: "Normal",
  20198. height: math.unit(5 + 2 / 12, "feet"),
  20199. default: true
  20200. },
  20201. ]
  20202. ))
  20203. characterMakers.push(() => makeCharacter(
  20204. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20205. {
  20206. front: {
  20207. height: math.unit(6 + 3 / 12, "feet"),
  20208. weight: math.unit(519, "lb"),
  20209. name: "Front",
  20210. image: {
  20211. source: "./media/characters/dhari/front.svg",
  20212. extra: 1048 / 946,
  20213. bottom: 0.015
  20214. }
  20215. },
  20216. back: {
  20217. height: math.unit(6 + 3 / 12, "feet"),
  20218. weight: math.unit(519, "lb"),
  20219. name: "Back",
  20220. image: {
  20221. source: "./media/characters/dhari/back.svg",
  20222. extra: 1048 / 931,
  20223. bottom: 0.005
  20224. }
  20225. },
  20226. frontDressed: {
  20227. height: math.unit(6 + 3 / 12, "feet"),
  20228. weight: math.unit(519, "lb"),
  20229. name: "Front (Dressed)",
  20230. image: {
  20231. source: "./media/characters/dhari/front-dressed.svg",
  20232. extra: 1713 / 1546,
  20233. bottom: 0.02
  20234. }
  20235. },
  20236. backDressed: {
  20237. height: math.unit(6 + 3 / 12, "feet"),
  20238. weight: math.unit(519, "lb"),
  20239. name: "Back (Dressed)",
  20240. image: {
  20241. source: "./media/characters/dhari/back-dressed.svg",
  20242. extra: 1699 / 1537,
  20243. bottom: 0.01
  20244. }
  20245. },
  20246. maw: {
  20247. height: math.unit(0.95, "feet"),
  20248. name: "Maw",
  20249. image: {
  20250. source: "./media/characters/dhari/maw.svg"
  20251. }
  20252. },
  20253. wereFront: {
  20254. height: math.unit(12 + 8 / 12, "feet"),
  20255. weight: math.unit(4000, "lb"),
  20256. name: "Front (Were)",
  20257. image: {
  20258. source: "./media/characters/dhari/were-front.svg",
  20259. extra: 1065 / 969,
  20260. bottom: 0.015
  20261. }
  20262. },
  20263. wereBack: {
  20264. height: math.unit(12 + 8 / 12, "feet"),
  20265. weight: math.unit(4000, "lb"),
  20266. name: "Back (Were)",
  20267. image: {
  20268. source: "./media/characters/dhari/were-back.svg",
  20269. extra: 1065 / 969,
  20270. bottom: 0.012
  20271. }
  20272. },
  20273. wereMaw: {
  20274. height: math.unit(0.625, "meters"),
  20275. name: "Maw (Were)",
  20276. image: {
  20277. source: "./media/characters/dhari/were-maw.svg"
  20278. }
  20279. },
  20280. },
  20281. [
  20282. {
  20283. name: "Normal",
  20284. height: math.unit(6 + 3 / 12, "feet"),
  20285. default: true
  20286. },
  20287. ]
  20288. ))
  20289. characterMakers.push(() => makeCharacter(
  20290. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20291. {
  20292. anthro: {
  20293. height: math.unit(5 + 7 / 12, "feet"),
  20294. weight: math.unit(175, "lb"),
  20295. name: "Anthro",
  20296. image: {
  20297. source: "./media/characters/rena-dyne/anthro.svg",
  20298. extra: 1849 / 1785,
  20299. bottom: 0.005
  20300. }
  20301. },
  20302. taur: {
  20303. height: math.unit(15 + 6 / 12, "feet"),
  20304. weight: math.unit(8000, "lb"),
  20305. name: "Taur",
  20306. image: {
  20307. source: "./media/characters/rena-dyne/taur.svg",
  20308. extra: 2315 / 2234,
  20309. bottom: 0.033
  20310. }
  20311. },
  20312. },
  20313. [
  20314. {
  20315. name: "Normal",
  20316. height: math.unit(5 + 7 / 12, "feet"),
  20317. default: true
  20318. },
  20319. ]
  20320. ))
  20321. characterMakers.push(() => makeCharacter(
  20322. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20323. {
  20324. front: {
  20325. height: math.unit(8, "feet"),
  20326. weight: math.unit(600, "lb"),
  20327. name: "Front",
  20328. image: {
  20329. source: "./media/characters/weremeep/front.svg",
  20330. extra: 967 / 862,
  20331. bottom: 0.01
  20332. }
  20333. },
  20334. },
  20335. [
  20336. {
  20337. name: "Normal",
  20338. height: math.unit(8, "feet"),
  20339. default: true
  20340. },
  20341. {
  20342. name: "Lorg",
  20343. height: math.unit(12, "feet")
  20344. },
  20345. {
  20346. name: "Oh Lawd She Comin'",
  20347. height: math.unit(20, "feet")
  20348. },
  20349. ]
  20350. ))
  20351. characterMakers.push(() => makeCharacter(
  20352. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20353. {
  20354. front: {
  20355. height: math.unit(4, "feet"),
  20356. weight: math.unit(90, "lb"),
  20357. name: "Front",
  20358. image: {
  20359. source: "./media/characters/reza/front.svg",
  20360. extra: 1183 / 1111,
  20361. bottom: 0.017
  20362. }
  20363. },
  20364. back: {
  20365. height: math.unit(4, "feet"),
  20366. weight: math.unit(90, "lb"),
  20367. name: "Back",
  20368. image: {
  20369. source: "./media/characters/reza/back.svg",
  20370. extra: 1183 / 1111,
  20371. bottom: 0.01
  20372. }
  20373. },
  20374. drake: {
  20375. height: math.unit(30, "feet"),
  20376. weight: math.unit(246960, "lb"),
  20377. name: "Drake",
  20378. image: {
  20379. source: "./media/characters/reza/drake.svg",
  20380. extra: 2350 / 2024,
  20381. bottom: 60.7 / 2403
  20382. }
  20383. },
  20384. },
  20385. [
  20386. {
  20387. name: "Normal",
  20388. height: math.unit(4, "feet"),
  20389. default: true
  20390. },
  20391. ]
  20392. ))
  20393. characterMakers.push(() => makeCharacter(
  20394. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20395. {
  20396. side: {
  20397. height: math.unit(15, "feet"),
  20398. weight: math.unit(14, "tons"),
  20399. name: "Side",
  20400. image: {
  20401. source: "./media/characters/athea/side.svg",
  20402. extra: 960 / 540,
  20403. bottom: 0.003
  20404. }
  20405. },
  20406. sitting: {
  20407. height: math.unit(6 * 2.85, "feet"),
  20408. weight: math.unit(14, "tons"),
  20409. name: "Sitting",
  20410. image: {
  20411. source: "./media/characters/athea/sitting.svg",
  20412. extra: 621 / 581,
  20413. bottom: 0.075
  20414. }
  20415. },
  20416. maw: {
  20417. height: math.unit(7.59498031496063, "feet"),
  20418. name: "Maw",
  20419. image: {
  20420. source: "./media/characters/athea/maw.svg"
  20421. }
  20422. },
  20423. },
  20424. [
  20425. {
  20426. name: "Lap Cat",
  20427. height: math.unit(2.5, "feet")
  20428. },
  20429. {
  20430. name: "Minimacro",
  20431. height: math.unit(15, "feet"),
  20432. default: true
  20433. },
  20434. {
  20435. name: "Macro",
  20436. height: math.unit(120, "feet")
  20437. },
  20438. {
  20439. name: "Macro+",
  20440. height: math.unit(640, "feet")
  20441. },
  20442. {
  20443. name: "Colossus",
  20444. height: math.unit(2.2, "miles")
  20445. },
  20446. ]
  20447. ))
  20448. characterMakers.push(() => makeCharacter(
  20449. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20450. {
  20451. front: {
  20452. height: math.unit(8 + 8 / 12, "feet"),
  20453. weight: math.unit(130, "kg"),
  20454. name: "Front",
  20455. image: {
  20456. source: "./media/characters/seroko/front.svg",
  20457. extra: 1385 / 1280,
  20458. bottom: 0.025
  20459. }
  20460. },
  20461. back: {
  20462. height: math.unit(8 + 8 / 12, "feet"),
  20463. weight: math.unit(130, "kg"),
  20464. name: "Back",
  20465. image: {
  20466. source: "./media/characters/seroko/back.svg",
  20467. extra: 1369 / 1238,
  20468. bottom: 0.018
  20469. }
  20470. },
  20471. frontDressed: {
  20472. height: math.unit(8 + 8 / 12, "feet"),
  20473. weight: math.unit(130, "kg"),
  20474. name: "Front (Dressed)",
  20475. image: {
  20476. source: "./media/characters/seroko/front-dressed.svg",
  20477. extra: 1366 / 1275,
  20478. bottom: 0.03
  20479. }
  20480. },
  20481. },
  20482. [
  20483. {
  20484. name: "Normal",
  20485. height: math.unit(8 + 8 / 12, "feet"),
  20486. default: true
  20487. },
  20488. ]
  20489. ))
  20490. characterMakers.push(() => makeCharacter(
  20491. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20492. {
  20493. front: {
  20494. height: math.unit(5.5, "feet"),
  20495. weight: math.unit(160, "lb"),
  20496. name: "Front",
  20497. image: {
  20498. source: "./media/characters/quatzi/front.svg",
  20499. extra: 2346 / 2242,
  20500. bottom: 0.015
  20501. }
  20502. },
  20503. },
  20504. [
  20505. {
  20506. name: "Normal",
  20507. height: math.unit(5.5, "feet"),
  20508. default: true
  20509. },
  20510. {
  20511. name: "Big",
  20512. height: math.unit(7.7, "feet")
  20513. },
  20514. ]
  20515. ))
  20516. characterMakers.push(() => makeCharacter(
  20517. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20518. {
  20519. front: {
  20520. height: math.unit(5 + 11 / 12, "feet"),
  20521. weight: math.unit(180, "lb"),
  20522. name: "Front",
  20523. image: {
  20524. source: "./media/characters/sen/front.svg",
  20525. extra: 1321 / 1254,
  20526. bottom: 0.015
  20527. }
  20528. },
  20529. side: {
  20530. height: math.unit(5 + 11 / 12, "feet"),
  20531. weight: math.unit(180, "lb"),
  20532. name: "Side",
  20533. image: {
  20534. source: "./media/characters/sen/side.svg",
  20535. extra: 1321 / 1254,
  20536. bottom: 0.007
  20537. }
  20538. },
  20539. back: {
  20540. height: math.unit(5 + 11 / 12, "feet"),
  20541. weight: math.unit(180, "lb"),
  20542. name: "Back",
  20543. image: {
  20544. source: "./media/characters/sen/back.svg",
  20545. extra: 1321 / 1254
  20546. }
  20547. },
  20548. },
  20549. [
  20550. {
  20551. name: "Normal",
  20552. height: math.unit(5 + 11 / 12, "feet"),
  20553. default: true
  20554. },
  20555. ]
  20556. ))
  20557. characterMakers.push(() => makeCharacter(
  20558. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20559. {
  20560. front: {
  20561. height: math.unit(166.6, "cm"),
  20562. weight: math.unit(66.6, "kg"),
  20563. name: "Front",
  20564. image: {
  20565. source: "./media/characters/fruity/front.svg",
  20566. extra: 1510 / 1386,
  20567. bottom: 0.04
  20568. }
  20569. },
  20570. back: {
  20571. height: math.unit(166.6, "cm"),
  20572. weight: math.unit(66.6, "lb"),
  20573. name: "Back",
  20574. image: {
  20575. source: "./media/characters/fruity/back.svg",
  20576. extra: 1563 / 1435,
  20577. bottom: 0.005
  20578. }
  20579. },
  20580. },
  20581. [
  20582. {
  20583. name: "Normal",
  20584. height: math.unit(166.6, "cm"),
  20585. default: true
  20586. },
  20587. {
  20588. name: "Demonic",
  20589. height: math.unit(166.6, "feet")
  20590. },
  20591. ]
  20592. ))
  20593. characterMakers.push(() => makeCharacter(
  20594. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20595. {
  20596. side: {
  20597. height: math.unit(10, "feet"),
  20598. weight: math.unit(500, "lb"),
  20599. name: "Side",
  20600. image: {
  20601. source: "./media/characters/zost/side.svg",
  20602. extra: 966 / 880,
  20603. bottom: 0.075
  20604. }
  20605. },
  20606. mawFront: {
  20607. height: math.unit(1.08, "meters"),
  20608. name: "Maw (Front)",
  20609. image: {
  20610. source: "./media/characters/zost/maw-front.svg"
  20611. }
  20612. },
  20613. mawSide: {
  20614. height: math.unit(2.66, "feet"),
  20615. name: "Maw (Side)",
  20616. image: {
  20617. source: "./media/characters/zost/maw-side.svg"
  20618. }
  20619. },
  20620. },
  20621. [
  20622. {
  20623. name: "Normal",
  20624. height: math.unit(10, "feet"),
  20625. default: true
  20626. },
  20627. ]
  20628. ))
  20629. characterMakers.push(() => makeCharacter(
  20630. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20631. {
  20632. front: {
  20633. height: math.unit(5 + 4 / 12, "feet"),
  20634. weight: math.unit(120, "lb"),
  20635. name: "Front",
  20636. image: {
  20637. source: "./media/characters/luci/front.svg",
  20638. extra: 1985 / 1884,
  20639. bottom: 0.04
  20640. }
  20641. },
  20642. back: {
  20643. height: math.unit(5 + 4 / 12, "feet"),
  20644. weight: math.unit(120, "lb"),
  20645. name: "Back",
  20646. image: {
  20647. source: "./media/characters/luci/back.svg",
  20648. extra: 1892 / 1791,
  20649. bottom: 0.002
  20650. }
  20651. },
  20652. },
  20653. [
  20654. {
  20655. name: "Normal",
  20656. height: math.unit(5 + 4 / 12, "feet"),
  20657. default: true
  20658. },
  20659. ]
  20660. ))
  20661. characterMakers.push(() => makeCharacter(
  20662. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20663. {
  20664. front: {
  20665. height: math.unit(1500, "feet"),
  20666. weight: math.unit(3.8e6, "tons"),
  20667. name: "Front",
  20668. image: {
  20669. source: "./media/characters/2th/front.svg",
  20670. extra: 3489 / 3350,
  20671. bottom: 0.1
  20672. }
  20673. },
  20674. foot: {
  20675. height: math.unit(461, "feet"),
  20676. name: "Foot",
  20677. image: {
  20678. source: "./media/characters/2th/foot.svg"
  20679. }
  20680. },
  20681. },
  20682. [
  20683. {
  20684. name: "\"Micro\"",
  20685. height: math.unit(15 + 7 / 12, "feet")
  20686. },
  20687. {
  20688. name: "Normal",
  20689. height: math.unit(1500, "feet"),
  20690. default: true
  20691. },
  20692. {
  20693. name: "Macro",
  20694. height: math.unit(5000, "feet")
  20695. },
  20696. {
  20697. name: "Megamacro",
  20698. height: math.unit(15, "miles")
  20699. },
  20700. {
  20701. name: "Gigamacro",
  20702. height: math.unit(4000, "miles")
  20703. },
  20704. {
  20705. name: "Galactic",
  20706. height: math.unit(50, "AU")
  20707. },
  20708. ]
  20709. ))
  20710. characterMakers.push(() => makeCharacter(
  20711. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20712. {
  20713. front: {
  20714. height: math.unit(5 + 6 / 12, "feet"),
  20715. weight: math.unit(220, "lb"),
  20716. name: "Front",
  20717. image: {
  20718. source: "./media/characters/amethyst/front.svg",
  20719. extra: 2078 / 2040,
  20720. bottom: 0.045
  20721. }
  20722. },
  20723. back: {
  20724. height: math.unit(5 + 6 / 12, "feet"),
  20725. weight: math.unit(220, "lb"),
  20726. name: "Back",
  20727. image: {
  20728. source: "./media/characters/amethyst/back.svg",
  20729. extra: 2021 / 1989,
  20730. bottom: 0.02
  20731. }
  20732. },
  20733. },
  20734. [
  20735. {
  20736. name: "Normal",
  20737. height: math.unit(5 + 6 / 12, "feet"),
  20738. default: true
  20739. },
  20740. ]
  20741. ))
  20742. characterMakers.push(() => makeCharacter(
  20743. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20744. {
  20745. front: {
  20746. height: math.unit(4 + 11 / 12, "feet"),
  20747. weight: math.unit(120, "lb"),
  20748. name: "Front",
  20749. image: {
  20750. source: "./media/characters/yumi-akiyama/front.svg",
  20751. extra: 1327 / 1235,
  20752. bottom: 0.02
  20753. }
  20754. },
  20755. back: {
  20756. height: math.unit(4 + 11 / 12, "feet"),
  20757. weight: math.unit(120, "lb"),
  20758. name: "Back",
  20759. image: {
  20760. source: "./media/characters/yumi-akiyama/back.svg",
  20761. extra: 1287 / 1245,
  20762. bottom: 0.002
  20763. }
  20764. },
  20765. },
  20766. [
  20767. {
  20768. name: "Galactic",
  20769. height: math.unit(50, "galaxies"),
  20770. default: true
  20771. },
  20772. {
  20773. name: "Universal",
  20774. height: math.unit(100, "universes")
  20775. },
  20776. ]
  20777. ))
  20778. characterMakers.push(() => makeCharacter(
  20779. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20780. {
  20781. front: {
  20782. height: math.unit(8, "feet"),
  20783. weight: math.unit(500, "lb"),
  20784. name: "Front",
  20785. image: {
  20786. source: "./media/characters/rifter-yrmori/front.svg",
  20787. extra: 1180 / 1125,
  20788. bottom: 0.02
  20789. }
  20790. },
  20791. back: {
  20792. height: math.unit(8, "feet"),
  20793. weight: math.unit(500, "lb"),
  20794. name: "Back",
  20795. image: {
  20796. source: "./media/characters/rifter-yrmori/back.svg",
  20797. extra: 1190 / 1145,
  20798. bottom: 0.001
  20799. }
  20800. },
  20801. wings: {
  20802. height: math.unit(7.75, "feet"),
  20803. weight: math.unit(500, "lb"),
  20804. name: "Wings",
  20805. image: {
  20806. source: "./media/characters/rifter-yrmori/wings.svg",
  20807. extra: 1357 / 1285
  20808. }
  20809. },
  20810. maw: {
  20811. height: math.unit(0.8, "feet"),
  20812. name: "Maw",
  20813. image: {
  20814. source: "./media/characters/rifter-yrmori/maw.svg"
  20815. }
  20816. },
  20817. mawfront: {
  20818. height: math.unit(1.45, "feet"),
  20819. name: "Maw (Front)",
  20820. image: {
  20821. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20822. }
  20823. },
  20824. },
  20825. [
  20826. {
  20827. name: "Normal",
  20828. height: math.unit(8, "feet"),
  20829. default: true
  20830. },
  20831. {
  20832. name: "Macro",
  20833. height: math.unit(42, "meters")
  20834. },
  20835. ]
  20836. ))
  20837. characterMakers.push(() => makeCharacter(
  20838. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  20839. {
  20840. were: {
  20841. height: math.unit(25 + 6 / 12, "feet"),
  20842. weight: math.unit(10000, "lb"),
  20843. name: "Were",
  20844. image: {
  20845. source: "./media/characters/tahajin/were.svg",
  20846. extra: 801 / 770,
  20847. bottom: 0.042
  20848. }
  20849. },
  20850. aquatic: {
  20851. height: math.unit(6 + 4 / 12, "feet"),
  20852. weight: math.unit(160, "lb"),
  20853. name: "Aquatic",
  20854. image: {
  20855. source: "./media/characters/tahajin/aquatic.svg",
  20856. extra: 572 / 542,
  20857. bottom: 0.04
  20858. }
  20859. },
  20860. chow: {
  20861. height: math.unit(8 + 11 / 12, "feet"),
  20862. weight: math.unit(450, "lb"),
  20863. name: "Chow",
  20864. image: {
  20865. source: "./media/characters/tahajin/chow.svg",
  20866. extra: 660 / 640,
  20867. bottom: 0.015
  20868. }
  20869. },
  20870. demiNaga: {
  20871. height: math.unit(6 + 8 / 12, "feet"),
  20872. weight: math.unit(300, "lb"),
  20873. name: "Demi Naga",
  20874. image: {
  20875. source: "./media/characters/tahajin/demi-naga.svg",
  20876. extra: 643 / 615,
  20877. bottom: 0.1
  20878. }
  20879. },
  20880. data: {
  20881. height: math.unit(5, "inches"),
  20882. weight: math.unit(0.1, "lb"),
  20883. name: "Data",
  20884. image: {
  20885. source: "./media/characters/tahajin/data.svg"
  20886. }
  20887. },
  20888. fluu: {
  20889. height: math.unit(5 + 7 / 12, "feet"),
  20890. weight: math.unit(140, "lb"),
  20891. name: "Fluu",
  20892. image: {
  20893. source: "./media/characters/tahajin/fluu.svg",
  20894. extra: 628 / 592,
  20895. bottom: 0.02
  20896. }
  20897. },
  20898. starWarrior: {
  20899. height: math.unit(4 + 5 / 12, "feet"),
  20900. weight: math.unit(50, "lb"),
  20901. name: "Star Warrior",
  20902. image: {
  20903. source: "./media/characters/tahajin/star-warrior.svg"
  20904. }
  20905. },
  20906. },
  20907. [
  20908. {
  20909. name: "Normal",
  20910. height: math.unit(25 + 6 / 12, "feet"),
  20911. default: true
  20912. },
  20913. ]
  20914. ))
  20915. characterMakers.push(() => makeCharacter(
  20916. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20917. {
  20918. front: {
  20919. height: math.unit(8, "feet"),
  20920. weight: math.unit(350, "lb"),
  20921. name: "Front",
  20922. image: {
  20923. source: "./media/characters/gabira/front.svg",
  20924. extra: 608 / 580,
  20925. bottom: 0.03
  20926. }
  20927. },
  20928. back: {
  20929. height: math.unit(8, "feet"),
  20930. weight: math.unit(350, "lb"),
  20931. name: "Back",
  20932. image: {
  20933. source: "./media/characters/gabira/back.svg",
  20934. extra: 608 / 580,
  20935. bottom: 0.03
  20936. }
  20937. },
  20938. },
  20939. [
  20940. {
  20941. name: "Normal",
  20942. height: math.unit(8, "feet"),
  20943. default: true
  20944. },
  20945. ]
  20946. ))
  20947. characterMakers.push(() => makeCharacter(
  20948. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20949. {
  20950. front: {
  20951. height: math.unit(5 + 3 / 12, "feet"),
  20952. weight: math.unit(137, "lb"),
  20953. name: "Front",
  20954. image: {
  20955. source: "./media/characters/sasha-katraine/front.svg",
  20956. bottom: 0.045
  20957. }
  20958. },
  20959. },
  20960. [
  20961. {
  20962. name: "Micro",
  20963. height: math.unit(5, "inches")
  20964. },
  20965. {
  20966. name: "Normal",
  20967. height: math.unit(5 + 3 / 12, "feet"),
  20968. default: true
  20969. },
  20970. ]
  20971. ))
  20972. characterMakers.push(() => makeCharacter(
  20973. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20974. {
  20975. side: {
  20976. height: math.unit(4, "inches"),
  20977. weight: math.unit(200, "grams"),
  20978. name: "Side",
  20979. image: {
  20980. source: "./media/characters/der/side.svg",
  20981. extra: 719 / 400,
  20982. bottom: 30.6 / 749.9187
  20983. }
  20984. },
  20985. },
  20986. [
  20987. {
  20988. name: "Micro",
  20989. height: math.unit(4, "inches"),
  20990. default: true
  20991. },
  20992. ]
  20993. ))
  20994. characterMakers.push(() => makeCharacter(
  20995. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20996. {
  20997. side: {
  20998. height: math.unit(30, "meters"),
  20999. weight: math.unit(700, "tonnes"),
  21000. name: "Side",
  21001. image: {
  21002. source: "./media/characters/fixerdragon/side.svg",
  21003. extra: (1293.0514 - 116.03) / 1106.86,
  21004. bottom: 116.03 / 1293.0514
  21005. }
  21006. },
  21007. },
  21008. [
  21009. {
  21010. name: "Planck",
  21011. height: math.unit(1.6e-35, "meters")
  21012. },
  21013. {
  21014. name: "Micro",
  21015. height: math.unit(0.4, "meters")
  21016. },
  21017. {
  21018. name: "Normal",
  21019. height: math.unit(30, "meters"),
  21020. default: true
  21021. },
  21022. {
  21023. name: "Megamacro",
  21024. height: math.unit(1.2, "megameters")
  21025. },
  21026. {
  21027. name: "Teramacro",
  21028. height: math.unit(130, "terameters")
  21029. },
  21030. {
  21031. name: "Yottamacro",
  21032. height: math.unit(6200, "yottameters")
  21033. },
  21034. ]
  21035. ));
  21036. characterMakers.push(() => makeCharacter(
  21037. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21038. {
  21039. front: {
  21040. height: math.unit(8, "feet"),
  21041. weight: math.unit(250, "lb"),
  21042. name: "Front",
  21043. image: {
  21044. source: "./media/characters/kite/front.svg",
  21045. extra: 2796 / 2659,
  21046. bottom: 0.002
  21047. }
  21048. },
  21049. },
  21050. [
  21051. {
  21052. name: "Normal",
  21053. height: math.unit(8, "feet"),
  21054. default: true
  21055. },
  21056. {
  21057. name: "Macro",
  21058. height: math.unit(360, "feet")
  21059. },
  21060. {
  21061. name: "Megamacro",
  21062. height: math.unit(1500, "feet")
  21063. },
  21064. ]
  21065. ))
  21066. characterMakers.push(() => makeCharacter(
  21067. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21068. {
  21069. front: {
  21070. height: math.unit(5 + 10 / 12, "feet"),
  21071. weight: math.unit(150, "lb"),
  21072. name: "Front",
  21073. image: {
  21074. source: "./media/characters/poojawa-vynar/front.svg",
  21075. extra: (1506.1547 - 55) / 1356.6,
  21076. bottom: 55 / 1506.1547
  21077. }
  21078. },
  21079. frontTailless: {
  21080. height: math.unit(5 + 10 / 12, "feet"),
  21081. weight: math.unit(150, "lb"),
  21082. name: "Front (Tailless)",
  21083. image: {
  21084. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21085. extra: (1506.1547 - 55) / 1356.6,
  21086. bottom: 55 / 1506.1547
  21087. }
  21088. },
  21089. },
  21090. [
  21091. {
  21092. name: "Normal",
  21093. height: math.unit(5 + 10 / 12, "feet"),
  21094. default: true
  21095. },
  21096. ]
  21097. ))
  21098. characterMakers.push(() => makeCharacter(
  21099. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21100. {
  21101. front: {
  21102. height: math.unit(293, "meters"),
  21103. weight: math.unit(70400, "tons"),
  21104. name: "Front",
  21105. image: {
  21106. source: "./media/characters/violette/front.svg",
  21107. extra: 1227 / 1180,
  21108. bottom: 0.005
  21109. }
  21110. },
  21111. back: {
  21112. height: math.unit(293, "meters"),
  21113. weight: math.unit(70400, "tons"),
  21114. name: "Back",
  21115. image: {
  21116. source: "./media/characters/violette/back.svg",
  21117. extra: 1227 / 1180,
  21118. bottom: 0.005
  21119. }
  21120. },
  21121. },
  21122. [
  21123. {
  21124. name: "Macro",
  21125. height: math.unit(293, "meters"),
  21126. default: true
  21127. },
  21128. ]
  21129. ))
  21130. characterMakers.push(() => makeCharacter(
  21131. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21132. {
  21133. front: {
  21134. height: math.unit(1050, "feet"),
  21135. weight: math.unit(200000, "tons"),
  21136. name: "Front",
  21137. image: {
  21138. source: "./media/characters/alessandra/front.svg",
  21139. extra: 960 / 912,
  21140. bottom: 0.06
  21141. }
  21142. },
  21143. },
  21144. [
  21145. {
  21146. name: "Macro",
  21147. height: math.unit(1050, "feet")
  21148. },
  21149. {
  21150. name: "Macro+",
  21151. height: math.unit(900, "meters"),
  21152. default: true
  21153. },
  21154. ]
  21155. ))
  21156. characterMakers.push(() => makeCharacter(
  21157. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21158. {
  21159. front: {
  21160. height: math.unit(5, "feet"),
  21161. weight: math.unit(187, "lb"),
  21162. name: "Front",
  21163. image: {
  21164. source: "./media/characters/person/front.svg",
  21165. extra: 3087 / 2945,
  21166. bottom: 91 / 3181
  21167. }
  21168. },
  21169. },
  21170. [
  21171. {
  21172. name: "Micro",
  21173. height: math.unit(3, "inches")
  21174. },
  21175. {
  21176. name: "Normal",
  21177. height: math.unit(5, "feet"),
  21178. default: true
  21179. },
  21180. {
  21181. name: "Macro",
  21182. height: math.unit(90, "feet")
  21183. },
  21184. {
  21185. name: "Max Size",
  21186. height: math.unit(280, "feet")
  21187. },
  21188. ]
  21189. ))
  21190. characterMakers.push(() => makeCharacter(
  21191. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21192. {
  21193. front: {
  21194. height: math.unit(4.5, "meters"),
  21195. weight: math.unit(3200, "lb"),
  21196. name: "Front",
  21197. image: {
  21198. source: "./media/characters/ty/front.svg",
  21199. extra: 1038 / 960,
  21200. bottom: 31.156 / 1068
  21201. }
  21202. },
  21203. back: {
  21204. height: math.unit(4.5, "meters"),
  21205. weight: math.unit(3200, "lb"),
  21206. name: "Back",
  21207. image: {
  21208. source: "./media/characters/ty/back.svg",
  21209. extra: 1044 / 966,
  21210. bottom: 7.48 / 1049
  21211. }
  21212. },
  21213. },
  21214. [
  21215. {
  21216. name: "Normal",
  21217. height: math.unit(4.5, "meters"),
  21218. default: true
  21219. },
  21220. ]
  21221. ))
  21222. characterMakers.push(() => makeCharacter(
  21223. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21224. {
  21225. front: {
  21226. height: math.unit(5 + 4 / 12, "feet"),
  21227. weight: math.unit(115, "lb"),
  21228. name: "Front",
  21229. image: {
  21230. source: "./media/characters/rocky/front.svg",
  21231. extra: 1012 / 975,
  21232. bottom: 54 / 1066
  21233. }
  21234. },
  21235. },
  21236. [
  21237. {
  21238. name: "Normal",
  21239. height: math.unit(5 + 4 / 12, "feet"),
  21240. default: true
  21241. },
  21242. ]
  21243. ))
  21244. characterMakers.push(() => makeCharacter(
  21245. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21246. {
  21247. upright: {
  21248. height: math.unit(6, "meters"),
  21249. weight: math.unit(4000, "kg"),
  21250. name: "Upright",
  21251. image: {
  21252. source: "./media/characters/ruin/upright.svg",
  21253. extra: 668 / 661,
  21254. bottom: 42 / 799.8396
  21255. }
  21256. },
  21257. },
  21258. [
  21259. {
  21260. name: "Normal",
  21261. height: math.unit(6, "meters"),
  21262. default: true
  21263. },
  21264. ]
  21265. ))
  21266. characterMakers.push(() => makeCharacter(
  21267. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21268. {
  21269. front: {
  21270. height: math.unit(5, "feet"),
  21271. weight: math.unit(106, "lb"),
  21272. name: "Front",
  21273. image: {
  21274. source: "./media/characters/robin/front.svg",
  21275. extra: 862 / 799,
  21276. bottom: 42.4 / 914.8856
  21277. }
  21278. },
  21279. },
  21280. [
  21281. {
  21282. name: "Normal",
  21283. height: math.unit(5, "feet"),
  21284. default: true
  21285. },
  21286. ]
  21287. ))
  21288. characterMakers.push(() => makeCharacter(
  21289. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21290. {
  21291. side: {
  21292. height: math.unit(3, "feet"),
  21293. weight: math.unit(225, "lb"),
  21294. name: "Side",
  21295. image: {
  21296. source: "./media/characters/saian/side.svg",
  21297. extra: 566 / 356,
  21298. bottom: 79.7 / 643
  21299. }
  21300. },
  21301. maw: {
  21302. height: math.unit(2.85, "feet"),
  21303. name: "Maw",
  21304. image: {
  21305. source: "./media/characters/saian/maw.svg"
  21306. }
  21307. },
  21308. },
  21309. [
  21310. {
  21311. name: "Normal",
  21312. height: math.unit(3, "feet"),
  21313. default: true
  21314. },
  21315. ]
  21316. ))
  21317. characterMakers.push(() => makeCharacter(
  21318. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21319. {
  21320. side: {
  21321. height: math.unit(8, "feet"),
  21322. weight: math.unit(300, "lb"),
  21323. name: "Side",
  21324. image: {
  21325. source: "./media/characters/equus-silvermane/side.svg",
  21326. extra: 2176 / 2050,
  21327. bottom: 65.7 / 2245
  21328. }
  21329. },
  21330. front: {
  21331. height: math.unit(8, "feet"),
  21332. weight: math.unit(300, "lb"),
  21333. name: "Front",
  21334. image: {
  21335. source: "./media/characters/equus-silvermane/front.svg",
  21336. extra: 4633 / 4400,
  21337. bottom: 71.3 / 4706.915
  21338. }
  21339. },
  21340. sideStepping: {
  21341. height: math.unit(8, "feet"),
  21342. weight: math.unit(300, "lb"),
  21343. name: "Side (Stepping)",
  21344. image: {
  21345. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21346. extra: 1968 / 1860,
  21347. bottom: 16.4 / 1989
  21348. }
  21349. },
  21350. },
  21351. [
  21352. {
  21353. name: "Normal",
  21354. height: math.unit(8, "feet")
  21355. },
  21356. {
  21357. name: "Minimacro",
  21358. height: math.unit(75, "feet"),
  21359. default: true
  21360. },
  21361. {
  21362. name: "Macro",
  21363. height: math.unit(150, "feet")
  21364. },
  21365. {
  21366. name: "Macro+",
  21367. height: math.unit(1000, "feet")
  21368. },
  21369. {
  21370. name: "Megamacro",
  21371. height: math.unit(1, "mile")
  21372. },
  21373. ]
  21374. ))
  21375. characterMakers.push(() => makeCharacter(
  21376. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21377. {
  21378. side: {
  21379. height: math.unit(20, "feet"),
  21380. weight: math.unit(30000, "kg"),
  21381. name: "Side",
  21382. image: {
  21383. source: "./media/characters/windar/side.svg",
  21384. extra: 1491 / 1248,
  21385. bottom: 82.56 / 1568
  21386. }
  21387. },
  21388. },
  21389. [
  21390. {
  21391. name: "Normal",
  21392. height: math.unit(20, "feet"),
  21393. default: true
  21394. },
  21395. ]
  21396. ))
  21397. characterMakers.push(() => makeCharacter(
  21398. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21399. {
  21400. side: {
  21401. height: math.unit(15.66, "feet"),
  21402. weight: math.unit(150, "lb"),
  21403. name: "Side",
  21404. image: {
  21405. source: "./media/characters/melody/side.svg",
  21406. extra: 1097 / 944,
  21407. bottom: 11.8 / 1109
  21408. }
  21409. },
  21410. sideOutfit: {
  21411. height: math.unit(15.66, "feet"),
  21412. weight: math.unit(150, "lb"),
  21413. name: "Side (Outfit)",
  21414. image: {
  21415. source: "./media/characters/melody/side-outfit.svg",
  21416. extra: 1097 / 944,
  21417. bottom: 11.8 / 1109
  21418. }
  21419. },
  21420. },
  21421. [
  21422. {
  21423. name: "Normal",
  21424. height: math.unit(15.66, "feet"),
  21425. default: true
  21426. },
  21427. ]
  21428. ))
  21429. characterMakers.push(() => makeCharacter(
  21430. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21431. {
  21432. front: {
  21433. height: math.unit(8, "feet"),
  21434. weight: math.unit(325, "lb"),
  21435. name: "Front",
  21436. image: {
  21437. source: "./media/characters/windera/front.svg",
  21438. extra: 3180 / 2845,
  21439. bottom: 178 / 3365
  21440. }
  21441. },
  21442. },
  21443. [
  21444. {
  21445. name: "Normal",
  21446. height: math.unit(8, "feet"),
  21447. default: true
  21448. },
  21449. ]
  21450. ))
  21451. characterMakers.push(() => makeCharacter(
  21452. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21453. {
  21454. front: {
  21455. height: math.unit(28.75, "feet"),
  21456. weight: math.unit(2000, "kg"),
  21457. name: "Front",
  21458. image: {
  21459. source: "./media/characters/sonear/front.svg",
  21460. extra: 1041.1 / 964.9,
  21461. bottom: 53.7 / 1096.6
  21462. }
  21463. },
  21464. },
  21465. [
  21466. {
  21467. name: "Normal",
  21468. height: math.unit(28.75, "feet"),
  21469. default: true
  21470. },
  21471. ]
  21472. ))
  21473. characterMakers.push(() => makeCharacter(
  21474. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21475. {
  21476. side: {
  21477. height: math.unit(25.5, "feet"),
  21478. weight: math.unit(23000, "kg"),
  21479. name: "Side",
  21480. image: {
  21481. source: "./media/characters/kanara/side.svg"
  21482. }
  21483. },
  21484. },
  21485. [
  21486. {
  21487. name: "Normal",
  21488. height: math.unit(25.5, "feet"),
  21489. default: true
  21490. },
  21491. ]
  21492. ))
  21493. characterMakers.push(() => makeCharacter(
  21494. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21495. {
  21496. side: {
  21497. height: math.unit(10, "feet"),
  21498. weight: math.unit(1000, "kg"),
  21499. name: "Side",
  21500. image: {
  21501. source: "./media/characters/ereus/side.svg",
  21502. extra: 1157 / 959,
  21503. bottom: 153 / 1312.5
  21504. }
  21505. },
  21506. },
  21507. [
  21508. {
  21509. name: "Normal",
  21510. height: math.unit(10, "feet"),
  21511. default: true
  21512. },
  21513. ]
  21514. ))
  21515. characterMakers.push(() => makeCharacter(
  21516. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21517. {
  21518. side: {
  21519. height: math.unit(4.5, "feet"),
  21520. weight: math.unit(500, "lb"),
  21521. name: "Side",
  21522. image: {
  21523. source: "./media/characters/e-ter/side.svg",
  21524. extra: 1550 / 1248,
  21525. bottom: 146 / 1694
  21526. }
  21527. },
  21528. },
  21529. [
  21530. {
  21531. name: "Normal",
  21532. height: math.unit(4.5, "feet"),
  21533. default: true
  21534. },
  21535. ]
  21536. ))
  21537. characterMakers.push(() => makeCharacter(
  21538. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21539. {
  21540. side: {
  21541. height: math.unit(9.7, "feet"),
  21542. weight: math.unit(4000, "kg"),
  21543. name: "Side",
  21544. image: {
  21545. source: "./media/characters/yamie/side.svg"
  21546. }
  21547. },
  21548. },
  21549. [
  21550. {
  21551. name: "Normal",
  21552. height: math.unit(9.7, "feet"),
  21553. default: true
  21554. },
  21555. ]
  21556. ))
  21557. characterMakers.push(() => makeCharacter(
  21558. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21559. {
  21560. front: {
  21561. height: math.unit(50, "feet"),
  21562. weight: math.unit(50000, "kg"),
  21563. name: "Front",
  21564. image: {
  21565. source: "./media/characters/anders/front.svg",
  21566. extra: 570 / 539,
  21567. bottom: 14.7 / 586.7
  21568. }
  21569. },
  21570. },
  21571. [
  21572. {
  21573. name: "Large",
  21574. height: math.unit(50, "feet")
  21575. },
  21576. {
  21577. name: "Macro",
  21578. height: math.unit(2000, "feet"),
  21579. default: true
  21580. },
  21581. {
  21582. name: "Megamacro",
  21583. height: math.unit(12, "miles")
  21584. },
  21585. ]
  21586. ))
  21587. characterMakers.push(() => makeCharacter(
  21588. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21589. {
  21590. front: {
  21591. height: math.unit(7 + 2 / 12, "feet"),
  21592. weight: math.unit(300, "lb"),
  21593. name: "Front",
  21594. image: {
  21595. source: "./media/characters/reban/front.svg",
  21596. extra: 516 / 487,
  21597. bottom: 42.82 / 558.356
  21598. }
  21599. },
  21600. dick: {
  21601. height: math.unit(7 / 5, "feet"),
  21602. name: "Dick",
  21603. image: {
  21604. source: "./media/characters/reban/dick.svg"
  21605. }
  21606. },
  21607. },
  21608. [
  21609. {
  21610. name: "Natural Height",
  21611. height: math.unit(7 + 2 / 12, "feet")
  21612. },
  21613. {
  21614. name: "Macro",
  21615. height: math.unit(500, "feet"),
  21616. default: true
  21617. },
  21618. {
  21619. name: "Canon Height",
  21620. height: math.unit(50, "AU")
  21621. },
  21622. ]
  21623. ))
  21624. characterMakers.push(() => makeCharacter(
  21625. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21626. {
  21627. front: {
  21628. height: math.unit(6, "feet"),
  21629. weight: math.unit(150, "lb"),
  21630. name: "Front",
  21631. image: {
  21632. source: "./media/characters/terrance-keayes/front.svg",
  21633. extra: 1.005,
  21634. bottom: 151 / 1615
  21635. }
  21636. },
  21637. side: {
  21638. height: math.unit(6, "feet"),
  21639. weight: math.unit(150, "lb"),
  21640. name: "Side",
  21641. image: {
  21642. source: "./media/characters/terrance-keayes/side.svg",
  21643. extra: 1.005,
  21644. bottom: 129.4 / 1544
  21645. }
  21646. },
  21647. back: {
  21648. height: math.unit(6, "feet"),
  21649. weight: math.unit(150, "lb"),
  21650. name: "Back",
  21651. image: {
  21652. source: "./media/characters/terrance-keayes/back.svg",
  21653. extra: 1.005,
  21654. bottom: 58.4 / 1557.3
  21655. }
  21656. },
  21657. dick: {
  21658. height: math.unit(6 * 0.208, "feet"),
  21659. name: "Dick",
  21660. image: {
  21661. source: "./media/characters/terrance-keayes/dick.svg"
  21662. }
  21663. },
  21664. },
  21665. [
  21666. {
  21667. name: "Canon Height",
  21668. height: math.unit(35, "miles"),
  21669. default: true
  21670. },
  21671. ]
  21672. ))
  21673. characterMakers.push(() => makeCharacter(
  21674. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21675. {
  21676. front: {
  21677. height: math.unit(6, "feet"),
  21678. weight: math.unit(150, "lb"),
  21679. name: "Front",
  21680. image: {
  21681. source: "./media/characters/ofelia/front.svg",
  21682. extra: 546 / 541,
  21683. bottom: 39 / 583
  21684. }
  21685. },
  21686. back: {
  21687. height: math.unit(6, "feet"),
  21688. weight: math.unit(150, "lb"),
  21689. name: "Back",
  21690. image: {
  21691. source: "./media/characters/ofelia/back.svg",
  21692. extra: 564 / 559.5,
  21693. bottom: 8.69 / 573.02
  21694. }
  21695. },
  21696. maw: {
  21697. height: math.unit(1, "feet"),
  21698. name: "Maw",
  21699. image: {
  21700. source: "./media/characters/ofelia/maw.svg"
  21701. }
  21702. },
  21703. foot: {
  21704. height: math.unit(1.949, "feet"),
  21705. name: "Foot",
  21706. image: {
  21707. source: "./media/characters/ofelia/foot.svg"
  21708. }
  21709. },
  21710. },
  21711. [
  21712. {
  21713. name: "Canon Height",
  21714. height: math.unit(2000, "miles"),
  21715. default: true
  21716. },
  21717. ]
  21718. ))
  21719. characterMakers.push(() => makeCharacter(
  21720. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21721. {
  21722. front: {
  21723. height: math.unit(6, "feet"),
  21724. weight: math.unit(150, "lb"),
  21725. name: "Front",
  21726. image: {
  21727. source: "./media/characters/samuel/front.svg",
  21728. extra: 265 / 258,
  21729. bottom: 2 / 266.1566
  21730. }
  21731. },
  21732. },
  21733. [
  21734. {
  21735. name: "Macro",
  21736. height: math.unit(100, "feet"),
  21737. default: true
  21738. },
  21739. {
  21740. name: "Full Size",
  21741. height: math.unit(1000, "miles")
  21742. },
  21743. ]
  21744. ))
  21745. characterMakers.push(() => makeCharacter(
  21746. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21747. {
  21748. front: {
  21749. height: math.unit(6, "feet"),
  21750. weight: math.unit(300, "lb"),
  21751. name: "Front",
  21752. image: {
  21753. source: "./media/characters/beishir-kiel/front.svg",
  21754. extra: 569 / 547,
  21755. bottom: 41.9 / 609
  21756. }
  21757. },
  21758. maw: {
  21759. height: math.unit(6 * 0.202, "feet"),
  21760. name: "Maw",
  21761. image: {
  21762. source: "./media/characters/beishir-kiel/maw.svg"
  21763. }
  21764. },
  21765. },
  21766. [
  21767. {
  21768. name: "Macro",
  21769. height: math.unit(300, "feet"),
  21770. default: true
  21771. },
  21772. ]
  21773. ))
  21774. characterMakers.push(() => makeCharacter(
  21775. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21776. {
  21777. front: {
  21778. height: math.unit(5 + 8 / 12, "feet"),
  21779. weight: math.unit(120, "lb"),
  21780. name: "Front",
  21781. image: {
  21782. source: "./media/characters/logan-grey/front.svg",
  21783. extra: 2539 / 2393,
  21784. bottom: 97.6 / 2636.37
  21785. }
  21786. },
  21787. frontAlt: {
  21788. height: math.unit(5 + 8 / 12, "feet"),
  21789. weight: math.unit(120, "lb"),
  21790. name: "Front (Alt)",
  21791. image: {
  21792. source: "./media/characters/logan-grey/front-alt.svg",
  21793. extra: 958 / 893,
  21794. bottom: 15 / 970.768
  21795. }
  21796. },
  21797. back: {
  21798. height: math.unit(5 + 8 / 12, "feet"),
  21799. weight: math.unit(120, "lb"),
  21800. name: "Back",
  21801. image: {
  21802. source: "./media/characters/logan-grey/back.svg",
  21803. extra: 958 / 893,
  21804. bottom: 2.1881 / 970.9788
  21805. }
  21806. },
  21807. dick: {
  21808. height: math.unit(1.437, "feet"),
  21809. name: "Dick",
  21810. image: {
  21811. source: "./media/characters/logan-grey/dick.svg"
  21812. }
  21813. },
  21814. },
  21815. [
  21816. {
  21817. name: "Normal",
  21818. height: math.unit(5 + 8 / 12, "feet")
  21819. },
  21820. {
  21821. name: "The 500 Foot Femboy",
  21822. height: math.unit(500, "feet"),
  21823. default: true
  21824. },
  21825. {
  21826. name: "Megmacro",
  21827. height: math.unit(20, "miles")
  21828. },
  21829. ]
  21830. ))
  21831. characterMakers.push(() => makeCharacter(
  21832. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21833. {
  21834. front: {
  21835. height: math.unit(8 + 2 / 12, "feet"),
  21836. weight: math.unit(275, "lb"),
  21837. name: "Front",
  21838. image: {
  21839. source: "./media/characters/draganta/front.svg",
  21840. extra: 1177 / 1135,
  21841. bottom: 33.46 / 1212.1
  21842. }
  21843. },
  21844. },
  21845. [
  21846. {
  21847. name: "Normal",
  21848. height: math.unit(8 + 6 / 12, "feet"),
  21849. default: true
  21850. },
  21851. {
  21852. name: "Macro",
  21853. height: math.unit(150, "feet")
  21854. },
  21855. {
  21856. name: "Megamacro",
  21857. height: math.unit(1000, "miles")
  21858. },
  21859. ]
  21860. ))
  21861. characterMakers.push(() => makeCharacter(
  21862. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21863. {
  21864. front: {
  21865. height: math.unit(1.72, "m"),
  21866. weight: math.unit(80, "lb"),
  21867. name: "Front",
  21868. image: {
  21869. source: "./media/characters/voski/front.svg",
  21870. extra: 2076.22 / 2022.4,
  21871. bottom: 102.7 / 2177.3866
  21872. }
  21873. },
  21874. frontNsfw: {
  21875. height: math.unit(1.72, "m"),
  21876. weight: math.unit(80, "lb"),
  21877. name: "Front (NSFW)",
  21878. image: {
  21879. source: "./media/characters/voski/front-nsfw.svg",
  21880. extra: 2076.22 / 2022.4,
  21881. bottom: 102.7 / 2177.3866
  21882. }
  21883. },
  21884. back: {
  21885. height: math.unit(1.72, "m"),
  21886. weight: math.unit(80, "lb"),
  21887. name: "Back",
  21888. image: {
  21889. source: "./media/characters/voski/back.svg",
  21890. extra: 2104 / 2051,
  21891. bottom: 10.45 / 2113.63
  21892. }
  21893. },
  21894. },
  21895. [
  21896. {
  21897. name: "Normal",
  21898. height: math.unit(1.72, "m")
  21899. },
  21900. {
  21901. name: "Macro",
  21902. height: math.unit(55, "m"),
  21903. default: true
  21904. },
  21905. {
  21906. name: "Macro+",
  21907. height: math.unit(300, "m")
  21908. },
  21909. {
  21910. name: "Macro++",
  21911. height: math.unit(700, "m")
  21912. },
  21913. {
  21914. name: "Macro+++",
  21915. height: math.unit(4500, "m")
  21916. },
  21917. {
  21918. name: "Macro++++",
  21919. height: math.unit(45, "km")
  21920. },
  21921. {
  21922. name: "Macro+++++",
  21923. height: math.unit(1220, "km")
  21924. },
  21925. ]
  21926. ))
  21927. characterMakers.push(() => makeCharacter(
  21928. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21929. {
  21930. front: {
  21931. height: math.unit(2.3, "m"),
  21932. weight: math.unit(304, "kg"),
  21933. name: "Front",
  21934. image: {
  21935. source: "./media/characters/icowom-lee/front.svg",
  21936. extra: 985 / 955,
  21937. bottom: 25.4 / 1012
  21938. }
  21939. },
  21940. fronttentacles: {
  21941. height: math.unit(2.3, "m"),
  21942. weight: math.unit(304, "kg"),
  21943. name: "Front-tentacles",
  21944. image: {
  21945. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21946. extra: 985 / 955,
  21947. bottom: 25.4 / 1012
  21948. }
  21949. },
  21950. back: {
  21951. height: math.unit(2.3, "m"),
  21952. weight: math.unit(304, "kg"),
  21953. name: "Back",
  21954. image: {
  21955. source: "./media/characters/icowom-lee/back.svg",
  21956. extra: 975 / 954,
  21957. bottom: 9.5 / 985
  21958. }
  21959. },
  21960. backtentacles: {
  21961. height: math.unit(2.3, "m"),
  21962. weight: math.unit(304, "kg"),
  21963. name: "Back-tentacles",
  21964. image: {
  21965. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21966. extra: 975 / 954,
  21967. bottom: 9.5 / 985
  21968. }
  21969. },
  21970. frontDressed: {
  21971. height: math.unit(2.3, "m"),
  21972. weight: math.unit(304, "kg"),
  21973. name: "Front (Dressed)",
  21974. image: {
  21975. source: "./media/characters/icowom-lee/front-dressed.svg",
  21976. extra: 3076 / 2933,
  21977. bottom: 51.4 / 3125.1889
  21978. }
  21979. },
  21980. rump: {
  21981. height: math.unit(0.776, "meters"),
  21982. name: "Rump",
  21983. image: {
  21984. source: "./media/characters/icowom-lee/rump.svg"
  21985. }
  21986. },
  21987. genitals: {
  21988. height: math.unit(0.78, "meters"),
  21989. name: "Genitals",
  21990. image: {
  21991. source: "./media/characters/icowom-lee/genitals.svg"
  21992. }
  21993. },
  21994. },
  21995. [
  21996. {
  21997. name: "Normal",
  21998. height: math.unit(2.3, "meters"),
  21999. default: true
  22000. },
  22001. {
  22002. name: "Macro",
  22003. height: math.unit(94, "meters"),
  22004. default: true
  22005. },
  22006. ]
  22007. ))
  22008. characterMakers.push(() => makeCharacter(
  22009. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22010. {
  22011. front: {
  22012. height: math.unit(22, "meters"),
  22013. weight: math.unit(21000, "kg"),
  22014. name: "Front",
  22015. image: {
  22016. source: "./media/characters/shock-diamond/front.svg",
  22017. extra: 2204 / 2053,
  22018. bottom: 65 / 2239.47
  22019. }
  22020. },
  22021. frontNude: {
  22022. height: math.unit(22, "meters"),
  22023. weight: math.unit(21000, "kg"),
  22024. name: "Front (Nude)",
  22025. image: {
  22026. source: "./media/characters/shock-diamond/front-nude.svg",
  22027. extra: 2514 / 2285,
  22028. bottom: 13 / 2527.56
  22029. }
  22030. },
  22031. },
  22032. [
  22033. {
  22034. name: "Normal",
  22035. height: math.unit(3, "meters")
  22036. },
  22037. {
  22038. name: "Macro",
  22039. height: math.unit(22, "meters"),
  22040. default: true
  22041. },
  22042. ]
  22043. ))
  22044. characterMakers.push(() => makeCharacter(
  22045. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22046. {
  22047. front: {
  22048. height: math.unit(5 + 4 / 12, "feet"),
  22049. weight: math.unit(120, "lb"),
  22050. name: "Front",
  22051. image: {
  22052. source: "./media/characters/rory/front.svg",
  22053. extra: 589 / 556,
  22054. bottom: 45.7 / 635.76
  22055. }
  22056. },
  22057. frontNude: {
  22058. height: math.unit(5 + 4 / 12, "feet"),
  22059. weight: math.unit(120, "lb"),
  22060. name: "Front (Nude)",
  22061. image: {
  22062. source: "./media/characters/rory/front-nude.svg",
  22063. extra: 589 / 556,
  22064. bottom: 45.7 / 635.76
  22065. }
  22066. },
  22067. side: {
  22068. height: math.unit(5 + 4 / 12, "feet"),
  22069. weight: math.unit(120, "lb"),
  22070. name: "Side",
  22071. image: {
  22072. source: "./media/characters/rory/side.svg",
  22073. extra: 597 / 564,
  22074. bottom: 55 / 653
  22075. }
  22076. },
  22077. back: {
  22078. height: math.unit(5 + 4 / 12, "feet"),
  22079. weight: math.unit(120, "lb"),
  22080. name: "Back",
  22081. image: {
  22082. source: "./media/characters/rory/back.svg",
  22083. extra: 620 / 585,
  22084. bottom: 8.86 / 630.43
  22085. }
  22086. },
  22087. dick: {
  22088. height: math.unit(0.86, "feet"),
  22089. name: "Dick",
  22090. image: {
  22091. source: "./media/characters/rory/dick.svg"
  22092. }
  22093. },
  22094. },
  22095. [
  22096. {
  22097. name: "Normal",
  22098. height: math.unit(5 + 4 / 12, "feet"),
  22099. default: true
  22100. },
  22101. {
  22102. name: "Macro",
  22103. height: math.unit(100, "feet")
  22104. },
  22105. {
  22106. name: "Macro+",
  22107. height: math.unit(140, "feet")
  22108. },
  22109. {
  22110. name: "Macro++",
  22111. height: math.unit(300, "feet")
  22112. },
  22113. ]
  22114. ))
  22115. characterMakers.push(() => makeCharacter(
  22116. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22117. {
  22118. front: {
  22119. height: math.unit(5 + 9 / 12, "feet"),
  22120. weight: math.unit(190, "lb"),
  22121. name: "Front",
  22122. image: {
  22123. source: "./media/characters/sprisk/front.svg",
  22124. extra: 1225 / 1180,
  22125. bottom: 42.7 / 1266.4
  22126. }
  22127. },
  22128. frontNsfw: {
  22129. height: math.unit(5 + 9 / 12, "feet"),
  22130. weight: math.unit(190, "lb"),
  22131. name: "Front (NSFW)",
  22132. image: {
  22133. source: "./media/characters/sprisk/front-nsfw.svg",
  22134. extra: 1225 / 1180,
  22135. bottom: 42.7 / 1266.4
  22136. }
  22137. },
  22138. back: {
  22139. height: math.unit(5 + 9 / 12, "feet"),
  22140. weight: math.unit(190, "lb"),
  22141. name: "Back",
  22142. image: {
  22143. source: "./media/characters/sprisk/back.svg",
  22144. extra: 1247 / 1200,
  22145. bottom: 5.6 / 1253.04
  22146. }
  22147. },
  22148. },
  22149. [
  22150. {
  22151. name: "Tiny",
  22152. height: math.unit(2, "inches")
  22153. },
  22154. {
  22155. name: "Normal",
  22156. height: math.unit(5 + 9 / 12, "feet"),
  22157. default: true
  22158. },
  22159. {
  22160. name: "Mini Macro",
  22161. height: math.unit(18, "feet")
  22162. },
  22163. {
  22164. name: "Macro",
  22165. height: math.unit(100, "feet")
  22166. },
  22167. {
  22168. name: "MACRO",
  22169. height: math.unit(50, "miles")
  22170. },
  22171. {
  22172. name: "M A C R O",
  22173. height: math.unit(300, "miles")
  22174. },
  22175. ]
  22176. ))
  22177. characterMakers.push(() => makeCharacter(
  22178. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22179. {
  22180. side: {
  22181. height: math.unit(15.6, "meters"),
  22182. weight: math.unit(700000, "kg"),
  22183. name: "Side",
  22184. image: {
  22185. source: "./media/characters/bunsen/side.svg",
  22186. extra: 1644 / 358
  22187. }
  22188. },
  22189. foot: {
  22190. height: math.unit(1.611 * 1644 / 358, "meter"),
  22191. name: "Foot",
  22192. image: {
  22193. source: "./media/characters/bunsen/foot.svg"
  22194. }
  22195. },
  22196. },
  22197. [
  22198. {
  22199. name: "Small",
  22200. height: math.unit(10, "feet")
  22201. },
  22202. {
  22203. name: "Normal",
  22204. height: math.unit(15.6, "meters"),
  22205. default: true
  22206. },
  22207. ]
  22208. ))
  22209. characterMakers.push(() => makeCharacter(
  22210. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22211. {
  22212. front: {
  22213. height: math.unit(4 + 11 / 12, "feet"),
  22214. weight: math.unit(140, "lb"),
  22215. name: "Front",
  22216. image: {
  22217. source: "./media/characters/sesh/front.svg",
  22218. extra: 3420 / 3231,
  22219. bottom: 72 / 3949.5
  22220. }
  22221. },
  22222. },
  22223. [
  22224. {
  22225. name: "Normal",
  22226. height: math.unit(4 + 11 / 12, "feet")
  22227. },
  22228. {
  22229. name: "Grown",
  22230. height: math.unit(15, "feet"),
  22231. default: true
  22232. },
  22233. {
  22234. name: "Macro",
  22235. height: math.unit(1500, "feet")
  22236. },
  22237. {
  22238. name: "Megamacro",
  22239. height: math.unit(30, "miles")
  22240. },
  22241. {
  22242. name: "Continental",
  22243. height: math.unit(3000, "miles")
  22244. },
  22245. {
  22246. name: "Gravity Mass",
  22247. height: math.unit(300000, "miles")
  22248. },
  22249. {
  22250. name: "Planet Buster",
  22251. height: math.unit(30000000, "miles")
  22252. },
  22253. {
  22254. name: "Big",
  22255. height: math.unit(3000000000, "miles")
  22256. },
  22257. ]
  22258. ))
  22259. characterMakers.push(() => makeCharacter(
  22260. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22261. {
  22262. front: {
  22263. height: math.unit(9, "feet"),
  22264. weight: math.unit(350, "lb"),
  22265. name: "Front",
  22266. image: {
  22267. source: "./media/characters/pepper/front.svg",
  22268. extra: 1448 / 1312,
  22269. bottom: 9.4 / 1457.88
  22270. }
  22271. },
  22272. back: {
  22273. height: math.unit(9, "feet"),
  22274. weight: math.unit(350, "lb"),
  22275. name: "Back",
  22276. image: {
  22277. source: "./media/characters/pepper/back.svg",
  22278. extra: 1423 / 1300,
  22279. bottom: 4.6 / 1429
  22280. }
  22281. },
  22282. maw: {
  22283. height: math.unit(0.932, "feet"),
  22284. name: "Maw",
  22285. image: {
  22286. source: "./media/characters/pepper/maw.svg"
  22287. }
  22288. },
  22289. },
  22290. [
  22291. {
  22292. name: "Normal",
  22293. height: math.unit(9, "feet"),
  22294. default: true
  22295. },
  22296. ]
  22297. ))
  22298. characterMakers.push(() => makeCharacter(
  22299. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22300. {
  22301. front: {
  22302. height: math.unit(6, "feet"),
  22303. weight: math.unit(150, "lb"),
  22304. name: "Front",
  22305. image: {
  22306. source: "./media/characters/maelstrom/front.svg",
  22307. extra: 2100 / 1883,
  22308. bottom: 94 / 2196.7
  22309. }
  22310. },
  22311. },
  22312. [
  22313. {
  22314. name: "Less Kaiju",
  22315. height: math.unit(200, "feet")
  22316. },
  22317. {
  22318. name: "Kaiju",
  22319. height: math.unit(400, "feet"),
  22320. default: true
  22321. },
  22322. {
  22323. name: "Kaiju-er",
  22324. height: math.unit(600, "feet")
  22325. },
  22326. ]
  22327. ))
  22328. characterMakers.push(() => makeCharacter(
  22329. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22330. {
  22331. front: {
  22332. height: math.unit(6 + 5 / 12, "feet"),
  22333. weight: math.unit(180, "lb"),
  22334. name: "Front",
  22335. image: {
  22336. source: "./media/characters/lexir/front.svg",
  22337. extra: 180 / 172,
  22338. bottom: 12 / 192
  22339. }
  22340. },
  22341. back: {
  22342. height: math.unit(6 + 5 / 12, "feet"),
  22343. weight: math.unit(180, "lb"),
  22344. name: "Back",
  22345. image: {
  22346. source: "./media/characters/lexir/back.svg",
  22347. extra: 183.84 / 175.5,
  22348. bottom: 3.1 / 187
  22349. }
  22350. },
  22351. },
  22352. [
  22353. {
  22354. name: "Very Smal",
  22355. height: math.unit(1, "nm")
  22356. },
  22357. {
  22358. name: "Normal",
  22359. height: math.unit(6 + 5 / 12, "feet"),
  22360. default: true
  22361. },
  22362. {
  22363. name: "Macro",
  22364. height: math.unit(1, "mile")
  22365. },
  22366. {
  22367. name: "Megamacro",
  22368. height: math.unit(50, "miles")
  22369. },
  22370. ]
  22371. ))
  22372. characterMakers.push(() => makeCharacter(
  22373. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22374. {
  22375. front: {
  22376. height: math.unit(1.5, "meters"),
  22377. weight: math.unit(100, "lb"),
  22378. name: "Front",
  22379. image: {
  22380. source: "./media/characters/maksio/front.svg",
  22381. extra: 1549 / 1531,
  22382. bottom: 123.7 / 1674.5429
  22383. }
  22384. },
  22385. back: {
  22386. height: math.unit(1.5, "meters"),
  22387. weight: math.unit(100, "lb"),
  22388. name: "Back",
  22389. image: {
  22390. source: "./media/characters/maksio/back.svg",
  22391. extra: 1541 / 1509,
  22392. bottom: 97 / 1639
  22393. }
  22394. },
  22395. hand: {
  22396. height: math.unit(0.621, "feet"),
  22397. name: "Hand",
  22398. image: {
  22399. source: "./media/characters/maksio/hand.svg"
  22400. }
  22401. },
  22402. foot: {
  22403. height: math.unit(1.611, "feet"),
  22404. name: "Foot",
  22405. image: {
  22406. source: "./media/characters/maksio/foot.svg"
  22407. }
  22408. },
  22409. },
  22410. [
  22411. {
  22412. name: "Shrunken",
  22413. height: math.unit(10, "cm")
  22414. },
  22415. {
  22416. name: "Normal",
  22417. height: math.unit(150, "cm"),
  22418. default: true
  22419. },
  22420. ]
  22421. ))
  22422. characterMakers.push(() => makeCharacter(
  22423. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22424. {
  22425. front: {
  22426. height: math.unit(100, "feet"),
  22427. name: "Front",
  22428. image: {
  22429. source: "./media/characters/erza-bear/front.svg",
  22430. extra: 2449 / 2390,
  22431. bottom: 46 / 2494
  22432. }
  22433. },
  22434. back: {
  22435. height: math.unit(100, "feet"),
  22436. name: "Back",
  22437. image: {
  22438. source: "./media/characters/erza-bear/back.svg",
  22439. extra: 2489 / 2430,
  22440. bottom: 85.4 / 2480
  22441. }
  22442. },
  22443. tail: {
  22444. height: math.unit(42, "feet"),
  22445. name: "Tail",
  22446. image: {
  22447. source: "./media/characters/erza-bear/tail.svg"
  22448. }
  22449. },
  22450. tongue: {
  22451. height: math.unit(8, "feet"),
  22452. name: "Tongue",
  22453. image: {
  22454. source: "./media/characters/erza-bear/tongue.svg"
  22455. }
  22456. },
  22457. dick: {
  22458. height: math.unit(10.5, "feet"),
  22459. name: "Dick",
  22460. image: {
  22461. source: "./media/characters/erza-bear/dick.svg"
  22462. }
  22463. },
  22464. dickVertical: {
  22465. height: math.unit(16.9, "feet"),
  22466. name: "Dick (Vertical)",
  22467. image: {
  22468. source: "./media/characters/erza-bear/dick-vertical.svg"
  22469. }
  22470. },
  22471. },
  22472. [
  22473. {
  22474. name: "Macro",
  22475. height: math.unit(100, "feet"),
  22476. default: true
  22477. },
  22478. ]
  22479. ))
  22480. characterMakers.push(() => makeCharacter(
  22481. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22482. {
  22483. front: {
  22484. height: math.unit(172, "cm"),
  22485. weight: math.unit(73, "kg"),
  22486. name: "Front",
  22487. image: {
  22488. source: "./media/characters/violet-flor/front.svg",
  22489. extra: 1530 / 1442,
  22490. bottom: 61.9 / 1588.8
  22491. }
  22492. },
  22493. back: {
  22494. height: math.unit(180, "cm"),
  22495. weight: math.unit(73, "kg"),
  22496. name: "Back",
  22497. image: {
  22498. source: "./media/characters/violet-flor/back.svg",
  22499. extra: 1692 / 1630,
  22500. bottom: 20 / 1712
  22501. }
  22502. },
  22503. },
  22504. [
  22505. {
  22506. name: "Normal",
  22507. height: math.unit(172, "cm"),
  22508. default: true
  22509. },
  22510. ]
  22511. ))
  22512. characterMakers.push(() => makeCharacter(
  22513. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22514. {
  22515. front: {
  22516. height: math.unit(6, "feet"),
  22517. weight: math.unit(220, "lb"),
  22518. name: "Front",
  22519. image: {
  22520. source: "./media/characters/lynn-rhea/front.svg",
  22521. extra: 310 / 273
  22522. }
  22523. },
  22524. back: {
  22525. height: math.unit(6, "feet"),
  22526. weight: math.unit(220, "lb"),
  22527. name: "Back",
  22528. image: {
  22529. source: "./media/characters/lynn-rhea/back.svg",
  22530. extra: 310 / 273
  22531. }
  22532. },
  22533. dicks: {
  22534. height: math.unit(0.9, "feet"),
  22535. name: "Dicks",
  22536. image: {
  22537. source: "./media/characters/lynn-rhea/dicks.svg"
  22538. }
  22539. },
  22540. slit: {
  22541. height: math.unit(0.4, "feet"),
  22542. name: "Slit",
  22543. image: {
  22544. source: "./media/characters/lynn-rhea/slit.svg"
  22545. }
  22546. },
  22547. },
  22548. [
  22549. {
  22550. name: "Micro",
  22551. height: math.unit(1, "inch")
  22552. },
  22553. {
  22554. name: "Macro",
  22555. height: math.unit(60, "feet"),
  22556. default: true
  22557. },
  22558. {
  22559. name: "Megamacro",
  22560. height: math.unit(2, "miles")
  22561. },
  22562. {
  22563. name: "Gigamacro",
  22564. height: math.unit(3, "earths")
  22565. },
  22566. {
  22567. name: "Galactic",
  22568. height: math.unit(0.8, "galaxies")
  22569. },
  22570. ]
  22571. ))
  22572. characterMakers.push(() => makeCharacter(
  22573. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22574. {
  22575. front: {
  22576. height: math.unit(1600, "feet"),
  22577. weight: math.unit(85758785169, "kg"),
  22578. name: "Front",
  22579. image: {
  22580. source: "./media/characters/valathos/front.svg",
  22581. extra: 1451 / 1339
  22582. }
  22583. },
  22584. },
  22585. [
  22586. {
  22587. name: "Macro",
  22588. height: math.unit(1600, "feet"),
  22589. default: true
  22590. },
  22591. ]
  22592. ))
  22593. characterMakers.push(() => makeCharacter(
  22594. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22595. {
  22596. front: {
  22597. height: math.unit(7 + 5 / 12, "feet"),
  22598. weight: math.unit(300, "lb"),
  22599. name: "Front",
  22600. image: {
  22601. source: "./media/characters/azula/front.svg",
  22602. extra: 3208 / 2880,
  22603. bottom: 80.2 / 3277
  22604. }
  22605. },
  22606. back: {
  22607. height: math.unit(7 + 5 / 12, "feet"),
  22608. weight: math.unit(300, "lb"),
  22609. name: "Back",
  22610. image: {
  22611. source: "./media/characters/azula/back.svg",
  22612. extra: 3169 / 2822,
  22613. bottom: 150.6 / 3321
  22614. }
  22615. },
  22616. },
  22617. [
  22618. {
  22619. name: "Normal",
  22620. height: math.unit(7 + 5 / 12, "feet"),
  22621. default: true
  22622. },
  22623. {
  22624. name: "Big",
  22625. height: math.unit(20, "feet")
  22626. },
  22627. ]
  22628. ))
  22629. characterMakers.push(() => makeCharacter(
  22630. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22631. {
  22632. front: {
  22633. height: math.unit(5 + 1 / 12, "feet"),
  22634. weight: math.unit(110, "lb"),
  22635. name: "Front",
  22636. image: {
  22637. source: "./media/characters/rupert/front.svg",
  22638. extra: 1549 / 1495,
  22639. bottom: 54.2 / 1604.4
  22640. }
  22641. },
  22642. },
  22643. [
  22644. {
  22645. name: "Normal",
  22646. height: math.unit(5 + 1 / 12, "feet"),
  22647. default: true
  22648. },
  22649. ]
  22650. ))
  22651. characterMakers.push(() => makeCharacter(
  22652. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  22653. {
  22654. front: {
  22655. height: math.unit(8 + 4 / 12, "feet"),
  22656. weight: math.unit(350, "lb"),
  22657. name: "Front",
  22658. image: {
  22659. source: "./media/characters/sheera-castellar/front.svg",
  22660. extra: 1957 / 1894,
  22661. bottom: 26.97 / 1975.017
  22662. }
  22663. },
  22664. side: {
  22665. height: math.unit(8 + 4 / 12, "feet"),
  22666. weight: math.unit(350, "lb"),
  22667. name: "Side",
  22668. image: {
  22669. source: "./media/characters/sheera-castellar/side.svg",
  22670. extra: 1957 / 1894
  22671. }
  22672. },
  22673. back: {
  22674. height: math.unit(8 + 4 / 12, "feet"),
  22675. weight: math.unit(350, "lb"),
  22676. name: "Back",
  22677. image: {
  22678. source: "./media/characters/sheera-castellar/back.svg",
  22679. extra: 1957 / 1894
  22680. }
  22681. },
  22682. angled: {
  22683. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22684. weight: math.unit(350, "lb"),
  22685. name: "Angled",
  22686. image: {
  22687. source: "./media/characters/sheera-castellar/angled.svg",
  22688. extra: 1807 / 1707,
  22689. bottom: 68 / 1875
  22690. }
  22691. },
  22692. genitals: {
  22693. height: math.unit(2.2, "feet"),
  22694. name: "Genitals",
  22695. image: {
  22696. source: "./media/characters/sheera-castellar/genitals.svg"
  22697. }
  22698. },
  22699. taur: {
  22700. height: math.unit(10 + 6/12, "feet"),
  22701. name: "Taur",
  22702. image: {
  22703. source: "./media/characters/sheera-castellar/taur.svg",
  22704. extra: 2017/1909,
  22705. bottom: 185/2202
  22706. }
  22707. },
  22708. },
  22709. [
  22710. {
  22711. name: "Normal",
  22712. height: math.unit(8 + 4 / 12, "feet")
  22713. },
  22714. {
  22715. name: "Macro",
  22716. height: math.unit(150, "feet"),
  22717. default: true
  22718. },
  22719. {
  22720. name: "Macro+",
  22721. height: math.unit(800, "feet")
  22722. },
  22723. ]
  22724. ))
  22725. characterMakers.push(() => makeCharacter(
  22726. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22727. {
  22728. front: {
  22729. height: math.unit(6, "feet"),
  22730. weight: math.unit(150, "lb"),
  22731. name: "Front",
  22732. image: {
  22733. source: "./media/characters/jaipur/front.svg",
  22734. extra: 3860 / 3731,
  22735. bottom: 287 / 4140
  22736. }
  22737. },
  22738. back: {
  22739. height: math.unit(6, "feet"),
  22740. weight: math.unit(150, "lb"),
  22741. name: "Back",
  22742. image: {
  22743. source: "./media/characters/jaipur/back.svg",
  22744. extra: 4060 / 3930,
  22745. bottom: 151 / 4200
  22746. }
  22747. },
  22748. },
  22749. [
  22750. {
  22751. name: "Normal",
  22752. height: math.unit(1.85, "meters"),
  22753. default: true
  22754. },
  22755. {
  22756. name: "Macro",
  22757. height: math.unit(150, "meters")
  22758. },
  22759. {
  22760. name: "Macro+",
  22761. height: math.unit(0.5, "miles")
  22762. },
  22763. {
  22764. name: "Macro++",
  22765. height: math.unit(2.5, "miles")
  22766. },
  22767. {
  22768. name: "Macro+++",
  22769. height: math.unit(12, "miles")
  22770. },
  22771. {
  22772. name: "Macro++++",
  22773. height: math.unit(120, "miles")
  22774. },
  22775. {
  22776. name: "Macro+++++",
  22777. height: math.unit(1200, "miles")
  22778. },
  22779. ]
  22780. ))
  22781. characterMakers.push(() => makeCharacter(
  22782. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22783. {
  22784. front: {
  22785. height: math.unit(6, "feet"),
  22786. weight: math.unit(150, "lb"),
  22787. name: "Front",
  22788. image: {
  22789. source: "./media/characters/sheila-wolf/front.svg",
  22790. extra: 1931 / 1808,
  22791. bottom: 29.5 / 1960
  22792. }
  22793. },
  22794. dick: {
  22795. height: math.unit(1.464, "feet"),
  22796. name: "Dick",
  22797. image: {
  22798. source: "./media/characters/sheila-wolf/dick.svg"
  22799. }
  22800. },
  22801. muzzle: {
  22802. height: math.unit(0.513, "feet"),
  22803. name: "Muzzle",
  22804. image: {
  22805. source: "./media/characters/sheila-wolf/muzzle.svg"
  22806. }
  22807. },
  22808. },
  22809. [
  22810. {
  22811. name: "Macro",
  22812. height: math.unit(70, "feet"),
  22813. default: true
  22814. },
  22815. ]
  22816. ))
  22817. characterMakers.push(() => makeCharacter(
  22818. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22819. {
  22820. front: {
  22821. height: math.unit(32, "meters"),
  22822. weight: math.unit(300000, "kg"),
  22823. name: "Front",
  22824. image: {
  22825. source: "./media/characters/almor/front.svg",
  22826. extra: 1408 / 1322,
  22827. bottom: 94.6 / 1506.5
  22828. }
  22829. },
  22830. },
  22831. [
  22832. {
  22833. name: "Macro",
  22834. height: math.unit(32, "meters"),
  22835. default: true
  22836. },
  22837. ]
  22838. ))
  22839. characterMakers.push(() => makeCharacter(
  22840. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22841. {
  22842. front: {
  22843. height: math.unit(7, "feet"),
  22844. weight: math.unit(200, "lb"),
  22845. name: "Front",
  22846. image: {
  22847. source: "./media/characters/silver/front.svg",
  22848. extra: 472.1 / 450.5,
  22849. bottom: 26.5 / 499.424
  22850. }
  22851. },
  22852. },
  22853. [
  22854. {
  22855. name: "Normal",
  22856. height: math.unit(7, "feet"),
  22857. default: true
  22858. },
  22859. {
  22860. name: "Macro",
  22861. height: math.unit(800, "feet")
  22862. },
  22863. {
  22864. name: "Megamacro",
  22865. height: math.unit(250, "miles")
  22866. },
  22867. ]
  22868. ))
  22869. characterMakers.push(() => makeCharacter(
  22870. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22871. {
  22872. front: {
  22873. height: math.unit(6, "feet"),
  22874. weight: math.unit(150, "lb"),
  22875. name: "Front",
  22876. image: {
  22877. source: "./media/characters/pliskin/front.svg",
  22878. extra: 1469 / 1359,
  22879. bottom: 70 / 1540
  22880. }
  22881. },
  22882. },
  22883. [
  22884. {
  22885. name: "Micro",
  22886. height: math.unit(3, "inches")
  22887. },
  22888. {
  22889. name: "Normal",
  22890. height: math.unit(5 + 11 / 12, "feet"),
  22891. default: true
  22892. },
  22893. {
  22894. name: "Macro",
  22895. height: math.unit(120, "feet")
  22896. },
  22897. ]
  22898. ))
  22899. characterMakers.push(() => makeCharacter(
  22900. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22901. {
  22902. front: {
  22903. height: math.unit(6, "feet"),
  22904. weight: math.unit(150, "lb"),
  22905. name: "Front",
  22906. image: {
  22907. source: "./media/characters/sammy/front.svg",
  22908. extra: 1193 / 1089,
  22909. bottom: 30.5 / 1226
  22910. }
  22911. },
  22912. },
  22913. [
  22914. {
  22915. name: "Macro",
  22916. height: math.unit(1700, "feet"),
  22917. default: true
  22918. },
  22919. {
  22920. name: "Examacro",
  22921. height: math.unit(2.5e9, "lightyears")
  22922. },
  22923. ]
  22924. ))
  22925. characterMakers.push(() => makeCharacter(
  22926. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22927. {
  22928. front: {
  22929. height: math.unit(21, "meters"),
  22930. weight: math.unit(12, "tonnes"),
  22931. name: "Front",
  22932. image: {
  22933. source: "./media/characters/kuru/front.svg",
  22934. extra: 4301 / 3785,
  22935. bottom: 371.3 / 4691
  22936. }
  22937. },
  22938. },
  22939. [
  22940. {
  22941. name: "Macro",
  22942. height: math.unit(21, "meters"),
  22943. default: true
  22944. },
  22945. ]
  22946. ))
  22947. characterMakers.push(() => makeCharacter(
  22948. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22949. {
  22950. front: {
  22951. height: math.unit(23, "meters"),
  22952. weight: math.unit(12.2, "tonnes"),
  22953. name: "Front",
  22954. image: {
  22955. source: "./media/characters/rakka/front.svg",
  22956. extra: 4670 / 4169,
  22957. bottom: 301 / 4968.7
  22958. }
  22959. },
  22960. },
  22961. [
  22962. {
  22963. name: "Macro",
  22964. height: math.unit(23, "meters"),
  22965. default: true
  22966. },
  22967. ]
  22968. ))
  22969. characterMakers.push(() => makeCharacter(
  22970. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22971. {
  22972. front: {
  22973. height: math.unit(6, "feet"),
  22974. weight: math.unit(150, "lb"),
  22975. name: "Front",
  22976. image: {
  22977. source: "./media/characters/rhys-feline/front.svg",
  22978. extra: 2488 / 2308,
  22979. bottom: 35.67 / 2519.19
  22980. }
  22981. },
  22982. },
  22983. [
  22984. {
  22985. name: "Really Small",
  22986. height: math.unit(1, "nm")
  22987. },
  22988. {
  22989. name: "Micro",
  22990. height: math.unit(4, "inches")
  22991. },
  22992. {
  22993. name: "Normal",
  22994. height: math.unit(4 + 10 / 12, "feet"),
  22995. default: true
  22996. },
  22997. {
  22998. name: "Macro",
  22999. height: math.unit(100, "feet")
  23000. },
  23001. {
  23002. name: "Megamacto",
  23003. height: math.unit(50, "miles")
  23004. },
  23005. ]
  23006. ))
  23007. characterMakers.push(() => makeCharacter(
  23008. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23009. {
  23010. side: {
  23011. height: math.unit(30, "feet"),
  23012. weight: math.unit(35000, "kg"),
  23013. name: "Side",
  23014. image: {
  23015. source: "./media/characters/alydar/side.svg",
  23016. extra: 234 / 222,
  23017. bottom: 6.5 / 241
  23018. }
  23019. },
  23020. front: {
  23021. height: math.unit(30, "feet"),
  23022. weight: math.unit(35000, "kg"),
  23023. name: "Front",
  23024. image: {
  23025. source: "./media/characters/alydar/front.svg",
  23026. extra: 223.37 / 210.2,
  23027. bottom: 22.3 / 246.76
  23028. }
  23029. },
  23030. top: {
  23031. height: math.unit(64.54, "feet"),
  23032. weight: math.unit(35000, "kg"),
  23033. name: "Top",
  23034. image: {
  23035. source: "./media/characters/alydar/top.svg"
  23036. }
  23037. },
  23038. anthro: {
  23039. height: math.unit(30, "feet"),
  23040. weight: math.unit(9000, "kg"),
  23041. name: "Anthro",
  23042. image: {
  23043. source: "./media/characters/alydar/anthro.svg",
  23044. extra: 432 / 421,
  23045. bottom: 7.18 / 440
  23046. }
  23047. },
  23048. maw: {
  23049. height: math.unit(11.693, "feet"),
  23050. name: "Maw",
  23051. image: {
  23052. source: "./media/characters/alydar/maw.svg"
  23053. }
  23054. },
  23055. head: {
  23056. height: math.unit(11.693, "feet"),
  23057. name: "Head",
  23058. image: {
  23059. source: "./media/characters/alydar/head.svg"
  23060. }
  23061. },
  23062. headAlt: {
  23063. height: math.unit(12.861, "feet"),
  23064. name: "Head (Alt)",
  23065. image: {
  23066. source: "./media/characters/alydar/head-alt.svg"
  23067. }
  23068. },
  23069. wing: {
  23070. height: math.unit(20.712, "feet"),
  23071. name: "Wing",
  23072. image: {
  23073. source: "./media/characters/alydar/wing.svg"
  23074. }
  23075. },
  23076. wingFeather: {
  23077. height: math.unit(9.662, "feet"),
  23078. name: "Wing Feather",
  23079. image: {
  23080. source: "./media/characters/alydar/wing-feather.svg"
  23081. }
  23082. },
  23083. countourFeather: {
  23084. height: math.unit(4.154, "feet"),
  23085. name: "Contour Feather",
  23086. image: {
  23087. source: "./media/characters/alydar/contour-feather.svg"
  23088. }
  23089. },
  23090. },
  23091. [
  23092. {
  23093. name: "Diplomatic",
  23094. height: math.unit(13, "feet"),
  23095. default: true
  23096. },
  23097. {
  23098. name: "Small",
  23099. height: math.unit(30, "feet")
  23100. },
  23101. {
  23102. name: "Normal",
  23103. height: math.unit(95, "feet"),
  23104. default: true
  23105. },
  23106. {
  23107. name: "Large",
  23108. height: math.unit(285, "feet")
  23109. },
  23110. {
  23111. name: "Incomprehensible",
  23112. height: math.unit(450, "megameters")
  23113. },
  23114. ]
  23115. ))
  23116. characterMakers.push(() => makeCharacter(
  23117. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23118. {
  23119. side: {
  23120. height: math.unit(11, "feet"),
  23121. weight: math.unit(1750, "kg"),
  23122. name: "Side",
  23123. image: {
  23124. source: "./media/characters/selicia/side.svg",
  23125. extra: 440 / 396,
  23126. bottom: 24.8 / 465.979
  23127. }
  23128. },
  23129. maw: {
  23130. height: math.unit(4.665, "feet"),
  23131. name: "Maw",
  23132. image: {
  23133. source: "./media/characters/selicia/maw.svg"
  23134. }
  23135. },
  23136. },
  23137. [
  23138. {
  23139. name: "Normal",
  23140. height: math.unit(11, "feet"),
  23141. default: true
  23142. },
  23143. ]
  23144. ))
  23145. characterMakers.push(() => makeCharacter(
  23146. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23147. {
  23148. side: {
  23149. height: math.unit(2 + 6 / 12, "feet"),
  23150. weight: math.unit(30, "lb"),
  23151. name: "Side",
  23152. image: {
  23153. source: "./media/characters/layla/side.svg",
  23154. extra: 244 / 188,
  23155. bottom: 18.2 / 262.1
  23156. }
  23157. },
  23158. back: {
  23159. height: math.unit(2 + 6 / 12, "feet"),
  23160. weight: math.unit(30, "lb"),
  23161. name: "Back",
  23162. image: {
  23163. source: "./media/characters/layla/back.svg",
  23164. extra: 308 / 241.5,
  23165. bottom: 8.9 / 316.8
  23166. }
  23167. },
  23168. cumming: {
  23169. height: math.unit(2 + 6 / 12, "feet"),
  23170. weight: math.unit(30, "lb"),
  23171. name: "Cumming",
  23172. image: {
  23173. source: "./media/characters/layla/cumming.svg",
  23174. extra: 342 / 279,
  23175. bottom: 595 / 938
  23176. }
  23177. },
  23178. dickFlaccid: {
  23179. height: math.unit(2.595, "feet"),
  23180. name: "Flaccid Genitals",
  23181. image: {
  23182. source: "./media/characters/layla/dick-flaccid.svg"
  23183. }
  23184. },
  23185. dickErect: {
  23186. height: math.unit(2.359, "feet"),
  23187. name: "Erect Genitals",
  23188. image: {
  23189. source: "./media/characters/layla/dick-erect.svg"
  23190. }
  23191. },
  23192. dragon: {
  23193. height: math.unit(40, "feet"),
  23194. name: "Dragon",
  23195. image: {
  23196. source: "./media/characters/layla/dragon.svg",
  23197. extra: 610/535,
  23198. bottom: 367/977
  23199. }
  23200. },
  23201. taur: {
  23202. height: math.unit(30, "feet"),
  23203. name: "Taur",
  23204. image: {
  23205. source: "./media/characters/layla/taur.svg",
  23206. extra: 1268/1199,
  23207. bottom: 112/1380
  23208. }
  23209. },
  23210. },
  23211. [
  23212. {
  23213. name: "Micro",
  23214. height: math.unit(1, "inch")
  23215. },
  23216. {
  23217. name: "Small",
  23218. height: math.unit(1, "foot")
  23219. },
  23220. {
  23221. name: "Normal",
  23222. height: math.unit(2 + 6 / 12, "feet"),
  23223. default: true
  23224. },
  23225. {
  23226. name: "Macro",
  23227. height: math.unit(200, "feet")
  23228. },
  23229. {
  23230. name: "Megamacro",
  23231. height: math.unit(1000, "miles")
  23232. },
  23233. {
  23234. name: "Planetary",
  23235. height: math.unit(8000, "miles")
  23236. },
  23237. {
  23238. name: "True Layla",
  23239. height: math.unit(200000 * 7, "multiverses")
  23240. },
  23241. ]
  23242. ))
  23243. characterMakers.push(() => makeCharacter(
  23244. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23245. {
  23246. back: {
  23247. height: math.unit(10.5, "feet"),
  23248. weight: math.unit(800, "lb"),
  23249. name: "Back",
  23250. image: {
  23251. source: "./media/characters/knox/back.svg",
  23252. extra: 1486 / 1089,
  23253. bottom: 107 / 1601.4
  23254. }
  23255. },
  23256. side: {
  23257. height: math.unit(10.5, "feet"),
  23258. weight: math.unit(800, "lb"),
  23259. name: "Side",
  23260. image: {
  23261. source: "./media/characters/knox/side.svg",
  23262. extra: 244 / 218,
  23263. bottom: 14 / 260
  23264. }
  23265. },
  23266. },
  23267. [
  23268. {
  23269. name: "Compact",
  23270. height: math.unit(10.5, "feet"),
  23271. default: true
  23272. },
  23273. {
  23274. name: "Dynamax",
  23275. height: math.unit(210, "feet")
  23276. },
  23277. {
  23278. name: "Full Macro",
  23279. height: math.unit(850, "feet")
  23280. },
  23281. ]
  23282. ))
  23283. characterMakers.push(() => makeCharacter(
  23284. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23285. {
  23286. front: {
  23287. height: math.unit(6, "feet"),
  23288. weight: math.unit(152, "lb"),
  23289. name: "Front",
  23290. image: {
  23291. source: "./media/characters/shin-pikachu/front.svg",
  23292. extra: 1574 / 1480,
  23293. bottom: 53.3 / 1626
  23294. }
  23295. },
  23296. hand: {
  23297. height: math.unit(1.055, "feet"),
  23298. name: "Hand",
  23299. image: {
  23300. source: "./media/characters/shin-pikachu/hand.svg"
  23301. }
  23302. },
  23303. foot: {
  23304. height: math.unit(1.1, "feet"),
  23305. name: "Foot",
  23306. image: {
  23307. source: "./media/characters/shin-pikachu/foot.svg"
  23308. }
  23309. },
  23310. collar: {
  23311. height: math.unit(0.386, "feet"),
  23312. name: "Collar",
  23313. image: {
  23314. source: "./media/characters/shin-pikachu/collar.svg"
  23315. }
  23316. },
  23317. },
  23318. [
  23319. {
  23320. name: "Smallest",
  23321. height: math.unit(0.5, "inches")
  23322. },
  23323. {
  23324. name: "Micro",
  23325. height: math.unit(6, "inches")
  23326. },
  23327. {
  23328. name: "Normal",
  23329. height: math.unit(6, "feet"),
  23330. default: true
  23331. },
  23332. {
  23333. name: "Macro",
  23334. height: math.unit(150, "feet")
  23335. },
  23336. ]
  23337. ))
  23338. characterMakers.push(() => makeCharacter(
  23339. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23340. {
  23341. front: {
  23342. height: math.unit(28, "feet"),
  23343. weight: math.unit(10500, "lb"),
  23344. name: "Front",
  23345. image: {
  23346. source: "./media/characters/kayda/front.svg",
  23347. extra: 1536 / 1428,
  23348. bottom: 68.7 / 1603
  23349. }
  23350. },
  23351. back: {
  23352. height: math.unit(28, "feet"),
  23353. weight: math.unit(10500, "lb"),
  23354. name: "Back",
  23355. image: {
  23356. source: "./media/characters/kayda/back.svg",
  23357. extra: 1557 / 1464,
  23358. bottom: 39.5 / 1597.49
  23359. }
  23360. },
  23361. dick: {
  23362. height: math.unit(3.858, "feet"),
  23363. name: "Dick",
  23364. image: {
  23365. source: "./media/characters/kayda/dick.svg"
  23366. }
  23367. },
  23368. },
  23369. [
  23370. {
  23371. name: "Macro",
  23372. height: math.unit(28, "feet"),
  23373. default: true
  23374. },
  23375. ]
  23376. ))
  23377. characterMakers.push(() => makeCharacter(
  23378. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23379. {
  23380. front: {
  23381. height: math.unit(10 + 11 / 12, "feet"),
  23382. weight: math.unit(1400, "lb"),
  23383. name: "Front",
  23384. image: {
  23385. source: "./media/characters/brian/front.svg",
  23386. extra: 737 / 692,
  23387. bottom: 55.4 / 785
  23388. }
  23389. },
  23390. },
  23391. [
  23392. {
  23393. name: "Normal",
  23394. height: math.unit(10 + 11 / 12, "feet"),
  23395. default: true
  23396. },
  23397. ]
  23398. ))
  23399. characterMakers.push(() => makeCharacter(
  23400. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23401. {
  23402. front: {
  23403. height: math.unit(5 + 8 / 12, "feet"),
  23404. weight: math.unit(140, "lb"),
  23405. name: "Front",
  23406. image: {
  23407. source: "./media/characters/khemri/front.svg",
  23408. extra: 4780 / 4059,
  23409. bottom: 80.1 / 4859.25
  23410. }
  23411. },
  23412. },
  23413. [
  23414. {
  23415. name: "Micro",
  23416. height: math.unit(6, "inches")
  23417. },
  23418. {
  23419. name: "Normal",
  23420. height: math.unit(5 + 8 / 12, "feet"),
  23421. default: true
  23422. },
  23423. ]
  23424. ))
  23425. characterMakers.push(() => makeCharacter(
  23426. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23427. {
  23428. front: {
  23429. height: math.unit(13, "feet"),
  23430. weight: math.unit(1700, "lb"),
  23431. name: "Front",
  23432. image: {
  23433. source: "./media/characters/felix-braveheart/front.svg",
  23434. extra: 1222 / 1157,
  23435. bottom: 53.2 / 1280
  23436. }
  23437. },
  23438. back: {
  23439. height: math.unit(13, "feet"),
  23440. weight: math.unit(1700, "lb"),
  23441. name: "Back",
  23442. image: {
  23443. source: "./media/characters/felix-braveheart/back.svg",
  23444. extra: 1277 / 1203,
  23445. bottom: 50.2 / 1327
  23446. }
  23447. },
  23448. feral: {
  23449. height: math.unit(6, "feet"),
  23450. weight: math.unit(400, "lb"),
  23451. name: "Feral",
  23452. image: {
  23453. source: "./media/characters/felix-braveheart/feral.svg",
  23454. extra: 682 / 625,
  23455. bottom: 6.9 / 688
  23456. }
  23457. },
  23458. },
  23459. [
  23460. {
  23461. name: "Normal",
  23462. height: math.unit(13, "feet"),
  23463. default: true
  23464. },
  23465. ]
  23466. ))
  23467. characterMakers.push(() => makeCharacter(
  23468. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23469. {
  23470. side: {
  23471. height: math.unit(5 + 11 / 12, "feet"),
  23472. weight: math.unit(1400, "lb"),
  23473. name: "Side",
  23474. image: {
  23475. source: "./media/characters/shadow-blade/side.svg",
  23476. extra: 1726 / 1267,
  23477. bottom: 58.4 / 1785
  23478. }
  23479. },
  23480. },
  23481. [
  23482. {
  23483. name: "Normal",
  23484. height: math.unit(5 + 11 / 12, "feet"),
  23485. default: true
  23486. },
  23487. ]
  23488. ))
  23489. characterMakers.push(() => makeCharacter(
  23490. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23491. {
  23492. front: {
  23493. height: math.unit(1 + 6 / 12, "feet"),
  23494. weight: math.unit(25, "lb"),
  23495. name: "Front",
  23496. image: {
  23497. source: "./media/characters/karla-halldor/front.svg",
  23498. extra: 1459 / 1383,
  23499. bottom: 12 / 1472
  23500. }
  23501. },
  23502. },
  23503. [
  23504. {
  23505. name: "Normal",
  23506. height: math.unit(1 + 6 / 12, "feet"),
  23507. default: true
  23508. },
  23509. ]
  23510. ))
  23511. characterMakers.push(() => makeCharacter(
  23512. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23513. {
  23514. front: {
  23515. height: math.unit(6 + 2 / 12, "feet"),
  23516. weight: math.unit(160, "lb"),
  23517. name: "Front",
  23518. image: {
  23519. source: "./media/characters/ariam/front.svg",
  23520. extra: 714 / 617,
  23521. bottom: 23.4 / 737,
  23522. }
  23523. },
  23524. squatting: {
  23525. height: math.unit(4.1, "feet"),
  23526. weight: math.unit(160, "lb"),
  23527. name: "Squatting",
  23528. image: {
  23529. source: "./media/characters/ariam/squatting.svg",
  23530. extra: 2617 / 2112,
  23531. bottom: 61.2 / 2681,
  23532. }
  23533. },
  23534. },
  23535. [
  23536. {
  23537. name: "Normal",
  23538. height: math.unit(6 + 2 / 12, "feet"),
  23539. default: true
  23540. },
  23541. {
  23542. name: "Normal+",
  23543. height: math.unit(4, "meters")
  23544. },
  23545. {
  23546. name: "Macro",
  23547. height: math.unit(50, "meters")
  23548. },
  23549. {
  23550. name: "Macro+",
  23551. height: math.unit(100, "meters")
  23552. },
  23553. {
  23554. name: "Megamacro",
  23555. height: math.unit(20, "km")
  23556. },
  23557. ]
  23558. ))
  23559. characterMakers.push(() => makeCharacter(
  23560. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23561. {
  23562. front: {
  23563. height: math.unit(1.67, "meters"),
  23564. weight: math.unit(140, "lb"),
  23565. name: "Front",
  23566. image: {
  23567. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23568. extra: 438 / 410,
  23569. bottom: 0.75 / 439
  23570. }
  23571. },
  23572. },
  23573. [
  23574. {
  23575. name: "Shrunken",
  23576. height: math.unit(7.6, "cm")
  23577. },
  23578. {
  23579. name: "Human Scale",
  23580. height: math.unit(1.67, "meters")
  23581. },
  23582. {
  23583. name: "Wolxi Scale",
  23584. height: math.unit(36.7, "meters"),
  23585. default: true
  23586. },
  23587. ]
  23588. ))
  23589. characterMakers.push(() => makeCharacter(
  23590. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23591. {
  23592. front: {
  23593. height: math.unit(1.73, "meters"),
  23594. weight: math.unit(240, "lb"),
  23595. name: "Front",
  23596. image: {
  23597. source: "./media/characters/izue-two-mothers/front.svg",
  23598. extra: 469 / 437,
  23599. bottom: 1.24 / 470.6
  23600. }
  23601. },
  23602. },
  23603. [
  23604. {
  23605. name: "Shrunken",
  23606. height: math.unit(7.86, "cm")
  23607. },
  23608. {
  23609. name: "Human Scale",
  23610. height: math.unit(1.73, "meters")
  23611. },
  23612. {
  23613. name: "Wolxi Scale",
  23614. height: math.unit(38, "meters"),
  23615. default: true
  23616. },
  23617. ]
  23618. ))
  23619. characterMakers.push(() => makeCharacter(
  23620. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23621. {
  23622. front: {
  23623. height: math.unit(1.55, "meters"),
  23624. weight: math.unit(120, "lb"),
  23625. name: "Front",
  23626. image: {
  23627. source: "./media/characters/teeku-love-shack/front.svg",
  23628. extra: 387 / 362,
  23629. bottom: 1.51 / 388
  23630. }
  23631. },
  23632. },
  23633. [
  23634. {
  23635. name: "Shrunken",
  23636. height: math.unit(7, "cm")
  23637. },
  23638. {
  23639. name: "Human Scale",
  23640. height: math.unit(1.55, "meters")
  23641. },
  23642. {
  23643. name: "Wolxi Scale",
  23644. height: math.unit(34.1, "meters"),
  23645. default: true
  23646. },
  23647. ]
  23648. ))
  23649. characterMakers.push(() => makeCharacter(
  23650. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23651. {
  23652. front: {
  23653. height: math.unit(1.83, "meters"),
  23654. weight: math.unit(135, "lb"),
  23655. name: "Front",
  23656. image: {
  23657. source: "./media/characters/dejma-the-red/front.svg",
  23658. extra: 480 / 458,
  23659. bottom: 1.8 / 482
  23660. }
  23661. },
  23662. },
  23663. [
  23664. {
  23665. name: "Shrunken",
  23666. height: math.unit(8.3, "cm")
  23667. },
  23668. {
  23669. name: "Human Scale",
  23670. height: math.unit(1.83, "meters")
  23671. },
  23672. {
  23673. name: "Wolxi Scale",
  23674. height: math.unit(40, "meters"),
  23675. default: true
  23676. },
  23677. ]
  23678. ))
  23679. characterMakers.push(() => makeCharacter(
  23680. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23681. {
  23682. front: {
  23683. height: math.unit(1.78, "meters"),
  23684. weight: math.unit(65, "kg"),
  23685. name: "Front",
  23686. image: {
  23687. source: "./media/characters/aki/front.svg",
  23688. extra: 452 / 415
  23689. }
  23690. },
  23691. frontNsfw: {
  23692. height: math.unit(1.78, "meters"),
  23693. weight: math.unit(65, "kg"),
  23694. name: "Front (NSFW)",
  23695. image: {
  23696. source: "./media/characters/aki/front-nsfw.svg",
  23697. extra: 452 / 415
  23698. }
  23699. },
  23700. back: {
  23701. height: math.unit(1.78, "meters"),
  23702. weight: math.unit(65, "kg"),
  23703. name: "Back",
  23704. image: {
  23705. source: "./media/characters/aki/back.svg",
  23706. extra: 452 / 415
  23707. }
  23708. },
  23709. rump: {
  23710. height: math.unit(2.05, "feet"),
  23711. name: "Rump",
  23712. image: {
  23713. source: "./media/characters/aki/rump.svg"
  23714. }
  23715. },
  23716. dick: {
  23717. height: math.unit(0.95, "feet"),
  23718. name: "Dick",
  23719. image: {
  23720. source: "./media/characters/aki/dick.svg"
  23721. }
  23722. },
  23723. },
  23724. [
  23725. {
  23726. name: "Micro",
  23727. height: math.unit(15, "cm")
  23728. },
  23729. {
  23730. name: "Normal",
  23731. height: math.unit(178, "cm"),
  23732. default: true
  23733. },
  23734. {
  23735. name: "Macro",
  23736. height: math.unit(214, "m")
  23737. },
  23738. {
  23739. name: "Macro+",
  23740. height: math.unit(534, "m")
  23741. },
  23742. ]
  23743. ))
  23744. characterMakers.push(() => makeCharacter(
  23745. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23746. {
  23747. front: {
  23748. height: math.unit(5 + 5 / 12, "feet"),
  23749. weight: math.unit(120, "lb"),
  23750. name: "Front",
  23751. image: {
  23752. source: "./media/characters/ari/front.svg",
  23753. extra: 714.5 / 682,
  23754. bottom: 8 / 722.5
  23755. }
  23756. },
  23757. },
  23758. [
  23759. {
  23760. name: "Normal",
  23761. height: math.unit(5 + 5 / 12, "feet")
  23762. },
  23763. {
  23764. name: "Macro",
  23765. height: math.unit(100, "feet"),
  23766. default: true
  23767. },
  23768. {
  23769. name: "Megamacro",
  23770. height: math.unit(100, "miles")
  23771. },
  23772. {
  23773. name: "Gigamacro",
  23774. height: math.unit(80000, "miles")
  23775. },
  23776. ]
  23777. ))
  23778. characterMakers.push(() => makeCharacter(
  23779. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23780. {
  23781. side: {
  23782. height: math.unit(9, "feet"),
  23783. weight: math.unit(400, "kg"),
  23784. name: "Side",
  23785. image: {
  23786. source: "./media/characters/bolt/side.svg",
  23787. extra: 1126 / 896,
  23788. bottom: 60 / 1187.3,
  23789. }
  23790. },
  23791. },
  23792. [
  23793. {
  23794. name: "Micro",
  23795. height: math.unit(5, "inches")
  23796. },
  23797. {
  23798. name: "Normal",
  23799. height: math.unit(9, "feet"),
  23800. default: true
  23801. },
  23802. {
  23803. name: "Macro",
  23804. height: math.unit(700, "feet")
  23805. },
  23806. {
  23807. name: "Max Size",
  23808. height: math.unit(1.52e22, "yottameters")
  23809. },
  23810. ]
  23811. ))
  23812. characterMakers.push(() => makeCharacter(
  23813. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23814. {
  23815. front: {
  23816. height: math.unit(4.53, "meters"),
  23817. weight: math.unit(3, "tons"),
  23818. name: "Front",
  23819. image: {
  23820. source: "./media/characters/draekon-sylviar/front.svg",
  23821. extra: 1228 / 1068,
  23822. bottom: 41 / 1270
  23823. }
  23824. },
  23825. tail: {
  23826. height: math.unit(1.772, "meter"),
  23827. name: "Tail",
  23828. image: {
  23829. source: "./media/characters/draekon-sylviar/tail.svg"
  23830. }
  23831. },
  23832. head: {
  23833. height: math.unit(1.331, "meter"),
  23834. name: "Head",
  23835. image: {
  23836. source: "./media/characters/draekon-sylviar/head.svg"
  23837. }
  23838. },
  23839. hand: {
  23840. height: math.unit(0.564, "meter"),
  23841. name: "Hand",
  23842. image: {
  23843. source: "./media/characters/draekon-sylviar/hand.svg"
  23844. }
  23845. },
  23846. foot: {
  23847. height: math.unit(0.621, "meter"),
  23848. name: "Foot",
  23849. image: {
  23850. source: "./media/characters/draekon-sylviar/foot.svg",
  23851. bottom: 32 / 324
  23852. }
  23853. },
  23854. dick: {
  23855. height: math.unit(61, "cm"),
  23856. name: "Dick",
  23857. image: {
  23858. source: "./media/characters/draekon-sylviar/dick.svg"
  23859. }
  23860. },
  23861. dickseparated: {
  23862. height: math.unit(61, "cm"),
  23863. name: "Dick-separated",
  23864. image: {
  23865. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23866. }
  23867. },
  23868. },
  23869. [
  23870. {
  23871. name: "Small",
  23872. height: math.unit(4.53 / 2, "meters"),
  23873. default: true
  23874. },
  23875. {
  23876. name: "Normal",
  23877. height: math.unit(4.53, "meters"),
  23878. default: true
  23879. },
  23880. {
  23881. name: "Large",
  23882. height: math.unit(4.53 * 2, "meters"),
  23883. },
  23884. ]
  23885. ))
  23886. characterMakers.push(() => makeCharacter(
  23887. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23888. {
  23889. front: {
  23890. height: math.unit(6 + 2 / 12, "feet"),
  23891. weight: math.unit(180, "lb"),
  23892. name: "Front",
  23893. image: {
  23894. source: "./media/characters/brawler/front.svg",
  23895. extra: 3301 / 3027,
  23896. bottom: 138 / 3439
  23897. }
  23898. },
  23899. },
  23900. [
  23901. {
  23902. name: "Normal",
  23903. height: math.unit(6 + 2 / 12, "feet"),
  23904. default: true
  23905. },
  23906. ]
  23907. ))
  23908. characterMakers.push(() => makeCharacter(
  23909. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23910. {
  23911. front: {
  23912. height: math.unit(11, "feet"),
  23913. weight: math.unit(1000, "lb"),
  23914. name: "Front",
  23915. image: {
  23916. source: "./media/characters/alex/front.svg",
  23917. bottom: 44.5 / 620
  23918. }
  23919. },
  23920. },
  23921. [
  23922. {
  23923. name: "Micro",
  23924. height: math.unit(5, "inches")
  23925. },
  23926. {
  23927. name: "Normal",
  23928. height: math.unit(11, "feet"),
  23929. default: true
  23930. },
  23931. {
  23932. name: "Macro",
  23933. height: math.unit(9.5e9, "feet")
  23934. },
  23935. {
  23936. name: "Max Size",
  23937. height: math.unit(1.4e283, "yottameters")
  23938. },
  23939. ]
  23940. ))
  23941. characterMakers.push(() => makeCharacter(
  23942. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23943. {
  23944. female: {
  23945. height: math.unit(29.9, "m"),
  23946. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23947. name: "Female",
  23948. image: {
  23949. source: "./media/characters/zenari/female.svg",
  23950. extra: 3281.6 / 3217,
  23951. bottom: 72.2 / 3353
  23952. }
  23953. },
  23954. male: {
  23955. height: math.unit(27.7, "m"),
  23956. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23957. name: "Male",
  23958. image: {
  23959. source: "./media/characters/zenari/male.svg",
  23960. extra: 3008 / 2991,
  23961. bottom: 54.6 / 3069
  23962. }
  23963. },
  23964. },
  23965. [
  23966. {
  23967. name: "Macro",
  23968. height: math.unit(29.7, "meters"),
  23969. default: true
  23970. },
  23971. ]
  23972. ))
  23973. characterMakers.push(() => makeCharacter(
  23974. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23975. {
  23976. female: {
  23977. height: math.unit(23.8, "m"),
  23978. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23979. name: "Female",
  23980. image: {
  23981. source: "./media/characters/mactarian/female.svg",
  23982. extra: 2662 / 2569,
  23983. bottom: 73 / 2736
  23984. }
  23985. },
  23986. male: {
  23987. height: math.unit(23.8, "m"),
  23988. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23989. name: "Male",
  23990. image: {
  23991. source: "./media/characters/mactarian/male.svg",
  23992. extra: 2673 / 2600,
  23993. bottom: 76 / 2750
  23994. }
  23995. },
  23996. },
  23997. [
  23998. {
  23999. name: "Macro",
  24000. height: math.unit(23.8, "meters"),
  24001. default: true
  24002. },
  24003. ]
  24004. ))
  24005. characterMakers.push(() => makeCharacter(
  24006. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24007. {
  24008. female: {
  24009. height: math.unit(19.3, "m"),
  24010. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24011. name: "Female",
  24012. image: {
  24013. source: "./media/characters/umok/female.svg",
  24014. extra: 2186 / 2078,
  24015. bottom: 87 / 2277
  24016. }
  24017. },
  24018. male: {
  24019. height: math.unit(19.5, "m"),
  24020. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24021. name: "Male",
  24022. image: {
  24023. source: "./media/characters/umok/male.svg",
  24024. extra: 2233 / 2140,
  24025. bottom: 24.4 / 2258
  24026. }
  24027. },
  24028. },
  24029. [
  24030. {
  24031. name: "Macro",
  24032. height: math.unit(19.3, "meters"),
  24033. default: true
  24034. },
  24035. ]
  24036. ))
  24037. characterMakers.push(() => makeCharacter(
  24038. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24039. {
  24040. female: {
  24041. height: math.unit(26.15, "m"),
  24042. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24043. name: "Female",
  24044. image: {
  24045. source: "./media/characters/joraxian/female.svg",
  24046. extra: 2912 / 2824,
  24047. bottom: 36 / 2956
  24048. }
  24049. },
  24050. male: {
  24051. height: math.unit(25.4, "m"),
  24052. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24053. name: "Male",
  24054. image: {
  24055. source: "./media/characters/joraxian/male.svg",
  24056. extra: 2877 / 2721,
  24057. bottom: 82 / 2967
  24058. }
  24059. },
  24060. },
  24061. [
  24062. {
  24063. name: "Macro",
  24064. height: math.unit(26.15, "meters"),
  24065. default: true
  24066. },
  24067. ]
  24068. ))
  24069. characterMakers.push(() => makeCharacter(
  24070. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24071. {
  24072. female: {
  24073. height: math.unit(21.6, "m"),
  24074. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24075. name: "Female",
  24076. image: {
  24077. source: "./media/characters/sthara/female.svg",
  24078. extra: 2516 / 2347,
  24079. bottom: 21.5 / 2537
  24080. }
  24081. },
  24082. male: {
  24083. height: math.unit(24, "m"),
  24084. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24085. name: "Male",
  24086. image: {
  24087. source: "./media/characters/sthara/male.svg",
  24088. extra: 2732 / 2607,
  24089. bottom: 23 / 2732
  24090. }
  24091. },
  24092. },
  24093. [
  24094. {
  24095. name: "Macro",
  24096. height: math.unit(21.6, "meters"),
  24097. default: true
  24098. },
  24099. ]
  24100. ))
  24101. characterMakers.push(() => makeCharacter(
  24102. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24103. {
  24104. front: {
  24105. height: math.unit(6 + 4 / 12, "feet"),
  24106. weight: math.unit(175, "lb"),
  24107. name: "Front",
  24108. image: {
  24109. source: "./media/characters/luka-bryzant/front.svg",
  24110. extra: 311 / 289,
  24111. bottom: 4 / 315
  24112. }
  24113. },
  24114. back: {
  24115. height: math.unit(6 + 4 / 12, "feet"),
  24116. weight: math.unit(175, "lb"),
  24117. name: "Back",
  24118. image: {
  24119. source: "./media/characters/luka-bryzant/back.svg",
  24120. extra: 311 / 289,
  24121. bottom: 3.8 / 313.7
  24122. }
  24123. },
  24124. },
  24125. [
  24126. {
  24127. name: "Micro",
  24128. height: math.unit(10, "inches")
  24129. },
  24130. {
  24131. name: "Normal",
  24132. height: math.unit(6 + 4 / 12, "feet"),
  24133. default: true
  24134. },
  24135. {
  24136. name: "Large",
  24137. height: math.unit(12, "feet")
  24138. },
  24139. ]
  24140. ))
  24141. characterMakers.push(() => makeCharacter(
  24142. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24143. {
  24144. front: {
  24145. height: math.unit(5 + 7 / 12, "feet"),
  24146. weight: math.unit(185, "lb"),
  24147. name: "Front",
  24148. image: {
  24149. source: "./media/characters/aman-aquila/front.svg",
  24150. extra: 1013 / 976,
  24151. bottom: 45.6 / 1057
  24152. }
  24153. },
  24154. side: {
  24155. height: math.unit(5 + 7 / 12, "feet"),
  24156. weight: math.unit(185, "lb"),
  24157. name: "Side",
  24158. image: {
  24159. source: "./media/characters/aman-aquila/side.svg",
  24160. extra: 1054 / 1011,
  24161. bottom: 15 / 1070
  24162. }
  24163. },
  24164. back: {
  24165. height: math.unit(5 + 7 / 12, "feet"),
  24166. weight: math.unit(185, "lb"),
  24167. name: "Back",
  24168. image: {
  24169. source: "./media/characters/aman-aquila/back.svg",
  24170. extra: 1026 / 970,
  24171. bottom: 12 / 1039
  24172. }
  24173. },
  24174. head: {
  24175. height: math.unit(1.211, "feet"),
  24176. name: "Head",
  24177. image: {
  24178. source: "./media/characters/aman-aquila/head.svg",
  24179. }
  24180. },
  24181. },
  24182. [
  24183. {
  24184. name: "Minimicro",
  24185. height: math.unit(0.057, "inches")
  24186. },
  24187. {
  24188. name: "Micro",
  24189. height: math.unit(7, "inches")
  24190. },
  24191. {
  24192. name: "Mini",
  24193. height: math.unit(3 + 7 / 12, "feet")
  24194. },
  24195. {
  24196. name: "Normal",
  24197. height: math.unit(5 + 7 / 12, "feet"),
  24198. default: true
  24199. },
  24200. {
  24201. name: "Macro",
  24202. height: math.unit(157 + 7 / 12, "feet")
  24203. },
  24204. {
  24205. name: "Megamacro",
  24206. height: math.unit(1557 + 7 / 12, "feet")
  24207. },
  24208. {
  24209. name: "Gigamacro",
  24210. height: math.unit(15557 + 7 / 12, "feet")
  24211. },
  24212. ]
  24213. ))
  24214. characterMakers.push(() => makeCharacter(
  24215. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24216. {
  24217. front: {
  24218. height: math.unit(3 + 2 / 12, "inches"),
  24219. weight: math.unit(0.3, "ounces"),
  24220. name: "Front",
  24221. image: {
  24222. source: "./media/characters/hiphae/front.svg",
  24223. extra: 1931 / 1683,
  24224. bottom: 24 / 1955
  24225. }
  24226. },
  24227. },
  24228. [
  24229. {
  24230. name: "Normal",
  24231. height: math.unit(3 + 1 / 2, "inches"),
  24232. default: true
  24233. },
  24234. ]
  24235. ))
  24236. characterMakers.push(() => makeCharacter(
  24237. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24238. {
  24239. front: {
  24240. height: math.unit(5 + 10 / 12, "feet"),
  24241. weight: math.unit(165, "lb"),
  24242. name: "Front",
  24243. image: {
  24244. source: "./media/characters/nicky/front.svg",
  24245. extra: 3144 / 2886,
  24246. bottom: 45.6 / 3192
  24247. }
  24248. },
  24249. back: {
  24250. height: math.unit(5 + 10 / 12, "feet"),
  24251. weight: math.unit(165, "lb"),
  24252. name: "Back",
  24253. image: {
  24254. source: "./media/characters/nicky/back.svg",
  24255. extra: 3055 / 2804,
  24256. bottom: 28.4 / 3087
  24257. }
  24258. },
  24259. frontclothed: {
  24260. height: math.unit(5 + 10 / 12, "feet"),
  24261. weight: math.unit(165, "lb"),
  24262. name: "Front-clothed",
  24263. image: {
  24264. source: "./media/characters/nicky/front-clothed.svg",
  24265. extra: 3184.9 / 2926.9,
  24266. bottom: 86.5 / 3239.9
  24267. }
  24268. },
  24269. foot: {
  24270. height: math.unit(1.16, "feet"),
  24271. name: "Foot",
  24272. image: {
  24273. source: "./media/characters/nicky/foot.svg"
  24274. }
  24275. },
  24276. feet: {
  24277. height: math.unit(1.34, "feet"),
  24278. name: "Feet",
  24279. image: {
  24280. source: "./media/characters/nicky/feet.svg"
  24281. }
  24282. },
  24283. maw: {
  24284. height: math.unit(0.9, "feet"),
  24285. name: "Maw",
  24286. image: {
  24287. source: "./media/characters/nicky/maw.svg"
  24288. }
  24289. },
  24290. },
  24291. [
  24292. {
  24293. name: "Normal",
  24294. height: math.unit(5 + 10 / 12, "feet"),
  24295. default: true
  24296. },
  24297. {
  24298. name: "Macro",
  24299. height: math.unit(60, "feet")
  24300. },
  24301. {
  24302. name: "Megamacro",
  24303. height: math.unit(1, "mile")
  24304. },
  24305. ]
  24306. ))
  24307. characterMakers.push(() => makeCharacter(
  24308. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24309. {
  24310. side: {
  24311. height: math.unit(10, "feet"),
  24312. weight: math.unit(600, "lb"),
  24313. name: "Side",
  24314. image: {
  24315. source: "./media/characters/blair/side.svg",
  24316. bottom: 16.6 / 475,
  24317. extra: 458 / 431
  24318. }
  24319. },
  24320. },
  24321. [
  24322. {
  24323. name: "Micro",
  24324. height: math.unit(8, "inches")
  24325. },
  24326. {
  24327. name: "Normal",
  24328. height: math.unit(10, "feet"),
  24329. default: true
  24330. },
  24331. {
  24332. name: "Macro",
  24333. height: math.unit(180, "feet")
  24334. },
  24335. ]
  24336. ))
  24337. characterMakers.push(() => makeCharacter(
  24338. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24339. {
  24340. front: {
  24341. height: math.unit(5 + 4 / 12, "feet"),
  24342. weight: math.unit(125, "lb"),
  24343. name: "Front",
  24344. image: {
  24345. source: "./media/characters/fisher/front.svg",
  24346. extra: 444 / 390,
  24347. bottom: 2 / 444.8
  24348. }
  24349. },
  24350. },
  24351. [
  24352. {
  24353. name: "Micro",
  24354. height: math.unit(4, "inches")
  24355. },
  24356. {
  24357. name: "Normal",
  24358. height: math.unit(5 + 4 / 12, "feet"),
  24359. default: true
  24360. },
  24361. {
  24362. name: "Macro",
  24363. height: math.unit(100, "feet")
  24364. },
  24365. ]
  24366. ))
  24367. characterMakers.push(() => makeCharacter(
  24368. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24369. {
  24370. front: {
  24371. height: math.unit(6.71, "feet"),
  24372. weight: math.unit(200, "lb"),
  24373. capacity: math.unit(1000000, "people"),
  24374. name: "Front",
  24375. image: {
  24376. source: "./media/characters/gliss/front.svg",
  24377. extra: 2347 / 2231,
  24378. bottom: 113 / 2462
  24379. }
  24380. },
  24381. hammerspaceSize: {
  24382. height: math.unit(6.71 * 717, "feet"),
  24383. weight: math.unit(200, "lb"),
  24384. capacity: math.unit(1000000, "people"),
  24385. name: "Hammerspace Size",
  24386. image: {
  24387. source: "./media/characters/gliss/front.svg",
  24388. extra: 2347 / 2231,
  24389. bottom: 113 / 2462
  24390. }
  24391. },
  24392. },
  24393. [
  24394. {
  24395. name: "Normal",
  24396. height: math.unit(6.71, "feet"),
  24397. default: true
  24398. },
  24399. ]
  24400. ))
  24401. characterMakers.push(() => makeCharacter(
  24402. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24403. {
  24404. side: {
  24405. height: math.unit(1.44, "m"),
  24406. weight: math.unit(80, "kg"),
  24407. name: "Side",
  24408. image: {
  24409. source: "./media/characters/dune-anderson/side.svg",
  24410. bottom: 49 / 1426
  24411. }
  24412. },
  24413. },
  24414. [
  24415. {
  24416. name: "Wolf-sized",
  24417. height: math.unit(1.44, "meters")
  24418. },
  24419. {
  24420. name: "Normal",
  24421. height: math.unit(5.05, "meters"),
  24422. default: true
  24423. },
  24424. {
  24425. name: "Big",
  24426. height: math.unit(14.4, "meters")
  24427. },
  24428. {
  24429. name: "Huge",
  24430. height: math.unit(144, "meters")
  24431. },
  24432. ]
  24433. ))
  24434. characterMakers.push(() => makeCharacter(
  24435. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24436. {
  24437. front: {
  24438. height: math.unit(7, "feet"),
  24439. weight: math.unit(425, "lb"),
  24440. name: "Front",
  24441. image: {
  24442. source: "./media/characters/hind/front.svg",
  24443. extra: 2091 / 1860,
  24444. bottom: 129 / 2220
  24445. }
  24446. },
  24447. back: {
  24448. height: math.unit(7, "feet"),
  24449. weight: math.unit(425, "lb"),
  24450. name: "Back",
  24451. image: {
  24452. source: "./media/characters/hind/back.svg",
  24453. extra: 2091 / 1860,
  24454. bottom: 24.6 / 2309
  24455. }
  24456. },
  24457. tail: {
  24458. height: math.unit(2.8, "feet"),
  24459. name: "Tail",
  24460. image: {
  24461. source: "./media/characters/hind/tail.svg"
  24462. }
  24463. },
  24464. head: {
  24465. height: math.unit(2.55, "feet"),
  24466. name: "Head",
  24467. image: {
  24468. source: "./media/characters/hind/head.svg"
  24469. }
  24470. },
  24471. },
  24472. [
  24473. {
  24474. name: "XS",
  24475. height: math.unit(0.7, "feet")
  24476. },
  24477. {
  24478. name: "Normal",
  24479. height: math.unit(7, "feet"),
  24480. default: true
  24481. },
  24482. {
  24483. name: "XL",
  24484. height: math.unit(70, "feet")
  24485. },
  24486. ]
  24487. ))
  24488. characterMakers.push(() => makeCharacter(
  24489. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24490. {
  24491. front: {
  24492. height: math.unit(6, "feet"),
  24493. weight: math.unit(150, "lb"),
  24494. name: "Front",
  24495. image: {
  24496. source: "./media/characters/dylan-skaven/front.svg",
  24497. extra: 2318 / 2063,
  24498. bottom: 93.4 / 2410
  24499. }
  24500. },
  24501. },
  24502. [
  24503. {
  24504. name: "Nano",
  24505. height: math.unit(1, "mm")
  24506. },
  24507. {
  24508. name: "Micro",
  24509. height: math.unit(1, "cm")
  24510. },
  24511. {
  24512. name: "Normal",
  24513. height: math.unit(2.1, "meters"),
  24514. default: true
  24515. },
  24516. ]
  24517. ))
  24518. characterMakers.push(() => makeCharacter(
  24519. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24520. {
  24521. front: {
  24522. height: math.unit(7 + 5 / 12, "feet"),
  24523. weight: math.unit(357, "lb"),
  24524. name: "Front",
  24525. image: {
  24526. source: "./media/characters/solex-draconov/front.svg",
  24527. extra: 1993 / 1865,
  24528. bottom: 117 / 2111
  24529. }
  24530. },
  24531. },
  24532. [
  24533. {
  24534. name: "Natural Height",
  24535. height: math.unit(7 + 5 / 12, "feet"),
  24536. default: true
  24537. },
  24538. {
  24539. name: "Macro",
  24540. height: math.unit(350, "feet")
  24541. },
  24542. {
  24543. name: "Macro+",
  24544. height: math.unit(1000, "feet")
  24545. },
  24546. {
  24547. name: "Megamacro",
  24548. height: math.unit(20, "km")
  24549. },
  24550. {
  24551. name: "Megamacro+",
  24552. height: math.unit(1000, "km")
  24553. },
  24554. {
  24555. name: "Gigamacro",
  24556. height: math.unit(2.5, "Gm")
  24557. },
  24558. {
  24559. name: "Teramacro",
  24560. height: math.unit(15, "Tm")
  24561. },
  24562. {
  24563. name: "Galactic",
  24564. height: math.unit(30, "Zm")
  24565. },
  24566. {
  24567. name: "Universal",
  24568. height: math.unit(21000, "Ym")
  24569. },
  24570. {
  24571. name: "Omniversal",
  24572. height: math.unit(9.861e50, "Ym")
  24573. },
  24574. {
  24575. name: "Existential",
  24576. height: math.unit(1e300, "meters")
  24577. },
  24578. ]
  24579. ))
  24580. characterMakers.push(() => makeCharacter(
  24581. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24582. {
  24583. side: {
  24584. height: math.unit(25, "feet"),
  24585. weight: math.unit(90000, "lb"),
  24586. name: "Side",
  24587. image: {
  24588. source: "./media/characters/mandarax/side.svg",
  24589. extra: 614 / 332,
  24590. bottom: 55 / 630
  24591. }
  24592. },
  24593. head: {
  24594. height: math.unit(11.4, "feet"),
  24595. name: "Head",
  24596. image: {
  24597. source: "./media/characters/mandarax/head.svg"
  24598. }
  24599. },
  24600. belly: {
  24601. height: math.unit(33, "feet"),
  24602. name: "Belly",
  24603. capacity: math.unit(500, "people"),
  24604. image: {
  24605. source: "./media/characters/mandarax/belly.svg"
  24606. }
  24607. },
  24608. dick: {
  24609. height: math.unit(8.46, "feet"),
  24610. name: "Dick",
  24611. image: {
  24612. source: "./media/characters/mandarax/dick.svg"
  24613. }
  24614. },
  24615. top: {
  24616. height: math.unit(28, "meters"),
  24617. name: "Top",
  24618. image: {
  24619. source: "./media/characters/mandarax/top.svg"
  24620. }
  24621. },
  24622. },
  24623. [
  24624. {
  24625. name: "Normal",
  24626. height: math.unit(25, "feet"),
  24627. default: true
  24628. },
  24629. ]
  24630. ))
  24631. characterMakers.push(() => makeCharacter(
  24632. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24633. {
  24634. front: {
  24635. height: math.unit(5, "feet"),
  24636. weight: math.unit(90, "lb"),
  24637. name: "Front",
  24638. image: {
  24639. source: "./media/characters/pixil/front.svg",
  24640. extra: 2000 / 1618,
  24641. bottom: 12.3 / 2011
  24642. }
  24643. },
  24644. },
  24645. [
  24646. {
  24647. name: "Normal",
  24648. height: math.unit(5, "feet"),
  24649. default: true
  24650. },
  24651. {
  24652. name: "Megamacro",
  24653. height: math.unit(10, "miles"),
  24654. },
  24655. ]
  24656. ))
  24657. characterMakers.push(() => makeCharacter(
  24658. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24659. {
  24660. front: {
  24661. height: math.unit(7 + 2 / 12, "feet"),
  24662. weight: math.unit(200, "lb"),
  24663. name: "Front",
  24664. image: {
  24665. source: "./media/characters/angel/front.svg",
  24666. extra: 1830 / 1737,
  24667. bottom: 22.6 / 1854,
  24668. }
  24669. },
  24670. },
  24671. [
  24672. {
  24673. name: "Normal",
  24674. height: math.unit(7 + 2 / 12, "feet"),
  24675. default: true
  24676. },
  24677. {
  24678. name: "Macro",
  24679. height: math.unit(1000, "feet")
  24680. },
  24681. {
  24682. name: "Megamacro",
  24683. height: math.unit(2, "miles")
  24684. },
  24685. {
  24686. name: "Gigamacro",
  24687. height: math.unit(20, "earths")
  24688. },
  24689. ]
  24690. ))
  24691. characterMakers.push(() => makeCharacter(
  24692. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24693. {
  24694. front: {
  24695. height: math.unit(5, "feet"),
  24696. weight: math.unit(180, "lb"),
  24697. name: "Front",
  24698. image: {
  24699. source: "./media/characters/mekana/front.svg",
  24700. extra: 1671 / 1605,
  24701. bottom: 3.5 / 1691
  24702. }
  24703. },
  24704. side: {
  24705. height: math.unit(5, "feet"),
  24706. weight: math.unit(180, "lb"),
  24707. name: "Side",
  24708. image: {
  24709. source: "./media/characters/mekana/side.svg",
  24710. extra: 1671 / 1605,
  24711. bottom: 3.5 / 1691
  24712. }
  24713. },
  24714. back: {
  24715. height: math.unit(5, "feet"),
  24716. weight: math.unit(180, "lb"),
  24717. name: "Back",
  24718. image: {
  24719. source: "./media/characters/mekana/back.svg",
  24720. extra: 1671 / 1605,
  24721. bottom: 3.5 / 1691
  24722. }
  24723. },
  24724. },
  24725. [
  24726. {
  24727. name: "Normal",
  24728. height: math.unit(5, "feet"),
  24729. default: true
  24730. },
  24731. ]
  24732. ))
  24733. characterMakers.push(() => makeCharacter(
  24734. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24735. {
  24736. front: {
  24737. height: math.unit(4 + 6 / 12, "feet"),
  24738. weight: math.unit(80, "lb"),
  24739. name: "Front",
  24740. image: {
  24741. source: "./media/characters/pixie/front.svg",
  24742. extra: 1924 / 1825,
  24743. bottom: 22.4 / 1946
  24744. }
  24745. },
  24746. },
  24747. [
  24748. {
  24749. name: "Normal",
  24750. height: math.unit(4 + 6 / 12, "feet"),
  24751. default: true
  24752. },
  24753. {
  24754. name: "Macro",
  24755. height: math.unit(40, "feet")
  24756. },
  24757. ]
  24758. ))
  24759. characterMakers.push(() => makeCharacter(
  24760. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24761. {
  24762. front: {
  24763. height: math.unit(2.1, "meters"),
  24764. weight: math.unit(200, "lb"),
  24765. name: "Front",
  24766. image: {
  24767. source: "./media/characters/the-lascivious/front.svg",
  24768. extra: 1 / 0.893,
  24769. bottom: 3.5 / 573.7
  24770. }
  24771. },
  24772. },
  24773. [
  24774. {
  24775. name: "Human Scale",
  24776. height: math.unit(2.1, "meters")
  24777. },
  24778. {
  24779. name: "Wolxi Scale",
  24780. height: math.unit(46.2, "m"),
  24781. default: true
  24782. },
  24783. {
  24784. name: "Boinker of Buildings",
  24785. height: math.unit(10, "km")
  24786. },
  24787. {
  24788. name: "Shagger of Skyscrapers",
  24789. height: math.unit(40, "km")
  24790. },
  24791. {
  24792. name: "Banger of Boroughs",
  24793. height: math.unit(4000, "km")
  24794. },
  24795. {
  24796. name: "Screwer of States",
  24797. height: math.unit(100000, "km")
  24798. },
  24799. {
  24800. name: "Pounder of Planets",
  24801. height: math.unit(2000000, "km")
  24802. },
  24803. ]
  24804. ))
  24805. characterMakers.push(() => makeCharacter(
  24806. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24807. {
  24808. front: {
  24809. height: math.unit(6, "feet"),
  24810. weight: math.unit(150, "lb"),
  24811. name: "Front",
  24812. image: {
  24813. source: "./media/characters/aj/front.svg",
  24814. extra: 2039 / 1562,
  24815. bottom: 40 / 2079
  24816. }
  24817. },
  24818. },
  24819. [
  24820. {
  24821. name: "Normal",
  24822. height: math.unit(11 + 6 / 12, "feet"),
  24823. default: true
  24824. },
  24825. {
  24826. name: "Megamacro",
  24827. height: math.unit(60, "megameters")
  24828. },
  24829. ]
  24830. ))
  24831. characterMakers.push(() => makeCharacter(
  24832. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24833. {
  24834. side: {
  24835. height: math.unit(31 + 8 / 12, "feet"),
  24836. weight: math.unit(75000, "kg"),
  24837. name: "Side",
  24838. image: {
  24839. source: "./media/characters/koros/side.svg",
  24840. extra: 1442 / 1297,
  24841. bottom: 122.7 / 1562
  24842. }
  24843. },
  24844. dicksKingsCrown: {
  24845. height: math.unit(6, "feet"),
  24846. name: "Dicks (King's Crown)",
  24847. image: {
  24848. source: "./media/characters/koros/dicks-kings-crown.svg"
  24849. }
  24850. },
  24851. dicksTailSet: {
  24852. height: math.unit(3, "feet"),
  24853. name: "Dicks (Tail Set)",
  24854. image: {
  24855. source: "./media/characters/koros/dicks-tail-set.svg"
  24856. }
  24857. },
  24858. dickCumming: {
  24859. height: math.unit(7.98, "feet"),
  24860. name: "Dick (Cumming)",
  24861. image: {
  24862. source: "./media/characters/koros/dick-cumming.svg"
  24863. }
  24864. },
  24865. dicksBack: {
  24866. height: math.unit(5.9, "feet"),
  24867. name: "Dicks (Back)",
  24868. image: {
  24869. source: "./media/characters/koros/dicks-back.svg"
  24870. }
  24871. },
  24872. dicksFront: {
  24873. height: math.unit(3.72, "feet"),
  24874. name: "Dicks (Front)",
  24875. image: {
  24876. source: "./media/characters/koros/dicks-front.svg"
  24877. }
  24878. },
  24879. dicksPeeking: {
  24880. height: math.unit(3.0, "feet"),
  24881. name: "Dicks (Peeking)",
  24882. image: {
  24883. source: "./media/characters/koros/dicks-peeking.svg"
  24884. }
  24885. },
  24886. eye: {
  24887. height: math.unit(1.7, "feet"),
  24888. name: "Eye",
  24889. image: {
  24890. source: "./media/characters/koros/eye.svg"
  24891. }
  24892. },
  24893. headFront: {
  24894. height: math.unit(11.69, "feet"),
  24895. name: "Head (Front)",
  24896. image: {
  24897. source: "./media/characters/koros/head-front.svg"
  24898. }
  24899. },
  24900. headSide: {
  24901. height: math.unit(14, "feet"),
  24902. name: "Head (Side)",
  24903. image: {
  24904. source: "./media/characters/koros/head-side.svg"
  24905. }
  24906. },
  24907. leg: {
  24908. height: math.unit(17, "feet"),
  24909. name: "Leg",
  24910. image: {
  24911. source: "./media/characters/koros/leg.svg"
  24912. }
  24913. },
  24914. mawSide: {
  24915. height: math.unit(12.8, "feet"),
  24916. name: "Maw (Side)",
  24917. image: {
  24918. source: "./media/characters/koros/maw-side.svg"
  24919. }
  24920. },
  24921. mawSpitting: {
  24922. height: math.unit(17, "feet"),
  24923. name: "Maw (Spitting)",
  24924. image: {
  24925. source: "./media/characters/koros/maw-spitting.svg"
  24926. }
  24927. },
  24928. slit: {
  24929. height: math.unit(2.8, "feet"),
  24930. name: "Slit",
  24931. image: {
  24932. source: "./media/characters/koros/slit.svg"
  24933. }
  24934. },
  24935. stomach: {
  24936. height: math.unit(6.8, "feet"),
  24937. capacity: math.unit(20, "people"),
  24938. name: "Stomach",
  24939. image: {
  24940. source: "./media/characters/koros/stomach.svg"
  24941. }
  24942. },
  24943. wingspanBottom: {
  24944. height: math.unit(114, "feet"),
  24945. name: "Wingspan (Bottom)",
  24946. image: {
  24947. source: "./media/characters/koros/wingspan-bottom.svg"
  24948. }
  24949. },
  24950. wingspanTop: {
  24951. height: math.unit(104, "feet"),
  24952. name: "Wingspan (Top)",
  24953. image: {
  24954. source: "./media/characters/koros/wingspan-top.svg"
  24955. }
  24956. },
  24957. },
  24958. [
  24959. {
  24960. name: "Normal",
  24961. height: math.unit(31 + 8 / 12, "feet"),
  24962. default: true
  24963. },
  24964. ]
  24965. ))
  24966. characterMakers.push(() => makeCharacter(
  24967. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24968. {
  24969. front: {
  24970. height: math.unit(18 + 5 / 12, "feet"),
  24971. weight: math.unit(3750, "kg"),
  24972. name: "Front",
  24973. image: {
  24974. source: "./media/characters/vexx/front.svg",
  24975. extra: 426 / 396,
  24976. bottom: 31.5 / 458
  24977. }
  24978. },
  24979. maw: {
  24980. height: math.unit(6, "feet"),
  24981. name: "Maw",
  24982. image: {
  24983. source: "./media/characters/vexx/maw.svg"
  24984. }
  24985. },
  24986. },
  24987. [
  24988. {
  24989. name: "Normal",
  24990. height: math.unit(18 + 5 / 12, "feet"),
  24991. default: true
  24992. },
  24993. ]
  24994. ))
  24995. characterMakers.push(() => makeCharacter(
  24996. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24997. {
  24998. front: {
  24999. height: math.unit(17 + 6 / 12, "feet"),
  25000. weight: math.unit(150, "lb"),
  25001. name: "Front",
  25002. image: {
  25003. source: "./media/characters/baadra/front.svg",
  25004. extra: 3137 / 2890,
  25005. bottom: 168.4 / 3305
  25006. }
  25007. },
  25008. back: {
  25009. height: math.unit(17 + 6 / 12, "feet"),
  25010. weight: math.unit(150, "lb"),
  25011. name: "Back",
  25012. image: {
  25013. source: "./media/characters/baadra/back.svg",
  25014. extra: 3142 / 2890,
  25015. bottom: 220 / 3371
  25016. }
  25017. },
  25018. head: {
  25019. height: math.unit(5.45, "feet"),
  25020. name: "Head",
  25021. image: {
  25022. source: "./media/characters/baadra/head.svg"
  25023. }
  25024. },
  25025. headAngry: {
  25026. height: math.unit(4.95, "feet"),
  25027. name: "Head (Angry)",
  25028. image: {
  25029. source: "./media/characters/baadra/head-angry.svg"
  25030. }
  25031. },
  25032. headOpen: {
  25033. height: math.unit(6, "feet"),
  25034. name: "Head (Open)",
  25035. image: {
  25036. source: "./media/characters/baadra/head-open.svg"
  25037. }
  25038. },
  25039. },
  25040. [
  25041. {
  25042. name: "Normal",
  25043. height: math.unit(17 + 6 / 12, "feet"),
  25044. default: true
  25045. },
  25046. ]
  25047. ))
  25048. characterMakers.push(() => makeCharacter(
  25049. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25050. {
  25051. front: {
  25052. height: math.unit(7 + 3 / 12, "feet"),
  25053. weight: math.unit(180, "lb"),
  25054. name: "Front",
  25055. image: {
  25056. source: "./media/characters/juri/front.svg",
  25057. extra: 1401 / 1237,
  25058. bottom: 18.5 / 1418
  25059. }
  25060. },
  25061. side: {
  25062. height: math.unit(7 + 3 / 12, "feet"),
  25063. weight: math.unit(180, "lb"),
  25064. name: "Side",
  25065. image: {
  25066. source: "./media/characters/juri/side.svg",
  25067. extra: 1424 / 1242,
  25068. bottom: 18.5 / 1447
  25069. }
  25070. },
  25071. sitting: {
  25072. height: math.unit(6, "feet"),
  25073. weight: math.unit(180, "lb"),
  25074. name: "Sitting",
  25075. image: {
  25076. source: "./media/characters/juri/sitting.svg",
  25077. extra: 1270 / 1143,
  25078. bottom: 100 / 1343
  25079. }
  25080. },
  25081. back: {
  25082. height: math.unit(7 + 3 / 12, "feet"),
  25083. weight: math.unit(180, "lb"),
  25084. name: "Back",
  25085. image: {
  25086. source: "./media/characters/juri/back.svg",
  25087. extra: 1377 / 1240,
  25088. bottom: 23.7 / 1405
  25089. }
  25090. },
  25091. maw: {
  25092. height: math.unit(2.8, "feet"),
  25093. name: "Maw",
  25094. image: {
  25095. source: "./media/characters/juri/maw.svg"
  25096. }
  25097. },
  25098. stomach: {
  25099. height: math.unit(0.89, "feet"),
  25100. capacity: math.unit(4, "liters"),
  25101. name: "Stomach",
  25102. image: {
  25103. source: "./media/characters/juri/stomach.svg"
  25104. }
  25105. },
  25106. },
  25107. [
  25108. {
  25109. name: "Normal",
  25110. height: math.unit(7 + 3 / 12, "feet"),
  25111. default: true
  25112. },
  25113. ]
  25114. ))
  25115. characterMakers.push(() => makeCharacter(
  25116. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25117. {
  25118. fox: {
  25119. height: math.unit(5 + 6 / 12, "feet"),
  25120. weight: math.unit(140, "lb"),
  25121. name: "Fox",
  25122. image: {
  25123. source: "./media/characters/maxene-sita/fox.svg",
  25124. extra: 146 / 138,
  25125. bottom: 2.1 / 148.19
  25126. }
  25127. },
  25128. foxLaying: {
  25129. height: math.unit(1.70, "feet"),
  25130. weight: math.unit(140, "lb"),
  25131. name: "Fox (Laying)",
  25132. image: {
  25133. source: "./media/characters/maxene-sita/fox-laying.svg",
  25134. extra: 910 / 572,
  25135. bottom: 71 / 981
  25136. }
  25137. },
  25138. kitsune: {
  25139. height: math.unit(10, "feet"),
  25140. weight: math.unit(800, "lb"),
  25141. name: "Kitsune",
  25142. image: {
  25143. source: "./media/characters/maxene-sita/kitsune.svg",
  25144. extra: 185 / 176,
  25145. bottom: 4.7 / 189.9
  25146. }
  25147. },
  25148. hellhound: {
  25149. height: math.unit(10, "feet"),
  25150. weight: math.unit(700, "lb"),
  25151. name: "Hellhound",
  25152. image: {
  25153. source: "./media/characters/maxene-sita/hellhound.svg",
  25154. extra: 1600 / 1545,
  25155. bottom: 81 / 1681
  25156. }
  25157. },
  25158. },
  25159. [
  25160. {
  25161. name: "Normal",
  25162. height: math.unit(5 + 6 / 12, "feet"),
  25163. default: true
  25164. },
  25165. ]
  25166. ))
  25167. characterMakers.push(() => makeCharacter(
  25168. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25169. {
  25170. front: {
  25171. height: math.unit(3 + 4 / 12, "feet"),
  25172. weight: math.unit(70, "lb"),
  25173. name: "Front",
  25174. image: {
  25175. source: "./media/characters/maia/front.svg",
  25176. extra: 227 / 219.5,
  25177. bottom: 40 / 267
  25178. }
  25179. },
  25180. back: {
  25181. height: math.unit(3 + 4 / 12, "feet"),
  25182. weight: math.unit(70, "lb"),
  25183. name: "Back",
  25184. image: {
  25185. source: "./media/characters/maia/back.svg",
  25186. extra: 237 / 225
  25187. }
  25188. },
  25189. },
  25190. [
  25191. {
  25192. name: "Normal",
  25193. height: math.unit(3 + 4 / 12, "feet"),
  25194. default: true
  25195. },
  25196. ]
  25197. ))
  25198. characterMakers.push(() => makeCharacter(
  25199. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25200. {
  25201. front: {
  25202. height: math.unit(5 + 10 / 12, "feet"),
  25203. weight: math.unit(197, "lb"),
  25204. name: "Front",
  25205. image: {
  25206. source: "./media/characters/jabaro/front.svg",
  25207. extra: 225 / 216,
  25208. bottom: 5.06 / 230
  25209. }
  25210. },
  25211. back: {
  25212. height: math.unit(5 + 10 / 12, "feet"),
  25213. weight: math.unit(197, "lb"),
  25214. name: "Back",
  25215. image: {
  25216. source: "./media/characters/jabaro/back.svg",
  25217. extra: 225 / 219,
  25218. bottom: 1.9 / 227
  25219. }
  25220. },
  25221. },
  25222. [
  25223. {
  25224. name: "Normal",
  25225. height: math.unit(5 + 10 / 12, "feet"),
  25226. default: true
  25227. },
  25228. ]
  25229. ))
  25230. characterMakers.push(() => makeCharacter(
  25231. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25232. {
  25233. front: {
  25234. height: math.unit(5 + 8 / 12, "feet"),
  25235. weight: math.unit(139, "lb"),
  25236. name: "Front",
  25237. image: {
  25238. source: "./media/characters/risa/front.svg",
  25239. extra: 270 / 260,
  25240. bottom: 11.2 / 282
  25241. }
  25242. },
  25243. back: {
  25244. height: math.unit(5 + 8 / 12, "feet"),
  25245. weight: math.unit(139, "lb"),
  25246. name: "Back",
  25247. image: {
  25248. source: "./media/characters/risa/back.svg",
  25249. extra: 264 / 255,
  25250. bottom: 4 / 268
  25251. }
  25252. },
  25253. },
  25254. [
  25255. {
  25256. name: "Normal",
  25257. height: math.unit(5 + 8 / 12, "feet"),
  25258. default: true
  25259. },
  25260. ]
  25261. ))
  25262. characterMakers.push(() => makeCharacter(
  25263. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25264. {
  25265. front: {
  25266. height: math.unit(2 + 11 / 12, "feet"),
  25267. weight: math.unit(30, "lb"),
  25268. name: "Front",
  25269. image: {
  25270. source: "./media/characters/weatley/front.svg",
  25271. bottom: 10.7 / 414,
  25272. extra: 403.5 / 362
  25273. }
  25274. },
  25275. back: {
  25276. height: math.unit(2 + 11 / 12, "feet"),
  25277. weight: math.unit(30, "lb"),
  25278. name: "Back",
  25279. image: {
  25280. source: "./media/characters/weatley/back.svg",
  25281. bottom: 10.7 / 414,
  25282. extra: 403.5 / 362
  25283. }
  25284. },
  25285. },
  25286. [
  25287. {
  25288. name: "Normal",
  25289. height: math.unit(2 + 11 / 12, "feet"),
  25290. default: true
  25291. },
  25292. ]
  25293. ))
  25294. characterMakers.push(() => makeCharacter(
  25295. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25296. {
  25297. front: {
  25298. height: math.unit(5 + 2 / 12, "feet"),
  25299. weight: math.unit(50, "kg"),
  25300. name: "Front",
  25301. image: {
  25302. source: "./media/characters/mercury-crescent/front.svg",
  25303. extra: 1088 / 1033,
  25304. bottom: 18.9 / 1109
  25305. }
  25306. },
  25307. },
  25308. [
  25309. {
  25310. name: "Normal",
  25311. height: math.unit(5 + 2 / 12, "feet"),
  25312. default: true
  25313. },
  25314. ]
  25315. ))
  25316. characterMakers.push(() => makeCharacter(
  25317. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25318. {
  25319. front: {
  25320. height: math.unit(2, "feet"),
  25321. weight: math.unit(15, "kg"),
  25322. name: "Front",
  25323. image: {
  25324. source: "./media/characters/diamond-jones/front.svg",
  25325. bottom: 16 / 568
  25326. }
  25327. },
  25328. },
  25329. [
  25330. {
  25331. name: "Normal",
  25332. height: math.unit(2, "feet"),
  25333. default: true
  25334. },
  25335. ]
  25336. ))
  25337. characterMakers.push(() => makeCharacter(
  25338. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25339. {
  25340. front: {
  25341. height: math.unit(3, "feet"),
  25342. weight: math.unit(30, "kg"),
  25343. name: "Front",
  25344. image: {
  25345. source: "./media/characters/sweet-bit/front.svg",
  25346. extra: 675 / 567,
  25347. bottom: 27.7 / 703
  25348. }
  25349. },
  25350. },
  25351. [
  25352. {
  25353. name: "Normal",
  25354. height: math.unit(3, "feet"),
  25355. default: true
  25356. },
  25357. ]
  25358. ))
  25359. characterMakers.push(() => makeCharacter(
  25360. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25361. {
  25362. side: {
  25363. height: math.unit(9.178, "feet"),
  25364. weight: math.unit(500, "lb"),
  25365. name: "Side",
  25366. image: {
  25367. source: "./media/characters/umbrazen/side.svg",
  25368. extra: 1730 / 1473,
  25369. bottom: 34.6 / 1765
  25370. }
  25371. },
  25372. },
  25373. [
  25374. {
  25375. name: "Normal",
  25376. height: math.unit(9.178, "feet"),
  25377. default: true
  25378. },
  25379. ]
  25380. ))
  25381. characterMakers.push(() => makeCharacter(
  25382. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25383. {
  25384. front: {
  25385. height: math.unit(10, "feet"),
  25386. weight: math.unit(750, "lb"),
  25387. name: "Front",
  25388. image: {
  25389. source: "./media/characters/arlist/front.svg",
  25390. extra: 961 / 778,
  25391. bottom: 6.2 / 986
  25392. }
  25393. },
  25394. },
  25395. [
  25396. {
  25397. name: "Normal",
  25398. height: math.unit(10, "feet"),
  25399. default: true
  25400. },
  25401. ]
  25402. ))
  25403. characterMakers.push(() => makeCharacter(
  25404. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25405. {
  25406. front: {
  25407. height: math.unit(5 + 1 / 12, "feet"),
  25408. weight: math.unit(110, "lb"),
  25409. name: "Front",
  25410. image: {
  25411. source: "./media/characters/aradel/front.svg",
  25412. extra: 324 / 303,
  25413. bottom: 3.6 / 329.4
  25414. }
  25415. },
  25416. },
  25417. [
  25418. {
  25419. name: "Normal",
  25420. height: math.unit(5 + 1 / 12, "feet"),
  25421. default: true
  25422. },
  25423. ]
  25424. ))
  25425. characterMakers.push(() => makeCharacter(
  25426. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25427. {
  25428. front: {
  25429. height: math.unit(3 + 8 / 12, "feet"),
  25430. weight: math.unit(50, "lb"),
  25431. name: "Front",
  25432. image: {
  25433. source: "./media/characters/serryn/front.svg",
  25434. extra: 1792 / 1656,
  25435. bottom: 43.5 / 1840
  25436. }
  25437. },
  25438. },
  25439. [
  25440. {
  25441. name: "Normal",
  25442. height: math.unit(3 + 8 / 12, "feet"),
  25443. default: true
  25444. },
  25445. ]
  25446. ))
  25447. characterMakers.push(() => makeCharacter(
  25448. { name: "Xavier Thyme" },
  25449. {
  25450. front: {
  25451. height: math.unit(7 + 10 / 12, "feet"),
  25452. weight: math.unit(255, "lb"),
  25453. name: "Front",
  25454. image: {
  25455. source: "./media/characters/xavier-thyme/front.svg",
  25456. extra: 3733 / 3642,
  25457. bottom: 131 / 3869
  25458. }
  25459. },
  25460. frontRaven: {
  25461. height: math.unit(7 + 10 / 12, "feet"),
  25462. weight: math.unit(255, "lb"),
  25463. name: "Front (Raven)",
  25464. image: {
  25465. source: "./media/characters/xavier-thyme/front-raven.svg",
  25466. extra: 4385 / 3642,
  25467. bottom: 131 / 4517
  25468. }
  25469. },
  25470. },
  25471. [
  25472. {
  25473. name: "Normal",
  25474. height: math.unit(7 + 10 / 12, "feet"),
  25475. default: true
  25476. },
  25477. ]
  25478. ))
  25479. characterMakers.push(() => makeCharacter(
  25480. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25481. {
  25482. front: {
  25483. height: math.unit(1.6, "m"),
  25484. weight: math.unit(50, "kg"),
  25485. name: "Front",
  25486. image: {
  25487. source: "./media/characters/kiki/front.svg",
  25488. extra: 4682 / 3610,
  25489. bottom: 115 / 4777
  25490. }
  25491. },
  25492. },
  25493. [
  25494. {
  25495. name: "Normal",
  25496. height: math.unit(1.6, "meters"),
  25497. default: true
  25498. },
  25499. ]
  25500. ))
  25501. characterMakers.push(() => makeCharacter(
  25502. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25503. {
  25504. front: {
  25505. height: math.unit(50, "m"),
  25506. weight: math.unit(500, "tonnes"),
  25507. name: "Front",
  25508. image: {
  25509. source: "./media/characters/ryoko/front.svg",
  25510. extra: 4632 / 3926,
  25511. bottom: 193 / 4823
  25512. }
  25513. },
  25514. },
  25515. [
  25516. {
  25517. name: "Normal",
  25518. height: math.unit(50, "meters"),
  25519. default: true
  25520. },
  25521. ]
  25522. ))
  25523. characterMakers.push(() => makeCharacter(
  25524. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25525. {
  25526. front: {
  25527. height: math.unit(30, "m"),
  25528. weight: math.unit(22, "tonnes"),
  25529. name: "Front",
  25530. image: {
  25531. source: "./media/characters/elio/front.svg",
  25532. extra: 4582 / 3720,
  25533. bottom: 236 / 4828
  25534. }
  25535. },
  25536. },
  25537. [
  25538. {
  25539. name: "Normal",
  25540. height: math.unit(30, "meters"),
  25541. default: true
  25542. },
  25543. ]
  25544. ))
  25545. characterMakers.push(() => makeCharacter(
  25546. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25547. {
  25548. front: {
  25549. height: math.unit(6 + 3 / 12, "feet"),
  25550. weight: math.unit(120, "lb"),
  25551. name: "Front",
  25552. image: {
  25553. source: "./media/characters/azura/front.svg",
  25554. extra: 1149 / 1135,
  25555. bottom: 45 / 1194
  25556. }
  25557. },
  25558. frontClothed: {
  25559. height: math.unit(6 + 3 / 12, "feet"),
  25560. weight: math.unit(120, "lb"),
  25561. name: "Front (Clothed)",
  25562. image: {
  25563. source: "./media/characters/azura/front-clothed.svg",
  25564. extra: 1149 / 1135,
  25565. bottom: 45 / 1194
  25566. }
  25567. },
  25568. },
  25569. [
  25570. {
  25571. name: "Normal",
  25572. height: math.unit(6 + 3 / 12, "feet"),
  25573. default: true
  25574. },
  25575. {
  25576. name: "Macro",
  25577. height: math.unit(20 + 6 / 12, "feet")
  25578. },
  25579. {
  25580. name: "Megamacro",
  25581. height: math.unit(12, "miles")
  25582. },
  25583. {
  25584. name: "Gigamacro",
  25585. height: math.unit(10000, "miles")
  25586. },
  25587. {
  25588. name: "Teramacro",
  25589. height: math.unit(900000, "miles")
  25590. },
  25591. ]
  25592. ))
  25593. characterMakers.push(() => makeCharacter(
  25594. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25595. {
  25596. front: {
  25597. height: math.unit(12, "feet"),
  25598. weight: math.unit(1, "ton"),
  25599. capacity: math.unit(660000, "gallons"),
  25600. name: "Front",
  25601. image: {
  25602. source: "./media/characters/zeus/front.svg",
  25603. extra: 5005 / 4717,
  25604. bottom: 363 / 5388
  25605. }
  25606. },
  25607. },
  25608. [
  25609. {
  25610. name: "Normal",
  25611. height: math.unit(12, "feet")
  25612. },
  25613. {
  25614. name: "Preferred Size",
  25615. height: math.unit(0.5, "miles"),
  25616. default: true
  25617. },
  25618. {
  25619. name: "Giga Horse",
  25620. height: math.unit(300, "miles")
  25621. },
  25622. {
  25623. name: "Riding Planets",
  25624. height: math.unit(30, "megameters")
  25625. },
  25626. {
  25627. name: "Cosmic Giant",
  25628. height: math.unit(3, "zettameters")
  25629. },
  25630. {
  25631. name: "Breeding God",
  25632. height: math.unit(9.92e22, "yottameters")
  25633. },
  25634. ]
  25635. ))
  25636. characterMakers.push(() => makeCharacter(
  25637. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25638. {
  25639. side: {
  25640. height: math.unit(9, "feet"),
  25641. weight: math.unit(1500, "kg"),
  25642. name: "Side",
  25643. image: {
  25644. source: "./media/characters/fang/side.svg",
  25645. extra: 924 / 866,
  25646. bottom: 47.5 / 972.3
  25647. }
  25648. },
  25649. },
  25650. [
  25651. {
  25652. name: "Normal",
  25653. height: math.unit(9, "feet"),
  25654. default: true
  25655. },
  25656. {
  25657. name: "Macro",
  25658. height: math.unit(75 + 6 / 12, "feet")
  25659. },
  25660. {
  25661. name: "Teramacro",
  25662. height: math.unit(50000, "miles")
  25663. },
  25664. ]
  25665. ))
  25666. characterMakers.push(() => makeCharacter(
  25667. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25668. {
  25669. front: {
  25670. height: math.unit(10, "feet"),
  25671. weight: math.unit(2, "tons"),
  25672. name: "Front",
  25673. image: {
  25674. source: "./media/characters/rekhit/front.svg",
  25675. extra: 2796 / 2590,
  25676. bottom: 225 / 3022
  25677. }
  25678. },
  25679. },
  25680. [
  25681. {
  25682. name: "Normal",
  25683. height: math.unit(10, "feet"),
  25684. default: true
  25685. },
  25686. {
  25687. name: "Macro",
  25688. height: math.unit(500, "feet")
  25689. },
  25690. ]
  25691. ))
  25692. characterMakers.push(() => makeCharacter(
  25693. { name: "Dahlia Verrick" },
  25694. {
  25695. front: {
  25696. height: math.unit(7 + 6.451 / 12, "feet"),
  25697. weight: math.unit(310, "lb"),
  25698. name: "Front",
  25699. image: {
  25700. source: "./media/characters/dahlia-verrick/front.svg",
  25701. extra: 1488 / 1365,
  25702. bottom: 6.2 / 1495
  25703. }
  25704. },
  25705. back: {
  25706. height: math.unit(7 + 6.451 / 12, "feet"),
  25707. weight: math.unit(310, "lb"),
  25708. name: "Back",
  25709. image: {
  25710. source: "./media/characters/dahlia-verrick/back.svg",
  25711. extra: 1472 / 1351,
  25712. bottom: 5.28 / 1477
  25713. }
  25714. },
  25715. frontBusiness: {
  25716. height: math.unit(7 + 6.451 / 12, "feet"),
  25717. weight: math.unit(200, "lb"),
  25718. name: "Front (Business)",
  25719. image: {
  25720. source: "./media/characters/dahlia-verrick/front-business.svg",
  25721. extra: 1478 / 1381,
  25722. bottom: 5.5 / 1484
  25723. }
  25724. },
  25725. frontCasual: {
  25726. height: math.unit(7 + 6.451 / 12, "feet"),
  25727. weight: math.unit(200, "lb"),
  25728. name: "Front (Casual)",
  25729. image: {
  25730. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25731. extra: 1478 / 1381,
  25732. bottom: 5.5 / 1484
  25733. }
  25734. },
  25735. },
  25736. [
  25737. {
  25738. name: "Travel-Sized",
  25739. height: math.unit(7.45, "inches")
  25740. },
  25741. {
  25742. name: "Normal",
  25743. height: math.unit(7 + 6.451 / 12, "feet"),
  25744. default: true
  25745. },
  25746. {
  25747. name: "Hitting the Town",
  25748. height: math.unit(37 + 8 / 12, "feet")
  25749. },
  25750. {
  25751. name: "Stomp in the Suburbs",
  25752. height: math.unit(964 + 9.728 / 12, "feet")
  25753. },
  25754. {
  25755. name: "Sit on the City",
  25756. height: math.unit(61747 + 10.592 / 12, "feet")
  25757. },
  25758. {
  25759. name: "Glomp the Globe",
  25760. height: math.unit(252919327 + 4.832 / 12, "feet")
  25761. },
  25762. ]
  25763. ))
  25764. characterMakers.push(() => makeCharacter(
  25765. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25766. {
  25767. front: {
  25768. height: math.unit(6 + 4 / 12, "feet"),
  25769. weight: math.unit(320, "lb"),
  25770. name: "Front",
  25771. image: {
  25772. source: "./media/characters/balina-mahigan/front.svg",
  25773. extra: 447 / 428,
  25774. bottom: 18 / 466
  25775. }
  25776. },
  25777. back: {
  25778. height: math.unit(6 + 4 / 12, "feet"),
  25779. weight: math.unit(320, "lb"),
  25780. name: "Back",
  25781. image: {
  25782. source: "./media/characters/balina-mahigan/back.svg",
  25783. extra: 445 / 428,
  25784. bottom: 4.07 / 448
  25785. }
  25786. },
  25787. arm: {
  25788. height: math.unit(1.88, "feet"),
  25789. name: "Arm",
  25790. image: {
  25791. source: "./media/characters/balina-mahigan/arm.svg"
  25792. }
  25793. },
  25794. backPort: {
  25795. height: math.unit(0.685, "feet"),
  25796. name: "Back Port",
  25797. image: {
  25798. source: "./media/characters/balina-mahigan/back-port.svg"
  25799. }
  25800. },
  25801. hoofpaw: {
  25802. height: math.unit(1.41, "feet"),
  25803. name: "Hoofpaw",
  25804. image: {
  25805. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25806. }
  25807. },
  25808. leftHandBack: {
  25809. height: math.unit(0.938, "feet"),
  25810. name: "Left Hand (Back)",
  25811. image: {
  25812. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25813. }
  25814. },
  25815. leftHandFront: {
  25816. height: math.unit(0.938, "feet"),
  25817. name: "Left Hand (Front)",
  25818. image: {
  25819. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25820. }
  25821. },
  25822. rightHandBack: {
  25823. height: math.unit(0.95, "feet"),
  25824. name: "Right Hand (Back)",
  25825. image: {
  25826. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25827. }
  25828. },
  25829. rightHandFront: {
  25830. height: math.unit(0.95, "feet"),
  25831. name: "Right Hand (Front)",
  25832. image: {
  25833. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25834. }
  25835. },
  25836. },
  25837. [
  25838. {
  25839. name: "Normal",
  25840. height: math.unit(6 + 4 / 12, "feet"),
  25841. default: true
  25842. },
  25843. ]
  25844. ))
  25845. characterMakers.push(() => makeCharacter(
  25846. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25847. {
  25848. front: {
  25849. height: math.unit(6, "feet"),
  25850. weight: math.unit(320, "lb"),
  25851. name: "Front",
  25852. image: {
  25853. source: "./media/characters/balina-mejeri/front.svg",
  25854. extra: 517 / 488,
  25855. bottom: 44.2 / 561
  25856. }
  25857. },
  25858. },
  25859. [
  25860. {
  25861. name: "Normal",
  25862. height: math.unit(6 + 4 / 12, "feet")
  25863. },
  25864. {
  25865. name: "Business",
  25866. height: math.unit(155, "feet"),
  25867. default: true
  25868. },
  25869. ]
  25870. ))
  25871. characterMakers.push(() => makeCharacter(
  25872. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25873. {
  25874. kneeling: {
  25875. height: math.unit(6 + 4 / 12, "feet"),
  25876. weight: math.unit(300 * 20, "lb"),
  25877. name: "Kneeling",
  25878. image: {
  25879. source: "./media/characters/balbarian/kneeling.svg",
  25880. extra: 922 / 862,
  25881. bottom: 42.4 / 965
  25882. }
  25883. },
  25884. },
  25885. [
  25886. {
  25887. name: "Normal",
  25888. height: math.unit(6 + 4 / 12, "feet")
  25889. },
  25890. {
  25891. name: "Treasured",
  25892. height: math.unit(18 + 9 / 12, "feet"),
  25893. default: true
  25894. },
  25895. {
  25896. name: "Macro",
  25897. height: math.unit(900, "feet")
  25898. },
  25899. ]
  25900. ))
  25901. characterMakers.push(() => makeCharacter(
  25902. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25903. {
  25904. front: {
  25905. height: math.unit(6 + 4 / 12, "feet"),
  25906. weight: math.unit(325, "lb"),
  25907. name: "Front",
  25908. image: {
  25909. source: "./media/characters/balina-amarini/front.svg",
  25910. extra: 415 / 403,
  25911. bottom: 19 / 433.4
  25912. }
  25913. },
  25914. back: {
  25915. height: math.unit(6 + 4 / 12, "feet"),
  25916. weight: math.unit(325, "lb"),
  25917. name: "Back",
  25918. image: {
  25919. source: "./media/characters/balina-amarini/back.svg",
  25920. extra: 415 / 403,
  25921. bottom: 13.5 / 432
  25922. }
  25923. },
  25924. overdrive: {
  25925. height: math.unit(6 + 4 / 12, "feet"),
  25926. weight: math.unit(400, "lb"),
  25927. name: "Overdrive",
  25928. image: {
  25929. source: "./media/characters/balina-amarini/overdrive.svg",
  25930. extra: 269 / 259,
  25931. bottom: 12 / 282
  25932. }
  25933. },
  25934. },
  25935. [
  25936. {
  25937. name: "Boom",
  25938. height: math.unit(9 + 10 / 12, "feet"),
  25939. default: true
  25940. },
  25941. {
  25942. name: "Macro",
  25943. height: math.unit(280, "feet")
  25944. },
  25945. ]
  25946. ))
  25947. characterMakers.push(() => makeCharacter(
  25948. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25949. {
  25950. goddess: {
  25951. height: math.unit(600, "feet"),
  25952. weight: math.unit(2000000, "tons"),
  25953. name: "Goddess",
  25954. image: {
  25955. source: "./media/characters/lady-kubwa/goddess.svg",
  25956. extra: 1240.5 / 1223,
  25957. bottom: 22 / 1263
  25958. }
  25959. },
  25960. goddesser: {
  25961. height: math.unit(900, "feet"),
  25962. weight: math.unit(20000000, "lb"),
  25963. name: "Goddess-er",
  25964. image: {
  25965. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25966. extra: 899 / 888,
  25967. bottom: 12.6 / 912
  25968. }
  25969. },
  25970. },
  25971. [
  25972. {
  25973. name: "Macro",
  25974. height: math.unit(600, "feet"),
  25975. default: true
  25976. },
  25977. {
  25978. name: "Megamacro",
  25979. height: math.unit(250, "miles")
  25980. },
  25981. ]
  25982. ))
  25983. characterMakers.push(() => makeCharacter(
  25984. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25985. {
  25986. front: {
  25987. height: math.unit(7 + 7 / 12, "feet"),
  25988. weight: math.unit(250, "lb"),
  25989. name: "Front",
  25990. image: {
  25991. source: "./media/characters/tala-grovehorn/front.svg",
  25992. extra: 2636 / 2525,
  25993. bottom: 147 / 2781
  25994. }
  25995. },
  25996. back: {
  25997. height: math.unit(7 + 7 / 12, "feet"),
  25998. weight: math.unit(250, "lb"),
  25999. name: "Back",
  26000. image: {
  26001. source: "./media/characters/tala-grovehorn/back.svg",
  26002. extra: 2635 / 2539,
  26003. bottom: 100 / 2732.8
  26004. }
  26005. },
  26006. mouth: {
  26007. height: math.unit(1.15, "feet"),
  26008. name: "Mouth",
  26009. image: {
  26010. source: "./media/characters/tala-grovehorn/mouth.svg"
  26011. }
  26012. },
  26013. dick: {
  26014. height: math.unit(2.36, "feet"),
  26015. name: "Dick",
  26016. image: {
  26017. source: "./media/characters/tala-grovehorn/dick.svg"
  26018. }
  26019. },
  26020. slit: {
  26021. height: math.unit(0.61, "feet"),
  26022. name: "Slit",
  26023. image: {
  26024. source: "./media/characters/tala-grovehorn/slit.svg"
  26025. }
  26026. },
  26027. },
  26028. [
  26029. ]
  26030. ))
  26031. characterMakers.push(() => makeCharacter(
  26032. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26033. {
  26034. front: {
  26035. height: math.unit(7 + 7 / 12, "feet"),
  26036. weight: math.unit(225, "lb"),
  26037. name: "Front",
  26038. image: {
  26039. source: "./media/characters/epona/front.svg",
  26040. extra: 2445 / 2290,
  26041. bottom: 251 / 2696
  26042. }
  26043. },
  26044. back: {
  26045. height: math.unit(7 + 7 / 12, "feet"),
  26046. weight: math.unit(225, "lb"),
  26047. name: "Back",
  26048. image: {
  26049. source: "./media/characters/epona/back.svg",
  26050. extra: 2546 / 2408,
  26051. bottom: 44 / 2589
  26052. }
  26053. },
  26054. genitals: {
  26055. height: math.unit(1.5, "feet"),
  26056. name: "Genitals",
  26057. image: {
  26058. source: "./media/characters/epona/genitals.svg"
  26059. }
  26060. },
  26061. },
  26062. [
  26063. {
  26064. name: "Normal",
  26065. height: math.unit(7 + 7 / 12, "feet"),
  26066. default: true
  26067. },
  26068. ]
  26069. ))
  26070. characterMakers.push(() => makeCharacter(
  26071. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26072. {
  26073. front: {
  26074. height: math.unit(7, "feet"),
  26075. weight: math.unit(518, "lb"),
  26076. name: "Front",
  26077. image: {
  26078. source: "./media/characters/avia-bloodbourn/front.svg",
  26079. extra: 1466 / 1350,
  26080. bottom: 65 / 1527
  26081. }
  26082. },
  26083. },
  26084. [
  26085. ]
  26086. ))
  26087. characterMakers.push(() => makeCharacter(
  26088. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26089. {
  26090. front: {
  26091. height: math.unit(9.35, "feet"),
  26092. weight: math.unit(600, "lb"),
  26093. name: "Front",
  26094. image: {
  26095. source: "./media/characters/amera/front.svg",
  26096. extra: 891 / 818,
  26097. bottom: 30 / 922.7
  26098. }
  26099. },
  26100. back: {
  26101. height: math.unit(9.35, "feet"),
  26102. weight: math.unit(600, "lb"),
  26103. name: "Back",
  26104. image: {
  26105. source: "./media/characters/amera/back.svg",
  26106. extra: 876 / 824,
  26107. bottom: 6.8 / 884
  26108. }
  26109. },
  26110. dick: {
  26111. height: math.unit(2.14, "feet"),
  26112. name: "Dick",
  26113. image: {
  26114. source: "./media/characters/amera/dick.svg"
  26115. }
  26116. },
  26117. },
  26118. [
  26119. {
  26120. name: "Normal",
  26121. height: math.unit(9.35, "feet"),
  26122. default: true
  26123. },
  26124. ]
  26125. ))
  26126. characterMakers.push(() => makeCharacter(
  26127. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26128. {
  26129. kneeling: {
  26130. height: math.unit(3 + 4 / 12, "feet"),
  26131. weight: math.unit(90, "lb"),
  26132. name: "Kneeling",
  26133. image: {
  26134. source: "./media/characters/rosewen/kneeling.svg",
  26135. extra: 1835 / 1571,
  26136. bottom: 27.7 / 1862
  26137. }
  26138. },
  26139. },
  26140. [
  26141. {
  26142. name: "Normal",
  26143. height: math.unit(3 + 4 / 12, "feet"),
  26144. default: true
  26145. },
  26146. ]
  26147. ))
  26148. characterMakers.push(() => makeCharacter(
  26149. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26150. {
  26151. front: {
  26152. height: math.unit(5 + 10 / 12, "feet"),
  26153. weight: math.unit(200, "lb"),
  26154. name: "Front",
  26155. image: {
  26156. source: "./media/characters/sabah/front.svg",
  26157. extra: 849 / 763,
  26158. bottom: 33.9 / 881
  26159. }
  26160. },
  26161. },
  26162. [
  26163. {
  26164. name: "Normal",
  26165. height: math.unit(5 + 10 / 12, "feet"),
  26166. default: true
  26167. },
  26168. ]
  26169. ))
  26170. characterMakers.push(() => makeCharacter(
  26171. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26172. {
  26173. front: {
  26174. height: math.unit(3 + 5 / 12, "feet"),
  26175. weight: math.unit(40, "kg"),
  26176. name: "Front",
  26177. image: {
  26178. source: "./media/characters/purple-flame/front.svg",
  26179. extra: 1577 / 1412,
  26180. bottom: 97 / 1694
  26181. }
  26182. },
  26183. frontDressed: {
  26184. height: math.unit(3 + 5 / 12, "feet"),
  26185. weight: math.unit(40, "kg"),
  26186. name: "Front (Dressed)",
  26187. image: {
  26188. source: "./media/characters/purple-flame/front-dressed.svg",
  26189. extra: 1577 / 1412,
  26190. bottom: 97 / 1694
  26191. }
  26192. },
  26193. headphones: {
  26194. height: math.unit(0.85, "feet"),
  26195. name: "Headphones",
  26196. image: {
  26197. source: "./media/characters/purple-flame/headphones.svg"
  26198. }
  26199. },
  26200. },
  26201. [
  26202. {
  26203. name: "Really Small",
  26204. height: math.unit(5, "cm")
  26205. },
  26206. {
  26207. name: "Micro",
  26208. height: math.unit(1 + 5 / 12, "feet")
  26209. },
  26210. {
  26211. name: "Normal",
  26212. height: math.unit(3 + 5 / 12, "feet"),
  26213. default: true
  26214. },
  26215. {
  26216. name: "Minimacro",
  26217. height: math.unit(125, "feet")
  26218. },
  26219. {
  26220. name: "Macro",
  26221. height: math.unit(0.5, "miles")
  26222. },
  26223. {
  26224. name: "Megamacro",
  26225. height: math.unit(50, "miles")
  26226. },
  26227. {
  26228. name: "Gigantic",
  26229. height: math.unit(750, "miles")
  26230. },
  26231. {
  26232. name: "Planetary",
  26233. height: math.unit(15000, "miles")
  26234. },
  26235. ]
  26236. ))
  26237. characterMakers.push(() => makeCharacter(
  26238. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26239. {
  26240. front: {
  26241. height: math.unit(14, "feet"),
  26242. weight: math.unit(959, "lb"),
  26243. name: "Front",
  26244. image: {
  26245. source: "./media/characters/arsenal/front.svg",
  26246. extra: 2357 / 2157,
  26247. bottom: 93 / 2458
  26248. }
  26249. },
  26250. },
  26251. [
  26252. {
  26253. name: "Normal",
  26254. height: math.unit(14, "feet"),
  26255. default: true
  26256. },
  26257. ]
  26258. ))
  26259. characterMakers.push(() => makeCharacter(
  26260. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26261. {
  26262. front: {
  26263. height: math.unit(6, "feet"),
  26264. weight: math.unit(150, "lb"),
  26265. name: "Front",
  26266. image: {
  26267. source: "./media/characters/adira/front.svg",
  26268. extra: 1078 / 1029,
  26269. bottom: 87 / 1166
  26270. }
  26271. },
  26272. },
  26273. [
  26274. {
  26275. name: "Micro",
  26276. height: math.unit(4, "inches"),
  26277. default: true
  26278. },
  26279. {
  26280. name: "Macro",
  26281. height: math.unit(50, "feet")
  26282. },
  26283. ]
  26284. ))
  26285. characterMakers.push(() => makeCharacter(
  26286. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26287. {
  26288. front: {
  26289. height: math.unit(16, "feet"),
  26290. weight: math.unit(1000, "lb"),
  26291. name: "Front",
  26292. image: {
  26293. source: "./media/characters/grim/front.svg",
  26294. extra: 622 / 614,
  26295. bottom: 18.1 / 642
  26296. }
  26297. },
  26298. back: {
  26299. height: math.unit(16, "feet"),
  26300. weight: math.unit(1000, "lb"),
  26301. name: "Back",
  26302. image: {
  26303. source: "./media/characters/grim/back.svg",
  26304. extra: 610.6 / 602,
  26305. bottom: 40.8 / 652
  26306. }
  26307. },
  26308. hunched: {
  26309. height: math.unit(9.75, "feet"),
  26310. weight: math.unit(1000, "lb"),
  26311. name: "Hunched",
  26312. image: {
  26313. source: "./media/characters/grim/hunched.svg",
  26314. extra: 304 / 297,
  26315. bottom: 35.4 / 394
  26316. }
  26317. },
  26318. },
  26319. [
  26320. {
  26321. name: "Normal",
  26322. height: math.unit(16, "feet"),
  26323. default: true
  26324. },
  26325. ]
  26326. ))
  26327. characterMakers.push(() => makeCharacter(
  26328. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26329. {
  26330. front: {
  26331. height: math.unit(2.3, "meters"),
  26332. weight: math.unit(300, "lb"),
  26333. name: "Front",
  26334. image: {
  26335. source: "./media/characters/sinja/front-sfw.svg",
  26336. extra: 1393 / 1294,
  26337. bottom: 70 / 1463
  26338. }
  26339. },
  26340. frontNsfw: {
  26341. height: math.unit(2.3, "meters"),
  26342. weight: math.unit(300, "lb"),
  26343. name: "Front (NSFW)",
  26344. image: {
  26345. source: "./media/characters/sinja/front-nsfw.svg",
  26346. extra: 1393 / 1294,
  26347. bottom: 70 / 1463
  26348. }
  26349. },
  26350. back: {
  26351. height: math.unit(2.3, "meters"),
  26352. weight: math.unit(300, "lb"),
  26353. name: "Back",
  26354. image: {
  26355. source: "./media/characters/sinja/back.svg",
  26356. extra: 1393 / 1294,
  26357. bottom: 70 / 1463
  26358. }
  26359. },
  26360. head: {
  26361. height: math.unit(1.771, "feet"),
  26362. name: "Head",
  26363. image: {
  26364. source: "./media/characters/sinja/head.svg"
  26365. }
  26366. },
  26367. slit: {
  26368. height: math.unit(0.8, "feet"),
  26369. name: "Slit",
  26370. image: {
  26371. source: "./media/characters/sinja/slit.svg"
  26372. }
  26373. },
  26374. },
  26375. [
  26376. {
  26377. name: "Normal",
  26378. height: math.unit(2.3, "meters")
  26379. },
  26380. {
  26381. name: "Macro",
  26382. height: math.unit(91, "meters"),
  26383. default: true
  26384. },
  26385. {
  26386. name: "Megamacro",
  26387. height: math.unit(91440, "meters")
  26388. },
  26389. {
  26390. name: "Gigamacro",
  26391. height: math.unit(60960000, "meters")
  26392. },
  26393. {
  26394. name: "Teramacro",
  26395. height: math.unit(9144000000, "meters")
  26396. },
  26397. ]
  26398. ))
  26399. characterMakers.push(() => makeCharacter(
  26400. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26401. {
  26402. front: {
  26403. height: math.unit(1.7, "meters"),
  26404. weight: math.unit(130, "lb"),
  26405. name: "Front",
  26406. image: {
  26407. source: "./media/characters/kyu/front.svg",
  26408. extra: 415 / 395,
  26409. bottom: 5 / 420
  26410. }
  26411. },
  26412. head: {
  26413. height: math.unit(1.75, "feet"),
  26414. name: "Head",
  26415. image: {
  26416. source: "./media/characters/kyu/head.svg"
  26417. }
  26418. },
  26419. foot: {
  26420. height: math.unit(0.81, "feet"),
  26421. name: "Foot",
  26422. image: {
  26423. source: "./media/characters/kyu/foot.svg"
  26424. }
  26425. },
  26426. },
  26427. [
  26428. {
  26429. name: "Normal",
  26430. height: math.unit(1.7, "meters")
  26431. },
  26432. {
  26433. name: "Macro",
  26434. height: math.unit(131, "feet"),
  26435. default: true
  26436. },
  26437. {
  26438. name: "Megamacro",
  26439. height: math.unit(91440, "meters")
  26440. },
  26441. {
  26442. name: "Gigamacro",
  26443. height: math.unit(60960000, "meters")
  26444. },
  26445. {
  26446. name: "Teramacro",
  26447. height: math.unit(9144000000, "meters")
  26448. },
  26449. ]
  26450. ))
  26451. characterMakers.push(() => makeCharacter(
  26452. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26453. {
  26454. front: {
  26455. height: math.unit(7 + 1 / 12, "feet"),
  26456. weight: math.unit(250, "lb"),
  26457. name: "Front",
  26458. image: {
  26459. source: "./media/characters/joey/front.svg",
  26460. extra: 1791 / 1537,
  26461. bottom: 28 / 1816
  26462. }
  26463. },
  26464. },
  26465. [
  26466. {
  26467. name: "Micro",
  26468. height: math.unit(3, "inches")
  26469. },
  26470. {
  26471. name: "Normal",
  26472. height: math.unit(7 + 1 / 12, "feet"),
  26473. default: true
  26474. },
  26475. ]
  26476. ))
  26477. characterMakers.push(() => makeCharacter(
  26478. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26479. {
  26480. front: {
  26481. height: math.unit(165, "cm"),
  26482. weight: math.unit(140, "lb"),
  26483. name: "Front",
  26484. image: {
  26485. source: "./media/characters/sam-evans/front.svg",
  26486. extra: 3417 / 3230,
  26487. bottom: 41.3 / 3417
  26488. }
  26489. },
  26490. frontSixTails: {
  26491. height: math.unit(165, "cm"),
  26492. weight: math.unit(140, "lb"),
  26493. name: "Front-six-tails",
  26494. image: {
  26495. source: "./media/characters/sam-evans/front-six-tails.svg",
  26496. extra: 3417 / 3230,
  26497. bottom: 41.3 / 3417
  26498. }
  26499. },
  26500. back: {
  26501. height: math.unit(165, "cm"),
  26502. weight: math.unit(140, "lb"),
  26503. name: "Back",
  26504. image: {
  26505. source: "./media/characters/sam-evans/back.svg",
  26506. extra: 3227 / 3032,
  26507. bottom: 6.8 / 3234
  26508. }
  26509. },
  26510. face: {
  26511. height: math.unit(0.68, "feet"),
  26512. name: "Face",
  26513. image: {
  26514. source: "./media/characters/sam-evans/face.svg"
  26515. }
  26516. },
  26517. },
  26518. [
  26519. {
  26520. name: "Normal",
  26521. height: math.unit(165, "cm"),
  26522. default: true
  26523. },
  26524. {
  26525. name: "Macro",
  26526. height: math.unit(100, "meters")
  26527. },
  26528. {
  26529. name: "Macro+",
  26530. height: math.unit(800, "meters")
  26531. },
  26532. {
  26533. name: "Macro++",
  26534. height: math.unit(3, "km")
  26535. },
  26536. {
  26537. name: "Macro+++",
  26538. height: math.unit(30, "km")
  26539. },
  26540. ]
  26541. ))
  26542. characterMakers.push(() => makeCharacter(
  26543. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26544. {
  26545. front: {
  26546. height: math.unit(10, "feet"),
  26547. weight: math.unit(750, "lb"),
  26548. name: "Front",
  26549. image: {
  26550. source: "./media/characters/juliet-a/front.svg",
  26551. extra: 1766 / 1720,
  26552. bottom: 43 / 1809
  26553. }
  26554. },
  26555. back: {
  26556. height: math.unit(10, "feet"),
  26557. weight: math.unit(750, "lb"),
  26558. name: "Back",
  26559. image: {
  26560. source: "./media/characters/juliet-a/back.svg",
  26561. extra: 1781 / 1734,
  26562. bottom: 35 / 1810,
  26563. }
  26564. },
  26565. },
  26566. [
  26567. {
  26568. name: "Normal",
  26569. height: math.unit(10, "feet"),
  26570. default: true
  26571. },
  26572. {
  26573. name: "Dragon Form",
  26574. height: math.unit(250, "feet")
  26575. },
  26576. {
  26577. name: "Macro",
  26578. height: math.unit(1000, "feet")
  26579. },
  26580. {
  26581. name: "Megamacro",
  26582. height: math.unit(10000, "feet")
  26583. }
  26584. ]
  26585. ))
  26586. characterMakers.push(() => makeCharacter(
  26587. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26588. {
  26589. regular: {
  26590. height: math.unit(7 + 3 / 12, "feet"),
  26591. weight: math.unit(260, "lb"),
  26592. name: "Regular",
  26593. image: {
  26594. source: "./media/characters/wild/regular.svg",
  26595. extra: 97.45 / 92,
  26596. bottom: 6.8 / 104.3
  26597. }
  26598. },
  26599. biggums: {
  26600. height: math.unit(8 + 6 / 12, "feet"),
  26601. weight: math.unit(425, "lb"),
  26602. name: "Biggums",
  26603. image: {
  26604. source: "./media/characters/wild/biggums.svg",
  26605. extra: 97.45 / 92,
  26606. bottom: 7.5 / 132.34
  26607. }
  26608. },
  26609. mawRegular: {
  26610. height: math.unit(1.24, "feet"),
  26611. name: "Maw (Regular)",
  26612. image: {
  26613. source: "./media/characters/wild/maw.svg"
  26614. }
  26615. },
  26616. mawBiggums: {
  26617. height: math.unit(1.47, "feet"),
  26618. name: "Maw (Biggums)",
  26619. image: {
  26620. source: "./media/characters/wild/maw.svg"
  26621. }
  26622. },
  26623. },
  26624. [
  26625. {
  26626. name: "Normal",
  26627. height: math.unit(7 + 3 / 12, "feet"),
  26628. default: true
  26629. },
  26630. ]
  26631. ))
  26632. characterMakers.push(() => makeCharacter(
  26633. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26634. {
  26635. front: {
  26636. height: math.unit(2.5, "meters"),
  26637. weight: math.unit(200, "kg"),
  26638. name: "Front",
  26639. image: {
  26640. source: "./media/characters/vidar/front.svg",
  26641. extra: 2994 / 2795,
  26642. bottom: 56 / 3061
  26643. }
  26644. },
  26645. back: {
  26646. height: math.unit(2.5, "meters"),
  26647. weight: math.unit(200, "kg"),
  26648. name: "Back",
  26649. image: {
  26650. source: "./media/characters/vidar/back.svg",
  26651. extra: 3131 / 2928,
  26652. bottom: 13.5 / 3141.5
  26653. }
  26654. },
  26655. feral: {
  26656. height: math.unit(2.5, "meters"),
  26657. weight: math.unit(2000, "kg"),
  26658. name: "Feral",
  26659. image: {
  26660. source: "./media/characters/vidar/feral.svg",
  26661. extra: 2790 / 1765,
  26662. bottom: 6 / 2796
  26663. }
  26664. },
  26665. },
  26666. [
  26667. {
  26668. name: "Normal",
  26669. height: math.unit(2.5, "meters"),
  26670. default: true
  26671. },
  26672. {
  26673. name: "Macro",
  26674. height: math.unit(100, "meters")
  26675. },
  26676. ]
  26677. ))
  26678. characterMakers.push(() => makeCharacter(
  26679. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26680. {
  26681. front: {
  26682. height: math.unit(5 + 9 / 12, "feet"),
  26683. weight: math.unit(120, "lb"),
  26684. name: "Front",
  26685. image: {
  26686. source: "./media/characters/ash/front.svg",
  26687. extra: 2189 / 1961,
  26688. bottom: 5.2 / 2194
  26689. }
  26690. },
  26691. },
  26692. [
  26693. {
  26694. name: "Normal",
  26695. height: math.unit(5 + 9 / 12, "feet"),
  26696. default: true
  26697. },
  26698. ]
  26699. ))
  26700. characterMakers.push(() => makeCharacter(
  26701. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26702. {
  26703. front: {
  26704. height: math.unit(9, "feet"),
  26705. weight: math.unit(10000, "lb"),
  26706. name: "Front",
  26707. image: {
  26708. source: "./media/characters/gygabite/front.svg",
  26709. bottom: 31.7 / 537.8,
  26710. extra: 505 / 370
  26711. }
  26712. },
  26713. },
  26714. [
  26715. {
  26716. name: "Normal",
  26717. height: math.unit(9, "feet"),
  26718. default: true
  26719. },
  26720. ]
  26721. ))
  26722. characterMakers.push(() => makeCharacter(
  26723. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26724. {
  26725. front: {
  26726. height: math.unit(12, "feet"),
  26727. weight: math.unit(35000, "lb"),
  26728. name: "Front",
  26729. image: {
  26730. source: "./media/characters/p0tat0/front.svg",
  26731. extra: 1065 / 921,
  26732. bottom: 55.7 / 1121.25
  26733. }
  26734. },
  26735. },
  26736. [
  26737. {
  26738. name: "Normal",
  26739. height: math.unit(12, "feet"),
  26740. default: true
  26741. },
  26742. ]
  26743. ))
  26744. characterMakers.push(() => makeCharacter(
  26745. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26746. {
  26747. side: {
  26748. height: math.unit(6.5, "feet"),
  26749. weight: math.unit(800, "lb"),
  26750. name: "Side",
  26751. image: {
  26752. source: "./media/characters/dusk/side.svg",
  26753. extra: 615 / 373,
  26754. bottom: 53 / 664
  26755. }
  26756. },
  26757. sitting: {
  26758. height: math.unit(7, "feet"),
  26759. weight: math.unit(800, "lb"),
  26760. name: "Sitting",
  26761. image: {
  26762. source: "./media/characters/dusk/sitting.svg",
  26763. extra: 753 / 425,
  26764. bottom: 33 / 774
  26765. }
  26766. },
  26767. head: {
  26768. height: math.unit(6.1, "feet"),
  26769. name: "Head",
  26770. image: {
  26771. source: "./media/characters/dusk/head.svg"
  26772. }
  26773. },
  26774. },
  26775. [
  26776. {
  26777. name: "Normal",
  26778. height: math.unit(7, "feet"),
  26779. default: true
  26780. },
  26781. ]
  26782. ))
  26783. characterMakers.push(() => makeCharacter(
  26784. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26785. {
  26786. front: {
  26787. height: math.unit(15, "feet"),
  26788. weight: math.unit(7000, "lb"),
  26789. name: "Front",
  26790. image: {
  26791. source: "./media/characters/jay-direwolf/front.svg",
  26792. extra: 1810 / 1732,
  26793. bottom: 66 / 1892
  26794. }
  26795. },
  26796. },
  26797. [
  26798. {
  26799. name: "Normal",
  26800. height: math.unit(15, "feet"),
  26801. default: true
  26802. },
  26803. ]
  26804. ))
  26805. characterMakers.push(() => makeCharacter(
  26806. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26807. {
  26808. front: {
  26809. height: math.unit(4 + 9 / 12, "feet"),
  26810. weight: math.unit(130, "lb"),
  26811. name: "Front",
  26812. image: {
  26813. source: "./media/characters/anchovie/front.svg",
  26814. extra: 382 / 350,
  26815. bottom: 25 / 409
  26816. }
  26817. },
  26818. back: {
  26819. height: math.unit(4 + 9 / 12, "feet"),
  26820. weight: math.unit(130, "lb"),
  26821. name: "Back",
  26822. image: {
  26823. source: "./media/characters/anchovie/back.svg",
  26824. extra: 385 / 352,
  26825. bottom: 16.6 / 402
  26826. }
  26827. },
  26828. frontDressed: {
  26829. height: math.unit(4 + 9 / 12, "feet"),
  26830. weight: math.unit(130, "lb"),
  26831. name: "Front (Dressed)",
  26832. image: {
  26833. source: "./media/characters/anchovie/front-dressed.svg",
  26834. extra: 382 / 350,
  26835. bottom: 25 / 409
  26836. }
  26837. },
  26838. backDressed: {
  26839. height: math.unit(4 + 9 / 12, "feet"),
  26840. weight: math.unit(130, "lb"),
  26841. name: "Back (Dressed)",
  26842. image: {
  26843. source: "./media/characters/anchovie/back-dressed.svg",
  26844. extra: 385 / 352,
  26845. bottom: 16.6 / 402
  26846. }
  26847. },
  26848. },
  26849. [
  26850. {
  26851. name: "Micro",
  26852. height: math.unit(6.4, "inches")
  26853. },
  26854. {
  26855. name: "Normal",
  26856. height: math.unit(4 + 9 / 12, "feet"),
  26857. default: true
  26858. },
  26859. ]
  26860. ))
  26861. characterMakers.push(() => makeCharacter(
  26862. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26863. {
  26864. front: {
  26865. height: math.unit(2, "meters"),
  26866. weight: math.unit(180, "lb"),
  26867. name: "Front",
  26868. image: {
  26869. source: "./media/characters/acidrenamon/front.svg",
  26870. extra: 987 / 890,
  26871. bottom: 22.8 / 1009
  26872. }
  26873. },
  26874. back: {
  26875. height: math.unit(2, "meters"),
  26876. weight: math.unit(180, "lb"),
  26877. name: "Back",
  26878. image: {
  26879. source: "./media/characters/acidrenamon/back.svg",
  26880. extra: 983 / 891,
  26881. bottom: 8.4 / 992
  26882. }
  26883. },
  26884. head: {
  26885. height: math.unit(1.92, "feet"),
  26886. name: "Head",
  26887. image: {
  26888. source: "./media/characters/acidrenamon/head.svg"
  26889. }
  26890. },
  26891. rump: {
  26892. height: math.unit(1.72, "feet"),
  26893. name: "Rump",
  26894. image: {
  26895. source: "./media/characters/acidrenamon/rump.svg"
  26896. }
  26897. },
  26898. tail: {
  26899. height: math.unit(4.2, "feet"),
  26900. name: "Tail",
  26901. image: {
  26902. source: "./media/characters/acidrenamon/tail.svg"
  26903. }
  26904. },
  26905. },
  26906. [
  26907. {
  26908. name: "Normal",
  26909. height: math.unit(2, "meters"),
  26910. default: true
  26911. },
  26912. {
  26913. name: "Minimacro",
  26914. height: math.unit(7, "meters")
  26915. },
  26916. {
  26917. name: "Macro",
  26918. height: math.unit(200, "meters")
  26919. },
  26920. {
  26921. name: "Gigamacro",
  26922. height: math.unit(0.2, "earths")
  26923. },
  26924. ]
  26925. ))
  26926. characterMakers.push(() => makeCharacter(
  26927. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26928. {
  26929. front: {
  26930. height: math.unit(6, "feet"),
  26931. weight: math.unit(150, "lb"),
  26932. name: "Front",
  26933. image: {
  26934. source: "./media/characters/kenzie-lee/front.svg",
  26935. extra: 1525 / 1465,
  26936. bottom: 45 / 1570
  26937. }
  26938. },
  26939. side: {
  26940. height: math.unit(6, "feet"),
  26941. weight: math.unit(150, "lb"),
  26942. name: "Side",
  26943. image: {
  26944. source: "./media/characters/kenzie-lee/side.svg",
  26945. extra: 5505 / 5383,
  26946. bottom: 60 / 5573
  26947. }
  26948. },
  26949. paw: {
  26950. height: math.unit(0.57, "feet"),
  26951. name: "Paw",
  26952. image: {
  26953. source: "./media/characters/kenzie-lee/paw.svg"
  26954. }
  26955. },
  26956. },
  26957. [
  26958. {
  26959. name: "Normal",
  26960. height: math.unit(152, "feet"),
  26961. default: true
  26962. },
  26963. {
  26964. name: "Megamacro",
  26965. height: math.unit(7, "miles")
  26966. },
  26967. {
  26968. name: "Gigamacro",
  26969. height: math.unit(8000, "miles")
  26970. },
  26971. ]
  26972. ))
  26973. characterMakers.push(() => makeCharacter(
  26974. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26975. {
  26976. side: {
  26977. height: math.unit(6, "feet"),
  26978. weight: math.unit(150, "lb"),
  26979. name: "Side",
  26980. image: {
  26981. source: "./media/characters/withers/side.svg",
  26982. extra: 1830 / 1728,
  26983. bottom: 96 / 1927
  26984. }
  26985. },
  26986. front: {
  26987. height: math.unit(6, "feet"),
  26988. weight: math.unit(150, "lb"),
  26989. name: "Front",
  26990. image: {
  26991. source: "./media/characters/withers/front.svg",
  26992. extra: 1514 / 1438,
  26993. bottom: 118 / 1632
  26994. }
  26995. },
  26996. },
  26997. [
  26998. {
  26999. name: "Macro",
  27000. height: math.unit(168, "feet"),
  27001. default: true
  27002. },
  27003. {
  27004. name: "Megamacro",
  27005. height: math.unit(15, "miles")
  27006. }
  27007. ]
  27008. ))
  27009. characterMakers.push(() => makeCharacter(
  27010. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27011. {
  27012. front: {
  27013. height: math.unit(6 + 7 / 12, "feet"),
  27014. weight: math.unit(250, "lb"),
  27015. name: "Front",
  27016. image: {
  27017. source: "./media/characters/nemoskii/front.svg",
  27018. extra: 2270 / 1734,
  27019. bottom: 86 / 2354
  27020. }
  27021. },
  27022. back: {
  27023. height: math.unit(6 + 7 / 12, "feet"),
  27024. weight: math.unit(250, "lb"),
  27025. name: "Back",
  27026. image: {
  27027. source: "./media/characters/nemoskii/back.svg",
  27028. extra: 1845 / 1788,
  27029. bottom: 10.5 / 1852
  27030. }
  27031. },
  27032. head: {
  27033. height: math.unit(1.31, "feet"),
  27034. name: "Head",
  27035. image: {
  27036. source: "./media/characters/nemoskii/head.svg"
  27037. }
  27038. },
  27039. },
  27040. [
  27041. {
  27042. name: "Micro",
  27043. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27044. },
  27045. {
  27046. name: "Normal",
  27047. height: math.unit(6 + 7 / 12, "feet"),
  27048. default: true
  27049. },
  27050. {
  27051. name: "Macro",
  27052. height: math.unit((6 + 7 / 12) * 150, "feet")
  27053. },
  27054. {
  27055. name: "Macro+",
  27056. height: math.unit((6 + 7 / 12) * 500, "feet")
  27057. },
  27058. {
  27059. name: "Megamacro",
  27060. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27061. },
  27062. ]
  27063. ))
  27064. characterMakers.push(() => makeCharacter(
  27065. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27066. {
  27067. front: {
  27068. height: math.unit(1, "mile"),
  27069. weight: math.unit(265261.9, "lb"),
  27070. name: "Front",
  27071. image: {
  27072. source: "./media/characters/shui/front.svg",
  27073. extra: 1633 / 1564,
  27074. bottom: 91.5 / 1726
  27075. }
  27076. },
  27077. },
  27078. [
  27079. {
  27080. name: "Macro",
  27081. height: math.unit(1, "mile"),
  27082. default: true
  27083. },
  27084. ]
  27085. ))
  27086. characterMakers.push(() => makeCharacter(
  27087. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27088. {
  27089. front: {
  27090. height: math.unit(12 + 6 / 12, "feet"),
  27091. weight: math.unit(1342, "lb"),
  27092. name: "Front",
  27093. image: {
  27094. source: "./media/characters/arokh-takakura/front.svg",
  27095. extra: 1089 / 1043,
  27096. bottom: 77.4 / 1176.7
  27097. }
  27098. },
  27099. back: {
  27100. height: math.unit(12 + 6 / 12, "feet"),
  27101. weight: math.unit(1342, "lb"),
  27102. name: "Back",
  27103. image: {
  27104. source: "./media/characters/arokh-takakura/back.svg",
  27105. extra: 1046 / 1019,
  27106. bottom: 102 / 1150
  27107. }
  27108. },
  27109. },
  27110. [
  27111. {
  27112. name: "Big",
  27113. height: math.unit(12 + 6 / 12, "feet"),
  27114. default: true
  27115. },
  27116. ]
  27117. ))
  27118. characterMakers.push(() => makeCharacter(
  27119. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27120. {
  27121. front: {
  27122. height: math.unit(5 + 6 / 12, "feet"),
  27123. weight: math.unit(150, "lb"),
  27124. name: "Front",
  27125. image: {
  27126. source: "./media/characters/theo/front.svg",
  27127. extra: 1184 / 1131,
  27128. bottom: 7.4 / 1191
  27129. }
  27130. },
  27131. },
  27132. [
  27133. {
  27134. name: "Micro",
  27135. height: math.unit(5, "inches")
  27136. },
  27137. {
  27138. name: "Normal",
  27139. height: math.unit(5 + 6 / 12, "feet"),
  27140. default: true
  27141. },
  27142. ]
  27143. ))
  27144. characterMakers.push(() => makeCharacter(
  27145. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27146. {
  27147. front: {
  27148. height: math.unit(5 + 9 / 12, "feet"),
  27149. weight: math.unit(130, "lb"),
  27150. name: "Front",
  27151. image: {
  27152. source: "./media/characters/cecelia-swift/front.svg",
  27153. extra: 502 / 484,
  27154. bottom: 23 / 523
  27155. }
  27156. },
  27157. back: {
  27158. height: math.unit(5 + 9 / 12, "feet"),
  27159. weight: math.unit(130, "lb"),
  27160. name: "Back",
  27161. image: {
  27162. source: "./media/characters/cecelia-swift/back.svg",
  27163. extra: 499 / 485,
  27164. bottom: 12 / 511
  27165. }
  27166. },
  27167. head: {
  27168. height: math.unit(0.90, "feet"),
  27169. name: "Head",
  27170. image: {
  27171. source: "./media/characters/cecelia-swift/head.svg"
  27172. }
  27173. },
  27174. rump: {
  27175. height: math.unit(1.75, "feet"),
  27176. name: "Rump",
  27177. image: {
  27178. source: "./media/characters/cecelia-swift/rump.svg"
  27179. }
  27180. },
  27181. },
  27182. [
  27183. {
  27184. name: "Normal",
  27185. height: math.unit(5 + 9 / 12, "feet"),
  27186. default: true
  27187. },
  27188. {
  27189. name: "Big",
  27190. height: math.unit(50, "feet")
  27191. },
  27192. {
  27193. name: "Macro",
  27194. height: math.unit(100, "feet")
  27195. },
  27196. {
  27197. name: "Macro+",
  27198. height: math.unit(500, "feet")
  27199. },
  27200. {
  27201. name: "Macro++",
  27202. height: math.unit(1000, "feet")
  27203. },
  27204. ]
  27205. ))
  27206. characterMakers.push(() => makeCharacter(
  27207. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27208. {
  27209. front: {
  27210. height: math.unit(6, "feet"),
  27211. weight: math.unit(150, "lb"),
  27212. name: "Front",
  27213. image: {
  27214. source: "./media/characters/kaunan/front.svg",
  27215. extra: 2890 / 2523,
  27216. bottom: 49 / 2939
  27217. }
  27218. },
  27219. },
  27220. [
  27221. {
  27222. name: "Macro",
  27223. height: math.unit(150, "feet"),
  27224. default: true
  27225. },
  27226. ]
  27227. ))
  27228. characterMakers.push(() => makeCharacter(
  27229. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27230. {
  27231. front: {
  27232. height: math.unit(175, "cm"),
  27233. weight: math.unit(60, "kg"),
  27234. name: "Front",
  27235. image: {
  27236. source: "./media/characters/fei/front.svg",
  27237. extra: 2581 / 2400,
  27238. bottom: 82.2 / 2663
  27239. }
  27240. },
  27241. },
  27242. [
  27243. {
  27244. name: "Mortal",
  27245. height: math.unit(175, "cm")
  27246. },
  27247. {
  27248. name: "Normal",
  27249. height: math.unit(3500, "m"),
  27250. default: true
  27251. },
  27252. {
  27253. name: "Stroll",
  27254. height: math.unit(17.5, "km")
  27255. },
  27256. {
  27257. name: "Showoff",
  27258. height: math.unit(175, "km")
  27259. },
  27260. ]
  27261. ))
  27262. characterMakers.push(() => makeCharacter(
  27263. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27264. {
  27265. front: {
  27266. height: math.unit(7, "feet"),
  27267. weight: math.unit(1000, "kg"),
  27268. name: "Front",
  27269. image: {
  27270. source: "./media/characters/edrax/front.svg",
  27271. extra: 2838 / 2550,
  27272. bottom: 130 / 2968
  27273. }
  27274. },
  27275. },
  27276. [
  27277. {
  27278. name: "Small",
  27279. height: math.unit(7, "feet")
  27280. },
  27281. {
  27282. name: "Normal",
  27283. height: math.unit(1500, "meters")
  27284. },
  27285. {
  27286. name: "Mega",
  27287. height: math.unit(12000000, "km"),
  27288. default: true
  27289. },
  27290. {
  27291. name: "Megamacro",
  27292. height: math.unit(10600000, "lightyears")
  27293. },
  27294. {
  27295. name: "Hypermacro",
  27296. height: math.unit(256, "yottameters")
  27297. },
  27298. ]
  27299. ))
  27300. characterMakers.push(() => makeCharacter(
  27301. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27302. {
  27303. front: {
  27304. height: math.unit(10, "feet"),
  27305. weight: math.unit(750, "lb"),
  27306. name: "Front",
  27307. image: {
  27308. source: "./media/characters/clove/front.svg",
  27309. extra: 2031 / 1860,
  27310. bottom: 47.8 / 2080
  27311. }
  27312. },
  27313. back: {
  27314. height: math.unit(10, "feet"),
  27315. weight: math.unit(750, "lb"),
  27316. name: "Back",
  27317. image: {
  27318. source: "./media/characters/clove/back.svg",
  27319. extra: 2025 / 1859,
  27320. bottom: 46 / 2071
  27321. }
  27322. },
  27323. },
  27324. [
  27325. {
  27326. name: "Normal",
  27327. height: math.unit(10, "feet"),
  27328. default: true
  27329. },
  27330. ]
  27331. ))
  27332. characterMakers.push(() => makeCharacter(
  27333. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27334. {
  27335. front: {
  27336. height: math.unit(4, "feet"),
  27337. weight: math.unit(50, "lb"),
  27338. name: "Front",
  27339. image: {
  27340. source: "./media/characters/alex-rabbit/front.svg",
  27341. extra: 507 / 458,
  27342. bottom: 18.5 / 527
  27343. }
  27344. },
  27345. back: {
  27346. height: math.unit(4, "feet"),
  27347. weight: math.unit(50, "lb"),
  27348. name: "Back",
  27349. image: {
  27350. source: "./media/characters/alex-rabbit/back.svg",
  27351. extra: 502 / 460,
  27352. bottom: 18.9 / 521
  27353. }
  27354. },
  27355. },
  27356. [
  27357. {
  27358. name: "Normal",
  27359. height: math.unit(4, "feet"),
  27360. default: true
  27361. },
  27362. ]
  27363. ))
  27364. characterMakers.push(() => makeCharacter(
  27365. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27366. {
  27367. front: {
  27368. height: math.unit(1 + 3 / 12, "feet"),
  27369. weight: math.unit(80, "lb"),
  27370. name: "Front",
  27371. image: {
  27372. source: "./media/characters/zander-rose/front.svg",
  27373. extra: 916 / 797,
  27374. bottom: 17 / 933
  27375. }
  27376. },
  27377. back: {
  27378. height: math.unit(1 + 3 / 12, "feet"),
  27379. weight: math.unit(80, "lb"),
  27380. name: "Back",
  27381. image: {
  27382. source: "./media/characters/zander-rose/back.svg",
  27383. extra: 903 / 779,
  27384. bottom: 31 / 934
  27385. }
  27386. },
  27387. },
  27388. [
  27389. {
  27390. name: "Normal",
  27391. height: math.unit(1 + 3 / 12, "feet"),
  27392. default: true
  27393. },
  27394. ]
  27395. ))
  27396. characterMakers.push(() => makeCharacter(
  27397. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27398. {
  27399. anthro: {
  27400. height: math.unit(6, "feet"),
  27401. weight: math.unit(150, "lb"),
  27402. name: "Anthro",
  27403. image: {
  27404. source: "./media/characters/razz/anthro.svg",
  27405. extra: 1437 / 1343,
  27406. bottom: 48 / 1485
  27407. }
  27408. },
  27409. feral: {
  27410. height: math.unit(6, "feet"),
  27411. weight: math.unit(150, "lb"),
  27412. name: "Feral",
  27413. image: {
  27414. source: "./media/characters/razz/feral.svg",
  27415. extra: 2569 / 1385,
  27416. bottom: 95 / 2664
  27417. }
  27418. },
  27419. },
  27420. [
  27421. {
  27422. name: "Normal",
  27423. height: math.unit(6, "feet"),
  27424. default: true
  27425. },
  27426. ]
  27427. ))
  27428. characterMakers.push(() => makeCharacter(
  27429. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27430. {
  27431. front: {
  27432. height: math.unit(9 + 4 / 12, "feet"),
  27433. weight: math.unit(500, "lb"),
  27434. name: "Front",
  27435. image: {
  27436. source: "./media/characters/morrigan/front.svg",
  27437. extra: 2707 / 2579,
  27438. bottom: 156 / 2863
  27439. }
  27440. },
  27441. },
  27442. [
  27443. {
  27444. name: "Normal",
  27445. height: math.unit(9 + 4 / 12, "feet"),
  27446. default: true
  27447. },
  27448. ]
  27449. ))
  27450. characterMakers.push(() => makeCharacter(
  27451. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27452. {
  27453. front: {
  27454. height: math.unit(5, "stories"),
  27455. weight: math.unit(4000, "lb"),
  27456. name: "Front",
  27457. image: {
  27458. source: "./media/characters/jenene/front.svg",
  27459. extra: 1780 / 1710,
  27460. bottom: 57 / 1837
  27461. }
  27462. },
  27463. },
  27464. [
  27465. {
  27466. name: "Normal",
  27467. height: math.unit(5, "stories"),
  27468. default: true
  27469. },
  27470. ]
  27471. ))
  27472. characterMakers.push(() => makeCharacter(
  27473. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27474. {
  27475. front: {
  27476. height: math.unit(6, "feet"),
  27477. weight: math.unit(150, "lb"),
  27478. name: "Front",
  27479. image: {
  27480. source: "./media/characters/vix-archaser/front.svg",
  27481. extra: 2767 / 2562,
  27482. bottom: 36 / 2803
  27483. }
  27484. },
  27485. },
  27486. [
  27487. {
  27488. name: "Micro",
  27489. height: math.unit(1, "foot")
  27490. },
  27491. {
  27492. name: "Normal",
  27493. height: math.unit(6 + 5 / 12, "feet")
  27494. },
  27495. {
  27496. name: "Minimacro",
  27497. height: math.unit(500, "feet")
  27498. },
  27499. {
  27500. name: "Macro",
  27501. height: math.unit(4, "miles")
  27502. },
  27503. {
  27504. name: "Megamacro",
  27505. height: math.unit(250, "miles"),
  27506. default: true
  27507. },
  27508. {
  27509. name: "Gigamacro",
  27510. height: math.unit(1, "universe")
  27511. },
  27512. {
  27513. name: "Endgame",
  27514. height: math.unit(100, "multiverses")
  27515. }
  27516. ]
  27517. ))
  27518. characterMakers.push(() => makeCharacter(
  27519. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27520. {
  27521. taurSfw: {
  27522. height: math.unit(10, "meters"),
  27523. weight: math.unit(17500, "kg"),
  27524. name: "Taur",
  27525. image: {
  27526. source: "./media/characters/faey/taur-sfw.svg",
  27527. extra: 1200 / 968,
  27528. bottom: 41 / 1241
  27529. }
  27530. },
  27531. chestmaw: {
  27532. height: math.unit(2.01, "meters"),
  27533. name: "Chestmaw",
  27534. image: {
  27535. source: "./media/characters/faey/chestmaw.svg"
  27536. }
  27537. },
  27538. foot: {
  27539. height: math.unit(2.43, "meters"),
  27540. name: "Foot",
  27541. image: {
  27542. source: "./media/characters/faey/foot.svg"
  27543. }
  27544. },
  27545. jaws: {
  27546. height: math.unit(1.66, "meters"),
  27547. name: "Jaws",
  27548. image: {
  27549. source: "./media/characters/faey/jaws.svg"
  27550. }
  27551. },
  27552. tongues: {
  27553. height: math.unit(2.01, "meters"),
  27554. name: "Tongues",
  27555. image: {
  27556. source: "./media/characters/faey/tongues.svg"
  27557. }
  27558. },
  27559. },
  27560. [
  27561. {
  27562. name: "Small",
  27563. height: math.unit(10, "meters"),
  27564. default: true
  27565. },
  27566. {
  27567. name: "Big",
  27568. height: math.unit(500000, "km")
  27569. },
  27570. ]
  27571. ))
  27572. characterMakers.push(() => makeCharacter(
  27573. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27574. {
  27575. front: {
  27576. height: math.unit(7, "feet"),
  27577. weight: math.unit(275, "lb"),
  27578. name: "Front",
  27579. image: {
  27580. source: "./media/characters/roku/front.svg",
  27581. extra: 903 / 878,
  27582. bottom: 37 / 940
  27583. }
  27584. },
  27585. },
  27586. [
  27587. {
  27588. name: "Normal",
  27589. height: math.unit(7, "feet"),
  27590. default: true
  27591. },
  27592. {
  27593. name: "Macro",
  27594. height: math.unit(500, "feet")
  27595. },
  27596. {
  27597. name: "Megamacro",
  27598. height: math.unit(200, "miles")
  27599. },
  27600. ]
  27601. ))
  27602. characterMakers.push(() => makeCharacter(
  27603. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27604. {
  27605. front: {
  27606. height: math.unit(6 + 2 / 12, "feet"),
  27607. weight: math.unit(150, "lb"),
  27608. name: "Front",
  27609. image: {
  27610. source: "./media/characters/lira/front.svg",
  27611. extra: 1727 / 1605,
  27612. bottom: 26 / 1753
  27613. }
  27614. },
  27615. back: {
  27616. height: math.unit(6 + 2 / 12, "feet"),
  27617. weight: math.unit(150, "lb"),
  27618. name: "Back",
  27619. image: {
  27620. source: "./media/characters/lira/back.svg",
  27621. extra: 1713/1621,
  27622. bottom: 20/1733
  27623. }
  27624. },
  27625. hand: {
  27626. height: math.unit(0.75, "feet"),
  27627. name: "Hand",
  27628. image: {
  27629. source: "./media/characters/lira/hand.svg"
  27630. }
  27631. },
  27632. maw: {
  27633. height: math.unit(0.65, "feet"),
  27634. name: "Maw",
  27635. image: {
  27636. source: "./media/characters/lira/maw.svg"
  27637. }
  27638. },
  27639. pawDigi: {
  27640. height: math.unit(1.6, "feet"),
  27641. name: "Paw Digi",
  27642. image: {
  27643. source: "./media/characters/lira/paw-digi.svg"
  27644. }
  27645. },
  27646. pawPlanti: {
  27647. height: math.unit(1.4, "feet"),
  27648. name: "Paw Planti",
  27649. image: {
  27650. source: "./media/characters/lira/paw-planti.svg"
  27651. }
  27652. },
  27653. },
  27654. [
  27655. {
  27656. name: "Normal",
  27657. height: math.unit(6 + 2 / 12, "feet"),
  27658. default: true
  27659. },
  27660. {
  27661. name: "Macro",
  27662. height: math.unit(100, "feet")
  27663. },
  27664. {
  27665. name: "Macro²",
  27666. height: math.unit(1600, "feet")
  27667. },
  27668. {
  27669. name: "Planetary",
  27670. height: math.unit(20, "earths")
  27671. },
  27672. ]
  27673. ))
  27674. characterMakers.push(() => makeCharacter(
  27675. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27676. {
  27677. front: {
  27678. height: math.unit(6, "feet"),
  27679. weight: math.unit(150, "lb"),
  27680. name: "Front",
  27681. image: {
  27682. source: "./media/characters/hadjet/front.svg",
  27683. extra: 1480 / 1346,
  27684. bottom: 26 / 1506
  27685. }
  27686. },
  27687. frontNsfw: {
  27688. height: math.unit(6, "feet"),
  27689. weight: math.unit(150, "lb"),
  27690. name: "Front (NSFW)",
  27691. image: {
  27692. source: "./media/characters/hadjet/front-nsfw.svg",
  27693. extra: 1440 / 1358,
  27694. bottom: 52 / 1492
  27695. }
  27696. },
  27697. },
  27698. [
  27699. {
  27700. name: "Macro",
  27701. height: math.unit(10, "stories"),
  27702. default: true
  27703. },
  27704. {
  27705. name: "Megamacro",
  27706. height: math.unit(1.5, "miles")
  27707. },
  27708. {
  27709. name: "Megamacro+",
  27710. height: math.unit(5, "miles")
  27711. },
  27712. ]
  27713. ))
  27714. characterMakers.push(() => makeCharacter(
  27715. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27716. {
  27717. side: {
  27718. height: math.unit(106, "feet"),
  27719. weight: math.unit(500, "tonnes"),
  27720. name: "Side",
  27721. image: {
  27722. source: "./media/characters/kodran/side.svg",
  27723. extra: 553 / 480,
  27724. bottom: 33 / 586
  27725. }
  27726. },
  27727. front: {
  27728. height: math.unit(132, "feet"),
  27729. weight: math.unit(500, "tonnes"),
  27730. name: "Front",
  27731. image: {
  27732. source: "./media/characters/kodran/front.svg",
  27733. extra: 667 / 643,
  27734. bottom: 42 / 709
  27735. }
  27736. },
  27737. flying: {
  27738. height: math.unit(350, "feet"),
  27739. weight: math.unit(500, "tonnes"),
  27740. name: "Flying",
  27741. image: {
  27742. source: "./media/characters/kodran/flying.svg"
  27743. }
  27744. },
  27745. foot: {
  27746. height: math.unit(33, "feet"),
  27747. name: "Foot",
  27748. image: {
  27749. source: "./media/characters/kodran/foot.svg"
  27750. }
  27751. },
  27752. footFront: {
  27753. height: math.unit(19, "feet"),
  27754. name: "Foot (Front)",
  27755. image: {
  27756. source: "./media/characters/kodran/foot-front.svg",
  27757. extra: 261 / 261,
  27758. bottom: 91 / 352
  27759. }
  27760. },
  27761. headFront: {
  27762. height: math.unit(53, "feet"),
  27763. name: "Head (Front)",
  27764. image: {
  27765. source: "./media/characters/kodran/head-front.svg"
  27766. }
  27767. },
  27768. headSide: {
  27769. height: math.unit(65, "feet"),
  27770. name: "Head (Side)",
  27771. image: {
  27772. source: "./media/characters/kodran/head-side.svg"
  27773. }
  27774. },
  27775. throat: {
  27776. height: math.unit(79, "feet"),
  27777. name: "Throat",
  27778. image: {
  27779. source: "./media/characters/kodran/throat.svg"
  27780. }
  27781. },
  27782. },
  27783. [
  27784. {
  27785. name: "Large",
  27786. height: math.unit(106, "feet"),
  27787. default: true
  27788. },
  27789. ]
  27790. ))
  27791. characterMakers.push(() => makeCharacter(
  27792. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27793. {
  27794. side: {
  27795. height: math.unit(11, "feet"),
  27796. weight: math.unit(150, "lb"),
  27797. name: "Side",
  27798. image: {
  27799. source: "./media/characters/pyxaron/side.svg",
  27800. extra: 305 / 195,
  27801. bottom: 17 / 322
  27802. }
  27803. },
  27804. },
  27805. [
  27806. {
  27807. name: "Normal",
  27808. height: math.unit(11, "feet"),
  27809. default: true
  27810. },
  27811. ]
  27812. ))
  27813. characterMakers.push(() => makeCharacter(
  27814. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27815. {
  27816. front: {
  27817. height: math.unit(6, "feet"),
  27818. weight: math.unit(150, "lb"),
  27819. name: "Front",
  27820. image: {
  27821. source: "./media/characters/meep/front.svg",
  27822. extra: 88 / 80,
  27823. bottom: 6 / 94
  27824. }
  27825. },
  27826. },
  27827. [
  27828. {
  27829. name: "Fun Sized",
  27830. height: math.unit(2, "inches"),
  27831. default: true
  27832. },
  27833. {
  27834. name: "Friend Sized",
  27835. height: math.unit(8, "inches")
  27836. },
  27837. ]
  27838. ))
  27839. characterMakers.push(() => makeCharacter(
  27840. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27841. {
  27842. front: {
  27843. height: math.unit(15, "feet"),
  27844. weight: math.unit(2500, "lb"),
  27845. name: "Front",
  27846. image: {
  27847. source: "./media/characters/holly-rabbit/front.svg",
  27848. extra: 1433 / 1233,
  27849. bottom: 125 / 1558
  27850. }
  27851. },
  27852. dick: {
  27853. height: math.unit(4.6, "feet"),
  27854. name: "Dick",
  27855. image: {
  27856. source: "./media/characters/holly-rabbit/dick.svg"
  27857. }
  27858. },
  27859. },
  27860. [
  27861. {
  27862. name: "Normal",
  27863. height: math.unit(15, "feet"),
  27864. default: true
  27865. },
  27866. {
  27867. name: "Macro",
  27868. height: math.unit(250, "feet")
  27869. },
  27870. {
  27871. name: "Macro+",
  27872. height: math.unit(2500, "feet")
  27873. },
  27874. ]
  27875. ))
  27876. characterMakers.push(() => makeCharacter(
  27877. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27878. {
  27879. front: {
  27880. height: math.unit(3.02, "meters"),
  27881. weight: math.unit(500, "kg"),
  27882. name: "Front",
  27883. image: {
  27884. source: "./media/characters/drena/front.svg",
  27885. extra: 282 / 243,
  27886. bottom: 8 / 290
  27887. }
  27888. },
  27889. side: {
  27890. height: math.unit(3.02, "meters"),
  27891. weight: math.unit(500, "kg"),
  27892. name: "Side",
  27893. image: {
  27894. source: "./media/characters/drena/side.svg",
  27895. extra: 280 / 245,
  27896. bottom: 10 / 290
  27897. }
  27898. },
  27899. back: {
  27900. height: math.unit(3.02, "meters"),
  27901. weight: math.unit(500, "kg"),
  27902. name: "Back",
  27903. image: {
  27904. source: "./media/characters/drena/back.svg",
  27905. extra: 278 / 243,
  27906. bottom: 2 / 280
  27907. }
  27908. },
  27909. foot: {
  27910. height: math.unit(0.75, "meters"),
  27911. name: "Foot",
  27912. image: {
  27913. source: "./media/characters/drena/foot.svg"
  27914. }
  27915. },
  27916. maw: {
  27917. height: math.unit(0.82, "meters"),
  27918. name: "Maw",
  27919. image: {
  27920. source: "./media/characters/drena/maw.svg"
  27921. }
  27922. },
  27923. rump: {
  27924. height: math.unit(0.93, "meters"),
  27925. name: "Rump",
  27926. image: {
  27927. source: "./media/characters/drena/rump.svg"
  27928. }
  27929. },
  27930. },
  27931. [
  27932. {
  27933. name: "Normal",
  27934. height: math.unit(3.02, "meters"),
  27935. default: true
  27936. },
  27937. ]
  27938. ))
  27939. characterMakers.push(() => makeCharacter(
  27940. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27941. {
  27942. front: {
  27943. height: math.unit(6 + 4 / 12, "feet"),
  27944. weight: math.unit(250, "lb"),
  27945. name: "Front",
  27946. image: {
  27947. source: "./media/characters/remmyzilla/front.svg",
  27948. extra: 4033 / 3588,
  27949. bottom: 123 / 4156
  27950. }
  27951. },
  27952. back: {
  27953. height: math.unit(6 + 4 / 12, "feet"),
  27954. weight: math.unit(250, "lb"),
  27955. name: "Back",
  27956. image: {
  27957. source: "./media/characters/remmyzilla/back.svg",
  27958. extra: 2687 / 2555,
  27959. bottom: 48 / 2735
  27960. }
  27961. },
  27962. frontFancy: {
  27963. height: math.unit(6 + 4 / 12, "feet"),
  27964. weight: math.unit(250, "lb"),
  27965. name: "Front (Fancy)",
  27966. image: {
  27967. source: "./media/characters/remmyzilla/front-fancy.svg",
  27968. extra: 4119 / 3419,
  27969. bottom: 237 / 4356
  27970. }
  27971. },
  27972. paw: {
  27973. height: math.unit(1.73, "feet"),
  27974. name: "Paw",
  27975. image: {
  27976. source: "./media/characters/remmyzilla/paw.svg"
  27977. }
  27978. },
  27979. maw: {
  27980. height: math.unit(1.73, "feet"),
  27981. name: "Maw",
  27982. image: {
  27983. source: "./media/characters/remmyzilla/maw.svg"
  27984. }
  27985. },
  27986. },
  27987. [
  27988. {
  27989. name: "Normal",
  27990. height: math.unit(6 + 4 / 12, "feet")
  27991. },
  27992. {
  27993. name: "Minimacro",
  27994. height: math.unit(12 + 8 / 12, "feet")
  27995. },
  27996. {
  27997. name: "Normal",
  27998. height: math.unit(640, "feet"),
  27999. default: true
  28000. },
  28001. {
  28002. name: "Megamacro",
  28003. height: math.unit(6400, "feet")
  28004. },
  28005. {
  28006. name: "Gigamacro",
  28007. height: math.unit(64000, "miles")
  28008. },
  28009. ]
  28010. ))
  28011. characterMakers.push(() => makeCharacter(
  28012. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28013. {
  28014. front: {
  28015. height: math.unit(2.5, "meters"),
  28016. weight: math.unit(300, "lb"),
  28017. name: "Front",
  28018. image: {
  28019. source: "./media/characters/lawrence/front.svg",
  28020. extra: 357 / 335,
  28021. bottom: 30 / 387
  28022. }
  28023. },
  28024. back: {
  28025. height: math.unit(2.5, "meters"),
  28026. weight: math.unit(300, "lb"),
  28027. name: "Back",
  28028. image: {
  28029. source: "./media/characters/lawrence/back.svg",
  28030. extra: 357 / 338,
  28031. bottom: 16 / 373
  28032. }
  28033. },
  28034. head: {
  28035. height: math.unit(0.9, "meter"),
  28036. name: "Head",
  28037. image: {
  28038. source: "./media/characters/lawrence/head.svg"
  28039. }
  28040. },
  28041. maw: {
  28042. height: math.unit(0.7, "meter"),
  28043. name: "Maw",
  28044. image: {
  28045. source: "./media/characters/lawrence/maw.svg"
  28046. }
  28047. },
  28048. footBottom: {
  28049. height: math.unit(0.5, "meter"),
  28050. name: "Foot (Bottom)",
  28051. image: {
  28052. source: "./media/characters/lawrence/foot-bottom.svg"
  28053. }
  28054. },
  28055. footTop: {
  28056. height: math.unit(0.5, "meter"),
  28057. name: "Foot (Top)",
  28058. image: {
  28059. source: "./media/characters/lawrence/foot-top.svg"
  28060. }
  28061. },
  28062. },
  28063. [
  28064. {
  28065. name: "Normal",
  28066. height: math.unit(2.5, "meters"),
  28067. default: true
  28068. },
  28069. {
  28070. name: "Macro",
  28071. height: math.unit(95, "meters")
  28072. },
  28073. {
  28074. name: "Megamacro",
  28075. height: math.unit(150, "km")
  28076. },
  28077. ]
  28078. ))
  28079. characterMakers.push(() => makeCharacter(
  28080. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28081. {
  28082. front: {
  28083. height: math.unit(4.2, "meters"),
  28084. name: "Front",
  28085. image: {
  28086. source: "./media/characters/sydney/front.svg",
  28087. extra: 1323 / 1277,
  28088. bottom: 111 / 1434
  28089. }
  28090. },
  28091. },
  28092. [
  28093. {
  28094. name: "Normal",
  28095. height: math.unit(4.2, "meters"),
  28096. default: true
  28097. },
  28098. ]
  28099. ))
  28100. characterMakers.push(() => makeCharacter(
  28101. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28102. {
  28103. back: {
  28104. height: math.unit(201, "feet"),
  28105. name: "Back",
  28106. image: {
  28107. source: "./media/characters/jessica/back.svg",
  28108. extra: 273 / 259,
  28109. bottom: 7 / 280
  28110. }
  28111. },
  28112. },
  28113. [
  28114. {
  28115. name: "Normal",
  28116. height: math.unit(201, "feet"),
  28117. default: true
  28118. },
  28119. {
  28120. name: "Megamacro",
  28121. height: math.unit(8, "miles")
  28122. },
  28123. ]
  28124. ))
  28125. characterMakers.push(() => makeCharacter(
  28126. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28127. {
  28128. side: {
  28129. height: math.unit(320, "cm"),
  28130. name: "Side",
  28131. image: {
  28132. source: "./media/characters/victoria/side.svg",
  28133. extra: 778 / 346,
  28134. bottom: 56 / 834
  28135. }
  28136. },
  28137. maw: {
  28138. height: math.unit(5.9, "feet"),
  28139. name: "Maw",
  28140. image: {
  28141. source: "./media/characters/victoria/maw.svg"
  28142. }
  28143. },
  28144. },
  28145. [
  28146. {
  28147. name: "Normal",
  28148. height: math.unit(320, "cm"),
  28149. default: true
  28150. },
  28151. ]
  28152. ))
  28153. characterMakers.push(() => makeCharacter(
  28154. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28155. {
  28156. front: {
  28157. height: math.unit(5 + 6 / 12, "feet"),
  28158. name: "Front",
  28159. image: {
  28160. source: "./media/characters/cat/front.svg",
  28161. extra: 1374 / 1257,
  28162. bottom: 59 / 1433
  28163. }
  28164. },
  28165. back: {
  28166. height: math.unit(5 + 6 / 12, "feet"),
  28167. name: "Back",
  28168. image: {
  28169. source: "./media/characters/cat/back.svg",
  28170. extra: 1337 / 1226,
  28171. bottom: 34 / 1371
  28172. }
  28173. },
  28174. taur: {
  28175. height: math.unit(7, "feet"),
  28176. name: "Taur",
  28177. image: {
  28178. source: "./media/characters/cat/taur.svg",
  28179. extra: 1345 / 1231,
  28180. bottom: 66 / 1411
  28181. }
  28182. },
  28183. lucario: {
  28184. height: math.unit(4, "feet"),
  28185. name: "Lucario",
  28186. image: {
  28187. source: "./media/characters/cat/lucario.svg",
  28188. extra: 1470 / 1318,
  28189. bottom: 65 / 1535
  28190. }
  28191. },
  28192. megaLucario: {
  28193. height: math.unit(4, "feet"),
  28194. name: "Mega Lucario",
  28195. image: {
  28196. source: "./media/characters/cat/mega-lucario.svg",
  28197. extra: 1515 / 1319,
  28198. bottom: 63 / 1578
  28199. }
  28200. },
  28201. nickit: {
  28202. height: math.unit(2, "feet"),
  28203. name: "Nickit",
  28204. image: {
  28205. source: "./media/characters/cat/nickit.svg",
  28206. extra: 1980 / 1585,
  28207. bottom: 102 / 2082
  28208. }
  28209. },
  28210. lopunnyFront: {
  28211. height: math.unit(5, "feet"),
  28212. name: "Lopunny (Front)",
  28213. image: {
  28214. source: "./media/characters/cat/lopunny-front.svg",
  28215. extra: 1782 / 1469,
  28216. bottom: 38 / 1820
  28217. }
  28218. },
  28219. lopunnyBack: {
  28220. height: math.unit(5, "feet"),
  28221. name: "Lopunny (Back)",
  28222. image: {
  28223. source: "./media/characters/cat/lopunny-back.svg",
  28224. extra: 1660 / 1490,
  28225. bottom: 25 / 1685
  28226. }
  28227. },
  28228. },
  28229. [
  28230. {
  28231. name: "Really small",
  28232. height: math.unit(1, "nm")
  28233. },
  28234. {
  28235. name: "Micro",
  28236. height: math.unit(5, "inches")
  28237. },
  28238. {
  28239. name: "Normal",
  28240. height: math.unit(5 + 6 / 12, "feet"),
  28241. default: true
  28242. },
  28243. {
  28244. name: "Macro",
  28245. height: math.unit(50, "feet")
  28246. },
  28247. {
  28248. name: "Macro+",
  28249. height: math.unit(150, "feet")
  28250. },
  28251. {
  28252. name: "Megamacro",
  28253. height: math.unit(100, "miles")
  28254. },
  28255. ]
  28256. ))
  28257. characterMakers.push(() => makeCharacter(
  28258. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28259. {
  28260. front: {
  28261. height: math.unit(63.4, "meters"),
  28262. weight: math.unit(3.28349e+6, "kilograms"),
  28263. name: "Front",
  28264. image: {
  28265. source: "./media/characters/kirina-violet/front.svg",
  28266. extra: 2812 / 2725,
  28267. bottom: 0 / 2812
  28268. }
  28269. },
  28270. back: {
  28271. height: math.unit(63.4, "meters"),
  28272. weight: math.unit(3.28349e+6, "kilograms"),
  28273. name: "Back",
  28274. image: {
  28275. source: "./media/characters/kirina-violet/back.svg",
  28276. extra: 2812 / 2725,
  28277. bottom: 0 / 2812
  28278. }
  28279. },
  28280. mouth: {
  28281. height: math.unit(4.35, "meters"),
  28282. name: "Mouth",
  28283. image: {
  28284. source: "./media/characters/kirina-violet/mouth.svg"
  28285. }
  28286. },
  28287. paw: {
  28288. height: math.unit(5.6, "meters"),
  28289. name: "Paw",
  28290. image: {
  28291. source: "./media/characters/kirina-violet/paw.svg"
  28292. }
  28293. },
  28294. tail: {
  28295. height: math.unit(18, "meters"),
  28296. name: "Tail",
  28297. image: {
  28298. source: "./media/characters/kirina-violet/tail.svg"
  28299. }
  28300. },
  28301. },
  28302. [
  28303. {
  28304. name: "Macro",
  28305. height: math.unit(63.4, "meters"),
  28306. default: true
  28307. },
  28308. ]
  28309. ))
  28310. characterMakers.push(() => makeCharacter(
  28311. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28312. {
  28313. front: {
  28314. height: math.unit(60, "feet"),
  28315. name: "Front",
  28316. image: {
  28317. source: "./media/characters/cat-gigachu/front.svg",
  28318. extra: 1024 / 780,
  28319. bottom: 23 / 1047
  28320. }
  28321. },
  28322. back: {
  28323. height: math.unit(60, "feet"),
  28324. name: "Back",
  28325. image: {
  28326. source: "./media/characters/cat-gigachu/back.svg",
  28327. extra: 1024 / 780,
  28328. bottom: 23 / 1047
  28329. }
  28330. },
  28331. },
  28332. [
  28333. {
  28334. name: "Dynamax",
  28335. height: math.unit(60, "feet"),
  28336. default: true
  28337. },
  28338. ]
  28339. ))
  28340. characterMakers.push(() => makeCharacter(
  28341. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28342. {
  28343. front: {
  28344. height: math.unit(6, "feet"),
  28345. weight: math.unit(150, "lb"),
  28346. name: "Front",
  28347. image: {
  28348. source: "./media/characters/sfaiyan/front.svg",
  28349. extra: 999 / 978,
  28350. bottom: 5 / 1004
  28351. }
  28352. },
  28353. },
  28354. [
  28355. {
  28356. name: "Normal",
  28357. height: math.unit(1.82, "meters")
  28358. },
  28359. {
  28360. name: "Giant",
  28361. height: math.unit(2.27, "km"),
  28362. default: true
  28363. },
  28364. ]
  28365. ))
  28366. characterMakers.push(() => makeCharacter(
  28367. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28368. {
  28369. front: {
  28370. height: math.unit(179, "cm"),
  28371. weight: math.unit(100, "kg"),
  28372. name: "Front",
  28373. image: {
  28374. source: "./media/characters/raunehkeli/front.svg",
  28375. extra: 1934 / 1926,
  28376. bottom: 0 / 1934
  28377. }
  28378. },
  28379. },
  28380. [
  28381. {
  28382. name: "Normal",
  28383. height: math.unit(179, "cm")
  28384. },
  28385. {
  28386. name: "Maximum",
  28387. height: math.unit(575, "meters"),
  28388. default: true
  28389. },
  28390. ]
  28391. ))
  28392. characterMakers.push(() => makeCharacter(
  28393. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28394. {
  28395. front: {
  28396. height: math.unit(6, "feet"),
  28397. weight: math.unit(150, "lb"),
  28398. name: "Front",
  28399. image: {
  28400. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28401. extra: 2625 / 2518,
  28402. bottom: 60 / 2685
  28403. }
  28404. },
  28405. },
  28406. [
  28407. {
  28408. name: "Normal",
  28409. height: math.unit(6 + 2 / 12, "feet")
  28410. },
  28411. {
  28412. name: "Macro",
  28413. height: math.unit(1180, "feet"),
  28414. default: true
  28415. },
  28416. ]
  28417. ))
  28418. characterMakers.push(() => makeCharacter(
  28419. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28420. {
  28421. front: {
  28422. height: math.unit(5 + 6 / 12, "feet"),
  28423. weight: math.unit(108, "lb"),
  28424. name: "Front",
  28425. image: {
  28426. source: "./media/characters/lilith-zott/front.svg",
  28427. extra: 2510 / 2238,
  28428. bottom: 100 / 2610
  28429. }
  28430. },
  28431. frontDressed: {
  28432. height: math.unit(5 + 6 / 12, "feet"),
  28433. weight: math.unit(108, "lb"),
  28434. name: "Front (Dressed)",
  28435. image: {
  28436. source: "./media/characters/lilith-zott/front-dressed.svg",
  28437. extra: 2510 / 2238,
  28438. bottom: 100 / 2610
  28439. }
  28440. },
  28441. },
  28442. [
  28443. {
  28444. name: "Normal",
  28445. height: math.unit(5 + 6 / 12, "feet")
  28446. },
  28447. {
  28448. name: "Macro",
  28449. height: math.unit(1030, "feet"),
  28450. default: true
  28451. },
  28452. ]
  28453. ))
  28454. characterMakers.push(() => makeCharacter(
  28455. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28456. {
  28457. front: {
  28458. height: math.unit(6, "feet"),
  28459. weight: math.unit(150, "lb"),
  28460. name: "Front",
  28461. image: {
  28462. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28463. extra: 2567 / 2435,
  28464. bottom: 39 / 2606
  28465. }
  28466. },
  28467. frontSuper: {
  28468. height: math.unit(6, "feet"),
  28469. name: "Front (Super)",
  28470. image: {
  28471. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28472. extra: 2567 / 2435,
  28473. bottom: 39 / 2606
  28474. }
  28475. },
  28476. },
  28477. [
  28478. {
  28479. name: "Normal",
  28480. height: math.unit(5 + 10 / 12, "feet")
  28481. },
  28482. {
  28483. name: "Macro",
  28484. height: math.unit(1100, "feet"),
  28485. default: true
  28486. },
  28487. ]
  28488. ))
  28489. characterMakers.push(() => makeCharacter(
  28490. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28491. {
  28492. front: {
  28493. height: math.unit(100, "miles"),
  28494. name: "Front",
  28495. image: {
  28496. source: "./media/characters/sona/front.svg",
  28497. extra: 2433 / 2201,
  28498. bottom: 53 / 2486
  28499. }
  28500. },
  28501. foot: {
  28502. height: math.unit(16.1, "miles"),
  28503. name: "Foot",
  28504. image: {
  28505. source: "./media/characters/sona/foot.svg"
  28506. }
  28507. },
  28508. },
  28509. [
  28510. {
  28511. name: "Macro",
  28512. height: math.unit(100, "miles"),
  28513. default: true
  28514. },
  28515. ]
  28516. ))
  28517. characterMakers.push(() => makeCharacter(
  28518. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28519. {
  28520. front: {
  28521. height: math.unit(6, "feet"),
  28522. weight: math.unit(150, "lb"),
  28523. name: "Front",
  28524. image: {
  28525. source: "./media/characters/bailey/front.svg",
  28526. extra: 1778 / 1724,
  28527. bottom: 30 / 1808
  28528. }
  28529. },
  28530. },
  28531. [
  28532. {
  28533. name: "Micro",
  28534. height: math.unit(4, "inches")
  28535. },
  28536. {
  28537. name: "Normal",
  28538. height: math.unit(5 + 5 / 12, "feet"),
  28539. default: true
  28540. },
  28541. {
  28542. name: "Macro",
  28543. height: math.unit(250, "feet")
  28544. },
  28545. {
  28546. name: "Megamacro",
  28547. height: math.unit(100, "miles")
  28548. },
  28549. ]
  28550. ))
  28551. characterMakers.push(() => makeCharacter(
  28552. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28553. {
  28554. front: {
  28555. height: math.unit(5 + 2 / 12, "feet"),
  28556. weight: math.unit(120, "lb"),
  28557. name: "Front",
  28558. image: {
  28559. source: "./media/characters/snaps/front.svg",
  28560. extra: 2370 / 2177,
  28561. bottom: 48 / 2418
  28562. }
  28563. },
  28564. back: {
  28565. height: math.unit(5 + 2 / 12, "feet"),
  28566. weight: math.unit(120, "lb"),
  28567. name: "Back",
  28568. image: {
  28569. source: "./media/characters/snaps/back.svg",
  28570. extra: 2408 / 2258,
  28571. bottom: 15 / 2423
  28572. }
  28573. },
  28574. },
  28575. [
  28576. {
  28577. name: "Micro",
  28578. height: math.unit(9, "inches")
  28579. },
  28580. {
  28581. name: "Normal",
  28582. height: math.unit(5 + 2 / 12, "feet"),
  28583. default: true
  28584. },
  28585. {
  28586. name: "Mini Macro",
  28587. height: math.unit(10, "feet")
  28588. },
  28589. ]
  28590. ))
  28591. characterMakers.push(() => makeCharacter(
  28592. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28593. {
  28594. front: {
  28595. height: math.unit(1.8, "meters"),
  28596. weight: math.unit(85, "kg"),
  28597. name: "Front",
  28598. image: {
  28599. source: "./media/characters/azteck/front.svg",
  28600. extra: 2815 / 2625,
  28601. bottom: 89 / 2904
  28602. }
  28603. },
  28604. back: {
  28605. height: math.unit(1.8, "meters"),
  28606. weight: math.unit(85, "kg"),
  28607. name: "Back",
  28608. image: {
  28609. source: "./media/characters/azteck/back.svg",
  28610. extra: 2856 / 2648,
  28611. bottom: 85 / 2941
  28612. }
  28613. },
  28614. frontDressed: {
  28615. height: math.unit(1.8, "meters"),
  28616. weight: math.unit(85, "kg"),
  28617. name: "Front (Dressed)",
  28618. image: {
  28619. source: "./media/characters/azteck/front-dressed.svg",
  28620. extra: 2147 / 2003,
  28621. bottom: 68 / 2215
  28622. }
  28623. },
  28624. head: {
  28625. height: math.unit(0.47, "meters"),
  28626. weight: math.unit(85, "kg"),
  28627. name: "Head",
  28628. image: {
  28629. source: "./media/characters/azteck/head.svg"
  28630. }
  28631. },
  28632. },
  28633. [
  28634. {
  28635. name: "Bite sized",
  28636. height: math.unit(16, "cm")
  28637. },
  28638. {
  28639. name: "Normal",
  28640. height: math.unit(1.8, "meters"),
  28641. default: true
  28642. },
  28643. ]
  28644. ))
  28645. characterMakers.push(() => makeCharacter(
  28646. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28647. {
  28648. front: {
  28649. height: math.unit(6, "feet"),
  28650. weight: math.unit(150, "lb"),
  28651. name: "Front",
  28652. image: {
  28653. source: "./media/characters/pidge/front.svg",
  28654. extra: 620 / 588,
  28655. bottom: 9 / 629
  28656. }
  28657. },
  28658. back: {
  28659. height: math.unit(6, "feet"),
  28660. weight: math.unit(150, "lb"),
  28661. name: "Back",
  28662. image: {
  28663. source: "./media/characters/pidge/back.svg",
  28664. extra: 620 / 588,
  28665. bottom: 9 / 629
  28666. }
  28667. },
  28668. },
  28669. [
  28670. {
  28671. name: "Macro",
  28672. height: math.unit(1, "mile"),
  28673. default: true
  28674. },
  28675. ]
  28676. ))
  28677. characterMakers.push(() => makeCharacter(
  28678. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28679. {
  28680. front: {
  28681. height: math.unit(6, "feet"),
  28682. weight: math.unit(150, "lb"),
  28683. name: "Front",
  28684. image: {
  28685. source: "./media/characters/en/front.svg",
  28686. extra: 1697 / 1563,
  28687. bottom: 103 / 1800
  28688. }
  28689. },
  28690. back: {
  28691. height: math.unit(6, "feet"),
  28692. weight: math.unit(150, "lb"),
  28693. name: "Back",
  28694. image: {
  28695. source: "./media/characters/en/back.svg",
  28696. extra: 1700 / 1570,
  28697. bottom: 51 / 1751
  28698. }
  28699. },
  28700. frontDressed: {
  28701. height: math.unit(6, "feet"),
  28702. weight: math.unit(150, "lb"),
  28703. name: "Front (Dressed)",
  28704. image: {
  28705. source: "./media/characters/en/front-dressed.svg",
  28706. extra: 1697 / 1563,
  28707. bottom: 103 / 1800
  28708. }
  28709. },
  28710. backDressed: {
  28711. height: math.unit(6, "feet"),
  28712. weight: math.unit(150, "lb"),
  28713. name: "Back (Dressed)",
  28714. image: {
  28715. source: "./media/characters/en/back-dressed.svg",
  28716. extra: 1700 / 1570,
  28717. bottom: 51 / 1751
  28718. }
  28719. },
  28720. },
  28721. [
  28722. {
  28723. name: "Macro",
  28724. height: math.unit(210, "feet"),
  28725. default: true
  28726. },
  28727. ]
  28728. ))
  28729. characterMakers.push(() => makeCharacter(
  28730. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28731. {
  28732. front: {
  28733. height: math.unit(6, "feet"),
  28734. weight: math.unit(150, "lb"),
  28735. name: "Front",
  28736. image: {
  28737. source: "./media/characters/haze-orris/front.svg",
  28738. extra: 3975 / 3525,
  28739. bottom: 137 / 4112
  28740. }
  28741. },
  28742. },
  28743. [
  28744. {
  28745. name: "Micro",
  28746. height: math.unit(150, "mm"),
  28747. default: true
  28748. },
  28749. ]
  28750. ))
  28751. characterMakers.push(() => makeCharacter(
  28752. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28753. {
  28754. front: {
  28755. height: math.unit(6, "feet"),
  28756. weight: math.unit(150, "lb"),
  28757. name: "Front",
  28758. image: {
  28759. source: "./media/characters/casselene-yaro/front.svg",
  28760. extra: 4721 / 4541,
  28761. bottom: 82 / 4803
  28762. }
  28763. },
  28764. back: {
  28765. height: math.unit(6, "feet"),
  28766. weight: math.unit(150, "lb"),
  28767. name: "Back",
  28768. image: {
  28769. source: "./media/characters/casselene-yaro/back.svg",
  28770. extra: 4569 / 4377,
  28771. bottom: 69 / 4638
  28772. }
  28773. },
  28774. frontDressed: {
  28775. height: math.unit(6, "feet"),
  28776. weight: math.unit(150, "lb"),
  28777. name: "Front-dressed",
  28778. image: {
  28779. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28780. extra: 4721 / 4541,
  28781. bottom: 82 / 4803
  28782. }
  28783. },
  28784. },
  28785. [
  28786. {
  28787. name: "Macro",
  28788. height: math.unit(190, "feet"),
  28789. default: true
  28790. },
  28791. ]
  28792. ))
  28793. characterMakers.push(() => makeCharacter(
  28794. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28795. {
  28796. front: {
  28797. height: math.unit(6, "feet"),
  28798. weight: math.unit(150, "lb"),
  28799. name: "Front",
  28800. image: {
  28801. source: "./media/characters/myra-rue-delore/front.svg",
  28802. extra: 1340 / 1308,
  28803. bottom: 67 / 1407
  28804. }
  28805. },
  28806. back: {
  28807. height: math.unit(6, "feet"),
  28808. weight: math.unit(150, "lb"),
  28809. name: "Back",
  28810. image: {
  28811. source: "./media/characters/myra-rue-delore/back.svg",
  28812. extra: 1341 / 1310,
  28813. bottom: 40 / 1381
  28814. }
  28815. },
  28816. frontDressed: {
  28817. height: math.unit(6, "feet"),
  28818. weight: math.unit(150, "lb"),
  28819. name: "Front (Dressed)",
  28820. image: {
  28821. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28822. extra: 1340 / 1308,
  28823. bottom: 67 / 1407
  28824. }
  28825. },
  28826. },
  28827. [
  28828. {
  28829. name: "Macro",
  28830. height: math.unit(150, "feet"),
  28831. default: true
  28832. },
  28833. ]
  28834. ))
  28835. characterMakers.push(() => makeCharacter(
  28836. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28837. {
  28838. front: {
  28839. height: math.unit(10, "feet"),
  28840. weight: math.unit(15015, "lb"),
  28841. name: "Front",
  28842. image: {
  28843. source: "./media/characters/fem!plat/front.svg",
  28844. extra: 2799 / 2604,
  28845. bottom: 149 / 2948
  28846. }
  28847. },
  28848. },
  28849. [
  28850. {
  28851. name: "Normal",
  28852. height: math.unit(10, "feet"),
  28853. default: true
  28854. },
  28855. {
  28856. name: "Macro",
  28857. height: math.unit(100, "feet")
  28858. },
  28859. {
  28860. name: "Megamacro",
  28861. height: math.unit(1000, "feet")
  28862. },
  28863. ]
  28864. ))
  28865. characterMakers.push(() => makeCharacter(
  28866. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28867. {
  28868. front: {
  28869. height: math.unit(15 + 5 / 12, "feet"),
  28870. weight: math.unit(4600, "lb"),
  28871. name: "Front",
  28872. image: {
  28873. source: "./media/characters/neapolitan-ananassa/front.svg",
  28874. extra: 2903 / 2736,
  28875. bottom: 0 / 2903
  28876. }
  28877. },
  28878. side: {
  28879. height: math.unit(15 + 5 / 12, "feet"),
  28880. weight: math.unit(4600, "lb"),
  28881. name: "Side",
  28882. image: {
  28883. source: "./media/characters/neapolitan-ananassa/side.svg",
  28884. extra: 2925 / 2719,
  28885. bottom: 0 / 2925
  28886. }
  28887. },
  28888. back: {
  28889. height: math.unit(15 + 5 / 12, "feet"),
  28890. weight: math.unit(4600, "lb"),
  28891. name: "Back",
  28892. image: {
  28893. source: "./media/characters/neapolitan-ananassa/back.svg",
  28894. extra: 2903 / 2736,
  28895. bottom: 0 / 2903
  28896. }
  28897. },
  28898. },
  28899. [
  28900. {
  28901. name: "Normal",
  28902. height: math.unit(15 + 5 / 12, "feet"),
  28903. default: true
  28904. },
  28905. {
  28906. name: "Post-Millenium",
  28907. height: math.unit(35 + 5 / 12, "feet")
  28908. },
  28909. {
  28910. name: "Post-Era",
  28911. height: math.unit(450 + 5 / 12, "feet")
  28912. },
  28913. ]
  28914. ))
  28915. characterMakers.push(() => makeCharacter(
  28916. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28917. {
  28918. front: {
  28919. height: math.unit(300, "meters"),
  28920. weight: math.unit(125000, "tonnes"),
  28921. name: "Front",
  28922. image: {
  28923. source: "./media/characters/pazuzu/front.svg",
  28924. extra: 877 / 794,
  28925. bottom: 47 / 924
  28926. }
  28927. },
  28928. },
  28929. [
  28930. {
  28931. name: "Macro",
  28932. height: math.unit(300, "meters"),
  28933. default: true
  28934. },
  28935. ]
  28936. ))
  28937. characterMakers.push(() => makeCharacter(
  28938. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28939. {
  28940. side: {
  28941. height: math.unit(10 + 7 / 12, "feet"),
  28942. weight: math.unit(2.5, "tons"),
  28943. name: "Side",
  28944. image: {
  28945. source: "./media/characters/aasha/side.svg",
  28946. extra: 1345 / 1245,
  28947. bottom: 111 / 1456
  28948. }
  28949. },
  28950. back: {
  28951. height: math.unit(10 + 7 / 12, "feet"),
  28952. weight: math.unit(2.5, "tons"),
  28953. name: "Back",
  28954. image: {
  28955. source: "./media/characters/aasha/back.svg",
  28956. extra: 1133 / 1057,
  28957. bottom: 257 / 1390
  28958. }
  28959. },
  28960. },
  28961. [
  28962. {
  28963. name: "Normal",
  28964. height: math.unit(10 + 7 / 12, "feet"),
  28965. default: true
  28966. },
  28967. ]
  28968. ))
  28969. characterMakers.push(() => makeCharacter(
  28970. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  28971. {
  28972. front: {
  28973. height: math.unit(6 + 3 / 12, "feet"),
  28974. name: "Front",
  28975. image: {
  28976. source: "./media/characters/nevan/front.svg",
  28977. extra: 704 / 704,
  28978. bottom: 28 / 732
  28979. }
  28980. },
  28981. back: {
  28982. height: math.unit(6 + 3 / 12, "feet"),
  28983. name: "Back",
  28984. image: {
  28985. source: "./media/characters/nevan/back.svg",
  28986. extra: 714 / 714,
  28987. bottom: 21 / 735
  28988. }
  28989. },
  28990. frontFlaccid: {
  28991. height: math.unit(6 + 3 / 12, "feet"),
  28992. name: "Front (Flaccid)",
  28993. image: {
  28994. source: "./media/characters/nevan/front-flaccid.svg",
  28995. extra: 704 / 704,
  28996. bottom: 28 / 732
  28997. }
  28998. },
  28999. frontErect: {
  29000. height: math.unit(6 + 3 / 12, "feet"),
  29001. name: "Front (Erect)",
  29002. image: {
  29003. source: "./media/characters/nevan/front-erect.svg",
  29004. extra: 704 / 704,
  29005. bottom: 28 / 732
  29006. }
  29007. },
  29008. backFlaccid: {
  29009. height: math.unit(6 + 3 / 12, "feet"),
  29010. name: "Back (Flaccid)",
  29011. image: {
  29012. source: "./media/characters/nevan/back-flaccid.svg",
  29013. extra: 714 / 714,
  29014. bottom: 21 / 735
  29015. }
  29016. },
  29017. },
  29018. [
  29019. {
  29020. name: "Normal",
  29021. height: math.unit(6 + 3 / 12, "feet"),
  29022. default: true
  29023. },
  29024. ]
  29025. ))
  29026. characterMakers.push(() => makeCharacter(
  29027. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29028. {
  29029. front: {
  29030. height: math.unit(4, "feet"),
  29031. name: "Front",
  29032. image: {
  29033. source: "./media/characters/arhan/front.svg",
  29034. extra: 3368 / 3133,
  29035. bottom: 0 / 3368
  29036. }
  29037. },
  29038. side: {
  29039. height: math.unit(4, "feet"),
  29040. name: "Side",
  29041. image: {
  29042. source: "./media/characters/arhan/side.svg",
  29043. extra: 3347 / 3105,
  29044. bottom: 0 / 3347
  29045. }
  29046. },
  29047. tongue: {
  29048. height: math.unit(1.42, "feet"),
  29049. name: "Tongue",
  29050. image: {
  29051. source: "./media/characters/arhan/tongue.svg"
  29052. }
  29053. },
  29054. head: {
  29055. height: math.unit(0.85, "feet"),
  29056. name: "Head",
  29057. image: {
  29058. source: "./media/characters/arhan/head.svg"
  29059. }
  29060. },
  29061. },
  29062. [
  29063. {
  29064. name: "Normal",
  29065. height: math.unit(4, "feet"),
  29066. default: true
  29067. },
  29068. ]
  29069. ))
  29070. characterMakers.push(() => makeCharacter(
  29071. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29072. {
  29073. front: {
  29074. height: math.unit(5 + 7.5 / 12, "feet"),
  29075. weight: math.unit(120, "lb"),
  29076. name: "Front",
  29077. image: {
  29078. source: "./media/characters/digi-duncan/front.svg",
  29079. extra: 330 / 326,
  29080. bottom: 16 / 346
  29081. }
  29082. },
  29083. side: {
  29084. height: math.unit(5 + 7.5 / 12, "feet"),
  29085. weight: math.unit(120, "lb"),
  29086. name: "Side",
  29087. image: {
  29088. source: "./media/characters/digi-duncan/side.svg",
  29089. extra: 341 / 337,
  29090. bottom: 1 / 342
  29091. }
  29092. },
  29093. back: {
  29094. height: math.unit(5 + 7.5 / 12, "feet"),
  29095. weight: math.unit(120, "lb"),
  29096. name: "Back",
  29097. image: {
  29098. source: "./media/characters/digi-duncan/back.svg",
  29099. extra: 330 / 326,
  29100. bottom: 12 / 342
  29101. }
  29102. },
  29103. },
  29104. [
  29105. {
  29106. name: "Speck",
  29107. height: math.unit(0.25, "mm")
  29108. },
  29109. {
  29110. name: "Micro",
  29111. height: math.unit(5, "mm")
  29112. },
  29113. {
  29114. name: "Tiny",
  29115. height: math.unit(0.5, "inches"),
  29116. default: true
  29117. },
  29118. {
  29119. name: "Human",
  29120. height: math.unit(5 + 7.5 / 12, "feet")
  29121. },
  29122. {
  29123. name: "Minigiant",
  29124. height: math.unit(8 + 5.25, "feet")
  29125. },
  29126. {
  29127. name: "Giant",
  29128. height: math.unit(2000, "feet")
  29129. },
  29130. {
  29131. name: "Mega",
  29132. height: math.unit(371.1, "miles")
  29133. },
  29134. ]
  29135. ))
  29136. characterMakers.push(() => makeCharacter(
  29137. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29138. {
  29139. front: {
  29140. height: math.unit(2, "meters"),
  29141. weight: math.unit(350, "kg"),
  29142. name: "Front",
  29143. image: {
  29144. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29145. extra: 898 / 838,
  29146. bottom: 9 / 907
  29147. }
  29148. },
  29149. },
  29150. [
  29151. {
  29152. name: "Micro",
  29153. height: math.unit(8, "meters")
  29154. },
  29155. {
  29156. name: "Normal",
  29157. height: math.unit(50, "meters"),
  29158. default: true
  29159. },
  29160. {
  29161. name: "Macro",
  29162. height: math.unit(500, "meters")
  29163. },
  29164. ]
  29165. ))
  29166. characterMakers.push(() => makeCharacter(
  29167. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29168. {
  29169. front: {
  29170. height: math.unit(6 + 6 / 12, "feet"),
  29171. name: "Front",
  29172. image: {
  29173. source: "./media/characters/khardesh/front.svg",
  29174. extra: 888 / 797,
  29175. bottom: 25 / 913
  29176. }
  29177. },
  29178. },
  29179. [
  29180. {
  29181. name: "Normal",
  29182. height: math.unit(6 + 6 / 12, "feet"),
  29183. default: true
  29184. },
  29185. {
  29186. name: "Normal+",
  29187. height: math.unit(4, "meters")
  29188. },
  29189. {
  29190. name: "Macro",
  29191. height: math.unit(50, "meters")
  29192. },
  29193. {
  29194. name: "Macro+",
  29195. height: math.unit(100, "meters")
  29196. },
  29197. {
  29198. name: "Megamacro",
  29199. height: math.unit(20, "km")
  29200. },
  29201. ]
  29202. ))
  29203. characterMakers.push(() => makeCharacter(
  29204. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29205. {
  29206. front: {
  29207. height: math.unit(6, "feet"),
  29208. weight: math.unit(150, "lb"),
  29209. name: "Front",
  29210. image: {
  29211. source: "./media/characters/kosho/front.svg",
  29212. extra: 1847 / 1847,
  29213. bottom: 86 / 1933
  29214. }
  29215. },
  29216. },
  29217. [
  29218. {
  29219. name: "Second-stage micro",
  29220. height: math.unit(0.5, "inches")
  29221. },
  29222. {
  29223. name: "First-stage micro",
  29224. height: math.unit(6, "inches")
  29225. },
  29226. {
  29227. name: "Normal",
  29228. height: math.unit(6, "feet"),
  29229. default: true
  29230. },
  29231. {
  29232. name: "First-stage macro",
  29233. height: math.unit(72, "feet")
  29234. },
  29235. {
  29236. name: "Second-stage macro",
  29237. height: math.unit(864, "feet")
  29238. },
  29239. ]
  29240. ))
  29241. characterMakers.push(() => makeCharacter(
  29242. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29243. {
  29244. normal: {
  29245. height: math.unit(4 + 6 / 12, "feet"),
  29246. name: "Normal",
  29247. image: {
  29248. source: "./media/characters/hydra/normal.svg",
  29249. extra: 2833 / 2634,
  29250. bottom: 68 / 2901
  29251. }
  29252. },
  29253. smol: {
  29254. height: math.unit(0.705, "inches"),
  29255. name: "Smol",
  29256. image: {
  29257. source: "./media/characters/hydra/smol.svg",
  29258. extra: 2715 / 2540,
  29259. bottom: 0 / 2715
  29260. }
  29261. },
  29262. },
  29263. [
  29264. {
  29265. name: "Normal",
  29266. height: math.unit(4 + 6 / 12, "feet"),
  29267. default: true
  29268. }
  29269. ]
  29270. ))
  29271. characterMakers.push(() => makeCharacter(
  29272. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29273. {
  29274. front: {
  29275. height: math.unit(0.6, "cm"),
  29276. name: "Front",
  29277. image: {
  29278. source: "./media/characters/daz/front.svg",
  29279. extra: 1682 / 1164,
  29280. bottom: 42 / 1724
  29281. }
  29282. },
  29283. },
  29284. [
  29285. {
  29286. name: "Normal",
  29287. height: math.unit(0.6, "cm"),
  29288. default: true
  29289. },
  29290. ]
  29291. ))
  29292. characterMakers.push(() => makeCharacter(
  29293. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29294. {
  29295. front: {
  29296. height: math.unit(6, "feet"),
  29297. weight: math.unit(235, "lb"),
  29298. name: "Front",
  29299. image: {
  29300. source: "./media/characters/theo-pangolin/front.svg",
  29301. extra: 1996 / 1969,
  29302. bottom: 115 / 2111
  29303. }
  29304. },
  29305. back: {
  29306. height: math.unit(6, "feet"),
  29307. weight: math.unit(235, "lb"),
  29308. name: "Back",
  29309. image: {
  29310. source: "./media/characters/theo-pangolin/back.svg",
  29311. extra: 1979 / 1979,
  29312. bottom: 40 / 2019
  29313. }
  29314. },
  29315. feral: {
  29316. height: math.unit(2, "feet"),
  29317. weight: math.unit(30, "lb"),
  29318. name: "Feral",
  29319. image: {
  29320. source: "./media/characters/theo-pangolin/feral.svg",
  29321. extra: 803 / 791,
  29322. bottom: 181 / 984
  29323. }
  29324. },
  29325. footFive: {
  29326. height: math.unit(1.43, "feet"),
  29327. name: "Foot (Five Toes)",
  29328. image: {
  29329. source: "./media/characters/theo-pangolin/foot-five.svg"
  29330. }
  29331. },
  29332. footFour: {
  29333. height: math.unit(1.43, "feet"),
  29334. name: "Foot (Four Toes)",
  29335. image: {
  29336. source: "./media/characters/theo-pangolin/foot-four.svg"
  29337. }
  29338. },
  29339. handFour: {
  29340. height: math.unit(0.81, "feet"),
  29341. name: "Hand (Four Fingers)",
  29342. image: {
  29343. source: "./media/characters/theo-pangolin/hand-four.svg"
  29344. }
  29345. },
  29346. handThree: {
  29347. height: math.unit(0.81, "feet"),
  29348. name: "Hand (Three Fingers)",
  29349. image: {
  29350. source: "./media/characters/theo-pangolin/hand-three.svg"
  29351. }
  29352. },
  29353. headFront: {
  29354. height: math.unit(1.37, "feet"),
  29355. name: "Head (Front)",
  29356. image: {
  29357. source: "./media/characters/theo-pangolin/head-front.svg"
  29358. }
  29359. },
  29360. headSide: {
  29361. height: math.unit(1.43, "feet"),
  29362. name: "Head (Side)",
  29363. image: {
  29364. source: "./media/characters/theo-pangolin/head-side.svg"
  29365. }
  29366. },
  29367. tongue: {
  29368. height: math.unit(2.29, "feet"),
  29369. name: "Tongue",
  29370. image: {
  29371. source: "./media/characters/theo-pangolin/tongue.svg"
  29372. }
  29373. },
  29374. },
  29375. [
  29376. {
  29377. name: "Normal",
  29378. height: math.unit(6, "feet")
  29379. },
  29380. {
  29381. name: "Macro",
  29382. height: math.unit(400, "feet"),
  29383. default: true
  29384. },
  29385. ]
  29386. ))
  29387. characterMakers.push(() => makeCharacter(
  29388. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29389. {
  29390. front: {
  29391. height: math.unit(6, "inches"),
  29392. weight: math.unit(0.036, "kg"),
  29393. name: "Front",
  29394. image: {
  29395. source: "./media/characters/renée/front.svg",
  29396. extra: 900 / 886,
  29397. bottom: 8 / 908
  29398. }
  29399. },
  29400. },
  29401. [
  29402. {
  29403. name: "Nano",
  29404. height: math.unit(1, "nm")
  29405. },
  29406. {
  29407. name: "Micro",
  29408. height: math.unit(1, "mm")
  29409. },
  29410. {
  29411. name: "Normal",
  29412. height: math.unit(6, "inches")
  29413. },
  29414. {
  29415. name: "Macro",
  29416. height: math.unit(2000, "feet"),
  29417. default: true
  29418. },
  29419. {
  29420. name: "Megamacro",
  29421. height: math.unit(2, "km")
  29422. },
  29423. {
  29424. name: "Gigamacro",
  29425. height: math.unit(2000, "km")
  29426. },
  29427. {
  29428. name: "Teramacro",
  29429. height: math.unit(250000, "km")
  29430. },
  29431. ]
  29432. ))
  29433. characterMakers.push(() => makeCharacter(
  29434. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29435. {
  29436. front: {
  29437. height: math.unit(4, "meters"),
  29438. weight: math.unit(150, "kg"),
  29439. name: "Front",
  29440. image: {
  29441. source: "./media/characters/caledvwlch/front.svg",
  29442. extra: 1760 / 1551,
  29443. bottom: 28 / 1788
  29444. }
  29445. },
  29446. side: {
  29447. height: math.unit(4, "meters"),
  29448. weight: math.unit(150, "kg"),
  29449. name: "Side",
  29450. image: {
  29451. source: "./media/characters/caledvwlch/side.svg",
  29452. extra: 1605 / 1536,
  29453. bottom: 31 / 1636
  29454. }
  29455. },
  29456. back: {
  29457. height: math.unit(4, "meters"),
  29458. weight: math.unit(150, "kg"),
  29459. name: "Back",
  29460. image: {
  29461. source: "./media/characters/caledvwlch/back.svg",
  29462. extra: 1635 / 1565,
  29463. bottom: 27 / 1662
  29464. }
  29465. },
  29466. },
  29467. [
  29468. {
  29469. name: "\"Incognito\"",
  29470. height: math.unit(4, "meters")
  29471. },
  29472. {
  29473. name: "Small rampage",
  29474. height: math.unit(600, "meters")
  29475. },
  29476. {
  29477. name: "Mega",
  29478. height: math.unit(30, "km")
  29479. },
  29480. {
  29481. name: "Home-size",
  29482. height: math.unit(50, "km"),
  29483. default: true
  29484. },
  29485. {
  29486. name: "Giga",
  29487. height: math.unit(300, "km")
  29488. },
  29489. {
  29490. name: "Lounging",
  29491. height: math.unit(11000, "km")
  29492. },
  29493. {
  29494. name: "Planet snacking",
  29495. height: math.unit(2000000, "km")
  29496. },
  29497. ]
  29498. ))
  29499. characterMakers.push(() => makeCharacter(
  29500. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29501. {
  29502. front: {
  29503. height: math.unit(6, "feet"),
  29504. weight: math.unit(215, "lb"),
  29505. name: "Front",
  29506. image: {
  29507. source: "./media/characters/sapphire-svell/front.svg",
  29508. extra: 495 / 455,
  29509. bottom: 20 / 515
  29510. }
  29511. },
  29512. back: {
  29513. height: math.unit(6, "feet"),
  29514. weight: math.unit(216, "lb"),
  29515. name: "Back",
  29516. image: {
  29517. source: "./media/characters/sapphire-svell/back.svg",
  29518. extra: 497 / 477,
  29519. bottom: 7 / 504
  29520. }
  29521. },
  29522. maw: {
  29523. height: math.unit(1.57, "feet"),
  29524. name: "Maw",
  29525. image: {
  29526. source: "./media/characters/sapphire-svell/maw.svg"
  29527. }
  29528. },
  29529. foot: {
  29530. height: math.unit(1.07, "feet"),
  29531. name: "Foot",
  29532. image: {
  29533. source: "./media/characters/sapphire-svell/foot.svg"
  29534. }
  29535. },
  29536. toering: {
  29537. height: math.unit(1.7, "inch"),
  29538. name: "Toering",
  29539. image: {
  29540. source: "./media/characters/sapphire-svell/toering.svg"
  29541. }
  29542. },
  29543. },
  29544. [
  29545. {
  29546. name: "Normal",
  29547. height: math.unit(300, "feet"),
  29548. default: true
  29549. },
  29550. {
  29551. name: "Augmented",
  29552. height: math.unit(1250, "feet")
  29553. },
  29554. {
  29555. name: "Unleashed",
  29556. height: math.unit(3000, "feet")
  29557. },
  29558. ]
  29559. ))
  29560. characterMakers.push(() => makeCharacter(
  29561. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29562. {
  29563. side: {
  29564. height: math.unit(2 + 3 / 12, "feet"),
  29565. weight: math.unit(110, "lb"),
  29566. name: "Side",
  29567. image: {
  29568. source: "./media/characters/glitch-flux/side.svg",
  29569. extra: 997 / 805,
  29570. bottom: 20 / 1017
  29571. }
  29572. },
  29573. },
  29574. [
  29575. {
  29576. name: "Normal",
  29577. height: math.unit(2 + 3 / 12, "feet"),
  29578. default: true
  29579. },
  29580. ]
  29581. ))
  29582. characterMakers.push(() => makeCharacter(
  29583. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29584. {
  29585. front: {
  29586. height: math.unit(4, "meters"),
  29587. name: "Front",
  29588. image: {
  29589. source: "./media/characters/mid/front.svg",
  29590. extra: 507 / 476,
  29591. bottom: 17 / 524
  29592. }
  29593. },
  29594. back: {
  29595. height: math.unit(4, "meters"),
  29596. name: "Back",
  29597. image: {
  29598. source: "./media/characters/mid/back.svg",
  29599. extra: 519 / 487,
  29600. bottom: 7 / 526
  29601. }
  29602. },
  29603. stuck: {
  29604. height: math.unit(2.2, "meters"),
  29605. name: "Stuck",
  29606. image: {
  29607. source: "./media/characters/mid/stuck.svg",
  29608. extra: 1951 / 1869,
  29609. bottom: 88 / 2039
  29610. }
  29611. }
  29612. },
  29613. [
  29614. {
  29615. name: "Normal",
  29616. height: math.unit(4, "meters"),
  29617. default: true
  29618. },
  29619. {
  29620. name: "Big",
  29621. height: math.unit(10, "meters")
  29622. },
  29623. {
  29624. name: "Macro",
  29625. height: math.unit(800, "meters")
  29626. },
  29627. {
  29628. name: "Megamacro",
  29629. height: math.unit(100, "km")
  29630. },
  29631. {
  29632. name: "Overgrown",
  29633. height: math.unit(1, "parsec")
  29634. },
  29635. ]
  29636. ))
  29637. characterMakers.push(() => makeCharacter(
  29638. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29639. {
  29640. front: {
  29641. height: math.unit(2.5, "meters"),
  29642. weight: math.unit(225, "kg"),
  29643. name: "Front",
  29644. image: {
  29645. source: "./media/characters/iris/front.svg",
  29646. extra: 3348 / 3251,
  29647. bottom: 205 / 3553
  29648. }
  29649. },
  29650. maw: {
  29651. height: math.unit(0.56, "meter"),
  29652. name: "Maw",
  29653. image: {
  29654. source: "./media/characters/iris/maw.svg"
  29655. }
  29656. },
  29657. },
  29658. [
  29659. {
  29660. name: "Mewter cat",
  29661. height: math.unit(1.2, "meters")
  29662. },
  29663. {
  29664. name: "Minimacro",
  29665. height: math.unit(2.5, "meters"),
  29666. default: true
  29667. },
  29668. {
  29669. name: "Macro",
  29670. height: math.unit(180, "meters")
  29671. },
  29672. {
  29673. name: "Megamacro",
  29674. height: math.unit(2746, "meters")
  29675. },
  29676. ]
  29677. ))
  29678. characterMakers.push(() => makeCharacter(
  29679. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29680. {
  29681. front: {
  29682. height: math.unit(6, "feet"),
  29683. weight: math.unit(135, "lb"),
  29684. name: "Front",
  29685. image: {
  29686. source: "./media/characters/axel/front.svg",
  29687. extra: 908 / 908,
  29688. bottom: 58 / 966
  29689. }
  29690. },
  29691. side: {
  29692. height: math.unit(6, "feet"),
  29693. weight: math.unit(135, "lb"),
  29694. name: "Side",
  29695. image: {
  29696. source: "./media/characters/axel/side.svg",
  29697. extra: 958 / 958,
  29698. bottom: 11 / 969
  29699. }
  29700. },
  29701. back: {
  29702. height: math.unit(6, "feet"),
  29703. weight: math.unit(135, "lb"),
  29704. name: "Back",
  29705. image: {
  29706. source: "./media/characters/axel/back.svg",
  29707. extra: 887 / 887,
  29708. bottom: 34 / 921
  29709. }
  29710. },
  29711. head: {
  29712. height: math.unit(1.07, "feet"),
  29713. name: "Head",
  29714. image: {
  29715. source: "./media/characters/axel/head.svg"
  29716. }
  29717. },
  29718. beak: {
  29719. height: math.unit(1.4, "feet"),
  29720. name: "Beak",
  29721. image: {
  29722. source: "./media/characters/axel/beak.svg"
  29723. }
  29724. },
  29725. beakSide: {
  29726. height: math.unit(1.4, "feet"),
  29727. name: "Beak Side",
  29728. image: {
  29729. source: "./media/characters/axel/beak-side.svg"
  29730. }
  29731. },
  29732. sheath: {
  29733. height: math.unit(0.5, "feet"),
  29734. name: "Sheath",
  29735. image: {
  29736. source: "./media/characters/axel/sheath.svg"
  29737. }
  29738. },
  29739. dick: {
  29740. height: math.unit(0.98, "feet"),
  29741. name: "Dick",
  29742. image: {
  29743. source: "./media/characters/axel/dick.svg"
  29744. }
  29745. },
  29746. },
  29747. [
  29748. {
  29749. name: "Macro",
  29750. height: math.unit(68, "meters"),
  29751. default: true
  29752. },
  29753. ]
  29754. ))
  29755. characterMakers.push(() => makeCharacter(
  29756. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29757. {
  29758. front: {
  29759. height: math.unit(3.5, "meters"),
  29760. weight: math.unit(1200, "kg"),
  29761. name: "Front",
  29762. image: {
  29763. source: "./media/characters/joanna/front.svg",
  29764. extra: 1596 / 1488,
  29765. bottom: 29 / 1625
  29766. }
  29767. },
  29768. back: {
  29769. height: math.unit(3.5, "meters"),
  29770. weight: math.unit(1200, "kg"),
  29771. name: "Back",
  29772. image: {
  29773. source: "./media/characters/joanna/back.svg",
  29774. extra: 1594 / 1495,
  29775. bottom: 26 / 1620
  29776. }
  29777. },
  29778. frontShorts: {
  29779. height: math.unit(3.5, "meters"),
  29780. weight: math.unit(1200, "kg"),
  29781. name: "Front (Shorts)",
  29782. image: {
  29783. source: "./media/characters/joanna/front-shorts.svg",
  29784. extra: 1596 / 1488,
  29785. bottom: 29 / 1625
  29786. }
  29787. },
  29788. frontBiker: {
  29789. height: math.unit(3.5, "meters"),
  29790. weight: math.unit(1200, "kg"),
  29791. name: "Front (Biker)",
  29792. image: {
  29793. source: "./media/characters/joanna/front-biker.svg",
  29794. extra: 1596 / 1488,
  29795. bottom: 29 / 1625
  29796. }
  29797. },
  29798. backBiker: {
  29799. height: math.unit(3.5, "meters"),
  29800. weight: math.unit(1200, "kg"),
  29801. name: "Back (Biker)",
  29802. image: {
  29803. source: "./media/characters/joanna/back-biker.svg",
  29804. extra: 1594 / 1495,
  29805. bottom: 88 / 1682
  29806. }
  29807. },
  29808. bikeLeft: {
  29809. height: math.unit(2.4, "meters"),
  29810. weight: math.unit(1600, "kg"),
  29811. name: "Bike (Left)",
  29812. image: {
  29813. source: "./media/characters/joanna/bike-left.svg",
  29814. extra: 720 / 720,
  29815. bottom: 8 / 728
  29816. }
  29817. },
  29818. bikeRight: {
  29819. height: math.unit(2.4, "meters"),
  29820. weight: math.unit(1600, "kg"),
  29821. name: "Bike (Right)",
  29822. image: {
  29823. source: "./media/characters/joanna/bike-right.svg",
  29824. extra: 720 / 720,
  29825. bottom: 8 / 728
  29826. }
  29827. },
  29828. },
  29829. [
  29830. {
  29831. name: "Incognito",
  29832. height: math.unit(3.5, "meters")
  29833. },
  29834. {
  29835. name: "Casual Big",
  29836. height: math.unit(200, "meters")
  29837. },
  29838. {
  29839. name: "Macro",
  29840. height: math.unit(600, "meters")
  29841. },
  29842. {
  29843. name: "Original",
  29844. height: math.unit(20, "km"),
  29845. default: true
  29846. },
  29847. {
  29848. name: "Giga",
  29849. height: math.unit(400, "km")
  29850. },
  29851. {
  29852. name: "Lounging",
  29853. height: math.unit(1500, "km")
  29854. },
  29855. {
  29856. name: "Planetary",
  29857. height: math.unit(200000, "km")
  29858. },
  29859. ]
  29860. ))
  29861. characterMakers.push(() => makeCharacter(
  29862. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29863. {
  29864. front: {
  29865. height: math.unit(6, "feet"),
  29866. weight: math.unit(150, "lb"),
  29867. name: "Front",
  29868. image: {
  29869. source: "./media/characters/hugo-sigil/front.svg",
  29870. extra: 522 / 500,
  29871. bottom: 2 / 524
  29872. }
  29873. },
  29874. back: {
  29875. height: math.unit(6, "feet"),
  29876. weight: math.unit(150, "lb"),
  29877. name: "Back",
  29878. image: {
  29879. source: "./media/characters/hugo-sigil/back.svg",
  29880. extra: 519 / 495,
  29881. bottom: 5 / 524
  29882. }
  29883. },
  29884. maw: {
  29885. height: math.unit(1.4, "feet"),
  29886. weight: math.unit(150, "lb"),
  29887. name: "Maw",
  29888. image: {
  29889. source: "./media/characters/hugo-sigil/maw.svg"
  29890. }
  29891. },
  29892. feet: {
  29893. height: math.unit(1.56, "feet"),
  29894. weight: math.unit(150, "lb"),
  29895. name: "Feet",
  29896. image: {
  29897. source: "./media/characters/hugo-sigil/feet.svg",
  29898. extra: 177 / 177,
  29899. bottom: 12 / 189
  29900. }
  29901. },
  29902. },
  29903. [
  29904. {
  29905. name: "Normal",
  29906. height: math.unit(6, "feet")
  29907. },
  29908. {
  29909. name: "Macro",
  29910. height: math.unit(200, "feet"),
  29911. default: true
  29912. },
  29913. ]
  29914. ))
  29915. characterMakers.push(() => makeCharacter(
  29916. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29917. {
  29918. front: {
  29919. height: math.unit(6, "feet"),
  29920. weight: math.unit(150, "lb"),
  29921. name: "Front",
  29922. image: {
  29923. source: "./media/characters/peri/front.svg",
  29924. extra: 2354 / 2233,
  29925. bottom: 49 / 2403
  29926. }
  29927. },
  29928. },
  29929. [
  29930. {
  29931. name: "Really Small",
  29932. height: math.unit(1, "nm")
  29933. },
  29934. {
  29935. name: "Micro",
  29936. height: math.unit(4, "inches")
  29937. },
  29938. {
  29939. name: "Normal",
  29940. height: math.unit(7, "inches"),
  29941. default: true
  29942. },
  29943. {
  29944. name: "Macro",
  29945. height: math.unit(400, "feet")
  29946. },
  29947. {
  29948. name: "Megamacro",
  29949. height: math.unit(100, "miles")
  29950. },
  29951. ]
  29952. ))
  29953. characterMakers.push(() => makeCharacter(
  29954. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  29955. {
  29956. frontSlim: {
  29957. height: math.unit(7, "feet"),
  29958. name: "Front (Slim)",
  29959. image: {
  29960. source: "./media/characters/issilora/front-slim.svg",
  29961. extra: 529 / 449,
  29962. bottom: 53 / 582
  29963. }
  29964. },
  29965. sideSlim: {
  29966. height: math.unit(7, "feet"),
  29967. name: "Side (Slim)",
  29968. image: {
  29969. source: "./media/characters/issilora/side-slim.svg",
  29970. extra: 570 / 480,
  29971. bottom: 30 / 600
  29972. }
  29973. },
  29974. backSlim: {
  29975. height: math.unit(7, "feet"),
  29976. name: "Back (Slim)",
  29977. image: {
  29978. source: "./media/characters/issilora/back-slim.svg",
  29979. extra: 537 / 455,
  29980. bottom: 46 / 583
  29981. }
  29982. },
  29983. frontBuff: {
  29984. height: math.unit(7, "feet"),
  29985. name: "Front (Buff)",
  29986. image: {
  29987. source: "./media/characters/issilora/front-buff.svg",
  29988. extra: 2310 / 2035,
  29989. bottom: 335 / 2645
  29990. }
  29991. },
  29992. head: {
  29993. height: math.unit(1.94, "feet"),
  29994. name: "Head",
  29995. image: {
  29996. source: "./media/characters/issilora/head.svg"
  29997. }
  29998. },
  29999. },
  30000. [
  30001. {
  30002. name: "Minimum",
  30003. height: math.unit(7, "feet")
  30004. },
  30005. {
  30006. name: "Comfortable",
  30007. height: math.unit(17, "feet")
  30008. },
  30009. {
  30010. name: "Fun Size",
  30011. height: math.unit(47, "feet")
  30012. },
  30013. {
  30014. name: "Natural Macro",
  30015. height: math.unit(137, "feet"),
  30016. default: true
  30017. },
  30018. {
  30019. name: "Maximum Kaiju",
  30020. height: math.unit(397, "feet")
  30021. },
  30022. ]
  30023. ))
  30024. characterMakers.push(() => makeCharacter(
  30025. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30026. {
  30027. front: {
  30028. height: math.unit(50 + 9/12, "feet"),
  30029. weight: math.unit(32.8, "tons"),
  30030. name: "Front",
  30031. image: {
  30032. source: "./media/characters/irb'iiritaahn/front.svg",
  30033. extra: 1878/1826,
  30034. bottom: 326/2204
  30035. }
  30036. },
  30037. back: {
  30038. height: math.unit(50 + 9/12, "feet"),
  30039. weight: math.unit(32.8, "tons"),
  30040. name: "Back",
  30041. image: {
  30042. source: "./media/characters/irb'iiritaahn/back.svg",
  30043. extra: 2052/2018,
  30044. bottom: 152/2204
  30045. }
  30046. },
  30047. head: {
  30048. height: math.unit(12.86, "feet"),
  30049. name: "Head",
  30050. image: {
  30051. source: "./media/characters/irb'iiritaahn/head.svg"
  30052. }
  30053. },
  30054. maw: {
  30055. height: math.unit(9.66, "feet"),
  30056. name: "Maw",
  30057. image: {
  30058. source: "./media/characters/irb'iiritaahn/maw.svg"
  30059. }
  30060. },
  30061. frontDick: {
  30062. height: math.unit(8.78461, "feet"),
  30063. name: "Front Dick",
  30064. image: {
  30065. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30066. }
  30067. },
  30068. rearDick: {
  30069. height: math.unit(8.78461, "feet"),
  30070. name: "Rear Dick",
  30071. image: {
  30072. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30073. }
  30074. },
  30075. rearDickUnfolded: {
  30076. height: math.unit(8.78, "feet"),
  30077. name: "Rear Dick (Unfolded)",
  30078. image: {
  30079. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30080. }
  30081. },
  30082. wings: {
  30083. height: math.unit(43, "feet"),
  30084. name: "Wings",
  30085. image: {
  30086. source: "./media/characters/irb'iiritaahn/wings.svg"
  30087. }
  30088. },
  30089. },
  30090. [
  30091. {
  30092. name: "Macro",
  30093. height: math.unit(50 + 9/12, "feet"),
  30094. default: true
  30095. },
  30096. ]
  30097. ))
  30098. characterMakers.push(() => makeCharacter(
  30099. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30100. {
  30101. front: {
  30102. height: math.unit(205, "cm"),
  30103. weight: math.unit(102, "kg"),
  30104. name: "Front",
  30105. image: {
  30106. source: "./media/characters/irbisgreif/front.svg",
  30107. extra: 785/706,
  30108. bottom: 13/798
  30109. }
  30110. },
  30111. back: {
  30112. height: math.unit(205, "cm"),
  30113. weight: math.unit(102, "kg"),
  30114. name: "Back",
  30115. image: {
  30116. source: "./media/characters/irbisgreif/back.svg",
  30117. extra: 713/701,
  30118. bottom: 26/739
  30119. }
  30120. },
  30121. frontDressed: {
  30122. height: math.unit(216, "cm"),
  30123. weight: math.unit(102, "kg"),
  30124. name: "Front-dressed",
  30125. image: {
  30126. source: "./media/characters/irbisgreif/front-dressed.svg",
  30127. extra: 902/776,
  30128. bottom: 14/916
  30129. }
  30130. },
  30131. sideDressed: {
  30132. height: math.unit(195, "cm"),
  30133. weight: math.unit(102, "kg"),
  30134. name: "Side-dressed",
  30135. image: {
  30136. source: "./media/characters/irbisgreif/side-dressed.svg",
  30137. extra: 788/688,
  30138. bottom: 21/809
  30139. }
  30140. },
  30141. backDressed: {
  30142. height: math.unit(216, "cm"),
  30143. weight: math.unit(102, "kg"),
  30144. name: "Back-dressed",
  30145. image: {
  30146. source: "./media/characters/irbisgreif/back-dressed.svg",
  30147. extra: 901/783,
  30148. bottom: 10/911
  30149. }
  30150. },
  30151. dick: {
  30152. height: math.unit(0.49, "feet"),
  30153. name: "Dick",
  30154. image: {
  30155. source: "./media/characters/irbisgreif/dick.svg"
  30156. }
  30157. },
  30158. wingTop: {
  30159. height: math.unit(1.93 , "feet"),
  30160. name: "Wing-top",
  30161. image: {
  30162. source: "./media/characters/irbisgreif/wing-top.svg"
  30163. }
  30164. },
  30165. wingBottom: {
  30166. height: math.unit(1.93 , "feet"),
  30167. name: "Wing-bottom",
  30168. image: {
  30169. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30170. }
  30171. },
  30172. },
  30173. [
  30174. {
  30175. name: "Normal",
  30176. height: math.unit(216, "cm"),
  30177. default: true
  30178. },
  30179. ]
  30180. ))
  30181. characterMakers.push(() => makeCharacter(
  30182. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30183. {
  30184. front: {
  30185. height: math.unit(6, "feet"),
  30186. weight: math.unit(150, "lb"),
  30187. name: "Front",
  30188. image: {
  30189. source: "./media/characters/pride/front.svg",
  30190. extra: 1299/1230,
  30191. bottom: 18/1317
  30192. }
  30193. },
  30194. },
  30195. [
  30196. {
  30197. name: "Normal",
  30198. height: math.unit(7, "feet")
  30199. },
  30200. {
  30201. name: "Mini-macro",
  30202. height: math.unit(11, "feet")
  30203. },
  30204. {
  30205. name: "Macro",
  30206. height: math.unit(15, "meters"),
  30207. default: true
  30208. },
  30209. {
  30210. name: "Macro+",
  30211. height: math.unit(40, "meters")
  30212. },
  30213. ]
  30214. ))
  30215. characterMakers.push(() => makeCharacter(
  30216. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30217. {
  30218. front: {
  30219. height: math.unit(4 + 2 / 12, "feet"),
  30220. weight: math.unit(95, "lb"),
  30221. name: "Front",
  30222. image: {
  30223. source: "./media/characters/vaelophis-nyx/front.svg",
  30224. extra: 2532/2330,
  30225. bottom: 0/2532
  30226. }
  30227. },
  30228. back: {
  30229. height: math.unit(4 + 2 / 12, "feet"),
  30230. weight: math.unit(95, "lb"),
  30231. name: "Back",
  30232. image: {
  30233. source: "./media/characters/vaelophis-nyx/back.svg",
  30234. extra: 2484/2361,
  30235. bottom: 0/2484
  30236. }
  30237. },
  30238. feralSide: {
  30239. height: math.unit(2 + 1/12, "feet"),
  30240. weight: math.unit(20, "lb"),
  30241. name: "Feral (Side)",
  30242. image: {
  30243. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30244. extra: 1721/1581,
  30245. bottom: 70/1791
  30246. }
  30247. },
  30248. feralLazing: {
  30249. height: math.unit(1.08, "feet"),
  30250. weight: math.unit(20, "lb"),
  30251. name: "Feral (Lazing)",
  30252. image: {
  30253. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30254. extra: 822/822,
  30255. bottom: 248/1070
  30256. }
  30257. },
  30258. ear: {
  30259. height: math.unit(0.416, "feet"),
  30260. name: "Ear",
  30261. image: {
  30262. source: "./media/characters/vaelophis-nyx/ear.svg"
  30263. }
  30264. },
  30265. eye: {
  30266. height: math.unit(0.0748, "feet"),
  30267. name: "Eye",
  30268. image: {
  30269. source: "./media/characters/vaelophis-nyx/eye.svg"
  30270. }
  30271. },
  30272. mouth: {
  30273. height: math.unit(0.378, "feet"),
  30274. name: "Mouth",
  30275. image: {
  30276. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30277. }
  30278. },
  30279. spade: {
  30280. height: math.unit(0.55, "feet"),
  30281. name: "Spade",
  30282. image: {
  30283. source: "./media/characters/vaelophis-nyx/spade.svg"
  30284. }
  30285. },
  30286. },
  30287. [
  30288. {
  30289. name: "Normal",
  30290. height: math.unit(4 + 2/12, "feet"),
  30291. default: true
  30292. },
  30293. ]
  30294. ))
  30295. characterMakers.push(() => makeCharacter(
  30296. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30297. {
  30298. front: {
  30299. height: math.unit(7, "feet"),
  30300. weight: math.unit(231, "lb"),
  30301. name: "Front",
  30302. image: {
  30303. source: "./media/characters/flux/front.svg",
  30304. extra: 919/871,
  30305. bottom: 0/919
  30306. }
  30307. },
  30308. back: {
  30309. height: math.unit(7, "feet"),
  30310. weight: math.unit(231, "lb"),
  30311. name: "Back",
  30312. image: {
  30313. source: "./media/characters/flux/back.svg",
  30314. extra: 1040/992,
  30315. bottom: 0/1040
  30316. }
  30317. },
  30318. frontDressed: {
  30319. height: math.unit(7, "feet"),
  30320. weight: math.unit(231, "lb"),
  30321. name: "Front (Dressed)",
  30322. image: {
  30323. source: "./media/characters/flux/front-dressed.svg",
  30324. extra: 919/871,
  30325. bottom: 0/919
  30326. }
  30327. },
  30328. feralSide: {
  30329. height: math.unit(5, "feet"),
  30330. weight: math.unit(150, "lb"),
  30331. name: "Feral (Side)",
  30332. image: {
  30333. source: "./media/characters/flux/feral-side.svg",
  30334. extra: 598/528,
  30335. bottom: 28/626
  30336. }
  30337. },
  30338. head: {
  30339. height: math.unit(1.585, "feet"),
  30340. name: "Head",
  30341. image: {
  30342. source: "./media/characters/flux/head.svg"
  30343. }
  30344. },
  30345. headSide: {
  30346. height: math.unit(1.74, "feet"),
  30347. name: "Head (Side)",
  30348. image: {
  30349. source: "./media/characters/flux/head-side.svg"
  30350. }
  30351. },
  30352. headSideFire: {
  30353. height: math.unit(1.76, "feet"),
  30354. name: "Head (Side, Fire)",
  30355. image: {
  30356. source: "./media/characters/flux/head-side-fire.svg"
  30357. }
  30358. },
  30359. },
  30360. [
  30361. {
  30362. name: "Normal",
  30363. height: math.unit(7, "feet"),
  30364. default: true
  30365. },
  30366. ]
  30367. ))
  30368. characterMakers.push(() => makeCharacter(
  30369. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30370. {
  30371. front: {
  30372. height: math.unit(9, "feet"),
  30373. weight: math.unit(1012, "lb"),
  30374. name: "Front",
  30375. image: {
  30376. source: "./media/characters/ulfra-lupae/front.svg",
  30377. extra: 1083/1011,
  30378. bottom: 67/1150
  30379. }
  30380. },
  30381. },
  30382. [
  30383. {
  30384. name: "Micro",
  30385. height: math.unit(6, "inches")
  30386. },
  30387. {
  30388. name: "Socializing",
  30389. height: math.unit(6 + 5/12, "feet")
  30390. },
  30391. {
  30392. name: "Normal",
  30393. height: math.unit(9, "feet"),
  30394. default: true
  30395. },
  30396. {
  30397. name: "Macro",
  30398. height: math.unit(150, "feet")
  30399. },
  30400. ]
  30401. ))
  30402. characterMakers.push(() => makeCharacter(
  30403. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30404. {
  30405. front: {
  30406. height: math.unit(5 + 2/12, "feet"),
  30407. weight: math.unit(120, "lb"),
  30408. name: "Front",
  30409. image: {
  30410. source: "./media/characters/timber/front.svg",
  30411. extra: 2814/2705,
  30412. bottom: 181/2995
  30413. }
  30414. },
  30415. },
  30416. [
  30417. {
  30418. name: "Normal",
  30419. height: math.unit(5 + 2/12, "feet"),
  30420. default: true
  30421. },
  30422. ]
  30423. ))
  30424. characterMakers.push(() => makeCharacter(
  30425. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30426. {
  30427. front: {
  30428. height: math.unit(5 + 7/12, "feet"),
  30429. weight: math.unit(220, "lb"),
  30430. name: "Front",
  30431. image: {
  30432. source: "./media/characters/nicki/front.svg",
  30433. extra: 453/419,
  30434. bottom: 7/460
  30435. }
  30436. },
  30437. frontAlt: {
  30438. height: math.unit(5 + 7/12, "feet"),
  30439. weight: math.unit(220, "lb"),
  30440. name: "Front-alt",
  30441. image: {
  30442. source: "./media/characters/nicki/front-alt.svg",
  30443. extra: 435/411,
  30444. bottom: 12/447
  30445. }
  30446. },
  30447. back: {
  30448. height: math.unit(5 + 7/12, "feet"),
  30449. weight: math.unit(220, "lb"),
  30450. name: "Back",
  30451. image: {
  30452. source: "./media/characters/nicki/back.svg",
  30453. extra: 440/413,
  30454. bottom: 19/459
  30455. }
  30456. },
  30457. taur: {
  30458. height: math.unit(7 + 6/12, "feet"),
  30459. weight: math.unit(700, "lb"),
  30460. name: "Taur",
  30461. image: {
  30462. source: "./media/characters/nicki/taur.svg",
  30463. extra: 975/773,
  30464. bottom: 0/975
  30465. }
  30466. },
  30467. frontNsfw: {
  30468. height: math.unit(5 + 7/12, "feet"),
  30469. weight: math.unit(220, "lb"),
  30470. name: "Front (NSFW)",
  30471. image: {
  30472. source: "./media/characters/nicki/front-nsfw.svg",
  30473. extra: 453/419,
  30474. bottom: 7/460
  30475. }
  30476. },
  30477. frontNsfwAlt: {
  30478. height: math.unit(5 + 7/12, "feet"),
  30479. weight: math.unit(220, "lb"),
  30480. name: "Front (Alt, NSFW)",
  30481. image: {
  30482. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30483. extra: 435/411,
  30484. bottom: 12/447
  30485. }
  30486. },
  30487. backNsfw: {
  30488. height: math.unit(5 + 7/12, "feet"),
  30489. weight: math.unit(220, "lb"),
  30490. name: "Back (NSFW)",
  30491. image: {
  30492. source: "./media/characters/nicki/back-nsfw.svg",
  30493. extra: 440/413,
  30494. bottom: 19/459
  30495. }
  30496. },
  30497. head: {
  30498. height: math.unit(2.1, "feet"),
  30499. name: "Head",
  30500. image: {
  30501. source: "./media/characters/nicki/head.svg"
  30502. }
  30503. },
  30504. paw: {
  30505. height: math.unit(1.88, "feet"),
  30506. name: "Paw",
  30507. image: {
  30508. source: "./media/characters/nicki/paw.svg"
  30509. }
  30510. },
  30511. },
  30512. [
  30513. {
  30514. name: "Normal",
  30515. height: math.unit(5 + 7/12, "feet"),
  30516. default: true
  30517. },
  30518. ]
  30519. ))
  30520. characterMakers.push(() => makeCharacter(
  30521. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30522. {
  30523. front: {
  30524. height: math.unit(7 + 10/12, "feet"),
  30525. weight: math.unit(3.5, "tons"),
  30526. name: "Front",
  30527. image: {
  30528. source: "./media/characters/lee/front.svg",
  30529. extra: 1773/1615,
  30530. bottom: 86/1859
  30531. }
  30532. },
  30533. hand: {
  30534. height: math.unit(1.78, "feet"),
  30535. name: "Hand",
  30536. image: {
  30537. source: "./media/characters/lee/hand.svg"
  30538. }
  30539. },
  30540. maw: {
  30541. height: math.unit(1.18, "feet"),
  30542. name: "Maw",
  30543. image: {
  30544. source: "./media/characters/lee/maw.svg"
  30545. }
  30546. },
  30547. },
  30548. [
  30549. {
  30550. name: "Normal",
  30551. height: math.unit(7 + 10/12, "feet"),
  30552. default: true
  30553. },
  30554. ]
  30555. ))
  30556. characterMakers.push(() => makeCharacter(
  30557. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30558. {
  30559. front: {
  30560. height: math.unit(9, "feet"),
  30561. name: "Front",
  30562. image: {
  30563. source: "./media/characters/guti/front.svg",
  30564. extra: 4551/4355,
  30565. bottom: 123/4674
  30566. }
  30567. },
  30568. tongue: {
  30569. height: math.unit(1, "feet"),
  30570. name: "Tongue",
  30571. image: {
  30572. source: "./media/characters/guti/tongue.svg"
  30573. }
  30574. },
  30575. paw: {
  30576. height: math.unit(1.18, "feet"),
  30577. name: "Paw",
  30578. image: {
  30579. source: "./media/characters/guti/paw.svg"
  30580. }
  30581. },
  30582. },
  30583. [
  30584. {
  30585. name: "Normal",
  30586. height: math.unit(9, "feet"),
  30587. default: true
  30588. },
  30589. ]
  30590. ))
  30591. characterMakers.push(() => makeCharacter(
  30592. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30593. {
  30594. side: {
  30595. height: math.unit(5, "meters"),
  30596. name: "Side",
  30597. image: {
  30598. source: "./media/characters/vesper/side.svg",
  30599. extra: 1605/1518,
  30600. bottom: 0/1605
  30601. }
  30602. },
  30603. },
  30604. [
  30605. {
  30606. name: "Small",
  30607. height: math.unit(5, "meters")
  30608. },
  30609. {
  30610. name: "Sage",
  30611. height: math.unit(100, "meters"),
  30612. default: true
  30613. },
  30614. {
  30615. name: "Fun Size",
  30616. height: math.unit(600, "meters")
  30617. },
  30618. {
  30619. name: "Goddess",
  30620. height: math.unit(20000, "km")
  30621. },
  30622. {
  30623. name: "Maximum",
  30624. height: math.unit(5, "galaxies")
  30625. },
  30626. ]
  30627. ))
  30628. characterMakers.push(() => makeCharacter(
  30629. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30630. {
  30631. front: {
  30632. height: math.unit(6 + 3/12, "feet"),
  30633. weight: math.unit(190, "lb"),
  30634. name: "Front",
  30635. image: {
  30636. source: "./media/characters/gawain/front.svg",
  30637. extra: 2222/2139,
  30638. bottom: 90/2312
  30639. }
  30640. },
  30641. back: {
  30642. height: math.unit(6 + 3/12, "feet"),
  30643. weight: math.unit(190, "lb"),
  30644. name: "Back",
  30645. image: {
  30646. source: "./media/characters/gawain/back.svg",
  30647. extra: 2199/2111,
  30648. bottom: 73/2272
  30649. }
  30650. },
  30651. },
  30652. [
  30653. {
  30654. name: "Normal",
  30655. height: math.unit(6 + 3/12, "feet"),
  30656. default: true
  30657. },
  30658. ]
  30659. ))
  30660. characterMakers.push(() => makeCharacter(
  30661. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30662. {
  30663. side: {
  30664. height: math.unit(3.5, "meters"),
  30665. weight: math.unit(16000, "lb"),
  30666. name: "Side",
  30667. image: {
  30668. source: "./media/characters/dascalti/side.svg",
  30669. extra: 392/273,
  30670. bottom: 47/439
  30671. }
  30672. },
  30673. breath: {
  30674. height: math.unit(7.4, "feet"),
  30675. name: "Breath",
  30676. image: {
  30677. source: "./media/characters/dascalti/breath.svg"
  30678. }
  30679. },
  30680. fed: {
  30681. height: math.unit(3.6, "meters"),
  30682. weight: math.unit(16000, "lb"),
  30683. name: "Fed",
  30684. image: {
  30685. source: "./media/characters/dascalti/fed.svg",
  30686. extra: 1419/820,
  30687. bottom: 95/1514
  30688. }
  30689. },
  30690. },
  30691. [
  30692. {
  30693. name: "Normal",
  30694. height: math.unit(3.5, "meters"),
  30695. default: true
  30696. },
  30697. ]
  30698. ))
  30699. characterMakers.push(() => makeCharacter(
  30700. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30701. {
  30702. front: {
  30703. height: math.unit(3 + 5/12, "feet"),
  30704. name: "Front",
  30705. image: {
  30706. source: "./media/characters/mauve/front.svg",
  30707. extra: 1126/1033,
  30708. bottom: 65/1191
  30709. }
  30710. },
  30711. side: {
  30712. height: math.unit(3 + 5/12, "feet"),
  30713. name: "Side",
  30714. image: {
  30715. source: "./media/characters/mauve/side.svg",
  30716. extra: 1089/1001,
  30717. bottom: 29/1118
  30718. }
  30719. },
  30720. back: {
  30721. height: math.unit(3 + 5/12, "feet"),
  30722. name: "Back",
  30723. image: {
  30724. source: "./media/characters/mauve/back.svg",
  30725. extra: 1173/1053,
  30726. bottom: 109/1282
  30727. }
  30728. },
  30729. },
  30730. [
  30731. {
  30732. name: "Normal",
  30733. height: math.unit(3 + 5/12, "feet"),
  30734. default: true
  30735. },
  30736. ]
  30737. ))
  30738. characterMakers.push(() => makeCharacter(
  30739. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30740. {
  30741. front: {
  30742. height: math.unit(6 + 3/12, "feet"),
  30743. weight: math.unit(430, "lb"),
  30744. name: "Front",
  30745. image: {
  30746. source: "./media/characters/carlos/front.svg",
  30747. extra: 1964/1913,
  30748. bottom: 70/2034
  30749. }
  30750. },
  30751. },
  30752. [
  30753. {
  30754. name: "Normal",
  30755. height: math.unit(6 + 3/12, "feet"),
  30756. default: true
  30757. },
  30758. ]
  30759. ))
  30760. characterMakers.push(() => makeCharacter(
  30761. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30762. {
  30763. back: {
  30764. height: math.unit(5 + 10/12, "feet"),
  30765. weight: math.unit(200, "lb"),
  30766. name: "Back",
  30767. image: {
  30768. source: "./media/characters/jax/back.svg",
  30769. extra: 764/739,
  30770. bottom: 25/789
  30771. }
  30772. },
  30773. },
  30774. [
  30775. {
  30776. name: "Normal",
  30777. height: math.unit(5 + 10/12, "feet"),
  30778. default: true
  30779. },
  30780. ]
  30781. ))
  30782. characterMakers.push(() => makeCharacter(
  30783. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30784. {
  30785. front: {
  30786. height: math.unit(8, "feet"),
  30787. weight: math.unit(250, "lb"),
  30788. name: "Front",
  30789. image: {
  30790. source: "./media/characters/eikthynir/front.svg",
  30791. extra: 1332/1166,
  30792. bottom: 82/1414
  30793. }
  30794. },
  30795. back: {
  30796. height: math.unit(8, "feet"),
  30797. weight: math.unit(250, "lb"),
  30798. name: "Back",
  30799. image: {
  30800. source: "./media/characters/eikthynir/back.svg",
  30801. extra: 1342/1190,
  30802. bottom: 19/1361
  30803. }
  30804. },
  30805. dick: {
  30806. height: math.unit(2.35, "feet"),
  30807. name: "Dick",
  30808. image: {
  30809. source: "./media/characters/eikthynir/dick.svg"
  30810. }
  30811. },
  30812. },
  30813. [
  30814. {
  30815. name: "Normal",
  30816. height: math.unit(8, "feet"),
  30817. default: true
  30818. },
  30819. ]
  30820. ))
  30821. characterMakers.push(() => makeCharacter(
  30822. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30823. {
  30824. front: {
  30825. height: math.unit(99, "meters"),
  30826. weight: math.unit(13000, "tons"),
  30827. name: "Front",
  30828. image: {
  30829. source: "./media/characters/zlmos/front.svg",
  30830. extra: 2202/1992,
  30831. bottom: 315/2517
  30832. }
  30833. },
  30834. },
  30835. [
  30836. {
  30837. name: "Macro",
  30838. height: math.unit(99, "meters"),
  30839. default: true
  30840. },
  30841. ]
  30842. ))
  30843. characterMakers.push(() => makeCharacter(
  30844. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30845. {
  30846. front: {
  30847. height: math.unit(6 + 5/12, "feet"),
  30848. name: "Front",
  30849. image: {
  30850. source: "./media/characters/purri/front.svg",
  30851. extra: 1698/1610,
  30852. bottom: 32/1730
  30853. }
  30854. },
  30855. frontAlt: {
  30856. height: math.unit(6 + 5/12, "feet"),
  30857. name: "Front (Alt)",
  30858. image: {
  30859. source: "./media/characters/purri/front-alt.svg",
  30860. extra: 450/420,
  30861. bottom: 26/476
  30862. }
  30863. },
  30864. boots: {
  30865. height: math.unit(5.5, "feet"),
  30866. name: "Boots",
  30867. image: {
  30868. source: "./media/characters/purri/boots.svg",
  30869. extra: 905/853,
  30870. bottom: 18/923
  30871. }
  30872. },
  30873. lying: {
  30874. height: math.unit(2, "feet"),
  30875. name: "Lying",
  30876. image: {
  30877. source: "./media/characters/purri/lying.svg",
  30878. extra: 940/843,
  30879. bottom: 146/1086
  30880. }
  30881. },
  30882. devious: {
  30883. height: math.unit(1.77, "feet"),
  30884. name: "Devious",
  30885. image: {
  30886. source: "./media/characters/purri/devious.svg",
  30887. extra: 1440/1155,
  30888. bottom: 147/1587
  30889. }
  30890. },
  30891. bean: {
  30892. height: math.unit(1.94, "feet"),
  30893. name: "Bean",
  30894. image: {
  30895. source: "./media/characters/purri/bean.svg"
  30896. }
  30897. },
  30898. },
  30899. [
  30900. {
  30901. name: "Micro",
  30902. height: math.unit(1, "mm")
  30903. },
  30904. {
  30905. name: "Normal",
  30906. height: math.unit(6 + 5/12, "feet"),
  30907. default: true
  30908. },
  30909. {
  30910. name: "Macro :3c",
  30911. height: math.unit(2, "miles")
  30912. },
  30913. ]
  30914. ))
  30915. characterMakers.push(() => makeCharacter(
  30916. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  30917. {
  30918. front: {
  30919. height: math.unit(6 + 2/12, "feet"),
  30920. weight: math.unit(250, "lb"),
  30921. name: "Front",
  30922. image: {
  30923. source: "./media/characters/moonlight/front.svg",
  30924. extra: 1044/908,
  30925. bottom: 56/1100
  30926. }
  30927. },
  30928. feral: {
  30929. height: math.unit(3 + 1/12, "feet"),
  30930. weight: math.unit(50, "kg"),
  30931. name: "Feral",
  30932. image: {
  30933. source: "./media/characters/moonlight/feral.svg",
  30934. extra: 3705/2791,
  30935. bottom: 145/3850
  30936. }
  30937. },
  30938. paw: {
  30939. height: math.unit(1, "feet"),
  30940. name: "Paw",
  30941. image: {
  30942. source: "./media/characters/moonlight/paw.svg"
  30943. }
  30944. },
  30945. paws: {
  30946. height: math.unit(0.98, "feet"),
  30947. name: "Paws",
  30948. image: {
  30949. source: "./media/characters/moonlight/paws.svg",
  30950. extra: 939/939,
  30951. bottom: 50/989
  30952. }
  30953. },
  30954. mouth: {
  30955. height: math.unit(0.48, "feet"),
  30956. name: "Mouth",
  30957. image: {
  30958. source: "./media/characters/moonlight/mouth.svg"
  30959. }
  30960. },
  30961. dick: {
  30962. height: math.unit(1.46, "feet"),
  30963. name: "Dick",
  30964. image: {
  30965. source: "./media/characters/moonlight/dick.svg"
  30966. }
  30967. },
  30968. },
  30969. [
  30970. {
  30971. name: "Normal",
  30972. height: math.unit(6 + 2/12, "feet"),
  30973. default: true
  30974. },
  30975. {
  30976. name: "Macro",
  30977. height: math.unit(300, "feet")
  30978. },
  30979. {
  30980. name: "Macro+",
  30981. height: math.unit(1, "mile")
  30982. },
  30983. {
  30984. name: "Mt. Moon",
  30985. height: math.unit(5, "miles")
  30986. },
  30987. {
  30988. name: "Megamacro",
  30989. height: math.unit(15, "miles")
  30990. },
  30991. ]
  30992. ))
  30993. characterMakers.push(() => makeCharacter(
  30994. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  30995. {
  30996. back: {
  30997. height: math.unit(6, "feet"),
  30998. weight: math.unit(150, "lb"),
  30999. name: "Back",
  31000. image: {
  31001. source: "./media/characters/sylen/back.svg",
  31002. extra: 1335/1273,
  31003. bottom: 107/1442
  31004. }
  31005. },
  31006. },
  31007. [
  31008. {
  31009. name: "Normal",
  31010. height: math.unit(5 + 5/12, "feet")
  31011. },
  31012. {
  31013. name: "Megamacro",
  31014. height: math.unit(3, "miles"),
  31015. default: true
  31016. },
  31017. ]
  31018. ))
  31019. characterMakers.push(() => makeCharacter(
  31020. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31021. {
  31022. front: {
  31023. height: math.unit(6, "feet"),
  31024. weight: math.unit(190, "lb"),
  31025. name: "Front",
  31026. image: {
  31027. source: "./media/characters/huttser/front.svg",
  31028. extra: 1152/1058,
  31029. bottom: 23/1175
  31030. }
  31031. },
  31032. side: {
  31033. height: math.unit(6, "feet"),
  31034. weight: math.unit(190, "lb"),
  31035. name: "Side",
  31036. image: {
  31037. source: "./media/characters/huttser/side.svg",
  31038. extra: 1174/1065,
  31039. bottom: 18/1192
  31040. }
  31041. },
  31042. back: {
  31043. height: math.unit(6, "feet"),
  31044. weight: math.unit(190, "lb"),
  31045. name: "Back",
  31046. image: {
  31047. source: "./media/characters/huttser/back.svg",
  31048. extra: 1158/1056,
  31049. bottom: 12/1170
  31050. }
  31051. },
  31052. },
  31053. [
  31054. ]
  31055. ))
  31056. characterMakers.push(() => makeCharacter(
  31057. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31058. {
  31059. side: {
  31060. height: math.unit(12 + 9/12, "feet"),
  31061. weight: math.unit(15000, "lb"),
  31062. name: "Side",
  31063. image: {
  31064. source: "./media/characters/faan/side.svg",
  31065. extra: 2747/2697,
  31066. bottom: 0/2747
  31067. }
  31068. },
  31069. front: {
  31070. height: math.unit(12 + 9/12, "feet"),
  31071. weight: math.unit(15000, "lb"),
  31072. name: "Front",
  31073. image: {
  31074. source: "./media/characters/faan/front.svg",
  31075. extra: 607/571,
  31076. bottom: 24/631
  31077. }
  31078. },
  31079. head: {
  31080. height: math.unit(2.85, "feet"),
  31081. name: "Head",
  31082. image: {
  31083. source: "./media/characters/faan/head.svg"
  31084. }
  31085. },
  31086. headAlt: {
  31087. height: math.unit(3.13, "feet"),
  31088. name: "Head-alt",
  31089. image: {
  31090. source: "./media/characters/faan/head-alt.svg"
  31091. }
  31092. },
  31093. },
  31094. [
  31095. {
  31096. name: "Normal",
  31097. height: math.unit(12 + 9/12, "feet"),
  31098. default: true
  31099. },
  31100. ]
  31101. ))
  31102. characterMakers.push(() => makeCharacter(
  31103. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31104. {
  31105. front: {
  31106. height: math.unit(6, "feet"),
  31107. weight: math.unit(300, "lb"),
  31108. name: "Front",
  31109. image: {
  31110. source: "./media/characters/tanio/front.svg",
  31111. extra: 711/673,
  31112. bottom: 25/736
  31113. }
  31114. },
  31115. },
  31116. [
  31117. {
  31118. name: "Normal",
  31119. height: math.unit(6, "feet"),
  31120. default: true
  31121. },
  31122. ]
  31123. ))
  31124. characterMakers.push(() => makeCharacter(
  31125. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31126. {
  31127. front: {
  31128. height: math.unit(3, "inches"),
  31129. name: "Front",
  31130. image: {
  31131. source: "./media/characters/noboru/front.svg",
  31132. extra: 1039/932,
  31133. bottom: 18/1057
  31134. }
  31135. },
  31136. },
  31137. [
  31138. {
  31139. name: "Micro",
  31140. height: math.unit(3, "inches"),
  31141. default: true
  31142. },
  31143. ]
  31144. ))
  31145. characterMakers.push(() => makeCharacter(
  31146. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31147. {
  31148. front: {
  31149. height: math.unit(1.85, "meters"),
  31150. weight: math.unit(80, "kg"),
  31151. name: "Front",
  31152. image: {
  31153. source: "./media/characters/daniel-barrett/front.svg",
  31154. extra: 355/337,
  31155. bottom: 9/364
  31156. }
  31157. },
  31158. },
  31159. [
  31160. {
  31161. name: "Pico",
  31162. height: math.unit(0.0433, "mm")
  31163. },
  31164. {
  31165. name: "Nano",
  31166. height: math.unit(1.5, "mm")
  31167. },
  31168. {
  31169. name: "Micro",
  31170. height: math.unit(5.3, "cm"),
  31171. default: true
  31172. },
  31173. {
  31174. name: "Normal",
  31175. height: math.unit(1.85, "meters")
  31176. },
  31177. {
  31178. name: "Macro",
  31179. height: math.unit(64.7, "meters")
  31180. },
  31181. {
  31182. name: "Megamacro",
  31183. height: math.unit(2.26, "km")
  31184. },
  31185. {
  31186. name: "Gigamacro",
  31187. height: math.unit(79, "km")
  31188. },
  31189. {
  31190. name: "Teramacro",
  31191. height: math.unit(2765, "km")
  31192. },
  31193. {
  31194. name: "Petamacro",
  31195. height: math.unit(96678, "km")
  31196. },
  31197. ]
  31198. ))
  31199. characterMakers.push(() => makeCharacter(
  31200. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31201. {
  31202. front: {
  31203. height: math.unit(30, "meters"),
  31204. weight: math.unit(400, "tons"),
  31205. name: "Front",
  31206. image: {
  31207. source: "./media/characters/zeel/front.svg",
  31208. extra: 2599/2599,
  31209. bottom: 226/2825
  31210. }
  31211. },
  31212. },
  31213. [
  31214. {
  31215. name: "Macro",
  31216. height: math.unit(30, "meters"),
  31217. default: true
  31218. },
  31219. ]
  31220. ))
  31221. characterMakers.push(() => makeCharacter(
  31222. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31223. {
  31224. front: {
  31225. height: math.unit(6 + 7/12, "feet"),
  31226. weight: math.unit(210, "lb"),
  31227. name: "Front",
  31228. image: {
  31229. source: "./media/characters/tarn/front.svg",
  31230. extra: 3517/3220,
  31231. bottom: 91/3608
  31232. }
  31233. },
  31234. back: {
  31235. height: math.unit(6 + 7/12, "feet"),
  31236. weight: math.unit(210, "lb"),
  31237. name: "Back",
  31238. image: {
  31239. source: "./media/characters/tarn/back.svg",
  31240. extra: 3566/3241,
  31241. bottom: 34/3600
  31242. }
  31243. },
  31244. dick: {
  31245. height: math.unit(1.65, "feet"),
  31246. name: "Dick",
  31247. image: {
  31248. source: "./media/characters/tarn/dick.svg"
  31249. }
  31250. },
  31251. paw: {
  31252. height: math.unit(1.80, "feet"),
  31253. name: "Paw",
  31254. image: {
  31255. source: "./media/characters/tarn/paw.svg"
  31256. }
  31257. },
  31258. tongue: {
  31259. height: math.unit(0.97, "feet"),
  31260. name: "Tongue",
  31261. image: {
  31262. source: "./media/characters/tarn/tongue.svg"
  31263. }
  31264. },
  31265. },
  31266. [
  31267. {
  31268. name: "Micro",
  31269. height: math.unit(4, "inches")
  31270. },
  31271. {
  31272. name: "Normal",
  31273. height: math.unit(6 + 7/12, "feet"),
  31274. default: true
  31275. },
  31276. {
  31277. name: "Macro",
  31278. height: math.unit(300, "feet")
  31279. },
  31280. ]
  31281. ))
  31282. characterMakers.push(() => makeCharacter(
  31283. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31284. {
  31285. front: {
  31286. height: math.unit(5 + 7/12, "feet"),
  31287. weight: math.unit(80, "kg"),
  31288. name: "Front",
  31289. image: {
  31290. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31291. extra: 3023/2865,
  31292. bottom: 33/3056
  31293. }
  31294. },
  31295. back: {
  31296. height: math.unit(5 + 7/12, "feet"),
  31297. weight: math.unit(80, "kg"),
  31298. name: "Back",
  31299. image: {
  31300. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31301. extra: 3020/2886,
  31302. bottom: 30/3050
  31303. }
  31304. },
  31305. dick: {
  31306. height: math.unit(0.98, "feet"),
  31307. name: "Dick",
  31308. image: {
  31309. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31310. }
  31311. },
  31312. anatomy: {
  31313. height: math.unit(2.86, "feet"),
  31314. name: "Anatomy",
  31315. image: {
  31316. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31317. }
  31318. },
  31319. },
  31320. [
  31321. {
  31322. name: "Really Small",
  31323. height: math.unit(2, "inches")
  31324. },
  31325. {
  31326. name: "Micro",
  31327. height: math.unit(5.583, "inches")
  31328. },
  31329. {
  31330. name: "Normal",
  31331. height: math.unit(5 + 7/12, "feet"),
  31332. default: true
  31333. },
  31334. {
  31335. name: "Macro",
  31336. height: math.unit(67, "feet")
  31337. },
  31338. {
  31339. name: "Megamacro",
  31340. height: math.unit(134, "feet")
  31341. },
  31342. ]
  31343. ))
  31344. characterMakers.push(() => makeCharacter(
  31345. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31346. {
  31347. front: {
  31348. height: math.unit(9, "feet"),
  31349. weight: math.unit(120, "lb"),
  31350. name: "Front",
  31351. image: {
  31352. source: "./media/characters/sally/front.svg",
  31353. extra: 1506/1349,
  31354. bottom: 66/1572
  31355. }
  31356. },
  31357. },
  31358. [
  31359. {
  31360. name: "Normal",
  31361. height: math.unit(9, "feet"),
  31362. default: true
  31363. },
  31364. ]
  31365. ))
  31366. characterMakers.push(() => makeCharacter(
  31367. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31368. {
  31369. front: {
  31370. height: math.unit(8, "feet"),
  31371. weight: math.unit(900, "lb"),
  31372. name: "Front",
  31373. image: {
  31374. source: "./media/characters/owen/front.svg",
  31375. extra: 1761/1657,
  31376. bottom: 74/1835
  31377. }
  31378. },
  31379. side: {
  31380. height: math.unit(8, "feet"),
  31381. weight: math.unit(900, "lb"),
  31382. name: "Side",
  31383. image: {
  31384. source: "./media/characters/owen/side.svg",
  31385. extra: 1797/1734,
  31386. bottom: 30/1827
  31387. }
  31388. },
  31389. back: {
  31390. height: math.unit(8, "feet"),
  31391. weight: math.unit(900, "lb"),
  31392. name: "Back",
  31393. image: {
  31394. source: "./media/characters/owen/back.svg",
  31395. extra: 1796/1706,
  31396. bottom: 59/1855
  31397. }
  31398. },
  31399. maw: {
  31400. height: math.unit(1.76, "feet"),
  31401. name: "Maw",
  31402. image: {
  31403. source: "./media/characters/owen/maw.svg"
  31404. }
  31405. },
  31406. },
  31407. [
  31408. {
  31409. name: "Normal",
  31410. height: math.unit(8, "feet"),
  31411. default: true
  31412. },
  31413. ]
  31414. ))
  31415. characterMakers.push(() => makeCharacter(
  31416. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31417. {
  31418. front: {
  31419. height: math.unit(4, "feet"),
  31420. weight: math.unit(400, "lb"),
  31421. name: "Front",
  31422. image: {
  31423. source: "./media/characters/ryth/front.svg",
  31424. extra: 876/691,
  31425. bottom: 25/901
  31426. }
  31427. },
  31428. goia: {
  31429. height: math.unit(12, "feet"),
  31430. weight: math.unit(10800, "lb"),
  31431. name: "Goia",
  31432. image: {
  31433. source: "./media/characters/ryth/goia.svg",
  31434. extra: 3450/3198,
  31435. bottom: 61/3511
  31436. }
  31437. },
  31438. },
  31439. [
  31440. {
  31441. name: "Normal",
  31442. height: math.unit(4, "feet"),
  31443. default: true
  31444. },
  31445. ]
  31446. ))
  31447. characterMakers.push(() => makeCharacter(
  31448. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31449. {
  31450. front: {
  31451. height: math.unit(7, "feet"),
  31452. weight: math.unit(180, "lb"),
  31453. name: "Front",
  31454. image: {
  31455. source: "./media/characters/necrolance/front.svg",
  31456. extra: 1062/947,
  31457. bottom: 41/1103
  31458. }
  31459. },
  31460. back: {
  31461. height: math.unit(7, "feet"),
  31462. weight: math.unit(180, "lb"),
  31463. name: "Back",
  31464. image: {
  31465. source: "./media/characters/necrolance/back.svg",
  31466. extra: 1045/984,
  31467. bottom: 14/1059
  31468. }
  31469. },
  31470. wing: {
  31471. height: math.unit(2.67, "feet"),
  31472. name: "Wing",
  31473. image: {
  31474. source: "./media/characters/necrolance/wing.svg"
  31475. }
  31476. },
  31477. },
  31478. [
  31479. {
  31480. name: "Normal",
  31481. height: math.unit(7, "feet"),
  31482. default: true
  31483. },
  31484. ]
  31485. ))
  31486. characterMakers.push(() => makeCharacter(
  31487. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31488. {
  31489. front: {
  31490. height: math.unit(76, "meters"),
  31491. weight: math.unit(30000, "tons"),
  31492. name: "Front",
  31493. image: {
  31494. source: "./media/characters/tyler/front.svg",
  31495. extra: 1640/1640,
  31496. bottom: 114/1754
  31497. }
  31498. },
  31499. },
  31500. [
  31501. {
  31502. name: "Macro",
  31503. height: math.unit(76, "meters"),
  31504. default: true
  31505. },
  31506. ]
  31507. ))
  31508. characterMakers.push(() => makeCharacter(
  31509. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31510. {
  31511. front: {
  31512. height: math.unit(4 + 11/12, "feet"),
  31513. weight: math.unit(132, "lb"),
  31514. name: "Front",
  31515. image: {
  31516. source: "./media/characters/icey/front.svg",
  31517. extra: 2750/2550,
  31518. bottom: 33/2783
  31519. }
  31520. },
  31521. back: {
  31522. height: math.unit(4 + 11/12, "feet"),
  31523. weight: math.unit(132, "lb"),
  31524. name: "Back",
  31525. image: {
  31526. source: "./media/characters/icey/back.svg",
  31527. extra: 2624/2481,
  31528. bottom: 35/2659
  31529. }
  31530. },
  31531. },
  31532. [
  31533. {
  31534. name: "Normal",
  31535. height: math.unit(4 + 11/12, "feet"),
  31536. default: true
  31537. },
  31538. ]
  31539. ))
  31540. characterMakers.push(() => makeCharacter(
  31541. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31542. {
  31543. front: {
  31544. height: math.unit(100, "feet"),
  31545. weight: math.unit(0, "lb"),
  31546. name: "Front",
  31547. image: {
  31548. source: "./media/characters/smile/front.svg",
  31549. extra: 2983/2912,
  31550. bottom: 162/3145
  31551. }
  31552. },
  31553. back: {
  31554. height: math.unit(100, "feet"),
  31555. weight: math.unit(0, "lb"),
  31556. name: "Back",
  31557. image: {
  31558. source: "./media/characters/smile/back.svg",
  31559. extra: 3143/3031,
  31560. bottom: 91/3234
  31561. }
  31562. },
  31563. head: {
  31564. height: math.unit(26.3, "feet"),
  31565. weight: math.unit(0, "lb"),
  31566. name: "Head",
  31567. image: {
  31568. source: "./media/characters/smile/head.svg"
  31569. }
  31570. },
  31571. collar: {
  31572. height: math.unit(5.3, "feet"),
  31573. weight: math.unit(0, "lb"),
  31574. name: "Collar",
  31575. image: {
  31576. source: "./media/characters/smile/collar.svg"
  31577. }
  31578. },
  31579. },
  31580. [
  31581. {
  31582. name: "Macro",
  31583. height: math.unit(100, "feet"),
  31584. default: true
  31585. },
  31586. ]
  31587. ))
  31588. characterMakers.push(() => makeCharacter(
  31589. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31590. {
  31591. dragon: {
  31592. height: math.unit(26, "feet"),
  31593. weight: math.unit(36, "tons"),
  31594. name: "Dragon",
  31595. image: {
  31596. source: "./media/characters/arimphae/dragon.svg",
  31597. extra: 1574/983,
  31598. bottom: 357/1931
  31599. }
  31600. },
  31601. drake: {
  31602. height: math.unit(9, "feet"),
  31603. weight: math.unit(1.5, "tons"),
  31604. name: "Drake",
  31605. image: {
  31606. source: "./media/characters/arimphae/drake.svg",
  31607. extra: 1120/925,
  31608. bottom: 435/1555
  31609. }
  31610. },
  31611. },
  31612. [
  31613. {
  31614. name: "Small",
  31615. height: math.unit(26*5/9, "feet")
  31616. },
  31617. {
  31618. name: "Normal",
  31619. height: math.unit(26, "feet"),
  31620. default: true
  31621. },
  31622. ]
  31623. ))
  31624. characterMakers.push(() => makeCharacter(
  31625. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31626. {
  31627. front: {
  31628. height: math.unit(8 + 9/12, "feet"),
  31629. name: "Front",
  31630. image: {
  31631. source: "./media/characters/xander/front.svg",
  31632. extra: 848/673,
  31633. bottom: 62/910
  31634. }
  31635. },
  31636. },
  31637. [
  31638. {
  31639. name: "Normal",
  31640. height: math.unit(8 + 9/12, "feet"),
  31641. default: true
  31642. },
  31643. {
  31644. name: "Gaze Grabber",
  31645. height: math.unit(13 + 8/12, "feet")
  31646. },
  31647. {
  31648. name: "Jaw Dropper",
  31649. height: math.unit(27, "feet")
  31650. },
  31651. {
  31652. name: "Show Stopper",
  31653. height: math.unit(136, "feet")
  31654. },
  31655. {
  31656. name: "Superstar",
  31657. height: math.unit(1.9e6, "miles")
  31658. },
  31659. ]
  31660. ))
  31661. characterMakers.push(() => makeCharacter(
  31662. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31663. {
  31664. side: {
  31665. height: math.unit(2100, "feet"),
  31666. name: "Side",
  31667. image: {
  31668. source: "./media/characters/osiris/side.svg",
  31669. extra: 1105/939,
  31670. bottom: 167/1272
  31671. }
  31672. },
  31673. },
  31674. [
  31675. {
  31676. name: "Macro",
  31677. height: math.unit(2100, "feet"),
  31678. default: true
  31679. },
  31680. ]
  31681. ))
  31682. characterMakers.push(() => makeCharacter(
  31683. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31684. {
  31685. front: {
  31686. height: math.unit(6 + 8/12, "feet"),
  31687. weight: math.unit(225, "lb"),
  31688. name: "Front",
  31689. image: {
  31690. source: "./media/characters/rhys-londe/front.svg",
  31691. extra: 2258/2141,
  31692. bottom: 188/2446
  31693. }
  31694. },
  31695. back: {
  31696. height: math.unit(6 + 8/12, "feet"),
  31697. weight: math.unit(225, "lb"),
  31698. name: "Back",
  31699. image: {
  31700. source: "./media/characters/rhys-londe/back.svg",
  31701. extra: 2237/2137,
  31702. bottom: 63/2300
  31703. }
  31704. },
  31705. frontNsfw: {
  31706. height: math.unit(6 + 8/12, "feet"),
  31707. weight: math.unit(225, "lb"),
  31708. name: "Front (NSFW)",
  31709. image: {
  31710. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31711. extra: 2258/2141,
  31712. bottom: 188/2446
  31713. }
  31714. },
  31715. backNsfw: {
  31716. height: math.unit(6 + 8/12, "feet"),
  31717. weight: math.unit(225, "lb"),
  31718. name: "Back (NSFW)",
  31719. image: {
  31720. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31721. extra: 2237/2137,
  31722. bottom: 63/2300
  31723. }
  31724. },
  31725. dick: {
  31726. height: math.unit(30, "inches"),
  31727. name: "Dick",
  31728. image: {
  31729. source: "./media/characters/rhys-londe/dick.svg"
  31730. }
  31731. },
  31732. maw: {
  31733. height: math.unit(1.6, "feet"),
  31734. name: "Maw",
  31735. image: {
  31736. source: "./media/characters/rhys-londe/maw.svg"
  31737. }
  31738. },
  31739. },
  31740. [
  31741. {
  31742. name: "Normal",
  31743. height: math.unit(6 + 8/12, "feet"),
  31744. default: true
  31745. },
  31746. ]
  31747. ))
  31748. characterMakers.push(() => makeCharacter(
  31749. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31750. {
  31751. front: {
  31752. height: math.unit(3 + 10/12, "feet"),
  31753. weight: math.unit(90, "lb"),
  31754. name: "Front",
  31755. image: {
  31756. source: "./media/characters/taivas-ensim/front.svg",
  31757. extra: 1327/1216,
  31758. bottom: 96/1423
  31759. }
  31760. },
  31761. back: {
  31762. height: math.unit(3 + 10/12, "feet"),
  31763. weight: math.unit(90, "lb"),
  31764. name: "Back",
  31765. image: {
  31766. source: "./media/characters/taivas-ensim/back.svg",
  31767. extra: 1355/1247,
  31768. bottom: 11/1366
  31769. }
  31770. },
  31771. frontNsfw: {
  31772. height: math.unit(3 + 10/12, "feet"),
  31773. weight: math.unit(90, "lb"),
  31774. name: "Front (NSFW)",
  31775. image: {
  31776. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  31777. extra: 1327/1216,
  31778. bottom: 96/1423
  31779. }
  31780. },
  31781. backNsfw: {
  31782. height: math.unit(3 + 10/12, "feet"),
  31783. weight: math.unit(90, "lb"),
  31784. name: "Back (NSFW)",
  31785. image: {
  31786. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  31787. extra: 1355/1247,
  31788. bottom: 11/1366
  31789. }
  31790. },
  31791. },
  31792. [
  31793. {
  31794. name: "Normal",
  31795. height: math.unit(3 + 10/12, "feet"),
  31796. default: true
  31797. },
  31798. ]
  31799. ))
  31800. characterMakers.push(() => makeCharacter(
  31801. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  31802. {
  31803. front: {
  31804. height: math.unit(9 + 6/12, "feet"),
  31805. weight: math.unit(940, "lb"),
  31806. name: "Front",
  31807. image: {
  31808. source: "./media/characters/byliss/front.svg",
  31809. extra: 1327/1290,
  31810. bottom: 82/1409
  31811. }
  31812. },
  31813. back: {
  31814. height: math.unit(9 + 6/12, "feet"),
  31815. weight: math.unit(940, "lb"),
  31816. name: "Back",
  31817. image: {
  31818. source: "./media/characters/byliss/back.svg",
  31819. extra: 1376/1349,
  31820. bottom: 9/1385
  31821. }
  31822. },
  31823. frontNsfw: {
  31824. height: math.unit(9 + 6/12, "feet"),
  31825. weight: math.unit(940, "lb"),
  31826. name: "Front (NSFW)",
  31827. image: {
  31828. source: "./media/characters/byliss/front-nsfw.svg",
  31829. extra: 1327/1290,
  31830. bottom: 82/1409
  31831. }
  31832. },
  31833. backNsfw: {
  31834. height: math.unit(9 + 6/12, "feet"),
  31835. weight: math.unit(940, "lb"),
  31836. name: "Back (NSFW)",
  31837. image: {
  31838. source: "./media/characters/byliss/back-nsfw.svg",
  31839. extra: 1376/1349,
  31840. bottom: 9/1385
  31841. }
  31842. },
  31843. },
  31844. [
  31845. {
  31846. name: "Normal",
  31847. height: math.unit(9 + 6/12, "feet"),
  31848. default: true
  31849. },
  31850. ]
  31851. ))
  31852. characterMakers.push(() => makeCharacter(
  31853. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  31854. {
  31855. front: {
  31856. height: math.unit(5 + 2/12, "feet"),
  31857. weight: math.unit(200, "lb"),
  31858. name: "Front",
  31859. image: {
  31860. source: "./media/characters/noraly/front.svg",
  31861. extra: 4985/4773,
  31862. bottom: 150/5135
  31863. }
  31864. },
  31865. full: {
  31866. height: math.unit(5 + 2/12, "feet"),
  31867. weight: math.unit(164, "lb"),
  31868. name: "Full",
  31869. image: {
  31870. source: "./media/characters/noraly/full.svg",
  31871. extra: 1114/1059,
  31872. bottom: 35/1149
  31873. }
  31874. },
  31875. fuller: {
  31876. height: math.unit(5 + 2/12, "feet"),
  31877. weight: math.unit(230, "lb"),
  31878. name: "Fuller",
  31879. image: {
  31880. source: "./media/characters/noraly/fuller.svg",
  31881. extra: 1114/1059,
  31882. bottom: 35/1149
  31883. }
  31884. },
  31885. fullest: {
  31886. height: math.unit(5 + 2/12, "feet"),
  31887. weight: math.unit(300, "lb"),
  31888. name: "Fullest",
  31889. image: {
  31890. source: "./media/characters/noraly/fullest.svg",
  31891. extra: 1114/1059,
  31892. bottom: 35/1149
  31893. }
  31894. },
  31895. },
  31896. [
  31897. {
  31898. name: "Normal",
  31899. height: math.unit(5 + 2/12, "feet"),
  31900. default: true
  31901. },
  31902. ]
  31903. ))
  31904. characterMakers.push(() => makeCharacter(
  31905. { name: "Pera", species: ["snake"], tags: ["naga"] },
  31906. {
  31907. front: {
  31908. height: math.unit(5 + 2/12, "feet"),
  31909. weight: math.unit(210, "lb"),
  31910. name: "Front",
  31911. image: {
  31912. source: "./media/characters/pera/front.svg",
  31913. extra: 1560/1531,
  31914. bottom: 165/1725
  31915. }
  31916. },
  31917. back: {
  31918. height: math.unit(5 + 2/12, "feet"),
  31919. weight: math.unit(210, "lb"),
  31920. name: "Back",
  31921. image: {
  31922. source: "./media/characters/pera/back.svg",
  31923. extra: 1523/1493,
  31924. bottom: 152/1675
  31925. }
  31926. },
  31927. dick: {
  31928. height: math.unit(2.4, "feet"),
  31929. name: "Dick",
  31930. image: {
  31931. source: "./media/characters/pera/dick.svg"
  31932. }
  31933. },
  31934. },
  31935. [
  31936. {
  31937. name: "Normal",
  31938. height: math.unit(5 + 2/12, "feet"),
  31939. default: true
  31940. },
  31941. ]
  31942. ))
  31943. characterMakers.push(() => makeCharacter(
  31944. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  31945. {
  31946. front: {
  31947. height: math.unit(12, "feet"),
  31948. weight: math.unit(3200, "lb"),
  31949. name: "Front",
  31950. image: {
  31951. source: "./media/characters/julian/front.svg",
  31952. extra: 2962/2701,
  31953. bottom: 184/3146
  31954. }
  31955. },
  31956. maw: {
  31957. height: math.unit(5.35, "feet"),
  31958. name: "Maw",
  31959. image: {
  31960. source: "./media/characters/julian/maw.svg"
  31961. }
  31962. },
  31963. paw: {
  31964. height: math.unit(3.07, "feet"),
  31965. name: "Paw",
  31966. image: {
  31967. source: "./media/characters/julian/paw.svg"
  31968. }
  31969. },
  31970. },
  31971. [
  31972. {
  31973. name: "Default",
  31974. height: math.unit(12, "feet"),
  31975. default: true
  31976. },
  31977. {
  31978. name: "Big",
  31979. height: math.unit(50, "feet")
  31980. },
  31981. {
  31982. name: "Really Big",
  31983. height: math.unit(1, "mile")
  31984. },
  31985. {
  31986. name: "Extremely Big",
  31987. height: math.unit(100, "miles")
  31988. },
  31989. {
  31990. name: "Planet Hugger",
  31991. height: math.unit(200, "megameters")
  31992. },
  31993. {
  31994. name: "Unreasonably Big",
  31995. height: math.unit(1e300, "meters")
  31996. },
  31997. ]
  31998. ))
  31999. characterMakers.push(() => makeCharacter(
  32000. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32001. {
  32002. solgooleo: {
  32003. height: math.unit(4, "meters"),
  32004. weight: math.unit(6000*1.5, "kg"),
  32005. volume: math.unit(6000, "liters"),
  32006. name: "Solgooleo",
  32007. image: {
  32008. source: "./media/characters/pi/solgooleo.svg",
  32009. extra: 388/331,
  32010. bottom: 29/417
  32011. }
  32012. },
  32013. },
  32014. [
  32015. {
  32016. name: "Normal",
  32017. height: math.unit(4, "meters"),
  32018. default: true
  32019. },
  32020. ]
  32021. ))
  32022. characterMakers.push(() => makeCharacter(
  32023. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32024. {
  32025. front: {
  32026. height: math.unit(8 + 2/12, "feet"),
  32027. weight: math.unit(4, "tons"),
  32028. name: "Front",
  32029. image: {
  32030. source: "./media/characters/shaun/front.svg",
  32031. extra: 1550/1505,
  32032. bottom: 353/1903
  32033. }
  32034. },
  32035. },
  32036. [
  32037. {
  32038. name: "Lorg",
  32039. height: math.unit(8 + 2/12, "feet"),
  32040. default: true
  32041. },
  32042. ]
  32043. ))
  32044. characterMakers.push(() => makeCharacter(
  32045. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32046. {
  32047. front: {
  32048. height: math.unit(7, "feet"),
  32049. name: "Front",
  32050. image: {
  32051. source: "./media/characters/sini/front.svg",
  32052. extra: 726/678,
  32053. bottom: 35/761
  32054. }
  32055. },
  32056. back: {
  32057. height: math.unit(7, "feet"),
  32058. name: "Back",
  32059. image: {
  32060. source: "./media/characters/sini/back.svg",
  32061. extra: 743/701,
  32062. bottom: 12/755
  32063. }
  32064. },
  32065. mawAnthro: {
  32066. height: math.unit(2.14, "feet"),
  32067. name: "Maw (Anthro)",
  32068. image: {
  32069. source: "./media/characters/sini/maw-anthro.svg"
  32070. }
  32071. },
  32072. dick: {
  32073. height: math.unit(1.45, "feet"),
  32074. name: "Dick (Anthro)",
  32075. image: {
  32076. source: "./media/characters/sini/dick-anthro.svg"
  32077. }
  32078. },
  32079. feral: {
  32080. height: math.unit(13, "feet"),
  32081. name: "Feral",
  32082. image: {
  32083. source: "./media/characters/sini/feral.svg",
  32084. extra: 814/605,
  32085. bottom: 11/825
  32086. }
  32087. },
  32088. mawFeral: {
  32089. height: math.unit(4.6, "feet"),
  32090. name: "Maw-feral",
  32091. image: {
  32092. source: "./media/characters/sini/maw-feral.svg"
  32093. }
  32094. },
  32095. footFeral: {
  32096. height: math.unit(4.2, "feet"),
  32097. name: "Foot-feral",
  32098. image: {
  32099. source: "./media/characters/sini/foot-feral.svg"
  32100. }
  32101. },
  32102. },
  32103. [
  32104. {
  32105. name: "Normal",
  32106. height: math.unit(7, "feet"),
  32107. default: true
  32108. },
  32109. ]
  32110. ))
  32111. characterMakers.push(() => makeCharacter(
  32112. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32113. {
  32114. side: {
  32115. height: math.unit(13, "meters"),
  32116. weight: math.unit(9072, "kg"),
  32117. name: "Side",
  32118. image: {
  32119. source: "./media/characters/raylldo/side.svg",
  32120. extra: 403/344,
  32121. bottom: 42/445
  32122. }
  32123. },
  32124. leaping: {
  32125. height: math.unit(12.3, "meters"),
  32126. weight: math.unit(9072, "kg"),
  32127. name: "Leaping",
  32128. image: {
  32129. source: "./media/characters/raylldo/leaping.svg",
  32130. extra: 470/249,
  32131. bottom: 13/483
  32132. }
  32133. },
  32134. flying: {
  32135. height: math.unit(18, "meters"),
  32136. weight: math.unit(9072, "kg"),
  32137. name: "Flying",
  32138. image: {
  32139. source: "./media/characters/raylldo/flying.svg"
  32140. }
  32141. },
  32142. head: {
  32143. height: math.unit(5.85, "meters"),
  32144. name: "Head",
  32145. image: {
  32146. source: "./media/characters/raylldo/head.svg"
  32147. }
  32148. },
  32149. maw: {
  32150. height: math.unit(5.32, "meters"),
  32151. name: "Maw",
  32152. image: {
  32153. source: "./media/characters/raylldo/maw.svg"
  32154. }
  32155. },
  32156. eye: {
  32157. height: math.unit(0.54, "meters"),
  32158. name: "Eye",
  32159. image: {
  32160. source: "./media/characters/raylldo/eye.svg"
  32161. }
  32162. },
  32163. },
  32164. [
  32165. {
  32166. name: "Normal",
  32167. height: math.unit(13, "meters"),
  32168. default: true
  32169. },
  32170. ]
  32171. ))
  32172. characterMakers.push(() => makeCharacter(
  32173. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32174. {
  32175. anthroFront: {
  32176. height: math.unit(9, "feet"),
  32177. weight: math.unit(600, "lb"),
  32178. name: "Anthro (Front)",
  32179. image: {
  32180. source: "./media/characters/glint/anthro-front.svg",
  32181. extra: 1097/1018,
  32182. bottom: 28/1125
  32183. }
  32184. },
  32185. anthroBack: {
  32186. height: math.unit(9, "feet"),
  32187. weight: math.unit(600, "lb"),
  32188. name: "Anthro (Back)",
  32189. image: {
  32190. source: "./media/characters/glint/anthro-back.svg",
  32191. extra: 1154/997,
  32192. bottom: 36/1190
  32193. }
  32194. },
  32195. feral: {
  32196. height: math.unit(11, "feet"),
  32197. weight: math.unit(50000, "lb"),
  32198. name: "Feral",
  32199. image: {
  32200. source: "./media/characters/glint/feral.svg",
  32201. extra: 3035/1585,
  32202. bottom: 1169/4204
  32203. }
  32204. },
  32205. dickAnthro: {
  32206. height: math.unit(0.7, "meters"),
  32207. name: "Dick (Anthro)",
  32208. image: {
  32209. source: "./media/characters/glint/dick-anthro.svg"
  32210. }
  32211. },
  32212. dickFeral: {
  32213. height: math.unit(2.65, "meters"),
  32214. name: "Dick (Feral)",
  32215. image: {
  32216. source: "./media/characters/glint/dick-feral.svg"
  32217. }
  32218. },
  32219. slitHidden: {
  32220. height: math.unit(5.85, "meters"),
  32221. name: "Slit (Hidden)",
  32222. image: {
  32223. source: "./media/characters/glint/slit-hidden.svg"
  32224. }
  32225. },
  32226. slitErect: {
  32227. height: math.unit(5.85, "meters"),
  32228. name: "Slit (Erect)",
  32229. image: {
  32230. source: "./media/characters/glint/slit-erect.svg"
  32231. }
  32232. },
  32233. mawAnthro: {
  32234. height: math.unit(0.63, "meters"),
  32235. name: "Maw (Anthro)",
  32236. image: {
  32237. source: "./media/characters/glint/maw.svg"
  32238. }
  32239. },
  32240. mawFeral: {
  32241. height: math.unit(2.89, "meters"),
  32242. name: "Maw (Feral)",
  32243. image: {
  32244. source: "./media/characters/glint/maw.svg"
  32245. }
  32246. },
  32247. },
  32248. [
  32249. {
  32250. name: "Normal",
  32251. height: math.unit(9, "feet"),
  32252. default: true
  32253. },
  32254. ]
  32255. ))
  32256. characterMakers.push(() => makeCharacter(
  32257. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32258. {
  32259. side: {
  32260. height: math.unit(15, "feet"),
  32261. weight: math.unit(5000, "kg"),
  32262. name: "Side",
  32263. image: {
  32264. source: "./media/characters/kairne/side.svg",
  32265. extra: 979/811,
  32266. bottom: 13/992
  32267. }
  32268. },
  32269. front: {
  32270. height: math.unit(15, "feet"),
  32271. weight: math.unit(5000, "kg"),
  32272. name: "Front",
  32273. image: {
  32274. source: "./media/characters/kairne/front.svg",
  32275. extra: 908/814,
  32276. bottom: 26/934
  32277. }
  32278. },
  32279. sideNsfw: {
  32280. height: math.unit(15, "feet"),
  32281. weight: math.unit(5000, "kg"),
  32282. name: "Side (NSFW)",
  32283. image: {
  32284. source: "./media/characters/kairne/side-nsfw.svg",
  32285. extra: 979/811,
  32286. bottom: 13/992
  32287. }
  32288. },
  32289. frontNsfw: {
  32290. height: math.unit(15, "feet"),
  32291. weight: math.unit(5000, "kg"),
  32292. name: "Front (NSFW)",
  32293. image: {
  32294. source: "./media/characters/kairne/front-nsfw.svg",
  32295. extra: 908/814,
  32296. bottom: 26/934
  32297. }
  32298. },
  32299. dickCaged: {
  32300. height: math.unit(0.65, "meters"),
  32301. name: "Dick-caged",
  32302. image: {
  32303. source: "./media/characters/kairne/dick-caged.svg"
  32304. }
  32305. },
  32306. dick: {
  32307. height: math.unit(0.79, "meters"),
  32308. name: "Dick",
  32309. image: {
  32310. source: "./media/characters/kairne/dick.svg"
  32311. }
  32312. },
  32313. genitals: {
  32314. height: math.unit(1.29, "meters"),
  32315. name: "Genitals",
  32316. image: {
  32317. source: "./media/characters/kairne/genitals.svg"
  32318. }
  32319. },
  32320. maw: {
  32321. height: math.unit(1.73, "meters"),
  32322. name: "Maw",
  32323. image: {
  32324. source: "./media/characters/kairne/maw.svg"
  32325. }
  32326. },
  32327. },
  32328. [
  32329. {
  32330. name: "Normal",
  32331. height: math.unit(15, "feet"),
  32332. default: true
  32333. },
  32334. ]
  32335. ))
  32336. characterMakers.push(() => makeCharacter(
  32337. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32338. {
  32339. front: {
  32340. height: math.unit(5 + 8/12, "feet"),
  32341. weight: math.unit(139, "lb"),
  32342. name: "Front",
  32343. image: {
  32344. source: "./media/characters/biscuit-jackal/front.svg",
  32345. extra: 2106/1961,
  32346. bottom: 58/2164
  32347. }
  32348. },
  32349. back: {
  32350. height: math.unit(5 + 8/12, "feet"),
  32351. weight: math.unit(139, "lb"),
  32352. name: "Back",
  32353. image: {
  32354. source: "./media/characters/biscuit-jackal/back.svg",
  32355. extra: 2132/1976,
  32356. bottom: 57/2189
  32357. }
  32358. },
  32359. werejackal: {
  32360. height: math.unit(6 + 3/12, "feet"),
  32361. weight: math.unit(188, "lb"),
  32362. name: "Werejackal",
  32363. image: {
  32364. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32365. extra: 2373/2178,
  32366. bottom: 53/2426
  32367. }
  32368. },
  32369. },
  32370. [
  32371. {
  32372. name: "Normal",
  32373. height: math.unit(5 + 8/12, "feet"),
  32374. default: true
  32375. },
  32376. ]
  32377. ))
  32378. characterMakers.push(() => makeCharacter(
  32379. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32380. {
  32381. front: {
  32382. height: math.unit(140, "cm"),
  32383. weight: math.unit(45, "kg"),
  32384. name: "Front",
  32385. image: {
  32386. source: "./media/characters/tayra-white/front.svg",
  32387. extra: 2229/2192,
  32388. bottom: 75/2304
  32389. }
  32390. },
  32391. },
  32392. [
  32393. {
  32394. name: "Normal",
  32395. height: math.unit(140, "cm"),
  32396. default: true
  32397. },
  32398. ]
  32399. ))
  32400. characterMakers.push(() => makeCharacter(
  32401. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32402. {
  32403. front: {
  32404. height: math.unit(4 + 5/12, "feet"),
  32405. name: "Front",
  32406. image: {
  32407. source: "./media/characters/scoop/front.svg",
  32408. extra: 1257/1136,
  32409. bottom: 69/1326
  32410. }
  32411. },
  32412. back: {
  32413. height: math.unit(4 + 5/12, "feet"),
  32414. name: "Back",
  32415. image: {
  32416. source: "./media/characters/scoop/back.svg",
  32417. extra: 1321/1152,
  32418. bottom: 32/1353
  32419. }
  32420. },
  32421. maw: {
  32422. height: math.unit(0.68, "feet"),
  32423. name: "Maw",
  32424. image: {
  32425. source: "./media/characters/scoop/maw.svg"
  32426. }
  32427. },
  32428. },
  32429. [
  32430. {
  32431. name: "Really Small",
  32432. height: math.unit(1, "mm")
  32433. },
  32434. {
  32435. name: "Micro",
  32436. height: math.unit(1, "inch")
  32437. },
  32438. {
  32439. name: "Normal",
  32440. height: math.unit(4 + 5/12, "feet"),
  32441. default: true
  32442. },
  32443. {
  32444. name: "Macro",
  32445. height: math.unit(200, "feet")
  32446. },
  32447. {
  32448. name: "Megamacro",
  32449. height: math.unit(3240, "feet")
  32450. },
  32451. {
  32452. name: "Teramacro",
  32453. height: math.unit(2500, "miles")
  32454. },
  32455. ]
  32456. ))
  32457. characterMakers.push(() => makeCharacter(
  32458. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32459. {
  32460. front: {
  32461. height: math.unit(15 + 7/12, "feet"),
  32462. name: "Front",
  32463. image: {
  32464. source: "./media/characters/saphinara/front.svg",
  32465. extra: 604/546,
  32466. bottom: 19/623
  32467. }
  32468. },
  32469. side: {
  32470. height: math.unit(15 + 7/12, "feet"),
  32471. name: "Side",
  32472. image: {
  32473. source: "./media/characters/saphinara/side.svg",
  32474. extra: 605/547,
  32475. bottom: 6/611
  32476. }
  32477. },
  32478. back: {
  32479. height: math.unit(15 + 7/12, "feet"),
  32480. name: "Back",
  32481. image: {
  32482. source: "./media/characters/saphinara/back.svg",
  32483. extra: 591/531,
  32484. bottom: 13/604
  32485. }
  32486. },
  32487. frontTail: {
  32488. height: math.unit(15 + 7/12, "feet"),
  32489. name: "Front (Full Tail)",
  32490. image: {
  32491. source: "./media/characters/saphinara/front-tail.svg",
  32492. extra: 748/547,
  32493. bottom: 66/814
  32494. }
  32495. },
  32496. },
  32497. [
  32498. {
  32499. name: "Normal",
  32500. height: math.unit(15 + 7/12, "feet"),
  32501. default: true
  32502. },
  32503. {
  32504. name: "Angry",
  32505. height: math.unit(30 + 6/12, "feet")
  32506. },
  32507. {
  32508. name: "Enraged",
  32509. height: math.unit(102 + 1/12, "feet")
  32510. },
  32511. ]
  32512. ))
  32513. characterMakers.push(() => makeCharacter(
  32514. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32515. {
  32516. front: {
  32517. height: math.unit(6 + 8/12, "feet"),
  32518. weight: math.unit(300, "lb"),
  32519. name: "Front",
  32520. image: {
  32521. source: "./media/characters/jrain/front.svg",
  32522. extra: 3039/2865,
  32523. bottom: 399/3438
  32524. }
  32525. },
  32526. back: {
  32527. height: math.unit(6 + 8/12, "feet"),
  32528. weight: math.unit(300, "lb"),
  32529. name: "Back",
  32530. image: {
  32531. source: "./media/characters/jrain/back.svg",
  32532. extra: 3089/2938,
  32533. bottom: 172/3261
  32534. }
  32535. },
  32536. head: {
  32537. height: math.unit(2.14, "feet"),
  32538. name: "Head",
  32539. image: {
  32540. source: "./media/characters/jrain/head.svg"
  32541. }
  32542. },
  32543. maw: {
  32544. height: math.unit(1.77, "feet"),
  32545. name: "Maw",
  32546. image: {
  32547. source: "./media/characters/jrain/maw.svg"
  32548. }
  32549. },
  32550. leftHand: {
  32551. height: math.unit(1.1, "feet"),
  32552. name: "Left Hand",
  32553. image: {
  32554. source: "./media/characters/jrain/left-hand.svg"
  32555. }
  32556. },
  32557. rightHand: {
  32558. height: math.unit(1.1, "feet"),
  32559. name: "Right Hand",
  32560. image: {
  32561. source: "./media/characters/jrain/right-hand.svg"
  32562. }
  32563. },
  32564. eye: {
  32565. height: math.unit(0.35, "feet"),
  32566. name: "Eye",
  32567. image: {
  32568. source: "./media/characters/jrain/eye.svg"
  32569. }
  32570. },
  32571. },
  32572. [
  32573. {
  32574. name: "Normal",
  32575. height: math.unit(6 + 8/12, "feet"),
  32576. default: true
  32577. },
  32578. {
  32579. name: "Casually Large",
  32580. height: math.unit(25, "feet")
  32581. },
  32582. {
  32583. name: "Giant",
  32584. height: math.unit(100, "feet")
  32585. },
  32586. {
  32587. name: "Kaiju",
  32588. height: math.unit(300, "feet")
  32589. },
  32590. ]
  32591. ))
  32592. characterMakers.push(() => makeCharacter(
  32593. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32594. {
  32595. dragon: {
  32596. height: math.unit(5, "meters"),
  32597. name: "Dragon",
  32598. image: {
  32599. source: "./media/characters/sabrina/dragon.svg",
  32600. extra: 3670 / 2365,
  32601. bottom: 333 / 4003
  32602. }
  32603. },
  32604. gryphon: {
  32605. height: math.unit(3, "meters"),
  32606. name: "Gryphon",
  32607. image: {
  32608. source: "./media/characters/sabrina/gryphon.svg",
  32609. extra: 1576 / 945,
  32610. bottom: 71 / 1647
  32611. }
  32612. },
  32613. snake: {
  32614. height: math.unit(12, "meters"),
  32615. name: "Snake",
  32616. image: {
  32617. source: "./media/characters/sabrina/snake.svg",
  32618. extra: 1758 / 1320,
  32619. bottom: 186 / 1944
  32620. }
  32621. },
  32622. collar: {
  32623. height: math.unit(1.86, "meters"),
  32624. name: "Collar",
  32625. image: {
  32626. source: "./media/characters/sabrina/collar.svg"
  32627. }
  32628. },
  32629. eye: {
  32630. height: math.unit(0.53, "meters"),
  32631. name: "Eye",
  32632. image: {
  32633. source: "./media/characters/sabrina/eye.svg"
  32634. }
  32635. },
  32636. foot: {
  32637. height: math.unit(1.86, "meters"),
  32638. name: "Foot",
  32639. image: {
  32640. source: "./media/characters/sabrina/foot.svg"
  32641. }
  32642. },
  32643. hand: {
  32644. height: math.unit(1.32, "meters"),
  32645. name: "Hand",
  32646. image: {
  32647. source: "./media/characters/sabrina/hand.svg"
  32648. }
  32649. },
  32650. head: {
  32651. height: math.unit(2.44, "meters"),
  32652. name: "Head",
  32653. image: {
  32654. source: "./media/characters/sabrina/head.svg"
  32655. }
  32656. },
  32657. headAngry: {
  32658. height: math.unit(2.44, "meters"),
  32659. name: "Head (Angry))",
  32660. image: {
  32661. source: "./media/characters/sabrina/head-angry.svg"
  32662. }
  32663. },
  32664. maw: {
  32665. height: math.unit(1.65, "meters"),
  32666. name: "Maw",
  32667. image: {
  32668. source: "./media/characters/sabrina/maw.svg"
  32669. }
  32670. },
  32671. spikes: {
  32672. height: math.unit(1.69, "meters"),
  32673. name: "Spikes",
  32674. image: {
  32675. source: "./media/characters/sabrina/spikes.svg"
  32676. }
  32677. },
  32678. stomach: {
  32679. height: math.unit(1.15, "meters"),
  32680. name: "Stomach",
  32681. image: {
  32682. source: "./media/characters/sabrina/stomach.svg"
  32683. }
  32684. },
  32685. tongue: {
  32686. height: math.unit(1.27, "meters"),
  32687. name: "Tongue",
  32688. image: {
  32689. source: "./media/characters/sabrina/tongue.svg"
  32690. }
  32691. },
  32692. wingDorsal: {
  32693. height: math.unit(4.85, "meters"),
  32694. name: "Wing (Dorsal)",
  32695. image: {
  32696. source: "./media/characters/sabrina/wing-dorsal.svg"
  32697. }
  32698. },
  32699. wingVentral: {
  32700. height: math.unit(4.85, "meters"),
  32701. name: "Wing (Ventral)",
  32702. image: {
  32703. source: "./media/characters/sabrina/wing-ventral.svg"
  32704. }
  32705. },
  32706. },
  32707. [
  32708. {
  32709. name: "Normal",
  32710. height: math.unit(5, "meters"),
  32711. default: true
  32712. },
  32713. ]
  32714. ))
  32715. characterMakers.push(() => makeCharacter(
  32716. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32717. {
  32718. frontMaid: {
  32719. height: math.unit(5 + 5/12, "feet"),
  32720. weight: math.unit(130, "lb"),
  32721. name: "Front (Maid)",
  32722. image: {
  32723. source: "./media/characters/midnight-tales/front-maid.svg",
  32724. extra: 489/454,
  32725. bottom: 61/550
  32726. }
  32727. },
  32728. frontFormal: {
  32729. height: math.unit(5 + 5/12, "feet"),
  32730. weight: math.unit(130, "lb"),
  32731. name: "Front (Formal)",
  32732. image: {
  32733. source: "./media/characters/midnight-tales/front-formal.svg",
  32734. extra: 489/454,
  32735. bottom: 61/550
  32736. }
  32737. },
  32738. back: {
  32739. height: math.unit(5 + 5/12, "feet"),
  32740. weight: math.unit(130, "lb"),
  32741. name: "Back",
  32742. image: {
  32743. source: "./media/characters/midnight-tales/back.svg",
  32744. extra: 498/456,
  32745. bottom: 33/531
  32746. }
  32747. },
  32748. frontBeast: {
  32749. height: math.unit(40, "feet"),
  32750. weight: math.unit(64000, "lb"),
  32751. name: "Front (Beast)",
  32752. image: {
  32753. source: "./media/characters/midnight-tales/front-beast.svg",
  32754. extra: 927/860,
  32755. bottom: 53/980
  32756. }
  32757. },
  32758. backBeast: {
  32759. height: math.unit(40, "feet"),
  32760. weight: math.unit(64000, "lb"),
  32761. name: "Back (Beast)",
  32762. image: {
  32763. source: "./media/characters/midnight-tales/back-beast.svg",
  32764. extra: 929/855,
  32765. bottom: 16/945
  32766. }
  32767. },
  32768. footBeast: {
  32769. height: math.unit(6.7, "feet"),
  32770. name: "Foot (Beast)",
  32771. image: {
  32772. source: "./media/characters/midnight-tales/foot-beast.svg"
  32773. }
  32774. },
  32775. headBeast: {
  32776. height: math.unit(8, "feet"),
  32777. name: "Head (Beast)",
  32778. image: {
  32779. source: "./media/characters/midnight-tales/head-beast.svg"
  32780. }
  32781. },
  32782. },
  32783. [
  32784. {
  32785. name: "Normal",
  32786. height: math.unit(5 + 5 / 12, "feet"),
  32787. default: true
  32788. },
  32789. {
  32790. name: "Macro",
  32791. height: math.unit(25, "feet")
  32792. },
  32793. ]
  32794. ))
  32795. characterMakers.push(() => makeCharacter(
  32796. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  32797. {
  32798. front: {
  32799. height: math.unit(5 + 10/12, "feet"),
  32800. name: "Front",
  32801. image: {
  32802. source: "./media/characters/argon/front.svg",
  32803. extra: 2009/1935,
  32804. bottom: 118/2127
  32805. }
  32806. },
  32807. back: {
  32808. height: math.unit(5 + 10/12, "feet"),
  32809. name: "Back",
  32810. image: {
  32811. source: "./media/characters/argon/back.svg",
  32812. extra: 2047/1992,
  32813. bottom: 20/2067
  32814. }
  32815. },
  32816. frontDressed: {
  32817. height: math.unit(5 + 10/12, "feet"),
  32818. name: "Front (Dressed)",
  32819. image: {
  32820. source: "./media/characters/argon/front-dressed.svg",
  32821. extra: 2009/1935,
  32822. bottom: 118/2127
  32823. }
  32824. },
  32825. },
  32826. [
  32827. {
  32828. name: "Normal",
  32829. height: math.unit(5 + 10/12, "feet"),
  32830. default: true
  32831. },
  32832. ]
  32833. ))
  32834. characterMakers.push(() => makeCharacter(
  32835. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  32836. {
  32837. front: {
  32838. height: math.unit(8 + 6/12, "feet"),
  32839. weight: math.unit(1150, "lb"),
  32840. name: "Front",
  32841. image: {
  32842. source: "./media/characters/kichi/front.svg",
  32843. extra: 1267/1164,
  32844. bottom: 61/1328
  32845. }
  32846. },
  32847. back: {
  32848. height: math.unit(8 + 6/12, "feet"),
  32849. weight: math.unit(1150, "lb"),
  32850. name: "Back",
  32851. image: {
  32852. source: "./media/characters/kichi/back.svg",
  32853. extra: 1273/1166,
  32854. bottom: 33/1306
  32855. }
  32856. },
  32857. },
  32858. [
  32859. {
  32860. name: "Normal",
  32861. height: math.unit(8 + 6/12, "feet"),
  32862. default: true
  32863. },
  32864. ]
  32865. ))
  32866. characterMakers.push(() => makeCharacter(
  32867. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  32868. {
  32869. front: {
  32870. height: math.unit(6, "feet"),
  32871. weight: math.unit(210, "lb"),
  32872. name: "Front",
  32873. image: {
  32874. source: "./media/characters/manetel-greyscale/front.svg",
  32875. extra: 350/312,
  32876. bottom: 8/358
  32877. }
  32878. },
  32879. },
  32880. [
  32881. {
  32882. name: "Micro",
  32883. height: math.unit(2, "inches")
  32884. },
  32885. {
  32886. name: "Normal",
  32887. height: math.unit(6, "feet"),
  32888. default: true
  32889. },
  32890. {
  32891. name: "Minimacro",
  32892. height: math.unit(17, "feet")
  32893. },
  32894. {
  32895. name: "Macro",
  32896. height: math.unit(117, "feet")
  32897. },
  32898. ]
  32899. ))
  32900. characterMakers.push(() => makeCharacter(
  32901. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  32902. {
  32903. side: {
  32904. height: math.unit(5 + 1/12, "feet"),
  32905. weight: math.unit(418, "lb"),
  32906. name: "Side",
  32907. image: {
  32908. source: "./media/characters/softpurr/side.svg",
  32909. extra: 1993/1945,
  32910. bottom: 134/2127
  32911. }
  32912. },
  32913. front: {
  32914. height: math.unit(5 + 1/12, "feet"),
  32915. weight: math.unit(418, "lb"),
  32916. name: "Front",
  32917. image: {
  32918. source: "./media/characters/softpurr/front.svg",
  32919. extra: 1950/1856,
  32920. bottom: 174/2124
  32921. }
  32922. },
  32923. paw: {
  32924. height: math.unit(1, "feet"),
  32925. name: "Paw",
  32926. image: {
  32927. source: "./media/characters/softpurr/paw.svg"
  32928. }
  32929. },
  32930. },
  32931. [
  32932. {
  32933. name: "Normal",
  32934. height: math.unit(5 + 1/12, "feet"),
  32935. default: true
  32936. },
  32937. ]
  32938. ))
  32939. characterMakers.push(() => makeCharacter(
  32940. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  32941. {
  32942. front: {
  32943. height: math.unit(260, "meters"),
  32944. name: "Front",
  32945. image: {
  32946. source: "./media/characters/anahita/front.svg",
  32947. extra: 665/635,
  32948. bottom: 89/754
  32949. }
  32950. },
  32951. },
  32952. [
  32953. {
  32954. name: "Macro",
  32955. height: math.unit(260, "meters"),
  32956. default: true
  32957. },
  32958. ]
  32959. ))
  32960. characterMakers.push(() => makeCharacter(
  32961. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  32962. {
  32963. front: {
  32964. height: math.unit(4 + 10/12, "feet"),
  32965. weight: math.unit(160, "lb"),
  32966. name: "Front",
  32967. image: {
  32968. source: "./media/characters/chip-mouse/front.svg",
  32969. extra: 3528/3408,
  32970. bottom: 0/3528
  32971. }
  32972. },
  32973. frontNsfw: {
  32974. height: math.unit(4 + 10/12, "feet"),
  32975. weight: math.unit(160, "lb"),
  32976. name: "Front (NSFW)",
  32977. image: {
  32978. source: "./media/characters/chip-mouse/front-nsfw.svg",
  32979. extra: 3528/3408,
  32980. bottom: 0/3528
  32981. }
  32982. },
  32983. },
  32984. [
  32985. {
  32986. name: "Normal",
  32987. height: math.unit(4 + 10/12, "feet"),
  32988. default: true
  32989. },
  32990. ]
  32991. ))
  32992. characterMakers.push(() => makeCharacter(
  32993. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  32994. {
  32995. side: {
  32996. height: math.unit(10, "feet"),
  32997. weight: math.unit(14000, "lb"),
  32998. name: "Side",
  32999. image: {
  33000. source: "./media/characters/kremm/side.svg",
  33001. extra: 1390/1053,
  33002. bottom: 90/1480
  33003. }
  33004. },
  33005. gut: {
  33006. height: math.unit(5.8, "feet"),
  33007. name: "Gut",
  33008. image: {
  33009. source: "./media/characters/kremm/gut.svg"
  33010. }
  33011. },
  33012. ass: {
  33013. height: math.unit(6.1, "feet"),
  33014. name: "Ass",
  33015. image: {
  33016. source: "./media/characters/kremm/ass.svg"
  33017. }
  33018. },
  33019. jaws: {
  33020. height: math.unit(2.2, "feet"),
  33021. name: "Jaws",
  33022. image: {
  33023. source: "./media/characters/kremm/jaws.svg"
  33024. }
  33025. },
  33026. dick: {
  33027. height: math.unit(4.26, "feet"),
  33028. name: "Dick",
  33029. image: {
  33030. source: "./media/characters/kremm/dick.svg"
  33031. }
  33032. },
  33033. },
  33034. [
  33035. {
  33036. name: "Normal",
  33037. height: math.unit(10, "feet"),
  33038. default: true
  33039. },
  33040. ]
  33041. ))
  33042. characterMakers.push(() => makeCharacter(
  33043. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33044. {
  33045. front: {
  33046. height: math.unit(30, "stories"),
  33047. name: "Front",
  33048. image: {
  33049. source: "./media/characters/kai/front.svg",
  33050. extra: 1892/1718,
  33051. bottom: 162/2054
  33052. }
  33053. },
  33054. },
  33055. [
  33056. {
  33057. name: "Macro",
  33058. height: math.unit(30, "stories"),
  33059. default: true
  33060. },
  33061. ]
  33062. ))
  33063. characterMakers.push(() => makeCharacter(
  33064. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33065. {
  33066. front: {
  33067. height: math.unit(6 + 4/12, "feet"),
  33068. weight: math.unit(145, "lb"),
  33069. name: "Front",
  33070. image: {
  33071. source: "./media/characters/sykes/front.svg",
  33072. extra: 1321 / 1187,
  33073. bottom: 66 / 1387
  33074. }
  33075. },
  33076. back: {
  33077. height: math.unit(6 + 4/12, "feet"),
  33078. weight: math.unit(145, "lb"),
  33079. name: "Back",
  33080. image: {
  33081. source: "./media/characters/sykes/back.svg",
  33082. extra: 1326/1181,
  33083. bottom: 31/1357
  33084. }
  33085. },
  33086. handBack: {
  33087. height: math.unit(0.9, "feet"),
  33088. name: "Hand (Back)",
  33089. image: {
  33090. source: "./media/characters/sykes/hand-back.svg"
  33091. }
  33092. },
  33093. handFront: {
  33094. height: math.unit(0.839, "feet"),
  33095. name: "Hand (Front)",
  33096. image: {
  33097. source: "./media/characters/sykes/hand-front.svg"
  33098. }
  33099. },
  33100. leftFoot: {
  33101. height: math.unit(1.2, "feet"),
  33102. name: "Foot (Left)",
  33103. image: {
  33104. source: "./media/characters/sykes/foot-left.svg"
  33105. }
  33106. },
  33107. rightFoot: {
  33108. height: math.unit(1.2, "feet"),
  33109. name: "Foot (Right)",
  33110. image: {
  33111. source: "./media/characters/sykes/foot-right.svg"
  33112. }
  33113. },
  33114. maw: {
  33115. height: math.unit(1.93, "feet"),
  33116. name: "Maw",
  33117. image: {
  33118. source: "./media/characters/sykes/maw.svg"
  33119. }
  33120. },
  33121. teeth: {
  33122. height: math.unit(0.51, "feet"),
  33123. name: "Teeth",
  33124. image: {
  33125. source: "./media/characters/sykes/teeth.svg"
  33126. }
  33127. },
  33128. tongue: {
  33129. height: math.unit(2.13, "feet"),
  33130. name: "Tongue",
  33131. image: {
  33132. source: "./media/characters/sykes/tongue.svg"
  33133. }
  33134. },
  33135. uvula: {
  33136. height: math.unit(0.16, "feet"),
  33137. name: "Uvula",
  33138. image: {
  33139. source: "./media/characters/sykes/uvula.svg"
  33140. }
  33141. },
  33142. collar: {
  33143. height: math.unit(0.287, "feet"),
  33144. name: "Collar",
  33145. image: {
  33146. source: "./media/characters/sykes/collar.svg"
  33147. }
  33148. },
  33149. },
  33150. [
  33151. {
  33152. name: "Shrunken",
  33153. height: math.unit(5, "inches")
  33154. },
  33155. {
  33156. name: "Normal",
  33157. height: math.unit(6 + 4 / 12, "feet"),
  33158. default: true
  33159. },
  33160. {
  33161. name: "Big",
  33162. height: math.unit(15, "feet")
  33163. },
  33164. ]
  33165. ))
  33166. characterMakers.push(() => makeCharacter(
  33167. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33168. {
  33169. front: {
  33170. height: math.unit(5 + 8/12, "feet"),
  33171. weight: math.unit(190, "lb"),
  33172. name: "Front",
  33173. image: {
  33174. source: "./media/characters/oven-otter/front.svg",
  33175. extra: 1809/1740,
  33176. bottom: 181/1990
  33177. }
  33178. },
  33179. back: {
  33180. height: math.unit(5 + 8/12, "feet"),
  33181. weight: math.unit(190, "lb"),
  33182. name: "Back",
  33183. image: {
  33184. source: "./media/characters/oven-otter/back.svg",
  33185. extra: 1709/1635,
  33186. bottom: 118/1827
  33187. }
  33188. },
  33189. hand: {
  33190. height: math.unit(1.07, "feet"),
  33191. name: "Hand",
  33192. image: {
  33193. source: "./media/characters/oven-otter/hand.svg"
  33194. }
  33195. },
  33196. beans: {
  33197. height: math.unit(1.74, "feet"),
  33198. name: "Beans",
  33199. image: {
  33200. source: "./media/characters/oven-otter/beans.svg"
  33201. }
  33202. },
  33203. },
  33204. [
  33205. {
  33206. name: "Micro",
  33207. height: math.unit(0.5, "inches")
  33208. },
  33209. {
  33210. name: "Normal",
  33211. height: math.unit(5 + 8/12, "feet"),
  33212. default: true
  33213. },
  33214. {
  33215. name: "Macro",
  33216. height: math.unit(250, "feet")
  33217. },
  33218. {
  33219. name: "Really High",
  33220. height: math.unit(420, "feet")
  33221. },
  33222. ]
  33223. ))
  33224. characterMakers.push(() => makeCharacter(
  33225. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33226. {
  33227. front: {
  33228. height: math.unit(5, "meters"),
  33229. weight: math.unit(292000000000000, "kg"),
  33230. name: "Front",
  33231. image: {
  33232. source: "./media/characters/devourer/front.svg",
  33233. extra: 1800/1733,
  33234. bottom: 211/2011
  33235. }
  33236. },
  33237. maw: {
  33238. height: math.unit(1.1, "meter"),
  33239. name: "Maw",
  33240. image: {
  33241. source: "./media/characters/devourer/maw.svg"
  33242. }
  33243. },
  33244. },
  33245. [
  33246. {
  33247. name: "Small",
  33248. height: math.unit(3, "meters")
  33249. },
  33250. {
  33251. name: "Large",
  33252. height: math.unit(5, "meters"),
  33253. default: true
  33254. },
  33255. ]
  33256. ))
  33257. characterMakers.push(() => makeCharacter(
  33258. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33259. {
  33260. front: {
  33261. height: math.unit(6, "feet"),
  33262. weight: math.unit(400, "lb"),
  33263. name: "Front",
  33264. image: {
  33265. source: "./media/characters/ellarby/front.svg",
  33266. extra: 1909/1763,
  33267. bottom: 80/1989
  33268. }
  33269. },
  33270. back: {
  33271. height: math.unit(6, "feet"),
  33272. weight: math.unit(400, "lb"),
  33273. name: "Back",
  33274. image: {
  33275. source: "./media/characters/ellarby/back.svg",
  33276. extra: 1914/1784,
  33277. bottom: 172/2086
  33278. }
  33279. },
  33280. },
  33281. [
  33282. {
  33283. name: "Mischief",
  33284. height: math.unit(18, "inches")
  33285. },
  33286. {
  33287. name: "Trouble",
  33288. height: math.unit(12, "feet")
  33289. },
  33290. {
  33291. name: "Havoc",
  33292. height: math.unit(200, "feet"),
  33293. default: true
  33294. },
  33295. {
  33296. name: "Pandemonium",
  33297. height: math.unit(1, "mile")
  33298. },
  33299. {
  33300. name: "Catastrophe",
  33301. height: math.unit(100, "miles")
  33302. },
  33303. ]
  33304. ))
  33305. characterMakers.push(() => makeCharacter(
  33306. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33307. {
  33308. front: {
  33309. height: math.unit(4.7, "meters"),
  33310. weight: math.unit(6500, "kg"),
  33311. name: "Front",
  33312. image: {
  33313. source: "./media/characters/vex/front.svg",
  33314. extra: 1288/1140,
  33315. bottom: 100/1388
  33316. }
  33317. },
  33318. },
  33319. [
  33320. {
  33321. name: "Normal",
  33322. height: math.unit(4.7, "meters"),
  33323. default: true
  33324. },
  33325. ]
  33326. ))
  33327. characterMakers.push(() => makeCharacter(
  33328. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33329. {
  33330. normal: {
  33331. height: math.unit(6, "feet"),
  33332. weight: math.unit(350, "lb"),
  33333. name: "Normal",
  33334. image: {
  33335. source: "./media/characters/teshy/normal.svg",
  33336. extra: 1795/1735,
  33337. bottom: 16/1811
  33338. }
  33339. },
  33340. monsterFront: {
  33341. height: math.unit(12, "feet"),
  33342. weight: math.unit(4700, "lb"),
  33343. name: "Monster (Front)",
  33344. image: {
  33345. source: "./media/characters/teshy/monster-front.svg",
  33346. extra: 2042/2034,
  33347. bottom: 128/2170
  33348. }
  33349. },
  33350. monsterSide: {
  33351. height: math.unit(12, "feet"),
  33352. weight: math.unit(4700, "lb"),
  33353. name: "Monster (Side)",
  33354. image: {
  33355. source: "./media/characters/teshy/monster-side.svg",
  33356. extra: 2067/2056,
  33357. bottom: 70/2137
  33358. }
  33359. },
  33360. monsterBack: {
  33361. height: math.unit(12, "feet"),
  33362. weight: math.unit(4700, "lb"),
  33363. name: "Monster (Back)",
  33364. image: {
  33365. source: "./media/characters/teshy/monster-back.svg",
  33366. extra: 1921/1914,
  33367. bottom: 171/2092
  33368. }
  33369. },
  33370. },
  33371. [
  33372. {
  33373. name: "Normal",
  33374. height: math.unit(6, "feet"),
  33375. default: true
  33376. },
  33377. ]
  33378. ))
  33379. characterMakers.push(() => makeCharacter(
  33380. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33381. {
  33382. front: {
  33383. height: math.unit(6, "feet"),
  33384. name: "Front",
  33385. image: {
  33386. source: "./media/characters/ramey/front.svg",
  33387. extra: 790/787,
  33388. bottom: 27/817
  33389. }
  33390. },
  33391. },
  33392. [
  33393. {
  33394. name: "Normal",
  33395. height: math.unit(6, "feet"),
  33396. default: true
  33397. },
  33398. ]
  33399. ))
  33400. characterMakers.push(() => makeCharacter(
  33401. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33402. {
  33403. front: {
  33404. height: math.unit(5 + 5/12, "feet"),
  33405. weight: math.unit(120, "lb"),
  33406. name: "Front",
  33407. image: {
  33408. source: "./media/characters/phirae/front.svg",
  33409. extra: 2491/2436,
  33410. bottom: 38/2529
  33411. }
  33412. },
  33413. },
  33414. [
  33415. {
  33416. name: "Normal",
  33417. height: math.unit(5 + 5/12, "feet"),
  33418. default: true
  33419. },
  33420. ]
  33421. ))
  33422. characterMakers.push(() => makeCharacter(
  33423. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33424. {
  33425. front: {
  33426. height: math.unit(6, "feet"),
  33427. weight: math.unit(150, "lb"),
  33428. name: "Front",
  33429. image: {
  33430. source: "./media/characters/stagglas/front.svg",
  33431. extra: 962/882,
  33432. bottom: 53/1015
  33433. }
  33434. },
  33435. },
  33436. [
  33437. {
  33438. name: "Normal",
  33439. height: math.unit(5 + 3/12, "feet"),
  33440. default: true
  33441. },
  33442. ]
  33443. ))
  33444. characterMakers.push(() => makeCharacter(
  33445. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33446. {
  33447. front: {
  33448. height: math.unit(5 + 4/12, "feet"),
  33449. weight: math.unit(145, "lb"),
  33450. name: "Front",
  33451. image: {
  33452. source: "./media/characters/starra/front.svg",
  33453. extra: 1790/1691,
  33454. bottom: 91/1881
  33455. }
  33456. },
  33457. },
  33458. [
  33459. {
  33460. name: "Normal",
  33461. height: math.unit(5 + 4/12, "feet"),
  33462. default: true
  33463. },
  33464. ]
  33465. ))
  33466. characterMakers.push(() => makeCharacter(
  33467. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33468. {
  33469. front: {
  33470. height: math.unit(2.2, "meters"),
  33471. name: "Front",
  33472. image: {
  33473. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33474. extra: 1194/1005,
  33475. bottom: 25/1219
  33476. }
  33477. },
  33478. },
  33479. [
  33480. {
  33481. name: "Normal",
  33482. height: math.unit(2.2, "meters"),
  33483. default: true
  33484. },
  33485. ]
  33486. ))
  33487. characterMakers.push(() => makeCharacter(
  33488. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33489. {
  33490. side: {
  33491. height: math.unit(8 + 2/12, "feet"),
  33492. weight: math.unit(1240, "lb"),
  33493. name: "Side",
  33494. image: {
  33495. source: "./media/characters/mika-valentine/side.svg",
  33496. extra: 2670/2501,
  33497. bottom: 250/2920
  33498. }
  33499. },
  33500. },
  33501. [
  33502. {
  33503. name: "Normal",
  33504. height: math.unit(8 + 2/12, "feet"),
  33505. default: true
  33506. },
  33507. ]
  33508. ))
  33509. characterMakers.push(() => makeCharacter(
  33510. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33511. {
  33512. front: {
  33513. height: math.unit(7 + 2/12, "feet"),
  33514. name: "Front",
  33515. image: {
  33516. source: "./media/characters/xoltol/front.svg",
  33517. extra: 2212/2124,
  33518. bottom: 84/2296
  33519. }
  33520. },
  33521. side: {
  33522. height: math.unit(7 + 2/12, "feet"),
  33523. name: "Side",
  33524. image: {
  33525. source: "./media/characters/xoltol/side.svg",
  33526. extra: 2273/2197,
  33527. bottom: 26/2299
  33528. }
  33529. },
  33530. hand: {
  33531. height: math.unit(2.5, "feet"),
  33532. name: "Hand",
  33533. image: {
  33534. source: "./media/characters/xoltol/hand.svg"
  33535. }
  33536. },
  33537. },
  33538. [
  33539. {
  33540. name: "Small-ish",
  33541. height: math.unit(5 + 11/12, "feet")
  33542. },
  33543. {
  33544. name: "Normal",
  33545. height: math.unit(7 + 2/12, "feet")
  33546. },
  33547. {
  33548. name: "\"Macro\"",
  33549. height: math.unit(14 + 9/12, "feet"),
  33550. default: true
  33551. },
  33552. {
  33553. name: "Alternate Height",
  33554. height: math.unit(20, "feet")
  33555. },
  33556. {
  33557. name: "Actually Macro",
  33558. height: math.unit(100, "feet")
  33559. },
  33560. ]
  33561. ))
  33562. characterMakers.push(() => makeCharacter(
  33563. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33564. {
  33565. front: {
  33566. height: math.unit(5 + 2/12, "feet"),
  33567. name: "Front",
  33568. image: {
  33569. source: "./media/characters/kotetsu-redwood/front.svg",
  33570. extra: 1053/942,
  33571. bottom: 60/1113
  33572. }
  33573. },
  33574. },
  33575. [
  33576. {
  33577. name: "Normal",
  33578. height: math.unit(5 + 2/12, "feet"),
  33579. default: true
  33580. },
  33581. ]
  33582. ))
  33583. characterMakers.push(() => makeCharacter(
  33584. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33585. {
  33586. front: {
  33587. height: math.unit(2.4, "meters"),
  33588. weight: math.unit(125, "kg"),
  33589. name: "Front",
  33590. image: {
  33591. source: "./media/characters/lilith/front.svg",
  33592. extra: 1590/1513,
  33593. bottom: 203/1793
  33594. }
  33595. },
  33596. },
  33597. [
  33598. {
  33599. name: "Humanoid",
  33600. height: math.unit(2.4, "meters")
  33601. },
  33602. {
  33603. name: "Normal",
  33604. height: math.unit(6, "meters"),
  33605. default: true
  33606. },
  33607. {
  33608. name: "Largest",
  33609. height: math.unit(55, "meters")
  33610. },
  33611. ]
  33612. ))
  33613. characterMakers.push(() => makeCharacter(
  33614. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33615. {
  33616. front: {
  33617. height: math.unit(8 + 4/12, "feet"),
  33618. weight: math.unit(535, "lb"),
  33619. name: "Front",
  33620. image: {
  33621. source: "./media/characters/beh'kah-bolger/front.svg",
  33622. extra: 1660/1603,
  33623. bottom: 37/1697
  33624. }
  33625. },
  33626. },
  33627. [
  33628. {
  33629. name: "Normal",
  33630. height: math.unit(8 + 4/12, "feet"),
  33631. default: true
  33632. },
  33633. {
  33634. name: "Kaiju",
  33635. height: math.unit(250, "feet")
  33636. },
  33637. {
  33638. name: "Still Growing",
  33639. height: math.unit(10, "miles")
  33640. },
  33641. {
  33642. name: "Continental",
  33643. height: math.unit(5000, "miles")
  33644. },
  33645. {
  33646. name: "Final Form",
  33647. height: math.unit(2500000, "miles")
  33648. },
  33649. ]
  33650. ))
  33651. characterMakers.push(() => makeCharacter(
  33652. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33653. {
  33654. front: {
  33655. height: math.unit(7 + 2/12, "feet"),
  33656. weight: math.unit(230, "kg"),
  33657. name: "Front",
  33658. image: {
  33659. source: "./media/characters/tatyana-milewska/front.svg",
  33660. extra: 1199/1150,
  33661. bottom: 86/1285
  33662. }
  33663. },
  33664. },
  33665. [
  33666. {
  33667. name: "Normal",
  33668. height: math.unit(7 + 2/12, "feet"),
  33669. default: true
  33670. },
  33671. {
  33672. name: "Big",
  33673. height: math.unit(12, "feet")
  33674. },
  33675. {
  33676. name: "Minimacro",
  33677. height: math.unit(20, "feet")
  33678. },
  33679. {
  33680. name: "Macro",
  33681. height: math.unit(120, "feet")
  33682. },
  33683. ]
  33684. ))
  33685. characterMakers.push(() => makeCharacter(
  33686. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  33687. {
  33688. front: {
  33689. height: math.unit(7 + 8/12, "feet"),
  33690. weight: math.unit(152, "kg"),
  33691. name: "Front",
  33692. image: {
  33693. source: "./media/characters/helen-arri/front.svg",
  33694. extra: 440/423,
  33695. bottom: 14/454
  33696. }
  33697. },
  33698. back: {
  33699. height: math.unit(7 + 8/12, "feet"),
  33700. weight: math.unit(152, "kg"),
  33701. name: "Back",
  33702. image: {
  33703. source: "./media/characters/helen-arri/back.svg",
  33704. extra: 443/426,
  33705. bottom: 8/451
  33706. }
  33707. },
  33708. },
  33709. [
  33710. {
  33711. name: "Normal",
  33712. height: math.unit(7 + 8/12, "feet"),
  33713. default: true
  33714. },
  33715. {
  33716. name: "Big",
  33717. height: math.unit(14, "feet")
  33718. },
  33719. {
  33720. name: "Minimacro",
  33721. height: math.unit(24, "feet")
  33722. },
  33723. {
  33724. name: "Macro",
  33725. height: math.unit(140, "feet")
  33726. },
  33727. ]
  33728. ))
  33729. characterMakers.push(() => makeCharacter(
  33730. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  33731. {
  33732. front: {
  33733. height: math.unit(6, "meters"),
  33734. name: "Front",
  33735. image: {
  33736. source: "./media/characters/ehanu-rehu/front.svg",
  33737. extra: 1800/1800,
  33738. bottom: 59/1859
  33739. }
  33740. },
  33741. },
  33742. [
  33743. {
  33744. name: "Normal",
  33745. height: math.unit(6, "meters"),
  33746. default: true
  33747. },
  33748. ]
  33749. ))
  33750. characterMakers.push(() => makeCharacter(
  33751. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  33752. {
  33753. front: {
  33754. height: math.unit(7 + 3/12, "feet"),
  33755. name: "Front",
  33756. image: {
  33757. source: "./media/characters/renholder/front.svg",
  33758. extra: 3096/2960,
  33759. bottom: 250/3346
  33760. }
  33761. },
  33762. },
  33763. [
  33764. {
  33765. name: "Normal Bat",
  33766. height: math.unit(7 + 3/12, "feet"),
  33767. default: true
  33768. },
  33769. {
  33770. name: "Slightly Tall Bat",
  33771. height: math.unit(100, "feet")
  33772. },
  33773. {
  33774. name: "Big Bat",
  33775. height: math.unit(1000, "feet")
  33776. },
  33777. {
  33778. name: "City-Sized Bat",
  33779. height: math.unit(200000, "feet")
  33780. },
  33781. {
  33782. name: "Bigger Bat",
  33783. height: math.unit(10000, "miles")
  33784. },
  33785. {
  33786. name: "Solar Sized Bat",
  33787. height: math.unit(100, "AU")
  33788. },
  33789. {
  33790. name: "Galactic Bat",
  33791. height: math.unit(200000, "lightyears")
  33792. },
  33793. {
  33794. name: "Universally Known Bat",
  33795. height: math.unit(1, "universe")
  33796. },
  33797. ]
  33798. ))
  33799. characterMakers.push(() => makeCharacter(
  33800. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  33801. {
  33802. front: {
  33803. height: math.unit(6 + 11/12, "feet"),
  33804. weight: math.unit(250, "lb"),
  33805. name: "Front",
  33806. image: {
  33807. source: "./media/characters/cookiecat/front.svg",
  33808. extra: 893/827,
  33809. bottom: 14/907
  33810. }
  33811. },
  33812. },
  33813. [
  33814. {
  33815. name: "Micro",
  33816. height: math.unit(3, "inches")
  33817. },
  33818. {
  33819. name: "Normal",
  33820. height: math.unit(6 + 11/12, "feet"),
  33821. default: true
  33822. },
  33823. {
  33824. name: "Macro",
  33825. height: math.unit(100, "feet")
  33826. },
  33827. {
  33828. name: "Macro+",
  33829. height: math.unit(404, "feet")
  33830. },
  33831. {
  33832. name: "Megamacro",
  33833. height: math.unit(165, "miles")
  33834. },
  33835. {
  33836. name: "Planetary",
  33837. height: math.unit(4600, "miles")
  33838. },
  33839. ]
  33840. ))
  33841. characterMakers.push(() => makeCharacter(
  33842. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  33843. {
  33844. front: {
  33845. height: math.unit(10 + 3/12, "feet"),
  33846. weight: math.unit(1500, "lb"),
  33847. name: "Front",
  33848. image: {
  33849. source: "./media/characters/tux-kusanagi/front.svg",
  33850. extra: 944/840,
  33851. bottom: 39/983
  33852. }
  33853. },
  33854. back: {
  33855. height: math.unit(10 + 3/12, "feet"),
  33856. weight: math.unit(1500, "lb"),
  33857. name: "Back",
  33858. image: {
  33859. source: "./media/characters/tux-kusanagi/back.svg",
  33860. extra: 941/842,
  33861. bottom: 28/969
  33862. }
  33863. },
  33864. rump: {
  33865. height: math.unit(5.25, "feet"),
  33866. name: "Rump",
  33867. image: {
  33868. source: "./media/characters/tux-kusanagi/rump.svg"
  33869. }
  33870. },
  33871. beak: {
  33872. height: math.unit(1.54, "feet"),
  33873. name: "Beak",
  33874. image: {
  33875. source: "./media/characters/tux-kusanagi/beak.svg"
  33876. }
  33877. },
  33878. },
  33879. [
  33880. {
  33881. name: "Normal",
  33882. height: math.unit(10 + 3/12, "feet"),
  33883. default: true
  33884. },
  33885. ]
  33886. ))
  33887. characterMakers.push(() => makeCharacter(
  33888. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  33889. {
  33890. front: {
  33891. height: math.unit(58, "feet"),
  33892. weight: math.unit(200, "tons"),
  33893. name: "Front",
  33894. image: {
  33895. source: "./media/characters/uzarmazari/front.svg",
  33896. extra: 1575/1455,
  33897. bottom: 152/1727
  33898. }
  33899. },
  33900. back: {
  33901. height: math.unit(58, "feet"),
  33902. weight: math.unit(200, "tons"),
  33903. name: "Back",
  33904. image: {
  33905. source: "./media/characters/uzarmazari/back.svg",
  33906. extra: 1585/1510,
  33907. bottom: 157/1742
  33908. }
  33909. },
  33910. head: {
  33911. height: math.unit(26, "feet"),
  33912. name: "Head",
  33913. image: {
  33914. source: "./media/characters/uzarmazari/head.svg"
  33915. }
  33916. },
  33917. },
  33918. [
  33919. {
  33920. name: "Normal",
  33921. height: math.unit(58, "feet"),
  33922. default: true
  33923. },
  33924. ]
  33925. ))
  33926. characterMakers.push(() => makeCharacter(
  33927. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  33928. {
  33929. side: {
  33930. height: math.unit(15, "feet"),
  33931. name: "Side",
  33932. image: {
  33933. source: "./media/characters/akitu/side.svg",
  33934. extra: 1421/1321,
  33935. bottom: 157/1578
  33936. }
  33937. },
  33938. front: {
  33939. height: math.unit(15, "feet"),
  33940. name: "Front",
  33941. image: {
  33942. source: "./media/characters/akitu/front.svg",
  33943. extra: 1435/1326,
  33944. bottom: 232/1667
  33945. }
  33946. },
  33947. },
  33948. [
  33949. {
  33950. name: "Normal",
  33951. height: math.unit(15, "feet"),
  33952. default: true
  33953. },
  33954. ]
  33955. ))
  33956. characterMakers.push(() => makeCharacter(
  33957. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  33958. {
  33959. front: {
  33960. height: math.unit(10 + 8/12, "feet"),
  33961. name: "Front",
  33962. image: {
  33963. source: "./media/characters/azalie-croixland/front.svg",
  33964. extra: 1972/1856,
  33965. bottom: 31/2003
  33966. }
  33967. },
  33968. },
  33969. [
  33970. {
  33971. name: "Original Height",
  33972. height: math.unit(5 + 4/12, "feet")
  33973. },
  33974. {
  33975. name: "Normal Height",
  33976. height: math.unit(10 + 8/12, "feet"),
  33977. default: true
  33978. },
  33979. ]
  33980. ))
  33981. characterMakers.push(() => makeCharacter(
  33982. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  33983. {
  33984. side: {
  33985. height: math.unit(7 + 1/12, "feet"),
  33986. weight: math.unit(245, "lb"),
  33987. name: "Side",
  33988. image: {
  33989. source: "./media/characters/kavus-kazian/side.svg",
  33990. extra: 349/342,
  33991. bottom: 15/364
  33992. }
  33993. },
  33994. },
  33995. [
  33996. {
  33997. name: "Normal",
  33998. height: math.unit(7 + 1/12, "feet"),
  33999. default: true
  34000. },
  34001. ]
  34002. ))
  34003. characterMakers.push(() => makeCharacter(
  34004. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34005. {
  34006. normal: {
  34007. height: math.unit(5 + 11/12, "feet"),
  34008. name: "Normal",
  34009. image: {
  34010. source: "./media/characters/moonlight-rose/normal.svg",
  34011. extra: 1979/1835,
  34012. bottom: 14/1993
  34013. }
  34014. },
  34015. demon: {
  34016. height: math.unit(5, "km"),
  34017. name: "Demon",
  34018. image: {
  34019. source: "./media/characters/moonlight-rose/demon.svg",
  34020. extra: 986/916,
  34021. bottom: 28/1014
  34022. }
  34023. },
  34024. },
  34025. [
  34026. {
  34027. name: "\"Natural\" height",
  34028. height: math.unit(5 + 11/12, "feet")
  34029. },
  34030. {
  34031. name: "Comfortable Size",
  34032. height: math.unit(40, "meters")
  34033. },
  34034. {
  34035. name: "Common Size",
  34036. height: math.unit(50, "km"),
  34037. default: true
  34038. },
  34039. {
  34040. name: "Demonic",
  34041. height: math.unit(1.24415e+21, "meters")
  34042. },
  34043. ]
  34044. ))
  34045. characterMakers.push(() => makeCharacter(
  34046. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34047. {
  34048. front: {
  34049. height: math.unit(16, "feet"),
  34050. weight: math.unit(610, "kg"),
  34051. name: "Front",
  34052. image: {
  34053. source: "./media/characters/huckle/front.svg",
  34054. extra: 1731/1625,
  34055. bottom: 33/1764
  34056. }
  34057. },
  34058. back: {
  34059. height: math.unit(16, "feet"),
  34060. weight: math.unit(610, "kg"),
  34061. name: "Back",
  34062. image: {
  34063. source: "./media/characters/huckle/back.svg",
  34064. extra: 1738/1651,
  34065. bottom: 37/1775
  34066. }
  34067. },
  34068. laughing: {
  34069. height: math.unit(3.75, "feet"),
  34070. name: "Laughing",
  34071. image: {
  34072. source: "./media/characters/huckle/laughing.svg"
  34073. }
  34074. },
  34075. angry: {
  34076. height: math.unit(4.15, "feet"),
  34077. name: "Angry",
  34078. image: {
  34079. source: "./media/characters/huckle/angry.svg"
  34080. }
  34081. },
  34082. },
  34083. [
  34084. {
  34085. name: "Normal",
  34086. height: math.unit(16, "feet"),
  34087. default: true
  34088. },
  34089. {
  34090. name: "Mini Macro",
  34091. height: math.unit(463, "feet")
  34092. },
  34093. {
  34094. name: "Macro",
  34095. height: math.unit(1680, "meters")
  34096. },
  34097. {
  34098. name: "Mega Macro",
  34099. height: math.unit(175, "km")
  34100. },
  34101. {
  34102. name: "Terra Macro",
  34103. height: math.unit(32, "gigameters")
  34104. },
  34105. {
  34106. name: "Multiverse+",
  34107. height: math.unit(2.56e23, "yottameters")
  34108. },
  34109. ]
  34110. ))
  34111. characterMakers.push(() => makeCharacter(
  34112. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34113. {
  34114. front: {
  34115. height: math.unit(6 + 9/12, "feet"),
  34116. weight: math.unit(280, "lb"),
  34117. name: "Front",
  34118. image: {
  34119. source: "./media/characters/candy/front.svg",
  34120. extra: 234/217,
  34121. bottom: 11/245
  34122. }
  34123. },
  34124. },
  34125. [
  34126. {
  34127. name: "Really Small",
  34128. height: math.unit(0.1, "nm")
  34129. },
  34130. {
  34131. name: "Micro",
  34132. height: math.unit(2, "inches")
  34133. },
  34134. {
  34135. name: "Normal",
  34136. height: math.unit(6 + 9/12, "feet"),
  34137. default: true
  34138. },
  34139. {
  34140. name: "Small Macro",
  34141. height: math.unit(69, "feet")
  34142. },
  34143. {
  34144. name: "Macro",
  34145. height: math.unit(160, "feet")
  34146. },
  34147. {
  34148. name: "Megamacro",
  34149. height: math.unit(22000, "miles")
  34150. },
  34151. {
  34152. name: "Gigamacro",
  34153. height: math.unit(50000, "miles")
  34154. },
  34155. ]
  34156. ))
  34157. characterMakers.push(() => makeCharacter(
  34158. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34159. {
  34160. front: {
  34161. height: math.unit(4, "feet"),
  34162. weight: math.unit(90, "lb"),
  34163. name: "Front",
  34164. image: {
  34165. source: "./media/characters/joey-mcdonald/front.svg",
  34166. extra: 1059/852,
  34167. bottom: 33/1092
  34168. }
  34169. },
  34170. back: {
  34171. height: math.unit(4, "feet"),
  34172. weight: math.unit(90, "lb"),
  34173. name: "Back",
  34174. image: {
  34175. source: "./media/characters/joey-mcdonald/back.svg",
  34176. extra: 1077/879,
  34177. bottom: 5/1082
  34178. }
  34179. },
  34180. },
  34181. [
  34182. {
  34183. name: "Normal",
  34184. height: math.unit(4, "feet"),
  34185. default: true
  34186. },
  34187. ]
  34188. ))
  34189. characterMakers.push(() => makeCharacter(
  34190. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34191. {
  34192. front: {
  34193. height: math.unit(12 + 6/12, "feet"),
  34194. name: "Front",
  34195. image: {
  34196. source: "./media/characters/kass-lockheed/front.svg",
  34197. extra: 354/343,
  34198. bottom: 9/363
  34199. }
  34200. },
  34201. back: {
  34202. height: math.unit(12 + 6/12, "feet"),
  34203. name: "Back",
  34204. image: {
  34205. source: "./media/characters/kass-lockheed/back.svg",
  34206. extra: 364/352,
  34207. bottom: 3/367
  34208. }
  34209. },
  34210. dick: {
  34211. height: math.unit(3.12, "feet"),
  34212. name: "Dick",
  34213. image: {
  34214. source: "./media/characters/kass-lockheed/dick.svg"
  34215. }
  34216. },
  34217. head: {
  34218. height: math.unit(2.6, "feet"),
  34219. name: "Head",
  34220. image: {
  34221. source: "./media/characters/kass-lockheed/head.svg"
  34222. }
  34223. },
  34224. bleh: {
  34225. height: math.unit(2.85, "feet"),
  34226. name: "Bleh",
  34227. image: {
  34228. source: "./media/characters/kass-lockheed/bleh.svg"
  34229. }
  34230. },
  34231. smug: {
  34232. height: math.unit(2.85, "feet"),
  34233. name: "Smug",
  34234. image: {
  34235. source: "./media/characters/kass-lockheed/smug.svg"
  34236. }
  34237. },
  34238. },
  34239. [
  34240. {
  34241. name: "Normal",
  34242. height: math.unit(12 + 6/12, "feet"),
  34243. default: true
  34244. },
  34245. ]
  34246. ))
  34247. characterMakers.push(() => makeCharacter(
  34248. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34249. {
  34250. front: {
  34251. height: math.unit(6 + 2/12, "feet"),
  34252. name: "Front",
  34253. image: {
  34254. source: "./media/characters/taylor/front.svg",
  34255. extra: 639/495,
  34256. bottom: 12/651
  34257. }
  34258. },
  34259. },
  34260. [
  34261. {
  34262. name: "Normal",
  34263. height: math.unit(6 + 2/12, "feet"),
  34264. default: true
  34265. },
  34266. {
  34267. name: "Big",
  34268. height: math.unit(15, "feet")
  34269. },
  34270. {
  34271. name: "Lorg",
  34272. height: math.unit(80, "feet")
  34273. },
  34274. {
  34275. name: "Too Lorg",
  34276. height: math.unit(120, "feet")
  34277. },
  34278. ]
  34279. ))
  34280. characterMakers.push(() => makeCharacter(
  34281. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34282. {
  34283. front: {
  34284. height: math.unit(15, "feet"),
  34285. name: "Front",
  34286. image: {
  34287. source: "./media/characters/kaizer/front.svg",
  34288. extra: 1612/1436,
  34289. bottom: 43/1655
  34290. }
  34291. },
  34292. },
  34293. [
  34294. {
  34295. name: "Normal",
  34296. height: math.unit(15, "feet"),
  34297. default: true
  34298. },
  34299. ]
  34300. ))
  34301. characterMakers.push(() => makeCharacter(
  34302. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34303. {
  34304. front: {
  34305. height: math.unit(2, "feet"),
  34306. weight: math.unit(30, "lb"),
  34307. name: "Front",
  34308. image: {
  34309. source: "./media/characters/sandy/front.svg",
  34310. extra: 1439/1307,
  34311. bottom: 194/1633
  34312. }
  34313. },
  34314. },
  34315. [
  34316. {
  34317. name: "Normal",
  34318. height: math.unit(2, "feet"),
  34319. default: true
  34320. },
  34321. ]
  34322. ))
  34323. characterMakers.push(() => makeCharacter(
  34324. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34325. {
  34326. front: {
  34327. height: math.unit(3, "feet"),
  34328. name: "Front",
  34329. image: {
  34330. source: "./media/characters/mellvi/front.svg",
  34331. extra: 1831/1630,
  34332. bottom: 58/1889
  34333. }
  34334. },
  34335. },
  34336. [
  34337. {
  34338. name: "Normal",
  34339. height: math.unit(3, "feet"),
  34340. default: true
  34341. },
  34342. ]
  34343. ))
  34344. characterMakers.push(() => makeCharacter(
  34345. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34346. {
  34347. front: {
  34348. height: math.unit(5 + 11/12, "feet"),
  34349. weight: math.unit(200, "lb"),
  34350. name: "Front",
  34351. image: {
  34352. source: "./media/characters/shirou/front.svg",
  34353. extra: 2491/2383,
  34354. bottom: 189/2680
  34355. }
  34356. },
  34357. back: {
  34358. height: math.unit(5 + 11/12, "feet"),
  34359. weight: math.unit(200, "lb"),
  34360. name: "Back",
  34361. image: {
  34362. source: "./media/characters/shirou/back.svg",
  34363. extra: 2554/2450,
  34364. bottom: 76/2630
  34365. }
  34366. },
  34367. },
  34368. [
  34369. {
  34370. name: "Normal",
  34371. height: math.unit(5 + 11/12, "feet"),
  34372. default: true
  34373. },
  34374. ]
  34375. ))
  34376. characterMakers.push(() => makeCharacter(
  34377. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34378. {
  34379. front: {
  34380. height: math.unit(6 + 3/12, "feet"),
  34381. weight: math.unit(177, "lb"),
  34382. name: "Front",
  34383. image: {
  34384. source: "./media/characters/noryu/front.svg",
  34385. extra: 973/885,
  34386. bottom: 10/983
  34387. }
  34388. },
  34389. },
  34390. [
  34391. {
  34392. name: "Normal",
  34393. height: math.unit(6 + 3/12, "feet"),
  34394. default: true
  34395. },
  34396. ]
  34397. ))
  34398. characterMakers.push(() => makeCharacter(
  34399. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34400. {
  34401. front: {
  34402. height: math.unit(5 + 6/12, "feet"),
  34403. weight: math.unit(170, "lb"),
  34404. name: "Front",
  34405. image: {
  34406. source: "./media/characters/mevolas-rubenido/front.svg",
  34407. extra: 2109/1901,
  34408. bottom: 96/2205
  34409. }
  34410. },
  34411. },
  34412. [
  34413. {
  34414. name: "Normal",
  34415. height: math.unit(5 + 6/12, "feet"),
  34416. default: true
  34417. },
  34418. ]
  34419. ))
  34420. characterMakers.push(() => makeCharacter(
  34421. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34422. {
  34423. front: {
  34424. height: math.unit(100, "feet"),
  34425. name: "Front",
  34426. image: {
  34427. source: "./media/characters/dee/front.svg",
  34428. extra: 2153/2036,
  34429. bottom: 59/2212
  34430. }
  34431. },
  34432. back: {
  34433. height: math.unit(100, "feet"),
  34434. name: "Back",
  34435. image: {
  34436. source: "./media/characters/dee/back.svg",
  34437. extra: 2183/2058,
  34438. bottom: 75/2258
  34439. }
  34440. },
  34441. foot: {
  34442. height: math.unit(19.43, "feet"),
  34443. name: "Foot",
  34444. image: {
  34445. source: "./media/characters/dee/foot.svg"
  34446. }
  34447. },
  34448. hoof: {
  34449. height: math.unit(20.6, "feet"),
  34450. name: "Hoof",
  34451. image: {
  34452. source: "./media/characters/dee/hoof.svg"
  34453. }
  34454. },
  34455. },
  34456. [
  34457. {
  34458. name: "Macro",
  34459. height: math.unit(100, "feet"),
  34460. default: true
  34461. },
  34462. ]
  34463. ))
  34464. characterMakers.push(() => makeCharacter(
  34465. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34466. {
  34467. front: {
  34468. height: math.unit(5 + 6/12, "feet"),
  34469. name: "Front",
  34470. image: {
  34471. source: "./media/characters/teh/front.svg",
  34472. extra: 1002/847,
  34473. bottom: 62/1064
  34474. }
  34475. },
  34476. },
  34477. [
  34478. {
  34479. name: "Normal",
  34480. height: math.unit(5 + 6/12, "feet"),
  34481. default: true
  34482. },
  34483. ]
  34484. ))
  34485. characterMakers.push(() => makeCharacter(
  34486. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34487. {
  34488. side: {
  34489. height: math.unit(6 + 1/12, "feet"),
  34490. weight: math.unit(204, "lb"),
  34491. name: "Side",
  34492. image: {
  34493. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34494. extra: 974/775,
  34495. bottom: 169/1143
  34496. }
  34497. },
  34498. sitting: {
  34499. height: math.unit(6 + 2/12, "feet"),
  34500. weight: math.unit(204, "lb"),
  34501. name: "Sitting",
  34502. image: {
  34503. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34504. extra: 1175/964,
  34505. bottom: 378/1553
  34506. }
  34507. },
  34508. },
  34509. [
  34510. {
  34511. name: "Normal",
  34512. height: math.unit(6 + 1/12, "feet"),
  34513. default: true
  34514. },
  34515. ]
  34516. ))
  34517. characterMakers.push(() => makeCharacter(
  34518. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34519. {
  34520. front: {
  34521. height: math.unit(6, "inches"),
  34522. name: "Front",
  34523. image: {
  34524. source: "./media/characters/tululi/front.svg",
  34525. extra: 1997/1876,
  34526. bottom: 20/2017
  34527. }
  34528. },
  34529. },
  34530. [
  34531. {
  34532. name: "Normal",
  34533. height: math.unit(6, "inches"),
  34534. default: true
  34535. },
  34536. ]
  34537. ))
  34538. characterMakers.push(() => makeCharacter(
  34539. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34540. {
  34541. front: {
  34542. height: math.unit(4 + 1/12, "feet"),
  34543. name: "Front",
  34544. image: {
  34545. source: "./media/characters/star/front.svg",
  34546. extra: 1493/1189,
  34547. bottom: 48/1541
  34548. }
  34549. },
  34550. },
  34551. [
  34552. {
  34553. name: "Normal",
  34554. height: math.unit(4 + 1/12, "feet"),
  34555. default: true
  34556. },
  34557. ]
  34558. ))
  34559. characterMakers.push(() => makeCharacter(
  34560. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34561. {
  34562. front: {
  34563. height: math.unit(6 + 3/12, "feet"),
  34564. name: "Front",
  34565. image: {
  34566. source: "./media/characters/comet/front.svg",
  34567. extra: 1681/1462,
  34568. bottom: 26/1707
  34569. }
  34570. },
  34571. },
  34572. [
  34573. {
  34574. name: "Normal",
  34575. height: math.unit(6 + 3/12, "feet"),
  34576. default: true
  34577. },
  34578. ]
  34579. ))
  34580. characterMakers.push(() => makeCharacter(
  34581. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34582. {
  34583. front: {
  34584. height: math.unit(950, "feet"),
  34585. name: "Front",
  34586. image: {
  34587. source: "./media/characters/vortex/front.svg",
  34588. extra: 1497/1434,
  34589. bottom: 56/1553
  34590. }
  34591. },
  34592. maw: {
  34593. height: math.unit(285, "feet"),
  34594. name: "Maw",
  34595. image: {
  34596. source: "./media/characters/vortex/maw.svg"
  34597. }
  34598. },
  34599. },
  34600. [
  34601. {
  34602. name: "Macro",
  34603. height: math.unit(950, "feet"),
  34604. default: true
  34605. },
  34606. ]
  34607. ))
  34608. characterMakers.push(() => makeCharacter(
  34609. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34610. {
  34611. front: {
  34612. height: math.unit(600, "feet"),
  34613. weight: math.unit(0.02, "grams"),
  34614. name: "Front",
  34615. image: {
  34616. source: "./media/characters/doodle/front.svg",
  34617. extra: 1578/1413,
  34618. bottom: 37/1615
  34619. }
  34620. },
  34621. },
  34622. [
  34623. {
  34624. name: "Macro",
  34625. height: math.unit(600, "feet"),
  34626. default: true
  34627. },
  34628. ]
  34629. ))
  34630. characterMakers.push(() => makeCharacter(
  34631. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  34632. {
  34633. front: {
  34634. height: math.unit(6 + 6/12, "feet"),
  34635. name: "Front",
  34636. image: {
  34637. source: "./media/characters/jai/front.svg",
  34638. extra: 1645/1534,
  34639. bottom: 115/1760
  34640. }
  34641. },
  34642. },
  34643. [
  34644. {
  34645. name: "Normal",
  34646. height: math.unit(6 + 6/12, "feet"),
  34647. default: true
  34648. },
  34649. ]
  34650. ))
  34651. characterMakers.push(() => makeCharacter(
  34652. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  34653. {
  34654. front: {
  34655. height: math.unit(6 + 8/12, "feet"),
  34656. name: "Front",
  34657. image: {
  34658. source: "./media/characters/pixel/front.svg",
  34659. extra: 1900/1735,
  34660. bottom: 63/1963
  34661. }
  34662. },
  34663. },
  34664. [
  34665. {
  34666. name: "Normal",
  34667. height: math.unit(6 + 8/12, "feet"),
  34668. default: true
  34669. },
  34670. ]
  34671. ))
  34672. characterMakers.push(() => makeCharacter(
  34673. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  34674. {
  34675. front: {
  34676. height: math.unit(4 + 11/12, "feet"),
  34677. weight: math.unit(111, "lb"),
  34678. name: "Front",
  34679. image: {
  34680. source: "./media/characters/rhett/front.svg",
  34681. extra: 1682/1586,
  34682. bottom: 92/1774
  34683. }
  34684. },
  34685. },
  34686. [
  34687. {
  34688. name: "Mini",
  34689. height: math.unit(1 + 1/12, "feet")
  34690. },
  34691. {
  34692. name: "Normal",
  34693. height: math.unit(4 + 11/12, "feet"),
  34694. default: true
  34695. },
  34696. ]
  34697. ))
  34698. characterMakers.push(() => makeCharacter(
  34699. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  34700. {
  34701. front: {
  34702. height: math.unit(3 + 3/12, "feet"),
  34703. name: "Front",
  34704. image: {
  34705. source: "./media/characters/penny/front.svg",
  34706. extra: 1406/1311,
  34707. bottom: 26/1432
  34708. }
  34709. },
  34710. },
  34711. [
  34712. {
  34713. name: "Normal",
  34714. height: math.unit(3 + 3/12, "feet"),
  34715. default: true
  34716. },
  34717. ]
  34718. ))
  34719. characterMakers.push(() => makeCharacter(
  34720. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  34721. {
  34722. front: {
  34723. height: math.unit(4 + 11/12, "feet"),
  34724. name: "Front",
  34725. image: {
  34726. source: "./media/characters/monty/front.svg",
  34727. extra: 1479/1209,
  34728. bottom: 0/1479
  34729. }
  34730. },
  34731. },
  34732. [
  34733. {
  34734. name: "Normal",
  34735. height: math.unit(4 + 11/12, "feet"),
  34736. default: true
  34737. },
  34738. ]
  34739. ))
  34740. characterMakers.push(() => makeCharacter(
  34741. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  34742. {
  34743. front: {
  34744. height: math.unit(8 + 4/12, "feet"),
  34745. name: "Front",
  34746. image: {
  34747. source: "./media/characters/sterling/front.svg",
  34748. extra: 1420/1236,
  34749. bottom: 27/1447
  34750. }
  34751. },
  34752. },
  34753. [
  34754. {
  34755. name: "Normal",
  34756. height: math.unit(8 + 4/12, "feet"),
  34757. default: true
  34758. },
  34759. ]
  34760. ))
  34761. characterMakers.push(() => makeCharacter(
  34762. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  34763. {
  34764. front: {
  34765. height: math.unit(15, "feet"),
  34766. name: "Front",
  34767. image: {
  34768. source: "./media/characters/marble/front.svg",
  34769. extra: 973/937,
  34770. bottom: 32/1005
  34771. }
  34772. },
  34773. },
  34774. [
  34775. {
  34776. name: "Normal",
  34777. height: math.unit(15, "feet"),
  34778. default: true
  34779. },
  34780. ]
  34781. ))
  34782. characterMakers.push(() => makeCharacter(
  34783. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  34784. {
  34785. front: {
  34786. height: math.unit(3, "inches"),
  34787. name: "Front",
  34788. image: {
  34789. source: "./media/characters/powder/front.svg",
  34790. extra: 1504/1334,
  34791. bottom: 518/2022
  34792. }
  34793. },
  34794. },
  34795. [
  34796. {
  34797. name: "Normal",
  34798. height: math.unit(3, "inches"),
  34799. default: true
  34800. },
  34801. ]
  34802. ))
  34803. characterMakers.push(() => makeCharacter(
  34804. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  34805. {
  34806. front: {
  34807. height: math.unit(4 + 5/12, "feet"),
  34808. name: "Front",
  34809. image: {
  34810. source: "./media/characters/joey-raccoon/front.svg",
  34811. extra: 1273/1197,
  34812. bottom: 0/1273
  34813. }
  34814. },
  34815. },
  34816. [
  34817. {
  34818. name: "Normal",
  34819. height: math.unit(4 + 5/12, "feet"),
  34820. default: true
  34821. },
  34822. ]
  34823. ))
  34824. characterMakers.push(() => makeCharacter(
  34825. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  34826. {
  34827. front: {
  34828. height: math.unit(8 + 4/12, "feet"),
  34829. name: "Front",
  34830. image: {
  34831. source: "./media/characters/vick/front.svg",
  34832. extra: 2187/2118,
  34833. bottom: 47/2234
  34834. }
  34835. },
  34836. },
  34837. [
  34838. {
  34839. name: "Normal",
  34840. height: math.unit(8 + 4/12, "feet"),
  34841. default: true
  34842. },
  34843. ]
  34844. ))
  34845. characterMakers.push(() => makeCharacter(
  34846. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  34847. {
  34848. front: {
  34849. height: math.unit(5 + 5/12, "feet"),
  34850. name: "Front",
  34851. image: {
  34852. source: "./media/characters/mitsy/front.svg",
  34853. extra: 1842/1695,
  34854. bottom: 0/1842
  34855. }
  34856. },
  34857. },
  34858. [
  34859. {
  34860. name: "Normal",
  34861. height: math.unit(5 + 5/12, "feet"),
  34862. default: true
  34863. },
  34864. ]
  34865. ))
  34866. characterMakers.push(() => makeCharacter(
  34867. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  34868. {
  34869. front: {
  34870. height: math.unit(6 + 3/12, "feet"),
  34871. name: "Front",
  34872. image: {
  34873. source: "./media/characters/silvy/front.svg",
  34874. extra: 1995/1836,
  34875. bottom: 225/2220
  34876. }
  34877. },
  34878. },
  34879. [
  34880. {
  34881. name: "Normal",
  34882. height: math.unit(6 + 3/12, "feet"),
  34883. default: true
  34884. },
  34885. ]
  34886. ))
  34887. characterMakers.push(() => makeCharacter(
  34888. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  34889. {
  34890. front: {
  34891. height: math.unit(3 + 8/12, "feet"),
  34892. name: "Front",
  34893. image: {
  34894. source: "./media/characters/rodney/front.svg",
  34895. extra: 1956/1747,
  34896. bottom: 31/1987
  34897. }
  34898. },
  34899. frontDressed: {
  34900. height: math.unit(2.9, "feet"),
  34901. name: "Front (Dressed)",
  34902. image: {
  34903. source: "./media/characters/rodney/front-dressed.svg",
  34904. extra: 1382/1241,
  34905. bottom: 385/1767
  34906. }
  34907. },
  34908. },
  34909. [
  34910. {
  34911. name: "Normal",
  34912. height: math.unit(3 + 8/12, "feet"),
  34913. default: true
  34914. },
  34915. ]
  34916. ))
  34917. characterMakers.push(() => makeCharacter(
  34918. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  34919. {
  34920. front: {
  34921. height: math.unit(5 + 9/12, "feet"),
  34922. weight: math.unit(194, "lbs"),
  34923. name: "Front",
  34924. image: {
  34925. source: "./media/characters/zakail-sudekai/front.svg",
  34926. extra: 2696/2533,
  34927. bottom: 248/2944
  34928. }
  34929. },
  34930. maw: {
  34931. height: math.unit(1.35, "feet"),
  34932. name: "Maw",
  34933. image: {
  34934. source: "./media/characters/zakail-sudekai/maw.svg"
  34935. }
  34936. },
  34937. },
  34938. [
  34939. {
  34940. name: "Normal",
  34941. height: math.unit(5 + 9/12, "feet"),
  34942. default: true
  34943. },
  34944. ]
  34945. ))
  34946. characterMakers.push(() => makeCharacter(
  34947. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  34948. {
  34949. front: {
  34950. height: math.unit(8 + 4/12, "feet"),
  34951. weight: math.unit(1200, "lb"),
  34952. name: "Front",
  34953. image: {
  34954. source: "./media/characters/eleanor/front.svg",
  34955. extra: 1226/1192,
  34956. bottom: 52/1278
  34957. }
  34958. },
  34959. back: {
  34960. height: math.unit(8 + 4/12, "feet"),
  34961. weight: math.unit(1200, "lb"),
  34962. name: "Back",
  34963. image: {
  34964. source: "./media/characters/eleanor/back.svg",
  34965. extra: 1242/1184,
  34966. bottom: 60/1302
  34967. }
  34968. },
  34969. head: {
  34970. height: math.unit(2.62, "feet"),
  34971. name: "Head",
  34972. image: {
  34973. source: "./media/characters/eleanor/head.svg"
  34974. }
  34975. },
  34976. },
  34977. [
  34978. {
  34979. name: "Normal",
  34980. height: math.unit(8 + 4/12, "feet"),
  34981. default: true
  34982. },
  34983. ]
  34984. ))
  34985. characterMakers.push(() => makeCharacter(
  34986. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  34987. {
  34988. front: {
  34989. height: math.unit(8 + 4/12, "feet"),
  34990. weight: math.unit(750, "lb"),
  34991. name: "Front",
  34992. image: {
  34993. source: "./media/characters/tanya/front.svg",
  34994. extra: 1749/1615,
  34995. bottom: 33/1782
  34996. }
  34997. },
  34998. },
  34999. [
  35000. {
  35001. name: "Normal",
  35002. height: math.unit(8 + 4/12, "feet"),
  35003. default: true
  35004. },
  35005. ]
  35006. ))
  35007. characterMakers.push(() => makeCharacter(
  35008. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35009. {
  35010. front: {
  35011. height: math.unit(5, "feet"),
  35012. weight: math.unit(225, "lb"),
  35013. name: "Front",
  35014. image: {
  35015. source: "./media/characters/cindy/front.svg",
  35016. extra: 1320/1250,
  35017. bottom: 42/1362
  35018. }
  35019. },
  35020. frontDressed: {
  35021. height: math.unit(5, "feet"),
  35022. weight: math.unit(225, "lb"),
  35023. name: "Front (Dressed)",
  35024. image: {
  35025. source: "./media/characters/cindy/front-dressed.svg",
  35026. extra: 1320/1250,
  35027. bottom: 42/1362
  35028. }
  35029. },
  35030. back: {
  35031. height: math.unit(5, "feet"),
  35032. weight: math.unit(225, "lb"),
  35033. name: "Back",
  35034. image: {
  35035. source: "./media/characters/cindy/back.svg",
  35036. extra: 1384/1346,
  35037. bottom: 14/1398
  35038. }
  35039. },
  35040. },
  35041. [
  35042. {
  35043. name: "Normal",
  35044. height: math.unit(5, "feet"),
  35045. default: true
  35046. },
  35047. ]
  35048. ))
  35049. characterMakers.push(() => makeCharacter(
  35050. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35051. {
  35052. front: {
  35053. height: math.unit(6 + 9/12, "feet"),
  35054. weight: math.unit(440, "lb"),
  35055. name: "Front",
  35056. image: {
  35057. source: "./media/characters/wilbur-owen/front.svg",
  35058. extra: 1575/1448,
  35059. bottom: 72/1647
  35060. }
  35061. },
  35062. back: {
  35063. height: math.unit(6 + 9/12, "feet"),
  35064. weight: math.unit(440, "lb"),
  35065. name: "Back",
  35066. image: {
  35067. source: "./media/characters/wilbur-owen/back.svg",
  35068. extra: 1578/1445,
  35069. bottom: 36/1614
  35070. }
  35071. },
  35072. },
  35073. [
  35074. {
  35075. name: "Normal",
  35076. height: math.unit(6 + 9/12, "feet"),
  35077. default: true
  35078. },
  35079. ]
  35080. ))
  35081. characterMakers.push(() => makeCharacter(
  35082. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35083. {
  35084. front: {
  35085. height: math.unit(6 + 5/12, "feet"),
  35086. weight: math.unit(650, "lb"),
  35087. name: "Front",
  35088. image: {
  35089. source: "./media/characters/keegan/front.svg",
  35090. extra: 2387/2198,
  35091. bottom: 33/2420
  35092. }
  35093. },
  35094. side: {
  35095. height: math.unit(6 + 5/12, "feet"),
  35096. weight: math.unit(650, "lb"),
  35097. name: "Side",
  35098. image: {
  35099. source: "./media/characters/keegan/side.svg",
  35100. extra: 2390/2202,
  35101. bottom: 47/2437
  35102. }
  35103. },
  35104. back: {
  35105. height: math.unit(6 + 5/12, "feet"),
  35106. weight: math.unit(650, "lb"),
  35107. name: "Back",
  35108. image: {
  35109. source: "./media/characters/keegan/back.svg",
  35110. extra: 2418/2268,
  35111. bottom: 15/2433
  35112. }
  35113. },
  35114. frontSfw: {
  35115. height: math.unit(6 + 5/12, "feet"),
  35116. weight: math.unit(650, "lb"),
  35117. name: "Front (SFW)",
  35118. image: {
  35119. source: "./media/characters/keegan/front-sfw.svg",
  35120. extra: 2387/2198,
  35121. bottom: 33/2420
  35122. }
  35123. },
  35124. beans: {
  35125. height: math.unit(1.85, "feet"),
  35126. name: "Beans",
  35127. image: {
  35128. source: "./media/characters/keegan/beans.svg"
  35129. }
  35130. },
  35131. },
  35132. [
  35133. {
  35134. name: "Normal",
  35135. height: math.unit(6 + 5/12, "feet"),
  35136. default: true
  35137. },
  35138. ]
  35139. ))
  35140. characterMakers.push(() => makeCharacter(
  35141. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35142. {
  35143. front: {
  35144. height: math.unit(9, "feet"),
  35145. name: "Front",
  35146. image: {
  35147. source: "./media/characters/colton/front.svg",
  35148. extra: 1589/1326,
  35149. bottom: 139/1728
  35150. }
  35151. },
  35152. },
  35153. [
  35154. {
  35155. name: "Normal",
  35156. height: math.unit(9, "feet"),
  35157. default: true
  35158. },
  35159. ]
  35160. ))
  35161. characterMakers.push(() => makeCharacter(
  35162. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35163. {
  35164. front: {
  35165. height: math.unit(2 + 9/12, "feet"),
  35166. name: "Front",
  35167. image: {
  35168. source: "./media/characters/bora/front.svg",
  35169. extra: 1265/1250,
  35170. bottom: 24/1289
  35171. }
  35172. },
  35173. },
  35174. [
  35175. {
  35176. name: "Normal",
  35177. height: math.unit(2 + 9/12, "feet"),
  35178. default: true
  35179. },
  35180. ]
  35181. ))
  35182. characterMakers.push(() => makeCharacter(
  35183. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35184. {
  35185. front: {
  35186. height: math.unit(8, "feet"),
  35187. name: "Front",
  35188. image: {
  35189. source: "./media/characters/myu-myu/front.svg",
  35190. extra: 1949/1857,
  35191. bottom: 90/2039
  35192. }
  35193. },
  35194. },
  35195. [
  35196. {
  35197. name: "Normal",
  35198. height: math.unit(8, "feet"),
  35199. default: true
  35200. },
  35201. {
  35202. name: "Big",
  35203. height: math.unit(15, "feet")
  35204. },
  35205. {
  35206. name: "BIG",
  35207. height: math.unit(25, "feet")
  35208. },
  35209. ]
  35210. ))
  35211. characterMakers.push(() => makeCharacter(
  35212. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35213. {
  35214. side: {
  35215. height: math.unit(7 + 5/12, "feet"),
  35216. weight: math.unit(2800, "lb"),
  35217. name: "Side",
  35218. image: {
  35219. source: "./media/characters/haloren/side.svg",
  35220. extra: 1793/409,
  35221. bottom: 59/1852
  35222. }
  35223. },
  35224. frontPaw: {
  35225. height: math.unit(2.36, "feet"),
  35226. name: "Front paw",
  35227. image: {
  35228. source: "./media/characters/haloren/front-paw.svg"
  35229. }
  35230. },
  35231. hindPaw: {
  35232. height: math.unit(3.18, "feet"),
  35233. name: "Hind paw",
  35234. image: {
  35235. source: "./media/characters/haloren/hind-paw.svg"
  35236. }
  35237. },
  35238. maw: {
  35239. height: math.unit(5.05, "feet"),
  35240. name: "Maw",
  35241. image: {
  35242. source: "./media/characters/haloren/maw.svg"
  35243. }
  35244. },
  35245. dick: {
  35246. height: math.unit(2.90, "feet"),
  35247. name: "Dick",
  35248. image: {
  35249. source: "./media/characters/haloren/dick.svg"
  35250. }
  35251. },
  35252. },
  35253. [
  35254. {
  35255. name: "Normal",
  35256. height: math.unit(7 + 5/12, "feet"),
  35257. default: true
  35258. },
  35259. {
  35260. name: "Enhanced",
  35261. height: math.unit(14 + 3/12, "feet")
  35262. },
  35263. ]
  35264. ))
  35265. characterMakers.push(() => makeCharacter(
  35266. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35267. {
  35268. front: {
  35269. height: math.unit(171, "cm"),
  35270. name: "Front",
  35271. image: {
  35272. source: "./media/characters/kimmy/front.svg",
  35273. extra: 1491/1435,
  35274. bottom: 53/1544
  35275. }
  35276. },
  35277. },
  35278. [
  35279. {
  35280. name: "Small",
  35281. height: math.unit(9, "cm")
  35282. },
  35283. {
  35284. name: "Normal",
  35285. height: math.unit(171, "cm"),
  35286. default: true
  35287. },
  35288. ]
  35289. ))
  35290. characterMakers.push(() => makeCharacter(
  35291. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35292. {
  35293. front: {
  35294. height: math.unit(8, "feet"),
  35295. weight: math.unit(300, "lb"),
  35296. name: "Front",
  35297. image: {
  35298. source: "./media/characters/galeboomer/front.svg",
  35299. extra: 4651/4415,
  35300. bottom: 162/4813
  35301. }
  35302. },
  35303. back: {
  35304. height: math.unit(8, "feet"),
  35305. weight: math.unit(300, "lb"),
  35306. name: "Back",
  35307. image: {
  35308. source: "./media/characters/galeboomer/back.svg",
  35309. extra: 4544/4314,
  35310. bottom: 16/4560
  35311. }
  35312. },
  35313. frontAlt: {
  35314. height: math.unit(8, "feet"),
  35315. weight: math.unit(300, "lb"),
  35316. name: "Front (Alt)",
  35317. image: {
  35318. source: "./media/characters/galeboomer/front-alt.svg",
  35319. extra: 4458/4228,
  35320. bottom: 68/4526
  35321. }
  35322. },
  35323. maw: {
  35324. height: math.unit(1.2, "feet"),
  35325. name: "Maw",
  35326. image: {
  35327. source: "./media/characters/galeboomer/maw.svg"
  35328. }
  35329. },
  35330. },
  35331. [
  35332. {
  35333. name: "Normal",
  35334. height: math.unit(8, "feet"),
  35335. default: true
  35336. },
  35337. ]
  35338. ))
  35339. characterMakers.push(() => makeCharacter(
  35340. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35341. {
  35342. front: {
  35343. height: math.unit(5 + 9/12, "feet"),
  35344. weight: math.unit(120, "lb"),
  35345. name: "Front",
  35346. image: {
  35347. source: "./media/characters/chyr/front.svg",
  35348. extra: 1323/1254,
  35349. bottom: 63/1386
  35350. }
  35351. },
  35352. back: {
  35353. height: math.unit(5 + 9/12, "feet"),
  35354. weight: math.unit(120, "lb"),
  35355. name: "Back",
  35356. image: {
  35357. source: "./media/characters/chyr/back.svg",
  35358. extra: 1323/1252,
  35359. bottom: 48/1371
  35360. }
  35361. },
  35362. },
  35363. [
  35364. {
  35365. name: "Normal",
  35366. height: math.unit(5 + 9/12, "feet"),
  35367. default: true
  35368. },
  35369. ]
  35370. ))
  35371. characterMakers.push(() => makeCharacter(
  35372. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35373. {
  35374. front: {
  35375. height: math.unit(7, "feet"),
  35376. weight: math.unit(310, "lb"),
  35377. name: "Front",
  35378. image: {
  35379. source: "./media/characters/solarus/front.svg",
  35380. extra: 2415/2021,
  35381. bottom: 103/2518
  35382. }
  35383. },
  35384. back: {
  35385. height: math.unit(7, "feet"),
  35386. weight: math.unit(310, "lb"),
  35387. name: "Back",
  35388. image: {
  35389. source: "./media/characters/solarus/back.svg",
  35390. extra: 2463/2089,
  35391. bottom: 79/2542
  35392. }
  35393. },
  35394. },
  35395. [
  35396. {
  35397. name: "Normal",
  35398. height: math.unit(7, "feet"),
  35399. default: true
  35400. },
  35401. ]
  35402. ))
  35403. characterMakers.push(() => makeCharacter(
  35404. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35405. {
  35406. front: {
  35407. height: math.unit(16, "feet"),
  35408. name: "Front",
  35409. image: {
  35410. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35411. extra: 1844/1780,
  35412. bottom: 58/1902
  35413. }
  35414. },
  35415. },
  35416. [
  35417. {
  35418. name: "Normal",
  35419. height: math.unit(16, "feet"),
  35420. default: true
  35421. },
  35422. ]
  35423. ))
  35424. characterMakers.push(() => makeCharacter(
  35425. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35426. {
  35427. front: {
  35428. height: math.unit(11 + 6/12, "feet"),
  35429. weight: math.unit(1366, "lb"),
  35430. name: "Front",
  35431. image: {
  35432. source: "./media/characters/lexor/front.svg",
  35433. extra: 1560/1481,
  35434. bottom: 211/1771
  35435. }
  35436. },
  35437. back: {
  35438. height: math.unit(11 + 6/12, "feet"),
  35439. weight: math.unit(1366, "lb"),
  35440. name: "Back",
  35441. image: {
  35442. source: "./media/characters/lexor/back.svg",
  35443. extra: 1614/1533,
  35444. bottom: 76/1690
  35445. }
  35446. },
  35447. maw: {
  35448. height: math.unit(3, "feet"),
  35449. name: "Maw",
  35450. image: {
  35451. source: "./media/characters/lexor/maw.svg"
  35452. }
  35453. },
  35454. dick: {
  35455. height: math.unit(2.59, "feet"),
  35456. name: "Dick",
  35457. image: {
  35458. source: "./media/characters/lexor/dick.svg"
  35459. }
  35460. },
  35461. },
  35462. [
  35463. {
  35464. name: "Normal",
  35465. height: math.unit(11 + 6/12, "feet"),
  35466. default: true
  35467. },
  35468. ]
  35469. ))
  35470. characterMakers.push(() => makeCharacter(
  35471. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35472. {
  35473. front: {
  35474. height: math.unit(5 + 8/12, "feet"),
  35475. name: "Front",
  35476. image: {
  35477. source: "./media/characters/magnum/front.svg",
  35478. extra: 942/855,
  35479. bottom: 26/968
  35480. }
  35481. },
  35482. },
  35483. [
  35484. {
  35485. name: "Normal",
  35486. height: math.unit(5 + 8/12, "feet"),
  35487. default: true
  35488. },
  35489. ]
  35490. ))
  35491. characterMakers.push(() => makeCharacter(
  35492. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  35493. {
  35494. front: {
  35495. height: math.unit(18 + 4/12, "feet"),
  35496. weight: math.unit(1500, "kg"),
  35497. name: "Front",
  35498. image: {
  35499. source: "./media/characters/solas-sharpsman/front.svg",
  35500. extra: 1698/1589,
  35501. bottom: 0/1698
  35502. }
  35503. },
  35504. },
  35505. [
  35506. {
  35507. name: "Normal",
  35508. height: math.unit(18 + 4/12, "feet"),
  35509. default: true
  35510. },
  35511. ]
  35512. ))
  35513. characterMakers.push(() => makeCharacter(
  35514. { name: "October", species: ["tiger"], tags: ["anthro"] },
  35515. {
  35516. front: {
  35517. height: math.unit(5 + 5/12, "feet"),
  35518. weight: math.unit(180, "lb"),
  35519. name: "Front",
  35520. image: {
  35521. source: "./media/characters/october/front.svg",
  35522. extra: 1800/1650,
  35523. bottom: 0/1800
  35524. }
  35525. },
  35526. frontNsfw: {
  35527. height: math.unit(5 + 5/12, "feet"),
  35528. weight: math.unit(180, "lb"),
  35529. name: "Front (NSFW)",
  35530. image: {
  35531. source: "./media/characters/october/front-nsfw.svg",
  35532. extra: 1392/1307,
  35533. bottom: 42/1434
  35534. }
  35535. },
  35536. },
  35537. [
  35538. {
  35539. name: "Normal",
  35540. height: math.unit(5 + 5/12, "feet"),
  35541. default: true
  35542. },
  35543. ]
  35544. ))
  35545. characterMakers.push(() => makeCharacter(
  35546. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  35547. {
  35548. front: {
  35549. height: math.unit(8 + 6/12, "feet"),
  35550. name: "Front",
  35551. image: {
  35552. source: "./media/characters/essynkardi/front.svg",
  35553. extra: 1914/1846,
  35554. bottom: 22/1936
  35555. }
  35556. },
  35557. },
  35558. [
  35559. {
  35560. name: "Normal",
  35561. height: math.unit(8 + 6/12, "feet"),
  35562. default: true
  35563. },
  35564. ]
  35565. ))
  35566. characterMakers.push(() => makeCharacter(
  35567. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  35568. {
  35569. front: {
  35570. height: math.unit(6 + 6/12, "feet"),
  35571. weight: math.unit(7, "lb"),
  35572. name: "Front",
  35573. image: {
  35574. source: "./media/characters/icky/front.svg",
  35575. extra: 813/782,
  35576. bottom: 66/879
  35577. }
  35578. },
  35579. back: {
  35580. height: math.unit(6 + 6/12, "feet"),
  35581. weight: math.unit(7, "lb"),
  35582. name: "Back",
  35583. image: {
  35584. source: "./media/characters/icky/back.svg",
  35585. extra: 754/735,
  35586. bottom: 56/810
  35587. }
  35588. },
  35589. },
  35590. [
  35591. {
  35592. name: "Normal",
  35593. height: math.unit(6 + 6/12, "feet"),
  35594. default: true
  35595. },
  35596. ]
  35597. ))
  35598. characterMakers.push(() => makeCharacter(
  35599. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  35600. {
  35601. front: {
  35602. height: math.unit(15, "feet"),
  35603. name: "Front",
  35604. image: {
  35605. source: "./media/characters/rojas/front.svg",
  35606. extra: 1462/1408,
  35607. bottom: 95/1557
  35608. }
  35609. },
  35610. back: {
  35611. height: math.unit(15, "feet"),
  35612. name: "Back",
  35613. image: {
  35614. source: "./media/characters/rojas/back.svg",
  35615. extra: 1023/954,
  35616. bottom: 28/1051
  35617. }
  35618. },
  35619. },
  35620. [
  35621. {
  35622. name: "Normal",
  35623. height: math.unit(15, "feet"),
  35624. default: true
  35625. },
  35626. ]
  35627. ))
  35628. characterMakers.push(() => makeCharacter(
  35629. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  35630. {
  35631. frontHuman: {
  35632. height: math.unit(5 + 7/12, "feet"),
  35633. name: "Front (Human)",
  35634. image: {
  35635. source: "./media/characters/alek-dryagan/front-human.svg",
  35636. extra: 1687/1667,
  35637. bottom: 69/1756
  35638. }
  35639. },
  35640. backHuman: {
  35641. height: math.unit(5 + 7/12, "feet"),
  35642. name: "Back (Human)",
  35643. image: {
  35644. source: "./media/characters/alek-dryagan/back-human.svg",
  35645. extra: 1670/1649,
  35646. bottom: 65/1735
  35647. }
  35648. },
  35649. frontDemi: {
  35650. height: math.unit(65, "feet"),
  35651. name: "Front (Demi)",
  35652. image: {
  35653. source: "./media/characters/alek-dryagan/front-demi.svg",
  35654. extra: 1669/1642,
  35655. bottom: 49/1718
  35656. }
  35657. },
  35658. backDemi: {
  35659. height: math.unit(65, "feet"),
  35660. name: "Back (Demi)",
  35661. image: {
  35662. source: "./media/characters/alek-dryagan/back-demi.svg",
  35663. extra: 1658/1637,
  35664. bottom: 40/1698
  35665. }
  35666. },
  35667. mawHuman: {
  35668. height: math.unit(0.3, "feet"),
  35669. name: "Maw (Human)",
  35670. image: {
  35671. source: "./media/characters/alek-dryagan/maw-human.svg"
  35672. }
  35673. },
  35674. mawDemi: {
  35675. height: math.unit(3.8, "feet"),
  35676. name: "Maw (Demi)",
  35677. image: {
  35678. source: "./media/characters/alek-dryagan/maw-demi.svg"
  35679. }
  35680. },
  35681. },
  35682. [
  35683. {
  35684. name: "Normal",
  35685. height: math.unit(5 + 7/12, "feet"),
  35686. default: true
  35687. },
  35688. ]
  35689. ))
  35690. characterMakers.push(() => makeCharacter(
  35691. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  35692. {
  35693. frontHuman: {
  35694. height: math.unit(5 + 2/12, "feet"),
  35695. name: "Front (Human)",
  35696. image: {
  35697. source: "./media/characters/gen/front-human.svg",
  35698. extra: 1627/1538,
  35699. bottom: 71/1698
  35700. }
  35701. },
  35702. backHuman: {
  35703. height: math.unit(5 + 2/12, "feet"),
  35704. name: "Back (Human)",
  35705. image: {
  35706. source: "./media/characters/gen/back-human.svg",
  35707. extra: 1638/1548,
  35708. bottom: 69/1707
  35709. }
  35710. },
  35711. frontDemi: {
  35712. height: math.unit(5 + 2/12, "feet"),
  35713. name: "Front (Demi)",
  35714. image: {
  35715. source: "./media/characters/gen/front-demi.svg",
  35716. extra: 1627/1538,
  35717. bottom: 71/1698
  35718. }
  35719. },
  35720. backDemi: {
  35721. height: math.unit(5 + 2/12, "feet"),
  35722. name: "Back (Demi)",
  35723. image: {
  35724. source: "./media/characters/gen/back-demi.svg",
  35725. extra: 1638/1548,
  35726. bottom: 69/1707
  35727. }
  35728. },
  35729. },
  35730. [
  35731. {
  35732. name: "Normal",
  35733. height: math.unit(5 + 2/12, "feet"),
  35734. default: true
  35735. },
  35736. ]
  35737. ))
  35738. characterMakers.push(() => makeCharacter(
  35739. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  35740. {
  35741. frontImp: {
  35742. height: math.unit(1 + 11/12, "feet"),
  35743. name: "Front (Imp)",
  35744. image: {
  35745. source: "./media/characters/max-kobold/front-imp.svg",
  35746. extra: 1238/1134,
  35747. bottom: 81/1319
  35748. }
  35749. },
  35750. backImp: {
  35751. height: math.unit(1 + 11/12, "feet"),
  35752. name: "Back (Imp)",
  35753. image: {
  35754. source: "./media/characters/max-kobold/back-imp.svg",
  35755. extra: 1334/1175,
  35756. bottom: 34/1368
  35757. }
  35758. },
  35759. frontDemi: {
  35760. height: math.unit(5 + 9/12, "feet"),
  35761. name: "Front (Demi)",
  35762. image: {
  35763. source: "./media/characters/max-kobold/front-demi.svg",
  35764. extra: 1715/1685,
  35765. bottom: 54/1769
  35766. }
  35767. },
  35768. backDemi: {
  35769. height: math.unit(5 + 9/12, "feet"),
  35770. name: "Back (Demi)",
  35771. image: {
  35772. source: "./media/characters/max-kobold/back-demi.svg",
  35773. extra: 1752/1729,
  35774. bottom: 41/1793
  35775. }
  35776. },
  35777. handImp: {
  35778. height: math.unit(0.45, "feet"),
  35779. name: "Hand (Imp)",
  35780. image: {
  35781. source: "./media/characters/max-kobold/hand.svg"
  35782. }
  35783. },
  35784. pawImp: {
  35785. height: math.unit(0.46, "feet"),
  35786. name: "Paw (Imp)",
  35787. image: {
  35788. source: "./media/characters/max-kobold/paw.svg"
  35789. }
  35790. },
  35791. handDemi: {
  35792. height: math.unit(0.80, "feet"),
  35793. name: "Hand (Demi)",
  35794. image: {
  35795. source: "./media/characters/max-kobold/hand.svg"
  35796. }
  35797. },
  35798. pawDemi: {
  35799. height: math.unit(1.1, "feet"),
  35800. name: "Paw (Demi)",
  35801. image: {
  35802. source: "./media/characters/max-kobold/paw.svg"
  35803. }
  35804. },
  35805. headImp: {
  35806. height: math.unit(1.33, "feet"),
  35807. name: "Head (Imp)",
  35808. image: {
  35809. source: "./media/characters/max-kobold/head-imp.svg"
  35810. }
  35811. },
  35812. mawImp: {
  35813. height: math.unit(0.75, "feet"),
  35814. name: "Maw (Imp)",
  35815. image: {
  35816. source: "./media/characters/max-kobold/maw-imp.svg"
  35817. }
  35818. },
  35819. mawDemi: {
  35820. height: math.unit(0.42, "feet"),
  35821. name: "Maw (Demi)",
  35822. image: {
  35823. source: "./media/characters/max-kobold/maw-demi.svg"
  35824. }
  35825. },
  35826. },
  35827. [
  35828. {
  35829. name: "Normal",
  35830. height: math.unit(1 + 11/12, "feet"),
  35831. default: true
  35832. },
  35833. ]
  35834. ))
  35835. characterMakers.push(() => makeCharacter(
  35836. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  35837. {
  35838. front: {
  35839. height: math.unit(7 + 5/12, "feet"),
  35840. name: "Front",
  35841. image: {
  35842. source: "./media/characters/carbon/front.svg",
  35843. extra: 1754/1689,
  35844. bottom: 65/1819
  35845. }
  35846. },
  35847. back: {
  35848. height: math.unit(7 + 5/12, "feet"),
  35849. name: "Back",
  35850. image: {
  35851. source: "./media/characters/carbon/back.svg",
  35852. extra: 1762/1695,
  35853. bottom: 24/1786
  35854. }
  35855. },
  35856. frontGigantamax: {
  35857. height: math.unit(150, "feet"),
  35858. name: "Front (Gigantamax)",
  35859. image: {
  35860. source: "./media/characters/carbon/front-gigantamax.svg",
  35861. extra: 1826/1669,
  35862. bottom: 59/1885
  35863. }
  35864. },
  35865. backGigantamax: {
  35866. height: math.unit(150, "feet"),
  35867. name: "Back (Gigantamax)",
  35868. image: {
  35869. source: "./media/characters/carbon/back-gigantamax.svg",
  35870. extra: 1796/1653,
  35871. bottom: 53/1849
  35872. }
  35873. },
  35874. maw: {
  35875. height: math.unit(0.48, "feet"),
  35876. name: "Maw",
  35877. image: {
  35878. source: "./media/characters/carbon/maw.svg"
  35879. }
  35880. },
  35881. mawGigantamax: {
  35882. height: math.unit(7.5, "feet"),
  35883. name: "Maw (Gigantamax)",
  35884. image: {
  35885. source: "./media/characters/carbon/maw-gigantamax.svg"
  35886. }
  35887. },
  35888. },
  35889. [
  35890. {
  35891. name: "Normal",
  35892. height: math.unit(7 + 5/12, "feet"),
  35893. default: true
  35894. },
  35895. ]
  35896. ))
  35897. characterMakers.push(() => makeCharacter(
  35898. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  35899. {
  35900. front: {
  35901. height: math.unit(6, "feet"),
  35902. name: "Front",
  35903. image: {
  35904. source: "./media/characters/maverick/front.svg",
  35905. extra: 1672/1661,
  35906. bottom: 85/1757
  35907. }
  35908. },
  35909. back: {
  35910. height: math.unit(6, "feet"),
  35911. name: "Back",
  35912. image: {
  35913. source: "./media/characters/maverick/back.svg",
  35914. extra: 1642/1631,
  35915. bottom: 38/1680
  35916. }
  35917. },
  35918. },
  35919. [
  35920. {
  35921. name: "Normal",
  35922. height: math.unit(6, "feet"),
  35923. default: true
  35924. },
  35925. ]
  35926. ))
  35927. //characters
  35928. function makeCharacters() {
  35929. const results = [];
  35930. characterMakers.forEach(character => {
  35931. results.push(character());
  35932. });
  35933. return results;
  35934. }